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.
173 lines
6.6 KiB
C
173 lines
6.6 KiB
C
/* The GIMP -- an image manipulation program
|
|
* Copyright (C) 1995-2001 Spencer Kimball, Peter Mattis, and others
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#ifndef __GIMP_TRANSFORM_TOOL_H__
|
|
#define __GIMP_TRANSFORM_TOOL_H__
|
|
|
|
|
|
#include "gimpdrawtool.h"
|
|
|
|
|
|
/* buffer sizes for scaling information strings (for the info dialog) */
|
|
#define MAX_INFO_BUF 40
|
|
#define TRAN_INFO_SIZE 8
|
|
|
|
enum BoundingBox
|
|
{
|
|
X0, Y0, X1, Y1, X2, Y2, X3, Y3
|
|
};
|
|
|
|
typedef gdouble TranInfo[TRAN_INFO_SIZE];
|
|
|
|
|
|
#define GIMP_TYPE_TRANSFORM_TOOL (gimp_transform_tool_get_type ())
|
|
#define GIMP_TRANSFORM_TOOL(obj) (GTK_CHECK_CAST ((obj), GIMP_TYPE_TRANSFORM_TOOL, GimpTransformTool))
|
|
#define GIMP_IS_TRANSFORM_TOOL(obj) (GTK_CHECK_TYPE ((obj), GIMP_TYPE_TRANSFORM_TOOL))
|
|
#define GIMP_TRANSFORM_TOOL_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), GIMP_TYPE_TRANSFORM_TOOL, GimpTransformToolClass))
|
|
#define GIMP_IS_TRANSFORM_TOOL_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_TRANSFORM_TOOL))
|
|
|
|
|
|
typedef struct _GimpTransformToolClass GimpTransformToolClass;
|
|
|
|
struct _GimpTransformTool
|
|
{
|
|
GimpDrawTool parent_instance;
|
|
|
|
gint startx; /* starting x coord */
|
|
gint starty; /* starting y coord */
|
|
|
|
gint curx; /* current x coord */
|
|
gint cury; /* current y coord */
|
|
|
|
gint lastx; /* last x coord */
|
|
gint lasty; /* last y coord */
|
|
|
|
gint state; /* state of buttons and keys */
|
|
|
|
gint x1, y1; /* upper left hand coordinate */
|
|
gint x2, y2; /* lower right hand coords */
|
|
gint cx, cy; /* center point (for rotation) */
|
|
|
|
gdouble tx1, ty1; /* transformed coords */
|
|
gdouble tx2, ty2; /* */
|
|
gdouble tx3, ty3; /* */
|
|
gdouble tx4, ty4; /* */
|
|
gdouble tcx, tcy; /* */
|
|
|
|
gint sx1, sy1; /* transformed screen coords */
|
|
gint sx2, sy2; /* position of four handles */
|
|
gint sx3, sy3; /* */
|
|
gint sx4, sy4; /* */
|
|
gint scx, scy; /* and center for rotation */
|
|
|
|
GimpMatrix3 transform; /* transformation matrix */
|
|
TranInfo trans_info; /* transformation info */
|
|
|
|
TileManager *original; /* pointer to original tiles */
|
|
|
|
TransformAction function; /* current tool activity */
|
|
|
|
gboolean interactive; /* tool is interactive */
|
|
gboolean bpressed; /* Bug work around make sure we have
|
|
* a button pressed before we deal with
|
|
* motion events. ALT.
|
|
*/
|
|
gint ngx, ngy; /* number of grid lines in original
|
|
* x and y directions
|
|
*/
|
|
gdouble *grid_coords; /* x and y coordinates of the grid
|
|
* endpoints (a total of (ngx+ngy)*2
|
|
* coordinate pairs)
|
|
*/
|
|
gdouble *tgrid_coords; /* transformed grid_coords */
|
|
};
|
|
|
|
struct _GimpTransformToolClass
|
|
{
|
|
GimpDrawToolClass parent_class;
|
|
|
|
TileManager * (* transform) (GimpTransformTool *tool,
|
|
GDisplay *gdisp,
|
|
TransformState state);
|
|
|
|
};
|
|
|
|
/* Special undo type */
|
|
typedef struct _TransformUndo TransformUndo;
|
|
|
|
struct _TransformUndo
|
|
{
|
|
gint tool_ID;
|
|
GtkType tool_type;
|
|
|
|
TranInfo trans_info;
|
|
TileManager *original;
|
|
gpointer path_undo;
|
|
};
|
|
|
|
/* transform directions */
|
|
#define TRANSFORM_TRADITIONAL 0
|
|
#define TRANSFORM_CORRECTIVE 1
|
|
|
|
|
|
/* make this variable available to all */
|
|
/* Do we still need to do this? -- rock */
|
|
extern InfoDialog * transform_info;
|
|
|
|
/* transform tool functions */
|
|
/* make PDB compile: ToolType doesn't exist any more
|
|
Tool * gimp_transform_tool_new (GimpTransformToolType tool_type,
|
|
gboolean interactive);
|
|
*/
|
|
|
|
GtkType gimp_transform_tool_get_type (void);
|
|
|
|
void gimp_transform_tool_transform_bounding_box (GimpTransformTool *tool);
|
|
void gimp_transform_tool_reset (GimpTransformTool *tool,
|
|
GDisplay *gdisp);
|
|
void gimp_transform_tool_grid_density_changed (void);
|
|
void gimp_transform_tool_showpath_changed (gint type);
|
|
TileManager * gimp_transform_tool_transform (GimpTransformTool *tool,
|
|
GDisplay *gdisp,
|
|
TransformState state);
|
|
/* transform functions */
|
|
/* FIXME this function needs to be renamed */
|
|
TileManager * gimp_transform_tool_do (GimpImage *gimage,
|
|
GimpDrawable *drawable,
|
|
TileManager *float_tiles,
|
|
gboolean interpolation,
|
|
GimpMatrix3 matrix,
|
|
GimpProgressFunc progress_callback,
|
|
gpointer progress_data);
|
|
TileManager * gimp_transform_tool_cut (GimpImage *gimage,
|
|
GimpDrawable *drawable,
|
|
gboolean *new_layer);
|
|
gboolean gimp_transform_tool_paste (GimpImage *gimage,
|
|
GimpDrawable *drawable,
|
|
TileManager *tiles,
|
|
gboolean new_layer);
|
|
|
|
gboolean gimp_transform_tool_smoothing (void);
|
|
gboolean gimp_transform_tool_showpath (void);
|
|
gboolean gimp_transform_tool_clip (void);
|
|
gint gimp_transform_tool_direction (void);
|
|
gint gimp_transform_tool_grid_size (void);
|
|
gboolean gimp_transform_tool_show_grid (void);
|
|
|
|
|
|
#endif /* __GIMP_TRANSFORM_TOOL_H__ */
|