- 28 Dec, 2005 1 commit
-
-
Michael Natterer authored
2005-12-28 Michael Natterer <mitch@gimp.org> * app/widgets/gimpwidgets-utils.[ch]: removed gimp_action_get_accel_closure(). * app/widgets/gimpactionview.c (gimp_action_view_new): use gtk_action_get_accel_closure() instead.
-
- 02 Nov, 2005 1 commit
-
-
Michael Natterer authored
2005-11-02 Michael Natterer <mitch@gimp.org> * app/widgets/gimpaction.c * app/widgets/gimpcoloreditor.c * app/widgets/gimpcontainerbox.c * app/widgets/gimpcontrollerlist.c * app/widgets/gimpmenudock.c * app/widgets/gimppluginaction.c * app/widgets/gimptooloptionseditor.c * app/widgets/gimpwidgets-utils.c * libgimpwidgets/gimpcellrenderercolor.c: use gtk_widget_get_settings() instead of gtk_settings_get_for_screen(gtk_widget_get_screen())
-
- 31 Oct, 2005 1 commit
-
-
Sven Neumann authored
2005-10-31 Sven Neumann <sven@gimp.org> * app/core/gimpdata.[ch] * app/core/gimpdatafactory.c: applied a heavily modified version of the patch provided by Shlomi Fish in bug #311740. Introduces a cache to speed up reloading of data files. * app/actions/data-commands.c: set gimp busy while refreshing data factories. * app/widgets/gimpwidgets-utils.c (gimp_widget_accel_changed): free the return value of gimp_get_accel_string().
-
- 30 Oct, 2005 1 commit
-
-
Michael Natterer authored
2005-10-30 Michael Natterer <mitch@gimp.org> Fixed bug #316395: * app/actions/dialogs-actions.c (dialogs_dockable_actions) * app/actions/quick-mask-actions.c (quick_mask_toggle_actions): added tooltips to action entries. * app/display/gimpdisplayshell.c (gimp_display_shell_new): use gimp_widget_set_accel_help() to set the tooltip so it contains the accelerator. * app/dialogs/dialogs-constructors.c (dialogs_dockable_constructor): attach the dialog's identifier to the dockable widget (hack). * app/widgets/gimpdockbook.c (gimp_dockbook_get_tab_widget): use the attached identifier to find the action for this dockable in the dock's UI manager (HACK HACK). Use the found action to set a tooltip with accelerator. * app/widgets/gimpwidgets-utils.c (gimp_widget_set_accel_help): fixed bug in fallback code what should never be used.
-
- 25 Sep, 2005 1 commit
-
-
Hans Breuer authored
2005-09-24 Hans Breuer <hans@breuer.org> * **makefile.msc : updated * app/dialogs/user-install-dialog.c : only add the migrate page if there is something to migrate from. Avoids on version being NULL. * app/dialogs/file-save-dialog.c : the g_print() output was crashing on the assumption that ->menu_label != NULL. It is for colorhtml.py. * app/widgets/gimpselectiondata.c : use HAVE_UNISTD_H and move * process.h definition by G_OS_WIN32 below it being defined * app/widgets/gimpwidgets-utils.c(gimp_window_get_native) : cast return value to (GdkNativeWindow) it is not necessary an int. * libgimpwidgets/gimpwidgets.def : added gimp_zoom_type_get_type * plug-ins/help/gimp-help-lookup.c : dynamic lookup of help_root instead of hard-coding DATADIR/GIMP_HELP_PREFIX * plug-ins/xjt/xjt.c : there is no pid_t with msvc, typedef one.
-
- 16 Sep, 2005 1 commit
-
-
Michael Natterer authored
2005-09-16 Michael Natterer <mitch@gimp.org> * app/widgets/gimpwidgets-utils.[ch] (gimp_widget_set_accel_help): mis-named and mis-placed function that sets a widget's tooltip to the action's tooltip plus the action's keyboard shortcut. * app/widgets/gimptoolbox.c: at least the code is not here any more. * app/actions/tools-actions.c: use tool_info->help, not ->blurb as the action's tooltip so the above works.
-
- 13 Sep, 2005 1 commit
-
-
Michael Natterer authored
2005-09-14 Michael Natterer <mitch@gimp.org> * app/widgets/gimpwidgets-utils.c (gimp_get_mod_name_*): removed "<>" around modifiers. * app/tools/gimpbucketfilloptions.c * app/tools/gimpcolorpickeroptions.c * app/tools/gimpconvolvetool.c * app/tools/gimpcropoptions.c * app/tools/gimpdodgeburntool.c * app/tools/gimperasertool.c * app/tools/gimpflipoptions.c * app/tools/gimpimagemaptool.c * app/tools/gimpmagnifyoptions.c * app/tools/gimpmoveoptions.c * app/tools/gimpselectionoptions.c * app/tools/gimptransformoptions.c * app/widgets/gimpeditor.c * app/widgets/gimpthumbbox.c: added "()" around the whole modifier string where appropriate. * app/widgets/gimptoolbox.c (gimp_toolbox_button_accel_changed): use gimp_get_mod_string() instead of homebrewn variant of the same code. * app/widgets/gimpcontrollerkeyboard.c: replaced tons of static translatable strings containing modifiers by generated ones using gimp_get_mod_string() (traded for some more memory consumption).
-
- 09 Sep, 2005 1 commit
-
-
Michael Natterer authored
2005-09-09 Michael Natterer <mitch@gimp.org> Added parent window API to the GimpProgress interface and to the libgimp progress stuff. Might look strange, but does the right thing in almost all cases (image window, file dialog, script-fu dialog etc). Fixes bug #62988. * app/core/gimpprogress.[ch]: added GimpProgress::get_window() which should return a toplevel window ID if the progress is in a window that wants to be the transient parent of plug-in dialogs. * app/widgets/gimpwidgets-utils.[ch] (gimp_window_get_native): new function which returns the window handle of a GtkWindow's GdkWindow. * app/widgets/gimpfiledialog.c: implement ::get_window(). * app/display/gimpdisplay.[ch]: ditto. Removed window handle API. * app/gui/gui-vtable.c: changed accordingly. * libgimpbase/gimpbaseenums.[ch] (enum GimpProgressCommand): added GIMP_PROGRESS_COMMAND_GET_WINDOW. * app/plug-in/plug-in-progress.[ch] (plug_in_progress_get_window): new function. Also renamed some functions to match the GimpProgress interface, and not the legacy PDB procedure names. * tools/pdbgen/pdb/progress.pdb * app/core/gimppdbprogress.c: implement get_window() on both sides of the wire, keeping backward compatibility (hopefully). * libgimp/gimpprogress.[ch]: deprecated gimp_progress_install() and added gimp_progress_install_vtable() which takes a vtable with padding to be extensible. Added get_window() vtable entry and dispatch it accordingly. Also added pulse() which was implemented in a hackish way before. Everything is of course backward compatible. * libgimp/gimpprogressbar.c: inmplement the get_window() stuff so a plug-in dialog containing a progress can be the transient parent of another dialog in another plug-in. * libgimp/gimpui.[ch] (gimp_ui_get_progress_window): new function which returns a foreign GdkWindow of this plug-ins progress window. Renamed gimp_window_set_transient_for_default_display() to gimp_window_set_transient() and make it use the progress' window handle instead of the display's (which is the right thing to do in almost all cases). * libgimp/gimp.def * libgimp/gimpui.def: add the new functions. * tools/pdbgen/enums.pl * app/pdb/internal_procs.c * app/pdb/progress_cmds.c * libgimp/gimpprogress_pdb.[ch]: regenerated. * libgimp/gimpexport.c * plug-ins/*/*.c: follow API change.
-
- 02 Sep, 2005 1 commit
-
-
Sven Neumann authored
2005-09-02 Sven Neumann <sven@gimp.org> * app/tools/gimptextoptions.c * app/widgets/gimpwidgets-utils.[ch]: dropped the labels from text tool options that have icons. Reduces visual clutter.
-
- 04 Jun, 2005 1 commit
-
-
Sven Neumann authored
2005-06-04 Sven Neumann <sven@gimp.org> * app/widgets/gimpwidgets-utils.c (gimp_text_buffer_load): validate the iter after appending to the text buffer.
-
- 04 Mar, 2005 2 commits
-
-
Sven Neumann authored
I "fixed" it...
-
Sven Neumann authored
2005-03-04 Sven Neumann <sven@gimp.org> * app/dialogs/user-install-dialog.c * app/file/gimprecentlist.c * app/widgets/gimpwidgets-utils.c * modules/controller_linux_input.c * modules/controller_midi.c * plug-ins/common/compressor.c * plug-ins/common/mail.c * plug-ins/common/psp.c * plug-ins/common/raw.c * plug-ins/helpbrowser/dialog.c * plug-ins/imagemap/imap_cern.y * plug-ins/imagemap/imap_cern_parse.[ch] * plug-ins/imagemap/imap_csim.y * plug-ins/imagemap/imap_csim_parse.[ch] * plug-ins/imagemap/imap_main.c * plug-ins/imagemap/imap_ncsa.y * plug-ins/imagemap/imap_ncsa_parse.[ch] * plug-ins/uri/uri.c * plug-ins/xjt/xjt.c: ported the remaining functions to gstdio.
-
- 07 Feb, 2005 1 commit
-
-
Sven Neumann authored
2005-02-07 Sven Neumann <sven@gimp.org> * app/config/gimpconfig-file.c * app/file/file-utils.c * app/gui/themes.c * app/tools/gimpimagemaptool.c * app/vectors/gimpvectors-export.c * app/widgets/gimpwidgets-utils.c * app/xcf/xcf.c * tools/pdbgen/pdb/procedural_db.pdb: use gstdio wrappers. * app/pdb/procedural_db_cmds.c: regenerated.
-
- 21 Jan, 2005 1 commit
-
-
Michael Natterer authored
2005-01-21 Michael Natterer <mitch@gimp.org> * app/widgets/gimpwidgets-utils.[ch] (gimp_action_get_accel_closure): new function as workaround for missing GTK+ API (see bug #141750). * app/widgets/gimpactionview.[ch]: use the function instead of having this ugly hack here. Store the accel_closure instead of the hackish menu_item in the tree store. Removed cruft and cleaned up a bit.
-
- 23 Nov, 2004 1 commit
-
-
Michael Natterer authored
2004-11-23 Michael Natterer <mitch@gimp.org> * app/widgets/gimpwidgets-utils.[ch]: added new function gimp_toggle_button_set_visible() which can be used as "toggled" callback on a GtkToggleButton and sets a widget (in)visible according to the toggle's "active" state. * app/tools/gimpblendoptions.c * app/tools/gimppaintoptions-gui.c * app/tools/gimpselectionoptions.c: use it to hide (rather than just insensitize) the seldomly used "Feather edges", "Autoshrink selection", "Adaptive supersampling", "Fade out" and "Use color from gradient" widgets when their enabling toggle is unchecked. Makes the affected tool options much less crowded and noisy in their default appearance. Fixes bug #159008.
-
- 04 Nov, 2004 1 commit
-
-
Michael Natterer authored
2004-11-04 Michael Natterer <mitch@gimp.org> Don't use deprecated GtkToolbar API in GimpTextEditor: * app/actions/Makefile.am * app/actions/actions.c * app/actions/text-editor-actions.[ch] * app/actions/text-editor-commands.[ch]: added acions and callbacks for the new "text-editor" action group. * app/menus/menus.c: register a "<TextEditor>" UI manager. * menus/Makefile.am * menus/text-editor-toolbar.xml: new file for the toolbar. * app/widgets/gimptexteditor.[ch]: use the toolbar created by the UI manager instead of constructing it using deprecated API. * app/tools/gimptextoptions.c: changed accordingly. * app/widgets/gimpwidgets-utils.[ch]: added gimp_text_buffer_load() (used by text-editor-commands.c).
-
- 27 Oct, 2004 1 commit
-
-
Michael Schumacher authored
2004-10-27 Michael Schumacher <schumaml@gmx.de> * app/widgets/gimpwidgets-utils.c: fixed a typo in #include "libgimpbase/gimpwin32-io.h"
-
- 24 Oct, 2004 1 commit
-
-
Michael Natterer authored
2004-10-25 Michael Natterer <mitch@gimp.org> * app/widgets/gimpwidgets-utils.[ch]: added gimp_text_buffer_save() which saves a GtkTextBuffer's contents to a file. * app/widgets/gimperrorconsole.c: use gimp_editor_add_action_button() and removed all "clicked" callbacks, including all file saving code. * app/actions/error-console-actions.c * app/actions/error-console-commands.[ch]: added the code removed above to the action callbacks. Use gimp_text_buffer_save().
-
- 14 Oct, 2004 1 commit
-
-
Michael Natterer authored
2004-10-14 Michael Natterer <mitch@gimp.org> * app/core/core-enums.[ch]: register GimpConvertPaletteType with the type system. * app/widgets/gimpwidgets-utils.c (gimp_enum_radio_frame_add): fixed to insert the widget at the right place in the radio box. * app/dialogs/convert-dialog.c: use enum widgets and gimp_enum_radio_frame_add(), resulting in a much better looking dialog with much less lines of code.
-
- 12 Oct, 2004 2 commits
-
-
Michael Natterer authored
2004-10-12 Michael Natterer <mitch@gimp.org> * app/widgets/gimpwidgets-utils.c (gimp_enum_radio_frame_add): need to pack the widget expanding. Fixes pattern container entries.
-
Michael Natterer authored
2004-10-12 Michael Natterer <mitch@gimp.org> * app/tools/gimptooloptions-gui.[ch]: removed the recently added utility functions again. * app/widgets/Makefile.am * app/widgets/gimpviewablebox.[ch] * app/widgets/gimpwidgets-utils.[ch]: and added cleaned up versions here. * app/tools/gimpbucketfilloptions.c * app/tools/gimpclonetool.c * app/tools/gimppaintoptions-gui.c * app/tools/gimptextoptions.c: changed accordingly. * app/dialogs/convert-dialog.c: use gimp_palette_box_new() instead of reinventing the wheel.
-
- 16 Sep, 2004 1 commit
-
-
Michael Natterer authored
2004-09-16 Michael Natterer <mitch@gimp.org> * configure.in: depend on GLib >= 2.4.5 and GTK+ >= 2.4.4. * app/gui/gui.c: changed accordingly. * app/sanity.c: ditto. Added check for GLib and put each check into its own utility function. Enabled #if 0'ed check for FreeType >= 6.2.7. * app/widgets/gimpactiongroup.c * app/widgets/gimpcursor.c * app/widgets/gimpselectiondata.c * app/widgets/gimpuimanager.c * app/widgets/gimpwidgets-utils.c: removed workarounds for library versions we refuse to start with.
-
- 25 Aug, 2004 1 commit
-
-
Sven Neumann authored
2004-08-25 Sven Neumann <sven@gimp.org> * app/widgets/gimpmessagebox.[ch]: added gimp_message_box_repeat(). * app/widgets/Makefile.am * app/widgets/widgets-types.h * app/widgets/gimperrordialog.[ch]: added new dialog that adds a new GimpMessageBox for each message added. Fixes bug #92604. * app/widgets/gimpwidgets-utils.[ch]: removed old gimp_message_box() functionality. * app/gui/gui.c (gui_abort): use a GimpMessageBox in a GimpDialog. * app/gui/dialogs-constructors.[ch] * app/gui/dialogs.c: manage GimpErrorDialog as singleton. * app/gui/gui-vtable.c (gui_message): use the new error dialog. * app/core/gimp-gui.c (gimp_message): substitue "GIMP" for a NULL domain. * app/widgets/gimperrorconsole.c (gimp_error_console_add): fail when being called with a NULL domain.
-
- 24 Aug, 2004 1 commit
-
-
Sven Neumann authored
2004-08-24 Sven Neumann <sven@gimp.org> * app/widgets/gimpmessagebox.[ch]: added API to change the labels. Modeled after the proposed new API for GtkMessageDialog. * app/widgets/gimpwidgets-utils.c: changed accordingly.
-
- 23 Aug, 2004 2 commits
-
-
Sven Neumann authored
2004-08-24 Sven Neumann <sven@gimp.org> * app/widgets/Makefile.am * app/widgets/widgets-types.h * app/widgets/gimpmessagebox.[ch]: added new widget GimpMessageBox. * app/widgets/gimpwidgets-utils.c: use it for message dialogs.
-
Sven Neumann authored
2004-08-23 Sven Neumann <sven@gimp.org> * app/widgets/gimpfiledialog.c (gimp_file_dialog_set_image): unset the filename if gtk_file_chooser_set_uri() failed. * app/actions/file-commands.c * app/gui/file-save-dialog.c: trivial cleanups. * app/widgets/gimpwidgets-utils.c: removed an unused extern variable declaration.
-
- 10 Aug, 2004 1 commit
-
-
Michael Natterer authored
2004-08-11 Michael Natterer <mitch@gimp.org> * app/widgets/Makefile.am * app/widgets/widgets-types.h * app/widgets/gimpprogressbox.[ch]: new GtkVBox subclass featuring a label and a progressbar. Implements GimpProgressIterface. * app/widgets/gimpprogressdialog.[ch]: replaced label and progress by a GimpProgressBox. Delegate most progress functionality to it. * app/widgets/gimpwidgets-utils.[ch]: factored out utility function gimp_dialog_set_sensitive(). * app/widgets/gimpfiledialog.c (gimp_file_dialog_set_sensitive): use it. * app/gui/file-open-location-dialog.c (file_open_location_response): embed the called file procedure's progress using a GimpProgressBox.
-
- 08 Aug, 2004 1 commit
-
-
Hans Breuer authored
2004-08-09 Hans Breuer <hans@breuer.org> * app/core/gimp-edit.c(gimp_edit_paste_as_new) : gimp_create_display() with the right parameters order * app/widgets/gimpwidgets-utils.c (gimp_message_box_set_icons) handle gtk_style_lookup_icon_set() returnig NULL * app/gimpcore.def app/widgets/makefile.msc themes/default/images/makefile.msc : updated
-
- 20 Jul, 2004 1 commit
-
-
Michael Natterer authored
2004-07-20 Michael Natterer <mitch@gimp.org> * app/widgets/gimpactionfactory.[ch] * app/widgets/gimpactiongroup.[ch]: added "label" and "stock-id" properties to GtkActionGroup and allow to register them in the GimpActionFactory. * app/actions/actions.c: register user visible labels and icons with all action groups. * app/widgets/Makefile.am * app/widgets/widgets-types.h * app/widgets/gimpactionview.[ch]: new widget which shows a treeview of action groups and their actions & shortcuts. * app/widgets/gimpaction.[ch]: added gimp_action_name_compare() utility function. * app/widgets/gimpwidgets-utils.[ch]: added gimp_get_accel_string() utility function. * app/widgets/gimpcontrollers.[ch]: added gimp_controllers_get_ui_manager() which will be used for setting up the controller mapping dialog. * app/gui/preferences-dialog.c: added a "Configure Keyboard Shortcuts" button which pops up a GimpControllerView. Work in progress...
-
- 06 Jul, 2004 1 commit
-
-
Michael Natterer authored
2004-07-06 Michael Natterer <mitch@gimp.org> * app/widgets/gimpwidgets-utils.c (gimp_menu_position) (gimp_button_menu_position): call gtk_menu_set_monitor() only for GTK+ < 2.4.4 and added a #warning about it.
-
- 28 Jun, 2004 1 commit
-
-
Michael Natterer authored
2004-06-29 Michael Natterer <mitch@gimp.org> * app/widgets/gimpwidgets-utils.[ch]: added new function gimp_get_mod_string() which takes a GdkModifierType and returns correctly formated strings for all shift,control,alt combinations. * app/tools/gimpbucketfilloptions.c * app/tools/gimpcolorpickeroptions.c * app/tools/gimpconvolvetool.c * app/tools/gimpcropoptions.c * app/tools/gimpdodgeburntool.c * app/tools/gimperasertool.c * app/tools/gimpflipoptions.c * app/tools/gimpmagnifyoptions.c * app/tools/gimpmoveoptions.c * app/tools/gimptransformoptions.c * app/tools/gimpvectoroptions.c * app/widgets/gimpchanneltreeview.c * app/widgets/gimpcolormapeditor.c * app/widgets/gimpdocumentview.c * app/widgets/gimperrorconsole.c * app/widgets/gimpgradienteditor.c * app/widgets/gimpitemtreeview.c * app/widgets/gimppaletteeditor.c * app/widgets/gimpselectioneditor.c * app/widgets/gimpthumbbox.c * app/widgets/gimptooloptionseditor.c * app/widgets/gimpvectorstreeview.c: use the new function instead of gimp_get_mod_name_shift(),control(),alt(),separator(). This kindof addresses the issue of configurable modifier keys but is actually indended to ease translation of format strings ("%s" is easier to get right than "%s%s%s").
-
- 21 Jun, 2004 1 commit
-
-
Sven Neumann authored
2004-06-21 Sven Neumann <sven@gimp.org> * libgimpwidgets/gimpwidgets.[ch] * libgimpwidgets/gimpwidgets.def: added new utility function gimp_label_set_attributes(). * app/display/gimpdisplayshell.c * app/gui/preferences-dialog.c * app/gui/resolution-calibrate-dialog.c * app/widgets/gimpviewabledialog.c * app/widgets/gimpwidgets-utils.c: use the new function. * app/widgets/gimpcontainergridview.c * app/widgets/gimphistogrameditor.c: display the name in italic. * plug-ins/common/jpeg.c: display the file size in italic.
-
- 12 May, 2004 2 commits
-
-
Sven Neumann authored
2004-05-12 Sven Neumann <sven@gimp.org> * libgimpwidgets/gimpwidgets.c (gimp_scale_entry_new_internal) * app/widgets/gimpwidgets-utils.c (gimp_table_attach_stock): left-align the label. * app/actions/channels-commands.c * app/actions/layers-commands.c * app/actions/qmask-commands.c * app/actions/vectors-commands.c * app/display/gimpdisplayshell-scale.c * app/gui/brush-select.c * app/gui/file-new-dialog.c * app/gui/info-dialog.c * app/gui/info-window.c * app/gui/module-browser.c * app/gui/offset-dialog.c * app/gui/palette-import-dialog.c * app/gui/preferences-dialog.c * app/gui/resize-dialog.c * app/tools/gimpblendoptions.c * app/tools/gimpcroptool.c * app/tools/gimpmeasuretool.c * app/tools/gimppaintoptions-gui.c * app/tools/gimpscaletool.c * app/tools/gimpselectionoptions.c * app/tools/gimpsheartool.c * app/tools/gimptextoptions.c * app/widgets/gimpcolormapeditor.c * app/widgets/gimpgrideditor.c * app/widgets/gimphistogrameditor.c * app/widgets/gimplayertreeview.c * app/widgets/gimpstrokeeditor.c * app/widgets/gimpwidgets-utils.c: left-align labels as suggested by the HIG.
-
Michael Natterer authored
2004-05-12 Michael Natterer <mitch@gimp.org> * app/config/gimpconfig-deserialize.c * app/config/gimpscanner.c * app/core/gimp-edit.c * app/core/gimpchannel-combine.c * app/core/gimpcontainer.c * app/core/gimpdrawable-bucket-fill.c * app/core/gimpdrawable-combine.c * app/core/gimpdrawable.c * app/core/gimpgradient.c * app/core/gimpimage-flip.c * app/core/gimpimage-merge.c * app/core/gimpimage-projection.c * app/core/gimpimage.c * app/display/gimpdisplay-handlers.c * app/display/gimpdisplayshell-callbacks.c * app/display/gimpprogress.c * app/gui/info-dialog.c * app/gui/module-browser.c * app/gui/offset-dialog.c * app/plug-in/plug-in.c * app/tools/gimpdrawtool.c * app/tools/tool_manager.c * app/widgets/gimpactiongroup.c * app/widgets/gimpdialogfactory.c * app/widgets/gimpgradienteditor.c * app/widgets/gimpitemfactory.c * app/widgets/gimppropwidgets.c * app/widgets/gimpwidgets-utils.c * app/xcf/xcf-save.c * libgimp/gimpexport.c * libgimpwidgets/gimphelpui.c * libgimpwidgets/gimppixmap.c * libgimpwidgets/gimpunitmenu.c: replaced G_GNUC_FUNCTION, G_GNUC_PRETTY_FUNCTION, G_STRLOC and hardcoded function names in g_warning()s by G_STRFUNC.
-
- 04 May, 2004 2 commits
-
-
Sven Neumann authored
2004-05-04 Sven Neumann <sven@gimp.org> * app/actions/channels-commands.c * app/actions/gradient-editor-commands.c * app/actions/image-commands.c * app/actions/layers-commands.c * app/actions/qmask-commands.c * app/actions/templates-commands.c * app/actions/vectors-commands.c * app/display/gimpdisplayshell-filter-dialog.c * app/gui/convert-dialog.c * app/gui/module-browser.c * app/gui/offset-dialog.c * app/gui/palette-import-dialog.c * app/gui/resize-dialog.c * app/gui/resolution-calibrate-dialog.c * app/gui/tips-dialog.c * app/gui/user-install-dialog.c * app/widgets/gimpwidgets-utils.c * libgimpwidgets/gimpquerybox.c: set dialog border spacing to 12.
-
Sven Neumann authored
2004-05-04 Sven Neumann <sven@gimp.org> * app/gui/preferences-dialog.c * app/widgets/widgets-enums.[ch] * app/widgets/gimpwidgets-utils.c (gimp_window_set_hint): added new window hint "keep-above" to force toolbox and/or dock windows to be kept above (if the WM supports this hint). Fixes bug #131672.
-
- 15 Apr, 2004 1 commit
-
-
Michael Natterer authored
2004-04-15 Michael Natterer <mitch@gimp.org> * app/display/gimpdisplayshell-callbacks.c * app/display/gimpdisplayshell.c * app/widgets/gimpcontainertreeview.c: removed runtime version checks and workarounds for bugs which are fixed in GTK+ 2.4. * app/widgets/gimpfiledialog.c (gimp_file_dialog_selection_changed): added runtime check for GTK+ 2.4.1 and work around GtkFileChooser's missing "update_preview" functionality for multiple selections if the dependency is not met. * app/widgets/gimpwidgets-utils.c (gimp_menu_position) (gimp_menu_button_position): call gtk_menu_set_monitor() until bug #139187 is fixed.
-
- 16 Mar, 2004 1 commit
-
-
Sven Neumann authored
2004-03-15 Sven Neumann <sven@gimp.org> * app/tools/gimptexttool.c (gimp_text_tool_apply): look ahead in the queue of pending changes and compress changes to the same property. Fixed a couple of smaller issues. * app/widgets/gimpwidgets-utils.c: corrected indentation.
-
- 04 Mar, 2004 1 commit
-
-
Sven Neumann authored
2004-03-04 Sven Neumann <sven@gimp.org> * app/widgets/gimpwidgets-utils.c (gimp_message_box): set the window icon to the icon displayed in the message dialog.
-
- 16 Jan, 2004 1 commit
-
-
Sven Neumann authored
2004-01-17 Sven Neumann <sven@gimp.org> * app/config/gimpguiconfig.[ch] * app/config/gimprc-blurbs.h * app/widgets/gimpdock.c * app/widgets/gimptoolbox.c * app/widgets/gimpwidgets-utils.[ch] * app/widgets/gimpwidgets-utils.[ch] * app/widgets/widgets-enums.[ch]: GTK+-2.4 will allow to request windows to be kept above. This change prepares the code so that we can optionally do this for docks and the toolbox as soon as we depend on GTK+-2.4 (see bug #131672).
-