gimp/app/text
Michael Natterer 18d9161eea Get rid of the "current_context" which was in fact just a bunch of global
2004-04-15  Michael Natterer  <mitch@gimp.org>

	Get rid of the "current_context" which was in fact just a bunch of
	global variables. Instead, pass the needed context all the way
	from the GUI and the PDB to the core. This is a prerequisite for
	macro recording and generally helps separating the various
	subsystems from each other. Work in progress...

	* app/core/gimp.[ch]: removed member "current_context" and
	gimp_[get|set]_current_context().

	* app/core/gimp-edit.[ch]
	* app/core/gimpdrawable-blend.[ch]
	* app/core/gimpdrawable-bucket-fill.[ch]
	* app/core/gimpdrawable-offset.[ch]
	* app/core/gimpdrawable-transform.[ch]
	* app/core/gimpimage-crop.[ch]
	* app/core/gimpimage-flip.[ch]
	* app/core/gimpimage-merge.[ch]
	* app/core/gimpimage-resize.[ch]
	* app/core/gimpimage-rotate.[ch]
	* app/core/gimpimage.[ch]
	* app/core/gimpimagefile.[ch]
	* app/core/gimpitem-linked.[ch]
	* app/core/gimpitem.[ch]
	* app/core/gimplayer.[ch]
	* app/core/gimpselection.[ch]
	* app/core/gimptemplate.[ch]
	* app/file/file-open.[ch]
	* app/file/file-save.[ch]
	* app/pdb/procedural_db.[ch]
	* app/text/gimptext-compat.[ch]
	* app/text/gimptextlayer-transform.[ch]
	* app/gui/brush-select.[ch]
	* app/gui/font-select.[ch]
	* app/gui/gradient-select.[ch]
	* app/gui/palette-select.[ch]
	* app/gui/pattern-select.[ch]: added tons of "GimpContext *context"
	parameters and use the passed context instead of
	gimp_get_current_context().

	* app/app_procs.c
	* app/batch.c
	* app/core/gimpchannel.c
	* app/core/gimpdrawable.c
	* app/paint/gimperaser.c
	* app/paint/gimppaintbrush.c
	* app/plug-in/plug-in-message.c
	* app/plug-in/plug-ins.c
	* app/text/gimptextlayer.c
	* app/tools/gimpblendtool.c
	* app/tools/gimpbucketfilltool.c
	* app/tools/gimpcroptool.c
	* app/tools/gimpeditselectiontool.c
	* app/tools/gimpfliptool.c
	* app/tools/gimpinktool.c
	* app/tools/gimptransformtool.c
	* app/vectors/gimpvectors.c
	* app/gui/convert-dialog.c
	* app/gui/drawable-commands.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/image-commands.c
	* app/gui/layers-commands.c
	* app/gui/offset-dialog.c
	* app/gui/select-commands.c
	* app/gui/vectors-commands.c
	* app/widgets/gimpdnd.c
	* app/widgets/gimpdocumentview.c
	* app/widgets/gimphelp.c
	* app/widgets/gimpthumbbox.c: pass gimp_get_user_context() or
	GIMP_CONTEXT(tool_options) or whatever is the right context
	to the changed core functions.

	* tools/pdbgen/app.pl: pass "GimpContext *context" to all
	generated PDB invokers.

	* tools/pdbgen/pdb/brush_select.pdb
	* tools/pdbgen/pdb/brushes.pdb
	* tools/pdbgen/pdb/drawable.pdb
	* tools/pdbgen/pdb/edit.pdb
	* tools/pdbgen/pdb/font_select.pdb
	* tools/pdbgen/pdb/gradient_select.pdb
	* tools/pdbgen/pdb/gradients.pdb
	* tools/pdbgen/pdb/image.pdb
	* tools/pdbgen/pdb/layer.pdb
	* tools/pdbgen/pdb/paint_tools.pdb
	* tools/pdbgen/pdb/palette.pdb
	* tools/pdbgen/pdb/palette_select.pdb
	* tools/pdbgen/pdb/palettes.pdb
	* tools/pdbgen/pdb/paths.pdb
	* tools/pdbgen/pdb/pattern_select.pdb
	* tools/pdbgen/pdb/patterns.pdb
	* tools/pdbgen/pdb/selection.pdb
	* tools/pdbgen/pdb/text_tool.pdb
	* tools/pdbgen/pdb/transform_tools.pdb: pass the new context
	parameter to the changed core functions.

	* app/pdb/*_cmds.c: regenerated.
2004-04-14 23:37:34 +00:00
..
.cvsignore configure.in app/Makefile.am added new directory text. 2003-01-29 22:20:09 +00:00
Makefile.am added gimp_undo_type_to_name() a similar function used to live in 2004-03-21 23:14:21 +00:00
gimp-fonts.c use GTK_STOCK_SELECT_FONT stock icon instead of text tool icon. 2003-11-05 01:07:56 +00:00
gimp-fonts.h Font configuration stuff: You can rescan for fonts on the fly now. A 2003-09-01 18:20:56 +00:00
gimpfont.c use GTK_STOCK_SELECT_FONT stock icon instead of text tool icon. 2003-11-05 01:07:56 +00:00
gimpfont.h require gtk+ >= 2.2. 2003-03-25 22:13:10 +00:00
gimpfontlist.c validate the font name. This should work around the crashes that Windows 2004-03-28 14:27:37 +00:00
gimpfontlist.h added gimp_font_list_restore() which loads the fonts (not yet). 2003-03-25 22:53:10 +00:00
gimptext-bitmap.c app/text/Makefile.am new files that hold yet unused GimpItem transform 2003-08-15 19:45:41 +00:00
gimptext-bitmap.h app/text/Makefile.am new files that hold yet unused GimpItem transform 2003-08-15 19:45:41 +00:00
gimptext-compat.c Get rid of the "current_context" which was in fact just a bunch of global 2004-04-14 23:37:34 +00:00
gimptext-compat.h Get rid of the "current_context" which was in fact just a bunch of global 2004-04-14 23:37:34 +00:00
gimptext-parasite.c app/text/Makefile.am new files that load and save text layers to/from XCF. 2003-10-27 21:50:41 +00:00
gimptext-parasite.h app/text/Makefile.am new files that load and save text layers to/from XCF. 2003-10-27 21:50:41 +00:00
gimptext-private.h app/text/Makefile.am new files that hold yet unused GimpItem transform 2003-08-15 19:45:41 +00:00
gimptext-vectors.c added #defines for GimpCoords' default pressure, tilt and wheel values. 2004-02-23 22:36:50 +00:00
gimptext-vectors.h Generalized text rendering and added a framework for creating GimpVectors 2003-07-20 21:23:01 +00:00
gimptext-xlfd.c account for the fact that XLFD stores point sizes in decipoints. 2004-01-26 18:49:33 +00:00
gimptext-xlfd.h added convenience function gimp_text_set_font_from_xlfd(). Improved and 2003-06-25 11:43:36 +00:00
gimptext.c added a category parameter to make this function more flexible. 2004-04-13 15:07:30 +00:00
gimptext.h app/text/gimptext.[ch] added back "box-unit" property; it makes sense to 2003-10-26 12:07:05 +00:00
gimptextlayer-transform.c Get rid of the "current_context" which was in fact just a bunch of global 2004-04-14 23:37:34 +00:00
gimptextlayer-transform.h Get rid of the "current_context" which was in fact just a bunch of global 2004-04-14 23:37:34 +00:00
gimptextlayer-xcf.c added a missing call to gimp_image_flush(). 2004-03-18 15:27:23 +00:00
gimptextlayer-xcf.h added a missing call to gimp_image_flush(). 2004-03-18 15:27:23 +00:00
gimptextlayer.c Get rid of the "current_context" which was in fact just a bunch of global 2004-04-14 23:37:34 +00:00
gimptextlayer.h added gimp_text_layer_set(), a function that calls g_object_set() on the 2004-03-19 22:12:18 +00:00
gimptextlayout-render.c multiply the layout's offsets with PANGO_SCALE, not -PANGO_SCALE. Fixes 2003-12-16 13:33:02 +00:00
gimptextlayout-render.h Generalized text rendering and added a framework for creating GimpVectors 2003-07-20 21:23:01 +00:00
gimptextlayout.c fixed text positioning for fonts where glyphs extend the logical rectangle 2004-01-25 21:06:01 +00:00
gimptextlayout.h app/text/Makefile.am app/text/gimptextlayout-private.h new files that 2003-07-06 18:43:58 +00:00
gimptextundo.c added gimp_undo_type_to_name() a similar function used to live in 2004-03-21 23:14:21 +00:00
gimptextundo.h added gimp_undo_type_to_name() a similar function used to live in 2004-03-21 23:14:21 +00:00
makefile.msc build sanity.obj app/text/makefile.msc : gimptextundo.obj 2004-04-11 15:21:09 +00:00
text-enums.c handle negative float and double values similar to how this is done for 2003-10-26 00:03:16 +00:00
text-enums.h handle negative float and double values similar to how this is done for 2003-10-26 00:03:16 +00:00
text-types.h added gimp_undo_type_to_name() a similar function used to live in 2004-03-21 23:14:21 +00:00