gtk2/gtk
Owen Taylor 1bbf2ac7ee Make gdkx.h the only installed header from gdk/x11. All structures in
Fri Sep  7 11:51:44 2001  Owen Taylor  <otaylor@redhat.com>

      Make gdkx.h the only installed header from gdk/x11.
      All structures in gdk/x11 are opaque.

	* gdk/x11/Makefile.am gdk/x11/gdkx.h gdk/x11/gdkprivate-x11.h:
	Don't install gdk{drawable,pixmap,window}-x11.h.

	* gdk/x11/{gdkcolormap-x11.c, gdkfont-x11.c, gdkx.h, gdkvisual-x11.c:
	Move GdkColormapPrivateX11, GdkFontPrivateX GdkImagePrivateX11,
	GdkVisualClass into C files.

	* gdk/gdkpixmap-x11.[ch]: Make gdk_pixmap_impl_get_type() static.

	* gdk/x11/{gdkcolor-x11.c, gdkcursor-x11.c, gdkdrawable-x11.c,
	gdkfont-x11.c, gdkgc-x11.c, gdkx.h, gdkimage-x11,gdkvisual-x11.c}
	Add public functions to replace previously exported direct
	structure access.
	gdk_x11_colormap_get_{xdisplay,xcolormap}
	gdk_x11_cursor_get_{xdisplay,xcursor},
	gdk_x11_drawable_get_{xdisplay,xcursor,gdk_x11_visual_get_xvisual,
	gdk_x11_font_get_{xdisplay,xfont}, gdk_x11_image_get_{xdisplay,ximage},
	gdk_x11_gc_get_{xdisplay,ximage}

	* gdk/gdkprivate.h gdk/gdkinternals.h: Move GdkColorInfo,
	GdkEventFilter, GdkClientFilter, GdkFontPrivate to gdkinternals.

      Fix a number of variables and functions that were exported
      "accidentally" from GDK.

	* gdk/**.[ch]: gdk => _gdk for gdk_visual_init,
	gdk_events_init, gdk_input_init, gdk_dnd_init, gdk_image_exit,
	gdk_input_exit,	gdk_windowing_exit, gdk_event_func, gdk_event_data,
	gdk_event_notify, gdk_queued_events, gdk_queued_tail,
	gdk_event_new, gdk_events_queue, gdk_events_unqueue,
	gdk_event_queue_find_first, gdk_event_queue_remove_link,
	gdk_event_queue_append, gdk_event_button_generate,
	gdk_debug_flags, gdk_default_filters, gdk_parent_root.

	* gdk/x11/{gdkevents-x11.c, gdkglobals-x11.c, gdkimage-x11.c,
	   gdkmain-x11.c, gdkprivate-x11.h, gdk/x11/gdkwindow-x11.c}:
	gdk => _gdk for gdk_event_mask_table, gkd_nevent_masks,
	gdk_wm_window_protocols, gdk_leader_window, gdk_xgrab_window,
	gdk_use_xshm, gdk_input_ignore_core.

	* gdk/x11/xsettings-common.h (xsettings_list_insert): Add
	#defines to namespace functions into the private _gdk_
	namespace.

	* gdk/gdkwindow.[ch] gdk/x11/gdkx.h: Add gdk_get_default_root_window ()
	to replace gdk_parent_root exported variable. Adjust and
	deprecate GDK_ROOT_PARENT().

	* demos/{testpixbuf-drawable.c,testpixbuf-save.c}: Fix
	GDK_ROOT_PARENT usage, remove includes of port-specific
	headers.

	* gdk/{win32,x11,fb}/gdkinput*.[ch]: s/gdk/_gdk/ for
	_gdk_input_gxid_host, _gdk_input_gxid_port, _gdk_input_ignore_core,
	gdk_input_devices, _gdk_input_windows, gdk_init_input_core.

	* gdk/x11/{gdkevents-x11.,c gdkglobals-x11.c, gdkmain-x11.c}
	docs/Changes-2.0.txt: Remove gdk_wm_protocols,
	gdk_wm_delete_window functions, gdk_wm_take_focus,
	use gdk_atom_intern() instead.

	* gdk/linux-fb/{gdkselection-fb.c, gdkmain-fb.c, gdkprivatefb.h}
	  gdk/win32/{gdkselection-win32.c, gdkmgdkwin32.h, gdkprivate-win32.h}
	  gdk/x11/{gdkselection-x11.c gdkx.h, gtkprivate-x11.h}
	  gtk/gtkselection.c
        Unexport gdk_selection_property, just use
	gdk_atom_intern ("GDK_SELECTION").

	* gdk/x11/{gdkprivate-x11.h,gdkdrawable-x11h,gdkgc-x11.c,gdkx.h}:
	Unexport gdk_drawable_impl_x11_get_type, gdk_gc_x11_get_type,
	GDK_GC_X11 cast macros, GdkGCX11 structures, GdkCursorPrivate,
	GdkVisualprivate, gdk_x11_gc_flush.

      Make a number of public exports of variables into functions
      to increase encapsulation.

	* gdk/gdkinternals.h gdk/gdkinput.h gdk/gdkevents.h
	gdk/linux-fb/gdkmouse-fb.c: gdk_core_pointer => _gdk_core_pointer,
	move to gdkinternals.h. Add gdk_device_get_core_pointer ().

	* gdk/gdkprivate.h gdk/gdkpango.c gdk/gdkinternals.h
	docs/Changes-2.0.txt: Unexport gdk_parent_root, gdk_error_code,
	gdk_error_warnings.

	* gdk/x11/{gdkcolormap-x11.c, gdkmain-x11.c, gdkx.h}
	  docs/Changes-2.0.txt:
	s/gdk_screen/_gdk_screen/, add gdk_x11_get_default_screen()
	s/gdk_root_window/_gdk_root_window/, add gdk_x11_get_default_root_xwindow()
	Add gdk_x11_get_default_xdisplay().

	* gdk/gdk.h gdk/gdk.c linux-fb/gdkfb.h linux-fb/gdkglobals-fb.c
	win32/gdkwin32.h x11/gdkglobals-x11.c gdk/x11/gdkmain-x11.c
	gdk/x11/gdkx.h: gdk/gdk.def: Add gdk_get/set_program_class,
	Don't export gdk_progclass, move --class command line
	option and handling to common portion of GDK.

      Miscellaneous fixes:

	* gdk/x11/gdkwindow-x11.c (gdk_window_set_icon_list): Fix
	g_return_val_if_fail that should have been g_return_if_fail.

	* gdk/gdkinternals.h gdk/gdkprivate.h: Move
	gdk_synthesize_window_state() to the semi-public gdkprivate.h.

	* gtk/gtkdnd.c (_gtk_drag_source_handle_event): Remove uneeded
	X11 dependency.

	* gdk/linux-fb/gdkmain-fb.c gdk/win32/gdkmain-win32.c gdk/TODO:
	Remove unused gdk_key_repeat_disable/restore.

	* linux-fb/gdkglobals-fb.c win32/gdkglobals-win32.c
	x11/gdkglobals-x11.c x11/gdkprivate-x11.h gdk/gdk.def:
	Remove unused gdk_null_window_warnings variable.

	* gdk/Makefile.am (DIST_SUBDIRS) nanox/*: cvs remove nanox;
	it can be retrieved from the repository; it is too far
	from functional to be worth having people check out;
	it would be easier to start from scratch, I suspect.

	* gdk/x11/gdkpixmap-x11.c: Fix lvalue usage of GDK_PIXMAP_XID().

	* gdk/x11/gdkkeys-x11.c gdk/gdkrgb.c gdk/gdkwindow.c
	gdk/x11/gdkpango-x11.c gdk/x11/gdkselection-x11.c:
	Fix some accidentally global variables and unused global variables.

	* gdk/x11/gdkkeys-x11.c gdk/gdkrgb.c gdk/gdkwindow.c
	gdk/x11/gdkpango-x11.c gdk/x11/gdkselection-x11.c:
	Fix some accidentally global variables and unused global variables.

      Add some space for future expansion to multihead.

	* gdk/gdkdrawable.h: Add four reserved function pointers
	for future expansion of GdkDrawableClass.

	* gtk/gtkwindow.h gtk/gtkinvisible.h: Add reserved pointer
	where we can put a GdkScreen * later.
2001-09-07 21:50:20 +00:00
..
stock-icons big boom in replacing stock icons 2001-08-16 13:14:50 +00:00
.cvsignore [ Patch from Sebastian Wilhelmi, 52790 ] 2001-08-23 15:26:49 +00:00
circles.xbm gtk/gtktext.c 1998-02-27 06:13:22 +00:00
fnmatch.c Make gdk_colormap_sync private since it was never exported in a header 2001-02-02 22:19:31 +00:00
fnmatch.h applied patch from Andreas Persenius <ndap@swipnet.se> that updates the 2000-07-26 11:33:08 +00:00
genmarshal.pl documented necessary changes for 1.4 transition. 2000-05-12 15:25:50 +00:00
gtk-boxed.defs add default icon 2001-08-29 02:20:02 +00:00
gtk-win32.rc.in Rename gtk/gtk.rc.in to gtk/gtk-win32.rc.in because the build-dll 2000-11-14 23:07:33 +00:00
gtk.def updated externals 2001-08-19 18:34:59 +00:00
gtk.h [ Patch from Sebastian Wilhelmi, 52790 ] 2001-08-23 15:26:49 +00:00
gtkaccelgroup.c use the second argument to the weak ref notify, cleaning up some uglyness. 2001-08-18 03:14:41 +00:00
gtkaccelgroup.h commiting patch after comments from Alex on IRC 2001-07-25 13:36:02 +00:00
gtkaccellabel.c refetch the accelerator when the accel object is changed. Fixes bug 2001-08-07 01:05:50 +00:00
gtkaccellabel.h [ Patch from Sebastian Wilhelmi, 52790 ] 2001-08-23 15:26:49 +00:00
gtkaccessible.c Patch from Matthias Clasen to remove remove all instances of 2001-07-18 23:39:26 +00:00
gtkaccessible.h Add dependency on Atk for accessibility support. 2001-05-03 20:11:14 +00:00
gtkadjustment.c Patch from Matthias Clasen to remove remove all instances of 2001-07-18 23:39:26 +00:00
gtkadjustment.h Fix stupid error introduced last night that was making things decidedly 2001-06-24 15:34:48 +00:00
gtkalignment.c coalescing property notifies 2001-08-11 20:27:36 +00:00
gtkalignment.h Use G_GNUC_CONST. 2000-08-30 00:33:38 +00:00
gtkarrow.c coalescing property notifies 2001-08-11 20:27:36 +00:00
gtkarrow.h Convert to new property API, patch from Lee Mallabone 2001-02-21 00:29:03 +00:00
gtkaspectframe.c coalescing property notifies 2001-08-11 20:27:36 +00:00
gtkaspectframe.h Convert to new property API, patch from Lee Mallabone 2001-02-21 00:29:03 +00:00
gtkbbox.c Patch from Matthias Clasen to remove remove all instances of 2001-07-18 23:39:26 +00:00
gtkbbox.h Patch from Mathias Hasselmann to fix warnings in compat macros. (#56773) 2001-07-12 21:46:32 +00:00
gtkbin.c Use GtkType/GType instead of uint. 2001-09-06 21:51:35 +00:00
gtkbin.h New function 2001-05-25 03:42:40 +00:00
gtkbindings.c changed gtk_item_factory_dump_items() and gtk_item_factory_dump_rc() 2001-04-03 13:18:00 +00:00
gtkbindings.h changed gtk_item_factory_dump_items() and gtk_item_factory_dump_rc() 2001-04-03 13:18:00 +00:00
gtkbox.c removed unused widget_class. 2001-08-16 10:49:36 +00:00
gtkbox.h Patch from Gregory Merchan to add gtk_button_box_set_secondary(), which 2001-07-06 02:10:32 +00:00
gtkbutton.c Patch from vishnu@pobox.com (Joshua N Pritikin) to emit signal at the 2001-09-03 06:45:17 +00:00
gtkbutton.h Add properties for labels, mnemonics and stock items. Added C accessor 2001-08-27 01:05:07 +00:00
gtkcalendar.c Patch from Matthias Clasen to remove remove all instances of 2001-07-18 23:39:26 +00:00
gtkcalendar.h Applied patch from Nils Barth (bug # 51041) to replace "gint" with 2001-03-16 20:12:40 +00:00
gtkcellrenderer.c Sun Aug 19 01:44:44 2001 Jonathan Blandford <jrb@redhat.com>> 2001-08-19 06:58:11 +00:00
gtkcellrenderer.h 2 new signals; is_expander/is_expanded. 2001-08-19 04:19:56 +00:00
gtkcellrendererpixbuf.c 2 new signals; is_expander/is_expanded. 2001-08-19 04:19:56 +00:00
gtkcellrendererpixbuf.h 2 new signals; is_expander/is_expanded. 2001-08-19 04:19:56 +00:00
gtkcellrenderertext.c change color when the GtkTreeView loses focus. 2001-08-29 21:30:20 +00:00
gtkcellrenderertext.h changed new_with_types to just plain new, fixing the number of columns, 2001-06-30 02:38:17 +00:00
gtkcellrenderertextpixbuf.c It's pixbuf_pos, not pixbufpos. 2001-04-12 18:16:13 +00:00
gtkcellrenderertextpixbuf.h Added patch from Jeff Franks <jcf@tpg.com.au> to add GET_CLASS macros to 2001-05-22 20:30:48 +00:00
gtkcellrenderertoggle.c change color when the GtkTreeView loses focus. 2001-08-29 21:30:20 +00:00
gtkcellrenderertoggle.h Fix stupid error introduced last night that was making things decidedly 2001-06-24 15:34:48 +00:00
gtkcheckbutton.c Add properties for labels, mnemonics and stock items. Added C accessor 2001-08-27 01:05:07 +00:00
gtkcheckbutton.h Fix G_VALUE_NO_COPY_CONTENTS instead of G_SIGNAL_TYPE_STATIC_SCOPE 2001-04-02 15:51:28 +00:00
gtkcheckmenuitem.c Patch from Matthias Clasen to remove remove all instances of 2001-07-18 23:39:26 +00:00
gtkcheckmenuitem.h [ Patch from Sebastian Wilhelmi, 52790 ] 2001-08-23 15:26:49 +00:00
gtkclipboard.c ask apps for COMPOUND_TEXT instead of TEXT correctly interpret the return 2001-08-08 17:58:52 +00:00
gtkclipboard.h actually put /* */ around #endif comment. 2001-02-25 01:12:13 +00:00
gtkclist.c deprecate GTK_SELECTION_EXTENDED. 2001-08-27 18:25:49 +00:00
gtkclist.h i2001-04-24 Alexander Larsson <alexl@redhat.com> 2001-04-24 14:58:33 +00:00
gtkcolorsel.c Fix conversion from float to int so that we don't get skew in the int => 2001-08-05 15:27:30 +00:00
gtkcolorsel.h gtk/gtkaccellabel.c (gtk_accel_label_class_init) Use Shift/Ctrl instead of 2001-07-19 18:58:53 +00:00
gtkcolorseldialog.c get sizes an icon set can render without falling back to missing image 2001-05-25 20:41:46 +00:00
gtkcolorseldialog.h Use G_GNUC_CONST. 2000-08-30 00:33:38 +00:00
gtkcombo.c coalescing property notifies 2001-08-11 20:27:36 +00:00
gtkcombo.h Applied patch from Nils Barth (bug # 51041) to replace "gint" with 2001-03-16 20:12:40 +00:00
gtkcompat.h.in Fix stupid error introduced last night that was making things decidedly 2001-06-24 15:34:48 +00:00
gtkcontainer.c add default icon 2001-08-29 02:20:02 +00:00
gtkcontainer.h Rename gtk_container_children() to gtk_container_get_children. Added 2001-08-23 23:38:32 +00:00
gtkctree.c deprecate GTK_SELECTION_EXTENDED. 2001-08-27 18:25:49 +00:00
gtkctree.h [ Patch from Sebastian Wilhelmi, 52790 ] 2001-08-23 15:26:49 +00:00
gtkcurve.c coalescing property notifies 2001-08-11 20:27:36 +00:00
gtkcurve.h CVS is doing its broken pipe thing, this is more of the previous commit 2001-02-03 01:09:41 +00:00
gtkdebug.h gtk/docs/debugging.txt, gdk/gdk.c, gdk/gdkinternals.h, 2001-08-15 06:52:19 +00:00
gtkdialog.c Rename gtk_container_children() to gtk_container_get_children. Added 2001-08-23 23:38:32 +00:00
gtkdialog.h Clip the retrieved image data to the screen, using a server grab to avoid 2001-06-29 01:59:02 +00:00
gtkdnd.c Make gdkx.h the only installed header from gdk/x11. All structures in 2001-09-07 21:50:20 +00:00
gtkdnd.h Add a special size for drag-and-drop GTK_ICON_SIZE_DND (Default to 32x32) 2001-06-25 01:51:58 +00:00
gtkdrawingarea.c Patch from Matthias Clasen to remove remove all instances of 2001-07-18 23:39:26 +00:00
gtkdrawingarea.h CVS is doing its broken pipe thing, this is more of the previous commit 2001-02-03 01:09:41 +00:00
gtkeditable.c Patch from Matthias Clasen to remove remove all instances of 2001-07-18 23:39:26 +00:00
gtkeditable.h Fix stupid error introduced last night that was making things decidedly 2001-06-24 15:34:48 +00:00
gtkentry.c Fix typo that sometimes caused selection not to work properly. 2001-07-19 18:47:03 +00:00
gtkentry.h Fix typo that sometimes caused selection not to work properly. 2001-07-19 18:47:03 +00:00
gtkenums.h Use the GTK selection types rather than GtkTreeSelectionMode. 2001-08-27 19:19:24 +00:00
gtkeventbox.c Patch from Matthias Clasen to remove remove all instances of 2001-07-18 23:39:26 +00:00
gtkeventbox.h Use G_GNUC_CONST. 2000-08-30 00:33:38 +00:00
gtkfilesel.c Patch from Matthias Clasen to remove remove all instances of 2001-07-18 23:39:26 +00:00
gtkfilesel.h Apply property patch from Lee Mallabone 2001-03-23 23:39:24 +00:00
gtkfixed.c fix a typo. 2001-08-10 03:46:08 +00:00
gtkfixed.h fix a typo. 2001-08-10 03:46:08 +00:00
gtkfontsel.c Use GtkType/GType instead of uint. 2001-09-06 21:51:35 +00:00
gtkfontsel.h Deprecate gtk_menu_bar_append/prepend/insert, forgot to do this when we 2001-08-23 23:30:43 +00:00
gtkframe.c Enforce the widget/child realization/mapping invariants. 2001-07-19 14:57:15 +00:00
gtkframe.h Fix stupid error introduced last night that was making things decidedly 2001-06-24 15:34:48 +00:00
gtkgamma.c Patch from Matthias Clasen to remove remove all instances of 2001-07-18 23:39:26 +00:00
gtkgamma.h CVS is doing its broken pipe thing, this is more of the previous commit 2001-02-03 01:09:41 +00:00
gtkgc.c GCompareFunc -> GEqualFunc where applicable. 2000-11-13 13:15:41 +00:00
gtkgc.h applied patch from Andreas Persenius <ndap@swipnet.se> that updates the 2000-07-26 11:33:08 +00:00
gtkhandlebox.c Patch from Matthias Clasen to remove remove all instances of 2001-07-18 23:39:26 +00:00
gtkhandlebox.h Fix stupid error introduced last night that was making things decidedly 2001-06-24 15:34:48 +00:00
gtkhbbox.c Patch from Gregory Merchan to add gtk_button_box_set_secondary(), which 2001-07-06 02:10:32 +00:00
gtkhbbox.h new function, turns off decorations for a window. 2001-03-07 21:10:44 +00:00
gtkhbox.c Patch from Matthias Clasen to remove remove all instances of 2001-07-18 23:39:26 +00:00
gtkhbox.h Use G_GNUC_CONST. 2000-08-30 00:33:38 +00:00
gtkhpaned.c Patch from Matthias Clasen to remove remove all instances of 2001-07-18 23:39:26 +00:00
gtkhpaned.h Use G_GNUC_CONST. 2000-08-30 00:33:38 +00:00
gtkhruler.c Patch from Matthias Clasen to remove remove all instances of 2001-07-18 23:39:26 +00:00
gtkhruler.h CVS is doing its broken pipe thing, this is more of the previous commit 2001-02-03 01:09:41 +00:00
gtkhscale.c Add missing gdk_rectangle_get_type() prototype. 2001-06-14 20:41:44 +00:00
gtkhscale.h clamp the value to the range that was set 2001-06-05 20:07:02 +00:00
gtkhscrollbar.c make this special-case hscale/vscale details, so we can use it for 2001-06-04 02:31:12 +00:00
gtkhscrollbar.h Use G_GNUC_CONST. 2000-08-30 00:33:38 +00:00
gtkhseparator.c Patch from Matthias Clasen to remove remove all instances of 2001-07-18 23:39:26 +00:00
gtkhseparator.h Use G_GNUC_CONST. 2000-08-30 00:33:38 +00:00
gtkhsv.c gtk/gtkhsv.c (gtk_hsv_map, gtk_hsv_unmap): Reinstate these 2001-08-07 20:28:44 +00:00
gtkhsv.h forgot to save 2001-06-08 18:11:09 +00:00
gtkiconfactory.c gdk_device_get_history moved to gdk/gdkinput.c like the other backends 2001-07-20 18:05:33 +00:00
gtkiconfactory.h get sizes an icon set can render without falling back to missing image 2001-05-25 20:41:46 +00:00
gtkimage.c add default icon 2001-08-29 02:20:02 +00:00
gtkimage.h add default icon 2001-08-29 02:20:02 +00:00
gtkimagemenuitem.c Enforce the widget/child realization/mapping invariants. 2001-07-19 14:57:15 +00:00
gtkimagemenuitem.h Use new mnemonic convenience functions 2001-06-05 18:22:30 +00:00
gtkimcontext.c Patch from Matthias Clasen to remove remove all instances of 2001-07-18 23:39:26 +00:00
gtkimcontext.h Add a virtual function to set whether the IM context should use the 2001-03-26 20:35:21 +00:00
gtkimcontextsimple.c Formatting fixes from multihead brnach. [ mostly foo(bar) => foo (bar) ] 2001-07-12 17:50:14 +00:00
gtkimcontextsimple.h add gdkkeys.[hc] 2000-12-06 05:31:30 +00:00
gtkimmodule.c Remove spurious const. 2001-03-03 18:39:33 +00:00
gtkimmodule.h fix busted /* comment */ 2001-03-06 00:09:28 +00:00
gtkimmulticontext.c Add a direction-changed signal, and gdk_keymap_get_current_direction(). 2001-06-08 16:07:00 +00:00
gtkimmulticontext.h Make parent_class static. 2000-11-12 03:43:24 +00:00
gtkinputdialog.c Make gdkx.h the only installed header from gdk/x11. All structures in 2001-09-07 21:50:20 +00:00
gtkinputdialog.h CVS is doing its broken pipe thing, this is more of the previous commit 2001-02-03 01:09:41 +00:00
gtkintl.h Move gtk-config to gtk-config-2.0 move gtk_.m4 to gtk-2.0.m4 2000-07-14 20:08:10 +00:00
gtkinvisible.c Patch from Matthias Clasen to remove remove all instances of 2001-07-18 23:39:26 +00:00
gtkinvisible.h Make gdkx.h the only installed header from gdk/x11. All structures in 2001-09-07 21:50:20 +00:00
gtkitem.c Enforce the widget/child realization/mapping invariants. 2001-07-19 14:57:15 +00:00
gtkitem.h Use G_GNUC_CONST. 2000-08-30 00:33:38 +00:00
gtkitemfactory.c Use autoconf 2.13/2.50 compat macro. 2001-08-27 15:17:51 +00:00
gtkitemfactory.h use gdk_pixbuf_new_from_stream(). fixed up item factory so inlined pixbufs 2001-06-26 20:56:32 +00:00
gtklabel.c Add properties for labels, mnemonics and stock items. Added C accessor 2001-08-27 01:05:07 +00:00
gtklabel.h [ Patch from Sebastian Wilhelmi, 52790 ] 2001-08-23 15:26:49 +00:00
gtklayout.c coalescing property notifies 2001-08-11 20:27:36 +00:00
gtklayout.h Fix stupid error introduced last night that was making things decidedly 2001-06-24 15:34:48 +00:00
gtklist.c deprecate GTK_SELECTION_EXTENDED. 2001-08-27 18:25:49 +00:00
gtklist.h CVS is doing its broken pipe thing, this is more of the previous commit 2001-02-03 01:09:41 +00:00
gtklistitem.c Patch from Matthias Clasen to remove remove all instances of 2001-07-18 23:39:26 +00:00
gtklistitem.h Use G_GNUC_CONST. 2000-08-30 00:33:38 +00:00
gtkliststore.c fix initial val for sort column. 2001-09-04 22:15:18 +00:00
gtkliststore.h handle default sort feature 2001-09-03 23:37:39 +00:00
gtkmain.c Add "use_align" to give people the option to just make a cell visible. 2001-08-24 20:09:26 +00:00
gtkmain.h Add missing gdk_rectangle_get_type() prototype. 2001-06-14 20:41:44 +00:00
gtkmarshal.list commiting patch after comments from Alex on IRC 2001-07-25 13:36:02 +00:00
gtkmarshalers.list commiting patch after comments from Alex on IRC 2001-07-25 13:36:02 +00:00
gtkmenu.c Break compatibility and make gtk_image_new() take no arguments. The 2001-08-25 03:15:26 +00:00
gtkmenu.h Deprecate gtk_menu_bar_append/prepend/insert, forgot to do this when we 2001-08-23 23:30:43 +00:00
gtkmenubar.c Deprecate gtk_menu_bar_append/prepend/insert, forgot to do this when we 2001-08-23 23:30:43 +00:00
gtkmenubar.h Fix a cuple of typos in compat macros. (#59624, Skip Montaro) 2001-08-27 18:22:31 +00:00
gtkmenuitem.c Set current serial so that we don't eternally update the keymap after we 2001-09-03 01:43:53 +00:00
gtkmenuitem.h Use autoconf 2.13/2.50 compat macro. 2001-08-27 15:17:51 +00:00
gtkmenushell.c commiting patch after comments from Alex on IRC 2001-07-25 13:36:02 +00:00
gtkmenushell.h GdkEventButton->button can occupy significantly more than 2 bits. Besides, 2000-11-22 01:00:26 +00:00
gtkmessagedialog.c implement overwrite mode 2001-06-01 19:26:01 +00:00
gtkmessagedialog.h create some stock buttons with the default accel group (create_image): 2000-10-20 23:14:41 +00:00
gtkmisc.c coalescing property notifies 2001-08-11 20:27:36 +00:00
gtkmisc.h Fix stupid error introduced last night that was making things decidedly 2001-06-24 15:34:48 +00:00
gtknotebook.c fix finding of child's page, since we have to validly deal with labels and 2001-07-31 21:23:19 +00:00
gtknotebook.h [ Patch from Sebastian Wilhelmi, 52790 ] 2001-08-23 15:26:49 +00:00
gtkobject.c Patch from Matthias Clasen to remove remove all instances of 2001-07-18 23:39:26 +00:00
gtkobject.h fix PROP_EVENTS. 2001-06-19 12:54:10 +00:00
gtkoldeditable.c gdk_device_get_history moved to gdk/gdkinput.c like the other backends 2001-07-20 18:05:33 +00:00
gtkoldeditable.h Remove old XIM code. 2001-03-09 20:28:20 +00:00
gtkoptionmenu.c const correct string parameter. 2001-08-17 16:33:04 +00:00
gtkoptionmenu.h Adapt to uscore-ification of gtktextiterprivate 2001-01-04 17:48:43 +00:00
gtkpacker.c coalescing property notifies 2001-08-11 20:27:36 +00:00
gtkpacker.h [ Patch from Sebastian Wilhelmi, 52790 ] 2001-08-23 15:26:49 +00:00
gtkpaned.c Enforce the widget/child realization/mapping invariants. 2001-07-19 14:57:15 +00:00
gtkpaned.h [ Patch from Sebastian Wilhelmi, 52790 ] 2001-08-23 15:26:49 +00:00
gtkpixmap.c Patch from Matthias Clasen to remove remove all instances of 2001-07-18 23:39:26 +00:00
gtkpixmap.h Applied patch from Nils Barth (bug # 51041) to replace "gint" with 2001-03-16 20:12:40 +00:00
gtkplug.c Make gdkx.h the only installed header from gdk/x11. All structures in 2001-09-07 21:50:20 +00:00
gtkplug.h Check GTK_WIDGET_TOPLEVEL(gtk_widget_get_toplevel (widget)), not 2001-07-05 02:58:34 +00:00
gtkpreview.c Patch from Matthias Clasen to remove remove all instances of 2001-07-18 23:39:26 +00:00
gtkpreview.h CVS is doing its broken pipe thing, this is more of the previous commit 2001-02-03 01:09:41 +00:00
gtkprivate.h Enforce the widget/child realization/mapping invariants. 2001-07-19 14:57:15 +00:00
gtkprogress.c coalescing property notifies 2001-08-11 20:27:36 +00:00
gtkprogress.h Handle quoting of / with \; properly handle __ in paths, quote " and \n in 2001-03-19 21:06:38 +00:00
gtkprogressbar.c gtk/gtkprogressbar.c (gtk_progress_bar_set_text): Move the setting 2001-08-28 19:54:52 +00:00
gtkprogressbar.h Handle quoting of / with \; properly handle __ in paths, quote " and \n in 2001-03-19 21:06:38 +00:00
gtkradiobutton.c add default icon 2001-08-29 02:20:02 +00:00
gtkradiobutton.h Fix stupid error introduced last night that was making things decidedly 2001-06-24 15:34:48 +00:00
gtkradiomenuitem.c Patch from Matthias Clasen to remove remove all instances of 2001-07-18 23:39:26 +00:00
gtkradiomenuitem.h Rename to gtk_radio_menu_item_get_group(), add deprecated alias. (#57044) 2001-07-12 22:45:05 +00:00
gtkrange.c Patch from Matthias Clasen to remove remove all instances of 2001-07-18 23:39:26 +00:00
gtkrange.h Fix stupid error introduced last night that was making things decidedly 2001-06-24 15:34:48 +00:00
gtkrbtree.c add warnings per jrb's request. 2001-09-01 20:56:41 +00:00
gtkrbtree.h Add support for animating expanders. 2001-07-22 20:09:00 +00:00
gtkrc.c [ Patch from Sebastian Wilhelmi, 52790 ] 2001-08-23 15:26:49 +00:00
gtkrc.h Allow %NULL for style to mean "revert to default style" 2001-06-30 16:08:25 +00:00
gtkruler.c coalescing property notifies 2001-08-11 20:27:36 +00:00
gtkruler.h Fix stupid error introduced last night that was making things decidedly 2001-06-24 15:34:48 +00:00
gtkscale.c Patch from Matthias Clasen to remove remove all instances of 2001-07-18 23:39:26 +00:00
gtkscale.h [ Patch from Sebastian Wilhelmi, 52790 ] 2001-08-23 15:26:49 +00:00
gtkscrollbar.c make this special-case hscale/vscale details, so we can use it for 2001-06-04 02:31:12 +00:00
gtkscrollbar.h Use G_GNUC_CONST. 2000-08-30 00:33:38 +00:00
gtkscrolledwindow.c Add property support. (#51858) 2001-07-19 19:49:01 +00:00
gtkscrolledwindow.h Fix stupid error introduced last night that was making things decidedly 2001-06-24 15:34:48 +00:00
gtkselection.c Make gdkx.h the only installed header from gdk/x11. All structures in 2001-09-07 21:50:20 +00:00
gtkselection.h Applied patch from Nils Barth (bug # 51041) to replace "gint" with 2001-03-16 20:12:40 +00:00
gtkseparator.c applied patch from Andreas Persenius <ndap@swipnet.se> that updates the 2000-07-26 11:33:08 +00:00
gtkseparator.h Use G_GNUC_CONST. 2000-08-30 00:33:38 +00:00
gtkseparatormenuitem.c Rename to the more correct gtk-go-up. 2001-05-27 21:43:09 +00:00
gtkseparatormenuitem.h Fix a search-and-replace screwup (s/CHECK/SEPARATOR/ gone awry). Patch 2001-06-05 00:20:21 +00:00
gtksettings.c coalescing property notifies 2001-08-11 20:27:36 +00:00
gtksettings.h Allow %NULL for style to mean "revert to default style" 2001-06-30 16:08:25 +00:00
gtksignal.c fix PROP_EVENTS. 2001-06-19 12:54:10 +00:00
gtksignal.h Mon Jul 30 10:49:16 PDT 2001 Suresh Chandrasekharan 2001-07-30 18:05:28 +00:00
gtksizegroup.c Remove reallocate-redraws property. This is something that only a widget 2001-05-18 18:30:59 +00:00
gtksizegroup.h Docs fixups, and: 2001-06-15 18:25:42 +00:00
gtksocket.c Make gdkx.h the only installed header from gdk/x11. All structures in 2001-09-07 21:50:20 +00:00
gtksocket.h Check GTK_WIDGET_TOPLEVEL(gtk_widget_get_toplevel (widget)), not 2001-07-05 02:58:34 +00:00
gtkspinbutton.c Use GtkType/GType instead of uint. 2001-09-06 21:51:35 +00:00
gtkspinbutton.h Fix stupid error introduced last night that was making things decidedly 2001-06-24 15:34:48 +00:00
gtkstatusbar.c Patch from Matthias Clasen to remove remove all instances of 2001-07-18 23:39:26 +00:00
gtkstatusbar.h *** empty log message *** 2001-03-29 21:17:45 +00:00
gtkstock.c get sizes an icon set can render without falling back to missing image 2001-05-25 20:41:46 +00:00
gtkstock.h Add a special size for drag-and-drop GTK_ICON_SIZE_DND (Default to 32x32) 2001-06-25 01:51:58 +00:00
gtkstyle.c change color when the GtkTreeView loses focus. 2001-08-29 21:30:20 +00:00
gtkstyle.h [ Patch from Sebastian Wilhelmi, 52790 ] 2001-08-23 15:26:49 +00:00
gtktable.c pass ->nrows to gtk_table_resize as the first argument for 2001-08-26 04:01:27 +00:00
gtktable.h Fix stupid error introduced last night that was making things decidedly 2001-06-24 15:34:48 +00:00
gtktearoffmenuitem.c Patch from Matthias Clasen to remove remove all instances of 2001-07-18 23:39:26 +00:00
gtktearoffmenuitem.h Use G_GNUC_CONST. 2000-08-30 00:33:38 +00:00
gtktext.c Patch from Matthias Clasen to remove remove all instances of 2001-07-18 23:39:26 +00:00
gtktext.h Applied patch from Nils Barth (bug # 51041) to replace "gint" with 2001-03-16 20:12:40 +00:00
gtktextbtree.c update adjustments after validating destination yrange; fixes #53918 (This 2001-09-07 21:39:18 +00:00
gtktextbtree.h add insert_child_anchor signal, bug #50245 2001-02-19 23:27:27 +00:00
gtktextbuffer.c Instead of always mirroring the selection to a single PRIMARY selection, 2001-08-31 01:33:11 +00:00
gtktextbuffer.h Instead of always mirroring the selection to a single PRIMARY selection, 2001-08-31 01:33:11 +00:00
gtktextchild.c add insert_child_anchor signal, bug #50245 2001-02-19 23:27:27 +00:00
gtktextchild.h add insert_child_anchor signal, bug #50245 2001-02-19 23:27:27 +00:00
gtktextchildprivate.h add insert_child_anchor signal, bug #50245 2001-02-19 23:27:27 +00:00
gtktextdisplay.c handle NULL shaped object from the empty-child-anchor case by drawing a 2001-08-30 19:09:09 +00:00
gtktextdisplay.h Massive reindentation and reformatting. Arg alignment and comments still 2000-10-30 17:03:00 +00:00
gtktextiter.c Add missing gdk_rectangle_get_type() prototype. 2001-06-14 20:41:44 +00:00
gtktextiter.h Add missing gdk_rectangle_get_type() prototype. 2001-06-14 20:41:44 +00:00
gtktextiterprivate.h Adapt to uscore-ification of gtktextiterprivate 2001-01-04 17:48:43 +00:00
gtktextlayout.c handle NULL shaped object from the empty-child-anchor case by drawing a 2001-08-30 19:09:09 +00:00
gtktextlayout.h Fix stupid error introduced last night that was making things decidedly 2001-06-24 15:34:48 +00:00
gtktextmark.c chain parent class handlers, pointed out by Joshua N Pritikin 2001-08-23 16:54:49 +00:00
gtktextmark.h offset the current invalid region, fixes redraw bug while scrolling the 2001-01-12 23:23:40 +00:00
gtktextmarkprivate.h fix constness warning 2000-10-26 23:50:57 +00:00
gtktextsegment.c Adapt to uscore-ification of gtktextiterprivate 2001-01-04 17:48:43 +00:00
gtktextsegment.h Massive reindentation and reformatting. Arg alignment and comments still 2000-10-30 17:03:00 +00:00
gtktexttag.c update adjustments after validating destination yrange; fixes #53918 (This 2001-09-07 21:39:18 +00:00
gtktexttag.h Add missing gdk_rectangle_get_type() prototype. 2001-06-14 20:41:44 +00:00
gtktexttagprivate.h uscore-prepend all the stuff in here. 2001-01-01 20:26:10 +00:00
gtktexttagtable.c Rename from gtk_text_tag_table_size(). (#59366) 2001-08-23 22:51:58 +00:00
gtktexttagtable.h Rename from gtk_text_tag_table_size(). (#59366) 2001-08-23 22:51:58 +00:00
gtktexttypes.c change "offset" to "rise" 2000-11-15 03:41:45 +00:00
gtktexttypes.h Changes by Hans Breuer: 2000-11-30 23:39:50 +00:00
gtktextview.c update adjustments after validating destination yrange; fixes #53918 (This 2001-09-07 21:39:18 +00:00
gtktextview.h Removed - didn't work and not particularly useful anyways if it did. 2001-06-24 16:08:15 +00:00
gtkthemes.c improve error message to contain the word "theme" 2001-03-24 16:35:20 +00:00
gtkthemes.h Make parent_class static. 2000-11-12 03:43:24 +00:00
gtktipsquery.c Use GtkType/GType instead of uint. 2001-09-06 21:51:35 +00:00
gtktipsquery.h CVS is doing its broken pipe thing, this is more of the previous commit 2001-02-03 01:09:41 +00:00
gtktogglebutton.c Add properties for labels, mnemonics and stock items. Added C accessor 2001-08-27 01:05:07 +00:00
gtktogglebutton.h [ Patch from Sebastian Wilhelmi, 52790 ] 2001-08-23 15:26:49 +00:00
gtktoolbar.c Rename gtk_container_children() to gtk_container_get_children. Added 2001-08-23 23:38:32 +00:00
gtktoolbar.h Fix stupid error introduced last night that was making things decidedly 2001-06-24 15:34:48 +00:00
gtktooltips.c gtk/gtktooltips.c tests/testtreesort.c inserted some casts to get rid of 2001-08-19 11:48:32 +00:00
gtktooltips.h Clip the retrieved image data to the screen, using a server grab to avoid 2001-06-29 01:59:02 +00:00
gtktree.c deprecate GTK_SELECTION_EXTENDED. 2001-08-27 18:25:49 +00:00
gtktree.h Applied patch from Nils Barth (bug # 51041) to replace "gint" with 2001-03-16 20:12:40 +00:00
gtktreedatalist.c add missing '}' that got munched by #endif. 2001-04-23 23:03:53 +00:00
gtktreedatalist.h Initial work on implementing the GtkTreeSortable interface. Basicaly a big 2001-04-01 05:52:23 +00:00
gtktreednd.c fix bug in here where prev pointer was set to the wrong thing 2001-01-31 00:57:49 +00:00
gtktreednd.h fix bug in here where prev pointer was set to the wrong thing 2001-01-31 00:57:49 +00:00
gtktreeitem.c Enforce the widget/child realization/mapping invariants. 2001-07-19 14:57:15 +00:00
gtktreeitem.h bracket in #ifdef GTK_ENABLE_BROKEN. 2001-01-31 03:51:14 +00:00
gtktreemodel.c Add "use_align" to give people the option to just make a cell visible. 2001-08-24 20:09:26 +00:00
gtktreemodel.h const correct string parameter. 2001-08-17 16:33:04 +00:00
gtktreemodelsort.c much changes in an attempt to make it working. It mostly works now, 2001-09-02 21:47:12 +00:00
gtktreemodelsort.h much changes in an attempt to make it working. It mostly works now, 2001-09-02 21:47:12 +00:00
gtktreeprivate.h Add "use_align" to give people the option to just make a cell visible. 2001-08-24 20:09:26 +00:00
gtktreeselection.c Use the GTK selection types rather than GtkTreeSelectionMode. 2001-08-27 19:19:24 +00:00
gtktreeselection.h Use the GTK selection types rather than GtkTreeSelectionMode. 2001-08-27 19:19:24 +00:00
gtktreesortable.c fix initial val for sort column. 2001-09-04 22:15:18 +00:00
gtktreesortable.h fix initial val for sort column. 2001-09-04 22:15:18 +00:00
gtktreestore.c fix initial val for sort column. 2001-09-04 22:15:18 +00:00
gtktreestore.h handle default sort feature 2001-09-03 23:37:39 +00:00
gtktreeview.c Make gdkx.h the only installed header from gdk/x11. All structures in 2001-09-07 21:50:20 +00:00
gtktreeview.h pass in user data. 2001-09-01 04:14:25 +00:00
gtktreeviewcolumn.c Add "use_align" to give people the option to just make a cell visible. 2001-08-24 20:09:26 +00:00
gtktreeviewcolumn.h Add "use_align" to give people the option to just make a cell visible. 2001-08-24 20:09:26 +00:00
gtktypeutils.c Remove change check for GTK_TYPE_OBJECT derivation to G_TYPE_OBJECTS - 2001-07-01 00:57:21 +00:00
gtktypeutils.h [ Patch from Sebastian Wilhelmi, 52790 ] 2001-08-23 15:26:49 +00:00
gtkvbbox.c Patch from Gregory Merchan to add gtk_button_box_set_secondary(), which 2001-07-06 02:10:32 +00:00
gtkvbbox.h new function, turns off decorations for a window. 2001-03-07 21:10:44 +00:00
gtkvbox.c Patch from Matthias Clasen to remove remove all instances of 2001-07-18 23:39:26 +00:00
gtkvbox.h Use G_GNUC_CONST. 2000-08-30 00:33:38 +00:00
gtkversion.h.in [ Patch from Sebastian Wilhelmi, 52790 ] 2001-08-23 15:27:21 +00:00
gtkviewport.c Enforce the widget/child realization/mapping invariants. 2001-07-19 14:57:15 +00:00
gtkviewport.h Fix stupid error introduced last night that was making things decidedly 2001-06-24 15:34:48 +00:00
gtkvpaned.c Patch from Matthias Clasen to remove remove all instances of 2001-07-18 23:39:26 +00:00
gtkvpaned.h Use G_GNUC_CONST. 2000-08-30 00:33:38 +00:00
gtkvruler.c Patch from Matthias Clasen to remove remove all instances of 2001-07-18 23:39:26 +00:00
gtkvruler.h CVS is doing its broken pipe thing, this is more of the previous commit 2001-02-03 01:09:41 +00:00
gtkvscale.c Add missing gdk_rectangle_get_type() prototype. 2001-06-14 20:41:44 +00:00
gtkvscale.h clamp the value to the range that was set 2001-06-05 20:07:02 +00:00
gtkvscrollbar.c make this special-case hscale/vscale details, so we can use it for 2001-06-04 02:31:12 +00:00
gtkvscrollbar.h Use G_GNUC_CONST. 2000-08-30 00:33:38 +00:00
gtkvseparator.c Patch from Matthias Clasen to remove remove all instances of 2001-07-18 23:39:26 +00:00
gtkvseparator.h Use G_GNUC_CONST. 2000-08-30 00:33:38 +00:00
gtkwidget.c Make unrealize GTK_RUN_LAST. 2001-08-28 16:43:28 +00:00
gtkwidget.h Really remove set_default_style(). 2001-08-19 03:04:09 +00:00
gtkwindow-decorate.c Update to new PangoLanguage changes. 2001-06-15 15:58:26 +00:00
gtkwindow-decorate.h New files. Contains an implementation of a minimal WM for linux-fb. 2001-01-08 17:04:17 +00:00
gtkwindow.c Make gdkx.h the only installed header from gdk/x11. All structures in 2001-09-07 21:50:20 +00:00
gtkwindow.h Make gdkx.h the only installed header from gdk/x11. All structures in 2001-09-07 21:50:20 +00:00
line-arrow.xbm Initial revision 1997-11-24 22:37:52 +00:00
line-wrap.xbm Initial revision 1997-11-24 22:37:52 +00:00
makeenums.awk renamed the newly created gtk_enum_get_values and gtk_enum_set_values to 1998-06-09 08:21:20 +00:00
makeenums.h Adapt cast macros to standard. 1999-11-22 21:52:50 +00:00
makeenums.pl use more elaborate variable names. 2001-04-03 04:29:58 +00:00
Makefile.am [ Patch from Sebastian Wilhelmi, 52790 ] 2001-08-23 15:26:49 +00:00
makefile.mingw.in [ Patch from Sebastian Wilhelmi, 52790 ] 2001-08-23 15:26:49 +00:00
makefile.msc.in [ Patch from Sebastian Wilhelmi, 52790 ] 2001-08-23 15:26:49 +00:00
maketypes.awk urg, removed implementation of gtk_marshal_VOID__INT_INT_INT_INT. if 2000-10-25 22:34:14 +00:00
oldest-source-stamp add this, it'S reall what it says 2000-10-26 01:18:15 +00:00
queryimmodules.c Make parent_class static. 2000-11-12 03:43:24 +00:00
simple.c marshaller fixes. 2001-03-07 14:49:21 +00:00
tree_minus.xbm Tree widget implementation by Bolliet Jerome. 1997-12-17 23:41:42 +00:00
tree_minus.xpm Tree widget implementation by Bolliet Jerome. 1997-12-17 23:41:42 +00:00
tree_plus.xbm Tree widget implementation by Bolliet Jerome. 1997-12-17 23:41:42 +00:00
tree_plus.xpm Tree widget implementation by Bolliet Jerome. 1997-12-17 23:41:42 +00:00
treestoretest.c fixes to compile with G_DISABLE_COMPAT 2001-06-29 16:30:25 +00:00
xembed.h For XEMBED embedding add a _XEMBED_INFO property to the client with 2001-07-03 14:14:30 +00:00