c2d1214551
Changed "The GIMP" to "GIMP" everywhere, where it's used as a name.
...
2007-06-06 Mukund Sivaraman <muks@mukund.org >
Changed "The GIMP" to "GIMP" everywhere, where it's used as a name.
svn path=/trunk/; revision=22715
2007-06-06 08:44:52 +00:00
6be54f9b20
plug-ins/common/CML_explorer.c plug-ins/common/curve_bend.c
...
2006-06-27 Sven Neumann <sven@gimp.org >
* plug-ins/common/CML_explorer.c
* plug-ins/common/curve_bend.c
* plug-ins/common/depthmerge.c
* plug-ins/common/despeckle.c
* plug-ins/common/fractaltrace.c
* plug-ins/common/mapcolor.c
* plug-ins/common/mblur.c
* plug-ins/common/png.c
* plug-ins/common/sample_colorize.c
* plug-ins/common/tga.c
* plug-ins/common/threshold_alpha.c
* plug-ins/common/tiler.c
* plug-ins/common/unsharp.c
* plug-ins/gfig/gfig.c
* plug-ins/gfli/gfli.c
* plug-ins/gimpressionist/gimp.c
* plug-ins/imagemap/imap_main.c
* plug-ins/pagecurl/pagecurl.c
* plug-ins/script-fu/script-fu.c
* plug-ins/twain/twain.c
* plug-ins/winsnap/winsnap.c: use canonical parameter names.
2006-06-27 12:38:45 +00:00
a450ba46bb
declared GimpPlugInInfo and GimpParamDef arrays as const.
...
2006-05-16 Sven Neumann <sven@gimp.org >
* plug-ins/*/*.c: declared GimpPlugInInfo and GimpParamDef arrays
as const.
2006-05-16 12:26:20 +00:00
ec5d800fdf
plug-ins/flame/flame.c plug-ins/gfig/gfig.c plug-ins/gflare/gflare.c
...
2006-03-28 Sven Neumann <sven@gimp.org >
* plug-ins/flame/flame.c
* plug-ins/gfig/gfig.c
* plug-ins/gflare/gflare.c
* plug-ins/gimpressionist/gimp.c
* plug-ins/ifscompose/ifscompose.c
* plug-ins/imagemap/imap_main.c
* plug-ins/maze/maze.c
* plug-ins/metadata/metadata.c
* plug-ins/pagecurl/pagecurl.c
* plug-ins/print/print.c
* plug-ins/rcm/rcm.c
* plug-ins/winsnap/winsnap.c: reviewed blurbs and marked them for
translation.
2006-03-28 12:58:49 +00:00
3f5050323f
removed '...' from progress messages. They are redundant because we are
...
2005-09-30 Michael Natterer <mitch@gimp.org >
* plug-ins/*/*.c: removed '...' from progress messages. They are
redundant because we are already in a progress. Ported some more
g_strdup_printf()/gimp_progress_init() to
gimp_progress_init_printf(). Core will follow...
2005-09-30 08:16:10 +00:00
66217ce840
document how to construct an empty GimpIntComboBox using g_object_new().
...
2005-09-27 Sven Neumann <sven@gimp.org >
* libgimpwidgets/gimpintcombobox.c: document how to construct an
empty GimpIntComboBox using g_object_new().
* plug-ins/common/aa.c
* plug-ins/common/channel_mixer.c
* plug-ins/common/compose.c
* plug-ins/common/decompose.c
* plug-ins/common/newsprint.c
* plug-ins/common/spheredesigner.c
* plug-ins/gflare/gflare.c
* plug-ins/pagecurl/pagecurl.c: use g_object_new() to construct an
empty GimpIntComboBox. The old way of doing it caused warnings.
2005-09-27 20:51:29 +00:00
b10adabb5e
Added parent window API to the GimpProgress interface and to the libgimp
...
2005-09-09 Michael Natterer <mitch@gimp.org >
Added parent window API to the GimpProgress interface and to
the libgimp progress stuff. Might look strange, but does
the right thing in almost all cases (image window, file dialog,
script-fu dialog etc). Fixes bug #62988 .
* app/core/gimpprogress.[ch]: added GimpProgress::get_window()
which should return a toplevel window ID if the progress is in a
window that wants to be the transient parent of plug-in dialogs.
* app/widgets/gimpwidgets-utils.[ch] (gimp_window_get_native): new
function which returns the window handle of a GtkWindow's GdkWindow.
* app/widgets/gimpfiledialog.c: implement ::get_window().
* app/display/gimpdisplay.[ch]: ditto. Removed window handle API.
* app/gui/gui-vtable.c: changed accordingly.
* libgimpbase/gimpbaseenums.[ch] (enum GimpProgressCommand):
added GIMP_PROGRESS_COMMAND_GET_WINDOW.
* app/plug-in/plug-in-progress.[ch] (plug_in_progress_get_window):
new function. Also renamed some functions to match the
GimpProgress interface, and not the legacy PDB procedure names.
* tools/pdbgen/pdb/progress.pdb
* app/core/gimppdbprogress.c: implement get_window() on both
sides of the wire, keeping backward compatibility (hopefully).
* libgimp/gimpprogress.[ch]: deprecated gimp_progress_install()
and added gimp_progress_install_vtable() which takes a vtable with
padding to be extensible. Added get_window() vtable entry and
dispatch it accordingly. Also added pulse() which was implemented
in a hackish way before. Everything is of course backward
compatible.
* libgimp/gimpprogressbar.c: inmplement the get_window() stuff
so a plug-in dialog containing a progress can be the transient
parent of another dialog in another plug-in.
* libgimp/gimpui.[ch] (gimp_ui_get_progress_window): new function
which returns a foreign GdkWindow of this plug-ins progress
window.
Renamed gimp_window_set_transient_for_default_display() to
gimp_window_set_transient() and make it use the progress' window
handle instead of the display's (which is the right thing to do in
almost all cases).
* libgimp/gimp.def
* libgimp/gimpui.def: add the new functions.
* tools/pdbgen/enums.pl
* app/pdb/internal_procs.c
* app/pdb/progress_cmds.c
* libgimp/gimpprogress_pdb.[ch]: regenerated.
* libgimp/gimpexport.c
* plug-ins/*/*.c: follow API change.
2005-09-09 18:07:31 +00:00
cc6f3e762f
Call gimp_window_set_transient_for_default_display() for most plug-in
...
2005-09-05 Sven Neumann <sven@gimp.org >
* plug-ins: Call gimp_window_set_transient_for_default_display()
for most plug-in dialogs. Not yet done are load and save dialogs
and dialogs created from language bindings.
2005-09-05 21:40:29 +00:00
d0a5930f21
plug-ins/common/CML_explorer.c plug-ins/common/cartoon.c
...
2005-08-15 Michael Natterer <mitch@gimp.org >
* plug-ins/common/CML_explorer.c
* plug-ins/common/cartoon.c
* plug-ins/common/channel_mixer.c
* plug-ins/common/colorify.c
* plug-ins/common/compose.c
* plug-ins/common/csource.c
* plug-ins/flame/flame.c
* plug-ins/gfig/gfig-dialog.c
* plug-ins/gfli/gfli.c
* plug-ins/pagecurl/pagecurl.c
* plug-ins/rcm/rcm_dialog.c
* plug-ins/sgi/sgi.c: fix indentation.
2005-08-15 11:09:18 +00:00
b6b126903d
plug-ins/bmp/bmp.c plug-ins/faxg3/faxg3.c plug-ins/fits/fits.c
...
2005-08-12 Michael Natterer <mitch@gimp.org >
* plug-ins/bmp/bmp.c
* plug-ins/faxg3/faxg3.c
* plug-ins/fits/fits.c
* plug-ins/flame/flame.c
* plug-ins/gfig/gfig-dialog.c
* plug-ins/gfig/gfig.[ch]
* plug-ins/gflare/gflare.c
* plug-ins/gfli/gfli.c
* plug-ins/help/help.c
* plug-ins/helpbrowser/helpbrowser.c
* plug-ins/ifscompose/ifscompose.c
* plug-ins/jpeg/jpeg-save.c
* plug-ins/jpeg/jpeg.[ch]
* plug-ins/maze/maze.[ch]
* plug-ins/maze/maze_face.c
* plug-ins/pagecurl/pagecurl.c
* plug-ins/rcm/rcm.[ch]
* plug-ins/rcm/rcm_dialog.c
* plug-ins/sel2path/sel2path.c
* plug-ins/sgi/sgi.c
* plug-ins/uri/uri.c
* plug-ins/xjt/xjt.c: canonicalize procedure and parameter names.
#define them instead of repeating the same string several times.
Minor cleanups.
2005-08-12 15:46:46 +00:00
4f870bc132
deprecated RGB intensity functions and definitions. These coefficients do
...
2005-08-03 Sven Neumann <sven@gimp.org >
* libgimpcolor/gimprgb.[ch]: deprecated RGB intensity functions
and definitions. These coefficients do not accurately compute
luminance for contemporary monitors. Instead the coefficients from
the sRGB spec should be used which have now been added.
* libgimpcolor/gimpcolor.def: updated.
* libgimp/gimpdrawable.c
* libgimp/gimppixelfetcher.c
* app/base/colorize.c
* app/base/levels.c
* app/base/temp-buf.c
* app/core/gimpdrawable-blend.c
* app/core/gimpdrawable-convert.c
* app/core/gimpdrawable-desaturate.c
* app/core/gimpimage-convert.c
* app/core/gimpimage.c
* app/gui/splash.c
* app/widgets/gimpgradienteditor.c
* modules/colorsel_triangle.c
* plug-ins/common/aa.c
* plug-ins/common/bumpmap.c
* plug-ins/common/colorify.c
* plug-ins/common/despeckle.c
* plug-ins/common/displace.c
* plug-ins/common/engrave.c
* plug-ins/common/gradmap.c
* plug-ins/common/grid.c
* plug-ins/common/mng.c
* plug-ins/common/newsprint.c
* plug-ins/common/png.c
* plug-ins/common/whirlpinch.c
* plug-ins/gflare/gflare.c
* plug-ins/gfli/gfli.c
* plug-ins/maze/handy.c
* plug-ins/pagecurl/pagecurl.c: use gimp_rgb_luminance() and
friends instead of the deprecated intensity functions.
2005-08-03 00:36:41 +00:00
19a65560cd
use the canonical form of signal names.
...
2005-06-29 Sven Neumann <sven@gimp.org >
* plug-ins/*/*.c: use the canonical form of signal names.
2005-06-30 16:03:24 +00:00
f48efa965c
plug-ins/FractalExplorer plug-ins/Lighting plug-ins/bmp plug-ins/dbbrowser
...
2005-03-04 Sven Neumann <sven@gimp.org >
* plug-ins/FractalExplorer
* plug-ins/Lighting
* plug-ins/bmp
* plug-ins/dbbrowser
* plug-ins/faxg3
* plug-ins/fits
* plug-ins/flame
* plug-ins/gfig
* plug-ins/gflare
* plug-ins/gfli
* plug-ins/gimpressionist
* plug-ins/ifscompose
* plug-ins/jpeg
* plug-ins/maze
* plug-ins/pagecurl
* plug-ins/print
* plug-ins/rcm
* plug-ins/script-fu
* plug-ins/sel2path
* plug-ins/sgi
* plug-ins/twain
* plug-ins/winicon
* plug-ins/xjt: ported to gstdio, removed unnecessary includes,
minor fixes to filename handling here and there.
2005-03-04 13:23:32 +00:00
8c83ddc063
Applied a patch from Patrice Tremblay that makes (almost) all dialogs obey
...
2005-02-08 Sven Neumann <sven@gimp.org >
Applied a patch from Patrice Tremblay that makes (almost) all
dialogs obey the "gtk-alternative-button-order" setting
(bug #166678 ). Changes too many files to list them all...
2005-02-08 20:40:33 +00:00
bd1f784fae
applied a patch from Karine Proot that replaces the XPM icons with pixbufs
...
2004-11-14 Sven Neumann <sven@gimp.org >
* plug-ins/pagecurl/pagecurl.c: applied a patch from Karine Proot
that replaces the XPM icons with pixbufs (bug #140202 ).
* plug-ins/pagecurl/curl[0-7].xpm: removed.
2004-11-14 14:29:38 +00:00
b921c14b33
forgot to remove N_() from gimp_plugin_menu_register().
...
2004-10-13 Michael Natterer <mitch@gimp.org >
* plug-ins/pagecurl/pagecurl.c: forgot to remove N_() from
gimp_plugin_menu_register().
2004-10-12 23:17:49 +00:00
caf4786993
tools/pdbgen/pdb/brushes.pdb (brushes_get_brush_data)
...
2004-10-06 Michael Natterer <mitch@gimp.org >
* tools/pdbgen/pdb/brushes.pdb (brushes_get_brush_data)
* tools/pdbgen/pdb/gradients.pdb (gradients_sample_uniform)
(gradients_sample_custom) (gradients_get_gradient_data)
* tools/pdbgen/pdb/patterns.pdb (patterns_get_pattern_data):
deprecated.
* tools/pdbgen/pdb/brush.pdb
* tools/pdbgen/pdb/gradient.pdb
* tools/pdbgen/pdb/palette.pdb
* tools/pdbgen/pdb/pattern.pdb: added replacements for the
deprecated functions. Removed the silly feature that passing NULL
as name operates on the current brush, pattern etc.
* app/pdb/brush_cmds.c
* app/pdb/brushes_cmds.c
* app/pdb/gradient_cmds.c
* app/pdb/gradients_cmds.c
* app/pdb/internal_procs.c
* app/pdb/palette_cmds.c
* app/pdb/pattern_cmds.c
* app/pdb/patterns_cmds.c
* libgimp/gimpbrush_pdb.[ch]
* libgimp/gimpbrushes_pdb.[ch]
* libgimp/gimpgradient_pdb.[ch]
* libgimp/gimpgradients_pdb.[ch]
* libgimp/gimppalette_pdb.c
* libgimp/gimppattern_pdb.[ch]
* libgimp/gimppatterns_pdb.[ch]: regenerated.
* libgimp/gimpbrushmenu.c
* libgimp/gimpgradientmenu.c
* libgimp/gimppatternmenu.c
* plug-ins/FractalExplorer/Dialogs.c
* plug-ins/common/gradmap.c
* plug-ins/common/sample_colorize.c
* plug-ins/flame/flame.c
* plug-ins/gfig/gfig-style.c
* plug-ins/gflare/gflare.c
* plug-ins/pagecurl/pagecurl.c
* plug-ins/script-fu/scripts/spyrogimp.scm: changed accordingly.
2004-10-05 23:28:17 +00:00
35b372ea08
tools/pdbgen/Makefile.am tools/pdbgen/groups.pl removed the "Palette" pdb
...
2004-09-22 Michael Natterer <mitch@gimp.org >
* tools/pdbgen/Makefile.am
* tools/pdbgen/groups.pl
* tools/pdbgen/pdb/palette.pdb: removed the "Palette" pdb group...
* tools/pdbgen/pdb/context.pdb: and added its functions to the
"Context" namespace instead.
* app/pdb/Makefile.am
* app/pdb/palette_cmds.c: removed.
* app/pdb/procedural_db.c: added them to the pdb_compat hash table.
* libgimp/Makefile.am
* libgimp/gimppalette_pdb.[ch]: removed.
* libgimp/gimppalette.[ch]: new files holding compat functions
which call gimp_context_*() functions.
* libgimp/gimp.h
* libgimp/gimpui.c: changed accordingly.
* app/pdb/context_cmds.c
* app/pdb/internal_procs.c
* libgimp/gimp_pdb.h
* libgimp/gimpcontext_pdb.[ch]: regenerated.
* plug-ins/MapObject/mapobject_image.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/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/mng.c
* plug-ins/common/mosaic.c
* plug-ins/common/papertile.c
* plug-ins/common/png.c
* plug-ins/common/polar.c
* plug-ins/common/semiflatten.c
* plug-ins/common/sinus.c
* plug-ins/common/sparkle.c
* plug-ins/common/vpropagate.c
* plug-ins/common/warp.c
* plug-ins/common/whirlpinch.c
* plug-ins/gfig/gfig-style.c
* plug-ins/gfli/gfli.c
* plug-ins/ifscompose/ifscompose.c
* plug-ins/maze/handy.c
* plug-ins/pagecurl/pagecurl.c
* plug-ins/pygimp/gimpmodule.c
* plug-ins/script-fu/scripts/*.scm: changed accordingly.
2004-09-22 18:43:09 +00:00
7314f2d77f
GUI polishing.
...
2004-07-14 Sven Neumann <sven@gimp.org >
* plug-ins/pagecurl/pagecurl.c: GUI polishing.
2004-07-14 13:47:56 +00:00
4d91ca54d3
more code cleanup and some GUI polishing
2004-07-13 23:42:21 +00:00
2f16b5f824
code cleanup. Use enums instead of a plethora of booleans. Added some
...
2004-07-14 Sven Neumann <sven@gimp.org >
* plug-ins/pagecurl/pagecurl.c: code cleanup. Use enums instead of
a plethora of booleans. Added some macros for readability. Allow
to use a reversed gradient for colorizing the curl.
2004-07-13 23:05:11 +00:00
28cbe15ed7
declared GimpPixmap as deprecated.
...
2004-07-13 Sven Neumann <sven@gimp.org >
* libgimpwidgets/gimppixmap.[ch]: declared GimpPixmap as deprecated.
* libgimpwidgets/gimpwidgets.[ch]: ditto for gimp_pixmap_button_new().
* plug-ins/Lighting/ChangeLog: removed outdated and unused ChangeLog.
* plug-ins/Lighting/Makefile.am
* plug-ins/Lighting/*.xpm: removed XPM files...
* configure.in
* plug-ins/Lighting/images: ... and added them as PNG images here.
These should be redone with antialiased edges.
* plug-ins/Lighting/lighting_stock.[ch]
* plug-ins/Lighting/lighting_ui.c: register stock icons and use
those instead of GimpPixmaps.
* plug-ins/MapObject/Makefile.am
* plug-ins/MapObject/*.xpm: removed duplicated XPM files.
* plug-ins/MapObject/mapobject_stock.[ch]: register stock icons
reusing the generated header from the Lighting plug-in.
* plug-ins/MapObject/mapobject_ui.c: use them.
* plug-ins/pagecurl/pagecurl.c: undef GIMP_DISABLE_DEPRECATED until
GimpPixmap has been replaced here as well.
2004-07-13 15:59:52 +00:00
707e635f61
Bill Skaggs <weskaggs@primate.ucdavis.edu>
...
* plug-ins: changed dialogs to follow HIG capitalization style
wherever they didn't. Scripts remain to be done. Partially
fixes bug #123699 .
2004-06-20 22:47:33 +00:00
f39cbb8483
plug-ins/common/plugindetails.c plug-ins/dbbrowser/dbbrowser_utils.c
...
2004-05-25 Sven Neumann <sven@gimp.org >
* plug-ins/common/plugindetails.c
* plug-ins/dbbrowser/dbbrowser_utils.c
* plug-ins/pagecurl/pagecurl.c: HIG-ified.
2004-05-25 13:55:42 +00:00
bbeef1a8d2
plug-ins/FractalExplorer/FractalExplorer.c
...
2004-05-07 Michael Natterer <mitch@gimp.org >
* plug-ins/FractalExplorer/FractalExplorer.c
* plug-ins/Lighting/lighting_main.c
* plug-ins/MapObject/mapobject_main.c
* plug-ins/dbbrowser/dbbrowser.c
* plug-ins/flame/flame.c
* plug-ins/gimpressionist/gimp.c
* plug-ins/ifscompose/ifscompose.c
* plug-ins/imagemap/imap_main.c
* plug-ins/maze/maze.c
* plug-ins/pagecurl/pagecurl.c
* plug-ins/print/print.c
* plug-ins/rcm/rcm.c
* plug-ins/winsnap/winsnap.c
* plug-ins/common/[g-z]*.c: use gimp_plugin_menu_register(). Some
formatting cleanups in some query() functions.
2004-05-07 13:15:52 +00:00
6193db8738
Corrected the pairing of gimp_drawable_get/gimp_drawable_detach and other
...
2004-02-17 Pedro Gimeno <pggimeno@wanadoo.es >
* plug-ins/pagecurl/pagecurl.c: Corrected the pairing of
gimp_drawable_get/gimp_drawable_detach and other cleanups.
(do_curl_effect): Fixed a bug spotted by Simon Budig: uninitialized
data could be exposed when applying the effect to non-rectangular
selections.
2004-02-17 19:56:13 +00:00
0418750367
added help IDs for the libgimp export and unit dialogs.
...
2004-01-20 Michael Natterer <mitch@gimp.org >
* app/widgets/gimphelp-ids.h: added help IDs for the libgimp
export and unit dialogs.
* libgimp/gimpexport.c
* libgimpwidgets/gimpunitmenu.c: replaced html links by the new
help IDs.
* plug-ins/*/*.c: replaced all html help links by help IDs. A
plug-in's help ID is its procedure name with '_' relaced by '-'.
(e.g. file_tiff_save's help ID is file-tiff-save)
Did some random indentation and whitespace cleanup.
2004-01-20 17:10:16 +00:00
7964ec2d3c
plug-ins/FractalExplorer/Dialogs.c plug-ins/fp/fp_gtk.c
...
2003-12-12 Michael Natterer <mitch@gimp.org >
* plug-ins/FractalExplorer/Dialogs.c
* plug-ins/fp/fp_gtk.c
* plug-ins/gfig/gfig-preview.c
* plug-ins/ifscompose/ifscompose.c
* plug-ins/maze/maze_face.c
* plug-ins/pagecurl/pagecurl.c
* plug-ins/rcm/rcm_dialog.c
* plug-ins/winsnap/winsnap.c
* plug-ins/xjt/xjt.c
* plug-ins/common/*.c: don't set GTK_SHADOW_ETCHED_IN on
GtkFrames, it's the default and just clutters the code.
2003-12-12 12:13:51 +00:00
bc1a085d3b
removed gimp_image_undo_*() functions...
...
2003-12-05 Michael Natterer <mitch@gimp.org >
* tools/pdbgen/pdb/image.pdb: removed gimp_image_undo_*() functions...
* tools/pdbgen/pdb/undo.pdb: ...and added them here. Renamed
gimp_undo_push_group_start,end() to
gimp_image_undo_group_start,end().
* app/pdb/procedural_db.c
* libgimp/gimpcompat.h: added compat stuff for the old undo group API.
* app/pdb/image_cmds.c
* app/pdb/internal_procs.c
* app/pdb/undo_cmds.c
* libgimp/gimpimage_pdb.[ch]
* libgimp/gimpundo_pdb.[ch]: regenerated.
* plug-ins/common/align_layers.c
* plug-ins/common/colortoalpha.c
* plug-ins/common/curve_bend.c
* plug-ins/common/iwarp.c
* plug-ins/common/jpeg.c
* plug-ins/common/rotate.c
* plug-ins/common/tile.c
* plug-ins/common/zealouscrop.c
* plug-ins/gfig/gfig.c
* plug-ins/ifscompose/ifscompose.c
* plug-ins/pagecurl/pagecurl.c
* plug-ins/script-fu/scripts/*.scm: changed accordingly.
2003-12-05 Michael Natterer <mitch@gimp.org >
* libgimp/libgimp-sections.txt
* libgimp/tmpl/gimpimage.sgml
* libgimp/tmpl/gimpundo.sgml: follow undo API changes.
2003-12-05 14:18:47 +00:00
83ae886609
removed the addition of 0.001 that isn't correct for use with integers
...
2003-11-17 Sven Neumann <sven@gimp.org >
* libgimpcolor/gimprgb.h (GIMP_RGB_INTENSITY): removed the
addition of 0.001 that isn't correct for use with integers (should
be 0.5 then) and just plain wrong for use with floats/doubles.
* app/base/temp-buf.c
* app/core/gimpdrawable.c
* app/core/gimpimage-convert.c
* app/core/gimpimage.c
* plug-ins/common/aa.c
* plug-ins/common/engrave.c
* plug-ins/common/gradmap.c
* plug-ins/common/newsprint.c
* plug-ins/gflare/gflare.c
* plug-ins/gfli/gfli.c
* plug-ins/pagecurl/pagecurl.c: add 0.5 to the result of
GIMP_RGB_INTENSITY() in all places that use it with integers.
2003-11-17 17:33:14 +00:00
e4c5b6b0ca
added a GIMP_RGB prefix to the INTENSITY macros.
...
2003-11-17 Sven Neumann <sven@gimp.org >
* libgimpcolor/gimprgb.[ch]: added a GIMP_RGB prefix to the
INTENSITY macros.
* libgimp/gimpcompat.h: document this change here.
* app/base/colorize.c
* app/base/temp-buf.c
* app/core/gimpdrawable-blend.c
* app/core/gimpdrawable.c
* app/core/gimpimage-convert.c
* app/core/gimpimage.c
* plug-ins/common/aa.c
* plug-ins/common/bumpmap.c
* plug-ins/common/colorify.c
* plug-ins/common/displace.c
* plug-ins/common/engrave.c
* plug-ins/common/gradmap.c
* plug-ins/common/newsprint.c
* plug-ins/common/oilify.c
* plug-ins/gflare/gflare.c
* plug-ins/gfli/gfli.c
* plug-ins/pagecurl/pagecurl.c: changed accordingly.
* libgimpcolor/gimpcolor.h: removed trailing whitespace.
* app/paint-funcs/paint-funcs.c: fixed indentation.
2003-11-17 14:58:31 +00:00
f72b8b1e39
new function which does the same as gtk_dialog_run() except it does not
...
2003-11-11 Michael Natterer <mitch@gimp.org >
* libgimpwidgets/gimpdialog.[ch] (gimp_dialog_run): new function
which does the same as gtk_dialog_run() except it does not make
the dialog modal.
* app/gui/resolution-calibrate-dialog.c
* libgimp/gimpexport.c
* plug-ins/*/*.c: use gimp_dialog_run() instead of gtk_dialog_run().
* plug-ins/common/grid.c: set update_continuous to TRUE for
the GimpColorButtons so this feature gets some testing.
2003-11-11 18:11:56 +00:00
66c5dd8772
removed our own action_area API and use GtkDialog's one. Create all
...
2003-11-06 Michael Natterer <mitch@gimp.org >
* libgimpwidgets/gimpdialog.[ch]: removed our own action_area API
and use GtkDialog's one. Create all dialogs without separator.
Changed almost everything else too. Fixes bug #125143 .
* libgimpwidgets/gimpquerybox.c
* libgimpwidgets/gimpunitmenu.c: changed accordingly.
* libgimp/gimpexport.[ch]: ditto. Renamed enum GimpExportReturnType
to GimpExportReturn.
* libgimp/gimpcompat.h: added a #define for the old name.
* themes/Default/gtkrc: increased action_area border to 6 pixels.
* app/display/gimpdisplayshell-filter-dialog.c
* app/display/gimpdisplayshell-scale.c
* app/display/gimpprogress.c
* app/gui/brush-select.c
* app/gui/channels-commands.c
* app/gui/color-notebook.c
* app/gui/convert-dialog.c
* app/gui/file-new-dialog.c
* app/gui/font-select.c
* app/gui/gradient-editor-commands.c
* app/gui/gradient-select.c
* app/gui/grid-dialog.c
* app/gui/image-commands.c
* app/gui/info-window.c
* app/gui/layers-commands.c
* app/gui/module-browser.c
* app/gui/offset-dialog.c
* app/gui/palette-import-dialog.c
* app/gui/palette-select.c
* app/gui/pattern-select.c
* app/gui/preferences-dialog.c
* app/gui/qmask-commands.c
* app/gui/resize-dialog.c
* app/gui/resolution-calibrate-dialog.c
* app/gui/stroke-dialog.c
* app/gui/templates-commands.c
* app/gui/user-install-dialog.c
* app/gui/vectors-commands.c
* app/tools/gimpcolorpickertool.c
* app/tools/gimpcroptool.c
* app/tools/gimpimagemaptool.c
* app/tools/gimpmeasuretool.c
* app/tools/gimptransformtool.c
* app/widgets/gimptexteditor.c
* app/widgets/gimptooldialog.[ch]
* app/widgets/gimpviewabledialog.[ch]
* app/widgets/gimpwidgets-utils.c: changed accordingly and increased
the dialogs' outer borders to 6 pixels all over the place.
* plug-ins/*/*.c: changed accordingly. The plug-ins may be
arbitrarily broken, I tested none of them.
2003-11-06 15:27:05 +00:00
cd9f65cb87
Finished the addition of "gboolean reverse" to the gradient API:
...
2003-08-18 Michael Natterer <mitch@gimp.org >
Finished the addition of "gboolean reverse" to the gradient API:
* tools/pdbgen/pdb/gradients.pdb: added "reverse" params to
gimp_gradients_sample_uniform(), sample_custom() and
get_gradient_data().
* app/pdb/gradients_cmds.c
* libgimp/gimpgradients_pdb.[ch]: regenerated.
* libgimp/gimpgradientmenu.c: changed accordingly.
Made everything compile with the new API:
* plug-ins/FractalExplorer/Dialogs.c
* plug-ins/FractalExplorer/FractalExplorer.[ch]: got lost in
"reverse" adding, whitespace removal and general code cleanup.
I better commit this now before continuing, even though "reverse"
adding is not finished.
* plug-ins/common/sample_colorize.c: removed own gradient
reversing code, use "reverse" instead.
* plug-ins/common/gradmap.c
* plug-ins/flame/flame.c
* plug-ins/gflare/gflare.c
* plug-ins/pagecurl/pagecurl.c: simply pass reverse == FALSE and
added #warnings that more work needs to be done. Some whitespace
removal and minor cleanup.
2003-08-18 12:17:21 +00:00
2002b583c2
plug-ins/rcm/rcm.c plug-ins/print/print.c plug-ins/pagecurl/pagecurl.c
...
2003-08-01 Henrik Brix Andersen <brix@gimp.org >
* plug-ins/rcm/rcm.c
* plug-ins/print/print.c
* plug-ins/pagecurl/pagecurl.c
* plug-ins/mosaic/mosaic.c
* plug-ins/MapObject/mapobject_main.c
* plug-ins/Lighting/lighting_main.c
* plug-ins/imagemap/imap_main.c
* plug-ins/gimpressionist/gimp.c
* plug-ins/gflare/gflare.c
* plug-ins/common/mapcolor.c
* app/gui/toolbox-menu.c: added more mnemonics to fix bug
#106991 . More will follow soon...
2003-08-01 18:00:20 +00:00
1016c682c8
more plug-ins adapted to libgimp changes.
...
2003-07-02 Sven Neumann <sven@gimp.org >
* plug-ins: more plug-ins adapted to libgimp changes.
2003-07-02 00:15:09 +00:00
28fddfd554
Makefile.am removed this header file.
...
2003-03-25 Sven Neumann <sven@gimp.org >
* Makefile.am
* gimpintl.h: removed this header file.
* gimpmiscui.c: include libgimp-intl.h.
* gimp.c (gimp_main): call setlocale() and bind to the libgimp
textdomain so that plug-ins don't need to do that explicitely.
* libgimp/stdplugins-intl.h: added the functionality that used to
live in gimpintl.h and removed the libgimp related stuff. Got rid
of the INIT_I18N_UI() macro.
* plug-ins/*/*.c: removed all occurances of INIT_I18N_UI().
Plug-ins simply call INIT_I18N() once in their run() function.
* plug-ins/script-fu/script-fu-intl.h: added the functionality
that used to live in gimpintl.h and removed the libgimp related
stuff.
* app/Makefile.am
* app/gimp-intl.h: new file that defines the gettext macros for
the GIMP core.
* app/*/*.c: include gimp-intl.h instead of libgimp/gimpintl.h.
* plug-ins/script-fu/scripts/test-sphere.scm: fixed typos.
2003-03-25 16:38:19 +00:00
01dbd2c339
cleanup, removed unecessary G_OBJECT() casts.
...
2003-01-06 Manish Singh <yosh@gimp.org >
* lots of files in plug-ins: cleanup, removed unecessary
G_OBJECT() casts.
2003-01-07 06:16:02 +00:00
4904ca124e
tiny fix, there was an ancient non working call to gimp_layer_add_alpha
...
2002-05-15 Simon Budig <simon@gimp.org >
* plug-ins/pagecurl/pagecurl.c: tiny fix, there was an
ancient non working call to gimp_layer_add_alpha still
hanging around...
2002-05-15 18:46:55 +00:00
e82fba4414
Made the pagecurl plugin automatically add an alpha channel. Fixes #81611 .
...
2002-05-15 Simon Budig <simon@gimp.org >
* plug-ins/pagecurl/pagecurl.c: Made the pagecurl plugin
automatically add an alpha channel. Fixes #81611 .
2002-05-15 18:25:59 +00:00
f17c891b3b
code cleanup based on a patch from Maurits Rijk <lpeek.mrijk@consunet.nl>
...
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-19 10:01:36 +00:00
ac94892dc2
compile with GTK_DISABLE_DEPRECATED.
...
2002-01-02 Michael Natterer <mitch@gimp.org >
* plug-ins/pagecurl/pagecurl.c: compile with GTK_DISABLE_DEPRECATED.
2002-01-02 16:22:42 +00:00
14d0a3ff07
app/gimpprogress.c app/nav_window.c app/ops_buttons.c app/undo_history.c
...
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-29 13:26:29 +00:00
774caf0ee6
app/plug-in/Makefile.am new files. Started to split plug-in.c into smaller
...
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-19 00:13:16 +00:00
aa201cade4
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.11
2001-12-06 02:28:58 +00:00
6002aaf5a8
EEK, broken pipe on last try.
2001-08-03 19:52:08 +00:00
593043a1b6
fixed a FIXME: set the sensitivity of the color tools' menu entries again.
...
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 20:07:38 +00:00
0d533abbdd
tools/pdbgen/lib.pl tools/pdbgen/pdb.pl tools/pdbgen/pdb/channel.pdb
...
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-25 01:20:05 +00:00
77718ca7f5
added function gimp_rgb_intensity_uchar()
...
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-15 00:06:43 +00:00
b9413eb038
added -DGTK_DISABLE_COMPAT_H to CPPFLAGS.
...
2000-08-28 Michael Natterer <mitch@gimp.org >
* configure.in: added -DGTK_DISABLE_COMPAT_H to CPPFLAGS.
* app/app_procs.c
* app/gdisplay.c
* app/layers_dialog.c
* app/menus.c
* app/tips_dialog.c
* libgimp/gimpcolorbutton.c
* plug-ins/FractalExplorer/Dialogs.c
* plug-ins/FractalExplorer/FractalExplorer.c
* plug-ins/bmp/bmpwrite.c
* plug-ins/common/AlienMap.c
* plug-ins/common/AlienMap2.c
* plug-ins/common/CML_explorer.c
* plug-ins/common/animationplay.c
* plug-ins/common/cubism.c
* plug-ins/common/curve_bend.c
* plug-ins/common/deinterlace.c
* plug-ins/common/gee.c
* plug-ins/common/glasstile.c
* plug-ins/common/iwarp.c
* plug-ins/common/mail.c
* plug-ins/common/pat.c
* plug-ins/common/pixelize.c
* plug-ins/common/plugindetails.c
* plug-ins/common/png.c
* plug-ins/common/sample_colorize.c
* plug-ins/common/sel_gauss.c
* plug-ins/common/sinus.c
* plug-ins/common/sparkle.c
* plug-ins/common/spheredesigner.c
* plug-ins/common/tga.c
* plug-ins/common/tileit.c
* plug-ins/common/vpropagate.c
* plug-ins/common/warp.c
* plug-ins/common/waves.c
* plug-ins/common/wmf.c
* plug-ins/flame/flame.c
* plug-ins/fp/fp_gtk.c
* plug-ins/gap/gap_arr_dialog.c
* plug-ins/gap/gap_dbbrowser_utils.c
* plug-ins/gap/gap_mov_dialog.c
* plug-ins/gap/gap_navigator_dialog.c
* plug-ins/gap/gap_resi_dialog.c
* plug-ins/gdyntext/gdyntext_ui.c
* plug-ins/gfig/gfig.c
* plug-ins/gimpressionist/brush.c
* plug-ins/gimpressionist/gimpressionist.c
* plug-ins/pagecurl/pagecurl.c
* plug-ins/print/gimp_main_window.c
* plug-ins/rcm/rcm_callback.c
* plug-ins/rcm/rcm_dialog.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_adv_dialog.c
* plug-ins/xjt/xjt.c: removed COMPAT_CRUFT.
2000-08-28 00:42:32 +00:00