1997-11-25 06:05:25 +08:00
|
|
|
/* The GIMP -- an image manipulation program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* 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
|
1998-04-13 13:44:11 +08:00
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
1997-11-25 06:05:25 +08:00
|
|
|
*/
|
|
|
|
#ifndef __TRANSFORM_CORE_H__
|
|
|
|
#define __TRANSFORM_CORE_H__
|
|
|
|
|
|
|
|
#include "draw_core.h"
|
Bit of a large checkin this - it's basically three things: 1 - GimpModules
Sun Jan 11 00:24:21 GMT 1999 Austin Donnelly <austin@greenend.org.uk>
Bit of a large checkin this - it's basically three things:
1 - GimpModules using gmodules to dynamically load and
initialise modules at gimp start of day.
2 - Color selectors now register themselves with a color
notebook.
3 - progress bars have been cleaned up a bit, so now have
progress indictations on all transform tool and gradient
fill operations. Not done bucket fill, but that seems to
be the next candidate.
New directories:
* modules/: new directory for dynamically loadable modules.
New files:
* modules/.cvsignore
* modules/Makefile.am
* modules/colorsel_gtk.c: GTK color selector wrapped up as a
color selector the gimp can use.
* app/gimpprogress.[ch]: progress bars within gimp core, either as
popups, or in the status bar. This is mainly code moved out
of plug-in.c
* app/color_notebook.[ch]: color selector notebook, implementing
very similar interface to color_select.h so it can be used as
a drop-in replacement for it.
* libgimp/color_selector.h: API color selectors need to implement
to become a page in the color_notebook.
* libgimp/gimpmodule.h: API gimp modules need to implement to be
initialised by gimp at start of day.
Modified files:
* Makefile.am: add modules/ to SUBDIRS
* libgimp/Makefile.am: install gimpmodule.h and color_selector.h
* app/gimprc.[ch]: recognise module-path variable.
* gimprc.in: set module-path variable to something sensible
(currently "${gimp_dir}/modules:${gimp_plugin_dir}/modules").
* app/Makefile.am: build color notebook and gimpprogress
* app/app_procs.c: register internal GIMP color selector with
color notebook.
* app/asupsample.c: call progress function less frequently for
better performance.
* app/asupsample.h: progress_func_t typedef moved to gimpprogress.h
* app/blend.c: make callbacks to a progress function
* app/color_area.c: use a color notebook rather than a color selector
* app/color_panel.c: ditto
* app/color_select.c: export color selector interface for notebook
* app/color_select.h: color_select_init() prototype
* app/flip_tool.c: flip the image every time, rather than every
second click.
* app/interface.c: move progress bar stuff out to
gimpprogress.c. Make the code actually work while we're at it.
* app/interface.h: move prototypes for progress functions out to
gimpprogress.h
* app/plug_in.c: load and initialise modules (if possible). Move
progress bar handling code out to gimpprogress.c
* app/plug_in.h: keep only a gimp_progress * for each plugin, not
a whole bunch of GtkWidgets.
* app/scale_tool.c
* app/rotate_tool.c
* app/shear_tool.c
* app/perspective_tool.c: progress bar during operation.
De-sensitise the dialog to discourage the user from running
two transforms in parallel.
* app/transform_core.c: recalculate grid coords when bounding box
changes. Only initialise the action area of the dialog once,
to avoid multiple "ok" / "reset" buttons appearing. Undraw
transform tool with correct matrix to get rid of handle
remains on screen. Call a progress function as we apply the
transform matrix. A few new i18n markups. Invalidate
floating selection marching ants after applying matrix.
* app/transform_core.h: transform_core_do() takes an optional
progress callback argument (and data).
* plug-ins/oilify/oilify.c: send progress bar updates after every
pixel region, not only if they processed a multiple of 5
pixels (which was quite unlikely, and therefore gave a jerky
progress indication).
1999-01-11 08:57:33 +08:00
|
|
|
#include "gimpprogress.h"
|
2000-01-05 19:18:38 +08:00
|
|
|
#include "info_dialog.h"
|
|
|
|
#include "temp_buf.h"
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-01-05 19:18:38 +08:00
|
|
|
#include "libgimp/gimpmatrix.h"
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-01-05 19:18:38 +08:00
|
|
|
/* possible transform functions */
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
CREATING,
|
|
|
|
HANDLE_1,
|
|
|
|
HANDLE_2,
|
|
|
|
HANDLE_3,
|
|
|
|
HANDLE_4,
|
|
|
|
HANDLE_CENTER
|
|
|
|
} TransformAction;
|
|
|
|
|
|
|
|
/* the different states that the transformation function can be called with */
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
INIT,
|
|
|
|
MOTION,
|
|
|
|
RECALC,
|
|
|
|
FINISH
|
|
|
|
} TransformState;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* buffer sizes for scaling information strings (for the info dialog) */
|
1998-08-14 04:19:09 +08:00
|
|
|
#define MAX_INFO_BUF 40
|
1997-11-25 06:05:25 +08:00
|
|
|
#define TRAN_INFO_SIZE 8
|
|
|
|
|
1999-04-19 05:22:41 +08:00
|
|
|
enum BoundingBox
|
|
|
|
{
|
|
|
|
X0, Y0, X1, Y1, X2, Y2, X3, Y3
|
|
|
|
};
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-01-05 19:18:38 +08:00
|
|
|
typedef gdouble TranInfo[TRAN_INFO_SIZE];
|
|
|
|
|
|
|
|
typedef TileManager * (* TransformFunc) (Tool *, void *, TransformState);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
|
1999-06-22 06:12:07 +08:00
|
|
|
typedef struct _TransformCore TransformCore;
|
2000-01-05 19:18:38 +08:00
|
|
|
|
1999-06-22 06:12:07 +08:00
|
|
|
struct _TransformCore
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-01-05 19:18:38 +08:00
|
|
|
DrawCore *core; /* Core select object */
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-01-05 19:18:38 +08:00
|
|
|
gint startx; /* starting x coord */
|
|
|
|
gint starty; /* starting y coord */
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-01-05 19:18:38 +08:00
|
|
|
gint curx; /* current x coord */
|
|
|
|
gint cury; /* current y coord */
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-01-05 19:18:38 +08:00
|
|
|
gint lastx; /* last x coord */
|
|
|
|
gint lasty; /* last y coord */
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-01-05 19:18:38 +08:00
|
|
|
gint state; /* state of buttons and keys */
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-01-05 19:18:38 +08:00
|
|
|
gint x1, y1; /* upper left hand coordinate */
|
|
|
|
gint x2, y2; /* lower right hand coords */
|
|
|
|
gint cx, cy; /* center point (for rotation) */
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-01-05 19:18:38 +08:00
|
|
|
gdouble tx1, ty1; /* transformed coords */
|
|
|
|
gdouble tx2, ty2; /* */
|
|
|
|
gdouble tx3, ty3; /* */
|
|
|
|
gdouble tx4, ty4; /* */
|
|
|
|
gdouble tcx, tcy; /* */
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-01-05 19:18:38 +08:00
|
|
|
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 */
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-02-15 00:29:41 +08:00
|
|
|
GimpMatrix3 transform; /* transformation matrix */
|
1997-11-25 06:05:25 +08:00
|
|
|
TranInfo trans_info; /* transformation info */
|
|
|
|
|
2000-01-05 19:18:38 +08:00
|
|
|
TileManager *original; /* pointer to original tiles */
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
TransformFunc trans_func; /* transformation function */
|
|
|
|
|
2000-01-05 19:18:38 +08:00
|
|
|
TransformAction function; /* current tool activity */
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-01-05 19:18:38 +08:00
|
|
|
gboolean interactive; /* tool is interactive */
|
|
|
|
gboolean bpressed; /* Bug work around make sure we have
|
|
|
|
* a button pressed before we deal with
|
|
|
|
* motion events. ALT.
|
1998-04-12 16:27:16 +08:00
|
|
|
*/
|
2000-01-05 19:18:38 +08:00
|
|
|
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 */
|
1997-11-25 06:05:25 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* Special undo type */
|
1999-06-22 06:12:07 +08:00
|
|
|
typedef struct _TransformUndo TransformUndo;
|
2000-01-05 19:18:38 +08:00
|
|
|
|
1999-06-22 06:12:07 +08:00
|
|
|
struct _TransformUndo
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-01-05 19:18:38 +08:00
|
|
|
gint tool_ID;
|
|
|
|
gint tool_type;
|
|
|
|
TranInfo trans_info;
|
|
|
|
TileManager *original;
|
|
|
|
void *path_undo;
|
1997-11-25 06:05:25 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* make this variable available to all */
|
1999-06-22 06:12:07 +08:00
|
|
|
extern InfoDialog * transform_info;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* transform tool action functions */
|
1999-06-22 06:12:07 +08:00
|
|
|
void transform_core_button_press (Tool *, GdkEventButton *, gpointer);
|
|
|
|
void transform_core_button_release (Tool *, GdkEventButton *, gpointer);
|
|
|
|
void transform_core_motion (Tool *, GdkEventMotion *, gpointer);
|
|
|
|
void transform_core_cursor_update (Tool *, GdkEventMotion *, gpointer);
|
|
|
|
void transform_core_control (Tool *, ToolAction, gpointer);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* transform tool functions */
|
2000-01-05 19:18:38 +08:00
|
|
|
Tool * transform_core_new (ToolType tool_type,
|
|
|
|
gboolean interactive);
|
|
|
|
void transform_core_free (Tool *tool);
|
|
|
|
void transform_core_draw (Tool *tool);
|
|
|
|
void transform_core_no_draw (Tool *tool);
|
|
|
|
void transform_core_transform_bounding_box (Tool *tool);
|
|
|
|
void transform_core_reset (Tool *tool,
|
|
|
|
void *gdisp_ptr);
|
|
|
|
void transform_core_grid_density_changed (void);
|
|
|
|
void transform_core_showpath_changed (gint type);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* transform functions */
|
2000-01-05 19:18:38 +08:00
|
|
|
TileManager * transform_core_do (GImage *gimage,
|
|
|
|
GimpDrawable *drawable,
|
|
|
|
TileManager *float_tiles,
|
|
|
|
gboolean interpolation,
|
2000-02-15 00:29:41 +08:00
|
|
|
GimpMatrix3 matrix,
|
2000-01-05 19:18:38 +08:00
|
|
|
progress_func_t progress_callback,
|
|
|
|
gpointer progress_data);
|
|
|
|
TileManager * transform_core_cut (GImage *gimage,
|
|
|
|
GimpDrawable *drawable,
|
|
|
|
gboolean *new_layer);
|
2000-03-27 02:39:03 +08:00
|
|
|
gboolean transform_core_paste (GImage *gimage,
|
2000-01-05 19:18:38 +08:00
|
|
|
GimpDrawable *drawable,
|
|
|
|
TileManager *tiles,
|
|
|
|
gboolean new_layer);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
#endif /* __TRANSFORM_CORE_H__ */
|