gimp/app/widgets
Michael Natterer a3bb0b0dad Started to get rid of the gdisplays_foo() functions in
2002-05-08  Michael Natterer  <mitch@gimp.org>

	Started to get rid of the gdisplays_foo() functions in
	app/display/gimpdisplay-foreach.[ch]. Work in progress...

	* app/core/gimp.[ch]: added the display list to the Gimp object
	(as a GimpList of GimpObjects). This way we get more independent
	from whether there is GUI or not, as gimp->displays will simply
	be an empty list for the --no-interface case.

	* app/display/gimpdisplay.[ch]: Removed the global "display_list"
	and "display_num" variables. Use gimp->displays instead.

	* app/display/gimpdisplay-foreach.[ch]: renamed most functions
	from gdisplays_foo() to gimp_displays_foo() and pass them a Gimp
	pointer.

	* app/core/gimpimage.[ch]: added a "flush" signal.

	* app/display/gimpdisplay-handlers.c: connect to "flush" and call
	gimp_display_flush() in the callback.

	* tools/pdbgen/pdb/display.pdb: use gimp_displays_flush(gimp)
	here and only here.

	* app/pdb/display_cmds.c: regenerated.

	* app/app_procs.c
	* app/gui/gui.c
	* app/gui/preferences-dialog.c:
	s/gdislays_foo()/gimp_displays_foo(gimp)/

	* app/image_map.c
	* app/undo_history.c
	* app/display/gimpdisplayshell-callbacks.c
	* app/display/gimpdisplayshell-dnd.c
	* app/display/gimpdisplayshell-layer-select.c
	* app/display/gimpdisplayshell-scale.c
	* app/gui/channels-commands.c
	* app/gui/colormap-editor-commands.c
	* app/gui/convert-dialog.c
	* app/gui/drawable-commands.c
	* app/gui/edit-commands.c
	* app/gui/file-commands.c
	* app/gui/image-commands.c
	* app/gui/layers-commands.c
	* app/gui/offset-dialog.c
	* app/gui/qmask-commands.c
	* app/gui/select-commands.c
	* app/gui/vectors-commands.c
	* app/paint/gimpairbrush.c
	* app/tools/gimpbezierselecttool.c
	* app/tools/gimpblendtool.c
	* app/tools/gimpbrightnesscontrasttool.c
	* app/tools/gimpbucketfilltool.c
	* app/tools/gimpbycolorselecttool.c
	* app/tools/gimpcolorbalancetool.c
	* app/tools/gimpcurvestool.c
	* app/tools/gimpeditselectiontool.c
	* app/tools/gimpfreeselecttool.c
	* app/tools/gimpfuzzyselecttool.c
	* app/tools/gimphuesaturationtool.c
	* app/tools/gimpinktool.c
	* app/tools/gimpiscissorstool.c
	* app/tools/gimplevelstool.c
	* app/tools/gimpmeasuretool.c
	* app/tools/gimpmovetool.c
	* app/tools/gimppainttool.c
	* app/tools/gimpposterizetool.c
	* app/tools/gimprectselecttool.c
	* app/tools/gimptexttool.c
	* app/tools/gimpthresholdtool.c
	* app/tools/gimptransformtool.c
	* app/tools/gimpvectortool.c
	* app/widgets/gimpbufferview.c
	* app/widgets/gimpchannellistview.c
	* app/widgets/gimpcomponentlistitem.c
	* app/widgets/gimpdocumentview.c
	* app/widgets/gimpdrawablelistitem.c
	* app/widgets/gimpdrawablelistview.c
	* app/widgets/gimpimageview.c
	* app/widgets/gimpitemlistitem.c
	* app/widgets/gimpitemlistview.c
	* app/widgets/gimplayerlistitem.c
	* app/widgets/gimplayerlistview.c
	* app/widgets/gimpvectorslistview.c: replaced gdisplays_flush()
	with calls to gimp_image_flush(gimage). Removed inclusion of
	"display/gimpdisplay-foreach.h" from most files.
