mirror of https://github.com/GNOME/gimp.git
20686 lines
625 KiB
Plaintext
20686 lines
625 KiB
Plaintext
2002-03-20 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/plug-in/plug-in.[ch]: badly chopped into the new files below.
|
||
Pass around much more "PlugIn" and "Gimp" pointers instead of
|
||
using "current_plug_in" and "the_gimp". Needs much more hacking
|
||
though... :(
|
||
|
||
* app/plug-in/Makefile.am
|
||
* app/plug-in/plug-in-def.[ch]
|
||
* app/plug-in/plug-in-params.[ch]
|
||
* app/plug-in/plug-in-progress.[ch]
|
||
* app/plug-in/plug-ins.[ch]: new files.
|
||
|
||
* app/gui/Makefile.am
|
||
* app/gui/plug-in-commands.[ch]
|
||
* app/gui/plug-in-menus.[ch]: ditto.
|
||
|
||
* app/plug-in/plug-in-rc.c
|
||
* app/plug-in/plug-in-types.h: changed accordingly.
|
||
|
||
* app/pdb/procedural_db.c: changed procedural_db_destroy_args()
|
||
so it can be used from plug_in_args_destroy(). Fixed a parasite
|
||
memory leak (or introduced a new SEGV, we'll see...).
|
||
|
||
* app/display/Makefile.am: another "truly ugly hack" until the
|
||
plug-in menu stuff is chopped even more...
|
||
|
||
* app/gui/commands.[ch]: removed filters_repeat_cmd_callback() here,
|
||
it is now in plug-in-commands.[ch].
|
||
|
||
* app/widgets/gimpitemfactory.[ch]: removed all gimp_menu_item_*()
|
||
hacks. We have a GimpItemFactory available in most cases we used
|
||
to call this functions, and can use gimp_item_factors_from_path()
|
||
in all other cases. The item factory stuff needs more work
|
||
anyway...
|
||
|
||
* app/app_procs.c
|
||
* app/gimphelp.c
|
||
* app/display/gimpdisplayshell.c
|
||
* app/gui/file-dialog-utils.c
|
||
* app/gui/file-open-dialog.[ch]
|
||
* app/gui/file-save-dialog.[ch]
|
||
* app/gui/gui.c
|
||
* app/gui/menus.c
|
||
* app/gui/paths-dialog.c
|
||
* app/xcf/xcf.c
|
||
* tools/pdbgen/pdb/fileops.pdb
|
||
* tools/pdbgen/pdb/help.pdb
|
||
* tools/pdbgen/pdb/plug_in.pdb: changed accordingly (includes,
|
||
renamed functions and gimp_menu_item_*() removal).
|
||
|
||
* app/pdb/fileops_cmds.c
|
||
* app/pdb/help_cmds.c
|
||
* app/pdb/plug_in_cmds.c: regenerated.
|
||
|
||
2002-03-20 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/display/gimpdisplayshell.[ch]: pass an additional "Gimp"
|
||
pointer to gimp_display_shell_set_menu_sensitivity() so we can
|
||
correctly set the state of some items even without a display.
|
||
Set the sensitivity of much more items. Never set submenus
|
||
insensitive so the user can always browse the whole menu
|
||
(according to the GNOME HIG).
|
||
|
||
* app/image_map.c
|
||
* app/display/gimpdisplay.c
|
||
* app/gui/gui.c: changed accordingly.
|
||
|
||
* app/gui/view-commands.[ch]: added a callback for the display
|
||
filters dialog because display related dialogs are going to
|
||
be handled different soon.
|
||
|
||
* app/gui/menus.c: use the new callback.
|
||
|
||
2002-03-20 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/core/core-enums.[ch]: registered GimpConvertDitherType and
|
||
skip GIMP_NODESTRUCT_DITHER since the comment said it should never
|
||
be used.
|
||
|
||
* app/gui/convert-dialog.c: simplified a lot by using enums.
|
||
|
||
* app/tools/paint_options.c: include gimpenummenu.h.
|
||
|
||
* app/pdb/convert_cmds.c
|
||
* libgimp/gimpenums.h
|
||
* plug-ins/script-fu/script-fu-constants.c
|
||
* tools/pdbgen/enums.pl: regenerated.
|
||
|
||
2002-03-20 Michael Natterer <mitch@gimp.org>
|
||
|
||
* themes/Default/images/Makefile.am
|
||
* themes/Default/images/stock-menu-selection-to-channel.png: one
|
||
more icon from Jimmac.
|
||
|
||
* libgimpwidgets/gimpstock.[ch]
|
||
* themes/Default/imagerc: add it.
|
||
|
||
* app/gui/menus.c: use it.
|
||
|
||
2002-03-20 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/widgets/gimpdockbook.c: fixed a bug i introduced when making
|
||
the tab_height configurable: need to connect the signals of the
|
||
new tab_widget created in style_set(), otherwise we get the
|
||
functionality of a plain GtkNotebook...
|
||
|
||
* app/widgets/gimpfontselection.c: make the minimal width of the
|
||
entry even smaller so users can choose to put it in a small dock.
|
||
|
||
* app/widgets/gimppaletteeditor.c: fixed "Zoom All" zoom ratio
|
||
calculation.
|
||
|
||
2002-03-19 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/base/Makefile.am
|
||
* app/base/base-enums.c
|
||
* app/core/Makefile.am
|
||
* app/core/core-enums.c
|
||
* app/widgets/Makefile.am
|
||
* app/widgets/widgets-enums.c: purely cosmetic change.
|
||
|
||
* app/paint/Makefile.am
|
||
* app/paint/paint-enums.[ch]: generate paint-enums.c with registered
|
||
enums. Skip GIMP_BRUSH_PRESSURE and GIMP_CUSTOM_CONVOLVE so they
|
||
don't get exported to libgimp and are not registered as enum values.
|
||
|
||
* tools/pdbgen/pdb/paint_tools.pdb: removed special casing of
|
||
GimpBrushApplicationMode and GimpConvolveType since the forbidden
|
||
values are now skipped anyway.
|
||
|
||
* libgimp/gimpcompat.h: removed compat defines for the forbidden
|
||
enum values. They shouldn't have been used.
|
||
|
||
* app/tools/Makefile.am
|
||
* app/tools/tools-enums.[ch]: generate tools-enums.c with registered
|
||
enums.
|
||
|
||
* libgimp/gimpenums.h
|
||
* plug-ins/script-fu/script-fu-constants.c
|
||
* tools/pdbgen/enums.pl: regenerated.
|
||
|
||
* app/paint/gimpclone.[ch]
|
||
* app/paint/gimpconvolve.h
|
||
* app/paint/gimpdodgeburn.h
|
||
* app/tools/gimpclonetool.c
|
||
* app/tools/gimpconvolvetool.c
|
||
* app/tools/gimpcroptool.[ch]
|
||
* app/tools/gimpdodgeburntool.c
|
||
* app/tools/paint_options.c: changed accordingly. Added more enum
|
||
radio frames and enum option menus.
|
||
|
||
2002-03-19 Sven Neumann <sven@gimp.org>
|
||
|
||
* ChangeLog.plug-ins
|
||
* PLUGIN_CVS: removed these files, they have never been used.
|
||
|
||
2002-03-19 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/paint/Makefile.am
|
||
* app/paint/paint-enums.h
|
||
* app/paint/paint-types.h: split enums into their own file and
|
||
namespacified them.
|
||
|
||
* app/tools/Makefile.am
|
||
* app/tools/tools-enums.h
|
||
* app/tools/tools-types.h: split enums into their own file.
|
||
|
||
* app/paint/gimpairbrush.c
|
||
* app/paint/gimpclone.[ch]
|
||
* app/paint/gimpconvolve.[ch]
|
||
* app/paint/gimpdodgeburn.[ch]
|
||
* app/paint/gimperaser.c
|
||
* app/paint/gimppaintbrush.c
|
||
* app/paint/gimppaintcore.[ch]
|
||
* app/paint/gimppaintoptions.c
|
||
* app/paint/gimppencil.c
|
||
* app/paint/gimpsmudge.c
|
||
* app/tools/gimpclonetool.c
|
||
* app/tools/gimpconvolvetool.c
|
||
* app/tools/gimpdodgeburntool.c
|
||
* app/tools/paint_options.c
|
||
* plug-ins/gfig/gfig.c: changed accordingly.
|
||
|
||
* libgimp/gimpcompat.h
|
||
* plug-ins/script-fu/siod-wrapper.c: added compatibility defines for
|
||
changed enums.
|
||
|
||
* tools/pdbgen/Makefile.am: updated list of headers to parse for enums.
|
||
|
||
* app/pdb/paint_tools_cmds.c
|
||
* libgimp/gimpenums.h
|
||
* plug-ins/script-fu/script-fu-constants.c
|
||
* tools/pdbgen/enums.pl
|
||
* tools/pdbgen/pdb/paint_tools.pdb: regenerated.
|
||
|
||
2002-03-19 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gui/menus.c: Oops, GimpContainer's "reorder" signal has more
|
||
parameters than "add" and "remove", which is quite relevant now
|
||
that we use the data pointer passed to the callback :)
|
||
Pointed out by Dave Neary on #gimp.
|
||
|
||
2002-03-19 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/tools/tools-types.h: added enum GimpMotionMode which can be
|
||
one of { EXACT, HINT, COMPRESS }.
|
||
|
||
* app/tools/gimptool.[ch]: removed tool->perfectmouse and added
|
||
tool->motion_mode. Default to GIMP_MOTION_MODE_HINT.
|
||
|
||
* app/tools/gimpinktool.c
|
||
* app/tools/gimppainttool.c: set GIMP_MOTION_MODE_EXACT.
|
||
|
||
* app/tools/gimpfuzzyselecttool.c: set GIMP_MOTION_MODE_COMPRESS.
|
||
|
||
* app/tools/gimpeditselectiontool.[ch]: ditto. Removed
|
||
gtkutil_compress_motion().
|
||
|
||
* app/display/gimpdisplayshell-callbacks.c: look at
|
||
active_tool->motion_mode and perform pointer grabbing and motion
|
||
compression accordingly. Also, don't request motion hints from
|
||
XInput devices because the wacom driver sends crap (fixes #6901).
|
||
This change also brings hints and ordinary motions back in sync
|
||
albeit compression, so IMHO it also fixes #68542 and #22375, but
|
||
this needs further investigation.
|
||
|
||
2002-03-18 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/widgets/Makefile.am
|
||
* app/widgets/widgets-enums.[ch]: use gimp_mkenums to create
|
||
widgets-enums.c, added it to CVS since it contains translatable
|
||
messages now.
|
||
|
||
* app/widgets/gimpenummenu.[ch]: added new functions
|
||
gimp_enum_radio_box_new() and gimp_enum_radio_frame_new() that create
|
||
groups of radio buttons out of enum types.
|
||
|
||
* app/core/core-enums.[ch]: registered more enums.
|
||
|
||
* app/paint/gimpdodgeburn.h
|
||
* app/tools/gimpbucketfilltool.c
|
||
* app/tools/gimpdodgeburntool.c
|
||
* app/tools/gimpmagnifytool.c
|
||
* app/tools/transform_options.[ch]: use gimp_enum_radio_frame_new()
|
||
for some tool options.
|
||
|
||
2002-03-18 Manish Singh <yosh@gimp.org>
|
||
|
||
* app/gui/preferences-dialog.c: slight cosmetic fix to make the
|
||
treeview look nicer.
|
||
|
||
2002-03-18 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/paint/gimppaintoptions.h
|
||
* app/tools/paint_options.c: put the "Fade Out" and "Gradient" stuff
|
||
into separate frames with togglebutton titles.
|
||
|
||
* app/widgets/gimpchannellistview.c: use
|
||
gimp_image_mask_select_channel() instead of reinventing the wheel.
|
||
|
||
* app/widgets/gimpvectorslistview.c: removed unneeded inclusion
|
||
of "core/gimpimage-mask.h".
|
||
|
||
* app/widgets/gimpcolormapeditor.c: set the hex entry to 7 digits,
|
||
some cleanup.
|
||
|
||
* app/widgets/gimppaletteeditor.c: set the vertical scrollbar
|
||
to GTK_POLICY_AUTOMATIC.
|
||
|
||
Added support for configuring some more GUI dimensions using
|
||
widget class style properties:
|
||
|
||
* app/widgets/gimpdock.c: made "separator_height" work correctly.
|
||
* app/widgets/gimpdockbook.c: added "tab_height".
|
||
* app/widgets/gimpeditor.c: added "button_icon_size".
|
||
* app/widgets/gimpimagedock.c: added "minimal_width".
|
||
* app/widgets/gimptoolbox.c: added "tool_icon_size".
|
||
|
||
* themes/Default/gtkrc: set the properties to their default values
|
||
for documentation.
|
||
|
||
* etc/gtkrc_user: added a (commented out) example style which makes
|
||
lots of things smaller.
|
||
|
||
2002-03-18 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/core/core-enums.h
|
||
* app/core/core-types.h: more enum cleanup (GimpOffsetType, MergeType).
|
||
|
||
* app/core/gimpdrawable-offset.c
|
||
* app/core/gimpimage-merge.[ch]
|
||
* app/gui/image-commands.c
|
||
* app/gui/layers-commands.c
|
||
* app/gui/offset-dialog.c
|
||
* tools/pdbgen/pdb/image.pdb: changed accordingly.
|
||
|
||
* app/pdb/drawable_cmds.c
|
||
* app/pdb/image_cmds.c
|
||
* libgimp/gimpenums.h
|
||
* plug-ins/script-fu/script-fu-constants.c
|
||
* tools/pdbgen/enums.pl: regenerated.
|
||
|
||
2002-03-18 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/core/core-enums.h
|
||
* app/core/core-types.h: more enum cleanup (ChannelOps this time).
|
||
|
||
* app/core/gimpchannel.[ch]
|
||
* app/core/gimpimage-mask-select.[ch]
|
||
* app/gui/channels-commands.c
|
||
* app/gui/vectors-commands.c
|
||
* app/tools/gimpbezierselecttool.c
|
||
* app/tools/tools-types.h
|
||
* app/widgets/gimpchannellistview.[ch]
|
||
* tools/pdbgen/pdb/channel.pdb
|
||
* tools/pdbgen/pdb/selection.pdb
|
||
* tools/pdbgen/pdb/selection_tools.pdb: changed accordingly.
|
||
|
||
* app/pdb/channel_cmds.c
|
||
* app/pdb/selection_cmds.c
|
||
* app/pdb/selection_tools_cmds.c
|
||
* libgimp/gimpenums.h
|
||
* plug-ins/script-fu/script-fu-constants.c
|
||
* tools/pdbgen/enums.pl: regenerated.
|
||
|
||
2002-03-18 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/core/core-enums.h
|
||
* app/core/core-types.h: more enum cleanup (ConvertPaletteType and
|
||
ConvertDitherType this time).
|
||
|
||
* app/core/gimpimage-convert.[ch]
|
||
* app/gui/convert-dialog.c
|
||
* tools/pdbgen/pdb/convert.pdb: changed accordingly.
|
||
|
||
* app/pdb/convert_cmds.c
|
||
* libgimp/gimpconvert_pdb.c
|
||
* libgimp/gimpenums.h
|
||
* plug-ins/script-fu/script-fu-constants.c
|
||
* tools/pdbgen/enums.pl: regenerated.
|
||
|
||
2002-03-18 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/core/core-enums.h
|
||
* app/core/core-types.h: moved some more enums into the right place
|
||
and namespacified them.
|
||
|
||
* app/undo.c
|
||
* app/core/gimpdrawable-bucket-fill.[ch]
|
||
* app/core/gimpdrawable.c
|
||
* app/core/gimpedit.c
|
||
* app/core/gimpimage-mask.c
|
||
* app/core/gimpimage-new.c
|
||
* app/core/gimpimage-qmask.c
|
||
* app/core/gimplayer.[ch]
|
||
* app/display/gimpdisplayshell-dnd.c
|
||
* app/gui/channels-commands.c
|
||
* app/gui/file-new-dialog.c
|
||
* app/gui/layers-commands.c
|
||
* app/gui/menus.c
|
||
* app/tools/gimpbucketfilltool.c
|
||
* tools/pdbgen/pdb/image.pdb
|
||
* tools/pdbgen/pdb/layer.pdb
|
||
* tools/pdbgen/pdb/misc_tools.pdb: changed accordingly.
|
||
|
||
* libgimp/gimpcompat.h
|
||
* plug-ins/script-fu/siod-wrapper.c: added compat defines for changed
|
||
GimpMaskApplyMode enum.
|
||
|
||
* tools/pdbgen/enums.pl
|
||
* app/pdb/drawable_cmds.c
|
||
* app/pdb/edit_cmds.c
|
||
* app/pdb/image_cmds.c
|
||
* app/pdb/layer_cmds.c
|
||
* app/pdb/misc_tools_cmds.c
|
||
* libgimp/gimpenums.h
|
||
* plug-ins/script-fu/script-fu-constants.c: regenerated.
|
||
|
||
* app/paint-funcs/paint-funcs.c: ifdef'ed out some debug output and
|
||
reindented.
|
||
|
||
2002-03-18 Tuomas Kuosmanen <tigert@ximian.com>
|
||
|
||
* themes/Default/images/stock-button-eye.png: Added some
|
||
antialiasing to the "show layer" icon now that gtk2 supports
|
||
it.. (whee! :-)
|
||
|
||
2002-03-17 Manish Singh <yosh@gimp.org>
|
||
|
||
* tools/pdbgen/app.pl
|
||
* tools/pdbgen/enumcode-py.pl
|
||
* tools/pdbgen/enumcode.pl
|
||
* tools/pdbgen/enumgen.pl: removed enum nick support, best to keep
|
||
internal and external names consistent
|
||
|
||
* app/core/core-enums.h: remove chops from enums. Change TRANS to
|
||
TRANSPARENT in GimpBlendMode
|
||
|
||
* app/core/core-types.h: remove chops and nicks from enums. Change INV
|
||
to INVERSE and SUB to SUBTRACT to make things more clear
|
||
|
||
* app/core/gimpchannel.c
|
||
* app/gui/channels-commands.c
|
||
* app/gui/vectors-commands.c
|
||
* app/tools/gimpbezierselecttool.c
|
||
* app/tools/gimpbycolorselecttool.c
|
||
* app/tools/gimprectselecttool.c
|
||
* app/tools/gimpselectiontool.c
|
||
* app/tools/selection_options.c
|
||
* app/tools/tools-types.h
|
||
* app/widgets/gimpchannellistview.c
|
||
* app/widgets/gimpvectorslistview.c: reflect SUB -> SUBTRACT change
|
||
|
||
* app/core/gimpdrawable-blend.c: reflect TRANS -> TRANSPARENT change
|
||
|
||
* app/core/gimplayer.c
|
||
* app/gui/layers-commands.c: reflect INV -> INVERSE change
|
||
|
||
* app/paint/paint-types.h: remove nick from PaintApplicationMode
|
||
|
||
* app/tools/gimperasertool.c: fix tooltip
|
||
|
||
* app/widgets/gimpenummenu.c: #include "libgimp/gimpintl.h" for
|
||
gettext
|
||
|
||
* libgimp/gimpcompat.h: compatibility enums here, since we removed
|
||
the nicks
|
||
|
||
* tools/pdbgen/enums.pl
|
||
* libgimp/gimpenums.h
|
||
* plug-ins/script-fu/script-fu-constants.c
|
||
* app/core/core-enums.c
|
||
* app/pdb/channel_cmds.c
|
||
* app/pdb/drawable_cmds.c
|
||
* app/pdb/edit_cmds.c
|
||
* app/pdb/layer_cmds.c
|
||
* app/pdb/misc_tools_cmds.c
|
||
* app/pdb/paint_tools_cmds.c
|
||
* app/pdb/selection_cmds.c
|
||
* app/pdb/selection_tools_cmds.c: regenerated, enum changes
|
||
|
||
* plug-ins/common/hot.c: GIMP_TRANS_IMAGE_FILL -> GIMP_TRANSPARENT_FILL
|
||
|
||
* plug-ins/common/warp.c: GIMP_BG_IMAGE_FILL -> GIMP_BACKGROUND_FILL
|
||
|
||
* plug-ins/script-fu/siod-wrapper.c: compat constant definitions
|
||
|
||
2002-03-17 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/core/core-enums.[ch]: registered more enums.
|
||
|
||
* app/tools/gimpblendtool.c: use GimpEnumMenus.
|
||
|
||
2002-03-17 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/config/gimpconfig.c: open the file with O_TRUNC.
|
||
|
||
2002-03-17 Sven Neumann <sven@gimp.org>
|
||
|
||
* libgimpwidgets/gimpwidgets.[ch]: new function to set the sensitivity
|
||
of an option_menu.
|
||
|
||
* app/base/base-enums.[ch]: register and describe GimpHistogramChannel.
|
||
|
||
* app/core/Makefile.am
|
||
* app/core/core-enums.[ch]: build with gimp-mkenums, added core-enums.c
|
||
to CVS, added descriptions for GimpPreviewSize.
|
||
|
||
* app/display/Makefile.am
|
||
* app/display/display-enums.[ch]: build with gimp-mkenums, added
|
||
display-enums.c to CVS, added descriptions for GimpCursorMode.
|
||
|
||
* app/gui/preferences-dialog.c: more GimpEnumMenus.
|
||
|
||
* app/tools/gimpcurvestool.c
|
||
* app/tools/gimphistogramtool.c
|
||
* app/tools/gimplevelstool.c: use a GimpEnumMenu for the Channel menu.
|
||
Allow alpha channel in HistogramView. These tools needs more work...
|
||
|
||
2002-03-17 Sven Neumann <sven@gimp.org>
|
||
|
||
* tools/gimp-mkenums: allowing NULL for names was a bad idea...
|
||
|
||
* app/base/base-enums.[ch]: added more descriptions.
|
||
|
||
2002-03-17 Sven Neumann <sven@gimp.org>
|
||
|
||
* configure.in: define GIMP_MKENUMS for use in Makefile.am.
|
||
|
||
* tools/Makefile.am
|
||
* tools/gimp-mkenums: a modified version of glib-mkenums that parses
|
||
literal descriptions for enum values out of the header file.
|
||
|
||
* app/base/Makefile.am
|
||
* app/base/base-enums.h: added descriptions for the InterpolationType.
|
||
|
||
* app/base/base-enums.c: added to CVS although it is generated since
|
||
translatable messages are extracted from this file and translators
|
||
shouldn't need to build stuff.
|
||
|
||
* app/widgets/Makefile.am
|
||
* app/widgets/widgets-types.h
|
||
* app/widgets/gimpenummenu.[ch]: new widget to create a GtkMenu or a
|
||
GtkOptionMenu directly from a registered enum.
|
||
|
||
* app/gui/preferences-dialog.c
|
||
* app/gui/resize-dialog.c
|
||
* app/tools/transform_options.c: use gimp_enum_option_menu_new() for
|
||
the Interpolation menus.
|
||
|
||
2002-03-17 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/widgets/gimpcolormapeditor.[ch]: namespaceified and cleaned
|
||
up a lot. Removed the menu code.
|
||
|
||
* app/gui/menus.c: added a "<ColormapEditor>" item factory...
|
||
|
||
* app/gui/Makefile.am
|
||
* app/gui/colormap-editor-commands.[ch]: ...and callbacks for the
|
||
new factory.
|
||
|
||
* app/gui/menus.c: Cleaned up a lot. Removed most static variables.
|
||
Enabled the menu debugging code again. Moved all debug and test
|
||
entries to <Toolbox>/File/Debug. Added an "Open Recent" submenu
|
||
to <Image>/File because it was a one-liner after the cleanup...
|
||
|
||
* app/widgets/gimpeditor.c: create the icons in GTK_ICON_SIZE_MENU.
|
||
Need to make this configurable using a style property...
|
||
|
||
2002-03-16 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gui/Makefile.am
|
||
* app/gui/colormap-dialog.[ch]: removed...
|
||
|
||
* app/widgets/Makefile.am
|
||
* app/widgets/widgets-types.h
|
||
* app/widgets/gimpcolormapeditor.[ch]: ...and added here.
|
||
|
||
* app/gui/dialogs-constructors.c: changed accordingly.
|
||
|
||
* themes/Default/images/Makefile.am
|
||
* themes/Default/images/stock-menu-convert-grayscale.png
|
||
* themes/Default/images/stock-menu-convert-indexed.png
|
||
* themes/Default/images/stock-menu-convert-rgb.png
|
||
* themes/Default/images/stock-menu-merge-down.png
|
||
* themes/Default/images/stock-menu-reshow-filter.png
|
||
* themes/Default/images/stock-menu-rotate-180.png
|
||
* themes/Default/images/stock-menu-rotate-270.png
|
||
* themes/Default/images/stock-menu-rotate-90.png
|
||
* themes/Default/images/stock-menu-scale.png: new icons from Jimmac.
|
||
|
||
* themes/Default/images/stock-menu-resize.png: my own doing. Someone
|
||
needs to look at it :)
|
||
|
||
* themes/Default/imagerc
|
||
* libgimpwidgets/gimpstock.[ch]: added them.
|
||
|
||
* app/gui/menus.c: use them.
|
||
|
||
2002-03-16 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/display/gimpdisplayshell-filter-dialog.c: treeviewized
|
||
and undeprecated.
|
||
|
||
* app/widgets/Makefile.am
|
||
* app/widgets/gimpconstrainedhwrapbox.[ch]: removed this hack.
|
||
|
||
* app/widgets/gimpcontainergridview.[ch]: added "rows" and
|
||
"columns" fields, connect to the viewport's "size_allocate" signal
|
||
and set the size_request of the wrap_box in the callback.
|
||
|
||
2002-03-15 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/display/gimpdisplayshell.[ch]: renamed shell->cd_list to
|
||
shell->filters and shell->cd_ui to shell->filters_dialog.
|
||
|
||
* app/display/gimpdisplayshell-filter-dialog.c
|
||
* app/display/gimpdisplayshell-filter.c
|
||
* app/display/gimpdisplayshell-render.c
|
||
* app/gui/dialogs-constructors.c: changed accordingly.
|
||
|
||
* app/display/gimpdisplayshell-filter-dialog.c: cleaned up the GUI.
|
||
Still deprecated GtkCLists around...
|
||
|
||
* app/widgets/gimpeditor.[ch]: added gimp_editor_new().
|
||
|
||
* app/gui/image-commands.[ch]
|
||
* app/gui/menus.c: added "<Image>/Image/Crop Image" because i was
|
||
sick of clicking 20 times just to crop to the current selection.
|
||
|
||
* themes/Default/gtkrc: removed "gimp-dock-style" and changed
|
||
"gimp-gtk-icons" to "gimp-default-style". Set our widget class
|
||
style property defaults there.
|
||
|
||
2002-03-15 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/common/colorify.c: applied a patch from Maurits Rijk
|
||
<lpeek.mrijk@consunet.nl> that gives a nice speedup (#74563).
|
||
|
||
2002-03-14 Manish Singh <yosh@gimp.org>
|
||
|
||
* app/tools/gimpfuzzyselecttool.c: add missing support for
|
||
anchoring a selection (bugfix ported from stable branch)
|
||
|
||
2002-03-14 Michael Natterer <mitch@gimp.org>
|
||
|
||
Re-enabled the display filters. They work exactly the same way
|
||
as before except for the color_area pseudo-display. More stuff
|
||
to come...
|
||
|
||
* app/display/Makefile.am: build them again.
|
||
|
||
* app/display/gimpdisplayshell-filter-dialog.[ch]
|
||
* app/display/gimpdisplayshell-filter.[ch]: changed to the new
|
||
namespace, work on GimpDisplayShell instead of GimpDisplay.
|
||
|
||
* app/display/gimpdisplayshell-render.c
|
||
* app/display/gimpdisplayshell.[ch]: changed accordingly.
|
||
|
||
* app/gui/dialogs-constructors.c: enabled the dialog constructor.
|
||
|
||
* app/gui/gui.c: call the init() function.
|
||
|
||
* app/gui/menus.c: enabled the menu entry, but moved it to
|
||
<Image>/View. Moved "Undo History..." to <Image>/Image.
|
||
|
||
* modules/Makefile.am: build and install the modules.
|
||
|
||
* modules/cdisplay_gamma.c
|
||
* modules/cdisplay_highcontrast.c: made them compile with minimal
|
||
changes.
|
||
|
||
Unrelated:
|
||
|
||
* app/undo_history.c: connect to the image's "disconnect", not
|
||
"destroy" signal.
|
||
|
||
* app/tools/gimpselectiontool.c: mask out the irrelevant parts of
|
||
the "state" passed to the modifier_key() func, so tool_options
|
||
button toggling works with other modifiers (e.g. num_lock)
|
||
pressed.
|
||
|
||
2002-03-14 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/tools/gimpcolorpickertool.c: oops, including removed files
|
||
is a bad idea...
|
||
|
||
2002-03-14 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/core/gimptoolinfo.c: g_strdup() the stock_id passed to
|
||
gimp_tool_info_new() because the caller's memory may disappear
|
||
after registering the tool (tool modules).
|
||
|
||
Made a GimpDock out of the toolbox:
|
||
|
||
* app/gui/Makefile.am
|
||
* app/gui/color-area.[ch]
|
||
* app/gui/indicator-area.[ch]
|
||
* app/gui/toolbox.[ch]: removed...
|
||
|
||
* app/widgets/Makefile.am
|
||
* app/widgets/widgets-types.h
|
||
* app/widgets/gimptoolbox-color-area.[ch]
|
||
* app/widgets/gimptoolbox-indicator-area.[ch]
|
||
* app/widgets/gimptoolbox.[ch]: ...and added here.
|
||
|
||
* app/widgets/gimpdock.[ch]: don't set a minimal width. Added a
|
||
"destroy_if_empty" boolean so we can prevent destruction of the
|
||
toolbox if it's last dockable is removed. Added gimp_dock_construct()
|
||
which is called from GimpImageDock and GimpToolbox.
|
||
|
||
* app/widgets/gimpimagedock.[ch]: Default to not showing the image
|
||
menu, set a minimal width here, misc. minor cleanup.
|
||
|
||
* app/widgets/gimpdockbook.c: some more GIMP_IS_IMAGE_DOCK()
|
||
checks, fixed dnd widget creation.
|
||
|
||
* app/widgets/gimpdialogfactory.[ch]: changed
|
||
gimp_dialog_factories_toggle() to take just the toolbox_factory as
|
||
parameter. When restoring the session use the created dock's
|
||
dialog factory to create dockables, not the the factory we
|
||
created the dock from (for the toolbox).
|
||
|
||
* app/display/gimpdisplayshell-callbacks.c: changed accordingly.
|
||
|
||
* app/gui/dialogs.[ch]: create an own dialog factory for the toolbox
|
||
and set dialogs_toolbox_new() as it's new_dock_func.
|
||
|
||
* app/gui/dialogs-constructors.[ch]: changed dialogs_toolbox_get()
|
||
accordingly.
|
||
|
||
* app/gui/dialogs-commands.[ch]: added dialogs_show_toolbox(), ckeck
|
||
if a dock is really a GimpImageDock before casting.
|
||
|
||
* app/gui/gui.c
|
||
* app/gui/menus.c
|
||
* app/widgets/gimppaletteeditor.c: changed accordingly.
|
||
|
||
* app/gui/color-notebook.c
|
||
* app/gui/color-select.c
|
||
* app/gui/colormap-dialog.c
|
||
* app/gui/palette-editor-commands.c: removed useless inclusion of
|
||
"gui/color-area.h".
|
||
|
||
* themes/Default/gtkrc: set "gimp-dock-style" for GimpToolbox widgets.
|
||
|
||
2002-03-13 Manish Singh <yosh@gimp.org>
|
||
|
||
* tools/pdbgen/lib.pl: autogenerated libgimp/gimp_pdb.h
|
||
|
||
* tools/pdbgen/app.pl: fix a bug in the file open error message
|
||
|
||
* libgimp/gimp_pdb.h: now generated
|
||
|
||
2002-03-13 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/Makefile.am (SUBDIRS): moved pdb directory to the end.
|
||
|
||
* app/paint/Makefile.am: removed the ugly hack. Seems to work w/o it.
|
||
|
||
* themes/Default/Makefile.am: don't build inline pixbuf headers here.
|
||
|
||
* themes/Default/images/Makefile.am: build them here with a hack
|
||
that extracts the icon names out of the filenames. Cleaner Makefile
|
||
and correct dependencies.
|
||
|
||
* themes/Default/imagerc
|
||
* themes/Default/images/stock-button-reset.png: added a reset button
|
||
(which looks just like refresh at the moment).
|
||
|
||
* configure.in
|
||
* themes/Default/images/tools/Makefile.am: removed.
|
||
|
||
* libgimpwidgets/gimpstock.c
|
||
* libgimpwidgets/gimpwidgets.c: include the pixbuf headers from their
|
||
new places.
|
||
|
||
2002-03-13 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gui/brush-select.[ch]: renamed parameters to be consistent
|
||
with the other foo-select.* files.
|
||
|
||
* app/gui/tool-options-dialog.c: removed unused function.
|
||
|
||
* app/plug-in/plug-in-types.h: PlugInImageType was accidentially
|
||
exported to the PDB.
|
||
|
||
* tools/pdbgen/enums.pl
|
||
* libgimp/gimpenums.h
|
||
* plug-ins/script-fu/script-fu-constants.c: regenerated.
|
||
|
||
More brush, pattern, ... PDB wrapper cleanup:
|
||
|
||
* tools/pdbgen/pdb/brush_select.pdb
|
||
* tools/pdbgen/pdb/gradient_select.pdb
|
||
* tools/pdbgen/pdb/palette_select.pdb
|
||
* tools/pdbgen/pdb/pattern_select.pdb: even more cleanup, guard
|
||
all functions with if(!gimp->no_interface).
|
||
|
||
* tools/pdbgen/pdb/brushes.pdb
|
||
* tools/pdbgen/pdb/gradients.pdb
|
||
* tools/pdbgen/pdb/palettes.pdb
|
||
* tools/pdbgen/pdb/patterns.pdb: reordered functions to be
|
||
consistent across all files. Generate libgimp wrappers for *all*
|
||
functions because of API symmetry.
|
||
|
||
* tools/pdbgen/pdb/gradients.pdb: renamed gradients_[get|set]_active
|
||
to gradients_[get|set]_gradient because of API symmetry.
|
||
|
||
* libgimp/gimpcompat.h: added the old function names here, guard
|
||
the whole file with GIMP_ENABLE_COMPAT_CRUFT (it's back, yeah).
|
||
|
||
* plug-ins/FractalExplorer/Dialogs.c
|
||
* plug-ins/gflare/gflare.c: use the new function names.
|
||
|
||
* libgimp/gimpbrushes_pdb.[ch]
|
||
* libgimp/gimpgradients_pdb.[ch]
|
||
* libgimp/gimppalettes_pdb.[ch]
|
||
* libgimp/gimppatterns_pdb.[ch]
|
||
* app/pdb/brush_select_cmds.c
|
||
* app/pdb/brushes_cmds.c
|
||
* app/pdb/gradient_select_cmds.c
|
||
* app/pdb/gradients_cmds.c
|
||
* app/pdb/palette_select_cmds.c
|
||
* app/pdb/palettes_cmds.c
|
||
* app/pdb/pattern_select_cmds.c
|
||
* app/pdb/patterns_cmds.c: regenerated.
|
||
|
||
2002-03-13 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/core/core-enums.h: register GimpChannelType and
|
||
GimpSelectionControl enums with the type system.
|
||
|
||
* app/core/gimpimage.c: use them in signal declarations.
|
||
|
||
* app/widgets/Makefile.am
|
||
* app/widgets/widgets-enums.h
|
||
* app/widgets/widgets-types.h: split enums into it's own file and
|
||
generate widgets-enums.c. Register GimpZoomType enum.
|
||
|
||
* app/widgets/gimpnavigationpreview.c: use GIMP_TYPE_ZOOM_TYPE.
|
||
|
||
2002-03-12 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/config/gimpguiconfig.[ch]: removed "global_paint_options".
|
||
|
||
2002-03-12 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimprc.[ch]
|
||
* app/gui/preferences-dialog.c
|
||
* app/paint/gimppaintoptions.[ch]
|
||
* app/tools/paint_options.[ch]
|
||
* app/tools/tool_manager.[ch]: removed the "global_paint_options"
|
||
gimprc option because it doesn't quite fit the new dockable dialog
|
||
architecture.
|
||
|
||
* app/gui/brush-select.[ch]
|
||
* app/gui/gradient-select.[ch]
|
||
* app/gui/palette-select.[ch]
|
||
* app/gui/pattern-select.[ch]: removed the "Global Brush/Pattern/...
|
||
Selection" part of them. They are now only used for temp popup
|
||
selections and the PDB. *Lots* of cleanup.
|
||
|
||
* app/gui/convert-dialog.c
|
||
* app/gui/dialogs-constructors.[ch]
|
||
* app/gui/dialogs.c
|
||
* app/gui/gui.c
|
||
* app/gui/menus.c
|
||
* app/gui/palette-import-dialog.c
|
||
* app/plug-in/plug-in.c: changed accordingly.
|
||
|
||
Cleaned up the palette and other data PDB stuff:
|
||
|
||
* tools/pdbgen/Makefile.am
|
||
* tools/pdbgen/groups.pl: added "palette_select" and "palettes".
|
||
|
||
* tools/pdbgen/pdb/palette_select.pdb: new file. Makes the palette
|
||
selection PDB controllable.
|
||
|
||
* tools/pdbgen/pdb/palettes.pdb: new file cut out of palette.pdb
|
||
because of API symmetry with brushes, patterns, ...
|
||
|
||
* tools/pdbgen/pdb/palette.pdb: removed from here.
|
||
|
||
* tools/pdbgen/pdb/brush_select.pdb
|
||
* tools/pdbgen/pdb/brushes.pdb
|
||
* tools/pdbgen/pdb/gradient_select.pdb
|
||
* tools/pdbgen/pdb/gradients.pdb
|
||
* tools/pdbgen/pdb/palette.pdb
|
||
* tools/pdbgen/pdb/pattern_select.pdb
|
||
* tools/pdbgen/pdb/patterns.pdb: lots of cleanup.
|
||
|
||
Autogenerated stuff:
|
||
|
||
* app/pdb/Makefile.am
|
||
* app/pdb/palette_select_cmds.c
|
||
* app/pdb/palettes_cmds.c: new files.
|
||
|
||
* app/pdb/brush_select_cmds.c
|
||
* app/pdb/brushes_cmds.c
|
||
* app/pdb/gradient_select_cmds.c
|
||
* app/pdb/gradients_cmds.c
|
||
* app/pdb/internal_procs.c
|
||
* app/pdb/palette_cmds.c
|
||
* app/pdb/pattern_select_cmds.c
|
||
* app/pdb/patterns_cmds.c: regenerated.
|
||
|
||
* libgimp/Makefile.am
|
||
* libgimp/gimp_pdb.h
|
||
* libgimp/gimppalettes_pdb.[ch]
|
||
* libgimp/gimppaletteselect_pdb.[ch]: new files.
|
||
|
||
* libgimp/gimpgradientselect_pdb.[ch]
|
||
* libgimp/gimppalette_pdb.[ch]
|
||
* libgimp/gimppatterns_pdb.c: regenerated.
|
||
|
||
2002-03-11 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/gui/preferences-dialog.c: use a PangoAttributeList instead of
|
||
PangoMarkup for the frame header. Also removed bold attribute and
|
||
hardcoded size_request.
|
||
|
||
2002-03-11 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gui/pattern-select.c
|
||
* app/gui/preferences-dialog.c: proofreading by bex.
|
||
|
||
* app/gui/brush-select.c
|
||
* app/gui/gradient-select.c
|
||
* app/gui/pattern-select.c: cleaned up the
|
||
foo_select_change_callbacks() functions a bit.
|
||
|
||
2002-03-11 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/gui/user-install-dialog.c: fixed typo (#74248).
|
||
|
||
2002-03-11 Sven Neumann <sven@gimp.org>
|
||
|
||
* configure.in: bumped version number to 1.3.5.
|
||
|
||
* NEWS: updated.
|
||
|
||
* themes/Default/imagerc: fixed typos.
|
||
|
||
2002-03-11 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/widgets/gimplayerlistview.[ch]: added a GimpAnchorItemFunc
|
||
and use it if it's set.
|
||
|
||
* app/widgets/gimpitemlistview.c: removed the floating selection
|
||
special case hack from the remove_item callback.
|
||
|
||
* app/gui/layers-commands.[ch]: added layers_remove_layer() and
|
||
layers_anchor_layer(). Fixed sensitive setting of the "Anchor"
|
||
menu item.
|
||
|
||
* app/gui/dialogs-constructors.c: use the new functions when
|
||
constructing the layers dialog. Makes deleting and anchoring
|
||
floating selections from the layers dialog work without hacking
|
||
or code duplication.
|
||
|
||
* app/widgets/gimpdialogfactory.c: added comments about dialog
|
||
destruction in dispose().
|
||
|
||
2002-03-10 Michael Natterer <mitch@gimp.org>
|
||
|
||
* libgimpwidgets/gimpwidgets.h: removed type checking casts from
|
||
macros which return parts of pseudo-widgets.
|
||
|
||
* app/widgets/gimpbrushfactoryview.c: changed accordingly.
|
||
|
||
* app/widgets/gimpdialogfactory.c: added a "dispose"
|
||
implementation used to destroy all dialogs the factory has
|
||
created.
|
||
|
||
* app/gui/toolbox.[ch]: removed toolbox_free(), removed the static
|
||
"toolbox_shell" variable, set the active tool correctly on
|
||
creation, don't show the window here (fixes session menagement),
|
||
take the vbox' spacing into account when calculating the window's
|
||
resize hints.
|
||
|
||
* app/gui/gui.c: don't include "toolbox.h", don't call
|
||
toolbox_free().
|
||
|
||
* app/widgets/gimpfontselection.c: set the width of the entry to
|
||
16 chars on creation so it doesn't fall back to it's insanely
|
||
large default width, minor stuff.
|
||
|
||
* app/tools/gimptexttool.c
|
||
* app/tools/selection_options.c: some more scale_entries.
|
||
|
||
2002-03-10 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gui/dialogs-constructors.[ch]
|
||
* app/gui/dialogs.c
|
||
* app/gui/tool-options-dialog.[ch]: made the tool options dialog
|
||
dockable. Create a fancy tab for it which looks like the old
|
||
dialog header.
|
||
|
||
* app/gui/gui.c
|
||
* app/gui/menus.c
|
||
* app/gui/toolbox.c: changed accordingly.
|
||
|
||
* app/tools/gimpbucketfilltool.c
|
||
* app/tools/gimpcroptool.c
|
||
* app/tools/gimperasertool.c: moved the tool toggling widgets to
|
||
the top.
|
||
|
||
* app/tools/paint_options.c: show the paint mode menu for all
|
||
paint tools but set it insensitive where it makes no sense.
|
||
Reduces flickering and makes the tools' similarity more obvious.
|
||
|
||
* app/widgets/gimpdataeditor.c: fixed segfault in
|
||
gimp_data_editor_set_data() (data may be NULL), don't pass NULL to
|
||
gtk_entry_set_text(), make the name entry insensitive if data ==
|
||
NULL.
|
||
|
||
* app/widgets/gimpdialogfactory.c: fixed longstanding bug which
|
||
made newly created docks steal the first session entry with a NULL
|
||
widget instead of the first _dock_ session entry with a NULL
|
||
widget. Added even more debugging output. Cleanup.
|
||
|
||
* app/widgets/gimpdockbook.c: made the tab/menu widget code more
|
||
general to cover the tool options tab.
|
||
|
||
2002-03-09 Sven Neumann <sven@gimp.org>
|
||
|
||
* Made 1.3.4 release.
|
||
|
||
2002-03-09 Sven Neumann <sven@gimp.org>
|
||
|
||
* configure.in: removed intltool version check, it is broken :-(
|
||
Updated dependencies to glib-2.0.0, pango-1.0.0 and gtk+-2.0.0.
|
||
|
||
* HACKING
|
||
* INSTALL: updated.
|
||
|
||
2002-03-08 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/widgets/gimpbrushfactoryview.c: forgot some casts.
|
||
|
||
2002-03-08 Michael Natterer <mitch@gimp.org>
|
||
|
||
* libgimpwidgets/gimpwidgets.[ch]: return the created label from
|
||
gimp_table_attach_aligned(), doc fixes.
|
||
|
||
* app/gui/channels-commands.c
|
||
* app/tools/gimpairbrushtool.c
|
||
* app/tools/gimpblendtool.c
|
||
* app/tools/gimpbucketfilltool.c
|
||
* app/tools/gimpcolorpickertool.c
|
||
* app/tools/gimpconvolvetool.c
|
||
* app/tools/gimpdodgeburntool.c
|
||
* app/tools/gimpinktool.c
|
||
* app/tools/gimpmagnifytool.c
|
||
* app/tools/gimpsmudgetool.c
|
||
* app/tools/paint_options.c
|
||
* app/tools/selection_options.c
|
||
* app/widgets/gimpbrushfactoryview.c
|
||
* app/widgets/gimplayerlistview.c: use gimp_scale_entries instead
|
||
of just hscales in lots of places, so the values are keyboard
|
||
input-able.
|
||
|
||
2002-03-08 Sven Neumann <sven@gimp.org>
|
||
|
||
* configure.in: reorder AC_OUTPUT to make intltool happy, check
|
||
intltool version.
|
||
|
||
* Makefile.am: reordered SUBDIRS.
|
||
|
||
2002-03-08 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/core/gimpchannel.[ch]: changed gimp_channel_get_color() to
|
||
not return the color but take a second GimpRGB* parameter like all
|
||
other _get_color() functions. Reordered some functions to make
|
||
more sense, added some g_return_if_fail().
|
||
|
||
* app/core/gimppalette.[ch]: added gimp_palette_[set|get]_n_columns()
|
||
|
||
* app/gui/menus.c: added a "<PaletteEditor>" item factory.
|
||
|
||
* app/gui/Makefile.am
|
||
* app/gui/palette-editor-commands.[ch]: callbacks for the factory.
|
||
|
||
* app/widgets/gimppaletteeditor.[ch]: removed the menu stuff here,
|
||
added a spinbutton to adjust the number of columns.
|
||
|
||
* app/gui/gradient-editor-commands.c: removed usage of "the_gimp".
|
||
|
||
* app/widgets/gimpgradienteditor.c: minor cleanup.
|
||
|
||
* app/widgets/gimpbrusheditor.h
|
||
* app/widgets/gimpgradienteditor.h
|
||
* app/widgets/gimppaletteeditor.h: forgot to declare the _get_type()
|
||
functions publically.
|
||
|
||
2002-03-08 Sven Neumann <sven@gimp.org>
|
||
|
||
Handle gtk-doc just like GTK+ does it now:
|
||
|
||
* configure.in: check for gtk-doc version 0.9. Do not build the API
|
||
reference by default.
|
||
|
||
* autogen.sh: pass --enable-gtk-doc to configure.
|
||
|
||
* Makefile.am: Added a slightly modified distcheck rule that passes
|
||
--enable-gtk-doc to the configure inside.
|
||
|
||
* NEWS: updated.
|
||
|
||
2002-03-08 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/core/core-types.h: added GimpPaletteEntry typedef.
|
||
|
||
* app/core/gimppalette.h: removed it here.
|
||
|
||
* app/widgets/Makefile.am
|
||
* app/widgets/widgets-types.h
|
||
* app/widgets/gimpeditor.[ch]: new widget which is the base class
|
||
for everything which is a vbox and has a button area at the
|
||
bottom.
|
||
|
||
* app/widgets/gimpcontainerview.[ch]: derived from GimpEditor now.
|
||
|
||
* app/widgets/gimpdataeditor.[ch]: a GimpEditor subclass which is
|
||
the base class for the new data editors below.
|
||
|
||
* app/widgets/gimpbrushfactoryview.c
|
||
* app/widgets/gimpbufferview.c
|
||
* app/widgets/gimpchannellistview.c
|
||
* app/widgets/gimpdatafactoryview.c
|
||
* app/widgets/gimpdocumentview.c
|
||
* app/widgets/gimpitemlistview.c
|
||
* app/widgets/gimplayerlistview.c
|
||
* app/widgets/gimpvectorslistview.c
|
||
* themes/Default/gtkrc: changed accordingly.
|
||
|
||
* app/gui/Makefile.am
|
||
* app/gui/brush-editor.[ch]
|
||
* app/gui/gradient-editor.[ch]
|
||
* app/gui/palette-editor.[ch]: removed...
|
||
|
||
* app/widgets/gimpbrusheditor.[ch]
|
||
* app/widgets/gimpgradienteditor.[ch]
|
||
* app/widgets/gimppaletteeditor.[ch]: ...and added back as
|
||
GimpDataEditor subclasses. Lots of cleanup and stuff...
|
||
|
||
* app/gui/dialogs-constructors.[ch]
|
||
* app/gui/dialogs.c
|
||
* app/gui/gradient-editor-commands.c
|
||
* app/gui/gui-types.h
|
||
* app/gui/palette-select.c
|
||
* app/tools/gimpcolorpickertool.c: changed accordingly.
|
||
|
||
2002-03-07 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/gui/splash.c: back to a still splash image.
|
||
|
||
* data/images/gimp_splash.png: blinkenwilber as seen from the
|
||
berlinerfernsehturm.de.
|
||
|
||
2002-03-07 Sven Neumann <sven@gimp.org>
|
||
|
||
* themes/Default/imagerc: applied patch from Guillermo S. Romero that
|
||
adds missing icons.
|
||
|
||
2002-03-07 Jakub Steiner <jimmac@ximian.com>
|
||
|
||
* themes/Default/images/tools/stock-tool-*.png: new icon set
|
||
|
||
2002-03-07 Simon Budig <simon@gimp.org>
|
||
|
||
* NEWS: updated.
|
||
|
||
2002-03-06 Sven Neumann <sven@gimp.org>
|
||
|
||
* INSTALL: mention libart2.
|
||
|
||
2002-03-06 Jakub Steiner <jimmac@ximian.com>
|
||
|
||
* themes/Default/images/preferences/interface.png: wilber gimp
|
||
session
|
||
* themes/Default/images/preferences/help-system.png: the gnome2
|
||
help icon (by Tuomas Kuosmanen)
|
||
|
||
2002-03-06 Simon Budig <simon@gimp.org>
|
||
|
||
* configure.in
|
||
* app/Makefile.am
|
||
* app/core/Makefile.am: We depend on Libart-2.0 now.
|
||
|
||
* app/core/gimpscanconvert.c: Converted the Scan-Conversion to
|
||
use libart. *Way* better results.
|
||
|
||
2002-03-06 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/core/gimpbrushpipe.c
|
||
* app/core/gimppalette.c: message fixes.
|
||
|
||
2002-03-06 Jakub Steiner <jimmac@ximian.com>
|
||
|
||
* themes/Default/images/preferences/input-devices.png:
|
||
* themes/Default/images/preferences/environment.png:
|
||
* themes/Default/images/preferences/default-comment.png:
|
||
start replacing generic icons with gimp-branded
|
||
|
||
2002-03-06 Michael Natterer <mitch@gimp.org>
|
||
|
||
* themes/Default/images/preferences/folders-modules.png
|
||
* themes/Default/images/preferences/folders-themes.png
|
||
* themes/Default/images/preferences/folders-tool-plug-ins.png:
|
||
Some more folder icons for the prefs. dialog.
|
||
|
||
* themes/Default/images/preferences/Makefile.am
|
||
* themes/Default/images/preferences/folders.xcf.gz: changed accordingly.
|
||
|
||
* app/gui/preferences-dialog.c: use them.
|
||
|
||
* themes/Default/Makefile.am
|
||
* themes/Default/imagerc
|
||
* libgimpwidgets/gimpstock.[ch]: removed GIMP_STOCK_PASTE.
|
||
|
||
* themes/Default/gtkrc: override GTK_STOCK_PASTE with our icon
|
||
instead.
|
||
|
||
* app/gui/menus.c
|
||
* app/widgets/gimpbufferview.c: s/GIMP_STOCK_PASTE/GTK_STOCK_PASTE/
|
||
|
||
* themes/Default/images/Makefile.am: install all icons of the
|
||
default theme so the installed directory can be used as template.
|
||
|
||
2002-03-05 Michael Natterer <mitch@gimp.org>
|
||
|
||
* configure.in: mention gimp-remote in the error message if
|
||
Xmu was not found.
|
||
|
||
* plug-ins/webbrowser/Makefile.am
|
||
* tools/Makefile.am: removed X_LIBS again because configure adds
|
||
them to LIBXMU now.
|
||
|
||
2002-03-05 Michael Natterer <mitch@gimp.org>
|
||
|
||
* configure.in: Add X_LIBS to LDFLAGS while checking for
|
||
Xmu because GTK_LIBS no longer adds them.
|
||
|
||
2002-03-04 Michael Natterer <mitch@gimp.org>
|
||
|
||
Forgot some gint opacity values:
|
||
|
||
* app/core/gimplayer.[ch]: layer->opacity, gimp_layer_new(),
|
||
gimp_layer_new_from_tiles()
|
||
|
||
* app/core/gimpimage-projection.[ch]: gimp_image_projection_opacity()
|
||
|
||
* app/core/gimpdrawable-transform.c
|
||
* app/core/gimpedit.c
|
||
* app/core/gimpimage-mask.c
|
||
* app/core/gimpimage-merge.c
|
||
* app/core/gimpimage-new.c
|
||
* app/core/gimpimage.c
|
||
* app/core/gimplayer-floating-sel.c
|
||
* app/gui/layers-commands.c
|
||
* app/tools/gimptexttool.c
|
||
* app/widgets/gimplayerlistview.c
|
||
* app/xcf/xcf-load.c
|
||
* app/xcf/xcf-save.c
|
||
* tools/pdbgen/pdb/layer.pdb: changed accordingly.
|
||
|
||
* app/pdb/layer_cmds.c
|
||
* libgimp/gimplayer_pdb.c: regenerated.
|
||
|
||
2002-03-03 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/core/gimpimage-contiguous-region.c: some cleanup, removed
|
||
unused parameters and code.
|
||
|
||
* app/widgets/gimptoolinfopreview.c: fixed stupid bug I introduced
|
||
yesterday.
|
||
|
||
2002-03-03 Michael Natterer <mitch@gimp.org>
|
||
|
||
Use gdouble in a [0.0..1.0] range for opacity values in the whole
|
||
core's API. Convert them using (opacity * 255.999) when passing
|
||
them to base/ and paint-funcs/
|
||
|
||
Affected functions:
|
||
|
||
* app/core/gimpchannel.[ch]: gimp_channel_[set|get]_opacity()
|
||
* app/core/gimpimage.[ch]: gimp_image_[apply|replace]_image()
|
||
* app/paint/gimppaintcore.[ch]: gimp_paint_core_[paste|replace]_canvas()
|
||
|
||
* app/core/core-types.h: added defines GIMP_OPACITY_TRANSPARENT
|
||
and GIMP_OPACITY_OPAQUE, just like the ones from
|
||
paint-funcs/paint-funcs-types.h
|
||
|
||
* app/gimprc.c
|
||
* app/image_map.c
|
||
* app/core/gimpcontext.c
|
||
* app/core/gimpdrawable-blend.c
|
||
* app/core/gimpdrawable-bucket-fill.c
|
||
* app/core/gimpdrawable.c
|
||
* app/core/gimpedit.c
|
||
* app/core/gimplayer.c
|
||
* app/core/gimplayer-floating-sel.c
|
||
* app/core/gimppalette.c
|
||
* app/paint/gimpairbrush.c
|
||
* app/paint/gimpclone.c
|
||
* app/paint/gimpconvolve.c
|
||
* app/paint/gimpdodgeburn.c
|
||
* app/paint/gimperaser.c
|
||
* app/paint/gimppaintbrush.c
|
||
* app/paint/gimpsmudge.c
|
||
* app/tools/gimpinktool.c
|
||
* app/widgets/gimpcolorpanel.c
|
||
* app/widgets/gimplayerlistitem.c
|
||
* app/widgets/gimppreview.c
|
||
* app/xcf/xcf-load.c: changed accordingly, use the new constants.
|
||
|
||
2002-03-03 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/webbrowser/Makefile.am
|
||
* tools/Makefile.am: GTK_LIBS no longer pulls in X_LIBS for us, so we
|
||
need to add X_LIBS here.
|
||
|
||
2002-03-03 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/core/gimpimage-mask-select.[ch]: changed
|
||
gimp_image_mask_select_channel() to not take "drawable" and
|
||
"sample_merged" parameters (which are silly in some contexts) but
|
||
simply the offsets of the passed channel.
|
||
|
||
* app/gui/channels-commands.c
|
||
* app/tools/gimpbezierselecttool.c
|
||
* app/tools/gimpfuzzyselecttool.c
|
||
* app/tools/gimpiscissorstool.c: changed accordingly.
|
||
|
||
* app/tools/gimpdrawtool.[ch]: changed gimp_draw_tool_draw_lines()
|
||
and _draw_strokes() to take an additional "use_offsets" parameter
|
||
like the other drawing functions.
|
||
|
||
* app/path_curves.c
|
||
* app/tools/gimpvectortool.c: changed accordingly.
|
||
|
||
* app/paint/gimppaintcore.c: removed #if 0'ed code which was
|
||
identical to other functions.
|
||
|
||
* app/tools/gimpselectiontool.c: use the GimpEditSelectionTool's
|
||
"arrow_key_func" so it's now possible to keyboad-move the current
|
||
layer and selection with all selection tool. Needs some more
|
||
tweaking...
|
||
|
||
* app/tools/gimpiscissorstool.[ch]
|
||
* app/tools/gimpvectortool.[ch]: derive them from GimpSelectionTool
|
||
to make the modifier key <-> tool options interaction work. Ported
|
||
IScissors to the new way the draw_tool works.
|
||
|
||
2002-03-02 Sven Neumann <sven@gimp.org>
|
||
|
||
* autogen.sh: require intltool-0.17.
|
||
|
||
* configure.in: require latest glib, pango and gtk+. Bail out if
|
||
libtiff, libjpeg or libpng is not found. You now need to explicitly
|
||
disable TIFF, JPEG and PNG support.
|
||
|
||
* HACKING
|
||
* INSTALL
|
||
* NEWS
|
||
* README: udpated.
|
||
|
||
* data/misc/Makefile.am: fixed dependencies.
|
||
|
||
2002-03-02 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/core/gimptoolinfo.c
|
||
* app/widgets/gimptoolinfopreview.c: allow RGB previews and do proper
|
||
blending for RGBA. This is wasted effort since we will change the
|
||
GimpPreview system anyway, but I couldn't stand the awful look any
|
||
longer.
|
||
|
||
* app/display/gimpdisplayshell.c
|
||
* app/gui/file-save-dialog.c: added linebreaks to messages.
|
||
|
||
2002-03-01 Michael Natterer <mitch@gimp.org>
|
||
|
||
* themes/Default/images/preferences/Makefile.am
|
||
* themes/Default/images/preferences/folders-brushes.png
|
||
* themes/Default/images/preferences/folders-gradients.png
|
||
* themes/Default/images/preferences/folders-palettes.png
|
||
* themes/Default/images/preferences/folders-patterns.png
|
||
* themes/Default/images/preferences/folders-plug-ins.png: some new
|
||
icons made from Jimmac's new tool icons and Tigert's abstract
|
||
palette icon.
|
||
|
||
* themes/Default/images/preferences/folders.xcf.gz: all folders
|
||
icons as layered image.
|
||
|
||
* app/gui/preferences-dialog.c: use them.
|
||
|
||
2002-02-28 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gui/preferences-dialog.c: put the title label & icon outside
|
||
the notebook and exchange them when flipping pages. Pass an icon
|
||
to the resolution_calibrate_dialog.
|
||
|
||
2002-02-28 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimprc.[ch]
|
||
* app/config/gimpguiconfig.[ch]
|
||
* app/gui/toolbox.c: removed the "show_indicators" gimprc option.
|
||
The toolbox layout will change and thus obsolete it anyway.
|
||
|
||
* app/gui/Makefile.am
|
||
* app/gui/input-dialog.[ch]: removed.
|
||
|
||
* app/gui/dialogs-constructors.[ch]
|
||
* app/gui/dialogs.c
|
||
* app/gui/menus.c: changed accordingly.
|
||
|
||
* app/gui/preferences-dialog.c: Added an "Input Devices" page and
|
||
embed the input_dialog stuff there. Put "Display" and "Monitor"
|
||
under "Interface". Removed the "Session" page. Lots of cleanup and
|
||
reordering of options. Please comment...
|
||
|
||
* themes/Default/images/preferences/Makefile.am
|
||
* themes/Default/images/preferences/input-devices.png: new icon.
|
||
* themes/Default/images/preferences/session.png: removed.
|
||
|
||
2002-02-28 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/gui/resolution-calibrate-dialog.[ch]: take an optional pixbuf
|
||
as eye-candy.
|
||
|
||
* app/gui/preferences-dialog.c
|
||
* app/gui/user-install-dialog.c: changed accordingly.
|
||
|
||
2002-02-28 Michael Natterer <mitch@gimp.org>
|
||
Sven Neumann <sven@gimp.org>
|
||
|
||
* configure.in
|
||
* themes/Default/images/Makefile.am
|
||
* themes/Default/images/preferences/Makefile.am: new directory
|
||
for themeable preferences icons.
|
||
|
||
* themes/Default/images/preferences/default-comment.png
|
||
* themes/Default/images/preferences/display.png
|
||
* themes/Default/images/preferences/environment.png
|
||
* themes/Default/images/preferences/folders.png
|
||
* themes/Default/images/preferences/help-system.png
|
||
* themes/Default/images/preferences/image-windows.png
|
||
* themes/Default/images/preferences/interface.png
|
||
* themes/Default/images/preferences/monitor.png
|
||
* themes/Default/images/preferences/new-image.png
|
||
* themes/Default/images/preferences/session.png
|
||
* themes/Default/images/preferences/tool-options.png: added some
|
||
GPL icons from Jimmac's site (http://jimmac.musichall.cz/).
|
||
|
||
* app/gui/gui.[ch]: added gui_themes_get_theme_dir() so we can find
|
||
icons which are loaded on demand.
|
||
|
||
* app/gui/preferences-dialog.c: added the icons to the tree and
|
||
the notebook page headers. Cleaned up and reduced the code a lot
|
||
by adding utility functions prefs_table_new() and
|
||
prefs_check_button_new().
|
||
|
||
* app/display/gimpdisplayshell.c
|
||
* app/display/gimpdisplayshell-callbacks.[ch]: added a "Default"
|
||
menu entry to the display's color button context menu so we can
|
||
reset the padding color to the theme's bg color.
|
||
|
||
2002-02-28 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/gui/file-commands.c: fixed message string.
|
||
|
||
2002-02-27 Michael Natterer <mitch@gimp.org>
|
||
|
||
* themes/Default/images/stock-button-stroke.png
|
||
* themes/Default/images/stock-button-to-path.png
|
||
* themes/Default/images/stock-button-to-selection.png: removed.
|
||
|
||
* themes/Default/images/stock-button-path-stroke.png
|
||
* themes/Default/images/stock-button-selection-stroke.png
|
||
* themes/Default/images/stock-button-selection-to-path.png: new ones.
|
||
|
||
* themes/Default/Makefile.am
|
||
* themes/Default/images/Makefile.am
|
||
* libgimpwidgets/gimpstock.[ch]: changed accordingly.
|
||
|
||
* themes/Default/images/stock-button-selection-add.png
|
||
* themes/Default/images/stock-button-selection-intersect.png
|
||
* themes/Default/images/stock-button-selection-replace.png
|
||
* themes/Default/images/stock-button-selection-subtract.png: cropped.
|
||
|
||
* themes/Default/images/tools/stock-tool-button-brightness-contrast.png:
|
||
a nicer one from Ville P<>tsi.
|
||
|
||
* app/gui/menus.c
|
||
* app/widgets/gimpvectorslistview.c: use the new stock items.
|
||
|
||
* app/gui/dialogs-commands.c: create the new paths dialog, not the
|
||
old one in dialogs_lc_cmd_callback().
|
||
|
||
* app/gui/vectors-commands.c: some more s/Vectors/Path/ in
|
||
user-visible strings.
|
||
|
||
* app/app_procs.c: some test code for the filename -> uri migration.
|
||
|
||
2002-02-27 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/core/Makefile.am
|
||
* app/core/gimppaintinfo.[ch]: new object for registering
|
||
GimpPaintCore subclasses, just like GimpToolInfo for tools.
|
||
|
||
* app/core/gimp.h: added gimp->paint_info_list to hold them.
|
||
|
||
* app/core/gimptoolinfo.[ch]: removed the "pdb_string" and
|
||
"paint_core_name" pointers and added a GimpPaintInfo pointer
|
||
instead.
|
||
|
||
* app/core/gimpimage-mask.c
|
||
* app/gui/vectors-commands.c
|
||
* app/tools/gimpbezierselecttool.c
|
||
* app/tools/tool_manager.c: changed accordingly.
|
||
|
||
* app/paint/paint-types.h
|
||
* app/paint/paint.c: added paint class registration stuff like
|
||
the tool_manager does.
|
||
|
||
* app/paint/gimpairbrush.[ch]
|
||
* app/paint/gimpclone.[ch]
|
||
* app/paint/gimpconvolve.[ch]
|
||
* app/paint/gimpdodgeburn.[ch]
|
||
* app/paint/gimperaser.[ch]
|
||
* app/paint/gimppaintbrush.[ch]
|
||
* app/paint/gimppencil.[ch]
|
||
* app/paint/gimpsmudge.[ch]: added register functions which are
|
||
called from paint_init().
|
||
|
||
The core object system lives not only in "core/", but in
|
||
core, paint, vectors, file, plug-in and xcf, so I had to hack
|
||
a bit to keep the deps working:
|
||
|
||
* app/pdb/pdb-types.h: don't include "paint/paint-types.h"...
|
||
|
||
* app/core/core-types.h: ...because it's included here. Moved
|
||
the inclusions of the core's subsystems' "foo/foo-types.h"
|
||
files to the end of the file.
|
||
|
||
* app/paint/Makefile.am: Some slimy radioactive uglyness.
|
||
|
||
* app/gui/drawable-commands.c
|
||
* app/tools/gimpblendtool.c: removed calling core functions via
|
||
the PDB because it makes no sense to do it manually in only a few
|
||
places. This needs to be done generically using generated
|
||
wrappers living in "app/commands/" or something...
|
||
|
||
2002-02-27 Sven Neumann <sven@gimp.org>
|
||
|
||
* config.guess
|
||
* config.sub: removed from CVS, they get added by automake -a.
|
||
|
||
2002-02-26 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/gui/tips-dialog.c
|
||
* app/gui/tips-parser.c: added support for simple text markup.
|
||
|
||
* tips/gimp-tips.xml.in: document and use the new markup tags.
|
||
|
||
2002-02-26 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/app_procs.c: make absolute paths out of relative ones
|
||
passed on the commandline so the GimpImagefiles can generate
|
||
previews.
|
||
|
||
* app/gui/Makefile.am
|
||
* app/gui/drawable-commands.[ch]: new files implementing menu
|
||
callbacks which work not just on layers.
|
||
|
||
* app/gui/layers-commands.[ch]: removed them here. Cleanup.
|
||
|
||
* app/gui/menus.c: changed accordingly.
|
||
|
||
* app/gui/brushes-commands.c
|
||
* app/gui/channels-commands.c
|
||
* app/gui/vectors-commands.c: cleanup. Added macros to get
|
||
rid of code duplication.
|
||
|
||
2002-02-26 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/common/guillotine.c: code cleanup by Maurits Rijk
|
||
<lpeek.mrijk@consunet.nl> (#72288).
|
||
|
||
* plug-ins/script-fu/interp_slib.c: fixed typo (#72673).
|
||
|
||
2002-02-26 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/widgets/gimpitemlistview.[ch]: added a "item_activate_func"
|
||
to the struct and the constructor so we can distinguish double
|
||
click from right click in the callbacks.
|
||
|
||
* app/widgets/gimpvectorslistview.[ch]: added a "item_stroke_func".
|
||
|
||
* app/widgets/gimpchannellistview.c: reorder the "To Selection" button.
|
||
|
||
* app/gui/dialogs-constructors.c: changed accordingly.
|
||
|
||
* app/gui/menus.c: added separators and some new items to the
|
||
vectors menu. Use the SELECTION_REPLACE, _ADD, ... icons for
|
||
the resp. menu items.
|
||
|
||
* app/gui/vectors-commands.[ch]: added empty callbacks for the new
|
||
menu items, put the stroke stuff to an own function which is used
|
||
as "item_stroke_func" when creating GimpVectorsListViews.
|
||
|
||
2002-02-26 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/core/gimpimage-mask-select.[ch]: implemented
|
||
gimp_image_mask_select_vectors() as simple wrapper around
|
||
gimp_image_mask_select_polygon().
|
||
|
||
* app/gui/vectors-commands.c: call it from the "to selection"
|
||
callbacks.
|
||
|
||
* app/gui/channels-commands.c: use gimp_image_mask_select_channel()
|
||
instead of doing the same manually.
|
||
|
||
* app/paint/gimppencil.c: register as "GimpPencil", not
|
||
"GimpPencilCore".
|
||
|
||
* app/widgets/Makefile.am
|
||
* app/widgets/widgets-types.h
|
||
* app/widgets/gimpvectorslistview.[ch]: new GimpItemListView
|
||
subclass featuring a "To Selection" and "Stroke" button.
|
||
|
||
* app/widgets/gimpitemlistview.c: create GimpVectorsListViews.
|
||
|
||
2002-02-26 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/paint/gimppaintcore-stroke.[ch]: added
|
||
gimp_paint_core_stroke_vectors() which strokes the whole vector
|
||
using one undo step.
|
||
|
||
* app/gui/vectors-commands.c: use the new function.
|
||
|
||
* app/tools/gimpvectortool.c: changed to do evil voodoo in
|
||
gimp_vectors_tool_set_vectors() and thus to always find a
|
||
display to show the vectors.
|
||
|
||
2002-02-26 Sven Neumann <sven@gimp.org>
|
||
|
||
* NEWS: updated
|
||
|
||
2002-02-26 Simon Budig <simon@gimp.org>
|
||
|
||
* app/gui/vectors-commands.c
|
||
* app/tools/gimpvectortool.c
|
||
* app/tools/gimpvectortool.h: fixed a name of a function
|
||
and corrected gimp_vector_tool_set_vectors.
|
||
|
||
2002-02-26 Michael Natterer <mitch@gimp.org>
|
||
|
||
Added some kind of paint core registry. It's ugly and will change...
|
||
|
||
* app/core/gimp.c: call paint_init() and paint_exit().
|
||
|
||
* app/core/gimptoolinfo.[ch]: added "gchar *paint_core_name" to
|
||
the GimpToolInfo structure and the contstructor.
|
||
|
||
* app/tools/tool_manager.c: pass the class names of the
|
||
GimpPaintCore subclasses to gimp_tool_info_new().
|
||
|
||
* app/paint/Makefile.am
|
||
* app/paint/paint.[ch]: new files. Simlply ref/unref all paint
|
||
core classes so we can find them using g_type_from_name().
|
||
|
||
* app/paint/gimppaintcore-stroke.[ch]: changed to take an array
|
||
of GimpCoords, not just gdouble.
|
||
|
||
* tools/pdbgen/pdb/paint_tools.pdb: convert the stroke array here.
|
||
|
||
* app/gui/vectors-commands.c: ad-hoc implementation of vectors
|
||
stroking. Double click now sets the active vectors in the vectors
|
||
tool.
|
||
|
||
* app/pdb/paint_tools_cmds.c: regenerated.
|
||
|
||
2002-02-26 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/gui/tips-parser.c: some documentation can't hurt.
|
||
|
||
* app/tools/Makefile.am
|
||
* app/paint/Makfile.am
|
||
* app/vectors/Makfile.am
|
||
* plug-ins/tools/Makefile.am: fixed dist target.
|
||
|
||
2002-02-26 Simon Budig <simon@gimp.org>
|
||
|
||
* app/tools/gimpdrawtool.c
|
||
* app/tools/gimpdrawtool.h: Added function gimp_draw_tool_draw_strokes
|
||
to be able to draw lines from a GimpCoords array.
|
||
|
||
* app/vectors/gimpanchor.h: removed "active", since this should
|
||
be a GUI thing.
|
||
|
||
* app/vectors/gimpstroke.c
|
||
* app/vectors/gimpstroke.h
|
||
* app/vectors/gimpbezierstroke.c
|
||
* app/vectors/gimpbezierstroke.h: Implemented (and fixed API) for
|
||
interpolation.
|
||
|
||
* app/tools/gimpvectortool.c
|
||
* app/tools/gimpvectortool.h: Changed accordingly, we can actually
|
||
draw polylines now.
|
||
|
||
2002-02-26 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/undo.[ch]: renamed undo_push_layer_rename() to
|
||
undo_push_item_rename(), so channel/vectors renaming is undoable.
|
||
Use "gsize" for all undo size variables. Cleanup.
|
||
|
||
* app/undo_types.h: s/LAYER_RENAME_UNDO/ITEM_RENAME_UNDO/.
|
||
|
||
* app/core/core-types.h: added LAYER_PROPERTIES_UNDO_GROUP.
|
||
|
||
* app/core/gimpimage.c: s/Vectors/Path/ in all user-visible strings.
|
||
|
||
* app/core/gimpitem.[ch]: cleanup.
|
||
|
||
* app/gui/menus.c: s/"New Path"/"New Path..."/, pass
|
||
"vectors_menu_update" to gimp_item_factory_new().
|
||
|
||
* app/gui/layers-commands.c: renaming the floating layer
|
||
transforms it into an ordinary layer. Push an undo group around
|
||
around both the "fs_to_layer" and the renaming.
|
||
|
||
* app/gui/channels-commands.c
|
||
* app/gui/vectors-commands.c: made renaming undoable, cleanup.
|
||
|
||
* app/widgets/gimpitemlistview.c: added an EEKY hack so "Delete"
|
||
is not broken any more for floating selections. Need a better
|
||
solution...
|
||
|
||
2002-02-25 Sven Neumann <sven@gimp.org>
|
||
|
||
* tools/pdbgen/pdb/fileops.pdb: changed dot to underscore in
|
||
implementation of gimp_temp_name(). Fixes bug #72324.
|
||
|
||
* app/pdb/fileops_cmds.c: regenerated.
|
||
|
||
* Makefile.am
|
||
* tips/update.sh: added a script to update po files.
|
||
|
||
2002-02-25 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/gui/tips-dialog.c
|
||
* app/gui/tips-parser.c: added proper error handling. This completes
|
||
the new XML-based tips system that closes bug #68846.
|
||
|
||
2002-02-25 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/widgets/Makefile.am
|
||
* app/widgets/widgets-types.h
|
||
* app/widgets/gimpitemlistitem.[ch]: new GimpListItem subclass
|
||
which handles DND reordering of GimpItems.
|
||
|
||
* app/widgets/gimpdrawablelistitem.[ch]: derive from GimpItemListItem
|
||
and removed the reordering code.
|
||
|
||
* app/widgets/gimplistitem.c: create a GimpItemListItem if the
|
||
passed viewable is a GimpItem.
|
||
|
||
2002-02-25 Sven Neumann <sven@gimp.org>
|
||
|
||
* README.i18n: updated
|
||
|
||
* app/gui/tips-dialog.c
|
||
* app/gui/tips-parser.[ch]: dropped the locale matching magic since
|
||
it would never work for all cases. Instead introduced a special
|
||
message so translators can specify the exact tips locale.
|
||
|
||
2002-02-25 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/core/Makefile.am
|
||
* app/core/core-types.h
|
||
* app/core/gimpitem.[ch]: new base class for something which is a
|
||
child of an image, has a PDB ID, a tattoo, parasites and emits
|
||
a "removed" signal.
|
||
|
||
* app/core/gimpdrawable.[ch]
|
||
* app/vectors/gimpvectors.[ch]: derive from GimpItem. Removed
|
||
lots of stuff from GimpDrawable.
|
||
|
||
* app/core/gimp.[ch]: changed gimp->drawable_table and
|
||
gimp->next_drawable_ID to gimp->item_table and gimp->next_item_id.
|
||
|
||
* app/undo.[ch]: s/undo_push_drawable_parasite/undo_push_item_parasite/,
|
||
minor cleanups.
|
||
|
||
* app/core/gimplayer.[ch]: changed gimp_layer_new_from_tiles() and
|
||
gimp_layer_new_from_drawable() to take the "dest_gimage" as
|
||
second, not first parameter.
|
||
|
||
* app/image_map.c
|
||
* app/core/gimpchannel.c
|
||
* app/core/gimpdrawable-blend.c
|
||
* app/core/gimpdrawable-bucket-fill.c
|
||
* app/core/gimpdrawable-histogram.c
|
||
* app/core/gimpdrawable-offset.c
|
||
* app/core/gimpdrawable-preview.c
|
||
* app/core/gimpdrawable-transform.c
|
||
* app/core/gimpedit.c
|
||
* app/core/gimpimage-duplicate.c
|
||
* app/core/gimpimage-mask.c
|
||
* app/core/gimpimage-merge.c
|
||
* app/core/gimpimage-pick-color.c
|
||
* app/core/gimpimage.c
|
||
* app/core/gimplayer-floating-sel.c
|
||
* app/display/gimpdisplayshell-dnd.c
|
||
* app/file/file-save.c
|
||
* app/gui/channels-commands.c
|
||
* app/gui/file-save-dialog.c
|
||
* app/gui/layers-commands.c
|
||
* app/gui/offset-dialog.c
|
||
* app/gui/paths-dialog.c
|
||
* app/gui/toolbox.c
|
||
* app/paint/gimpairbrush.c
|
||
* app/paint/gimpclone.c
|
||
* app/paint/gimpconvolve.c
|
||
* app/paint/gimpdodgeburn.c
|
||
* app/paint/gimperaser.c
|
||
* app/paint/gimppaintbrush.c
|
||
* app/paint/gimppaintcore.c
|
||
* app/paint/gimppencil.c
|
||
* app/paint/gimpsmudge.c
|
||
* app/plug-in/plug-in.c
|
||
* app/tools/gimpbezierselecttool.c
|
||
* app/tools/gimpbycolorselecttool.c
|
||
* app/tools/gimpinktool.c
|
||
* app/tools/gimppainttool.c
|
||
* app/xcf/xcf-load.c
|
||
* app/xcf/xcf-save.c
|
||
* app/widgets/gimpdrawablepreview.c: changed accordingly.
|
||
|
||
* app/widgets/Makefile.am
|
||
* app/widgets/widgets-types.h
|
||
* app/widgets/gimpitemlistview.[ch]: new widget implementing most
|
||
of the stuff formerly done by GimpDrawableListView.
|
||
|
||
* app/widgets/gimpchannellistview.c
|
||
* app/widgets/gimpdrawablelistitem.c
|
||
* app/widgets/gimpdrawablelistview.[ch]
|
||
* app/widgets/gimplayerlistview.c: changed accordingly.
|
||
|
||
* app/widgets/gimpdnd.[ch]: added a vectors DND type.
|
||
|
||
* app/gui/menus.c
|
||
* app/gui/dialogs.c
|
||
* app/gui/dialogs-constructors.[ch]: added a vectors dialog and
|
||
a vectors item_factory.
|
||
|
||
* app/gui/Makefile.am
|
||
* app/gui/vectors-commands.[ch]: new files implementing the
|
||
callbacks for the new vectors dialog and item_factory.
|
||
|
||
* app/pdb/pdb_glue.h: some more ugly hacks to keep intermediate
|
||
perl code working...
|
||
|
||
* tools/pdbgen/pdb.pl: added a vectors type, use GimpItem for all
|
||
ID lookups.
|
||
|
||
* tools/pdbgen/pdb/channel.pdb
|
||
* tools/pdbgen/pdb/color.pdb
|
||
* tools/pdbgen/pdb/drawable.pdb
|
||
* tools/pdbgen/pdb/edit.pdb
|
||
* tools/pdbgen/pdb/image.pdb
|
||
* tools/pdbgen/pdb/layer.pdb
|
||
* tools/pdbgen/pdb/misc_tools.pdb
|
||
* tools/pdbgen/pdb/parasite.pdb
|
||
* tools/pdbgen/pdb/selection.pdb
|
||
* tools/pdbgen/pdb/selection_tools.pdb: misc changes according to
|
||
stuff above.
|
||
|
||
* app/pdb/channel_cmds.c
|
||
* app/pdb/color_cmds.c
|
||
* app/pdb/drawable_cmds.c
|
||
* app/pdb/edit_cmds.c
|
||
* app/pdb/floating_sel_cmds.c
|
||
* app/pdb/image_cmds.c
|
||
* app/pdb/layer_cmds.c
|
||
* app/pdb/misc_tools_cmds.c
|
||
* app/pdb/paint_tools_cmds.c
|
||
* app/pdb/parasite_cmds.c
|
||
* app/pdb/selection_cmds.c
|
||
* app/pdb/selection_tools_cmds.c
|
||
* app/pdb/text_tool_cmds.c
|
||
* app/pdb/transform_tools_cmds.c: regenerated.
|
||
|
||
2002-02-25 Simon Budig <simon@gimp.org>
|
||
|
||
* app/vectors/gimpbezierstroke.c
|
||
* app/tools/gimpvectortool.[ch]
|
||
* app/vectors/gimpstroke.[ch]
|
||
* app/vectors/gimpvectors.[ch]: Fixed various bugs, *including*
|
||
the nasty one from this morning (thanks Mitch).
|
||
|
||
2002-02-25 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/gui/tips-parser.[ch]: strip newlines, tabs and adjacent spaces
|
||
from string values. Added a naive locale match algorithm. We'll see
|
||
how well it works in real life...
|
||
|
||
* app/gui/tips-dialog.c: call gimp_tips_from_file() with current
|
||
locale. Let GTK+ do the line breaks, assorted cosmetic changes.
|
||
|
||
* tips/de.po: stripped newlines from translation.
|
||
|
||
2002-02-25 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/vectors/Makefile.am
|
||
* app/vectors/gimpvectors-preview.[ch]: new files creating dummy
|
||
vectors previews.
|
||
|
||
* app/vectors/gimpvectors.[ch]: added a "gimage" pointer.
|
||
|
||
* app/vectors/gimpbezierstroke.c
|
||
* app/vectors/gimpstroke.c: some object stuff fixes.
|
||
|
||
2002-02-25 Sven Neumann <sven@gimp.org>
|
||
|
||
* po-libgimp/Makefile.in.in
|
||
* po-plug-ins/Makefile.in.in
|
||
* po-script-fu/Makefile.in.in: updated, they used to refer to
|
||
po/po2tbl.sed which is no longer existant.
|
||
|
||
2002-02-25 Simon Budig <simon@gimp.org>
|
||
|
||
* app/vectors/gimpvectors.c
|
||
* app/vectors/gimpvectors.h: Changed to a container of
|
||
GimpStrokes. This will enable it to contain different
|
||
Stroke-types in one Vectors-Object (think Entry in path
|
||
dialog)
|
||
|
||
* app/vectors/gimpstroke.c
|
||
* app/vectors/gimpstroke.h
|
||
* app/vectors/gimpbezierstroke.c
|
||
* app/vectors/gimpbezierstroke.h: New Objects: A connected
|
||
component in a vector.
|
||
|
||
* app/vectors/gimpbezier.c
|
||
* app/vectors/gimpbezier.h: Removed, obsoleted by gimpstroke
|
||
and gimpbezierstroke.
|
||
|
||
* app/tools/gimpvectortool.c
|
||
* app/vectors/Makefile.am
|
||
* app/vectors/vectors-types.h
|
||
* app/vectors/gimpanchor.h: Changed accordingly.
|
||
|
||
There is a nasty bug I am yet unable to find in the tool.
|
||
Don't use it. For some reason a wrong function instead of
|
||
gimp_stroke_real_anchor_get_next gets called. I have *no*
|
||
idea, whats wrong here. I stared at the code for hours.
|
||
|
||
If somebody has an idea I'd appreciate a hint.
|
||
|
||
2002-02-25 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/gui/Makefile.am
|
||
* app/gui/tips-parser.[ch]: new files. A simple XML parser for the
|
||
gimp-tips.xml file.
|
||
|
||
* app/gui/tips-dialog.c: Removed old gimp_tips.txt parsing code and
|
||
switched to use gimp-tips.xml with the new parser. This needs some
|
||
more work ...
|
||
|
||
2002-02-24 Sven Neumann <sven@gimp.org>
|
||
|
||
* HACKING
|
||
* autogen.sh: fixed intltool version number, we need intltool 0.15.
|
||
|
||
* tips/Makefile.am
|
||
* tips/POTFILES.in
|
||
* tips/de.po
|
||
* tips/gimp-tips.xml.in: translation framework for new XML-ized tips
|
||
file. Thanks to Carol for converting the tips to XML.
|
||
|
||
2002-02-24 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/undo.[ch]
|
||
* app/undo_types.h: added undo stuff for GimpVectors.
|
||
|
||
* app/core/gimimage.c: use the new undo functions. Still unused
|
||
and untested.
|
||
|
||
2002-02-24 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/core/core-types.h: added parasite undo groups.
|
||
|
||
* app/undo.c: added assertions to make undo_push_group_start()
|
||
accept only "UndoType" values and undo_push() only "UndoImplType".
|
||
|
||
* app/core/gimpdrawable.c: use the new undo group and don't
|
||
include "undo_types.h".
|
||
|
||
2002-02-23 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/undo_types.h
|
||
* app/undo.[ch]: added new undo type IMAGE_TYPE_UNDO along with
|
||
undo_push_image_type(), removed undoing the base_type from
|
||
IMAGE_SIZE_UNDO. Hacked the undo_names a bit.
|
||
|
||
* app/core/gimpimage-convert.c: call undo_push_image_type().
|
||
|
||
This removes lots of unneeded invalidations on type/size undo.
|
||
|
||
2002-02-23 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/core/gimpdrawable.c: include undo_types.h to fix the build.
|
||
|
||
2002-02-23 Michael Natterer <mitch@gimp.org>
|
||
|
||
General undo cleanup:
|
||
|
||
* app/undo.[ch]: made all undo structs private. Changed all
|
||
undo_push_foo() functions to take useful parameters instead of
|
||
"gpointer foo_ptr" and create the undo structs internally.
|
||
Renamed lots of functions so they are more self-explanatory
|
||
(like undo_push_gimage_mod -> undo_push_image_size). Added some
|
||
undo functions (channel reordering is undoable now). Never pass
|
||
in a UndoType, as they are reseved for groups now (see below).
|
||
Lots of cleanup and stuff...
|
||
|
||
* app/undo_types.h: is a private header now which defines "enum
|
||
UndoImplType" which is reserved for actual undo operations.
|
||
All enum values are named "FOO_UNDO".
|
||
|
||
* app/core/core-types.h: added the "UndoType" enum here and don't
|
||
include "undo_types.h" any more. The UndoType values are all
|
||
named "FOO_UNDO_GROUP" and are reserved for undo groups.
|
||
|
||
The ID space of actual undo operations and undo groups
|
||
is now strictly disjunct.
|
||
|
||
* app/core/gimpchannel.h
|
||
* app/core/gimpimage.h
|
||
* app/core/gimplayer.h
|
||
* app/core/gimplayermask.h
|
||
* app/paint/gimppaintcore.h
|
||
* app/tools/gimptransformtool.h: removed undo struct definitions.
|
||
|
||
* app/undo_history.c
|
||
* app/path_transform.h
|
||
* app/core/gimpchannel.c
|
||
* app/core/gimpdrawable-transform.c
|
||
* app/core/gimpedit.c
|
||
* app/core/gimpimage-convert.c
|
||
* app/core/gimpimage-crop.c
|
||
* app/core/gimpimage-mask.c
|
||
* app/core/gimpimage-merge.c
|
||
* app/core/gimpimage-qmask.c
|
||
* app/core/gimpimage-resize.c
|
||
* app/core/gimpimage-scale.c
|
||
* app/core/gimpimage.c
|
||
* app/core/gimplayer-floating-sel.c
|
||
* app/core/gimplayer.c
|
||
* app/display/gimpdisplayshell-dnd.c
|
||
* app/gui/channels-commands.c
|
||
* app/gui/image-commands.c
|
||
* app/gui/layers-commands.c
|
||
* app/gui/paths-dialog.c
|
||
* app/paint/gimppaintcore.c
|
||
* app/tools/gimpbezierselecttool.c
|
||
* app/tools/gimpeditselectiontool.c
|
||
* app/tools/gimpmeasuretool.c
|
||
* app/tools/gimpmovetool.c
|
||
* app/tools/gimptexttool.c
|
||
* app/tools/gimptransformtool.c
|
||
* tools/pdbgen/pdb/guides.pdb
|
||
* tools/pdbgen/pdb/layer.pdb
|
||
* tools/pdbgen/pdb/undo.pdb: changed accordingly.
|
||
|
||
* app/pdb/guides_cmds.c
|
||
* app/pdb/layer_cmds.c
|
||
* app/pdb/undo_cmds.c: regenerated.
|
||
|
||
* app/core/gimpimage.[ch]: added infrastructure for holding a
|
||
GimpList of GimpVectors objects. The API is the same as for layers
|
||
and channels. Not used yet.
|
||
|
||
2002-02-22 Sven Neumann <sven@gimp.org>
|
||
|
||
* HACKING
|
||
* Makefile.am
|
||
* autogen.sh
|
||
* configure.in: depend on intltool for handling i18n stuff. This
|
||
means that you need intltool to compile The GIMP from CVS. Grab
|
||
it from ftp://ftp.gnome.org/pub/GNOME/stable/sources/intltool/
|
||
or out of gnomecvs module intltool. You shouldn't need it if you
|
||
compile The GIMP from tarball.
|
||
|
||
* data/misc/Makefile.am
|
||
* data/misc/gimp.desktop.in.in: merge translations into the desktop
|
||
file.
|
||
|
||
2002-02-22 Sven Neumann <sven@gimp.org>
|
||
|
||
* INSTALL
|
||
* configure.in: cleaned up --with-sendmail, --enable-threads and
|
||
--enable-mp options. Added --with-gnome-desktop=PATH option.
|
||
|
||
* data/misc/Makefile.am
|
||
* data/misc/gimp.desktop.in.in: install a GNOME desktop file for
|
||
The GIMP and create a link so GNOME-2.0 should be able to find it.
|
||
Use --with-gnome-desktop=PATH to override the link location.
|
||
|
||
* data/images/Makefile.am
|
||
* data/images/wilber-icon.png: new file to serve as application icon.
|
||
|
||
* plug-ins/script-fu/script-fu-scripts.c: register script-fu
|
||
SF_ADJUSTMENT parameters as GIMP_PDB_FLOAT (spotted by Masahiro
|
||
Sakai <zvm01052@nifty.ne.jp>).
|
||
|
||
2002-02-22 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/gimpprogress.[ch]: removed...
|
||
|
||
* app/display/Makefile.am
|
||
* app/display/gimpprogress.[ch]: ...and added here. Prefixed
|
||
everything with "gimp_".
|
||
|
||
* app/gui/image-commands.c
|
||
* app/plug-in/plug-in.c
|
||
* app/tools/gimpblendtool.c
|
||
* app/tools/gimptransformtool.c: changed accordingly.
|
||
|
||
2002-02-22 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/vectors/Makefile
|
||
* app/vectors/Makefile.in: removed.
|
||
|
||
2002-02-22 Simon Budig <simon@gimp.org>
|
||
|
||
* app/vectors/Makefile
|
||
* app/vectors/Makefile.am
|
||
* app/vectors/Makefile.in
|
||
* app/vectors/gimpanchor.h
|
||
* app/vectors/gimpbezier.c
|
||
* app/vectors/gimpbezier.h
|
||
* app/vectors/gimpvectors.c
|
||
* app/vectors/gimpvectors.h
|
||
* app/vectors/vectors-types.h: new files, the beginning
|
||
of a new vector infrastructure for gimp.
|
||
|
||
* configure.in
|
||
* app/Makefile.am
|
||
* app/core/core-types.h: changed accordingly.
|
||
|
||
* app/tools/Makefile.am
|
||
* app/tools/gimpvectortool.c
|
||
* app/tools/gimpvectortool.h
|
||
* app/tools/tools.c: New tool without practical use (yet),
|
||
using the new infrastructure.
|
||
|
||
to be continued...
|
||
|
||
2002-02-21 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/floating_sel.[ch]: removed...
|
||
|
||
* app/core/Makefile.am
|
||
* app/core/gimplayer-floating-sel.[ch]: ...and added here.
|
||
|
||
* app/undo.c
|
||
* app/core/gimpdrawable-transform.c
|
||
* app/core/gimpedit.c
|
||
* app/core/gimpimage-convert.c
|
||
* app/core/gimpimage-crop.c
|
||
* app/core/gimpimage-duplicate.c
|
||
* app/core/gimpimage-mask.c
|
||
* app/core/gimpimage-merge.c
|
||
* app/core/gimpimage-projection.c
|
||
* app/core/gimpimage-qmask.c
|
||
* app/core/gimpimage-resize.c
|
||
* app/core/gimpimage-scale.c
|
||
* app/core/gimpimage.c
|
||
* app/core/gimplayer.c
|
||
* app/gui/layers-commands.c
|
||
* app/tools/gimpeditselectiontool.c
|
||
* app/tools/gimpfreeselecttool.c
|
||
* app/tools/gimpmovetool.c
|
||
* app/tools/gimprectselecttool.c
|
||
* app/tools/gimptexttool.c
|
||
* app/tools/gimptransformtool.c
|
||
* app/xcf/xcf-load.c
|
||
* app/xcf/xcf-save.c
|
||
* plug-ins/tools/common/gimpbrushselecttool.c
|
||
* tools/pdbgen/pdb/floating_sel.pdb
|
||
* tools/pdbgen/pdb/layer.pdb: changed includes accordingly.
|
||
|
||
* app/pdb/floating_sel_cmds.c
|
||
* app/pdb/layer_cmds.c: regenerated.
|
||
|
||
2002-02-21 Michael Natterer <mitch@gimp.org>
|
||
|
||
Made the paint tool PDB wrappers work again (a bit at least...)
|
||
|
||
* app/Makefile.am: changed linking order. libtool sucks.
|
||
|
||
* app/undo.c: check if active_tool is a GimpPaintTool before
|
||
casting it.
|
||
|
||
* app/paint/Makefile.am
|
||
* app/paint/paint-types.h: added new files/types.
|
||
|
||
* app/paint/gimppaintoptions.[ch]: new files cut out of
|
||
tools/paint_options.h. Prefixed everything with "Gimp". There is
|
||
still GtkWidget* cruft hanging around in the structs...
|
||
|
||
* app/paint/gimppaintcore-stroke.[ch]: utility function
|
||
which paints a stroke array. Needed for the PDB wrappers.
|
||
|
||
* app/paint/gimpairbrush.[ch]
|
||
* app/paint/gimpclone.[ch]
|
||
* app/paint/gimpconvolve.[ch]
|
||
* app/paint/gimpdodgeburn.[ch]
|
||
* app/paint/gimperaser.[ch]
|
||
* app/paint/gimppaintbrush.c
|
||
* app/paint/gimppaintcore.[ch]
|
||
* app/paint/gimppencil.c
|
||
* app/paint/gimpsmudge.[ch]: added *_options_new() functions which
|
||
create correctly initialized options structures without widgets.
|
||
|
||
* app/tools/paint_options.[ch]: removed the options struct
|
||
definitions and value initialisations.
|
||
|
||
* app/tools/gimpairbrushtool.c
|
||
* app/tools/gimpblendtool.c
|
||
* app/tools/gimpbucketfilltool.c
|
||
* app/tools/gimpclonetool.c
|
||
* app/tools/gimpconvolvetool.c
|
||
* app/tools/gimpdodgeburntool.c
|
||
* app/tools/gimperasertool.c
|
||
* app/tools/gimpinktool.c
|
||
* app/tools/gimppaintbrushtool.c
|
||
* app/tools/gimppainttool.c
|
||
* app/tools/gimppenciltool.c
|
||
* app/tools/gimpsmudgetool.c: changed all paint_options functions
|
||
accordingly, s/PaintOptions/GimpPaintOptions/g etc., removed all
|
||
#if 0'ed non_gui functions.
|
||
|
||
* tools/pdbgen/pdb/paint_tools.pdb: use gimp_paint_core_stroke().
|
||
We currently leak all paint_options structs created by the PDB
|
||
wrappers, more stuff to come...
|
||
|
||
* app/pdb/paint_tools_cmds.c: regenerated.
|
||
|
||
2002-02-21 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/common/glasstile.c: code cleanup based on a patch from
|
||
Maurits Rijk <lpeek.mrijk@consunet.nl> (#72051).
|
||
|
||
2002-02-21 Michael Natterer <mitch@gimp.org>
|
||
|
||
Implemented #66921 (needs gimp-*-refresh in PDB)
|
||
|
||
* tools/pdbgen/pdb/gradients.pdb
|
||
* tools/pdbgen/pdb/patterns.pdb: added gimp_*_refresh() procedures.
|
||
|
||
* tools/pdbgen/pdb/palette.pdb: typo: s/patterns/palettes/
|
||
|
||
* app/pdb/gradients_cmds.c
|
||
* app/pdb/internal_procs.c
|
||
* app/pdb/palette_cmds.c
|
||
* app/pdb/patterns_cmds.c
|
||
* libgimp/gimpgradients_pdb.[ch]
|
||
* libgimp/gimppalette_pdb.c: regenerated.
|
||
|
||
2002-02-21 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/tools/gimpdrawtool.c: return the corrent value in
|
||
g_return_val_if_fail().
|
||
|
||
* app/tools/gimppainttool.c: removed some more painting logic...
|
||
|
||
* app/paint/gimppaintcore.[ch]: ...and added it here so the PDB
|
||
wrappers can use it too. Added "gboolean use_pressure" which needs
|
||
to be set by GimpPaintTool so we don't need access to GdkDevices.
|
||
|
||
2002-02-20 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/common/colortoalpha.c: optimization and cleanup based
|
||
on a patch from Maurits Rijk <lpeek.mrijk@consunet.nl> (#72044).
|
||
|
||
2002-02-20 Michael Natterer <mitch@gimp.org>
|
||
|
||
Implemented #7100 (initialize layer mask with a copy of the image)
|
||
|
||
* app/core/core-types.h: added ADD_COPY_MASK and ADD_INV_COPY_MASK
|
||
enum values.
|
||
|
||
* app/pdb/layer_cmds.c
|
||
* libgimp/gimpenums.h
|
||
* plug-ins/script-fu/script-fu-constants.c
|
||
* tools/pdbgen/enums.pl: regenerated.
|
||
|
||
* app/core/gimplayer.c (gimp_layer_create_mask): implement
|
||
the new layer mask add modes.
|
||
|
||
* app/gui/layers-commands.c (layers_add_mask_query): added radio
|
||
buttons for the new modes.
|
||
|
||
* app/paint-funcs/paint-funcs.c (flatten_region): this function
|
||
was never needed so nobody noticed that it never worked. Fixed now.
|
||
|
||
* app/undo.c
|
||
* app/core/gimplayermask.h
|
||
* app/core/gimpimage.c: the "mode" field of LayerMaskUndo is
|
||
obsolete since some earlier 1.3 layer mask change. Removed it.
|
||
(Makes mask undos work again)
|
||
|
||
2002-02-20 Michael Natterer <mitch@gimp.org>
|
||
|
||
Implemented #10125 ("quick" colour picker does not honour
|
||
"sample merged")
|
||
|
||
* app/tools/gimpcolorpickertool.[ch]: made definition of
|
||
GimpColorPickerToolOptions public.
|
||
|
||
* app/tools/gimppainttool.c: get the color picker's tool_options
|
||
and pick colors accordingly. Also draw a rectangle for
|
||
"sample_average".
|
||
|
||
2002-02-20 Michael Natterer <mitch@gimp.org>
|
||
|
||
Oops, yesterday's "fix" for #10466 made it even worse :)
|
||
|
||
* app/core/gimpdrawable-transform.c: need the 0.5 offset to
|
||
the pixel's center only for INTERPOLATION_NONE, as the LINEAR
|
||
and CUBIC algorithms already know about their errors.
|
||
|
||
* app/tools/gimpperspectivetool.c
|
||
* app/tools/gimpscaletool.c
|
||
* app/tools/gimpsheartool.c: some more s/gint/gdouble/ so the
|
||
tools can detect pointer motions again...
|
||
|
||
2002-02-19 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/common/vinvert.c: applied a patch with some optimizations
|
||
from Maurits Rijk <lpeek.mrijk@consunet.nl> (#71955).
|
||
|
||
2002-02-19 Michael Natterer <mitch@gimp.org>
|
||
|
||
Fixed #10466 (disappearing pixels when rotating by 90 deg):
|
||
|
||
* app/core/gimpdrawable-transform.c: when transforming backwards
|
||
to find the destination line's sub-pixel source coordinates, we
|
||
need to transform the pixels _center_, not it's upper left corner.
|
||
|
||
* app/core/gimpdrawable-transform-utils.[ch]: added
|
||
gimp_drawable_transform_matrix_rotate_center() which takes double
|
||
center coordinates instead of an integer pixel bounding box.
|
||
|
||
* app/tools/gimptransformtool.[ch]: use double instead of int for
|
||
all coordinates except the original bounding box.
|
||
|
||
* app/tools/gimprotatetool.c: use double whenever touching the
|
||
"center" value, so it can be sub-pixel positioned.
|
||
|
||
2002-02-19 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/pagecurl/pagecurl.c: code cleanup based on a patch from
|
||
Maurits Rijk <lpeek.mrijk@consunet.nl> (#71866).
|
||
|
||
2002-02-18 Sven Neumann <sven@gimp.org>
|
||
|
||
* libgimp/gimpintl.h: removed INIT_LOCALE() macro. Error out if
|
||
config.h wasn't included before.
|
||
|
||
* app/main.c: directly call the appropriate functions to set up I18N.
|
||
|
||
* libgimp/libgimp-intl.h: error out if config.h wasn't included.
|
||
|
||
* plug-ins/script-fu/script-fu-intl.h: set codeset to UTF-8.
|
||
|
||
2002-02-18 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/tools/tools-types.h
|
||
* app/tools/*.[ch]: chain up unconditionally in control(),
|
||
s/ToolAction/GimpToolAction/g, s/ToolState/GimpToolState/g.
|
||
|
||
* app/tools/gimpbezierselecttool.c
|
||
* app/tools/gimpinktool.c
|
||
* app/tools/gimppainttool.c: don't touch tool->paused_count
|
||
(setting it to 0 was a hack which should no longer be needed).
|
||
|
||
* app/tools/gimpdrawtool.c: check if the draw tool has actually
|
||
been started (draw_tool->gdisp != NULL) before calling it's
|
||
draw() function.
|
||
|
||
* app/tools/tool_manager.c: simplified tool_manager_control_active():
|
||
simply call gimp_tool_control() if gdisp == tool->gdisp.
|
||
|
||
* app/tools/gimptool.[ch]: gimp_tool_control(): do all the PAUSE,
|
||
RESUME and HALT voodoo here.
|
||
|
||
* app/tools/gimppainttool.c: implemented #9902 (Drawing straight
|
||
lines does not work between different views). It's an evil hack,
|
||
but clearly marked in the source.
|
||
|
||
2002-02-18 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/app_procs.c
|
||
* app/base/temp-buf.c
|
||
* app/core/gimpmodules.c
|
||
* app/plug-in/plug-in.c
|
||
* libgimpbase/gimpenv.c
|
||
* libgimpwidgets/gimpfileselection.c
|
||
* plug-ins/FractalExplorer/Dialogs.c
|
||
* plug-ins/FractalExplorer/FractalExplorer.c
|
||
* plug-ins/flame/flame.c
|
||
* plug-ins/gfig/gfig.c
|
||
* plug-ins/gflare/gflare.c
|
||
* plug-ins/gimpressionist/gimpressionist.[ch]: use g_file_test()
|
||
instead of stat() whereever possible. Improves code readability.
|
||
|
||
2002-02-18 Sven Neumann <sven@gimp.org>
|
||
|
||
* configure.in: require latest glib and gtk+ releases (1.3.14).
|
||
Bumped our version number to 1.3.4.
|
||
|
||
2002-02-18 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/core/gimpimagefile.c: implement thumbnail loading according
|
||
to the latest version of the Thumbnail Managing standard.
|
||
|
||
* app/widgets/gimpimagefilepreview.[ch]: draw a GTK_DIALOG_QUESTION
|
||
pixbuf when no preview is available. The implementation is a bit ugly
|
||
but we can improve this later when GimpPreview has been generalized
|
||
to accept pixbufs also.
|
||
|
||
* themes/Default/gtkrc: register the icons for GtkWidget instead of
|
||
GtkImage so they can be used from other widgets too.
|
||
|
||
* plug-ins/common/zealouscrop.c: merged fix for bug #71795 from
|
||
stable branch.
|
||
|
||
2002-02-17 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/common/aa.c: code cleanup based on a patch from
|
||
Maurits Rijk <lpeek.mrijk@consunet.nl>.
|
||
|
||
2001-02-17 Manish Singh <yosh@gimp.org>
|
||
|
||
* app/core/Makefile.am: add a -DGIMP_COMPILATION so cpercep can
|
||
optionally include glib.h. This needs to be done in the makefile.msc
|
||
too, but I'm unsure on the right way to do that.
|
||
|
||
* app/core/cpercep.c: guard #include <glib.h> in GIMP_COMPILATION.
|
||
cbrt() is a GNU extension, so define in terms of pow if we aren't
|
||
on glibc. Guard CLAMP against redefinition.
|
||
|
||
* plug-ins/gfig/gfig.c
|
||
* plug-ins/gflare/gflare.c
|
||
* plug-ins/gimpressionist/gimpressionist.c: make them build again
|
||
|
||
2001-02-17 Hans Breuer <hans@breuer.org>
|
||
|
||
* */*/makefile.msc */makefile.msc : from now on use
|
||
make.msc from $(TOP)/glib/build/win32; all occurences
|
||
of DIRENT removed and general update
|
||
|
||
* app/config/makefile.msc app/paint/makefile.msc
|
||
app/plug-in/makefile.msc themes/Default/makefile.msc :
|
||
new files
|
||
|
||
* app/base/base.c : ported to GDir usage
|
||
|
||
* app/config/gimpconfig-serialize.c :
|
||
app/config/gimpconfig-deserialize.c : HAVE_UNISTD_H
|
||
* app/config/gimpconfig.c :
|
||
app/config/gimprc.c : HAVE_UNISTD_H, use <io.h> for
|
||
open() prototype and merged pmode parameter
|
||
(_S_IREAD | _S_IWRITE)
|
||
|
||
* app/core/cpercep.c : msvc doesn't have cbrt(), provide
|
||
it via pow(). Also include <glib.h> for painless 'inline'
|
||
definition.
|
||
|
||
* app/core/gimpdatafiles.c : ported to GDir usage
|
||
|
||
* app/core/gimpimage-convert.c : work around a msvc compiler
|
||
limitation (can't convert from uint64 to double)
|
||
|
||
* app/file/file-open.c app/file/file-save.c :
|
||
access() -> _access() for G_OS_WIN32
|
||
|
||
* app/plug-in/plug-in.c : HAVE_UNISTD_H and <io.h>
|
||
|
||
* libgimpbase/gimpbase.def : updated externals
|
||
|
||
* libgimpbase/gimpenv.c : define WIN32_LEAN_AND_MEAN to
|
||
avoid clashes with incompatible DATADIR definitions
|
||
|
||
* libgimpcolor/gimpcolor.def : updated externals
|
||
|
||
* lingimpmath/gimpmath.def : updated externals
|
||
|
||
* libgimpwidgets/gimpwidgets.def : updated externals
|
||
|
||
* libgimpwidgets/libgimp-glue.c : adapt to const changes
|
||
of some prototypes
|
||
|
||
* plug-ins/makefile.msc : disabled gdyntext
|
||
|
||
* plug-ins/gap/iter_ALT/*/*.inc : GimpRunModeType -> GimpRunMode
|
||
|
||
* plug-ins/FractalExplorer/FractalExplorer.c :
|
||
* plug-ins/gap/gap_lib.c :
|
||
* plug-ins/gfig/gfig.c :
|
||
* plug-ins/gflare/gflare.c :
|
||
* plug-ins/gimpressionist/gimpressionist.c :
|
||
replaced DIRENT usage with GDir
|
||
|
||
* plug-ins/script-fu/script-fu-scripts.c : #include <windows.h>
|
||
to get the Sleep() prototype
|
||
|
||
2002-02-17 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/display/gimpdisplayshell.[ch]: made
|
||
gimp_display_shell_update_icon() public, removed the update_icon
|
||
signal handler and idle function.
|
||
|
||
* app/display/gimpdisplayshell-handlers.c: added the update_icon
|
||
stuff here so it get's properly dis- and reconnected.
|
||
|
||
2002-02-17 Michael Natterer <mitch@gimp.org>
|
||
|
||
Fixed #34633 (wheel mouse zooming leaves straigth-line helpline on
|
||
image) and maybe some other stuff caused by the misbehaviour
|
||
described below:
|
||
|
||
* app/tools/tools-types.h
|
||
* app/tools/tool_manager.c (tool_manager_control_active):
|
||
|
||
Removed the "PAUSED" ToolState.
|
||
|
||
The possible state transitions were INACTIVE <-> ACTIVE <-> PAUSED,
|
||
where the ACTIVE <-> PAUSED transition was done only in the
|
||
tool_manager, causing the tools's control() never to be called
|
||
when the tool was INACTIVE.
|
||
|
||
The GimpPaintTool however wants to draw on the display when it's
|
||
INACTIVE, and of course wants to be suspended/resumed correctly
|
||
while fiddling with display repainting/scaling/...
|
||
|
||
The PAUSED state was also redundant information, since
|
||
(tool->paused_count > 0) is the same information (only more
|
||
correct and independent of tool activity).
|
||
|
||
* app/display/gimpdisplayshell-scale.[ch]: suspend/resume the
|
||
active tool around _all_ changes to the display's "scale" and
|
||
"offset" fields. Added new function
|
||
gimp_display_shell_scale_by_values() which does that and is called
|
||
from all places which need to change these values.
|
||
|
||
* app/tools/gimpmagnifytool.c: changed accordingly.
|
||
|
||
Unrelated stuff:
|
||
|
||
* app/paint/gimpairbrush.c: added a #warning FIXME.
|
||
|
||
* app/tools/gimpdrawtool.c: made a warning more verbose.
|
||
|
||
* app/tools/gimppainttool.c: put one more drawable offset
|
||
calculation in { .. }, will make a utility function out of it...
|
||
|
||
2002-02-16 Manish Singh <yosh@gimp.org>
|
||
|
||
* app/gui/file-open-dialog.c: use new GtkFileSelection multiselect
|
||
API.
|
||
|
||
2002-02-15 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/display/gimpdisplayshell-handlers.c: added back the handler
|
||
which invalidates the display_title on dirty/clean. Removing it
|
||
was simply wrong.
|
||
|
||
* app/display/gimpdisplayshell-scale.c: don't call
|
||
gimp_display_shell_update_title() directly but set
|
||
shell->title_dirty to TRUE before calling gdisplays_flush().
|
||
|
||
* app/paint/gimppaintcore.[ch]: added gimp_paint_core_constrain()
|
||
which does the "snap to 15 degrees" stuff formerly done in
|
||
GimpPaintTool. Call gimp_brush_select_brush() in
|
||
gimp_paint_core_paint() if paint_state == MOTION, not in several
|
||
other places. Reordered functions, added some comments and
|
||
documentation.
|
||
|
||
* app/paint/gimpairbrush.c
|
||
* app/paint/gimpclone.c
|
||
* app/paint/gimpconvolve.c
|
||
* app/paint/gimpdodgeburn.c
|
||
* app/paint/gimperaser.c
|
||
* app/paint/gimppaintbrush.c
|
||
* app/paint/gimppencil.c
|
||
* app/paint/gimpsmudge.c:
|
||
s/CORE_CAN_HANDLE_CHANGING_BRUSH/CORE_HANDLES_CHANGING_BRUSH/g,
|
||
minor cleanup.
|
||
|
||
* app/pdb/pdb-types.h: include "paint/paint-types.h"
|
||
|
||
* app/tools/gimppainttool.[ch]: use gimp_paint_core_constrain(),
|
||
removed paint_tool->state because it's not needed any more,
|
||
lots of cleanup.
|
||
|
||
* tools/pdbgen/app.pl: another eeky special case for "paint/".
|
||
|
||
* tools/pdbgen/pdb/paint_tools.pdb: include stuff from "paint/",
|
||
not "tools/".
|
||
|
||
* app/pdb/paint_tools_cmds.c: regenerated.
|
||
|
||
2002-02-14 Michael Natterer <mitch@gimp.org>
|
||
|
||
Core/UI separation for the paint tools:
|
||
|
||
* configure.in
|
||
* app/Makefile.am
|
||
* app/paint/.cvsignore
|
||
* app/paint/Makefile.am: added new directory for the paint methods
|
||
without GUI and tools around them.
|
||
|
||
* app/paint/paint-types.h: typedefs for this module.
|
||
|
||
* app/paint/gimppaintcore-kernels.h
|
||
* app/paint/gimppaintcore.[ch]: the general paint logic taken
|
||
from GimpPaintTool.
|
||
|
||
* app/paint/gimpairbrush.[ch]
|
||
* app/paint/gimpclone.[ch]
|
||
* app/paint/gimpconvolve.[ch]
|
||
* app/paint/gimpdodgeburn.[ch]
|
||
* app/paint/gimperaser.[ch]
|
||
* app/paint/gimppaintbrush.[ch]
|
||
* app/paint/gimppencil.[ch]
|
||
* app/paint/gimpsmudge.[ch]: subclasses of GimpPaintCore,
|
||
implementing their own paint() methods. Needs more hacking
|
||
to get the GtkWidget pointers out of the options structs.
|
||
|
||
* app/tools/gimppainttool_kernels.h: removed.
|
||
|
||
* app/tools/tools-types.h: removed the paint tool enums.
|
||
|
||
* app/tools/gimpairbrushtool.[ch]
|
||
* app/tools/gimpclonetool.[ch]
|
||
* app/tools/gimpconvolvetool.[ch]
|
||
* app/tools/gimpdodgeburntool.[ch]
|
||
* app/tools/gimperasertool.[ch]
|
||
* app/tools/gimppaintbrushtool.[ch]
|
||
* app/tools/gimppainttool.[ch]
|
||
* app/tools/gimppenciltool.[ch]
|
||
* app/tools/gimpsmudgetool.[ch]: all paint tools are pure GUI
|
||
things now. PaintOptions and friends still need to be chopped up
|
||
though...
|
||
|
||
* app/undo.c: changed PaintUndo to GimpPaintCoreUndo, some minor
|
||
cleanup.
|
||
|
||
* tools/kernelgen.c: changed accordingly.
|
||
|
||
* tools/pdbgen/Makefile.am: scan paint/paint-types.h for enums.
|
||
|
||
* tools/pdbgen/pdb/paint_tools.pdb: hardcode "success = FALSE" for
|
||
all paint PDB wrappers. The non-gui stuff is completely broken.
|
||
More commits to come...
|
||
|
||
* app/pdb/paint_tools_cmds.c
|
||
* tools/pdbgen/enums.pl: regenerated.
|
||
|
||
2002-02-13 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/tools/gimppainttool.[ch]: moved all global variables into
|
||
the GimpPaintTool structure so they have a proper lifecycle and
|
||
it's easier to move them to the upcoming GimpPaintCore (??)
|
||
object.
|
||
|
||
* app/tools/gimppainttool_kernels.h
|
||
* tools/kernelgen.c: s/SUBSAMPLE/KERNEL_SUBSAMPLE/
|
||
|
||
2002-02-13 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gui/menus.c: moved "Merge Layers" and "Flatten Image" from
|
||
"Layer/" to "Image/", removed them from the "<Layers>" menu
|
||
entirely, moved "Merge Down" after "Anchor Layer" in both menus.
|
||
|
||
* app/gui/image-commands.[ch]: moved callbacks from here...
|
||
|
||
* app/gui/layers-commands.[ch]: ...to here.
|
||
|
||
* app/gui/layers-commands.[ch]
|
||
* app/display/gimpdisplayshell.c: changed menu_update functions
|
||
accordingly.
|
||
|
||
2002-02-12 Nathan Summers <rock@gimp.org>
|
||
|
||
* plug-ins/tools/.cvsignore
|
||
* plug-ins/tools/Makefile.am: new directory for tool plug-ins
|
||
|
||
* plug-ins/tools/common/.cvsignore
|
||
* plug-ins/tools/common/Makefile.am: unified directory for single-file
|
||
tool plug-ins, just like the "common" subdirectory for plug-ins
|
||
|
||
* plug-ins/tools/common/gimpbrushselecttool.[ch]: start of a
|
||
tool plug-in that uses the current brush to select from the image.
|
||
|
||
* configure.in
|
||
* plug-ins/Makefile.am: changed accordingly
|
||
|
||
|
||
2002-02-12 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gui/edit-commands.c: merged partial fix for #62592 from
|
||
stable branch.
|
||
|
||
2002-02-12 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gui/resize-dialog.c: merged fix for #63741 from stable
|
||
branch, minor cleanup.
|
||
|
||
2002-02-12 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/gui/preferences-dialog.c
|
||
* app/gui/resize-dialog.c: changed "Nearest Neighbor" interpolation
|
||
to "None".
|
||
|
||
2002-02-12 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/paint-funcs/paint-funcs.[ch]: scale_region_no_resample() no
|
||
longer needs to be public, as we can call
|
||
scale_region(src, dest, GIMP_INTERPOLATION_NONE).
|
||
|
||
2002-02-12 Nathan Summers <rock@gimp.org>
|
||
|
||
* app/plug-in/plug-in-rc.c: implement a new pluginrc flag,
|
||
"has-init", so that only plug-ins with init functions are
|
||
initialized.
|
||
|
||
* app/plug-in/plug-in.ch
|
||
* libgimp/gimp.c
|
||
* libgimpbase/gimpprotocol.ch: send a new gimpwire message,
|
||
GP_HAS_INIT during the query stage if the plug-in needs to be
|
||
initialized. Only invoke the plug-in in init mode if the plug-in
|
||
has an init function. Incremented the interface age.
|
||
|
||
(inspired by a patch by Tor Lillqvist available at
|
||
http://bugzilla.gnome.org/showattachment.cgi?attach_id=6214)
|
||
|
||
2002-02-12 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/base/base-enums.h: renamed GimpInterpolationType values to
|
||
something sane and unexported it from the PDB since it was never
|
||
used in any PDB calls.
|
||
|
||
* app/gimprc.c
|
||
* app/config/gimpcoreconfig.c
|
||
* app/core/gimpcoreconfig.c
|
||
* app/core/gimpdrawable-transform.c
|
||
* app/core/gimplayer.c
|
||
* app/gui/preferences-dialog.c
|
||
* app/gui/resize-dialog.c
|
||
* app/paint-funcs/paint-funcs.c
|
||
* app/pdb/transform_tools_cmds.c
|
||
* app/tools/transform_options.c
|
||
* tools/pdbgen/pdb/transform_tools.pdb: changed accordingly.
|
||
|
||
* libgimp/gimpenums.h
|
||
* plug-ins/script-fu/script-fu-constants.c
|
||
* tools/pdbgen/enums.pl: regenerated.
|
||
|
||
2002-02-11 Nathan Summers <rock@gimp.org>
|
||
|
||
* app/plug-in/plug-in.[ch]
|
||
* libgimp/gimp.c: added support for the init function in plug-ins
|
||
(fixes bug #66859).
|
||
|
||
2002-02-12 Michael Natterer <mitch@gimp.org>
|
||
|
||
Made the interpolation type configurable in the scale and
|
||
transform options dialogs (#69251):
|
||
|
||
* app/base/base-config.[ch]
|
||
* app/config/gimpbaseconfig.[ch]: removed interpolation_type here...
|
||
|
||
* app/core/gimpcoreconfig.[ch]
|
||
* app/config/gimpcoreconfig.[ch]: ...and added it here.
|
||
|
||
* app/gimprc.c
|
||
* app/gui/preferences-dialog.c: changed accordingly.
|
||
|
||
* app/paint-funcs/paint-funcs.[ch]: scale_region: take an
|
||
interpolation_type parameter.
|
||
|
||
* app/core/gimpchannel.[ch]
|
||
* app/core/gimpdrawable-transform.[ch]
|
||
* app/core/gimpimage-scale.[ch]
|
||
* app/core/gimplayer.[ch]: pass interpolation_type parameters to all
|
||
scale and transform functions.
|
||
|
||
* tools/pdbgen/pdb/image.pdb
|
||
* tools/pdbgen/pdb/layer.pdb
|
||
* tools/pdbgen/pdb/transform_tools.pdb: changed accordingly.
|
||
|
||
* app/gui/resize-dialog.[ch]
|
||
* app/tools/transform_options.[ch]: added an interpolation_type menu.
|
||
|
||
* app/gui/image-commands.c
|
||
* app/gui/layers-commands.c
|
||
* app/tools/gimptransformtool.c: changed accordingly.
|
||
|
||
* app/pdb/image_cmds.c
|
||
* app/pdb/layer_cmds.c
|
||
* app/pdb/transform_tools_cmds.c: regenerated.
|
||
|
||
2002-02-12 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/MapObject/mapobject_preview.c:
|
||
s/gdk_image_get/gdk_drawable_get_image/
|
||
|
||
* plug-ins/MapObject/mapobject_ui.c: fixed wrong refcounting of
|
||
GtkImage.
|
||
|
||
2002-02-11 Sven Neumann <sven@gimp.org>
|
||
|
||
* libgimpmath/Makefile.am
|
||
* libgimpmath/gimpmath.h
|
||
* libgimpmath/gimpmd5.[ch]
|
||
* libgimpmath/test-md5.c: added MD5 digest algorithm (based on code
|
||
taken from evolution). We will need this to implement the thumbnail
|
||
standard (http://triq.net/~pearl/thumb-spec.php).
|
||
|
||
2002-02-11 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimprc.[ch]
|
||
* app/config/gimpdisplayconfig.[ch]
|
||
* app/gui/preferences-dialog.c: made the string which appears in
|
||
the display's statusbar configurable separately from the title
|
||
string. They still both have the same default value.
|
||
|
||
* app/display/gimpdisplayshell.c: changed accordingly.
|
||
|
||
Also added lots of new % expansions which implement all stuff
|
||
mentioned in #5843. Didn't apply the original patch because it is
|
||
overly complicated (the same can be acheived using %D and %C).
|
||
Instead, applied a changed version of gimp-quinet-000618-0.patch.
|
||
Added %Cx, which expands to 'x' if the image is clean.
|
||
|
||
* docs/gimprc-1.3.5.in
|
||
* etc/gimprc.in
|
||
* etc/gimprc.win32: added documentation for the new stuff.
|
||
|
||
2002-02-11 Nathan Summers <rock@gimp.org>
|
||
|
||
* gui/preferences-dialog.c: s/directory/folder/ and other
|
||
bex-approved proofreads
|
||
|
||
2002-02-11 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/common/jpeg.c: merged fix for bug #69127 from stable branch.
|
||
|
||
2002-02-11 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/tools/gimpbucketfilltool.c
|
||
* app/tools/selection_options.c: added missing tooltips, enabled
|
||
"reset" for the new select/fill transparent toggles.
|
||
|
||
2002-02-11 Michael Natterer <mitch@gimp.org>
|
||
|
||
* etc/gimprc.in
|
||
* etc/gimprc.win32: document the new %m image-title-format expansion.
|
||
|
||
2002-02-11 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/plug-in/plug-in.c: small hack that strips the ellipses
|
||
from the "Repeat" and "Re-Show" menu entries.
|
||
|
||
* plug-ins/mosaic/mosaic.c: register under "Filters/Distorts", not
|
||
"Filters/Render" because this plug-in changes the image and
|
||
doesn't render something from scratch.
|
||
|
||
2002-02-11 Sven Neumann <sven@gimp.org>
|
||
|
||
* TODO.xml: updated.
|
||
|
||
2002-02-10 Sven Neumann <sven@gimp.org>
|
||
|
||
* Made 1.3.3 release.
|
||
|
||
2002-02-10 Sven Neumann <sven@gimp.org>
|
||
|
||
* NEWS: updated.
|
||
|
||
* app/batch.c
|
||
* app/general.c
|
||
* app/core/gimpbrushgenerated.c
|
||
* app/core/gimpbrushpipe.c
|
||
* app/core/gimpdata.c
|
||
* app/file/file-open.c
|
||
* app/file/file-save.c
|
||
* app/file/file-utils.c: don't include ctype.h, use g_ascii_*
|
||
functions from GLib instead.
|
||
|
||
* app/gui/file-open-dialog.c: disabled multiple selection in the
|
||
file open dialog until this is fixed in GTK+.
|
||
|
||
2002-02-10 Adam D. Moss <adam@gimp.org>
|
||
|
||
* app/core/gimpimage-convert.[ch]:
|
||
RGB->Indexed quantizer version 3.0 (the rest of the commit started
|
||
a year ago -- whoops). Divide colours within CIE L*a*b* space using
|
||
CPercep module (cpercep.[ch]), colour-match and dither likewise,
|
||
change the underlying box selection criteria and division point
|
||
logic, bump luminance precision upwards, etc. etc.
|
||
|
||
* app/core/cpercep.[ch] (new files): utility module used by
|
||
quantizer for quantifying perceptual colour distances
|
||
|
||
* app/core/gimpimage-convert-data.h (new file): move the big
|
||
static data arrays out of gimpimage-convert.c
|
||
|
||
* app/core/gimpimage-convert-fsdither.h: static-ify data
|
||
|
||
* app/core/Makefile.am: add cpercep.[ch] and gimpimage-convert-data.h
|
||
|
||
2002-02-10 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/undo.c: removed #if 0'ed old display update hackery. Don't
|
||
flush the displays here at all and include nothing from
|
||
"display/".
|
||
|
||
* app/undo_history.c
|
||
* app/gui/edit-commands.c: call gdisplays_flush() if undo_pop() or
|
||
undo_redo() return TRUE.
|
||
|
||
* app/core/gimpimage-contiguous-region.[ch]: allow a contiguous
|
||
transparent region to be selected/filled (#71058).
|
||
|
||
* app/core/gimpdrawable-bucket-fill.[ch]
|
||
* app/core/gimpimage-mask-select.[ch]: take a boolean
|
||
fill_transparent/select_transparent parameter and pass it to the
|
||
contiguous region funcion.
|
||
|
||
* app/display/gimpdisplayshell-dnd.c: pass
|
||
fill_transparent == FALSE to bucket_fill_full because we fill the
|
||
whole drawable anyway here.
|
||
|
||
* app/tools/gimpbucketfilltool.c
|
||
* app/tools/gimpbycolorselecttool.c
|
||
* app/tools/gimpfuzzyselecttool.c
|
||
* app/tools/selection_options.[ch]: added toggle buttons to the
|
||
tool options and pass the value to the fill and select core
|
||
functions.
|
||
|
||
* tools/pdbgen/pdb/misc_tools.pdb
|
||
* tools/pdbgen/pdb/selection_tools.pdb: hardcode
|
||
"select_transparent" to FALSE to get the old behaviour. Should
|
||
export the new feature to plug-ins however.
|
||
|
||
* app/pdb/misc_tools_cmds.c
|
||
* app/pdb/selection_tools_cmds.c: regenerated.
|
||
|
||
2002-02-09 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/tools/gimptoolmodule.[ch]
|
||
* app/tools/tools-types.h
|
||
* app/tools/tools.c: code cleanup, no real changes.
|
||
|
||
2002-02-09 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/common/gradmap.c: merged fix for bug #70964 from stable
|
||
branch.
|
||
|
||
2002-02-08 Nathan Summers <rock@gimp.org>
|
||
|
||
* app/tools/gimptoolmodule.[ch]: split registering classes and
|
||
registering tools into separate functions. Makes tool plug-ins
|
||
actually work!
|
||
|
||
* app/tools/tools.c: replaced extremely ugly temporary hack for
|
||
loading tool modules with ugly temporary hack for loading tool
|
||
modules.
|
||
|
||
2002-02-08 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/gui/tips-dialog.c
|
||
* app/gui/user-install-dialog.c
|
||
* libgimpwidgets/gimpfileselection.c
|
||
* plug-ins/FractalExplorer/Dialogs.c
|
||
* plug-ins/FractalExplorer/FractalExplorer.c
|
||
* plug-ins/gfig/gfig.c
|
||
* plug-ins/gflare/gflare.c
|
||
* plug-ins/gimpressionist/presets.c
|
||
* plug-ins/script-fu/script-fu-scripts.c: use the term Folder instead
|
||
of Directory (bug #56194).
|
||
|
||
* etc/gimprc.in
|
||
* etc/gimprc.win32: added global palettes folder to the palettes
|
||
search path.
|
||
|
||
* data/misc/user_install: don't copy palettes into users ~/.gimp-1.3.
|
||
|
||
2002-02-08 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/config/gimprc.[ch]: added gimp_rc_duplicate() and started to
|
||
add inline documentation.
|
||
|
||
* app/config/test-config.c: test the new functionality.
|
||
|
||
2002-02-08 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/config/gimpbaseconfig.c
|
||
* app/config/gimpcoreconfig.c
|
||
* app/config/gimpdisplayconfig.c
|
||
* app/config/gimpguiconfig.c: added missing finalizers.
|
||
|
||
2002-02-07 Nathan Summers <rock@gimp.org>
|
||
|
||
* app/tools/gimptoolmodule.[ch]: New class that uses GTypeModule to
|
||
dynamically load tool plugins. Does not quite work yet, but builds
|
||
correctly.
|
||
|
||
* app/tools/tools.c: added some code to test the GimpToolModule code.
|
||
|
||
* app/tools/Makefile.am: added gimptoolmodule to the build.
|
||
|
||
2002-02-07 Nathan Summers <rock@gimp.org>
|
||
|
||
* app/gimprc.c
|
||
* app/config/gimpcoreconfig.[ch]
|
||
* app/core/gimpcoreconfig.[ch]
|
||
* app/gui/preferences-dialog.[ch]
|
||
* etc/gimprc.in: add a preferences option for tool plug-ins,
|
||
in anticipation of future work on them. Tool plug-ins should be
|
||
in a separate directory so that the plug-in codecan distinguish
|
||
them.
|
||
|
||
2002-02-07 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/core/gimpimage-new.[ch]: renamed the image size utility
|
||
functions from foo_size_bar() to foo_memsize_bar(), use "gsize"
|
||
instead of "gdouble". Also take the selection mask into account
|
||
for the initial image size.
|
||
|
||
* app/display/gimpdisplayshell.c
|
||
* app/gui/file-new-dialog.c: changed accordingly.
|
||
|
||
* app/display/gimpdisplayshell-handlers.c: connect to "undo_event",
|
||
not "dirty" and "clean" to dirty the image title.
|
||
|
||
* app/tools/gimpmovetool.c: factored common code out to
|
||
gimp_move_tool_start_guide(), also set a useful cursor there.
|
||
|
||
2002-02-07 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/widgets/gimpwidgets-utils.c (gimp_message_box): changed the
|
||
message dialog icon to WARNING since we mostly use this for
|
||
warnings. We should change the API so that gimp_message knows
|
||
about the severity of the message it displays.
|
||
|
||
* themes/Default/images/stock-wilber-16x16.png
|
||
* themes/Default/images/stock-wilber-32x32.png
|
||
* themes/Default/images/stock-wilber-48x48.png
|
||
* themes/Default/images/stock-wilber-64x64.png: slightly better icons.
|
||
|
||
* themes/Default/Makefile.am
|
||
* themes/Default/images/Makefile.am
|
||
* themes/Default/images/stock-wilber-eek.png: added a new eek wilber
|
||
based on suggestions made in bug-report #65194. Actually I'd like it
|
||
be more eeeky, so feel free to submit a better one.
|
||
|
||
* libgimpwidgets/gimpstock.[ch]: register the new stock icon.
|
||
|
||
* app/gui/gui.c (gui_really_quit_dialog): use STOCK_WILBER_EEK.
|
||
|
||
2002-02-07 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/gui/file-new-dialog.c
|
||
* app/gui/resize-dialog.c
|
||
* app/tools/gimpbrightnesscontrasttool.c
|
||
* app/tools/gimpcolorbalancetool.c
|
||
* app/tools/gimpcroptool.c
|
||
* app/tools/gimphuesaturationtool.c
|
||
* app/tools/gimpposterizetool.c
|
||
* app/tools/gimpthresholdtool.c
|
||
* app/tools/gimptransformtool.c: moved Cancel button to the left.
|
||
|
||
* data/images/Makefile.am
|
||
* data/images/tips_wilber.png: removed ...
|
||
* data/images/wilber-tips.png: ... and readded under a new name.
|
||
|
||
* app/gui/tips-dialog.c: changed accordingly.
|
||
|
||
* data/images/wilber-wizard.png: new wilber for the user installation
|
||
dialog.
|
||
|
||
* app/gui/user-install-dialog.c: use the new wilber icon. We still
|
||
need a good new eeek wilber.
|
||
|
||
* themes/Default/gtkrc: don't change the default font size.
|
||
|
||
2002-02-06 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/core/gimpobject.c: made the gimp_object_get_memsize()
|
||
debugging output configurable by a global "gimp_debug_memsize"
|
||
boolean.
|
||
|
||
* app/display/gimpdisplay.c: removed duplicated prototype.
|
||
|
||
* app/display/gimpdisplayshell.[ch]: renamed the various cursor
|
||
functions to be more consistent and shorter. Compress window title
|
||
updates by adding a "gboolean title_dirty" and updating the title
|
||
in gimp_display_shell_flush(). Added "%m" (memory size) to the
|
||
possible title string substitutions.
|
||
|
||
* app/display/gimpdisplay-foreach.c
|
||
* app/display/gimpdisplayshell-handlers.c
|
||
* app/tools/gimpfuzzyselecttool.c
|
||
* app/tools/gimptool.c: changed accordingly.
|
||
|
||
* app/display/gimpdisplayshell-callbacks.c: forgot to grab the
|
||
pointer when dragging guides from the rulers. Coincidentially,
|
||
this also fixes the buggy offset between guide and mouse
|
||
pointer...
|
||
Cleaned up the main tool event callback a bit more.
|
||
|
||
* app/widgets/gimppreview.c
|
||
* app/gui/commands.c: set the new global "gimp_debug_memsize"
|
||
toggle to TRUE while calling gimp_object_get_memsize().
|
||
|
||
* app/gui/preferences-dialog.c: added a image title example
|
||
containing the new "%m" feature.
|
||
|
||
* docs/gimprc-1.3.5.in: document "%m" in the manpage.
|
||
|
||
* app/tools/gimpbezierselecttool.c: reordered some statements.
|
||
|
||
* app/tools/gimpdrawtool.[ch]: store the GimpDisplay passed to
|
||
gimp_draw_tool_start() in draw_tool->gdisp and use it for
|
||
coordinate transfomration. This way we can draw on a display
|
||
which is not tool->gdisp.
|
||
|
||
* app/tools/gimppainttool.c: changed the gimp_draw_tool_foo()
|
||
calls needed to make the straight_line preview work in a way
|
||
that does not interfere with paint_tool subclasses which want
|
||
to do their own drawing (like the clone tool).
|
||
|
||
Also changed the paint_tools PRETRACE_PAINT and POSTTRACE_PAINT
|
||
flags usage in a way that subclasses can use them without major
|
||
hackery: don't simply wrap gimp_display_flush_now() with
|
||
PRETRACE/POSTTRACE calls, but wrap the actual painting calls, so
|
||
subclasses are able to do useful things with paint_tool->*_coords.
|
||
|
||
* app/tools/gimpclonetool.c: removed poking around in draw_tool
|
||
internals and simply suspend()/resume() it in
|
||
PRETRACE_PAINT/POSTTRACE_PAINT to get the clone_src indicator
|
||
drawn correctly.
|
||
|
||
2002-02-05 Michael Natterer <mitch@gimp.org>
|
||
|
||
* plug-ins/FractalExplorer/Dialogs.c
|
||
* plug-ins/FractalExplorer/FractalExplorer.c
|
||
* plug-ins/Lighting/lighting_ui.c
|
||
* plug-ins/MapObject/mapobject_ui.c
|
||
* plug-ins/flame/flame.c
|
||
* plug-ins/fp/fp_gtk.c
|
||
* plug-ins/gfig/gfig.c
|
||
* plug-ins/gflare/gflare.c
|
||
* plug-ins/gfli/gfli.c
|
||
* plug-ins/ifscompose/ifscompose.c
|
||
* plug-ins/maze/maze_face.c
|
||
* plug-ins/mosaic/mosaic.c
|
||
* plug-ins/rcm/rcm_dialog.c
|
||
* plug-ins/sel2path/sel2path.c: reordered action_area buttons.
|
||
|
||
* themes/Default/gtkrc: namespace cleanup.
|
||
|
||
2002-02-05 Michael Natterer <mitch@gimp.org>
|
||
|
||
Removed pointer grabbing from all tools:
|
||
|
||
* app/tools/gimptool.[ch]: added "gboolean perfectmouse" which
|
||
defaults to FALSE but can be set to TRUE in a tool's instance_init
|
||
function.
|
||
|
||
* app/display/gimpdisplayshell-callbacks.c: look at
|
||
active_tool->perfectmouse and gimprc.perfectmouse and do the
|
||
pointer grab/ungrab here. The pointer is now grabbed right before
|
||
dispatching the button_press to the tool and ungrabbed after
|
||
the tool's button_release has returned. It is also grabbed
|
||
*always*, not only if tool->state got ACTIVE by button_press,
|
||
which makes it all much simpler...
|
||
|
||
* app/tools/gimpbezierselecttool.c
|
||
* app/tools/gimpblendtool.c
|
||
* app/tools/gimpbucketfilltool.c
|
||
* app/tools/gimpbycolorselecttool.c
|
||
* app/tools/gimpclonetool.c
|
||
* app/tools/gimpcolorpickertool.c
|
||
* app/tools/gimpcroptool.c
|
||
* app/tools/gimpeditselectiontool.c
|
||
* app/tools/gimpfliptool.c
|
||
* app/tools/gimpfreeselecttool.c
|
||
* app/tools/gimpfuzzyselecttool.c
|
||
* app/tools/gimpinktool.c
|
||
* app/tools/gimpiscissorstool.c
|
||
* app/tools/gimpmagnifytool.c
|
||
* app/tools/gimpmeasuretool.c
|
||
* app/tools/gimpmovetool.c
|
||
* app/tools/gimppainttool.c
|
||
* app/tools/gimppathtool.c
|
||
* app/tools/gimprectselecttool.c
|
||
* app/tools/gimpselectiontool.c
|
||
* app/tools/gimptexttool.c
|
||
* app/tools/gimptransformtool.c: removed
|
||
gdk_pointer_grab()/ungrab() calls all over the place. Also removed
|
||
inclusion of "display/gimpdisplayshell.h" from most of them.
|
||
|
||
2002-02-04 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/tools/gimptool.[ch]: added fields for both the tool's
|
||
toggled and untoggled GdkCursorType, GimpToolCursorType and
|
||
GimpCursorModifier. Added a default implementation of
|
||
gimp_tool_cursor_update() which uses the new fields. Added
|
||
gimp_tool_set_cursor() as simple wrapper around the resp.
|
||
GimpDisplayShell functions so tools don't need to know them.
|
||
|
||
Tool implementations can either set the new fields in their
|
||
cursor_update() function and chain up or call the new wrapper.
|
||
|
||
* app/tools/gimpbezierselecttool.c
|
||
* app/tools/gimpblendtool.c
|
||
* app/tools/gimpbucketfilltool.c
|
||
* app/tools/gimpbycolorselecttool.c
|
||
* app/tools/gimpclonetool.c
|
||
* app/tools/gimpcolorpickertool.c
|
||
* app/tools/gimpconvolvetool.c
|
||
* app/tools/gimpcroptool.c
|
||
* app/tools/gimpdodgeburntool.c
|
||
* app/tools/gimperasertool.c
|
||
* app/tools/gimpfliptool.c
|
||
* app/tools/gimpinktool.c
|
||
* app/tools/gimpiscissorstool.c
|
||
* app/tools/gimpmagnifytool.c
|
||
* app/tools/gimpmeasuretool.c
|
||
* app/tools/gimpmovetool.c
|
||
* app/tools/gimppainttool.[ch]
|
||
* app/tools/gimppathtool.c
|
||
* app/tools/gimpselectiontool.c
|
||
* app/tools/gimpsmudgetool.c
|
||
* app/tools/gimptexttool.c
|
||
* app/tools/gimptransformtool.c: changed accordingly:
|
||
|
||
- set default values in the tools' instance_init functions.
|
||
- changed the cursor_update() stuff.
|
||
- removed inclusion of subclasses in gimppainttool.c
|
||
- the cursor_update() functions are better than before but still evil.
|
||
- i probably broke some of them...
|
||
|
||
* app/tools/gimptool.c: fixed NULL pointer dereference by using
|
||
the tools's class name as identifier for gimp_statusbar_foo()
|
||
instead of accessing tool->tool_info (which may be NULL)
|
||
(spotted by David Odin).
|
||
|
||
2002-02-03 Manish Singh <yosh@gimp.org>
|
||
|
||
* libgimpwidgets/gimpwidgets.c: ref and sink the adjustment we use
|
||
for the mem_size_entry.
|
||
|
||
2002-02-03 Manish Singh <yosh@gimp.org>
|
||
|
||
* docs/Makefile.am: don't install gimp-remote manpage yet
|
||
|
||
2002-02-03 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/core/gimpimage-convert.c: merged fix from stable branch (#70344).
|
||
|
||
* plug-ins/common/smooth_palette.c: merged fix from stable branch
|
||
(#70333).
|
||
|
||
2002-02-03 Manish Singh <yosh@gimp.org>
|
||
|
||
* configure.in
|
||
* tools/Makefile.am: commit everything this time (see my previous
|
||
log entry).
|
||
|
||
2002-02-03 Sven Neumann <sven@gimp.org>
|
||
|
||
* configure.in
|
||
* tools/Makefile.am: fixed the build by trying to do the changes
|
||
Yosh didn't commit.
|
||
|
||
2002-02-03 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/script-fu/scripts/frosty-logo.scm: don't redefine min.
|
||
Thanks to Jeff Trefftzs <trefftzs@tcsn.net> for spotting this.
|
||
|
||
2002-02-03 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/display/Makefile.am
|
||
* app/display/display-types.h
|
||
* app/display/gimpstatusbar.[ch]: new widget derived from
|
||
GtkStatusbar. Contains the coordinates display, a progress bar
|
||
which is also used for status message display and a cancel button.
|
||
Added a simplified API for pushing/popping messages which takes a
|
||
string as context_id and does the conversion to guint internally
|
||
on each call.
|
||
|
||
* app/display/gimpdisplayshell.[ch]: removed the status bar code.
|
||
|
||
* app/display/gimpdisplayshell-callbacks.c
|
||
* app/display/gimpdisplayshell-handlers.c
|
||
* app/display/gimpdisplayshell-scale.c
|
||
* app/gui/view-commands.c
|
||
* app/gimpprogress.c: changed accordingly.
|
||
|
||
Removed knowledge about GimpDisplayShell from tools:
|
||
|
||
* app/tools/gimptool.[ch]: added gimp_tool_push_status() and
|
||
gimp_tool_pop_status() so tools don't need to fiddle with
|
||
display details.
|
||
|
||
* app/tools/gimpdrawtool.[ch]: pass a GimpDisplay instead of
|
||
a GdkWindow to gimp_draw_tool_start() (the window passed was
|
||
always gdisp->shell->canvas->window).
|
||
|
||
* app/tools/gimpbezierselecttool.c
|
||
* app/tools/gimpblendtool.[ch]
|
||
* app/tools/gimpclonetool.c
|
||
* app/tools/gimpcolorpickertool.c
|
||
* app/tools/gimpcroptool.[ch]
|
||
* app/tools/gimpeditselectiontool.c
|
||
* app/tools/gimpfreeselecttool.c
|
||
* app/tools/gimpfuzzyselecttool.c
|
||
* app/tools/gimpiscissorstool.c
|
||
* app/tools/gimpmagnifytool.c
|
||
* app/tools/gimpmeasuretool.[ch]
|
||
* app/tools/gimpmovetool.c
|
||
* app/tools/gimppainttool.[ch]
|
||
* app/tools/gimppathtool.c
|
||
* app/tools/gimprectselecttool.[ch]
|
||
* app/tools/gimptransformtool.c: changed accordingly:
|
||
|
||
- pass GimpDisplay to gimp_draw_tool_start().
|
||
- use GimpTool's new status push/pop functions.
|
||
- removed the statusbar context_id from all tool structs.
|
||
|
||
* app/gui/dialogs-constructors.[ch]: a bit cleanup in preparation
|
||
of dockable editor dialogs.
|
||
|
||
2002-02-02 Manish Singh <yosh@gimp.org>
|
||
|
||
* configure.in
|
||
* Makefile.am
|
||
* app/Makefile.am
|
||
* docs/Makefile.am
|
||
* plug-ins/print/Makefile.am
|
||
* tools/Makefile.am
|
||
* (the various manpages): versioned the binaries and manpages.
|
||
Added an --enable-default-binary switch to configure to make
|
||
symlinks for unversioned things (defaults to no for 1.3). The
|
||
perl stuff isn't touched, but that's disabled in the build here
|
||
anyway.
|
||
|
||
2002-02-01 Manish Singh <yosh@gimp.org>
|
||
|
||
* libgimpwidgets/gimppatheditor.[ch]: treeviewized and undeprecated
|
||
|
||
* plug-ins/webbrowser/webbrowser.c: set_size_request takes a 0 size
|
||
and makes it 1 instead of -1 like set_usize did, so pass -1
|
||
|
||
2002-01-31 Simon Budig <simon@gimp.org>
|
||
|
||
* plug-ins/rcm/rcm.c: register as "plug_in_rotate_colormap"
|
||
instead of "plug-in-rotate-colormap". This fixes the usage
|
||
in gimp-python (despite the fact that there is no PDB
|
||
interface)
|
||
|
||
2002-01-31 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/core/gimp.c
|
||
* app/core/gimpdocuments.c
|
||
* app/core/gimpmodules.c
|
||
* app/core/gimppalette.c: fixed some get_memsize()
|
||
implementations, give useful names to some global objects so the
|
||
new mem profile of "the_gimp" looks nicer.
|
||
|
||
* app/gui/menus.c
|
||
* app/gui/commands.[ch]: added a "Debug" menu to the toolbox,
|
||
offer a mem profile of the global "Gimp" instance.
|
||
|
||
2002-01-31 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/core/gimplayer.[ch]: removed gimp_layer_has_alpha(), use
|
||
gimp_drawable_has_alpha() instead.
|
||
|
||
* app/core/gimpimage-convert.c
|
||
* app/core/gimpimage-merge.c
|
||
* app/core/gimpimage-projection.c
|
||
* app/display/gimpdisplayshell.c
|
||
* app/gui/layers-commands.c: changed accordingly.
|
||
|
||
* app/core/gimpimage.[ch]: added gimp_image_has_alphe(), made some
|
||
variable names more verbose and use enum types instead of "gint"
|
||
in functions calling initial_region() and combine_regions().
|
||
|
||
* app/widgets/gimpchannellistview.c: show an alpha channel preview
|
||
only if the image has alpha.
|
||
|
||
* app/widgets/gimppreview.c: reordered functions,
|
||
gimp_preview_render_and_flush(): fixed channel preview rendering,
|
||
calculate the component byte offsets before entering the render
|
||
loop instead of duplicating the render code for the gray/alpha
|
||
case.
|
||
|
||
2002-01-31 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/widgets/gimpfontselection-dialog.c: use GtkTreeViews instead of
|
||
deprecated GtkCLists.
|
||
|
||
* app/widgets/gimpfontselection.c: use a proper size for the eeky hack.
|
||
|
||
2002-01-31 Manish Singh <yosh@gimp.org>
|
||
|
||
* app/gui/file-open-dialog.c: fixed up so it works with the patch
|
||
I posted to gtk-devel-list. Real fix pending discussion there.
|
||
|
||
2002-01-30 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/gui/about-dialog.c: GDK_RGB_DITHER_NORMAL should be good enough.
|
||
|
||
* app/gui/preferences-dialog.c: undef GTK_DISABLE_DEPRECATED for
|
||
GtkListItem.
|
||
|
||
* app/widgets/gimpcomponentlistitem.c: don't use GtkPreview methods
|
||
on a GimpPreview. The component views are still broken but at least
|
||
the warnings are gone.
|
||
|
||
* app/widgets/gimpfontselection.c: fixed warnings by hardcoding a
|
||
font size when validating a font name :-(
|
||
|
||
* app/widgets/gimppreview.c: set allocation to desired size.
|
||
|
||
* libgimpwidgets/gimpcolorarea.c: flipped so it looks like before
|
||
the port to GtkDrawingArea. Use GDK_RGB_DITHER_MAX to render.
|
||
|
||
2002-01-30 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/widgets/gimppreview.[ch]: derive from GtkDrawingArea
|
||
instead of deprecated GtkPreview.
|
||
|
||
* app/gui/buffers-commands.c
|
||
* app/gui/device-status-dialog.c
|
||
* app/gui/dialogs-constructors.c
|
||
* app/gui/indicator-area.c
|
||
* app/gui/info-window.c
|
||
* app/gui/palette-import-dialog.c
|
||
* app/gui/palettes-commands.c
|
||
* app/gui/test-commands.c
|
||
* app/gui/tool-options-dialog.c
|
||
* app/gui/toolbox.c
|
||
* app/widgets/gimpdnd.c
|
||
* app/widgets/gimpimagedock.c
|
||
* app/widgets/gimpmenuitem.c: removed #undef GTK_DISABLE_DEPRECATED.
|
||
|
||
2002-01-30 Michael Natterer <mitch@gimp.org>
|
||
|
||
* libgimpwidgets/gimpcolorarea.c: pass a GdkGC to
|
||
gdk_draw_rgb_image(), fixed dither offsets.
|
||
|
||
* app/core/gimpobject.[ch]: new virtual function
|
||
gimp_object_get_memsize().
|
||
|
||
* app/base/temp-buf.[ch]
|
||
* app/base/tile-manager.[ch]: added *_get_memsize() methods.
|
||
|
||
* app/core/gimp.c
|
||
* app/core/gimpbrush.c
|
||
* app/core/gimpbrushpipe.c
|
||
* app/core/gimpbuffer.c
|
||
* app/core/gimpchannel.c
|
||
* app/core/gimpcontainer.c
|
||
* app/core/gimpcontext.c
|
||
* app/core/gimpdata.c
|
||
* app/core/gimpdatafactory.c
|
||
* app/core/gimpdrawable.c
|
||
* app/core/gimpgradient.c
|
||
* app/core/gimpimage.c
|
||
* app/core/gimplayer.c
|
||
* app/core/gimplist.c
|
||
* app/core/gimpmoduleinfo.c
|
||
* app/core/gimppalette.c
|
||
* app/core/gimpparasitelist.c
|
||
* app/core/gimppattern.c
|
||
* app/core/gimppreviewcache.[ch]
|
||
* app/core/gimpundo.[ch]
|
||
* app/core/gimpundostack.c
|
||
* app/core/gimpviewable.c: added get_memsize() implementations.
|
||
|
||
* app/widgets/gimppreview.c
|
||
* app/core/gimpobject.[ch]: some #ifdef DEBUG_MEMSIZE code to
|
||
test the new memsize stuff (middle click any preview to get
|
||
it's viewable's memory footprint).
|
||
|
||
2002-01-30 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/FractalExplorer/Events.c
|
||
* plug-ins/FractalExplorer/FractalExplorer.[ch]
|
||
* plug-ins/FractalExplorer/Globals.c
|
||
* plug-ins/common/film.c
|
||
* plug-ins/common/plugindetails.c
|
||
* plug-ins/fp/fp_misc.c
|
||
* plug-ins/rcm/rcm_callback.c
|
||
* plug-ins/rcm/rcm_misc.c: removed the ugly hacks and simply define
|
||
GTK_DISABLE_DEPRECATED before including gtk.h.
|
||
|
||
2002-01-30 Sven Neumann <sven@gimp.org>
|
||
|
||
* libgimpwidgets/gimpcolorarea.[ch]: derive from GtkDrawingArea
|
||
instead of deprecated GtkPreview.
|
||
|
||
* app/nav_window.c
|
||
* app/gui/brush-editor.c
|
||
* app/gui/buffers-commands.c
|
||
* app/gui/color-select.c
|
||
* app/gui/colormap-dialog.c
|
||
* app/gui/device-status-dialog.c
|
||
* app/gui/dialogs-constructors.c
|
||
* app/gui/file-open-dialog.c
|
||
* app/gui/gradient-editor.c
|
||
* app/gui/indicator-area.c
|
||
* app/gui/info-window.c
|
||
* app/gui/palette-editor.c
|
||
* app/gui/palette-import-dialog.c
|
||
* app/gui/palettes-commands.c
|
||
* app/gui/test-commands.c
|
||
* app/gui/tool-options-dialog.c
|
||
* app/gui/toolbox.c
|
||
* app/tools/gimpbycolorselecttool.c
|
||
* app/tools/gimpcurvestool.c
|
||
* app/tools/gimphistogramtool.c
|
||
* app/tools/gimphuesaturationtool.c
|
||
* app/tools/gimplevelstool.c
|
||
* app/widgets/gimpchannellistview.c
|
||
* app/widgets/gimpcomponentlistitem.c
|
||
* app/widgets/gimpdnd.c
|
||
* app/widgets/gimpdrawablelistitem.c
|
||
* app/widgets/gimpdrawablelistview.c
|
||
* app/widgets/gimpimagedock.c
|
||
* app/widgets/gimpitemfactory.c
|
||
* app/widgets/gimplayerlistitem.c
|
||
* app/widgets/gimplistitem.c
|
||
* app/widgets/gimpmenuitem.c
|
||
* app/widgets/gimppreview.c
|
||
* libgimp/gimpbrushmenu.c
|
||
* libgimp/gimpgradientmenu.c
|
||
* libgimp/gimpmenu.c
|
||
* libgimp/gimppatternmenu.c
|
||
* plug-ins/FractalExplorer/Dialogs.c
|
||
* plug-ins/common/AlienMap.c
|
||
* plug-ins/common/AlienMap2.c
|
||
* plug-ins/common/CML_explorer.c
|
||
* plug-ins/common/blinds.c
|
||
* plug-ins/common/curve_bend.c
|
||
* plug-ins/common/depthmerge.c
|
||
* plug-ins/common/despeckle.c
|
||
* plug-ins/common/destripe.c
|
||
* plug-ins/common/diffraction.c
|
||
* plug-ins/common/emboss.c
|
||
* plug-ins/common/exchange.c
|
||
* plug-ins/common/flarefx.c
|
||
* plug-ins/common/fractaltrace.c
|
||
* plug-ins/common/glasstile.c
|
||
* plug-ins/common/gqbist.c
|
||
* plug-ins/common/grid.c
|
||
* plug-ins/common/illusion.c
|
||
* plug-ins/common/iwarp.c
|
||
* plug-ins/common/jigsaw.c
|
||
* plug-ins/common/mapcolor.c
|
||
* plug-ins/common/max_rgb.c
|
||
* plug-ins/common/newsprint.c
|
||
* plug-ins/common/nlfilt.c
|
||
* plug-ins/common/noisify.c
|
||
* plug-ins/common/nova.c
|
||
* plug-ins/common/plasma.c
|
||
* plug-ins/common/polar.c
|
||
* plug-ins/common/sample_colorize.c
|
||
* plug-ins/common/scatter_hsv.c
|
||
* plug-ins/common/sharpen.c
|
||
* plug-ins/common/sinus.c
|
||
* plug-ins/common/tileit.c
|
||
* plug-ins/common/video.c
|
||
* plug-ins/common/waves.c
|
||
* plug-ins/common/whirlpinch.c
|
||
* plug-ins/common/wind.c
|
||
* plug-ins/flame/flame.c
|
||
* plug-ins/fp/fp_gtk.c
|
||
* plug-ins/gimpressionist/brush.c
|
||
* plug-ins/mosaic/mosaic.c
|
||
* plug-ins/rcm/rcm_dialog.c: define GTK_DISABLE_DEPRECATED to make
|
||
it compile.
|
||
|
||
We really need a generic plug-in preview system that doesn't use
|
||
GtkPreview.
|
||
|
||
2002-01-30 Sven Neumann <sven@gimp.org>
|
||
|
||
* configure.in: depend on glib-1.3.13, pango-0.24 and gtk+-1.3.13.
|
||
Bumped our version number to 1.3.3.
|
||
|
||
* NEWS: updated.
|
||
|
||
2002-01-30 Manish Singh <yosh@gimp.org>
|
||
|
||
* app/gui/file-open-dialog.c: ported to the new treeviewized file
|
||
selection widget. Unfortunately, multiple selections aren't supported
|
||
anymore so it's still broke. I'll make a patch to gtk to address this
|
||
after I get some sleep.
|
||
|
||
* app/widgets/gimppreview.h
|
||
* libgimpwidgets/gimpcolorarea.h
|
||
* plug-ins/FractalExplorer/Events.c
|
||
* plug-ins/common/film.c
|
||
* plug-ins/common/plugindetails.c
|
||
* plug-ins/fp/fp_misc.c
|
||
* plug-ins/rcm/rcm_callback.c
|
||
* plug-ins/rcm/rcm_misc.c: REALLY REALLY ugly hack to get things to
|
||
build under the latest enum deprecations. Of course, we'll remove
|
||
these when these files compile with deprecation turned on
|
||
|
||
* plug-ins/dbbrowser/dbbrowser_utils.c: warning cleanup
|
||
|
||
* libgimpwidgets/Makefile.am
|
||
* libgimpwidgets/gimpoffsetarea.c: need a custom marshaller for
|
||
our signal since the gtk marshaller we used went away.
|
||
|
||
2002-01-29 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/common/screenshot.c: added a call to gtk_widget_show() that
|
||
got lost during porting. Now you can shoot the whole screen again.
|
||
|
||
2002-01-27 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/gui/file-new-dialog.c: moved the memory size information out
|
||
of the frame label to avoid redrawing the whole frame for every change.
|
||
|
||
2002-01-25 Michael Natterer <mitch@gimp.org>
|
||
|
||
* configure.in: CPPFLAGS: added -DGTK_DISABLE_DEPRECATED
|
||
|
||
* libgimpwidgets/gimpdialog.c: still use the deprecated
|
||
gtk_window_set_policy() but spit out a #warning.
|
||
|
||
* app/widgets/widgets-types.h
|
||
* app/widgets/gimpitemfactory.[ch]: made it a GtkItemFactory
|
||
subclass. This way we can reproduce the effect of
|
||
gtk_item_factory_get_from_path() which is deprectated for good
|
||
reasons. For GIMP, using it its perfectly OK since we only have
|
||
one item factory per "<prefix>".
|
||
|
||
* app/widgets/gimpbrushfactoryview.[ch]
|
||
* app/widgets/gimpbufferview.[ch]
|
||
* app/widgets/gimpcontainereditor.[ch]
|
||
* app/widgets/gimpdatafactoryview.[ch]
|
||
* app/widgets/gimpdialogfactory.[ch]
|
||
* app/widgets/gimpdock.c
|
||
* app/widgets/gimpdockbook.c
|
||
* app/widgets/gimpdocumentview.[ch]
|
||
* app/widgets/gimpdrawablelistview.[ch]
|
||
* app/widgets/gimppreview.c
|
||
* app/display/gimpdisplayshell-callbacks.c
|
||
* app/display/gimpdisplayshell.[ch]: pass around GimpItemFactory
|
||
pointers instead of "const gchar *" item factory identifiers.
|
||
Replaced gtk_window_set_policy() by gtk_window_set_resizable()
|
||
and other recommended stuff.
|
||
|
||
* app/gui/about-dialog.c
|
||
* app/gui/dialogs-constructors.c
|
||
* app/gui/dialogs.c
|
||
* app/gui/file-open-dialog.c
|
||
* app/gui/file-save-dialog.c
|
||
* app/gui/gradient-editor.c
|
||
* app/gui/menus.c
|
||
* app/gui/offset-dialog.c
|
||
* app/gui/splash.c
|
||
* app/gui/tips-dialog.c
|
||
* app/gui/toolbox.c: lots of
|
||
s/gtk_item_factory_from_path/gimp_item_factory_from_path/,
|
||
gtk_window_set_policy() replacements, misc fixes.
|
||
|
||
* plug-ins/gdyntext/charmap_window.c
|
||
* plug-ins/gdyntext/gdyntext_ui.c
|
||
* plug-ins/gdyntext/message_window.c
|
||
* plug-ins/imagemap/imap_main.c: replaced gtk_window_set_policy().
|
||
|
||
2002-01-25 Michael Natterer <mitch@gimp.org>
|
||
|
||
* plug-ins/common/tga.c
|
||
* plug-ins/common/video.c: compile with GTK_DISABLE_DEPRECATED.
|
||
|
||
2002-01-24 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/common/tga.c: merged fix for bug #53278 from stable branch.
|
||
|
||
* plug-ins/common/tiff.c: merged fix for bug #69129 from stable branch.
|
||
|
||
2002-01-23 Simos Xenitellis <simos@hellug.gr>
|
||
|
||
* configure.in: Added "el" (Greek) to ALL_LINGUAS.
|
||
|
||
2002-01-22 Sven Neumann <sven@gimp.org>
|
||
|
||
* gimptool-1.3.in: fixed usage info.
|
||
|
||
* themes/Default/images/Makefile.am: should really install the stock
|
||
icons defined in our gtkrc.
|
||
|
||
2002-01-18 Raja R Harinath <harinath@cs.umn.edu>
|
||
|
||
* configure.in: Add a few [] to nested AC_CHECK_* invocations.
|
||
Needed for autoconf 2.52, but also the right fix for older
|
||
autoconfs. (http://bugzilla.gnome.org/show_bug.cgi?id=68958)
|
||
|
||
* app/gui/Makefile.am
|
||
* app/tools/Makefile.am
|
||
* app/widgets/Makefile.am: Search for include files in build
|
||
directory too. (http://bugzilla.gnome.org/show_bug.cgi?id=68961)
|
||
|
||
2002-01-15 Michael Natterer <mitch@gimp.org>
|
||
|
||
* plug-ins/common/video.c
|
||
* plug-ins/common/vinvert.c
|
||
* plug-ins/common/vpropagate.c
|
||
* plug-ins/common/warp.c
|
||
* plug-ins/common/waves.c
|
||
* plug-ins/common/whirlpinch.c
|
||
* plug-ins/common/wind.c
|
||
* plug-ins/common/wmf.c
|
||
* plug-ins/common/xbm.c
|
||
* plug-ins/common/xpm.c
|
||
* plug-ins/common/xwd.c: compile with GTK_DISABLE_DEPRECATED.
|
||
|
||
2002-01-14 Rebecca Walter <bex@gimp.org>
|
||
|
||
* app/gui/palette-editor.c
|
||
* app/gui/palette-import-dialog.c
|
||
* app/gui/paths-dialog.c: more proofreading with help from
|
||
CyBeR (Marco Wessel)
|
||
|
||
2002-01-13 Manish Singh <yosh@gimp.org>
|
||
|
||
* plug-ins/dbbrowser/dbbrowser_utils.c: I'm dumb, use better sorting.
|
||
It's all _kris_'s fault.
|
||
|
||
2002-01-13 Michael Natterer <mitch@gimp.org>
|
||
|
||
* libgimpwidgets/gimpstock.[ch]: removed stock items which are
|
||
already defined in Gtk+ (GTK_STOCK_NEW etc.).
|
||
|
||
* libgimpwidgets/gimpquerybox.[ch]: moved the icon code from the
|
||
boolean query box constructor to create_query_box() so it can be
|
||
used for all of them. New macro GIMP_QUERY_BOX_VBOX() to pack
|
||
custom widgets into the dialogs. Will probably have to make a
|
||
real widget out of it to get a sane API...
|
||
|
||
* app/gui/menus.c
|
||
* app/gui/select-commands.c
|
||
* app/widgets/gimpbufferview.c
|
||
* app/widgets/gimpdatafactoryview.c
|
||
* app/widgets/gimpdocumentview.c
|
||
* app/widgets/gimpdrawablelistview.c
|
||
* libgimpwidgets/gimppatheditor.c
|
||
* plug-ins/common/uniteditor.c: changed accordingly.
|
||
|
||
* libgimpwidgets/gimpwidgets.c: register the WM icons in
|
||
large -> small order.
|
||
|
||
* themes/Default/Makefile.am: don't create inline pixbufs of the
|
||
removed stock items' icons...
|
||
|
||
* themes/Default/gtkrc: ...but simply override them here.
|
||
|
||
* themes/Default/imagerc: removed them here too.
|
||
|
||
2002-01-12 Manish Singh <yosh@gimp.org>
|
||
|
||
* plug-ins/dbbrowser/dbbrowser_utils.c: use GtkTreeView and multiline
|
||
labels now. UI still needs some tweaking, but compiles with
|
||
GTK_DISABLE_DEPRECATED.
|
||
|
||
2002-01-09 Sven Neumann <sven@gimp.org>
|
||
|
||
* themes/Default/images/Makefile.am
|
||
* themes/Default/images/gimp-dialog-error.png
|
||
* themes/Default/images/gimp-dialog-info.png
|
||
* themes/Default/images/gimp-dialog-question.png
|
||
* themes/Default/images/gimp-dialog-warning.png: new stock icons to
|
||
override the standard gtk-dialog icons.
|
||
|
||
* themes/Default/images/gimp-dialog-icons.xcf.gz: XCF version of the
|
||
new dialog icons.
|
||
|
||
* themes/Default/gtkrc: override the standard gtk-dialog icons with
|
||
our versions.
|
||
|
||
* libgimpwidgets/gimpquerybox.[ch]: allow to pass a stock_id instead
|
||
of the boolean eek.
|
||
|
||
* app/widgets/gimpwidgets-utils.c: added an icon to the gimp_message
|
||
dialog. We need to add an API to declare the severity of the message
|
||
or allow to pass a stock_id. For now all messages habe the Info icon.
|
||
|
||
* app/gui/file-commands.c
|
||
* app/gui/file-new-dialog.c
|
||
* app/gui/file-save-dialog.c
|
||
* app/gui/gui.c
|
||
* app/gui/image-commands.c
|
||
* plug-ins/FractalExplorer/FractalExplorer.c
|
||
* plug-ins/gfig/gfig.c
|
||
* plug-ins/gflare/gflare.c: pass a suitable(?) stock_id to
|
||
gimp_query_boolean_box().
|
||
|
||
2002-01-08 Michael Natterer <mitch@gimp-org>
|
||
|
||
* plug-ins/common/tga.c
|
||
* plug-ins/common/threshold_alpha.c
|
||
* plug-ins/common/tiff.c
|
||
* plug-ins/common/tile.c
|
||
* plug-ins/common/tileit.c
|
||
* plug-ins/common/tiler.c
|
||
* plug-ins/common/uniteditor.c
|
||
* plug-ins/common/unsharp.c
|
||
* plug-ins/common/url.c
|
||
* plug-ins/common/zealouscrop.c: compile with
|
||
GTK_DISABLE_DEPRECATED, cleanup.
|
||
|
||
2002-01-07 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/common/xbm.c: merged fix from stable branch.
|
||
|
||
2002-01-03 Michael Natterer <mitch@gimp.org>
|
||
|
||
* plug-ins/common/sinus.c
|
||
* plug-ins/common/smooth_palette.c
|
||
* plug-ins/common/snoise.c
|
||
* plug-ins/common/sobel.c
|
||
* plug-ins/common/sparkle.c
|
||
* plug-ins/common/spread.c
|
||
* plug-ins/common/struc.c
|
||
* plug-ins/common/sunras.c: compile with GTK_DISABLE_DEPRECATED.
|
||
|
||
2002-01-02 Michael Natterer <mitch@gimp.org>
|
||
|
||
* pixmaps/Makefile.am
|
||
* pixmaps/zoom_in.xpm
|
||
* pixmaps/zoom_out.xpm: removed.
|
||
|
||
* app/nav_window.c
|
||
* plug-ins/Lighting/lighting_ui.c
|
||
* plug-ins/MapObject/mapobject_ui.c: use GTK_STOCK_ZOOM_[IN|OUT]
|
||
instead.
|
||
|
||
2002-01-02 Michael Natterer <mitch@gimp.org>
|
||
|
||
* plug-ins/pagecurl/pagecurl.c: compile with GTK_DISABLE_DEPRECATED.
|
||
|
||
2002-01-02 Michael Natterer <mitch@gimp.org>
|
||
|
||
* libgimpwidgets/gimppixmap.c: made a warning more verbose.
|
||
|
||
* libgimpwidgets/gimppixmap.h: no need to fiddle around with evil
|
||
#defines now that it's ported to GtkImage.
|
||
|
||
2001-12-30 Manish Singh <yosh@gimp.org>
|
||
|
||
* app/gui/module-browser.c: add a shadow to the scrolled window, so
|
||
it looks nicer
|
||
|
||
* libgimpwidgets/gimpbutton.c: try to restore gtk_widget_draw behavior
|
||
|
||
* libgimpwidgets/gimpoffsetarea.c
|
||
* libgimpwidgets/gimppixmap.[ch]: compile with GTK_DISABLE_DEPRECATED
|
||
|
||
2001-12-31 Sven Neumann <sven@gimp.org>
|
||
|
||
* libgimpcolor/Makefile.am
|
||
* libgimpmath/Makefile.am: use GLIB_CFLAGS instead of GTK_CFLAGS.
|
||
|
||
* app/libgimp_glue.[ch]: do not allow anyone but app/libgimp_glue.c
|
||
to include libgimp_glue.h.
|
||
|
||
* libgimpbase/gimpunit.h
|
||
* libgimp/gimpunit.c: cache return values of GimpUnit PDB calls and
|
||
return const strings from the GimpUnit accessor functions just like
|
||
the equivalent functions in the application do.
|
||
|
||
* plug-ins/common/uniteditor.c: don't free GimpUnit strings. Don't
|
||
free the result of gtk_entry_get_text() neither.
|
||
|
||
2001-12-31 Michael Natterer <mitch@gimp.org>
|
||
|
||
* plug-ins/common/nlfilt.c
|
||
* plug-ins/common/noisify.c
|
||
* plug-ins/common/nova.c
|
||
* plug-ins/common/oilify.c
|
||
* plug-ins/common/papertile.c
|
||
* plug-ins/common/pat.c
|
||
* plug-ins/common/pixelize.c
|
||
* plug-ins/common/plasma.c
|
||
* plug-ins/common/plugindetails.c
|
||
* plug-ins/common/png.c
|
||
* plug-ins/common/pnm.c
|
||
* plug-ins/common/polar.c
|
||
* plug-ins/common/ps.c
|
||
* plug-ins/common/psp.c
|
||
* plug-ins/common/randomize.c
|
||
* plug-ins/common/ripple.c
|
||
* plug-ins/common/sample_colorize.c
|
||
* plug-ins/common/scatter_hsv.c
|
||
* plug-ins/common/screenshot.c
|
||
* plug-ins/common/sel_gauss.c
|
||
* plug-ins/common/sharpen.c
|
||
* plug-ins/common/shift.c: compile with GTK_DISABLE_DEPRECATED.
|
||
|
||
2001-12-30 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/libgimp_glue.[ch]
|
||
* app/gui/info-window.c: some const fixes.
|
||
|
||
2001-12-30 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/base/Makefile.am
|
||
* app/core/Makefile.am
|
||
* app/display/Makefile.am: nicer output of glib-mkenums.
|
||
|
||
2001-12-29 Sven Neumann <sven@gimp.org>
|
||
|
||
* data/brushes/Makefile.am (brushdata_DATA): added missing brush
|
||
vine.gih.
|
||
|
||
2001-12-29 Michael Natterer <mitch@gimp.org>
|
||
Sven Neumann <sven@gimp.org>
|
||
Simon Budig <simon@gimp.org>
|
||
|
||
* Made 1.3.2 release from 18C3.
|
||
|
||
2001-12-29 Simon Budig <simon@gimp.org>
|
||
Sven Neumann <sven@gimp.org>
|
||
|
||
* data/images/Makefile.am
|
||
* data/images/gimp_splash.gif: new blinking splash.
|
||
|
||
* app/gui/splash.c (splash_create): load splash from gimp_splash.gif.
|
||
|
||
2001-12-29 Michael Natterer <mitch@gimp.org>
|
||
|
||
* NEWS: mention GTK_DISABLE_DEPRECATED.
|
||
|
||
2001-12-29 Sven Neumann <sven@gimp.org>
|
||
|
||
* data/brushes/vine.gih: fixed rank and increased spacing.
|
||
|
||
2001-12-29 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimpprogress.c
|
||
* app/nav_window.c
|
||
* app/ops_buttons.c
|
||
* app/undo_history.c
|
||
* app/display/gimpdisplayshell.c
|
||
* app/gui/about-dialog.c
|
||
* app/gui/brush-editor.c
|
||
* app/gui/channels-commands.c
|
||
* app/gui/color-area.c
|
||
* app/gui/color-notebook.c
|
||
* app/gui/color-select.c
|
||
* app/gui/colormap-dialog.c
|
||
* app/gui/convert-dialog.c
|
||
* app/gui/device-status-dialog.c
|
||
* app/gui/file-new-dialog.c
|
||
* app/gui/file-open-dialog.c
|
||
* app/gui/file-save-dialog.c
|
||
* app/gui/gradient-editor.c
|
||
* app/gui/info-dialog.c
|
||
* app/gui/layers-commands.c
|
||
* app/gui/module-browser.c
|
||
* app/gui/offset-dialog.c
|
||
* app/gui/palette-editor.c
|
||
* app/gui/palettes-commands.c
|
||
* app/gui/paths-dialog.c
|
||
* app/gui/qmask-commands.c
|
||
* app/gui/resize-dialog.c
|
||
* app/gui/resolution-calibrate-dialog.c
|
||
* app/gui/splash.c
|
||
* app/gui/tips-dialog.c
|
||
* app/gui/toolbox.c
|
||
* app/gui/user-install-dialog.c
|
||
* app/tools/gimpbrightnesscontrasttool.c
|
||
* app/tools/gimpbycolorselecttool.c
|
||
* app/tools/gimpcolorbalancetool.c
|
||
* app/tools/gimpcolorpickertool.c
|
||
* app/tools/gimpcroptool.c
|
||
* app/tools/gimpcurvestool.c
|
||
* app/tools/gimphuesaturationtool.c
|
||
* app/tools/gimpinktool.c
|
||
* app/tools/gimplevelstool.c
|
||
* app/tools/gimpposterizetool.c
|
||
* app/tools/gimprotatetool.c
|
||
* app/tools/gimpthresholdtool.c
|
||
* app/tools/paint_options.c
|
||
* app/tools/selection_options.c
|
||
* app/widgets/gimpchannellistview.c
|
||
* app/widgets/gimpcolorpanel.c
|
||
* app/widgets/gimpcomponentlistitem.c
|
||
* app/widgets/gimpconstrainedhwrapbox.c
|
||
* app/widgets/gimpcontainergridview.c
|
||
* app/widgets/gimpcontainerlistview.c
|
||
* app/widgets/gimpcontainermenuimpl.c
|
||
* app/widgets/gimpdialogfactory.c
|
||
* app/widgets/gimpdnd.c
|
||
* app/widgets/gimpdock.c
|
||
* app/widgets/gimpdockbook.c
|
||
* app/widgets/gimpdrawablelistitem.c
|
||
* app/widgets/gimpdrawablelistview.c
|
||
* app/widgets/gimpfontselection-dialog.c
|
||
* app/widgets/gimphistogramview.c
|
||
* app/widgets/gimpitemfactory.c
|
||
* app/widgets/gimplayerlistitem.c
|
||
* app/widgets/gimplistitem.[ch]
|
||
* app/widgets/gimpmenuitem.c
|
||
* app/widgets/gimppreview.[ch]
|
||
* app/widgets/gtkhwrapbox.c
|
||
* app/widgets/gtkvwrapbox.c
|
||
* app/widgets/gtkwrapbox.c
|
||
* libgimp/gimpbrushmenu.c
|
||
* libgimp/gimpexport.c
|
||
* libgimp/gimpgradientmenu.c
|
||
* libgimp/gimpmenu.c
|
||
* libgimp/gimppatternmenu.c
|
||
* libgimpwidgets/gimpbutton.c
|
||
* libgimpwidgets/gimpchainbutton.[ch]
|
||
* libgimpwidgets/gimpcolorarea.h
|
||
* libgimpwidgets/gimpcolorbutton.c
|
||
* libgimpwidgets/gimpfileselection.c
|
||
* libgimpwidgets/gimphelpui.c
|
||
* libgimpwidgets/gimpoffsetarea.c
|
||
* libgimpwidgets/gimppatheditor.c
|
||
* libgimpwidgets/gimppixmap.h
|
||
* libgimpwidgets/gimpquerybox.c
|
||
* libgimpwidgets/gimpstock.[ch]
|
||
* libgimpwidgets/gimpwidgets.h
|
||
* plug-ins/FractalExplorer/Dialogs.c
|
||
* plug-ins/FractalExplorer/Events.c
|
||
* plug-ins/FractalExplorer/FractalExplorer.c
|
||
* plug-ins/Lighting/lighting_ui.c
|
||
* plug-ins/MapObject/mapobject_ui.c
|
||
* plug-ins/bmp/bmpwrite.c
|
||
* plug-ins/dbbrowser/dbbrowser_utils.c
|
||
* plug-ins/fits/fits.c
|
||
* plug-ins/flame/flame.c
|
||
* plug-ins/fp/fp_gtk.c
|
||
* plug-ins/fp/fp_misc.c
|
||
* plug-ins/gfig/gfig.c
|
||
* plug-ins/gflare/gflare.c
|
||
* plug-ins/gfli/gfli.c
|
||
* plug-ins/gimpressionist/*.c
|
||
* plug-ins/imagemap/*.[ch]
|
||
* plug-ins/maze/maze_face.c
|
||
* plug-ins/mosaic/mosaic.c
|
||
* plug-ins/pagecurl/pagecurl.c
|
||
* plug-ins/print/print_gimp.h
|
||
* plug-ins/rcm/rcm_callback.c
|
||
* plug-ins/rcm/rcm_dialog.c
|
||
* plug-ins/rcm/rcm_misc.c
|
||
* plug-ins/script-fu/script-fu-console.c
|
||
* plug-ins/script-fu/script-fu-scripts.c
|
||
* plug-ins/script-fu/script-fu-server.c
|
||
* plug-ins/sel2path/sel2path.c
|
||
* plug-ins/sel2path/sel2path_adv_dialog.c
|
||
* plug-ins/sgi/sgi.c
|
||
* plug-ins/webbrowser/webbrowser.c
|
||
* plug-ins/xjt/xjt.c
|
||
* plug-ins/common/[A-n]*.c: compile with GTK_DISABLE_DEPRECATED
|
||
defined. Not everything is fully ported yet, had to #undef
|
||
GTK_DISABLE_DEPRECATED in many places and added #warnings when
|
||
doing so.
|
||
|
||
* pixmaps/Makefile.am
|
||
* pixmaps/chain.xpm: removed.
|
||
|
||
* themes/Default/Makefile.am
|
||
* themes/Default/images/Makefile.am
|
||
* themes/Default/images/stock-button-hchain-broken.png
|
||
* themes/Default/images/stock-button-hchain.png
|
||
* themes/Default/images/stock-button-vchain-broken.png
|
||
* themes/Default/images/stock-button-vchain.png: new stock icons.
|
||
|
||
2001-12-28 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/config/gimprc.c: write comment to top of gimprc.
|
||
|
||
* app/core/gimpscanconvert.c: removed redundant CLAMP statements.
|
||
|
||
* app/plug-in/plug-in-rc.[ch]
|
||
* app/plug-in/plug-in.c: rewrote pluginrc scanner and moved the code
|
||
that writes the pluginrc into plug-in-rc.c.
|
||
|
||
2001-12-28 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/tools/gimpmagnifytool.c: calculate mouse movement in screen
|
||
coordinates. Reset threshold to default value when the Reset button
|
||
is pressed.
|
||
|
||
2001-12-28 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/config/gimpconfig-serialize.[ch]
|
||
* app/config/gimpconfig.h
|
||
* app/config/gimprc.[ch]: added new function to only write changes to
|
||
the personal gimprc.
|
||
|
||
* app/config/test-config.c: test the new functionality.
|
||
|
||
* tools/pdbgen/pdb/procedural_db.pdb: the change I did yesterday
|
||
wasn't overly clever; here's a better one.
|
||
|
||
* app/pdb/procedural_db_cmds.c: regenerated.
|
||
|
||
2001-12-28 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/plug-in/Makefile.am
|
||
* app/plug-in/plug-in-rc.[ch]: new files that parse pluginrc using a
|
||
GScanner.
|
||
|
||
* app/plug-in/plug-in.[ch]: made PlugInDef public again so we can use
|
||
it from the pluginrc parser.
|
||
|
||
* tools/pdbgen/pdb/procedural_db.pdb: made regex string matching
|
||
robust against NULL pointers.
|
||
|
||
* app/pdb/procedural_db_cmds.c: regenerated.
|
||
|
||
* app/gimprc.c: removed old pluginrc parser.
|
||
|
||
2001-12-27 DindinX <David@dindinx.org>
|
||
|
||
* app/tools/gimpmagnifytool.c: Added a threshold value determining
|
||
by how many pixels the mouse should move to use the window mode.
|
||
|
||
2001-12-27 Sven Neumann <sven@gimp.org>
|
||
|
||
* themes/Default/images/Makefile.am: fixed for 'make dist'.
|
||
|
||
2001-12-27 Sven Neumann <sven@gimp.org>
|
||
|
||
* INSTALL
|
||
* NEWS
|
||
* configure.in: require latest versions of glib, gtk+ and friends.
|
||
Bumped our version number to 1.3.2.
|
||
|
||
* app/plug-in/plug-in.c (plug_in_params_destroy, plug_in_args_destroy):
|
||
moved condition out of the switch statement, simplified code.
|
||
|
||
* app/plug-in/plug-in-proc.[ch]: moved plug_in_proc_def_destroy() here.
|
||
|
||
* app/gimprc.c: use plug_in_proc_def_destroy().
|
||
|
||
* app/pdb/procedural_db.c: use g_string_hash() instead of our own hash
|
||
function.
|
||
|
||
* app/xcf/xcf.c: initialize all fields of the PlugInProcDef struct.
|
||
|
||
2001-12-20 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/tools/gimptexttool.c (text_render): fixed text positioning by
|
||
removing a workaround for a bug that has finally been fixed in Pango.
|
||
|
||
2001-12-19 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/plug-in/Makefile.am
|
||
* app/plug-in-proc/plug-in-proc.[ch]: new files. Started to split
|
||
plug-in.c into smaller pieces.
|
||
|
||
* app/plug-in/plug-in-types.h: namespacified GimpRunModeType enum and
|
||
renamed it to GimpRunMode.
|
||
|
||
* app/plug-in/plug-in.[ch]
|
||
* app/gimphelp.c
|
||
* app/file/file-open.[ch]
|
||
* app/file/file-save.[ch]
|
||
* app/file/file-utils.c
|
||
* app/gui/file-commands.c
|
||
* app/gui/file-open-dialog.c
|
||
* app/gui/file-save-dialog.c
|
||
* app/gui/paths-dialog.c
|
||
* app/xcf/xcf.c
|
||
* tools/pdbgen/pdb/fileops.pdb: changed accordingly.
|
||
|
||
* app/pdb/fileops_cmds.c
|
||
* libgimp/gimpenums.h
|
||
* plug-ins/script-fu/script-fu-constants.c
|
||
* libgimp/gimpfileops_pdb.[ch]
|
||
* tools/pdbgen/enums.pl: regenerated.
|
||
|
||
* libgimp/Makefile.am
|
||
* libgimp/gimpcompat.h: added gimpcompat.h mostly as a place to
|
||
document plug-in API changes.
|
||
|
||
* plug-ins/*: changed all occurences of GimpRunModeType to GimpRunMode.
|
||
|
||
2001-12-18 Sven Neumann <sven@gimp.org>
|
||
|
||
* docs/gimptool-1.3.1.in
|
||
* gimptool-1.3.in: applied patch from Roger Leigh <rl117@york.ac.uk>
|
||
that makes gimptool respect the DESTDIR environment variable.
|
||
|
||
* app/config/Makefile.am: declare test-config as TESTS so it is build
|
||
and executed when running 'make check'.
|
||
|
||
* app/config/gimpbaseconfig.c: don't register a GimpConfig interface.
|
||
* app/config/gimpcoreconfig.c
|
||
* app/config/gimpdisplayconfig.c
|
||
* app/config/gimpguiconfig.c: no need to include "gimpconfig.h".
|
||
|
||
* app/config/gimpconfig.[ch]: removed store_unknown parameter from
|
||
deserialize method. The default implementation will bail out on
|
||
unknown tokens.
|
||
|
||
* app/config/gimprc.c: override deserialize method so it stores
|
||
unknown tokens.
|
||
|
||
2001-12-18 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/config/Makefile.am: don't build test-config by default.
|
||
|
||
* app/config/gimprc.[ch]: new files for the GimpRc implementation.
|
||
|
||
* app/config/gimpcoreconfig.h
|
||
* app/config/gimpdisplayconfig.h
|
||
* app/config/gimpguiconfig.h: include the necessary enum headers
|
||
here and prefix local includes with config so the files can be safely
|
||
included from almost everywhere.
|
||
|
||
* app/config/test-config.c: instantiate and test GimpRc.
|
||
|
||
2001-12-18 DindinX <David@dindinx.org>
|
||
|
||
* app/base/boundary.c:
|
||
* app/base/pixel-surround.c:
|
||
* app/base/temp-buf.c: some more g_malloc -> g_new and
|
||
g_realloc -> g_renew changes, foe better readability and type
|
||
safety.
|
||
|
||
2001-12-18 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/display/Makefile.am
|
||
* app/display/display-enums.h: new file with GimpCursorMode enum.
|
||
|
||
* app/display/display-types.h: removed CursorMode enum here, include
|
||
display-enums.h.
|
||
|
||
* app/gimprc.c
|
||
* app/display/gimpdisplayshell.c
|
||
* app/gui/preferences-dialog.c: changed accordingly.
|
||
|
||
* app/config/Makefile.am
|
||
* app/config/gimpbaseconfig.[ch]
|
||
* app/config/gimpcoreconfig.[ch]
|
||
* app/config/gimpdisplayconfig.[ch]
|
||
* app/config/gimpguiconfig.[ch]: implemented the remaining properties.
|
||
|
||
2001-12-18 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/config/Makefile.am
|
||
* app/config/gimpconfig-utils.[ch]: new files with utility functions.
|
||
|
||
* app/config/gimpdisplayconfig.[ch]: new class with display config
|
||
properties so GimpGuiConfig doesn't get too large.
|
||
|
||
* app/config/gimpbaseconfig.c
|
||
* app/config/gimpcoreconfig.[ch]
|
||
* app/config/gimpguiconfig.[ch]: install path properties with
|
||
useable defaults (substituted gimpdir and friends). Moved properties
|
||
around.
|
||
|
||
* app/gui/session.c: removed outdated comment.
|
||
|
||
2001-12-18 Michael Natterer <mitch@gimp.org>
|
||
|
||
* configure.in: added -DGDK_PIXBUF_DISABLE_DEPRECATED to CPPFLAGS.
|
||
|
||
* app/core/gimpbuffer.[ch]: gimp_buffer_get_[width|height]:
|
||
added "const" to the GimpBuffer parameter.
|
||
|
||
* app/core/gimpchannel.c: indentation and comment changes.
|
||
|
||
* app/core/gimpdrawable-desaturate.c: don't include
|
||
"paint-funcs/paint-funcs.h".
|
||
|
||
* app/display/gimpdisplayshell.c: don't include "base/temp-buf.h".
|
||
|
||
* app/gui/gui.c: removed the image container's "name_changed"
|
||
handler.
|
||
|
||
* app/gui/palette-import-dialog.[ch]: use GimpPreview and
|
||
GimpContainerMenu instead of doing the same manually. Removed lots
|
||
of code. Not perfect yet.
|
||
|
||
* app/tools/gimpfuzzyselecttool.c: no need to include tile stuff.
|
||
|
||
* app/widgets/gimpcontainerview-utils.c: better g_warning() message.
|
||
|
||
* tools/pdbgen/pdb/paint_tools.pdb: don't include
|
||
"base/tile-manager.h".
|
||
|
||
* app/pdb/paint_tools_cmds.c: regenerated.
|
||
|
||
* data/images/Makefile.am
|
||
* data/images/gimp_logo.ppm: removed...
|
||
* data/images/gimp_logo.png: ...and added as PNG.
|
||
|
||
* app/gui/about-dialog.c: use gdk_pixbuf_new_from_file() to load
|
||
the PNG logo instead of manually parsing the PPM.
|
||
|
||
2001-12-17 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/widgets/gimpdrawablelistview.[ch]: changed
|
||
the GimpNewDrawableFunc typedef to take an additional
|
||
"GimpDrawable *template" paramater, added the "Drop to New"
|
||
feature again by passing the dropped drawable to
|
||
view->new_drawable_func().
|
||
|
||
* app/gui/channels-commands.[ch]: channels_new_channel_query:
|
||
* app/gui/layers-commands.[ch]: layers_new_layer_query:
|
||
|
||
Added the "template" parameter because they are used as the
|
||
views' new_drawable_func(), create layers/channels with
|
||
the template's properties if a template is passed.
|
||
|
||
2001-12-17 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/core/gimpimage-mask.c: oops, GIMP_IS_DRAWABLE(gimage) will
|
||
always fail :-) fixed.
|
||
|
||
2001-12-17 Sven Neumann <sven@gimp.org>
|
||
|
||
* gimpconfig.[ch]: don't serialize unknown tokens; leave that to
|
||
the gimprc implementation. Create file with correct permissions.
|
||
|
||
* test-config.c: changed accordingly.
|
||
|
||
* gimpguiconfig.[ch]: added more properties.
|
||
|
||
2001-12-16 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/config/Makefile.am
|
||
* app/config/gimpguiconfig.[ch]
|
||
* app/config/test-config.c: started to implement GimpGuiConfig.
|
||
|
||
* app/config/gimpcoreconfig.c: set default for image-comment.
|
||
|
||
2001-12-16 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/core/gimpcoreconfig.[ch]: changed thumbnail_mode to boolean
|
||
write_thumbnails. thumbnail_mode used to have only two defined
|
||
values; if we need more later, we can change that easily when the
|
||
new GimpConfig system is in place.
|
||
|
||
* app/gimprc.c
|
||
* app/file/file-save.c
|
||
* app/gui/file-open-dialog.c
|
||
* app/gui/preferences-dialog.c: changed accordingly.
|
||
|
||
* app/config/gimpcoreconfig.[ch]: finished GimpCoreConfig class.
|
||
|
||
2001-12-16 Sven Neumann <sven@gimp.org>
|
||
|
||
* docs/make-todo: added icon for developer.gimp.org.
|
||
|
||
2001-12-16 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/config/gimpconfig-params.[ch]
|
||
* app/config/gimpconfig-types.[ch]: added support for GimpUnit type.
|
||
|
||
* app/config/gimpbaseconfig.[ch]
|
||
* app/config/gimpcoreconfig.[ch]
|
||
* app/config/test-config.c: cleaned up includes. Added more properties
|
||
to GimpCoreConfig.
|
||
|
||
* app/libgimp_glue.h
|
||
* libgimpbase/gimpunit.h:
|
||
declared gimp_unit_get_number_of_built_in_units() G_GNUC_CONST.
|
||
|
||
* app/core/gimpunit.[ch]: internal GimpUnit functions return const
|
||
strings.
|
||
|
||
* app/xcf/xcf-save.c: changed accordingly.
|
||
|
||
2001-12-16 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/core/gimpscanconvert.c: merged fix for bug #66003 from stable
|
||
branch.
|
||
|
||
2001-12-16 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/gap/gap_decode_xanim.c (p_xanim_dialog)
|
||
* plug-ins/common/sinus.c (sinus_dialog): merged typo fixes from
|
||
stable branch.
|
||
|
||
2001-12-14 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/core/gimpimage.[ch]: added
|
||
GIMP_IMAGE_TYPE_IS_[RGB|GRAY|INDEXED]() and
|
||
GIMP_IMAGE_TYPE_BASE_TYPE() macros.
|
||
|
||
* app/plug-in/plug-in.[ch]: new enum PlugInImageType instead of
|
||
multiple #defines.
|
||
|
||
* app/gui/file-dialog-utils.[ch]: file_dialog_update_menus(): take
|
||
a GimpImageType instead of the PlugInImageType.
|
||
|
||
* app/core/gimpdrawable-preview.c
|
||
* app/core/gimpdrawable-transform.c
|
||
* app/core/gimpdrawable.c
|
||
* app/core/gimpimage-contiguous-region.c
|
||
* app/core/gimpimage-mask.c
|
||
* app/core/gimpimage-merge.c
|
||
* app/core/gimplayermask.c
|
||
* app/core/gimppalette-import.c
|
||
* app/display/gimpdisplay-handlers.c
|
||
* app/display/gimpdisplayshell-render.c
|
||
* app/gui/file-save-dialog.c
|
||
* app/gui/toolbox.c
|
||
* app/tools/gimpclonetool.c
|
||
* app/tools/gimpcolorpickertool.c
|
||
* tools/pdbgen/pdb/convert.pdb
|
||
* tools/pdbgen/pdb/image.pdb: use the new macros, cleanups like
|
||
storing GimpImageType in GimpImageType variables, not just gint.
|
||
|
||
* app/pdb/convert_cmds.c
|
||
* app/pdb/image_cmds.c: regenerated.
|
||
|
||
* app/widgets/gimpdialogfactory.c: save the state of the "Auto"
|
||
button in sessionrc.
|
||
|
||
2001-12-13 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/config/gimpconfig-deserialize.h
|
||
* app/config/gimpconfig-serialize.c: fixed typos.
|
||
|
||
* app/core/core-enums.h
|
||
* app/core/core-types.h: converted ChannelType enum to GimpChannelType
|
||
and moved it to core-enums.h.
|
||
|
||
* app/core/gimpimage.[ch]
|
||
* app/widgets/gimpchannellistview.c
|
||
* app/widgets/gimpcomponentlistitem.[ch]
|
||
* tools/pdbgen/pdb/image.pdb: changed accordingly.
|
||
|
||
* app/pdb/image_cmds.c
|
||
* libgimp/gimpenums.h
|
||
* plug-ins/script-fu/script-fu-constants.c
|
||
* tools/pdbgen/enums.pl: regenerated.
|
||
|
||
2001-12-13 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/config/gimpconfig-deserialize.c
|
||
* app/config/gimpconfig-params.h
|
||
* app/config/gimpconfig-serialize.[ch]
|
||
* app/config/gimpconfig-substitute.c
|
||
* app/config/gimpconfig-types.c
|
||
* app/config/gimpconfig.[ch]
|
||
* app/config/test-config.c: code cleanup, I18N
|
||
|
||
* app/config/gimpcoreconfig.[ch]: some more properties.
|
||
|
||
2001-12-13 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/core/gimp.[ch]: made gimp->global_buffer a GimpBuffer,
|
||
not TileManager.
|
||
|
||
* app/core/gimpbuffer.[ch]: added a "gboolean copy_pixels" to
|
||
gimp_buffer_new().
|
||
|
||
* app/core/gimpimage-new.c
|
||
* app/core/gimpedit.[ch]
|
||
* app/core/gimpimage-qmask.c
|
||
* app/widgets/gimpbufferpreview.c
|
||
* app/widgets/gimpbufferview.c
|
||
* app/widgets/gimpcontainerview-utils.c: chaned accordingly, don't
|
||
include "base/tile-manager.h".
|
||
|
||
* app/core/gimpdrawable.[ch]: added gimp_drawable_copy().
|
||
|
||
* app/core/gimpchannel.[ch]
|
||
* app/core/gimplayer.[ch]
|
||
* app/core/gimplayermask.[ch]: use it in
|
||
gimp_[channel|layer|layer_mask]_copy(), added "GType new_type" as
|
||
paramater to all of them.
|
||
|
||
* app/core/gimpimage-duplicate.c
|
||
* app/gui/channels-commands.c
|
||
* app/gui/edit-commands.c
|
||
* app/gui/layers-commands.c
|
||
* app/widgets/gimpchannellistview.c
|
||
* tools/pdbgen/pdb/channel.pdb
|
||
* tools/pdbgen/pdb/layer.pdb
|
||
* tools/pdbgen/pdb/selection.pdb: changed accordingly.
|
||
|
||
* app/pdb/channel_cmds.c
|
||
* app/pdb/layer_cmds.c
|
||
* app/pdb/selection_cmds.c: regenerated.
|
||
|
||
* app/core/gimplayer.[ch]: removed the "layer_type" parameter from
|
||
gimp_layer_new_from_tiles() because it always needed to be equal
|
||
to gimp_image_base_type_with_alpha() of the passed image.
|
||
|
||
* app/core/gimpdrawable-transform.c
|
||
* app/core/gimpedit.c
|
||
* app/core/gimpimage-mask.c: cahanged accordingly.
|
||
|
||
* app/core/gimpimage.[ch]: added some new GIMP_IMAGE_TYPE_FOO()
|
||
marcos to get rid of magic values like "pixels = 3" all over the
|
||
place.
|
||
|
||
* app/core/gimplayer.[ch]: added gimp_layer_new_from_drawable()
|
||
which creates a layer from an other image's drawable.
|
||
|
||
* app/core/gimpimage-convert.[ch]: made the RGB and GRAY converters
|
||
public to use them above, use the new GIMP_IMAGE_TYPE() macros.
|
||
|
||
* app/display/gimpdisplayshell-dnd.c
|
||
* app/gui/toolbox.c: removed tile manager stuff and use the new
|
||
functions.
|
||
|
||
* app/widgets/gimpdrawablelistview.[ch]: added a
|
||
"convert_drawable_func" which is used to handle drops from other
|
||
images.
|
||
|
||
* app/widgets/gimpdrawablelistitem.c
|
||
* app/widgets/gimplayerlistitem.c
|
||
* app/widgets/gimplistitem.[ch]: implemented DND of layers between
|
||
images using gimp_layer_new_from_drawable().
|
||
|
||
* app/gui/dialogs-constructors.c: changed accordingly.
|
||
|
||
2001-12-12 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/core/Makefile.am
|
||
* app/core/gimpimage-pick-color.[ch]: new files.
|
||
|
||
gimp_image_pick_color() doesn't set the FG or BG color and doesn't
|
||
touch the current palettte.
|
||
|
||
* app/tools/gimpcolorpickertool.[ch]: removed the actual picking
|
||
code, set the user_context's FG or BG color here.
|
||
|
||
* app/gui/palette-editor.[ch]:
|
||
s/palette_set_active_color/palette_editor_update_color/, don't set
|
||
the FG and BG color here. The function is still #if 0'ed.
|
||
|
||
* app/gui/toolbox.c: fixed WM resize hints in toolbox_style_set(),
|
||
code cleanup.
|
||
|
||
* app/tools/gimppainttool.[ch]: some cleanup before chopping.
|
||
|
||
* app/tools/gimpsmudgetool.c: changed accordingly.
|
||
|
||
* tools/pdbgen/pdb/misc_tools.pdb: removed the possibility to set
|
||
the FG or BG color or add the picked color to the active palette
|
||
bacause it doesn't belong here. Palette PDB wrappers are on the
|
||
TODO anyway.
|
||
|
||
* app/pdb/misc_tools_cmds.c
|
||
* libgimp/gimpmisctools_pdb.[ch]: regenerated.
|
||
|
||
* plug-ins/perl/examples/image_tile
|
||
* plug-ins/perl/examples/logulator
|
||
* plug-ins/script-fu/scripts/hsv-graph.scm
|
||
* plug-ins/script-fu/scripts/title-header.scm: changed accordingly.
|
||
|
||
2001-12-12 Michael Natterer <mitch@gimp.org>
|
||
|
||
* docs/Wilber_Construction_Kit.xcf.gz: new version with additional
|
||
layers by Ville P<>tsi (drc).
|
||
|
||
2001-12-12 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/config/gimpconfig-deserialize.c
|
||
* app/config/gimpconfig-serialize.c
|
||
* app/config/gimpconfig-substitute.c: plugged a memleak and applied
|
||
some optimizations.
|
||
|
||
2001-12-11 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/core/core-enums.h
|
||
* app/core/core-types.h: moved gradient enums to core-enums.h and
|
||
namespaceified them.
|
||
|
||
* app/core/gimpdrawable-blend.[ch]
|
||
* app/core/gimpgradient.c
|
||
* app/gui/gradient-editor-commands.c
|
||
* app/pdb/misc_tools_cmds.c
|
||
* app/tools/gimpblendtool.c
|
||
* tools/pdbgen/pdb/misc_tools.pdb: changed accordingly.
|
||
|
||
* libgimp/gimpenums.h
|
||
* plug-ins/script-fu/script-fu-constants.c
|
||
* tools/pdbgen/enums.pl: regenerated.
|
||
|
||
2001-12-11 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/base/base-enums.h
|
||
* app/base/base-types.h: moved all remaining enums to base-enums.h
|
||
|
||
* app/core/core-enums.h
|
||
* app/core/core-types.h: moved GimpImageType to core-enums.h and
|
||
changed the values from RGB_GIMAGE to GIMP_RGB_IMAGE and the like.
|
||
|
||
* app/core/gimpchannel.c
|
||
* app/core/gimpdrawable-preview.c
|
||
* app/core/gimpdrawable-transform.c
|
||
* app/core/gimpdrawable.c
|
||
* app/core/gimpimage-contiguous-region.c
|
||
* app/core/gimpimage-convert.c
|
||
* app/core/gimpimage-mask.c
|
||
* app/core/gimpimage-merge.c
|
||
* app/core/gimpimage-new.c
|
||
* app/core/gimpimage-projection.c
|
||
* app/core/gimpimage.[ch]
|
||
* app/core/gimplayer.c
|
||
* app/core/gimplayermask.c
|
||
* app/core/gimppalette-import.c
|
||
* app/display/gimpdisplayshell-dnd.c
|
||
* app/display/gimpdisplayshell-render.c
|
||
* app/gui/file-save-dialog.c
|
||
* app/gui/toolbox.c
|
||
* app/plug-in/plug-in.c
|
||
* app/tools/gimpblendtool.c
|
||
* app/tools/gimpcolorpickertool.c
|
||
* app/tools/gimpdodgeburntool.c: changed accordingly.
|
||
|
||
* tools/pdbgen/Makefile.am: no need to parse app/base/base-types.h
|
||
any longer.
|
||
|
||
* app/pdb/color_cmds.c
|
||
* app/pdb/drawable_cmds.c
|
||
* app/pdb/layer_cmds.c
|
||
* app/pdb/paint_tools_cmds.c
|
||
* tools/pdbgen/enums.pl: regenerated.
|
||
|
||
2001-12-11 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/core/core-types.h: removed GimpImageBaseType enum ...
|
||
|
||
* app/core/core-enums.h: and added it here with proper namespace
|
||
(enum values prefixed with GIMP_).
|
||
|
||
* app/gimprc.c
|
||
* app/core/gimpcoreconfig.c
|
||
* app/core/gimpdrawable-bucket-fill.c
|
||
* app/core/gimpdrawable-preview.c
|
||
* app/core/gimpdrawable.c
|
||
* app/core/gimpedit.c
|
||
* app/core/gimpimage-convert.c
|
||
* app/core/gimpimage-duplicate.c
|
||
* app/core/gimpimage-mask.c
|
||
* app/core/gimpimage-merge.c
|
||
* app/core/gimpimage-new.c
|
||
* app/core/gimpimage-projection.c
|
||
* app/core/gimpimage.c
|
||
* app/core/gimplayer.c
|
||
* app/core/gimppalette-import.c
|
||
* app/display/gimpdisplay-handlers.c
|
||
* app/display/gimpdisplayshell-dnd.c
|
||
* app/display/gimpdisplayshell.c
|
||
* app/file/file-utils.c
|
||
* app/gui/colormap-dialog.c
|
||
* app/gui/convert-dialog.c
|
||
* app/gui/info-window.c
|
||
* app/gui/layers-commands.c
|
||
* app/gui/palette-import-dialog.c
|
||
* app/gui/preferences-dialog.c
|
||
* app/gui/toolbox.c
|
||
* app/tools/gimpclonetool.c
|
||
* app/tools/gimppainttool.c
|
||
* app/widgets/gimpchannellistview.c
|
||
* tools/pdbgen/Makefile.am
|
||
* tools/pdbgen/pdb/convert.pdb
|
||
* tools/pdbgen/pdb/image.pdb: changed accordingly.
|
||
|
||
* tools/pdbgen/enums.pl
|
||
* app/pdb/convert_cmds.c
|
||
* app/pdb/image_cmds.c
|
||
* libgimp/gimpconvert_pdb.c
|
||
* libgimp/gimpimage_pdb.c: regenerated.
|
||
|
||
* app/config/Makefile.am
|
||
* app/config/gimpconfig-params.h
|
||
* app/config/gimpconfig-serialize.c
|
||
* app/config/gimpcoreconfig.[ch]: added more stuff to GimpCoreConfig.
|
||
|
||
2001-12-10 Sven Neumann <sven@gimp.org>
|
||
|
||
* libgimpbase/Makefile.am
|
||
* libgimpbase/gimpenv.[ch]: added new function gimp_plug_in_directory()
|
||
to retrieve the compile_time defined plug_in directory. Declared some
|
||
functions G_GNUC_CONST and simplified code by introducing a helper
|
||
function.
|
||
|
||
* app/config/Makefile.am
|
||
* app/config/gimpcoreconfig.[ch]: started to implement GimpCoreConfig
|
||
derived from GimpBaseConfig.
|
||
|
||
* app/config/gimpbaseconfig.[ch]: misc small changes.
|
||
|
||
* app/config/gimpconfig-deserialize.c
|
||
(gimp_config_deserialize_properties): return quietly if there are no
|
||
properties.
|
||
|
||
* app/config/gimpconfig-substitute.c: more special cases.
|
||
|
||
* app/config/test-config.c: test GimpCoreConfig.
|
||
|
||
2001-12-10 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/config/Makefile.am
|
||
* app/config/gimpconfig-substitute.[ch]: new files with code to do
|
||
substitution magic on path strings. Similar to the code in gimprc.c
|
||
but UTF8 safe.
|
||
|
||
* app/config/gimpconfig-params.h
|
||
* app/config/gimpbaseconfig.c: added a bunch of convenience macros
|
||
to register config properties and use them for GimpBaseConfig.
|
||
|
||
* app/config/gimpconfig-types.h: added missing GIMP_VALUE_HOLDS_FOO()
|
||
macros.
|
||
|
||
* app/config/gimpconfig-deserialize.c: UTF8-validate all strings.
|
||
|
||
* app/config/gimpconfig-serialize.c: some code reorganisation.
|
||
|
||
2001-12-10 Michael Natterer <mitch@gimp.org>
|
||
|
||
* plug-ins/common/screenshot.c: removed deprecated use of
|
||
"user_data" together with libgimpwidgets standard
|
||
callbacks. Reported by Carbamide on #gimp.
|
||
|
||
2001-12-10 Michael Natterer <mitch@gimp.org>
|
||
|
||
* tools/pdbgen/pdb/tools.pdb: removed, chopped...
|
||
|
||
* tools/pdbgen/pdb/misc_tools.pdb
|
||
* tools/pdbgen/pdb/paint_tools.pdb: ...and added here.
|
||
|
||
* app/pdb/tools_cmds.c
|
||
* libgimp/gimptools_pdb.[ch]: removed.
|
||
|
||
* app/pdb/internal_procs.c
|
||
* app/pdb/misc_tools_cmds.c
|
||
* app/pdb/paint_tools_cmds.c
|
||
* libgimp/gimpmisctools_pdb.[ch]
|
||
* libgimp/gimppainttools_pdb.[ch]: generated files.
|
||
|
||
* app/pdb/Makefile.am
|
||
* libgimp/Makefile.am
|
||
* libgimp/gimp_pdb.h
|
||
* tools/pdbgen/Makefile.am
|
||
* tools/pdbgen/groups.pl: changed accordingly.
|
||
|
||
* tools/pdbgen/pdb/selection_tools.pdb
|
||
* tools/pdbgen/pdb/transform_tools.pdb: cosmetic comment changes.
|
||
|
||
2001-12-10 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/base/Makefile.am
|
||
* app/core/Makefile.am: use GLIB_GENMARSHAL and GLIB_MKENUMS variables
|
||
declared by AM_PATH_GLIB_2_0 instead of calling the binaries directly.
|
||
|
||
2001-12-10 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/config/gimpconfig-deserialize.c
|
||
* app/config/gimpconfig.c: stricter parsing.
|
||
|
||
* app/config/test-config.c: more output.
|
||
|
||
2001-12-09 Sven Neumann <sven@gimp.org>
|
||
|
||
* autogen.sh: check for pkg.m4.
|
||
|
||
* configure.in: removed logic to extract GLIB CFLAGS and LDFLAGS
|
||
from the GTK CFLAGS and LDFLAGS. Use AM_PATH_GLIB_2_0() instead.
|
||
This change will break things on awfully misconfigured systems.
|
||
Simplified the checks and moved version numbers to the top to ease
|
||
maintainance. Check if gtk-doc is suffiently new.
|
||
|
||
* app/main.c: removed the GimpConfig test code.
|
||
|
||
* app/config/Makefile.am
|
||
* app/config/test-config.c: added a (yet very small) standalone test
|
||
suite for GimpConfig.
|
||
|
||
* app/config/gimpconfig.[ch]
|
||
* app/config/gimpconfig-deserialize.[ch]: allow to specify if
|
||
unknown tokens should be stored or should cause a parser error.
|
||
Changed code to store unknown tokens to use a list since a hash
|
||
table seems to be overkill here.
|
||
|
||
2001-12-09 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/config/gimpconfig-params.[ch]
|
||
* app/config/gimpconfig-types.[ch]: added new param_spec
|
||
GIMP_PARAM_PATH with value_type GIMP_PATH_TYPE.
|
||
|
||
* app/config/gimpconfig.[ch]: added code to store and lookup unknown
|
||
tokens.
|
||
|
||
* app/config/gimpconfig-deserialize.c: improved logic, prepared for
|
||
special handling of GIMP_PATH_TYPE; still work in progress...
|
||
|
||
* app/config/gimpbaseconfig.c: register temp-path and swap-path as
|
||
GIMP_PARAM_PATH properties.
|
||
|
||
2001-12-08 Sven Neumann <sven@gimp.org>
|
||
|
||
* tools/pdbgen/enumgen.pl: introduced new trigraph keyword
|
||
/*< pdb-skip >*/ used to skip enums for inclusion in libgimp when
|
||
parsing headers. The keyword /*< skip >*/ is still used to skip
|
||
enum values. This change is necessary since glib-mkenums also uses
|
||
/*< skip >*/.
|
||
|
||
* app/base/base-types.h * app/base/base-enums.h: moved
|
||
GimpCheckType and GimpCheckSize to base-enums.h so they get
|
||
registered with the type system, marked them as /*< pdb-skip >*/.
|
||
|
||
* app/core/core-types.h * app/display/display-types.h *
|
||
app/paint-funcs/paint-funcs-types.h * app/tools/gimppainttool.h *
|
||
app/tools/tools-types.h: changed /*< skip >*/ to /*< pdb-skip >*/.
|
||
|
||
2001-12-08 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/core/Makefile.am
|
||
* app/core/core-enums.h: new file that holds enums that are registered
|
||
with the type system and is used to generate core-enums.c.
|
||
|
||
* app/core/core-types.h: include core-enums.h
|
||
|
||
* app/base/base-types.h: namespace cleanup. Prefix all enumeration
|
||
types with Gimp and their values with GIMP. Moved GimpLayerModeEffects
|
||
enum ...
|
||
|
||
* app/base/base-enums.h: ... here.
|
||
|
||
* app/image_map.c
|
||
* app/base/temp-buf.c
|
||
* app/core/gimpcontext.[ch]
|
||
* app/core/gimpdrawable-transform.c
|
||
* app/core/gimpdrawable.c
|
||
* app/core/gimpedit.c
|
||
* app/core/gimpimage-mask.c
|
||
* app/core/gimpimage-merge.c
|
||
* app/core/gimpimage-new.c
|
||
* app/core/gimpimage-projection.c
|
||
* app/core/gimpimage.[ch]
|
||
* app/core/gimplayer.[ch]
|
||
* app/display/gimpdisplayshell-dnd.c
|
||
* app/display/gimpdisplayshell-render.c
|
||
* app/gui/brush-select.c
|
||
* app/gui/layers-commands.c
|
||
* app/gui/preferences-dialog.c
|
||
* app/gui/toolbox.c
|
||
* app/paint-funcs/paint-funcs.[ch]
|
||
* app/tools/gimpconvolvetool.c
|
||
* app/tools/gimperasertool.c
|
||
* app/tools/gimpiscissorstool.c
|
||
* app/tools/gimppainttool.[ch]
|
||
* app/tools/gimptexttool.c
|
||
* app/tools/paint_options.c
|
||
* app/widgets/gimplayerlistview.c
|
||
* app/widgets/gimpwidgets-constructors.[ch]
|
||
* app/xcf/xcf-load.c
|
||
* tools/pdbgen/pdb/brush_select.pdb
|
||
* tools/pdbgen/pdb/brushes.pdb
|
||
* tools/pdbgen/pdb/color.pdb
|
||
* tools/pdbgen/pdb/layer.pdb
|
||
* tools/pdbgen/pdb/tools.pdb: changed accordingly.
|
||
|
||
* libgimpbase/gimpbasetypes.h: no need to chop GIMP prefix off the
|
||
enums any longer.
|
||
|
||
* app/pdb/brush_select_cmds.c
|
||
* app/pdb/brushes_cmds.c
|
||
* app/pdb/color_cmds.c
|
||
* app/pdb/layer_cmds.c
|
||
* app/pdb/message_cmds.c
|
||
* app/pdb/procedural_db_cmds.c
|
||
* app/pdb/tools_cmds.c
|
||
* libgimp/gimpenums.h
|
||
* plug-ins/script-fu/script-fu-constants.c
|
||
* tools/pdbgen/enums.pl: regenerated.
|
||
|
||
* app/gimprc.c: removed code to parse for "plug_in" keyword which was
|
||
left over from some very early gimp days.
|
||
|
||
* app/plug-in/plug-in.[ch]: removed now unused function plug_in_add().
|
||
|
||
2001-12-08 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/core/Makefile.am: fixed build rules for gimpmarshal.[ch].
|
||
|
||
2001-12-08 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/config/gimpconfig-deserialize.c: improved code readability by
|
||
splitting deserialize_property into smaller functions.
|
||
|
||
* app/config/gimpconfig.[ch]: added gimp_config_debug_notify_callback()
|
||
for debugging purposes.
|
||
|
||
* app/main.c: use gimp_config_debug_notify_callback().
|
||
|
||
2001-12-08 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/config/Makefile.am
|
||
* app/config/gimpconfig-params.[ch]
|
||
* app/config/gimpconfig-types.[ch]: new files implementing special
|
||
GParamSpecs and GValueTypes needed for GimpConfig.
|
||
|
||
* app/config/gimpbaseconfig.c: register tile-cache-size property
|
||
with GimpParamSpecMemsize.
|
||
|
||
* app/config/gimpconfig-deserialize.[ch]
|
||
* app/config/gimpconfig-serialize.[ch]: enable serialization and
|
||
deserialization of non-fundamental types.
|
||
|
||
2001-12-07 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/devices.[ch]: removed, chopped...
|
||
|
||
* app/widgets/Makefile.am
|
||
* app/widgets/widgets-types.h
|
||
* app/gui/Makefile.am
|
||
|
||
* app/widgets/gimpdeviceinfo.[ch]
|
||
* app/widgets/gimpdevices.[ch]
|
||
* app/gui/device-status-dialog.[ch]
|
||
* app/gui/input-dialog.[ch]: ...and added here.
|
||
|
||
Made GimpToolInfo a GimpContext subclass. Create a GimpDeviceManager
|
||
struct in gimpdevices.c and attach it to the Gimp instance.
|
||
|
||
* app/core/gimp.[ch]: removed gimp_create_context(). It was a bad
|
||
idea in the first place beause it prevented GimpContext subclasses
|
||
from being be properly registered with their Gimp instance.
|
||
|
||
* app/core/gimpcontext.c: moved the stuff which used to be in
|
||
gimp_create_context() back here. Added a "gimp" property which
|
||
must be set on construction. Added a "dispose" implementation
|
||
which removes the context from it's Gimp's context_list.
|
||
|
||
* app/gimprc.c
|
||
* app/core/gimptoolinfo.[ch]
|
||
* app/display/gimpdisplayshell-callbacks.c
|
||
* app/gui/brush-select.c
|
||
* app/gui/dialogs-constructors.c
|
||
* app/gui/gradient-editor.c
|
||
* app/gui/gradient-select.c
|
||
* app/gui/gui.c
|
||
* app/gui/menus.c
|
||
* app/gui/palette-editor.c
|
||
* app/gui/palette-select.c
|
||
* app/gui/pattern-select.c
|
||
* app/gui/toolbox.c
|
||
* app/tools/gimppainttool.c
|
||
* app/tools/tool_manager.c
|
||
* app/widgets/gimpimagedock.c: changed accordingly.
|
||
|
||
* app/gui/tools-commands.[ch]: made all callback signatures
|
||
the same.
|
||
|
||
* app/gui/preferences-dialog.c: cleaned up the
|
||
display_format_string GtkCombo code.
|
||
|
||
2001-12-07 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/core/gimpmarshal.[ch]: removed from CVS, they are generated.
|
||
|
||
* app/base/Makefile.am
|
||
* app/base/base-enums.h: new file defining enums that are to be
|
||
registered. Used to build app/base/base-enums.c.
|
||
|
||
* app/base/base-types.h: include base-enums.h.
|
||
|
||
* tools/pdbgen/Makefile.am
|
||
* tools/pdbgen/enumcode.pl
|
||
* tools/pdbgen/enums.pl: parse the new base-enums.h file and modified
|
||
the perl voodoo so it doesn't prefix enums with GIMP_ that are already
|
||
properly namespaced.
|
||
|
||
* app/core/core-types.h: don't need to chop GIMP from enum.
|
||
|
||
* app/pdb/color_cmds.c
|
||
* app/pdb/tools_cmds.c
|
||
* libgimp/gimpenums.h
|
||
* plug-ins/script-fu/script-fu-constants.c: regenerated.
|
||
|
||
* app/config/gimpconfig-deserialize.[ch]
|
||
* app/config/gimpconfig-serialize.[ch]
|
||
* app/config/gimpconfig.[ch]: made GimpConfig an interface including
|
||
a reasonable default implementation that works on object properties.
|
||
|
||
* app/config/Makefile.am
|
||
* app/config/gimpbaseconfig.[ch]: new GimpBaseConfig using the
|
||
GimpConfig interface. Yet only used for testing from app/main.c.
|
||
|
||
* app/main.c: test the new GimpBaseConfig object.
|
||
|
||
* app/gimprc.c
|
||
* app/base/base-config.h
|
||
* app/base/*.c
|
||
* app/core/gimpdatafiles.c
|
||
* app/core/gimpdrawable-transform.c
|
||
* app/core/gimppreviewcache.c
|
||
* app/gui/preferences-dialog.c
|
||
* app/paint-funcs/paint-funcs.c
|
||
* app/xcf/xcf-seek.c: need to include glib-object.h since base-config
|
||
contains registered enums now. Follow name change of InterpolationType
|
||
to GimpInterpolationType.
|
||
|
||
2001-12-06 David Neary <bolsh@gimp.org>
|
||
|
||
* plug-ins/common/vpropagate.c: Create Erode and Dilate filter
|
||
menu entries with reasonable defaults for this plug-in.
|
||
|
||
2001-12-06 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/gui/offset-dialog.c: some GUI fiddling.
|
||
|
||
2001-12-06 Rebecca Walter <bex@gimp.org>
|
||
|
||
* app/gui/module-browser.c
|
||
* app/gui/offset-dialog.c: More of my proofing.
|
||
|
||
2001-12-06 Dindinx <David@dindinx.org>
|
||
|
||
* plug-ins/*/*.c: use the G_N_ELEMENTS macro where appropriate,
|
||
removing a bunch of unuseful static variables. Changed some
|
||
g_malloc to g_new while I was on it.
|
||
|
||
2001-12-03 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/devices.c: use the passed Gimp pointer instead of
|
||
using "the_gimp".
|
||
|
||
* app/base/temp-buf.c: indentation.
|
||
|
||
* app/gui/preferences-dialog.c: prefs_toggle_callback(): fixed
|
||
segfault when trying to find the prefs_dlg widget from a menu
|
||
item callback (Fixes #65757).
|
||
|
||
* app/gui/offset-dialog.[ch]: fixed public prototype, include
|
||
the header in the .c file.
|
||
|
||
* app/tools/gimpblendtool.c
|
||
* app/tools/paint_options.c
|
||
* app/tools/transform_options.c: removed usage of "the_gimp".
|
||
|
||
* app/gui/menus.c: some menu cleanup: moved all functions which
|
||
operate on the active layer/drawable to <Image>/Layer. Renamed
|
||
"Layers" to "Layer".
|
||
|
||
* app/display/gimpdisplayshell.c: changed menu update function
|
||
accordingly.
|
||
|
||
* app/gui/image-commands.[ch]
|
||
* app/gui/layers-commands.[ch]: moved stuff from image-commands.*
|
||
to layers-commads.*.
|
||
|
||
* app/tools/gimpbrightnesscontrasttool.c
|
||
* app/tools/gimpcolorbalancetool.c
|
||
* app/tools/gimpcurvestool.c
|
||
* app/tools/gimphistogramtool.c
|
||
* app/tools/gimphuesaturationtool.c
|
||
* app/tools/gimplevelstool.c
|
||
* app/tools/gimpposterizetool.c
|
||
* app/tools/gimpthresholdtool.c
|
||
* plug-ins/common/align_layers.c
|
||
* plug-ins/common/autocrop.c
|
||
* plug-ins/common/autostretch_hsv.c
|
||
* plug-ins/common/c_astretch.c
|
||
* plug-ins/common/color_enhance.c
|
||
* plug-ins/common/guillotine.c
|
||
* plug-ins/common/normalize.c
|
||
* plug-ins/common/rotate.c
|
||
* plug-ins/common/threshold_alpha.c
|
||
* plug-ins/common/zealouscrop.c
|
||
* plug-ins/rcm/rcm.c
|
||
* plug-ins/fp/fp.c: register under <Image>/Layer, some cosmetic
|
||
fixes.
|
||
|
||
2001-12-03 Sven Neumann <sven@gimp.org>
|
||
Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/paint-funcs/paint-funcs-mmx.h: removed redefiniton of HAS_ALPHA
|
||
macro.
|
||
|
||
* app/core/gimp.c: reverted Daniel's change; it doesn't make the code
|
||
simpler, only more error-prone.
|
||
|
||
* app/gui/info-dialog.h
|
||
* app/gui/resize-dialog.h
|
||
* app/core/gimp.h
|
||
* app/core/gimpbrushgenerated.h
|
||
* app/core/gimpbrushpipe.h
|
||
* app/core/gimpchannel.[ch]
|
||
* app/core/gimpcontainer.h
|
||
* app/core/gimpcoreconfig.h
|
||
* app/core/gimpdata.h
|
||
* app/core/gimpdatafactory.[ch]
|
||
* app/core/gimpdrawable-blend.c
|
||
* app/core/gimpdrawable.[ch]
|
||
* app/core/gimpimage.h
|
||
* app/core/gimpimagefile.h
|
||
* app/core/gimplayer.h
|
||
* app/core/gimplayermask.h
|
||
* app/core/gimpmoduleinfo.h
|
||
* app/core/gimppalette.h
|
||
* app/core/gimpundo.h
|
||
* app/widgets/gimpbrushfactoryview.h
|
||
* app/widgets/gimpconstrainedhwrapbox.h
|
||
* app/widgets/gimpcontainermenu.h
|
||
* app/widgets/gimpcontainerview.h
|
||
* app/widgets/gimpdialogfactory.h
|
||
* app/widgets/gimpimagedock.h
|
||
* app/widgets/gimplistitem.h
|
||
* app/widgets/gimpmenuitem.h
|
||
* app/widgets/gimpnavigationpreview.h
|
||
* app/widgets/gimppreview.h
|
||
* app/gimprc.h
|
||
* app/pathP.h
|
||
* app/tools/gimpbezierselecttool.h
|
||
* app/tools/gimpcolorbalancetool.h
|
||
* app/tools/gimpcurvestool.h
|
||
* app/tools/gimpdodgeburntool.c
|
||
* app/tools/gimpfreeselecttool.h
|
||
* app/tools/gimphuesaturationtool.h
|
||
* app/tools/gimpinktool-blob.h
|
||
* app/tools/gimpinktool.h
|
||
* app/tools/gimpiscissorstool.h
|
||
* app/tools/gimpmagnifytool.h
|
||
* app/tools/gimpmeasuretool.h
|
||
* app/tools/gimppainttool.h
|
||
* app/tools/gimppathtool.h
|
||
* app/tools/gimprectselecttool.h
|
||
* app/tools/gimpthresholdtool.h
|
||
* app/tools/gimptool.h
|
||
* app/tools/gimptransformtool.h
|
||
* app/base/base-config.h
|
||
* app/base/gimplut.[ch]
|
||
* app/base/pixel-region.h
|
||
* app/base/pixel-surround.[ch]
|
||
* app/base/temp-buf.[ch]
|
||
* app/base/tile-manager-private.h
|
||
* app/base/tile-manager.[ch]
|
||
* app/base/tile-private.h
|
||
* app/base/tile.[ch]
|
||
* app/display/gimpdisplay.h
|
||
* app/display/gimpdisplayshell-selection.h
|
||
* app/display/gimpdisplayshell.h
|
||
* app/gui/brush-select.h
|
||
* app/gui/gradient-editor.h
|
||
* app/gui/gradient-select.h: reverted most of Daniel's changes.
|
||
|
||
There's no reason to use unsigned integers here and in lots of places
|
||
it is even wrong.
|
||
|
||
Then it's way too early to convert gbooleans into bitfields. This
|
||
change may make sense in a few places but can happen later when the
|
||
API has settled and the code is more stable.
|
||
|
||
* app/gimprc.c: reverted Daniel's change. This is a GCC-ism and this
|
||
code is about to die soon anyway.
|
||
|
||
2001-12-03 Daniel Egger <degger@fhm.edu>
|
||
|
||
* app/core/gimp.c: Simplified logic thanks to bitfields.
|
||
|
||
2001-12-02 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/plug-in/plug-in.c: use g_tree_foreach() instead of deprecated
|
||
g_tree_traverse().
|
||
|
||
* app/undo_history.c
|
||
* app/display/gimpdisplayshell-selection.c
|
||
* app/display/gimpdisplayshell.c
|
||
* app/gui/about-dialog.c
|
||
* app/gui/color-area.c
|
||
* app/gui/color-select.c
|
||
* app/gui/gradient-editor.c
|
||
* app/gui/gui.c
|
||
* app/gui/paths-dialog.c
|
||
* app/gui/user-install-dialog.c
|
||
* app/tools/gimpcurvestool.c
|
||
* app/tools/gimpinktool.c
|
||
* app/widgets/gimpcursor.c
|
||
* app/widgets/gimpnavigationpreview.c
|
||
* libgimpwidgets/gimpchainbutton.c
|
||
* libgimpwidgets/gimppixmap.c
|
||
* plug-ins/common/animationplay.c
|
||
* plug-ins/common/uniteditor.c
|
||
* plug-ins/ifscompose/ifscompose.c: s/gdk_gc_unref/g_object_unref/,
|
||
s/gdk_drawable_unref/g_object_unref/
|
||
|
||
2001-12-02 Daniel Egger <degger@fhm.edu>
|
||
|
||
* app/gimprc.c: Convert ugly comments into named structure fields.
|
||
Much cleaner and less errorprone though may cause troubles on
|
||
older compilers and then needs to be reverted. Please report!
|
||
|
||
* app/base/base-types.h: Add FIXME reminder.
|
||
|
||
* app/base/gimplut.c: Use CLAMP macro instead of if-cascade.
|
||
|
||
* app/base/temp-buf.c: Remove duplicated calculations and simplify
|
||
checks.
|
||
|
||
* app/base/tile-manager.c:
|
||
- (tile_manager_get_tile_num): Return success and take an additional
|
||
pointer for the tilenumber.
|
||
- Simplify logic in the rest of the file as a result.
|
||
- Remove rotten debugging cruft.
|
||
|
||
* app/core/gimpbrushgenerated.c: Fix two stylistic nits.
|
||
|
||
* app/app_procs.c: Include <stdlib.h> for exit () prototype.
|
||
|
||
* app/core/gimpdrawable-blend.c: Include <stdlib.h> for abs ()
|
||
prototype.
|
||
|
||
* app/display/gimpdisplay.c: Include <string.h> for memcpy ()
|
||
prototype.
|
||
|
||
* app/core/gimpimage-convert.c: (HIST_RGB): First parameter is
|
||
not const. Fixes a gcc warning for a wrong return value.
|
||
|
||
* libgimpwidgets/gimpunitmenu.c
|
||
* app/core/gimpunit.c: Add suggested (by gcc 3.1 cvs) parentheses
|
||
to group correct logic tests together.
|
||
|
||
* app/paint-funcs/paint-funcs-generic.h: Fix my HAS_ALPHA macro
|
||
to avoid gcc 3.1 cvs warning.
|
||
|
||
* app/gimprc.h
|
||
* pathP.h
|
||
* base-config.h
|
||
* app/base/boundary.h
|
||
* app/base/gimplut.[ch]
|
||
* app/base/pixel-region.h
|
||
* app/base/pixel-surround.[ch]
|
||
* app/base/temp-buf.[ch]
|
||
* app/base/tile-manager-private.h
|
||
* app/base/tile-manager.c
|
||
* app/base/tile-private.h
|
||
* app/base/tile.[ch]
|
||
* app/core/gimp.h
|
||
* app/core/gimpbrushgenerated.h
|
||
* app/core/gimpbrushpipe.h
|
||
* app/core/gimpchannel.[ch]
|
||
* app/core/gimpcontainer.h
|
||
* app/core/gimpcoreconfig.h
|
||
* app/core/gimpdata.h
|
||
* app/core/gimpdatafactory.[ch]
|
||
* app/core/gimpdrawable-blend.c
|
||
* app/core/gimpdrawable.[ch]
|
||
* app/core/gimpimage.h
|
||
* app/core/gimpimagefile.h
|
||
* app/core/gimplayer.h
|
||
* app/core/gimplayermask.h
|
||
* app/core/gimpmoduleinfo.h
|
||
* app/core/gimppalette.h
|
||
* app/core/gimpundo.h
|
||
* app/display/gimpdisplay.h
|
||
* app/display/gimpdisplayshell-selection.h
|
||
* app/display/gimpdisplayshell.h
|
||
* app/gui/brush-select.h
|
||
* app/gui/gradient-editor.h
|
||
* app/gui/gradient-select.h
|
||
* app/gui/info-dialog.h
|
||
* app/gui/resize-dialog.h
|
||
* app/tools/gimpbezierselecttool.h
|
||
* app/tools/gimpcolorbalancetool.h
|
||
* app/tools/gimpcolorpickertool.h
|
||
* app/tools/gimpcurvestool.h
|
||
* app/tools/gimpdodgeburntool.c
|
||
* app/tools/gimpfreeselecttool.h
|
||
* app/tools/gimpfuzzyselecttool.h
|
||
* app/tools/gimphuesaturationtool.h
|
||
* app/tools/gimpinktool-blob.h
|
||
* app/tools/gimpinktool.h
|
||
* app/tools/gimpiscissorstool.h
|
||
* app/tools/gimpmagnifytool.h
|
||
* app/tools/gimpmeasuretool.h
|
||
* app/tools/gimppainttool.h
|
||
* app/tools/gimppathtool.h
|
||
* app/tools/gimprectselecttool.h
|
||
* app/tools/gimpthresholdtool.h
|
||
* app/tools/gimptool.h
|
||
* app/tools/gimptransformtool.h
|
||
* app/tools/path_toolP.h
|
||
* app/widgets/gimpbrushfactoryview.h
|
||
* app/widgets/gimpconstrainedhwrapbox.h
|
||
* app/widgets/gimpcontainermenu.h
|
||
* app/widgets/gimpcontainerview.h
|
||
* app/widgets/gimpdialogfactory.h
|
||
* app/widgets/gimpimagedock.h
|
||
* app/widgets/gimplistitem.h
|
||
* app/widgets/gimpmenuitem.h
|
||
* app/widgets/gimpnavigationpreview.h
|
||
* app/widgets/gimppreview.h: Unsignify lots of variables and
|
||
parameters and use bitfields in structs where possible. First
|
||
part of a huge cleanup all over the code...
|
||
|
||
2001-12-01 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/errors.c: forgot a "return".
|
||
|
||
* app/gui/error-console-dialog.c: the menu item signals were
|
||
connected "swapped", which is wrong.
|
||
|
||
* app/tools/gimperasertool.c: added a cursor_update_func(), update
|
||
the "toggled" state there and chain up. Fixes wrong cursor
|
||
updating.
|
||
|
||
Made brush_pipe slection work again, removed the #warnings:
|
||
|
||
* app/core/gimpbrush.[ch]
|
||
* app/core/gimpbrushpipe.c: changed brush_class->select_brush()
|
||
and brush_class->want_null_motion() to be proper virtual
|
||
functions. Pass last_coords and cur_coords to them.
|
||
|
||
* app/tools/gimppainttool.c: call the functions again.
|
||
|
||
2001-12-01 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/main.c
|
||
* app/appenv.h: moved "message_handler" from here...
|
||
|
||
* app/core/gimp.[ch]: ...to here. Added gimp_message() and a
|
||
"gui_message_func" pointer...
|
||
|
||
* app/gui/gui.c: ...which gets set here to gui_message().
|
||
|
||
* app/errors.c: don't include any gui stuff but simply call
|
||
gimp_message().
|
||
|
||
* app/app_procs.c: don't set "message_handler" here, it's done in
|
||
gui.c now.
|
||
|
||
* app/gui/error-console-dialog.[ch]: use gimp->message_handler.
|
||
|
||
* app/gui/dialogs-constructors.c: pass a Gimp pointer to
|
||
error_console_create().
|
||
|
||
* app/widgets/gimpwidgets-utils.[ch]: made the "message" parameter
|
||
of gimp_message_box() a const gchar*, not just gchar*.
|
||
|
||
* tools/pdbgen/pdb/message.pdb: use gimp->message_handler, don't
|
||
include "appenv.h".
|
||
|
||
* app/pdb/message_cmds.c: regenerated.
|
||
|
||
* app/devices.[ch]: cleanup before chopping: removed global
|
||
variable "current_device", added devices_get_current(), pass lots
|
||
of Gimp pointers around.
|
||
|
||
* app/gimprc.c: pass a Gimp pointer to devices_rc_update().
|
||
|
||
* app/display/gimpdisplayshell-callbacks.c
|
||
* app/gui/toolbox.c
|
||
* app/tools/gimppainttool.c: use devices_get_current(), pass Gimp
|
||
pointers to all devices_foo() functions.
|
||
|
||
* app/core/gimpimage-mask.c: no need to include "pdb/pdb-types.h".
|
||
|
||
2001-12-01 Daniel Egger <degger@fhm.edu>
|
||
|
||
* app/core/Makefile.am
|
||
* libgimp/Makefile.am
|
||
* libgimpbase/Makefile.am
|
||
* libgimpcolor/Makefile.am
|
||
* libgimpmath/Makefile.am
|
||
* libgimpwidgets/Makefile.am
|
||
* modules/Makefile.am
|
||
* themes/Default/Makefile.am: Don't try to concatenate something
|
||
to a variable not used before but simply assign it. Shuts up
|
||
annoying automake warnings for me.
|
||
|
||
2001-12-01 Abel Cheung <maddog@linux.org.hk>
|
||
|
||
* tips/{Makefile.am,makefile.mingw}: Added gimp_tips.zh_TW.txt
|
||
to the targets.
|
||
|
||
* tips/gimp_tips.zh_TW.txt: Added traditional Chinese translation
|
||
in Big5 encoding.
|
||
|
||
2001-11-30 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/plug_in.[ch]: removed...
|
||
|
||
* app/plug-in/Makefile.am
|
||
* app/plug-in/plug-in-types.h
|
||
* app/plug-in/plug-in.[ch]: ...and added here.
|
||
|
||
* app/appenv.h: removed StackTraceMode and MessageHandlerType...
|
||
|
||
* libgimpbase/gimpbasetypes.h: ...and added them here.
|
||
|
||
* tools/pdbgen/Makefile.am: don't scan "app/apptypes.h" for enums.
|
||
|
||
* tools/pdbgen/enumcode.pl: added a general check to prevent
|
||
enums which are defined in libgimp* from being written to
|
||
"libgimp/gimpenums.h".
|
||
|
||
* libgimp/gimpenums.h
|
||
* plug-ins/script-fu/script-fu-constants.c
|
||
* tools/pdbgen/enums.pl: regenerated.
|
||
|
||
* app/core/core-types.h: include "pdb/pdb-types.h" so including
|
||
"core/core-types.h" gets the whole core type space.
|
||
|
||
* app/core/gimp.[ch]: added a "stack_trace_mode" parameter to the
|
||
constructor and store it in the Gimp struct because the value is
|
||
also passed to plug-ins and nobody should include "appenv.h".
|
||
|
||
* app/gimprc.[ch]: pass the alternate_system_gimprc and
|
||
alternate_gimprc filenames from the command line to gimprc_prase()
|
||
so we don't need to include "appenv.h".
|
||
|
||
* app/batch.[ch]: pass the "batch_cmds" as parameter, don't
|
||
include "append.h".
|
||
|
||
* app/app_procs.c: pass more parameters around.
|
||
|
||
* app/devices.c
|
||
* app/errors.c
|
||
* app/gimphelp.c
|
||
* app/main.c
|
||
* app/core/gimpgradient.c
|
||
* app/display/gimpdisplay.c
|
||
* app/display/gimpdisplayshell.c
|
||
* app/file/file-open.c
|
||
* app/file/file-save.c
|
||
* app/file/file-utils.c
|
||
* app/gui/commands.c
|
||
* app/gui/error-console-dialog.c
|
||
* app/gui/file-dialog-utils.c
|
||
* app/gui/file-open-dialog.c
|
||
* app/gui/file-save-dialog.c
|
||
* app/gui/paths-dialog.c
|
||
* app/gui/user-install-dialog.c
|
||
* app/tools/gimpbezierselecttool.c
|
||
* app/tools/xinput_airbrush.c
|
||
* app/xcf/xcf.c
|
||
* tools/pdbgen/pdb/fileops.pdb
|
||
* tools/pdbgen/pdb/help.pdb
|
||
* tools/pdbgen/pdb/message.pdb
|
||
* tools/pdbgen/pdb/plug_in.pdb: changed accordingly:
|
||
|
||
- changed "plug-in.h" include where needed.
|
||
- don't call gimp_fatal_error() directly, it's called via the log
|
||
handler when calling g_error().
|
||
- don't incude "errors.h" except from main.c.
|
||
- changed stack_trace and message_handler enum names.
|
||
- get "stack_trace_mode" from Gimp.
|
||
- removed many inclusions of "appenv.h".
|
||
|
||
* app/pdb/fileops_cmds.c
|
||
* app/pdb/help_cmds.c
|
||
* app/pdb/message_cmds.c
|
||
* app/pdb/plug_in_cmds.c
|
||
* app/pdb/procedural_db.c: regenerated.
|
||
|
||
2001-11-30 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/display/Makefile.am
|
||
* app/display/gximage.[ch]: removed. It was a wrapper around
|
||
nothing since we use GdkRGB.
|
||
|
||
* app/display/gimpdisplayshell-render.[ch]: added the render
|
||
buf size defines here, added the #if 0'ed display filter stuff
|
||
and the actual GdkRGB render stuff here too.
|
||
|
||
* app/display/gimpdisplayshell.[ch]: added shell->render_buf as
|
||
replacement for the global gximage buffer, renamed shell->scroll_gc
|
||
to shell->render_gc and use it all over the place when rendering
|
||
image data.
|
||
|
||
* app/display/gimpdisplayshell-callbacks.c
|
||
* app/display/gimpdisplayshell-scroll.c: changed accordingly.
|
||
|
||
* app/gui/gui.c: don't call gximage init/exit stuff.
|
||
|
||
2001-11-30 Rebecca Walter <bex@gimp.org>
|
||
|
||
* app/gui/gradient-select.c
|
||
* app/gui/gui.c
|
||
* app/gui/indicator-area.c
|
||
* app/gui/info-dialog.c
|
||
* app/gui/info-window.c: More proofreading.
|
||
In cooperation with Marco Wessel (CyBeR)
|
||
|
||
2001-11-30 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/colormaps.[ch]: removed.
|
||
|
||
* app/app_procs.c: don't call it.
|
||
|
||
* app/gui/gui.c: configure GdkRGB here.
|
||
|
||
* app/display/gimpdisplayshell.c
|
||
* app/display/gximage.c
|
||
* app/gui/color-notebook.c
|
||
* app/gui/color-select.c
|
||
* app/gui/colormap-dialog.c
|
||
* app/gui/info-window.c
|
||
* app/gui/preferences-dialog.c
|
||
* app/tools/gimpmovetool.c
|
||
* app/display/gimpdisplayshell-selection.c: changed accordingly
|
||
(simply removed the unneded include or use
|
||
gdk_gc_set_rgb_[fg|bg]_color() instead).
|
||
|
||
* app/display/gimpdisplayshell.c
|
||
* app/display/gimpdisplayshell-callbacks.[ch]: chopped
|
||
gimp_display_shell_canvas_events() in smaller callbacks. Only the
|
||
events that trigger tool actions are handled in a single callback.
|
||
|
||
2001-11-30 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/core/Makefile.am
|
||
* app/core/gimpimage-qmask.[ch]: new files: the QMask stuff
|
||
stripped from GUI code. Added gimp_image_qmask_invert().
|
||
|
||
* app/core/gimpimage.[ch]: removed the QMask functions.
|
||
|
||
* app/display/Makefile.am
|
||
* app/display/gimpdisplayshell-qmask.[ch]: removed.
|
||
|
||
* app/gui/Makefile.am
|
||
* app/gui/qmask-commands.[ch]: new files for the new QMask item
|
||
factory callbacks and the qmask query dialog.
|
||
|
||
* app/gui/menus.c: added a context menu for the QMask button.
|
||
|
||
* app/display/gimpdisplayshell.c
|
||
* app/display/gimpdisplayshell-handlers.c: don't include the qmask
|
||
stuff.
|
||
|
||
* app/display/gimpdisplayshell-callbacks.[ch]: Moved the 2 qmask
|
||
callbacks here. Don't popup the dialog on double_click. Show
|
||
the contect menu on right-click.
|
||
|
||
* app/display/gimpdisplayshell-callbacks.[ch]:
|
||
gimp_display_shell_canvas_events(): removed the hack of
|
||
conntecting "key_press_event" to gtk_true() while a tool is
|
||
active. Instead, check for (event & GDK_BUTTON1_MASK) in the
|
||
key_press and key_release handlers and stop signal emission. Save
|
||
the modifier state on "button_press" and restore it after
|
||
"button_release".
|
||
|
||
Changed the way context menus are updated/shown:
|
||
|
||
- removed GimpContainerContextFunc.
|
||
- pass around item factory identifiers (e.g. "<Brushes>")
|
||
- added voodoo to update the menus before showing them.
|
||
|
||
* app/widgets/gimpitemfactory.[ch]: gimp_item_factory_new(): take
|
||
a GimpItemFactoryUpdateFunc parameter, attach it as data to the
|
||
factory and use it to update the menu in
|
||
gimp_item_factory_popup_with_date().
|
||
|
||
* app/widgets/gimpwidgets-utils.[ch]: removed
|
||
gimp_item_factory_popup_with_data() here.
|
||
|
||
* app/widgets/gimpbrushfactoryview.[ch]
|
||
* app/widgets/gimpbufferview.[ch]
|
||
* app/widgets/gimpcontainereditor.[ch]
|
||
* app/widgets/gimpdatafactoryview.[ch]
|
||
* app/widgets/gimpdocumentview.[ch]
|
||
* app/widgets/gimpdrawablelistview.[ch]: use item_factory
|
||
identifier strings all over the place.
|
||
|
||
* app/widgets/gimpdockbook.c: removed the menu update code, it's
|
||
now in gui/dialogs-commands.c.
|
||
|
||
* app/gui/brushes-commands.[ch]
|
||
* app/gui/buffers-commands.[c]
|
||
* app/gui/channels-commands.[ch]
|
||
* app/gui/dialogs-commands.[ch]
|
||
* app/gui/documents-commands.[ch]
|
||
* app/gui/gradient-editor-commands.[ch]
|
||
* app/gui/gradients-commands.[ch]
|
||
* app/gui/layers-commands.[ch]
|
||
* app/gui/palettes-commands.[ch]
|
||
* app/gui/patterns-commands.[ch]: removed all show_context_menu()
|
||
functions and made the update functions public. Changed all
|
||
update functions to use the gimp_item_factory_set_foo() methods
|
||
instead of gimp_menu_item_set_foo().
|
||
|
||
* app/gui/menus.c: pass the update functions to the
|
||
gimp_item_factory_new().
|
||
|
||
* app/gui/dialogs-constructors.c: pass item factory identifiers to
|
||
all view constructors.
|
||
|
||
* app/gui/gradient-editor.c: show the context menu using the new
|
||
method.
|
||
|
||
* app/gui/toolbox.c: no need to include "dialogs-commands.h".
|
||
|
||
2001-11-29 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/config/gimpconfig.c (gimp_config_serialize): ooops.
|
||
|
||
2001-11-29 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gui/menus.c: set the accelerators for the "Open Recent"
|
||
items > 10 to "" instead of NULL so gtk+ doesn't use the stock
|
||
item's default accel.
|
||
|
||
* app/widgets/gimpdock.c
|
||
* app/widgets/gimpimagedock.c: set the docks' titles to
|
||
"Gimp Dock #<n>" instead of just "Gimp" so they can be
|
||
distinguished in the WM's window list or dock or whatever.
|
||
|
||
2001-11-29 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gui/menus.c: put the last_opened menu entries in a
|
||
submenu called "Open Recent", added items to create a dock
|
||
with some useful tabs in it ("Brushes, Patterns & Stuff..."),
|
||
|
||
* app/gui/dialogs-commands.[ch]: added a callback for the new
|
||
"Stuff" menu entry.
|
||
|
||
* app/gui/dialogs-constructors.h: removed dialogs_lc_get()
|
||
declaration because it doesn't exist.
|
||
|
||
2001-11-29 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/display/gimpdisplayshell.[ch]: replaced the QMask radio
|
||
buttons by a single check button. Still needs some tuning.
|
||
|
||
* app/display/gimpdisplayshell-handlers.c
|
||
* app/display/gimpdisplayshell-qmask.[ch]: changed accordingly.
|
||
|
||
* app/tools/gimptool.[ch]: added "gboolean handle_empty_image" to
|
||
the GimpTool structure.
|
||
|
||
* app/tools/gimpmovetool.c: set it to TRUE.
|
||
|
||
* app/tools/gimpfuzzyselecttool.c: don't gimp_[set|unset]_busy()
|
||
while calculating the selection but set the busy cursor on the
|
||
display manually (we have the pointer grabbed anyway).
|
||
|
||
* app/display/gimpdisplayshell-callbacks.c: don't check for
|
||
GIMP_IS_MOVE_TOOL(active_tool) but look at
|
||
active_tool->handle_empty_image. Removed the checks for
|
||
GIMP_IS_FUZZY_SELECT_TOOL(active_tool) because fuzzy_select
|
||
doesn't set GIMP busy while it's active any more.
|
||
|
||
* app/tools/transform_options.[ch]
|
||
* app/tools/gimptransformtool.c
|
||
* app/tools/gimprotatetool.c
|
||
* app/tools/gimpscaletool.c: added widgets for the transform tools'
|
||
constraints (one more #51108 issue fixed).
|
||
|
||
* app/tools/gimperasertool.c: cosmetic.
|
||
|
||
* app/widgets/gimpdockbook.c: don't hardcode GtkNotebook's
|
||
tab_border to 0 but add a style property for it...
|
||
|
||
* themes/Default/gtkrc: ...and set it to 0 here.
|
||
|
||
2001-11-29 Sven Neumann <sven@gimp.org>
|
||
|
||
* libgimpbase/gimpenv.c
|
||
* plug-ins/helpbrowser/helpbrowser.c
|
||
* plug-ins/imagemap/imap_preferences.c: use g_build_filename().
|
||
|
||
* plug-ins/script-fu/script-fu-scripts.c: use new GDir functions,
|
||
g_build_filename() and g_file_test() to make code more portable.
|
||
Don't use deprecated gdk_font functions. We don't use X fonts any
|
||
longer.
|
||
|
||
2001-11-29 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/gimprc.c (save_gimprc_strings): reverted list handling for
|
||
unknown_tokens to the code used in 1.2 which has the advantage that
|
||
it doesn't crash.
|
||
|
||
2001-11-29 Sven Neumann <sven@gimp.org>
|
||
|
||
* m4macros/gimp-1.4.m4: use gimptool-1.3.
|
||
|
||
* app/display/gimpdisplayshell.c
|
||
* app/gui/gui.c: cosmetic changes from Guillermo S. Romero.
|
||
|
||
* plug-ins/common/*.c
|
||
* plug-ins/script-fu/script-fu-scripts.c: applied patches from
|
||
Guillermo S. Romero that change the button ordering. I had to redo
|
||
some of the changes by hand since the patches didn't apply cleanly.
|
||
Hopefully got it all right...
|
||
|
||
2001-11-28 Kelly Martin <kmartin@pyrzqxgl.org>
|
||
|
||
* base/pixel-region.c base/tile-manager.c: a couple more
|
||
interesting off-by-one errors. it appears to work now, though.
|
||
|
||
2001-11-28 Kelly Martin <kmartin@pyrzqxgl.org>
|
||
|
||
* base/pixel-region.c: corrected an off-by-one error, sorry :)
|
||
|
||
2001-11-28 Kelly Martin <kmartin@pyrzqxgl.org>
|
||
|
||
* app/undo.c: Fixed another use of array of gpointer in place of a
|
||
proper struct, this time in undo_(push|pop)_channel_mod.
|
||
|
||
* base/base-types.h
|
||
* base/tile-manager.h
|
||
* base/tile-manager-private.h
|
||
* base/tile-manager.c: added PixelDataHandle as an abstraction
|
||
on top of tiles. PixelDataHandles either return a pointer into
|
||
the tile data, or create a temporary buffer so the calling
|
||
function can access data from disparate tiles using a single
|
||
buffer. This is a step in reducing the dependence of core
|
||
image functions being aware of tiles as well as a step toward
|
||
having a single abstraction for pixel data.
|
||
|
||
* app/image_map.c: changed to use read_pixel_data_1
|
||
* app/pixel-region.c: changed to use the read_pixel_data and
|
||
write_pixel_data where practical.
|
||
|
||
2001-11-28 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/core/gimpimage-mask.[ch]: s/gimage_mask/gimp_image_mask/g
|
||
|
||
* app/floating_sel.c
|
||
* app/undo.c
|
||
* app/undo_history.c
|
||
* app/core/gimpchannel.c
|
||
* app/core/gimpdrawable-blend.c
|
||
* app/core/gimpdrawable-transform.c
|
||
* app/core/gimpdrawable.c
|
||
* app/core/gimpedit.c
|
||
* app/core/gimpimage-crop.c
|
||
* app/core/gimpimage-mask-select.c
|
||
* app/core/gimpimage-resize.c
|
||
* app/core/gimpimage-scale.c
|
||
* app/core/gimpimage.c
|
||
* app/display/gimpdisplayshell-qmask.c
|
||
* app/display/gimpdisplayshell-selection.c
|
||
* app/display/gimpdisplayshell.c
|
||
* app/gui/channels-commands.c
|
||
* app/gui/edit-commands.c
|
||
* app/gui/layers-commands.c
|
||
* app/gui/select-commands.c
|
||
* app/tools/gimpbucketfilltool.c
|
||
* app/tools/gimpbycolorselecttool.c
|
||
* app/tools/gimpclonetool.c
|
||
* app/tools/gimpcroptool.c
|
||
* app/tools/gimpeditselectiontool.c
|
||
* app/tools/gimpfliptool.c
|
||
* app/tools/gimpfreeselecttool.c
|
||
* app/tools/gimpinktool.c
|
||
* app/tools/gimpmovetool.c
|
||
* app/tools/gimppainttool.c
|
||
* app/tools/gimprectselecttool.c
|
||
* app/tools/gimpselectiontool.c
|
||
* app/tools/gimptexttool.c
|
||
* app/tools/gimptransformtool.c
|
||
* app/widgets/gimpchannellistview.c
|
||
* app/xcf/xcf-save.c
|
||
* tools/pdbgen/pdb/edit.pdb
|
||
* tools/pdbgen/pdb/selection.pdb: changed accordingly.
|
||
|
||
* app/pdb/edit_cmds.c
|
||
* app/pdb/selection_cmds.c: regenerated.
|
||
|
||
2001-11-28 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/base/base-types.h: include the new
|
||
"paint-funcs/paint-funcs-types.h".
|
||
|
||
* app/paint-funcs/Makefile.am
|
||
* app/paint-funcs/paint-funcs-types.h: new file. Includes
|
||
"base/base-types.h".
|
||
|
||
* app/paint-funcs/paint-funcs.[ch]: removed the enums here,
|
||
include "paint-funcs-types.h".
|
||
|
||
* app/widgets/widgets-types.h: include "display/display-types.h"
|
||
|
||
* app/display/display-types.h: include "widgets/widgets-types.h".
|
||
|
||
* app/tools/tools-types.h: include "display/display-types.h"
|
||
|
||
* app/gui/gui-types.h: include "tools/tools-types.h".
|
||
|
||
The order of namespaces/dependencies should be (but is not):
|
||
|
||
(base, paint-funcs) -> (core, file, xcf, pdb) ->
|
||
(widgets, display) -> tools -> gui
|
||
|
||
* app/path.c: include "tools/tools-types.h".
|
||
|
||
* app/core/Makefile.am
|
||
* app/core/gimpimage-guides.[ch]
|
||
* app/core/gimpimage-merge.[ch]
|
||
* app/core/gimpimage-resize.[ch]
|
||
* app/core/gimpimage-scale.[ch]: new files.
|
||
|
||
* app/core/gimpimage.[ch]: removed the stuff which is in the new
|
||
files. Reordered all functions in both the .h and .c files,
|
||
commented the groups of functions.
|
||
|
||
* app/core/gimpcontainer.c: create the handler_id using a counter,
|
||
not the address of a pointer, because the address *may* be the
|
||
same twice, added debugging output.
|
||
|
||
* app/core/gimpviewable.[ch]: added primitive support for getting
|
||
a preview GdkPixbuf.
|
||
|
||
* app/nav_window.c
|
||
* app/undo.c
|
||
* app/undo_history.c
|
||
* app/core/gimpimage-duplicate.c
|
||
* app/core/gimpimage-mask.[ch]
|
||
* app/display/gimpdisplay.c
|
||
* app/display/gimpdisplayshell-callbacks.c
|
||
* app/display/gimpdisplayshell-dnd.c
|
||
* app/display/gimpdisplayshell-render.c
|
||
* app/display/gimpdisplayshell-scale.c
|
||
* app/display/gimpdisplayshell-scroll.c
|
||
* app/gui/image-commands.c
|
||
* app/gui/info-window.c
|
||
* app/gui/layers-commands.c
|
||
* app/gui/palette-import-dialog.c
|
||
* app/tools/gimpbycolorselecttool.c
|
||
* app/tools/gimpeditselectiontool.c
|
||
* app/tools/gimpmeasuretool.c
|
||
* app/tools/gimpmovetool.c
|
||
* app/widgets/gimpcontainerview-utils.c
|
||
* app/xcf/xcf-load.c: changed accordingly, some cleanup.
|
||
|
||
* tools/pdbgen/pdb/guides.pdb
|
||
* tools/pdbgen/pdb/image.pdb: changed accordingly, reordered functions.
|
||
|
||
* app/plug_in.c: set the labels of the "Repeat" and "Re-Show" menu
|
||
items to the name of the last plug-in (Fixes #50986).
|
||
|
||
* app/display/gimpdisplayshell.[ch]: set the labels of "Undo" and
|
||
"Redo" to the resp. undo names. Much simplified the WM-icon stuff
|
||
by removing most code and using gimp_viewable_get_new_preview_pixbuf().
|
||
|
||
* app/widgets/gimpbrushfactoryview.c: forgot to assign the GQuark
|
||
returned by gimp_container_add_handler().
|
||
|
||
* app/pdb/guides_cmds.c
|
||
* app/pdb/image_cmds.c
|
||
* libgimp/gimpimage_pdb.[ch]: regenerated.
|
||
|
||
2001-11-28 Kelly Martin <kmartin@pyrzqxgl.org>
|
||
|
||
* app/undo.c: Fixed evil<tm> double casting of enum to glong to
|
||
gpointer for layer_mod undo by using a struct instead of an array
|
||
of gpointer (!!!) for storing layer_mod undo data. Also moved
|
||
layer offset undo information out of the undo tile manager.
|
||
* app/image_map.c: Moved layer offset undo information out of the
|
||
undo tile manager.
|
||
|
||
Above changes may break image_map and layer_mod undos, please test
|
||
as I haven't. :)
|
||
|
||
2001-11-28 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/core/Makefile.am
|
||
* app/core/gimpimage-projection.[ch]: new files. Changed function
|
||
names to be consistent.
|
||
|
||
* app/core/gimpimage.[ch]: removed the projection stuff
|
||
here. Removed the gimp_image_composite_blah() functions because
|
||
they were just calling the resp. gimp_image_projection ones.
|
||
|
||
* app/core/gimpimage-contiguous-region.c
|
||
* app/core/gimpimage-convert.c
|
||
* app/core/gimpimage-crop.c
|
||
* app/core/gimppalette-import.c
|
||
* app/undo.c
|
||
* app/display/gimpdisplay.c
|
||
* app/display/gimpdisplayshell-render.c
|
||
* app/gui/info-window.c
|
||
* app/tools/gimpbycolorselecttool.c
|
||
* app/tools/gimpcolorpickertool.c
|
||
* app/tools/gimpiscissorstool.c: changed accordingly.
|
||
|
||
2001-11-28 Michael Natterer <mitch@gimp.org>
|
||
|
||
* themes/Default/images/Makefile.am
|
||
* themes/Default/images/stock-wilber-16x16.png
|
||
* themes/Default/images/stock-wilber-32x32.png
|
||
* themes/Default/images/stock-wilber-48x48.png
|
||
* themes/Default/images/stock-wilber-64x64.png: new files.
|
||
|
||
* themes/Default/Makefile.am: create gimp-wilber-pixbufs.h
|
||
|
||
* libgimpwidgets/gimpdialog.[ch]: removed gimp_dialog_set_icon().
|
||
|
||
* libgimpwidgets/gimpwidgets.[ch]: added gimp_widgets_init() which
|
||
calls gimp_stock_init() and calls gtk_window_set_default_icon_list()
|
||
with the above set of inlined pixbufs.
|
||
|
||
* libgimp/gimpui.c
|
||
* app/gui/gui.c: call gimp_widgets_init().
|
||
|
||
* app/display/gimpdisplayshell.c: removed the fallback icon stuff.
|
||
|
||
* app/gui/splash.c
|
||
* app/gui/user-install-dialog.c
|
||
* app/widgets/gimpdock.c
|
||
* app/widgets/gimpitemfactory.c
|
||
* libgimpwidgets/gimphelpui.c
|
||
* plug-ins/imagemap/imap_default_dialog.c
|
||
* plug-ins/imagemap/imap_file.c: don't call gimp_dialog_set_icon().
|
||
|
||
* plug-ins/common/uniteditor.c: wanted to start hacking here...
|
||
Nothing really changed.
|
||
|
||
2001-11-28 Michael Natterer <mitch@gimp.org>
|
||
|
||
* libgimpwidgets/gimpbutton.c
|
||
* libgimpwidgets/gimpcolorarea.c
|
||
* libgimpwidgets/gimpcolorbutton.c
|
||
* libgimpwidgets/gimpoffsetarea.c: fixed button_press event handling,
|
||
removed double g_return_if_fail()s, misc. cleanup.
|
||
|
||
* app/display/gimpdisplayshell.c: removed the SET_COLOR() stuff
|
||
here...
|
||
|
||
* app/gui/menus.c: ...and added it here so it actually works.
|
||
|
||
* app/widgets/gimpcolorpanel.c: add color previews to the
|
||
item_factory.
|
||
|
||
* app/widgets/gimpdockbook.c: use the item_factory functions now
|
||
that they are in widgets/.
|
||
|
||
* app/widgets/gimpitemfactory.[ch]: nothing, we just want to keep
|
||
the RCS hirtory.
|
||
|
||
2001-11-27 Daniel Egger <degger@fhm.edu>
|
||
|
||
* app/paint-funcs/paint-funcs-generic.h
|
||
* app/paint-funcs/paint-funcs.c
|
||
* app/paint-funcs/paint-funcs.h: Unsignified lots of arguments
|
||
and misc cleanups.
|
||
|
||
2001-11-27 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/widgets/Makefile.am
|
||
* app/widgets/gimpitemfactory.[ch]: put the whole generic stuff
|
||
from gui/menus.[ch] here (where generic == less_evil because it at
|
||
least does not depend on particular menu entries).
|
||
|
||
* app/gui/menus.[ch]: removed the stuff here. Only the global menu
|
||
definitions and bad hacks to adjust them to our needs left.
|
||
Removed all menus_get_foobar_factory() functions because we can
|
||
use gtk_item_factory_from_path("<FooBar>") all over the place.
|
||
|
||
* app/plug_in.c
|
||
* app/display/gimpdisplayshell.c
|
||
* app/gui/brushes-commands.c
|
||
* app/gui/buffers-commands.c
|
||
* app/gui/channels-commands.c
|
||
* app/gui/dialogs.c
|
||
* app/gui/documents-commands.c
|
||
* app/gui/file-dialog-utils.c
|
||
* app/gui/file-open-dialog.c
|
||
* app/gui/file-save-dialog.c
|
||
* app/gui/gradient-editor-commands.c
|
||
* app/gui/gradients-commands.c
|
||
* app/gui/gui.c
|
||
* app/gui/layers-commands.c
|
||
* app/gui/palettes-commands.c
|
||
* app/gui/paths-dialog.c
|
||
* app/gui/patterns-commands.c
|
||
* app/gui/toolbox.c: changed accordingly. None of these files
|
||
except gui/gui.c includes gui/menus.h any more.
|
||
|
||
2001-11-27 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/core/gimpcontainer.c: GType is a pointer now, not a guint.
|
||
|
||
* app/widgets/gimpdock.c: chain up in widget_class->style_set().
|
||
|
||
Gradient Editor chopping plus merging of bex' proofreading:
|
||
(fixes #62278).
|
||
|
||
* app/core/core-types.h: moved the gradient related enums here.
|
||
|
||
* app/core/gimpgradient.[ch]: removed the enums, added gradient
|
||
segment utility functions from the gradient_editor.
|
||
|
||
* app/gui/gui-types.h: added the GradientEditor typedef here.
|
||
|
||
* app/gui/Makefile.am
|
||
* app/gui/gradient-editor-commands.[ch]: new files implementing
|
||
callbacks and menu_update stuff for the new gradient_editor
|
||
item factory.
|
||
|
||
* app/gui/gradient-editor.[ch]: removed tons of code, namespace
|
||
cleanup, stuff...
|
||
|
||
* app/gui/menus.[ch]: added the gradient_editor menu stuff here.
|
||
Added menus_set_color() which creates & updates a color menu item
|
||
(will soon be used in other places too). Renamed menus_set_state()
|
||
to menus_set_active().
|
||
|
||
The editor's menu code is ugly as before, only different and evil
|
||
the same way as the rest of the menu stuff, so it's at least
|
||
consistent :)
|
||
|
||
* app/display/gimpdisplayshell.c: changed accordingly.
|
||
|
||
* app/gui/test-commands.c: don't include "gradient-editor.h".
|
||
|
||
2001-11-27 Sven Neumann <sven@gimp.org>
|
||
|
||
* configure.in
|
||
* app/Makefile.am
|
||
* app/config/gimpconfig.[ch]
|
||
* app/config/gimpconfig-serialize.[ch]
|
||
* app/config/gimpconfig-deserialize.[ch]: added new base class
|
||
GimpConfig that knows how to serialize and deserialize it's properties
|
||
in sexp format. Contains two example properties that will go into
|
||
derived classes once this is really used.
|
||
|
||
* app/main.c: deserialize and serialize the test GimpConfig object to
|
||
~/.gimp-1.3/foorc (only for debugging).
|
||
|
||
* app/widgets/widgets-types.h
|
||
* app/core/core-types.h: moved GimpPreviewSize enum to core-types.
|
||
|
||
* app/core/core-types.h: don't include gdk-pixbuf.h.
|
||
|
||
* app/core/gimptoolinfo.h
|
||
* app/core/gimpimagefile.c: include gdk-pixbuf.h.
|
||
|
||
* app/core/gimpimage.[ch]: made construct_flag a gboolean.
|
||
|
||
* app/core/gimpdrawable-invert.c
|
||
* app/core/gimpunit.c
|
||
|
||
* tools/pdbgen/pdb/plug_in.pdb
|
||
* app/pdb/plug_in_cmds.c: removed unused variables.
|
||
|
||
* app/display/Makefile.am: removed .PHONY and files cruft
|
||
|
||
* app/Makefile.am
|
||
* libgimp/Makefile.am
|
||
* libgimpbase/Makefile.am
|
||
* libgimpcolor/Makefile.am
|
||
* libgimpmath/Makefile.am
|
||
* libgimpwidgets/Makefile.am
|
||
* plug-ins/Makefile.am: removed commented out makefile.mingw rules.
|
||
If we ever need them again, they can easily be resurrected from CVS.
|
||
|
||
2001-11-26 Kelly Martin <kmartin@pyrzqxgl.org>
|
||
|
||
* app/Makefile.am
|
||
* libgimp/Makefile.am
|
||
* libgimpbase/Makefile.am
|
||
* libgimpcolor/Makefile.am
|
||
* libgimpmath/Makefile.am
|
||
* libgimpwidgets/Makefile.am
|
||
* plug-ins/Makefile.am:
|
||
Commented out makefile.mingw rules in Makefile.am. These conflict
|
||
with the default rules generated by automake and generate annoying
|
||
warnings. tml doesn't think they're needed anymore. If it turns
|
||
out they are, they can be added back.
|
||
|
||
2001-11-26 Rebecca Walter <rjp@mail.tele.dk>
|
||
|
||
* app/gui/convert-dialog.c
|
||
* app/gui/dialogs-constructors.c
|
||
* app/gui/error-console-dialog.c
|
||
* app/gui/file-commands.c
|
||
* app/gui/file-new-dialog.c
|
||
* app/gui/file-open-dialog.c
|
||
* app/gui/file-save-dialog.c: More of my extensive proofing.
|
||
Someone needs to check bex comments and do some hacking.
|
||
|
||
2001-11-26 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/core/gimpimage.c: gimp_image_construct_layers/channels():
|
||
actually free the reverse_list after projecting the drawables.
|
||
(Spotted by Kelly Martin).
|
||
|
||
2001-11-26 Michael Natterer <mitch@gimp.org>
|
||
|
||
* tools/authorsgen/contributors: added Rebecca Walter (bex).
|
||
|
||
* AUTHORS
|
||
* app/gui/authors.h: regenerated.
|
||
|
||
* app/widgets/widgets-types.h: added GimpPreviewSize enum.
|
||
|
||
* app/gimprc.c
|
||
* app/gui/menus.c
|
||
* app/gui/preferences-dialog.c
|
||
* app/widgets/gimpdockbook.c: use the new enum.
|
||
|
||
* app/tools/gimpbucketfilltool.c
|
||
* app/tools/gimpconvolvetool.c
|
||
* app/tools/gimpcroptool.c
|
||
* app/tools/gimpdodgeburntool.c
|
||
* app/tools/gimperasertool.c
|
||
* app/tools/gimpfliptool.c
|
||
* app/tools/gimpmagnifytool.c: added "(<Ctrl>)" and "(<Alt>)" to
|
||
some tool options strings.
|
||
|
||
* app/tools/gimpmovetool.c: some more widgets for hidden tool
|
||
options (#51108).
|
||
|
||
* app/tools/transform_options.c: renamed to "Tool Paradigm" stuff
|
||
to something more understandable.
|
||
|
||
* app/widgets/gimpdock.c: added a style property for the height
|
||
of the separator.
|
||
|
||
* themes/Default/gtkrc: show how to use the new property.
|
||
|
||
* app/widgets/gimpcontainerview.c
|
||
* app/widgets/gimpdockable.c
|
||
* app/widgets/gimplayerlistview.c: waste less lines when calling
|
||
gtk_widget_style_get().
|
||
|
||
2001-11-25 Simon Budig <simon@gimp.org>
|
||
|
||
* app/tools/gimperasertool.c
|
||
* app/tools/gimperasertool.h
|
||
* tools/pdbgen/pdb/tools.pdb: Removed the color_erase option of
|
||
the eraser.
|
||
|
||
* app/pdb/tools_cmds.c: regenerated.
|
||
|
||
2001-11-25 Simon Budig <simon@gimp.org>
|
||
|
||
* app/paint-funcs/paint-funcs.c: ANTI_ERASE had wrong
|
||
layer mode information (according to the comments).
|
||
Changed it to something sane. I did test it and no
|
||
errors occurred. I wonder why they did not happen earlier...
|
||
|
||
2001-11-25 Sven Neumann <sven@gimp.org>
|
||
|
||
* Made 1.3.1 release.
|
||
|
||
2001-11-25 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/paint-funcs/Makefile.am
|
||
* data/misc/Makefile.am: made 'make dist' happy.
|
||
|
||
2001-11-25 Sven Neumann <sven@gimp.org>
|
||
|
||
* Makefile.am
|
||
* configure.in
|
||
* gimp-1.3.pc.in
|
||
* gimpui-1.3.pc.in: added pkg-config files for gimp-1.3.
|
||
|
||
* gimptool-1.4.in: renamed to gimptool-1.3.in
|
||
|
||
* docs/Makefile.am
|
||
* docs/gimptool-1.4.1.in renamed to docs/gimptool-1.3.1.in.
|
||
Disabled installation of man-pages; they need to be updated and
|
||
should probably be renamed.
|
||
|
||
* app/Makefile.am: generate binary called gimp-1.3 so we don't clash
|
||
with older gimp installations.
|
||
|
||
* gimp-1.3.pc.in
|
||
* gimpui-1.3.pc.in: added pkg-config files for gimp-1.3.
|
||
|
||
* INSTALL
|
||
* NEWS: updated
|
||
|
||
2001-11-24 Sven Neumann <sven@gimp.org>
|
||
|
||
Clean up after Marc Lehmann who changed tools/pdbgen/pdb/color.pdb
|
||
and tools/pdbgen/pdb/image.pdb without writing a ChangeLog entry and
|
||
without regenerating the respective files :-(
|
||
|
||
* tools/pdbgen/pdb/color.pdb: another typo fix similar to the one
|
||
Marc spotted.
|
||
|
||
* app/pdb/color_cmds.c
|
||
* app/pdb/image_cmds.c
|
||
* libgimp/gimpcolor_pdb.c
|
||
* libgimp/gimpimage_pdb.c: regenerated.
|
||
|
||
2001-11-24 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/gimprc.c
|
||
* app/plug_in.[ch]
|
||
* app/pdb/plug_in_cmds.c
|
||
* tools/pdbgen/pdb/plug_in.pdb: started to clean up plug_in code a
|
||
little. Still a long way to go...
|
||
|
||
* app/gui/splash.c: simplified
|
||
|
||
2001-11-24 Simon Budig <simon@gimp.org>
|
||
|
||
* app/base/base-types.h
|
||
* app/paint-funcs/paint-funcs-generic.h
|
||
* app/paint-funcs/paint-funcs.c
|
||
* app/paint-funcs/paint-funcs.h
|
||
* app/widgets/gimpwidgets-constructors.c:
|
||
|
||
implemented "Color Erase" paint mode, the hack in the
|
||
eraser tool will be removed.
|
||
|
||
* app/pdb/brush_select_cmds.c
|
||
* app/pdb/brushes_cmds.c
|
||
* app/pdb/layer_cmds.c
|
||
* app/pdb/tools_cmds.c
|
||
* libgimp/gimpenums.h
|
||
* plug-ins/script-fu/script-fu-constants.c
|
||
* tools/pdbgen/enums.pl: regenerated
|
||
|
||
2001-11-24 Rebecca Walter <rjp@mail.tele.dk>
|
||
|
||
* app/gui/about-dialog.c
|
||
* app/gui/brush-select.c
|
||
* app/gui/color-notebook.c
|
||
* app/gui/colormap-dialog.c: miscellaneous proofreading.
|
||
|
||
2001-11-23 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/display/gimpdisplayshell.c: don't draw resize_grip in status bar
|
||
(patch from Guillermo S. Romero).
|
||
|
||
* app/devices.c
|
||
* app/display/gimpdisplayshell-filter-dialog.c
|
||
* app/display/gimpdisplayshell-qmask.c
|
||
* app/display/gimpdisplayshell.c
|
||
* app/gui/channels-commands.c
|
||
* app/gui/color-notebook.c
|
||
* app/gui/convert-dialog.c
|
||
* app/gui/error-console-dialog.c
|
||
* app/gui/file-new-dialog.c
|
||
* app/gui/gradient-editor.c
|
||
* app/gui/layers-commands.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/gui/resolution-calibrate-dialog.c
|
||
* app/gui/user-install-dialog.c
|
||
* app/tools/gimpbrightnesscontrasttool.c
|
||
* app/tools/gimpcolorbalancetool.c
|
||
* app/tools/gimpcurvestool.c
|
||
* app/tools/gimphuesaturationtool.c
|
||
* app/tools/gimplevelstool.c
|
||
* app/tools/gimpposterizetool.c
|
||
* app/tools/gimpthresholdtool.c
|
||
* app/widgets/gimpfontselection-dialog.c
|
||
* libgimpwidgets/gimpquerybox.c
|
||
* libgimpwidgets/gimpunitmenu.c
|
||
* modules/cdisplay_gamma.c
|
||
* modules/cdisplay_highcontrast.c: changed button order to follow the
|
||
new GTK+ style: confirmative is right-most (for LTR rendering).
|
||
|
||
2001-11-23 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/core/gimpcontainer.c: removed a useless g_return_if_fail().
|
||
|
||
* app/widgets/gimpcontainereditor.h: removed GimpViewType enum.
|
||
|
||
* app/widgets/widgets-types.h: added it here.
|
||
|
||
* app/widgets/gimpcontainerview-utils.[ch]: added a utility function
|
||
which gets the GimpContainerView out of a GimpDockable.
|
||
|
||
* app/widgets/gimpdialogfactory.[ch]: added support for saving and
|
||
loading of each GimpDockable's preview size. Store the dialog's
|
||
default preview size in the GimpDialogFactoryEntry. Pass the
|
||
preview_size to each created dialog.
|
||
|
||
* app/gui/menus.c: added menu items for setting the preview_size
|
||
and switching between list and grid view. Removed the item
|
||
overkill in the "Add Tab" submenu.
|
||
|
||
* app/gui/dialogs-commands.[ch]: added callbacks for the new items.
|
||
|
||
* app/widgets/gimpdockbook.c: set the item's state before showing
|
||
the menu.
|
||
|
||
* app/errors.c
|
||
* app/gui/dialogs-constructors.[ch]
|
||
* app/gui/dialogs.c
|
||
* app/gui/edit-commands.c
|
||
* app/gui/gui.c
|
||
* app/gui/indicator-area.c
|
||
* app/gui/toolbox.c: changed accordingly.
|
||
|
||
* app/tools/selection_options.[ch]: cleaned up the selection
|
||
options and added some tooltips. Much more to do...
|
||
|
||
2001-11-23 Rebecca Walter <rjp@mail.tele.dk>
|
||
|
||
* app/file/*.c: Proofing. only minor changes.
|
||
|
||
2001-11-23 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/gimprc.c: don't include gimputils.h, it's gone.
|
||
|
||
* libgimpbase/Makefile.am: removed stale reference to gimputils.h.
|
||
|
||
* libgimpwidgets/gimpcolorbutton.h: wanted to type G_END_DECLS here.
|
||
|
||
2001-11-23 Sven Neumann <sven@gimp.org>
|
||
|
||
* configure.in: bumped version number to 1.3.1.
|
||
Require Glib/GTK+-1.3.11 and Pango-0.22. Removed GDK_DISABLE_COMPAT_H
|
||
and GTK_DISABLE_COMPAT_H from our default CFLAGS since they don't
|
||
exist any longer.
|
||
|
||
* RELEASE-TO-CVS.patch: removed since the glib/gtk+ API is supposed to
|
||
be frozen now.
|
||
|
||
* HACKING: removed reference to RELEASE-TO-CVS.patch
|
||
|
||
* app/gui/menus.c
|
||
* app/tools/gimptexttool.c: applied RELEASE-TO-CVS.patch to conform
|
||
to the new GTK+/Pango API.
|
||
|
||
* app/core/Makefile.am: generate marshallers with gimp_marshal prefix.
|
||
|
||
* app/core/gimpmarshal.list: added all marshallers we use.
|
||
|
||
* app/core/gimpmarshal.[ch]: regenerated.
|
||
|
||
* app/[lots of .c files]: use gimp_marshal_* for all marshallers.
|
||
|
||
* data/images/
|
||
* app/app_procs.c
|
||
* app/gui/splash.c:
|
||
|
||
* libgimpbase/Makefile.am
|
||
* libgimpbase/gimpbase.h
|
||
* libgimpbase/gimputils.[ch]: removed since they are no longer needed.
|
||
|
||
* app/gimprc.c
|
||
* plug-ins/common/ps.c
|
||
* plug-ins/gdyntext/gdyntext.c
|
||
* plug-ins/gdyntext/gdyntextcompat.c
|
||
* plug-ins/gfig/gfig.c
|
||
* plug-ins/gflare/gflare.c
|
||
* plug-ins/script-fu/script-fu-scripts.c: use glib functions instead
|
||
of gimp_strescape() and gimpstrcompress().
|
||
|
||
* cleaned up all header files: use G_BEGIN_DECLS/G_END_DECLS, declared
|
||
all _get_type function as G_GNUC_CONST.
|
||
|
||
* tools/pdbgen/enumcode.pl
|
||
* tools/pdbgen/lib.pl: make them generate header files using
|
||
G_BEGIN_DECLS/G_END_DECLS.
|
||
|
||
* pixmaps/Makefile.am
|
||
* pixmaps/wilber3.xpm: removed ...
|
||
* data/images/tips_wilber.png: ... and added here as PNG
|
||
|
||
* app/gui/tips-dialog.c: load the Wilber on demand using GdkPixbuf.
|
||
|
||
* data/images/gimp_splash.ppm: removed ...
|
||
* data/images/gimp_splash.png: ... and added as PNG
|
||
|
||
* app/app_procs.c
|
||
* app/gui/splash.[ch]: load the splash image using GdkPixbuf.
|
||
|
||
* app/gui/about-dialog.c: sink the GtkPreview.
|
||
|
||
2001-11-22 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/devices.c: made device_status_update() static as declared.
|
||
|
||
* app/core/gimpobject.h: don't include <gobject/gobject.h> as this
|
||
is forbidden now (doesn't hurt as we need to include glib or gtk+
|
||
before gimp headers in .c files anyway).
|
||
|
||
* app/widgets/gimpcontainerlistview.c: better handling of
|
||
"button_press" of list items: don't let a selected item being
|
||
deselected, fixed context menu popup.
|
||
|
||
2001-11-22 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/tools/gimpclonetool.c
|
||
* app/tools/gimpconvolvetool.c
|
||
* app/tools/gimpcroptool.c
|
||
* app/tools/gimpdodgeburntool.c
|
||
* app/tools/gimpmagnifytool.c
|
||
* app/tools/paint_options.c
|
||
* app/tools/transform_options.c: removed the remaining cases of
|
||
we-rely-on-the-radio-buttons-being-in-the-same-order-as-the-enum
|
||
and use gimp_radio_group_set_active() instead.
|
||
Use GINT_TO_POINTER(gint) instead of (gpointer)gint all over
|
||
the place.
|
||
|
||
2001-11-22 Michael Natterer <mitch@gimp.org>
|
||
|
||
* libgimpwidgets/gimpstock.c: added stock *items* (not only icons)
|
||
for all tools so they can be used as action buttons.
|
||
|
||
* app/tools/gimptransformtool.[ch]: added
|
||
transform_tool->use_center so subclasses can switch on/off center
|
||
detection/cursor_update . Added an oper_update() implementation
|
||
and figure the current handle out there. Reordered button_press()
|
||
so we don't need to call it recursively.
|
||
|
||
* app/tools/gimpperspectivetool.c
|
||
* app/tools/gimprotatetool.c
|
||
* app/tools/gimpscaletool.c
|
||
* app/tools/gimpsheartool.c: use the new stock items instead of
|
||
_("Rotate") etc.
|
||
|
||
* app/tools/gimpperspectivetool.c
|
||
* app/tools/gimpscaletool.c: allow the whole thing being dragged
|
||
around by handling the center separately.
|
||
|
||
* app/tools/gimpdrawtool.c: gimp_draw_tool_on_handle(): need to
|
||
use the radius, not the diameter to check if being over a
|
||
GIMP_HANDLE_CIRCLE handle.
|
||
|
||
2001-11-22 Michael Natterer <mitch@gimp.org>
|
||
|
||
* libgimpwidgets/gimpwidgets.[ch]: use "gimp-item-data" instead of
|
||
"user_data" as data key when attaching values to radio buttons or
|
||
menu items. (For backward compat, attach "user_data" additionally,
|
||
but don't use it to _get_data()).
|
||
Added gimp_radio_group_set_active() which works like
|
||
gimp_options_menu_set_history() and sets the active item by
|
||
attached "gimp-item-data" value.
|
||
|
||
* app/gui/brush-select.c
|
||
* app/gui/file-new-dialog.c
|
||
* app/gui/info-window.c
|
||
* app/gui/preferences-dialog.c
|
||
* app/gui/resolution-calibrate-dialog.c
|
||
* app/tools/gimpbucketfilltool.c
|
||
* app/tools/gimpselectiontool.c
|
||
* app/tools/paint_options.c
|
||
* app/tools/selection_options.c
|
||
* app/widgets/gimplayerlistview.c: removed all kinds of
|
||
"user_data" stuff and evil hacks to find a radio button by the
|
||
value it represents (simply call gimp_radio_group_set_active()).
|
||
|
||
* app/tools/gimpdrawtool.c: added a g_return_if_fail().
|
||
|
||
* app/tools/gimpfliptool.c: don't set draw_tool_class->draw to NULL,
|
||
|
||
* app/tools/gimptransformtool.[ch]: fixed some stuff i broke when
|
||
removing the old "interactive" boolean (there is no
|
||
non-interactive transform tool any more). Put the info_dialog
|
||
pointer and the old_trans_info array into the GimpTransformTool
|
||
instance. Added gimp_transform_tool_info_dialog_connect(). Don't
|
||
include any subclasses any more.
|
||
|
||
* app/tools/gimpperspectivetool.c
|
||
* app/tools/gimprotatetool.c
|
||
* app/tools/gimpscaletool.c
|
||
* app/tools/gimpsheartool.c: use
|
||
gimp_transform_tool_info_dialog_connect() to create and connect
|
||
the info dialogs' action_area.
|
||
|
||
2001-11-21 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/gui/splash.c: sink the GtkPreview created for the splash.
|
||
|
||
* libgimpwidgets/gimphelpui.c: ref and sink the tooltips on creation.
|
||
|
||
2001-11-21 Sven Neumann <sven@gimp.org>
|
||
|
||
* libgimpwidgets/gimpfileselection.c: set the window title for file
|
||
selection dialogs as we do for directory selection dialogs. Provide
|
||
fallbacks if gimp_file_selection_new() is called with a NULL title.
|
||
|
||
* plug-ins/script-fu/script-fu-enums.h
|
||
* plug-ins/script-fu/script-fu-scripts.c
|
||
* plug-ins/script-fu/siod-wrapper.c: applied a modified version of a
|
||
patch from Matteo Nastasi <matteo.nastasi@milug.org> that adds the new
|
||
Script-Fu parameter type SF-DIRNAME.
|
||
|
||
* plug-ins/script-fu/scripts/test-sphere.scm: use SF-DIRNAME.
|
||
|
||
2001-11-21 Michael Natterer <mitch@gimp.org>
|
||
|
||
* RELEASE-TO-CVS.patch: regenerated with the stuff below included.
|
||
|
||
2001-11-21 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/tools/gimptexttool.c: seems I've comitted something which
|
||
should only be in RELEASE-TO-CVS.patch. Sorry...
|
||
|
||
2001-11-21 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/display/gimpdisplayshell-callbacks.c: key press and release
|
||
events were sent swapped to tools.
|
||
|
||
* app/tools/selection_options.[ch]: added radio buttons for the
|
||
selection operation (REPLACE, ADD, ...). Partly fixes #51108.
|
||
|
||
* app/tools/gimpselectiontool.[ch]: honor the new tool options
|
||
stuff. Do evil things in gimp_selection_tool_modifier_key().
|
||
|
||
* app/tools/gimpbycolorselecttool.[ch]: removed most of the
|
||
widgets from the by_color_select window because they are all in
|
||
the selection_options now.
|
||
|
||
* libgimpwidgets/gimpstock.[ch]: added new stock items for the
|
||
buttons.
|
||
|
||
* themes/Default/Makefile.am
|
||
* themes/Default/images/Makefile.am
|
||
* themes/Default/images/stock-button-selection-add.png
|
||
* themes/Default/images/stock-button-selection-intersect.png
|
||
* themes/Default/images/stock-button-selection-replace.png
|
||
* themes/Default/images/stock-button-selection-subtract.png: new
|
||
stock images.
|
||
|
||
2001-11-21 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/tools/selection_options.c: added "reset" code for the new
|
||
auto_shrink tool options.
|
||
|
||
2001-11-21 Michael Natterer <mitch@gimp.org>
|
||
|
||
* pixmaps/Makefile.am
|
||
* pixmaps/anchor.xpm
|
||
* pixmaps/edit.xpm
|
||
* pixmaps/eye.xpm
|
||
* pixmaps/linked.xpm
|
||
* pixmaps/paste-as-new.xpm
|
||
* pixmaps/paste-into.xpm
|
||
* pixmaps/refresh.xpm: felt like i had to remove some cruft, so
|
||
these unused pixmaps had to go to the Attic.
|
||
|
||
2001-11-21 Michael Natterer <mitch@gimp.org>
|
||
|
||
* RELEASE-TO-CVS.patch: regenerated after the text tool changes.
|
||
|
||
2001-11-20 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/tools/tools-types.h: added GimpToolRegisterFunc,
|
||
GimpToolRegisterCallback and GimpToolOptionsNewFunc typedefs
|
||
which are used to register tools.
|
||
|
||
* app/tools/tools.c: put the register funcs in an array of
|
||
GimpToolRegisterFuncs. Pass a Gimp pointer *plus* a
|
||
GimpToolRegisterCallback (which is tool_manager_register_tool())
|
||
to the tools' register functions.
|
||
|
||
* app/tools/tool_manager.[ch]: added a GimpToolOptionsNewFunc to
|
||
the parameters of tool_manager_register_tool(). Create the tool
|
||
options here, not in each tool.
|
||
|
||
* app/tools/paint_options.[ch]
|
||
* app/tools/selection_options.[ch]
|
||
* app/tools/tool_options.[ch]
|
||
* app/tools/transform_options.[ch]: all _init() and _new()
|
||
functions take a GimpToolInfo pointer now. The _reset() func needs
|
||
to be set manually now.
|
||
|
||
* app/tools/[all_tools].[ch]: changed accordingly:
|
||
|
||
- pass GimpToolOptionsNewFuncs to the register callback.
|
||
- don't create the tool options in the tools' _init() function.
|
||
- removed all static tool options variables.
|
||
- get the options from the tool system in the cases i missed
|
||
in my last commit.
|
||
- added minor hacks to get rid of the static options pointer
|
||
in some pathological cases :) (i.e. the ink tool).
|
||
|
||
2001-11-20 David Neary <dneary@eircom.net>
|
||
|
||
* app/core/gimppalette.c: Included errno.h
|
||
|
||
2001-11-20 Rebecca Walter <rjp@mail.tele.dk>
|
||
|
||
* app/core/gimpedit.c
|
||
* app/core/gimpimagefile.c
|
||
* app/core/gimpmoduleinfo.c
|
||
* app/core/gimpmodules.c
|
||
* app/core/gimppalette.c
|
||
* app/core/gimppattern.c: More of the extensive proofing. Fun fun fun!
|
||
|
||
2001-11-20 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/gui/preferences-dialog.c
|
||
* plug-ins/common/gif.c
|
||
* plug-ins/common/jpeg.c
|
||
* plug-ins/common/mail.c: don't strip last character off when
|
||
retrieving text from a GtkTextBuffer. There used to be a bug in GTK+
|
||
that made this necessary. It has been fixed in the meantime.
|
||
|
||
* plug-ins/gimpressionist/size.c: merged string fix from stable branch.
|
||
|
||
2001-11-20 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/tools/gimpdrawtool.[ch]
|
||
* app/tools/gimppainttool.[ch]
|
||
* app/tools/gimprectselecttool.[ch]
|
||
* app/tools/gimptool.[ch]
|
||
* app/tools/gimptransformtool.[ch]: use simple virtual functions
|
||
instead of signals for all tools because they are much faster and
|
||
don't need to be signals at all.
|
||
|
||
2001-11-20 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/core/gimp.c: put a g_object_ref() on a different line.
|
||
|
||
* app/core/gimpdrawable-bucket-fill.c
|
||
* app/core/gimpmodules.c: ne need to #include "core/..." here.
|
||
|
||
* app/display/gimpdisplay-handlers.c: added debugging output
|
||
because we have an image refcounting problem :(
|
||
|
||
* app/display/gimpdisplayshell-handlers.c: fixed a signal
|
||
disconnection.
|
||
|
||
* app/tools/gimpbezierselecttool.[ch]
|
||
* app/tools/gimpblendtool.c
|
||
* app/tools/gimpbucketfilltool.c
|
||
* app/tools/gimpbycolorselecttool.c
|
||
* app/tools/gimpclonetool.c
|
||
* app/tools/gimpcolorpickertool.c
|
||
* app/tools/gimpcroptool.c
|
||
* app/tools/gimpellipseselecttool.c
|
||
* app/tools/gimpfreeselecttool.c
|
||
* app/tools/gimpfuzzyselecttool.c
|
||
* app/tools/gimpinktool.c
|
||
* app/tools/gimpiscissorstool.c
|
||
* app/tools/gimpmagnifytool.c
|
||
* app/tools/gimpmeasuretool.c
|
||
* app/tools/gimprectselecttool.c
|
||
* app/tools/gimpsmudgetool.c: get the tool's options via
|
||
tool->tool_info->tool_options, not from the local statis pointer.
|
||
Some minor cleanups & function reordering.
|
||
|
||
* app/widgets/gimpdockbook.c: return TRUE from the notebook tabs'
|
||
"button_press" handler, connect DND before cnnecting to
|
||
"button_press" because we now stop it's emission.
|
||
|
||
2001-11-19 Daniel Egger <degger@fhm.edu>
|
||
|
||
* app/paint-funcs/paint-funcs.h: Added magic comment to prevent
|
||
enums from being exported.
|
||
|
||
2001-11-19 Daniel Egger <degger@fhm.edu>
|
||
|
||
* app/paint-funcs/paint-funcs-mmx.h
|
||
* app/paint-funcs/paint-funcs.c: Fixed typoes and brought the
|
||
code back to compileland.
|
||
|
||
Now the code IS tested. :)
|
||
|
||
2001-11-19 Michael Natterer <mitch@gimp.org>
|
||
|
||
Some moving of unused files so they don't clutter app/...
|
||
|
||
* app/gdisplay_color.[ch]
|
||
* app/gdisplay_color_ui.[ch]: removed...
|
||
|
||
* app/display/gimpdisplayshell-filter.[ch]
|
||
* app/display/gimpdisplayshell-filter-dialog.[ch]: ...added here.
|
||
|
||
2001-11-19 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/display/gimpdisplay-foreach.c: forgot to commit last time.
|
||
|
||
Transform stuff cleanup:
|
||
|
||
* app/core/Makefile.am
|
||
* app/core/core-types.h
|
||
* app/core/gimpdrawable-transform.[ch]: new files implementing
|
||
the actual transform functions cut from tools/gimptransformtool.*.
|
||
|
||
* app/core/gimpdrawable-transform-utils.[ch]: new files implementing
|
||
transform matrix assembly utility functions.
|
||
|
||
* app/tools/gimptransformtool.[ch]: removed the stuff here. cleanup.
|
||
|
||
* app/tools/transform_options.[ch]: removed all stuff which does
|
||
not belong here, e.g. the transform_tool_* functions and the
|
||
global "transform_options" variable. Works like all other tool
|
||
options now.
|
||
|
||
* app/tools/gimpfliptool.[ch]
|
||
* app/tools/gimpperspectivetool.[ch]
|
||
* app/tools/gimprotatetool.[ch]
|
||
* app/tools/gimpscaletool.[ch]
|
||
* app/tools/gimpsheartool.[ch]: massive code removal because
|
||
we can use core/gimpdrawable-fransform* functions now. cleanup.
|
||
|
||
* tools/pdbgen/Makefile.am
|
||
* tools/pdbgen/groups.pl: added new PDB group "transform_tools".
|
||
|
||
* tools/pdbgen/pdb/tools.pdb: removed the transform stuff here...
|
||
|
||
* tools/pdbgen/pdb/transform_tools.pdb: and added *much*
|
||
simplified versions which use the new core/gimpdrawable-transform*
|
||
utilities.
|
||
|
||
* app/pdb/Makefile.am
|
||
* app/pdb/transform_tools_cmds.c: new file.
|
||
|
||
* app/pdb/internal_procs.c
|
||
* app/pdb/tools_cmds.c: regenerated.
|
||
|
||
* libgimp/Makefile.am
|
||
* libgimp/gimp_pdb.h
|
||
* libgimp/gimptransformtools_pdb.[ch]: new files.
|
||
|
||
* libgimp/gimptools_pdb.[ch]: regenerated.
|
||
|
||
2001-11-19 Daniel Egger <degger@fhm.edu>
|
||
|
||
* app/paint-funcs/paint-funcs.c
|
||
* app/paint-funcs/paint-funcs-generic.h
|
||
* app/paint-funcs/paint-funcs.h:
|
||
- Statified a few functions so they can be inlined.
|
||
- Simplified function calls.
|
||
- Unsignified variables and parameters where possible.
|
||
- Reduced lookuptable size for add_pixels from 256*256*4 bytes
|
||
to 2*256-1 bytes and O(n*n) function in paint_funcs_setup
|
||
to O(n). Should reduce memory consumption by almost 1/4 Mb.
|
||
|
||
This needs much more cleanup....
|
||
|
||
2001-11-19 Daniel Egger <degger@fhm.edu>
|
||
|
||
* app/paint-funcs/paint-funcs-mmx.h: New file. Added glue code
|
||
for the assembly MMX functions.
|
||
|
||
* app/paint-funcs/paint-funcs-generic.h: Moved MMX code from here ...
|
||
* app/paint-funcs/paint-funcs-mmx.h: ... to here. Cleaned up a bit
|
||
and don't check for use_mmx on every single call but ...
|
||
* app/paint-funcs/paint-funcs.c: (paint_funcs_setup): ... here and
|
||
register MMX functions if CPU has those capabilities.
|
||
|
||
Code is untested for the MMX case due no available Intel-Machine
|
||
right now but should't be to far away from a working state.
|
||
|
||
2001-11-19 Sven Neumann <sven@gimp.org>
|
||
|
||
* RELEASE-TO-CVS.patch: changes to the text tool to make it compile
|
||
with the new PangoFT2 API.
|
||
|
||
2001-11-19 Daniel Egger <degger@fhm.edu>
|
||
|
||
* app/paint-funcs/paint-funcs.c
|
||
* app/paint-funcs/paint-funcs-generic.h: Split generic (read: C)
|
||
code for pixelmanipulation and most of the code that belongs to it
|
||
into new file.
|
||
(apply_layer_funcs): Gone. The correct layer function is now
|
||
dispatched from the layer_mode_funcs table and the table is
|
||
per default initialised with the generic functions. Arguments
|
||
will be passed by a struct apply_layer_mode_struct instead
|
||
of directly per stack to avoid parameter typying madness.
|
||
|
||
It's now cleanly possible to check for availabilty of
|
||
MMX/AltiVec/(insert your favourite brew here) in
|
||
paint_funcs_setup () and change the table to use faster routines.
|
||
The old MMX cruft which is temporaribly in paint-funcs-generic.h
|
||
will soon be gone but I'm to tired now.
|
||
|
||
* app/paint-funcs/paint-funcs.c: Braind dead code for temporary
|
||
buffer (which never shrunk only grew) gone and replaced by
|
||
straightforward code.
|
||
|
||
* app/paint-funcs/paint-funcs-generic.h: Applied a bunch of obvious
|
||
optimisations to reduce code size and avoid parameter madness.
|
||
|
||
* paint-funcs-[gray|graya|indexed|rga|rgba].[c|h]: Gone. I lost
|
||
several days of work on these files and came to the conclusion
|
||
that there has to be an easier way anyway. :)
|
||
|
||
Everything well tested on PPC and producing exactly the same results
|
||
as the code before so this has good odds to be the first major
|
||
change that won't break GIMP. :)
|
||
|
||
2001-11-18 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/display/gimpdisplay-foreach.c: fixed a comment.
|
||
|
||
* app/gui/file-open-dialog.c: no need to declare
|
||
"extern GSList *display_list;".
|
||
|
||
* app/gui/brush-select.c
|
||
* tools/pdbgen/pdb/brush_select.pdb: pass opacity as [0.0..100.0]
|
||
through the PDB and as [0.0..1.0] to the app.
|
||
|
||
* app/pdb/brush_select_cmds.c: regenerated.
|
||
|
||
* plug-ins/gfig/gfig.c: full opacity is 100.0, not 1.0.
|
||
|
||
(GFig and script-fu may still be broken after this change).
|
||
|
||
2001-11-17 Michael Natterer <mitch@gimp.org>
|
||
|
||
Made --no-interface not calling gtk_init() (and thus not
|
||
contacting the X server) any more. (Fixes #58961).
|
||
|
||
* app/core/gimp.[ch]: added two new function pointers
|
||
"gui_main_loop_func" and "gui_main_loop_quit_func" and an own
|
||
stack of GMainLoops which is used if they are not set.
|
||
|
||
* app/gui/gui.[ch]: added main loop functions here and set them as
|
||
pointers in the Gimp instance. Separated gui_libs_init() from
|
||
gui_themes_init() so it can be used as replacement for gtk_init()
|
||
and be called before command line parsing.
|
||
|
||
* app/main.c: check for "--no-interface" before initializing
|
||
anything. Added a "--g-fatal-warnings" option (cut'n'paste from
|
||
gtkmain.c). Added a check for "--" (end of options).
|
||
|
||
* app/app_procs.c: call the new gimp_main_loop() functions,
|
||
call gui_themes_init().
|
||
|
||
* app/devices.[ch]: reduce usage of "the_gimp" by passing "Gimp"
|
||
pointers to some functions.
|
||
|
||
* app/plug_in.c: some ugly checks for the_gimp->no_interface which
|
||
will go away once this file is core/ui chopped. Call
|
||
gimp_main_loop() stuff instead of gtk_main().
|
||
|
||
* app/core/gimptoolinfo.c: allow passing a NUL GdkPixbuf pointer.
|
||
|
||
2001-11-17 Wang Jian <lark@linux.net.cn>
|
||
|
||
* configure.in(ALL_LINGUAS): Added zh_CN for Simplified Chinese.
|
||
|
||
2001-11-17 Daniel Egger <egger@fhm.edu>
|
||
|
||
* app/base/base.c: Prevent from crash if swap_path == NULL.
|
||
|
||
2001-11-16 Michael Natterer <mitch@gimp.org>
|
||
|
||
Wishlist item #57669:
|
||
|
||
* app/gimprc.[ch]: replaced gimprc option "allow-resize-windows"
|
||
by "resize-windows-on-zoom" and "resize-windows-on-resize".
|
||
|
||
* app/gui/preferences-dialog.c: added a toggle for
|
||
"resize-windows-on-resize".
|
||
|
||
* app/display/gimpdisplayshell-handlers.c
|
||
* app/display/gimpdisplayshell-scale.c
|
||
* app/tools/gimpmagnifytool.c
|
||
* docs/gimprc.5.in
|
||
* etc/gimprc.in
|
||
* etc/gimprc.win32: changed accordingly.
|
||
|
||
* app/display/gimpdisplay-area.[ch]: added gimp_area_new().
|
||
|
||
* app/display/gimpdisplay.c: cleanup usage of GimpArea.
|
||
|
||
* app/display/gimpdisplayshell.[ch]: added configurable canvas
|
||
padding color and a small color_panel to change it in the upper
|
||
right corner of the window.
|
||
|
||
* app/display/gimpdisplayshell-callbacks.[ch]: added a callback
|
||
for the color_panel, initialize the color in the "realize"
|
||
callback.
|
||
|
||
Wishlist item #51548.
|
||
|
||
* app/display/gimpdisplayshell-selection.[ch]
|
||
* app/gui/menus.c
|
||
* app/gui/view-commands.[ch]: made the layer boundary toggleable
|
||
separately from the selection.
|
||
|
||
* app/gui/color-notebook.c: #if 0'ed a debugging g_print().
|
||
|
||
2001-11-16 Sven Neumann <sven@gimp.org>
|
||
|
||
* libgimpwidgets/gimpcolorbutton.[ch]: added Black and White to popup
|
||
menu. Take widget->allocation into account when calculating popup
|
||
position since GtkButton is a NO_WINDOW widget now.
|
||
|
||
2001-11-16 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/core/gimpimage.c: s/G_GNUC_PRETTY_FUNC/G_GNUC_PRETTY_FUNCTION/
|
||
|
||
2001-11-16 Rebecca Walter <rjp@mail.tele.dk>
|
||
|
||
* app/core/gimpcontext.c
|
||
* app/core/gimpdatafactory.c
|
||
* app/core/gimpdrawable-bucket-fill.c
|
||
* app/core/gimpdrawable.c
|
||
* app/core/gimpgradient.c
|
||
* app/core/gimpimage-convert.c
|
||
* app/core/gimpimage-mask.c
|
||
* app/core/gimpimage.c: Extensive proofreading of messages and
|
||
warnings. Improved standardization of string format and content.
|
||
|
||
2001-11-15 Michael Natterer <mitch@gimp.org>
|
||
|
||
Gimp's opacity values are a pain... the core actually *should*
|
||
only accept and expose values in a [0.0..1.0] range.
|
||
|
||
* app/core/gimpdrawable-blend.c
|
||
* app/core/gimpdrawable-bucket-fill.c: take 0.0 <= opacity <= 1.0,
|
||
*not* 0.0 < opacity <= 100.0.
|
||
|
||
* app/tools/gimpblendtool.c: don't (opacity * 100.0) before passing.
|
||
|
||
* tools/pdbgen/pdb/tools.pdb: (opacity / 100.0) before passing.
|
||
|
||
* app/display/gimpdisplayshell-dnd.c: paint_mode and opacity were
|
||
swapped in the call to gimp_drawable_bucket_fill_full().
|
||
|
||
* app/pdb/tools_cmds.c: regenerated.
|
||
|
||
2001-11-15 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gui/layers-commands.c: fixed the layers dialog's "New Layer"
|
||
button by checking for a floating selection in
|
||
layers_new_layer_query() instead of
|
||
layers_new_layer_cmd_callback().
|
||
|
||
2001-11-15 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/tools/gimpdrawtool.[ch]: restructured the new draw utility
|
||
functions and added gimp_draw_tool_draw_handle() and
|
||
gimp_draw_tool_on_handle().
|
||
|
||
* app/tools/gimpbezierselecttool.c
|
||
* app/tools/gimpblendtool.c
|
||
* app/tools/gimpcroptool.[ch]
|
||
* app/tools/gimpiscissorstool.c
|
||
* app/tools/gimpmeasuretool.c
|
||
* app/tools/gimppainttool.c
|
||
* app/tools/gimppathtool.c
|
||
* app/tools/gimptransformtool.c: use the new functions all over
|
||
the place so handle drawing and mouse_over detection work the same
|
||
for all tools.
|
||
|
||
2001-11-15 Michael Natterer <mitch@gimp.org>
|
||
|
||
* Makefile.am: removed antique Makefile targets, including the
|
||
"files" hack (which was some automatic EXTRA_DIST voodoo), added
|
||
missing stuff to EXTRA_DIST.
|
||
|
||
* app/plug-in/Makefile.am
|
||
* devel-docs/Makefile.am
|
||
* docs/Makefile.am
|
||
* plug-ins/Makefile.am
|
||
* plug-ins/FractalExplorer/Makefile.am
|
||
* plug-ins/FractalExplorer/fractalexplorer-examples/Makefile.am
|
||
* plug-ins/Lighting/Makefile.am
|
||
* plug-ins/MapObject/Makefile.am
|
||
* plug-ins/bmp/Makefile.am
|
||
* plug-ins/dbbrowser/Makefile.am
|
||
* plug-ins/faxg3/Makefile.am
|
||
* plug-ins/fits/Makefile.am
|
||
* plug-ins/flame/Makefile.am
|
||
* plug-ins/gap/Makefile.am
|
||
* plug-ins/gdyntext/Makefile.am
|
||
* plug-ins/gflare/Makefile.am
|
||
* plug-ins/gflare/gflares/Makefile.am
|
||
* plug-ins/gfli/Makefile.am
|
||
* plug-ins/gimpressionist/Makefile.am
|
||
* plug-ins/gimpressionist/Brushes/Makefile.am
|
||
* plug-ins/gimpressionist/Paper/Makefile.am
|
||
* plug-ins/gimpressionist/Presets/Makefile.am
|
||
* plug-ins/ifscompose/Makefile.am
|
||
* plug-ins/imagemap/Makefile.am
|
||
* plug-ins/libgck/Makefile.am
|
||
* plug-ins/libgck/gck/Makefile.am
|
||
* plug-ins/maze/Makefile.am
|
||
* plug-ins/mosaic/Makefile.am
|
||
* plug-ins/pagecurl/Makefile.am
|
||
* plug-ins/plugin-helper/Makefile.am
|
||
* plug-ins/print/Makefile.am
|
||
* plug-ins/rcm/Makefile.am
|
||
* plug-ins/script-fu/Makefile.am
|
||
* plug-ins/script-fu/scripts/Makefile.am
|
||
* plug-ins/sel2path/Makefile.am
|
||
* plug-ins/sgi/Makefile.am
|
||
* plug-ins/webbrowser/Makefile.am
|
||
* plug-ins/xjt/Makefile.am
|
||
* tips/Makefile.am: removed "files" too, some minor cleanups.
|
||
|
||
2001-11-15 Rebecca Walter <rjp@mail.tele.dk>
|
||
|
||
* app/core/gimpbrush.c
|
||
* app/core/gimpbrushpipe.c
|
||
* app/core/gimpchannel.c: Proofreading to strings, approved by Sven
|
||
|
||
2001-11-15 Sven Neumann <sven@gimp.org>
|
||
|
||
* RELEASE-TO-CVS.patch: recreated from toplevel dir so it applies
|
||
as advertised in HACKING.
|
||
|
||
2001-11-14 Manish Singh <yosh@gimp.org>
|
||
|
||
* RELEASE-TO-CVS.patch: gtk_item_factory_parse_rc->gtk_accel_map_load,
|
||
gtk_item_factory_dump_rc->gtk_accel_map_save
|
||
|
||
* configure.in: fixes for newer autoconf, AC_INIT with etc/gimprc.in
|
||
now
|
||
|
||
* app/core/gimpcontainer.c: g_type_instance_is_a is private (and
|
||
got renamed recently), use G_TYPE_CHECK_INSTANCE_TYPE instead
|
||
|
||
* app/gui/gradient-editor.c: use gtk_accel_label_set_accel_widget
|
||
instead of gtk_accel_label_set_accel_object
|
||
|
||
* app/gui/module-browser.c: replaced CList with a TreeView
|
||
|
||
2001-11-14 Michael Natterer <mitch@gimp.org>
|
||
|
||
* data/misc/Makefile.am
|
||
* data/misc/rmshm: removed here again...
|
||
|
||
* tools/Makefile.am
|
||
* tools/rmshm: ...and added here.
|
||
|
||
2001-11-14 Michael Natterer <mitch@gimp.org>
|
||
|
||
* configure.in: new directories etc/, data/images/ and data/misc/.
|
||
|
||
* Makefile.am
|
||
* data/Makefile.am: added new SUBDIRs.
|
||
|
||
* data/images/Makefile.am
|
||
* data/misc/Makefile.am
|
||
* etc/Makefile.am: new Makefiles
|
||
|
||
* gimp1_0_splash.ppm
|
||
* gimp1_2_splash.ppm
|
||
* gimp_logo.ppm
|
||
* gimp_splash.ppm: removed, now in data/images/
|
||
|
||
* rmshm
|
||
* user_install
|
||
* user_install.bat: removed, now in data/misc/
|
||
|
||
* gimprc.in
|
||
* gimprc.win32
|
||
* gimprc_user.in
|
||
* gtkrc_user
|
||
* ps-menurc
|
||
* unitrc: removed, now in etc/
|
||
|
||
* app/gui/about-dialog.c
|
||
* app/gui/splash.c
|
||
* app/gui/user-install-dialog.c: changed image and script file
|
||
paths accordingly.
|
||
|
||
2001-11-14 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/pdb/gimprc_cmds.c
|
||
* tools/pdbgen/pdb/gimprc.pdb: added a missing g_strdup() that caused
|
||
gimp_get_default_comment() to free the global default comment.
|
||
|
||
2001-11-14 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/tools/tool_manager.[ch]: added
|
||
tool_manager_button_press_active() and friends functions.
|
||
|
||
* app/display/gimpdisplayshell-callbacks.c:
|
||
gimp_display_shell_canvas_events(): use the functions instead of
|
||
re-fetching the active_tool whenever it may have changed
|
||
(which requires knowledge about the tools' implementation).
|
||
Also moved lots of variables around.
|
||
|
||
2001-11-14 Michael Natterer <mitch@gimp.org>
|
||
|
||
* Makefile.am: changed build order of toplevel directories so that
|
||
the stuff which is most likely to be broken during "make dist"
|
||
(the po stuff) is built before the actual source.
|
||
|
||
2001-11-14 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/core/gimpimage.[ch]: added "update_guide" signal.
|
||
|
||
* app/display/gimpdisplay-foreach.[ch]: removed
|
||
gdisplays_expose_guide().
|
||
|
||
* app/display/gimpdisplayshell-handlers.c: added a handler for
|
||
"update_guide" and expose the guide there.
|
||
|
||
* app/undo.c
|
||
* app/tools/gimpmeasuretool.c
|
||
* app/tools/gimpmovetool.c: call gimp_image_update_guide() instead
|
||
of gdisplays_expose_guide().
|
||
|
||
2001-11-14 Abel Cheung <maddog@linux.org.hk>
|
||
|
||
* configure.in (ALL_LINGUAS): Rename zh_TW.Big5 -> zh_TW to
|
||
prevent future encoding naming problem.
|
||
|
||
2001-11-13 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/widgets/gimpdnd.h: a cut'n'paste bug prevented tools and
|
||
imagefiles from being dropped.
|
||
|
||
2001-11-13 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/display/gimpdisplayshell-callbacks.c: get the active_tool
|
||
_after_ maybe changing it by calling devices_check_change().
|
||
|
||
2001-11-13 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gui/menus.c: the toolbox menu's last_used_documents menu
|
||
contained one entry too few if the number of documents was smaller
|
||
or equal than gimprc.last_opened_size.
|
||
|
||
2001-11-13 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/tools/gimppainttool.[ch]: use GimpCoords structs for
|
||
cur_coords, last_coords and start_coords and the undo struct
|
||
instead of storing separate gdouble values.
|
||
|
||
* app/undo.c
|
||
* app/tools/gimpairbrushtool.c
|
||
* app/tools/gimpclonetool.c
|
||
* app/tools/gimpconvolvetool.c
|
||
* app/tools/gimpdodgeburntool.c
|
||
* app/tools/gimperasertool.c
|
||
* app/tools/gimppaintbrushtool.c
|
||
* app/tools/gimppenciltool.c
|
||
* app/tools/gimpsmudgetool.c: changed accordingly.
|
||
|
||
2001-11-13 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/base/temp-buf.c: allow passing NULL to temp_buf_resize() again.
|
||
|
||
2001-11-13 Michael Natterer <mitch@gimp.org>
|
||
Sven Neumann <sven@gimp.org>
|
||
|
||
* Made 1.3.0 release.
|
||
|
||
2001-11-13 Sven Neumann <sven@gimp.org>
|
||
|
||
* Makefile.am (EXTRA_DIST): added po/po2tbl.sed.in and the po update
|
||
scripts.
|
||
|
||
2001-11-13 Michael Natterer <mitch@gimp.org>
|
||
|
||
* modules/Makefile.am: added colorsel_water.c to EXTRA_DIST.
|
||
|
||
2001-11-13 Michael Natterer <mitch@gimp.org>
|
||
|
||
* NEWS: some more stuff.
|
||
|
||
2001-11-13 Sven Neumann <sven@gimp.org>
|
||
|
||
* INSTALL
|
||
* NEWS
|
||
* README
|
||
* TODO.xml: updated
|
||
|
||
2001-11-13 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gui/user-installed-dialog.c: fixed some action_area uglyness
|
||
which occured after the switch to GtkDialog.
|
||
|
||
2001-11-13 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/base/temp-buf.c: added some safety checks.
|
||
|
||
* app/widgets/Makefile.am
|
||
* app/widgets/widgets-types.h
|
||
* app/widgets/gimpimagefilepreview.[ch]: a new class implementing
|
||
special GimpPreview methods for GimpImagefile.
|
||
|
||
* app/core/gimpimagefile.c: added code to load thumbnails according
|
||
to the proposed Thumbnail Managing Standard
|
||
(see http://triq.net/~pearl/thumbnail-spec/). Pretty much untested.
|
||
|
||
* app/widgets/gimpcontainerview-utils.c: plugged a memleak.
|
||
|
||
* app/widgets/gimpimagepreview.c: simplified.
|
||
|
||
* app/widgets/gimppreview.c: tell it about GimpImagefilePreview.
|
||
|
||
2001-11-13 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/core/Makefile.am: need to spell EXTRA_DIST correctly now
|
||
that the "files" hack is gone.
|
||
|
||
2001-11-13 Michael Natterer <mitch@gimp.org>
|
||
|
||
* configure.in: commented out generation of some files in
|
||
plug-ins/ so config.status doesn't warn about non-existing
|
||
directories.
|
||
|
||
2001-11-12 Michael Natterer <mitch@gimp.org>
|
||
|
||
* HACKING: small fix.
|
||
|
||
* configure.in: changed --disable-perl to --enable-perl because
|
||
it doesn't build properly at the moment.
|
||
|
||
* pixmaps/Makefile.am: removed stuff which is no longer there
|
||
from EXTRA_DIST.
|
||
|
||
* plug-ins/Makefile.am: put back the $(GIMP_PERL) line in SUBDIRS.
|
||
|
||
* app/widgets/gimpmenuitem.c. include "libgimpwidgets/gimpwidgets.h".
|
||
|
||
* data/Makefile.am
|
||
* data/brushes/Makefile.am
|
||
* data/gradients/Makefile.am
|
||
* data/palettes/Makefile.am
|
||
* data/patterns/Makefile.am: removed the old "files" hack and put
|
||
the stuff to EXTRA_DIST.
|
||
|
||
* app/Makefile.am
|
||
* app/base/Makefile.am
|
||
* app/core/Makefile.am
|
||
* app/file/Makefile.am
|
||
* app/gui/Makefile.am
|
||
* app/paint-funcs/Makefile.am
|
||
* app/pdb/Makefile.am
|
||
* app/tools/Makefile.am
|
||
* app/widgets/Makefile.am
|
||
* app/widgets/gimpmenuitem.c
|
||
* app/xcf/Makefile.am
|
||
* cursors/Makefile.am
|
||
* libgimp/Makefile.am
|
||
* libgimpbase/Makefile.am
|
||
* libgimpcolor/Makefile.am
|
||
* libgimpmath/Makefile.am
|
||
* libgimpwidgets/Makefile.am
|
||
* m4macros/Makefile.am
|
||
* themes/Makefile.am
|
||
* themes/Default/Makefile.am
|
||
* themes/Default/images/Makefile.am
|
||
* themes/Default/images/tools/Makefile.am: removed "files" target.
|
||
|
||
2001-11-12 Sven Neumann <sven@gimp.org>
|
||
|
||
* po/Makefile.in.in
|
||
* po-libgimp/Makefile.in.in
|
||
* po-plug-ins/Makefile.in.in
|
||
* po-script-fu/Makefile.in.in: fixed distdir.
|
||
|
||
2001-11-12 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/widgets/widgets-types.h: changed GimpItemGetNameFunc
|
||
signature to return a tooltip in a passed gchar* pointer location.
|
||
|
||
* app/widgets/gimpcomponentlistitem.c
|
||
* app/widgets/gimpcontainergridview.c
|
||
* app/widgets/gimpcontainerview-utils.c
|
||
* app/widgets/gimplistitem.c
|
||
* app/widgets/gimpmenuitem.c: changed all get_name_funcs and their
|
||
callers accordingly (passing the "gchar **tooltip" pointer is
|
||
optional).
|
||
|
||
2001-11-12 Michael Natterer <mitch@gimp.org>
|
||
|
||
* plug-ins/common/pixelize.c: implemented a feature request:
|
||
|
||
Made the pixel size configurable independently in x and y
|
||
direction. Added new PDB function. Use a GimpCoordinates widget
|
||
for the dialog.
|
||
|
||
2001-11-12 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/display/gimpdisplayshell-callbacks.c: use
|
||
gimp_display_shell_[install|remove]_override_cursor() to set the
|
||
middle mouse button move cursor so we get the original cursor back
|
||
after scrolling.
|
||
|
||
* app/tools/gimpdrawtool.[ch]: added lots of drawing functions
|
||
(gimp_draw_tool_draw_rectangle() etc.) which work in image (or
|
||
active drawable) coordinates.
|
||
|
||
* app/tools/gimpblendtool.c
|
||
* app/tools/gimpclonetool.c
|
||
* app/tools/gimpcolorpickertool.c
|
||
* app/tools/gimpeditselectiontool.c
|
||
* app/tools/gimpellipseselecttool.c
|
||
* app/tools/gimpfreeselecttool.c
|
||
* app/tools/gimpiscissorstool.c
|
||
* app/tools/gimpmagnifytool.c
|
||
* app/tools/gimpmeasuretool.c
|
||
* app/tools/gimppainttool.c
|
||
* app/tools/gimppathtool.c
|
||
* app/tools/gimprectselecttool.c
|
||
* app/tools/gimptransformtool.[ch]
|
||
* app/tools/path_tool.[ch]: use the new functions. Removed tons of
|
||
gdk_draw_foo() and gdisplay_transform_foo() calls. Most drawing
|
||
functions look *much* nicer now. Ported some tools to detect
|
||
handle clicks in display coordinates while I was on it, misc
|
||
fixes.
|
||
|
||
* app/tools/gimpmovetool.[ch]: derive from GimpDrawTool instead
|
||
of drawing manually.
|
||
|
||
2001-11-11 Michael Natterer <mitch@gimp.org>
|
||
|
||
* tools/pdbgen/pdb.pl: oops, this should have been checked in
|
||
with my last commit.
|
||
|
||
2001-11-11 Manish Singh <yosh@gimp.org>
|
||
|
||
* configure.in
|
||
* app/Makefile.am
|
||
* app/plug-in/Makefile.am
|
||
* plug-ins/Makefile.am
|
||
* modules/Makefile.am: fixes to build with automake 1.5 (just hacks
|
||
to get it to work, real fixes to come later)
|
||
|
||
* app/gui/preferences-dialog.c: unset GValue from tree model when
|
||
we're done with it.
|
||
|
||
* libgimpwidgets/gimpcolorarea.c
|
||
* libgimpwidgets/gimpcolorbutton.c
|
||
* libgimpwidgets/gimpsizeentry.[ch]
|
||
* libgimpwidgets/gimpwidgets.[ch]
|
||
* plug-ins/common/animationplay.c
|
||
* plug-ins/common/colorify.c
|
||
* plug-ins/common/curve_bend.c
|
||
* plug-ins/common/diffraction.c
|
||
* plug-ins/common/film.c
|
||
* plug-ins/common/gbr.c
|
||
* plug-ins/common/gee.c
|
||
* plug-ins/common/gee_zoom.c
|
||
* plug-ins/common/gicon.c
|
||
* plug-ins/common/gih.c
|
||
* plug-ins/common/gtm.c
|
||
* plug-ins/common/jpeg.c
|
||
* plug-ins/common/mail.c
|
||
* plug-ins/common/pat.c
|
||
* plug-ins/common/plugindetails.c
|
||
* plug-ins/common/png.c
|
||
* plug-ins/common/ps.c
|
||
* plug-ins/common/sample_colorize.c
|
||
* plug-ins/common/sinus.c
|
||
* plug-ins/common/spheredesigner.c
|
||
* plug-ins/common/tileit.c
|
||
* plug-ins/common/uniteditor.c
|
||
* plug-ins/common/xbm.c: gtk_widget_set_usize is deprecated. Use
|
||
gtk_widget_set_size_request instead.
|
||
|
||
* libgimpwidgets/gimpunitmenu.[ch]: changed to use GtkTreeView.
|
||
|
||
2001-11-10 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/display/gimpdisplay-marching-ants.h
|
||
* app/display/gimpdisplay-selection.[ch]: removed...
|
||
|
||
* app/display/gimpdisplayshell-marching-ants.h
|
||
* app/display/gimpdisplayshell-selection.[ch]: ...new names.
|
||
|
||
* app/display/gimpdisplay.[ch]
|
||
* app/display/gimpdisplayshell.[ch]: moved the Selection stuff
|
||
from GimpDisplay to GimpDisplayShell.
|
||
|
||
Renamed all functions which will stay in GimpDisplay from
|
||
gdisplay_foo() to gimp_display_foo(). Added gimp_display_get_ID(),
|
||
cleaned up the idle renderer.
|
||
|
||
* app/image_map.c
|
||
* app/plug_in.c
|
||
* app/display/Makefile.am
|
||
* app/display/gimpdisplay-foreach.[ch]
|
||
* app/display/gimpdisplay-handlers.c
|
||
* app/display/gimpdisplayshell-callbacks.c
|
||
* app/display/gimpdisplayshell-handlers.c
|
||
* app/display/gimpdisplayshell-scroll.c
|
||
* app/gui/gui.c
|
||
* app/gui/view-commands.c
|
||
* app/tools/gimpeditselectiontool.c
|
||
* app/tools/gimpinktool.c
|
||
* app/tools/gimpmovetool.c
|
||
* app/tools/gimppainttool.c
|
||
* tools/pdbgen/pdb.pl: changed accordingly, cleanup.
|
||
|
||
* app/pdb/display_cmds.c: regenerated.
|
||
|
||
2001-11-10 Michael Natterer <mitch@gimp.org>
|
||
|
||
* Makefile.am
|
||
* user_install.[ch]: removed...
|
||
|
||
* gui/Makefile.am
|
||
* gui/user-install-dialog.[ch]: ...added here.
|
||
|
||
* gui/file-open-dialog.[ch]: removed file_open_with_display() and
|
||
file_open_with_proc_and_display() here...
|
||
|
||
* file/file-open.[ch]: ...and added them here.
|
||
|
||
* app_procs.c
|
||
* widgets/gimpdnd.c
|
||
* widgets/gimpdocumentview.c: changed accordingly.
|
||
|
||
2001-11-10 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/qmask.[ch]: removed.
|
||
|
||
* app/core/gimpimage.[ch]: added "qmask_changed" signal and
|
||
gimp_image_[set|get]_qmask_state().
|
||
|
||
* app/display/Makefile.am
|
||
* app/display/gimpdisplayshell-qmask.[ch]: put the stuff here.
|
||
|
||
* app/display/gimpdisplayshell-handlers.[ch]: new files: handlers
|
||
for GimpImage signals handled by GimpDisplayShell.
|
||
|
||
* app/display/gimpdisplay-handlers.c: removed some of them here.
|
||
Don't include any GimpDisplayShell stuff any more.
|
||
|
||
* app/display/gimpdisplay.c: no need to update the qmask buttons
|
||
in gimp_display_flush_whenever().
|
||
|
||
* app/display/gimpdisplayshell.c: call gimp_display_shell_connect()
|
||
and disconnect().
|
||
|
||
2001-11-10 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/qmask.c: fixed qmask callbacks to check if the toggle is
|
||
active before performing any action.
|
||
|
||
* app/core/core-types.h: added the GimpCoords type here because it
|
||
will be used by core functions as soon as the painting stuff is
|
||
separated from the painting tools.
|
||
|
||
* app/core/gimpdrawable-bucket-fill.c: fixed g_return_if_fail()s
|
||
to not disable any useful operation :-) Still didn't figure out
|
||
how I broke display color and pattern dropping :-(
|
||
|
||
* app/display/gimpdisplayshell.[ch]: added
|
||
gimp_display_shell_[un]transform_coords() which work on two
|
||
GimpCoords pointers.
|
||
|
||
* app/display/gimpdisplayshell-callbacks.c: use the new functions
|
||
instead of the gdisplay_* ones.
|
||
|
||
* app/gui/image-commands.c: GimpImage emits "disconnect", not
|
||
"destroy".
|
||
|
||
* app/tools/tools-types.h
|
||
* app/tools/gimptool.h: removed GimpCoords here.
|
||
|
||
* app/tools/gimpconvolvetool.c: fixed modifier_key() implementation.
|
||
|
||
* app/tools/gimpcroptool.c: cleanup.
|
||
|
||
* app/tools/paint_options.c: don't need a separator in the ink
|
||
tool options.
|
||
|
||
* app/tools/gimprectselecttool.c
|
||
* app/tools/selection_options.[ch]: implemented wish #50352:
|
||
|
||
Added "Auto Shrink Selection" and "Sample Merged" toggles to
|
||
the rect_select and ellipse_select tools. Put the "Fixed size"
|
||
widgets in a frame. Removed the separators after the common
|
||
selection tool options because I didn't like them any more
|
||
(feel free to comment ;)
|
||
|
||
2001-11-09 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gui/resize-dialog.c: added a "Center" button to the "Offset"
|
||
frame (#51599).
|
||
|
||
2001-11-09 Michael Natterer <mitch@gimp.org>
|
||
|
||
* libgimpbase/gimpprotocol.[ch]: removed the "palette" PDB type
|
||
again. Incremented protocol version.
|
||
|
||
* app/plug_in.c
|
||
* app/pdb/procedural_db.c
|
||
* libgimp/gimp.c
|
||
* libgimpbase/gimpbasetypes.h: changed accordingly.
|
||
|
||
* app/pdb/procedural_db_cmds.c
|
||
* plug-ins/script-fu/script-fu-constants.c
|
||
* tools/pdbgen/enums.pl: regenerated.
|
||
|
||
2001-11-09 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/undo.c: should set the fs.backing_store TileManager pointer
|
||
to NULL after deleting it. Why the heck didn't this crash
|
||
before...?
|
||
|
||
* app/core/Makefile.am
|
||
* app/core/gimpdrawable-blend.[ch]: the blend stuff taken from
|
||
the blend tool.
|
||
|
||
* app/core/core-types.h: added the blend enums.
|
||
|
||
* app/tools/gimpblendtool.[ch]: removed the stuff here.
|
||
|
||
* tools/pdbgen/pdb/tools.pdb: changed blend wrapper accordingly.
|
||
|
||
* app/pdb/tools_cmds.c: regenerated.
|
||
|
||
* tools/pdbgen/Makefile.am: don't scan tools/gimpblendtool.c.
|
||
|
||
* tools/pdbgen/enums.pl: regenerated.
|
||
|
||
* app/tools/gimpbucketfilltool.c: fixed crash caused by my last
|
||
change.
|
||
|
||
* app/display/gimpdisplay.c
|
||
* app/display/gimpdisplayshell-callbacks.c
|
||
* app/display/gimpdisplayshell.c: removed lots of uglyness by
|
||
using GtkImages for the qmask and navigation buttons. Don't realize
|
||
anything before the shell is shown. Connect the realize
|
||
callback and do stuff there. Don't call the realize callback
|
||
from gimp_display_shell_canvas_events() any more.
|
||
|
||
* pixmaps/navbutton.xpm
|
||
* pixmaps/qmasknosel.xpm
|
||
* pixmaps/qmasksel.xpm: removed.
|
||
|
||
* themes/Default/Makefile.am
|
||
* themes/Default/images/Makefile.am
|
||
* themes/Default/images/stock-menu-navigation.png
|
||
* themes/Default/images/stock-menu-qmask-off.png
|
||
* themes/Default/images/stock-menu-qmask-on.png: new PNGs instead.
|
||
|
||
* libgimpwidgets/gimpstock.[ch]: register them as stock icons.
|
||
|
||
2001-11-09 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/gui/file-open-dialog.c: merged fix for bug #63880 from stable
|
||
branch and fixed a wrong signal callback signature.
|
||
|
||
* plug-ins/imagemap/imap_main.c: merged fix for bug #64075 from stable
|
||
branch.
|
||
|
||
* plug-ins/common/gauss_iir.c
|
||
* plug-ins/common/gauss_rle.c: merged fix for bug #57853 from stable
|
||
branch.
|
||
|
||
* plug-ins/Lighting/lighting_ui.c: s/gdk_image_unref/g_object_unref/
|
||
|
||
2001-11-08 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am: build display/ before tools/.
|
||
|
||
* app/devices.c: devices_check_change(): added all events
|
||
which have a GdkDevice pointer.
|
||
|
||
* app/gimpprogress.c: include "display-types.h" instead of
|
||
"core-types.h".
|
||
|
||
* app/core/Makefile.am
|
||
* app/core/gimpdrawable-bucket-fill.[ch]: new files: the bucket_fill
|
||
stuff taken from tools/gimpbucketfilltool.[ch].
|
||
|
||
* app/core/core-types.h: added "BucketFillMode".
|
||
|
||
* app/core/gimpimage-mask-select.[ch]: cleanup.
|
||
|
||
* app/core/gimpmarshal.list: added more marshallers for GimpTool's
|
||
new signal signatures.
|
||
|
||
* app/core/gimpmarshal.[ch]: regenerated.
|
||
|
||
* app/display/Makefile.am
|
||
* app/display/gimpdisplayshell-dnd.[ch]
|
||
* app/display/gimpdisplayshell-layer-select.[ch]: new files: the
|
||
canvas drop callbacks from gimpdisplayshell-callbacks.[ch] and
|
||
the stuff formerly knows as gui/layer-select.[ch].
|
||
|
||
* app/display/gimpdisplay.h: don't include "gui/gui-types.h".
|
||
|
||
* app/display/gximage.c: include "display-types.h".
|
||
|
||
* app/display/gimpdisplay-foreach.c
|
||
* app/display/gimpdisplayshell.[ch]: call gdsplay_delete(), don't
|
||
destroy the shell widget.
|
||
|
||
* app/gui/Makefile.am
|
||
* app/gui/layer-select.[ch]: removed.
|
||
|
||
* app/gui/gradients-commands.c: fixed "Save as POV" fprintf()s.
|
||
|
||
* app/gui/preferences-dialog.c: removed the layer_select stuff
|
||
because it is useless with the new preview system.
|
||
|
||
* app/gui/tool-options-dialog.c: send the correct data to the
|
||
close_callback.
|
||
|
||
* app/gui/tools-commands.c: changed to follow the new
|
||
gimp_tool_initialize() semantics (see below).
|
||
|
||
Tool & canvas event handling chainsawing:
|
||
|
||
* app/tools/tools-types.h: new struct GimpCoords which contains
|
||
x, y, pressure, tilt etc.
|
||
|
||
* app/display/gimpdisplayshell-callbacks.[ch]: added utility
|
||
functions which transparently retreive the current event's
|
||
GimpCoords or take it from the device directly if the event has
|
||
none. Pass GimpCoords _in_image_coordinates_ to all tool
|
||
functions.
|
||
|
||
Most important: don't pass GdkEvents and display coordinates to
|
||
tools any more.
|
||
|
||
* app/tools/gimptool.[ch]: changed virtual functions to take
|
||
GimpCoords, time and state separately instead of GdkEvents.
|
||
|
||
* app/tools/gimpbezierselecttool.c
|
||
* app/tools/gimpblendtool.c
|
||
* app/tools/gimpbucketfilltool.[ch]
|
||
* app/tools/gimpbycolorselecttool.c
|
||
* app/tools/gimpclonetool.c
|
||
* app/tools/gimpcolorpickertool.c
|
||
* app/tools/gimpconvolvetool.c
|
||
* app/tools/gimpcroptool.[ch]
|
||
* app/tools/gimpcurvestool.c
|
||
* app/tools/gimpdodgeburntool.c
|
||
* app/tools/gimpdrawtool.c
|
||
* app/tools/gimpeditselectiontool.[ch]
|
||
* app/tools/gimperasertool.c
|
||
* app/tools/gimpfliptool.c
|
||
* app/tools/gimpfreeselecttool.[ch]
|
||
* app/tools/gimpfuzzyselecttool.c
|
||
* app/tools/gimpinktool.c
|
||
* app/tools/gimpiscissorstool.c
|
||
* app/tools/gimpmagnifytool.c
|
||
* app/tools/gimpmeasuretool.c
|
||
* app/tools/gimpmovetool.c
|
||
* app/tools/gimppainttool.c
|
||
* app/tools/gimppathtool.[ch]
|
||
* app/tools/gimprectselecttool.c
|
||
* app/tools/gimprotatetool.c
|
||
* app/tools/gimpselectiontool.[ch]
|
||
* app/tools/gimpsmudgetool.c
|
||
* app/tools/gimptexttool.c
|
||
* app/tools/gimptransformtool.[ch]
|
||
* app/tools/path_tool.[ch]
|
||
* app/tools/selection_options.c: tons and tons of changes:
|
||
|
||
- changed to use the new virtual function parameters.
|
||
- removed zillions of gdisplay_untransform_coords().
|
||
- get the active drawable's offsets manually in many cases.
|
||
(questionable, but IMHO ok because it's obvious and not simply a
|
||
"TRUE" passed to some function)
|
||
- reordered some functions to be consistent across tools.
|
||
- some tools had to be changed to work on image coords, not
|
||
display ones (esp. crop).
|
||
- fixed strange rotate tool behaviour which should be backported
|
||
to stable.
|
||
- some stuff i came across.
|
||
- indentation and other paranoia.
|
||
- rounding of coordinated may be broken in some tools.
|
||
- new bugs guaranteed.
|
||
|
||
* app/tools/tool_manager.[ch]: new semantic of
|
||
tool_manager_initialize_active() (looked at the places where it
|
||
was used from and put common code together). Should be a bit
|
||
better now :)
|
||
|
||
* app/tools/gimpblendtool.c
|
||
* app/tools/transform_options.c: use the new GTK+ feature that a
|
||
widget (toggle button) can be a frame's title for this tools' tool
|
||
options.
|
||
|
||
* app/widgets/widgets-types.h: stuff.
|
||
|
||
* themes/Default/gtkrc: s/GtkDialog/GimpDialog/.
|
||
|
||
* tools/pdbgen/Makefile.am: don't scan tools/gimpbucketfilltool.h
|
||
any more.
|
||
|
||
* tools/pdbgen/enums.pl: regenerated.
|
||
|
||
* tools/pdbgen/pdb/tools.pdb: changed bucket_fill wrapper.
|
||
|
||
* app/pdb/tools_cmds.c: regenerated.
|
||
|
||
2001-11-05 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/imagemap/*.c: ported fixes from stable branch (mostly
|
||
missing includes of config.h),
|
||
|
||
* plug-ins/gimpressionist/orientmap.c: removed commented out code
|
||
that continued to show up when grepping for deprecated GTK+ code.
|
||
|
||
* tools/pdbgen/pdb/procedural_db.pdb: removed unneeded inclusion
|
||
of config.h (it gets added automatically).
|
||
|
||
2001-11-02 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/display/gimpdisplayshell-scroll.c: stop synthesizing expose
|
||
events but use gdk_window_invalidate_rect() and
|
||
gdk_window_process_updates() (both with "update_children == FALSE"
|
||
because the canvas has no children).
|
||
|
||
* app/tools/gimpmagnifytool.c: nothing.
|
||
|
||
2001-11-01 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/display/Makefile.am
|
||
* app/display/gimpdisplay-callbacks.[ch]
|
||
* app/display/gimpdisplay-render.[ch]
|
||
* app/display/gimpdisplay-scale.[ch]
|
||
* app/display/gimpdisplay-scroll.[ch]: removed and added as
|
||
gimpdisplayshell-foo.[ch] because they are all methods of the
|
||
shell.
|
||
|
||
* app/display/gimpdisplay.[ch]
|
||
* app/display/gimpdisplayshell.[ch]: moved the "offset" and "size"
|
||
variables from GimpDisplay to GimpDisplayShell. GimpDisplay
|
||
should know nothing about screen coordinates.
|
||
|
||
The gdisplay_[un]transform_foo() methods are still part of
|
||
GimpDisplay but will be moved to GimpDisplayShell as soon as the
|
||
tools' vitrual functions speak in image coordinates instead of
|
||
GdkEvents.
|
||
|
||
* app/display/gimpdisplayshell-callbacks.[ch]: prefixed all
|
||
functions with gimp_display_shell_*. Moved some stuff to a
|
||
"realize" callback File still has to be renamed.
|
||
|
||
* app/display/gimpdisplay-foreach.[ch]: removed
|
||
gdisplays_shrink_wrap().
|
||
|
||
* app/gui/menus.c
|
||
* app/gui/view-commands.[ch]
|
||
* app/display/gimpdisplayshell-scale.[ch]: implemented "Zoom to
|
||
Fit Window" function (#57670).
|
||
|
||
* app/nav_window.c
|
||
* app/display/gimpdisplay-handlers.c
|
||
* app/display/gimpdisplayshell-render.[ch]
|
||
* app/display/gimpdisplayshell-scale.[ch]
|
||
* app/display/gimpdisplayshell-scroll.[ch]
|
||
* app/gui/colormap-dialog.c
|
||
* app/gui/gui.c
|
||
* app/gui/preferences-dialog.c
|
||
* app/tools/gimpmagnifytool.c
|
||
* app/tools/gimpmovetool.c
|
||
* app/widgets/gimppreview.c: changed according to variable
|
||
and filename changes.
|
||
|
||
* app/tools/tool_manager.c: tool_manager_select_tool(): send the
|
||
active tool a "HALT" command before selecting the new one. Fixes
|
||
stale tool dialogs which were there because some other hack was
|
||
removed (This is IMHO the right place to shut down the active
|
||
tool).
|
||
|
||
* app/tools/gimpcroptool.c: don't shrink wrap after cropping but
|
||
let gimprc.allow_resize_windows decide.
|
||
|
||
* app/tools/gimpselectiontool.c: gimage_mask_value() takes image,
|
||
not screen coordinates. A good example of how braindead it is to
|
||
pass GdkEvents to tools :-) Fixes incorrect cursor and oper
|
||
update of the selection tools.
|
||
|
||
* app/tools/gimptransformtool.c
|
||
* app/undo.c: removed (#if 0 for now) some strange code which did
|
||
manual exposing of GimpDisplayShell areas. This was definitely a
|
||
hack and should not be there given the image emits correct
|
||
"update" signals.
|
||
|
||
2001-11-01 DindinX <odin@mandrakesoft.com>
|
||
|
||
* plug-ins/common/bz2.c: fix a little typo in a comment
|
||
|
||
2001-10-31 Michael Natterer <mitch@gimp.org>
|
||
|
||
Chopped up the display stuff (beware: unfinished)...
|
||
|
||
The plan is that GimpDisplay is the object which collects
|
||
updates from the image, compresses them and waits for the GIMP
|
||
to be idle to actually paint them. It should be a non-GUI object
|
||
which is the model for the actual widget to connect to.
|
||
|
||
GimpDisplayShell has all the widgets and handles painting and
|
||
exposing of the result. Nobody should actually be required to
|
||
update or look at it as it should be a view on the GimpDisplay
|
||
object.
|
||
|
||
Much stuff is still in the wrong place and the functions don't
|
||
follow their files' filename namespace any more. More to come...
|
||
|
||
* app/display/Makefile.am
|
||
* app/display/gimpdisplay-ops.[ch]: removed. It's functions didn't
|
||
belong together anyway.
|
||
|
||
* app/display/gimpdisplay-area.[ch]: new files: the GimpArea
|
||
functions.
|
||
|
||
* app/display/gimpdisplay-handlers.[ch]: new files: signal
|
||
handlers for GimpImage signals. Mostly from gui/gui.c.
|
||
|
||
* app/display/gimpdisplay.[ch]: removed all widgets and other
|
||
GUI stuff. There is still much undecided here...
|
||
|
||
* app/display/gimpdisplayshell.[ch]: actually use the object and
|
||
filled it with all the stuff from GimpDisplay.
|
||
|
||
* app/display/gimpdisplay-callbacks.[ch]
|
||
* app/display/gimpdisplay-foreach.[ch]
|
||
* app/display/gimpdisplay-render.c
|
||
* app/display/gimpdisplay-scale.[ch]
|
||
* app/display/gimpdisplay-scroll.[ch]
|
||
* app/display/gimpdisplay-selection.c: changed accordingly.
|
||
|
||
* app/core/gimp.[ch]: return a GimpObject from
|
||
gimp_create_display() so it can be used as single GUI independent
|
||
point to create displays, require the initial scale as parameter.
|
||
|
||
* app/core/gimpcontext.c: changed the ugly EEKWrapper according to
|
||
the GimpDisplay structure changes. Bugfix: set the image to NULL
|
||
in gimp_context_display_destroyed().
|
||
|
||
* app/core/gimpedit.c
|
||
* app/core/gimpimage-new.c: changed gimp_create_display() calls
|
||
accordingly.
|
||
|
||
* app/core/gimpimage-convert.c: invalidate the layer & image
|
||
previews here, not in the caller.
|
||
|
||
* app/core/gimpimage-crop.c: update the whole image after cropping.
|
||
|
||
* app/core/gimpimage.[ch]: added gimp_image_find_guide(),
|
||
gimp_image_snap_point() and gimp_image_snap_rectangle(). Added
|
||
"resolution_changed" and "unit_changed" signals and corresp.
|
||
public convenience functions to emit them.
|
||
|
||
* app/core/gimplayer.c: emit the image's "alpha_changed" signal
|
||
when adding alpha to the bottom (and only) layer of the image.
|
||
|
||
* app/gimpprogress.c
|
||
* app/image_map.c
|
||
* app/nav_window.c
|
||
* app/qmask.c
|
||
* app/undo.c
|
||
* app/user_install.c: changed accordingly.
|
||
|
||
* app/gui/edit-commands.c
|
||
* app/gui/file-commands.c
|
||
* app/gui/file-open-dialog.c
|
||
* app/gui/image-commands.c
|
||
* app/gui/info-window.c
|
||
* app/gui/preferences-dialog.c
|
||
* app/gui/toolbox.c
|
||
* app/gui/view-commands.c: ditto.
|
||
|
||
* app/gui/gui.[ch]: removed most gimp->images handlers as the
|
||
displays connect to them themselves now. chaged gui_display_new()
|
||
according to the gimp_create_display() changes.
|
||
Added gui_get_screen_resolution().
|
||
|
||
* app/tools/gimpbezierselecttool.c
|
||
* app/tools/gimpblendtool.c
|
||
* app/tools/gimpbucketfilltool.c
|
||
* app/tools/gimpbycolorselecttool.c
|
||
* app/tools/gimpclonetool.c
|
||
* app/tools/gimpcolorpickertool.c
|
||
* app/tools/gimpcroptool.c
|
||
* app/tools/gimpdrawtool.c
|
||
* app/tools/gimpeditselectiontool.c
|
||
* app/tools/gimpfliptool.c
|
||
* app/tools/gimpfreeselecttool.c
|
||
* app/tools/gimpfuzzyselecttool.c
|
||
* app/tools/gimpinktool.c
|
||
* app/tools/gimpiscissorstool.c
|
||
* app/tools/gimpmagnifytool.c
|
||
* app/tools/gimpmeasuretool.c
|
||
* app/tools/gimpmovetool.c
|
||
* app/tools/gimppainttool.c
|
||
* app/tools/gimppathtool.c
|
||
* app/tools/gimprectselecttool.c
|
||
* app/tools/gimpselectiontool.c
|
||
* app/tools/gimptexttool.c
|
||
* app/tools/gimptool.c
|
||
* app/tools/gimptransformtool.c
|
||
* app/tools/xinput_airbrush.c: lots of changes because GimpDisplay
|
||
has become two objects. Lots of gdisp->shell casting uglyness
|
||
added. This is fine because exactly these parts will have to go
|
||
away.
|
||
|
||
(GimpDisplay will provide methods for XOR drawing upon the display
|
||
in image coordinates without the need to transform coordinates all
|
||
the time. Also the tools shouldn't see GdkEvents but get more
|
||
useful virtual functions which speak in image coordinates too).
|
||
|
||
* app/widgets/gimpcomponentlistitem.c: removed a now useless image
|
||
update.
|
||
|
||
* tools/pdbgen/pdb/display.pdb: use gimp_create_display().
|
||
|
||
* app/pdb/display_cmds.c: regenerated.
|
||
|
||
2001-10-30 Simon Budig <simon@gimp.org>
|
||
|
||
* app/pdb/tools_cmds.c
|
||
* app/tools/gimperasertool.c
|
||
* app/tools/gimperasertool.h
|
||
* tools/pdbgen/pdb/tools.pdb
|
||
|
||
Added a "color erase" feature to the eraser. This is ported from
|
||
the colortoalpha plugin and is utterly cool.
|
||
|
||
The "Color Erase" Option should be disabled when the drawable
|
||
has no alpha channel, however, I have no idea how to do this.
|
||
|
||
2001-10-29 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/base/temp-buf.c (temp_buf_to_gray): rewrote so gcc-3.0 doesn't
|
||
complain.
|
||
|
||
* app/widgets/gimpfontselection-dialog.c: use g_ascii_strcasecmp().
|
||
|
||
* libgimp/gimpintl.h
|
||
* libgimp/stdplugins-intl.h
|
||
* plug-ins/script-fu/script-fu-intl.h: don't call gtk_set_locale()
|
||
since gtk_init() does it for us now. Don't set LC_NUMERIC to "C".
|
||
INIT_I18N_UI() is the same as INIT_I18N_UI() now.
|
||
|
||
* app/devices.c
|
||
* app/gimprc.c
|
||
* app/core/gimpbrushgenerated.c
|
||
* app/core/gimpgradient.c
|
||
* app/gui/color-notebook.c
|
||
* app/gui/gradients-commands.c
|
||
* plug-ins/gfig/gfig.c
|
||
* plug-ins/gflare/gflare.c
|
||
* plug-ins/gimpressionist/presets.c
|
||
* plug-ins/ifscompose/ifscompose_storage.c: use g_ascii_formatd() and
|
||
g_ascii_strtod() to serialize and deserialize floats. These functions
|
||
are locale-independent. There are probably more places that need to be
|
||
fixed in this fashion.
|
||
|
||
* plug-ins/script-fu/script-fu-console.c
|
||
* plug-ins/script-fu/script-fu-scripts.c
|
||
* plug-ins/script-fu/script-fu-server.c
|
||
* plug-ins/script-fu/script-fu.c: s/INIT_I18N_UI/INIT_I18N/
|
||
|
||
* tools/gimp-remote.c
|
||
* app/widgets/gimpwidgets-utils.c
|
||
* app/core/gimpimage-contiguous-region.c
|
||
* app/paint-funcs/paint-funcs-indexeda.c
|
||
* app/paint-funcs/paint-funcs.c
|
||
* app/tools/gimppathtool.c
|
||
* app/tools/path_tool.c
|
||
* modules/colorsel_triangle.c
|
||
* plug-ins/common/mpeg.c
|
||
* plug-ins/imagemap/imap_csim_parse.c: cleanups
|
||
|
||
2001-10-29 Michael Natterer <mitch@gimp.org>
|
||
|
||
Cleanup weekend...
|
||
|
||
* app/app_procs.c: pass "no_interface" to gimp_new().
|
||
|
||
* app/core/gimp.[ch]: added "gboolean no_interface" and the
|
||
load_procs and save_procs GSLists.
|
||
|
||
* app/core/gimptoolinfo.[ch]: added a "Gimp" pointer to the
|
||
GimpToolInfo object so more functions find their context without
|
||
accessing the global "the_gimp" variable.
|
||
|
||
* app/display/display-types.h: removed the GDisplay -> GimpDisplay
|
||
typedef.
|
||
|
||
* app/display/gimpdisplay.c: look at gimp->no_interface, don't
|
||
include "appenv.h".
|
||
|
||
* app/file/file-open.[ch]
|
||
* app/file/file-save.[ch]: don't use "the_gimp" any more. Instead,
|
||
pass around lots of "Gimp" pointers. Removed the global load_procs
|
||
and save_procs variables here. Use access() to find out whether a
|
||
file is readable/writable, removed the manual voodoo and it's
|
||
Win32 wrappers. Added an optional (can be NULL) "PlunInProcDef"
|
||
parameter to file_save(), removed file_save_with_proc().
|
||
|
||
* app/gui/menus.c: Use the unused "gpointer data" parameter of the
|
||
GtkItemFactory callbacks to pass a "Gimp" pointer to all of them.
|
||
This reduces the usage of the global "the_gimp" hack to zero
|
||
in app/gui/... yeah.
|
||
|
||
* app/gui/channels-commands.c
|
||
* app/gui/edit-commands.c
|
||
* app/gui/file-commands.c
|
||
* app/gui/image-commands.c
|
||
* app/gui/layers-commands.c
|
||
* app/gui/palettes-commands.c
|
||
* app/gui/select-commands.c
|
||
* app/gui/test-commands.c
|
||
* app/gui/tools-commands.c
|
||
* app/gui/view-commands.c: use the passed "Gimp" pointer.
|
||
|
||
* app/gui/color-area.[ch]
|
||
* app/gui/convert-dialog.c
|
||
* app/gui/dialogs-constructors.c
|
||
* app/gui/file-new-dialog.[ch]
|
||
* app/gui/file-open-dialog.[ch]
|
||
* app/gui/file-save-dialog.[ch]
|
||
* app/gui/gui.c
|
||
* app/gui/info-window.[ch]
|
||
* app/gui/module-browser.[ch]
|
||
* app/gui/palette-editor.c
|
||
* app/gui/palette-import-dialog.[ch]
|
||
* app/gui/paths-dialog.c
|
||
* app/gui/preferences-dialog.[ch]
|
||
* app/gui/resize-dialog.[ch]
|
||
* app/gui/tool-options-dialog.[ch]
|
||
* app/gui/toolbox.c: pass around lots more "Gimp" and
|
||
"GimpContext" pointers and don't use "the_gimp" any more.
|
||
|
||
* app/tools/gimptool.h: added a pointer to the corresponding
|
||
GimpToolInfo object (which in turn has a pointer to a Gimp).
|
||
|
||
* app/tools/tool_manager.[ch]: set the pointer after creating the
|
||
tool object. Removed tool_manager_get_info_by_tool() as there is a
|
||
tool->tool_info pointer now.
|
||
|
||
* app/tools/gimpbezierselecttool.c
|
||
* app/tools/gimpblendtool.c
|
||
* app/tools/gimpbrightnesscontrasttool.c
|
||
* app/tools/gimpclonetool.c
|
||
* app/tools/gimpcolorbalancetool.c
|
||
* app/tools/gimpcolorpickertool.c
|
||
* app/tools/gimpconvolvetool.c
|
||
* app/tools/gimpcroptool.c
|
||
* app/tools/gimpcurvestool.c
|
||
* app/tools/gimpdodgeburntool.c
|
||
* app/tools/gimpdrawtool.c
|
||
* app/tools/gimpeditselectiontool.c
|
||
* app/tools/gimpellipseselecttool.c
|
||
* app/tools/gimperasertool.c
|
||
* app/tools/gimpfliptool.c
|
||
* app/tools/gimphistogramtool.c
|
||
* app/tools/gimphuesaturationtool.c
|
||
* app/tools/gimpinktool.c
|
||
* app/tools/gimplevelstool.c
|
||
* app/tools/gimpmagnifytool.c
|
||
* app/tools/gimpmeasuretool.c
|
||
* app/tools/gimpmovetool.c
|
||
* app/tools/gimppainttool.c
|
||
* app/tools/gimppathtool.c
|
||
* app/tools/gimpperspectivetool.c
|
||
* app/tools/gimpposterizetool.c
|
||
* app/tools/gimprectselecttool.c
|
||
* app/tools/gimprotatetool.c
|
||
* app/tools/gimpscaletool.c
|
||
* app/tools/gimpsheartool.c
|
||
* app/tools/gimptexttool.c
|
||
* app/tools/gimpthresholdtool.c
|
||
* app/tools/path_tool.c
|
||
* app/tools/xinput_airbrush.c: s/GDisplay/GimpDisplay/g.
|
||
Use tool->tool_info and tool_info->gimp in some places to get
|
||
rid of using "the_gimp".
|
||
|
||
Removing the remaining ones involves changing the tool options
|
||
system and is scheduled next...
|
||
|
||
* app/widgets/gimpdnd.c
|
||
* app/widgets/gimpdocumentview.c: pass a "Gimp" pointer to all
|
||
file_open_*() functions.
|
||
|
||
* app/gdisplay_color.[ch]
|
||
* app/gdisplay_color_ui.[ch]
|
||
* app/image_map.[ch]
|
||
* app/nav_window.[ch]
|
||
* app/path.c
|
||
* app/path_bezier.c
|
||
* app/path_transform.h
|
||
* app/qmask.[ch]: s/GDisplay/GimpDisplay/g
|
||
|
||
* tools/pdbgen/pdb/fileops.pdb: load_procs and save_procs are
|
||
members of the "Gimp" object now.
|
||
|
||
* tools/pdbgen/pdb/plug_in.pdb: use gimp->no_interface, don't
|
||
include "appenv.h".
|
||
|
||
* app/pdb/fileops_cmds.c
|
||
* app/pdb/plug_in_cmds.c: regenerated.
|
||
|
||
2001-10-29 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/webbrowser/web-browser.scm: updated links
|
||
|
||
* tools/pdbgen/lib.pl: cosmetic change (if (!x) -> unless (x)).
|
||
|
||
2001-10-28 Hans Breuer <hans@breuer.org>
|
||
|
||
* config.h.win32 : define HAVE_DIRENT_H, it's from build/win32/dirent
|
||
|
||
* app/*/makefile.msc : updated
|
||
* app/file/makefile.msc app/display/makefile.msc : new files
|
||
|
||
* app/user_install.c : make the G_OS_WIN32 part compile again
|
||
(fn -> filename)
|
||
|
||
* app/core/gimptoolinfo.c (gimp_tool_info_init) : cosmetic change,
|
||
make implementation signature static like the local prototype
|
||
|
||
* app/pdb/gradients_cmds.c app/pdb/palette_cmds.c : include <string.h>
|
||
for strlen () / strcmp () by ...
|
||
* tools/pdbgen/pdb/gradients.pdb tools/pdbgen/pdb/palette.pdb :
|
||
... changing the perl source here
|
||
|
||
* app/widgets/gimpdocumentview.c : #include <string.h>
|
||
|
||
* libgimp/makefile.msc :
|
||
* libgimpwidgets/gimpwidgets.def : updated
|
||
|
||
* plug-ins/makefile.msc : reflect the fact that DIRENT functions
|
||
are removed from glib. Also define the questionable GETTEXT_PACKAGE
|
||
and LOCALEDIR which are required to compile, not adapted to NLS
|
||
support for win32 yet
|
||
|
||
2001-10-28 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/common/nlfilt.c
|
||
* plug-ins/gap/gap_mov_dialog.c
|
||
* plug-ins/gap/gap_navigator_dialog.c: removed code that sets the
|
||
colormap and gamma value of a GtkPreview. We don't need to do this
|
||
since GtkPreview uses GdkRGB.
|
||
|
||
2001-10-28 Sven Neumann <sven@gimp.org>
|
||
|
||
* configure.in: require GLib-1.3.10, GTK+-1.3.10 and Pango-0.21
|
||
|
||
* RELEASE-TO-CVS.patch
|
||
* libgimpbase/gimpparasiteio.c
|
||
* libgimpwidgets/gimpstock.c
|
||
* plug-ins/ifscompose/ifscompose_storage.c: applied the patch and
|
||
emptied the patch file.
|
||
|
||
* libgimp/gimpgradientmenu.c: corrected order of parameters in call
|
||
to gimp_gradients_get_gradient_data().
|
||
|
||
* tools/pdbgen/pdb/palette.pdb: I think this is how Nathan wanted it
|
||
to be.
|
||
|
||
* app/pdb/palette_cmds.c
|
||
* libgimp/gimppalette_pdb.[ch]: regenerated.
|
||
|
||
2001-10-27 Nathan Summers <rock@gimp.org>
|
||
|
||
* gimppalette_pdb.c: the autogenerated code for
|
||
gimp_palette_get_entry won't compile. Temporary kludge so that it
|
||
will compile and work correctly.
|
||
|
||
2001-10-27 Nathan Summers <rock@gimp.org>
|
||
|
||
* app/plug_in.c
|
||
* libgimp/gimp.c
|
||
* libgimpbase/gimpbasetypes.h
|
||
* libgimpbase/gimpprotocol.c
|
||
* libgimpbase/gimpprotocol.h
|
||
* tools/pdbgen/pdb/palette.pdb: added preliminary pdb support to
|
||
manipulate palettes. Incremented plugin interface version number.
|
||
|
||
* app/pdb/internal_procs.c
|
||
* app/pdb/palette_cmds.c
|
||
* app/pdb/procedural_db.c
|
||
* app/pdb/procedural_db_cmds.c
|
||
* libgimp/gimppalette_pdb.c
|
||
* libgimp/gimppalette_pdb.h
|
||
* plug-ins/script-fu/script-fu-constants.c
|
||
* tools/pdbgen/enums.pl: regenerated
|
||
|
||
2001-10-26 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/core/gimpbrushgenerated.h
|
||
* app/core/gimpbrushpipe.h
|
||
* app/core/gimpbuffer.h
|
||
* app/core/gimpdatafactory.h
|
||
* app/core/gimpdrawable.h
|
||
* app/core/gimpgradient.h
|
||
* app/core/gimpimage.h: added some missing FOO_GET_CLASS() macros.
|
||
|
||
2001-10-26 Michael Natterer <mitch@gimp.org>
|
||
|
||
* tools/pdbgen/pdb/gradient_select.pdb: removed
|
||
gradients_get_gradient_data() here...
|
||
|
||
* tools/pdbgen/pdb/gradients.pdb: ...and added it here.
|
||
|
||
* app/pdb/gradient_select_cmds.c
|
||
* app/pdb/gradients_cmds.c
|
||
* app/pdb/internal_procs.c
|
||
* libgimp/gimpgradients_pdb.[ch]
|
||
* libgimp/gimpgradientselect_pdb.[ch]: regenerated.
|
||
|
||
* app/core/gimpgradient.h: added GIMP_GRADIENT_DEFAULT_SAMPLE_SIZE
|
||
here...
|
||
|
||
* app/gui/gradient-select.h: ...removed it here.
|
||
|
||
* libgimp/Makefile.am
|
||
* libgimp/gimp.h
|
||
* libgimp/gimpgradientselect.[ch]: removed. We don't wrap
|
||
_gradients_get_gradient_data() with gradients_get_gradient_data()
|
||
any more but call the PDB wrapper directly.
|
||
|
||
API CHANGE: Arguments 2 and 3 are swapped now!
|
||
|
||
* plug-ins/FractalExplorer/Dialogs.c: changed accordingly.
|
||
|
||
2001-10-25 Michael Natterer <mitch@gimp.org>
|
||
|
||
* configure.in: generate app/file/Makefile
|
||
|
||
* app/Makefile.am
|
||
* app/file-open.[ch]
|
||
* app/file-save.[ch]
|
||
* app/file-utils.[ch]: removed...
|
||
|
||
* app/file/Makefile.am
|
||
* app/file/file-open.[ch]
|
||
* app/file/file-save.[ch]
|
||
* app/file/file-utils.[ch]: ...and added here.
|
||
|
||
* app/gui/file-commands.c
|
||
* app/gui/file-open-dialog.c
|
||
* app/gui/file-save-dialog.c
|
||
* tools/pdbgen/pdb/fileops.pdb: changed includes accordingly.
|
||
|
||
* app/app_procs.[ch]: removed app_exit_finish() and
|
||
app_exit_finish_done() from the public API, call gtk_main() here,
|
||
pass "no_data" to gimp_new() and "restore_session" to
|
||
gui_restore().
|
||
|
||
* app/main.c: removed global variable "double_speed", don't
|
||
call gtk_main() in main.c. Added some missing log domains.
|
||
|
||
* app/appenv.h: removed "double_speed".
|
||
|
||
* app/core/gimp.[ch]: added "gboolean no_data" property which
|
||
must be passed to gimp_new().
|
||
|
||
* app/display/gimpdisplay-foreach.[ch]: added gdisplays_set_busy()
|
||
and gdisplays_unset_busy().
|
||
|
||
* app/gui/about-dialog.c: don't include "appenv.h", declare
|
||
"double_speed" extern.
|
||
|
||
* app/gui/brush-select.[ch]
|
||
* app/gui/gradient-select.[ch]
|
||
* app/gui/palette-select.[ch]
|
||
* app/gui/pattern-select.[ch]: made the list of dialogs and the
|
||
global selection dialogs private. Added functions which get a
|
||
dialog by PDB callback_name. Pass a "Gimp" and the callback_name
|
||
to the constructors. Don't include "app_procs.h" for "the_gimp"
|
||
and "appenv.h" for "no_data" any more. Use the passed "Gimp"
|
||
instead and look at gimp->no_data.
|
||
|
||
* app/gui/toolbox.[ch]: pass a "Gimp" to the constructor.
|
||
|
||
* app/gui/gui.[ch]: use the new gdisplays_[un]set_busy() functions,
|
||
use the passed "Gimp" all over the place, don't include
|
||
"appenv.h" and "app_procs.h". gui_really_quit_dialog() takes
|
||
a "quit_func" callback now and calls it instead of calling
|
||
app_exit_finish() (which is now private) directly.
|
||
|
||
* app/gui/convert-dialog.c
|
||
* app/gui/dialogs-constructors.c
|
||
* app/gui/palette-import-dialog.c
|
||
* tools/pdbgen/pdb/brush_select.pdb
|
||
* tools/pdbgen/pdb/gradient_select.pdb
|
||
* tools/pdbgen/pdb/pattern_select.pdb: changed accordingly.
|
||
|
||
* app/pdb/brush_select_cmds.c
|
||
* app/pdb/fileops_cmds.c
|
||
* app/pdb/gradient_select_cmds.c
|
||
* app/pdb/pattern_select_cmds.c: regenerated.
|
||
|
||
2001-10-24 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/perl/examples/glowing_steel: merged Raphaels patch for
|
||
bug #56598 from the stable branch.
|
||
|
||
* libgimp/gimpexport.c: merged Raphaels patch for bug #51114 from the
|
||
stable branch.
|
||
|
||
* plug-ins/common/grid.c: merged the fix for indexed images from the
|
||
stable branch.
|
||
|
||
2001-10-24 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/file-open.c
|
||
* app/file-utils.c
|
||
* app/gimprc.c
|
||
* app/plug_in.c
|
||
* app/user_install.c
|
||
* app/base/base.c
|
||
* app/base/temp-buf.c
|
||
* app/core/gimpdata.c
|
||
* app/core/gimpdatafiles.c
|
||
* app/core/gimpimagefile.c
|
||
* app/gui/about-dialog.c
|
||
* app/gui/file-open-dialog.c
|
||
* app/gui/file-save-dialog.c
|
||
* app/gui/gui.c
|
||
* app/gui/menus.c
|
||
* app/gui/splash.c
|
||
* app/gui/tips-dialog.c
|
||
* app/tools/gimpcurvestool.c
|
||
* app/tools/gimplevelstool.c
|
||
* libgimpbase/gimpenv.c
|
||
* plug-ins/FractalExplorer/FractalExplorer.c
|
||
* plug-ins/gfig/gfig.c
|
||
* plug-ins/gflare/gflare.c
|
||
* tools/pdbgen/pdb/fileops.pdb: use g_build_filename() all over
|
||
the place instead of g_strconcat() and friends together with
|
||
G_DIR_SEPARATOR_S. Also removed all attempts to manually detect
|
||
double dir separators. LibGimpBase's searchpath utility functions
|
||
don't append a G_DIR_SEPARATOR_S to all paths any more.
|
||
|
||
* app/pdb/fileops_cmds.c: regenerated.
|
||
|
||
2001-10-24 Michael Natterer <mitch@gimp.org>
|
||
|
||
* libgimpwidgets/gimpbutton.[ch]: added
|
||
gimp_button_extended_clicked() which emits the resp. signal.
|
||
|
||
* app/gui/menus.[ch]: added new item factories "<Buffers>" and
|
||
"<Documents>".
|
||
|
||
* app/gui/Makefile.am
|
||
* app/gui/buffers-commands.[ch]
|
||
* app/gui/documents-commands.[ch]: new files for the callbacks.
|
||
|
||
* app/gui/dialogs-constructors.c: use them.
|
||
|
||
* app/gui/file-open-dialog.c: set the title to "Open Image",
|
||
not "Load Image".
|
||
|
||
2001-10-23 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/app_procs.c: pass a "Gimp" to gui_libs_init(), initialize
|
||
the GUI before initializing the plug-ins.
|
||
|
||
* app/gui/menus.[ch]: removed menus_last_opened_add() and connect
|
||
to gimp->documents' "add", "remove" and "reorder" signals to
|
||
auto-update the "last opened" menu entries. Moved all public
|
||
functions to the top of the file. Removed global variable
|
||
"last_opened_raw_filenames".
|
||
|
||
* app/gui/gui.[ch]: removed "last opened" fiddling here, moved
|
||
menu init functions which need to be called after plug-in query
|
||
to gui_restore().
|
||
|
||
* app/gui/session.[ch]: added "Gimp" parameters to all public
|
||
functions.
|
||
|
||
* app/file-save.c
|
||
* app/gui/file-commands.c
|
||
* app/gui/file-open-dialog.c: changed accordingly.
|
||
|
||
2001-10-23 Sven Neumann <sven@gimp.org>
|
||
|
||
* TODO.xml: added an entry for handling layers with masks with the
|
||
Transform Tool.
|
||
|
||
* app/gui/tips_dialog.c: make Next and Previous buttons insensitive
|
||
if no tips could be loaded (as done in the stable branch).
|
||
|
||
* plug-ins/common/mblur.c (mblur_linear): merged fix for bug #62640
|
||
from stable branch.
|
||
|
||
* plug-ins/gap/gap_lib.c: merged fix for bug #61677 from stable branch.
|
||
|
||
2001-10-22 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/docindex.[ch]: removed.
|
||
|
||
* app/widgets/Makefile.am
|
||
* app/widgets/widgets-types.h
|
||
* app/widgets/gimpdocumentview.[ch]: new widget as replacement.
|
||
|
||
* app/core/gimpcontext.[ch]: added context->imagefile property.
|
||
|
||
* app/app_procs.c
|
||
* app/file-save.c
|
||
* app/gui/dialogs-constructors.[ch]
|
||
* app/gui/dialogs.c
|
||
* app/gui/file-open-dialog.c
|
||
* app/gui/file-save-dialog.c
|
||
* app/gui/gui.c
|
||
* app/gui/menus.c
|
||
* app/gui/test-commands.c: changed accordingly.
|
||
|
||
* app/widgets/gimpcontainerview.[ch]: added "gboolean reorderable"
|
||
property which needs to be set by subclasses.
|
||
|
||
* app/widgets/gimpdrawablelistview.c: removed the "insert_item"
|
||
implementation which was used to make the items reorderable.
|
||
|
||
* app/widgets/gimpcontainerlistview.[ch]: make the list items
|
||
reorderable depending on view->reorderable.
|
||
|
||
* app/widgets/gimpbufferview.c: made it reorderable.
|
||
|
||
* app/widgets/gimpcontainereditor.[ch]
|
||
* app/widgets/gimpcontainergridview.[ch]
|
||
* app/widgets/gimpdatafactoryview.c: changed accordingly.
|
||
|
||
2001-10-22 Michael Natterer <mitch@gimp.org>
|
||
|
||
General cleanup of the selection tools and their PDB wrappers:
|
||
|
||
* app/core/Makefile.am
|
||
* app/core/gimpimage-contiguous-region.[ch]
|
||
* app/core/gimpimage-mask-select.[ch]: new files providing a clean,
|
||
uniform API for the selection functionalities. Changed order of
|
||
parameters to be consistent, removed code duplication.
|
||
|
||
The region returned by the "by_color" function is not really
|
||
contiguous but the API is so similar to "by_seed" and it's used
|
||
in the same context so it's fair enough to put them together.
|
||
|
||
Also, I'm not sure if the two is_pixel_sufficiently_different()
|
||
I've optimized away were meant to do *exactly* the same. Added
|
||
a comment there to remember the former difference.
|
||
|
||
* app/core/gimpchannel.[ch] (gimp_channel_feather): removed the
|
||
"output" channel parameter and made it optionally push an undo
|
||
(like the other channel operations do).
|
||
|
||
* app/core/gimpimage-mask.c: call gimp_channel_feather() with
|
||
"push_undo == TRUE", removed some useless comments.
|
||
|
||
* app/tools/gimpbycolorselecttool.[ch]
|
||
* app/tools/gimpellipseselecttool.[ch]
|
||
* app/tools/gimpfreeselecttool.[ch]
|
||
* app/tools/gimpfuzzyselecttool.[ch]
|
||
* app/tools/gimprectselecttool.[ch]: removed all the actual
|
||
selection functionality and call the new gimp_image_mask_select_*()
|
||
and gimp_image_contiguous_region_*() functions instead.
|
||
|
||
* app/tools/gimpbezierselecttool.c
|
||
* app/tools/gimpiscissorstool.c: use new function
|
||
gimp_image_mask_select_channel() instead of doing the same manually.
|
||
|
||
* app/tools/gimpbucketfilltool.c: find_contiguous_region() ->
|
||
gimp_image_contiguous_region_by_seed().
|
||
|
||
* tools/pdbgen/Makefile.am
|
||
* tools/pdbgen/groups.pl
|
||
* tools/pdbgen/pdb/selection_tools.pdb: added new group "Selection
|
||
Tools" which depends only on "core/" stuff (not on "tools/" any
|
||
more, brrrr).
|
||
|
||
* tools/pdbgen/pdb/text_tool.pdb: don't include "appenv.h"
|
||
|
||
* tools/pdbgen/pdb/tools.pdb: removed the selection tools.
|
||
|
||
* app/pdb/Makefile.am
|
||
* app/pdb/selection_tools_cmds.c: new file.
|
||
|
||
* app/pdb/internal_procs.c
|
||
* app/pdb/text_tool_cmds.c
|
||
* app/pdb/tools_cmds.c: regenerated.
|
||
|
||
* libgimp/Makefile.am
|
||
* libgimp/gimp_pdb.h
|
||
* libgimp/gimpselectiontools_pdb.[ch]: new files.
|
||
|
||
* libgimp/gimptools_pdb.[ch]: regenerated
|
||
|
||
Misc cleanups:
|
||
|
||
* app/app_procs.c: call splash_create() with "no_splash_image"
|
||
as parameter.
|
||
|
||
* app/display/gimpdisplay-render.c
|
||
* app/display/gximage.c: don't include "appenv.h".
|
||
|
||
* app/gui/gui.c: call session_restore() only if "restore_session"
|
||
is TRUE.
|
||
|
||
* app/gui/session.c: don't "if(restore_session)" here and don't
|
||
include "appenv.h"
|
||
|
||
* app/gui/splash.[ch]: added "gboolean show_image" parameter to
|
||
splash_create(), don't include "appenv.h"
|
||
|
||
* app/tools/gimppainttool.[ch]: added a "GimpGradient" parameter
|
||
to gimp_paint_tool_get_color_from_gradient().
|
||
|
||
* app/tools/gimppaintbrushtool.c: pass the gradient.
|
||
|
||
* app/tools/gimpselectiontool.c
|
||
* app/tools/gimptransformtool.c
|
||
* app/tools/tool_manager.c: s/GDisplay/GimpDisplay/.
|
||
|
||
* app/widgets/gimpcontainergridview.[ch]: removed the "white_style"
|
||
class variable and don't fiddle around with colors and styles...
|
||
|
||
* themes/Default/gtkrc: ...do the same here with a simple rc style.
|
||
|
||
2001-10-19 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am: link the app in a different order as some init
|
||
functions are called from core/gimp.c instead of app_procs.c now.
|
||
|
||
* app/app_procs.[ch]: made app_init_update_status() private and
|
||
pass it as callback to various init functions.
|
||
|
||
* app/plug_in.[ch]: plug_in_init() take "gimp" and "status_callback"
|
||
parameters.
|
||
|
||
* app/undo.c: use "gimage->gimp" instead of "the_gimp", don't
|
||
include "app_procs.h".
|
||
|
||
* app/core/core-types.h: added "GimpInitStatusFunc" typedef.
|
||
|
||
* app/core/gimp.[ch]: gimp_initialize() and gimp_restore() now
|
||
take a "status_callback" as parameter. Don't include "app_procs.h".
|
||
|
||
* app/core/gimpmodules.c: putting the modules in a strong
|
||
container was a bad idea because it may be impossible to finalize
|
||
a GimpModuleInfo object belonging to a stalled module.
|
||
|
||
* app/gui/color-area.c: use G_N_ELEMENTS().
|
||
|
||
* app/gui/session.c: don't call app_init_update_status() and don't
|
||
include "app_procs.h" because this happens after the splash is
|
||
hidden.
|
||
|
||
* tools/pdbgen/app.pl
|
||
* app/pdb/internal_procs.[ch]: pass a "status_callback" to
|
||
internal_procs_init(), don't include "app_procs.h".
|
||
|
||
* plug-ins/Makefile.am: build gfig, gimpressionist and imagemap
|
||
again.
|
||
|
||
* plug-ins/MapObject/mapobject_preview.c
|
||
* plug-ins/MapObject/mapobject_ui.c: s/gdk_image_unref/g_object_unref/
|
||
|
||
* plug-ins/gfig/gfig.c
|
||
* plug-ins/gimpressionist/brush.c
|
||
* plug-ins/gimpressionist/gimpressionist.c
|
||
* plug-ins/gimpressionist/ppmtool.[ch]
|
||
* plug-ins/gimpressionist/presets.c
|
||
* plug-ins/imagemap/imap_browse.[ch]
|
||
* plug-ins/imagemap/imap_csim.y
|
||
* plug-ins/imagemap/imap_edit_area_info.c
|
||
* plug-ins/imagemap/imap_file.c
|
||
* plug-ins/imagemap/imap_main.c
|
||
* plug-ins/imagemap/imap_menu.c
|
||
* plug-ins/imagemap/imap_polygon.c
|
||
* plug-ins/imagemap/imap_popup.c
|
||
* plug-ins/imagemap/imap_preferences.c
|
||
* plug-ins/imagemap/imap_taglist.c
|
||
* plug-ins/imagemap/imap_tools.c: ported to current GLib/Gtk+.
|
||
|
||
* plug-ins/gap/gap_arr_dialog.c
|
||
* plug-ins/gap/gap_decode_xanim.c
|
||
* plug-ins/gap/gap_filter_foreach.c
|
||
* plug-ins/gap/gap_filter_main.c
|
||
* plug-ins/gap/gap_frontends_main.c
|
||
* plug-ins/gap/gap_lib.c
|
||
* plug-ins/gap/gap_main.c
|
||
* plug-ins/gap/gap_mod_layer.c
|
||
* plug-ins/gap/gap_mov_dialog.c
|
||
* plug-ins/gap/gap_navigator_dialog.c
|
||
* plug-ins/gap/resize.c: half-way fixed this one too but I'm not
|
||
willing to fix tons of duplicated and deprecated app/ code...
|
||
|
||
2001-10-19 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/FractalExplorer/FractalExplorer.c
|
||
* plug-ins/common/illusion.c: merged fixes for missing PDB parameters
|
||
from stable branch.
|
||
|
||
2001-10-18 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/module_db.[ch]: removed.
|
||
|
||
* app/core/Makefile.am
|
||
* app/core/core-types.h
|
||
* app/core/gimpmoduleinfo.[ch]
|
||
* app/core/gimpmodules.[ch]: new files containing the module info
|
||
object and the module list handling code.
|
||
|
||
* app/gui/Makefile.am
|
||
* app/gui/module-browser.[ch]: new files containing the GUI.
|
||
|
||
* app/xcf/xcf.[ch]: pass a "Gimp" pointer to xcf_exit().
|
||
|
||
* app/core/gimp.[ch]: handle modules and xcf init/exit here too.
|
||
|
||
* app/app_procs.c: don't touch the modules and xcf stuff any more.
|
||
|
||
* app/gui/dialogs-constructors.c: changed accordingly.
|
||
|
||
2001-10-18 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/core/gimpcontainer.[ch]: added properties for "children_type"
|
||
and "policy". Ref/unref the "children_type" class so we can do
|
||
signal lookups and use other introspection features without an
|
||
existing instance of "children_type".
|
||
|
||
The new properties are G_PARAM_CONSTRUCT_ONLY and *MUST* be passed
|
||
to g_object_new() to ref/unref children_type's class correctly.
|
||
|
||
* app/core/gimpdatalist.c
|
||
* app/core/gimplist.c: pass them as construct properties.
|
||
|
||
* app/core/gimp.c: no need to manually ref classes any more.
|
||
|
||
2001-10-17 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/widgets/gimpchannellistview.c: added a handler for GimpImage's
|
||
"alpha_changed" signal (does nothing yet).
|
||
|
||
* app/widgets/[lots of files]: somehow my last perl torturing
|
||
removed my email address from the copyright notice. Another perl
|
||
hack brought it back now :)
|
||
|
||
2001-10-16 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimpprogress.[ch]
|
||
* app/undo.c: s/GDisplay/GimpDisplay/
|
||
|
||
* app/plug_in.[ch]: removed unused boolean "destroy" field of
|
||
the PlugIn struct.
|
||
|
||
* app/core/gimpedit.c: don't include "app_procs.h"
|
||
|
||
* app/display/gimpdisplay-callbacks.c: moved the "grab_and_scroll"
|
||
stuff from gimpdisplay-scroll.* here (less complicated and easier
|
||
to cleanup...)
|
||
|
||
* app/display/gimpdisplay-scroll.[ch]: removed here.
|
||
|
||
* app/display/gimpdisplay-render.[ch]
|
||
* app/display/gimpdisplay-selection.[ch]
|
||
* app/display/gimpdisplayshell.c: s/GDisplay/GimpDisplay/g
|
||
|
||
* app/display/gimpdisplay.[ch]: ditto, removed gdisplay_active()
|
||
which was just a wrapper around
|
||
"gimp_context_get_display (gimp_get_user_context (the_gimp))"
|
||
(which is more to type but makes the use of the global
|
||
"the_gimp" variable more obvious).
|
||
|
||
* app/gui/color-area.h
|
||
* app/gui/edit-commands.c
|
||
* app/gui/file-commands.c
|
||
* app/gui/file-dialog-utils.c
|
||
* app/gui/image-commands.c
|
||
* app/gui/info-window.h
|
||
* app/gui/paths-dialog.h
|
||
* app/gui/select-commands.c
|
||
* app/gui/tool-options-dialog.c
|
||
* app/gui/tools-commands.c
|
||
* app/gui/view-commands.c: s/GDisplay/GimpDisplay/, gdisplay_active()
|
||
removal, include "app_procs.h" for "the_gimp".
|
||
|
||
* app/tools/gimpbezierselecttool.h
|
||
* app/tools/gimpbrightnesscontrasttool.[ch]
|
||
* app/tools/gimpbycolorselecttool.c
|
||
* app/tools/gimpcolorbalancetool.[ch]
|
||
* app/tools/gimpcurvestool.[ch]
|
||
* app/tools/gimpeditselectiontool.h
|
||
* app/tools/gimphistogramtool.[ch]
|
||
* app/tools/gimphuesaturationtool.[ch]
|
||
* app/tools/gimplevelstool.[ch]
|
||
* app/tools/gimpmovetool.h
|
||
* app/tools/gimpperspectivetool.h
|
||
* app/tools/gimpposterizetool.[ch]
|
||
* app/tools/gimprotatetool.h
|
||
* app/tools/gimpscaletool.h
|
||
* app/tools/gimpsheartool.h
|
||
* app/tools/gimptexttool.h
|
||
* app/tools/gimpthresholdtool.[ch]
|
||
* app/tools/gimptool.[ch]
|
||
* app/tools/gimptransformtool.h
|
||
* app/tools/tool_manager.[ch]: lots of s/GDisplay/GimpDisplay/, made
|
||
all *_dialog_hide() functions private, cleanup.
|
||
|
||
* app/widgets/*: removed GtkType and gtk_type_* stuff entirely and
|
||
use GObject functions, removed lots of empty "destroy" methods and
|
||
use more type checking class cast macros instead of casting
|
||
directly.
|
||
|
||
* app/widgets/gimpcontainermenu.c: fixed item insert order.
|
||
|
||
* app/widgets/gimphistogramview.[ch]: cleaned up and renamed all
|
||
functions.
|
||
|
||
* app/widgets/gimpwidgets-utils.[ch]: removed gimp_dialog_hide() as
|
||
Gtk+ does the right thing (TM) now.
|
||
|
||
* tools/pdbgen/pdb/color.pdb: implemented "histogram" without
|
||
digging into tools/ and widgets/ (needs to be done for all
|
||
color PDB functions).
|
||
|
||
* tools/pdbgen/pdb/gimprc.pdb: no need to use "the_gimp" in a PDB
|
||
function as a "Gimp" pointer is passed to them all.
|
||
|
||
* tools/pdbgen/pdb/image.pdb: don't include "app_procs.h"
|
||
|
||
* app/pdb/color_cmds.c
|
||
* app/pdb/gimprc_cmds.c
|
||
* app/pdb/image_cmds.c: regenerated.
|
||
|
||
* app/pdb/procedural_db.c: don't include "app_procs.h"
|
||
|
||
2001-10-16 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/common/sel_gauss.c: merged fix for bug #62433 from stable
|
||
branch. plug-ins/common/colortoalpha.c already had the problem fixed.
|
||
|
||
2001-10-13 Michael Natterer <mitch@gimp.org>
|
||
|
||
* RELEASE-TO-CVS.patch: gdk_pixbuf_new_from_stream -> _from_inline
|
||
|
||
* app/display/Makefile.am
|
||
* app/display/gimpdisplay-foreach.[ch]: new files for functions
|
||
operating on all displays (will go away as soon as the display
|
||
behaves like a proper view which doesn't need to be updated
|
||
explicitly).
|
||
|
||
* app/display/gimpdisplay-callbacks.c
|
||
* app/display/gimpdisplay-scale.[ch]
|
||
* app/display/gimpdisplay-scroll.[ch]
|
||
* app/display/gimpdisplay.[ch]: "scale" and "scroll" namespace
|
||
cleanup, moved bounds_checking() to gimpdisplay-scroll.[ch], lots
|
||
of unfinished, intermediate stuff.
|
||
|
||
* app/display/gimpdisplayshell.[ch]: added some GObject framework
|
||
for the GimpDisplayShell object (not used yet).
|
||
|
||
* app/app_procs.c
|
||
* app/docindex.c
|
||
* app/image_map.c
|
||
* app/nav_window.c
|
||
* app/path.c
|
||
* app/qmask.c
|
||
* app/undo.c
|
||
* app/gui/channels-commands.c
|
||
* app/gui/convert-dialog.c
|
||
* app/gui/edit-commands.c
|
||
* app/gui/file-commands.c
|
||
* app/gui/gui.c
|
||
* app/gui/image-commands.c
|
||
* app/gui/layer-select.c
|
||
* app/gui/layers-commands.c
|
||
* app/gui/offset-dialog.c
|
||
* app/gui/paths-dialog.c
|
||
* app/gui/preferences-dialog.c
|
||
* app/gui/select-commands.c
|
||
* app/gui/view-commands.c
|
||
* app/tools/gimpairbrushtool.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/gimpcroptool.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/gimpmagnifytool.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/widgets/gimpbufferview.c
|
||
* app/widgets/gimpchannellistview.c
|
||
* app/widgets/gimpcomponentlistitem.c
|
||
* app/widgets/gimpdrawablelistitem.c
|
||
* app/widgets/gimpdrawablelistview.c
|
||
* app/widgets/gimplayerlistitem.c
|
||
* app/widgets/gimplayerlistview.c
|
||
* app/widgets/gimplistitem.c
|
||
* tools/pdbgen/pdb/display.pdb
|
||
* app/pdb/display_cmds.c: changed accordingly (mostly including
|
||
"gimpdisplay-foreach.h" instead of "gimpdisplay.h")
|
||
|
||
2001-10-10 DindinX <dindinx@wanadoo.fr>
|
||
|
||
* app/display/gimpdisplay-callbacks.c: fixed a buglet. Key-release
|
||
events are now correctly handled.
|
||
|
||
2001-10-08 Dave Neary <nearyd@eircom.net>
|
||
|
||
* HACKING
|
||
* RELEASE-TO-CVS.patch: Added file, and instructions on
|
||
why/how to use it to HACKING
|
||
|
||
2001-10-07 DindinX <dindinx@wanadoo.fr>
|
||
|
||
* plug-ins/common/apply_lens.c: little optimisation by avoiding some
|
||
useless recalculation.
|
||
|
||
2001-10-04 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/widgets/gimpfontselection-dialog.c: inserted some extra checks
|
||
to work around a bug in PangoFT2 version 0.20.
|
||
|
||
2001-10-02 Emese Kovacs <emese@gnome.hu>
|
||
|
||
* tips/Makefile.am|makefile.mingw: Added gimp_tips.hu.txt to the
|
||
targets.
|
||
|
||
* tips/gimp_tips.hu.txt: Added Hungarian tips file in UTF-8
|
||
encoding.
|
||
|
||
2001-10-02 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/common/sobel.c (sobel_dialog): merged fix for bug #61525
|
||
from stable tree.
|
||
|
||
2001-10-01 Michael Natterer <mitch@gimp.org>
|
||
|
||
* configure.in: create build/win32/dirent/Makefile.
|
||
|
||
2001-09-28 Sven Neumann <sven@gimp.org>
|
||
|
||
* configure.in(ALL_LINGUAS): Removed zh_CN again until all po files
|
||
have been added. Translators, read README.i18n!
|
||
|
||
2001-09-28 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gui/preferences-dialog.c: added a frame around the tree.
|
||
|
||
* app/widgets/gimphistogramview.c: forgot to pass the "detail" to
|
||
g_signal_emit(). Should fix the histogram tool. Thanks to Seth for
|
||
debugging.
|
||
|
||
2001-09-28 Wang Jian <lark@linux.net.cn>
|
||
|
||
* configure.in(ALL_LINGUAS): Added zh_CN
|
||
|
||
2001-09-27 Sven Neumann <sven@gimp.org>
|
||
|
||
* HACKING
|
||
* Makefile.am
|
||
* acconfig.h
|
||
* autogen.sh
|
||
* configure.in: use AM_GLIB_GNU_GETTEXT. Since glib and GTK+ rely on
|
||
gettext being available, we don't need to ship with the option to use
|
||
an included implementation. The intl subdirectory will not be created
|
||
anymore. Had to put the old sed hacks back in that create Makefiles
|
||
from Makefile.in in the extra po directories.
|
||
|
||
* almost all Makefile.am: removed $(top_srcdir)/intl from INCLUDES.
|
||
|
||
* app/main.c
|
||
* libgimp/stdplugins-intl.h
|
||
* plug-ins/perl/Gimp.xs
|
||
* plug-ins/script-fu/script-fu-intl.h: changed package names to
|
||
gimp14* so the po files don't clash with gimp12.
|
||
|
||
2001-09-26 Manish Singh <yosh@gimp.org>
|
||
|
||
* app/gui/preferences-dialog.c: replaced CTree with a TreeView
|
||
|
||
2001-09-26 Sven Neumann <sven@gimp.org>
|
||
|
||
* configure.in: we require glib-1.3.9, pango-0.20, atk-0.5 and
|
||
gtk+-1.3.9 available from ftp://ftp.gtk.org/pub/gtk/v1.3/.
|
||
|
||
* HACKING: mention the fact that we will try to keep our source
|
||
compileable against the latest development releases of gtk+ and
|
||
friends.
|
||
|
||
* app/plug_in.c
|
||
* app/gui/file-open-dialog.c
|
||
* app/gui/file-save-dialog.c
|
||
* plug-ins/common/csource.c
|
||
* plug-ins/common/wmf.c: follow glib API changes.
|
||
|
||
* plug-ins/common/mail.c: fixed a warning.
|
||
|
||
2001-09-26 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/disp_callbacks.[ch]
|
||
* app/gdisplay.[ch]
|
||
* app/gdisplay_ops.[ch]
|
||
* app/gximage.[ch]
|
||
* app/image_render.[ch]
|
||
* app/interface.[ch]
|
||
* app/marching_ants.h
|
||
* app/scale.[ch]
|
||
* app/scroll.[ch]
|
||
* app/selection.[ch]: removed.
|
||
|
||
* app/display/Makefile.am
|
||
* app/display/display-types.h
|
||
* app/display/gimpdisplay-callbacks.[ch]
|
||
* app/display/gimpdisplay-marching-ants.h
|
||
* app/display/gimpdisplay-ops.[ch]
|
||
* app/display/gimpdisplay-render.[ch]
|
||
* app/display/gimpdisplay-scale.[ch]
|
||
* app/display/gimpdisplay-scroll.[ch]
|
||
* app/display/gimpdisplay-selection.[ch]
|
||
* app/display/gimpdisplay.[ch]
|
||
* app/display/gimpdisplayshell.[ch]
|
||
* app/display/gximage.[ch]: added here.
|
||
|
||
* app/[many files]
|
||
* app/gui/[many files]
|
||
* app/tools/*
|
||
* app/widgets/[many files]: changed accordingly. Still very
|
||
incomplete separation of the display stuff but it at least
|
||
compiles.
|
||
|
||
* tools/pdbgen/pdb.pl:
|
||
* tools/pdbgen/pdb/display.pdb: s/GDisplay/GimpDisplay/,
|
||
s/"gdisplay.h"/"display/gimpdisplay.h"/.
|
||
|
||
* app/pdb/display_cmds.c: regenerated.
|
||
|
||
2001-09-25 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gdisplay.[ch]: renamed it to GimpDisplay and made it a
|
||
GimpObject subclass.
|
||
|
||
* app/disp_callbacks.[ch]
|
||
* app/gdisplay_ops.[ch]
|
||
* app/scale.[ch]
|
||
* app/scroll.[ch]
|
||
* app/display/display-types.h: changed accordingly.
|
||
|
||
* app/core/gimpimage.[ch]: new signal "selection_control".
|
||
|
||
* app/core/core-types.h: moved the SelectionControl enum and all
|
||
other core enums here.
|
||
|
||
* app/gui/gui.c: connect to the images' "selection_control" signal
|
||
and call gdisplays_selection_visibility().
|
||
|
||
* app/core/gimpcontext.c
|
||
* app/core/gimpdrawable-offset.h
|
||
* app/core/gimpimage-convert.h
|
||
* app/core/gimpimage-mask.c
|
||
* app/core/gimplayer.c
|
||
* app/tools/gimpeditselectiontool.c
|
||
* app/tools/gimpinktool.c
|
||
* app/tools/gimpmovetool.c
|
||
* app/tools/gimppainttool.c: changed accordingly.
|
||
|
||
* app/gui/colormap-dialog.[ch]: GObject porting.
|
||
|
||
* tools/pdbgen/Makefile.am: removed headers which no longer
|
||
contain enums.
|
||
|
||
* tools/pdbgen/pdb/convert.pdb
|
||
* tools/pdbgen/pdb/drawable.pdb: include files which are no longer
|
||
included automatically by the enum voodoo.
|
||
|
||
* app/pdb/convert_cmds.c
|
||
* tools/pdbgen/enums.pl: regenerated.
|
||
|
||
2001-09-24 Nathan Summers <rock@gimp.org>
|
||
|
||
* plug-ins/Lighting/lighting_image.c
|
||
* plug-ins/Lighting/lighting_shade.c: fixed off-by-one error that
|
||
caused segfaults on images with a width of exactly 64. Bug is present
|
||
in 1.2.2; fix should be committed to stable after it is tested.
|
||
|
||
2001-09-23 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/Makefile.am: reenabled build of ifscompose. We should port
|
||
the gdk_string functions to Pango, but for the moment it builds again
|
||
by undefining GDK_DISABLE_DEPRECATED.
|
||
|
||
2001-09-22 Hans Breuer <hans@breuer.org>
|
||
|
||
* app/makefile.msc : need to link with pangof2
|
||
|
||
* app/display/display-funcs.h : new file to provide prototype
|
||
gdisplays_selection_visibility ()
|
||
* app/core/gimpimage-mask.c :
|
||
* app/core/gimplayer.c : use it
|
||
|
||
* app/core/makefile.msc : generate gimpmarshal.[hc]
|
||
|
||
* app/gui/makefile.msc : add error-console-dialog.obj, also
|
||
more trying for building as dll
|
||
|
||
* app/tools/gimpinktool.c(965) : avoid "fatal error C1021: invalid
|
||
preprocessor command 'warning'", by wrapping it in #ifdef __GNUC__
|
||
|
||
* app/tools/makefile.msc : add FREETYPE2_CFLAGS
|
||
|
||
* app/widgets/gimpfontselction-dialog.c : use g_strcasecmp ()
|
||
|
||
* app/tools/makefile.msc : add FREETYPE2_CFLAGS and gimpfontselction*
|
||
|
||
* libgimp/gimp.def :
|
||
* libgimpwidgets/gimpwidgets.def : updated externals
|
||
|
||
* libgimpwidgets/makefile.msc : add gimpstock
|
||
|
||
* plug-ins/makefile.msc : gflare doesn't require EXTRA_gflare anymore
|
||
|
||
* plug-ins/common/spheredesigner.c :
|
||
* plug-ins/helpbrowser/helpbrowser.c :
|
||
* plug-ins/imagemap/imap_main.c :
|
||
remove _help_accel from gimp_help_connect ()
|
||
|
||
* plug-ins/gap/gap_mov_dialog.c :
|
||
* plug-ins/gap/gap_navigator_dialog.c : remove references to
|
||
use_xshm and gimp_color_cube ()
|
||
|
||
* plug-ins/gfig/gfig.c : don't access ->klass, but use
|
||
G_OBJECT_GET_CLASS
|
||
|
||
* plug-ins/gimpressionist/repaint.c : the GtkButton::child
|
||
field is moved to the parent GtkBin.
|
||
|
||
* plug-ins/ifscompose/ifscompose.c : the GtkStyle::font field
|
||
isn't public anymore, use accessor gtk_style_get_font ()
|
||
|
||
* plug-ins/imagemap/imap_preferences.c : reflect GTK2 API change
|
||
gtk_notebook_set_current_page ()
|
||
|
||
2001-09-20 Michael Natterer <mitch@gimp.org>
|
||
|
||
* libgimpwidgets/gimpdialog.[ch]: made a real object (GtkDialog
|
||
subclass) out of it. The API will change soon too.
|
||
|
||
* libgimpwidgets/gimpwidgetstypes.h: added GimpDialog typedef.
|
||
|
||
* libgimpwidgets/gimpbutton.[ch]
|
||
* libgimpwidgets/gimpchainbutton.[ch]
|
||
* libgimpwidgets/gimpcolorarea.[ch]
|
||
* libgimpwidgets/gimpcolorbutton.[ch]
|
||
* libgimpwidgets/gimpfileselection.[ch]
|
||
* libgimpwidgets/gimpoffsetarea.[ch]
|
||
* libgimpwidgets/gimppatheditor.[ch]
|
||
* libgimpwidgets/gimppixmap.c
|
||
* libgimpwidgets/gimpsizeentry.c
|
||
* libgimpwidgets/gimpunitmenu.c: removed GtkType stuff and use
|
||
GType in all get_type() functions. Some random GObject porting.
|
||
|
||
* app/gui/info-dialog.c
|
||
* app/gui/info-window.c
|
||
* app/tools/gimpcolorpickertool.c
|
||
* app/tools/gimpcroptool.c
|
||
* app/tools/gimpmeasuretool.c
|
||
* app/tools/gimptransformtool.c: changed accordingly.
|
||
|
||
2001-09-20 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/gdisplay.c: fixed resize of cursor position label that I broke
|
||
with my latest change.
|
||
|
||
* app/widgets/gimpfontselection-dialog.c: avoid the crash by using the
|
||
correct PangoContext, but there's still a bug somewhere in this code
|
||
(or in PangoFT2).
|
||
|
||
2001-09-19 Michael Natterer <mitch@gimp.org>
|
||
|
||
* TODO.xml: added an entry about "Stroke".
|
||
|
||
* app/gui/about-dialog.c: use g_timeout and g_source functions
|
||
instead if gtk_timeout stuff.
|
||
|
||
* app/widgets/gimpdnd.[ch]: general cleanup:
|
||
|
||
- removed the internal enum duplication and use GimpDndType all over
|
||
the place.
|
||
- added internal GimpDndDataDef entries for all public DND types.
|
||
- code cleanup, some debugging output.
|
||
|
||
2001-09-19 Sven Neumann <sven@gimp.org>
|
||
|
||
* configure.in: require GTK+-1.3.8 and PangoFT2-0.19.
|
||
|
||
* app/devices.c:
|
||
* app/tools/gimppainttool.c: removed intermediate hacks that are no
|
||
longer needed with the new GTK+ release.
|
||
|
||
* app/plug_in.c
|
||
* libgimp/gimp.[ch]
|
||
* libgimp/gimpui.c
|
||
* libgimpbase/gimpprotocol.[ch]: removed use_xshm and color_cube
|
||
variables and accessor functions.
|
||
|
||
* app/errors.c: use gtk_exit() instead of gdk_exit().
|
||
|
||
* app/gdisplay.c: use Pango API to determine cursor label width. This
|
||
does not work correctly, but at least it compiles...
|
||
|
||
* app/gui/splash.c: follow Pango API changes.
|
||
|
||
* app/tools/gimpcurvestool.[ch]: use PangoLayouts to draw text.
|
||
|
||
* app/tools/gimptexttool.c: follow Pango API changes.
|
||
|
||
* app/widgets/gimpfontselection-dialog.c
|
||
* app/widgets/gimpfontselection.c: mostly rewritten following the
|
||
changes in GtkFontSelection. This is unusable at the moment and
|
||
crashes, but at least it compiles again...
|
||
|
||
* plug-ins/Makefile.am: temporarily disabled build of ifscompose since
|
||
it does not compile any longer after the latest GDK cleanups.
|
||
|
||
* plug-ins/common/nlfilt.c: gimp_color_cube() is obsolete.
|
||
|
||
2001-09-18 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/pdb/parasite_cmds.c
|
||
* tools/pdbgen/pdb/parasite.pdb: fixed nasty bug in perl expression
|
||
that caused all parasite PDB functions to work on global gimp parasites
|
||
even if the gimp_image_parasite* and gimp_drawable_parasite* functions
|
||
were called.
|
||
|
||
2001-09-17 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/gimprc.c (gimprc_init):
|
||
fixed a typo spotted by Ed Halley <ed@halley.cc>.
|
||
|
||
* app/pdb/gimprc_cmds.c
|
||
* app/pdb/internal_procs.c
|
||
* libgimp/gimpgimprc_pdb.[ch]: added new PDB function
|
||
gimp_get_default_comment() that allows to access the default image
|
||
comment as set in the preferences.
|
||
|
||
* plug-ins/common/csource.c
|
||
* plug-ins/common/gif.c
|
||
* plug-ins/common/jpeg.c
|
||
* plug-ins/common/tiff.c: use gimp_get_default_comment() instead of
|
||
a hardcoded string.
|
||
|
||
* plug-ins/common/uniteditor.c: replaced deprecated GDK function
|
||
gdk_color_alloc().
|
||
|
||
2001-09-17 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/common/mail.c: resurrected mail plug-in. Thanks to
|
||
David Odin <dindinx@wanadoo.fr> for the patch.
|
||
|
||
* plug-ins/common/.cvsignore
|
||
* plug-ins/common/Makefile.am
|
||
* plug-ins/common/plugin-defs.pl: build mail, nlfilt and plugindetails
|
||
plug-ins again.
|
||
|
||
* tips/Makefile.am
|
||
* tips/gimp_conseils.fr.txt: removed ...
|
||
* tips/gimp_tips.fr.txt: ... and readded under this name.
|
||
|
||
2001-09-11 Nathan Summers <rock@gimp.org>
|
||
|
||
* all files: wilber cried.
|
||
|
||
2001-09-09 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/devices.c
|
||
* app/tools/gimppainttool.c: readded the old code here in case the
|
||
old GDK variable is defined. Since GTK+-1.3.7 is finally out, we want
|
||
to try to keep GIMP compile against this release as long as possible.
|
||
|
||
* plug-ins/common/gif.c: applied a patch from David Odin
|
||
<dindinx@wanadoo.fr> that brings the GIF plug-in back to live.
|
||
|
||
* plug-ins/common/.cvsignore
|
||
* plug-ins/common/Makefile.am
|
||
* plug-ins/common/plugin-defs.pl: build it again.
|
||
|
||
2001-09-08 Daniel Egger <egger@interearth.com>
|
||
|
||
* app/devices.c
|
||
* app/tools/gimppainttool.c: Use new gdk_device_get_core_pointer ()
|
||
instead of the former gdk_core_pointer variable. You will need a
|
||
recent CVS gtk to compile it!
|
||
|
||
2001-09-07 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/widgets/gimpbrushfactoryview.c
|
||
* app/widgets/gimpbufferview.c
|
||
* app/widgets/gimpchannellistview.c
|
||
* app/widgets/gimpcolorpanel.c
|
||
* app/widgets/gimpcontainergridview.c
|
||
* app/widgets/gimpcontainermenuimpl.c
|
||
* libgimpwidgets/gimpcolorbutton.c
|
||
* libgimpwidgets/gimpoffsetarea.c
|
||
* plug-ins/gdyntext/charmap.c
|
||
* plug-ins/gdyntext/charmap_window.c
|
||
* plug-ins/gdyntext/font_selection.c
|
||
* plug-ins/gdyntext/message_window.c:
|
||
use GtkType instead of guint to store result of gtk_type_unique().
|
||
Patch courtesy of Alex Larsson <alexl@redhat.com>.
|
||
|
||
2001-09-04 Michael Natterer <mitch@gimp.org>
|
||
|
||
* plug-ins/common/jpeg.c: JPEG is back!
|
||
Thanks to David Odin <dindinx@wanadoo.fr> for the patch.
|
||
|
||
* plug-ins/common/.cvsignore
|
||
* plug-ins/common/Makefile.am
|
||
* plug-ins/common/plugin-defs.pl: build it again.
|
||
|
||
2001-09-03 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/gui/about-dialog.c
|
||
* app/gui/splash.c: draw text using PangoLayouts, now compiles with
|
||
GDK_DISABLE_DEPRECATED being defined.
|
||
|
||
* app/gui/authors.h
|
||
* tools/authorsgen/authorsgen.pl
|
||
* tools/authorsgen/contributors: converted to use UTF-8 strings.
|
||
|
||
2001-09-03 Michael Natterer <mitch@gimp.org>
|
||
|
||
* configure.in: added -DGDK_DISABLE_DEPRECATED.
|
||
|
||
* app/gui/about-dialog.c
|
||
* plug-ins/common/wmf.c
|
||
* plug-ins/ifscompose/ifscompose_utils.c: #undef it here (too lazy...)
|
||
|
||
* app/colormaps.[ch]
|
||
* app/gdisplay.c
|
||
* app/module_db.c
|
||
* app/plug_in.c
|
||
* app/gui/brush-editor.c
|
||
* app/gui/color-notebook.c
|
||
* app/gui/gradient-select.c
|
||
* app/gui/palette-select.c
|
||
* app/gui/paths-dialog.c
|
||
* app/gui/select-commands.c
|
||
* app/widgets/gimpdialogfactory.c
|
||
* app/widgets/gimpdock.c
|
||
* app/widgets/gimpdockbook.c: replaced deprecated stuff,
|
||
g_list_free() the return value of gtk_container_get_children().
|
||
|
||
* plug-ins/Makefile.am: build gflare again.
|
||
|
||
* plug-ins/gflare/asupsample.[ch]: removed because the same function
|
||
is already in libgimpcolor.
|
||
|
||
* plug-ins/gflare/gtkmultioptionmenu.[ch]: removed because Gtk+
|
||
handles menu_height > screen_height by scrolling now.
|
||
|
||
* plug-ins/gflare/Makefile.am
|
||
* plug-ins/gflare/gflare.c: changed accordingly, cleanups.
|
||
|
||
2001-09-03 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/plug_in.c
|
||
* app/core/gimpbrush.c
|
||
* app/core/gimpbrushpipe.c
|
||
* app/core/gimpgradient.c
|
||
* app/core/gimppalette.c
|
||
* app/core/gimppattern.c: check strings from data files and plug-in
|
||
registration for UTF-8 validity. There are probably a lot more places
|
||
that need these checks.
|
||
|
||
* plug-ins/common/gqbist.c: converted PDB texts to UTF-8.
|
||
|
||
2001-08-31 Thomas Canty <tommydal@optushome.com.au>
|
||
|
||
* app/colormaps.c
|
||
* app/gdisplay.c
|
||
* app/nav_window.c
|
||
* app/scroll.c
|
||
* app/selection.c
|
||
* app/undo.c
|
||
* app/gui/about-dialog.c
|
||
* app/gui/color-area.c
|
||
* app/gui/color-select.c
|
||
* app/gui/gradient-editor.c
|
||
* app/gui/gui.c
|
||
* app/gui/splash.c
|
||
* app/tools/gimpcurvestool.c
|
||
* plug-ins/Lighting/lighting_preview.c
|
||
* plug-ins/Lighting/lighting_ui.c
|
||
* plug-ins/MapObject/mapobject_preview.c
|
||
* plug-ins/MapObject/mapobject_ui.c
|
||
* plug-ins/common/animationplay.c
|
||
* plug-ins/common/curve_bend.c
|
||
* plug-ins/gap/gap_navigator_dialog.c
|
||
* plug-ins/gfig/gfig.c
|
||
* plug-ins/gimpressionist/gimpressionist.c
|
||
* plug-ins/ifscompose/ifscompose.c
|
||
* plug-ins/imagemap/imap_main.c
|
||
* plug-ins/imagemap/imap_preferences.c
|
||
* plug-ins/imagemap/imap_preview.c: replaced some deprecated GDK
|
||
functions
|
||
|
||
2001-08-30 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/plug_in.c
|
||
* libgimpbase/gimpwire.c
|
||
* libgimp/gimp.c: removed GIOChannel "channel->funcs->io_foo()"
|
||
hacks and use plain g_io_channel_[read|write]_chars(). An
|
||
additional g_io_channel_set_buffered (channel, FALSE); is needed
|
||
to make the channels work in binary mode. Fixed misc other stuff
|
||
in the GIOChannel code.
|
||
|
||
* app/tools/gimpdrawtool.c
|
||
* app/tools/gimpmovetool.c
|
||
* app/tools/gimptransformtool.c
|
||
* app/widgets/gimpdialogfactory.c
|
||
* libgimpwidgets/gimpcolorarea.c
|
||
* libgimp/gimpui.c: replaced some deprecated GDK functions.
|
||
|
||
* app/gui/palette-editor.c: block the color_name entry's "changed"
|
||
signal while setting it. Fixes invalid UTF-8 warnings.
|
||
|
||
2001-08-30 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/plug-in.c: set the message encoding for the plug-in textdomain.
|
||
|
||
2001-08-30 Sven Neumann <sven@gimp.org>
|
||
|
||
* configure.in: check for bind_textdomain_codeset, use standard
|
||
HAVE_FOO semantic for difftime.
|
||
|
||
* libgimp/gimpintl.h
|
||
* libgimp/libgimp-intl.h
|
||
* libgimp/stdplugins-intl.h: set encoding of message translations
|
||
to UTF-8 if bind_textdomain_codeset() is available. We still
|
||
explicitely set LC_NUMERIC to "C" so we can write and parse floats
|
||
in a defined way independent of the locale. We might want to find
|
||
a cleaner solution for this.
|
||
|
||
* plug-ins/script-fu/script-fu-server.c: inverted preprocessor logic
|
||
from NO_DIFFTIME to HAVE_DIFFTIME.
|
||
|
||
* plug-ins/script-fu/scripts/trochoid.scm:
|
||
fixed parameter description (bug #59760).
|
||
|
||
2001-08-29 Sven Neumann <sven@gimp.org>
|
||
|
||
* README.i18n: added a section that mentions the GNOME translation
|
||
project that coordinates translation efforts in the GNOME CVS tree.
|
||
|
||
Mention the fact that po files as well as the tips files need to be
|
||
UTF-8 encoded to work with GTK+-2.0.
|
||
|
||
* tips/gimp_tips.de.txt: converted to UTF-8.
|
||
|
||
2001-08-29 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/widgets/gtkhwrapbox.[ch]
|
||
* app/widgets/gtkvwrapbox.[ch]
|
||
* app/widgets/gtkwrapbox.[ch]: make it compile even if you don't
|
||
have gle installed ;-)
|
||
|
||
2001-08-29 Sven Neumann <sven@gimp.org>
|
||
|
||
* configure.in: added comment how to handle version numbers when
|
||
making releases so I don't get it wrong once again.
|
||
Removed leftover GIMP_CONTRIBUTORS.
|
||
|
||
* gimptool.1.in: removed this file.
|
||
|
||
* docs/Makefile.am
|
||
* docs/gimp.1.in: fixed stuff that was left after the removal of
|
||
the GIMP_CONTRIBUTORS hack.
|
||
|
||
2001-08-29 Michael Natterer <mitch@gimp.org>
|
||
|
||
* configure.in: added -DG_DISABLE_DEPRECATED and
|
||
-DGDK_DISABLE_COMPAT_H.
|
||
|
||
* app/batch.c
|
||
* app/file-utils.c
|
||
* app/gdisplay.c
|
||
* app/gdisplay_ops.c
|
||
* app/gimprc.[ch]
|
||
* app/module_db.c
|
||
* app/nav_window.c
|
||
* app/undo_history.c
|
||
* app/core/gimpgradient.c
|
||
* app/core/gimpimagefile.c
|
||
* app/core/gimppalette.c
|
||
* app/gui/color-notebook.c
|
||
* app/gui/convert-dialog.c
|
||
* app/gui/error-console-dialog.c
|
||
* app/gui/file-commands.c
|
||
* app/gui/file-open-dialog.c
|
||
* app/gui/file-save-dialog.c
|
||
* app/gui/gradient-editor.c
|
||
* app/gui/info-window.c
|
||
* app/gui/menus.c
|
||
* app/gui/palette-import-dialog.c
|
||
* app/tools/gimpbycolorselecttool.c
|
||
* app/widgets/gimpcontainerview-utils.c
|
||
* app/widgets/gimpdatafactoryview.c
|
||
* libgimp/gimpmenu.c
|
||
* plug-ins/common/bz2.c
|
||
* plug-ins/common/compose.c
|
||
* plug-ins/common/csource.c
|
||
* plug-ins/common/decompose.c
|
||
* plug-ins/common/gz.c
|
||
* plug-ins/common/uniteditor.c
|
||
* plug-ins/common/wmf.c
|
||
* plug-ins/common/xbm.c
|
||
* plug-ins/rcm/rcm_dialog.c
|
||
* plug-ins/script-fu/interp_slib.c
|
||
* plug-ins/script-fu/script-fu-console.c
|
||
* plug-ins/script-fu/script-fu-scripts.c
|
||
* tools/pdbgen/pdb/fileops.pdb
|
||
* tools/pdbgen/pdb/gimprc.pdb
|
||
* app/pdb/fileops_cmds.c
|
||
* app/pdb/gimprc_cmds.c: removed deprecated stuff like
|
||
g_basename(), g_dirname(), g_strup() and friends. Added some
|
||
"const gchar *" declarations while I was on it. Added some
|
||
G_N_ELEMENTS() macros instead of declaring a useless variable
|
||
for the number of items.
|
||
|
||
* app/widgets/gtkhwrapbox.[ch]
|
||
* app/widgets/gtkvwrapbox.[ch]
|
||
* app/widgets/gtkwrapbox.[ch]: replaced with the latest versions
|
||
from GLE, ported by the master himself.
|
||
|
||
* app/gui/toolbox.c: changed accordingly.
|
||
|
||
* app/plug_in.c
|
||
* libgimp/gimp.c
|
||
* libgimpbase/gimpwire.[ch]: use evil hacks to get binary mode
|
||
from the new GIOChannel implementation (upstream bugreport already
|
||
posted).
|
||
|
||
2001-08-28 Sven Neumann <sven@gimp.org>
|
||
|
||
* configure.in: removed the authorgen hack. It broke the build with
|
||
autoconf-2.52. Need to come up with a better idea. Until then the
|
||
manpages don't show the autors anymore.
|
||
Removed the useless definitions of brushdata, palettedata, ...
|
||
while I was on it.
|
||
|
||
* data/Makefile.am
|
||
* data/brushes/Makefile.am
|
||
* data/gradients/Makefile.am
|
||
* data/palettes/Makefile.am
|
||
* data/patterns/Makefile.am: do it the conventional way and list all
|
||
data files in the Makefiles.
|
||
|
||
2001-08-28 Sven Neumann <sven@gimp.org>
|
||
|
||
* HACKING
|
||
* autogen.sh: libtool >= 1.3.4 should be good enough
|
||
|
||
2001-08-28 Sven Neumann <sven@gimp.org>
|
||
|
||
* acinclude.m4: removed redefinitions of libtool macros. We use the
|
||
installed libtool now. If this breaks the build for your system,
|
||
upgrade libtool. If that does not help, let us know.
|
||
|
||
* ltconfig
|
||
* ltmain.sh: removed these files. Newer versions of libtool don't use
|
||
ltconfig and ltmain.sh is taken from your libtool installation.
|
||
|
||
* autogen.sh: check for presence of libtool.
|
||
|
||
* Makefile.am
|
||
* configure.in
|
||
* gimp-remote.1.in
|
||
* gimp.1.in
|
||
* gimprc.5.in: removed man-pages from toplevel dir ...
|
||
|
||
* docs/Makefile.am
|
||
* docs/gimp-remote.1.in
|
||
* docs/gimp.1.in
|
||
* docs/gimprc.5.in
|
||
* docs/gimptool-1.4.1.in: ... and added them back here.
|
||
|
||
* gimp-1.4.m4: removed from toplevel dir ...
|
||
|
||
* m4macros/Makefile.am
|
||
* m4macros/gimp-1.4.m4: ... and added it back here.
|
||
|
||
2001-08-19 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/widgets/Makefile.am: added PANGOFT2_CFLAGS to INCLUDES.
|
||
|
||
2001-08-19 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/devices.h
|
||
* app/disp_callbacks.c
|
||
* app/interface.c: applied a patch from <David.Odin@bigfoot.com> that
|
||
changes some function prototype to return gboolean instead of gint.
|
||
|
||
* app/tools/gimpblendtool.c: pixel_regions_register() and
|
||
pixel_regions_process() return a gpointer, not (gpointer *).
|
||
|
||
2001-08-17 Michael Natterer <mitch@gimp.org>
|
||
|
||
* configure.in: added app/display/ and app/plug-in/. Empty for
|
||
now except for the types files.
|
||
|
||
* app/Makefile.am
|
||
* app/appenums.h
|
||
* app/apptypes.h: removed.
|
||
|
||
* app/display/Makefile.am
|
||
* app/display/display-types.h
|
||
* app/plug-in/Makefile.am
|
||
* app/plug-in/plug-in-types.h
|
||
* app/gui/Makefile.am
|
||
* app/gui/gui-types.h
|
||
* app/pdb/Makefile.am
|
||
* app/pdb/pdb-types.h: new files for typedefs.
|
||
|
||
* app/appenv.h: added MessageHandlerType and StackTraceMode here.
|
||
|
||
* app/undo_types.h: moved undo struct typedefs here.
|
||
|
||
* app/tools/tools-types.h
|
||
* app/core/core-types.h: added some enums and Tattoo here
|
||
(renamed to GimpTattoo).
|
||
|
||
* app/gdisplay.h: temp_hack: #include "display/display-types.h"
|
||
|
||
* app/gimphelp.c: s/gtk_idle_add/g_idle_add/
|
||
|
||
* app/gimprc.c: don't use "gimprc" in token handlers but the
|
||
passed "val1p" and "val2p".
|
||
|
||
* app/image_map.[ch]: cleanup in preparation of making a GObject
|
||
out of it.
|
||
|
||
* app/base/pixel-region.[ch]: no need to pass the
|
||
PixelRegionIterator around as void pointer.
|
||
|
||
* app/core/gimp.[ch]
|
||
* app/core/gimpcontext.[ch]
|
||
* app/core/gimptoolinfo.[ch]
|
||
* app/tools/tool_manager.c
|
||
* app/widgets/gimpdnd.c: added the standard_tool_info to the Gimp
|
||
object.
|
||
|
||
* app/batch.c
|
||
* app/file-open.c
|
||
* app/file-save.c
|
||
* app/file-utils.c
|
||
* app/interface.c
|
||
* app/main.c
|
||
* app/path.[ch]
|
||
* app/pathP.h
|
||
* app/plug_in.h
|
||
* app/core/gimpdrawable.[ch]
|
||
* app/core/gimpimage-mask.c
|
||
* app/core/gimpimage.[ch]
|
||
* app/core/gimplayer.c
|
||
* app/gui/color-area.c
|
||
* app/gui/color-notebook.c
|
||
* app/gui/colormap-dialog.c
|
||
* app/gui/dialogs-commands.c
|
||
* app/gui/dialogs-constructors.c
|
||
* app/gui/error-console-dialog.c
|
||
* app/gui/gradient-editor.c
|
||
* app/gui/gradient-select.c
|
||
* app/gui/indicator-area.c
|
||
* app/gui/info-dialog.c
|
||
* app/gui/palette-editor.c
|
||
* app/gui/palette-select.c
|
||
* app/gui/pattern-select.c
|
||
* app/gui/session.c
|
||
* app/gui/splash.c
|
||
* app/gui/view-commands.c
|
||
* app/tools/gimpinktool-blob.c
|
||
* app/widgets/gimpcolorpanel.c
|
||
* app/widgets/gimpdockbook.c
|
||
* app/widgets/gimppreview.c
|
||
* app/xcf/xcf-load.c
|
||
* app/xcf/xcf-save.c
|
||
* app/xcf/xcf.c: changed accordingly: s/Tattoo/GimpTattoo/, include
|
||
the new types files, include <glib-object.h> instead of >gtk/gtk.h>.
|
||
Bad hacks to get rid of SELECTION_OFF and friends in core/ (will
|
||
be replaced ba a signal soon).
|
||
|
||
* tools/pdbgen/Makefile.am: changed list of headers scanned for
|
||
enums accordingly.
|
||
|
||
* app/pdb/procedural_db.c
|
||
* tools/pdbgen/app.pl
|
||
* tools/pdbgen/pdb/channel.pdb
|
||
* tools/pdbgen/pdb/display.pdb
|
||
* tools/pdbgen/pdb/gradient_select.pdb
|
||
* tools/pdbgen/pdb/image.pdb
|
||
* tools/pdbgen/pdb/layer.pdb
|
||
* tools/pdbgen/pdb/pattern_select.pdb: same fixes as above, added
|
||
hacks to ensure that all foo-types.h files are included before all
|
||
other gimp internal includes, include "pdb-types.h" unconditionally.
|
||
|
||
* tools/pdbgen/enums.pl
|
||
* app/pdb/*_cmds.c: regenerated.
|
||
|
||
2001-08-15 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/tools/gimptool.[ch]
|
||
* app/tools/tool_manager.[ch]: removed all *_get_PDB_string()
|
||
functions and GimpToolClass' "pdb_string" field as this info is
|
||
stored independent from a specific tool instance in GimpToolInfo
|
||
|
||
* app/tools/gimpbezierselecttool.c: use GimpToolInfo's "pdb_string".
|
||
|
||
2001-08-14 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/interface.c
|
||
* app/gui/about-dialog.c
|
||
* app/gui/brush-editor.c
|
||
* app/gui/brush-select.c
|
||
* app/gui/color-notebook.c
|
||
* app/gui/color-select.c
|
||
* app/gui/convert-dialog.c
|
||
* app/gui/file-commands.c
|
||
* app/gui/file-dialog-utils.c
|
||
* app/gui/file-dialog-utils.h
|
||
* app/gui/file-new-dialog.c
|
||
* app/gui/file-open-dialog.c
|
||
* app/gui/file-save-dialog.c
|
||
* app/gui/gradient-editor.c
|
||
* app/gui/gradients-commands.c
|
||
* app/gui/gui.c
|
||
* app/gui/image-commands.c
|
||
* app/gui/info-window.c
|
||
* app/gui/layer-select.c
|
||
* app/gui/menus.c
|
||
* app/gui/paths-dialog.c
|
||
* app/gui/preferences-dialog.c
|
||
* app/gui/resolution-calibrate-dialog.c
|
||
* app/gui/select-commands.c
|
||
* app/gui/splash.c
|
||
* app/gui/test-commands.c
|
||
* app/gui/tips-dialog.c
|
||
* app/tools/gimpthresholdtool.c
|
||
* app/tools/paint_options.c
|
||
* app/widgets/gimpdock.c
|
||
* app/widgets/gimpdockbook.c: got rid of all
|
||
gtk_object_[get|set]_data() and almost all gtk_signal_foo()
|
||
function calls.
|
||
|
||
2001-08-14 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gdisplay.h: an evil temp_hack which lets GimpContext manage
|
||
the active display without including "gdisplay.h". Will go away as
|
||
soon as context properties are registered dynamically.
|
||
|
||
* app/module_db.c: cleaned up the object code in preparation of
|
||
moving it to core/.
|
||
|
||
* app/path.c: connect to GimpImage's "disconnect" signal instead
|
||
of "destroy".
|
||
|
||
* app/core/gimpobject.[ch]: derive it from GObject, not from
|
||
GtkObject any more (yeah :-)
|
||
|
||
* app/core/*.c: #include <glib-object.h> instead of <gtk/gtk.h>,
|
||
removed some remaining GtkObject-isms.
|
||
|
||
(left in a few #include <gtk/gtk.h> where bigger changes are needed
|
||
to get rid of the UI dependency).
|
||
|
||
* app/core/core-types.h: #include <gdk-pixbuf/gdk-pixbuf.h> here
|
||
temporarily.
|
||
|
||
* app/core/gimp.c (gimp_create_display): unref the image after
|
||
creating it's first display.
|
||
|
||
* app/core/gimpbrush.[ch]: disabled the parts of the code which
|
||
depend on GimpPaintTool.
|
||
|
||
* app/core/gimpbrushgenerated.c
|
||
* app/core/gimpbrushpipe.c: changed accordingly.
|
||
|
||
* app/core/gimpcontext.[ch]: evil hack (see above) to manage the
|
||
active display without including "gdisplay.h"
|
||
|
||
* app/core/gimpimage-mask.[ch]: pass a context to
|
||
gimage_mask_stroke() and get the current tool's PDB string from
|
||
there.
|
||
|
||
* app/core/gimpedit.c: changed accordingly.
|
||
|
||
* app/core/gimpimage.c: use gimp_image_update() instead of
|
||
gdisplays_update_full().
|
||
|
||
* app/gui/color-area.c
|
||
* app/gui/colormap-dialog.c
|
||
* app/gui/dialogs-constructors.c
|
||
* app/gui/edit-commands.c
|
||
* app/gui/image-commands.c
|
||
* app/gui/toolbox.c: changed accordingly (don't use Gtk methods on
|
||
GObjects).
|
||
|
||
* app/gui/menus.c: fix some const warnings by explicit casting.
|
||
|
||
* app/tools/*.[ch]: ported all tools to GObject, some minor
|
||
cleanup while i was on it.
|
||
|
||
* app/widgets/gimpdialogfactory.[ch]: ported to GObject.
|
||
|
||
* app/widgets/gimplayerlistview.h: added FOO_GET_CLASS() macro.
|
||
|
||
* tools/pdbgen/app.pl: added a "widgets_eek" hack like "tools_eek"
|
||
which inserts #include "widgets/widgets-types.h" before ordinary
|
||
includes.
|
||
|
||
* tools/pdbgen/pdb/brush_select.pdb
|
||
* tools/pdbgen/pdb/edit.pdb
|
||
* app/pdb/brush_select_cmds.c
|
||
* app/pdb/edit_cmds.c: changed according to the stuff above.
|
||
|
||
2001-08-14 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/tools/gimptexttool.c: take image resolution and choosen unit
|
||
into account for font and border size.
|
||
|
||
* app/widgets/gimpfontselection-dialog.[ch]
|
||
* app/widgets/gimpfontselection.[ch]
|
||
* app/widgets/widgets-types.h: added an indicator for font validity.
|
||
Added a font preview to the font selection dialog.
|
||
|
||
* libgimpwidgets/gimpfileselection.c: return FALSE from
|
||
gimp_file_selection_entry_focus_out_callback() since we do not want
|
||
to stop signal emission.
|
||
|
||
2001-08-12 Michael Natterer <mitch@gimp.org>
|
||
|
||
Switched to GObject reference counting:
|
||
|
||
* app/core/gimpcontainer.c: only ref(), not ref()/sink() children
|
||
of strong containers. Reordered gimp_container_remove() so we
|
||
don't need to ref the object while removing it.
|
||
|
||
* app/core/gimpcontext.c: misc fixes. Needs to be badly tortured...
|
||
|
||
* app/app_procs.c
|
||
* app/gdisplay.c
|
||
* app/gimprc.c
|
||
* app/core/gimp.c
|
||
* app/core/gimpbrush.c
|
||
* app/core/gimpbrushpipe.c
|
||
* app/core/gimpdatafactory.c
|
||
* app/core/gimpdocuments.c
|
||
* app/core/gimpgradient.c
|
||
* app/core/gimpimage.c
|
||
* app/core/gimplayer.c
|
||
* app/core/gimplist.c
|
||
* app/core/gimpobject.c
|
||
* app/core/gimpparasite.c
|
||
* app/core/gimppattern.c
|
||
* app/core/gimpundostack.c
|
||
* app/gui/dialogs.c
|
||
* app/tools/gimpbezierselecttool.c
|
||
* app/tools/gimpfuzzyselecttool.c: changed accordingly: don't
|
||
ref()/sink() any more, unref all (??) objects after adding them to
|
||
strong containers, misc. minor fixes.
|
||
|
||
* app/gui/dialogs-constructors.c
|
||
* app/widgets/gimpwidgets.c: use g_object_add_weak_pointer()
|
||
instead of simply crashing because g_object_weak_ref() was used
|
||
with gtk_widget_destroyed, brrr.
|
||
|
||
* app/widgets/gimpdnd.c: removed unneeded g_return_if_fail()'s.
|
||
|
||
2001-08-12 Sven Neumann <sven@gimp.org>
|
||
|
||
* TODO.xml: fixed an error, updated some numbers and added new items.
|
||
|
||
2001-08-11 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/tools/gimptexttool.c: return the created layer.
|
||
|
||
* app/pdb/text_tool_cmds.c
|
||
* libgimp/gimptexttool_pdb.c
|
||
* tools/pdbgen/pdb/text_tool.pdb: hacked a bit so scripts using the
|
||
text_*_fontname procedures work again with the new text tool.
|
||
The fontname is however no longer a X Logical Font Description, but
|
||
the much simpler scheme that Pango understands:
|
||
"[FAMILY-LIST] [STYLE-OPTIONS]". Interactive font selection is still
|
||
broken. The variants of the text PDB calls that pass the XLFD fields
|
||
directly should also work since the PDB now translates this to a
|
||
Pango-conform fontname. Later this API will die, but for the moment,
|
||
some backward compatibility can't hurt...
|
||
|
||
2001-08-11 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/core/gimp.c: split "destroy" up in "dispose" and "finalize".
|
||
|
||
* app/core/gimpcontext.c: objects need to be passed around with
|
||
g_param_spec_object() or bad things will happen.
|
||
|
||
* app/gui/channels-commands.c
|
||
* app/gui/edit-commands.c
|
||
* app/gui/file-commands.c
|
||
* app/gui/gui.c
|
||
* app/gui/layers-commands.c
|
||
* app/gui/resize-dialog.c
|
||
* app/gui/select-commands.c
|
||
* app/tools/gimpclonetool.c
|
||
* app/widgets/gimpdatafactoryview.c
|
||
* app/widgets/gimppreview.c: removed many connections to
|
||
"destroy": Connect to "disconnect" or use g_object_weak_ref()
|
||
instead.
|
||
|
||
2001-08-11 Michael Natterer <mitch@gimp.org>
|
||
|
||
* configure.in: fsck^^^ -- lovely autofoo wants "changequote([,])dnl"
|
||
|
||
* app/core/gimpcontext.[ch]: lots of GObject porting.
|
||
|
||
* app/core/gimpobject.[ch]: added a "disconnect" signal, which
|
||
like gtk's "destroy" is emitted in dispose(). This is ugly but
|
||
I don't see another "clean" way to implement weak containers.
|
||
|
||
* app/core/gimpcontainer.c: connect to the "disconnect" signal of
|
||
the children of weak containes.
|
||
|
||
* app/core/gimpimage.[ch]: replaced the "destroy" implementation
|
||
with "dispose" + "finalize". Removed gimage->undo_history.
|
||
|
||
* app/devices.c
|
||
* app/gui/dialogs-constructors.c
|
||
* app/gui/tools-commands.c
|
||
* app/tools/tool_manager.c
|
||
* app/widgets/gimpimagedock.c: changed accordingly.
|
||
|
||
2001-08-11 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/tools/gimptexttool.c: made border work and fixed render offsets.
|
||
|
||
2001-08-11 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/tools/gimptexttool.c: allow to specify size and border.
|
||
|
||
* app/widgets/gimpfontselection.c: use GTK_STOCK_SELECT_FONT icon.
|
||
|
||
2001-08-11 Sven Neumann <sven@gimp.org>
|
||
|
||
* configure.in: added dependency on PangoFT2 (Pango compiled with
|
||
FreeType2 support).
|
||
|
||
* app/Makefile.am: link against PangoFT2.
|
||
|
||
* app/tools/Makefile.am
|
||
* app/tools/gimptexttool.[ch]: rudimentary new text tool. Still needs
|
||
lots of work.
|
||
|
||
* app/widgets/Makefile.am
|
||
* app/widgets/widgets-types.h:
|
||
* app/widgets/gimpfontselection-dialog.[ch]
|
||
* app/widgets/gimpfontselection.[ch]: added font selection widgets.
|
||
|
||
* libgimpwidgets/Makefile.am
|
||
* libgimpwidgets/gimpwidgetstypes.h
|
||
* libgimpwidgets/gimpfontselection.[ch]: removed font selection code
|
||
from here since the fonts need to be selected from the core's
|
||
PangoContext. Will add PDB-controlled font selection later.
|
||
|
||
2001-08-11 Michael Natterer <mitch@gimp.org>
|
||
|
||
* TODO.xml: added a TODO entry about additional image/file info.
|
||
|
||
* app/file-save.c: #include "core/gimpdocuments.h"
|
||
|
||
* app/core/gimpcontainer.[ch]: made virtual functions out of some
|
||
signals.
|
||
|
||
* app/core/*.[ch]: more GObject stuff: ported all
|
||
gimp_foo_get_type() functions and replaced almost all "destroy"
|
||
implementations with either "finalize" or "dispose" functions.
|
||
|
||
2001-08-11 Seth Burgess <sjburges@gimp.org>
|
||
|
||
* plug-ins/common/colortoalpha.c: set nparams != 4 for
|
||
non-interactive execution. Thanks to alex@foogod.com for
|
||
this fix.
|
||
|
||
2001-08-11 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/core/Makefile.am
|
||
* app/core/gimpdocuments.[ch]: new file implementing the
|
||
docindex.* replacement.
|
||
|
||
* app/gimprc.c: added TT_XDOCUMENT to parse the new document
|
||
history.
|
||
|
||
* app/file-save.c
|
||
* app/gui/file-open-dialog.c: add opened & saved images to the
|
||
document history.
|
||
|
||
* app/core/gimp.c: call gimp_documents_init/exit() instead of
|
||
doing it here.
|
||
|
||
* app/core/gimpimagefile.[ch]: removed the "filename" attribute
|
||
and use GimpObject's "name" instead.
|
||
|
||
* app/gui/dialogs-constructors.[ch]
|
||
* app/gui/dialogs.c
|
||
* app/gui/menus.c: added a menu entry/dockable for the document
|
||
history.
|
||
|
||
* app/widgets/gimpdnd.[ch]: make it DND-able.
|
||
|
||
* app/widgets/gimppreview.c: fix preview rendering correctly this
|
||
time.
|
||
|
||
2001-08-10 Sven Neumann <sven@gimp.org>
|
||
|
||
* libgimpwidgets/Makefile.am
|
||
* libgimpwidgets/gimpwidgetstypes.h
|
||
* libgimpwidgets/gimpfontselection.[ch]: added a rudimentary font
|
||
selection widget, mostly copied from GtkFontSelection.
|
||
|
||
* libgimpwidgets/gimpfileselection.c: more GObject porting.
|
||
|
||
2001-08-10 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/nav_window.c: fix compiler warning.
|
||
|
||
* app/core/gimp.[ch]: added gimp->documents which will be an MRU
|
||
list of GimpImagefile objects.
|
||
|
||
* app/core/gimpcontainer.c: added some g_return_if_fail().
|
||
|
||
* app/gui/palette-editor.c: use GtkImage instead of GtkPixmap,
|
||
s/gtk_signal_*/g_signal_*/.
|
||
|
||
* app/widgets/gimppreview.c: render the checkerboard only for
|
||
channel == -1. In particular, don't render it for channel
|
||
previews.
|
||
|
||
* app/module_db.c
|
||
* app/core/*.c
|
||
* app/gui/colormap-dialog.c
|
||
* app/tools/gimpairbrushtool.c
|
||
* app/tools/gimpdodgeburntool.c
|
||
* app/tools/gimpeditselectiontool.c
|
||
* app/tools/gimperasertool.c
|
||
* app/tools/gimppaintbrushtool.c
|
||
* app/tools/gimppenciltool.c
|
||
* app/tools/gimpsmudgetool.c
|
||
* app/tools/tool_manager.c
|
||
* app/widgets/*.c
|
||
* libgimpwidgets/*.c: s/gtk_type_new/g_object_new/
|
||
|
||
2001-08-09 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/appenums.h: removed GIMP_ZOOM_TYPE,
|
||
|
||
* app/widgets/widgets-types.h: added it here.
|
||
|
||
* app/disp_callbacks.c
|
||
* app/widgets/gimpnavigationpreview.[ch]
|
||
* app/gui/gradient-editor.c: removed old cruft which expects wheel
|
||
events as button_4 and button_5 and connect to GdkEventScroll
|
||
instead.
|
||
|
||
* app/nav_window.c: connect to GimpNavigationPreview's new
|
||
"scroll" and "zoom" signals.
|
||
|
||
* app/gui/error-console-dialog.c: remove wheel scrol stuff (done
|
||
by GtkScrolledWindow now).
|
||
|
||
* app/gui/color-notebook.c
|
||
* app/gui/gradient-editor.c: removed GtkPixmap stuff and use
|
||
GtkImage instead. Looks a bit ugly in the color_notebook (seems
|
||
we need more icon sizes).
|
||
|
||
* app/gui/indicator-area.c: GObject porting.
|
||
|
||
* app/gui/menus.c_ some more menu icons.
|
||
|
||
* app/gui/toolbox.c: pass a GimpContext around as callback data
|
||
and use context->gimp instead of accessing the global "the_gimp"
|
||
variable.
|
||
|
||
2001-08-09 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/core/Makefile.am
|
||
* app/core/core-types.h
|
||
* app/core/gimpimagefile.[ch]: added first draft of a GimpImagefile
|
||
object that will handle image files on disk, in particular their
|
||
thumbnails.
|
||
|
||
2001-08-07 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/disp_callbacks.c: removed a gdk_pointer_ungrab(), it was
|
||
only there because of buggy gtk+ 1.2.x. Cosmetic changes.
|
||
|
||
* app/undo.c: use G_N_ELEMENTS() instead of
|
||
sizeof(array)/sizeof(element).
|
||
|
||
* app/gui/menus.c: more stock icons, moved the item_factory
|
||
creation into the menus_get_foo_factory() functions, use
|
||
G_N_ELEMENTS(). This file badly needs to be spit up...
|
||
|
||
* app/core/gimpviewable.[ch]
|
||
* app/widgets/gimpcontainermenu.[ch]
|
||
* app/widgets/gimpcontainerview.[ch]
|
||
* app/widgets/gimplistitem.[ch]
|
||
* app/widgets/gimpmenuitem.[ch]
|
||
* app/widgets/gimppreview.[ch]: replaced tons of signal emissions
|
||
by virtual functions which are *much* faster. Moreover, all of
|
||
them are private implementation bits of the specific class
|
||
hierarchy and are useless or even dangerous to be exposed as
|
||
signals.
|
||
|
||
* app/widgets/gimpdrawablelistitem.c: removed the drag_motion()
|
||
implementation as it's already done in the parent class.
|
||
|
||
* app/widgets/gimplistitem.[ch]
|
||
* app/widgets/gimplayerlistitem.c: redraw the widget when the
|
||
drop_type has changed. Fixes drop_indicator drawing.
|
||
|
||
2001-08-07 Michael Natterer <mitch@gimp.org>
|
||
|
||
* libgimpwidgets/gimpbutton.[ch]: cleanup.
|
||
|
||
* app/Makefile.am
|
||
* app/errorconsole.[ch]: removed...
|
||
|
||
* app/gui/Makefile.am
|
||
* app/gui/error-console-dialog.[ch]: ...added here. Lots of cleanup,
|
||
create a vbox instead of a dialog.
|
||
|
||
* app/gui/dialogs-constructors.c
|
||
* app/gui/dialogs.c: added a dockable for the error console.
|
||
|
||
* app/errors.c
|
||
* app/gui/gui.c
|
||
* app/gui/menus.c: changed accordingly.
|
||
|
||
* app/widgets/gimpcontainerview.c: conntect "extended_clicked" to
|
||
the "extended_clicked" callback, not "clicked".
|
||
|
||
* app/widgets/gimplayerlistview.c: set the layer option box'
|
||
spacing in "style_set".
|
||
|
||
* app/widgets/gimplistitem.c: argh.
|
||
|
||
* themes/Default/gtkrc: changed the default theme to set a smaller
|
||
font only for the dockable because that's where saving screen
|
||
estate really makes sense. May need some further tweaking.
|
||
|
||
2001-08-06 Daniel Egger <egger@suse.de>
|
||
|
||
* autogen.sh: Fix error message to reflect that one needs
|
||
gettext 0.10.38 to compile GIMP.
|
||
|
||
2001-08-06 Michael Natterer <mitch@gimp.org>
|
||
|
||
* configure.in
|
||
* themes/Default/images/Makefile.am
|
||
* themes/Default/images/tools/Makefile.am: some new Makefiles to
|
||
make it installable.
|
||
|
||
* Makefile.am
|
||
* gtkrc: removed...
|
||
|
||
* themes/Default/Makefile.am
|
||
* themes/Default/gtkrc: ...added here.
|
||
|
||
* themes/Default/imagerc: new file (not used, just for
|
||
documentation) which loads the default theme's images in the same
|
||
way the inlined pixbufs are registered with the stock system.
|
||
|
||
* gimprc.in
|
||
* gimprc.win32
|
||
* user_install
|
||
* user_install.bat
|
||
* app/gimprc.[ch]: added "theme-path" and "theme" gimprc variables.
|
||
|
||
* app/app_procs.c: prase gimprc before initializing the GUI.
|
||
|
||
* app/core/gimpdatafiles.[ch]: added support for getting only
|
||
subdirectories in the callback.
|
||
|
||
* libgimpbase/gimpenv.c: as a temp_hack gimp_gtkrc(); returns the
|
||
default theme's gtkrc.
|
||
|
||
* app/gui/gui.c: build a hash of theme directories and select
|
||
the one configured in gimprc.theme. Use gimp_gtkrc()'s default
|
||
value if there is no theme installed or configured.
|
||
|
||
* app/gui/preferences-dialog.c: Added theme_path to the GUI. No
|
||
stuff for selection the theme yet.
|
||
|
||
* app/gui/menus.c: beautify <Image>/Tools/
|
||
|
||
* app/tools/gimpcroptool.c: register in <Image>/Tools/Transform Tools/
|
||
|
||
2001-08-05 Michael Natterer <mitch@gimp.org>
|
||
|
||
* Makefile.am
|
||
* configure.in
|
||
* themes/.cvsignore
|
||
* themes/Makefile.am
|
||
* themes/Default/.cvsignore
|
||
* themes/Default/Makefile.am
|
||
* themes/Default/images/.cvsignore
|
||
* themes/Default/images/*.png
|
||
* themes/Default/images/tools/.cvsignore
|
||
* themes/Default/images/tools/*.png: new place for all images
|
||
which are registered with the stock system. The default images are
|
||
all inlined but we will install the default theme later along with
|
||
an appropriate gtkrc as a template for custom themes.
|
||
|
||
Added PNGs of all tools icons. Thanks to syngin :)
|
||
|
||
* pixmaps/.cvsignore
|
||
* pixmaps/Makefile.am: reverted everything to the old state. This
|
||
directory will go away soon.
|
||
|
||
* libgimpwidgets/gimpstock.[ch]: changed accordingly. Register
|
||
stock icons in GTK_ICON_SIZE_BUTTON for all tools.
|
||
|
||
* app/core/gimptoolinfo.[ch]
|
||
* app/tools/tool_manager.[ch]: GimpToolInfo wants a stock_id and a
|
||
pre-rendered GdkPixbuf instead of ugly icon_data now. Added some
|
||
workarounds until GimpPreview is a GtkImage and uses GdkPixbuf
|
||
instead of TempBuf.
|
||
|
||
* app/tools/Makefile.am
|
||
* app/tools/icons.h: die, uglyness, die.
|
||
|
||
* app/tools/[all tools].c: register with a stock_id, not a
|
||
icon_data pointer.
|
||
|
||
* app/gui/dialogs-constructors.c: Oops, GIMP badly crashed on
|
||
changing the image for the past few days :)
|
||
|
||
* app/gui/menus.c: create the tools' menu entries with stock
|
||
icons.
|
||
|
||
* app/gui/toolbox.c: use GtkImages instead of GimpPreviews for
|
||
the toolbox buttons. Will need to change this back as soon
|
||
as GimpPreview actually _is_ a GtkImage.
|
||
|
||
2001-08-05 Michael Natterer <mitch@gimp.org>
|
||
|
||
* libgimpwidgets/gimpstock.[ch]: register the button icons with
|
||
GTK_ICON_SIZE_BUTTON, but set them as scalable fallbacks for
|
||
themselves so they get scaled for menus.
|
||
|
||
* app/gui/menus.c: set stock icons for much more menu entries.
|
||
|
||
* app/widgets/gimpwidgets-utils.[ch]: new utility function
|
||
gimp_item_factory_popup_with_data().
|
||
|
||
* app/disp_callbacks.[ch]
|
||
* app/gui/brushes-commands.c
|
||
* app/gui/channels-commands.c
|
||
* app/gui/gradients-commands.c
|
||
* app/gui/layers-commands.c
|
||
* app/gui/palettes-commands.c
|
||
* app/gui/paths-dialog.c
|
||
* app/gui/patterns-commands.c: use the new function.
|
||
|
||
* app/tools/gimpcolorbalancetool.c
|
||
* app/tools/gimpcurvestool.c
|
||
* app/tools/gimphuesaturationtool.c
|
||
* app/tools/gimplevelstool.c
|
||
* app/tools/gimpposterizetool.c: s/_("Reset")/GIMP_STOCK_RESET/
|
||
|
||
* app/widgets/gimpcontainereditor.[ch]
|
||
* app/widgets/gimpcontainerview.[ch]: moved the button_box utility
|
||
functions from the container editor to GimpContainerView itself.
|
||
|
||
* app/widgets/gimpbufferview.c
|
||
* app/widgets/gimpchannellistview.c
|
||
* app/widgets/gimpcomponentlistitem.c
|
||
* app/widgets/gimpcontainergridview.[ch]
|
||
* app/widgets/gimpdatafactoryview.c
|
||
* app/widgets/gimpdrawablelistitem.c
|
||
* app/widgets/gimpdrawablelistview.[ch]
|
||
* app/widgets/gimplayerlistitem.c
|
||
* app/widgets/gimplayerlistview.c: changed accordingly. Removed
|
||
lots of duplicated code and use stock images instead of pixmaps.
|
||
|
||
* libgimpwidgets/gimpfileselection.[ch]
|
||
* libgimpwidgets/gimppatheditor.c: use stock images instead of
|
||
pixmaps.
|
||
|
||
* pixmaps/Makefile.am: removed "yes" and "no", added "stroke".
|
||
|
||
* pixmaps/anchor.xpm
|
||
* pixmaps/delete.xpm
|
||
* pixmaps/lower.xpm
|
||
* pixmaps/new.xpm
|
||
* pixmaps/paste-as-new.xpm
|
||
* pixmaps/paste-into.xpm
|
||
* pixmaps/paste.xpm
|
||
* pixmaps/raise.xpm
|
||
* pixmaps/refresh.xpm
|
||
* pixmaps/toselection.xpm: made them all 16x16 so they are scaled
|
||
nicely in menus. Should probably be 18x18.
|
||
|
||
2001-08-04 Michael Natterer <mitch@gimp.org>
|
||
|
||
* Makefile.am: build pixmaps/ before libgimpwidgets/.
|
||
|
||
* pixmaps/.cvsignore
|
||
* pixmaps/Makefile.am: build gimp-stock-pixbufs.h using
|
||
gdk-pixbuf-csource from some of our XPMs.
|
||
|
||
* libgimpwidgets/Makefile.am
|
||
* libgimpwidgets/gimpwidgets.h
|
||
* libgimpwidgets/gimpstock.[ch]: new files featuring
|
||
gimp_stock_init(). Register a default GtkIconFactory and a set of
|
||
stock buttons.
|
||
|
||
* app/gui/gui.[ch]: new function gui_libs_init(). Call
|
||
gimp_stock_init() from it.
|
||
|
||
* app/app_procs.c: call new function gui_libs_init().
|
||
|
||
* libgimp/gimpui.c: call gimp_stock_init().
|
||
|
||
* app/devices.c: removed action_area hacks as we can configure it
|
||
via style properties now.
|
||
|
||
* app/gui/menus.c: use <StockItem> for some menu entries.
|
||
Looks nifty :-)
|
||
|
||
* app/widgets/gimpcontainereditor.[ch]: take a "stock_id"
|
||
parameter in gimp_container_editor_add_button(), not a EEKy
|
||
pxm_data pointer.
|
||
|
||
* app/widgets/gimpbufferview.c
|
||
* app/widgets/gimpdatafactoryview.c: changed accordingly.
|
||
|
||
* app/widgets/gimpchannellistview.c
|
||
* app/widgets/gimpdrawablelistview.c: removed ugly tooltips
|
||
formating hacks since gtk2 does it right now.
|
||
|
||
* app/widgets/gimpdockbook.c: re-enabled a line that was commented
|
||
out for some reason...?
|
||
|
||
* app/errorconsole.c
|
||
* app/gui/file-new-dialog.c
|
||
* app/gui/tool-options-dialog.c
|
||
* plug-ins/common/uniteditor.c: use the new GIMP_STOCK_FOO id's.
|
||
|
||
* libgimpwidgets/gimpquerybox.c: fixed auto-hiding by connection
|
||
to a passed object's signal.
|
||
|
||
2001-08-03 Michael Natterer <mitch@gimp.org>
|
||
|
||
* gtkrc: set style properties for dockables.
|
||
|
||
* app/main.c: some #if 0'ed code for mem profiling.
|
||
|
||
* app/gui/commands.[ch]
|
||
* app/gui/menus.c: added a mem profiling menu entry + callback.
|
||
|
||
* app/gui/palette-editor.c: added a #warning as reminder, use
|
||
gtk_dialog_set_has_separator().
|
||
|
||
* app/widgets/gimpcontainereditor.[ch]
|
||
* app/widgets/gimpcontainerview.[ch]
|
||
* app/widgets/gimpdockable.[ch]
|
||
* app/widgets/gimpdrawablelistview.[ch]: added some style
|
||
properties to set GimpDockable and friends' borders and spacings.
|
||
|
||
* libgimpwidgets/gimppixmap.[ch]
|
||
* libgimpwidgets/gimpsizeentry.[ch]
|
||
* libgimpwidgets/gimpunitmenu.[ch]: GObject stuff, cleanup.
|
||
|
||
* app/docindex.c
|
||
* app/errorconsole.c
|
||
* app/gdisplay_color_ui.c
|
||
* app/gimpprogress.c
|
||
* app/module_db.c
|
||
* app/undo_history.c
|
||
* app/user_install.c
|
||
* app/gui/channels-commands.c
|
||
* app/gui/gradient-editor.c
|
||
* app/gui/info-window.c
|
||
* app/gui/tips-dialog.c
|
||
* app/tools/gimpbrightnesscontrasttool.c
|
||
* app/tools/gimpbycolorselecttool.c
|
||
* app/tools/gimpcolorbalancetool.c
|
||
* app/tools/gimpcolorpickertool.c
|
||
* app/tools/gimpcroptool.c
|
||
* app/tools/gimpcurvestool.c
|
||
* app/tools/gimphistogramtool.c
|
||
* app/tools/gimphuesaturationtool.c
|
||
* app/tools/gimplevelstool.c
|
||
* app/tools/gimpmeasuretool.c
|
||
* app/tools/gimpposterizetool.c
|
||
* app/tools/gimpthresholdtool.c
|
||
* app/widgets/gimpdatafactoryview.c
|
||
* libgimp/gimpexport.c
|
||
* modules/cdisplay_gamma.c
|
||
* modules/cdisplay_highcontrast.c
|
||
* plug-ins/[lots of files]:
|
||
|
||
Some perl mass processing applying s/_("Foo")/GTK_STOCK_FOO/g,
|
||
minor manual cleanup in some files.
|
||
|
||
2001-08-02 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/tools/gimptexttool.c:
|
||
s/#ifndef GDK_WINDOWING_WIN32/#ifdef GDK_WINDOWING_X11/
|
||
|
||
2001-08-02 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/common/tga.c: merged fix for small TGA2 files by
|
||
Nick Lamb <njl195@zepler.org.uk> from the stable branch.
|
||
|
||
2001-08-01 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/docindex.c
|
||
* app/gdisplay_color_ui.c
|
||
* app/gimpprogress.c
|
||
* app/nav_window.c
|
||
* app/path.c
|
||
* app/scale.c
|
||
* app/undo_history.c
|
||
* app/user_install.c
|
||
* app/gui/resolution-calibrate-dialog.[ch]: converted uses of
|
||
gtk_signal_* to g_signal_*.
|
||
|
||
Changed expose_event handlers that used to be connected using
|
||
signal_connect_after to call the default handler, do the additional
|
||
drawing, then stop the signal emission by returning TRUE.
|
||
|
||
2001-08-01 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/tools/gimpairbrushtool.c
|
||
* app/tools/gimpblendtool.c
|
||
* app/tools/gimpbrightnesscontrasttool.c
|
||
* app/tools/gimpbucketfilltool.c
|
||
* app/tools/gimpcolorpickertool.c
|
||
* app/tools/gimpconvolvetool.c
|
||
* app/tools/gimpcroptool.c
|
||
* app/tools/gimperasertool.c
|
||
* app/tools/gimphistogramtool.c
|
||
* app/tools/gimphuesaturationtool.c
|
||
* app/tools/gimplevelstool.c
|
||
* app/tools/gimpmagnifytool.c
|
||
* app/tools/gimpposterizetool.c
|
||
* app/tools/gimprotatetool.c
|
||
* app/tools/gimpscaletool.c
|
||
* app/tools/gimpsmudgetool.c
|
||
* app/tools/gimptexttool.c
|
||
* app/tools/gimpthresholdtool.c
|
||
* app/tools/gimptransformtool.c
|
||
* app/tools/paint_options.c
|
||
* app/tools/selection_options.c
|
||
* app/tools/transform_options.c: got rid of all remaining gtk_signal
|
||
wrappers in the tools directory.
|
||
|
||
2001-08-01 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/core/core-types.h: defined GimpTransferMode enum.
|
||
|
||
* app/tools/gimpcolorbalancetool.[ch]
|
||
* app/tools/gimpdodgeburntool.[ch]: use it here instead of defining
|
||
the same enum again. Some GObject porting.
|
||
|
||
* app/tools/gimpsmudgetool.h: removed unused enum SmudgeMode.
|
||
|
||
* app/pdb/color_cmds.c
|
||
* app/pdb/tools_cmds.c
|
||
* libgimp/gimpenums.h
|
||
* libgimp/gimptools_pdb.[ch]
|
||
* plug-ins/script-fu/script-fu-constants.c
|
||
* tools/pdbgen/Makefile.am
|
||
* tools/pdbgen/enums.pl
|
||
* tools/pdbgen/pdb/color.pdb
|
||
* tools/pdbgen/pdb/tools.pdb: changed accordingly (mostly generated)
|
||
|
||
2001-08-01 Sven Neumann <sven@gimp.org>
|
||
|
||
* configure.in: added GTK_DISABLE_COMPAT_H back to CPPFLAGS.
|
||
|
||
* app/user_install.c
|
||
* app/base/base.c
|
||
* app/gui/info-window.c
|
||
* app/gui/menus.c
|
||
* app/gui/preferences-dialog.c
|
||
* app/pdb/procedural_db_cmds.c
|
||
* app/tools/gimpcurvestool.c
|
||
* app/tools/gimptexttool.c
|
||
* app/tools/gimptransformtool.c
|
||
* app/widgets/gimpdialogfactory.c
|
||
* app/widgets/gimpdockbook.c
|
||
* app/widgets/gimpdrawablelistview.c
|
||
* app/widgets/gimpnavigationpreview.c
|
||
* libgimpbase/gimpparasiteio.c
|
||
* libgimpwidgets/gimpwidgets.c
|
||
* plug-ins/FractalExplorer/Dialogs.c
|
||
* plug-ins/common/animationplay.c
|
||
* plug-ins/common/newsprint.c
|
||
* plug-ins/common/uniteditor.c
|
||
* plug-ins/dbbrowser/dbbrowser_utils.c
|
||
* plug-ins/gap/gap_navigator_dialog.c
|
||
* plug-ins/gdyntext/gdyntext_ui.c
|
||
* plug-ins/helpbrowser/helpbrowser.c
|
||
* plug-ins/ifscompose/ifscompose_storage.c
|
||
* plug-ins/print/gimp_main_window.c
|
||
* tools/gimp-remote.c
|
||
* tools/pdbgen/pdb/procedural_db.pdb: replaced lots of deprecated
|
||
glib, gdk and gtk+ functions using the new API.
|
||
|
||
* app/paint-funcs/paint-funcs-rgb.c: removed trailing commas.
|
||
|
||
2001-08-01 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/base/base.c: g_strdup (g_get_temp_dir ()), may fix an unseen
|
||
crash.
|
||
|
||
* libgimpwidgets/gimphelpui.[ch]: fixed the help stuff by using
|
||
GtkWidget's new "show_help" signal, which is exactly what we did
|
||
before, only without badly hacking around.
|
||
Renamed gimp_help_connect_help_accel() to gimp_help_connect()
|
||
because that's what it does.
|
||
|
||
* app/devices.c
|
||
* app/errorconsole.c
|
||
* app/interface.c
|
||
* app/gui/about-dialog.c
|
||
* app/gui/edit-commands.c
|
||
* app/gui/file-commands.c
|
||
* app/gui/file-new-dialog.c
|
||
* app/gui/file-open-dialog.c
|
||
* app/gui/file-save-dialog.c
|
||
* app/gui/gradients-commands.c
|
||
* app/gui/gui.c
|
||
* app/gui/info-dialog.c
|
||
* app/gui/palettes-commands.c
|
||
* app/gui/paths-dialog.c
|
||
* app/gui/select-commands.c
|
||
* app/gui/tips-dialog.c
|
||
* app/gui/toolbox.c
|
||
* app/tools/gimpcurvestool.c
|
||
* app/tools/gimplevelstool.c
|
||
* app/widgets/gimpdatafactoryview.c
|
||
* libgimpwidgets/gimpdialog.c
|
||
* plug-ins/FractalExplorer/FractalExplorer.c
|
||
* plug-ins/common/CEL.c
|
||
* plug-ins/common/CML_explorer.c
|
||
* plug-ins/common/gee.c
|
||
* plug-ins/common/gee_zoom.c
|
||
* plug-ins/common/gqbist.c
|
||
* plug-ins/flame/flame.c
|
||
* plug-ins/fp/fp_gtk.c
|
||
* plug-ins/script-fu/script-fu-scripts.c: changed accordingly,
|
||
GObject stuff, sprinkled some GTK_STOCK_FOOs, minor cleanups.
|
||
|
||
2001-07-31 Michael Natterer <mitch@gimp.org>
|
||
|
||
* gtkrc: eek, my last change changed the width of all GtkRange
|
||
subclasses, not only GtkScale, fixed now.
|
||
|
||
* app/devices.c: use GTK_STOCK_FOO button texts.
|
||
|
||
* app/interface.c
|
||
* app/qmask.[ch]: renamed all qmask callbacks to *_callback().
|
||
|
||
* app/gui/tool-options-dialog.c: GObject stuff, use
|
||
gtk_dialog_set_has_separator() instead of poking around.
|
||
|
||
* app/widgets/gimpcolorpanel.c: set panel->color_notebook to NULL
|
||
in "destroy".
|
||
|
||
* app/widgets/gimpnavigationpreview.c: return TRUE from the
|
||
"expose_event" handler.
|
||
|
||
* app/widgets/gimppreview.c: tiny optimizatin.
|
||
|
||
2001-07-31 Sven Neumann <sven@gimp.org>
|
||
|
||
* libgimpwidgets/gimpfileselection.c
|
||
* libgimpwidgets/gimppixmap.c: replaced deprecated GDK calls
|
||
|
||
* modules/colorsel_gtk.c
|
||
* modules/colorsel_triangle.c
|
||
* modules/colorsel_water.c: GObject porting.
|
||
|
||
2001-07-31 Sven Neumann <sven@gimp.org>
|
||
|
||
* libgimp/gimpbrushmenu.c
|
||
* libgimp/gimpexport.c
|
||
* libgimp/gimpgradientmenu.c
|
||
* libgimp/gimpmenu.c
|
||
* libgimp/gimppatternmenu.c: GObject porting.
|
||
|
||
2001-07-31 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/core/core-types.h: removed g_signal_handlers_disconnect_by_data
|
||
again. As Owen pointed out, it's generally a bad idea to use it since
|
||
you can't be absolutely sure that no one else has a pointer to the
|
||
data you are disconnecting.
|
||
|
||
* app/gdisplay.c: added the macro here temporarily.
|
||
|
||
* app/module_db.c
|
||
* app/undo_history.c
|
||
* app/gui/brush-editor.c
|
||
* app/gui/brush-select.c
|
||
* app/gui/gradient-select.c
|
||
* app/gui/pattern-select.c: use g_signal_handlers_disconnect_by_func.
|
||
|
||
* libgimpwidgets/gimpbutton.c
|
||
* libgimpwidgets/gimpchainbutton.c
|
||
* libgimpwidgets/gimpcolorarea.c
|
||
* libgimpwidgets/gimpcolorbutton.c
|
||
* libgimpwidgets/gimpfileselection.c
|
||
* libgimpwidgets/gimphelpui.c
|
||
* libgimpwidgets/gimpoffsetarea.c
|
||
* libgimpwidgets/gimppatheditor.c
|
||
* libgimpwidgets/gimpsizeentry.c
|
||
* libgimpwidgets/gimpunitmenu.c
|
||
* libgimpwidgets/gimpwidgets.c: GObject porting.
|
||
|
||
2001-07-30 Michael Natterer <mitch@gimp.org>
|
||
|
||
* gtkrc: set the width of the scrollbar slider to the same value
|
||
as our default font size so the sliders are nicely aligned with
|
||
their descriptive labels.
|
||
|
||
* libgimpwidgets/gimpdialog.[ch]
|
||
* libgimpwidgets/gimpquerybox.[ch]: use GLib-isms and create the
|
||
dialogs' action_area buttons with gtk_dialog_add_button() so we
|
||
can use the GTK_STOCK_FOO buttons and plug in our own icon factory
|
||
later.
|
||
|
||
* app/qmask.[ch]: fixed the qmask buttons by applying proper
|
||
GdkEvent callback conventions.
|
||
|
||
* libgimpwidgets/gimpcolorbutton.c: NULLify all pointers in
|
||
"destroy".
|
||
|
||
* app/gdisplay_ops.c
|
||
* app/gimphelp.c
|
||
* app/interface.c
|
||
* app/gui/brush-editor.c
|
||
* app/gui/color-notebook.c
|
||
* app/gui/convert-dialog.c
|
||
* app/gui/dialogs-constructors.c
|
||
* app/gui/file-commands.c
|
||
* app/gui/file-new-dialog.c
|
||
* app/gui/file-save-dialog.c
|
||
* app/gui/gradient-editor.c
|
||
* app/gui/gui.c
|
||
* app/gui/image-commands.c
|
||
* app/gui/layers-commands.c
|
||
* app/gui/offset-dialog.c
|
||
* app/gui/palette-editor.c
|
||
* app/gui/palette-import-dialog.c
|
||
* app/gui/preferences-dialog.c
|
||
* app/gui/resize-dialog.c
|
||
* app/gui/resolution-calibrate-dialog.c
|
||
* app/gui/tool-options-dialog.c
|
||
* app/widgets/gimpwidgets-utils.c
|
||
* libgimpwidgets/gimpunitmenu.c: g_signal_* and GObject stuff,
|
||
use lots of GTK_STOCK_OK and friends instead of _("OK") etc.,
|
||
misc minor cleanups.
|
||
|
||
2001-07-30 Sven Neumann <sven@gimp.org>
|
||
|
||
* HACKING
|
||
* autogen.sh: require gettext version 0.38.
|
||
|
||
* configure.in: removed some ugly sed hacks that are not any longer
|
||
needed with recent versions of gettext.
|
||
|
||
2001-07-29 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimphelp.c: code formating paranoia.
|
||
|
||
* app/core/gimp.c: one more g_signal_connect().
|
||
|
||
* app/tools/gimpmeasuretool.c: a gtk_widget_show() was optimized
|
||
away :)
|
||
|
||
* plug-ins/Makefile.am: re-enabled script-fu and dbbrowser.
|
||
|
||
* plug-ins/dbbrowser/dbbrowser_utils.[ch]
|
||
* plug-ins/script-fu/script-fu-console.[ch]
|
||
* plug-ins/script-fu/script-fu-scripts.c
|
||
* plug-ins/script-fu/script-fu-text-console.[ch]
|
||
* plug-ins/script-fu/script-fu.c: use GtkTextBuffer/GtkTextView
|
||
all over the place. GUI code cleanup in the dbbrowser and
|
||
the script-fu console.
|
||
|
||
2001-07-29 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/devices.c
|
||
* app/disp_callbacks.c
|
||
* app/docindex.[ch]
|
||
* app/file-save.c
|
||
* app/gdisplay.c
|
||
* app/gimpprogress.[ch]
|
||
* app/gimprc.c
|
||
* app/plug_in.c
|
||
* app/gui/gradient-editor.c
|
||
* app/gui/menus.[ch]: more GObject and const changes.
|
||
|
||
2001-07-29 Hans Breuer <hans@breuer.org>
|
||
|
||
* plug-ins/common/animationplay.c : REVERTED for all platforms
|
||
which do install headers 'reflect that GTK2 has its
|
||
gdk<x|win32|fb>.h files in the back-end sub directories'
|
||
only the win32 headers aren't installed ...
|
||
|
||
2001-07-29 Sven Neumann <sven@gimp.org>
|
||
|
||
* INSTALL
|
||
* README
|
||
* configure.in
|
||
* gimp-1.4.m4: updated pkg-config location and various other tweaks.
|
||
|
||
2001-07-29 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/FractalExplorer/Dialogs.c
|
||
* plug-ins/Lighting/lighting_ui.c
|
||
* plug-ins/MapObject/mapobject_ui.c
|
||
* plug-ins/fits/fits.c
|
||
* plug-ins/flame/flame.c
|
||
* plug-ins/ifscompose/ifscompose.c
|
||
* plug-ins/maze/maze_face.c
|
||
* plug-ins/mosaic/mosaic.c
|
||
* plug-ins/rcm/rcm_dialog.c
|
||
* plug-ins/sgi/sgi.c: removed compiler warnings by adding G_CALLBACK()
|
||
casts and const declarations.
|
||
|
||
2001-07-29 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/common/AlienMap.c
|
||
* plug-ins/common/AlienMap2.c
|
||
* plug-ins/common/CML_explorer.c
|
||
* plug-ins/common/align_layers.c
|
||
* plug-ins/common/blinds.c
|
||
* plug-ins/common/borderaverage.c
|
||
* plug-ins/common/bumpmap.c
|
||
* plug-ins/common/curve_bend.c
|
||
* plug-ins/common/deinterlace.c
|
||
* plug-ins/common/emboss.c
|
||
* plug-ins/common/film.c
|
||
* plug-ins/common/fractaltrace.c
|
||
* plug-ins/common/gif.c
|
||
* plug-ins/common/gih.c
|
||
* plug-ins/common/hot.c
|
||
* plug-ins/common/iwarp.c
|
||
* plug-ins/common/jigsaw.c
|
||
* plug-ins/common/jpeg.c
|
||
* plug-ins/common/lic.c
|
||
* plug-ins/common/mail.c
|
||
* plug-ins/common/max_rgb.c
|
||
* plug-ins/common/mblur.c
|
||
* plug-ins/common/newsprint.c
|
||
* plug-ins/common/nlfilt.c
|
||
* plug-ins/common/papertile.c
|
||
* plug-ins/common/pnm.c
|
||
* plug-ins/common/ps.c
|
||
* plug-ins/common/psp.c
|
||
* plug-ins/common/ripple.c
|
||
* plug-ins/common/sample_colorize.c
|
||
* plug-ins/common/screenshot.c
|
||
* plug-ins/common/shift.c
|
||
* plug-ins/common/sinus.c
|
||
* plug-ins/common/sparkle.c
|
||
* plug-ins/common/struc.c
|
||
* plug-ins/common/sunras.c
|
||
* plug-ins/common/tiff.c
|
||
* plug-ins/common/waves.c
|
||
* plug-ins/common/wind.c
|
||
* plug-ins/common/xbm.c: got rid of lots of compiler warnings by
|
||
adding G_CALLBACK() casts and some const declarations.
|
||
|
||
2001-07-29 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/docindex.c
|
||
* app/ops_buttons.[ch]: more GObject porting.
|
||
|
||
2001-07-28 Hans Breuer <hans@breuer.org>
|
||
|
||
* */*/makefile.msc : updated for GTK2 build
|
||
|
||
* app/widgets/makefile.msc : (new file) forgot this one last time
|
||
|
||
* plug-ins/common/animationplay.c : reflect that GTK2 has its
|
||
gdk<x|win32|fb>.h files in the back-end sub directories
|
||
|
||
* plug-ins/common/gif.c :
|
||
* plug-ins/common/jpeg.c :
|
||
* plug-ins/dbbrowser/dbbrowser_utils.c :
|
||
* plug-ins/gap/gap_dbbrowser_utils.c :
|
||
* plug-ims/gimpressionist/presets.c :
|
||
* plug-ims/gimpressionist/imap_setting.c :
|
||
* plug-ims/gimpressionist/imap_source.c :
|
||
* plug-ims/script-fu/script-fu-console.c :
|
||
* plug-ims/script-fu/script-fu-scripts.c : #define GTK_ENABLE_BROKEN
|
||
and include <gtk/gtktext.h> to make them compile/work again
|
||
|
||
* plug-ins/common/spheredesigner.c : gtk_color_selction_set_opacity
|
||
renamed to gtk_color_selection_set_current_alpha
|
||
|
||
* plug-ins/gflare/gtkmultioptionmenu.c : ported ny removing the
|
||
virtual draw function and style->xthickness and ythickness via
|
||
direct access, klass field isn't available anymore
|
||
|
||
* plug-ins/common/nlfilt.c :
|
||
* plug-ims/gap/gap_movdialog.c :
|
||
* plug-ims/gimpressionist/gimpressionist.c :
|
||
gtk_widget_set_default_visible is neither available nor needed anymore
|
||
|
||
* plug-ins/common/plugindetails.c : ported to GtkTextBuffer
|
||
and reflect gtk_paned api changes
|
||
|
||
* plug-ims/gimpressionist/imap_preview.c : replace GTK_WIDGET(a)->klass
|
||
access by GTK_WIDGET_GET_CLASS(a)
|
||
|
||
* plug-ims/gimpressionist/imap_selection.c :
|
||
* plug-ims/gimpressionist/imap_toolbar.c :
|
||
* plug-ims/gimpressionist/imap_tools.c : gtk_toolbar api changes
|
||
|
||
2001-07-27 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/core/core-types.h:
|
||
defined convenience macro g_signal_handlers_disconnect_by_data().
|
||
Will try to persuade Tim to accept it for GLib.
|
||
|
||
* app/module_db.c
|
||
* app/undo_history.c
|
||
* app/core/gimp.c
|
||
* app/core/gimpbrush.c
|
||
* app/core/gimpbrushpipe.c
|
||
* app/core/gimpcontainer.c
|
||
* app/core/gimpcontext.c
|
||
* app/core/gimpdatafactory.c
|
||
* app/core/gimpparasite.c
|
||
* app/gui/brush-editor.c
|
||
* app/gui/brush-select.c
|
||
* app/gui/dialogs.c
|
||
* app/gui/file-open-dialog.c
|
||
* app/gui/gradient-select.c
|
||
* app/gui/gradients-commands.c
|
||
* app/gui/menus.c
|
||
* app/gui/pattern-select.c: GObject porting.
|
||
Replaced all remainaing gtk_object_[unref|ref] calls by their
|
||
g_object_ counterparts, except refs that are used with
|
||
gtk_object_sink().
|
||
|
||
2001-07-27 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/module_db.c
|
||
* app/gui/color-area.c
|
||
* app/widgets/gimpbrushfactoryview.c
|
||
* app/widgets/gimpbufferview.c
|
||
* app/widgets/gimpchannellistview.c
|
||
* app/widgets/gimpcontainerlistview.c
|
||
* app/widgets/gimpdatafactoryview.c
|
||
* app/widgets/gimpdialogfactory.c
|
||
* app/widgets/gimpdock.c: more GObject porting
|
||
|
||
2001-07-27 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/errorconsole.c
|
||
* app/user_install.c: use GtkTextView.
|
||
|
||
* app/gui/preferences-dialog.c: use GtkTextView correctly :)
|
||
|
||
* app/interface.c: a quick hack which enables setting the
|
||
canvas padding color via gtkrc.
|
||
|
||
* app/file-utils.c
|
||
* app/plug_in.c
|
||
* app/pdb/fileops_cmds.c
|
||
* tools/pdbgen/pdb/fileops.pdb: s/g_basename/g_path_get_basename/
|
||
|
||
* app/tools/gimpinktool.c
|
||
* app/tools/gimppainttool.c: stupid /me disabled all paint tools
|
||
by setting pressure to 0.0 instead of 1.0, fixed now.
|
||
|
||
2001-07-27 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gui/indicator-area.c: create/raise the new dialogs, not the
|
||
old ones when clicking on the previews.
|
||
|
||
* app/gui/palette-editor.c: some debugging g_print()s to track
|
||
down a funny GTK+ "lets trash const data" bug.
|
||
|
||
* app/gui/preferences-dialog.c: replaced deprecated GtkText with
|
||
GtkTextBuffer/GtkTextView.
|
||
|
||
* app/widgets/gimpdockbook.c: when creating a new dock from a DND
|
||
operation, set it's auto_follow_active and show_image_menu state
|
||
to the source dock's values.
|
||
|
||
2001-07-26 Sven Neumann <sven@gimp.org>
|
||
|
||
* configure.in: check for X, respect X_LIBS when searching for libxpm.
|
||
We can't rely on GTK_LIBS including the X_LIBS any longer.
|
||
|
||
* app/errorconsole.[ch]: some const fixes.
|
||
|
||
2001-07-25 Michael Natterer <mitch@gimp.org>
|
||
|
||
* gtkrc
|
||
* gtkrc_user: updated for gtk+ 2.0, added a "gimp-" prefix to
|
||
all global GIMP styles.
|
||
|
||
* app/app_procs.c: typo.
|
||
|
||
* app/user_install.c
|
||
* app/gui/resolution-calibrate-dialog.[ch]: use GtkRcStyle along
|
||
with gtk_widget_get_modifier_style()/gtk_widget_modify_style() as
|
||
recommended instead of messing with the widgets' styles directly.
|
||
|
||
* app/core/gimpdatalist.[ch]
|
||
* app/core/gimpparasitelist.[ch]
|
||
* app/core/gimpundo.[ch]
|
||
* app/core/gimpundostack.[ch]: GObject porting stuff.
|
||
|
||
2001-07-25 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/devices.c: fixed typo.
|
||
|
||
* app/gdisplay.c
|
||
* app/undo_history.c
|
||
* app/user_install.c
|
||
* app/gui/about-dialog.c
|
||
* app/gui/color-area.c
|
||
* app/gui/gradient-editor.c
|
||
* app/gui/gui.c
|
||
* app/gui/paths-dialog.c
|
||
* app/gui/splash.c
|
||
* app/tools/gimpcurvestool.c
|
||
* app/tools/gimpinktool.c
|
||
* app/tools/gimptexttool.c:
|
||
s/gdk_[bit|pix]map_unref/gdk_drawable_unref/
|
||
|
||
* app/xcf/xcf-load.c: use GObject functions
|
||
|
||
* plug-ins/common/animationplay.c: include GDK backend specific
|
||
headers
|
||
|
||
2001-07-25 Sven Neumann <sven@gimp.org>
|
||
|
||
* configure.in: only build X11 specific plug-ins and tools if
|
||
building for GTK+ on X11.
|
||
|
||
2001-07-25 Michael Natterer <mitch@gimp.org>
|
||
|
||
* HACKING
|
||
* INSTALL: updated, mention pkg-config.
|
||
|
||
* app/gdisplay_ops.c
|
||
* app/gui/resize-dialog.c
|
||
* app/gui/toolbox.c: more GObject porting and const stuff.
|
||
|
||
2001-07-25 Sven Neumann <sven@gimp.org>
|
||
|
||
* configure.in: check for pkg-config (>= 0.7)
|
||
|
||
* gimptool-1.4.in: use pkg-config instead of glib-config and
|
||
gtk-config.
|
||
|
||
2001-07-25 Sven Neumann <sven@gimp.org>
|
||
|
||
* app_procs.c
|
||
* errors.c
|
||
* errors.h
|
||
* file-save.c
|
||
* gdisplay.c
|
||
* module_db.c
|
||
* undo.c: use GObject functions and const fixes.
|
||
|
||
2001-07-25 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gui/brush-select.c
|
||
* app/gui/channels-commands.c
|
||
* app/gui/info-window.c
|
||
* app/gui/layers-commands.c
|
||
* app/gui/offset-dialog.c
|
||
* app/gui/palette-import-dialog.c
|
||
* app/gui/paths-dialog.c
|
||
* app/gui/preferences-dialog.c: use GObject functions, stuff.
|
||
|
||
2001-07-25 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/nav_window.c
|
||
* app/user_install.c
|
||
* app/pdb/color_cmds.c
|
||
* app/pdb/selection_cmds.c
|
||
* app/tools/gimpbezierselecttool.c
|
||
* app/tools/gimpblendtool.c
|
||
* app/tools/gimpbucketfilltool.c
|
||
* app/tools/gimpbycolorselecttool.c
|
||
* app/tools/gimpclonetool.c
|
||
* app/tools/gimpcolorpickertool.c
|
||
* app/tools/gimpdrawtool.c
|
||
* app/tools/gimpeditselectiontool.c
|
||
* app/tools/gimpellipseselecttool.c
|
||
* app/tools/gimpfreeselecttool.c
|
||
* app/tools/gimpfuzzyselecttool.c
|
||
* app/tools/gimphuesaturationtool.c
|
||
* app/tools/gimpiscissorstool.c
|
||
* app/tools/gimppainttool.c
|
||
* app/tools/gimprectselecttool.c
|
||
* app/tools/gimptexttool.c
|
||
* app/tools/gimptool.c
|
||
* app/tools/paint_options.c
|
||
* app/tools/selection_options.c
|
||
* app/tools/tool_manager.c
|
||
* app/tools/transform_options.c
|
||
* app/widgets/gimpdnd.c
|
||
* tools/pdbgen/pdb/color.pdb
|
||
* tools/pdbgen/pdb/selection.pdb: use GObject functions.
|
||
|
||
2001-07-25 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/gximage.c: replaced some deprecated gdk functions.
|
||
|
||
* app/widgets/gimpcontainergridview.c
|
||
* app/widgets/gimpcontainermenuimpl.c
|
||
* app/widgets/gimpcursor.c
|
||
* app/widgets/gimpdialogfactory.c
|
||
* app/widgets/gimpdnd.c
|
||
* app/widgets/gimpdock.c
|
||
* app/widgets/gimpdockbook.c
|
||
* app/widgets/gimphistogramview.c
|
||
* app/widgets/gimplistitem.c
|
||
* app/widgets/gimpmenuitem.c
|
||
* app/widgets/gimpnavigationpreview.c
|
||
* app/widgets/gimppreview.c
|
||
* app/widgets/gimpwidgets-utils.c: more work on porting to GObject.
|
||
|
||
2001-07-25 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gui/dialogs-constructors.c
|
||
* app/widgets/gimpdockable.c: removed debugging g_print().
|
||
|
||
* app/widgets/gimpdock.c: ditto, fixed a crash caused by some
|
||
intermediate porting hack.
|
||
|
||
2001-07-24 Michael Natterer <mitch@gimp.org>
|
||
|
||
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
|
||
|
||
* configure.in: require glib/gtk+ >= 1.3.7, commented out the
|
||
gtkxmhtml stuff.
|
||
|
||
From now on, you will need glib, pango, atk and gtk+ HEAD from CVS
|
||
to hack or use GIMP HEAD.
|
||
|
||
Beware, it crashes randomly :)
|
||
|
||
* app/core/Makefile.am
|
||
* app/core/gimpmarshal.list: new file plus rules to generate
|
||
gimpmarshal.[ch] from it.
|
||
|
||
* app/core/*
|
||
* app/tools/*
|
||
* app/widgets/*
|
||
* libgimpwidgets/*: started to use the glib object system. All
|
||
core/ objects are still gtk objects however. All signals are
|
||
created using g_signal_new(). There are many gtk+ artefacts left.
|
||
Finally, we will _not_ use the gtk_signal_foo() wrappers and
|
||
friends any more.
|
||
|
||
* app/colormaps.c
|
||
* app/devices.[ch]
|
||
* app/disp_callbacks.c
|
||
* app/errorconsole.c
|
||
* app/file-save.[ch]
|
||
* app/interface.c
|
||
* app/module_db.c
|
||
* app/nav_window.c
|
||
* app/ops_buttons.c
|
||
* app/scroll.c
|
||
* app/user_install.c
|
||
* app/gui/about-dialog.c
|
||
* app/gui/brush-editor.c
|
||
* app/gui/brushes-commands.c
|
||
* app/gui/color-notebook.c
|
||
* app/gui/colormap-dialog.c
|
||
* app/gui/dialogs-commands.c
|
||
* app/gui/dialogs-constructors.c
|
||
* app/gui/file-commands.c
|
||
* app/gui/file-dialog-utils.c
|
||
* app/gui/file-new-dialog.c
|
||
* app/gui/file-open-dialog.[ch]
|
||
* app/gui/file-save-dialog.c
|
||
* app/gui/gradient-editor.c
|
||
* app/gui/gradients-commands.c
|
||
* app/gui/image-commands.c
|
||
* app/gui/info-dialog.[ch]
|
||
* app/gui/layer-select.c
|
||
* app/gui/layers-commands.c
|
||
* app/gui/menus.c
|
||
* app/gui/offset-dialog.c
|
||
* app/gui/palette-editor.c
|
||
* app/gui/palettes-commands.c
|
||
* app/gui/patterns-commands.c
|
||
* app/gui/preferences-dialog.c
|
||
* app/gui/resize-dialog.[ch]
|
||
* app/gui/splash.c
|
||
* app/gui/tips-dialog.c
|
||
* app/gui/tool-options-dialog.c
|
||
* app/gui/toolbox.c
|
||
* app/gui/tools-commands.c
|
||
* libgimp/gimpbrushmenu.c
|
||
* libgimp/gimpmenu.c
|
||
* libgimp/gimppatternmenu.c
|
||
* libgimp/gimpui.c
|
||
* libgimpbase/gimpenv.c: tons and tons of changes like "const
|
||
gchar*", switch from GdkDeviceInfo to GdkDevice (very incomplete
|
||
and currently disables), lots of s/gtk_signal/g_signal/,
|
||
removal/replacement of deprecated stuff,
|
||
s/GtkSignalFunc/GCallback/ and lots of small changes and fixes
|
||
while I was on it, zillions of warnings left...
|
||
|
||
* modules/Makefile.am: disabled the water color selector
|
||
temporarily (XInput issues).
|
||
|
||
* plug-ins/Makefile.am
|
||
* plug-ins/common/.cvsignore
|
||
* plug-ins/common/Makefile.am
|
||
* plug-ins/common/plugin-defs.pl: simply excluded all plug-ins
|
||
which did not build (including Script-Fu). They are trivial to
|
||
fix.
|
||
|
||
2001-07-23 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/common/winclipboard.c
|
||
* plug-ins/gap/gap_filter_foreach.c
|
||
* plug-ins/imagemap/imap_cmd_guides.c
|
||
* plug-ins/sel2path/pxl-outline.c: marked missing strings for
|
||
translation (patch from "Iccii" <iccii@hotmail.com>).
|
||
|
||
2001-07-22 Hans Breuer <hans@breuer.org>
|
||
|
||
* app/*/makefile.msc :
|
||
* plug-ins/makefile.msc :
|
||
* libgimp/gimp.def :
|
||
* libgimpwidgets/gimpwidgets.def : updated
|
||
|
||
* makefile.msc :
|
||
* app/xcf/makefile.msc :
|
||
* regexrepl/makefile.msc : new files
|
||
|
||
* app/base/base-config.c : a work-around for a gccism with
|
||
structure initialization
|
||
|
||
* app/core/gimp.c :
|
||
* app/core/gimpimage-new.c :
|
||
* app/gui/color-area.c
|
||
* app/widgets/gimpdialogfactory.c
|
||
* app/xcf/xcf-load.c
|
||
* app/xcf/xcf-save.c
|
||
* app/xcf/xcf-write.c
|
||
* plug-ins/common/plasma.c :
|
||
* plug-ins/flame/libifs.c : added <string.h> for strlen(), strcpy(),
|
||
memcpy(), memcmp() and friends
|
||
|
||
* plug-ins/imagemap/imap_rectangle.c :
|
||
* plug-ins/ifscompose/ifscompose_storage.c : added <stdlib.h> for abs()
|
||
|
||
* plug-ins/common/spheredesigner.c : reflect renaming of drawable.id
|
||
drawable.drawable_id
|
||
|
||
* plug-ins/script-fu/siod-wrapper.c : <string.h> and conditional use
|
||
of script_fu_server_quit () cause there is not yet script-fu server
|
||
on win32.
|
||
|
||
2001-07-22 Stanislav Brabec <utx@penguin.cz>
|
||
|
||
* plugins/common/despeckle.c: Reflect my fix from 2001-03-01
|
||
(range limits) in script-fu comments.
|
||
|
||
2001-07-20 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/dialog_handler.[ch]: removed.
|
||
|
||
* app/widgets/gimpdialogfactory.[ch]: added the missing features
|
||
from the dialog_handler: idle/unidle all dialogs and the show_all
|
||
-> hide_all -> show_toolbox -> show_all cycling (a bit ugly
|
||
currently because the toolbox's factory and it's identifier has to
|
||
be passed to gimp_dialog_factories_toggle()).
|
||
|
||
* app/disp_callbacks.c
|
||
* app/gui/gui.c: call the new dialog factory class methods.
|
||
|
||
* app/devices.c
|
||
* app/docindex.c
|
||
* app/errorconsole.c
|
||
* app/nav_window.c
|
||
* app/undo_history.c
|
||
* app/gui/info-dialog.c
|
||
* app/gui/file-open-dialog.c
|
||
* app/gui/file-save-dialog.c: currently "unmanaged" because they
|
||
are not yet registered with a dialog factory.
|
||
|
||
* app/gui/menus.c: ditto for the tearoff menus.
|
||
|
||
* app/gui/brush-select.c
|
||
* app/gui/colormap-dialog.c
|
||
* app/gui/gradient-select.c
|
||
* app/gui/palette-select.c
|
||
* app/gui/pattern-select.c
|
||
* app/gui/tool-options-dialog.c
|
||
* app/gui/toolbox.c: these are already factory created so toggling
|
||
and (un)idling works like before.
|
||
|
||
* app/widgets/gimpdock.c: reduced the minimal width from 280 to 250.
|
||
|
||
* app/widgets/gimplayerlistview.c: use a toggle button instead of
|
||
a check button for "Keep transp.".
|
||
|
||
2001-07-19 Sven Neumann <sven@gimp.org>
|
||
|
||
* configure.in: ran autoupdate on this file
|
||
|
||
* app/xcf/xcf-load.c
|
||
* app/xcf/xcf-private.h
|
||
* app/xcf/xcf-save.c: code cleanup, no changes
|
||
|
||
2001-07-18 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/batch.c: bahave like the old batch code and call
|
||
app_exit(FALSE) when reading from STDIN is finished.
|
||
|
||
2001-07-18 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/script-fu/script-fu-text-console.c: stop reading on EOF
|
||
|
||
* plug-ins/script-fu/script-fu-console.c
|
||
* plug-ins/script-fu/script-fu.c: some small cleanups
|
||
|
||
2001-07-18 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/batch.[ch]: seems Mathieu messed up the last commit :) Added
|
||
these two files back from the Attic, removed the old STDIN code
|
||
and added a small hack which calls "extension-script-fu-text-console"
|
||
|
||
* app/main.c: reverted to the last version, so old and new batch
|
||
mode are both there now.
|
||
|
||
2001-07-17 Mathieu Lacage <mathieu@gnome.org>
|
||
|
||
* app/batch.c: new code to call the script_fuc_text_console pdb function.
|
||
* app/main.c: (main): remove batch command code.
|
||
|
||
* plug-ins/script-fu/Makefile.am: add siod-wrapper.h/c
|
||
* plug-ins/script-fu/script-fu-console.c:
|
||
(script_fu_cc_key_function),
|
||
(script_fu_open_siod_console),
|
||
(script_fu_close_siod_console):
|
||
* plug-ins/script-fu/script-fu-scripts.h:
|
||
* plug-ins/script-fu/script-fu-server.c:
|
||
(script_fu_server_quit),
|
||
(script_fu_server_get_mode),
|
||
(execute_command):
|
||
Replace all direct calls to the scheme interpreter with calls to the siod-wrapper.
|
||
* plug-ins/script-fu/script-fu-console.h: remove run_eval.
|
||
* plug-ins/script-fu/script-fu-server.h:
|
||
* plug-ins/script-fu/script-fu-text-console.c:
|
||
(script_fu_text_console_run),
|
||
(read_command),
|
||
(script_fu_text_console_interface):
|
||
The actual new text console.
|
||
* plug-ins/script-fu/script-fu-text-console.h: header.
|
||
* plug-ins/script-fu/script-fu.c:
|
||
(script_fu_quit),
|
||
(script_fu_query),
|
||
(script_fu_run): rename to better words.
|
||
move most of the code to siod-wrapper.c/h
|
||
* plug-ins/script-fu/siod-wrapper.c:
|
||
(siod_get_output_file),
|
||
(siod_set_output_file),
|
||
(siod_get_verbose_level),
|
||
(siod_set_verbose_level),
|
||
(siod_print_welcome),
|
||
(siod_interpret_string),
|
||
(siod_get_error_msg),
|
||
(siod_get_success_msg),
|
||
(siod_init),
|
||
(init_procedures),
|
||
(init_constants),
|
||
(convert_string),
|
||
(sputs_fcn),
|
||
(lprin1s),
|
||
(marshall_proc_db_call),
|
||
(script_fu_register_call),
|
||
(script_fu_quit_call):
|
||
All the funcitons dealing with the internals of the scheme interpreter.
|
||
* plug-ins/script-fu/siod-wrapper.h: the header.
|
||
|
||
2001-07-17 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/path.[ch]: removed path_to_beziersel() so this file can be
|
||
safely included from core/.
|
||
|
||
* app/tools/gimpbezierselecttool.[ch]: added it here.
|
||
|
||
* app/core/core-types.h: added a GimpToolOptions typedef. Removes
|
||
deps into tools/ and will later be a core object anyway.
|
||
|
||
* app/tools/tools-types.h: removed the ToolOptions typedef here.
|
||
|
||
* app/core/gimpimage-duplicate.c
|
||
* app/core/gimpimage-mask.c
|
||
* app/core/gimpimage.c
|
||
* app/core/gimptoolinfo.[ch]: removed deps into tools/, misc stuff.
|
||
|
||
* app/tools/tool_manager.[ch]: some ugly temp hacks. Please ignore.
|
||
|
||
* app/widgets/gimpdialogfactory.[ch]: added a "remember_if_open" field
|
||
to the GimpDialogFactoryEntry so we can manage dialogs which should
|
||
not be re-opened on startup.
|
||
|
||
* app/gui/dialogs-constructors.c
|
||
* app/gui/dialogs.c: register & create all editor dialog with the
|
||
"global_dialog_factory".
|
||
|
||
* app/gui/tool-options-dialog.c
|
||
* app/tools/*: s/ToolOptions/GimpToolOptions/
|
||
|
||
2001-07-15 Michael Natterer <mitch@gimp.org>
|
||
|
||
* libgimpbase/gimpwire.c: remove the usage of printf()/scanf()
|
||
when sending doubles over the wire. Instead, rely on the memory
|
||
layout of gdouble being IEEE compliant and transmit 8 bytes in
|
||
network byte order.
|
||
|
||
* libgimpbase/gimpprotocol.h: increase GP_VERSION because this
|
||
makes the wire protocol binary incompatible.
|
||
|
||
* app/main.c
|
||
* libgimp/gimp.c: removed the setlocate(LC_NUMERIC,"C") workaround.
|
||
|
||
2001-07-15 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/core/gimp.c: don't use the global "the_gimp" variable.
|
||
|
||
* app/core/gimpimage-convert.c: don't update the display here.
|
||
|
||
* app/gui/gui.c: connect to the images' "mode_changed" signal
|
||
and update here.
|
||
|
||
* app/gui/brush-editor.[ch]
|
||
* app/gui/gradient-editor.[ch]
|
||
* app/gui/palette-editor.[ch]: pass a "Gimp" pointer to all
|
||
editors. Added an palette_name entry to the palette editor.
|
||
|
||
* app/gui/colormap-dialog.[ch]: removed all the dialog stuff and
|
||
made the constructor return a vbox so it can be integrated in a
|
||
dockable. Lots of cleanup and removal of anqiuqe aretfacts.
|
||
|
||
* app/gui/dialogs-constructors.[ch]: wrap the colormap dialog in
|
||
a dockable.
|
||
|
||
* app/gui/dialogs-commands.[ch]
|
||
* app/gui/dialogs.c
|
||
* app/gui/menus.c: integrate the new dockable, made the "Brushes.."
|
||
etc. menu entries create dockbles. Moved the old dialogs and the
|
||
test menu entries to "Old + Testing" and removed N_() so the .po
|
||
files stay cruft-free.
|
||
|
||
* app/gui/test-commands.[ch]: removed lots of stuff which is not
|
||
"testing" any more.
|
||
|
||
2001-07-14 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/pdb/display_cmds.c
|
||
* tools/pdbgen/pdb/display.pdb (display_new_invoker): removed
|
||
unnecessary check for image being nonempty.
|
||
|
||
2001-07-14 Fatih Demir <kabalak@gtranslator.org>
|
||
|
||
* tips/Makefile.am|makefile.mingw: Added gimp_tips.tr.txt to the
|
||
targets and re-ordered the tips files listings.
|
||
|
||
* tips/gimp_tips.tr.txt: Added Turkish tips file from Alper Ersoy.
|
||
|
||
2001-07-13 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/appenv.h
|
||
* app/main.c: removed "use_mmx" and the MMX detection.
|
||
|
||
* app/base/Makefile.am: build the MMX detection unconditionally
|
||
as it's already #ifdef'ed in the source.
|
||
|
||
* app/base/detect-mmx.h: added a header for detect-mmx.S
|
||
|
||
* app/base/base-config.[ch]: added the "use_mmx" boolean.
|
||
|
||
* app/base/base.c: call intel_cpu_features() here.
|
||
|
||
* app/paint-funcs/paint-funcs.c: #include "base/base-config.h".
|
||
|
||
* app/floating_sel.c
|
||
* app/core/gimpimage.c: removed commented out cruft.
|
||
|
||
* app/core/gimplayer.c: gimp_layer_new_from_tiles(): pass the
|
||
gimage instead of NULL to gimp_layer_new() because layers have to
|
||
be created in an image context now
|
||
(checked gimp_layer_new_from_tile()'s callers if this is
|
||
semantically correct).
|
||
|
||
2001-07-12 Dave Neary <dneary@eircom.net>
|
||
|
||
* po/POTFILES.in: One line fix to fix dependency problem.
|
||
|
||
2001-07-12 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/regexrepl.c
|
||
* app/regexrepl.h: removed here ...
|
||
|
||
* plug-ins/script-fu/regexrepl.c
|
||
* plug-ins/script-fu/regexrepl.h: ... and here ...
|
||
|
||
* regexrepl/Makefile.am
|
||
* regexrepl/regex.c
|
||
* regexrepl/regex.h: ... and added here again.
|
||
|
||
* Makefile.am
|
||
* configure.in
|
||
* app/Makefile.am
|
||
* app/pdb/plug_in_cmds.c
|
||
* app/pdb/procedural_db_cmds.c
|
||
* plug-ins/script-fu/Makefile.am
|
||
* plug-ins/script-fu/interp_regex.c
|
||
* tools/pdbgen/app.pl
|
||
* tools/pdbgen/pdb/plug_in.pdb
|
||
* tools/pdbgen/pdb/procedural_db.pdb: changed accordingly.
|
||
|
||
2001-07-12 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/detect_mmx.S: removed.
|
||
|
||
* app/base/Makefile.am
|
||
* app/base/detect-mmx.S: added.
|
||
|
||
2001-07-11 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/gimpunit.c
|
||
* app/unitrc.h: removed...
|
||
|
||
* app/core/Makefile.am
|
||
* app/core/gimpunit.[ch]: ...re-added here.
|
||
|
||
* app/core/gimp.[ch]: added the image and drawable hash tables,
|
||
next_image_ID, next_guide_ID and next_drawable_ID, added a
|
||
GimpCoreConfig pointer which is now initalized dynamically.
|
||
|
||
* app/core/gimpcoreconfig.[ch]: don't provide a global core_config
|
||
variable any more (need to access gimp->config now).
|
||
|
||
* app/gdisplay.[ch]
|
||
* app/core/gimpdrawable.[ch]
|
||
* app/core/gimpimage.[ch]: removed all global variables from
|
||
gimpimage.c and gimpdrawable.c, pass a Gimp* to all *_get_by_ID()
|
||
functions.
|
||
|
||
* tools/pdbgen/app.pl: pass Gimp* to all _get_by_ID() functions.
|
||
|
||
* app/app_procs.c
|
||
* app/file-open.c
|
||
* app/file-save.c
|
||
* app/gimprc.c
|
||
* app/libgimp_glue.c
|
||
* app/module_db.c
|
||
* app/plug_in.c
|
||
* app/undo.c
|
||
* app/user_install.c
|
||
* app/core/core-types.h
|
||
* app/core/gimpcontext.c
|
||
* app/core/gimpimage-crop.c
|
||
* app/core/gimpimage-new.c
|
||
* app/core/gimpparasite.c
|
||
* app/gui/file-new-dialog.c
|
||
* app/gui/file-open-dialog.c
|
||
* app/gui/info-window.c
|
||
* app/gui/preferences-dialog.c
|
||
* app/gui/resize-dialog.c
|
||
* app/xcf/xcf-load.c
|
||
* app/xcf/xcf-save.c
|
||
* app/xcf/xcf.c
|
||
* app/widgets/gimpdnd.c
|
||
|
||
* app/pdb/channel_cmds.c
|
||
* app/pdb/color_cmds.c
|
||
* app/pdb/convert_cmds.c
|
||
* app/pdb/display_cmds.c
|
||
* app/pdb/drawable_cmds.c
|
||
* app/pdb/edit_cmds.c
|
||
* app/pdb/fileops_cmds.c
|
||
* app/pdb/floating_sel_cmds.c
|
||
* app/pdb/guides_cmds.c
|
||
* app/pdb/image_cmds.c
|
||
* app/pdb/layer_cmds.c
|
||
* app/pdb/parasite_cmds.c
|
||
* app/pdb/paths_cmds.c
|
||
* app/pdb/selection_cmds.c
|
||
* app/pdb/text_tool_cmds.c
|
||
* app/pdb/tools_cmds.c
|
||
* app/pdb/undo_cmds.c
|
||
* app/pdb/unit_cmds.c
|
||
|
||
* tools/pdbgen/pdb/image.pdb
|
||
* tools/pdbgen/pdb/unit.pdb: changed accordingly.
|
||
|
||
2001-07-10 Sven Neumann <sven@gimp.org>
|
||
|
||
Bugfixes from the stable branch:
|
||
|
||
* plug-ins/common/bz2.c
|
||
* plug-ins/common/gz.c: a fix for bug #57217 based on a patch from
|
||
Raphael Quinet.
|
||
|
||
* plug-ins/gap/gap_lib.c (p_file_copy): open files in binary mode.
|
||
A patch from Wolfgang Hofer that possibly fixes bug #52890.
|
||
|
||
* tools/Makefile.am: added gimppath2svg.py to EXTRA_DIST.
|
||
|
||
2001-07-10 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/app_procs.[ch]: removed the gimp_busy boolean, check whether
|
||
user_installation is needed here, not in user_install.c, parse
|
||
gtkrc an friends only if(!no_interface), create the Gimp object
|
||
before parsing gimp's rc files and pass it to the parse functions,
|
||
many other cleanups.
|
||
|
||
* app/appenums.h: added MessageHandlerType and StackTraceMode.
|
||
|
||
* app/appenv.h: removed MessageHandlerType, declare all global
|
||
variables from main.c (no more hidden global stuff please).
|
||
|
||
* app/errors.[ch]: added the fatal message func here (from main.c),
|
||
removed the StackTraceMode enum.
|
||
|
||
* app/gimprc.[ch]: renamed functions to gimprc_*(), pass a Gimp
|
||
pointer to some functions.
|
||
|
||
* app/gimpunit.c
|
||
* app/unitrc.h: ok, this is ugly: renamed all functions to
|
||
_gimp_unit_*() and made them public. The unit list is part
|
||
of the Gimp object now, so pass a Gimp* to all functions.
|
||
|
||
* app/libgimp_glue.[ch]: added EEKy wrappers for all gimp_unit_*()
|
||
functions which are used by widgets.
|
||
|
||
* app/main.c: cleaned up the global variables, removed the fatal
|
||
message handler, call app_init() directly, not via the
|
||
user_install stuff, misc. cleanups.
|
||
|
||
* app/user_install.[ch]: removed the check if user_installation is
|
||
needed (done by app_procs.c now).
|
||
|
||
* app/core/gimp.[ch]: added the user_unit list and the "busy"
|
||
boolean. Moved gimp_[set|unset]_busy() here. Added
|
||
gimp_initialize() which is called after unitrc and gimprc are
|
||
parsed.
|
||
|
||
* app/batch.c
|
||
* app/colormaps.c
|
||
* app/devices.c
|
||
* app/disp_callbacks.c
|
||
* app/gdisplay_ops.c
|
||
* app/gimphelp.c
|
||
* app/module_db.c
|
||
* app/nav_window.c
|
||
* app/plug_in.c
|
||
* app/core/gimpcontext.c
|
||
* app/core/gimpdatafiles.c
|
||
* app/core/gimpimage-convert.c
|
||
* app/core/gimpimage-duplicate.c
|
||
* app/core/gimpimage.c
|
||
* app/core/gimpparasite.c
|
||
* app/core/gimpparasitelist.h
|
||
* app/gui/file-open-dialog.c
|
||
* app/gui/gui.[ch]
|
||
* app/gui/info-dialog.c
|
||
* app/gui/info-window.c
|
||
* app/gui/preferences-dialog.c
|
||
* app/gui/session.c
|
||
* app/gui/tips-dialog.c
|
||
* app/gui/toolbox.c
|
||
* app/tools/gimpblendtool.c
|
||
* app/tools/gimpbucketfilltool.c
|
||
* app/tools/gimpcolorpickertool.c
|
||
* app/tools/gimpfuzzyselecttool.c
|
||
* app/tools/gimptransformtool.c
|
||
* app/tools/tool_manager.c
|
||
* app/widgets/gimpcolorpanel.c
|
||
* app/widgets/gimpcursor.c
|
||
* app/xcf/xcf-load.c
|
||
* app/xcf/xcf-save.c
|
||
* app/xcf/xcf.c
|
||
* tools/pdbgen/Makefile.am
|
||
* tools/pdbgen/app.pl
|
||
* tools/pdbgen/enums.pl
|
||
* tools/pdbgen/pdb/image.pdb
|
||
* tools/pdbgen/pdb/message.pdb
|
||
* tools/pdbgen/pdb/unit.pdb
|
||
* app/pdb/image_cmds.c
|
||
* app/pdb/message_cmds.c
|
||
* app/pdb/unit_cmds.c: changed accordingly, minor cleanups.
|
||
|
||
2001-07-09 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/datafiles.[ch]
|
||
* app/gimpparasite.[ch]
|
||
* app/parasitelist.[ch]: removed...
|
||
|
||
* app/core/Makefile.am
|
||
* app/core/gimpdatafiles.[ch]
|
||
* app/core/gimpparasite.[ch]
|
||
* app/core/gimpparasitelist.[ch]: ...and added here.
|
||
|
||
* app/gimprc.c
|
||
* app/module_db.c
|
||
* app/plug_in.c
|
||
* app/undo.c
|
||
* app/core/gimp.c
|
||
* app/core/gimpchannel.c
|
||
* app/core/gimpdatafactory.c
|
||
* app/core/gimpdrawable.c
|
||
* app/core/gimpimage-duplicate.c
|
||
* app/core/gimpimage.c
|
||
* app/core/gimplayer.c
|
||
* app/xcf/xcf-load.c
|
||
* app/xcf/xcf-save.c
|
||
* tools/pdbgen/pdb/parasite.pdb
|
||
* app/pdb/parasite_cmds.c: changed #include's accordingly.
|
||
|
||
2001-07-09 Dave Neary <dneary@eircom.net>
|
||
|
||
* app/plug_in.c: One-line fix which is needed, but never showed
|
||
up before. Initialise a string to NULL, to avoid a !=NULL
|
||
mishap later on.
|
||
|
||
2001-07-09 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/core/gimp.[ch]: added a (commented out) function to open
|
||
files (to get rid of including gui/file-open-dialog.h)
|
||
|
||
* app/gui/file-open-dialog.[ch]
|
||
* app/gui/file-save-dialog.[ch]: renamed all functions because they
|
||
are no callbacks any more. Removed the _by_extension() callbacks.
|
||
|
||
* app/gui/file-commands.[ch]: added the
|
||
file_[open|save]_by_extension() callbaks here along with some
|
||
other stuff which has nothing to do with the file dialogs.
|
||
|
||
* app/gui/menus.c: added a helper function to create an item
|
||
factory, cleanup.
|
||
|
||
* app/gui/palette-editor.[ch]: contains only the editor for a
|
||
single palette now (removed the notebook and the palette list).
|
||
Renamed all functions to palette_editor_*(). Will be made a
|
||
dockable later.
|
||
|
||
* app/gui/palette-select.[ch]: made it work like the other
|
||
selection dialogs.
|
||
|
||
* app/app_procs.c
|
||
* app/docindex.c
|
||
* app/gui/dialogs-constructors.[ch]
|
||
* app/gui/dialogs.c
|
||
* app/gui/gradient-select.c
|
||
* app/gui/gui.c
|
||
* app/widgets/gimpdnd.c: changed accordingly.
|
||
|
||
2001-07-08 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/disp_callbacks.c: the active_tool may change in the middle
|
||
of gdisplay_canvas_events(), so re-get it after using it for
|
||
cursor_update.
|
||
|
||
* app/base/boundary.c: made some global variables local.
|
||
|
||
* app/core/gimpdrawable.c: don't call gimp_drawable_set_visible()
|
||
in gimp_drawable_configure() because we don't want signal
|
||
emissions while configuring the drawable.
|
||
|
||
* app/gui/Makefile.am
|
||
* app/gui/brushes-commands.[ch]
|
||
* app/gui/data-commands.[ch]
|
||
* app/gui/gradients-commands.[ch]
|
||
* app/gui/palettes-commands.[ch]
|
||
* app/gui/patterns-commands.[ch]: new files for new new item
|
||
factories' callbacks.
|
||
|
||
* app/gui/menus.[ch]: added context menus for brushes, patterns, ...
|
||
|
||
* app/gui/gradient-editor.c
|
||
* app/gui/palette-editor.c: removed the "Save as POV", "Import
|
||
Palette" and "Merge Palattes" buttons as they are item factory
|
||
callbacks now.
|
||
|
||
* app/widgets/gimpbrushfactoryview.[ch]
|
||
* app/widgets/gimpbufferview.[ch]
|
||
* app/widgets/gimpcontainereditor.[ch]
|
||
* app/widgets/gimpdatafactoryview.[ch]: pass a
|
||
"GimpContainerContextFunc" pointer to all GimpContainerEditor
|
||
subclasses' constructors. Use the function to show the context
|
||
menu.
|
||
|
||
* app/widgets/gimpcontainergridview.c: dispatch the previews'
|
||
"context" signal.
|
||
|
||
* app/widgets/gimppreview.[ch]: new signal "context" which is
|
||
emitted on right-click.
|
||
|
||
* app/gui/brush-select.c
|
||
* app/gui/dialogs-constructors.c
|
||
* app/gui/gradient-select.c
|
||
* app/gui/layers-commands.c
|
||
* app/gui/palette-select.c
|
||
* app/gui/pattern-select.c
|
||
* app/gui/test-commands.c: changed accordingly.
|
||
|
||
2001-07-08 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/drawable.[ch]: removed.
|
||
|
||
* app/core/gimpdrawable.[ch]: added the functions here. Made an
|
||
end to the myth that FG/BG and the undo system (!!!) are not
|
||
really part of the core.
|
||
|
||
* app/disp_callbacks.c
|
||
* app/floating_sel.c
|
||
* app/image_map.c
|
||
* app/qmask.c
|
||
* app/undo.c
|
||
* app/core/gimpchannel.c
|
||
* app/core/gimpdrawable-desaturate.c
|
||
* app/core/gimpdrawable-equalize.c
|
||
* app/core/gimpdrawable-invert.c
|
||
* app/core/gimpdrawable-offset.c
|
||
* app/core/gimpedit.c
|
||
* app/core/gimpimage-duplicate.c
|
||
* app/core/gimpimage-mask.c
|
||
* app/core/gimpimage-new.c
|
||
* app/core/gimpimage.[ch]
|
||
* app/core/gimplayer.c
|
||
* app/core/gimplayermask.c
|
||
* app/gui/channels-commands.c
|
||
* app/gui/gui.c
|
||
* app/gui/layers-commands.c
|
||
* app/tools/gimpairbrushtool.c
|
||
* app/tools/gimpbezierselecttool.c
|
||
* app/tools/gimpblendtool.c
|
||
* app/tools/gimpbrightnesscontrasttool.c
|
||
* app/tools/gimpbucketfilltool.c
|
||
* app/tools/gimpclonetool.c
|
||
* app/tools/gimpcolorbalancetool.c
|
||
* app/tools/gimpconvolvetool.c
|
||
* app/tools/gimpcurvestool.c
|
||
* app/tools/gimphistogramtool.c
|
||
* app/tools/gimphuesaturationtool.c
|
||
* app/tools/gimpinktool.c
|
||
* app/tools/gimpiscissorstool.c
|
||
* app/tools/gimplevelstool.c
|
||
* app/tools/gimppainttool.c
|
||
* app/tools/gimpposterizetool.c
|
||
* app/tools/gimpscaletool.c
|
||
* app/tools/gimpthresholdtool.c
|
||
* app/tools/gimptransformtool.c
|
||
* app/tools/tool_manager.c
|
||
* app/widgets/gimpchannellistitem.c
|
||
* app/widgets/gimpchannellistview.c
|
||
* app/widgets/gimpdrawablelistitem.c
|
||
* app/widgets/gimplayerlistitem.c
|
||
* app/widgets/gimplayerlistview.c
|
||
* app/pdb/channel_cmds.c
|
||
* app/pdb/color_cmds.c
|
||
* app/pdb/drawable_cmds.c
|
||
* app/pdb/edit_cmds.c
|
||
* app/pdb/floating_sel_cmds.c
|
||
* app/pdb/image_cmds.c
|
||
* app/pdb/layer_cmds.c
|
||
* app/pdb/parasite_cmds.c
|
||
* app/pdb/selection_cmds.c
|
||
* app/pdb/text_tool_cmds.c
|
||
* app/pdb/tools_cmds.c
|
||
* tools/pdbgen/pdb.pl
|
||
* tools/pdbgen/pdb/color.pdb
|
||
* tools/pdbgen/pdb/drawable.pdb: changed accordingly. Misc small
|
||
fixes and cleanups.
|
||
|
||
2001-07-07 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/gimage.[ch]: removed.
|
||
|
||
* app/core/gimp.c: s/gimage_new/gimp_image_new/
|
||
|
||
* app/gui/gui.c
|
||
* app/tools/tool_manager.c: added the handlers from gimage.c
|
||
|
||
2001-07-07 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/tools/tool_manager.[ch]: put all tool_manager variables into
|
||
a struct which is attached to a "Gimp". Pass a Gimp* to all
|
||
tool_manager functions.
|
||
|
||
* app/disp_callbacks.c
|
||
* app/gdisplay.c
|
||
* app/gimage.c
|
||
* app/scale.c
|
||
* app/scroll.c
|
||
* app/undo.c
|
||
* app/gui/convert-dialog.c
|
||
* app/gui/edit-commands.c
|
||
* app/gui/tool-options-dialog.c
|
||
* app/gui/tools-commands.c: changed accordingly.
|
||
|
||
* app/tools/gimpbezierselecttool.c
|
||
* app/tools/gimpbrightnesscontrasttool.c
|
||
* app/tools/gimpbycolorselecttool.c
|
||
* app/tools/gimpclonetool.c
|
||
* app/tools/gimpcolorbalancetool.c
|
||
* app/tools/gimpcroptool.c
|
||
* app/tools/gimpcurvestool.c
|
||
* app/tools/gimpeditselectiontool.c
|
||
* app/tools/gimphistogramtool.c
|
||
* app/tools/gimphuesaturationtool.c
|
||
* app/tools/gimplevelstool.c
|
||
* app/tools/gimpposterizetool.c
|
||
* app/tools/gimptexttool.c
|
||
* app/tools/gimpthresholdtool.c
|
||
* app/tools/gimptool.c
|
||
* app/tools/gimptransformtool.c: mostly bad hacks for tool dialogs
|
||
which exist without a real context. Needs some more review.
|
||
|
||
2001-07-07 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/core/Makefile.am
|
||
* app/core/gimpimage-crop.[ch]: new files for gimp_image_crop()
|
||
and gimp_image_crop_auto_shrink() (should share large portions of
|
||
code with gimp_image_resize()).
|
||
|
||
* app/tools/gimpcroptool.[ch]: removed here.
|
||
|
||
* tools/pdbgen/pdb/image.pdb
|
||
* tools/pdbgen/pdb/tools.pdb: gimp_crop --> gimp_image_crop
|
||
|
||
* app/pdb/image_cmds.c
|
||
* app/pdb/internal_procs.c
|
||
* app/pdb/tools_cmds.c
|
||
* libgimp/gimpimage_pdb.[ch]
|
||
* libgimp/gimptools_pdb.[ch]: regenerated.
|
||
|
||
* plug-ins/common/autocrop.c
|
||
* plug-ins/common/gif.c
|
||
* plug-ins/common/guillotine.c
|
||
* plug-ins/common/zealouscrop.c
|
||
* plug-ins/perl/examples/image_tile
|
||
* plug-ins/script-fu/scripts/add-bevel.scm
|
||
* plug-ins/script-fu/scripts/ripply-anim.scm
|
||
* plug-ins/script-fu/scripts/slide.scm: changed accordingly. Some
|
||
cleanups in the plug-ins.
|
||
|
||
2001-07-07 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/context_manager.[ch]: removed.
|
||
|
||
* app/app_procs.c: call tool_mananger instead of context_manager
|
||
functions, pass "the_gimp" to some more functions.
|
||
|
||
* app/drawable.[ch]: pass a GimpContext to drawable_fill().
|
||
|
||
* app/errors.c: behave according to "stack_trace_mode" when using
|
||
the debugging signal handler.
|
||
|
||
* app/gimprc.[ch]: removed the core/ config variables.
|
||
|
||
* app/selection.c: set the selection's state to INVISIBLE in
|
||
selection_pause().
|
||
|
||
* app/core/Makefile.am
|
||
* app/core/gimpcoreconfig.[ch]: new files (the configuration
|
||
variables used by core/).
|
||
|
||
* app/core/gimpcontext.[ch]: removed the global contexts (user,
|
||
default, ...) and their functions. It's no longer possible to pass
|
||
NULL to the context functions to manipulate the current context
|
||
(gimpcontext.c doesn't know the current context any more).
|
||
|
||
* app/core/gimp.[ch]: added them here. The functions are now called
|
||
gimp_[set|get]_*_context(). Added gimp_create_context() which is
|
||
the only function to create contexts now.
|
||
|
||
* app/gui/dialogs.[ch]
|
||
* app/gui/gui.[ch]: pass "gimp" to all functions.
|
||
|
||
* app/tools/tool_manager.[ch]
|
||
* app/tools/tools.[ch]: pass "gimp" to lots of functions. Added
|
||
the "global_tool_context" logic and the global/non-global paint
|
||
options switching from the context_manager. Pass "gimp" to all
|
||
tools' "register" functions.
|
||
|
||
* app/tools/*: changed accordingly.
|
||
|
||
* app/devices.c
|
||
* app/disp_callbacks.c
|
||
* app/file-open.[ch]
|
||
* app/file-save.c
|
||
* app/gdisplay.c
|
||
* app/gimage.c
|
||
* app/libgimp_glue.c
|
||
* app/module_db.c
|
||
* app/nav_window.c
|
||
* app/plug_in.c
|
||
* app/qmask.c
|
||
* app/undo.c
|
||
* app/base/base-config.c
|
||
* app/core/gimpbrushpipe.c
|
||
* app/core/gimpdrawable-offset.c
|
||
* app/core/gimpgradient.c
|
||
* app/core/gimpimage-duplicate.c
|
||
* app/core/gimpimage-mask.c
|
||
* app/core/gimpimage-new.c
|
||
* app/core/gimpimage.c
|
||
* app/core/gimppalette.c
|
||
* app/core/gimptoolinfo.[ch]
|
||
* app/core/gimpundo.c
|
||
* app/gui/brush-select.c
|
||
* app/gui/channels-commands.c
|
||
* app/gui/color-area.c
|
||
* app/gui/dialogs-constructors.c
|
||
* app/gui/file-new-dialog.c
|
||
* app/gui/file-open-dialog.c
|
||
* app/gui/gradient-editor.c
|
||
* app/gui/gradient-select.c
|
||
* app/gui/info-window.c
|
||
* app/gui/layers-commands.c
|
||
* app/gui/menus.c
|
||
* app/gui/palette-editor.c
|
||
* app/gui/palette-import-dialog.c
|
||
* app/gui/palette-select.c
|
||
* app/gui/paths-dialog.c
|
||
* app/gui/pattern-select.c
|
||
* app/gui/preferences-dialog.c
|
||
* app/gui/resize-dialog.c
|
||
* app/gui/test-commands.c
|
||
* app/gui/tool-options-dialog.c
|
||
* app/gui/toolbox.c
|
||
* app/gui/tools-commands.c
|
||
* app/xcf/xcf-load.c
|
||
* app/xcf/xcf-save.c
|
||
* app/widgets/gimpchannellistview.c
|
||
* app/widgets/gimpdnd.c
|
||
* app/widgets/gimpdrawablelistview.[ch]
|
||
* app/widgets/gimpimagedock.c
|
||
* app/widgets/gimplayerlistview.c
|
||
* app/pdb/brushes_cmds.c
|
||
* app/pdb/drawable_cmds.c
|
||
* app/pdb/gradient_select_cmds.c
|
||
* app/pdb/gradients_cmds.c
|
||
* app/pdb/palette_cmds.c
|
||
* app/pdb/patterns_cmds.c
|
||
* app/pdb/procedural_db.c
|
||
* tools/pdbgen/pdb/brushes.pdb
|
||
* tools/pdbgen/pdb/drawable.pdb
|
||
* tools/pdbgen/pdb/gradient_select.pdb
|
||
* tools/pdbgen/pdb/gradients.pdb
|
||
* tools/pdbgen/pdb/palette.pdb
|
||
* tools/pdbgen/pdb/patterns.pdb: changed accordingly: remove usage
|
||
of gimp_context_[get|set]_*(NULL), create contexts with
|
||
gimp_create_context(). Get the user/current context with
|
||
gimp_get_[user|current]_context(). Added/removed access to the
|
||
global "the_gimp" variable in some places. Get the core's config
|
||
variables from "core_config".
|
||
|
||
2001-07-06 Dave Neary <dneary@eircom.net>
|
||
|
||
* app/gimprc.c: Removed some C89 & gcc extention stuff which broke
|
||
the build on some platforms.
|
||
|
||
2001-07-06 Dave Neary <dneary@eircom.net>
|
||
|
||
* po/POTFILES.in: Changed app/image_new.c to
|
||
app/core/gimpimage-new.c to get the build working.
|
||
|
||
2001-07-05 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimage.c: don't add the image to the image container,
|
||
don't call undo_free().
|
||
|
||
* app/core/gimp.[ch]: add new images to gimp->images, optionally
|
||
attach the comment parasite.
|
||
|
||
* app/core/gimpedit.c
|
||
* app/core/gimpimage-duplicate.c
|
||
* app/core/gimpimage-new.c
|
||
* app/gui/file-open-dialog.c
|
||
* app/gui/toolbox.c
|
||
* tools/pdbgen/pdb/image.pdb
|
||
* app/pdb/image_cmds.c
|
||
* app/xcf/xcf-load.c: call gimp_create_image() and/or
|
||
gimp_create_display(), don't attach a comment parasite.
|
||
|
||
* app/core/gimpimage.c: call undo_free() in "destroy".
|
||
|
||
* app/file-open.c
|
||
* app/gui/palette-import-dialog.c
|
||
* app/xcf/xcf-save.c: don't #include "gimage.h"
|
||
|
||
2001-07-05 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/image_new.[ch]: removed...
|
||
|
||
* app/core/Makefile.am
|
||
* app/core/core-types.h
|
||
* app/core/gimpimage-new.[ch]: ...and (partly) added here.
|
||
|
||
* app/core/gimp.[ch]: added gimp_create_image() which will be the
|
||
_only_ place to get new images from soon.
|
||
Added a "create_display_func" function pointer...
|
||
|
||
* app/gui/gui.[ch]: ...which gets initialized here.
|
||
|
||
This way the core can create displays without depending on the
|
||
interface.
|
||
|
||
* app/app_procs.c
|
||
* app/apptypes.h
|
||
* app/core/gimpedit.c
|
||
* app/gui/file-commands.c
|
||
* app/gui/file-new-dialog.[ch]: changed accordingly.
|
||
|
||
2001-07-05 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/core/gimp.[ch]: renamed gimp_initialize() to gimp_restore()
|
||
because it loads all kinds of data. Added gimp_shutdown() to save
|
||
the data. Added the global parasite list.
|
||
|
||
* app/apptypes.h: removed ParasiteList.
|
||
|
||
* app/core/core-types.h: added GimpParasiteList.
|
||
|
||
* app/gimpparasite.[ch]: removed the global parasite list.
|
||
|
||
* app/parasitelist.[ch]: s/ParasiteList/GimpParasiteList/
|
||
s/parasite_list_*/gimp_patasite_list_*/
|
||
|
||
* app/core/gimpdatafactory.c: don't save the data in
|
||
gimp_data_factory_data_free().
|
||
|
||
* app/app_procs.c
|
||
* app/gimprc.c
|
||
* app/undo.c
|
||
* app/core/gimpchannel.c
|
||
* app/core/gimpdrawable.[ch]
|
||
* app/core/gimpimage-duplicate.c
|
||
* app/core/gimpimage.[ch]
|
||
* app/core/gimplayer.c
|
||
* app/pdb/brushes_cmds.c
|
||
* app/pdb/parasite_cmds.c
|
||
* app/widgets/gimpdatafactoryview.c
|
||
* app/xcf/xcf-save.c
|
||
* tools/pdbgen/pdb/brushes.pdb
|
||
* tools/pdbgen/pdb/parasite.pdb: changed accordingly.
|
||
|
||
2001-07-04 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/core/Makefile.am
|
||
* app/core/core-types.h
|
||
* app/core/gimp.[ch]: added an "application object" called Gimp.
|
||
|
||
Currently, it contains the image list, the clipboard, the data
|
||
factories, the procedural hashtable and the tool info list. It's
|
||
the toplevel object of the core object system. Finally, creating a
|
||
Gimp object will return a standalone gimp core engine instance
|
||
with no other global states/variables involved.
|
||
|
||
* app/app_procs.[ch]: allocate a "Gimp" instance called "the_gimp" :)
|
||
Removed stuff which is now done by the "Gimp" object. Merged
|
||
gimp_init() into app_init() because gimp_init() is taken now.
|
||
|
||
* app/context_manager.[ch]: removed stuff done by "Gimp".
|
||
|
||
* app/batch.[ch]
|
||
* app/gimage.[ch]
|
||
* app/xcf/xcf-load.[ch]
|
||
* app/xcf/xcf.[ch]
|
||
* app/core/gimpedit.[ch]
|
||
* app/tools/tool_manager.[ch]: pass around an additional "Gimp"
|
||
argument.
|
||
|
||
* app/pdb/procedural_db.[ch]: pass a "Gimp" pointer as first
|
||
parameter to all internal procedures and to all procedural_db_*
|
||
functions.
|
||
|
||
* app/core/gimpcontext.[ch]
|
||
* app/core/gimpimage.[ch]: added a "Gimp" pointer to the structs.
|
||
|
||
* app/devices.c
|
||
* app/errors.c
|
||
* app/file-open.c
|
||
* app/file-save.c
|
||
* app/gimphelp.c
|
||
* app/gimpunit.c
|
||
* app/image_new.c
|
||
* app/main.c
|
||
* app/nav_window.c
|
||
* app/plug_in.c
|
||
* app/base/base.c
|
||
* app/core/gimpdatafactory.c
|
||
* app/core/gimpimage-duplicate.c
|
||
* app/core/gimpimage-mask.c
|
||
* app/core/gimptoolinfo.[ch]
|
||
* app/gui/brush-select.c
|
||
* app/gui/convert-dialog.c
|
||
* app/gui/dialogs-constructors.c
|
||
* app/gui/edit-commands.c
|
||
* app/gui/file-open-dialog.c
|
||
* app/gui/file-save-dialog.c
|
||
* app/gui/gradient-editor.c
|
||
* app/gui/gradient-select.c
|
||
* app/gui/gui.c
|
||
* app/gui/image-commands.c
|
||
* app/gui/info-window.c
|
||
* app/gui/menus.c
|
||
* app/gui/palette-editor.c
|
||
* app/gui/palette-import-dialog.c
|
||
* app/gui/palette-select.c
|
||
* app/gui/paths-dialog.c
|
||
* app/gui/pattern-select.c
|
||
* app/gui/preferences-dialog.c
|
||
* app/gui/test-commands.c
|
||
* app/gui/toolbox.c
|
||
* app/gui/tools-commands.c
|
||
* app/tools/gimpbezierselecttool.c
|
||
* app/tools/gimpbucketfilltool.c
|
||
* app/tools/gimppainttool.h
|
||
* app/tools/gimptexttool.c
|
||
* app/tools/gimptransformtool.h
|
||
* app/widgets/gimpbufferview.c
|
||
* app/widgets/gimpcontainerview-utils.c
|
||
* app/widgets/gimpcursor.c
|
||
* app/widgets/gimpdnd.c
|
||
* app/widgets/gimpimagedock.c: changed accordingly. Cleaned up
|
||
lots of includes. Many files still access the global "the_gimp"
|
||
variable exported by app_procs.h.
|
||
|
||
* tools/pdbgen/app.pl
|
||
* tools/pdbgen/pdb/brush_select.pdb
|
||
* tools/pdbgen/pdb/brushes.pdb
|
||
* tools/pdbgen/pdb/convert.pdb
|
||
* tools/pdbgen/pdb/edit.pdb
|
||
* tools/pdbgen/pdb/fileops.pdb
|
||
* tools/pdbgen/pdb/gradient_select.pdb
|
||
* tools/pdbgen/pdb/gradients.pdb
|
||
* tools/pdbgen/pdb/image.pdb
|
||
* tools/pdbgen/pdb/palette.pdb
|
||
* tools/pdbgen/pdb/pattern_select.pdb
|
||
* tools/pdbgen/pdb/patterns.pdb
|
||
* tools/pdbgen/pdb/procedural_db.pdb: changed accordingly. Don't
|
||
use "the_gimp" here because all procedures get passed a "Gimp"
|
||
pointer now.
|
||
|
||
* app/pdb/*: regenerated.
|
||
|
||
2001-07-04 Dave Neary <dneary@eircom.net>
|
||
|
||
* po/POTFILESin: Changed to reflect some moved/removed files.
|
||
|
||
2001-07-03 Michael Natterer <mitch@gimp.org>
|
||
|
||
* configure.in: new directory app/xcf/
|
||
|
||
* app/Makefile.am
|
||
* app/global_edit.[ch]
|
||
* app/xcf.[ch]: removed.
|
||
|
||
* app/core/Makefile.am
|
||
* app/core/gimpedit.[ch]: added here...
|
||
|
||
* app/xcf/.cvsignore
|
||
* app/xcf/Makefile.am
|
||
* app/xcf/xcf-load.[ch]
|
||
* app/xcf/xcf-private.h
|
||
* app/xcf/xcf-read.[ch]
|
||
* app/xcf/xcf-save.[ch]
|
||
* app/xcf/xcf-seek.[ch]
|
||
* app/xcf/xcf-write.[ch]
|
||
* app/xcf/xcf.[ch]: ...and here (chopped up).
|
||
|
||
* app/app_procs.c
|
||
* app/disp_callbacks.c
|
||
* app/floating_sel.c
|
||
* app/gui/edit-commands.c
|
||
* app/gui/toolbox.c
|
||
* app/pdb/edit_cmds.c
|
||
* app/widgets/gimpbufferview.c
|
||
* tools/pdbgen/pdb/edit.pdb: changed accordingly.
|
||
|
||
2001-07-03 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/common/xwd.c: applied patch from Peter Kirchgessner
|
||
<peter@kirchgessner.net> that fixes bug #56830.
|
||
|
||
* app/global_edit.c: attach default comment to image created by
|
||
gimp_edit_paste_as_new().
|
||
|
||
Both changes merged from stable branch.
|
||
|
||
2001-07-02 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/global_edit.c: allow a NULL gimage argument for
|
||
gimp_edit_paste_as_new() (don't set resolution and unit).
|
||
|
||
* app/disp_callbacks.[ch]
|
||
* app/interface.c: allow dropping of a GimpBuffer (pastes the
|
||
buffer).
|
||
|
||
* app/gui/toolbox.c: ditto (creates a new image).
|
||
|
||
2001-07-02 Michael Natterer <mitch@gimp.org>
|
||
|
||
* Makefile.am
|
||
* configure.in
|
||
* help/*: removed all help files. They will be distributed as a
|
||
separate package in the future.
|
||
|
||
2001-07-02 Nick Lamb <njl195@zepler.org.uk>
|
||
|
||
* plug-ins/common/png.c: Change PNG defaults (no 1.0 gamma chunk)
|
||
|
||
2001-07-02 Sven Neumann <sven@gimp.org>
|
||
|
||
* gimptool-1.4.in
|
||
* plug-ins/*/Makefile.am
|
||
* plug-ins/common/mkgen.pl: merged fixes from stable branch
|
||
|
||
2001-07-02 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gui/dialogs-commands.[ch]
|
||
* app/gui/menus.c: added dialogs_toggle_auto_cmd_callback() which
|
||
toggles GimpImageDock's "Auto" button.
|
||
|
||
* app/gui/dialogs.c: ref/sink the global dialog factories.
|
||
|
||
* app/widgets/gimpdialogfactory.[ch]: added some comments, some
|
||
cleanups and additional checks. Factored out the "aux-info" stuff
|
||
to separate functions.
|
||
|
||
* app/widgets/gimpdockbook.c: set the state of the "Auto Follow
|
||
Active Image" menu item.
|
||
|
||
* app/widgets/gimpimagedock.[ch]: added a gboolean for
|
||
"show_image_menu" so we don't need to fiddle around with the
|
||
widgets to get this info. Added
|
||
gimp_image_dock_set_auto_follow_active().
|
||
|
||
2001-07-01 Sven Neumann <sven@gimp.org>
|
||
|
||
* acconfig.h: add HAVE_FINITE and HAVE_ISFINITE
|
||
(fix from stable branch)
|
||
|
||
2001-06-29 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/appenums.h: removed GimpFillType.
|
||
|
||
* app/gimprc.c: parse the session-info's new "aux-info" field.
|
||
|
||
* app/global_edit.[ch]: removed the old "Paste Named" dialog and
|
||
prefixed all functions with "gimp_".
|
||
|
||
* app/core/core-types.h: added GimpFillType.
|
||
|
||
* app/core/gimpbrush.[ch]: new signal "spacing_changed".
|
||
|
||
* app/gui/Makefile.am
|
||
* app/gui/tools-commands.[ch]: one more file cut out of commands.[ch].
|
||
|
||
* app/gui/commands.[ch]: removed the tools stuff here.
|
||
|
||
* app/gui/brush-select.[ch]
|
||
* app/gui/dialogs-constructors.c: use the new GimpBrushFactoryView
|
||
(see below).
|
||
|
||
* app/gui/dialogs-commands.[ch]
|
||
* app/gui/menus.[ch]:
|
||
|
||
- Made it 64bit safe again by passing the dialog factory's
|
||
identifiers as GQuarks, not as guints created by GPOINTER_TO_UINT().
|
||
- Added a "gchar *quark_string" field to GimpItemFactoryEntry
|
||
which gets transformed into a GQuark by menus_create_item().
|
||
- Added SEPARATOR() and BRANCH() macros which make the *_entries[]
|
||
arrays more readable.
|
||
- Added a menu item to show/hide GimpImageDock's image menu.
|
||
- Removed file_last_opened_cmd_callback().
|
||
|
||
* app/gui/edit-commands.c: the global_edit functions are "gimp_"
|
||
prefixed now.
|
||
|
||
* app/gui/file-commands.[ch]: added file_last_opened_cmd_callback()
|
||
here.
|
||
|
||
* app/widgets/Makefile.am
|
||
* app/widgets/widgets-types.h
|
||
* app/widgets/gimpbrushfactoryview.[ch]: new widget: a
|
||
GimpDataFactory subclass with a "spacing" scale.
|
||
|
||
* app/widgets/gimpcontainereditor.[ch]:
|
||
|
||
- Connect to the GimpContainerView's "select_item",
|
||
"activate_item" and "context_item" signals here once instead of
|
||
in each subclass and dispatch them via new virtual functions.
|
||
- Added a convenience function which makes DND to the buttons much
|
||
less painful for subclasses.
|
||
|
||
* app/widgets/gimpbufferview.c
|
||
* app/widgets/gimpdatafactoryview.[ch]: changed accordingly.
|
||
|
||
* app/widgets/gimpdialogfactory.[ch]:
|
||
|
||
- Added gimp_dialog_factory_dialog_raise() which can raise
|
||
toplevel dialogs _and_ dockables (and creates them if they are
|
||
not open yet).
|
||
- Keep track of all created dialogs (not only toplevels).
|
||
- Added an "aux_info" field to GimpSessionInfo which is a GList of
|
||
gchar* and is saved in sessionrc.
|
||
- Remember if GimpImageDock's image menu is visible by using an
|
||
aux_info string.
|
||
- The code did not become nicer with all those new constraints. I
|
||
have to add comments before I forget how it works.
|
||
|
||
* app/widgets/gimpdockbook.c: set the state of the "Show Image Menu"
|
||
menu item before popping up the item factory.
|
||
|
||
* app/widgets/gimpimagedock.[ch]: added
|
||
gimp_image_dock_set_show_image_meu().
|
||
|
||
* plug-ins/gdyntext/gdyntext.c
|
||
* plug-ins/perl/examples/fit-text
|
||
* plug-ins/perl/examples/terral_text
|
||
* plug-ins/perl/examples/tex-to-float: register all text rendering
|
||
plug-ins under <Image>/Filters/Text
|
||
|
||
* app/pdb/brush_select_cmds.c
|
||
* app/pdb/drawable_cmds.c
|
||
* app/pdb/edit_cmds.c
|
||
* tools/pdbgen/pdb/brush_select.pdb
|
||
* tools/pdbgen/pdb/edit.pdb
|
||
* tools/pdbgen/enums.pl
|
||
* po/POTFILES.in: changed according to all the stuff above.
|
||
|
||
2001-06-27 Sven Neumann <sven@gimp.org>
|
||
|
||
* README.i18n: merged changes from stable branch.
|
||
|
||
2001-06-26 Sven Neumann <sven@gimp.org>
|
||
|
||
* gimptool.1.in
|
||
* app/pdb/image_cmds.c
|
||
* tools/pdbgen/pdb/image.pdb: ported changes from stable branch.
|
||
|
||
2001-06-26 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/color_transfer.[ch]: removed.
|
||
|
||
* app/tools/Makefile.am
|
||
* app/tools/gimpcolorbalancetool-transfer.[ch]: added.
|
||
|
||
* app/tools/gimpcolorbalancetool.c: changed accordingly.
|
||
|
||
* app/base/Makefile.am
|
||
* app/base/tile-manager-crop.[ch]: formerly known as crop_buffer().
|
||
|
||
* app/tools/gimptexttool.c: changed accordingly.
|
||
|
||
* app/context_manager.[ch]: added the global clipboard and the
|
||
named buffer list here.
|
||
|
||
* app/app_procs.c: don't call color_transfer_init() and don't free
|
||
the buffer stuff (done by the context manager now).
|
||
|
||
* app/errorconsole.c: don't #include "gui/commands.h"
|
||
|
||
* app/global_edit.[ch]: removed lots of stuff which is now done by
|
||
gui/edit-commands.* or the new GimpBuffer object. The "paste
|
||
named" dialog will go away and this file will be moved to core/
|
||
soon.
|
||
|
||
* app/image_new.c: no need to declare the global_buffer extern any
|
||
more.
|
||
|
||
* app/qmask.c: don't #include "global_edit.h"
|
||
|
||
* app/core/Makefile.am
|
||
* app/core/core-types.h
|
||
* app/core/gimpbuffer.[ch]: new object (aka named buffer)
|
||
|
||
* app/core/gimpcontext.[ch]: added a GimpBuffer attribute.
|
||
|
||
* app/core/gimpimage.[ch]: one s/int/gboolean/.
|
||
|
||
* app/core/gimppattern.c: hmm...
|
||
|
||
* app/gui/commands.[ch]: split up in small files:
|
||
|
||
* app/gui/Makefile.am
|
||
* app/gui/edit-commands.[ch]
|
||
* app/gui/file-commands.[ch]
|
||
* app/gui/image-commands.[ch]
|
||
* app/gui/select-commands.[ch]
|
||
* app/gui/view-commands.[ch]: new files.
|
||
|
||
* app/gui/dialogs-constructors.[ch]
|
||
* app/gui/dialogs.c: added the named buffer list & grid.
|
||
|
||
* app/gui/file-new-dialog.[ch]
|
||
* app/gui/menus.c
|
||
* app/gui/palette-editor.c
|
||
* app/gui/test-commands.c: changed accordingly.
|
||
|
||
* app/pdb/edit_cmds.c
|
||
* tools/pdbgen/pdb/edit.pdb: changed for the global_edit stuff.
|
||
|
||
* app/widgets/Makefile.am
|
||
* app/widgets/gimpbufferpreview.[ch]
|
||
* app/widgets/gimpbufferview.[ch]
|
||
* app/widgets/gimpcontainereditor.[ch]: new widgets.
|
||
|
||
* app/widgets/gimpcontainerview-utils.c
|
||
* app/widgets/gimpdatafactoryview.[ch]
|
||
* app/widgets/gimpdnd.[ch]
|
||
* app/widgets/gimpdrawablepreview.c
|
||
* app/widgets/gimplayerlistview.c
|
||
* app/widgets/gimppreview.c
|
||
* app/widgets/widgets-types.h: changed accordingly for the new
|
||
GimpBuffer object and it's views, misc. cleanups.
|
||
|
||
* pixmaps/Makefile.am
|
||
* pixmaps/paste-as-new.xpm
|
||
* pixmaps/paste-into.xpm
|
||
* pixmaps/paste.xpm: new pixmaps (they all look the same... Tigert? ;-)
|
||
|
||
* po/POTFILES.in: added the new files.
|
||
|
||
2001-06-25 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/script-fu/scripts/burn-in-anim.scm: added Burn-In script
|
||
written by Roland Berger <roland@fuchur.leute.server.de>.
|
||
|
||
2001-06-22 Sven Neumann <sven@gimp.org>
|
||
|
||
* libgimpmath/gimpmath.h: do not include math.h conditionally.
|
||
|
||
* plug-ins/Lighting/lighting_ui.c
|
||
* plug-ins/MapObject/mapobject_ui.c: ported fix for bug #50715 from
|
||
stable branch.
|
||
|
||
2001-06-21 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/gdyntext/ChangeLog
|
||
* plug-ins/gdyntext/gdyntext.[ch]: ported changes from stable branch,
|
||
updating GDynText to version 1.5.4.
|
||
|
||
2001-06-21 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/Lighting/lighting_apply.c
|
||
* plug-ins/common/papertile.c
|
||
* plug-ins/common/vinvert.c
|
||
* plug-ins/script-fu/scripts/textured-logo.scm: merged changes from
|
||
stable branch that mark some leftover strings for translation.
|
||
|
||
2001-06-21 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/common/ps.c: applied fix for #51403.
|
||
* plug-ins/flame/flame.c: applied fix for #37761.
|
||
* plug-ins/script-fu/script-fu-console.c: applied fix for #50522.
|
||
|
||
All fixes taken from the stable branch.
|
||
|
||
* app/gui/file-open-dialog: ported fix for #51722 from stable branch.
|
||
|
||
2001-06-20 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gdisplay.c: same gdisplays_update_full() fix as in the
|
||
stable branch. Removed lots of commented out code and comments
|
||
about whether the code should be commented out or not.
|
||
|
||
* app/core/gimpimage-mask.c: tried to fix it here first an ended
|
||
up with a little cleanup.
|
||
|
||
2001-06-20 David Neary <dneary@eircom.net>
|
||
|
||
* configure.in
|
||
* libgimp/gimpmath.h: Imported fix from bug #51822 into 1.3
|
||
branch. Fix is courtesy of <bugzilla-gnome@thewrittenword.com>.
|
||
|
||
2001-06-18 Austin Donnelly <austin@gimp.org>
|
||
|
||
* plug-ins/common/newsprint.c: Fix from
|
||
<warner-gnome.bugzilla@lothar.com> for problem with GREYA
|
||
images: it was using the settings from the RGB colourspace
|
||
due to testing bpp != 1 rather than colour_bpp != 1
|
||
(colour_bpp has alpha taken out of it). Fixes Bug#52981.
|
||
Sven committed the same fix to 1.2 CVS. This also bumps the
|
||
version number to 0.60 to reflect this fixed bug.
|
||
|
||
2001-06-18 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/nav_window.[ch]: major cleanup. After being finished, I
|
||
decided that it needs to be factored out to a widget (see below),
|
||
so like 90% of this file will go away soon.
|
||
|
||
* app/apptypes.h: added opaque NavigationDialog typedef.
|
||
|
||
* app/gdisplay.[ch]: Added gdisplay_selection_visibility() which
|
||
is called from gdisplays_selection_visibility(). Capitalized the
|
||
SelectionControl enum values. Cleaned up the GDisplay struct and
|
||
it's initialisation while i was on it.
|
||
|
||
* app/gimage.c: gimage_size_changed_handler(): removed stuff which
|
||
is now done by GimpImage itself.
|
||
|
||
* app/scale.c
|
||
* app/scroll.c: also update the navigation popup, not only the
|
||
dialog.
|
||
|
||
* app/selection.[ch]: major indentation & cleanup attack. Maybe
|
||
found the "Selection vanishes" bug (the timeout id was assinged to
|
||
a gint, not a _guint_).
|
||
|
||
* app/undo.c: s/gimp_image_size_changed/gimp_viweable_size_changed/
|
||
|
||
* app/core/gimpdrawable.c: invalidate the image's preview from our
|
||
"invalidate_preview" implementation. This means that the image's
|
||
preview is invalidated way too often currently, which cries for
|
||
some general freeze/thaw mechanism on the GimpViewable level.
|
||
(Note that previews are rendered in the idle loop, so this is not
|
||
really a major performance impact, it's just ugly).
|
||
|
||
* app/core/gimpimage.[ch]: removed the "size_changed" signal...
|
||
|
||
* app/core/gimpviewable.[ch]: ...and added it here.
|
||
|
||
* app/core/gimplayer.c: invalidate_preview(): always chain up,
|
||
also if it's a floating selection.
|
||
|
||
* app/gui/info-dialog.[ch]
|
||
* app/gui/info-window.c: minor cleanups.
|
||
|
||
* app/gui/preferences-dialog.c: no need to invalidate the image
|
||
after we have invalidated all it's layers.
|
||
|
||
* app/core/gimpimage-mask.c
|
||
* app/gui/commands.c
|
||
* app/tools/gimpeditselectiontool.c
|
||
* app/tools/gimpinktool.c
|
||
* app/tools/gimpmovetool.c
|
||
* app/tools/gimppainttool.c: capitalized the SelectionCommand enum
|
||
values.
|
||
|
||
* app/widgets/Makefile.am
|
||
* app/widgets/widgets-types.h
|
||
* app/widgets/gimpnavigationpreview.[ch]: new widget.
|
||
|
||
* app/widgets/gimppreview.[ch]: added a non-working
|
||
non-dot-for-dot mode. Added xres/yres params to the
|
||
gimp_preview_calc_size() helper function.
|
||
|
||
Cache the "size" value which was passed to the simple function
|
||
variants (gimp_preview_new() and gimp_preview_set_size()) so we
|
||
can re-calculate the preview's extents on the underlying
|
||
viewable's "size_changed" signal and on gimp_preview_set_viewable().
|
||
|
||
* app/widgets/gimpdrawablepreview.c
|
||
* app/widgets/gimpimagepreview.c: changed accordingly.
|
||
|
||
2001-06-18 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/gfig/gfig.c
|
||
* plug-ins/script-fu/scripts/land.scm: merged fixes from gimp-1-2.
|
||
|
||
2001-06-15 Michael Natterer <mitch@gimp.org>
|
||
|
||
* plug-ins/perl/Gimp/Lib.xs: forgot to s/id/drawable_id/ here.
|
||
|
||
2001-06-15 Austin Donnelly <austin@gimp.org>
|
||
|
||
* app/gdisplay.c: initialise gdisp->cursor_x and gdisp->cursor_y
|
||
to 0 in gdisplay_new() so that we don't get floating point
|
||
exceptions when attempting to translate to screen co-ords in
|
||
gdisplay_update_cursor(). Fixes critical Bug #56237.
|
||
|
||
2001-06-14 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gdisplay.c: fixed a FIXME: set the sensitivity of the
|
||
color tools' menu entries again.
|
||
|
||
* libgimp/gimpcolorselector.h
|
||
* libgimp/gimpdrawable.h
|
||
* libgimp/gimpmenu.h: removed the usage of "id" from the public
|
||
interface because it's a reserved keyword of Objective C.
|
||
|
||
* libgimp/gimpdrawable.c
|
||
* libgimp/gimptile.c
|
||
|
||
* plug-ins/[lotsa plugins].c: changed accordingly.
|
||
|
||
2001-06-14 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/tools/gimpmeasuretool.c: fixed typo, closes bug #56200.
|
||
|
||
2001-06-14 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/disp_callbacks.c
|
||
* app/gdisplay.c
|
||
* app/gui/info-window.[ch]:
|
||
applied a patch from Ralf Engels <ralf-engels@gmx.de> that adds info
|
||
about the cursor position to the Info window. Cleaned up the code a
|
||
little while I was on it and renamed info_window_update_RGB() to
|
||
info_window_update_extended().
|
||
|
||
2001-06-14 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/core/gimpimage.c: fixed typo, closes bug #56193.
|
||
|
||
2001-06-12 Michael Natterer <mitch@gimp.org>
|
||
|
||
* libgimp/gimpdrawable.h: removed one more
|
||
gimp_channel_ops_duplicate #define.
|
||
|
||
* plug-ins/gap/gap_mov_dialog.c
|
||
* plug-ins/gap/gap_mov_exec.c
|
||
* plug-ins/gap/gap_pdb_calls.[ch]: removed a handmade PDB wrapper
|
||
and use gimp_image_duplicate().
|
||
|
||
2001-06-12 Michael Natterer <mitch@gimp.org>
|
||
|
||
* plug-ins/script-fu/scripts/3d-outline.scm
|
||
* plug-ins/script-fu/scripts/add-bevel.scm
|
||
* plug-ins/script-fu/scripts/blend-anim.scm
|
||
* plug-ins/script-fu/scripts/fuzzyborder.scm
|
||
* plug-ins/script-fu/scripts/image-structure.scm
|
||
* plug-ins/script-fu/scripts/old_photo.scm
|
||
* plug-ins/script-fu/scripts/ripply-anim.scm
|
||
* plug-ins/script-fu/scripts/round-corners.scm
|
||
* plug-ins/script-fu/scripts/slide.scm
|
||
* plug-ins/script-fu/scripts/spinning_globe.scm
|
||
* plug-ins/script-fu/scripts/swirltile.scm
|
||
* plug-ins/script-fu/scripts/waves-anim.scm
|
||
* plug-ins/script-fu/scripts/weave.scm: follow API cleanup:
|
||
|
||
s/gimp-channel-ops-duplicate/gimp-image-duplicate/
|
||
s/gimp-channel-ops-offset/gimp-drawable-offset/
|
||
|
||
2001-06-08 Michael Natterer <mitch@gimp.org>
|
||
|
||
* configure.in: don't build devel-docs/pdb/Makefile.am
|
||
|
||
2001-06-07 Michael Natterer <mitch@gimp.org>
|
||
|
||
* configure.in: added zh_TW.Big5 to ALL_LINGUAS. Added the
|
||
STRIP_BEGIN and STRIP_END macros from gtk+.
|
||
|
||
* app/base/makefile.msc: unmodified copy of app/core/makefile.msc
|
||
(just to make "make dist" work).
|
||
|
||
* */Makefile.am: use @STRIP_BEGIN@ and @STRIP_END@ all over the
|
||
place. The Makefiles are a bit uglier now but it makes compiling
|
||
output much more readable.
|
||
|
||
2001-06-06 Adam D. Moss <adam@gimp.org>
|
||
|
||
* tools/pdbgen/pdb/image.pdb: gimp_image_list(),
|
||
gimp_image_get_layers() and gimp_image_get_channels() via
|
||
pdb were eventually crashing due to prepending to an
|
||
uninitialised GList*...
|
||
|
||
2001-06-06 Dave Neary <dneary@eircom.net>
|
||
|
||
* plug-ins/gap/gap_lib.c
|
||
* plug-ins/gap/gap_dbbrowser_utils.[ch]: Made a couple of small
|
||
changes to remove warnings (including string.h, and moving header
|
||
includes from .h file to .c file).
|
||
|
||
2001-06-05 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/base/Makefile.am
|
||
* app/core/Makefile.am
|
||
* app/gui/Makefile.am
|
||
* app/paint-funcs/Makefile.am
|
||
* app/pdb/Makefile.am
|
||
* app/tools/Makefile.am
|
||
* app/widgets/Makefile.am: no need to build .la objects for
|
||
convenience libraries which are never linked into another dynamic
|
||
library. Create simple .a files instead. Reduces compilation time
|
||
of app/ by about 50%.
|
||
|
||
2001-06-05 Dave Neary <dneary@eircom.net>
|
||
|
||
* po/POTFILES.in: Changed one line to satisfy dependencies
|
||
|
||
2001-06-05 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/authors.h: removed.
|
||
|
||
* app/gui/Makefile.am
|
||
* app/gui/authors.h: added.
|
||
|
||
* tools/authorsgen/authorsgen.pl: generate it in the new place.
|
||
|
||
* app/gui/about-dialog.c
|
||
* app/gui/commands.c
|
||
* app/interface.c: don't #include "gimphelp.h"
|
||
|
||
2001-06-05 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/resize.[ch]: removed.
|
||
|
||
* app/gui/Makefile.am
|
||
* app/gui/resize-dialog.[ch]: added.
|
||
|
||
* app/gui/commands.c
|
||
* app/gui/layers-commands.c: changed accordingly.
|
||
|
||
2001-06-05 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/global_edit.c: some s/0/FALSE/
|
||
|
||
* app/resize.[ch]: removed resize_scale_implement() and
|
||
resize_check_layer_scaling(), cleanup.
|
||
|
||
* app/core/gimpimage.[ch]: added gimp_image_check_scaling().
|
||
|
||
* app/gui/commands.c: added image_scale_implement() as static
|
||
function.
|
||
|
||
* app/gui/tool-options-dialog.[ch]: add the tool options widgets
|
||
to the dialog when they are first needed. Removed
|
||
tool_options_dialog_add().
|
||
|
||
* app/tools/tool_manager.c: don't call tool_options_dialog_add().
|
||
|
||
2001-06-03 Dave Neary <dneary@eircom.net>
|
||
|
||
* app/gimprc.[ch]: Made all the global options members of one
|
||
struct, gimprc.
|
||
|
||
* app/app_procs.c
|
||
* app/colormaps.c
|
||
* app/context_manager.c
|
||
* app/devices.c
|
||
* app/disp_callbacks.c
|
||
* app/file-save.c
|
||
* app/gdisplay.c
|
||
* app/gdisplay.h
|
||
* app/gdisplay_ops.c
|
||
* app/gimphelp.c
|
||
* app/image_new.c
|
||
* app/interface.c
|
||
* app/module_db.c
|
||
* app/nav_window.c
|
||
* app/plug_in.c
|
||
* app/resize.c
|
||
* app/scale.c
|
||
* app/selection.c
|
||
* app/undo.c
|
||
* app/undo_history.c
|
||
* app/user_install.c
|
||
* app/xcf.c
|
||
|
||
* app/core/gimpcontext.c
|
||
* app/core/gimpimage.c
|
||
* app/core/gimpundo.c
|
||
|
||
* app/gui/brush-select.c
|
||
* app/gui/commands.c
|
||
* app/gui/file-new-dialog.c
|
||
* app/gui/file-open-dialog.c
|
||
* app/gui/file-save-dialog.c
|
||
* app/gui/gui.c
|
||
* app/gui/layer-select.c
|
||
* app/gui/menus.c
|
||
* app/gui/paths-dialog.c
|
||
* app/gui/preferences-dialog.c
|
||
* app/gui/session.c
|
||
* app/gui/tips-dialog.c
|
||
* app/gui/toolbox.c
|
||
|
||
* app/tools/gimpbucketfilltool.c
|
||
* app/tools/gimpbycolorselecttool.c
|
||
* app/tools/gimpinktool.c
|
||
* app/tools/gimpmagnifytool.c
|
||
* app/tools/gimppainttool.c
|
||
* app/tools/paint_options.c
|
||
* app/tools/selection_options.c
|
||
|
||
* app/widgets/gimpdrawablelistview.c
|
||
|
||
* tools/pdbgen/pdb/gimprc.pdb
|
||
* app/pdb/gimprc_cmds.c: Changed accordingly.
|
||
|
||
2001-06-01 Dave Neary <dneary@eircom.net>
|
||
|
||
* app/tools/gimpbycolorselecttool.c: added a call to
|
||
by_color_select_close_callback() in _tool_destroy() to close
|
||
the dialog on exiting the tool.
|
||
|
||
2001-05-31 Dave Neary <dneary@eircom.net>
|
||
|
||
* app/core/gimpimage.[ch]
|
||
* app/core/gimpimage-mask.c
|
||
* app/tools/gimpbycolorselecttool.c
|
||
* app/undo.c: Added a "mask_changed" signal, to allow
|
||
gimpbycolorselect to update it's dialog properly, and take out a
|
||
silly dependency in gimpimage.
|
||
|
||
One outstanding issue is that now the dialog doesn't close
|
||
automatically when the tool context changes. Working on it :)
|
||
|
||
2001-05-30 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/base/Makefile.am
|
||
* app/core/Makefile.am
|
||
* app/gui/Makefile.am
|
||
* app/paint-funcs/Makefile.am: added makefile.msc to EXTRA_DIST.
|
||
|
||
* app/core/gimpimage.c: don't try to create previews with width or
|
||
height < 1.
|
||
|
||
* app/gui/color-notebook.c: Major (??) dialog repacking. Don't
|
||
show an action_area for the main color selection (it's now about
|
||
half the size of the 1.2 one).
|
||
|
||
* libgimp/gimpcolorselector.h: define some gui size constants
|
||
here.
|
||
|
||
* app/gui/color-select.c
|
||
* modules/colorsel_triangle.c
|
||
* modules/colorsel_water.c: use the constants and removed the
|
||
spacing around the main container.
|
||
|
||
* libgimpwidgets/gimpcolorarea.[ch]: rendering in the idle loop
|
||
fixes a race condition when accessing widget->window during widget
|
||
resizing.
|
||
|
||
* modules/Makefile.am: disabled the "GTK" color notebook page (we
|
||
will put the GtkHSV widget of gtk+ 2.0 here).
|
||
|
||
2001-05-29 Simon Budig <simon@gimp.org>
|
||
|
||
* po/POTFILES.in: Added app/tools/gimpposterizetool.c
|
||
which replaces posterize.c. Is it complete now? :-)
|
||
|
||
2001-05-28 Dave Neary <dneary@eircom.net>
|
||
|
||
* po/POTFILES.in: Changed one filename to (finally) fix
|
||
the build - sorry I missed this yesterday :)
|
||
|
||
2001-05-27 Dave Neary <dneary@eircom.net>
|
||
|
||
* po/POTFILES.in: Removed posterize.c to fix build
|
||
|
||
2001-05-25 Hans Breuer <hans@breuer.org>
|
||
|
||
* app/*/makefile.msc : almost completely autogenerated
|
||
all new makefiles (it simply was too much work to do
|
||
this manually)
|
||
|
||
* app/core/makefile.msc :
|
||
* app/gui/makefile.msc :
|
||
* app/paint-funcs/makefile.msc : new files
|
||
|
||
* app/base/base.c : include <io.h> for unlink
|
||
|
||
* libgimp*/makefile.msc :
|
||
* libgimp*/*.def : adapted or regenerated
|
||
|
||
* libgimp/gimpcolorselctor.h : include gmodule.h to avoid
|
||
different declarations in different context.
|
||
|
||
* libgimp/proceduraldb.c : string.h for memcmp
|
||
|
||
* libgimpwidgets/libgimp-glue.c : include gimpbasetypes.h before
|
||
gimpunits.h
|
||
|
||
* plug-ins/common/animoptimize.c : added nops after
|
||
labels. At least the msvc compiler doesn't compile it otherwise
|
||
|
||
* plug-ins/twain/twain.c : added main() to allow to build
|
||
as console app
|
||
|
||
2001-05-25 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/base/pixel-processor.c: fixing a typo fixes ENABLE_MP.
|
||
|
||
* app/core/gimpdrawable-histogram.c
|
||
* app/core/gimpimage-colorhash.c
|
||
* app/core/gimptoolinfo.c: fixed some #includes.
|
||
|
||
* libgimpwidgets/gimpfileselection.[ch]
|
||
* libgimpwidgets/gimpwidgetstypes.h: moved the opaque typedef to
|
||
gimpwidgetstypes.h
|
||
|
||
* po/POTFILES.in: reflect app/'s state again.
|
||
|
||
2001-05-25 Michael Natterer <mitch@gimp.org>
|
||
|
||
* configure.in: new directory devel-docs/libgimpbase/
|
||
|
||
2001-05-25 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/scan_convert.[ch]: removed.
|
||
|
||
* app/core/Makefile.am
|
||
* app/core/gimpscanconvert.[ch]: added. Changed all function names
|
||
and use GimpVector2 instead of ScanConvertPoint.
|
||
|
||
* app/base/base-types.h: removed ScanConvertPoint (didn't belong
|
||
here anyway).
|
||
|
||
* app/pdb/tools_cmds.c
|
||
* app/tools/gimpfreeselecttool.[ch]
|
||
* app/tools/gimpiscissorstool.c
|
||
* tools/pdbgen/pdb/tools.pdb: changed accordingly.
|
||
|
||
2001-05-25 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimprc.[ch]: removed "num_processors".
|
||
|
||
* app/base/base-config.[ch]: and added it here.
|
||
|
||
* app/base/gimphistogram.c
|
||
* app/base/pixel-processor.c
|
||
* app/gui/preferences-dialog.c: changed accordingly.
|
||
|
||
2001-05-25 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/gimpui.[ch]: removed.
|
||
|
||
* app/tools/paint_options.[ch]: removed paint_mode_menu_new().
|
||
|
||
* app/widgets/Makefile.am
|
||
* app/widgets/gimpwidgets-constructors.[ch]
|
||
* app/widgets/gimpwidgets-utils.[ch]: added here.
|
||
|
||
* app/disp_callbacks.c
|
||
* app/errors.c
|
||
* app/gimphelp.c
|
||
* app/interface.c
|
||
* app/gui/brush-select.c
|
||
* app/gui/channels-commands.c
|
||
* app/gui/commands.c
|
||
* app/gui/file-dialog-utils.c
|
||
* app/gui/file-open-dialog.c
|
||
* app/gui/file-save-dialog.c
|
||
* app/gui/layers-commands.c
|
||
* app/gui/tool-options-dialog.c
|
||
* app/tools/gimpbrightnesscontrasttool.c
|
||
* app/tools/gimpbycolorselecttool.c
|
||
* app/tools/gimpclonetool.c
|
||
* app/tools/gimpcolorbalancetool.c
|
||
* app/tools/gimpcolorpickertool.c
|
||
* app/tools/gimpcurvestool.c
|
||
* app/tools/gimphistogramtool.c
|
||
* app/tools/gimphuesaturationtool.c
|
||
* app/tools/gimplevelstool.c
|
||
* app/tools/gimpposterizetool.c
|
||
* app/tools/gimpsmudgetool.c
|
||
* app/tools/gimptexttool.c
|
||
* app/tools/gimpthresholdtool.c
|
||
* app/tools/gimptransformtool.c
|
||
* app/tools/tool_manager.c
|
||
* app/widgets/gimplayerlistview.c: changed accordingly.
|
||
|
||
2001-05-25 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/tools/Makefile.am
|
||
* app/tools/tool_options_dialog.[ch]: removed.
|
||
* app/tools/tools.h: new file
|
||
|
||
* app/gui/Makefile.am
|
||
* app/gui/tool-options-dialog.[ch]: added.
|
||
|
||
* app/tools/tools.c: renamed register_tools() to tools_init(), new
|
||
function tools_exit().
|
||
|
||
* app/app_procs.c
|
||
* app/context_manager.c
|
||
* app/tools/tool_manager.c
|
||
* app/gui/dialogs-constructors.c
|
||
* app/gui/gui.c: changed accordingly.
|
||
|
||
2001-05-25 Michael Natterer <mitch@gimp.org>
|
||
|
||
All tools are back :)
|
||
|
||
* app/tools/Makefile.am
|
||
* app/tools/brightness_contrast.[ch]
|
||
* app/tools/color_balance.[ch]
|
||
* app/tools/curves.[ch]
|
||
* app/tools/histogram_tool.[ch]
|
||
* app/tools/hue_saturation.[ch]
|
||
* app/tools/levels.[ch]
|
||
* app/tools/posterize.[ch]
|
||
* app/tools/threshold.[ch]: removed...
|
||
|
||
* app/tools/gimpbrightnesscontrasttool.[ch]
|
||
* app/tools/gimpcolorbalancetool.[ch]
|
||
* app/tools/gimpcurvestool.[ch]
|
||
* app/tools/gimphistogramtool.[ch]
|
||
* app/tools/gimphuesaturationtool.[ch]
|
||
* app/tools/gimplevelstool.[ch]
|
||
* app/tools/gimpposterizetool.[ch]
|
||
* app/tools/gimpthresholdtool.[ch]: ...and ported to the new tool
|
||
system. Yes, the toolbox looks strange right now.
|
||
|
||
* app/tools/gimpimagemaptool.[ch]: base class for all image_map
|
||
tools. Does nothing at all right now.
|
||
|
||
* app/tools/gimpbucketfilltool.h: removed _new() function
|
||
declaration.
|
||
|
||
* app/tools/gimptool.c: removed obsolete stuff and STUB()s.
|
||
|
||
* app/tools/tools.c: register the new tools.
|
||
|
||
* app/menus.c: removed the #if 0 around the code which reorders
|
||
the color tool menu entries.
|
||
|
||
* app/app_procs.c
|
||
* tools/pdbgen/Makefile.am
|
||
* tools/pdbgen/enums.pl
|
||
* tools/pdbgen/pdb/color.pdb
|
||
* app/pdb/color_cmds.c
|
||
* po/POTFILES.in: changed accordingly.
|
||
|
||
2001-05-24 Michael Natterer <mitch@gimp.org>
|
||
|
||
* config.guess
|
||
* config.sub: new versions from CVS (at least that's what my
|
||
debian package says...)
|
||
|
||
* app/Makefile.am
|
||
* app/gimppreviewcache.[ch]: removed.
|
||
|
||
* app/core/Makefile.am
|
||
* app/core/gimppreviewcache.c: added.
|
||
|
||
* app/core/gimpdrawable.c: reordered #includes
|
||
|
||
* app/apptypes.h: make ImageMap a proper opaque typedef, not
|
||
simply a gpointer.
|
||
|
||
* app/image_map.[ch]: changed accordingly. cleanup.
|
||
|
||
* app/tools/color_balance.h
|
||
* app/tools/curves.h
|
||
* app/tools/histogram_tool.h
|
||
* app/tools/hue_saturation.h
|
||
* app/tools/threshold.h: changed here too.
|
||
|
||
* app/tools/gimptool.c: removed old by_color_select stuff.
|
||
|
||
* libgimpbase/gimpbasetypes.h: /*< skip >*/ GIMP_UNIT_PERCENT as
|
||
it's a UI convenience thing and no unit.
|
||
|
||
* plug-ins/script-fu/script-fu-constants.c
|
||
* tools/pdbgen/enums.pl: regenerated.
|
||
|
||
* libgimpwidgets/gimpbutton.c: maybe this change makes GimpButton
|
||
behave even more careful when changing GtkButton's private stuff.
|
||
|
||
2001-05-23 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimphistogram.[ch]
|
||
* app/lut_funcs.[ch]: removed.
|
||
|
||
* app/base/gimphistogram.[ch]
|
||
* app/base/lut-funcs.[ch]
|
||
* app/core/gimpdrawable-histogram.[ch]: added, cleanup.
|
||
|
||
* app/Makefile.am
|
||
* app/appenums.h
|
||
* app/apptypes.h
|
||
* app/base/Makefile.am
|
||
* app/base/base-types.h
|
||
* app/core/Makefile.am
|
||
* app/core/gimpchannel.c
|
||
* app/core/gimpdrawable-equalize.c
|
||
* app/core/gimpdrawable-invert.c
|
||
* app/pdb/color_cmds.c
|
||
* app/widgets/gimphistogramview.c
|
||
* tools/pdbgen/Makefile.am
|
||
* tools/pdbgen/enums.pl
|
||
* tools/pdbgen/pdb/color.pdb: changed accordingly.
|
||
|
||
2001-05-22 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/resolution_calibrate.[ch]: removed
|
||
|
||
* app/gui/Makefile.am
|
||
* app/gui/resolution-calibrate-dialog.[ch]: added
|
||
|
||
* app/user_install.c
|
||
* app/gui/preferences-dialog.c
|
||
* po/POTFILES.in: changed accordingly.
|
||
|
||
* app/core/gimplayer.c: irrelevant doc reformating.
|
||
|
||
2001-05-22 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/module_db.c: ported bugfix for #55050 from stable branch.
|
||
|
||
2001-05-22 Michael Natterer <mitch@gimp.org>
|
||
|
||
* libgimp/.cvsignore
|
||
* libgimp/Makefile.am
|
||
* libgimp/gimp.h
|
||
* libgimp/gimpfeatures.h.in: removed gimpfeatures.h
|
||
|
||
* libgimpbase/.cvsignore
|
||
* libgimpbase/Makefile.am
|
||
* libgimpbase/gimpbase.h
|
||
* libgimpbase/gimpbasetypes.h
|
||
* libgimpbase/gimpversion.h.in: and added it as gimpversion.h
|
||
|
||
* configure.in: changed accordingly.
|
||
|
||
* app/app_procs.c
|
||
* app/main.c
|
||
* app/gui/about-dialog.c
|
||
* app/gui/splash.c
|
||
* app/pdb/misc_cmds.c
|
||
* tools/pdbgen/pdb/misc.pdb: fixed includes.
|
||
|
||
* plug-ins/bmp/bmpread.c
|
||
* plug-ins/bmp/bmpwrite.c
|
||
* plug-ins/common/gif.c
|
||
* plug-ins/common/gifload.c
|
||
* plug-ins/common/jpeg.c
|
||
* plug-ins/common/newsprint.c
|
||
* plug-ins/common/ps.c
|
||
* plug-ins/common/tiff.c
|
||
* plug-ins/gdyntext/gdyntextcompat.h
|
||
* plug-ins/gimpressionist/gimpressionist.c
|
||
* plug-ins/perl/Gimp.xs
|
||
* plug-ins/perl/Gimp/Lib.xs
|
||
* plug-ins/pygimp/gimpmodule.c
|
||
* tools/gimp-remote.c: removed all #ifdef GIMP_HAVE_BLAH
|
||
conditionals as they are broken anyway since we changed all
|
||
plug-ins with perl scripts shortly before 1.2. Also, refering to
|
||
intermediate unstable releases is evil.
|
||
|
||
2001-05-21 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/app_procs.c
|
||
* app/datafiles.c
|
||
* app/devices.c
|
||
* app/docindex.c
|
||
* app/gdisplay_color.c
|
||
* app/gdisplay_color_ui.c
|
||
* app/gimphelp.c
|
||
* app/main.c
|
||
* app/module_db.c
|
||
* app/plug_in.c
|
||
* app/resize.c
|
||
* app/resolution_calibrate.c
|
||
* app/undo_history.c
|
||
* app/user_install.c
|
||
* app/core/gimpbrushpipe.c
|
||
* app/core/gimpdata.c
|
||
* app/core/gimpgradient.c
|
||
* app/core/gimppalette.c
|
||
* app/gui/about-dialog.c
|
||
* app/gui/file-new-dialog.c
|
||
* app/gui/gradient-editor.c
|
||
* app/gui/layers-commands.c
|
||
* app/gui/menus.c
|
||
* app/gui/palette-editor.c
|
||
* app/gui/session.c
|
||
* app/gui/splash.c
|
||
* app/gui/tips-dialog.c
|
||
* app/pdb/image_cmds.c
|
||
* app/pdb/text_tool_cmds.c
|
||
* app/tools/curves.c
|
||
* app/tools/gimptexttool.c
|
||
* app/tools/levels.c
|
||
* app/widgets/gimpdnd.c
|
||
* app/widgets/gimppreview.c
|
||
* libgimp/gimpcolordisplay.h
|
||
* libgimpbase/gimpbase.h
|
||
* libgimpwidgets/gimpcolorarea.c
|
||
* libgimpwidgets/libgimp-glue.c
|
||
* plug-ins/common/gih.c
|
||
* plug-ins/common/psp.c
|
||
* tools/pdbgen/pdb/image.pdb
|
||
* tools/pdbgen/pdb/text_tool.pdb: last checkin didn't get all
|
||
#include "libgimp/i_dont_exist_any_more.h". This one should make
|
||
it compile again without old crap hanging around in <prefix>/include.
|
||
|
||
2001-05-21 Michael Natterer <mitch@gimp.org>
|
||
|
||
* libgimp/gimp.def: removed removed symbols :)
|
||
|
||
* libgimpbase/gimpbase.def
|
||
* libgimpbase/makefile.mingw.in
|
||
* libgimpbase/makefile.msc: added because they are in EXTRA_DIST.
|
||
Will definitely not work before a friendly visit by Tor or Hans.
|
||
|
||
2001-05-21 Michael Natterer <mitch@gimp.org>
|
||
|
||
* Makefile.am
|
||
* configure.in
|
||
* gimptool-1.4.in: added new directory libgimpbase/
|
||
|
||
* app/Makefile.am: link against the new lib.
|
||
|
||
* app/appenums.h: removed the PDB enums which are in
|
||
libgimpbase/gimpbasetypes.h now. They are all "Gimp" prefixed.
|
||
|
||
* app/apptypes.h: #include "libgimpbase/gimpbasetypes.h"
|
||
|
||
* app/[lots]
|
||
* app/core/[of]
|
||
* app/gui/[files]
|
||
* app/tools/: changed includes and all PDB types.
|
||
|
||
* app/pdb/*: regenerated.
|
||
|
||
* libgimp/Makefile.am: don't build libgimpi.a uglyness any more.
|
||
|
||
* libgimp/gimpenv.[ch]
|
||
* libgimp/gimplimits.[hh]
|
||
* libgimp/gimpparasite.[ch]
|
||
* libgimp/gimpparasiteio.[ch]
|
||
* libgimp/gimpprotocol.[ch]
|
||
* libgimp/gimpsignal.[ch]
|
||
* libgimp/gimpunit.h
|
||
* libgimp/gimputils.[ch]
|
||
* libgimp/gimpwire.[ch]: removed...
|
||
|
||
* libgimpbase/*: ...and added here as new library.
|
||
|
||
* libgimp/gimp.[ch]
|
||
* libgimp/gimpdrawable.[ch]
|
||
* libgimp/gimpenums.h
|
||
* libgimp/gimpimage.[ch]
|
||
* libgimp/gimptile.c
|
||
* libgimp/gimptypes.h
|
||
* libgimp/gimpunit.c: changed accordingly. Added the
|
||
gimp_*_add_new_parasite to gimp.[ch], gimpdrawable.[ch] and
|
||
gimpimage.[ch].
|
||
|
||
* libgimpwidgets/gimppatheditor.c
|
||
* libgimpwidgets/gimpquerybox.c
|
||
* libgimpwidgets/gimpsizeentry.c
|
||
* libgimpwidgets/gimpunitmenu.c
|
||
* libgimpwidgets/gimpwidgets.c
|
||
* libgimpwidgets/gimpwidgetstypes.h: changed includes accordingly.
|
||
|
||
* plug-ins/*/Makefile.am
|
||
* plug-ins/common/mkgen.pl: link against libgimpbase.
|
||
|
||
* tools/pdbgen/Makefile.am: scan libgimpbase/gimpbasetypes.h, so
|
||
the enums are known to pdbgen...
|
||
|
||
* tools/pdbgen/enumcode.pl: ...but don't write them out to
|
||
libgimp/gimpenums.h
|
||
|
||
* tools/pdbgen/app.pl: include libgimp/gimpbase.h in all *_cmds.c
|
||
files. Added GIMP_ to the type names ganerated in app/.
|
||
|
||
* tools/pdbgen/enums.pl: regenerated.
|
||
|
||
* tools/pdbgen/pdb.pl
|
||
* tools/pdbgen/pdb/fileops.pdb
|
||
* tools/pdbgen/pdb/procedural_db.pdb
|
||
* tools/pdbgen/pdb/unit.pdb: changed includes.
|
||
|
||
Mon May 21 04:08:29 CEST 2001 Marc Lehmann <pcg@goof.com>
|
||
|
||
* autogen.sh: allow for automake 1.4-p1 and similar version numbers.
|
||
|
||
2001-05-20 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/base/Makefile.am
|
||
* app/base/base.[ch]: new files for base_init() and base_exit()
|
||
which initialize/shutdown the paint_funcs and the tile_cache.
|
||
|
||
* app/app_procs.c: removed the stuff here.
|
||
|
||
* app/widgets/gimpchannellistitem.c: commented out unused code.
|
||
|
||
2001-05-20 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* plug-ins/script-fu/Makefile.am: put the regex and MMX sources to
|
||
EXTRA_DIST so they get distributed unconditionally.
|
||
|
||
* tools/pdbgen/pdb/layer.pdb: re-enabled the layer_mask procs but
|
||
let them use accessors (which don't exist)...
|
||
|
||
* app/pdb/pdb_glue.h: ... #define the accessors as macros here.
|
||
|
||
Yes, this is ugly, but I simply don't fully understand pdbgen
|
||
yoshcode.
|
||
|
||
* app/pdb/internal_procs.c
|
||
* app/pdb/layer_cmds.c
|
||
* libgimp/gimplayer_pdb.[ch]: regenerated with the layer_mask
|
||
accessors.
|
||
|
||
* app/tools/Makefile.am: add the files which are not built to
|
||
EXTRA_DIST.
|
||
|
||
* pixmaps/Makefile.am
|
||
* pixmaps/channel.xbm
|
||
* pixmaps/eye.xbm
|
||
* pixmaps/layer.xbm
|
||
* pixmaps/linked.xbm
|
||
* pixmaps/mask.xbm: removed.
|
||
|
||
* plug-ins/Makefile.am: build XJT again because the layer_mask
|
||
stuff is back. Perl also seems to build again.
|
||
|
||
* plug-ins/common/aa.c: explicit casting fixes some warnings.
|
||
|
||
* plug-ins/script-fu/interp_regex.c: #include "config.h".
|
||
|
||
2001-05-19 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/main.c: s/USE_GCC_INTEL_MMX/HAVE_ASM_MMX/
|
||
|
||
* app/path_curves.c: fixed some warnings and changed code so it
|
||
does not try to draw unconfigured points.
|
||
|
||
* app/base/temp-buf.[ch]: added a warning not to use the data field
|
||
from the TempBuf struct directly.
|
||
|
||
2001-05-18 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gui/menus.c: use the correct callback for opening L&C.
|
||
|
||
* app/widgets/gimpdock.c: set the window title, the WM-name/class
|
||
and the icon.
|
||
|
||
2001-05-16 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/general.[ch]: removed search_in_path() and the unused
|
||
xstrsep().
|
||
|
||
* app/plug_in.c: added plug_in_search_in_path(), don't include
|
||
"general.h".
|
||
|
||
* app/gimprc.c
|
||
* app/image_render.c
|
||
* app/gui/convert-dialog.c
|
||
* app/gui/palette-editor.c
|
||
* app/gui/paths-dialog.c
|
||
* app/pdb/paths_cmds.c
|
||
* app/tools/gimpairbrushtool.c
|
||
* app/tools/gimpbezierselecttool.c
|
||
* app/tools/gimpblendtool.c
|
||
* app/tools/gimpbucketfilltool.c
|
||
* app/tools/gimpclonetool.c
|
||
* app/tools/gimpconvolvetool.c
|
||
* app/tools/gimpdodgeburntool.c
|
||
* app/tools/gimperasertool.c
|
||
* app/tools/gimpfliptool.c
|
||
* app/tools/gimppaintbrushtool.c
|
||
* app/tools/gimppainttool.c
|
||
* app/tools/gimppenciltool.c
|
||
* app/tools/gimpperspectivetool.c
|
||
* app/tools/gimprotatetool.c
|
||
* app/tools/gimpscaletool.c
|
||
* app/tools/gimpsheartool.c
|
||
* app/tools/gimpsmudgetool.c
|
||
* app/tools/gimptexttool.c
|
||
* tools/pdbgen/pdb/paths.pdb: removed useless includes.
|
||
|
||
2001-05-15 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimpcontextpreview.[ch]: removed (was not used).
|
||
|
||
* app/apptypes.h: removed the Guide typedef.
|
||
|
||
* app/core/core-types.h: added it here as GimpGuide (everything in
|
||
core/ must be "Gimp"-prefixed).
|
||
|
||
* app/gimage.[ch]: removed the global "next_guide_id" variable,
|
||
don't destroy the guides in the "destroy" handler.
|
||
|
||
* app/core/gimpimage.[ch]: destroy them in destroy().
|
||
|
||
* app/xcf.c: use GimpImage accessors to add the guides, so we
|
||
don't need "next_guide_id".
|
||
|
||
* app/gdisplay.[ch]
|
||
* app/undo.c
|
||
* app/core/gimpimage-duplicate.c
|
||
* app/tools/gimpcroptool.c
|
||
* app/tools/gimpmeasuretool.c
|
||
* app/tools/gimpmovetool.[ch]
|
||
* app/pdb/guides_cmds.c
|
||
* tools/pdbgen/pdb/guides.pdb: s/Guide/GimpGuide/, cleanup.
|
||
|
||
2001-05-15 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/fsdither.h: removed...
|
||
|
||
* app/core/Makefile.am
|
||
* app/core/gimpimage-convert-fsdither.h: ...and added here.
|
||
|
||
* app/core/gimpimage-convert.c: changed accordingly.
|
||
|
||
2001-05-15 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimprc.c: register all parse functions in a hash table
|
||
instead of a static array. This way, with some additional ugly
|
||
hacking, we get the addresses of the variables in
|
||
base/base-config.c registered. The whole config stuff has to be
|
||
done properly at some point.
|
||
|
||
2001-05-15 Michael Natterer <mitch@gimp.org>
|
||
|
||
* configure.in: new directory app/base/
|
||
|
||
* app/Makefile.am
|
||
* app/boundary.[ch]
|
||
* app/brush_scale.[ch]
|
||
* app/gimpchecks.h
|
||
* app/gimplut.[ch]
|
||
* app/pixel_processor.[ch]
|
||
* app/pixel_region.[ch]
|
||
* app/pixel_surround.[ch]
|
||
* app/temp_buf.[ch]
|
||
* app/tile.[ch]
|
||
* app/tile_cache.[ch]
|
||
* app/tile_manager.[ch]
|
||
* app/tile_manager_pvt.h
|
||
* app/tile_pvt.h
|
||
* app/tile_swap.[ch]: moved to base/
|
||
|
||
* app/base/Makefile.am
|
||
* app/base/base-types.h
|
||
* app/base/*: new directory for the sub-object pixel maniplation
|
||
and storage stuff. Does not include Gtk+ or anything outside
|
||
base/. Did some cleanup in all files.
|
||
|
||
* app/appenums.h
|
||
* app/apptypes.h
|
||
* app/core/gimpimage.h: removed types which are now in
|
||
base/base-types.h.
|
||
|
||
* app/base/base-config.[ch]
|
||
* app/gimprc.[ch]: put the config variables for base/ to their own
|
||
file so base/ doesn not have to include gimprc.h (does not yet
|
||
work, i.e. the variables are un-configurable right now)
|
||
|
||
* app/main.c: set a log handler for "Gimp-Base".
|
||
|
||
* app/paint-funcs/Makefile.am
|
||
* app/paint-funcs/paint-funcs.[ch]: removed the color hash which
|
||
maps RGB to color indices because it's a totally standalone system
|
||
which has nothing to do with the paint-funcs and introduced a
|
||
GimpImage dependency.
|
||
|
||
paint-funcs/ should be considered on the same sub-object
|
||
(glib-only) level as base/, only in a different directory.
|
||
|
||
* app/core/Makefile.am
|
||
* app/core/gimpimage-colorhash.[ch]: put the color hash here.
|
||
|
||
* app/gimage.c: don't invalidate the color hash here...
|
||
|
||
* app/core/gimpimage.c: ... but in the colormap_changed() default
|
||
inplementation. Initialize the hash in class_init().
|
||
|
||
* tools/pdbgen/Makefile.am: scan app/base/base-types.h for enums.
|
||
|
||
* tools/pdbgen/enums.pl: regenerated.
|
||
|
||
* app/[lots]
|
||
* app/core/[of]
|
||
* app/gui/[files]
|
||
* app/pdb/[all]
|
||
* app/tools/[over]
|
||
* app/widgets/[the]
|
||
* tools/pdbgen/pdb/[place]: changed #includes accordingly. And use
|
||
base_config->value instead of the stuff from gimprc.h.
|
||
|
||
2001-05-14 Michael Natterer <mitch@gimp.org>
|
||
|
||
* README.patch_xinput_airbrush
|
||
* patch_xinput_airbrush: removed because GTK+-2.0 will manage the
|
||
number of valuators dynamically.
|
||
|
||
* app/Makefile.am: some more thinking about subdirectories.
|
||
|
||
* app/boundary.c
|
||
* app/pixel_processor.c
|
||
* app/pixel_region.c: removed #include's, code cleanup.
|
||
|
||
* libgimpwidgets/Makefile.am: install gimpbutton.h
|
||
|
||
* devel-docs/libgimp/tmpl/gimpadaptivesupersample.sgml
|
||
* devel-docs/libgimp/tmpl/gimpbilinear.sgml: removed ...
|
||
|
||
* devel-docs/libgimpcolor/tmpl/gimpadaptivesupersample.sgml
|
||
* devel-docs/libgimpcolor/tmpl/gimpbilinear.sgml: ... and added here.
|
||
|
||
* devel-docs/libgimp/libgimp-decl.txt
|
||
* devel-docs/libgimp/libgimp-sections.txt
|
||
* devel-docs/libgimp/libgimp.hierarchy
|
||
* devel-docs/libgimp/tmpl/gimpenums.sgml
|
||
* devel-docs/libgimpcolor/libgimpcolor-decl.txt
|
||
* devel-docs/libgimpcolor/libgimpcolor-docs.sgml
|
||
* devel-docs/libgimpcolor/libgimpcolor-sections.txt
|
||
* devel-docs/libgimpcolor/libgimpcolor.hierarchy
|
||
* devel-docs/libgimpcolor/tmpl/gimpcolortypes.sgml: regenerated.
|
||
|
||
2001-05-14 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* libgimp/Makefile.am: don't reference header files which don't exist
|
||
any longer
|
||
|
||
2001-05-14 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/ops_buttons.[ch]: use GimpButton and connect to extended_clicked.
|
||
|
||
* app/docindex.c
|
||
* app/gui/paths-dialog.c: changed accordingly.
|
||
|
||
2001-05-14 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/pixmaps2.h: removed this file ...
|
||
|
||
* app/tools/Makefile.am
|
||
* app/tools/icons.h: ... and readded it here with some changes.
|
||
|
||
* app/tools/*.c: include the new icons.h file
|
||
|
||
* app/pdb/procedural_db.[ch]: declare name as const
|
||
|
||
2001-05-13 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/cursorutil.[ch]: removed. Stuff now lives in app_procs.[ch]
|
||
and in widgets/gimpcursor.[ch]
|
||
|
||
* app/appenv.h: added the "gimp_busy" boolean.
|
||
|
||
* app/app_procs.[ch]: added the "busy" stuff here.
|
||
|
||
* app/gui/gui.[ch]: "busy" stuff for the gui.
|
||
|
||
* app/widgets/Makefile.am
|
||
* app/widgets/gimpcursor.[ch]: exports only one function:
|
||
gimp_cursor_new() which returns a GdkCursor which has to be
|
||
destroyed.
|
||
|
||
* app/apptypes.h
|
||
* app/appenums.h: removed the cursor types.
|
||
* app/widgets/widgets-types.h: added here.
|
||
|
||
* app/tools/gimpeditselectiontool.[ch]: added
|
||
gtkutil_compress_motion() here (will go to some utils file in
|
||
widgets/).
|
||
|
||
* app/tools/tools-types.h: #include "widgets/widgets-types.h"
|
||
|
||
* app/dialog_handler.c
|
||
* app/disp_callbacks.c
|
||
* app/gdisplay.[ch]
|
||
* app/nav_window.c
|
||
* app/scroll.c
|
||
* app/xcf.c
|
||
* app/core/gimpimage-convert.c
|
||
* app/core/gimpimage-duplicate.c
|
||
* app/core/gimpimage.c
|
||
* app/gui/file-open-dialog.c
|
||
* app/tools/gimpblendtool.c
|
||
* app/tools/gimpbucketfilltool.c
|
||
* app/tools/gimpcroptool.c
|
||
* app/tools/gimpfuzzyselecttool.c
|
||
* app/tools/gimptransformtool.c
|
||
* tools/pdbgen/pdb/image.pdb
|
||
* app/pdb/image_cmds.c: use the new cursor and "busy" functions.
|
||
|
||
* app/gdisplay.h
|
||
* app/core/gimpbrush.c: added some ugly cross-includes.
|
||
|
||
* app/context_manager.c
|
||
* app/gdisplay_ops.c
|
||
* app/gimprc.c
|
||
* app/core/gimpdrawable-offset.c
|
||
* app/gui/file-save-dialog.c
|
||
* app/gui/gradient-editor.c
|
||
* app/gui/preferences-dialog.c
|
||
* app/tools/gimpbezierselecttool.c
|
||
* app/tools/gimpbycolorselecttool.c
|
||
* app/tools/gimpclonetool.c
|
||
* app/tools/gimpcolorpickertool.c
|
||
* app/tools/gimperasertool.c
|
||
* app/tools/gimpfliptool.c
|
||
* app/tools/gimpinktool.c
|
||
* app/tools/gimpiscissorstool.c
|
||
* app/tools/gimpmagnifytool.c
|
||
* app/tools/gimpmeasuretool.c
|
||
* app/tools/gimpmovetool.c
|
||
* app/tools/gimppainttool.c
|
||
* app/tools/gimprectselecttool.c
|
||
* app/tools/gimprotatetool.c
|
||
* app/tools/gimpselectiontool.c: removed inclusion of "cursorutil.h"
|
||
|
||
2001-05-13 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/appenums.h
|
||
* app/core/core-types.h
|
||
* app/tools/tools-types.h: moved some more types to core-types.h
|
||
and tools-types.h. Removed AUXILLARY_CHANNEL from the ChannelType
|
||
enum.
|
||
|
||
* app/gdisplay.[ch]: removed the "depth" and "color_type" fields
|
||
from the struct. Cleaned up the header.
|
||
|
||
* app/selection.c
|
||
* app/gui/info-window.c: use g_visual->depth instead of
|
||
gdisp->depth.
|
||
|
||
* app/gimphelp.c: #include "core/core-types.h"
|
||
|
||
* tools/pdbgen/Makefile.am: added app/core/core-types.h to the
|
||
list of files to be scanned for enums.
|
||
|
||
* libgimp/gimpenums.h
|
||
* plug-ins/script-fu/script-fu-constants.c
|
||
* tools/pdbgen/enums.pl
|
||
* app/pdb/drawable_cmds.c
|
||
* app/pdb/image_cmds.c
|
||
* app/pdb/layer_cmds.c: regenerated.
|
||
|
||
2001-05-13 Michael Natterer <mitch@gimp.org>
|
||
|
||
* TODO.xml: some percentage updates.
|
||
|
||
* autogen.sh: correctly parse latest autoconf's broken "--version"
|
||
string.
|
||
|
||
* app/widgets/Makefile.am
|
||
* app/widgets/gimpcontainerview-utils.[ch]: new files which
|
||
provide a set of built-in get_name_func()s for GimpContainerView
|
||
and GimpContainerMenu.
|
||
|
||
* app/widgets/gimpcontainermenu.c
|
||
* app/widgets/gimpcontainerview.c: use them.
|
||
|
||
* app/widgets/gimpimagedock.c
|
||
* app/gui/dialogs-constructors.c: removed the get_name_func()s here.
|
||
|
||
2001-05-13 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/apptypes.h: removed some forgotten tools types.
|
||
|
||
* app/tools/tools-types.h: and added them here.
|
||
|
||
* app/interface.c
|
||
* app/disp_callbacks.[ch]: ported dropping of drawables to the
|
||
new DND system.
|
||
|
||
* app/app_procs.c
|
||
* app/core/gimpdatafactory.c
|
||
* app/core/gimpimage-duplicate.c
|
||
* app/core/gimptoolinfo.h
|
||
* app/gui/gui.c
|
||
* app/tools/tool_options.c
|
||
* app/widgets/gimpchannellistview.c
|
||
* app/widgets/gimplayerlistview.c: removed/fixed includes.
|
||
|
||
* app/gui/brush-select.[ch]
|
||
* app/gui/pattern-select.[ch]: removed the display of the current
|
||
name (done by the grid view now).
|
||
|
||
* app/gui/palette-select.c: fixed palette preview size.
|
||
|
||
* app/gui/dialogs-constructors.c: added get_name() functions for
|
||
brushes, patterns, images and palettes.
|
||
|
||
* app/widgets/gimpcontainergridview.[ch]: added a label for the
|
||
name of the active item.
|
||
|
||
* app/widgets/gimpdnd.[ch]: removed the old drawable DND preview
|
||
icon code.
|
||
|
||
* tools/pdbgen/app.pl: braino: the $tool_eek hack has to be
|
||
initialized to 0 at the beginning of each file, otherwise we end
|
||
up including "tools/tools-types.h" everywhere.
|
||
|
||
* tools/pdbgen/pdb/color.pdb
|
||
* tools/pdbgen/pdb/text_tool.pdb
|
||
* tools/pdbgen/pdb/tools.pdb: add "tools/tools-types.h" where needed.
|
||
|
||
* app/pdb/color_cmds.c
|
||
* app/pdb/pattern_select_cmds.c
|
||
* app/pdb/patterns_cmds.c
|
||
* app/pdb/plug_in_cmds.c
|
||
* app/pdb/procedural_db_cmds.c
|
||
* app/pdb/selection_cmds.c
|
||
* app/pdb/undo_cmds.c
|
||
* app/pdb/unit_cmds.c: regenerated.
|
||
|
||
2001-05-12 Adam D. Moss <adam@gimp.org>
|
||
|
||
* plug-ins/common/animoptimize.c: Cunningly decrease
|
||
the efficiency of the plugin. Add semi-broken code
|
||
to find or remove the statistical mode pixels across
|
||
all frames (ie. the animation background). Checked in
|
||
mainly to avoid tree-drift until I have time to finish
|
||
this.
|
||
|
||
2001-05-11 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/lc_dialog.[ch]: taken behind the curtain and shot.
|
||
(famous words of Seth Burgess on #gimp)
|
||
|
||
* app/app_procs.c
|
||
* app/gdisplay.c
|
||
* app/gimage.c
|
||
* app/gui/commands.c
|
||
* app/gui/gui.c
|
||
* app/gui/menus.c
|
||
* app/gui/preferences-dialog.c: don't #include it or call it's
|
||
functions any more.
|
||
|
||
* app/gui/dialogs-commands.[ch]: added a constructor for a dock
|
||
which looks like the old L&C dialog (taken from test-commands.*)
|
||
|
||
* app/gui/test-commands.[ch]: removed here.
|
||
|
||
* app/gui/dialogs-constructors.[ch]: wrapped the old
|
||
paths-dialog.* stuff in a dockable which can be created only
|
||
once. Will go away as soon as the new path stuff is there.
|
||
|
||
* app/gui/dialogs.c: added the paths dockable, removed lc_dialog.
|
||
|
||
* app/gui/paths-dialog.c: some changes to make it work without the
|
||
lc_dialog around it. Will probably crash randomly and refuse to
|
||
update it's contents properly (scheduled for removal).
|
||
|
||
2001-05-11 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gui/Makefile.am
|
||
* app/gui/channels-dialog.[ch]
|
||
* app/gui/layers-dialog.[ch]: at the end of their epoch, the
|
||
dinosaurs were wiped out by a "cvs remove" impact from space.
|
||
|
||
* app/lc_dialog.c: changed accordingly.
|
||
|
||
* app/gui/layer-select.c: use the new preview system (mostly code
|
||
removal).
|
||
|
||
* app/gui/menus.c: reorder the dialog factory menu.
|
||
|
||
2001-05-10 David Neary <dneary@eircom.net>
|
||
|
||
* app/tools/gimpbycolorselecttool.[ch]
|
||
* app/undo.c: Temporarily fixed an issue with undo when
|
||
there's a bycolorselect mask on the image - since
|
||
gimp_by_color_select_tool_initialize_by_image() should be
|
||
a private function, this needs changing.
|
||
|
||
2001-05-10 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/widgets/gimpchannellistview.c: fixed button sensitivity.
|
||
|
||
* app/widgets/gimpdialogfactory.c: write out newlines to
|
||
.sessionrc at the right places.
|
||
|
||
* app/widgets/gimpdock.c: s/gimp_dockable/gimp-dockable/ makes DND
|
||
re-arranging of dialogs work again.
|
||
|
||
2001-05-10 David Neary <dneary@eircom.net>
|
||
|
||
* tools/gimp-remote.c: Got rid of some annoying
|
||
warnings about stuff like exit not having a prototype.
|
||
Included string.h and stdlib.h.
|
||
|
||
2001-05-10 David Neary <dneary@eircom.net>
|
||
|
||
* app/tools/gimpbycolorselecttool.[ch]: Activate
|
||
"Select by color" tool.
|
||
|
||
* app/tools/Makefile.am
|
||
* app/tools/tools.c
|
||
* app/tools/gimptool.[ch]
|
||
* app/tools/selection_options.c
|
||
* tools/pdbgen/pdb/tools.pdb: Changed accordingly
|
||
|
||
2001-05-10 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/asupsample.[ch]: removed.
|
||
|
||
* app/core/Makefile.am
|
||
* app/core/core-types.h
|
||
* app/tools/Makefile.am
|
||
* app/tools/tools-types.h: new files.
|
||
|
||
* app/tools/gimptoolinfo.[ch]: removed.
|
||
* app/core/gimptoolinfo.[ch]: added here.
|
||
|
||
* libgimp/Makefile.am
|
||
* libgimp/gimp.h
|
||
* libgimp/gimpadaptivesupersample.[ch]
|
||
* libgimp/gimpbilinear.[ch]: removed here...
|
||
|
||
* libgimpcolor/Makefile.am
|
||
* libgimpcolor/gimpcolortypes.h
|
||
* libgimpcolor/gimpadaptivesupersample.[ch]
|
||
* libgimpcolor/gimpbilinear.[ch]: ..and added here.
|
||
|
||
* tools/pdbgen/app.pl
|
||
* tools/pdbgen/pdb/paths.pdb
|
||
|
||
* app/*.c: changed tons of #include's
|
||
|
||
2001-05-09 Michael Natterer <mitch@gimp.org>
|
||
|
||
* configure.in
|
||
* app/Makefile.am: added new directory app/core/ for the core
|
||
object system.
|
||
|
||
* app/gimage_mask.[ch]
|
||
* app/gimpbrush-header.h
|
||
* app/gimpbrush.[ch]
|
||
* app/gimpbrushgenerated.[ch]
|
||
* app/gimpbrushpipe.[ch]
|
||
* app/gimpchannel.[ch]
|
||
* app/gimpcontainer.[ch]
|
||
* app/gimpcontext.[ch]
|
||
* app/gimpdata.[ch]
|
||
* app/gimpdatafactory.[ch]
|
||
* app/gimpdatalist.h
|
||
* app/gimpdrawable-desaturate.[ch]
|
||
* app/gimpdrawable-equalize.[ch]
|
||
* app/gimpdrawable-invert.[ch]
|
||
* app/gimpdrawable-offset.[ch]
|
||
* app/gimpdrawable-preview.[ch]
|
||
* app/gimpdrawable.[ch]
|
||
* app/gimpgradient.[ch]
|
||
* app/gimpimage-convert.[ch]
|
||
* app/gimpimage-duplicate.[ch]
|
||
* app/gimpimage-undo.[ch]
|
||
* app/gimpimage.[ch]
|
||
* app/gimplayer.[ch]
|
||
* app/gimplayermask.[ch]
|
||
* app/gimplist.[ch]
|
||
* app/gimpmarshal.[ch]
|
||
* app/gimpobject.[ch]
|
||
* app/gimppalette-import.[ch]
|
||
* app/gimppalette.[ch]
|
||
* app/gimppattern-header.h
|
||
* app/gimppattern.[ch]
|
||
* app/gimpundo.[ch]
|
||
* app/gimpundostack.[ch]
|
||
* app/gimpviewable.[ch]: removed these files...
|
||
|
||
* app/core/*: ...and added them here.
|
||
|
||
* app/*.c
|
||
* app/gui/*.c
|
||
* app/pdb/*.c
|
||
* app/tools/*.c
|
||
* app/widgets/*.c
|
||
* plug-ins/common/gbr.c
|
||
* plug-ins/common/gih.c
|
||
* plug-ins/common/pat.c
|
||
* po/POTFILES.in
|
||
* tools/pdbgen/Makefile.am
|
||
* tools/pdbgen/enums.pl
|
||
* tools/pdbgen/pdb.pl
|
||
* tools/pdbgen/pdb/*.pdb: changed accordingly.
|
||
|
||
2001-05-08 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/appenums.h: removed GimpDropType.
|
||
* app/widgets/widgets-types.h: added GimpDropType.
|
||
|
||
* app/gui/channels-dialog.c
|
||
* app/gui/layers-dialog.c: #include "widgets/widgets-types.h"
|
||
|
||
2001-05-08 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/gimpdnd.[ch]: removed.
|
||
|
||
* app/widgets/Makefile.am
|
||
* app/widgets/gimpdnd.[ch]: and moved here.
|
||
|
||
* app/devices.c
|
||
* app/docindex.c
|
||
* app/interface.c
|
||
* app/gui/about-dialog.c
|
||
* app/gui/channels-dialog.c
|
||
* app/gui/color-area.c
|
||
* app/gui/color-select.c
|
||
* app/gui/colormap-dialog.c
|
||
* app/gui/gradient-editor.c
|
||
* app/gui/indicator-area.c
|
||
* app/gui/layers-dialog.c
|
||
* app/gui/palette-editor.c
|
||
* app/gui/palette-select.c
|
||
* app/gui/toolbox.c
|
||
* app/tools/gimpblendtool.c
|
||
* app/tools/tool_manager.c
|
||
* app/tools/tool_options_dialog.c: changed #includes accordingly.
|
||
|
||
2001-05-08 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/appenums.h: added ChannelType.
|
||
* app/gimpimage.h: removed ChannelType.
|
||
* tools/pdbgen/enums.pl: regenerated.
|
||
|
||
* app/apptypes.h: don't include libgimpwidgets/gimpwidgetstypes.h
|
||
and widgets/widgets-types.h any more.
|
||
|
||
* app/devices.c
|
||
* app/gimpdnd.c
|
||
* app/gimprc.c
|
||
* app/lc_dialog.c
|
||
* app/gui/[many].c: include widgets/widgets-types.h
|
||
|
||
* app/tools/histogram_tool.h: include widgets/widgets-types.h here
|
||
because of an ugly dependency from pdb/color_cmds.c
|
||
|
||
* app/tools/tool_options_dialog.c
|
||
|
||
* app/widgets/widgets-types.h: include
|
||
libgimpwidgets/gimpwidgetstypes.h and apptypes.h so files in
|
||
widgets/ only have to include this file.
|
||
|
||
* app/widgets/*.c: include widgets-types.h instead of apptypes.h
|
||
|
||
* app/gimpdrawable-preview.c
|
||
* app/gui/gradient-editor.c: removed useless #includes.
|
||
|
||
2001-05-07 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimpimage.[hc]: new signal "floating_selection_changed",
|
||
removed ancient declaration of _GimpImageRepaintArg.
|
||
|
||
* app/floating_sel.c
|
||
* app/undo.c: emit "floating_selection_changed" where approptiate.
|
||
|
||
* app/gimage_mask.c: s/"Floated Layer"/"Floating Selection"/
|
||
because we view this layer directly now (not some thing with an
|
||
"L" icon).
|
||
|
||
* app/gui/layers-commands.c: don't use confusing boolean variables
|
||
which indicate that something is not true (reversed their logic).
|
||
|
||
* app/widgets/Makefile.am
|
||
* app/widgets/widgets-types.h
|
||
* app/widgets/gimpchannellistitem.[ch]: new widget. Does nothing yet.
|
||
|
||
* app/widgets/gimpchannellistview.c: set the button box
|
||
insensitive when there is a floating selection.
|
||
|
||
* app/widgets/gimpdrawablelistitem.c: made channel DND work again.
|
||
Very ugly btw.
|
||
|
||
* app/widgets/gimpdrawablelistview.c: connect to
|
||
"floating_selection_changed". Fake a change of the active drawable
|
||
so the button boxes get updated correctly.
|
||
|
||
* app/widgets/gimplayerlistview.c: set the sensitivity of the
|
||
buttons correctly.
|
||
|
||
* app/widgets/gimplistitem.c: create GimpChannelListItems for
|
||
channels. Some very ugly code to work around broken
|
||
GTK_STATE_INSENSITIVE propagation in list items.
|
||
|
||
2001-05-06 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/widgets/gimpchannellistview.c: enabled setting component
|
||
activity. Connect an "extended_clicked" callback to the "To
|
||
Selection" button for add/sub/intersect.
|
||
|
||
* app/widgets/gimpcomponentlistitem.c: removed some commented out
|
||
code.
|
||
|
||
* app/widgets/gimpdrawablelistview.c: stuff.
|
||
|
||
* app/widgets/gimplayerlistview.c: set "Raise" to insensitive if
|
||
the active layer has no alpha.
|
||
|
||
* libgimpwidgets/gimpbutton.c: fiddle around correctly with
|
||
GtkButton's internals.
|
||
|
||
2001-05-06 Sven Neumann <sven@gimp.org>
|
||
|
||
* libgimpwidgets/Makefile.am
|
||
* libgimpwidgets/gimpwidgets.h
|
||
* libgimpwidgets/gimpwidgetstypes.h
|
||
* libgimpwidgets/gimpoffsetarea.c
|
||
* libgimpwidgets/gimpoffsetarea.h: new widget GimpOffsetArea cut
|
||
of the resize dialog, allows to interactively specify offsets when
|
||
resizing images or drawables.
|
||
|
||
* libgimpwidgets/gimppixmap.c: removed empty destroy method.
|
||
|
||
* app/resize.c: use new GimpOffsetArea.
|
||
|
||
2001-05-06 Michael Natterer <mitch@gimp.org>
|
||
|
||
* libgimpwidgets/Makefile.am
|
||
* libgimpwidgets/gimpbutton.[ch]: new widget derived from
|
||
GtkButton. It adds an "extended_clicked" signal which is emitted
|
||
instead of "clicked" if a modifier was pressed.
|
||
|
||
* libgimpwidgets/gimpchainbutton.[ch]
|
||
* libgimpwidgets/gimppixmap.[ch]: removed the opaque typedefs.
|
||
|
||
* libgimpwidgets/gimpwidgets.h
|
||
* libgimpwidgets/gimpwidgetstypes.h: and added them here. Added
|
||
GimpButton.
|
||
|
||
* app/widgets/gimpdrawablelistview.c: use GimpButtons for "Raise"
|
||
and "Lower" and raise/lower to top/bottom on shift-click.
|
||
|
||
2001-05-06 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimpimage.[ch]: renamed "restructure" to "alpha_changed" and
|
||
only emit it in flatten(), not in merge_layers().
|
||
|
||
* app/gimage.c
|
||
* app/gimplayer.c: changed accordingly.
|
||
|
||
* app/widgets/gimpcontainerlistview.c: set both scrollbar policies
|
||
to automatic.
|
||
|
||
2001-05-06 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimpimage.[ch]: renamed the "resize" signal to "size_changed".
|
||
|
||
* app/gimage.c: changed accordingly.
|
||
|
||
* app/undo.c: renamed the "shrink_wrap" to "size_changed", call
|
||
gimp_image_size_changed() and let the handlers do the work.
|
||
|
||
* app/widgets/gimplistitem.[ch]: added a virtual set_preview_size()
|
||
method and a default implementation.
|
||
|
||
* app/widgets/gimplayerlistitem.c: added an inplementation of
|
||
set_preview_size() which set's the size of the mask preview.
|
||
|
||
* app/widgets/gimpchannellistview.c: implement set_preview_size()
|
||
and set the size of the component previews.
|
||
|
||
* app/widgets/gimpcontainerlistview.c: call
|
||
gimp_list_item_set_preview_size() instead of resizing the preview
|
||
manually.
|
||
|
||
* app/widgets/gimpcontainerview.c: emit "set_preview_size" even if
|
||
the size has not changed so we can use it to re-calculate the
|
||
preview size on image size change.
|
||
|
||
* app/widgets/gimpdrawablelistview.c: connect to the image's
|
||
"size_changed" signal and trigger preview size re-calculation in
|
||
the callback.
|
||
|
||
2001-05-06 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/appenums.h: added GimpDropMode...
|
||
* app/gimpdnd.h: ...removed from here.
|
||
|
||
* app/gimpimage.[ch]:
|
||
- New signal "mode_changed".
|
||
- removed "const GimpImage*" from gimp_image_colormap_changed()
|
||
because a signal emission is never "const" for the object
|
||
which emits the signal.
|
||
- Fixed gimp_image_[set|get]_component_[active|visible]():
|
||
ALPHA_CHANNEL maps to ALPHA_PIX only in RGB mode, use
|
||
ALPHA_G_PIX/ALPHA_I_PIX in GRAY/INDEXED mode.
|
||
|
||
* app/gimpimage-convert.c
|
||
* app/undo.c: call gimp_image_mode_changed().
|
||
|
||
* app/gimpviewable.c: added an implementation of
|
||
"invalidate_preview" which frees the preview temp_buf which may be
|
||
attached to the viewable. Subclasses need to chain up now.
|
||
|
||
* app/gimpdrawable.c
|
||
* app/gimpimage.c: chain up in invalidate_preview().
|
||
|
||
* app/widgets/gimpchannellistview.c: connect to the image's
|
||
"mode_changed" signal and rebuild the channel list in the
|
||
callback.
|
||
|
||
* app/widgets/gimpcontainerview.h: indentation.
|
||
|
||
* app/widgets/gimpdockbook.c: set the dockable's context to NULL
|
||
in gimp_dockbook_remove()
|
||
|
||
* app/widgets/gimpimagedock.c: forgot to actually set the dock's
|
||
image in gimp_image_dock_new().
|
||
|
||
* app/gui/dialogs-constructors.c: added a get_name_func() for tool
|
||
views which returns the tool's "blurb". It's safe to assume now
|
||
that a dockable's context will exist as long as the dockable
|
||
exists unless it's explicitely set to NULL, so remove ugly hacks
|
||
handling context destruction.
|
||
|
||
* app/tools/gimptool.c: removed COMPAT_CRUFT and useless #include's.
|
||
|
||
2001-05-04 Michael Natterer <mitch@gimp.org>
|
||
|
||
* configure.in
|
||
* devel-docs/Makefile.am
|
||
* devel-docs/libgimpcolor/*
|
||
* devel-docs/libgimpmath/*
|
||
* devel-docs/libgimpwidgets/*: added new gtk-doc modules for
|
||
libgimpcolor, libgimpmath and libgimpwidgets. Moved existing
|
||
documentation from the old files to the new templates.
|
||
|
||
* devel-docs/libgimp/*: regenerated all files and removed the
|
||
stuff which is in the new modules now.
|
||
|
||
* libgimpwidgets/gimpcolorarea.c
|
||
* libgimpwidgets/gimpcolorbutton.[ch]: some documentation fixes.
|
||
|
||
* po-libgimp/Makefile.in.in
|
||
* po-plug-ins/Makefile.in.in
|
||
* po-script-fu/Makefile.in.in: updated.
|
||
|
||
2001-05-03 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/apptypes.h: removed typedefs from the widgets/ subdir.
|
||
|
||
* app/widgets/Makefile.am
|
||
* app/widgets/widgets-types.h: new file.
|
||
|
||
* app/widgets/gimpcontainermenu.[ch]
|
||
* app/widgets/gimpcontainerview.[ch]: synced them again and added a
|
||
"get_name_func"
|
||
|
||
* app/widgets/gimplistitem.[ch]
|
||
* app/widgets/gimpmenuitem.[ch]: add a "get_name_func" and use it
|
||
to get the item's name.
|
||
|
||
* app/widgets/gimpcontainerlistview.c
|
||
* app/widgets/gimpcontainermenuimpl.c: pass the get_name_func to
|
||
the created items.
|
||
|
||
* app/widgets/gimpchannellistview.c: gtk_widget_queue_resize() the
|
||
component frame after changing the image.
|
||
|
||
* app/widgets/gimpcomponentlistitem.c: set a custom
|
||
get_name_func() so the components are named Red, Green, ... again.
|
||
|
||
* app/widgets/gimpimagedock.c: set a custom get_name_func() which
|
||
returns names like in the old L&C dialog's image menu.
|
||
|
||
* tools/pdbgen/Makefile.am: don't scan apptypes.h for enums.
|
||
|
||
2001-05-03 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/app_procs.c: don't #include "gui/color-select.h"
|
||
|
||
* app/disp_callbacks.[ch]: renamed gdisplay_drop_viewable() to
|
||
gdisplay_drop_pattern().
|
||
|
||
* app/gimpimage.[ch]: added new signals
|
||
"component_visibility_changed" and "component_active_changed" and
|
||
emit them in the resp. accessors.
|
||
|
||
* app/interface.c: removed old GimpPreview test code.
|
||
|
||
* app/widgets/Makefile.am
|
||
* app/apptypes.h
|
||
* app/widgets/gimpchannellistview.[ch]
|
||
* app/widgets/gimpcomponentlistitem.[ch]: new (unfinished) widgets.
|
||
|
||
* app/widgets/gimpdockbook.c: switch to the right-clicked notebook
|
||
page before showing the menu.
|
||
|
||
* app/widgets/gimpdrawablelistitem.[ch]: removed the protected
|
||
functions which make the toggle buttons look nicer...
|
||
|
||
* app/widgets/gimplistitem.[ch]: ...and added them here.
|
||
|
||
* app/widgets/gimpdrawablelistview.[ch]: virtualized set_image()
|
||
so subclasses can properly (dis)connect on image change.
|
||
|
||
* app/widgets/gimpdrawablepreview.c
|
||
* app/widgets/gimpimagepreview.[ch]: removed the calc_size()
|
||
functions which calculate the preview's aspect ratio...
|
||
|
||
* app/widgets/gimppreview.[ch]: ...and added then here as
|
||
protected functions.
|
||
|
||
* app/widgets/gimplayerlistitem.c: flush displays after changing
|
||
the layer mask's "apply" or "show" state.
|
||
|
||
2001-05-01 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimpimage.h: removed prototype of function which doesn't
|
||
exist.
|
||
|
||
* app/widgets/gimppreview.[ch]: new signal "extended_clicked"
|
||
which is emitted instead of "clicked" if the user pressed shift,
|
||
control or mod1 on button_press.
|
||
|
||
* app/widgets/gimplayerlistitem.c: use the "extended_clicked"
|
||
signal to toggle the layer mask's "show" and "apply" states.
|
||
|
||
2001-05-01 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimpdnd.[ch]: Made file/url DND work like the other DND types.
|
||
The drop callback gets passed a GList of filenames.
|
||
Provide a default callback which calls file_open_with_display()
|
||
for each filename.
|
||
|
||
* app/docindex.c: changed accordingly.
|
||
|
||
* app/gui/toolbox.c: same file DND changes and made dropping
|
||
drawables work again with the new DND system.
|
||
|
||
* app/widgets/gimpdrawablelistview.c: properly disconnect from the
|
||
image in "destroy".
|
||
|
||
* app/widgets/gimplayerlistitem.c: gtk_signal_connect_while_alive()
|
||
to the layer's "mask_changed" signal.
|
||
|
||
2001-05-01 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/app_procs.c: removed more GUI initialisation code.
|
||
|
||
* app/color_transfer.c: removed useless includes.
|
||
|
||
* app/gui/brush-editor.[ch]
|
||
* app/gui/dialogs-constructors.c:
|
||
s/BrushEditGeneratedWindow/BrushEditor/, s/begw/brush_editor/, made
|
||
the brush preview of the editor autoresizing.
|
||
|
||
* app/gui/dialogs.h: removed "extern" declaration of non-existant
|
||
variable.
|
||
|
||
* app/gui/gui.[ch]: new function gui_post_init() which shows the
|
||
tips dialog.
|
||
|
||
* app/gui/tips-dialog.c: made signal handling nicer (clean up in a
|
||
"destroy" handler).
|
||
|
||
* app/gui/toolbox.[ch]: removed toolbox_raise(), removed the help
|
||
system (de)initialisation code which is now in gui.c, cleanup.
|
||
|
||
2001-04-30 Dave Neary <dneary@eircom.net>
|
||
|
||
* app/tools/tool_options.c: Ensure that option widgets are set to
|
||
defaults on first call to the _init() function.
|
||
|
||
2001-04-29 Garry R. Osgood <grosgood@rcn.com>
|
||
* plug-ins/plugin-helper/plugin-helper.c
|
||
extensions don't have parameters,
|
||
but helper_run() was asking anyway -
|
||
and segfaulting. Commented out
|
||
line for now; everything still seems
|
||
prototypical in Plug In Helper Land.
|
||
|
||
2001-04-29 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimplayer.[ch]: added a "linked_changed" signal and emit it
|
||
in gimp_layer_set_linked().
|
||
|
||
* app/gui/layers-dialog.c: use the accessor when setting "linked".
|
||
|
||
* app/widgets/gimpdrawablelistitem.[ch]: made the hacks which make
|
||
the buttons look nice inside list items available to subclasses.
|
||
|
||
* app/widgets/gimplayerlistitem.[ch]: added a "linked" button.
|
||
|
||
2001-04-29 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/widgets/gimpcontainerview.[ch]: added virtual method
|
||
context_item() which works like select_item() and activate_item()
|
||
and a function to trigger the signal from subclasses (marked as
|
||
"protected").
|
||
|
||
* app/widgets/gimpcontainerlistview.c: invoke context_item() on
|
||
right click.
|
||
|
||
* app/widgets/gimpdrawablelistview.[ch]: implement context_item()
|
||
and show a context menu. The functions to show the menu as well as
|
||
functions to create a new drawable and to edit it's attriutes must
|
||
be passed to the constructor now.
|
||
|
||
* app/gui/channels-commands.[ch]
|
||
* app/gui/layers-commands.[ch]: added functions which show the
|
||
layers and channels context menus. No accelerators supported yet.
|
||
Auto-destroy all dialogs when their drawable is removed from the
|
||
image.
|
||
|
||
* app/gui/dialogs-constructors.c: changed the calls to
|
||
gimp_drawable_list_view_new() accordingly.
|
||
|
||
* app/gui/menus.c
|
||
* app/gui/test-commands.[ch]: removed some test dialogs.
|
||
|
||
2001-04-28 David Neary <dneary@eircom.net>
|
||
|
||
* app/tools/transform_options.[ch]: Separated the transform
|
||
options stuff from the gimptransformtool files so that each of the
|
||
transform tools to make is available to the other transform tools.
|
||
|
||
* app/tools/gimptransformtool.c
|
||
* app/tools/gimpscaletool.c
|
||
* app/tools/gimpsheartool.c
|
||
* app/tools/gimprotatetool.c
|
||
* app/tools/gimpperspectivetool.c
|
||
* app/tools/Makefile.am: Changed accordingly
|
||
|
||
2001-04-28 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/appenums.h: added RunModeType.
|
||
* app/plug_in.h: removed RunModeType.
|
||
* tools/pdbgen/Makefile.am: don't scan app/plug_in.h for enums.
|
||
* tools/pdbgen/enums.pl: regenerated.
|
||
|
||
* app/file-open.[ch]
|
||
* app/file-save.[ch]
|
||
* app/file-utils.[ch]: removed all GUI specific code.
|
||
|
||
* app/gui/Makefile.am
|
||
* app/gui/file-dialog-utils.[ch]
|
||
* app/gui/file-open-dialog.[ch]
|
||
* app/gui/file-save-dialog.[ch]: new files.
|
||
Renamed file_open() to file_open_with_display().
|
||
|
||
* app/app_procs.c
|
||
* app/docindex.c
|
||
* app/gimpdnd.c
|
||
* app/gui/commands.c
|
||
* app/gui/gui.c
|
||
* app/gui/menus.c: changed accordingly.
|
||
|
||
2001-04-27 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/app_procs.[ch]: removed stuff which now lives in gui/gui.c,
|
||
removed global variable "we_are_exiting", made app_init() static.
|
||
|
||
* app/appenv.h: removed "we_are_exiting".
|
||
|
||
* app/colormaps.c: don't #include "app_procs.h"
|
||
|
||
* app/file-open.[ch]
|
||
* app/file-save.[ch]: removed the *_pre_init() functions and
|
||
renamed the *_post_init() functions to *_menu_init().
|
||
|
||
* app/gui/gui.c: added more GUI init and shutdown code from
|
||
app_procs.c
|
||
|
||
2001-04-26 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/widgets/gimpcontainermenuimpl.c: only work around option
|
||
menu reference problems if the removed item was the active one.
|
||
|
||
* app/widgets/gimpimagedock.c: don't try to avoid a recursive
|
||
signal emission in gimp_image_dock_image_changed() but work around
|
||
it. This makes the image menu work finally.
|
||
|
||
* app/gui/dialogs-constructors.c: removed debugging output.
|
||
|
||
2001-04-25 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimpobject.c: free the object's name on destruction.
|
||
|
||
* app/gimpparasite.c: gimp_personal_rc_file()'s return value has
|
||
to be g_free()'d.
|
||
|
||
* app/main.c: indentation.
|
||
|
||
Ported memleak fixes from 1.2:
|
||
|
||
* app/gimpbrush.c: don't leak all pixmaps.
|
||
|
||
* app/gimpbrushpipe.c: free all the pipe's brushes here.
|
||
|
||
2001-04-24 David Neary <dneary@eircom.net>
|
||
|
||
* app/authors.h: Synced this file from the earlier commit.
|
||
|
||
* app/pixmaps2.h
|
||
* app/pdb/tools_cmds.c
|
||
* app/tools/Makefile.am
|
||
* app/tools/gimpperspectivetool.c
|
||
* app/tools/gimpperspectivetool.h
|
||
* app/tools/gimprotatetool.c
|
||
* app/tools/gimprotatetool.h
|
||
* app/tools/gimpsheartool.c
|
||
* app/tools/gimpsheartool.h
|
||
* app/tools/gimptool.c
|
||
* app/tools/gimptool.h
|
||
* app/tools/gimptransformtool.c
|
||
* app/tools/tools.c
|
||
* tools/pdbgen/pdb/tools.pdb: Enabled the rest of the
|
||
transform tools and changed some of the options stuff in
|
||
transform_options_new(). There are one or two outstanding
|
||
(non-critical) runtime problems in that function.
|
||
|
||
2001-04-24 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/authors.h: regenerated.
|
||
|
||
* app/gui/dialogs-constructors.c: call the drawable views's
|
||
set_context() function once explicitly after creation.
|
||
|
||
* app/gui/dialogs.c
|
||
* app/widgets/gimpdialogfactory.[ch]: session management correctly
|
||
remembers the dialogs' sizes again.
|
||
|
||
* app/widgets/gimpcontainermenuimpl.c: set the options menu's
|
||
history to "0" after removing a menu item (temp hack because
|
||
GtkOptionMenu doesn't handle the removal of the currently active
|
||
item correctly).
|
||
|
||
* app/widgets/gimpimagedock.c: another try to get dock->context's
|
||
signals handled correctly. Debugging output will disappear soon.
|
||
|
||
2001-04-23 David Neary <dneary@eircom.net>
|
||
|
||
* AUTHORS: Added my name here before being politely
|
||
informed that the file is autogenerated. Ooops!
|
||
|
||
* tools/authorsgen/contributors: Added my name to the
|
||
list of contributors.
|
||
|
||
2001-04-23 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimpcontext.[ch]: some minor fixes / cleanup.
|
||
|
||
* app/gimpdata.c: forgot to gtk_object_class_add_signals() in
|
||
class_init().
|
||
|
||
* app/gui/dialogs-constructors.[ch]: added a tool_tab_func() so
|
||
the notebook tab shows a tool preview, pass a GimpContext to all
|
||
dialog constructors and added set_context() functions for all
|
||
dockable based dialogs so they can be configured to use the
|
||
context of the destination dock when dragging them around.
|
||
|
||
* app/widgets/gimpcontainermenuimpl.c: removed debugging output.
|
||
|
||
* app/widgets/gimpdialogfactory.[ch]: add a method to create
|
||
dockables (which gets passed the dock the dockable will be added
|
||
to) so the dockables can be created in the right context.
|
||
|
||
* app/widgets/gimpdock.[ch]: added a GimpContext attribute, remove
|
||
the dockbooks explicitely in destroy().
|
||
|
||
* app/widgets/gimpdockable.[ch]: dockables now know about their
|
||
set_context_func() and can thus be dragged between different
|
||
contexts.
|
||
|
||
* app/widgets/gimpdockbook.c: gimp_dockbook_add(): refuse to add
|
||
dockables to dockbooks which are not part of a dock, set the
|
||
dockable's context after adding it.
|
||
|
||
* app/widgets/gimpimagedock.[ch]: image docks now keep a pointer
|
||
to the global image list which is passed to them on construction
|
||
so they don't need to know about the global "image_context"
|
||
variable, added an "Auto" button like in L&C.
|
||
|
||
* app/gui/dialogs-commands.c: changed accordingly.
|
||
|
||
2001-04-23 Sven Neumann <sven@gimp.org>
|
||
|
||
Merged Yosh's changes from stable branch:
|
||
|
||
* acinclude.m4: updated libtool stuff
|
||
|
||
* configure.in: more #undefs so jpeglib.h test works
|
||
|
||
* plug-ins/common/bumpmap.c: speedup patch from Ernst Lippe
|
||
<ernstl@planet.nl> (tile cache size optimization)
|
||
|
||
2001-04-23 Sven Neumann <sven@gimp.org>
|
||
|
||
Merged changes from stable branch:
|
||
|
||
* plug-ins/perl/examples/terral_text: fixed typo.
|
||
|
||
* plug-ins/perl/examples/image_tile
|
||
* plug-ins/perl/examples/yinyang:
|
||
applied gimp-kirchgessner-010422-0.patch which fixes problems with
|
||
invalid number of parameters passed to some functions.
|
||
|
||
* plug-ins/script-fu/interp_sliba.c: fixed problems with strbreakup
|
||
reported by Mike Kelly <mike@csuchico.edu> (bugs #52383 and #52385)
|
||
|
||
2001-04-22 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am: cleanup.
|
||
|
||
* app/interface.c: #include "gimpui.h"
|
||
|
||
* app/gui/dialogs-constructors.[ch]
|
||
* app/gui/dialogs.c
|
||
* app/gui/menus.c
|
||
* app/gui/test-commands.[ch]: changes for the image menu below.
|
||
|
||
* app/apptypes.h
|
||
* app/widgets/Makefile.am
|
||
* app/widgets/gimpcontainermenu.[ch]
|
||
* app/widgets/gimpcontainermenuimpl.[ch]: new widgets. The actual
|
||
implemtation lives in a separate file because
|
||
gimpcontainermenu.c's code is identical to gimpcontainerview.c's
|
||
except for the base class. This will become an interface with Gtk 2.0.
|
||
|
||
* app/widgets/gimpimagedock.[ch]: a dock with an image menu. The
|
||
pages still don't follow the context correctly.
|
||
|
||
* app/widgets/gimpmenuitem.[ch]: a menu item with a preview.
|
||
|
||
* app/widgets/gimpdialogfactory.[ch]: pass a dock constructor to
|
||
the constructor and provide a method to create a new dock within
|
||
this factory's context.
|
||
|
||
* app/widgets/gimpdock.[ch]: removed the constructor because we
|
||
create only image docks now. Put the vbox into a main_vbox (which
|
||
also contains the image menu).
|
||
|
||
* app/widgets/gimpdockbook.[ch]: create new docks with the dialog
|
||
factory.
|
||
|
||
* app/gimpcontainer.[ch]
|
||
* app/gimpdata.[ch]
|
||
* app/gimpdatafactory.[ch]
|
||
* app/gimpdatalist.[ch]
|
||
* app/gimplist.[ch]
|
||
* app/gimpviewable.[ch]
|
||
* app/widgets/gimpbrushpreview.[ch]
|
||
* app/widgets/gimpcontainergridview.[ch]
|
||
* app/widgets/gimpcontainerlistview.[ch]
|
||
* app/widgets/gimpcontainerview.[ch]
|
||
* app/widgets/gimpdatafactoryview.[ch]
|
||
* app/widgets/gimpdockable.[ch]
|
||
* app/widgets/gimpdrawablelistitem.[ch]
|
||
* app/widgets/gimpdrawablelistview.[ch]
|
||
* app/widgets/gimpdrawablepreview.[ch]
|
||
* app/widgets/gimplayerlistitem.[ch]
|
||
* app/widgets/gimplayerlistview.[ch]
|
||
* app/widgets/gimplistitem.[ch]
|
||
* app/widgets/gimppalettepreview.[ch]
|
||
* app/widgets/gimppatternpreview.[ch]
|
||
* app/widgets/gimppreview.[ch]: ass-sign some copyrights.
|
||
|
||
2001-04-21 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/lc_dialogP.h
|
||
* app/paths_dialogP.h: removed stuff that will go away anyway (put
|
||
the declarations to the public headers).
|
||
|
||
* app/gimpui.[ch]: new function gimp_widget_get_callback_context()
|
||
which may only be called from a *_cmd_callback() and returns the
|
||
data we attached with weird methods.
|
||
|
||
* app/gui/Makefile.am
|
||
* app/gui/channels-commands.[ch]: callbacks independent from the
|
||
channels dialog and the "new" and "edit channel" dialogs.
|
||
|
||
* app/gui/channels-dialog.[ch]
|
||
* app/gui/layers-commands.c
|
||
* app/gui/layers-dialog.[ch]
|
||
* app/lc_dialog.[ch]
|
||
* app/gui/menus.c
|
||
* app/gui/paths-dialog.[ch]
|
||
* app/tools/gimpbezierselecttool.c
|
||
* po/POTFILES.in: changed accordingly.
|
||
|
||
2001-04-20 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimpui.[ch]: new functions gimp_window_add_accel_group() and
|
||
gimp_window_remove_accel_group() which do the ugly accel context
|
||
hack described below.
|
||
|
||
* app/interface.c
|
||
* app/gui/layers-dialog.c: use the new functions.
|
||
|
||
* app/disp_callbacks.c
|
||
* app/gui/layers-commands.c: removed stuff which is now done
|
||
automatically.
|
||
|
||
2001-04-20 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/layers_dialogP.h: removed.
|
||
|
||
* app/gimpui.[ch]: new function gimp_menu_position().
|
||
|
||
* app/disp_callbacks.c
|
||
* app/interface.c
|
||
* app/gui/layers-dialog.c: popup the image and layers menu with
|
||
gtk_item_factory_popup_with_data() instead of gtk_menu_popup()
|
||
and pass the GimpImage we're operating on as data.
|
||
|
||
For accelerators, which are invoked without context, we catch key
|
||
press events and attach the context to the GtkItemFactory.
|
||
|
||
* app/gui/Makefile.am
|
||
* app/gui/layers-commands.[ch]: common layer callbacks (instead of
|
||
separate ones in commands.c and layers-dialog.c
|
||
|
||
* app/gui/commands.[ch]
|
||
* app/gui/layers-dialog.[ch]: removed the menu callbacks here.
|
||
|
||
* app/gdisplay.h
|
||
* app/lc_dialog.c
|
||
* app/gui/channels-dialog.c
|
||
* app/gui/layer-select.c
|
||
* app/gui/menus.c
|
||
* po/POTFILES.in: changed accordingly.
|
||
|
||
2001-04-20 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/main.c: set the message handler for all app log domains, not
|
||
only for "Gimp".
|
||
|
||
* app/gui/brush-select.c
|
||
* app/gui/gradient-select.c
|
||
* app/gui/palette-select.c: removed the "edit" callbacks.
|
||
|
||
* app/gui/dialogs-constructors.[ch]: Added the callbacks
|
||
here. Added layer and channel lists.
|
||
|
||
* app/gui/dialogs.c: register the new lists.
|
||
* app/gui/menus.c: their menu entries.
|
||
|
||
* app/widgets/gimpdock.c: set a minimal width of 280 pixels.
|
||
|
||
2001-04-19 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/tools/Makefile.am
|
||
* app/tools/gimpclonetool.[ch]
|
||
* app/tools/gimpconvolvetool.[ch]
|
||
* app/tools/gimppainttool.c
|
||
* app/tools/gimptool.h
|
||
* app/tools/paint_options.c
|
||
* app/tools/tool_manager.c
|
||
* app/tools/tools.c: Applied a patch from Dave Neary
|
||
<dneary@eircom.net> which brings clone and convolve back.
|
||
|
||
That's all paint tools, Dudes!
|
||
|
||
2001-04-19 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/brush_header.h
|
||
* app/pattern_header.h
|
||
* app/desaturate.[ch]
|
||
* app/equalize.[ch]
|
||
* app/invert.[ch]: removed.
|
||
|
||
* app/gimpbrush-header.h
|
||
* app/gimppattern-header.h
|
||
* app/gimpdrawable-desaturate.[ch]
|
||
* app/gimpdrawable-equalize.[ch]
|
||
* app/gimpdrawable-invert.[ch]: new files.
|
||
|
||
* app/gui/commands.c: put some stuff from desaturate, equalize and
|
||
invert here. While it's ok to check the drawable type in the
|
||
callback, this is the wrong place for PDB wrappers.
|
||
|
||
* app/gimpbrush.c
|
||
* app/gimpbrushpipe.c
|
||
* app/gimplayer.c
|
||
* app/gimppattern.c
|
||
* app/pdb/color_cmds.c
|
||
* plug-ins/common/gbr.c
|
||
* plug-ins/common/gih.c
|
||
* plug-ins/common/pat.c
|
||
* po/POTFILES.in
|
||
* tools/pdbgen/pdb/color.pdb: changed accordingly.
|
||
|
||
2001-04-18 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimpdrawable-offset.[ch]: renamed ChannelOffsetType to
|
||
GimpOffsetType.
|
||
|
||
* app/pdb/channel_ops_cmds.c
|
||
* libgimp/gimpchannelops_pdb.[ch]
|
||
* tools/pdbgen/pdb/channel_ops.pdb: removed.
|
||
|
||
* tools/pdbgen/pdb/drawable.pdb
|
||
* tools/pdbgen/pdb/image.pdb: put the "offset" and "duplicate"
|
||
functions where they belong.
|
||
|
||
* app/gui/offset-dialog.c
|
||
* app/pdb/Makefile.am
|
||
* app/pdb/drawable_cmds.c
|
||
* app/pdb/image_cmds.c
|
||
* app/pdb/internal_procs.c
|
||
* libgimp/Makefile.am
|
||
* libgimp/gimp_pdb.h
|
||
* libgimp/gimpdrawable_pdb.[ch]
|
||
* libgimp/gimpenums.h
|
||
* libgimp/gimpimage.h
|
||
* libgimp/gimpimage_pdb.[ch]
|
||
* tools/pdbgen/Makefile.am
|
||
* tools/pdbgen/enumcode.pl
|
||
* tools/pdbgen/enums.pl
|
||
* tools/pdbgen/groups.pl
|
||
* plug-ins/common/guillotine.c
|
||
* plug-ins/print/print.c
|
||
* plug-ins/script-fu/script-fu-constants.c: changed accordingly.
|
||
|
||
2001-04-18 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/channel_ops.[ch]: removed
|
||
|
||
* app/gimpdrawable-offset.[ch]
|
||
* app/gimpimage-duplicate.[ch]: new files without GUI.
|
||
|
||
* app/gui/Makefile.am
|
||
* app/gui/offset-dialog.[ch]: new files.
|
||
|
||
* app/gui/commands.c
|
||
* app/pdb/channel_ops_cmds.c
|
||
* po/POTFILES.in
|
||
* tools/pdbgen/Makefile.am
|
||
* tools/pdbgen/enums.pl
|
||
* tools/pdbgen/pdb/channel_ops.pdb: changed accordingly.
|
||
|
||
2001-04-18 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/convert.[ch]: removed.
|
||
* app/gimpimage-convert.[ch]: new files: the convert functionality
|
||
without GUI (now called gimp_image_convert()).
|
||
|
||
* app/gui/Makefile.am
|
||
* app/gui/convert-dialog.[ch]: new files.
|
||
|
||
* app/gui/commands.c
|
||
* app/pdb/convert_cmds.c
|
||
* po/POTFILES.in
|
||
* tools/pdbgen/pdb/convert.pdb
|
||
* tools/pdbgen/Makefile.am
|
||
* tools/pdbgen/enums.pl: changed accordingly.
|
||
|
||
2001-04-18 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/devices.[ch]
|
||
* app/gui/about-dialog.[ch]
|
||
* app/gui/preferences-dialog.[ch]
|
||
* app/gui/tips-dialog.[ch]: return a GtkWidget from the constructor.
|
||
|
||
* app/gui/dialogs.c
|
||
* app/gui/dialogs-constructors.[ch]: register them with the dialog
|
||
factory.
|
||
|
||
* app/gui/commands.[ch]
|
||
* app/gui/menus.c: removed their old callbacks.
|
||
|
||
* app/gui/brush-select.c
|
||
* app/gui/gradient-select.c
|
||
* app/gui/palette-editor.[ch]: no need to show or raise the shell
|
||
(that's done by the dialog factory now).
|
||
|
||
* app/widgets/gimpdialogfactory.c: actually do what the
|
||
"singleton" and "session_managed" flags say.
|
||
|
||
2001-04-18 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am: commented the sections of the file list.
|
||
* app/gui/Makefile.am: cleanup.
|
||
|
||
* app/unittest/*: removed.
|
||
|
||
2001-04-17 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/gui/Makefile.am
|
||
* app/about_dialog.[ch]
|
||
* app/brush_edit.[ch]
|
||
* app/brush_select.[ch]
|
||
* app/channels_dialog.[ch]
|
||
* app/color_area.[ch]
|
||
* app/color_notebook.[ch]
|
||
* app/color_select.[ch]
|
||
* app/colormap_dialog.[ch]
|
||
* app/commands.[ch]
|
||
* app/file_new_dialog.[ch]
|
||
* app/gradient_editor.[ch]
|
||
* app/gradient_select.[ch]
|
||
* app/indicator_area.[ch]
|
||
* app/info_dialog.[ch]
|
||
* app/info_window.[ch]
|
||
* app/layer_select.[ch]
|
||
* app/layers_dialog.[ch]
|
||
* app/menus.[ch]
|
||
* app/palette.[ch]
|
||
* app/palette_import.[ch]
|
||
* app/palette_select.[ch]
|
||
* app/paths_dialog.[ch]
|
||
* app/pattern_select.[ch]
|
||
* app/preferences_dialog.[ch]
|
||
* app/session.[ch]
|
||
* app/test_commands.[ch]
|
||
* app/tips_dialog.[ch]
|
||
* app/toolbox.[ch]: moved to gui/ (s/_/-/ and some more useful
|
||
filenames on the way).
|
||
|
||
* app/app_procs.c
|
||
* app/context_manager.c
|
||
* app/convert.c
|
||
* app/disp_callbacks.c
|
||
* app/errorconsole.c
|
||
* app/file-open.c
|
||
* app/file-save.c
|
||
* app/file-utils.c
|
||
* app/gdisplay.c
|
||
* app/gimage.c
|
||
* app/gimprc.c
|
||
* app/image_new.c
|
||
* app/interface.c
|
||
* app/nav_window.c
|
||
* app/path.c
|
||
* app/plug_in.c
|
||
* app/gui/dialogs-constructors.c
|
||
* app/pdb/brush_select_cmds.c
|
||
* app/pdb/convert_cmds.c
|
||
* app/pdb/gradient_select_cmds.c
|
||
* app/pdb/pattern_select_cmds.c
|
||
* app/tools/gimpcolorpickertool.c
|
||
* app/tools/gimpcroptool.c
|
||
* app/tools/gimpmagnifytool.c
|
||
* app/tools/gimpmeasuretool.c
|
||
* app/tools/gimpscaletool.c
|
||
* app/tools/gimptransformtool.c
|
||
* app/widgets/gimpcolorpanel.c
|
||
* tools/pdbgen/pdb/brush_select.pdb
|
||
* tools/pdbgen/pdb/convert.pdb
|
||
* tools/pdbgen/pdb/gradient_select.pdb
|
||
* tools/pdbgen/pdb/pattern_select.pdb
|
||
* po/POTFILES.in: changed accordingly.
|
||
|
||
2001-04-17 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/session.[ch]
|
||
* app/gimprc.c: removed the old dialog session management code...
|
||
|
||
* app/widgets/gimpdialogfactory.[ch]: ...and manage all dialogs here.
|
||
|
||
* app/gui/dialogs-constructors.[ch]: dialog factory compliant
|
||
constructors for all session managed toplevel dialogs.
|
||
|
||
* app/brush_select.[ch]
|
||
* app/devices.[ch]
|
||
* app/docindex.[ch]
|
||
* app/errorconsole.[ch]
|
||
* app/gradient_select.[ch]
|
||
* app/info_dialog.c
|
||
* app/lc_dialog.[ch]
|
||
* app/palette.[ch]
|
||
* app/pattern_select.[ch]
|
||
* app/toolbox.[ch]
|
||
* app/tools/tool_options_dialog.[ch]: all dialog constructors have
|
||
to return the dialog now (even the legacy ones that will go away).
|
||
Removed the session management code as this is now done for the
|
||
dialogs, not by them.
|
||
|
||
* app/app_procs.c
|
||
* app/color_select.c
|
||
* app/commands.[ch]
|
||
* app/indicator_area.c
|
||
* app/menus.c
|
||
* app/palette_select.c
|
||
* app/preferences_dialog.c
|
||
* app/gui/dialogs.c
|
||
* app/gui/dialogs-commands.[ch]
|
||
* app/gui/gui.c
|
||
* app/tools/gimptool.c
|
||
* app/widgets/gimpdock.c: changed accordingly.
|
||
|
||
2001-04-16 Michael Natterer <mitch@gimp.org>
|
||
|
||
First attempt to get the docks session managed:
|
||
|
||
* app/gimprc.c: new gimprc type "new-session-info" which will soon
|
||
replace the original one.
|
||
|
||
* app/menus.c
|
||
* app/gui/dialogs.c: s/_/-/g in all dialog identifier strings.
|
||
|
||
* app/session.[ch]: call the dialog factory's session functions.
|
||
|
||
* app/test_commands.c: use the dialog factory to create the tabs.
|
||
|
||
* app/gui/dialogs-commands.c
|
||
* app/gui/dialogs-constructors.[ch]: the constructors return widgets,
|
||
not dockables now.
|
||
|
||
* app/widgets/gimpdialogfactory.[ch]: maintain a list of dialog
|
||
factories in the class struct. Added ugly code to do the GimpDock
|
||
session management.
|
||
|
||
* app/gui/gui.c
|
||
* app/widgets/gimpdock.c: changed accordingly.
|
||
|
||
2001-04-15 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gui/Makefile.am: new files:
|
||
|
||
* app/gui/gui.[ch]: the new place for the UI init and shutdown code.
|
||
* app/gui/splash.[ch]: a separate file for the splash.
|
||
|
||
* app/app_procs.c: removed lots of stuff. Still much UI code left.
|
||
|
||
2001-04-15 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/menus.[ch]: changed all menus_get_*() functions to return
|
||
the GtkItemFactory, not separate widget, and accel_group
|
||
pointers. Disabled automatic tearoff item creation for all
|
||
factories axcept the toolbox and image factory.
|
||
|
||
* app/channels_dialog.c
|
||
* app/file-open.c
|
||
* app/file-save.c
|
||
* app/interface.c
|
||
* app/layers_dialog.c
|
||
* app/paths_dialog.c
|
||
* app/toolbox.c: changed accordingly.
|
||
|
||
2001-04-15 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/paletteP.h: removed
|
||
|
||
* app/palette.[ch]
|
||
* app/palette_select.c: changed accordingly.
|
||
|
||
* app/Makefile.am
|
||
* app/gui/Makefile.am: some more preparation for file moving.
|
||
|
||
2001-04-15 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am: grouped the files together which will go to gui/.
|
||
|
||
* app/widgets/gimpdialogfactory.[ch]: maintain a list of open
|
||
GimpDocks for session management.
|
||
|
||
* app/widgets/gimpdock.c: register open docks with the dialog
|
||
factory.
|
||
|
||
* app/widgets/gimpdockable.[ch]
|
||
* app/widgets/gimpdockbook.c: pass a pointer to the GimpDockbook
|
||
to the GimpDockable's "get_tab" function because the function is
|
||
called before the dockable is added to the dockbook.
|
||
|
||
* app/test_commands.c
|
||
* app/gui/dialogs-constructors.[ch]
|
||
* app/gui/dialogs.c: changed accordingly.
|
||
|
||
2001-04-14 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/menus.c: added some more dialog types.
|
||
|
||
* app/gui/Makefile.am
|
||
* app/gui/gimpdialogfactory.[ch]: removed again...
|
||
|
||
* app/widgets/Makefile.am
|
||
* app/widgets/gimpdialogfactory.[ch]: ...and added where it belongs.
|
||
|
||
* app/gui/dialogs.c
|
||
* app/widgets/gimpdock.c: changed #include's
|
||
|
||
* app/gui/dialogs-commands.c: dialogs can be removed via the menu
|
||
now.
|
||
|
||
* app/widgets/gimpdockbook.c: ref the dockbook while the item
|
||
factory is active because an item factory callback may destroy it
|
||
(we need to add the hijacked GtkNotebook menu back to the
|
||
notebook).
|
||
|
||
2001-04-14 Michael Natterer <mitch@gimp.org>
|
||
|
||
* configure.in
|
||
* app/Makefile.am
|
||
* app/gui/Makefile.am: new directory which will contain all gui code
|
||
except widgets (I was tired off adding new files to app/).
|
||
|
||
* app/apptypes.h
|
||
* app/gui/gimpdialogfactory.[ch]: factory which produces dialogs
|
||
from string descriptions. Should maybe go to widgets/.
|
||
|
||
* app/gui/dialogs-commands.[ch]: callbacks for the new menu
|
||
factory below.
|
||
|
||
* app/gui/dialogs-constructors.[ch]: dialog constructors which are
|
||
registered with the dialog factory.
|
||
|
||
* app/gui/dialogs.[ch]: register the dialogs with the factory.
|
||
|
||
* app/app_procs.c: call dialogs_register().
|
||
|
||
* app/menus.[ch]: a new item factory for creating dialogs.
|
||
|
||
* app/test_commands.c
|
||
* app/widgets/gimpdock.[ch]: added a dialog factory pointer to the
|
||
GimpDock struct.
|
||
|
||
* app/widgets/gimpdockbook.[ch]: badly (badly!) fiddle around with
|
||
GtkNotebook's menu to get it integrated in the GtkItemFactory
|
||
which produces new dialogs.
|
||
|
||
2001-04-13 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/pdb/procedural_db.[ch]: removed the ID system from the pdb/
|
||
subdir...
|
||
|
||
* app/gimpimage.[ch]: ...and temporarily added it back to GimpImage.
|
||
|
||
The ID stuff is not only used by the PDB but is a more general
|
||
type of service which is needed for the PDB, DND and some parts of
|
||
the GUI. Finally, a GimpFactory class with subclasses for data
|
||
objects, images etc. will maintain the ID spaces.
|
||
|
||
* app/colormap_dialog.c
|
||
* app/file-open.c
|
||
* app/file-save.c
|
||
* app/gdisplay.c
|
||
* app/gimpdnd.c
|
||
* app/gimpdrawable.c
|
||
* app/info_window.c
|
||
* app/lc_dialog.c
|
||
* app/nav_window.c
|
||
* app/palette_import.c
|
||
* app/paths_dialog.c
|
||
* app/plug_in.c
|
||
* app/xcf.c
|
||
* app/tools/gimptexttool.c
|
||
* tools/pdbgen/pdb.pl
|
||
* tools/pdbgen/pdb/image.pdb: use GimpImage's ID functions.
|
||
|
||
* app/pdb/channel_cmds.c
|
||
* app/pdb/channel_ops_cmds.c
|
||
* app/pdb/convert_cmds.c
|
||
* app/pdb/display_cmds.c
|
||
* app/pdb/drawable_cmds.c
|
||
* app/pdb/fileops_cmds.c
|
||
* app/pdb/guides_cmds.c
|
||
* app/pdb/image_cmds.c
|
||
* app/pdb/layer_cmds.c
|
||
* app/pdb/parasite_cmds.c
|
||
* app/pdb/paths_cmds.c
|
||
* app/pdb/selection_cmds.c
|
||
* app/pdb/text_tool_cmds.c
|
||
* app/pdb/tools_cmds.c
|
||
* app/pdb/undo_cmds.c: regenerated.
|
||
|
||
2001-04-13 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimpdnd.c: added a DND type for GimpImage.
|
||
|
||
* app/tools/tools.c: don't register bezier select twice.
|
||
|
||
* app/widgets/gimpdockbook.[ch]: hacked the popup menu a bit.
|
||
|
||
2001-04-11 Stanislav Brabec <utx@penguin.cz>
|
||
|
||
On request of Martin Weber <martweb@gmx.net>:
|
||
* plug-ins/bmp/bmpread.c:
|
||
GIMP couldn't read bmp files with a bad chunk. This kind of files
|
||
can be found in OS/2 1.x.
|
||
|
||
2001-04-11 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/tools/Makefile.am
|
||
* app/tools/gimpsmudgetool.[ch]
|
||
* app/tools/gimptool.[ch]
|
||
* app/tools/paint_options.c
|
||
* app/tools/tool_manager.c
|
||
* app/tools/tools.c
|
||
* app/pdb/tools_cmds.c
|
||
* tools/pdbgen/pdb/tools.pdb: applied a (slightly modified) patch
|
||
from Dave Neary <dave.neary@palamon.ie> which reactivates the
|
||
smudge tool.
|
||
|
||
2001-04-11 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/test_commands.c: fixed the dockable names.
|
||
|
||
* app/tools/gimpbezierselecttool.c: applied patch from Dave Neary
|
||
which fixes some minor stuff that was forgotten to port.
|
||
|
||
* app/widgets/gimpdockbook.c: set the tooltip of the notebook tab
|
||
also if it is a plain label.
|
||
|
||
2001-04-11 Simon Budig <simon@gimp.org>
|
||
|
||
* app/tools/gimppathtool.[ch]
|
||
* app/tools/path_tool.[ch]
|
||
|
||
Some tweaks to make gcc and mitch more happy.
|
||
|
||
2001-04-11 Simon Budig <simon@gimp.org>
|
||
|
||
* app/path_curves.[ch]
|
||
* app/tools/gimpdrawtool.c
|
||
* app/tools/gimppathtool.[ch]
|
||
* app/tools/path_tool.[ch]
|
||
* app/tools/path_toolP.h
|
||
|
||
At least now it looks as if it could do something sometimes...
|
||
|
||
2001-04-11 Michael Natterer <mitch@gimp.org>
|
||
|
||
* configure.in
|
||
* app/widgets/*: new directory containing all widgets. Some of them
|
||
will go to libgimpwidgets.
|
||
|
||
* app/color_panel.[ch]
|
||
* app/gimpbrushpreview.[ch]
|
||
* app/gimpconstrainedhwrapbox.[ch]
|
||
* app/gimpcontainergridview.[ch]
|
||
* app/gimpcontainerlistview.[ch]
|
||
* app/gimpcontainerview.[ch]
|
||
* app/gimpdatafactoryview.[ch]
|
||
* app/gimpdock.[ch]
|
||
* app/gimpdockable.[ch]
|
||
* app/gimpdockbook.[ch]
|
||
* app/gimpdrawablelistitem.[ch]
|
||
* app/gimpdrawablelistview.[ch]
|
||
* app/gimpdrawablepreview.[ch]
|
||
* app/gimpgradientpreview.[ch]
|
||
* app/gimpimagepreview.[ch]
|
||
* app/gimplayerlistitem.[ch]
|
||
* app/gimplayerlistview.{ch]
|
||
* app/gimplistitem.[ch]
|
||
* app/gimppalettepreview.[ch]
|
||
* app/gimppatternpreview.[ch]
|
||
* app/gimppreview.[ch]
|
||
* app/gimptoolinfopreview.[ch]
|
||
* app/gtkhwrapbox.[ch]
|
||
* app/gtkvwrapbox.[ch]
|
||
* app/gtkwrapbox.[ch]
|
||
* app/histogramwidget.[ch]: removed from here.
|
||
|
||
* app/Makefile.am
|
||
* app/appenums.h
|
||
* app/brush_select.c
|
||
* app/channels_dialog.c
|
||
* app/devices.c
|
||
* app/gimpdnd.c
|
||
* app/gimpdrawable-preview.c
|
||
* app/gimphistogram.h
|
||
* app/gradient_editor.c
|
||
* app/gradient_select.c
|
||
* app/indicator_area.c
|
||
* app/info_window.c
|
||
* app/palette.c
|
||
* app/palette_select.c
|
||
* app/pattern_select.c
|
||
* app/qmask.c
|
||
* app/test_commands.c
|
||
* app/toolbox.c
|
||
* app/pdb/color_cmds.c
|
||
* app/tools/paint_options.c
|
||
* app/tools/tool_options_dialog.c
|
||
* tools/pdbgen/pdb/color.pdb: changed accordingly.
|
||
|
||
2001-04-10 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimpdock.c: started to add some more separator event handling.
|
||
|
||
* app/gimppalettepreview.c: we don't want a popup if n_colors == 0.
|
||
|
||
* app/test_commands.c: cleanup.
|
||
|
||
2001-04-10 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/tools/posterize.c
|
||
* plug-ins/common/fractaltrace.c
|
||
* plug-ins/common/illusion.c
|
||
* plug-ins/flame/flame.c
|
||
* plug-ins/gfig/gfig.c
|
||
* plug-ins/gimpressionist/general.c
|
||
* plug-ins/imagemap/imap_cmd_guides.c
|
||
* plug-ins/mosaic/mosaic.c
|
||
* plug-ins/winsnap/winsnap.c: merged i18n fixes from stable branch
|
||
|
||
2001-04-10 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/apptypes.h
|
||
* app/gimpdockbook.[ch]: new object (the notebook separated out
|
||
of gimpdock.[ch]).
|
||
|
||
* app/gimpdnd.h: new DND type "DIALOG".
|
||
|
||
* app/gimpdock.[ch]
|
||
* app/gimpdockable.[ch]: DND mostly works now.
|
||
|
||
* app/menus.c
|
||
* app/test_commands.[ch]: updated.
|
||
|
||
2001-04-08 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/bmp/bmp.c
|
||
* plug-ins/common/jpeg.c
|
||
* plug-ins/common/mpeg.c
|
||
* plug-ins/common/png.c
|
||
* plug-ins/common/tiff.c
|
||
* plug-ins/common/xpm.c
|
||
* plug-ins/twain/twain.c
|
||
* plug-ins/winsnap/winsnap.c: ported I18N initialization fixes from
|
||
stable branch
|
||
|
||
2001-04-07 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/paint_funcs.c
|
||
* app/paint_funcs.h
|
||
* app/paint_funcs_simd.S: removed the old files.
|
||
|
||
* tools/pdbgen/Makefile.am
|
||
* app/app_procs.c
|
||
* app/channel_ops.c
|
||
* app/channels_dialog.c
|
||
* app/desaturate.c
|
||
* app/disp_callbacks.c
|
||
* app/floating_sel.c
|
||
* app/gimage.c
|
||
* app/gimage_mask.c
|
||
* app/gimpchannel.c
|
||
* app/gimpdrawable-preview.c
|
||
* app/gimpdrawable.c
|
||
* app/gimpimage.c
|
||
* app/gimplayer.c
|
||
* app/gimplayermask.c
|
||
* app/global_edit.c
|
||
* app/image_map.c
|
||
* app/image_new.c
|
||
* app/layers_dialog.c
|
||
* app/temp_buf.c
|
||
* app/toolbox.c
|
||
* app/undo.c
|
||
* app/undo_history.c
|
||
* app/paint-funcs/paint-funcs.c
|
||
* app/tools/gimpairbrushtool.c
|
||
* app/tools/gimpblendtool.c
|
||
* app/tools/gimpbucketfilltool.c
|
||
* app/tools/gimpdodgeburntool.c
|
||
* app/tools/gimperasertool.c
|
||
* app/tools/gimpfliptool.c
|
||
* app/tools/gimpinktool.c
|
||
* app/tools/gimpiscissorstool.c
|
||
* app/tools/gimppaintbrushtool.c
|
||
* app/tools/gimppainttool.c
|
||
* app/tools/gimppenciltool.c
|
||
* app/tools/gimptexttool.c
|
||
* app/tools/gimptransformtool.c: changed accordingly.
|
||
|
||
2001-04-07 Simon Budig <simon@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/apptypes.h
|
||
* app/path_bezier.[ch]
|
||
* app/path_curves.[ch]
|
||
* app/pixmaps2.h
|
||
* app/tools/Makefile.am
|
||
* app/tools/gimpdrawtool.[ch]
|
||
* app/tools/path_tool.[ch]
|
||
* app/tools/path_toolP.h
|
||
* app/tools/tools.c
|
||
|
||
new files:
|
||
* app/tools/gimppathtool.c
|
||
* app/tools/gimppathtool.h
|
||
|
||
Reactivated (at least partially) the old new path tool. It
|
||
will undergo major restructuring. Especially the path stuff
|
||
will become proper objects. This definitely is work in progress
|
||
and totally unuseable now.
|
||
|
||
2001-04-07 Michael Natterer <mitch@gimp.org>
|
||
|
||
* configure.in
|
||
* app/Makefile.am
|
||
* app/paint-funcs/.cvsignore
|
||
* app/paint-funcs/Makefile.am: made the paint-funcs directory compile
|
||
so Prof can continue hacking it. The old stuff still needs to be
|
||
removed.
|
||
|
||
* app/apptypes.h
|
||
* app/gimpdock.[ch]
|
||
* app/gimpdockable.[ch]: new widgets (not used yet).
|
||
|
||
* app/menus.c
|
||
* app/test_commands.[ch]: untested testing code for the new widgets.
|
||
|
||
2001-04-07 Daniel Egger <egger@suse.de>
|
||
|
||
* app/paint-funcs/paint-funcs-gray.[ch]
|
||
* app/paint-funcs/paint-funcs-graya.[ch]
|
||
* app/paint-funcs/paint-funcs-indexed.[ch]
|
||
* app/paint-funcs/paint-funcs-indexeda.[ch]
|
||
* app/paint-funcs/paint-funcs-rgb.[ch]
|
||
* app/paint-funcs/paint-funcs-rgba.[ch]: Added new files seperated
|
||
and specialised from paint_funcs.c. Not used so far.
|
||
|
||
2001-04-07 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/tools/gimpairbrushtool.c
|
||
* app/tools/gimpdodgeburntool.[ch]
|
||
* app/tools/gimperasertool.c
|
||
* app/tools/gimppaintbrushtool.[ch]
|
||
* app/tools/gimppenciltool.c
|
||
* app/pdb/tools_cmds.c
|
||
* tools/pdbgen/pdb/tools.pdb: general cleanup of all paint tools we
|
||
have so far: reordered/renamed functions to make them look the same,
|
||
minor fixes in all files.
|
||
|
||
2001-04-06 Stanislav Brabec <utx@penguin.cz>
|
||
|
||
On request of Martin Weber <martweb@gmx.net>:
|
||
* plugins/common/tga.c: Fixed bug #52728 - problem in loading
|
||
compressed and uncompressed 15 bit tga, compressed 16 bit tga
|
||
files and removed a false warning for 32 bit tga files.
|
||
|
||
2001-04-02 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/detect_mmx.S
|
||
* app/arch/i386/mmx/detect_mmx.S
|
||
* app/arch/i386/mmx/paint_funcs_mmx.S
|
||
* app/arch/i386/mmx/paint_funcs_mmx.S.m4: split MMX detection out
|
||
of paint_funcs_mmx.S and replaced it with a working version (the
|
||
old one used to execute an illegal instruction on non-MMX systems).
|
||
|
||
2001-04-01 Simon Budig <simon@gimp.org>
|
||
|
||
* nearly all files:
|
||
|
||
Changed all GUI-Stuff back to Motif (see www.openmotif.org).
|
||
Finally we have a professional toolkit here. When you need some
|
||
reasons, why GTK+ sucks: See
|
||
http://unix.oreilly.com/news/motif_0400.html
|
||
|
||
2001-04-01 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/tools/Makefile.am
|
||
* app/tools/gimpairbrushtool.[ch]: back again.
|
||
|
||
* app/tools/gimptool.[ch]
|
||
* app/tools/paint_options.c
|
||
* app/tools/tool_manager.c
|
||
* app/tools/tools.c: changed accordingly.
|
||
|
||
2001-03-31 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/apptypes.h
|
||
* app/tools/tool_options_dialog.c: pass the ToolOptions to the
|
||
ToolOptionsResetFunc instead of a useless (void).
|
||
|
||
* app/tools/paint_options.[ch]
|
||
* app/tools/selection_options.[ch]: pass ToolOptions pointers here too.
|
||
|
||
* app/tools/gimpbezierselecttool.c
|
||
* app/tools/gimpblendtool.c
|
||
* app/tools/gimpbucketfilltool.c
|
||
* app/tools/gimpcolorpickertool.c
|
||
* app/tools/gimpcroptool.c
|
||
* app/tools/gimpdodgeburntool.c
|
||
* app/tools/gimpellipseselecttool.c
|
||
* app/tools/gimperasertool.c
|
||
* app/tools/gimpfliptool.c
|
||
* app/tools/gimpfreeselecttool.c
|
||
* app/tools/gimpfuzzyselecttool.c
|
||
* app/tools/gimpinktool.c
|
||
* app/tools/gimpiscissorstool.c
|
||
* app/tools/gimpmagnifytool.c
|
||
* app/tools/gimpmeasuretool.c
|
||
* app/tools/gimppaintbrushtool.c
|
||
* app/tools/gimppenciltool.c
|
||
* app/tools/gimprectselecttool.c
|
||
* app/tools/gimptexttool.c
|
||
* app/tools/gimptransformtool.c: changed accordingly. Removed many
|
||
"reset" callbacks which just redirected the call to
|
||
paint_options_reset() or selection_options_reset().
|
||
|
||
2001-03-31 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/undo.c: made undo_pop_paint() work again.
|
||
|
||
* app/tools/gimppainttool.[ch]: store the tool ID and the tool
|
||
type in the PaintUndo struct.
|
||
|
||
* app/tools/gimppenciltool.c: removed unused variable.
|
||
|
||
* app/tools/gimptool.c: removed and reordered STUB()s and cruft.
|
||
|
||
2001-03-31 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/tools/Makefile.am
|
||
* app/tools/gimpfliptool.[ch]: applied a patch from Dave Neary
|
||
which re-activates this tool. Enabled the tool options too.
|
||
|
||
* app/tools/gimpbezierselecttool.c
|
||
* app/tools/gimpbucketfilltool.c
|
||
* app/tools/gimpiscissorstool.c
|
||
* app/tools/gimptexttool.c: trivial fixes.
|
||
|
||
* app/tools/gimptool.c: removed cruft.
|
||
|
||
* app/tools/gimptransformtool.[ch]: a special case for the flip
|
||
tool, cleanup.
|
||
|
||
* app/tools/tools.c: register the flip tool.
|
||
|
||
2001-03-31 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/tools/bezier_select.[ch]
|
||
* app/tools/bezier_selectP.h
|
||
* app/tools/transform_core.[ch]
|
||
* app/tools/transform_tool.[ch]: removed.
|
||
|
||
* app/tools/Makefile.am
|
||
* po/POTFILES.in: changed accordingly.
|
||
|
||
* app/tools/gimpbezierselecttool.c: indentation fixes.
|
||
|
||
* app/tools/gimpdodgeburntool.[ch]: made cursor toggling work
|
||
again, cleanup.
|
||
|
||
* app/tools/gimpscaletool.[ch]
|
||
* app/tools/gimptool.c: minor cleanups like removing STUB()s.
|
||
|
||
* app/tools/tool_manager.c: applied patch from Dave Neary which
|
||
returns useful PDB strings for the paint tools again.
|
||
|
||
2001-03-31 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/undo.c: re-enabled transform undo. Fixes the transform tool
|
||
crashes.
|
||
|
||
* app/tools/gimptool.[ch]: put tool->ID back because the undo
|
||
system uses it. Also, a unique tool serial number will be not too
|
||
bad to have once we have module tools.
|
||
|
||
* app/tools/gimptransformtool.[ch]: changed accordingly.
|
||
|
||
2001-03-31 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/pixel_surround.[ch]: lowlevel stuff taken out of the transform
|
||
tool.
|
||
|
||
* app/tools/gimpscaletool.[ch]: minor cleanups, declare
|
||
gimp_scale_tool_register() publically.
|
||
|
||
* app/tools/gimptransformtool.[ch]: removed the PixelSurround stuff,
|
||
hardcode tr_tool->interactive to TRUE, removed the no_draw() function,
|
||
register the tool options, misc. other fixes and bad hacks that need
|
||
to go away.
|
||
|
||
(All this non-interactive stuff needs to be done outside the tool
|
||
system. A "non-interactive tool" is just pure nonsense)
|
||
|
||
* app/tools/gimptool.h: spacing.
|
||
|
||
* app/tools/tool_manager.c: tool_manager_register_tool_options():
|
||
return after warning, don't simply continue and crash.
|
||
|
||
* app/tools/tools.c: register the bezier select tool.
|
||
|
||
2001-03-30 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/devices.c
|
||
* app/disp_callbacks.c
|
||
* app/gimprc.c
|
||
* app/scroll.c
|
||
* app/tools/gimppainttool.[ch]
|
||
* modules/colorsel_water.c: removed the GTK_HAVE_SIX_VALUATORS stuff
|
||
in preparation of gtk 2.0 migration.
|
||
|
||
2001-03-30 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/fileops.[ch]
|
||
* app/fileopsP.h: removed...
|
||
|
||
* app/file-open.[ch]
|
||
* app/file-save.[ch]
|
||
* app/file-utils.[ch]: ...and split up into more hackable chunks.
|
||
(didn't change any logic, just moved the functions around)
|
||
|
||
* app/Makefile.am
|
||
* app/app_procs.c
|
||
* app/commands.c
|
||
* app/docindex.c
|
||
* app/gimpdnd.c
|
||
* app/gimprc.c
|
||
* app/menus.c
|
||
* app/pdb/fileops_cmds.c
|
||
* po/POTFILES.in
|
||
* tools/pdbgen/pdb/fileops.pdb: changed accordingly (mostly changing
|
||
#include's).
|
||
|
||
2001-03-30 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/app_procs.[ch]: some random cleanups in pre-historic code.
|
||
|
||
* app/fileops.c: useless cleanup (will be split into file-open.[ch]
|
||
and file-save.[ch] soon).
|
||
|
||
* app/gimppattern.c: implement GimpData's "duplicate" method.
|
||
|
||
* app/global_edit.c: cleanup in preparation for making a view on a
|
||
GimpContainer of cut buffers out of it.
|
||
|
||
* app/gradient_editor.c: don't let the name entry expand vertically.
|
||
|
||
* app/menus.c: typos.
|
||
|
||
2001-03-25 Seth Burgess <sjburges@gimp.org>
|
||
|
||
* app/tools/gimpbezierselecttool.[ch]: added new files from
|
||
Dave Neary <dneary@eircom.net> to give back bezier curves. This
|
||
might be entirely replaced at some future point.
|
||
|
||
* app/Makefile.am
|
||
* app/apptypes.h
|
||
* app/path.[ch]
|
||
* app/path_bezier.[ch]
|
||
* app/paths_dialog.c
|
||
* app/paths_dialogP.h
|
||
* app/tools/Makefile.am
|
||
* app/tools/gimpiscissorstool.c
|
||
* app/tools/gimptool.c: applied patches to let bezier work again.
|
||
|
||
2001-03-25 Seth Burgess <sjburges@gimp.org>
|
||
|
||
* app/tools/paint_options.c : applied 1-line patch by Dave Neary
|
||
<dneary@eircom.net> that takes away the warning on startup of
|
||
dodgeburn.
|
||
|
||
2001-03-25 18:16:50 Adam D. Moss <adam@gimp.org>
|
||
|
||
* app/convert.c: Define accessor function/macro for histogram
|
||
reads and writes. This slows us down a little because we avoid
|
||
some of the dirty tricks we used when we knew that the histogram
|
||
was a straight 3d array, so I've recovered some of the speed loss
|
||
by implementing a 5d accessor function with good locality of
|
||
reference. This change is the first step towards quantizing in a
|
||
more interesting colourspace than frumpy old RGB.
|
||
|
||
2001-03-24 Nathan Summers <rock@gimp.org>
|
||
|
||
* app/tools/gimpscaletool.[ch]: Made the scale tool work again.
|
||
Doesn't draw on the screen correctly, but works if you set the
|
||
size in the dialog box. Fixing the path tool should solve the
|
||
problem. Don't you love wierd dependancies?
|
||
|
||
* app/tools/gimptool.c: stubbed some more path tool functions.
|
||
|
||
* app/tools/gimptransformtool.[ch]: fixed some serious problems.
|
||
I can't believe Gimp linked before!
|
||
|
||
* app/tools/Makefile.am
|
||
* app/tools/tools.c
|
||
* tools/pdbgen/pdb/tools.pdb: changed accordingly
|
||
|
||
2001-03-23 Seth Burgess <sjburges@gimp.org>
|
||
|
||
* po-plug-ins/ro.po
|
||
* po-script-fu/ro.po
|
||
* po-libgimp/ro.po
|
||
* plug-ins/perl/po/ro.po
|
||
* plug-ins/perl/po/tr.po : added empty translation files so it would
|
||
compile again. Translators, please add these when you add a new
|
||
language, even if they're blank!
|
||
|
||
2001-03-23 Seth Burgess <sjburges@gimp.org>
|
||
|
||
* app/tools/Makefile.am
|
||
* app/tools/gimpdodgeburntool.[ch]: dodgeburn works again. Non-GUI
|
||
disabled, some dialog bugs (gtk complains profusely) hanging around
|
||
still.
|
||
|
||
* app/tools/gimptool.[ch]
|
||
* app/tools/gimppainttool.c
|
||
* app/tools/paint_options.c
|
||
* app/tools/tools.c: changed accordingly.
|
||
|
||
|
||
2001-03-23 Marius Andreiana <mandreiana@yahoo.com>
|
||
|
||
* configure.in: Added ro (Romanian) to ALL_LINGUAS
|
||
|
||
2001-03-22 Stanislav Brabec <utx@penguin.cz>
|
||
|
||
* app/tools/gimpbucketfilltool.c: Bucket fill threshold=0 must
|
||
be allowed.
|
||
|
||
2001-03-18 Sven Neumann <sven@gimp.org>
|
||
|
||
* tools/pdbgen/app.pl: guard inclusion of <process.h> by G_OS_WIN32
|
||
* tools/pdbgen/lib.pl: add include <string.h> if the generated code
|
||
used memcpy().
|
||
|
||
* tools/pdbgen/pdb/fileops.pdb: include process.h for G_OS_WIN32.
|
||
|
||
* libgimp/gimpbrushes_pdb.c
|
||
* libgimp/gimpdrawable_pdb.c
|
||
* libgimp/gimpgradients_pdb.c
|
||
* libgimp/gimpgradientselect_pdb.c
|
||
* libgimp/gimpimage_pdb.c
|
||
* libgimp/gimppaths_pdb.c
|
||
* libgimp/gimppatterns_pdb.c
|
||
* libgimp/gimpproceduraldb_pdb.c
|
||
* tools/pdbgen/pdb/fileops.pdb: regenerated
|
||
|
||
2001-03-16 Hans Breuer <hans@breuer.org>
|
||
|
||
* plug-ins/common/gqbist.c : #define PATH_MAX as _MAX_PATH
|
||
if it isn't defined
|
||
|
||
* plug-ins/common/gz.c : #include <io.h> for win32 _get_osfhandle ()
|
||
|
||
* plug-ins/gflare/gflare.c : #include <gtk/gtk.h> before using
|
||
G_OS_WIN32
|
||
|
||
* plug-ins/twain/twain.c : provide a main () entry point to allow
|
||
to build as console application as well
|
||
|
||
2001-03-16 Hans Breuer <hans@breuer.org>
|
||
|
||
* app/makefile.msc
|
||
* app/tools/makefile.msc : adapted to current state of file
|
||
renaming/restructuring. Probably will break again soon ...
|
||
|
||
* app/context_manager.c : needs register_tools () prototype
|
||
|
||
* app/gimplist.c
|
||
* app/gimppalette-import.c : #include <string.h> for memcpy, strcmp
|
||
and friends
|
||
|
||
* app/pdb/fileops_cmds.c : #include <process.h> /* for _getpid() */
|
||
(Yes I know that this is not the right place to change it, but hacking
|
||
pdbgen.pl to get platform specific headers is out of my scope)
|
||
|
||
* app/test_commands.c : explicit casts to (GimpSetDrawableFunc) make
|
||
it compile even with strict checks turned on.
|
||
|
||
* app/undo.c (undo_pop_paint) : return a value even if the function
|
||
does nothing at the moment (makes it compile)
|
||
|
||
* libgimp/gimp.def : updated
|
||
|
||
* libgimp/gimpcolorselector.h : include <gmodule.h> to make
|
||
gimp_color_selector_(un)register prototypes conform to their
|
||
implementation
|
||
|
||
* libgimp/gimpfeatures.h : reflect 1.3 version
|
||
|
||
* libgimpmath/gimpmatrix.c
|
||
* libgimpwidgets/gimpdialog.c : more <string.h> inclusion
|
||
|
||
* libgimp/makefile.msc : moved gimpadativesupersample.c to
|
||
libgimpcolor, which makes it reusable from the core, too.
|
||
|
||
* libgimp/gimp.def : updated
|
||
|
||
* libgimp/gimpproceduraledb.c : #include <string.h>
|
||
|
||
* libgimpcolor/gimpcolor.def
|
||
* libgimpcolor/makefile.msc : added gimpadaptivesupersample
|
||
|
||
* libgimpmath/gimpmatrix.c : #include <string.h> for memcmp
|
||
* libgimpwidgets/gimpdialog.c - " - for strcmp
|
||
|
||
|
||
2001-03-15 14:51:59Z Marc Lehmann <pcg@goof.com>
|
||
|
||
* gimptool-1.4.in: Fix --libs-noui so that plug-ins link against
|
||
the new library names.
|
||
* configure.in: Added the libtool-limitation-workaround to GIMP_LIBS*
|
||
env vars so that gimp-perl works again.
|
||
|
||
2001-03-15 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/common/screenshot.c: applied patch from
|
||
Tom Holroyd <tomh@po.crl.go.jp> which fixes wrong array size.
|
||
|
||
2001-03-14 Nathan Summers <rock@gimp.org>
|
||
|
||
* tools/gimptransformtool.[ch]: merged in all the old transform
|
||
tool code.
|
||
|
||
* tools/gimptool.h: added dummy GtkTypes for all the transform tools.
|
||
|
||
2001-03-13 Fatih Demir <kabalak@gtranslator.org>
|
||
|
||
* configure.in: Added "tr" into ALL_LINGUAS..
|
||
|
||
2001-03-12 Simon Budig <simon@gimp.org>
|
||
|
||
* pixmaps/wilber.xpm: Fixed one pixel.
|
||
|
||
2001-03-12 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimplayerlistview.c: added some help_data and tooltips.
|
||
|
||
* app/tools/Makefile.am
|
||
* app/tools/gimperasertool.[ch]: one more.
|
||
|
||
* app/tools/gimppaintbrushtool.[ch]
|
||
* app/tools/gimppenciltool.[ch]: made all paint tools look the same.
|
||
|
||
* app/tools/gimppainttool.c
|
||
* app/tools/gimptool.[ch]
|
||
* app/tools/paint_options.c
|
||
* app/tools/tools.c: changed accordingly.
|
||
|
||
* pixmaps/anchor.xpm: made it a bit smaller.
|
||
|
||
* pixmaps/refresh.xpm: replaced with the "Recurrence" icon from
|
||
evolution.
|
||
|
||
2001-03-12 Michael Natterer <mitch@gimp.org>
|
||
|
||
* pixmaps/Makefile.am
|
||
* pixmaps/edit.xpm: new pixmap. "Someone" needs to go over the
|
||
pixmaps one day ;)
|
||
|
||
* app/gimpdatafactoryview.c
|
||
* app/gimpdrawablelistview.c: use the new icon.
|
||
|
||
* app/floating_sel.c: stupid: the new gimp_layer_get_opacity()
|
||
accessor speaks in normalized [0.0..1.0] values, so the
|
||
floating selection was invisible after blindly using it.
|
||
|
||
* app/gimpimage.c: more stupid: a totally useless sanity clamping
|
||
made the composite preview ugly. Fixed.
|
||
|
||
* app/tools/tool_manager.c: why the heck did this never crash before:
|
||
don't dereference a NULL GDisplay pointer.
|
||
|
||
2001-03-11 Seth Burgess <sjburges@gimp.org>
|
||
|
||
* app/tools/Makefile.am
|
||
* app/tools/gimppenciltool.[ch]: no. 16 for your
|
||
pixelling pleasure.
|
||
|
||
* app/tools/gimptool.[ch]
|
||
* app/tools/paint_options.c
|
||
* app/tools/tools.c: changed accordingly.
|
||
|
||
2001-03-11 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/tools/Makefile.am
|
||
* app/tools/gimpiscissorstool.[ch]: no. 15 is alive.
|
||
|
||
* app/tools/gimptool.[ch]
|
||
* app/tools/selection_options.c
|
||
* app/tools/tools.c: changed accordingly.
|
||
|
||
2001-03-11 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimplayerlistview.c: minor cleanups.
|
||
|
||
* app/tools/Makefile.am
|
||
* app/tools/gimpblendtool.[ch]: back again.
|
||
|
||
* app/tools/gimptool.[ch]
|
||
* app/tools/paint_options.c
|
||
* app/tools/tools.c: changed accordingly.
|
||
|
||
2001-03-11 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/apptypes.h
|
||
* app/gimplayerlistview.[ch]: new subclass of GimpDrawableListView
|
||
(the upcoming replacement of the layers dialog). Connects to the
|
||
new GimpLayer signals using the layer container as signal proxy
|
||
(see below).
|
||
|
||
* app/gimpcontainerview.[ch]: made "set_container" a virtual
|
||
function. This is needed by the GimpLayerListView to
|
||
connect/disconnect signals. Subclasses implementing this method
|
||
MUST obey the following order of instructions:
|
||
|
||
1. disconnect from signals related to GimpContainerView->container
|
||
2. chain up (!!!)
|
||
3. connect to signals related to GimpContainerView->container
|
||
|
||
And yes, I will add DocBook files for all those new objects :)
|
||
|
||
* app/gimppreview.[ch]: made "border_color" a GimpRGB instead of
|
||
guchar[3]. Added gimp_preview_set_border_color().
|
||
|
||
* app/gimpcontainergridview.c
|
||
* app/gimplayerlistitem.c: use gimp_preview_set_border_color().
|
||
|
||
* app/gimpcontainerlistview.c
|
||
* app/gimpdrawablelistview.c: cleanup.
|
||
|
||
* app/gimpdrawablelistitem.c: we can safely asume that our parent
|
||
widget is a GimpDrawableListView and use it's "reorder_drawable"
|
||
function pointer (after checking that it's there).
|
||
|
||
* app/gimplistitem.c: connect the correct DND type when changing
|
||
the container of a list item with "reorderable" enabled.
|
||
|
||
* app/gimplayer.[ch]: added accessors and "*_changed" signals for
|
||
layer->mode, layer->opacity and layer->preserve_trans.
|
||
|
||
* app/disp_callbacks.c: fixed a FIXME: use the correct bucket fill
|
||
tool context again.
|
||
|
||
* app/tools/paint_options.[ch]: paint_mode_menu_new(): added a
|
||
boolean which toggles the "Behind" item on/off to the same
|
||
constructor can be used for all paint mode menus.
|
||
|
||
* app/tools/gimptoolinfo.c: rect. select is the standard tool again.
|
||
|
||
* app/brush_select.c
|
||
* app/floating_sel.c
|
||
* app/gimpimage.c
|
||
* app/layers_dialog.c
|
||
* app/pdb/layer_cmds.c
|
||
* app/tools/gimpeditselectiontool.c
|
||
* tools/pdbgen/pdb/layer.pdb: use the new layer accessors and the
|
||
paint_mode_menu constructor.
|
||
|
||
* app/commands.c
|
||
* app/gdisplay.c
|
||
* app/menus.c
|
||
* app/undo.c
|
||
* app/tools/gimppainttool.c
|
||
* app/tools/gimptool.c
|
||
* app/tools/paint_options.c
|
||
* app/tools/tool_manager.c: put the #warning's back inside
|
||
#ifdef __GNUC__
|
||
|
||
2001-03-10 Daniel Egger <egger@suse.de>
|
||
|
||
* plug-ins/common/sobel.c: Applied patch from
|
||
Austin Donnelly to fix rendering of the topmost
|
||
scanline.
|
||
|
||
2001-03-10 Garry R. Osgood <grosgood@rcn.com>
|
||
|
||
* app/Makefile.am
|
||
Inclusion of David's MMX code into Makefile now
|
||
depends on prior definition of HAVE_ASM_MMX.
|
||
* app/pdb/procedural_db.c
|
||
Line 276 cast of va_args to type GimpRGB seems
|
||
very problematical on SGI, as the va_args macro
|
||
expands to Extreme Ugliness and
|
||
(GimpRGB)(Extreme Ugliness) does not compile.
|
||
RH Linux seems indifferent and accepts either.
|
||
* app/commands.c
|
||
* app/gdisplay.c
|
||
* app/menus.c
|
||
* app/plug_in_cmds.c
|
||
* app/undo.c
|
||
* app/tools/gimppainttool.c
|
||
* app/tools/gimptool.c
|
||
* app/tools/paint_options.c
|
||
* app/tools/tool_manager.c
|
||
s|#<remark about extreme buggedness>|
|
||
/* #<remark about extreme buggedness> */|
|
||
Not all compilers are at peace with non-standard
|
||
pre-compiler directives. SGI MIPs compilers are
|
||
among the latter species.
|
||
|
||
2001-03-11 Tor Lillqvist <tml@iki.fi>
|
||
|
||
* plug-ins/common/winclipboard.c: Enhance to also be able to paste
|
||
BI_BITFIELDS images, 16- or 32-bit. Global indentation and spacing
|
||
fix (use cvs diff -bu2 to see the real differences).
|
||
|
||
2001-03-09 Nathan Summers <rock@gimp.org>
|
||
|
||
* app/tools/gimptransformtool.[ch]: it compiles, but probably isn't
|
||
useful
|
||
|
||
* app/tools/Makefile.am: changed accordingly
|
||
|
||
2001-03-09 Zach Beane <xach@mint.net>
|
||
|
||
* TODO.xml: Added "Open into layer" entry.
|
||
|
||
2001-03-09 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/tools/Makefile.am
|
||
* app/tools/rect_selectP.h: removed.
|
||
|
||
* app/tools/gimpfreeselecttool.[ch]
|
||
* app/tools/gimpfuzzyselecttool.[ch]: reactivated.
|
||
|
||
* app/tools/gimptool.[ch]: removed STUB()s and old crap.
|
||
|
||
* app/tools/tools.c: register the new tools.
|
||
|
||
* app/disp_callbacks.c
|
||
* app/tools/selection_options.c: changed accordingly.
|
||
|
||
* app/apptypes.h
|
||
* app/tools/gimprectselecttool.c: cleanup.
|
||
|
||
2001-03-09 Nathan Summers <rock@gimp.org>
|
||
|
||
* app/tools/gimptransformtool.[ch]: More work on the transform tool.
|
||
Still does not compile, but it's much closer.
|
||
|
||
* app/tools/Makefile.am
|
||
* app/apptypes.h
|
||
* app/undo.c: changed accordingly
|
||
|
||
2001-03-08 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/tools/Makefile.am
|
||
* app/tools/gimpellipseselecttool.[ch]
|
||
* app/tools/gimprectselecttool.[ch]: new objects based on a (heavily
|
||
modified) patch by Dave Neary <dneary@eircom.net>.
|
||
|
||
* app/tools/gimpfuzzyselecttool.c
|
||
* app/tools/gimptool.[ch]
|
||
* app/tools/selection_options.c
|
||
* app/tools/tools.c: changed accordingly.
|
||
|
||
2001-03-08 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/apptypes.h
|
||
* app/channel_ops.c
|
||
* app/commands.c
|
||
* app/convert.[ch]
|
||
* app/fileops.c
|
||
* app/floating_sel.c
|
||
* app/gimage.h
|
||
* app/gimage_mask.[ch]
|
||
* app/gimpchannel.c
|
||
* app/global_edit.h
|
||
* app/image_map.c
|
||
* app/layer_select.[ch]
|
||
* app/layers_dialogP.h
|
||
* app/lc_dialog.c
|
||
* app/resize.c
|
||
* app/toolbox.c
|
||
* app/undo.h
|
||
* app/undo_history.c
|
||
* app/xcf.c
|
||
* app/tools/gimpbycolorselecttool.h
|
||
* app/tools/gimpcroptool.[ch]
|
||
* app/tools/gimpfuzzyselecttool.c
|
||
* app/tools/gimppainttool.c
|
||
* app/tools/transform_core.h: removed the GImage typedef, cleanup.
|
||
|
||
2001-03-08 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/tools/Makefile.am
|
||
* app/tools/[almost *]: lots of files renamed to gimp*tool.[ch]
|
||
|
||
* app/commands.c
|
||
* app/context_manager.c
|
||
* app/disp_callbacks.c
|
||
* app/gdisplay.c
|
||
* app/gimage.c
|
||
* app/gimage_mask.c
|
||
* app/gimpdnd.c
|
||
* app/gimprc.c
|
||
* app/global_edit.c
|
||
* app/info_window.c
|
||
* app/scale.c
|
||
* app/scroll.c
|
||
* app/undo.c
|
||
* app/pdb/text_tool_cmds.c
|
||
* app/pdb/tools_cmds.c
|
||
* po/POTFILES.in
|
||
* tools/pdbgen/Makefile.am
|
||
* tools/pdbgen/enums.pl
|
||
* tools/pdbgen/pdb/text_tool.pdb
|
||
* tools/pdbgen/pdb/tools.pdb: changed accordingly.
|
||
|
||
2001-03-06 Simon Budig <simon@gimp.org>
|
||
|
||
* app/mit.[ch]: Increased Mitch's age by one. Hopefully
|
||
this won't break everything.
|
||
|
||
2001-03-06 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimage.[ch]: removed the layer mask functions.
|
||
|
||
* app/gimpchannel.[ch]: added a boolean "dummy" parameter to
|
||
gimp_channel_copy() so it has the same signature as
|
||
gimp_layer_copy() and can be used by the GimpDrawableListView to
|
||
generically duplicate drawables.
|
||
|
||
* app/gimpcontainerview.c: call "select_item" with a NULL item
|
||
before changing the underlying GimpContainer so subclasses have
|
||
a chance to update (e.g. set button sensitivity).
|
||
|
||
* app/gimpdnd.c: folded all the GtkType comparing code into a
|
||
utility function (much more readable now).
|
||
|
||
* app/gimpdrawablelistview.[ch]: activated the "raise", "lower",
|
||
"duplicate" and "delete" buttons. I'm not really happy with all
|
||
those function pointers passed to the constructor (and the dummy
|
||
parameters I've added to some GimpChannel functions) -- OTOH the
|
||
generic view maybe worth the "gboolean dummy" cruft hanging around
|
||
in the channel class.
|
||
|
||
* app/gimplayer.[ch]: removed the "apply_mask", "edit_mask" and
|
||
"show_mask" booleans ...
|
||
|
||
* app/gimplayermask.[ch]: .. and added them here together with
|
||
proper accessors and "*_changed" signals.
|
||
|
||
This also makes the layer mask undo code much clearer as we don't
|
||
have to store the booleans separately.
|
||
|
||
* app/gimplayerlistitem.c: badly hacked to acheive the correct
|
||
indicator being drawn around the active drawable. This needs
|
||
a new GimpPreview function for setting the border color.
|
||
|
||
* app/gimplistitem.c: smaller horizontal spacing.
|
||
|
||
* app/gimppreview.[ch]: added the "border_width" parameter also to
|
||
gimp_preview_set_size() so we can modify all previews the same way
|
||
after creation.
|
||
|
||
* app/layers_dialog.c: no need to push an undo group around
|
||
the "duplicate layer" code. Was this an artefact or did I miss
|
||
something here ???
|
||
|
||
* app/channel_ops.c
|
||
* app/channels_dialog.c
|
||
* app/gimage_mask.c
|
||
* app/gimpcontainergridview.c
|
||
* app/gimpcontainerlistview.c
|
||
* app/gimpdrawablelistitem.c
|
||
* app/gimpimage.[ch]
|
||
* app/qmask.c
|
||
* app/test_commands.c
|
||
* app/undo.c
|
||
* app/xcf.c
|
||
* app/pdb/channel_cmds.c
|
||
* tools/pdbgen/pdb/channel.pdb
|
||
* app/pdb/selection_cmds.c
|
||
* tools/pdbgen/pdb/selection.pdb: changed accordingly.
|
||
|
||
* app/pdb/internal_procs.c
|
||
* app/pdb/layer_cmds.c
|
||
* libgimp/gimplayer_pdb.[ch]
|
||
* tools/pdbgen/pdb/layer.pdb: commented out the layer mask accessors
|
||
from the perl code, so the functions temporarily disappeared all
|
||
over the place.
|
||
|
||
* plug-ins/Makefile.am: don't build XJT until the layer mask stuff
|
||
is back.
|
||
|
||
* pixmaps/eye.xpm: cropped it to it's minimal size.
|
||
|
||
2001-03-05 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/apptypes.h
|
||
* app/gimpimage-undo.[ch]
|
||
* app/gimpundo.[ch]
|
||
* app/gimpundostack.[ch]: added new GimpUndo and GimpUndoStack objects
|
||
which will be used for the upcoming new undo system. Actually my
|
||
current plan for the undo system is to keep it pretty much as it is...
|
||
|
||
* app/gimpimage.[ch]: added new GimpUndoStacks but temporarily kept
|
||
old GSLists around, so I don't break everything now.
|
||
|
||
2001-03-04 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimpbrushpreview.c
|
||
* app/gimpgradientpreview.c
|
||
* app/gimppalettepreview.c
|
||
* app/gimppatternpreview.c
|
||
* app/gimptoolinfopreview.c: removed all dnd code ...
|
||
|
||
* app/gimppreview.c: ... and put it where is belongs.
|
||
|
||
* app/gimpcontext.c: use g_type_is_a() instead of comparing the
|
||
types directly.
|
||
|
||
* app/gimpdnd.[ch]: same g_type_is_a() fix here. New function
|
||
gimp_dnd_viewable_source_unset().
|
||
|
||
* app/gimpdrawablelistitem.c: gtk_signal_connect_while_alive() to
|
||
GimpDrawable's "visibility_changed" fixes a crash here.
|
||
|
||
* app/gimplayerlistitem.c: check more strictly if DND reordering
|
||
of layers is allowed.
|
||
|
||
* app/gimplistitem.c: more DND reordering checking.
|
||
Start drawing the drop indicator at x = name_label->allocation.x
|
||
(looks better IMHO).
|
||
|
||
2001-03-04 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/apptypes.h
|
||
* app/gimplayerlistitem.[ch]: new widget derived from
|
||
GimpDrawableListItem (additionally displays the layer mask),
|
||
|
||
* app/gimplistitem.[ch]: added the preview_size to the struct so
|
||
subclasses can create previews at arbitrary times. Removed the
|
||
"preview_size" parameter from "set_viewable".
|
||
|
||
* app/gimpimage.[ch]: removed the layer mask functions because
|
||
they belong to GimpLayer.
|
||
|
||
* app/gimplayer.[ch]: folded the layer mask code from GimpImage
|
||
into GimpLayer's layer mask functions. Added a "mask_changed"
|
||
signal which is emitted when a mask is added/removed. Added
|
||
"push_undo" parameters to the functions so we can use them from
|
||
the undo system.
|
||
|
||
* app/undo.c: instead of badly poking the GimpLayer struct, use
|
||
the accessors with push_undo = FALSE.
|
||
|
||
* app/gimage_mask.c
|
||
* app/gimpdrawablelistitem.c
|
||
* app/layers_dialog.c
|
||
* app/xcf.c
|
||
* app/pdb/image_cmds.c
|
||
* tools/pdbgen/pdb/image.pdb: changed accordingly.
|
||
|
||
2001-03-04 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimpdrawable.[ch]: new function gimp_drawable_set_visible().
|
||
Renamed gimp_drawable_visible() to gimp_drawable_get_visible().
|
||
Added a "visibility_changed" signal.
|
||
|
||
* app/gimplistitem.[ch]: new virtual function "set_viewable"
|
||
which allows subclasses to connect to the viewable's signals.
|
||
|
||
* app/gimpdrawablelistitem.[ch]: added an eye button. Implement
|
||
"set_viewable" to connect to the "visibility_changed" signal.
|
||
|
||
* app/gimpchannel.[ch]: removed unused function
|
||
gimp_channel_toggle_visibility().
|
||
|
||
* app/channels_dialog.c
|
||
* app/floating_sel.c
|
||
* app/gimage_mask.c
|
||
* app/gimpimage.c
|
||
* app/gimplayer.c
|
||
* app/layers_dialog.c
|
||
* app/xcf.c
|
||
* app/pdb/channel_cmds.c
|
||
* app/pdb/layer_cmds.c
|
||
* app/pdb/pdb_glue.h
|
||
* tools/pdbgen/pdb/channel.pdb
|
||
* tools/pdbgen/pdb/layer.pdb: removed direct access of
|
||
drawable->visible and use the functions instead. Also makes PDB
|
||
code generation nicer.
|
||
|
||
* pixmaps/eye.xpm: cropped it a bit.
|
||
|
||
2001-03-04 Zbigniew Chyla <cyba@gnome.pl>
|
||
|
||
* app/commands.c (image_scale_callback),
|
||
libgimpwidgets/gimpchainbutton.c (gimp_chain_button_destroy),
|
||
libgimpwidgets/gimpcolorbutton.c (gimp_color_button_destroy):
|
||
libgimpwidgets/gimppixmap.c (gimp_color_button_destroy):
|
||
Move variable assignments out of assertions to allow compilation
|
||
with "G_DISABLE_ASSERT" defined.
|
||
|
||
2001-03-04 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/preferences_dialog.c (prefs_save_callback): applied a patch
|
||
from David Odin <David.Odin@bigfoot.com> that fixes a typo in the code.
|
||
|
||
2001-03-04 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/apptypes.h
|
||
* app/gimpdrawablelistitem.[ch]
|
||
* app/gimplistitem.[ch]: new widgets capable of reordering
|
||
themselves using DND.
|
||
|
||
* app/gimpcontainerlistview.c: removed stuff which is now done
|
||
by the GimpListItem.
|
||
|
||
* app/gimpdnd.[ch]: new function gimp_dnd_get_drag_data(widget)
|
||
which returns a GimpViewable using the widget's drag callback.
|
||
|
||
* app/gimpdrawablelistview.c: implement GimpContainerView's
|
||
"insert_item" method and enable reordering for the created
|
||
GimpListItem.
|
||
|
||
2001-03-03 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/appenums.h: renamed ZoomType to GimpZoomZype and added it
|
||
here.
|
||
|
||
* app/commands.c
|
||
* app/disp_callbacks.c
|
||
* app/nav_window.c
|
||
* app/scale.[ch]: changed accordingly.
|
||
|
||
* app/tools/Makefile.am
|
||
* app/tools/magnify.[ch]: back as object.
|
||
|
||
* app/tools/tool.c: removed the old ToolInfo entry.
|
||
|
||
* app/tools/tools.c: register it.
|
||
|
||
2001-03-02 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/tools/Makefile.am
|
||
* app/tools/gimpselectiontool.[ch]: new files ported by
|
||
Dave Neary <dneary@eircom.net>. Changed them a bit to inherit
|
||
from GimpDrawTool and added implementations of "modifier_key"
|
||
and "oper_update" because they are shared by 4 of the old
|
||
selection tools.
|
||
|
||
2001-03-01 Daniel Egger <egger@suse.de>
|
||
|
||
* app/fileops.c: Applied patch from Dave Neary to fix
|
||
bug 37633 "File->Revert doesn't resize canvas".
|
||
|
||
2001-03-01 Stanislav Brabec <utx@penguin.cz>
|
||
|
||
* plugins/common/despeckle.c: Fixed black_level range.
|
||
Valid range should be -1..255, not 0..256, because comaparison
|
||
is > and <=. Bug became visible after last Martin Weber's fix.
|
||
There must be for both black and white levels one extra value
|
||
to cover all numbers 0..255.
|
||
|
||
2001-03-01 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/tools/crop.[ch]: we need to override GimpDrawTool's "draw"
|
||
method to actually see something.
|
||
|
||
* app/channels_dialog.c
|
||
* app/layers_dialog.c: fixed the crash introduced by the migration
|
||
of gimage->layers and gimage->channels to GimpContainer.
|
||
|
||
2001-02-20 Nathan Summers <rock@gimp.org>
|
||
|
||
* app/tools/gimptransformtool.c
|
||
* app/tools/gimptransformtool.h: Started work on the TransformCore.
|
||
Very incomplete. Needs a friendly visit from genmarshal.pl. Not yet
|
||
included in the build. Move along now, folks, there's nothing more to
|
||
see.
|
||
|
||
2001-02-28 Nathan Summers <rock@gimp.org>
|
||
|
||
* app/tools/crop.c
|
||
* app/tools/crop.h: Fixed a couple instances where the crop tool was
|
||
incorrectly inheriting from GimpTool instead of GimpDrawTool. The crop
|
||
tool still does not work completely correctly on my machine. It does
|
||
not show the lines and sometimes it includes garbage.
|
||
|
||
2001-02-28 Sven Neumann <sven@gimp.org>
|
||
|
||
Please, do not change the files in app/pdb directly, they are
|
||
autogenerated. And, please, whatever you change, type make in
|
||
the toplevel srcdir, since pdbgen might decide it has to change
|
||
some more files because of your changes.
|
||
|
||
* app/pdb/layer_cmds.c
|
||
* app/pdb/tools_cmds.c
|
||
* app/tools/crop.c
|
||
* libgimp/gimpenums.h
|
||
* plug-ins/script-fu/script-fu-constants.c
|
||
* tools/pdbgen/enums.pl
|
||
* tools/pdbgen/pdb/tools.pdb: made everything compile again
|
||
|
||
2001-02-27 Jay Cox <jaycox@gimp.org>
|
||
|
||
* app/appenums.h
|
||
* app/gimplayer.c
|
||
* app/layers_dialog.c: When adding a layer mask allow the option
|
||
of using the current selection (or it's inverse) to initialise
|
||
the mask.
|
||
|
||
2001-02-28 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gdisplay.c
|
||
* app/gimage.c. #include "tools/tool.h"
|
||
|
||
* app/tools/edit_selection.[ch]: the arrow_key function is not
|
||
a method of edit_selection but of any tool that needs it.
|
||
|
||
* app/tools/gimppaintbrushtool.c: removed variables.
|
||
|
||
* app/tools/move.c: use the arrow_key function.
|
||
|
||
* app/tools/tool_manager.h: removed the include of "tool.h"
|
||
|
||
2001-02-28 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/tools/Makefile.am
|
||
* app/tools/edit_selection.[ch]: back as real tool which gets
|
||
temporarily pushed to the tool_manager's new tool stack.
|
||
|
||
* app/tools/move.c
|
||
* app/tools/text_tool.c: call the edit_selection stuff again.
|
||
|
||
* app/tools/tool.c: added a STUB().
|
||
|
||
* app/tools/tool_manager.[ch]: implemented tool_manager_push_tool()
|
||
and tool_manager_pop_tool().
|
||
|
||
2001-02-28 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/tools/Makefile.am
|
||
* app/tools/bucket_fill.[ch]: one more...
|
||
|
||
* app/tools/fuzzy_select.c: everything commented out except the
|
||
find_region stuff.
|
||
|
||
* app/tools/gimpcolorpickertool.c: cosmetic.
|
||
|
||
* app/tools/paint_options.c: #include "bucket_fill.h"
|
||
|
||
* app/tools/tool.[ch]: removed STUB()'s.
|
||
|
||
* app/tools/tools.c: register it.
|
||
|
||
2001-02-28 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/tools/Makefile.am
|
||
* app/tools/ink.[ch]: back as object.
|
||
|
||
* app/tools/paint_options.c: #include "ink.h"
|
||
|
||
* app/tools/tool.h: removed the type #define.
|
||
|
||
* app/tools/tools.c: register it.
|
||
|
||
2001-02-28 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/context_manager.[ch]: made the global_paint_options public.
|
||
|
||
* app/tools/gimptoolinfo.[ch]: added a "tool_context" boolean to
|
||
the constructor and create a private context for the tool
|
||
initialized with global_paint_options' values.
|
||
|
||
* app/tools/tool_manager.[ch]: changed tool_manager_register_tool()
|
||
accordingly.
|
||
|
||
* app/tools/gimpcolorpickertool.c
|
||
* app/tools/measure.c
|
||
* app/tools/move.c
|
||
* app/tools/text_tool.c: changed accordingly.
|
||
|
||
* app/tools/paint_options.[ch]: added the fade out and gradient
|
||
options here so they can be used by all paint tools.
|
||
|
||
* app/tools/gimppaintbrushtool.c: removed them here. Changed
|
||
the non_gui stuff: removed the non_gui_paint_func and handle
|
||
the non_gui stuff in the normal paint method. Allocate a
|
||
non_gui_paintbrush instead of the old non_gui_paint_core.
|
||
|
||
The non_gui stuff will change totally and will be handled
|
||
by GimpPaintTool only.
|
||
|
||
* app/tools/tool.c: removed the STUB()'s again.
|
||
|
||
2001-02-27 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/tools/Makefile.am: build the measure tool again.
|
||
|
||
* app/tools/gimpcolorpickertool.c: correct prototypes for some
|
||
functions so we don't get warnings about incompatible assignments
|
||
in "class_init", chain up in "control".
|
||
|
||
* app/tools/gimpdrawtool.c: added an implementation of "control"
|
||
which can be called from subclasses so we don't need to call
|
||
GimpDrawTool's methods directly from there.
|
||
|
||
* app/tools/gimppaintbrushtool.[ch]: create it's tool options so it
|
||
doesn't crash. Commented out the non_gui stuff. We need a different
|
||
interface for this.
|
||
|
||
* app/tools/gimppainttool.[ch]: some cleanups: call the draw tool's
|
||
"control" function, fixed "cursor_update", fixed indentation.
|
||
|
||
* app/tools/measure.[ch]: made it work again (properly subclass
|
||
GimpDrawTool).
|
||
|
||
* app/tools/tool.c: re-added the non_gui paintbrush STUB()'s
|
||
|
||
* app/tools/tools.c: don't allocate the non_gui stuff.
|
||
GimpPaintTool is an abstract superclass, so we cannot create
|
||
an instance of it. Moreover, the current non_gui stuff assumes
|
||
that there is something like a "paint_core" and changes it's
|
||
virtual function pointers, breaking the object system totally.
|
||
|
||
2001-02-27 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/common/header.c: applied patch from Chuck Mason
|
||
<chuckjr@unbounded.com> that fixes wrong output of header plug-in.
|
||
|
||
2001-02-27 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/apptypes.h
|
||
* app/Makefile.am
|
||
* app/gimpdrawablelistview.[ch]: new widget. The upcoming replacement
|
||
for the layers and channels dialogs.
|
||
|
||
* app/test_commands.[ch]: put the test dialogs here...
|
||
|
||
* app/commands.[ch]: ... and made this one clean again.
|
||
|
||
* app/gimpcontainergridview.c
|
||
* app/gimpcontainerlistview.c
|
||
* app/gimpcontainerview.[ch]: some signal handling fine tuning.
|
||
|
||
* app/gimpimage.[ch]: emits "active_layer_changed" and
|
||
"active_channel_changed" signals now. The semantics of
|
||
gimage->active_layer and gimage->active_channel have changed a bit.
|
||
We now have either an active layer _or_ and active channel (there
|
||
is no active layer any more if a channel is active).
|
||
|
||
* app/channel_ops.c
|
||
* app/floating_sel.c
|
||
* app/gdisplay.c
|
||
* app/layers_dialog.c
|
||
* app/menus.c: changed accordingly.
|
||
|
||
* app/tools/gimpcolorpickertool.c: actually assign the draw_class
|
||
vraiable in the class_init function.
|
||
|
||
* app/tools/gimpdrawtool.[ch]
|
||
* app/tools/tool.c: removed the _new() functions because these
|
||
objects are abstract superclasses. Did some cleanup.
|
||
Nathan, please configure you editor to _not_ produce any tabs
|
||
in the source code.
|
||
|
||
* app/tools/gimppaintbrushtool.[ch]: "blurb" and "help" are tagged
|
||
with _(), not N_(). Put the register function to the header.
|
||
|
||
* po/POTFILES.in: made it compile again.
|
||
|
||
2001-02-26 Nathan Summers <rock@gimp.org>
|
||
|
||
* app/tools/gimpdrawtool.c
|
||
* app/tools/gimpdrawtool.h
|
||
* app/tools/gimppainttool.c
|
||
* app/tools/gimppainttool.h
|
||
* app/tools/gimppainttool_kernels.h: Created GimpDrawTool and
|
||
GimpPaintTool, real classes that replace the old DrawCore and
|
||
PaintCore
|
||
|
||
* app/Makefile.am
|
||
* app/apptypes.h
|
||
* app/context_manager.c
|
||
* app/gdisplay.c
|
||
* app/gimage_mask.c
|
||
* app/gimpbrush.c
|
||
* app/gimpbrush.h
|
||
* app/gimpbrushgenerated.c
|
||
* app/gimpbrushpipe.c
|
||
* app/gimpcontext.c
|
||
* app/info_window.c
|
||
* app/path_transform.h
|
||
* app/undo.c
|
||
* app/pdb/tools_cmds.c
|
||
* app/tools/Makefile.am
|
||
* app/tools/bezier_selectP.h
|
||
* app/tools/gimptoolinfo.c
|
||
* app/tools/measure.c
|
||
* app/tools/measure.h
|
||
* app/tools/move.c
|
||
* app/tools/paint_options.c
|
||
* app/tools/tool.c
|
||
* app/tools/tool.h
|
||
* app/tools/tools.c
|
||
* app/tools/transform_core.h
|
||
* tools/pdbgen/Makefile.am: changed accordingly
|
||
|
||
* libgimp/Makefile.am: fixed glitch in build
|
||
|
||
* app/tools/gimpcolorpickertool.c
|
||
* app/tools/gimpcolorpickertool.h
|
||
* app/tools/gimppaintbrushtool.c
|
||
* app/tools/gimppaintbrushtool.h:new names
|
||
|
||
* app/draw_core.c
|
||
* app/draw_core.h
|
||
* app/tools/color_picker.c
|
||
* app/tools/color_picker.h
|
||
* app/tools/paint_core.c
|
||
* app/tools/paint_core.h
|
||
* app/tools/paint_core_kernels.h
|
||
* app/tools/paintbrush.c
|
||
* app/tools/paintbrush.h: removed
|
||
|
||
2001-02-25 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/channel_ops.c
|
||
* app/channels_dialog.c
|
||
* app/commands.c
|
||
* app/floating_sel.c
|
||
* app/gdisplay.c
|
||
* app/gimpimage.[ch]
|
||
* app/layer_select.c
|
||
* app/layers_dialog.c
|
||
* app/undo.c
|
||
* app/xcf.c
|
||
* app/tools/move.c: remove direct access of gimage->active_layer and
|
||
gimage->active_channel. Reading access is of course harmless, but
|
||
gimp_image_set_active_blah() will trigger a signal emission soon.
|
||
|
||
It will probably be neccessary to change the functions to accept
|
||
NULL layers and channels to acheive exactly what weird places like
|
||
floating_sel.c did before by setting it directly.
|
||
|
||
* gimptool-1.4.in
|
||
* libgimp/Makefile.am
|
||
* libgimpcolor/Makefile.am
|
||
* libgimpmath/Makefile.am
|
||
* libgimpwidgets/Makefile.am
|
||
* plug-ins/libgck/gck/Makefile.am: made linking against stable
|
||
GIMP installed in the same prefix work again by renaming all our
|
||
libraries explicitly to libgimp<foo>-1.3.* (not as part of the
|
||
libtool release but as part of the library name). Removed the
|
||
libtool release to avoid double versioning. This has to be
|
||
hardcoded in the libraries' Makefile.am ...
|
||
|
||
* app/Makefile.am
|
||
* plug-ins/FractalExplorer/Makefile.am
|
||
* plug-ins/Lighting/Makefile.am
|
||
* plug-ins/MapObject/Makefile.am
|
||
* plug-ins/bmp/Makefile.am
|
||
* plug-ins/common/Makefile.am
|
||
* plug-ins/common/mkgen.pl
|
||
* plug-ins/dbbrowser/Makefile.am
|
||
* plug-ins/faxg3/Makefile.am
|
||
* plug-ins/fits/Makefile.am
|
||
* plug-ins/flame/Makefile.am
|
||
* plug-ins/fp/Makefile.am
|
||
* plug-ins/gap/Makefile.am
|
||
* plug-ins/gdyntext/Makefile.am
|
||
* plug-ins/gfig/Makefile.am
|
||
* plug-ins/gflare/Makefile.am
|
||
* plug-ins/gfli/Makefile.am
|
||
* plug-ins/gimpressionist/Makefile.am
|
||
* plug-ins/helpbrowser/Makefile.am
|
||
* plug-ins/ifscompose/Makefile.am
|
||
* plug-ins/imagemap/Makefile.am
|
||
* plug-ins/maze/Makefile.am
|
||
* plug-ins/mosaic/Makefile.am
|
||
* plug-ins/pagecurl/Makefile.am
|
||
* plug-ins/plugin-helper/Makefile.am
|
||
* plug-ins/print/Makefile.am
|
||
* plug-ins/rcm/Makefile.am
|
||
* plug-ins/script-fu/Makefile.am
|
||
* plug-ins/sel2path/Makefile.am
|
||
* plug-ins/sgi/Makefile.am
|
||
* plug-ins/webbrowser/Makefile.am
|
||
* plug-ins/xjt/Makefile.am: ... while all other Makefiles can simply
|
||
link against "libgimp<foo>-$(LT_RELEASE).la"
|
||
|
||
2001-02-24 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/pixmaps2.h: commented out "text_width" and "text_height"
|
||
|
||
* app/tools/Makefile.am
|
||
* app/tools/text_tool.[ch]: "It was really dead, Jim!"
|
||
|
||
* app/tools/tool.c: removed STUBs
|
||
|
||
* app/tools/tools.c: register it.
|
||
|
||
2001-02-24 Michael Natterer <mitch@gimp.org>
|
||
|
||
* TODO.xml: updated.
|
||
|
||
* app/appenums.h
|
||
* app/apptypes.h: prefixed the cursor stuff with "Gimp", added
|
||
the new stock tool cursor enum. Removed the old ToolType enum.
|
||
|
||
* app/cursorutil.[ch]
|
||
* app/gdisplay.[ch]: removed the old ToolType enum and prefixed
|
||
the functions with "gimp_". Also stripped all "toggle cursor"
|
||
stuff from the cursor code, so the new API is easier and not
|
||
depending on the tool system.
|
||
|
||
All existing tool cursors can be used via the new stock tool
|
||
cursor enum, so no tool has to fiddle around with bitmap cursors.
|
||
There will be an cursorutil function for registering stock tool
|
||
cursor types on the fly.
|
||
|
||
* app/disp_callbacks.c
|
||
* app/scroll.[ch]: moved the display scrollbar callbacks from
|
||
scroll.[ch] to disp_callbacks.c. Removed some crap from scroll.h
|
||
|
||
* app/tools/tool.[ch]: removed the BitmapCursor pointers from the
|
||
tool class struct and add cursor and toggle cursor IDs to the
|
||
GimpTool struct. Work in progress.
|
||
|
||
* app/dialog_handler.c
|
||
* app/tools/bezier_select.c
|
||
* app/tools/blend.c
|
||
* app/tools/bucket_fill.c
|
||
* app/tools/by_color_select.c
|
||
* app/tools/clone.c
|
||
* app/tools/color_picker.c
|
||
* app/tools/convolve.c
|
||
* app/tools/crop.c
|
||
* app/tools/dodgeburn.c
|
||
* app/tools/edit_selection.c
|
||
* app/tools/ellipse_select.c
|
||
* app/tools/flip_tool.c
|
||
* app/tools/free_select.c
|
||
* app/tools/fuzzy_select.c
|
||
* app/tools/ink.c
|
||
* app/tools/iscissors.c
|
||
* app/tools/magnify.c
|
||
* app/tools/measure.c
|
||
* app/tools/move.c
|
||
* app/tools/paint_core.[ch]
|
||
* app/tools/perspective_tool.c
|
||
* app/tools/rect_select.c
|
||
* app/tools/rotate_tool.c
|
||
* app/tools/scale_tool.c
|
||
* app/tools/shear_tool.c
|
||
* app/tools/text_tool.c
|
||
* app/tools/transform_core.[ch]: changed accordingly. Did this
|
||
"blind" for most tools because they don't compile. The changes are
|
||
minimal, so there should be no conflicts.
|
||
|
||
2001-02-24 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/commands.[ch]: added cmd_callbacks for the toolbox and
|
||
the preferences dialog.
|
||
|
||
* app/context_manager.c: cleanup.
|
||
|
||
* app/gimppreview.[ch]: made gimp_preview_render() public.
|
||
|
||
* app/gimptoolinfopreview.c
|
||
* app/tools/gimptoolinfo.c: the tool previews look nice now but
|
||
are still ugly implemented (it renders tons of temp_bufs on each
|
||
state change).
|
||
|
||
* app/indicator_area.[ch]: pass a context to the constructor.
|
||
|
||
* app/menus.c: don't call the toolbox and the prefs dialog
|
||
directly but dispatch via commands.[ch]
|
||
|
||
* app/preferences_dialog.[ch]
|
||
* app/toolbox.[ch]: renamed the constructor / raise function, cleanup.
|
||
|
||
* app/tools/color_picker.c: tried to get the shortcut working again.
|
||
|
||
* app/tools/paint_options.c: the brush dialog's paint options
|
||
are shown/hidden from the context manager now.
|
||
|
||
2001-02-23 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/app_procs.c: removed crap from ancient times when tools
|
||
used to be an enum.
|
||
|
||
* app/brush_select.[ch]: cleaned up the gui and made global paint
|
||
mode toggling much simpler by expanding vertically instead of
|
||
reparenting.
|
||
|
||
* app/context_manager.c: removed hack by using a tool manager
|
||
accessor function.
|
||
|
||
* app/gimpcontext.c: use the new standard tool info object. Tools
|
||
also _behave_ like all other data types now (can e.g. be
|
||
refreshed).
|
||
|
||
* app/tools/tool.[ch]
|
||
|
||
* app/tools/gimptoolinfo.[ch]: added an "identifier" which is an
|
||
untranslated string with a meaningful prefix and name, e.g.
|
||
"gimp:color_picker_tool". Renamed "tool_name" and "tool_desc"
|
||
to "blurb" and "help", changed the constructor accordingly.
|
||
Added gimp_tool_info_get_standard() to make the context work
|
||
with tool refresh.
|
||
|
||
* app/tools/tool_manager.[ch]
|
||
* app/tools/tools.c: removed the global list of tool class
|
||
structures because the tool info list is in place.
|
||
Added tool_manager_register_tool_options() which calls
|
||
tool_options_dialog_add() and registers the options in the
|
||
global_tool_info_list.
|
||
|
||
* app/tools/Makefile.am
|
||
* app/tools/paint_options.[ch]
|
||
* app/tools/selection_options.[ch]
|
||
* app/tools/tool_options.[ch]
|
||
* app/tools/tool_options_dialog.[ch]: build them all again. This
|
||
is mostly the old tool options system with minor modifications to
|
||
work with the new stuff. The tool options auto-update with the user
|
||
context now, so there are no update functions any more.
|
||
|
||
* app/gimpdnd.c
|
||
* app/toolbox.c
|
||
* app/tools/color_picker.c
|
||
* app/tools/measure.c
|
||
* app/tools/move.c: changed accordingly.
|
||
|
||
2001-02-23 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/apptypes.h
|
||
* app/gimptoolinfopreview.[ch]: new widget.
|
||
|
||
* app/gimppreview.c
|
||
* app/tools/gimptoolinfo.c
|
||
* app/gimpdnd.c: changed for the tool info preview. Still buggy
|
||
and looks a bit funny at the moment :-)
|
||
|
||
* app/commands.[ch]
|
||
* app/menus.c: small new feature: shift-X toggles the whole context.
|
||
|
||
2001-02-23 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/pixmaps.h
|
||
* app/wilber.h: removed some data files from app/
|
||
|
||
* pixmaps/Makefile.am
|
||
* pixmaps/default.xpm
|
||
* pixmaps/swap.xpm
|
||
* pixmaps/wilber3.xpm: added them here.
|
||
|
||
* app/pixmaps2.h: added the "dialog_bits" stuff here.
|
||
|
||
* app/tips_dialog.c
|
||
* app/toolbox.c: use the new XPMs and remove hacks which created
|
||
the GdkPixmaps and GtkPreviews manually.
|
||
|
||
2001-02-22 Simon Budig <simon@gimp.org>
|
||
|
||
* app/interface.c
|
||
* app/gdisplay.h
|
||
* app/gdisplay.c: Icons now update every 7.5 seconds in the
|
||
idle loop. Also the aspect ratio is correct now. Mitch promised
|
||
to hack a preferences option to disable this stuff... :-)
|
||
|
||
Thu Feb 22 18:23:10 GMT 2001 Adam D. Moss <adam@gimp.org>
|
||
|
||
* tools/pdbgen/pdb/channel.pdb: Save a bunch of slow-witted
|
||
old people like myself from having to upgrade PERL for the sake
|
||
of sugar. Baby.
|
||
|
||
2001-02-21 Michael Natterer <mitch@gimp.org>
|
||
|
||
* configure.in: forgot one s/gimptool/gimptool-1.4/
|
||
|
||
* app/appenums.h: removed "UPDATE_CURSOR" from the ToolAction enum.
|
||
|
||
* app/context_manager.c: removed the toolbox toggle button updating
|
||
code here...
|
||
|
||
* app/toolbox.c: ...and handle it in the toolbox itself.
|
||
|
||
* app/devices.c: removed some obsolete old tool suff.
|
||
|
||
* app/tools/Makefile.am
|
||
* app/tools/move.[ch]: reactivated. Disabled the edit_selection
|
||
stuff for now. We need a way to temporary push tools to some stack
|
||
of the tool manager.
|
||
|
||
* app/tools/tool.[ch]: removed lot of stuff that is obsolete or
|
||
handled by the GimpToolInfo object now.
|
||
|
||
* app/tools/tool_manager.[ch]: stripped all tool options stuff
|
||
because they will be able to follow tool changes themselves.
|
||
Renamed some functions to be consistent.
|
||
|
||
* app/tools/tools.c: register the move tool again.
|
||
|
||
* app/cursorutil.c
|
||
* app/disp_callbacks.c
|
||
* app/gimage_mask.c
|
||
* app/global_edit.c
|
||
* app/tools/color_picker.c
|
||
* app/tools/measure.[ch]
|
||
* app/tools/tool_options.c: changed accordingly.
|
||
|
||
2001-02-21 Simon Budig <simon@gimp.org>
|
||
|
||
* app/disp_callbacks.c
|
||
* app/gdisplay.c
|
||
* app/gdisplay.h
|
||
* app/interface.c: Moved the Icon preview stuff to the idle-loop.
|
||
|
||
2001-02-21 Simon Budig <simon@gimp.org>
|
||
|
||
* app/interface.c: Fixed stupid bug with the icon preview when
|
||
creating the second preview. Please note that it still crashes
|
||
on the second image, but this is hopefully not my fault... :-)
|
||
|
||
2001-02-21 Michael Natterer <mitch@gimp.org>
|
||
|
||
Made the tool system work again and integrated it back with the
|
||
GimpContext. It's a hack between old, new and freshly hacked
|
||
stuff. There are still lots of warnings but at least we can switch
|
||
tools again.
|
||
|
||
* app/tools/Makefile.am
|
||
* app/tools/gimptoolinfo.[ch]: resurrected as real object.
|
||
The GimpToolInfo objects are derived from GimpData, which gives
|
||
us the tool icon stuff for free. Also, we need a list of _objects_
|
||
which is allocated all the time. All tools are required to have
|
||
a "register" function which registers themselves with the list
|
||
of GimpToolInfo objects which is maintained by the tool manager.
|
||
|
||
* app/tools/tool.[ch]: made a real GtkObject with properly named
|
||
functions out of it. The former "active_tool_control" is of
|
||
course not the default implementation of the tool's "control"
|
||
method but a hack _around_ it, so it went to the tool manager.
|
||
|
||
* app/tools/color_picker.[ch]
|
||
* app/tools/measure.[ch]: ditto. Added "register" functions and
|
||
"destroy" implementations so the tools go away after use.
|
||
|
||
* app/tools/tool_manager.[ch]: badly hacked at the moment to keep
|
||
both the list of class structures _and_ the tool info list.
|
||
|
||
* app/tools/tools.c: call the tools' register functions.
|
||
|
||
* app/gimpcontext.[ch]: store a pointer to a GimpToolInfo object
|
||
as "active_tool" in the context, so we're independent of tools
|
||
being allocated or not. It's treated just like a brush or pattern
|
||
now.
|
||
|
||
* app/gimpdnd.[ch]: made tool DND work like all other DND types.
|
||
|
||
* app/devices.[ch]: also here: the tool is just a normal data object
|
||
now, resulting in removal of lots of code.
|
||
|
||
* app/commands.c
|
||
* app/context_manager.c: updated the tool select and context stuff
|
||
to work again.
|
||
|
||
* app/toolbox.c: removed the old pixmap buttons and put GimpPreviews
|
||
inside the tool buttons. Still needs an own preview type to
|
||
look nice.
|
||
|
||
* app/disp_callbacks.c
|
||
* app/about_dialog.c
|
||
* app/app_procs.c
|
||
* app/appenums.h
|
||
* app/apptypes.h
|
||
* app/gimage.c
|
||
* app/gimppalette.c
|
||
* app/gimppreview.c
|
||
* app/gimprc.c
|
||
* app/info_window.c
|
||
* app/menus.c
|
||
* app/palette_select.h
|
||
* app/scale.c
|
||
* app/scroll.c: lots of changes to make it work again.
|
||
|
||
2001-02-21 Daniel Egger <egger@suse.de>
|
||
|
||
* app/gimpchecks.h: New file containing the check types.
|
||
|
||
* app/image_render.h: ... definitions taken from here.
|
||
* app/temp_buf.c:
|
||
* app/temp_buf.h: New function temp_buf_new_check to create
|
||
a new checked temp_buf.
|
||
|
||
2001-02-20 Simon Budig <simon@gimp.org>
|
||
|
||
* app/gdisplay.[ch]
|
||
* app/disp_callbacks.c
|
||
* app/interface.c: Added preliminary support for Preview icons.
|
||
|
||
This is not finished: We need a better way to get previews with
|
||
a specific depth and probably a rendered Checkerboard for the
|
||
alpha channel. Also the update function is now bound to a click
|
||
in the top left menu-button and should go in some idle-stuff.
|
||
Please test this on various window managers and give some
|
||
feedback. The last point is the aspect ratio of the generated
|
||
previews...
|
||
|
||
2001-02-20 Nick Lamb <njl195@zepler.org.uk>
|
||
|
||
* libgimpwidgets/gimpwidgets.c: include string.h
|
||
|
||
2001-02-20 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimpdnd.[ch]: removed all brush, pattern, gradient and palette
|
||
DND functions because there are generic GimpViewable DND functions
|
||
now.
|
||
|
||
* app/disp_callbacks.[ch]
|
||
* app/interface.c: changed accordingly.
|
||
|
||
2001-02-19 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/commands.[ch]
|
||
* app/menus.c: first version of the new layers and channels dialogs.
|
||
|
||
* app/gimpcontainergridview.c
|
||
* app/gimpcontainerlistview.c: allow creation with a NULL container.
|
||
|
||
* app/gimpdnd.[ch]: added generic DND functions for all drawable
|
||
types (not just setting the DND icon). Started to remove code
|
||
duplication.
|
||
|
||
* app/gimpdrawablepreview.c: with some magic calculations and ugly
|
||
assumptions the drawable previews now look exactly like in the old
|
||
L&C dialog.
|
||
|
||
* app/gimpimagepreview.c: no need to say "return" at the end of a
|
||
void function.
|
||
|
||
* app/gimppreview.[ch]: added the "is_popup" boolean also to the
|
||
default constructor. Call gimp_preview_set_viewable() before
|
||
calculating the preview size.
|
||
|
||
2001-02-19 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/gimppalette-import.[ch]: new files. The import functions
|
||
stripped from all UI crap.
|
||
|
||
* app/palette_import.c: removed from here.
|
||
|
||
2001-02-19 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/gimpimage.[ch]: converted gimage->layers and gimage->channels
|
||
to GimpLists.
|
||
|
||
* app/channel_ops.c
|
||
* app/channels_dialog.c
|
||
* app/commands.c
|
||
* app/convert.c
|
||
* app/floating_sel.c
|
||
* app/gdisplay.c
|
||
* app/gimpdrawable.c
|
||
* app/layers_dialog.c
|
||
* app/resize.c
|
||
* app/undo.c
|
||
* app/xcf.c
|
||
* app/pdb/display_cmds.c
|
||
* app/pdb/image_cmds.c
|
||
* app/pdb/layer_cmds.c
|
||
* app/tools/crop.c
|
||
* app/tools/edit_selection.c
|
||
* tools/pdbgen/pdb/display.pdb
|
||
* tools/pdbgen/pdb/image.pdb
|
||
* tools/pdbgen/pdb/layer.pdb: changed accordingly
|
||
|
||
2001-02-19 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimpcontainer.[ch] (gimp_container_insert): new function.
|
||
|
||
2001-02-19 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/context_manager.c
|
||
* app/gimpdatafactory.c
|
||
* app/gimpdatalist.[ch]
|
||
* app/gimplist.[ch]
|
||
* app/module_db.c: return a GimpContainer from all container
|
||
subclass constructors.
|
||
|
||
* app/gimppalettepreview.c
|
||
* app/palette.c: changed the preview a bit. Still ugly.
|
||
|
||
2001-02-19 Michael Natterer <mitch@gimp.org>
|
||
|
||
* gimp.m4
|
||
* gimptool.in: removed.
|
||
|
||
* gimp-1.4.m4
|
||
* gimptool-1.4.in: added modified versions. gimp-1.4.m4 is untested.
|
||
The m4 macro is now called AM_PATH_GIMP_1_4()
|
||
|
||
* .cvsignore
|
||
* Makefile.am
|
||
* configure.in: changed accordingly.
|
||
|
||
* libgimp/Makefile.am
|
||
* libgimpcolor/Makefile.am
|
||
* libgimpmath/Makefile.am
|
||
* libgimpwidgets/Makefile.am: install the header files in
|
||
$includedir/gimp-MAJOR.MINOR/<libname>
|
||
|
||
* app/brush_edit.c: increased toplevel container border size to 4.
|
||
|
||
* app/gimpdatafactoryview.c: don't generate multiple "copy"s when
|
||
duplicating data objects.
|
||
|
||
* app/gradient_editor.c: cleaned up the GUI.
|
||
|
||
* app/lc_dialog.c: removed the "Close" button.
|
||
|
||
2001-02-18 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimpdnd.[ch]: added DND source functions which work by
|
||
GtkType.
|
||
|
||
* app/commands.c
|
||
* app/brush_select.c
|
||
* app/gradient_select.[ch]
|
||
* app/pattern_select.c: removed the DND code here because it's all
|
||
done by the GimpContainerView now.
|
||
|
||
* app/gimpbrushpreview.c
|
||
* app/gimpgradientpreview.c
|
||
* app/gimppalettepreview.c
|
||
* app/gimppatternpreview.c: use the DND by-type connect functions.
|
||
|
||
* app/gimpbrushgenerated.c: implemented "duplicate", cleanup.
|
||
|
||
* app/gimpcontainergridview.c
|
||
* app/gimpcontainerlistview.c
|
||
* app/gimpcontainerview.[ch]: added a "activate_item" signal
|
||
method which is emitted by the subclasses to indicate double click.
|
||
|
||
* app/gimpdatafactoryview.c: connect to "activate_item" and show
|
||
the editor.
|
||
|
||
* app/convert.c
|
||
* app/gimppalette.[ch]
|
||
* app/palette.c
|
||
* app/paletteP.h
|
||
* app/palette_import.c
|
||
* app/palette_select.[ch]: major cleanup: Behaves like the other
|
||
datatypes now: DND, context stuff, GimpContainerListViews in
|
||
the dialogs etc. Mostly just removal of code.
|
||
|
||
* app/gradient_editor.c: fixed signal blocking/unblocking.
|
||
|
||
* plug-ins/script-fu/scripts/Makefile.am: install the "Test Sphere"
|
||
script again.
|
||
|
||
2001-02-17 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimpcontainer.[ch]
|
||
* app/gimpcontainergridview.c
|
||
* app/gimpcontainerlistview.c
|
||
* app/gimpcontainerview.[ch]
|
||
* app/gimplist.c
|
||
* app/gimpmarshal.[ch]: the GimpContainer has a new virtual "reorder"
|
||
method which is much more eficient then the current remove/add
|
||
braindeadness when renaming data objects.
|
||
Changed the views to connect to "reorder" and call the
|
||
GimpContainerView's new "reorder_item" method which then does
|
||
the right thing in the view subclasses.
|
||
|
||
* app/gimpdatafactory.c
|
||
* app/gimpdatafactoryview.c
|
||
* app/gimpdatalist.[ch]: removed the data list loading and saving
|
||
stuff from GimpDataList because that's the job of the
|
||
GimpDataFactory.
|
||
|
||
* app/brush_edit.[ch]
|
||
* app/brush_select.c: cleanup.
|
||
|
||
* app/gradient_editor.[ch]: changed it to work like the brush
|
||
editor: return a GradientEditor pointer in the constructor
|
||
and statically store this pointer in the gradient selection file.
|
||
Removed the global "g_editor" variable and added tons of
|
||
GradientEditor* variables to function calls so they know their
|
||
context without the global variable.
|
||
|
||
* app/gradient_select.c: changed accordingly.
|
||
|
||
2001-02-17 Seth Burgess <sjburges@gimp.org>
|
||
|
||
* app/tools/Makefile.am
|
||
* app/tools/measure.[ch]: added back in, changing as needed for basic
|
||
operation. Probably pretty buggy still.
|
||
|
||
* app/tools/tools.c: changed one of the tool initializations to be
|
||
the measure tool. Now only measure tools are availble (though it
|
||
would appear both are visually). I don't think the toolbox selection
|
||
stuff is operational yet.
|
||
|
||
* app/tools/color_picker.[ch]: minor cleanup
|
||
|
||
2001-02-16 Stanislav Brabec <utx@penguin.cz>
|
||
|
||
On request of Martin Weber <martweb@gmx.net>.
|
||
* plugins/common/despeckle.c: Fixed comparison *sort_ptr > black_level.
|
||
Only adopting white_level had a visual effect. This fix causes
|
||
that also adopting blck_level works also.
|
||
|
||
2001-02-14 Michael Natterer <mitch@gimp.org>
|
||
|
||
* HACKING: added a note about apptype.h and about not including
|
||
headers in headers.
|
||
|
||
* app/apptypes.h: added GimpTool and BitmapCursor.
|
||
|
||
* app/cursorutil.h
|
||
* app/devices.h
|
||
* app/draw_core.h
|
||
* app/tools/color_picker.h
|
||
* app/tools/tool.h
|
||
* app/tools/tool_options.h
|
||
* app/gimpcontext.h: removed includes of "tools/tool.h"
|
||
|
||
* app/gimprc.[ch]: indentadion cleanup, added
|
||
"module_db_load_inhibit".
|
||
|
||
* app/module_db.c: removed the above variable here.
|
||
|
||
* app/gimpdata.[ch]: added a vitrual "duplicate" method.
|
||
|
||
* app/gimpbrush.[ch]
|
||
* app/gimpbrushgenerated.[ch]
|
||
* app/gimpbrushpipe.[ch]
|
||
* app/gimpgradient.[ch]
|
||
* app/gimppalette.[ch]
|
||
* app/gimppattern.[ch]: all "load", "new" and "get_standard"
|
||
functions return a GimpData pointer now.
|
||
|
||
* app/gimpdatafactory.[ch]: made some stuff const.
|
||
|
||
* app/gimpdatafactoryview.c: activate the "duplicate" button and
|
||
set the initial button sensitivity correctly.
|
||
|
||
* app/brush_select.c
|
||
* app/gradient_select.c
|
||
* app/pattern_select.c: use the new GimpDataFactoryView.
|
||
|
||
* libgimp/Makefile.am: grouped the file to sort out what _may_
|
||
go to subdirs or separate libs.
|
||
|
||
* libgimp/gimpenv.[ch]: added many "const".
|
||
|
||
* app/app_procs.c
|
||
* app/brush_edit.c
|
||
* app/gimpcontext.c
|
||
* app/gimpdnd.c
|
||
* app/gradient_editor.c
|
||
* app/palette.c
|
||
* app/palette_import.c
|
||
* app/user_install.c: many related changes.
|
||
|
||
* libgimpmath/gimpmathtypes.h
|
||
* libgimpmath/gimpvector.[ch]: minor cleanups.
|
||
|
||
* plug-ins/script-fu/script-fu.c: gimp_data_directory() is const now.
|
||
|
||
2001-02-13 Nathan Summers <rock@gimp.org>
|
||
|
||
* configure.in
|
||
* plug-ins/plugin-helper/*: prototype for an extension that allows
|
||
gmodules as plugins. Known bug: crashes on gmodules with a static
|
||
"query" function
|
||
|
||
* app/tools/tool.c
|
||
* app/tools/tool.h: created new GimpTool object. Did away with
|
||
ToolInfo. Most tools still need to be ported over to the new api.
|
||
|
||
* app/tools/tools.c: now contains the initialization function to
|
||
register the tools with the Gimp
|
||
|
||
* app/tools/tools.h: renamed to tool.h
|
||
|
||
* app/Makefile.am
|
||
* app/app_procs.c
|
||
* app/apptypes.h
|
||
* app/commands.c
|
||
* app/context_manager.c
|
||
* app/cursorutil.c
|
||
* app/devices.c
|
||
* app/devices.h
|
||
* app/disp_callbacks.c
|
||
* app/draw_core.c
|
||
* app/draw_core.h
|
||
* app/gdisplay.c
|
||
* app/gimage.c
|
||
* app/gimage_mask.c
|
||
* app/gimpcontext.c
|
||
* app/gimpcontext.h
|
||
* app/global_edit.c
|
||
* app/info_window.c
|
||
* app/interface.c
|
||
* app/libgimp_glue.c
|
||
* app/menus.c
|
||
* app/paint_core.h
|
||
* app/paint_options.h
|
||
* app/scale.c
|
||
* app/scroll.c
|
||
* app/toolbox.c
|
||
* app/undo.c
|
||
* app/tools/Makefile.am
|
||
* app/tools/color_picker.c
|
||
* app/tools/color_picker.h
|
||
* app/tools/paint_core.c
|
||
* app/tools/tool_options.c
|
||
* app/tools/tool_options.h
|
||
* app/tools/tool_options_dialog.c
|
||
* libgimp/gimp.c
|
||
* plug-ins/Makefile.am: changed acordingly
|
||
|
||
* plug-ins/script-fu/script-fu-scripts.c: fixed typo in comment.
|
||
Pathetic, huh?
|
||
|
||
2001-02-14 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* po/POTFILES.in
|
||
* app/brushes.[ch]
|
||
* app/gradients.[ch]
|
||
* app/palettes.[ch]
|
||
* app/patterns.[ch]: removed.
|
||
|
||
* app/gimpdatafactory.[ch]: completely manage the data lists,
|
||
including loading with different callbacks per extension.
|
||
|
||
* app/gimpdatafactoryview.[ch]: enabled "new", "edit", "delete"
|
||
and "refresh".
|
||
|
||
* app/context_manager.c: initisalize the data factories.
|
||
|
||
* app/gimpcontext.c: fixed some bad bugs introduced yesterday.
|
||
|
||
* app/gradient_editor.[ch]: removed the public "create" function
|
||
and create the editor implicitly on "set_gradient"
|
||
|
||
* app/app_procs.c
|
||
* app/apptypes.h
|
||
* app/brush_edit.h
|
||
* app/brush_select.c
|
||
* app/commands.c
|
||
* app/convert.c
|
||
* app/devices.c
|
||
* app/gimpbrushpipe.c
|
||
* app/gimpcontainerview.h
|
||
* app/gimpgradient.c
|
||
* app/gimppattern.c
|
||
* app/gradient_select.c
|
||
* app/palette.c
|
||
* app/pattern_select.c
|
||
* app/pdb/brush_select_cmds.c
|
||
* app/pdb/brushes_cmds.c
|
||
* app/pdb/convert_cmds.c
|
||
* app/pdb/gradient_select_cmds.c
|
||
* app/pdb/gradients_cmds.c
|
||
* app/pdb/palette_cmds.c
|
||
* app/pdb/pattern_select_cmds.c
|
||
* app/pdb/patterns_cmds.c
|
||
* tools/pdbgen/pdb/brush_select.pdb
|
||
* tools/pdbgen/pdb/brushes.pdb
|
||
* tools/pdbgen/pdb/convert.pdb
|
||
* tools/pdbgen/pdb/gradient_select.pdb
|
||
* tools/pdbgen/pdb/gradients.pdb
|
||
* tools/pdbgen/pdb/palette.pdb
|
||
* tools/pdbgen/pdb/pattern_select.pdb
|
||
* tools/pdbgen/pdb/patterns.pdb: um, much stuff, mostly "changed
|
||
accordingly" ;-)
|
||
|
||
2001-02-13 Michael Natterer <mitch@gimp.org>
|
||
|
||
* gimprc.in
|
||
* user_install
|
||
* user_install.bat
|
||
* app/gimprc.[ch]
|
||
* app/preferences_dialog.c: removed the "brush_vbr_path" variable,
|
||
because all data types will be editable and saveable soon.
|
||
|
||
* app/Makefile.am
|
||
* app/apptypes.h
|
||
* app/gimpdatafactory.[ch]: new object which holds a data list and
|
||
knows how to create, edit, duplicate etc. the items in it. Will
|
||
completely replace the brushes.[ch], patterns.[ch], ... files soon.
|
||
|
||
* po/POTFILES.in
|
||
* app/gimpdatacontainerview.[ch]: removed.
|
||
* app/gimpdatafactoryview.[ch]: added.
|
||
|
||
A view on the GimpDataFactory with a GUI for creating, editing,
|
||
deleting etc. items (mostly unimplemented).
|
||
|
||
* app/context_manager.[ch]: replaced the global data lists by global
|
||
data factories.
|
||
|
||
* app/brush_select.c
|
||
* app/brushes.[ch]
|
||
* app/commands.c
|
||
* app/convert.c
|
||
* app/devices.c
|
||
* app/gimpbrush.[ch]
|
||
* app/gimpbrushgenerated.c
|
||
* app/gimpcontext.c
|
||
* app/gimpdata.[ch]
|
||
* app/gimpdatalist.[ch]
|
||
* app/gimpdnd.c
|
||
* app/gimpgradient.[ch]
|
||
* app/gimppalette.[ch]
|
||
* app/gimppattern.[ch]
|
||
* app/gradient_editor.c
|
||
* app/gradient_select.c
|
||
* app/gradients.[ch]
|
||
* app/indicator_area.c
|
||
* app/palette.c
|
||
* app/palette_import.c
|
||
* app/palette_select.c
|
||
* app/palettes.[ch]
|
||
* app/pattern_select.c
|
||
* app/patterns.[ch]
|
||
* app/pdb/brush_select_cmds.c
|
||
* app/pdb/brushes_cmds.c
|
||
* app/pdb/convert_cmds.c
|
||
* app/pdb/gradient_select_cmds.c
|
||
* app/pdb/gradients_cmds.c
|
||
* app/pdb/pattern_select_cmds.c
|
||
* app/pdb/patterns_cmds.c
|
||
* tools/pdbgen/pdb/brush_select.pdb
|
||
* tools/pdbgen/pdb/brushes.pdb
|
||
* tools/pdbgen/pdb/convert.pdb
|
||
* tools/pdbgen/pdb/gradient_select.pdb
|
||
* tools/pdbgen/pdb/gradients.pdb
|
||
* tools/pdbgen/pdb/pattern_select.pdb
|
||
* tools/pdbgen/pdb/patterns.pdb: changed accordingly.
|
||
|
||
2001-02-13 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* po/POTFILES.in
|
||
* app/gimpdatacontainerview.[ch]: new widget which will replace the
|
||
current brush, pattern, ... selections. To really use it, there
|
||
needs to be a GimpDataFactory object (coming soon...)
|
||
|
||
* app/commands.[ch]
|
||
* app/menus.c: added test data container views.
|
||
|
||
* app/paint_funcs_simd.S: #include the implementation with "", not <>
|
||
|
||
2001-02-13 Seth Burgess <sjburges@gimp.org>
|
||
|
||
* plug-ins/perl/Gimp/Lib.xs : made perl compilable again. Didn't
|
||
change to turn back on by default.
|
||
|
||
2001-02-13 Sven Neumann <sven@gimp.org>
|
||
|
||
* Makefile.am
|
||
* configure.in
|
||
* cursors/Makefile.am
|
||
* docs/Makefile.am
|
||
* pixmaps/Makefile.am: added Makefiles to cursors, docs and pixmaps
|
||
directories
|
||
|
||
2001-02-13 Sven Neumann <sven@gimp.org>
|
||
|
||
* Makefile.am
|
||
* pixmaps/refresh.xpm: new icon
|
||
|
||
2001-02-13 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gradient_editor.[ch]
|
||
* app/gradient_select.[ch]: use GimpContainerListView instead of
|
||
cooking an own list.
|
||
|
||
* app/gimpgradient.[ch]: removed the GdkPixmap from the gradient.
|
||
|
||
* app/gimpcontainerlistview.c: connect the viewable's "name_changed"
|
||
signal to the label.
|
||
|
||
* app/gimpmarshal.[ch]
|
||
* app/gimppreview.[ch]: new virtual function "get_size",
|
||
|
||
* app/gimpgradientpreview.c: implement "get_size" and return a 3:1
|
||
aspect ratio.
|
||
|
||
* app/gradients.c
|
||
* app/palette_select.[ch]
|
||
* app/palettes.c: removed the dialog freeze/thaw functions.
|
||
|
||
* app/brush_select.c
|
||
* app/pattern_select.c
|
||
* app/plug_in.c: stuff.
|
||
|
||
2001-02-12 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/brush_select.[ch]
|
||
* app/pattern_select.[ch]: removed almost all code by using
|
||
the GimpContainerGridView.
|
||
|
||
* app/brushes.c
|
||
* app/patterns.c: brush|pattern_select_freeze|thaw_all() don't
|
||
exist any more.
|
||
|
||
* app/devices.c: made it work again.
|
||
|
||
* app/gimpgradientpreview.c: the gradient popup is 128 x 32 again.
|
||
|
||
* app/plug_in.c: follow the brush and pattern dialog function
|
||
renaming.
|
||
|
||
* app/gimppalette.[ch]
|
||
* app/gimppalettepreview.c: added a "Columns" attribute and show
|
||
the popups accordingly.
|
||
|
||
The palette file format has changed again. It now can have an
|
||
optional "Columns: <n>" line after the palette's name.
|
||
|
||
* data/palettes/Bgold.gpl
|
||
* data/palettes/Borders.gpl
|
||
* data/palettes/Cascade.gpl
|
||
* data/palettes/China.gpl
|
||
* data/palettes/Coldfire.gpl
|
||
* data/palettes/Dark_pastels.gpl
|
||
* data/palettes/Ega.gpl
|
||
* data/palettes/Gold.gpl
|
||
* data/palettes/Grayblue.gpl
|
||
* data/palettes/Hilite.gpl
|
||
* data/palettes/Kahki.gpl
|
||
* data/palettes/Named_Colors.gpl
|
||
* data/palettes/News3.gpl
|
||
* data/palettes/Op2.gpl
|
||
* data/palettes/Plasma.gpl
|
||
* data/palettes/Visibone.gpl
|
||
* data/palettes/Visibone_2.gpl
|
||
* data/palettes/Web.gpl: added the "Columns" parameter where it
|
||
makes sense and removed those ugly black colors which were hanging
|
||
around as first color of many palettes.
|
||
|
||
2001-02-12 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am: took gimpcontextpreview.[ch] out of the build
|
||
but still left the sources there as reference.
|
||
|
||
* app/app_procs.c: initialize the render stuff before creating the
|
||
toolbox (needed for the previews).
|
||
|
||
* app/devices.c
|
||
* app/indicator_area.c: use GimpPreviews instead of
|
||
GimpContextPreviews.
|
||
|
||
* app/context_manager.[ch]: create the global data lists here
|
||
because they now must exist before any context is created.
|
||
|
||
* app/brushes.[ch]
|
||
* app/gradients.[ch]
|
||
* app/palettes.[ch]
|
||
* app/patterns.[ch]: removed them here.
|
||
|
||
* app/gimpcontainer.[ch]: added a "freeze_count" and emit the
|
||
"freeze" and "thaw" signals accordingly.
|
||
|
||
* app/gimpcontext.[ch]: greatly simplified the way how the
|
||
contexts connect to the data lists (simply keep them connected all
|
||
the time). Also removed all those ugly explicit update functions
|
||
because "thaw" callbacks do this job now.
|
||
|
||
* app/gimpdata.c: a GimpData object now becomes dirty on
|
||
"name_changed"; "dirty" now triggers "invalidate_preview" because
|
||
the context does not dispatch these signals any more soon.
|
||
|
||
* app/brush_select.c
|
||
* app/convert.c
|
||
* app/gimpdnd.c
|
||
* app/gradient_editor.c
|
||
* app/gradient_select.c
|
||
* app/pattern_select.c
|
||
* app/gradient_editor.c
|
||
* app/gradient_select.c
|
||
* app/gradients.[ch]
|
||
* app/pdb/brush_select_cmds.c
|
||
* app/pdb/brushes_cmds.c
|
||
* app/pdb/convert_cmds.c
|
||
* app/pdb/gradient_select_cmds.c
|
||
* app/pdb/gradients_cmds.c
|
||
* app/pdb/pattern_select_cmds.c
|
||
* app/pdb/patterns_cmds.c
|
||
* tools/pdbgen/pdb/brush_select.pdb
|
||
* tools/pdbgen/pdb/brushes.pdb
|
||
* tools/pdbgen/pdb/convert.pdb
|
||
* tools/pdbgen/pdb/gradient_select.pdb
|
||
* tools/pdbgen/pdb/gradients.pdb
|
||
* tools/pdbgen/pdb/pattern_select.pdb
|
||
* tools/pdbgen/pdb/patterns.pdb: changed accordingly.
|
||
|
||
2001-02-11 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/apptypes.h: added the datafile loader_func typedefs.
|
||
|
||
* app/datafiles.h: removed from here.
|
||
|
||
* app/gimpcontainer.[ch]: emit "freeze" and "thaw" signals to get
|
||
rid of those blah_select_[freeze|thaw]_all() stuff.
|
||
|
||
* app/gimpdatalist.[ch]: new function gimp_data_list_load() which
|
||
takes a va_list of GimpDataObjectLoaderFuncs and file extensions
|
||
and is almost a replacement for the four files below.
|
||
|
||
* app/brushes.c
|
||
* app/gradients.c
|
||
* app/palettes.c
|
||
* app/patterns.c: very simple now. It may be worth thinking about
|
||
making all GimpData subclasses managed by a descriptive array in
|
||
the context_manager.
|
||
|
||
2001-02-11 Michael Natterer <mitch@gimp.org>
|
||
|
||
Made a GimpContainer out of the palette list:
|
||
|
||
* app/Makefile.am
|
||
* app/palettes.[ch]: new files for the global palette list.
|
||
|
||
* app/gimpgradientpreview.[ch]
|
||
* app/gimppalettepreview.[ch]: new widgets.
|
||
|
||
* app/gimppalette.[ch]: derive it from GimpData to get all the
|
||
preview etc. stuff.
|
||
|
||
* app/datafiles.[ch]: new function datafiles_check_extension(),
|
||
added a "loader_data" parameter to datafiles_read_directories()
|
||
and pass it to the loader function.
|
||
|
||
* app/gimpcontext.[ch]: added the palette (not really used yet
|
||
except by the test dialogs).
|
||
|
||
* app/gimpdatalist.[ch]: new function gimp_data_list_save_and_clear()
|
||
which does everything needed for patterns_free(), brushes_free() ...
|
||
|
||
* app/gimpdnd.c: added palette DND.
|
||
|
||
* app/app_procs.c
|
||
* app/brushes.c
|
||
* app/color_notebook.h
|
||
* app/commands.c
|
||
* app/convert.c
|
||
* app/gimpbrush.h
|
||
* app/gimpbrushpipe.h
|
||
* app/gimpgradient.c
|
||
* app/gimppattern.h
|
||
* app/gimppreview.c
|
||
* app/gradients.c
|
||
* app/module_db.c
|
||
* app/palette.[ch]
|
||
* app/paletteP.h
|
||
* app/palette_import.c
|
||
* app/palette_select.[ch]
|
||
* app/patterns.c
|
||
* app/plug_in.c
|
||
* app/pdb/convert_cmds.c
|
||
* app/pdb/palette_cmds.c
|
||
* tools/pdbgen/pdb/convert.pdb
|
||
* tools/pdbgen/pdb/palette.pdb: lotsa stuff: changed due to the above
|
||
API changes, #define the file extensions in the GimpData subclasses'
|
||
header files instead of hardcoding them in several places, ...
|
||
|
||
* data/palettes/*: The same file format change as for the gradient
|
||
files:
|
||
|
||
- Save the palette name in a parsable form (as part of the file
|
||
format, not in a comment.
|
||
- Removed unserscores from the palette names.
|
||
- Added an extension (Gimp PaLettes are ".gpl" files now ;-)
|
||
|
||
2001-02-11 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/apptypes.h
|
||
* app/gimpdata.[ch]: new abstract base class for everything
|
||
(except images) which has a filename and can become dirty and must
|
||
be saved.
|
||
|
||
* app/gimpbrush.[ch]
|
||
* app/gimpgradient.[ch]
|
||
* app/gimppattern.[ch]: all derived from GimpData now.
|
||
|
||
* app/gimpbrushgenerated.[ch]
|
||
* app/brush_select.c
|
||
* app/brushes.c
|
||
* app/gimpbrushpipe.c
|
||
* app/gradient_editor.c
|
||
* app/gradients.c
|
||
* app/patterns.c: removed lots of code duplication due to common
|
||
file save magic.
|
||
|
||
The gradient file format has changed: it now contains the
|
||
gradient's name (no more ugly underscores). The files have the
|
||
extension ".ggr".
|
||
|
||
* app/gimpgradient.[ch]: save new gradients, load new and old
|
||
gradients.
|
||
|
||
* data/gradients/*: removed all old gradients and added the new
|
||
ones.
|
||
|
||
2001-02-10 David Monniaux <monniaux@genievre.ens.fr>
|
||
|
||
MMX code for paint_funcs. Very partial so far.
|
||
* acconfig.h
|
||
* configure.in: detection of MMX-able assembler and compiler
|
||
* app/Makefile.am
|
||
* app/main.c: detects MMX and acts accordingly
|
||
* app/paint_funcs.c
|
||
* app/paint_funcs_simd.S: #include's appropriate file
|
||
* app/arch/i386/mmx/paint_funcs_mmx.S
|
||
* app/arch/i386/mmx/paint_funcs_mmx.S.m4
|
||
|
||
2001-02-10 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/gradient.[ch]: renamed...
|
||
|
||
* app/gradient_editor.[ch]: ...to this
|
||
|
||
* app/gradient_select.c: changed #include
|
||
|
||
* po/POTFILES.in: renamed the file here too
|
||
|
||
2001-02-10 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/gradientP.h
|
||
* app/gradient_header.h: removed.
|
||
|
||
* app/gimpgradient.[ch]: new object -- bye bye "gradient_t"
|
||
|
||
* app/gradients.[ch]: new files for managing the gradient list.
|
||
|
||
* app/gradient.[ch]: contains only the gradient editor now (which
|
||
still badly pokes around in the GimpGradient structure).
|
||
|
||
* app/app_procs.c
|
||
* app/apptypes.h
|
||
* app/devices.c
|
||
* app/gimpcontainerlistview.c
|
||
* app/gimpcontext.[ch]
|
||
* app/gimpcontextpreview.[ch]
|
||
* app/gimpdnd.[ch]
|
||
* app/gradient_select.[ch]
|
||
* app/indicator_area.c
|
||
* app/palette_import.c
|
||
* app/pdb/gradient_select_cmds.c
|
||
* app/pdb/gradients_cmds.c
|
||
* app/tools/airbrush.c
|
||
* app/tools/blend.c
|
||
* app/tools/paint_core.c
|
||
* app/tools/paintbrush.c
|
||
* app/tools/pencil.c
|
||
* tools/pdbgen/pdb/gradient_select.pdb
|
||
* tools/pdbgen/pdb/gradients.pdb: changed accordingly, some
|
||
changes to the preview and view stuff.
|
||
|
||
* app/gimppreview.[ch]: removed the "context" attribute again
|
||
because it was overkill (a simple gtk_signal_connect_object does
|
||
the same as doing the autoconnection magic inside the GimpPreview
|
||
object).
|
||
|
||
* app/commands.[ch]
|
||
* app/menus.c: example views on the gradient container.
|
||
|
||
2001-02-09 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimpcontainergridview.[ch]
|
||
* app/gimpcontainerlistview.[ch]
|
||
* app/gimpcontainerview.[ch]: follow the GimpPreview API change
|
||
and take only "size" instead of "width" and "height" in the
|
||
constructor.
|
||
|
||
* app/gimpdnd.[ch]: first attempt to hack GtkType based DND which
|
||
speaks in terms of GimpViewable instead of Brush, Pattern, ...
|
||
Added functions to remove DND callbacks (used by the multi-views).
|
||
|
||
* app/gimppreview.[ch]: new function gimp_preview_set_size_full().
|
||
|
||
* app/commands.c: updated the example dialogs to be DND aware.
|
||
|
||
* app/gimpimage.c: fixed preview size calculation by ensuring a
|
||
minimal width/height of 1 pixel.
|
||
Reported by Dave Neary <dneary@eircom.net>
|
||
|
||
2001-02-09 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimppreview.[ch]: moved the constructor-parameter-overkill
|
||
to the new function gimp_preview_new_full() and made the
|
||
gimp_preview_new() interface simple.
|
||
|
||
* app/gimpbrushpreview.c
|
||
* app/gimppatternpreview.c: added DND support.
|
||
|
||
* app/gimpdnd.c: use the new preview system.
|
||
|
||
* app/gimpconstrainedhwrapbox.c: implement "size_allocate". Ok,
|
||
this is silly -- I will write an own widget which does the
|
||
"scrollable grid of whatever" stuff in one place...
|
||
|
||
* app/commands.c
|
||
* app/gimpcontainergridview.c
|
||
* app/gimpcontainerlistview.c
|
||
* app/gimpimagepreview.c: follow the GimpPreview constructor change.
|
||
|
||
2001-02-09 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/commands.c: changed the test dialogs a bit.
|
||
|
||
* app/gimpconstrainedhwrapbox.[ch]: should be called
|
||
GimpHackedWrapBoxForContainerView now ;-)
|
||
|
||
* app/gimpcontainergridview.[ch]
|
||
* app/gimpcontainerlistview.[ch]: fixed the minimal size setting
|
||
by getting the magic values from the relevan gtk widgets.
|
||
Scroll to the active item if it not visible.
|
||
|
||
2001-02-08 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimppreview.[ch]: added an (unused) "context" argument
|
||
and a "set_viewable" function.
|
||
|
||
* app/gimpconstrainedhwrapbox.c: even more evil than before.
|
||
|
||
* app/gimpbrushpreview.c
|
||
* app/gimpcontainergridview.c
|
||
* app/gimpcontainerlistview.c
|
||
* app/gimpcontainerview.c
|
||
* app/gimpimagepreview.c
|
||
* app/gimppatternpreview.c: fixed lots of forgotten signal handlers
|
||
|
||
* app/commands.[ch]
|
||
* app/menus.c: added "Multi View" dialogs.
|
||
|
||
2001-02-08 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimppreview.[ch]: added a "border" attribute. The border can
|
||
have any color (which has no sane API yet...). Added "width" and
|
||
"height" attributes and provide a "set_size" function.
|
||
|
||
* app/gimpbrushpreview.c
|
||
* app/gimpcontainergridview.c
|
||
* app/gimpcontainerlistview.c
|
||
* app/gimpimagepreview.c
|
||
* app/gimppatternpreview.c: changed accordingly, enabled
|
||
highlighting of the selected item in the grid views.
|
||
|
||
2001-02-07 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimppreview.[ch]: allocate less temp_bufs by removing the
|
||
"create_preview" virtual function and adding a "render" one.
|
||
|
||
Implementations have to call the new public function
|
||
gimp_preview_render_and_flush() to render their temp_bufs.
|
||
This way, e.g. the GimpPatternPreview can render the preview
|
||
directly from the pattern's mask.
|
||
|
||
* app/gimpdrawablepreview.c
|
||
* app/gimpimagepreview.c
|
||
* app/gimppatternpreview.c: changed accordingly.
|
||
|
||
* app/gimpbrushpreview.[ch]: same as above and added BrushPipe
|
||
popup animation.
|
||
|
||
2001-02-07 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimppreview.[ch]
|
||
* app/gimpbrushpreview.c
|
||
* app/gimpcontainergridview.c
|
||
* app/gimpcontainerlistview.c
|
||
* app/gimpimagepreview.c
|
||
* app/gimppatternpreview.c: added an "is_popup" parameter to the
|
||
preview constructor so the subclasses can decide if to do special
|
||
stuff like pipe animation.
|
||
|
||
2001-02-07 Daniel Egger <egger@suse.de>
|
||
|
||
* configure.in: Changed link order in gtkxmhtml check
|
||
to fix bug #12653.
|
||
|
||
2001-02-07 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimpcontext.[ch]: added "set_by_type", "get_by_type" and
|
||
"changed_by_type" methods which take a GtkType and decide from
|
||
that if to manipulate the Brush, Pattern etc.
|
||
|
||
* app/gimpcontainerview.[ch]
|
||
* app/gimpcontainergridview.[ch]
|
||
* app/gimpcontainerlistview.[ch]: added a GimpContext to the views
|
||
which is used to manage the active item.
|
||
|
||
* app/commands.c: pass the user_context to the test views.
|
||
|
||
* app/gimpbrushpreview.c
|
||
* app/gimppatternpreview.c
|
||
* app/gimppreview.[ch]: added a virtual "needs_popup" method which
|
||
returns a boolean indicating if the viewable is already fully
|
||
visible.
|
||
|
||
* app/gimage.[ch]: removed gimage_foreach() and some other
|
||
functions which can easily be done by gimp_container_foreach().
|
||
Removed gimage_delete().
|
||
|
||
* app/fileops.c
|
||
* app/gdisplay.c
|
||
* app/lc_dialog.c
|
||
* app/nav_window.c
|
||
* app/palette_import.c
|
||
* app/preferences_dialog.c
|
||
* app/xcf.c
|
||
* app/pdb/image_cmds.c
|
||
* tools/pdbgen/pdb/image.pdb: changed accordingly. Switched from
|
||
"disp_count" refcounting to real GtkObject refcounting for
|
||
GimpImages.
|
||
|
||
2001-02-07 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimpbrush.[ch]
|
||
* app/gimpbrushpreview.c: moved the scale and pipe indicator
|
||
rendering code from GimpBrush to GimpBrushPreview.
|
||
Removed the "dirty" signal from GimpBrush and use
|
||
"invalidate_preview" of the GimpViewable class.
|
||
|
||
* app/brush_edit.c
|
||
* app/brush_select.c
|
||
* app/gimpbrushgenerated.c
|
||
* app/gimpcontext.c
|
||
* app/gimpcontextpreview.c
|
||
* app/tools/paint_core.c: changed accordingly.
|
||
|
||
2001-02-07 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/gimpimagepreview.[ch]: new object with own implementations
|
||
of "create_preview" and "create_popup".
|
||
|
||
* app/gimpdrawablepreview.c: stuff... still unused.
|
||
|
||
* app/gimppreview.c: fixed idle rendering crashes, don't
|
||
forget popups on GDK_2BUTTON_PRESS.
|
||
|
||
* app/app_procs.c: gimpbrushlist.h doesn't exist any more.
|
||
|
||
* app/gimpobject.h: removed the GimpObject typedef because it
|
||
is in apptypes.h
|
||
|
||
2001-02-07 Hans Breuer <Hans@Breuer.org>
|
||
|
||
* */makefile.msc : Gimp 1.3 for win32 (msc) builds and runs at
|
||
this short moment, it's a fast moving target nowadays :-)
|
||
|
||
* app/app_procs.c
|
||
* app/gimpbrush.c
|
||
* app/gimpbrushpipe.c
|
||
* app/gimppattern.c : make sure G_OS_WIN32 is defined (by glib.h
|
||
inclusion) before actually using it
|
||
|
||
* app/plug_in.h
|
||
* app/datafiles.h : <time.h> for time_t
|
||
|
||
* app/tile_swap.c : include <stdio.h> for SEEK_SET
|
||
|
||
* app/gimpcontainer.c : use G_GNUC_FUNCTION instead of
|
||
__FUNCTION__ to allow compiling without gcc
|
||
|
||
* app/dialog_handler.h : don't use conditional prototypes
|
||
for gmodule exported function but include <gmodule.h> and
|
||
use G_MODULE_EXPORT in prototype, too.
|
||
|
||
* app/gimpobject.h : added typedef for GimpObject
|
||
|
||
* libgimp/gimp.def : more exported symbols
|
||
|
||
* libgimp/gimpcolorselector.h : #include <gmodule.h> for
|
||
G_MODULE_EXPORT, sane prototypes.
|
||
|
||
* libgimp/gimpui.def : symbol export update, splitted to
|
||
gimpwidgets.def
|
||
|
||
* libgimpcolor/gimpcolor.def
|
||
* libgimpmath/gimpmath.def
|
||
* libgimpwidgets/gimpwidgets.def : updated
|
||
|
||
* libgimpwidgets/libgimp-glue.c : new file which supports
|
||
real dynamic linking on win32, against exported symbols from
|
||
the application or libgimp. This allows to resolve the
|
||
double dependency for currently 11 functions
|
||
|
||
2001-02-07 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/gimpdrawable-preview.[ch]: new files formerly known as
|
||
gimpdrawablepreview.[ch].
|
||
|
||
This a new naming scheme for methods of objects which live outside
|
||
their object's file. The old name implied a derived object (and
|
||
is in fact now taken by a GimpPreview subclass, see below).
|
||
|
||
Further candidates for renaming are e.g. gimpdrawable-invert.[ch],
|
||
gimpimage-convert.[ch] etc. Finaly, the main objects (image,
|
||
drawable) will go to their own directories together with their
|
||
subclasses.
|
||
|
||
* app/apptypes.h: added typedefs for the new objects:
|
||
|
||
* app/gimpbrushpreview.[ch]
|
||
* app/gimppatternpreview.[ch]: new subclasses of GimpPreview.
|
||
|
||
* app/gimpdrawablepreview.[ch]: contains a subclass of GimpPreview
|
||
now.
|
||
|
||
* app/gimpviewable.[ch]: renamed the virtual functions to
|
||
"get_preview" and "get_new_preview" to avoid confusion with the
|
||
new GimpPreview subclasses.
|
||
|
||
* app/gimppreview.[ch]: virtualized "create_preview" and
|
||
"create_popup".
|
||
|
||
* app/gimpmarshal.[ch]: new marsaller for GimpPreview.
|
||
|
||
* app/channels_dialog.c
|
||
* app/fileops.c
|
||
* app/gimpbrush.c
|
||
* app/gimpdnd.c
|
||
* app/gimpdrawable.c
|
||
* app/gimpimage.c
|
||
* app/gimppattern.c
|
||
* app/layer_select.c
|
||
* app/layers_dialog.c
|
||
* app/lc_dialog.c
|
||
* app/nav_window.c
|
||
* app/palette_import.c
|
||
* app/undo_history.c
|
||
* app/pdb/drawable_cmds.c
|
||
* app/pdb/image_cmds.c
|
||
* tools/pdbgen/pdb/drawable.pdb
|
||
* tools/pdbgen/pdb/image.pdb: changed accordingly.
|
||
|
||
2001-02-06 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimpcontainergridview.[ch]
|
||
* app/gimpcontainerlistview.[ch]: added "min_items_x" and
|
||
"min_items_y" parameters to the constructors.
|
||
|
||
* app/gimppreview.[ch]: added event handling for "click" and
|
||
"popup", show a dummy popup for testing.
|
||
|
||
* app/commands.c: changed accordingly.
|
||
|
||
* app/menus.c: added a separator and removed N_() from the test stuff.
|
||
|
||
2001-02-06 Simon Budig <simon@gimp.org>
|
||
|
||
* libgimpwidgets/gimpdialog.c
|
||
|
||
fixed the documentation.
|
||
|
||
2001-02-06 Simon Budig <simon@gimp.org>
|
||
|
||
* libgimpwidgets/gimpdialog.c
|
||
* app/tools/tool_options_dialog.c
|
||
|
||
Implemented a way to connect the delete-event of a gimpdialog
|
||
without adding an extra button. If you pass "_delete_event_"
|
||
as button text (untranslated) the button will not be created.
|
||
|
||
Removed the tool-options "Close" button. Lots of other Close-Buttons
|
||
wait for their removal.
|
||
|
||
2001-02-06 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/gimpconstrainedhwrapbox.[ch]: A bad hack on top of another
|
||
hack: The GtkHWrapBox "size_request" method _always_ wants a
|
||
maximal requisition height, which it of course gets from a
|
||
container like the scrolled window, yielding in wrong vscrollbar
|
||
calculation.
|
||
|
||
* app/gimpbrush.c: create a nice preview with scale and pipe
|
||
indicators.
|
||
|
||
* app/gimpcontainergridview.[ch]: use the GimpConstrainedHWrapBox.
|
||
|
||
* app/commands.c
|
||
* app/gimpcontainerlistview.c
|
||
* app/gimppreview.c: cleanup, fixed a crash in the preview idle
|
||
rendering function.
|
||
|
||
2001-02-06 Sven Neumann <sven@gimp.org>
|
||
|
||
* data/brushes/hsparks.gih
|
||
* data/brushes/vine.gih: seems we had forgotten to convert these
|
||
to the new format.
|
||
|
||
2001-02-05 Jay Cox <jaycox@gimp.org>
|
||
|
||
* app/gimphistogram.c: Applied patches by Roel Schroeven
|
||
<rschroev@yahoo.com> that fix histogram with mask calculation bug and
|
||
median calculation bug.
|
||
|
||
2001-02-06 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimpcontainergridview.[ch]: add the spacing between the
|
||
previews here instead of expecting an already bordered preview.
|
||
Set the widget background to white.
|
||
|
||
* app/gimppattern.c: removed the white border hack.
|
||
|
||
2001-02-06 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimpcontainergridview.[ch]
|
||
* app/gimpcontainerlistview.[ch]
|
||
* app/gimpcontainerview.[ch]: implemented "set_preview_size".
|
||
|
||
* app/commands.c: added a preview size slider to the test dialogs.
|
||
|
||
2001-02-05 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/gimpcontainergridview.[ch]: new widget providing a grid view
|
||
in the style of the current brush and pattern selections.
|
||
|
||
* app/gimpcontainerlistview.[ch]
|
||
* app/gimppreview.[ch]: the constructors take "width" and "height"
|
||
parameters now.
|
||
|
||
* app/gimpviewable.c: if the viewable is not able to generate
|
||
a static (cached) preview, create a new one and cache it ourselves.
|
||
|
||
* app/gimppattern.c: produce a nice preview.
|
||
|
||
* app/temp_buf.[ch]: changed temp_buf_copy_area() to take a
|
||
destination offset instead of a border parameter. This function
|
||
was not used at all before.
|
||
|
||
* app/commands.[ch]
|
||
* app/menus.c: test dialogs for the grid view.
|
||
|
||
2001-02-05 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimpcontainerlistview.[ch]
|
||
* app/gimpcontainerview.[ch]
|
||
* app/gimpmarshal.[ch]: moved the signal connecting stuff to the
|
||
GimpContainerViewClass which has virtual functions for insert,
|
||
remove and clear now which are implemented by the
|
||
GimpContainerListViewClass.
|
||
|
||
2001-02-05 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimpcontainer.[ch]
|
||
* app/gimplist.[ch]: made the "get_by_name" and the "by_index"
|
||
access functions methods of the GimpContainerClass. The semantic
|
||
of this index is somewhat unclear if we have e.g. a hash table
|
||
implementation but the container needs to have an order for the
|
||
ContainerView. Finally, the ordering will be a feature of the
|
||
ContainerView.
|
||
|
||
* app/gimpmarshal.[ch]: marshallers needed for the new methods.
|
||
|
||
* app/brushes.[ch]
|
||
* app/patterns.[ch]: the public global brush and pattern lists
|
||
are GimpContainers now (they are really GimpLists of course).
|
||
|
||
* app/brush_select.c
|
||
* app/devices.c
|
||
* app/gimpcontainerlistview.c
|
||
* app/gimpcontext.c
|
||
* app/gimpdnd.c
|
||
* app/pattern_select.c
|
||
* app/pdb/brush_select_cmds.c
|
||
* app/pdb/brushes_cmds.c
|
||
* app/pdb/pattern_select_cmds.c
|
||
* app/pdb/patterns_cmds.c
|
||
* tools/pdbgen/pdb/brush_select.pdb
|
||
* tools/pdbgen/pdb/brushes.pdb
|
||
* tools/pdbgen/pdb/pattern_select.pdb
|
||
* tools/pdbgen/pdb/patterns.pdb: changed accordingly.
|
||
|
||
2001-02-05 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/apptypes.h: some new files and data types:
|
||
|
||
* app/gimppreview.[ch]: new widgets which provides a view
|
||
of a GimpViewable.
|
||
|
||
* app/gimpcontainerview.[ch]: new abstract widget base class for
|
||
views of GimpContainers of GimpViewables
|
||
|
||
* app/gimpcontainerlistview.[ch]: (still) simple implementation of
|
||
a list view of the container.
|
||
|
||
* app/gimpbrush.[ch]
|
||
* app/gimppattern.[ch]: provide dumb implementations of the
|
||
GimpViewable's "preview" method.
|
||
|
||
* app/image_render.c: quick bad hack to enable preview sizes which
|
||
are != "preview_size": Always allocate data chunks for previews up
|
||
to 256 pixels width.
|
||
|
||
* app/drawable.c: emit the "incalidate_preview" signal from
|
||
drawable_update(). This may cause useless updates at the moment
|
||
but as we want to move from explicit updates to signal-driven
|
||
model-view stuff it's the right thing (TM).
|
||
|
||
* app/commands.[ch]
|
||
* app/interface.c
|
||
* app/menus.c: Added a "Test dialogs" menu to the Toolbox.
|
||
|
||
* app/pdb/image_cmds.c
|
||
* libgimp/gimpenums.h
|
||
* plug-ins/script-fu/script-fu-constants.c
|
||
* tools/pdbgen/enums.pl: propagated the new alpha channel stuff
|
||
to the autogenerated files.
|
||
|
||
2001-02-05 Nick Lamb <njl195@zepler.org.uk>
|
||
|
||
* app/channels_dialog.c
|
||
* app/gimpimage.c
|
||
* app/gimpimage.h: Initial commit of "Alpha" transparency channel
|
||
|
||
2001-02-04 Nick Lamb <njl195@zepler.org.uk>
|
||
|
||
* app/patterns.c: Missing <string.h> again
|
||
|
||
2001-02-04 Nick Lamb <njl195@zepler.org.uk>
|
||
|
||
* app/brushes.c: New file == new missing includes! <string.h>
|
||
|
||
2001-02-04 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/apptypes.h
|
||
* app/gimpviewable.[ch]: new object. Everything that can have a
|
||
preview will be a GimpViewable. The virtual functions are
|
||
"invalidate_preview", "preview" and "preview_new".
|
||
|
||
* app/gimpmarshal.[ch]: new marshaller needed for the viewable.
|
||
|
||
* app/gimpdrawable.[ch]
|
||
* app/gimpimage.[ch]: derived from GimpViewable. Removed the
|
||
preview stuff from the public interface.
|
||
|
||
Made a single boolean out of GimpImage's "comp_preview_valid"
|
||
array because we have only one composite preview.
|
||
|
||
* app/gimplayer.c: made the preview stuff private.
|
||
|
||
* app/gimppreviewcache.[ch]: removed gimp_preview_scale()...
|
||
|
||
* app/temp_buf.[ch]: ...and added it as temp_buf_scale() here.
|
||
|
||
* app/gimpdrawablepreview.[ch]: is a private method of
|
||
GimpDrawable now.
|
||
|
||
* app/channels_dialog.c
|
||
* app/convert.c
|
||
* app/drawable.c
|
||
* app/fileops.c
|
||
* app/floating_sel.c
|
||
* app/gimage.c
|
||
* app/gimage_mask.c
|
||
* app/gimpchannel.c
|
||
* app/gimpcontainer.c
|
||
* app/gimpdnd.c
|
||
* app/layer_select.c
|
||
* app/layers_dialog.c
|
||
* app/lc_dialog.c
|
||
* app/nav_window.c
|
||
* app/palette_import.c
|
||
* app/undo.c
|
||
* app/undo_history.c
|
||
* app/pdb/drawable_cmds.c
|
||
* app/pdb/image_cmds.c
|
||
* app/tools/crop.c
|
||
* app/tools/edit_selection.c
|
||
* app/tools/ink.c
|
||
* app/tools/paint_core.c
|
||
* tools/pdbgen/pdb/drawable.pdb
|
||
* tools/pdbgen/pdb/image.pdb
|
||
* po/POTFILES.in: changed accordingly.
|
||
|
||
2001-02-04 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/gimppattern.[ch]: new object.
|
||
|
||
* app/apptypes.h: added GimpPattern, removed GPattern.
|
||
|
||
* app/patterns.[ch]: contains only the "patterns_()" functions for
|
||
the global pattern list, s/pattern_list/global_pattern_list/g
|
||
|
||
* app/brushes.[ch]: s/brush_list/global_brush_list/g
|
||
|
||
* app/pattern_select.[ch]
|
||
* app/gimpcontext.[ch]: connect to the Patterns' and the pattern
|
||
list's signals.
|
||
|
||
* app/brush_select.[ch]
|
||
* app/devices.c
|
||
* app/disp_callbacks.[ch]
|
||
* app/gimpbrush.c
|
||
* app/gimpbrushgenerated.[ch]
|
||
* app/gimpcontextpreview.[ch]
|
||
* app/gimpdnd.[ch]
|
||
* app/indicator_area.c
|
||
* app/pdb/brush_select_cmds.c
|
||
* app/pdb/brushes_cmds.c
|
||
* app/pdb/pattern_select_cmds.c
|
||
* app/pdb/patterns_cmds.c
|
||
* app/tools/bucket_fill.c
|
||
* app/tools/clone.c
|
||
* tools/pdbgen/pdb/brush_select.pdb
|
||
* tools/pdbgen/pdb/brushes.pdb
|
||
* tools/pdbgen/pdb/pattern_select.pdb
|
||
* tools/pdbgen/pdb/patterns.pdb
|
||
* po/POTFILES.in: changed accordingly.
|
||
|
||
2001-02-04 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimpcontainer.[ch]: renamed gimp_container_lookup() back
|
||
to gimp_container_have(). Virtualized the "add", "remove",
|
||
"have" and "foreach" methods and removed the "children" list.
|
||
|
||
* app/gimplist.[ch]: derived from GimpContainer now.
|
||
|
||
* app/Makefile.am
|
||
* app/gimpdatalist.[ch]: new object: an alphabetically sorted
|
||
GimpList with unique names.
|
||
|
||
* app/gimpbrushlist.[ch]: removed. It's job is done by the
|
||
GimpDataList now.
|
||
|
||
* app/brushes.[ch]: new files. Contains the "brushes_()" functions
|
||
for the global brush list.
|
||
|
||
* app/app_procs.c
|
||
* app/apptypes.h
|
||
* app/brush_select.[ch]
|
||
* app/colormap_dialog.[ch]
|
||
* app/context_manager.c
|
||
* app/devices.c
|
||
* app/gimpbrush.c
|
||
* app/gimpcontext.c
|
||
* app/gimpdnd.c
|
||
* app/info_window.c
|
||
* app/lc_dialog.c
|
||
* app/module_db.c
|
||
* app/nav_window.c
|
||
* app/pdb/brush_select_cmds.c
|
||
* app/pdb/brushes_cmds.c
|
||
* app/tools/by_color_select.c
|
||
* app/tools/paintbrush.c
|
||
* tools/pdbgen/pdb/brush_select.pdb
|
||
* tools/pdbgen/pdb/brushes.pdb
|
||
* po/POTFILES.in: changed accordingly.
|
||
|
||
2001-02-04 Nick Lamb <njl195@zepler.org.uk>
|
||
|
||
* app/gimpdrawablepreview.c: add <stdlib.h> or <string.h> where needed
|
||
* app/gimpobject.c
|
||
* app/gimpui.c
|
||
* app/image_new.c
|
||
* app/layers_dialog.c
|
||
* app/paint_funcs.c
|
||
* app/palette.c
|
||
* app/palette_import.c
|
||
* app/palette_select.c
|
||
* app/tile_manager.c
|
||
* app/toolbox.c
|
||
* app/user_install.c
|
||
* app/tools/by_color_select.c
|
||
* app/tools/curves.c
|
||
* app/tools/measure.c
|
||
* app/tools/shear_tool.c
|
||
|
||
2001-02-03 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/gimpset.[ch]: removed.
|
||
|
||
* app/gimpcontainer.[ch]: some minor fixes, cleanup.
|
||
|
||
* app/context_manager.[ch]: made the "image_context" a GimpContainer
|
||
and moved it here...
|
||
|
||
* app/appenv.h
|
||
* app/main.c: ...from here.
|
||
|
||
* app/app_procs.c
|
||
* app/colormap_dialog.[ch]
|
||
* app/commands.c
|
||
* app/gimage.c
|
||
* app/gimpcontext.c
|
||
* app/gimpimage.c
|
||
* app/info_window.c
|
||
* app/lc_dialog.c
|
||
* app/lut_funcs.c
|
||
* app/module_db.c
|
||
* app/nav_window.c
|
||
* app/palette_import.c
|
||
* app/paths_dialog.c
|
||
* app/pixel_region.c
|
||
* app/scale.c
|
||
* app/scroll.c
|
||
* app/selection.c
|
||
* app/temp_buf.c
|
||
* app/undo.c
|
||
* app/pdb/procedural_db.c
|
||
* app/tools/by_color_select.c
|
||
* app/tools/clone.c
|
||
* app/tools/color_balance.c
|
||
* app/tools/color_picker.c
|
||
* app/tools/convolve.c
|
||
* app/tools/crop.c
|
||
* app/tools/curves.c
|
||
* app/tools/paint_core.c
|
||
* app/tools/transform_core.c: s/GimpSet/GimpContainer/g, removed
|
||
many useless #include "appenv.h".
|
||
|
||
* app/gimpdrawablepreview.c
|
||
* app/gdisplay.c: found two badly crashing bugs i have introduced
|
||
with my last changes here.
|
||
|
||
2001-02-03 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/apptypes.h
|
||
|
||
* app/gimpcontainer.[ch]: new (yet unused and untested) object
|
||
which will replace GimpSet, GimpList and GimpBrushList and be the
|
||
container and signal proxy for all collections of GimpObjects.
|
||
|
||
2001-02-02 Michael Natterer <mitch@gimp.org>
|
||
|
||
* po/POTFILES.in: forgot to rename the files here.
|
||
|
||
2001-02-01 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/gimpchannel.[ch]
|
||
* app/gimplayer.[ch]: new files moved here by Yosh.
|
||
|
||
* app/channel.[ch]
|
||
* app/layer.[ch]: removed.
|
||
|
||
* app/gdisplay.c: cleanup stuff.
|
||
|
||
* app/[lotsa files].c
|
||
* tools/pdbgen/Makefile.am
|
||
* tools/pdbgen/pdb.pl
|
||
* tools/pdbgen/pdb/channel.pdb
|
||
* tools/pdbgen/pdb/drawable.pdb
|
||
* tools/pdbgen/pdb/floating_sel.pdb
|
||
* tools/pdbgen/pdb/layer.pdb: changed includes accordingly.
|
||
|
||
2001-01-31 Seth Burgess <sjburges@gimp.org>
|
||
|
||
* plug-ins/perl/po/POTFILES.in : removed bilb/lib/Gimp.pm from list,
|
||
as this is a file generated during the build!!
|
||
|
||
2001-01-30 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/image_render.[ch]: prefixed all global variables with
|
||
"render_" (we had a global variable named "temp_buf", brrrr),
|
||
general cleanup.
|
||
|
||
* app/colormap_dialog.c
|
||
* app/layers_dialog.c: changed accordingly.
|
||
|
||
2001-01-29 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/dialog_types.h: removed because it was unused.
|
||
|
||
* app/Makefile.am: removed dialog_types.h, reordered the file list
|
||
to group together what may go to "pixmaps", "widgets" and
|
||
"lowlevel" (???) directories.
|
||
|
||
2001-01-29 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/channel.[ch]: removed channel_update() because channel.c
|
||
should not call gdisplays_update(). Use drawable_update() and
|
||
a subsequent gdisplays_update() instead.
|
||
|
||
* app/qmask.c: do as described above.
|
||
|
||
* app/channel_ops.c
|
||
* app/channels_dialog.c
|
||
* app/commands.c
|
||
* app/convert.c
|
||
* app/disp_callbacks.c
|
||
* app/equalize.c
|
||
* app/fileops.c
|
||
* app/floating_sel.c
|
||
* app/gdisplay.c
|
||
* app/gimage.c
|
||
* app/gimage_mask.c
|
||
* app/gimpdnd.c
|
||
* app/gimpdrawablepreview.c
|
||
* app/gimphistogram.c
|
||
* app/gimplayermask.c
|
||
* app/global_edit.c
|
||
* app/histogramwidget.c
|
||
* app/histogramwidget.h
|
||
* app/image_map.c
|
||
* app/image_new.c
|
||
* app/invert.c
|
||
* app/layer.c
|
||
* app/layer_select.c
|
||
* app/paths_dialog.c
|
||
* app/plug_in.c
|
||
* app/scan_convert.c
|
||
* app/undo_history.c
|
||
* app/xcf.c: include gimpdrawable.h instead of drawable.h where
|
||
possible, removed useless includes, minor other cleanups.
|
||
|
||
2001-01-29 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/gimpdrawablepreview.[ch]: new file with one set of functions...
|
||
|
||
* app/channel.[ch]
|
||
* app/layer.[ch]: ...instead of having everything duplicated three
|
||
times here.
|
||
|
||
* app/channels_dialog.c
|
||
* app/floating_sel.c
|
||
* app/floating_sel.h
|
||
* app/gimpdnd.c
|
||
* app/gimpimage.c
|
||
* app/layer_select.c
|
||
* app/layers_dialog.c
|
||
* app/selection.c
|
||
* app/pdb/drawable_cmds.c
|
||
* tools/pdbgen/pdb/drawable.pdb: changed accordingly, cleanup.
|
||
|
||
2001-01-29 Sven Neumann <sven@gimp.org>
|
||
|
||
* HACKING: defined The GIMP Hackordnung (ACHTUNG!)
|
||
|
||
2001-01-29 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/undo_history.h: new file.
|
||
|
||
* app/apptypes.h: removed the "Channel" typedef.
|
||
|
||
* app/channel.[ch]: renamed all functions to gimp_channel_*()
|
||
|
||
* app/channel_ops.c
|
||
* app/channels_dialog.c
|
||
* app/commands.c
|
||
* app/disp_callbacks.c
|
||
* app/gdisplay.c
|
||
* app/gimage_mask.[ch]
|
||
* app/gimpdnd.c
|
||
* app/gimphistogram.c
|
||
* app/gimpimage.[ch]
|
||
* app/global_edit.c
|
||
* app/layer.c
|
||
* app/layers_dialog.c
|
||
* app/qmask.c
|
||
* app/scan_convert.c
|
||
* app/scan_convert.h
|
||
* app/toolbox.c
|
||
* app/undo.[ch]
|
||
* app/undo_history.c
|
||
* app/xcf.[ch]
|
||
* app/pdb/channel_cmds.c
|
||
* app/pdb/color_cmds.c
|
||
* app/pdb/drawable_cmds.c
|
||
* app/pdb/image_cmds.c
|
||
* app/pdb/pdb_glue.h
|
||
* app/pdb/selection_cmds.c
|
||
* app/pdb/tools_cmds.c
|
||
* app/tools/bezier_select.c
|
||
* app/tools/bezier_selectP.h
|
||
* app/tools/blend.c
|
||
* app/tools/bucket_fill.c
|
||
* app/tools/by_color_select.c
|
||
* app/tools/crop.c
|
||
* app/tools/ellipse_select.c
|
||
* app/tools/free_select.c
|
||
* app/tools/fuzzy_select.c
|
||
* app/tools/fuzzy_select.h
|
||
* app/tools/iscissors.c
|
||
* app/tools/rect_select.c
|
||
* app/tools/text_tool.c
|
||
* app/tools/transform_core.c
|
||
* tools/pdbgen/pdb.pl
|
||
* tools/pdbgen/pdb/channel.pdb
|
||
* tools/pdbgen/pdb/color.pdb
|
||
* tools/pdbgen/pdb/drawable.pdb
|
||
* tools/pdbgen/pdb/selection.pdb
|
||
* tools/pdbgen/pdb/tools.pdb: changed accordingly.
|
||
|
||
2001-01-29 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/pdb/Makefile.am
|
||
* app/pdb/pdb_glue.h: new file which contains the stuff that makes
|
||
PDB code generation easier but is ugly when used in the app
|
||
(see my comment in the log below).
|
||
|
||
Contains:
|
||
gimp_drawable_[layer|layer_mask|channel]()
|
||
[channel|gimp_layer]_[set|get]_[name|tattoo]()
|
||
|
||
* app/channel.[ch]
|
||
* app/channels_dialog.c
|
||
* app/gimpdrawable.h
|
||
* app/gimpimage.c
|
||
* app/gimplayermask.h
|
||
* app/layer.c
|
||
* app/layer.h
|
||
* app/toolbox.c
|
||
* app/undo.c
|
||
* app/xcf.c
|
||
* app/pdb/channel_cmds.c
|
||
* app/pdb/drawable_cmds.c
|
||
* app/pdb/layer_cmds.c
|
||
* app/pdb/selection_cmds.c
|
||
* app/tools/bezier_select.c
|
||
* app/tools/bucket_fill.c
|
||
* app/tools/by_color_select.c
|
||
* app/tools/ellipse_select.c
|
||
* app/tools/free_select.c
|
||
* app/tools/fuzzy_select.c
|
||
* app/tools/iscissors.c
|
||
* app/tools/rect_select.c
|
||
* tools/pdbgen/pdb/channel.pdb
|
||
* tools/pdbgen/pdb/drawable.pdb
|
||
* tools/pdbgen/pdb/layer.pdb
|
||
* tools/pdbgen/pdb/selection.pdb: changed accordingly.
|
||
|
||
2001-01-29 Sven Neumann <sven@gimp.org>
|
||
|
||
* AUTHORS
|
||
* app/authors.h
|
||
* app/pdb/channel_cmds.c
|
||
* app/pdb/internal_procs.c
|
||
* app/pdb/selection_cmds.c
|
||
* libgimp/gimpchannel_pdb.c
|
||
* libgimp/gimpchannel_pdb.h
|
||
* libgimp/gimpselection_pdb.c
|
||
* libgimp/gimpselection_pdb.h
|
||
* tools/authorsgen/contributors
|
||
* tools/pdbgen/pdb/channel.pdb
|
||
* tools/pdbgen/pdb/selection.pdb: applied a patch from Adam Spiers
|
||
<adam@spiers.net> which adds two new PDB functions: selection_combine
|
||
and channel_combine_masks.
|
||
|
||
2001-01-29 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/apptypes.h: removed the "Layer" typedef.
|
||
|
||
* app/layer.[ch]: removed the defines of the old function names.
|
||
|
||
Don't implement methods of the parent class (get_name, get_tattoo, ...)
|
||
but define them as macros. They will go to a separate "pdb_glue.h"
|
||
header because they are used only by the PDB to simplify code
|
||
generation (no application file should say gimp_layer_get_tattoo()
|
||
but always gimp_drawable_get_tatoo()).
|
||
|
||
* app/channel.h
|
||
* app/channel_ops.c
|
||
* app/channels_dialog.c
|
||
* app/commands.c
|
||
* app/convert.c
|
||
* app/disp_callbacks.c
|
||
* app/floating_sel.[ch]
|
||
* app/gdisplay.c
|
||
* app/gimage.c
|
||
* app/gimage_mask.c
|
||
* app/gimage_mask.h
|
||
* app/gimpdnd.c
|
||
* app/gimpdrawable.h
|
||
* app/gimpimage.[ch]
|
||
* app/gimplayermask.h
|
||
* app/global_edit.c
|
||
* app/image_new.c
|
||
* app/layer_select.c
|
||
* app/layers_dialog.c
|
||
* app/resize.c
|
||
* app/undo.c
|
||
* app/xcf.[ch]
|
||
* app/pdb/drawable_cmds.c
|
||
* app/pdb/floating_sel_cmds.c
|
||
* app/pdb/image_cmds.c
|
||
* app/pdb/layer_cmds.c
|
||
* app/tools/bucket_fill.c
|
||
* app/tools/by_color_select.c
|
||
* app/tools/clone.c
|
||
* app/tools/crop.c
|
||
* app/tools/edit_selection.c
|
||
* app/tools/ink.c
|
||
* app/tools/move.c
|
||
* app/tools/paint_core.c
|
||
* app/tools/rect_select.c
|
||
* app/tools/text_tool.c
|
||
* app/tools/transform_core.c
|
||
* tools/pdbgen/pdb/drawable.pdb
|
||
* tools/pdbgen/pdb/floating_sel.pdb
|
||
* tools/pdbgen/pdb/image.pdb
|
||
* tools/pdbgen/pdb/layer.pdb: changed accordingly, cleanup.
|
||
|
||
2001-01-28 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/gimplayermask.[ch]: new files cut out of layer.[ch]. Renamed
|
||
all functions to gimp_layes_mask_*(). removed artefacts like
|
||
the ref/unref functions.
|
||
|
||
* app/apptypes.h: removed the "LayerMask" typedef.
|
||
|
||
* app/layer.[ch]: removed the layer mask stuff and renamed all
|
||
functions to gimp_layer_*(). Added temporary typedefs for the old
|
||
function names. The layer mask preview stuff is still there (should
|
||
probably go to new layer_preview.{ch] files).
|
||
|
||
* app/gimpimage.[ch]: added
|
||
gimp_image_invalidate_[layer|channel]_previews() formerly known as
|
||
[layer|channel]_invalidate_previews().
|
||
|
||
* app/channel.[ch]: moved channel_layer_alpha() and
|
||
channel_layer_mask() here because they are methods of the Channel.
|
||
|
||
* app/channel_ops.c
|
||
* app/convert.c
|
||
* app/disp_callbacks.c
|
||
* app/fileops.c
|
||
* app/floating_sel.c
|
||
* app/gimage.c
|
||
* app/gimage_mask.c
|
||
* app/gimpdnd.c
|
||
* app/global_edit.c
|
||
* app/layers_dialog.c
|
||
* app/preferences_dialog.c
|
||
* app/toolbox.c
|
||
* app/undo.c
|
||
* app/xcf.c
|
||
* app/pdb/drawable_cmds.c
|
||
* app/pdb/image_cmds.c
|
||
* app/pdb/layer_cmds.c
|
||
* app/tools/crop.c
|
||
* app/tools/text_tool.c
|
||
* app/tools/transform_core.c
|
||
* tools/pdbgen/pdb.pl
|
||
* tools/pdbgen/pdb/drawable.pdb: changed accordingly, cleanup.
|
||
|
||
2001-01-26 Daniel Egger <egger@suse.de>
|
||
|
||
* plug-ins/common/iwarp.c: Cleaned up code and
|
||
implemented 2 small optimisations.
|
||
|
||
2001-01-26 Daniel Egger <egger@suse.de>
|
||
|
||
* libgimpmath/gimpvector.c:
|
||
* libgimpmath/gimpvector.h: Added pass-by-value functions
|
||
to allow code simplifications and functionchaining.
|
||
|
||
Thu Jan 25 10:22:39 PST 2001 Manish Singh <yosh@gimp.org>
|
||
|
||
* tools/pdbgen/pdb/channel.pdb: resurrected channel_set_color
|
||
|
||
2001-01-25 Michael Natterer <mitch@gimp.org>
|
||
|
||
* libgimp/Makefile.am
|
||
* libgimp/gimp.h
|
||
* libgimp/gimpcompat.h: removed.
|
||
|
||
The GIMP 1.0 API is not supported any more !!!
|
||
|
||
* plug-ins/print/print-image-gimp.c
|
||
* plug-ins/print/print.c
|
||
* plug-ins/print/print_gimp.h: a quick fix for old compat cruft.
|
||
This is temporary and will be replaced by Gimp-Print's development
|
||
version.
|
||
|
||
* plug-ins/xjt/xjpeg.c: use GimpRGB.
|
||
|
||
2001-01-25 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/libgimp_glue.[ch]: cleanup
|
||
|
||
* app/pdb/channel_cmds.c
|
||
* app/pdb/palette_cmds.c
|
||
* app/pdb/tools_cmds.c
|
||
* tools/pdbgen/app.pl
|
||
* tools/pdbgen/lib.pl
|
||
* tools/pdbgen/pdb.pl
|
||
* tools/pdbgen/pdb/channel.pdb
|
||
* tools/pdbgen/pdb/palette.pdb
|
||
* tools/pdbgen/pdb/tools.pdb: fixed pdbgen code for color type. Seems
|
||
to actually work now.
|
||
|
||
* TODO.xml: updated
|
||
|
||
* plug-ins/Makefile.am: disabled build of gimp-perl until it has
|
||
catched up with the API changes in libgimp
|
||
|
||
2001-01-25 Sven Neumann <sven@gimp.org>
|
||
|
||
* libgimpwidgets/gimpwidgets.c (gimp_mem_size_entry_new): merged fix
|
||
from gimp-1-2 branch
|
||
|
||
2001-01-25 Sven Neumann <sven@gimp.org>
|
||
|
||
* tools/pdbgen/lib.pl
|
||
* tools/pdbgen/pdb.pl
|
||
* tools/pdbgen/pdb/channel.pdb
|
||
* tools/pdbgen/pdb/palette.pdb
|
||
* tools/pdbgen/pdb/tools.pdb: changed these with the help of Yosh.
|
||
PDB functions take GimpRGB as color type now.
|
||
|
||
* app/plug_in.c
|
||
* app/pdb/channel_cmds.c
|
||
* app/pdb/internal_procs.c
|
||
* app/pdb/palette_cmds.c
|
||
* app/pdb/procedural_db.[ch]
|
||
* app/pdb/tools_cmds.c
|
||
* libgimp/gimp.[ch]
|
||
* libgimp/gimpchannel.[ch]
|
||
* libgimp/gimpchannel_pdb.[ch]
|
||
* libgimp/gimppalette_pdb.[ch]
|
||
* libgimp/gimpprotocol.[ch]
|
||
* libgimp/gimptools_pdb.[ch]: incremented Gimp protocol version
|
||
and changed color type from array of chars to GimpRGB.
|
||
|
||
* libgimp/Makefile.am
|
||
* libgimp/gimppalette.[ch]: removed these files again
|
||
|
||
* app/libgimp_glue.[ch]
|
||
* libgimpwidgets/gimpcolorbutton.c
|
||
* plug-ins/Lighting/lighting_main.c
|
||
* plug-ins/Lighting/lighting_preview.c
|
||
* plug-ins/MapObject/mapobject_image.c
|
||
* plug-ins/MapObject/mapobject_main.c
|
||
* plug-ins/MapObject/mapobject_preview.c
|
||
* plug-ins/common/apply_lens.c
|
||
* plug-ins/common/blinds.c
|
||
* plug-ins/common/borderaverage.c
|
||
* plug-ins/common/checkerboard.c
|
||
* plug-ins/common/colorify.c
|
||
* plug-ins/common/colortoalpha.c
|
||
* plug-ins/common/cubism.c
|
||
* plug-ins/common/exchange.c
|
||
* plug-ins/common/film.c
|
||
* plug-ins/common/gif.c
|
||
* plug-ins/common/grid.c
|
||
* plug-ins/common/mapcolor.c
|
||
* plug-ins/common/mblur.c
|
||
* plug-ins/common/nova.c
|
||
* plug-ins/common/papertile.c
|
||
* plug-ins/common/png.c
|
||
* plug-ins/common/polar.c
|
||
* plug-ins/common/psd.c
|
||
* plug-ins/common/semiflatten.c
|
||
* plug-ins/common/sinus.c
|
||
* plug-ins/common/sparkle.c
|
||
* plug-ins/common/tiff.c
|
||
* plug-ins/common/vpropagate.c
|
||
* plug-ins/common/warp.c
|
||
* plug-ins/common/whirlpinch.c
|
||
* plug-ins/gap/gap_filter_iterators.c
|
||
* plug-ins/gap/gap_mov_dialog.c
|
||
* plug-ins/gdyntext/gdyntext.c
|
||
* plug-ins/gfig/gfig.c
|
||
* plug-ins/gfli/gfli.c
|
||
* plug-ins/ifscompose/ifscompose.c
|
||
* plug-ins/maze/handy.c
|
||
* plug-ins/mosaic/mosaic.c
|
||
* plug-ins/pagecurl/pagecurl.c
|
||
* plug-ins/script-fu/script-fu-scripts.c
|
||
* plug-ins/script-fu/script-fu.c
|
||
* plug-ins/xjt/xjt.c: changed accordingly. A few plug-ins need
|
||
to be looked at more closely after this change. I tried to put
|
||
FIXME comments into those.
|
||
|
||
2001-01-24 Michael Natterer <mitch@gimp.org>
|
||
|
||
* Makefile.am
|
||
* configure.in
|
||
* gimptool.in: added the new library below.
|
||
|
||
* libgimpwidgets/Makefile.am
|
||
* libgimpwidgets/gimpchainbutton.[ch]
|
||
* libgimpwidgets/gimpcolorarea.[ch]
|
||
* libgimpwidgets/gimpcolorbutton.[ch]
|
||
* libgimpwidgets/gimpdialog.[ch]
|
||
* libgimpwidgets/gimpfileselection.[ch]
|
||
* libgimpwidgets/gimphelpui.[ch]
|
||
* libgimpwidgets/gimppatheditor.[ch]
|
||
* libgimpwidgets/gimppixmap.[ch]
|
||
* libgimpwidgets/gimpquerybox.[ch]
|
||
* libgimpwidgets/gimpsizeentry.[ch]
|
||
* libgimpwidgets/gimpunitmenu.[ch]
|
||
* libgimpwidgets/gimpwidgets.[ch]
|
||
* libgimpwidgets/gimpwidgets.def
|
||
* libgimpwidgets/gimpwidgetstypes.h: new shared library.
|
||
|
||
Currently there are some ugly dependencies into libgimp. These
|
||
will be removed and go to a "libgimpglue" library which will be
|
||
a library for functions which share a common interface between
|
||
plug-ins and the app but have different implementations.
|
||
|
||
Include "libgimp/gimpunit.h" from "libgimpwidgets/gimpwidgetstypes.h"
|
||
to simulate this upcoming separation.
|
||
|
||
* libgimp/Makefile.am
|
||
* libgimp/gimpchainbutton.[ch]
|
||
* libgimp/gimpcolorarea.[ch]
|
||
* libgimp/gimpcolorbutton.[ch]
|
||
* libgimp/gimpdialog.[ch]
|
||
* libgimp/gimpfileselection.[ch]
|
||
* libgimp/gimphelpui.[ch]
|
||
* libgimp/gimppatheditor.[ch]
|
||
* libgimp/gimppixmap.[ch]
|
||
* libgimp/gimpquerybox.[ch]
|
||
* libgimp/gimpsizeentry.[ch]
|
||
* libgimp/gimpunitmenu.[ch]
|
||
* libgimp/gimpwidgets.[ch]: removed from here.
|
||
|
||
* libgimp/gimpui.h
|
||
* libgimp/gimpuitypes.h
|
||
* libgimp/makefile.mingw.in
|
||
* libgimp/makefile.msc: changed accordingly.
|
||
|
||
* app/[all ui files]
|
||
* app/pdb/palette_cmds.c
|
||
* app/pdb/tools_cmds.c
|
||
* tools/pdbgen/pdb/palette.pdb
|
||
* tools/pdbgen/pdb/tools.pdb: #include "libgimpwidgets/gimpwidgets.h"
|
||
and removed useless includes.
|
||
|
||
* app/apptypes.h: #include "libgimpwidgets/gimpwidgetstypes.h"
|
||
|
||
* app/Makefile.am
|
||
* plug-ins/[all makefiles which link against libgimpui]:
|
||
link against libgimpwidgets.la
|
||
|
||
* po-libgimp/POTFILES.in: changed file locations.
|
||
|
||
2001-01-24 Simon Budig <simon@gimp.org>
|
||
|
||
* plug-ins/common/colortoalpha.c: wrapped some actions in a
|
||
gimp_undo_push_group_start/end, so you dont have to undo
|
||
two steps when the plugin adds an alpha channel.
|
||
|
||
2001-01-24 Michael Natterer <mitch@gimp.org>
|
||
|
||
* libgimpwidgets/.cvsignore
|
||
* libgimpwidgets/Makefile.am
|
||
* libgimpwidgets/makefile.mingw.in
|
||
* libgimpwidgets/makefile.msc: library stub. Please ignore for now :)
|
||
|
||
2001-01-24 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/paint_funcs.c: brought the array used for optimization back in
|
||
sync with the LayerModeEffects enum. This was causing really strange
|
||
rendering errors. Started to clean up the file up and removed the
|
||
unused layer_mode names.
|
||
|
||
* app/tile.[ch]
|
||
* plug-ins/common/colortoalpha.c: small cleanups
|
||
|
||
* po/POTFILES.in: removed app/paint_funcs.c
|
||
|
||
2001-01-24 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/tools/airbrush.c
|
||
* app/tools/by_color_select.c
|
||
* app/tools/color_picker.c: include gimpcolor/gimpcolor.h
|
||
|
||
* libgimpcolor/gimprgb.c: optimized compositing functions.
|
||
|
||
* plug-ins/Lighting/lighting_preview.c
|
||
* plug-ins/MapObject/mapobject_preview.c: use gimp_rgb_composite
|
||
functions instead of doing the blending manually
|
||
|
||
* plug-ins/MapObject/map_object_shade.c: fixed a rendering bug when
|
||
transparent_background == FALSE
|
||
|
||
2001-01-24 Michael Natterer <mitch@gimp.org>
|
||
|
||
* Makefile.am
|
||
* configure.in
|
||
* gimptool.in: added stuff for the new library below.
|
||
|
||
* libgimpmath/.cvsignore
|
||
* libgimpmath/Makefile.am
|
||
* libgimpmath/gimpmath.def
|
||
* libgimpmath/gimpmath.h
|
||
* libgimpmath/gimpmathtypes.h
|
||
* libgimpmath/gimpmatrix.c
|
||
* libgimpmath/gimpmatrix.h
|
||
* libgimpmath/gimpvector.c
|
||
* libgimpmath/gimpvector.h
|
||
* libgimpmath/makefile.mingw.in
|
||
* libgimpmath/makefile.msc: new shared library. Depends on glib only.
|
||
|
||
* libgimp/Makefile.am
|
||
* libgimp/gimp.def
|
||
* libgimp/gimp.h: removed the math stuff.
|
||
|
||
* libgimp/gimpmath.h
|
||
* libgimp/gimpmatrix.[ch]
|
||
* libgimp/gimpvector.[ch]: removed.
|
||
|
||
* app/Makefile.am
|
||
* plug-ins/Lighting/Makefile.am
|
||
* plug-ins/MapObject/Makefile.am
|
||
* plug-ins/pagecurl/Makefile.am: link against libgimpmath.la
|
||
|
||
* app/[many files]
|
||
* libgimpcolor/gimpcolorspace.c
|
||
* libgimpcolor/gimprgb.c
|
||
* libgimp/gimpadaptivesupersample.c
|
||
* libgimp/gimpbilinear.c
|
||
* libgimp/gimpwidgets.c
|
||
* modules/colorsel_gtk.c
|
||
* modules/colorsel_triangle.c
|
||
* modules/colorsel_water.c
|
||
* plug-ins/libgck/gck/gckcolor.c
|
||
* tools/pdbgen/pdb/channel.pdb
|
||
* tools/pdbgen/pdb/image.pdb: include "libgimpmath/gimpmath.h",
|
||
removed the remaining includes of the old color stuff.
|
||
|
||
2001-01-23 Michael Natterer <mitch@gimp.org>
|
||
|
||
* Makefile.am
|
||
* configure.in
|
||
* gimptool.in: added stuff for the new library below.
|
||
|
||
* libgimpcolor/.cvsignore
|
||
* libgimpcolor/Makefile.am
|
||
* libgimpcolor/gimpcolor.h
|
||
* libgimpcolor/gimpcolorspace.c
|
||
* libgimpcolor/gimpcolorspace.h
|
||
* libgimpcolor/gimpcolortypes.h
|
||
* libgimpcolor/gimphsv.c
|
||
* libgimpcolor/gimphsv.h
|
||
* libgimpcolor/gimprgb.c
|
||
* libgimpcolor/gimprgb.h: new shared library which both the app
|
||
and plug-ins link against. The library depends only on glib.
|
||
|
||
* libgimpcolor/gimpcolor.def
|
||
* libgimpcolor/makefile.mingw.in
|
||
* libgimpcolor/makefile.msc: added Win32 build files which
|
||
definitely don't work.
|
||
|
||
* libgimp/Makefile.am
|
||
* libgimp/gimpcolor.[ch]
|
||
* libgimp/gimpcolorspace.[ch]: removed.
|
||
|
||
* libgimp/gimp.h
|
||
* libgimp/gimpadaptivesupersample.c
|
||
* libgimp/gimpbilinear.c
|
||
* libgimp/gimppalette.c
|
||
* libgimp/gimptypes.h: include the stuff from libgimpcolor.
|
||
|
||
Plug-Ins don't need to include <libgimpcolor/gimpcolor.h>
|
||
explicitely. LibGimp depends on libgimpcolor and thus also includes
|
||
it's headers.
|
||
|
||
* libgimp/gimp.def
|
||
* libgimp/makefile.mingw.in: fiddled around with Win32 stuff...
|
||
|
||
* app/Makefile.am: link against libgimpcolor.la
|
||
|
||
* app/apptypes.h: include "libgimpcolor/gimpcolortypes.h"
|
||
|
||
* app/asupsample.c
|
||
* app/channels_dialog.c
|
||
* app/colormap_dialog.c
|
||
* app/commands.c
|
||
* app/convert.c
|
||
* app/devices.c
|
||
* app/disp_callbacks.c
|
||
* app/drawable.c
|
||
* app/gimpcontext.c
|
||
* app/gimpdnd.c
|
||
* app/gimpimage.c
|
||
* app/gimppalette.c
|
||
* app/gimprc.c
|
||
* app/gradient.c
|
||
* app/libgimp_glue.c
|
||
* app/palette.c
|
||
* app/palette_import.c
|
||
* app/qmask.c
|
||
* app/xcf.c
|
||
* app/tools/paint_core.c
|
||
* app/tools/paintbrush.c
|
||
* app/tools/pencil.c: include "libgimpcolor/gimpcolor.h" before all
|
||
gimp includes because it's a standalone library.
|
||
|
||
* plug-ins/FractalExplorer/Makefile.am
|
||
* plug-ins/Lighting/Makefile.am
|
||
* plug-ins/MapObject/Makefile.am
|
||
* plug-ins/bmp/Makefile.am
|
||
* plug-ins/common/Makefile.am
|
||
* plug-ins/common/mkgen.pl
|
||
* plug-ins/dbbrowser/Makefile.am
|
||
* plug-ins/faxg3/Makefile.am
|
||
* plug-ins/fits/Makefile.am
|
||
* plug-ins/flame/Makefile.am
|
||
* plug-ins/fp/Makefile.am
|
||
* plug-ins/gap/Makefile.am
|
||
* plug-ins/gdyntext/Makefile.am
|
||
* plug-ins/gfig/Makefile.am
|
||
* plug-ins/gflare/Makefile.am
|
||
* plug-ins/gfli/Makefile.am
|
||
* plug-ins/gimpressionist/Makefile.am
|
||
* plug-ins/helpbrowser/Makefile.am
|
||
* plug-ins/ifscompose/Makefile.am
|
||
* plug-ins/imagemap/Makefile.am
|
||
* plug-ins/maze/Makefile.am
|
||
* plug-ins/mosaic/Makefile.am
|
||
* plug-ins/pagecurl/Makefile.am
|
||
* plug-ins/print/Makefile.am
|
||
* plug-ins/rcm/Makefile.am
|
||
* plug-ins/script-fu/Makefile.am
|
||
* plug-ins/sel2path/Makefile.am
|
||
* plug-ins/sgi/Makefile.am
|
||
* plug-ins/webbrowser/Makefile.am
|
||
* plug-ins/xjt/Makefile.am: add libgimpcolor.la to LDADD.
|
||
|
||
* INSTALL: don't recommend to --disable-shared for development.
|
||
|
||
* TODO.xml: increased some percentages, added plug-in help stuff.
|
||
|
||
2001-01-23 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/libgimp_glue.[ch]: new files containing stuff needed for
|
||
linking libgimp stuff against the app. This file is not needed
|
||
at all for the app itself and should never be included.
|
||
|
||
* app/gimpcontext.[ch]: removed from here.
|
||
|
||
* libgimp/Makefile.am
|
||
* libgimp/gimp.h
|
||
* libgimp/gimppalette.[ch]: new files for the PDB wrapping
|
||
gimp_palette_*_rgb() stuff.
|
||
|
||
* libgimp/gimpcolor.[ch]: removed the PDB dependency from here.
|
||
|
||
2001-01-23 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/paint_funcs.c
|
||
* app/pixel_processor.c
|
||
* app/tile.c
|
||
* app/tile_cache.c
|
||
* app/tile_manager.c
|
||
* app/tile_pvt.h
|
||
* app/tile_swap.[ch]: cleanups, indentation
|
||
|
||
2001-01-23 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/convert.c
|
||
* app/floating_sel.c
|
||
* app/gimage_mask.c
|
||
* app/gimpimage.c
|
||
* app/global_edit.c
|
||
* app/image_map.c
|
||
* app/image_new.c
|
||
* app/layer.c
|
||
* app/paint_funcs.c
|
||
* app/pixel_region.c
|
||
* app/tile_manager.c
|
||
* app/tile_manager.h
|
||
* app/tile_manager_pvt.h
|
||
* app/undo.c
|
||
* app/xcf.c
|
||
* app/pdb/tools_cmds.c
|
||
* app/tools/flip_tool.c
|
||
* app/tools/perspective_tool.c
|
||
* app/tools/rotate_tool.c
|
||
* app/tools/scale_tool.c
|
||
* app/tools/shear_tool.c
|
||
* app/tools/text_tool.c
|
||
* app/tools/transform_core.c
|
||
* tools/pdbgen/pdb/tools.pdb: made all files execpt xcf.c use the
|
||
TileManager accessor functions instead of accessing the TileManager
|
||
struct directly.
|
||
|
||
2001-01-23 Sven Neumann <sven@gimp.org>
|
||
|
||
* TODO.xml: updated, added sections about libgck and script-fu
|
||
|
||
2001-01-23 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/edit_selection.[ch]: removed.
|
||
|
||
* app/tools/Makefile.am
|
||
* app/tools/edit_selection.[ch]: added.
|
||
|
||
* po/POTFILES.in: changed.
|
||
|
||
2001-01-23 Michael Natterer <mitch@gimp.org>
|
||
|
||
* libgimp/Makefile.am
|
||
* libgimp/gimp.h
|
||
* libgimp/gimpadaptivesupersample.[ch]
|
||
* libgimp/gimpbilinear.[ch]: new files cut out of LibGCK.
|
||
|
||
* plug-ins/libgck/gck/gck.h
|
||
* plug-ins/libgck/gck/gckcolor.c: removed the bilinear and
|
||
supersample code.
|
||
|
||
* app/apptypes.h
|
||
* app/asupsample.[ch]
|
||
* app/tools/blend.c: made the adaptive_supersample interface the
|
||
same as in libgimp but don't use the libgimp function yet.
|
||
|
||
The libgimp function takes total transparancy into account when
|
||
weighting the 4 resulting RGBA values, the app function always
|
||
weights them equally. Please have a look at the code.
|
||
|
||
* plug-ins/Lighting/lighting_image.c
|
||
* plug-ins/MapObject/mapobject_apply.c
|
||
* plug-ins/MapObject/mapobject_image.[ch]: changed accordingly.
|
||
|
||
* app/disp_callbacks.c: paranoia cleanups.
|
||
|
||
2001-01-22 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/gdisplay.c
|
||
* app/gdisplay_ops.c
|
||
* app/info_window.c
|
||
* app/layer.c
|
||
* app/menus.c
|
||
* app/nav_window.c
|
||
* app/path.c
|
||
* app/scroll.[ch]: removed inclusion of superfluous headers and
|
||
cleaned up the source a little.
|
||
|
||
2001-01-22 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/tools/Makefile.am
|
||
* app/tools/tool_options_dialog.[ch]: new files for the tool
|
||
options dialog.
|
||
|
||
* app/tools/tools.[ch]: removed from here.
|
||
|
||
* app/app_procs.c
|
||
* app/commands.c
|
||
* app/toolbox.c
|
||
* po/POTFILES.in: adjusted.
|
||
|
||
2001-01-22 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/selection_options.h: removed.
|
||
|
||
* app/tools/Makefile.am
|
||
* app/tools/selection_options.h: added.
|
||
|
||
* app/tools/selection_options.c
|
||
* app/tools/paint_options.c: new files cut out of tool_options.c
|
||
|
||
* app/tools/tool_options.c: removed the paint & selection
|
||
options code.
|
||
|
||
* app/tools/tool_options.h
|
||
* app/tools/paint_options.h: cleanup.
|
||
|
||
* po/POTFILES.in: added selection_options.c and paint_options.c
|
||
|
||
2001-01-22 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/toolbox.[ch]: new files containing most of the code
|
||
from app/interface.[ch]
|
||
|
||
* app/interface.[ch]: only contains create_display_shell() now.
|
||
Needs to be somehow merged with other arbitrarily named display
|
||
files around.
|
||
|
||
* app/app_procs.c
|
||
* app/menus.c
|
||
* po/POTFILES.in: changed accordingly.
|
||
|
||
* app/asupsample.c
|
||
* app/gradient.c
|
||
* app/tile.c: cleanup.
|
||
|
||
2001-01-22 Sven Neumann <sven@gimp.org>
|
||
|
||
* configure.in
|
||
* app/Makefile.am
|
||
* app/tools/Makefile.am: moved all tool sources to app/tools
|
||
|
||
* app/app_procs.c
|
||
* app/brush_select.c
|
||
* app/commands.c
|
||
* app/context_manager.c
|
||
* app/convert.c
|
||
* app/cursorutil.c
|
||
* app/devices.c
|
||
* app/disp_callbacks.c
|
||
* app/edit_selection.c
|
||
* app/gdisplay.c
|
||
* app/gimage.c
|
||
* app/gimage_mask.c
|
||
* app/gimpbrush.c
|
||
* app/gimpbrushgenerated.c
|
||
* app/gimpbrushpipe.c
|
||
* app/gimpdnd.c
|
||
* app/gimprc.c
|
||
* app/global_edit.c
|
||
* app/info_window.c
|
||
* app/interface.c
|
||
* app/menus.c
|
||
* app/path.c
|
||
* app/paths_dialog.c
|
||
* app/paths_dialogP.h
|
||
* app/scale.c
|
||
* app/scroll.c
|
||
* app/undo.c
|
||
* app/pdb/color_cmds.c
|
||
* app/pdb/text_tool_cmds.c
|
||
* app/pdb/tools_cmds.c
|
||
* po/POTFILES.in
|
||
* tools/kernelgen.c
|
||
* tools/pdbgen/Makefile.am
|
||
* tools/pdbgen/enums.pl
|
||
* tools/pdbgen/pdb/color.pdb
|
||
* tools/pdbgen/pdb/text_tool.pdb
|
||
* tools/pdbgen/pdb/tools.pdb: changed accordingly
|
||
|
||
2001-01-22 Daniel Egger <egger@suse.de>
|
||
|
||
* libgimp/gimpcolor.c: #include "gimppalette_pdb.h"
|
||
to shut up the compiler.
|
||
|
||
Sun Jan 21 15:23:27 PST 2001 Manish Singh <yosh@gimp.org>
|
||
|
||
* tools/pdbgen/enumgen.pl: handle subdirs
|
||
|
||
2001-01-21 Simon Budig <simon@gimp.org>
|
||
|
||
* app/pdb/README: Added another warning about autogenerated files
|
||
|
||
2001-01-21 Sven Neumann <sven@gimp.org>
|
||
|
||
* tools/pdbgen/app.pl: changed destdir for app-side PDB wrappers to
|
||
app/pdb
|
||
|
||
* app/Makefile.am: don't create libgimpim.a in app.
|
||
|
||
* configure.in
|
||
* app/pdb/Makefile.am
|
||
* app/pdb/internal_procs.[ch]
|
||
* app/pdb/procedural_db.[ch]
|
||
* app/pdb/*_cmds.c: moved PDB functions into their own subdirectory.
|
||
|
||
* app/internal_procs.[ch]
|
||
* app/procedural_db.[ch]
|
||
* app/*_cmds.c: removed here
|
||
|
||
* app/app_procs.c
|
||
* app/batch.c
|
||
* app/bezier_select.c
|
||
* app/brush_select.c
|
||
* app/bucket_fill.c
|
||
* app/colormap_dialog.c
|
||
* app/fileops.c
|
||
* app/gimage.c
|
||
* app/gimage_mask.c
|
||
* app/gimphelp.c
|
||
* app/gradient_select.c
|
||
* app/info_window.c
|
||
* app/invert.c
|
||
* app/lc_dialog.c
|
||
* app/menus.c
|
||
* app/nav_window.c
|
||
* app/palette_import.c
|
||
* app/paths_dialog.c
|
||
* app/pattern_select.c
|
||
* app/plug_in.h
|
||
* app/text_tool.c
|
||
* app/xcf.c
|
||
* po/POTFILES.in: changed accordingly
|
||
|
||
2001-01-21 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/palette_import.[ch]: moved the palette_import dialog to
|
||
it's own file.
|
||
|
||
* app/gimage.c
|
||
* app/palette.[ch]
|
||
* app/paletteP.h: changed accordingly.
|
||
|
||
2001-01-21 Simon Budig <simon@gimp.org>
|
||
|
||
* modules/colorsel_triangle.c: Fixed the "disappearing
|
||
triangle" bug. The triangle happens to be more triangular
|
||
now too... :-)
|
||
|
||
2001-01-21 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/script-fu/Makefile.am: removed interp_md5.[ch] from
|
||
the build because it was not used at all.
|
||
|
||
* plug-ins/script-fu/script-fu-console.c
|
||
* plug-ins/script-fu/script-fu-scripts.c
|
||
* plug-ins/script-fu/script-fu-server.c
|
||
* plug-ins/script-fu/script-fu.c: even more pedantic indentation
|
||
|
||
2001-01-21 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/palette_entries.h: removed.
|
||
* app/gimppalette.[ch]: new object derived from GimpObject. Just
|
||
used as a container at the moment (no signals or stuff used).
|
||
|
||
* app/palette.[ch]: changed almost every line except in the
|
||
import_dialog part.
|
||
|
||
* app/Makefile.am
|
||
* app/apptypes.h
|
||
* app/convert.[ch]
|
||
* app/gimpdnd.h
|
||
* app/paletteP.h
|
||
* app/palette_select.[ch]
|
||
* app/convert_cmds.c
|
||
* tools/pdbgen/pdb/convert.pdb: changed accordingly.
|
||
|
||
* app/gimpdrawable.c: set klass->removed to NULL.
|
||
|
||
2001-01-21 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/color_notebook.[ch]: added a "title" parameter to the
|
||
constructor. Pass a pointer to the ColorNotebook to the callback.
|
||
Added a _get_color() function.
|
||
|
||
* app/color_panel.[ch]: added a "title" parameter which is used
|
||
for the notebook.
|
||
|
||
* app/channels_dialog.c
|
||
* app/color_area.c
|
||
* app/colormap_dialog.c
|
||
* app/convert.c
|
||
* app/palette_select.c
|
||
* app/qmask.c: changed the calls to color_notebook_new(),
|
||
color_panel_new() and the ColorNotebook callbacks.
|
||
|
||
* app/gradient.c: use a ColorNotebook instead of GtkColorSelection.
|
||
|
||
* app/palette.c
|
||
* app/palette_entries.h: use GimpRGB to store the color in the
|
||
PaletteEntry.
|
||
|
||
* po/POTFILES.in: added app/color_area.c
|
||
|
||
2001-01-20 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gradient.[ch]: made gradient_get_color_at() use GimpRGB.
|
||
|
||
* app/airbrush.c
|
||
* app/blend.c
|
||
* app/gimpcontextpreview.c
|
||
* app/gradient_select.c
|
||
* app/paint_core.[ch]
|
||
* app/paintbrush.c
|
||
* app/palette.c
|
||
* app/pencil.c
|
||
|
||
* app/gradients_cmds.c
|
||
* app/gradient_select_cmds.c
|
||
* tools/pdbgen/pdb/gradient_select.pdb
|
||
* tools/pdbgen/pdb/gradients.pdb: changed accordingly.
|
||
|
||
2001-01-20 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/color_notebook.[ch]
|
||
* app/gimpcontext.[ch]
|
||
* app/gimpdnd.h: made the _set_color() and _drop_color() functions
|
||
take a "const GimpRGB *" parameter.
|
||
|
||
* app/by_color_select.c
|
||
* app/channels_dialog.c
|
||
* app/color_area.c
|
||
* app/color_panel.c
|
||
* app/color_picker.c
|
||
* app/color_select.c
|
||
* app/colormap_dialog.c
|
||
* app/disp_callbacks.[ch]
|
||
* app/gimpimage.h
|
||
* app/palette.c: changed accordingly.
|
||
|
||
* app/gradient.c
|
||
* app/gradientP.h
|
||
* app/gradient_header.h: use GimpRGB internally.
|
||
|
||
2001-01-20 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimpdrawable.[ch]: made gimp_drawable_fill() use GimpRGB,
|
||
added some "const", delete unused function, reordered some
|
||
functions.
|
||
|
||
* app/drawable.c
|
||
* app/qmask.c: follow the change.
|
||
|
||
2001-01-19 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/appenums.h
|
||
* app/apptypes.h: moved all enums from apptypes.h to the new file
|
||
appenums.h
|
||
|
||
* tools/pdbgen/Makefile.am
|
||
* tools/pdbgen/app.pl
|
||
* tools/pdbgen/enums.pl: changed accordingly. Removed some files
|
||
from the list of files to scan for enums.
|
||
|
||
* TODO.xml: added two minor UI issues.
|
||
|
||
2001-01-18 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/common/gqbist.c: fixed typo, adjusted coding style
|
||
|
||
2001-01-17 Daniel Egger <egger@suse.de>
|
||
|
||
* PLUGIN_MAINTAINERS: Entered Jens Christian Restemeier as maintainer
|
||
as wished.
|
||
|
||
* plug-ins/common/gqbist.c: Applied a patch by Jens Christian
|
||
Restemeier <jrestemeier@currantbun.com> which fixes a calculus bug,
|
||
adds antialiasing and beautifies the code quite a bit.
|
||
|
||
2001-01-17 Sven Neumann <sven@gimp.org>
|
||
|
||
* INSTALL: adjusted version numbers, updated, added warning
|
||
|
||
* configure.in: changed .gimp to .gimp-1.3
|
||
|
||
2001-01-17 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimprc.c: factored the color parsing code out to the new
|
||
function parse_color() and made it parse RGB, RGBA, HSV and HSVA
|
||
colors.
|
||
|
||
* app/color_notebook.c
|
||
* app/devices.c
|
||
* app/session.c: changed accordingly.
|
||
|
||
2001-01-16 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/color_notebook.c: fixed my last change
|
||
|
||
* libgimp/gimpcolorarea.c: swapped opaque and transparent areas
|
||
|
||
2001-01-16 Sven Neumann <sven@gimp.org>
|
||
|
||
* libgimp/gimpcolorspace.c: fixed RGB to HSV routine
|
||
|
||
* app/color_notebook.c: tweaked dialog layout a little, disabled
|
||
toggle_buttons if the colorselector does not implement the set_channel
|
||
method.
|
||
|
||
* modules/colorsel_gtk.c
|
||
* modules/colorsel_triangle.c
|
||
* modules/colorsel_water.c: removed empty set_channel methods
|
||
|
||
2001-01-16 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/devices.c: don't show the alpha value of fore/background colors
|
||
|
||
2001-01-16 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/color_area.c
|
||
* app/color_notebook.[ch]
|
||
* app/color_panel.c
|
||
* app/gimprc.c
|
||
* app/session.c: store the color history in sessionrc.
|
||
|
||
* app/channels_dialog.c: tweaked the "new channel" and "channel
|
||
atributes" dialogs a bit.
|
||
|
||
Mon Jan 15 17:22:30 PST 2001 Manish Singh <yosh@gimp.org>
|
||
|
||
* app/fileops.c: correct spelling of "lose" in revert dialog
|
||
|
||
2001-01-16 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/color_notebook.c: added a global color history of 16 colors.
|
||
The "Add" button uses neither LRU nor pure right-shift order but
|
||
something in between. The history is scheduled to go to sessionrc.
|
||
|
||
2001-01-15 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/devices.c: use a GimpColorArea for the foreground color in
|
||
the Device Status dialog and added a background color
|
||
|
||
2001-01-15 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/color_picker.c: enable drags from and disable drops to
|
||
the ColorArea in the color_info dialog. Changed the cursor_update
|
||
function so it only displays the bad cursor when outside the image.
|
||
|
||
2001-01-15 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/devices.c
|
||
* app/gimprc.c: save the foreground and background color as array
|
||
of RGBA doubles in "devicerc".
|
||
|
||
2001-01-15 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/color_notebook.c: make use of GimpColorAreas. Added two
|
||
buttons to set the color to black or white.
|
||
|
||
2001-01-15 Michael Natterer <mitch@gimp.org>
|
||
|
||
* modules/colorsel_water.c: the bottom position of the scale
|
||
represents the minimal pressure now. Also removed the pressure
|
||
value display because it's rather a matter of "more" or "less"
|
||
than of an exact value.
|
||
|
||
2001-01-15 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/color_notebook.c
|
||
* modules/colorsel_gtk.c
|
||
* modules/colorsel_triangle.c: tweaked dialog layout a bit.
|
||
|
||
* modules/colorsel_water.c: removed all widgets except the color
|
||
selector itself (the history and the "Reset" button will go
|
||
to the ColorNotebook).
|
||
|
||
2001-01-15 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/color_notebook.[ch]
|
||
* app/color_select.c
|
||
* libgimp/gimpcolorselector.h
|
||
* modules/colorsel_gtk.c
|
||
* modules/colorsel_triangle.c
|
||
* modules/colorsel_water.c: use GimpRGB and GimpHSV.
|
||
|
||
* libgimp/gimpcolor.c
|
||
* libgimp/gimpcolorspace.[ch]: All rgb_to_hsv functions:
|
||
|
||
if r == g == b the difference between the max and min value
|
||
is 0 and we should avoid to divide by it ;-)
|
||
|
||
2001-01-15 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/gdyntext/gdyntext.[ch]
|
||
* plug-ins/gdyntext/gdyntext_ui.c
|
||
* plug-ins/gdyntext/gdyntextcompat.[ch]: use GimpRGB
|
||
|
||
2001-01-15 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/color_panel.c
|
||
* libgimp/gimpcolorbutton.c
|
||
* plug-ins/common/borderaverage.c
|
||
* plug-ins/common/grid.c
|
||
* plug-ins/common/polar.c
|
||
* plug-ins/common/whirlpinch.c: cleaned up after myself
|
||
|
||
2001-01-15 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/color_panel.[ch]: rewritten as proper widget derived from
|
||
GimpColorButton
|
||
|
||
* app/channels_dialog.c
|
||
* app/color_picker.c
|
||
* app/qmask.c: use new GimpColorPanel widget
|
||
|
||
* libgimp/gimpcolorarea.[ch]
|
||
* libgimp/gimpcolorbutton.[ch]: some changes needed to derive from
|
||
GimpColorButton
|
||
|
||
* plug-ins/Lighting/lighting_ui.c
|
||
* plug-ins/MapObject/mapobject_ui.c
|
||
* plug-ins/common/colorify.c
|
||
* plug-ins/common/colortoalpha.c
|
||
* plug-ins/common/exchange.c
|
||
* plug-ins/common/film.c
|
||
* plug-ins/common/grid.c
|
||
* plug-ins/common/mapcolor.c
|
||
* plug-ins/common/nova.c
|
||
* plug-ins/common/papertile.c
|
||
* plug-ins/common/sinus.c
|
||
* plug-ins/gdyntext/gdyntext_ui.c
|
||
* plug-ins/ifscompose/ifscompose.c
|
||
* plug-ins/script-fu/script-fu-scripts.c: follow API changes of
|
||
GimpColorButton and GimpColorArea
|
||
|
||
2001-01-15 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/channel.[ch]
|
||
* app/gimpimage.[ch]
|
||
* app/layer.[ch]: use GimpRGB for the Channel's, the QuickMask's
|
||
and the LayerMask's color.
|
||
|
||
* app/channel_cmds.c
|
||
* app/channel_ops.c
|
||
* app/channels_dialog.c
|
||
* app/qmask.c
|
||
* app/xcf.c
|
||
* tools/pdbgen/pdb/channel.pdb: changed accordingly.
|
||
|
||
2001-01-15 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/color_notebook.[ch]
|
||
* app/color_panel.[ch]
|
||
* app/gimpcontext.[ch]
|
||
* app/gimpdnd.[ch]: use GimpRGB instead of a random selection out of
|
||
guchar, gint, guchar[], blah...
|
||
|
||
* app/blend.c
|
||
* app/by_color_select.c
|
||
* app/channel_ops.c
|
||
* app/channels_dialog.c
|
||
* app/color_area.c
|
||
* app/color_picker.c
|
||
* app/color_select.c
|
||
* app/colormap_dialog.c
|
||
* app/commands.c
|
||
* app/devices.[ch]
|
||
* app/disp_callbacks.[ch]
|
||
* app/drawable.c
|
||
* app/gimpimage.c
|
||
* app/gimprc.c
|
||
* app/gradient.c
|
||
* app/paint_core.c
|
||
* app/palette.c
|
||
* app/palette_cmds.c
|
||
* app/qmask.c
|
||
* tools/pdbgen/pdb/palette.pdb: changed accordingly.
|
||
|
||
2001-01-15 Simon Budig <simon@gimp.org>
|
||
|
||
* app/apptypes.h
|
||
I broke the Toolbox. Now it works again. The ToolType-enum *must*
|
||
match the order in the tool_info-Array.
|
||
|
||
2001-01-15 Sven Neumann <sven@gimp.org>
|
||
|
||
* libgimp/gimpcolor.[ch]: added function gimp_rgb_intensity_uchar()
|
||
|
||
* libgimp/gimpcolorbutton.c
|
||
* plug-ins/common/apply_lens.c
|
||
* plug-ins/common/blinds.c
|
||
* plug-ins/common/borderaverage.c
|
||
* plug-ins/common/checkerboard.c
|
||
* plug-ins/common/cubism.c
|
||
* plug-ins/common/gif.c
|
||
* plug-ins/common/grid.c
|
||
* plug-ins/common/mblur.c
|
||
* plug-ins/common/papertile.c
|
||
* plug-ins/common/png.c
|
||
* plug-ins/common/polar.c
|
||
* plug-ins/common/semiflatten.c
|
||
* plug-ins/common/sparkle.c
|
||
* plug-ins/common/vpropagate.c
|
||
* plug-ins/common/warp.c
|
||
* plug-ins/common/whirlpinch.c
|
||
* plug-ins/gap/gap_mov_dialog.c
|
||
* plug-ins/gdyntext/gdyntext.c
|
||
* plug-ins/gfig/gfig.c
|
||
* plug-ins/ifscompose/ifscompose.c
|
||
* plug-ins/maze/handy.c
|
||
* plug-ins/mosaic/mosaic.c
|
||
* plug-ins/pagecurl/pagecurl.c: replaced all occurences of
|
||
gimp_palette_[get|set]_[back|fore]ground() with the respective
|
||
gimp_palette_[get|set]_[back|fore]ground_rgb() functions.
|
||
|
||
2001-01-14 Simon Budig <simon@gimp.org>
|
||
|
||
* app/tools.c:
|
||
Reordered some tools. It is IMHO more logical to group the
|
||
"paint-style" and the "blur/smudge"-Tools together.
|
||
The Ordering up to now was a "historical" ordering: Not good...
|
||
|
||
I am thinking about grouping the "Non-image modifying"-tools
|
||
(Magnify, Colorpicker, Measure tool) together...
|
||
|
||
2001-01-14 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/channel.[ch]
|
||
* app/drawable.[ch]
|
||
* app/gdisplay.[ch]
|
||
* app/gimpdrawable.[ch]
|
||
* app/layer.[ch]:
|
||
|
||
- Removed all "typedef drawable_function gimp_drawable_function".
|
||
- Renamed all *_get_ID() functions to *_get_by_ID().
|
||
- For symmetry reasons, renamed drawable_ID() to gimp_drawable_get_ID().
|
||
- Removed the *_get_ID() functions of GimpLayer, GimpLayerMask
|
||
and GimpChannel.
|
||
|
||
* app/airbrush.c
|
||
* app/bezier_select.c
|
||
* app/blend.c
|
||
* app/brightness_contrast.c
|
||
* app/bucket_fill.c
|
||
* app/by_color_select.c
|
||
* app/clone.c
|
||
* app/color_balance.c
|
||
* app/color_picker.c
|
||
* app/convert.c
|
||
* app/convolve.c
|
||
* app/crop.c
|
||
* app/curves.c
|
||
* app/desaturate.c
|
||
* app/dodgeburn.c
|
||
* app/edit_selection.c
|
||
* app/eraser.c
|
||
* app/fileops.c
|
||
* app/flip_tool.c
|
||
* app/floating_sel.c
|
||
* app/fuzzy_select.c
|
||
* app/gimage.c
|
||
* app/gimage_mask.c
|
||
* app/gimphistogram.c
|
||
* app/gimpimage.c
|
||
* app/global_edit.c
|
||
* app/histogram_tool.c
|
||
* app/hue_saturation.c
|
||
* app/image_map.c
|
||
* app/ink.c
|
||
* app/invert.c
|
||
* app/layer_select.c
|
||
* app/layers_dialog.c
|
||
* app/levels.c
|
||
* app/paint_core.c
|
||
* app/paintbrush.c
|
||
* app/pencil.c
|
||
* app/plug_in.c
|
||
* app/posterize.c
|
||
* app/scan_convert.c
|
||
* app/smudge.c
|
||
* app/text_tool.c
|
||
* app/threshold.c
|
||
* app/transform_core.c
|
||
* app/undo.c
|
||
* app/undo_history.c
|
||
|
||
* app/channel_cmds.c
|
||
* app/channel_ops_cmds.c
|
||
* app/color_cmds.c
|
||
* app/display_cmds.c
|
||
* app/drawable_cmds.c
|
||
* app/edit_cmds.c
|
||
* app/floating_sel_cmds.c
|
||
* app/image_cmds.c
|
||
* app/layer_cmds.c
|
||
* app/parasite_cmds.c
|
||
* app/selection_cmds.c
|
||
* app/text_tool_cmds.c
|
||
* app/tools_cmds.c
|
||
* libgimp/gimpdrawable_pdb.c
|
||
* tools/pdbgen/pdb.pl
|
||
* tools/pdbgen/pdb/channel_ops.pdb
|
||
* tools/pdbgen/pdb/color.pdb
|
||
* tools/pdbgen/pdb/drawable.pdb
|
||
* tools/pdbgen/pdb/edit.pdb
|
||
* tools/pdbgen/pdb/image.pdb
|
||
* tools/pdbgen/pdb/selection.pdb
|
||
* tools/pdbgen/pdb/tools.pdb: changed accordingly.
|
||
|
||
2001-01-14 Sven Neumann <sven@gimp.org>
|
||
|
||
* libgimp/gimpcolor.[ch]: added GimpHSV type and functions and
|
||
gimp_rgb_composite functions
|
||
|
||
* libgimp/gimpcolorbutton.c: indentation
|
||
|
||
* libgimp/gimpcolorspace.[ch]: added GimpRGB <-> GimpHSV conversion
|
||
routines
|
||
|
||
* libgimp/gimpwidgets.[ch]: removed gimp_color_update_uchar function
|
||
|
||
* plug-ins/Lighting/lighting_main.[ch]
|
||
* plug-ins/Lighting/lighting_preview.c
|
||
* plug-ins/Lighting/lighting_shade.c
|
||
* plug-ins/MapObject/mapobject_image.c
|
||
* plug-ins/MapObject/mapobject_main.[ch]
|
||
* plug-ins/MapObject/mapobject_shade.c
|
||
* plug-ins/common/mapcolor.c
|
||
* plug-ins/common/nova.c
|
||
* plug-ins/common/papertile.c
|
||
* plug-ins/common/sinus.c
|
||
* plug-ins/ifscompose/ifscompose.c
|
||
* plug-ins/script-fu/script-fu-scripts.c: use GimpRGB and GimpHSV
|
||
|
||
2001-01-14 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/channel.[ch]
|
||
* app/gimpdrawable.[ch]
|
||
* app/layer.[ch]: moved the "removed" signal from GimpChannel and
|
||
GimpLayer to GimpDrawable.
|
||
|
||
* app/gimpimage.[ch]: changed accordingly.
|
||
|
||
2001-01-14 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/docindex.c
|
||
* app/fileops.c
|
||
* app/gdisplay.c
|
||
* app/gimpimage.[ch]:
|
||
|
||
Removed the "has_filename" boolean from GimpImage:
|
||
|
||
- to get the filename, ask for GimpObjects's name.
|
||
- gimp_image_filename() returns the *display* filename (and will be
|
||
renamed to gimp_image_display_name() soon), i.e. returns
|
||
"Unnamed" if object->name == NULL.
|
||
- no need any more to check if the filename is the "" string because
|
||
GimpImage overrides GimpObject's "name_changed" method and
|
||
sets the name to NULL if it was "".
|
||
|
||
2001-01-14 Sven Neumann <sven@gimp.org>
|
||
|
||
Merged fixes from gimp-1-2:
|
||
|
||
* app/menus.c
|
||
* app/plug-in.c: added some sanity checks for passed string pointers
|
||
to various public functions in an attempt to fix bug #37622.
|
||
|
||
* plug-ins/common/sharpen.c: applied a patch from Jerome Zago
|
||
<jzago@ifhamy.insa-lyon.fr> that fixes a longstanding bug in the
|
||
sharpen filter which sometimes got the last line wrong.
|
||
Fixes bug #34155.
|
||
|
||
2001-01-14 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/apptypes.h
|
||
* app/brush_edit.c
|
||
* app/brush_select.c
|
||
* app/brushes_cmds.c
|
||
* app/channel.h
|
||
* app/colormap_dialog.c
|
||
* app/datafiles.[ch]
|
||
* app/devices.c
|
||
* app/docindex.c
|
||
* app/fileops.c
|
||
* app/gdisplay.c
|
||
* app/gimage.c
|
||
* app/gimpbrush.[ch]
|
||
* app/gimpbrushgenerated.[ch]
|
||
* app/gimpbrushlist.[ch]
|
||
* app/gimpbrushpipe.[ch]
|
||
* app/gimpcontext.[ch]
|
||
* app/gimpcontextpreview.c
|
||
* app/gimpdnd.c
|
||
* app/gimpdrawable.h
|
||
* app/gimpimage.[ch]
|
||
* app/gimplist.h
|
||
* app/gimpobject.h
|
||
* app/gimpset.[ch]
|
||
* app/gradient.c
|
||
* app/info_window.c
|
||
* app/layer.[ch]
|
||
* app/module_db.c
|
||
* app/palette.[ch]
|
||
* app/patterns.[ch]
|
||
* app/plug_in.[ch]
|
||
* app/undo_history.c
|
||
* app/xcf.c
|
||
* tools/pdbgen/pdb/brushes.pdb
|
||
|
||
- Removed the "name" argument from all objects and use
|
||
GimpObject's name.
|
||
- Use the same code in all "uniquefy name" functions (this
|
||
functionality will be a method of the "GimpContainer" class).
|
||
- Renamed the parent instances of all objects to "parent instance".
|
||
- Added missing instance and class cast macros.
|
||
- Changed some "gchar *" to "const gchar *" parameters.
|
||
|
||
2001-01-12 Sven Neumann <sven@gimp.org>
|
||
|
||
* TODO.xml: updated status
|
||
|
||
* app/gimpcontext.c: added temporary functions to make it compile
|
||
|
||
* app/pixel_processor.c: include tile.h when ENABLE_MP is defined
|
||
|
||
* libgimp/gimpcolor.[ch]: added more GimpRGB functions
|
||
|
||
* plug-ins/common/aa.c: merged fix from gimp-1-2
|
||
|
||
* plug-ins/common/colorify.c
|
||
* plug-ins/common/colortoalpha.c
|
||
* plug-ins/common/exchange.c
|
||
* plug-ins/common/film.c
|
||
* plug-ins/common/grid.c: use GimpRGB whereever possible.
|
||
Still work in progress.
|
||
|
||
2001-01-11 Sven Neumann <sven@gimp.org>
|
||
|
||
* libgimp/gimpcolorarea.c: added antialiasing
|
||
|
||
2001-01-11 Sven Neumann <sven@gimp.org>
|
||
|
||
* libgimp/gimpcolorbutton.[ch]: allow width/height of the color_area
|
||
to be set to negative values so the GimpColorButton can be set up
|
||
resizeable.
|
||
|
||
2001-01-11 Sven Neumann <sven@gimp.org>
|
||
|
||
* README: changed for gimp-1.3
|
||
|
||
2001-01-11 Valek Filippov <frob@df.ru>
|
||
|
||
* plug-ins/script-fu.c: changed INIT_I18N() to INIT_I18N_UI().
|
||
|
||
2001-01-10 Sven Neumann <sven@gimp.org>
|
||
|
||
* libgimp/gimpcolorarea.[ch]: finished new GimpColorArea widget which
|
||
uses GimpRGB and handles DND and alpha channel.
|
||
|
||
* libgimp/gimpcolorbutton.[ch]: use GimpColorArea. The API of the
|
||
GimpColorButton has changed!
|
||
|
||
* libgimp/gimpwidgets.[ch]: added temporary function
|
||
gimp_color_update_uchar() to ease migration of plug-ins to GimpRGB.
|
||
This function will go away.
|
||
|
||
* plug-ins/Lighting/lighting_main.h
|
||
* plug-ins/Lighting/lighting_ui.c
|
||
* plug-ins/MapObject/mapobject_main.h
|
||
* plug-ins/MapObject/mapobject_ui.c
|
||
* plug-ins/common/colorify.c
|
||
* plug-ins/common/colortoalpha.c
|
||
* plug-ins/common/exchange.c
|
||
* plug-ins/common/film.c
|
||
* plug-ins/common/grid.c
|
||
* plug-ins/common/mapcolor.c
|
||
* plug-ins/common/nova.c
|
||
* plug-ins/common/papertile.c
|
||
* plug-ins/common/sinus.c
|
||
* plug-ins/gdyntext/gdyntext_ui.c
|
||
* plug-ins/ifscompose/ifscompose.[ch]
|
||
* plug-ins/ifscompose/ifscompose_storage.c
|
||
* plug-ins/ifscompose/ifscompose_utils.c
|
||
* plug-ins/script-fu/script-fu-scripts.c: use new GimpColorArea and
|
||
GimpColorButton. Started to introduce GimpRGB color type. This change
|
||
might have broken some of these plug-ins. This is work in progress.
|
||
|
||
* libgimp/Makefile.am: added GimpColorArea and GimpColorButton to
|
||
libgimpi.
|
||
|
||
* app/gimpcontext.[ch]: added gimp_palette_get_[fore|back]ground()
|
||
functions so the app can link against libgimp/gimpcolorbutton.o.
|
||
These functions will go away.
|
||
|
||
* app/gimpdnd.c: use a GimpColorArea for DND
|
||
|
||
2001-01-10 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimpdrawable.[ch]: removed the "name" parameter and use
|
||
GimpObject's name instead.
|
||
|
||
* app/channel.c
|
||
* app/channel_ops.c
|
||
* app/channels_dialog.c
|
||
* app/drawable.h
|
||
* app/gimpimage.c
|
||
* app/interface.c
|
||
* app/layer.c
|
||
* app/layer_select.c
|
||
* app/layers_dialog.c
|
||
* app/qmask.c
|
||
* app/undo.c
|
||
* app/xcf.c: changed accordingly, cleanup.
|
||
|
||
2001-01-10 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimpbrushlist.c
|
||
* app/gimpdrawable.c: forgot to remove #include "gimpsignal.h"
|
||
|
||
* app/gimpobject.[ch]: added a "name" argument (not used yet).
|
||
|
||
2001-01-10 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/gimpsignal.[ch]: removed.
|
||
* app/gimpmarshal.[ch]: added.
|
||
|
||
* app/channel.[ch]
|
||
* app/gimpbrush.[ch]
|
||
* app/gimpbrushgenerated.c
|
||
* app/gimpbrushlist.[ch]
|
||
* app/gimpbrushpipe.[ch]
|
||
* app/gimpcontext.c
|
||
* app/gimpdrawable.c
|
||
* app/gimpimage.c
|
||
* app/gimplist.[ch]
|
||
* app/gimpobject.[ch]
|
||
* app/gimpset.[ch]
|
||
* app/layer.c
|
||
* app/layers_dialog.c
|
||
* app/module_db.c
|
||
* app/parasitelist.[ch]: removed gimp_signal_new() and
|
||
GIMP_TYPE_INIT(). Fixed lots of object related uglyness.
|
||
|
||
2001-01-09 Sven Neumann <sven@gimp.org>
|
||
|
||
Merged fix from gimp-1-2:
|
||
|
||
* app/gimpbrushlist.c
|
||
* app/gradient.c
|
||
* app/palette.c
|
||
* app/patterns.c: check for NULL pointers before doing strcmp on
|
||
default names. The default names for brushes, patterns, ... can
|
||
be NULL if they were not set in a readable gimprc file.
|
||
|
||
* app/gimprc.c: warn the user if the systemwide gimprc couldn't be
|
||
read.
|
||
|
||
2001-01-09 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/color_notebook.c: Show the "Alpha" scale only when needed.
|
||
|
||
* libgimp/gimpcolorarea.[ch]: fixed typos.
|
||
|
||
2001-01-09 Sven Neumann <sven@gimp.org>
|
||
|
||
* TODO.xml: add more stuff
|
||
|
||
2001-01-09 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/apptypes.h
|
||
* app/brush_select_cmds.c
|
||
* app/brushes_cmds.c
|
||
* app/layer_cmds.c
|
||
* app/layers_dialog.c
|
||
* app/paint_funcs.c
|
||
* app/tool_options.c
|
||
* app/tools_cmds.c
|
||
* libgimp/gimpenums.h
|
||
* plug-ins/script-fu/script-fu-constants.c
|
||
* tools/pdbgen/enums.pl: applied patch from Oliver Lavery
|
||
<oliver@zeroknowledge.com> that adds new blending modes
|
||
(Dodge/Burn/Hardlight). Please play with these new modes
|
||
and check if they are useful and well-implemented.
|
||
|
||
2001-01-09 Sven Neumann <sven@gimp.org>
|
||
|
||
* HACKING: added notice about autogenerated files.
|
||
|
||
2001-01-09 Sven Neumann <sven@gimp.org>
|
||
|
||
* libgimp/gimpcolorarea.[ch]: added a new simple widget which
|
||
provides a color preview area capable of DND. It will be used
|
||
in the GimpColorButton and in the color_selectors.
|
||
|
||
* libgimp/Makefile.am
|
||
* libgimp/gimpui.h
|
||
* libgimp/gimpuitypes.h: include the new files
|
||
|
||
* libgimp/gimpcolor.[ch]: use proper names instead of abbreviations
|
||
|
||
* app/asupsample.c
|
||
* plug-ins/Lighting/lighting_preview.c
|
||
* plug-ins/Lighting/lighting_shade.c
|
||
* plug-ins/MapObject/mapobject_preview.c
|
||
* plug-ins/MapObject/mapobject_shade.c
|
||
* plug-ins/libgck/gck/gckcolor.c: changed accordingly
|
||
|
||
2001-01-09 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/color_notebook.[ch]
|
||
* app/color_select.c: moved the scales and the toggle butttons out
|
||
of the notebook. Added an "Aplha" scale (the opacity is not yet
|
||
shown in the color area). Removed the ColorNotebook structure from
|
||
the header.
|
||
|
||
* app/color_area.c: the ColorNotebook struct is no longer public.
|
||
|
||
* libgimp/gimpcolorselector.h
|
||
* modules/colorsel_gtk.c
|
||
* modules/colorsel_triangle.c
|
||
* modules/colorsel_water.c: changed the ColorSelector module
|
||
interface again: Pass H, S, V, R, G, B and A in all functions
|
||
and callbacks. Added a "set_channel" method because the channel
|
||
toggles are outside the notebook now. This needs more work...
|
||
|
||
2001-01-08 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/color_notebook.[ch]
|
||
* app/color_select.c: moved the "old" and "new" color areas from the
|
||
notebook to the action_area.
|
||
|
||
* TODO.xml: updated.
|
||
|
||
* app/color_area.c
|
||
* app/color_panel.c
|
||
* app/colormap_dialog.c
|
||
* app/palette.c
|
||
* libgimp/gimpcolorselector.h
|
||
* modules/colorsel_gtk.c
|
||
* modules/colorsel_triangle.c
|
||
* modules/colorsel_water.c: removed the "set_current" parameter all
|
||
over the place because it was always TRUE and not used in the modules
|
||
at all.
|
||
|
||
2001-01-08 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/color_notebook.c
|
||
* app/color_select.c
|
||
* libgimp/gimpcolorselector.h: more cleanup before chopping it up.
|
||
|
||
2001-01-08 Michael Natterer <mitch@gimp.org>
|
||
|
||
Removed GCG:
|
||
|
||
* app/colormap_dialog.gc
|
||
* app/colormap_dialog.i.[ch]
|
||
* app/colormap_dialog.p.h
|
||
* app/colormap_dialog.t.h
|
||
* app/gimp.gh
|
||
* tools/gcg/*: removed.
|
||
|
||
* app/colormap_dialog.[ch]: moved all the colormap_dialog stuff
|
||
here and cleaned up the autogenerated code.
|
||
|
||
* autogen.sh
|
||
* configure.in
|
||
* app/Makefile.am
|
||
* app/app_procs.c
|
||
* app/apptypes.h
|
||
* app/color_notebook.h
|
||
* app/commands.c
|
||
* app/gimpset.h
|
||
* app/interface.c
|
||
* po/POTFILES.in
|
||
* tools/Makefile.am: changed accordingly, cleanup.
|
||
|
||
* libgimp/gimpunitmenu.c: s/class/klass/
|
||
|
||
2001-01-07 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/by_color_select.c
|
||
* app/channels_dialog.c
|
||
* app/color_area.c
|
||
* app/color_notebook.[ch]
|
||
* app/color_panel.[ch]
|
||
* app/color_picker.c
|
||
* app/color_select.c
|
||
* app/colormap_dialog.i.c
|
||
* app/devices.c
|
||
* app/disp_callbacks.[ch]
|
||
* app/gimpdnd.[ch]
|
||
* app/palette.c
|
||
* app/qmask.c
|
||
|
||
* libgimp/gimpcolorselector.h
|
||
|
||
* modules/colorsel_gtk.c
|
||
* modules/colorsel_triangle.c
|
||
* modules/colorsel_water.c: made the color_notebook, the color_area
|
||
and DND speak in terms of RGBA instead of RGB. The alpha value is
|
||
not used yet, only the API changed. Everything should work exactly
|
||
as before.
|
||
|
||
2001-01-07 Michael Natterer <mitch@gimp.org>
|
||
|
||
* TODO.xml: add "Cleanup GIMP's color selectors".
|
||
|
||
2001-01-07 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/bezier_select.c
|
||
* app/bezier_selectP.h: removed the obscure unused "extend" variable
|
||
from the Bezier Tool structure.
|
||
|
||
2001-01-07 Michael Natterer <mitch@gimp.org>
|
||
|
||
* TODO.xml: added an item to optionally change the image window's
|
||
background.
|
||
|
||
* app/preferences_dialog.c: "Disable Tearoff Menus" was not saved
|
||
to disk.
|
||
|
||
2001-01-04 Asbjorn Pettersen <asbjornP@dualog.no>
|
||
|
||
* modules/gimpmodregister.h: add #include <libgimp/gimptypes.h>
|
||
* plug-ins/common/bz2.c (load_image): fix bug loading bz2 files (OS/2)
|
||
|
||
2001-01-04 Sven Neumann <sven@gimp.org>
|
||
|
||
* plug-ins/script-fu/scripts/title-header.scm: merged fix from 1.2
|
||
|
||
2001-01-03 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/levels.c: reverted the behaviour of the "Reset" button back
|
||
to resetting the current channel only. Resetting all channels was
|
||
broken and IMHO cannot work the way it was implemented.
|
||
|
||
2001-01-03 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/plug_in_cmds.c
|
||
* app/procedural_db_cmds.c
|
||
* tools/pdbgen/pdb/plug_in.pdb
|
||
* tools/pdbgen/pdb/procedural_db.pdb
|
||
* tools/pdbgen/app.pl: conditionally include <regex.h> or
|
||
"regexrepl.h", depending on HAVE_GLIBC_REGEX.
|
||
|
||
2001-01-03 Daniel Egger <egger@suse.de>
|
||
|
||
* app/plug_in_cmds.c:
|
||
* app/procedural_db_cmds.c:
|
||
* plug-ins/script-fu/Makefile.am:
|
||
* plug-ins/script-fu/interp_regex.c:
|
||
* plug-ins/script-fu/regexrepl.c: Conditionally compile
|
||
regex if not available in glibc.
|
||
|
||
* plug-ins/script-fu/regex.c:
|
||
* plug-ins/script-fu/regex.h: Renamed files to regexrepl.[ch].
|
||
|
||
2001-01-03 Daniel Egger <egger@suse.de>
|
||
|
||
* configure.in: Extended the glibc regexp check and enabled
|
||
substitution for Makefiles.
|
||
|
||
* app/Makefile.am: Compile regexp only if not in glibc.
|
||
|
||
* app/plug_in_cmds.c:
|
||
* app/procedural_db_cmds.c:
|
||
* app/regexrepl.c: Include the correct local headerfile
|
||
if no new glibc with regexp is available.
|
||
|
||
* app/regex.c:
|
||
* app/regex.h: Moved into regexprepl.[ch] to avoid nameclashes.
|
||
|
||
2001-01-02 Daniel Egger <egger@suse.de>
|
||
|
||
* acconfig.h:
|
||
* configure.in: Added a check for a glibc compliant
|
||
regex implementation.
|
||
|
||
2001-01-02 Simon Budig <simon@gimp.org>
|
||
|
||
* app/paint_core.c: use floor() before casting to gint when
|
||
calculating the current brush coordinates. Fixes the jagged brush
|
||
stroke when stroking a path that leaves the image at the top or left
|
||
edge (bug #6043).
|
||
|
||
2001-01-02 Daniel Egger <egger@suse.de>
|
||
|
||
* app/clone.c:
|
||
* app/gimpimage.c:
|
||
* app/temp_buf.c: Use the new _clear function and more cleanups.
|
||
|
||
2001-01-02 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/temp_buf.[ch]: temp_buf_data_clear(): the temp_buf's size is
|
||
(width * height * bytes). Cleanups.
|
||
|
||
* app/fileops.c: removed a debugging g_print().
|
||
|
||
2001-01-02 Daniel Egger <egger@suse.de>
|
||
|
||
* app/temp_buf.c:
|
||
* app/temp_buf.h: Add a new function "temp_buf_data_clear" to
|
||
get a nulled chunk of memory.
|
||
|
||
* app/iscissors.c: Use it here instead of two expensive for
|
||
loops. Clean up the source a little.
|
||
|
||
2001-01-02 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/bezier_select.c
|
||
* app/bezier_selectP.h
|
||
* app/selection_options.h: moved the integer "extend" variable from
|
||
SelectionOptions to the BezierSelect structure because it does not
|
||
have a UI widget. Also initialize it with "0" (was used
|
||
uninitialized before). I have no idea what it does.
|
||
|
||
2001-01-02 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/selection_options.h
|
||
* app/tool_options.c: made a correct tool toption out of
|
||
"Interactive" (added a default value and the "Reset" function,
|
||
set unused pointers to NULL).
|
||
|
||
* app/iscissors.c: fixed indentation and spacing.
|
||
|
||
2001-01-02 Daniel Egger <egger@suse.de>
|
||
|
||
* app/iscissors.c:
|
||
* app/selection_options.h:
|
||
* app/tool_options.c: Applied patch by laramieleavitt@onetel.net.uk
|
||
to add an interactive update to the iscissors tool.
|
||
|
||
2001-01-02 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimphelp.c (gimp_idle_help): s/welcome.html/introduction.html/.
|
||
|
||
2001-01-02 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimprc.[ch]
|
||
* app/menus.[ch]
|
||
* app/preferences_dialog.c: added a preferences option to disable
|
||
tearoff menus. Cleanup in preferences.
|
||
|
||
* TODO.xml: done.
|
||
|
||
2001-01-02 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/commands.c: some nicer prototypes.
|
||
|
||
* app/fileops.c: oops, forgot to gtk_widget_show() the open_options.
|
||
|
||
2001-01-02 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/commands.[ch]
|
||
* app/fileops.[ch]
|
||
* app/gdisplay.c
|
||
* app/menus.c: Implemented "Save a Copy as..." which saves the image
|
||
without changing it's filename.
|
||
|
||
* app/layers_dialogP.h: export layers_dialog_layer_merge_query()
|
||
here instead of defining it in commands.c
|
||
|
||
* TODO.xml: mark this entry as done :)
|
||
|
||
2001-01-01 Michael Natterer <mitch@gimp.org>
|
||
|
||
* TODO.xml: added a TODO item for "Save a Copy..."
|
||
|
||
2001-01-01 Michael Natterer <mitch@gimp.org>
|
||
|
||
* plug-ins/libgck/gck/gck.h
|
||
* plug-ins/libgck/gck/gckcolor.c: removed the GckRGB color type
|
||
and all it's functions.
|
||
|
||
* libgimp/Makefile.am
|
||
* libgimp/gimpcolor.[ch]: new files containing the new GimpRGB color
|
||
type and assorted functions.
|
||
|
||
* libgimp/gimpcolorspace.[ch]: colorspace conversion routines for
|
||
the new GimpRGB type. Also taken from LibGCK.
|
||
|
||
* libgimp/gimp.h
|
||
* libgimp/gimptypes.h: #include "gimpcolor.h". It's ugly to include
|
||
it in both files but unavoidable to follow our new "*.c" file include
|
||
policy. This will go away as libgimp will be chopped up into pieces
|
||
anyway.
|
||
|
||
* app/apptypes.h
|
||
* app/asupsample.[ch]
|
||
* app/blend.c
|
||
* app/color_transfer.h
|
||
* app/gradient_header.h: removed "color_t" and use GimpRGB instead.
|
||
|
||
* plug-ins/Lighting/lighting_apply.c
|
||
* plug-ins/Lighting/lighting_image.c
|
||
* plug-ins/Lighting/lighting_image.h
|
||
* plug-ins/Lighting/lighting_main.c
|
||
* plug-ins/Lighting/lighting_main.h
|
||
* plug-ins/Lighting/lighting_preview.c
|
||
* plug-ins/Lighting/lighting_shade.c
|
||
* plug-ins/Lighting/lighting_shade.h
|
||
* plug-ins/MapObject/mapobject_apply.c
|
||
* plug-ins/MapObject/mapobject_image.c
|
||
* plug-ins/MapObject/mapobject_image.h
|
||
* plug-ins/MapObject/mapobject_main.c
|
||
* plug-ins/MapObject/mapobject_main.h
|
||
* plug-ins/MapObject/mapobject_preview.c
|
||
* plug-ins/MapObject/mapobject_shade.c
|
||
* plug-ins/MapObject/mapobject_shade.h
|
||
* modules/colorsel_triangle.c: s/GckRGB/GimpRGB/g
|
||
|
||
* plug-ins/gdyntext/gdyntextcompat.h: check also for GIMP's minor
|
||
version when deciding if to add a missing PDB wrapper.
|
||
(All this compat cruft including libgimp/gimpcompat.h should go
|
||
away ASAP)
|
||
|
||
2000-12-31 Michael Natterer <mitch@gimp.org>
|
||
|
||
More preparation for LibGCK removal:
|
||
|
||
* libgimp/gimpcolorspace.[ch]: added a "_int" suffix to all functions
|
||
operating on 3 gint pointers, just like the gdouble functions have
|
||
a "_double" suffix.
|
||
|
||
* app/color_balance.c
|
||
* app/hue_saturation.c
|
||
* app/paint_funcs.c
|
||
* modules/colorsel_triangle.c
|
||
* plug-ins/common/CML_explorer.c
|
||
* plug-ins/common/scatter_hsv.c
|
||
* plug-ins/common/sparkle.c
|
||
* plug-ins/common/vinvert.c
|
||
* plug-ins/gflare/gflare.c: changed accordingly.
|
||
|
||
2000-12-31 Sven Neumann <sven@gimp.org>
|
||
Simon Budig <simon@gimp.org>
|
||
|
||
* app/gimpbrush.c
|
||
* plug-ins/common/gih.c: explicitely cast offset to (off_t) when
|
||
seeking back. Should fix the problems reading grayscale BrushPipes
|
||
on IRIX.
|
||
|
||
2000-12-31 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/apptypes.h: cleaned up a bit.
|
||
|
||
* app/asupsample.[ch]
|
||
* app/blend.[ch]
|
||
* app/channel.h
|
||
* app/gimpprogress.[ch]
|
||
* app/layer.h
|
||
* app/perspective_tool.c
|
||
* app/plug_in.h
|
||
* app/rotate_tool.c
|
||
* app/scale_tool.c
|
||
* app/shear_tool.c
|
||
* app/transform_core.[ch]: s/gimp_progress/GimpProgress/g and some
|
||
changes related to the apptypes.h cleanup.
|
||
|
||
2000-12-31 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/airbrush.[ch]
|
||
* app/bezier_select.c
|
||
* app/bezier_selectP.h
|
||
* app/blend.[ch]
|
||
* app/boundary.h
|
||
* app/brightness_contrast.[ch]
|
||
* app/bucket_fill.c
|
||
* app/by_color_select.c
|
||
* app/clone.[ch]
|
||
* app/color_balance.c
|
||
* app/color_picker.c
|
||
* app/commands.c
|
||
* app/convolve.[ch]
|
||
* app/crop.c
|
||
* app/crop.h
|
||
* app/curves.c
|
||
* app/dodgeburn.[ch]
|
||
* app/edit_selection.[ch]
|
||
* app/ellipse_select.c
|
||
* app/eraser.[ch]
|
||
* app/flip_tool.[ch]
|
||
* app/free_select.[ch]
|
||
* app/fuzzy_select.[ch]
|
||
* app/gdisplay.c
|
||
* app/gimage.c
|
||
* app/histogram_tool.[ch]
|
||
* app/hue_saturation.[ch]
|
||
* app/image_map.[ch]
|
||
* app/ink.[ch]
|
||
* app/iscissors.c
|
||
* app/levels.c
|
||
* app/magnify.[ch]
|
||
* app/move.c
|
||
* app/nav_window.[ch]
|
||
* app/paint_core.[ch]
|
||
* app/paintbrush.[ch]
|
||
* app/path_bezier.[ch]
|
||
* app/path_tool.c
|
||
* app/pencil.[ch]
|
||
* app/perspective_tool.[ch]
|
||
* app/posterize.c
|
||
* app/rect_select.[ch]
|
||
* app/rotate_tool.[ch]
|
||
* app/scale_tool.[ch]
|
||
* app/selection.[ch]
|
||
* app/shear_tool.[ch]
|
||
* app/smudge.[ch]
|
||
* app/text_tool.[ch]
|
||
* app/threshold.c
|
||
* app/tools.[ch]
|
||
* app/transform_core.[ch]: removed the "gdisp_ptr" madness and
|
||
useless casts all over the place. Introduced a "PaintState" enum
|
||
instead of #define's. Various cleanups.
|
||
|
||
2000-12-30 Michael Natterer <mitch@gimp.org>
|
||
|
||
One more 17C3 commit ...
|
||
|
||
* plug-ins/libgck/gck/gck.h
|
||
* plug-ins/libgck/gck/gckcolor.c: removed unused stuff.
|
||
|
||
* plug-ins/Lighting/lighting_apply.c
|
||
* plug-ins/Lighting/lighting_image.[ch]
|
||
* plug-ins/Lighting/lighting_main.c
|
||
* plug-ins/Lighting/lighting_preview.[ch]
|
||
* plug-ins/Lighting/lighting_shade.c
|
||
* plug-ins/Lighting/lighting_ui.c
|
||
* plug-ins/MapObject/mapobject_apply.c
|
||
* plug-ins/MapObject/mapobject_image.[ch]
|
||
* plug-ins/MapObject/mapobject_main.c
|
||
* plug-ins/MapObject/mapobject_preview.c
|
||
* plug-ins/MapObject/mapobject_shade.[ch]
|
||
* plug-ins/MapObject/mapobject_ui.c: cleanups in preparation for
|
||
removal of LibGCK.
|
||
|
||
2000-12-30 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimage.[ch]: removed all the
|
||
"typedef gimage_function gimp_image_function" stuff so we can clearly
|
||
see what is really a GImage function.
|
||
Removed gimage_get_ID(). Use pdb_id_to_image() instead.
|
||
|
||
* app/airbrush.c
|
||
* app/desaturate.c
|
||
* app/disp_callbacks.c
|
||
* app/equalize.c
|
||
* app/fileops.c
|
||
* app/floating_sel.c
|
||
* app/gdisplay_ops.c
|
||
* app/gimpdrawable.c
|
||
* app/global_edit.c
|
||
* app/image_map.c
|
||
* app/invert.c
|
||
* app/lc_dialog.c
|
||
* app/paths_dialog.c
|
||
* app/plug_in.c
|
||
* app/xcf.c
|
||
|
||
* app/color_cmds.c
|
||
* app/convert_cmds.c
|
||
* app/image_cmds.c
|
||
* tools/pdbgen/pdb/color.pdb
|
||
* tools/pdbgen/pdb/convert.pdb
|
||
* tools/pdbgen/pdb/image.pdb: changed accordingly.
|
||
|
||
2000-12-29 Sven Neumann <sven@gimp.org>
|
||
|
||
* TODO.xml: more things to do
|
||
|
||
2000-12-29 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/Makefile.am
|
||
* app/channel_pvt.h
|
||
* app/drawable_pvt.h
|
||
* app/gdisplayF.h
|
||
* app/gimpdrawableP.h
|
||
* app/gimpimageP.h
|
||
* app/layer_pvt.h
|
||
* app/toolsF.h: removed these files.
|
||
|
||
* app/apptypes.h
|
||
* tools/pdbgen/enums.pl: added tons of opaque typedefs and enums.
|
||
|
||
* tools/pdbgen/pdb/brush_select.pdb
|
||
* tools/pdbgen/pdb/brushes.pdb
|
||
* tools/pdbgen/pdb/channel.pdb
|
||
* tools/pdbgen/pdb/color.pdb
|
||
* tools/pdbgen/pdb/convert.pdb
|
||
* tools/pdbgen/pdb/display.pdb
|
||
* tools/pdbgen/pdb/drawable.pdb
|
||
* tools/pdbgen/pdb/fileops.pdb
|
||
* tools/pdbgen/pdb/gradient_select.pdb
|
||
* tools/pdbgen/pdb/gradients.pdb
|
||
* tools/pdbgen/pdb/help.pdb
|
||
* tools/pdbgen/pdb/image.pdb
|
||
* tools/pdbgen/pdb/layer.pdb
|
||
* tools/pdbgen/pdb/pattern_select.pdb
|
||
* tools/pdbgen/pdb/patterns.pdb
|
||
* tools/pdbgen/pdb/selection.pdb
|
||
* tools/pdbgen/pdb/tools.pdb
|
||
* app/*: chainsaw #include cleanup:
|
||
|
||
- Never (never!!) include stuff in header files except where we
|
||
need access to structures' contents (like derived objects).
|
||
- Added prototypes and proper formating in many files.
|
||
- The #include order in *all* *.c files is as follows:
|
||
|
||
#include "config.h"
|
||
|
||
#include <system stuff>
|
||
|
||
#include <gtk/gtk.h>
|
||
|
||
#include "apptypes.h"
|
||
|
||
#include "gimp stuff"
|
||
|
||
#include "libgimp stuff"
|
||
|
||
#include "libgimp/gimpintl.h"
|
||
|
||
By following this scheme we can easily see a file's dependencies
|
||
from it's #include's and can grep for the inclusion to find out
|
||
where a file is used.
|
||
|
||
* tools/pdbgen/app.pl: changed to follow the include scheme above.
|
||
|
||
* libgimp/Makefile.am
|
||
* libgimp/gimpuitypes.h: new file, included from libgimp/gimpui.h
|
||
and from app/apptypes.h.
|
||
|
||
* libgimp/gimpcolorbutton.[ch]
|
||
* libgimp/gimpdialog.[ch]
|
||
* libgimp/gimphelpui.[ch]
|
||
* libgimp/gimpparasite.[ch]
|
||
* libgimp/gimppatheditor.[ch]
|
||
* libgimp/gimpprotocol.c
|
||
* libgimp/gimpquerybox.[ch]
|
||
* libgimp/gimpsizeentry.[ch]
|
||
* libgimp/gimptypes.h
|
||
* libgimp/gimpui.h
|
||
* libgimp/gimpunit.h
|
||
* libgimp/gimpunitmenu.[ch]
|
||
* libgimp/gimpwidgets.[ch]: changed accordingly.
|
||
|
||
* plug-ins/FractalExplorer/Dialogs.c
|
||
* plug-ins/gdyntext/message_window.c
|
||
* plug-ins/imagemap/imap_default_dialog.c
|
||
* plug-ins/imagemap/imap_file.c: these files used to include
|
||
"libgimp/gimpui.h" without including "libgimp/gimp.h". This is
|
||
no longer possible because the libgimpui headers don't include
|
||
"libgimp/gimpunit.h" any more.
|
||
|
||
2000-12-29 Asbjorn Pettersen <asbjornP@dualog.no>
|
||
|
||
* app/module_db.c: OS/2 fix. remove gimp_color_display_register(),,
|
||
|
||
2000-12-29 Simon Budig <simon@gimp.org>
|
||
|
||
* modules/colorsel_triangle.c Fixed the same 16->8bit conversion
|
||
bug as in gimp-1-2 and removed duplicated code.
|
||
|
||
2000-12-28 Simon Budig <simon@gimp.org>
|
||
|
||
* gimp_splash.ppm A new splash...
|
||
* gimp1_2_splash.ppm A new file for the old splash
|
||
|
||
* modules/colorsel_triangle.c Fixed a warning.
|
||
|
||
2000-12-28 Simon Budig <simon@gimp.org>
|
||
|
||
* modules/colorsel_triangle.c
|
||
Cleanup, indentation madness, first steps towards a one-click
|
||
color-selector.
|
||
|
||
2000-12-28 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/channel.c
|
||
* app/layer.c: use gtk_object_sink() instead of gtk_object_unref()
|
||
when deleting a layer or channel since only floating objects should
|
||
be destroyed this way. A layer or channel that has been attached
|
||
to an image shall never be deleted.
|
||
|
||
* app/layer_cmds.c
|
||
* libgimp/gimplayer_pdb.c
|
||
* tools/pdbgen/pdb/layer.pdb: reenabled the gimp_layer_delete() PDB
|
||
function since it might be useful under rare circumstances.
|
||
|
||
2000-12-28 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/commands.c
|
||
* app/layer_select.[ch]: small new feature: display a layer preview
|
||
popup when switching the active layer using PageUp/PageDown. Could
|
||
need a little tweaking...
|
||
|
||
2000-12-28 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/channel.[ch]
|
||
* app/drawable.h
|
||
* app/gimpdrawable.[ch]
|
||
* app/gimpdrawableP.h
|
||
* app/gimpimage.[ch]
|
||
* app/gimpimageP.h
|
||
* app/layer.[ch]
|
||
* app/layer_pvt.h: started a major cleanup of all image/drawable
|
||
files. Added tons of "const GimpImage *" declarations and properly
|
||
formated the headers.
|
||
|
||
* app/bezier_select.c
|
||
* app/channels_dialog.c
|
||
* app/crop.c
|
||
* app/fileops.[ch]
|
||
* app/fuzzy_select.c
|
||
* app/gdisplay.c
|
||
* app/layers_dialog.c
|
||
* app/move.c
|
||
* app/paint_funcs.[ch]
|
||
* app/qmask.c
|
||
* app/undo.c: changed accordingly plus the usual portion of coding
|
||
style paranoia. This is not finished but Sven promised to buy me
|
||
a beer if I commit now ;)
|
||
|
||
2000-12-28 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/boundaryF.h
|
||
* app/gdisplayP.h
|
||
* app/gimplistP.h
|
||
* app/gimplutP.h
|
||
* app/gimpsetP.h
|
||
* app/parasitelistP.h
|
||
* app/pixel_regionP.h: removed these files
|
||
|
||
* app/Makefile.am
|
||
* app/apptypes.h
|
||
* app/boundary.[ch]
|
||
* app/floating_sel.h
|
||
* app/gdisplay.c
|
||
* app/gimplist.h
|
||
* app/gimplut.[ch]
|
||
* app/gimpset.[ch]
|
||
* app/parasitelist.[ch]
|
||
* app/pixel_processor.c
|
||
* app/pixel_region.[ch]: moved structure definitions into the
|
||
normal headers, various cleanups
|
||
|
||
2000-12-28 Sven Neumann <sven@gimp.org>
|
||
|
||
* app/channel_cmds.c
|
||
* app/layer_cmds.c
|
||
* libgimp/gimpchannel_pdb.c
|
||
* libgimp/gimplayer_pdb.c
|
||
* plug-ins/common/warp.c
|
||
* plug-ins/gap/gap_exchange_image.c
|
||
* plug-ins/gap/gap_range_ops.c
|
||
* plug-ins/perl/examples/bricks
|
||
* plug-ins/perl/examples/glowing_steel
|
||
* tools/pdbgen/pdb/channel.pdb
|
||
* tools/pdbgen/pdb/layer.pdb:
|
||
|
||
Two of the gimp-perl scripts used to call gimp_layer_delete() after
|
||
gimp_image_remove_layer(). This will fail since the layer is already
|
||
scheduled for destruction by removing it from the associated image or
|
||
by deleting that image. It is thus dangerous and superfluous to export
|
||
this feature through the PDB. The gimp_layer_delete() is hereby
|
||
obsolete and does nothing any longer. I have removed the code calling
|
||
it from all over the place (it was commented out in almost all places).
|
||
|
||
The PDB help for gimp_channel_delete() now explicetly tells the user
|
||
about the proper usage of the procedure.
|
||
|
||
2000-12-28 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/bezier_select.[ch]
|
||
* app/bezier_selectP.h: massive cleanup (prototypes, indentation, ...)
|
||
|
||
2000-12-28 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/measure.c: cleanup, proper prototypes, ...
|
||
|
||
2000-12-27 Michael Natterer <mitch@gimp.org>
|
||
|
||
* plug-ins/common/csource.c: the size of the string holding the
|
||
image data was one byte too short (we forgot the trailing '\0').
|
||
Reported by <goswin.brederlow@student.uni-tuebingen.de>
|
||
|
||
2000-12-27 Sven Neumann <sven@gimp.org>
|
||
|
||
* TODO.xml
|
||
* docs/make-todo: new files. TODO.xml is a first start on a roadmap
|
||
towards gimp-1.4. All new features and major changes need to be
|
||
defined here to be accepted into the gimp-1.3 branch.
|
||
|
||
2000-12-27 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimpimage.c: gimp_image_merge_layers(): apply the layer mask
|
||
only if layer->apply_mask is TRUE, cleanup.
|
||
|
||
2000-12-27 Simon Budig <simon@gimp.org>
|
||
|
||
* plug-ins/mosaic/mosaic.c
|
||
* plug-ins/script-fu/scripts/textured-logo.scm
|
||
Implemented a toggle to ask the user, if he wants to allow some
|
||
tiles to be split in two pieces. This enables perfect hexagonal/
|
||
squared/octagonal tiles. Changed the PDB-Interface and changed the
|
||
script using this plug-in.
|
||
|
||
2000-12-27 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/gimage.h
|
||
* app/gimpimage.[ch]: implemented gimp_image_get_layer_by_index(),
|
||
small cleanups.
|
||
|
||
* app/commands.c
|
||
* app/layers_dialog.c: use the new function instead of accessing
|
||
the layer list directly.
|
||
|
||
2000-12-27 Michael Natterer <mitch@gimp.org>
|
||
|
||
* app/layers_dialog.c: layers_dialog_scroll_index(): don't fiddle
|
||
around with magic numbers when calculating the layer widget's
|
||
height but simply ask one of them for it's allocation. Fixes
|
||
positioning when the preview is smaller than the layer widget list
|
||
item.
|
||
|
||
2000-12-27 Tomas Ogren <stric@ing.umu.se>
|
||
|
||
* plug-ins/ifscompose/ifscompose_storage.c: Remove the last comma in
|
||
an enum, xlc barfs
|
||
|
||
Tue Dec 26 11:10:23 PST 2000 Manish Singh <yosh@gimp.org>
|
||
|
||
* app/patterns.c: fix fd leak on loading
|
||
|
||
Sun Dec 24 23:18:32 PST 2000 Manish Singh <yosh@gimp.org>
|
||
|
||
* Made 1.2.0 release
|