2002-05-08 17:48:24 +00:00
..
.cvsignore app/widgets/Makefile.am use gimp_mkenums to create widgets-enums.c, added 2002-03-18 22:26:41 +00:00
gimpbrusheditor.c added GimpPaletteEntry typedef. 2002-03-08 00:27:45 +00:00
gimpbrusheditor.h changed gimp_channel_get_color() to not return the color but take a second 2002-03-08 16:34:42 +00:00
gimpbrushfactoryview.c removed type checking casts from macros which return parts of 2002-03-10 18:31:42 +00:00
gimpbrushfactoryview.h CPPFLAGS: added -DGTK_DISABLE_DEPRECATED 2002-01-25 18:34:33 +00:00
gimpbrushpreview.c added a handler for GimpImage's "alpha_changed" signal (does nothing yet). 2001-10-17 16:11:28 +00:00
gimpbrushpreview.h bumped version number to 1.3.1. Require Glib/GTK+-1.3.11 and Pango-0.22. 2001-11-22 23:46:13 +00:00
gimpbufferpreview.c made gimp->global_buffer a GimpBuffer, not TileManager. 2001-12-12 23:48:18 +00:00
gimpbufferpreview.h bumped version number to 1.3.1. Require Glib/GTK+-1.3.11 and Pango-0.22. 2001-11-22 23:46:13 +00:00
gimpbufferview.c Started to get rid of the gdisplays_foo() functions in 2002-05-08 17:48:24 +00:00
gimpbufferview.h CPPFLAGS: added -DGTK_DISABLE_DEPRECATED 2002-01-25 18:34:33 +00:00
gimpchannellistitem.c added a handler for GimpImage's "alpha_changed" signal (does nothing yet). 2001-10-17 16:11:28 +00:00
gimpchannellistitem.h bumped version number to 1.3.1. Require Glib/GTK+-1.3.11 and Pango-0.22. 2001-11-22 23:46:13 +00:00
gimpchannellistview.c Started to get rid of the gdisplays_foo() functions in 2002-05-08 17:48:24 +00:00
gimpchannellistview.h bumped version number to 1.3.1. Require Glib/GTK+-1.3.11 and Pango-0.22. 2001-11-22 23:46:13 +00:00
gimpchanneltreeview.c Started to get rid of the gdisplays_foo() functions in 2002-05-08 17:48:24 +00:00
gimpchanneltreeview.h bumped version number to 1.3.1. Require Glib/GTK+-1.3.11 and Pango-0.22. 2001-11-22 23:46:13 +00:00
gimpcolordialog.c g_strdup() the stock_id passed to gimp_tool_info_new() because the 2002-03-14 17:07:02 +00:00
gimpcolordialog.h Made a GimpContainer out of the palette list: 2001-02-11 16:14:25 +00:00
gimpcolordisplayeditor.c treeviewized and undeprecated. 2002-03-16 15:02:23 +00:00
gimpcolormapeditor.c app/Makefile.am removed. 2002-05-07 16:23:14 +00:00
gimpcolormapeditor.h namespaceified and cleaned up a lot. Removed the menu code. 2002-03-17 13:52:25 +00:00
gimpcolorpanel.c devel-docs/Makefile.am new file documenting the core's include policy. 2002-05-03 12:45:22 +00:00
gimpcolorpanel.h bumped version number to 1.3.1. Require Glib/GTK+-1.3.11 and Pango-0.22. 2001-11-22 23:46:13 +00:00
gimpcomponentlistitem.c Started to get rid of the gdisplays_foo() functions in 2002-05-08 17:48:24 +00:00
gimpcomponentlistitem.h app/config/gimpconfig-deserialize.h fixed typos. 2001-12-13 20:19:41 +00:00
gimpcontainereditor.c CPPFLAGS: added -DGTK_DISABLE_DEPRECATED 2002-01-25 18:34:33 +00:00
gimpcontainereditor.h CPPFLAGS: added -DGTK_DISABLE_DEPRECATED 2002-01-25 18:34:33 +00:00
gimpcontainergridview.c treeviewized and undeprecated. 2002-03-16 15:02:23 +00:00
gimpcontainergridview.h treeviewized and undeprecated. 2002-03-16 15:02:23 +00:00
gimpcontainerlistview.c app/gimpprogress.c app/nav_window.c app/ops_buttons.c app/undo_history.c 2001-12-29 13:26:29 +00:00
gimpcontainerlistview.h bumped version number to 1.3.1. Require Glib/GTK+-1.3.11 and Pango-0.22. 2001-11-22 23:46:13 +00:00
gimpcontainermenu.c bumped version number to 1.3.1. Require Glib/GTK+-1.3.11 and Pango-0.22. 2001-11-22 23:46:13 +00:00
gimpcontainermenu.h Michael Natterer <mitch@gimp.org> 2001-12-03 13:44:59 +00:00
gimpcontainermenuimpl.c app/gimpprogress.c app/nav_window.c app/ops_buttons.c app/undo_history.c 2001-12-29 13:26:29 +00:00
gimpcontainermenuimpl.h bumped version number to 1.3.1. Require Glib/GTK+-1.3.11 and Pango-0.22. 2001-11-22 23:46:13 +00:00
gimpcontainerview-utils.c added "gchar *name_changed_signal" to GimpViewableClass which defaults to 2002-04-28 23:10:42 +00:00
gimpcontainerview-utils.h removed a useless g_return_if_fail(). 2001-11-23 16:25:01 +00:00
gimpcontainerview.c added GimpPaletteEntry typedef. 2002-03-08 00:27:45 +00:00
gimpcontainerview.h added GimpPaletteEntry typedef. 2002-03-08 00:27:45 +00:00
gimpcursor.c app/Makefile.am removed... 2002-05-05 19:17:41 +00:00
gimpcursor.h app/Makefile.am removed. Stuff now lives in app_procs.[ch] and in 2001-05-13 21:51:20 +00:00
gimpdataeditor.c app/gui/dialogs-constructors.[ch] app/gui/dialogs.c made the tool options 2002-03-10 15:05:58 +00:00
gimpdataeditor.h added GimpPaletteEntry typedef. 2002-03-08 00:27:45 +00:00
gimpdatafactoryview.c added GimpPaletteEntry typedef. 2002-03-08 00:27:45 +00:00
gimpdatafactoryview.h CPPFLAGS: added -DGTK_DISABLE_DEPRECATED 2002-01-25 18:34:33 +00:00
gimpdeviceinfo.c app/Makefile.am removed, chopped... 2001-12-07 17:39:51 +00:00
gimpdeviceinfo.h app/Makefile.am removed, chopped... 2001-12-07 17:39:51 +00:00
gimpdevices.c app/Makefile.am removed, chopped... 2001-12-07 17:39:51 +00:00
gimpdevices.h app/Makefile.am removed, chopped... 2001-12-07 17:39:51 +00:00
gimpdialogfactory.c register GimpImageType. 2002-04-16 23:03:23 +00:00
gimpdialogfactory.h g_strdup() the stock_id passed to gimp_tool_info_new() because the 2002-03-14 17:07:02 +00:00
gimpdnd.c all functions return the opened image and the pdb status plus a GError 2002-04-19 14:09:53 +00:00
gimpdnd.h app/core/Makefile.am app/core/core-types.h new base class for something 2002-02-25 17:58:50 +00:00
gimpdock.c gimp_dock_add_book() optimized to about two cases :) as 2002-03-22 00:07:53 +00:00
gimpdock.h g_strdup() the stock_id passed to gimp_tool_info_new() because the 2002-03-14 17:07:02 +00:00
gimpdockable.c added Rebecca Walter (bex). 2001-11-26 13:17:18 +00:00
gimpdockable.h bumped version number to 1.3.1. Require Glib/GTK+-1.3.11 and Pango-0.22. 2001-11-22 23:46:13 +00:00
gimpdockbook.c fixed a bug i introduced when making the tab_height configurable: need to 2002-03-20 12:57:59 +00:00
gimpdockbook.h bumped version number to 1.3.1. Require Glib/GTK+-1.3.11 and Pango-0.22. 2001-11-22 23:46:13 +00:00
gimpdocumentview.c Started to get rid of the gdisplays_foo() functions in 2002-05-08 17:48:24 +00:00
gimpdocumentview.h CPPFLAGS: added -DGTK_DISABLE_DEPRECATED 2002-01-25 18:34:33 +00:00
gimpdrawablelistitem.c Started to get rid of the gdisplays_foo() functions in 2002-05-08 17:48:24 +00:00
gimpdrawablelistitem.h app/widgets/Makefile.am app/widgets/widgets-types.h new GimpListItem 2002-02-25 18:41:14 +00:00
gimpdrawablelistview.c Started to get rid of the gdisplays_foo() functions in 2002-05-08 17:48:24 +00:00
gimpdrawablelistview.h app/core/Makefile.am app/core/core-types.h new base class for something 2002-02-25 17:58:50 +00:00
gimpdrawablepreview.c app/core/Makefile.am app/core/core-types.h new base class for something 2002-02-25 17:58:50 +00:00
gimpdrawablepreview.h bumped version number to 1.3.1. Require Glib/GTK+-1.3.11 and Pango-0.22. 2001-11-22 23:46:13 +00:00
gimpdrawabletreeview.c Started to get rid of the gdisplays_foo() functions in 2002-05-08 17:48:24 +00:00
gimpdrawabletreeview.h app/core/Makefile.am app/core/core-types.h new base class for something 2002-02-25 17:58:50 +00:00
gimpeditor.c app/paint/gimppaintoptions.h put the "Fade Out" and "Gradient" stuff into 2002-03-18 19:34:06 +00:00
gimpeditor.h renamed shell->cd_list to shell->filters and shell->cd_ui to 2002-03-15 15:09:58 +00:00
gimpenummenu.c app/widgets/Makefile.am use gimp_mkenums to create widgets-enums.c, added 2002-03-18 22:26:41 +00:00
gimpenummenu.h app/widgets/Makefile.am use gimp_mkenums to create widgets-enums.c, added 2002-03-18 22:26:41 +00:00
gimpfontselection-dialog.c use GtkTreeViews instead of deprecated GtkCLists. 2002-01-31 13:40:46 +00:00
gimpfontselection-dialog.h bumped version number to 1.3.1. Require Glib/GTK+-1.3.11 and Pango-0.22. 2001-11-22 23:46:13 +00:00
gimpfontselection.c fixed a bug i introduced when making the tab_height configurable: need to 2002-03-20 12:57:59 +00:00
gimpfontselection.h bumped version number to 1.3.1. Require Glib/GTK+-1.3.11 and Pango-0.22. 2001-11-22 23:46:13 +00:00
gimpgradienteditor.c changed gimp_channel_get_color() to not return the color but take a second 2002-03-08 16:34:42 +00:00
gimpgradienteditor.h changed gimp_channel_get_color() to not return the color but take a second 2002-03-08 16:34:42 +00:00
gimpgradientpreview.c added a handler for GimpImage's "alpha_changed" signal (does nothing yet). 2001-10-17 16:11:28 +00:00
gimpgradientpreview.h bumped version number to 1.3.1. Require Glib/GTK+-1.3.11 and Pango-0.22. 2001-11-22 23:46:13 +00:00
gimphelp.c app/Makefile.am removed... 2002-05-05 19:17:41 +00:00
gimphelp.h app/Makefile.am removed... 2002-05-05 19:17:41 +00:00
gimphistogramview.c app/gimpprogress.c app/nav_window.c app/ops_buttons.c app/undo_history.c 2001-12-29 13:26:29 +00:00
gimphistogramview.h bumped version number to 1.3.1. Require Glib/GTK+-1.3.11 and Pango-0.22. 2001-11-22 23:46:13 +00:00
gimpimagedock.c removed unused commented out prototype. 2002-05-08 12:39:01 +00:00
gimpimagedock.h g_strdup() the stock_id passed to gimp_tool_info_new() because the 2002-03-14 17:07:02 +00:00
gimpimagefilepreview.c implemented thumbnail loading according to the latest version of the 2002-02-18 01:28:12 +00:00
gimpimagefilepreview.h implemented thumbnail loading according to the latest version of the 2002-02-18 01:28:12 +00:00
gimpimagepreview.c app/Makefile.am removed... 2002-05-05 19:17:41 +00:00
gimpimagepreview.h bumped version number to 1.3.1. Require Glib/GTK+-1.3.11 and Pango-0.22. 2001-11-22 23:46:13 +00:00
gimpimageview.c Started to get rid of the gdisplays_foo() functions in 2002-05-08 17:48:24 +00:00
gimpimageview.h removed unused commented out prototype. 2002-05-08 12:39:01 +00:00
gimpitemfactory.c removed some #if 0'ed stuff. 2002-04-14 12:02:29 +00:00
gimpitemfactory.h removed usage of "the_gimp" by passing around more "Gimp" pointers. 2002-04-12 18:14:13 +00:00
gimpitemlistitem.c Started to get rid of the gdisplays_foo() functions in 2002-05-08 17:48:24 +00:00
gimpitemlistitem.h app/widgets/Makefile.am app/widgets/widgets-types.h new GimpListItem 2002-02-25 18:41:14 +00:00
gimpitemlistview.c Started to get rid of the gdisplays_foo() functions in 2002-05-08 17:48:24 +00:00
gimpitemlistview.h added a "item_activate_func" to the struct and the constructor so we can 2002-02-26 14:40:30 +00:00
gimpitemtreeview.c Started to get rid of the gdisplays_foo() functions in 2002-05-08 17:48:24 +00:00
gimpitemtreeview.h added a "item_activate_func" to the struct and the constructor so we can 2002-02-26 14:40:30 +00:00
gimplayerlistitem.c Started to get rid of the gdisplays_foo() functions in 2002-05-08 17:48:24 +00:00
gimplayerlistitem.h bumped version number to 1.3.1. Require Glib/GTK+-1.3.11 and Pango-0.22. 2001-11-22 23:46:13 +00:00
gimplayerlistview.c Started to get rid of the gdisplays_foo() functions in 2002-05-08 17:48:24 +00:00
gimplayerlistview.h added a GimpAnchorItemFunc and use it if it's set. 2002-03-11 12:58:59 +00:00
gimplayertreeview.c Started to get rid of the gdisplays_foo() functions in 2002-05-08 17:48:24 +00:00
gimplayertreeview.h added a GimpAnchorItemFunc and use it if it's set. 2002-03-11 12:58:59 +00:00
gimplistitem.c added "gchar *name_changed_signal" to GimpViewableClass which defaults to 2002-04-28 23:10:42 +00:00
gimplistitem.h app/gimpprogress.c app/nav_window.c app/ops_buttons.c app/undo_history.c 2001-12-29 13:26:29 +00:00
gimpmenudock.c removed unused commented out prototype. 2002-05-08 12:39:01 +00:00
gimpmenudock.h g_strdup() the stock_id passed to gimp_tool_info_new() because the 2002-03-14 17:07:02 +00:00
gimpmenuitem.c added "gchar *name_changed_signal" to GimpViewableClass which defaults to 2002-04-28 23:10:42 +00:00
gimpmenuitem.h Michael Natterer <mitch@gimp.org> 2001-12-03 13:44:59 +00:00
gimpnavigationpreview.c app/Makefile.am removed. 2002-05-07 16:23:14 +00:00
gimpnavigationpreview.h app/Makefile.am removed. 2002-05-07 16:23:14 +00:00
gimpnavigationview.c app/Makefile.am removed. 2002-05-07 16:23:14 +00:00
gimpnavigationview.h app/Makefile.am removed. 2002-05-07 16:23:14 +00:00
gimppaletteeditor.c fixed a bug i introduced when making the tab_height configurable: need to 2002-03-20 12:57:59 +00:00
gimppaletteeditor.h changed gimp_channel_get_color() to not return the color but take a second 2002-03-08 16:34:42 +00:00
gimppalettepreview.c added a handler for GimpImage's "alpha_changed" signal (does nothing yet). 2001-10-17 16:11:28 +00:00
gimppalettepreview.h bumped version number to 1.3.1. Require Glib/GTK+-1.3.11 and Pango-0.22. 2001-11-22 23:46:13 +00:00
gimppatternpreview.c added a handler for GimpImage's "alpha_changed" signal (does nothing yet). 2001-10-17 16:11:28 +00:00
gimppatternpreview.h bumped version number to 1.3.1. Require Glib/GTK+-1.3.11 and Pango-0.22. 2001-11-22 23:46:13 +00:00
gimppreview-utils.c app/widgets/Makefile.am new file containing 2002-03-22 15:47:59 +00:00
gimppreview-utils.h app/widgets/Makefile.am new file containing 2002-03-22 15:47:59 +00:00
gimppreview.c app/Makefile.am removed. 2002-05-07 16:23:14 +00:00
gimppreview.h derive from GtkDrawingArea instead of deprecated GtkPreview. 2002-01-30 17:39:56 +00:00
gimppreviewrenderer.c app/Makefile.am removed. 2002-05-07 16:23:14 +00:00
gimppreviewrenderer.h derive from GtkDrawingArea instead of deprecated GtkPreview. 2002-01-30 17:39:56 +00:00
gimppreviewrendererbrush.c added a handler for GimpImage's "alpha_changed" signal (does nothing yet). 2001-10-17 16:11:28 +00:00
gimppreviewrendererbrush.h bumped version number to 1.3.1. Require Glib/GTK+-1.3.11 and Pango-0.22. 2001-11-22 23:46:13 +00:00
gimppreviewrendererdrawable.c app/core/Makefile.am app/core/core-types.h new base class for something 2002-02-25 17:58:50 +00:00
gimppreviewrendererdrawable.h bumped version number to 1.3.1. Require Glib/GTK+-1.3.11 and Pango-0.22. 2001-11-22 23:46:13 +00:00
gimppreviewrendererimage.c app/Makefile.am removed... 2002-05-05 19:17:41 +00:00
gimppreviewrendererimage.h bumped version number to 1.3.1. Require Glib/GTK+-1.3.11 and Pango-0.22. 2001-11-22 23:46:13 +00:00
gimptoolbox-color-area.c devel-docs/Makefile.am new file documenting the core's include policy. 2002-05-03 12:45:22 +00:00
gimptoolbox-color-area.h g_strdup() the stock_id passed to gimp_tool_info_new() because the 2002-03-14 17:07:02 +00:00
gimptoolbox-indicator-area.c ./mitch --sanitize-identifier-namespace 2002-03-21 12:17:17 +00:00
gimptoolbox-indicator-area.h g_strdup() the stock_id passed to gimp_tool_info_new() because the 2002-03-14 17:07:02 +00:00
gimptoolbox.c display the tools' shortcuts in the tool buttons' tooltips (fixes #60273). 2002-04-22 14:13:06 +00:00
gimptoolbox.h g_strdup() the stock_id passed to gimp_tool_info_new() because the 2002-03-14 17:07:02 +00:00
gimptoolinfopreview.c app/plug-in/plug-in-rc.c app/plug-in/plug-ins.c app/tools/tool_manager.c 2002-03-22 15:21:18 +00:00
gimptoolinfopreview.h bumped version number to 1.3.1. Require Glib/GTK+-1.3.11 and Pango-0.22. 2001-11-22 23:46:13 +00:00
gimptooloptionseditor.c devel-docs/Makefile.am new file documenting the core's include policy. 2002-05-03 12:45:22 +00:00
gimpvectorslistview.c Started to get rid of the gdisplays_foo() functions in 2002-05-08 17:48:24 +00:00
gimpvectorslistview.h added a "item_activate_func" to the struct and the constructor so we can 2002-02-26 14:40:30 +00:00
gimpvectorstreeview.c Started to get rid of the gdisplays_foo() functions in 2002-05-08 17:48:24 +00:00
gimpvectorstreeview.h added a "item_activate_func" to the struct and the constructor so we can 2002-02-26 14:40:30 +00:00
gimpview.c app/Makefile.am removed. 2002-05-07 16:23:14 +00:00
gimpview.h derive from GtkDrawingArea instead of deprecated GtkPreview. 2002-01-30 17:39:56 +00:00
gimpviewrenderer.c app/Makefile.am removed. 2002-05-07 16:23:14 +00:00
gimpviewrenderer.h derive from GtkDrawingArea instead of deprecated GtkPreview. 2002-01-30 17:39:56 +00:00
gimpviewrendererbrush.c added a handler for GimpImage's "alpha_changed" signal (does nothing yet). 2001-10-17 16:11:28 +00:00
gimpviewrendererbrush.h bumped version number to 1.3.1. Require Glib/GTK+-1.3.11 and Pango-0.22. 2001-11-22 23:46:13 +00:00
gimpviewrendererdrawable.c app/core/Makefile.am app/core/core-types.h new base class for something 2002-02-25 17:58:50 +00:00
gimpviewrendererdrawable.h bumped version number to 1.3.1. Require Glib/GTK+-1.3.11 and Pango-0.22. 2001-11-22 23:46:13 +00:00
gimpviewrendererimage.c app/Makefile.am removed... 2002-05-05 19:17:41 +00:00
gimpviewrendererimage.h bumped version number to 1.3.1. Require Glib/GTK+-1.3.11 and Pango-0.22. 2001-11-22 23:46:13 +00:00
gimpwidgets-constructors.c app/core/Makefile.am new file that holds enums that are registered with 2001-12-08 23:12:59 +00:00
gimpwidgets-constructors.h app/core/Makefile.am new file that holds enums that are registered with 2001-12-08 23:12:59 +00:00
gimpwidgets-utils.c changed the message dialog icon to WARNING since we mostly use this for 2002-02-07 14:21:23 +00:00
gimpwidgets-utils.h app/main.c moved "message_handler" from here... 2001-12-01 21:02:34 +00:00
gtkhwrapbox.c app/gimpprogress.c app/nav_window.c app/ops_buttons.c app/undo_history.c 2001-12-29 13:26:29 +00:00
gtkhwrapbox.h bumped version number to 1.3.1. Require Glib/GTK+-1.3.11 and Pango-0.22. 2001-11-22 23:46:13 +00:00
gtkvwrapbox.c app/gimpprogress.c app/nav_window.c app/ops_buttons.c app/undo_history.c 2001-12-29 13:26:29 +00:00
gtkvwrapbox.h bumped version number to 1.3.1. Require Glib/GTK+-1.3.11 and Pango-0.22. 2001-11-22 23:46:13 +00:00
gtkwrapbox.c app/gimpprogress.c app/nav_window.c app/ops_buttons.c app/undo_history.c 2001-12-29 13:26:29 +00:00
gtkwrapbox.h bumped version number to 1.3.1. Require Glib/GTK+-1.3.11 and Pango-0.22. 2001-11-22 23:46:13 +00:00
Makefile.am removed unused commented out prototype. 2002-05-08 12:39:01 +00:00
makefile.msc #define GETTEXT_PACKAGE 2002-03-28 00:10:56 +00:00
widgets-enums.c app/Makefile.am removed... 2002-05-05 19:17:41 +00:00
widgets-enums.h app/Makefile.am removed... 2002-05-05 19:17:41 +00:00
widgets-types.h removed unused commented out prototype. 2002-05-08 12:39:01 +00:00