2001-03-09 15:09:12 +08:00
|
|
|
/* The GIMP -- an image manipulation program
|
2001-03-01 14:56:57 +08:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
2004-06-13 04:10:40 +08:00
|
|
|
#include <gdk/gdkkeysyms.h>
|
2001-03-01 14:56:57 +08:00
|
|
|
|
|
|
|
#include "libgimpmath/gimpmath.h"
|
|
|
|
#include "libgimpwidgets/gimpwidgets.h"
|
|
|
|
|
2001-05-10 06:34:59 +08:00
|
|
|
#include "tools-types.h"
|
2002-05-03 20:45:22 +08:00
|
|
|
|
2001-05-15 19:25:25 +08:00
|
|
|
#include "base/tile-manager.h"
|
2001-04-07 23:58:26 +08:00
|
|
|
|
2001-07-07 20:17:23 +08:00
|
|
|
#include "core/gimp.h"
|
2003-05-13 21:57:11 +08:00
|
|
|
#include "core/gimpchannel.h"
|
2001-05-09 10:32:03 +08:00
|
|
|
#include "core/gimpcontext.h"
|
2001-11-20 02:23:43 +08:00
|
|
|
#include "core/gimpdrawable-transform.h"
|
2001-05-09 10:32:03 +08:00
|
|
|
#include "core/gimpimage.h"
|
2003-02-13 19:23:50 +08:00
|
|
|
#include "core/gimpimage-undo.h"
|
2003-02-14 22:14:29 +08:00
|
|
|
#include "core/gimpimage-undo-push.h"
|
2003-05-12 23:56:36 +08:00
|
|
|
#include "core/gimpitem-linked.h"
|
2001-05-09 10:32:03 +08:00
|
|
|
#include "core/gimplayer.h"
|
2001-05-10 06:34:59 +08:00
|
|
|
#include "core/gimptoolinfo.h"
|
2001-05-09 10:32:03 +08:00
|
|
|
|
2003-07-16 22:08:24 +08:00
|
|
|
#include "vectors/gimpvectors.h"
|
|
|
|
#include "vectors/gimpstroke.h"
|
|
|
|
|
2003-05-03 02:43:15 +08:00
|
|
|
#include "widgets/gimpdialogfactory.h"
|
2002-11-14 19:54:57 +08:00
|
|
|
#include "widgets/gimpviewabledialog.h"
|
|
|
|
|
2001-09-26 07:23:09 +08:00
|
|
|
#include "display/gimpdisplay.h"
|
2002-02-22 23:08:47 +08:00
|
|
|
#include "display/gimpprogress.h"
|
2004-06-13 09:37:29 +08:00
|
|
|
#include "display/gimpdisplayshell.h"
|
|
|
|
#include "display/gimpdisplayshell-appearance.h"
|
|
|
|
#include "display/gimpdisplayshell-transform.h"
|
2001-03-01 14:56:57 +08:00
|
|
|
|
2003-07-16 22:08:24 +08:00
|
|
|
#ifdef __GNUC__
|
|
|
|
#warning FIXME #include "gui/gui-types.h"
|
|
|
|
#endif
|
|
|
|
#include "gui/gui-types.h"
|
2003-05-03 02:43:15 +08:00
|
|
|
#include "gui/info-dialog.h"
|
|
|
|
|
2003-04-16 00:05:52 +08:00
|
|
|
#include "gimptoolcontrol.h"
|
2003-02-09 05:12:03 +08:00
|
|
|
#include "gimptransformoptions.h"
|
2003-02-14 22:14:29 +08:00
|
|
|
#include "gimptransformtool.h"
|
|
|
|
#include "gimptransformtool-undo.h"
|
2001-03-15 12:57:24 +08:00
|
|
|
|
2003-03-26 00:38:19 +08:00
|
|
|
#include "gimp-intl.h"
|
2001-03-01 14:56:57 +08:00
|
|
|
|
2001-04-18 05:43:29 +08:00
|
|
|
|
2002-11-18 21:10:04 +08:00
|
|
|
#define HANDLE_SIZE 10
|
2001-11-20 02:23:43 +08:00
|
|
|
|
2001-11-12 22:45:58 +08:00
|
|
|
|
2001-11-20 02:23:43 +08:00
|
|
|
/* local function prototypes */
|
|
|
|
|
|
|
|
static void gimp_transform_tool_init (GimpTransformTool *tool);
|
|
|
|
static void gimp_transform_tool_class_init (GimpTransformToolClass *tool);
|
|
|
|
|
2003-08-31 00:41:35 +08:00
|
|
|
static GObject * gimp_transform_tool_constructor (GType type,
|
|
|
|
guint n_params,
|
|
|
|
GObjectConstructParam *params);
|
2004-01-22 00:07:48 +08:00
|
|
|
static void gimp_transform_tool_finalize (GObject *object);
|
2001-11-20 02:23:43 +08:00
|
|
|
|
2004-01-22 00:07:48 +08:00
|
|
|
static gboolean gimp_transform_tool_initialize (GimpTool *tool,
|
2003-06-10 22:31:53 +08:00
|
|
|
GimpDisplay *gdisp);
|
2004-01-22 00:07:48 +08:00
|
|
|
static void gimp_transform_tool_control (GimpTool *tool,
|
2002-02-19 01:00:09 +08:00
|
|
|
GimpToolAction action,
|
2001-11-20 02:23:43 +08:00
|
|
|
GimpDisplay *gdisp);
|
2004-01-22 00:07:48 +08:00
|
|
|
static void gimp_transform_tool_button_press (GimpTool *tool,
|
2001-11-20 02:23:43 +08:00
|
|
|
GimpCoords *coords,
|
|
|
|
guint32 time,
|
|
|
|
GdkModifierType state,
|
|
|
|
GimpDisplay *gdisp);
|
2004-01-22 00:07:48 +08:00
|
|
|
static void gimp_transform_tool_button_release (GimpTool *tool,
|
2001-11-20 02:23:43 +08:00
|
|
|
GimpCoords *coords,
|
|
|
|
guint32 time,
|
|
|
|
GdkModifierType state,
|
|
|
|
GimpDisplay *gdisp);
|
2004-01-22 00:07:48 +08:00
|
|
|
static void gimp_transform_tool_motion (GimpTool *tool,
|
2001-11-20 02:23:43 +08:00
|
|
|
GimpCoords *coords,
|
|
|
|
guint32 time,
|
|
|
|
GdkModifierType state,
|
|
|
|
GimpDisplay *gdisp);
|
2004-06-24 18:16:08 +08:00
|
|
|
static gboolean gimp_transform_tool_key_press (GimpTool *tool,
|
2004-06-13 04:10:40 +08:00
|
|
|
GdkEventKey *kevent,
|
|
|
|
GimpDisplay *gdisp);
|
2004-01-22 00:07:48 +08:00
|
|
|
static void gimp_transform_tool_modifier_key (GimpTool *tool,
|
2001-11-30 00:44:51 +08:00
|
|
|
GdkModifierType key,
|
|
|
|
gboolean press,
|
|
|
|
GdkModifierType state,
|
|
|
|
GimpDisplay *gdisp);
|
2004-01-22 00:07:48 +08:00
|
|
|
static void gimp_transform_tool_oper_update (GimpTool *tool,
|
2001-11-22 22:28:39 +08:00
|
|
|
GimpCoords *coords,
|
|
|
|
GdkModifierType state,
|
|
|
|
GimpDisplay *gdisp);
|
2004-01-22 00:07:48 +08:00
|
|
|
static void gimp_transform_tool_cursor_update (GimpTool *tool,
|
2001-11-20 02:23:43 +08:00
|
|
|
GimpCoords *coords,
|
|
|
|
GdkModifierType state,
|
|
|
|
GimpDisplay *gdisp);
|
|
|
|
|
2004-01-22 00:07:48 +08:00
|
|
|
static void gimp_transform_tool_draw (GimpDrawTool *draw_tool);
|
2001-11-20 02:23:43 +08:00
|
|
|
|
2002-11-18 21:10:04 +08:00
|
|
|
static TileManager *
|
2004-01-22 00:07:48 +08:00
|
|
|
gimp_transform_tool_real_transform (GimpTransformTool *tr_tool,
|
2003-05-31 07:52:24 +08:00
|
|
|
GimpItem *item,
|
2002-11-18 21:10:04 +08:00
|
|
|
GimpDisplay *gdisp);
|
|
|
|
|
2004-01-22 00:07:48 +08:00
|
|
|
static void gimp_transform_tool_halt (GimpTransformTool *tr_tool);
|
|
|
|
static void gimp_transform_tool_bounds (GimpTransformTool *tr_tool,
|
2001-11-20 02:23:43 +08:00
|
|
|
GimpDisplay *gdisp);
|
2004-01-22 00:07:48 +08:00
|
|
|
static void gimp_transform_tool_dialog (GimpTransformTool *tr_tool);
|
|
|
|
static void gimp_transform_tool_prepare (GimpTransformTool *tr_tool,
|
2002-11-14 19:54:57 +08:00
|
|
|
GimpDisplay *gdisp);
|
2004-01-22 00:07:48 +08:00
|
|
|
static void gimp_transform_tool_recalc (GimpTransformTool *tr_tool,
|
2001-11-20 02:23:43 +08:00
|
|
|
GimpDisplay *gdisp);
|
2004-01-22 00:07:48 +08:00
|
|
|
static void gimp_transform_tool_doit (GimpTransformTool *tr_tool,
|
2001-11-20 02:23:43 +08:00
|
|
|
GimpDisplay *gdisp);
|
2004-01-22 00:07:48 +08:00
|
|
|
static void gimp_transform_tool_grid_recalc (GimpTransformTool *tr_tool);
|
2001-11-20 02:23:43 +08:00
|
|
|
|
2004-07-03 05:56:30 +08:00
|
|
|
static void gimp_transform_tool_force_expose_preview (GimpTransformTool *tr_tool);
|
|
|
|
|
2004-01-22 00:07:48 +08:00
|
|
|
static void gimp_transform_tool_response (GtkWidget *widget,
|
2003-11-06 23:27:05 +08:00
|
|
|
gint response_id,
|
2002-11-14 19:54:57 +08:00
|
|
|
GimpTransformTool *tr_tool);
|
2001-03-31 22:10:22 +08:00
|
|
|
|
2004-06-13 09:37:29 +08:00
|
|
|
static void gimp_transform_tool_notify_type (GimpTransformOptions *options,
|
|
|
|
GParamSpec *pspec,
|
|
|
|
GimpTransformTool *tr_tool);
|
|
|
|
static void gimp_transform_tool_notify_preview (GimpTransformOptions *options,
|
|
|
|
GParamSpec *pspec,
|
|
|
|
GimpTransformTool *tr_tool);
|
2001-03-31 22:10:22 +08:00
|
|
|
|
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
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-25 05:27:11 +08:00
|
|
|
static GimpDrawToolClass *parent_class = NULL;
|
2001-03-31 22:10:22 +08:00
|
|
|
|
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
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-25 05:27:11 +08:00
|
|
|
|
|
|
|
GType
|
2001-03-01 14:56:57 +08:00
|
|
|
gimp_transform_tool_get_type (void)
|
|
|
|
{
|
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
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-25 05:27:11 +08:00
|
|
|
static GType tool_type = 0;
|
2001-03-01 14:56:57 +08:00
|
|
|
|
|
|
|
if (! tool_type)
|
|
|
|
{
|
2001-08-14 22:53:55 +08:00
|
|
|
static const GTypeInfo tool_info =
|
2001-03-01 14:56:57 +08:00
|
|
|
{
|
|
|
|
sizeof (GimpTransformToolClass),
|
2004-06-14 17:06:28 +08:00
|
|
|
(GBaseInitFunc) NULL,
|
|
|
|
(GBaseFinalizeFunc) NULL,
|
|
|
|
(GClassInitFunc) gimp_transform_tool_class_init,
|
|
|
|
NULL, /* class_finalize */
|
|
|
|
NULL, /* class_data */
|
|
|
|
sizeof (GimpTransformTool),
|
|
|
|
0, /* n_preallocs */
|
|
|
|
(GInstanceInitFunc) gimp_transform_tool_init,
|
2001-03-01 14:56:57 +08:00
|
|
|
};
|
|
|
|
|
2001-08-14 22:53:55 +08:00
|
|
|
tool_type = g_type_register_static (GIMP_TYPE_DRAW_TOOL,
|
2004-06-14 17:06:28 +08:00
|
|
|
"GimpTransformTool",
|
2001-08-14 22:53:55 +08:00
|
|
|
&tool_info, 0);
|
2001-03-01 14:56:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return tool_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_transform_tool_class_init (GimpTransformToolClass *klass)
|
|
|
|
{
|
2004-06-24 18:16:08 +08:00
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
GimpToolClass *tool_class = GIMP_TOOL_CLASS (klass);
|
|
|
|
GimpDrawToolClass *draw_class = GIMP_DRAW_TOOL_CLASS (klass);
|
2001-03-01 14:56:57 +08:00
|
|
|
|
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
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-25 05:27:11 +08:00
|
|
|
parent_class = g_type_class_peek_parent (klass);
|
2001-03-01 14:56:57 +08:00
|
|
|
|
2003-08-31 00:41:35 +08:00
|
|
|
object_class->constructor = gimp_transform_tool_constructor;
|
2001-08-14 22:53:55 +08:00
|
|
|
object_class->finalize = gimp_transform_tool_finalize;
|
2001-03-01 14:56:57 +08:00
|
|
|
|
2003-06-10 22:31:53 +08:00
|
|
|
tool_class->initialize = gimp_transform_tool_initialize;
|
2001-11-09 03:14:51 +08:00
|
|
|
tool_class->control = gimp_transform_tool_control;
|
2001-03-01 14:56:57 +08:00
|
|
|
tool_class->button_press = gimp_transform_tool_button_press;
|
|
|
|
tool_class->button_release = gimp_transform_tool_button_release;
|
|
|
|
tool_class->motion = gimp_transform_tool_motion;
|
2004-06-13 04:10:40 +08:00
|
|
|
tool_class->key_press = gimp_transform_tool_key_press;
|
2001-11-30 00:44:51 +08:00
|
|
|
tool_class->modifier_key = gimp_transform_tool_modifier_key;
|
2001-11-22 22:28:39 +08:00
|
|
|
tool_class->oper_update = gimp_transform_tool_oper_update;
|
2001-03-01 14:56:57 +08:00
|
|
|
tool_class->cursor_update = gimp_transform_tool_cursor_update;
|
2001-03-09 15:09:12 +08:00
|
|
|
|
|
|
|
draw_class->draw = gimp_transform_tool_draw;
|
2002-11-14 19:54:57 +08:00
|
|
|
|
|
|
|
klass->dialog = NULL;
|
|
|
|
klass->prepare = NULL;
|
|
|
|
klass->motion = NULL;
|
|
|
|
klass->recalc = NULL;
|
2002-11-18 21:10:04 +08:00
|
|
|
klass->transform = gimp_transform_tool_real_transform;
|
2001-03-01 14:56:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2002-11-14 19:54:57 +08:00
|
|
|
gimp_transform_tool_init (GimpTransformTool *tr_tool)
|
2001-03-01 14:56:57 +08:00
|
|
|
{
|
2001-11-20 02:23:43 +08:00
|
|
|
GimpTool *tool;
|
2001-03-31 22:10:22 +08:00
|
|
|
gint i;
|
2001-03-09 15:09:12 +08:00
|
|
|
|
2002-11-14 19:54:57 +08:00
|
|
|
tool = GIMP_TOOL (tr_tool);
|
2001-11-20 02:23:43 +08:00
|
|
|
|
2002-06-17 01:13:39 +08:00
|
|
|
gimp_tool_control_set_scroll_lock (tool->control, TRUE);
|
|
|
|
gimp_tool_control_set_preserve (tool->control, FALSE);
|
2004-07-29 22:16:21 +08:00
|
|
|
gimp_tool_control_set_dirty_mask (tool->control,
|
|
|
|
GIMP_DIRTY_IMAGE_SIZE |
|
|
|
|
GIMP_DIRTY_DRAWABLE |
|
|
|
|
GIMP_DIRTY_SELECTION);
|
2002-06-17 01:13:39 +08:00
|
|
|
|
2002-11-14 19:54:57 +08:00
|
|
|
tr_tool->function = TRANSFORM_CREATING;
|
|
|
|
tr_tool->original = NULL;
|
2001-03-09 15:09:12 +08:00
|
|
|
|
|
|
|
for (i = 0; i < TRAN_INFO_SIZE; i++)
|
2001-11-22 21:01:26 +08:00
|
|
|
{
|
2002-11-14 19:54:57 +08:00
|
|
|
tr_tool->trans_info[i] = 0.0;
|
|
|
|
tr_tool->old_trans_info[i] = 0.0;
|
2001-11-22 21:01:26 +08:00
|
|
|
}
|
2001-03-09 15:09:12 +08:00
|
|
|
|
2003-07-07 21:50:48 +08:00
|
|
|
gimp_matrix3_identity (&tr_tool->transform);
|
2001-03-31 22:10:22 +08:00
|
|
|
|
2003-02-10 18:08:01 +08:00
|
|
|
tr_tool->use_grid = TRUE;
|
|
|
|
tr_tool->use_center = TRUE;
|
|
|
|
tr_tool->ngx = 0;
|
|
|
|
tr_tool->ngy = 0;
|
|
|
|
tr_tool->grid_coords = NULL;
|
|
|
|
tr_tool->tgrid_coords = NULL;
|
|
|
|
|
2003-05-31 07:52:24 +08:00
|
|
|
tr_tool->type = GIMP_TRANSFORM_TYPE_LAYER;
|
2003-07-16 22:08:24 +08:00
|
|
|
tr_tool->direction = GIMP_TRANSFORM_FORWARD;
|
2001-11-22 21:01:26 +08:00
|
|
|
|
2003-02-10 18:08:01 +08:00
|
|
|
tr_tool->shell_desc = NULL;
|
|
|
|
tr_tool->progress_text = _("Transforming...");
|
|
|
|
tr_tool->info_dialog = NULL;
|
2001-03-01 14:56:57 +08:00
|
|
|
}
|
|
|
|
|
2003-08-31 00:41:35 +08:00
|
|
|
static GObject *
|
|
|
|
gimp_transform_tool_constructor (GType type,
|
|
|
|
guint n_params,
|
|
|
|
GObjectConstructParam *params)
|
|
|
|
{
|
|
|
|
GObject *object;
|
|
|
|
GimpTool *tool;
|
|
|
|
GimpTransformTool *tr_tool;
|
|
|
|
|
|
|
|
object = G_OBJECT_CLASS (parent_class)->constructor (type, n_params, params);
|
|
|
|
|
|
|
|
tool = GIMP_TOOL (object);
|
|
|
|
tr_tool = GIMP_TRANSFORM_TOOL (object);
|
|
|
|
|
|
|
|
g_assert (GIMP_IS_TOOL_INFO (tool->tool_info));
|
|
|
|
|
|
|
|
if (tr_tool->use_grid)
|
|
|
|
{
|
|
|
|
tr_tool->type =
|
|
|
|
GIMP_TRANSFORM_OPTIONS (tool->tool_info->tool_options)->type;
|
|
|
|
tr_tool->direction =
|
|
|
|
GIMP_TRANSFORM_OPTIONS (tool->tool_info->tool_options)->direction;
|
|
|
|
|
|
|
|
g_signal_connect_object (tool->tool_info->tool_options,
|
|
|
|
"notify::type",
|
|
|
|
G_CALLBACK (gimp_transform_tool_notify_type),
|
|
|
|
tr_tool, 0);
|
2004-06-14 21:21:29 +08:00
|
|
|
g_signal_connect_object (tool->tool_info->tool_options,
|
|
|
|
"notify::type",
|
|
|
|
G_CALLBACK (gimp_transform_tool_notify_preview),
|
|
|
|
tr_tool, 0);
|
2003-08-31 00:41:35 +08:00
|
|
|
g_signal_connect_object (tool->tool_info->tool_options,
|
|
|
|
"notify::direction",
|
|
|
|
G_CALLBACK (gimp_transform_tool_notify_type),
|
|
|
|
tr_tool, 0);
|
2004-06-14 21:21:29 +08:00
|
|
|
g_signal_connect_object (tool->tool_info->tool_options,
|
|
|
|
"notify::direction",
|
|
|
|
G_CALLBACK (gimp_transform_tool_notify_preview),
|
|
|
|
tr_tool, 0);
|
2003-08-31 00:41:35 +08:00
|
|
|
g_signal_connect_object (tool->tool_info->tool_options,
|
2004-07-03 05:56:30 +08:00
|
|
|
"notify::preview-type",
|
|
|
|
G_CALLBACK (gimp_transform_tool_notify_preview),
|
2003-08-31 00:41:35 +08:00
|
|
|
tr_tool, 0);
|
|
|
|
g_signal_connect_object (tool->tool_info->tool_options,
|
2004-07-03 05:56:30 +08:00
|
|
|
"notify::grid-type",
|
|
|
|
G_CALLBACK (gimp_transform_tool_notify_preview),
|
2003-08-31 00:41:35 +08:00
|
|
|
tr_tool, 0);
|
2004-06-13 09:37:29 +08:00
|
|
|
g_signal_connect_object (tool->tool_info->tool_options,
|
2004-07-03 05:56:30 +08:00
|
|
|
"notify::grid-size",
|
2004-06-13 09:37:29 +08:00
|
|
|
G_CALLBACK (gimp_transform_tool_notify_preview),
|
|
|
|
tr_tool, 0);
|
2003-08-31 00:41:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return object;
|
|
|
|
}
|
|
|
|
|
2001-03-31 22:10:22 +08:00
|
|
|
static void
|
2001-08-14 22:53:55 +08:00
|
|
|
gimp_transform_tool_finalize (GObject *object)
|
2001-03-01 14:56:57 +08:00
|
|
|
{
|
2004-01-22 00:07:48 +08:00
|
|
|
GimpTransformTool *tr_tool = GIMP_TRANSFORM_TOOL (object);
|
2001-03-31 22:10:22 +08:00
|
|
|
|
|
|
|
if (tr_tool->original)
|
2001-08-14 22:53:55 +08:00
|
|
|
{
|
2003-05-27 01:02:06 +08:00
|
|
|
tile_manager_unref (tr_tool->original);
|
2001-08-14 22:53:55 +08:00
|
|
|
tr_tool->original = NULL;
|
|
|
|
}
|
2001-03-31 22:10:22 +08:00
|
|
|
|
2001-11-22 21:01:26 +08:00
|
|
|
if (tr_tool->info_dialog)
|
2001-08-14 22:53:55 +08:00
|
|
|
{
|
2001-11-22 21:01:26 +08:00
|
|
|
info_dialog_free (tr_tool->info_dialog);
|
|
|
|
tr_tool->info_dialog = NULL;
|
2001-08-14 22:53:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (tr_tool->grid_coords)
|
|
|
|
{
|
|
|
|
g_free (tr_tool->grid_coords);
|
|
|
|
tr_tool->grid_coords = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tr_tool->tgrid_coords)
|
|
|
|
{
|
|
|
|
g_free (tr_tool->tgrid_coords);
|
|
|
|
tr_tool->tgrid_coords = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
2004-01-22 00:07:48 +08:00
|
|
|
static gboolean
|
2003-06-10 22:31:53 +08:00
|
|
|
gimp_transform_tool_initialize (GimpTool *tool,
|
2004-06-14 17:06:28 +08:00
|
|
|
GimpDisplay *gdisp)
|
2003-06-10 22:31:53 +08:00
|
|
|
{
|
|
|
|
GimpTransformTool *tr_tool = GIMP_TRANSFORM_TOOL (tool);
|
|
|
|
|
|
|
|
if (gdisp != tool->gdisp)
|
|
|
|
{
|
|
|
|
GimpDrawable *drawable = gimp_image_active_drawable (gdisp->gimage);
|
2003-07-16 22:08:24 +08:00
|
|
|
gint i;
|
2003-06-10 22:31:53 +08:00
|
|
|
|
|
|
|
if (GIMP_IS_LAYER (drawable) &&
|
|
|
|
gimp_layer_get_mask (GIMP_LAYER (drawable)))
|
|
|
|
{
|
2003-11-14 23:33:40 +08:00
|
|
|
g_message (_("Transformations do not work on "
|
2003-06-10 22:31:53 +08:00
|
|
|
"layers that contain layer masks."));
|
2004-01-22 00:07:48 +08:00
|
|
|
return FALSE;
|
2003-06-10 22:31:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Set the pointer to the active display */
|
|
|
|
tool->gdisp = gdisp;
|
|
|
|
tool->drawable = drawable;
|
|
|
|
|
|
|
|
/* Initialize the transform tool dialog */
|
|
|
|
if (! tr_tool->info_dialog)
|
|
|
|
gimp_transform_tool_dialog (tr_tool);
|
|
|
|
|
|
|
|
/* Find the transform bounds for some tools (like scale,
|
|
|
|
* perspective) that actually need the bounds for
|
|
|
|
* initializing
|
|
|
|
*/
|
|
|
|
gimp_transform_tool_bounds (tr_tool, gdisp);
|
|
|
|
|
|
|
|
gimp_transform_tool_prepare (tr_tool, gdisp);
|
|
|
|
|
|
|
|
/* Recalculate the transform tool */
|
|
|
|
gimp_transform_tool_recalc (tr_tool, gdisp);
|
|
|
|
|
|
|
|
/* start drawing the bounding box and handles... */
|
|
|
|
gimp_draw_tool_start (GIMP_DRAW_TOOL (tool), gdisp);
|
|
|
|
|
|
|
|
tr_tool->function = TRANSFORM_CREATING;
|
|
|
|
|
|
|
|
/* Save the current transformation info */
|
|
|
|
for (i = 0; i < TRAN_INFO_SIZE; i++)
|
2004-06-14 17:06:28 +08:00
|
|
|
tr_tool->old_trans_info[i] = tr_tool->trans_info[i];
|
2003-06-10 22:31:53 +08:00
|
|
|
}
|
2004-01-22 00:07:48 +08:00
|
|
|
|
|
|
|
return TRUE;
|
2003-06-10 22:31:53 +08:00
|
|
|
}
|
|
|
|
|
2001-08-14 22:53:55 +08:00
|
|
|
static void
|
2002-02-19 01:00:09 +08:00
|
|
|
gimp_transform_tool_control (GimpTool *tool,
|
2004-06-14 17:06:28 +08:00
|
|
|
GimpToolAction action,
|
|
|
|
GimpDisplay *gdisp)
|
2001-08-14 22:53:55 +08:00
|
|
|
{
|
2004-01-22 00:07:48 +08:00
|
|
|
GimpTransformTool *tr_tool = GIMP_TRANSFORM_TOOL (tool);
|
2001-03-31 22:10:22 +08:00
|
|
|
|
2001-08-14 22:53:55 +08:00
|
|
|
switch (action)
|
|
|
|
{
|
|
|
|
case PAUSE:
|
|
|
|
break;
|
2001-03-31 22:10:22 +08:00
|
|
|
|
2001-08-14 22:53:55 +08:00
|
|
|
case RESUME:
|
2002-11-14 19:54:57 +08:00
|
|
|
gimp_transform_tool_recalc (tr_tool, gdisp);
|
2001-08-14 22:53:55 +08:00
|
|
|
break;
|
2001-03-31 22:10:22 +08:00
|
|
|
|
2001-08-14 22:53:55 +08:00
|
|
|
case HALT:
|
2003-07-16 22:08:24 +08:00
|
|
|
gimp_transform_tool_halt (tr_tool);
|
2001-11-22 21:01:26 +08:00
|
|
|
return; /* don't upchain */
|
2001-08-14 22:53:55 +08:00
|
|
|
break;
|
2001-03-31 22:10:22 +08:00
|
|
|
|
2001-08-14 22:53:55 +08:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2001-11-20 02:23:43 +08:00
|
|
|
GIMP_TOOL_CLASS (parent_class)->control (tool, action, gdisp);
|
2001-03-31 22:10:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-11-09 03:14:51 +08:00
|
|
|
gimp_transform_tool_button_press (GimpTool *tool,
|
|
|
|
GimpCoords *coords,
|
|
|
|
guint32 time,
|
|
|
|
GdkModifierType state,
|
2004-06-14 17:06:28 +08:00
|
|
|
GimpDisplay *gdisp)
|
2001-03-01 14:56:57 +08:00
|
|
|
{
|
2004-01-22 00:07:48 +08:00
|
|
|
GimpTransformTool *tr_tool = GIMP_TRANSFORM_TOOL (tool);
|
2001-03-01 14:56:57 +08:00
|
|
|
|
2003-07-16 22:08:24 +08:00
|
|
|
if (tr_tool->function == TRANSFORM_CREATING && tr_tool->use_grid)
|
|
|
|
gimp_transform_tool_oper_update (tool, coords, state, gdisp);
|
2003-02-10 18:08:01 +08:00
|
|
|
|
2003-07-16 22:08:24 +08:00
|
|
|
tr_tool->lastx = tr_tool->startx = coords->x;
|
|
|
|
tr_tool->lasty = tr_tool->starty = coords->y;
|
2001-03-01 14:56:57 +08:00
|
|
|
|
2003-07-16 22:08:24 +08:00
|
|
|
gimp_tool_control_activate (tool->control);
|
2001-03-01 14:56:57 +08:00
|
|
|
}
|
|
|
|
|
2001-03-31 22:10:22 +08:00
|
|
|
static void
|
2001-11-09 03:14:51 +08:00
|
|
|
gimp_transform_tool_button_release (GimpTool *tool,
|
|
|
|
GimpCoords *coords,
|
|
|
|
guint32 time,
|
2004-06-14 17:06:28 +08:00
|
|
|
GdkModifierType state,
|
|
|
|
GimpDisplay *gdisp)
|
2001-03-01 14:56:57 +08:00
|
|
|
{
|
2004-01-22 00:07:48 +08:00
|
|
|
GimpTransformTool *tr_tool = GIMP_TRANSFORM_TOOL (tool);
|
2001-03-10 15:07:31 +08:00
|
|
|
gint i;
|
2001-03-01 14:56:57 +08:00
|
|
|
|
|
|
|
/* if we are creating, there is nothing to be done...exit */
|
2002-11-18 07:56:13 +08:00
|
|
|
if (tr_tool->function == TRANSFORM_CREATING && tr_tool->use_grid)
|
2001-03-01 14:56:57 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
/* if the 3rd button isn't pressed, transform the selected mask */
|
2001-11-09 03:14:51 +08:00
|
|
|
if (! (state & GDK_BUTTON3_MASK))
|
2001-03-01 14:56:57 +08:00
|
|
|
{
|
|
|
|
/* Shift-clicking is another way to approve the transform */
|
2001-11-22 21:01:26 +08:00
|
|
|
if ((state & GDK_SHIFT_MASK) || ! tr_tool->use_grid)
|
2004-06-14 17:06:28 +08:00
|
|
|
{
|
|
|
|
gimp_transform_tool_doit (tr_tool, gdisp);
|
|
|
|
}
|
2001-03-01 14:56:57 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-03-31 22:10:22 +08:00
|
|
|
gimp_draw_tool_pause (GIMP_DRAW_TOOL (tool));
|
2001-03-01 14:56:57 +08:00
|
|
|
|
2004-07-14 00:36:29 +08:00
|
|
|
/* get rid of preview artifacts left outside the drawable's area */
|
|
|
|
gimp_transform_tool_expose_preview (tr_tool);
|
|
|
|
|
2001-03-01 14:56:57 +08:00
|
|
|
/* Restore the previous transformation info */
|
|
|
|
for (i = 0; i < TRAN_INFO_SIZE; i++)
|
2004-06-14 17:06:28 +08:00
|
|
|
tr_tool->trans_info[i] = tr_tool->old_trans_info[i];
|
2001-03-01 14:56:57 +08:00
|
|
|
|
|
|
|
/* recalculate the tool's transformation matrix */
|
2001-11-20 02:23:43 +08:00
|
|
|
gimp_transform_tool_recalc (tr_tool, gdisp);
|
2001-03-01 14:56:57 +08:00
|
|
|
|
2001-03-31 22:10:22 +08:00
|
|
|
gimp_draw_tool_resume (GIMP_DRAW_TOOL (tool));
|
2001-03-01 14:56:57 +08:00
|
|
|
}
|
2003-07-16 22:08:24 +08:00
|
|
|
|
|
|
|
gimp_tool_control_halt (tool->control);
|
2001-03-01 14:56:57 +08:00
|
|
|
}
|
|
|
|
|
2001-03-31 22:10:22 +08:00
|
|
|
static void
|
2001-11-09 03:14:51 +08:00
|
|
|
gimp_transform_tool_motion (GimpTool *tool,
|
|
|
|
GimpCoords *coords,
|
|
|
|
guint32 time,
|
2004-06-14 17:06:28 +08:00
|
|
|
GdkModifierType state,
|
|
|
|
GimpDisplay *gdisp)
|
2001-03-01 14:56:57 +08:00
|
|
|
{
|
2004-01-22 00:07:48 +08:00
|
|
|
GimpTransformTool *tr_tool = GIMP_TRANSFORM_TOOL (tool);
|
2002-11-14 19:54:57 +08:00
|
|
|
GimpTransformToolClass *tr_tool_class;
|
2001-03-01 14:56:57 +08:00
|
|
|
|
2001-11-22 21:01:26 +08:00
|
|
|
/* if we are creating, there is nothing to be done so exit. */
|
2002-11-18 07:56:13 +08:00
|
|
|
if (tr_tool->function == TRANSFORM_CREATING || ! tr_tool->use_grid)
|
2001-03-01 14:56:57 +08:00
|
|
|
return;
|
|
|
|
|
2001-03-31 22:10:22 +08:00
|
|
|
gimp_draw_tool_pause (GIMP_DRAW_TOOL (tool));
|
2001-03-01 14:56:57 +08:00
|
|
|
|
2002-11-14 19:54:57 +08:00
|
|
|
tr_tool->curx = coords->x;
|
|
|
|
tr_tool->cury = coords->y;
|
|
|
|
tr_tool->state = state;
|
2001-03-01 14:56:57 +08:00
|
|
|
|
|
|
|
/* recalculate the tool's transformation matrix */
|
2002-11-14 19:54:57 +08:00
|
|
|
tr_tool_class = GIMP_TRANSFORM_TOOL_GET_CLASS (tr_tool);
|
|
|
|
|
|
|
|
if (tr_tool_class->motion)
|
|
|
|
{
|
|
|
|
tr_tool_class->motion (tr_tool, gdisp);
|
2001-03-01 14:56:57 +08:00
|
|
|
|
2004-06-14 18:48:00 +08:00
|
|
|
gimp_transform_tool_expose_preview (tr_tool);
|
|
|
|
|
2002-11-14 19:54:57 +08:00
|
|
|
if (tr_tool_class->recalc)
|
|
|
|
tr_tool_class->recalc (tr_tool, gdisp);
|
|
|
|
}
|
|
|
|
|
|
|
|
tr_tool->lastx = tr_tool->curx;
|
|
|
|
tr_tool->lasty = tr_tool->cury;
|
2001-03-01 14:56:57 +08:00
|
|
|
|
2001-03-31 22:10:22 +08:00
|
|
|
gimp_draw_tool_resume (GIMP_DRAW_TOOL (tool));
|
2001-03-01 14:56:57 +08:00
|
|
|
}
|
|
|
|
|
2004-06-13 04:10:40 +08:00
|
|
|
#define RESPONSE_RESET 1
|
|
|
|
|
2004-06-24 18:16:08 +08:00
|
|
|
static gboolean
|
2004-06-13 04:10:40 +08:00
|
|
|
gimp_transform_tool_key_press (GimpTool *tool,
|
|
|
|
GdkEventKey *kevent,
|
|
|
|
GimpDisplay *gdisp)
|
|
|
|
{
|
|
|
|
GimpTransformTool *trans_tool = GIMP_TRANSFORM_TOOL (tool);
|
|
|
|
GimpDrawTool *draw_tool = GIMP_DRAW_TOOL (tool);
|
|
|
|
|
|
|
|
if (gdisp == draw_tool->gdisp)
|
|
|
|
{
|
|
|
|
switch (kevent->keyval)
|
|
|
|
{
|
2004-06-14 23:13:37 +08:00
|
|
|
case GDK_KP_Enter:
|
|
|
|
case GDK_Return:
|
|
|
|
gimp_transform_tool_response (NULL, GTK_RESPONSE_OK, trans_tool);
|
2004-06-24 18:16:08 +08:00
|
|
|
return TRUE;
|
2004-06-14 23:13:37 +08:00
|
|
|
|
|
|
|
case GDK_Delete:
|
|
|
|
case GDK_BackSpace:
|
|
|
|
gimp_transform_tool_response (NULL, RESPONSE_RESET, trans_tool);
|
2004-06-24 18:16:08 +08:00
|
|
|
return TRUE;
|
2004-06-13 04:10:40 +08:00
|
|
|
}
|
|
|
|
}
|
2004-06-24 18:16:08 +08:00
|
|
|
|
|
|
|
return FALSE;
|
2004-06-13 04:10:40 +08:00
|
|
|
}
|
|
|
|
|
2001-11-30 00:44:51 +08:00
|
|
|
static void
|
|
|
|
gimp_transform_tool_modifier_key (GimpTool *tool,
|
|
|
|
GdkModifierType key,
|
|
|
|
gboolean press,
|
|
|
|
GdkModifierType state,
|
|
|
|
GimpDisplay *gdisp)
|
|
|
|
{
|
2003-02-05 22:39:40 +08:00
|
|
|
GimpTransformOptions *options;
|
2001-11-30 00:44:51 +08:00
|
|
|
|
2003-02-05 22:39:40 +08:00
|
|
|
options = GIMP_TRANSFORM_OPTIONS (tool->tool_info->tool_options);
|
2001-11-30 00:44:51 +08:00
|
|
|
|
2003-02-08 01:12:21 +08:00
|
|
|
if (key == GDK_CONTROL_MASK)
|
2001-11-30 00:44:51 +08:00
|
|
|
{
|
2003-02-28 09:14:30 +08:00
|
|
|
g_object_set (options,
|
2003-02-08 01:12:21 +08:00
|
|
|
"constrain-1", ! options->constrain_1,
|
|
|
|
NULL);
|
2001-11-30 00:44:51 +08:00
|
|
|
}
|
2003-02-08 01:12:21 +08:00
|
|
|
else if (key == GDK_MOD1_MASK)
|
2001-11-30 00:44:51 +08:00
|
|
|
{
|
2003-02-28 09:14:30 +08:00
|
|
|
g_object_set (options,
|
2003-02-08 01:12:21 +08:00
|
|
|
"constrain-2", ! options->constrain_2,
|
|
|
|
NULL);
|
2001-11-30 00:44:51 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-11-22 22:28:39 +08:00
|
|
|
static void
|
|
|
|
gimp_transform_tool_oper_update (GimpTool *tool,
|
|
|
|
GimpCoords *coords,
|
|
|
|
GdkModifierType state,
|
|
|
|
GimpDisplay *gdisp)
|
|
|
|
{
|
2004-01-22 00:07:48 +08:00
|
|
|
GimpTransformTool *tr_tool = GIMP_TRANSFORM_TOOL (tool);
|
|
|
|
GimpDrawTool *draw_tool = GIMP_DRAW_TOOL (tool);
|
2001-11-22 22:28:39 +08:00
|
|
|
|
2002-11-18 07:56:13 +08:00
|
|
|
if (! tr_tool->use_grid)
|
|
|
|
return;
|
|
|
|
|
2001-11-22 22:28:39 +08:00
|
|
|
if (gdisp == tool->gdisp)
|
|
|
|
{
|
|
|
|
gdouble closest_dist;
|
|
|
|
gdouble dist;
|
|
|
|
|
|
|
|
closest_dist = gimp_draw_tool_calc_distance (draw_tool, gdisp,
|
|
|
|
coords->x, coords->y,
|
|
|
|
tr_tool->tx1, tr_tool->ty1);
|
|
|
|
tr_tool->function = TRANSFORM_HANDLE_1;
|
|
|
|
|
|
|
|
dist = gimp_draw_tool_calc_distance (draw_tool, gdisp,
|
|
|
|
coords->x, coords->y,
|
|
|
|
tr_tool->tx2, tr_tool->ty2);
|
|
|
|
if (dist < closest_dist)
|
2004-06-14 17:06:28 +08:00
|
|
|
{
|
|
|
|
closest_dist = dist;
|
|
|
|
tr_tool->function = TRANSFORM_HANDLE_2;
|
|
|
|
}
|
2001-11-22 22:28:39 +08:00
|
|
|
|
|
|
|
dist = gimp_draw_tool_calc_distance (draw_tool, gdisp,
|
|
|
|
coords->x, coords->y,
|
|
|
|
tr_tool->tx3, tr_tool->ty3);
|
|
|
|
if (dist < closest_dist)
|
2004-06-14 17:06:28 +08:00
|
|
|
{
|
|
|
|
closest_dist = dist;
|
|
|
|
tr_tool->function = TRANSFORM_HANDLE_3;
|
|
|
|
}
|
2001-11-22 22:28:39 +08:00
|
|
|
|
|
|
|
dist = gimp_draw_tool_calc_distance (draw_tool, gdisp,
|
|
|
|
coords->x, coords->y,
|
|
|
|
tr_tool->tx4, tr_tool->ty4);
|
|
|
|
if (dist < closest_dist)
|
2004-06-14 17:06:28 +08:00
|
|
|
{
|
|
|
|
closest_dist = dist;
|
|
|
|
tr_tool->function = TRANSFORM_HANDLE_4;
|
|
|
|
}
|
2001-11-22 22:28:39 +08:00
|
|
|
|
|
|
|
if (gimp_draw_tool_on_handle (draw_tool, gdisp,
|
|
|
|
coords->x, coords->y,
|
|
|
|
GIMP_HANDLE_CIRCLE,
|
|
|
|
tr_tool->tcx, tr_tool->tcy,
|
2002-11-18 21:10:04 +08:00
|
|
|
HANDLE_SIZE, HANDLE_SIZE,
|
2001-11-22 22:28:39 +08:00
|
|
|
GTK_ANCHOR_CENTER,
|
|
|
|
FALSE))
|
2004-06-14 17:06:28 +08:00
|
|
|
{
|
|
|
|
tr_tool->function = TRANSFORM_HANDLE_CENTER;
|
|
|
|
}
|
2001-11-22 22:28:39 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-03-31 22:10:22 +08:00
|
|
|
static void
|
2001-11-09 03:14:51 +08:00
|
|
|
gimp_transform_tool_cursor_update (GimpTool *tool,
|
|
|
|
GimpCoords *coords,
|
2004-06-14 17:06:28 +08:00
|
|
|
GdkModifierType state,
|
|
|
|
GimpDisplay *gdisp)
|
2001-03-01 14:56:57 +08:00
|
|
|
{
|
2004-01-22 00:07:48 +08:00
|
|
|
GimpTransformTool *tr_tool = GIMP_TRANSFORM_TOOL (tool);
|
2003-07-16 22:08:24 +08:00
|
|
|
GimpTransformOptions *options;
|
2001-11-22 22:28:39 +08:00
|
|
|
|
2003-07-16 22:08:24 +08:00
|
|
|
options = GIMP_TRANSFORM_OPTIONS (tool->tool_info->tool_options);
|
2001-03-01 14:56:57 +08:00
|
|
|
|
2002-06-17 01:13:39 +08:00
|
|
|
if (tr_tool->use_grid)
|
2001-03-01 14:56:57 +08:00
|
|
|
{
|
2003-09-03 23:13:19 +08:00
|
|
|
GimpChannel *selection = gimp_image_get_mask (gdisp->gimage);
|
2004-06-14 18:19:39 +08:00
|
|
|
GimpCursorType cursor = GDK_TOP_LEFT_ARROW;
|
|
|
|
GimpCursorModifier modifier = GIMP_CURSOR_MODIFIER_NONE;
|
2001-11-09 03:14:51 +08:00
|
|
|
|
2003-07-16 22:08:24 +08:00
|
|
|
switch (options->type)
|
2002-06-17 01:13:39 +08:00
|
|
|
{
|
2003-07-16 22:08:24 +08:00
|
|
|
case GIMP_TRANSFORM_TYPE_LAYER:
|
|
|
|
{
|
2004-01-22 00:07:48 +08:00
|
|
|
GimpDrawable *drawable = gimp_image_active_drawable (gdisp->gimage);
|
2003-07-16 22:08:24 +08:00
|
|
|
|
|
|
|
if (drawable)
|
|
|
|
{
|
|
|
|
if (GIMP_IS_LAYER (drawable) &&
|
|
|
|
gimp_layer_get_mask (GIMP_LAYER (drawable)))
|
|
|
|
{
|
2004-06-14 18:19:39 +08:00
|
|
|
cursor = GIMP_CURSOR_BAD;
|
2003-07-16 22:08:24 +08:00
|
|
|
}
|
2004-07-14 00:36:29 +08:00
|
|
|
else if (gimp_image_coords_in_active_drawable (gdisp->gimage,
|
|
|
|
coords))
|
2003-07-16 22:08:24 +08:00
|
|
|
{
|
2003-09-03 23:13:19 +08:00
|
|
|
if (gimp_channel_is_empty (selection) ||
|
|
|
|
gimp_channel_value (selection, coords->x, coords->y))
|
2003-07-16 22:08:24 +08:00
|
|
|
{
|
2004-06-14 18:19:39 +08:00
|
|
|
cursor = GIMP_CURSOR_MOUSE;
|
2003-07-16 22:08:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GIMP_TRANSFORM_TYPE_SELECTION:
|
2003-09-03 23:13:19 +08:00
|
|
|
if (gimp_channel_is_empty (selection) ||
|
|
|
|
gimp_channel_value (selection, coords->x, coords->y))
|
2002-06-17 01:13:39 +08:00
|
|
|
{
|
2004-06-14 18:19:39 +08:00
|
|
|
cursor = GIMP_CURSOR_MOUSE;
|
2002-06-17 01:13:39 +08:00
|
|
|
}
|
2003-07-16 22:08:24 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case GIMP_TRANSFORM_TYPE_PATH:
|
|
|
|
if (gimp_image_get_active_vectors (gdisp->gimage))
|
2004-06-14 18:19:39 +08:00
|
|
|
cursor = GIMP_CURSOR_MOUSE;
|
2003-07-16 22:08:24 +08:00
|
|
|
else
|
2004-06-14 18:19:39 +08:00
|
|
|
cursor = GIMP_CURSOR_BAD;
|
2003-07-16 22:08:24 +08:00
|
|
|
break;
|
2002-06-17 01:13:39 +08:00
|
|
|
}
|
2001-11-22 22:28:39 +08:00
|
|
|
|
2002-06-17 01:13:39 +08:00
|
|
|
if (tr_tool->use_center && tr_tool->function == TRANSFORM_HANDLE_CENTER)
|
|
|
|
{
|
2004-06-14 18:19:39 +08:00
|
|
|
modifier = GIMP_CURSOR_MODIFIER_MOVE;
|
2002-06-17 01:13:39 +08:00
|
|
|
}
|
|
|
|
|
2004-06-14 18:19:39 +08:00
|
|
|
gimp_tool_control_set_cursor (tool->control, cursor);
|
|
|
|
gimp_tool_control_set_cursor_modifier (tool->control, modifier);
|
2002-06-17 01:13:39 +08:00
|
|
|
}
|
2002-02-05 01:43:01 +08:00
|
|
|
|
|
|
|
GIMP_TOOL_CLASS (parent_class)->cursor_update (tool, coords, state, gdisp);
|
2001-03-01 14:56:57 +08:00
|
|
|
}
|
|
|
|
|
2001-03-31 22:10:22 +08:00
|
|
|
static void
|
2001-11-12 22:45:58 +08:00
|
|
|
gimp_transform_tool_draw (GimpDrawTool *draw_tool)
|
2001-03-01 14:56:57 +08:00
|
|
|
{
|
2004-01-22 00:07:48 +08:00
|
|
|
GimpTool *tool = GIMP_TOOL (draw_tool);
|
|
|
|
GimpTransformTool *tr_tool = GIMP_TRANSFORM_TOOL (draw_tool);
|
2003-02-05 22:39:40 +08:00
|
|
|
GimpTransformOptions *options;
|
2004-01-22 00:07:48 +08:00
|
|
|
gdouble z1, z2, z3, z4;
|
2001-03-01 14:56:57 +08:00
|
|
|
|
2001-11-22 21:01:26 +08:00
|
|
|
if (! tr_tool->use_grid)
|
|
|
|
return;
|
|
|
|
|
2003-06-10 22:31:53 +08:00
|
|
|
options = GIMP_TRANSFORM_OPTIONS (tool->tool_info->tool_options);
|
2003-02-14 22:14:29 +08:00
|
|
|
|
2001-03-01 14:56:57 +08:00
|
|
|
/* draw the bounding box */
|
2001-11-12 22:45:58 +08:00
|
|
|
gimp_draw_tool_draw_line (draw_tool,
|
|
|
|
tr_tool->tx1, tr_tool->ty1,
|
|
|
|
tr_tool->tx2, tr_tool->ty2,
|
|
|
|
FALSE);
|
|
|
|
gimp_draw_tool_draw_line (draw_tool,
|
|
|
|
tr_tool->tx2, tr_tool->ty2,
|
|
|
|
tr_tool->tx4, tr_tool->ty4,
|
|
|
|
FALSE);
|
|
|
|
gimp_draw_tool_draw_line (draw_tool,
|
|
|
|
tr_tool->tx3, tr_tool->ty3,
|
|
|
|
tr_tool->tx4, tr_tool->ty4,
|
|
|
|
FALSE);
|
|
|
|
gimp_draw_tool_draw_line (draw_tool,
|
|
|
|
tr_tool->tx3, tr_tool->ty3,
|
|
|
|
tr_tool->tx1, tr_tool->ty1,
|
|
|
|
FALSE);
|
2001-03-01 14:56:57 +08:00
|
|
|
|
2003-08-28 21:02:50 +08:00
|
|
|
/* We test if the transformed polygon is convex.
|
|
|
|
* if z1 and z2 have the same sign as well as z3 and z4
|
2004-03-10 20:45:11 +08:00
|
|
|
* the polygon is convex.
|
|
|
|
*/
|
2004-03-31 22:21:36 +08:00
|
|
|
z1 = ((tr_tool->tx2 - tr_tool->tx1) * (tr_tool->ty4 - tr_tool->ty1) -
|
|
|
|
(tr_tool->tx4 - tr_tool->tx1) * (tr_tool->ty2 - tr_tool->ty1));
|
|
|
|
z2 = ((tr_tool->tx4 - tr_tool->tx1) * (tr_tool->ty3 - tr_tool->ty1) -
|
|
|
|
(tr_tool->tx3 - tr_tool->tx1) * (tr_tool->ty4 - tr_tool->ty1));
|
|
|
|
z3 = ((tr_tool->tx4 - tr_tool->tx2) * (tr_tool->ty3 - tr_tool->ty2) -
|
|
|
|
(tr_tool->tx3 - tr_tool->tx2) * (tr_tool->ty4 - tr_tool->ty2));
|
|
|
|
z4 = ((tr_tool->tx3 - tr_tool->tx2) * (tr_tool->ty1 - tr_tool->ty2) -
|
|
|
|
(tr_tool->tx1 - tr_tool->tx2) * (tr_tool->ty3 - tr_tool->ty2));
|
2003-08-28 21:02:50 +08:00
|
|
|
|
2003-07-16 22:08:24 +08:00
|
|
|
/* Draw the grid (not for path transform since it looks ugly) */
|
2001-03-01 14:56:57 +08:00
|
|
|
|
2003-07-16 22:08:24 +08:00
|
|
|
if (tr_tool->type != GIMP_TRANSFORM_TYPE_PATH &&
|
|
|
|
tr_tool->grid_coords &&
|
|
|
|
tr_tool->tgrid_coords &&
|
2003-08-28 21:02:50 +08:00
|
|
|
z1 * z2 > 0 &&
|
|
|
|
z3 * z4 > 0)
|
2001-03-01 14:56:57 +08:00
|
|
|
{
|
2003-07-16 21:53:08 +08:00
|
|
|
gint gci, i, k;
|
|
|
|
|
2001-03-09 15:09:12 +08:00
|
|
|
k = tr_tool->ngx + tr_tool->ngy;
|
2001-03-31 22:10:22 +08:00
|
|
|
|
2003-07-16 21:53:08 +08:00
|
|
|
for (i = 0, gci = 0; i < k; i++, gci += 4)
|
2004-06-13 09:37:29 +08:00
|
|
|
{
|
2001-11-12 22:45:58 +08:00
|
|
|
gimp_draw_tool_draw_line (draw_tool,
|
|
|
|
tr_tool->tgrid_coords[gci],
|
|
|
|
tr_tool->tgrid_coords[gci + 1],
|
|
|
|
tr_tool->tgrid_coords[gci + 2],
|
|
|
|
tr_tool->tgrid_coords[gci + 3],
|
|
|
|
FALSE);
|
2004-06-13 09:37:29 +08:00
|
|
|
}
|
2001-03-01 14:56:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* draw the tool handles */
|
2001-11-16 05:17:36 +08:00
|
|
|
gimp_draw_tool_draw_handle (draw_tool,
|
|
|
|
GIMP_HANDLE_SQUARE,
|
|
|
|
tr_tool->tx1, tr_tool->ty1,
|
2002-11-18 21:10:04 +08:00
|
|
|
HANDLE_SIZE, HANDLE_SIZE,
|
2001-11-16 05:17:36 +08:00
|
|
|
GTK_ANCHOR_CENTER,
|
|
|
|
FALSE);
|
|
|
|
gimp_draw_tool_draw_handle (draw_tool,
|
|
|
|
GIMP_HANDLE_SQUARE,
|
|
|
|
tr_tool->tx2, tr_tool->ty2,
|
2002-11-18 21:10:04 +08:00
|
|
|
HANDLE_SIZE, HANDLE_SIZE,
|
2001-11-16 05:17:36 +08:00
|
|
|
GTK_ANCHOR_CENTER,
|
|
|
|
FALSE);
|
|
|
|
gimp_draw_tool_draw_handle (draw_tool,
|
|
|
|
GIMP_HANDLE_SQUARE,
|
|
|
|
tr_tool->tx3, tr_tool->ty3,
|
2002-11-18 21:10:04 +08:00
|
|
|
HANDLE_SIZE, HANDLE_SIZE,
|
2001-11-16 05:17:36 +08:00
|
|
|
GTK_ANCHOR_CENTER,
|
|
|
|
FALSE);
|
|
|
|
gimp_draw_tool_draw_handle (draw_tool,
|
|
|
|
GIMP_HANDLE_SQUARE,
|
|
|
|
tr_tool->tx4, tr_tool->ty4,
|
2002-11-18 21:10:04 +08:00
|
|
|
HANDLE_SIZE, HANDLE_SIZE,
|
2001-11-16 05:17:36 +08:00
|
|
|
GTK_ANCHOR_CENTER,
|
|
|
|
FALSE);
|
2001-03-01 14:56:57 +08:00
|
|
|
|
|
|
|
/* draw the center */
|
2001-11-22 22:28:39 +08:00
|
|
|
if (tr_tool->use_center)
|
|
|
|
{
|
|
|
|
gimp_draw_tool_draw_handle (draw_tool,
|
|
|
|
GIMP_HANDLE_FILLED_CIRCLE,
|
|
|
|
tr_tool->tcx, tr_tool->tcy,
|
2002-11-18 21:10:04 +08:00
|
|
|
HANDLE_SIZE, HANDLE_SIZE,
|
2001-11-22 22:28:39 +08:00
|
|
|
GTK_ANCHOR_CENTER,
|
|
|
|
FALSE);
|
|
|
|
}
|
2001-03-01 14:56:57 +08:00
|
|
|
|
2003-05-31 07:52:24 +08:00
|
|
|
if (tr_tool->type == GIMP_TRANSFORM_TYPE_PATH)
|
2001-03-01 14:56:57 +08:00
|
|
|
{
|
2003-07-16 22:08:24 +08:00
|
|
|
GimpVectors *vectors;
|
|
|
|
GimpStroke *stroke = NULL;
|
|
|
|
GimpMatrix3 matrix = tr_tool->transform;
|
2003-07-16 21:53:08 +08:00
|
|
|
|
2003-07-16 22:08:24 +08:00
|
|
|
vectors = gimp_image_get_active_vectors (tool->gdisp->gimage);
|
|
|
|
|
|
|
|
if (vectors)
|
2003-07-07 21:50:48 +08:00
|
|
|
{
|
2003-07-16 22:08:24 +08:00
|
|
|
if (tr_tool->direction == GIMP_TRANSFORM_BACKWARD)
|
|
|
|
gimp_matrix3_invert (&matrix);
|
|
|
|
|
|
|
|
while ((stroke = gimp_vectors_stroke_get_next (vectors, stroke)))
|
|
|
|
{
|
|
|
|
GArray *coords;
|
|
|
|
gboolean closed;
|
|
|
|
|
|
|
|
coords = gimp_stroke_interpolate (stroke, 1.0, &closed);
|
|
|
|
|
2003-09-12 18:04:37 +08:00
|
|
|
if (coords && coords->len)
|
2003-07-16 22:08:24 +08:00
|
|
|
{
|
2003-09-12 18:04:37 +08:00
|
|
|
gint i;
|
|
|
|
|
2003-08-22 21:00:25 +08:00
|
|
|
for (i = 0; i < coords->len; i++)
|
|
|
|
{
|
|
|
|
GimpCoords *curr = &g_array_index (coords, GimpCoords, i);
|
|
|
|
|
|
|
|
gimp_matrix3_transform_point (&matrix,
|
|
|
|
curr->x, curr->y,
|
|
|
|
&curr->x, &curr->y);
|
|
|
|
}
|
|
|
|
|
2003-09-12 18:04:37 +08:00
|
|
|
gimp_draw_tool_draw_strokes (draw_tool,
|
|
|
|
&g_array_index (coords,
|
|
|
|
GimpCoords, 0),
|
|
|
|
coords->len, FALSE, FALSE);
|
2003-07-16 22:08:24 +08:00
|
|
|
}
|
2003-09-12 18:04:37 +08:00
|
|
|
|
|
|
|
if (coords)
|
|
|
|
g_array_free (coords, TRUE);
|
2003-07-16 22:08:24 +08:00
|
|
|
}
|
2003-07-07 21:50:48 +08:00
|
|
|
}
|
2001-03-01 14:56:57 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-11-18 21:10:04 +08:00
|
|
|
static TileManager *
|
|
|
|
gimp_transform_tool_real_transform (GimpTransformTool *tr_tool,
|
2003-05-31 07:52:24 +08:00
|
|
|
GimpItem *active_item,
|
2002-11-18 21:10:04 +08:00
|
|
|
GimpDisplay *gdisp)
|
|
|
|
{
|
2004-01-22 00:07:48 +08:00
|
|
|
GimpTool *tool = GIMP_TOOL (tr_tool);
|
2003-02-05 22:39:40 +08:00
|
|
|
GimpTransformOptions *options;
|
2004-04-15 07:37:34 +08:00
|
|
|
GimpContext *context;
|
2003-02-05 22:39:40 +08:00
|
|
|
GimpProgress *progress;
|
2004-01-22 00:07:48 +08:00
|
|
|
TileManager *ret = NULL;
|
2002-11-18 21:10:04 +08:00
|
|
|
|
2003-02-05 22:39:40 +08:00
|
|
|
options = GIMP_TRANSFORM_OPTIONS (tool->tool_info->tool_options);
|
2004-04-15 07:37:34 +08:00
|
|
|
context = GIMP_CONTEXT (options);
|
2002-11-18 21:10:04 +08:00
|
|
|
|
|
|
|
if (tr_tool->info_dialog)
|
|
|
|
gtk_widget_set_sensitive (GTK_WIDGET (tr_tool->info_dialog->shell), FALSE);
|
|
|
|
|
|
|
|
progress = gimp_progress_start (gdisp, tr_tool->progress_text, FALSE,
|
|
|
|
NULL, NULL);
|
|
|
|
|
2003-05-12 23:56:36 +08:00
|
|
|
if (gimp_item_get_linked (active_item))
|
2004-04-15 07:37:34 +08:00
|
|
|
gimp_item_linked_transform (active_item, context,
|
2004-03-10 20:45:11 +08:00
|
|
|
&tr_tool->transform,
|
2003-05-12 23:56:36 +08:00
|
|
|
options->direction,
|
2004-03-10 20:45:11 +08:00
|
|
|
options->interpolation,
|
2004-03-14 01:45:58 +08:00
|
|
|
options->supersample,
|
|
|
|
options->recursion_level,
|
2004-03-10 20:45:11 +08:00
|
|
|
options->clip,
|
2003-05-12 23:56:36 +08:00
|
|
|
progress ?
|
|
|
|
gimp_progress_update_and_flush : NULL,
|
|
|
|
progress);
|
2003-02-04 07:54:19 +08:00
|
|
|
|
2003-05-31 07:52:24 +08:00
|
|
|
switch (options->type)
|
|
|
|
{
|
|
|
|
case GIMP_TRANSFORM_TYPE_LAYER:
|
|
|
|
case GIMP_TRANSFORM_TYPE_SELECTION:
|
|
|
|
{
|
|
|
|
gboolean clip_result = options->clip;
|
|
|
|
|
|
|
|
/* always clip the selction and unfloated channels
|
|
|
|
* so they keep their size
|
|
|
|
*/
|
|
|
|
if (GIMP_IS_CHANNEL (active_item) &&
|
|
|
|
tile_manager_bpp (tr_tool->original) == 1)
|
|
|
|
clip_result = TRUE;
|
|
|
|
|
|
|
|
ret =
|
|
|
|
gimp_drawable_transform_tiles_affine (GIMP_DRAWABLE (active_item),
|
2004-04-15 07:37:34 +08:00
|
|
|
context,
|
2003-05-31 07:52:24 +08:00
|
|
|
tr_tool->original,
|
2003-07-07 21:50:48 +08:00
|
|
|
&tr_tool->transform,
|
2003-05-31 07:52:24 +08:00
|
|
|
options->direction,
|
|
|
|
options->interpolation,
|
2004-03-13 19:24:25 +08:00
|
|
|
options->supersample,
|
2004-03-14 01:45:58 +08:00
|
|
|
options->recursion_level,
|
2003-05-31 07:52:24 +08:00
|
|
|
clip_result,
|
|
|
|
progress ?
|
2003-07-16 22:08:24 +08:00
|
|
|
gimp_progress_update_and_flush :
|
2003-05-31 07:52:24 +08:00
|
|
|
NULL,
|
|
|
|
progress);
|
|
|
|
}
|
|
|
|
break;
|
2003-05-13 21:57:11 +08:00
|
|
|
|
2003-05-31 07:52:24 +08:00
|
|
|
case GIMP_TRANSFORM_TYPE_PATH:
|
2004-04-15 07:37:34 +08:00
|
|
|
gimp_item_transform (active_item, context,
|
2003-07-16 22:08:24 +08:00
|
|
|
&tr_tool->transform,
|
|
|
|
options->direction,
|
|
|
|
options->interpolation,
|
2004-03-14 01:45:58 +08:00
|
|
|
options->supersample,
|
|
|
|
options->recursion_level,
|
2003-07-16 22:08:24 +08:00
|
|
|
options->clip,
|
|
|
|
progress ?
|
|
|
|
gimp_progress_update_and_flush :
|
|
|
|
NULL,
|
|
|
|
progress);
|
2003-05-31 07:52:24 +08:00
|
|
|
break;
|
|
|
|
}
|
2002-11-18 21:10:04 +08:00
|
|
|
|
|
|
|
if (progress)
|
|
|
|
gimp_progress_end (progress);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2001-11-20 02:23:43 +08:00
|
|
|
static void
|
|
|
|
gimp_transform_tool_doit (GimpTransformTool *tr_tool,
|
2004-06-14 17:06:28 +08:00
|
|
|
GimpDisplay *gdisp)
|
2001-11-20 02:23:43 +08:00
|
|
|
{
|
2004-01-22 00:07:48 +08:00
|
|
|
GimpTool *tool = GIMP_TOOL (tr_tool);
|
2003-05-31 07:52:24 +08:00
|
|
|
GimpTransformOptions *options;
|
2004-04-15 07:37:34 +08:00
|
|
|
GimpContext *context;
|
2003-06-10 22:31:53 +08:00
|
|
|
GimpItem *active_item = NULL;
|
2003-05-31 07:52:24 +08:00
|
|
|
TileManager *new_tiles;
|
|
|
|
gboolean new_layer;
|
2001-11-20 02:23:43 +08:00
|
|
|
|
2003-05-31 07:52:24 +08:00
|
|
|
options = GIMP_TRANSFORM_OPTIONS (tool->tool_info->tool_options);
|
2004-04-15 07:37:34 +08:00
|
|
|
context = GIMP_CONTEXT (options);
|
2001-11-20 02:23:43 +08:00
|
|
|
|
2003-07-16 22:08:24 +08:00
|
|
|
switch (options->type)
|
|
|
|
{
|
|
|
|
case GIMP_TRANSFORM_TYPE_LAYER:
|
|
|
|
active_item = (GimpItem *) gimp_image_active_drawable (gdisp->gimage);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GIMP_TRANSFORM_TYPE_SELECTION:
|
|
|
|
active_item = (GimpItem *) gimp_image_get_mask (gdisp->gimage);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GIMP_TRANSFORM_TYPE_PATH:
|
|
|
|
active_item = (GimpItem *) gimp_image_get_active_vectors (gdisp->gimage);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (! active_item)
|
|
|
|
return;
|
|
|
|
|
2004-06-14 19:45:45 +08:00
|
|
|
if (gimp_display_shell_get_show_transform (GIMP_DISPLAY_SHELL (gdisp->shell)))
|
2004-06-14 17:06:28 +08:00
|
|
|
{
|
2004-06-14 19:45:45 +08:00
|
|
|
gimp_display_shell_set_show_transform (GIMP_DISPLAY_SHELL (gdisp->shell),
|
|
|
|
FALSE);
|
2004-06-14 18:48:00 +08:00
|
|
|
|
2004-06-14 19:45:45 +08:00
|
|
|
/* get rid of preview artifacts left outside the drawable's area */
|
|
|
|
gimp_transform_tool_expose_preview (tr_tool);
|
2004-06-14 17:06:28 +08:00
|
|
|
}
|
2004-06-14 18:48:00 +08:00
|
|
|
|
2003-07-16 22:08:24 +08:00
|
|
|
gimp_set_busy (gdisp->gimage->gimp);
|
|
|
|
|
2001-11-20 02:23:43 +08:00
|
|
|
/* undraw the tool before we muck around with the transform matrix */
|
2003-07-16 22:08:24 +08:00
|
|
|
gimp_draw_tool_stop (GIMP_DRAW_TOOL (tr_tool));
|
2001-11-20 02:23:43 +08:00
|
|
|
|
2003-07-16 22:08:24 +08:00
|
|
|
/* We're going to dirty this image, but we want to keep the tool around */
|
2002-05-03 19:31:08 +08:00
|
|
|
gimp_tool_control_set_preserve (tool->control, TRUE);
|
2001-11-20 02:23:43 +08:00
|
|
|
|
|
|
|
/* Start a transform undo group */
|
2003-02-13 19:23:50 +08:00
|
|
|
gimp_image_undo_group_start (gdisp->gimage, GIMP_UNDO_GROUP_TRANSFORM,
|
2003-02-14 22:14:29 +08:00
|
|
|
tool->tool_info->blurb);
|
2001-11-20 02:23:43 +08:00
|
|
|
|
|
|
|
/* With the old UI, if original is NULL, then this is the
|
|
|
|
* first transformation. In the new UI, it is always so, right?
|
|
|
|
*/
|
|
|
|
g_assert (tr_tool->original == NULL);
|
|
|
|
|
|
|
|
/* Copy the current selection to the transform tool's private
|
|
|
|
* selection pointer, so that the original source can be repeatedly
|
|
|
|
* modified.
|
|
|
|
*/
|
|
|
|
tool->drawable = gimp_image_active_drawable (gdisp->gimage);
|
|
|
|
|
2003-05-31 07:52:24 +08:00
|
|
|
switch (options->type)
|
|
|
|
{
|
|
|
|
case GIMP_TRANSFORM_TYPE_LAYER:
|
|
|
|
tr_tool->original = gimp_drawable_transform_cut (tool->drawable,
|
2004-04-15 07:37:34 +08:00
|
|
|
context,
|
2003-05-31 07:52:24 +08:00
|
|
|
&new_layer);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GIMP_TRANSFORM_TYPE_SELECTION:
|
2003-07-16 22:08:24 +08:00
|
|
|
tr_tool->original = tile_manager_ref (GIMP_DRAWABLE (active_item)->tiles);
|
2003-05-31 07:52:24 +08:00
|
|
|
tile_manager_set_offsets (tr_tool->original, 0, 0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GIMP_TRANSFORM_TYPE_PATH:
|
|
|
|
tr_tool->original = NULL;
|
|
|
|
break;
|
|
|
|
}
|
2001-11-20 02:23:43 +08:00
|
|
|
|
|
|
|
/* Send the request for the transformation to the tool...
|
|
|
|
*/
|
2002-11-18 21:10:04 +08:00
|
|
|
new_tiles = GIMP_TRANSFORM_TOOL_GET_CLASS (tr_tool)->transform (tr_tool,
|
2003-05-31 07:52:24 +08:00
|
|
|
active_item,
|
2002-11-18 21:10:04 +08:00
|
|
|
gdisp);
|
2001-11-20 02:23:43 +08:00
|
|
|
|
2002-11-14 19:54:57 +08:00
|
|
|
gimp_transform_tool_prepare (tr_tool, gdisp);
|
2001-11-20 02:23:43 +08:00
|
|
|
gimp_transform_tool_recalc (tr_tool, gdisp);
|
|
|
|
|
2003-05-31 07:52:24 +08:00
|
|
|
switch (options->type)
|
2001-11-20 02:23:43 +08:00
|
|
|
{
|
2003-05-31 07:52:24 +08:00
|
|
|
case GIMP_TRANSFORM_TYPE_LAYER:
|
|
|
|
if (new_tiles)
|
|
|
|
{
|
|
|
|
/* paste the new transformed image to the gimage...also implement
|
|
|
|
* undo...
|
|
|
|
*/
|
|
|
|
/* FIXME: we should check if the drawable is still valid */
|
|
|
|
gimp_drawable_transform_paste (tool->drawable,
|
|
|
|
new_tiles,
|
|
|
|
new_layer);
|
|
|
|
tile_manager_unref (new_tiles);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GIMP_TRANSFORM_TYPE_SELECTION:
|
|
|
|
if (new_tiles)
|
|
|
|
{
|
2004-03-13 21:56:09 +08:00
|
|
|
GimpDrawable *drawable = GIMP_DRAWABLE (active_item);
|
|
|
|
|
2003-09-04 19:44:57 +08:00
|
|
|
gimp_channel_push_undo (gimp_image_get_mask (gdisp->gimage), NULL);
|
2001-11-20 02:23:43 +08:00
|
|
|
|
2004-03-16 03:34:35 +08:00
|
|
|
gimp_drawable_set_tiles (drawable, FALSE, NULL, new_tiles);
|
2004-03-13 21:56:09 +08:00
|
|
|
tile_manager_unref (new_tiles);
|
2003-05-31 07:52:24 +08:00
|
|
|
}
|
2003-07-16 22:08:24 +08:00
|
|
|
|
|
|
|
tile_manager_unref (tr_tool->original);
|
|
|
|
tr_tool->original = NULL;
|
2003-05-31 07:52:24 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case GIMP_TRANSFORM_TYPE_PATH:
|
2003-07-16 22:08:24 +08:00
|
|
|
/* Nothing to be done */
|
2003-05-31 07:52:24 +08:00
|
|
|
break;
|
2001-11-20 02:23:43 +08:00
|
|
|
}
|
|
|
|
|
2003-05-31 07:52:24 +08:00
|
|
|
/* Make a note of the new current drawable (since we may have
|
|
|
|
* a floating selection, etc now.
|
|
|
|
*/
|
|
|
|
tool->drawable = gimp_image_active_drawable (gdisp->gimage);
|
|
|
|
|
|
|
|
gimp_transform_tool_push_undo (gdisp->gimage, NULL,
|
|
|
|
tool->ID,
|
|
|
|
G_TYPE_FROM_INSTANCE (tool),
|
|
|
|
tr_tool->old_trans_info,
|
|
|
|
NULL);
|
|
|
|
|
2001-11-20 02:23:43 +08:00
|
|
|
/* push the undo group end */
|
2003-02-13 19:23:50 +08:00
|
|
|
gimp_image_undo_group_end (gdisp->gimage);
|
2001-11-20 02:23:43 +08:00
|
|
|
|
|
|
|
/* We're done dirtying the image, and would like to be restarted
|
|
|
|
* if the image gets dirty while the tool exists
|
|
|
|
*/
|
2002-05-03 19:31:08 +08:00
|
|
|
gimp_tool_control_set_preserve (tool->control, FALSE);
|
2001-11-20 02:23:43 +08:00
|
|
|
|
|
|
|
gimp_unset_busy (gdisp->gimage->gimp);
|
|
|
|
|
2002-05-09 01:48:24 +08:00
|
|
|
gimp_image_flush (gdisp->gimage);
|
2001-11-20 02:23:43 +08:00
|
|
|
|
2003-07-16 22:08:24 +08:00
|
|
|
gimp_transform_tool_halt (tr_tool);
|
2001-11-20 02:23:43 +08:00
|
|
|
}
|
|
|
|
|
2001-03-01 14:56:57 +08:00
|
|
|
void
|
2001-03-09 15:09:12 +08:00
|
|
|
gimp_transform_tool_transform_bounding_box (GimpTransformTool *tr_tool)
|
2001-03-01 14:56:57 +08:00
|
|
|
{
|
2001-11-22 22:28:39 +08:00
|
|
|
g_return_if_fail (GIMP_IS_TRANSFORM_TOOL (tr_tool));
|
2001-03-09 15:09:12 +08:00
|
|
|
|
2003-07-07 21:50:48 +08:00
|
|
|
gimp_matrix3_transform_point (&tr_tool->transform,
|
2004-06-14 17:06:28 +08:00
|
|
|
tr_tool->x1, tr_tool->y1,
|
|
|
|
&tr_tool->tx1, &tr_tool->ty1);
|
2003-07-07 21:50:48 +08:00
|
|
|
gimp_matrix3_transform_point (&tr_tool->transform,
|
2004-06-14 17:06:28 +08:00
|
|
|
tr_tool->x2, tr_tool->y1,
|
|
|
|
&tr_tool->tx2, &tr_tool->ty2);
|
2003-07-07 21:50:48 +08:00
|
|
|
gimp_matrix3_transform_point (&tr_tool->transform,
|
2004-06-14 17:06:28 +08:00
|
|
|
tr_tool->x1, tr_tool->y2,
|
|
|
|
&tr_tool->tx3, &tr_tool->ty3);
|
2003-07-07 21:50:48 +08:00
|
|
|
gimp_matrix3_transform_point (&tr_tool->transform,
|
2004-06-14 17:06:28 +08:00
|
|
|
tr_tool->x2, tr_tool->y2,
|
|
|
|
&tr_tool->tx4, &tr_tool->ty4);
|
2001-03-01 14:56:57 +08:00
|
|
|
|
2003-07-07 21:50:48 +08:00
|
|
|
gimp_matrix3_transform_point (&tr_tool->transform,
|
2004-06-14 17:06:28 +08:00
|
|
|
tr_tool->cx, tr_tool->cy,
|
|
|
|
&tr_tool->tcx, &tr_tool->tcy);
|
2001-03-01 14:56:57 +08:00
|
|
|
|
2004-03-10 20:45:11 +08:00
|
|
|
if (tr_tool->grid_coords && tr_tool->tgrid_coords)
|
2001-03-01 14:56:57 +08:00
|
|
|
{
|
2001-11-22 22:28:39 +08:00
|
|
|
gint i, k;
|
|
|
|
gint gci;
|
|
|
|
|
2001-03-01 14:56:57 +08:00
|
|
|
gci = 0;
|
2001-11-22 22:28:39 +08:00
|
|
|
k = (tr_tool->ngx + tr_tool->ngy) * 2;
|
2001-03-31 22:10:22 +08:00
|
|
|
|
2001-03-01 14:56:57 +08:00
|
|
|
for (i = 0; i < k; i++)
|
2004-06-14 17:06:28 +08:00
|
|
|
{
|
|
|
|
gimp_matrix3_transform_point (&tr_tool->transform,
|
|
|
|
tr_tool->grid_coords[gci],
|
|
|
|
tr_tool->grid_coords[gci + 1],
|
|
|
|
&tr_tool->tgrid_coords[gci],
|
|
|
|
&tr_tool->tgrid_coords[gci + 1]);
|
|
|
|
gci += 2;
|
|
|
|
}
|
2001-03-01 14:56:57 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-06-13 09:37:29 +08:00
|
|
|
void
|
|
|
|
gimp_transform_tool_expose_preview (GimpTransformTool *tr_tool)
|
|
|
|
{
|
|
|
|
GimpTransformOptions *options;
|
2004-06-14 18:48:00 +08:00
|
|
|
|
2004-06-14 23:13:37 +08:00
|
|
|
options =
|
|
|
|
GIMP_TRANSFORM_OPTIONS (GIMP_TOOL (tr_tool)->tool_info->tool_options);
|
2004-06-14 18:48:00 +08:00
|
|
|
|
2004-07-03 05:56:30 +08:00
|
|
|
if ((options->preview_type == GIMP_TRANSFORM_PREVIEW_TYPE_IMAGE ||
|
|
|
|
options->preview_type == GIMP_TRANSFORM_PREVIEW_TYPE_IMAGE_GRID) &&
|
|
|
|
options->type == GIMP_TRANSFORM_TYPE_LAYER &&
|
|
|
|
options->direction == GIMP_TRANSFORM_FORWARD)
|
|
|
|
gimp_transform_tool_force_expose_preview (tr_tool);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_transform_tool_force_expose_preview (GimpTransformTool *tr_tool)
|
|
|
|
{
|
|
|
|
static gint last_x = 0;
|
|
|
|
static gint last_y = 0;
|
|
|
|
static gint last_w = 0;
|
|
|
|
static gint last_h = 0;
|
|
|
|
|
|
|
|
GimpDisplayShell *shell;
|
|
|
|
gdouble dx [4], dy [4];
|
|
|
|
gint area_x, area_y, area_w, area_h;
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
g_return_if_fail (GIMP_IS_TRANSFORM_TOOL (tr_tool));
|
|
|
|
|
|
|
|
if (! tr_tool->use_grid)
|
2004-06-13 09:37:29 +08:00
|
|
|
return;
|
2004-06-14 18:48:00 +08:00
|
|
|
|
2004-06-14 23:13:37 +08:00
|
|
|
g_return_if_fail (gimp_draw_tool_is_active (GIMP_DRAW_TOOL (tr_tool)));
|
2004-06-13 09:37:29 +08:00
|
|
|
|
|
|
|
shell = GIMP_DISPLAY_SHELL (GIMP_DRAW_TOOL (tr_tool)->gdisp->shell);
|
|
|
|
|
|
|
|
gimp_display_shell_transform_xy_f (shell, tr_tool->tx1, tr_tool->ty1,
|
|
|
|
dx + 0, dy + 0, FALSE);
|
|
|
|
gimp_display_shell_transform_xy_f (shell, tr_tool->tx2, tr_tool->ty2,
|
|
|
|
dx + 1, dy + 1, FALSE);
|
|
|
|
gimp_display_shell_transform_xy_f (shell, tr_tool->tx3, tr_tool->ty3,
|
|
|
|
dx + 2, dy + 2, FALSE);
|
|
|
|
gimp_display_shell_transform_xy_f (shell, tr_tool->tx4, tr_tool->ty4,
|
|
|
|
dx + 3, dy + 3, FALSE);
|
|
|
|
|
|
|
|
/* find bounding box around preview */
|
|
|
|
area_x = area_w = (gint) dx [0];
|
|
|
|
area_y = area_h = (gint) dy [0];
|
2004-06-14 18:48:00 +08:00
|
|
|
|
2004-06-13 09:37:29 +08:00
|
|
|
for (i = 1; i < 4; i++)
|
|
|
|
{
|
|
|
|
if (dx [i] < area_x)
|
|
|
|
area_x = (gint) dx [i];
|
|
|
|
else if (dx [i] > area_w)
|
|
|
|
area_w = (gint) dx [i];
|
2004-06-14 18:48:00 +08:00
|
|
|
|
2004-06-13 09:37:29 +08:00
|
|
|
if (dy [i] < area_y)
|
|
|
|
area_y = (gint) dy [i];
|
|
|
|
else if (dy [i] > area_h)
|
|
|
|
area_h = (gint) dy [i];
|
|
|
|
}
|
2004-06-14 18:48:00 +08:00
|
|
|
|
2004-06-13 09:37:29 +08:00
|
|
|
area_w -= area_x;
|
|
|
|
area_h -= area_y;
|
2004-06-14 18:48:00 +08:00
|
|
|
|
2004-06-13 09:37:29 +08:00
|
|
|
gimp_display_shell_expose_area (shell,
|
|
|
|
MIN (area_x, last_x),
|
|
|
|
MIN (area_y, last_y),
|
|
|
|
MAX (area_w, last_w) + ABS (last_x - area_x),
|
|
|
|
MAX (area_h, last_h) + ABS (last_y - area_y));
|
|
|
|
|
|
|
|
/* area of last preview must be re-exposed to avoid leaving artifacts */
|
|
|
|
last_x = area_x;
|
|
|
|
last_y = area_y;
|
|
|
|
last_w = area_w;
|
|
|
|
last_h = area_h;
|
|
|
|
}
|
|
|
|
|
2001-11-22 21:01:26 +08:00
|
|
|
static void
|
2003-07-16 22:08:24 +08:00
|
|
|
gimp_transform_tool_halt (GimpTransformTool *tr_tool)
|
2001-03-01 14:56:57 +08:00
|
|
|
{
|
2003-07-16 22:08:24 +08:00
|
|
|
GimpTool *tool = GIMP_TOOL (tr_tool);
|
2001-03-01 14:56:57 +08:00
|
|
|
|
2004-06-14 23:13:37 +08:00
|
|
|
if (gimp_draw_tool_is_active (GIMP_DRAW_TOOL (tr_tool)))
|
2004-06-13 09:37:29 +08:00
|
|
|
{
|
|
|
|
GimpDisplayShell *shell;
|
2004-06-14 18:48:00 +08:00
|
|
|
|
2004-06-13 09:37:29 +08:00
|
|
|
shell = GIMP_DISPLAY_SHELL (GIMP_DRAW_TOOL (tr_tool)->gdisp->shell);
|
|
|
|
|
|
|
|
if (gimp_display_shell_get_show_transform (shell))
|
|
|
|
{
|
|
|
|
gimp_display_shell_set_show_transform (shell, FALSE);
|
2004-06-14 18:48:00 +08:00
|
|
|
|
2004-06-13 09:37:29 +08:00
|
|
|
/* get rid of preview artifacts left outside the drawable's area */
|
|
|
|
gimp_transform_tool_expose_preview (tr_tool);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-03-09 15:09:12 +08:00
|
|
|
if (tr_tool->original)
|
2001-03-31 22:10:22 +08:00
|
|
|
{
|
2003-05-27 01:02:06 +08:00
|
|
|
tile_manager_unref (tr_tool->original);
|
2001-03-31 22:10:22 +08:00
|
|
|
tr_tool->original = NULL;
|
|
|
|
}
|
2001-03-01 14:56:57 +08:00
|
|
|
|
|
|
|
/* inactivate the tool */
|
2001-03-09 15:09:12 +08:00
|
|
|
tr_tool->function = TRANSFORM_CREATING;
|
2001-11-22 21:01:26 +08:00
|
|
|
|
2003-07-16 22:08:24 +08:00
|
|
|
if (gimp_draw_tool_is_active (GIMP_DRAW_TOOL (tr_tool)))
|
|
|
|
gimp_draw_tool_stop (GIMP_DRAW_TOOL (tr_tool));
|
2001-11-22 21:01:26 +08:00
|
|
|
|
|
|
|
if (tr_tool->info_dialog)
|
2004-01-21 19:16:57 +08:00
|
|
|
info_dialog_hide (tr_tool->info_dialog);
|
2001-03-01 14:56:57 +08:00
|
|
|
|
|
|
|
tool->gdisp = NULL;
|
|
|
|
tool->drawable = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-03-31 22:10:22 +08:00
|
|
|
gimp_transform_tool_bounds (GimpTransformTool *tr_tool,
|
2004-06-14 17:06:28 +08:00
|
|
|
GimpDisplay *gdisp)
|
2001-03-01 14:56:57 +08:00
|
|
|
{
|
2003-05-31 07:52:24 +08:00
|
|
|
GimpTransformOptions *options;
|
2001-03-01 14:56:57 +08:00
|
|
|
|
2003-05-31 07:52:24 +08:00
|
|
|
options =
|
|
|
|
GIMP_TRANSFORM_OPTIONS (GIMP_TOOL (tr_tool)->tool_info->tool_options);
|
2001-03-01 14:56:57 +08:00
|
|
|
|
|
|
|
/* find the boundaries */
|
2003-05-31 07:52:24 +08:00
|
|
|
if (tr_tool->original)
|
2001-03-01 14:56:57 +08:00
|
|
|
{
|
2003-05-31 07:52:24 +08:00
|
|
|
tile_manager_get_offsets (tr_tool->original, &tr_tool->x1, &tr_tool->y1);
|
2002-11-18 07:56:13 +08:00
|
|
|
|
2003-05-31 07:52:24 +08:00
|
|
|
tr_tool->x2 = tr_tool->x1 + tile_manager_width (tr_tool->original);
|
|
|
|
tr_tool->y2 = tr_tool->y1 + tile_manager_height (tr_tool->original);
|
2001-03-01 14:56:57 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-05-31 07:52:24 +08:00
|
|
|
switch (options->type)
|
|
|
|
{
|
|
|
|
case GIMP_TRANSFORM_TYPE_LAYER:
|
|
|
|
{
|
2004-01-22 00:07:48 +08:00
|
|
|
GimpDrawable *drawable = gimp_image_active_drawable (gdisp->gimage);
|
|
|
|
gint offset_x;
|
|
|
|
gint offset_y;
|
2002-02-20 00:35:13 +08:00
|
|
|
|
2003-05-31 07:52:24 +08:00
|
|
|
gimp_item_offsets (GIMP_ITEM (drawable), &offset_x, &offset_y);
|
2002-02-20 00:35:13 +08:00
|
|
|
|
2003-05-31 07:52:24 +08:00
|
|
|
gimp_drawable_mask_bounds (drawable,
|
|
|
|
&tr_tool->x1, &tr_tool->y1,
|
|
|
|
&tr_tool->x2, &tr_tool->y2);
|
|
|
|
tr_tool->x1 += offset_x;
|
|
|
|
tr_tool->y1 += offset_y;
|
|
|
|
tr_tool->x2 += offset_x;
|
|
|
|
tr_tool->y2 += offset_y;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GIMP_TRANSFORM_TYPE_SELECTION:
|
2004-06-18 18:47:07 +08:00
|
|
|
case GIMP_TRANSFORM_TYPE_PATH:
|
2003-09-04 01:17:18 +08:00
|
|
|
gimp_channel_bounds (gimp_image_get_mask (gdisp->gimage),
|
|
|
|
&tr_tool->x1, &tr_tool->y1,
|
|
|
|
&tr_tool->x2, &tr_tool->y2);
|
2003-05-31 07:52:24 +08:00
|
|
|
break;
|
|
|
|
}
|
2001-03-01 14:56:57 +08:00
|
|
|
}
|
2001-03-09 15:09:12 +08:00
|
|
|
|
2002-02-20 00:35:13 +08:00
|
|
|
tr_tool->cx = (gdouble) (tr_tool->x1 + tr_tool->x2) / 2.0;
|
|
|
|
tr_tool->cy = (gdouble) (tr_tool->y1 + tr_tool->y2) / 2.0;
|
2001-03-01 14:56:57 +08:00
|
|
|
|
2003-05-31 07:52:24 +08:00
|
|
|
/* changing the bounds invalidates any grid we may have */
|
2001-11-20 02:23:43 +08:00
|
|
|
if (tr_tool->use_grid)
|
2003-05-31 07:52:24 +08:00
|
|
|
gimp_transform_tool_grid_recalc (tr_tool);
|
2001-03-01 14:56:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-03-09 15:09:12 +08:00
|
|
|
gimp_transform_tool_grid_recalc (GimpTransformTool *tr_tool)
|
2001-03-01 14:56:57 +08:00
|
|
|
{
|
2003-02-05 22:39:40 +08:00
|
|
|
GimpTransformOptions *options;
|
2001-11-20 02:23:43 +08:00
|
|
|
|
2003-05-31 07:52:24 +08:00
|
|
|
options =
|
|
|
|
GIMP_TRANSFORM_OPTIONS (GIMP_TOOL (tr_tool)->tool_info->tool_options);
|
2001-11-20 02:23:43 +08:00
|
|
|
|
2001-03-09 15:09:12 +08:00
|
|
|
if (tr_tool->grid_coords != NULL)
|
2001-03-01 14:56:57 +08:00
|
|
|
{
|
2001-03-09 15:09:12 +08:00
|
|
|
g_free (tr_tool->grid_coords);
|
|
|
|
tr_tool->grid_coords = NULL;
|
2001-03-01 14:56:57 +08:00
|
|
|
}
|
2001-03-31 22:10:22 +08:00
|
|
|
|
2001-03-09 15:09:12 +08:00
|
|
|
if (tr_tool->tgrid_coords != NULL)
|
2001-03-01 14:56:57 +08:00
|
|
|
{
|
2001-03-09 15:09:12 +08:00
|
|
|
g_free (tr_tool->tgrid_coords);
|
|
|
|
tr_tool->tgrid_coords = NULL;
|
2001-03-01 14:56:57 +08:00
|
|
|
}
|
2001-03-31 22:10:22 +08:00
|
|
|
|
2004-07-03 05:56:30 +08:00
|
|
|
if (options->preview_type != GIMP_TRANSFORM_PREVIEW_TYPE_GRID &&
|
|
|
|
options->preview_type != GIMP_TRANSFORM_PREVIEW_TYPE_IMAGE_GRID)
|
|
|
|
return;
|
|
|
|
|
2002-12-17 23:46:47 +08:00
|
|
|
switch (options->grid_type)
|
2001-11-20 02:23:43 +08:00
|
|
|
{
|
2003-02-08 01:12:21 +08:00
|
|
|
case GIMP_TRANSFORM_GRID_TYPE_N_LINES:
|
|
|
|
case GIMP_TRANSFORM_GRID_TYPE_SPACING:
|
2002-12-17 23:46:47 +08:00
|
|
|
{
|
|
|
|
GimpTool *tool;
|
|
|
|
gint i, gci;
|
|
|
|
gdouble *coords;
|
|
|
|
gint width, height;
|
|
|
|
|
|
|
|
width = MAX (1, tr_tool->x2 - tr_tool->x1);
|
|
|
|
height = MAX (1, tr_tool->y2 - tr_tool->y1);
|
|
|
|
|
|
|
|
tool = GIMP_TOOL (tr_tool);
|
|
|
|
|
2003-02-08 01:12:21 +08:00
|
|
|
if (options->grid_type == GIMP_TRANSFORM_GRID_TYPE_N_LINES)
|
2002-12-17 23:46:47 +08:00
|
|
|
{
|
|
|
|
if (width <= height)
|
|
|
|
{
|
|
|
|
tr_tool->ngx = options->grid_size;
|
|
|
|
tr_tool->ngy = tr_tool->ngx * MAX (1, height / width);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tr_tool->ngy = options->grid_size;
|
|
|
|
tr_tool->ngx = tr_tool->ngy * MAX (1, width / height);
|
|
|
|
}
|
|
|
|
}
|
2003-02-08 01:12:21 +08:00
|
|
|
else /* GIMP_TRANSFORM_GRID_TYPE_SPACING */
|
2002-12-17 23:46:47 +08:00
|
|
|
{
|
|
|
|
gint grid_size = MAX (2, options->grid_size);
|
|
|
|
|
|
|
|
tr_tool->ngx = width / grid_size;
|
|
|
|
tr_tool->ngy = height / grid_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
tr_tool->grid_coords = coords =
|
|
|
|
g_new (gdouble, (tr_tool->ngx + tr_tool->ngy) * 4);
|
|
|
|
|
|
|
|
tr_tool->tgrid_coords =
|
|
|
|
g_new (gdouble, (tr_tool->ngx + tr_tool->ngy) * 4);
|
|
|
|
|
|
|
|
gci = 0;
|
|
|
|
|
|
|
|
for (i = 1; i <= tr_tool->ngx; i++)
|
|
|
|
{
|
|
|
|
coords[gci] = tr_tool->x1 + (((gdouble) i) / (tr_tool->ngx + 1) *
|
|
|
|
(tr_tool->x2 - tr_tool->x1));
|
|
|
|
coords[gci + 1] = tr_tool->y1;
|
|
|
|
coords[gci + 2] = coords[gci];
|
|
|
|
coords[gci + 3] = tr_tool->y2;
|
|
|
|
|
|
|
|
gci += 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 1; i <= tr_tool->ngy; i++)
|
|
|
|
{
|
|
|
|
coords[gci] = tr_tool->x1;
|
|
|
|
coords[gci + 1] = tr_tool->y1 + (((gdouble) i) / (tr_tool->ngy + 1) *
|
|
|
|
(tr_tool->y2 - tr_tool->y1));
|
|
|
|
coords[gci + 2] = tr_tool->x2;
|
|
|
|
coords[gci + 3] = coords[gci + 1];
|
|
|
|
|
|
|
|
gci += 4;
|
|
|
|
}
|
|
|
|
}
|
2002-02-20 00:35:13 +08:00
|
|
|
|
2002-12-17 23:46:47 +08:00
|
|
|
default:
|
|
|
|
break;
|
2001-03-01 14:56:57 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2002-11-14 19:54:57 +08:00
|
|
|
gimp_transform_tool_dialog (GimpTransformTool *tr_tool)
|
2001-03-01 14:56:57 +08:00
|
|
|
{
|
2004-03-15 06:16:12 +08:00
|
|
|
GimpTool *tool = GIMP_TOOL (tr_tool);
|
2003-10-21 05:27:34 +08:00
|
|
|
GimpToolInfo *tool_info;
|
|
|
|
const gchar *stock_id;
|
|
|
|
gchar *identifier;
|
2002-11-14 19:54:57 +08:00
|
|
|
|
2003-10-21 05:27:34 +08:00
|
|
|
if (! GIMP_TRANSFORM_TOOL_GET_CLASS (tr_tool)->dialog)
|
|
|
|
return;
|
2001-03-01 14:56:57 +08:00
|
|
|
|
2004-03-15 06:16:12 +08:00
|
|
|
tool_info = tool->tool_info;
|
2003-02-27 00:17:10 +08:00
|
|
|
|
2003-10-21 05:27:34 +08:00
|
|
|
stock_id = gimp_viewable_get_stock_id (GIMP_VIEWABLE (tool_info));
|
2002-11-14 19:54:57 +08:00
|
|
|
|
2003-10-21 05:27:34 +08:00
|
|
|
tr_tool->info_dialog = info_dialog_new (NULL,
|
|
|
|
tool_info->blurb,
|
|
|
|
GIMP_OBJECT (tool_info)->name,
|
|
|
|
stock_id,
|
|
|
|
tr_tool->shell_desc,
|
2004-03-15 06:16:12 +08:00
|
|
|
NULL /* tool->gdisp->shell */,
|
2003-10-21 05:27:34 +08:00
|
|
|
gimp_standard_help_func,
|
|
|
|
tool_info->help_id);
|
2002-11-14 19:54:57 +08:00
|
|
|
|
2003-11-06 23:27:05 +08:00
|
|
|
gtk_dialog_add_buttons (GTK_DIALOG (tr_tool->info_dialog->shell),
|
|
|
|
GIMP_STOCK_RESET, RESPONSE_RESET,
|
|
|
|
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
|
|
|
|
stock_id, GTK_RESPONSE_OK,
|
|
|
|
NULL);
|
2004-03-19 18:15:56 +08:00
|
|
|
gtk_dialog_set_default_response (GTK_DIALOG (tr_tool->info_dialog->shell),
|
|
|
|
GTK_RESPONSE_OK);
|
2002-11-14 19:54:57 +08:00
|
|
|
|
2003-11-06 23:27:05 +08:00
|
|
|
g_signal_connect (tr_tool->info_dialog->shell, "response",
|
2004-01-22 00:07:48 +08:00
|
|
|
G_CALLBACK (gimp_transform_tool_response),
|
2003-11-06 23:27:05 +08:00
|
|
|
tr_tool);
|
2003-05-03 02:43:15 +08:00
|
|
|
|
2003-10-21 05:27:34 +08:00
|
|
|
GIMP_TRANSFORM_TOOL_GET_CLASS (tr_tool)->dialog (tr_tool);
|
2003-05-29 01:23:54 +08:00
|
|
|
|
2003-10-21 05:27:34 +08:00
|
|
|
identifier = g_strconcat (GIMP_OBJECT (tool_info)->name, "-dialog", NULL);
|
2003-05-03 02:43:15 +08:00
|
|
|
|
2003-10-21 05:27:34 +08:00
|
|
|
gimp_dialog_factory_add_foreign (gimp_dialog_factory_from_name ("toplevel"),
|
|
|
|
identifier,
|
|
|
|
tr_tool->info_dialog->shell);
|
|
|
|
|
|
|
|
g_free (identifier);
|
2001-03-01 14:56:57 +08:00
|
|
|
}
|
|
|
|
|
2001-11-20 02:23:43 +08:00
|
|
|
static void
|
2002-11-14 19:54:57 +08:00
|
|
|
gimp_transform_tool_prepare (GimpTransformTool *tr_tool,
|
|
|
|
GimpDisplay *gdisp)
|
2001-03-01 14:56:57 +08:00
|
|
|
{
|
2004-06-13 09:37:29 +08:00
|
|
|
GimpTransformOptions *options;
|
2004-06-14 18:48:00 +08:00
|
|
|
|
|
|
|
options =
|
|
|
|
GIMP_TRANSFORM_OPTIONS (GIMP_TOOL (tr_tool)->tool_info->tool_options);
|
|
|
|
|
2004-07-03 05:56:30 +08:00
|
|
|
if ((options->preview_type == GIMP_TRANSFORM_PREVIEW_TYPE_IMAGE ||
|
|
|
|
options->preview_type == GIMP_TRANSFORM_PREVIEW_TYPE_IMAGE_GRID) &&
|
|
|
|
options->type == GIMP_TRANSFORM_TYPE_LAYER &&
|
|
|
|
options->direction == GIMP_TRANSFORM_FORWARD)
|
2004-06-14 19:45:45 +08:00
|
|
|
gimp_display_shell_set_show_transform (GIMP_DISPLAY_SHELL (gdisp->shell),
|
2004-07-03 05:56:30 +08:00
|
|
|
TRUE);
|
2004-06-14 19:45:45 +08:00
|
|
|
else
|
|
|
|
gimp_display_shell_set_show_transform (GIMP_DISPLAY_SHELL (gdisp->shell),
|
|
|
|
FALSE);
|
2004-06-13 09:37:29 +08:00
|
|
|
|
2002-11-14 19:54:57 +08:00
|
|
|
if (tr_tool->info_dialog)
|
|
|
|
{
|
|
|
|
gimp_viewable_dialog_set_viewable (GIMP_VIEWABLE_DIALOG (tr_tool->info_dialog->shell),
|
|
|
|
GIMP_VIEWABLE (gimp_image_active_drawable (gdisp->gimage)));
|
|
|
|
|
|
|
|
gtk_widget_set_sensitive (GTK_WIDGET (tr_tool->info_dialog->shell), TRUE);
|
|
|
|
}
|
2001-03-01 14:56:57 +08:00
|
|
|
|
2002-11-14 19:54:57 +08:00
|
|
|
if (GIMP_TRANSFORM_TOOL_GET_CLASS (tr_tool)->prepare)
|
|
|
|
GIMP_TRANSFORM_TOOL_GET_CLASS (tr_tool)->prepare (tr_tool, gdisp);
|
2001-03-01 14:56:57 +08:00
|
|
|
}
|
|
|
|
|
2001-11-20 02:23:43 +08:00
|
|
|
static void
|
2002-11-14 19:54:57 +08:00
|
|
|
gimp_transform_tool_recalc (GimpTransformTool *tr_tool,
|
2004-06-14 17:06:28 +08:00
|
|
|
GimpDisplay *gdisp)
|
2001-03-01 14:56:57 +08:00
|
|
|
{
|
2002-11-14 19:54:57 +08:00
|
|
|
gimp_transform_tool_bounds (tr_tool, gdisp);
|
|
|
|
|
|
|
|
if (GIMP_TRANSFORM_TOOL_GET_CLASS (tr_tool)->recalc)
|
|
|
|
GIMP_TRANSFORM_TOOL_GET_CLASS (tr_tool)->recalc (tr_tool, gdisp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-01-22 00:07:48 +08:00
|
|
|
gimp_transform_tool_response (GtkWidget *widget,
|
|
|
|
gint response_id,
|
|
|
|
GimpTransformTool *tr_tool)
|
2002-11-14 19:54:57 +08:00
|
|
|
{
|
2003-11-06 23:27:05 +08:00
|
|
|
switch (response_id)
|
|
|
|
{
|
|
|
|
case RESPONSE_RESET:
|
|
|
|
{
|
|
|
|
GimpTool *tool;
|
|
|
|
gint i;
|
2001-03-01 14:56:57 +08:00
|
|
|
|
2003-11-06 23:27:05 +08:00
|
|
|
tool = GIMP_TOOL (tr_tool);
|
2001-03-01 14:56:57 +08:00
|
|
|
|
2003-11-06 23:27:05 +08:00
|
|
|
gimp_draw_tool_pause (GIMP_DRAW_TOOL (tool));
|
2001-03-01 14:56:57 +08:00
|
|
|
|
2003-11-06 23:27:05 +08:00
|
|
|
/* Restore the previous transformation info */
|
|
|
|
for (i = 0; i < TRAN_INFO_SIZE; i++)
|
|
|
|
tr_tool->trans_info[i] = tr_tool->old_trans_info[i];
|
2001-03-01 14:56:57 +08:00
|
|
|
|
2003-11-06 23:27:05 +08:00
|
|
|
/* recalculate the tool's transformation matrix */
|
|
|
|
gimp_transform_tool_recalc (tr_tool, tool->gdisp);
|
2001-03-01 14:56:57 +08:00
|
|
|
|
2004-06-13 09:37:29 +08:00
|
|
|
/* update preview */
|
|
|
|
gimp_transform_tool_expose_preview (tr_tool);
|
|
|
|
|
2003-11-06 23:27:05 +08:00
|
|
|
gimp_draw_tool_resume (GIMP_DRAW_TOOL (tool));
|
|
|
|
}
|
|
|
|
break;
|
2002-11-14 19:54:57 +08:00
|
|
|
|
2003-11-06 23:27:05 +08:00
|
|
|
case GTK_RESPONSE_OK:
|
|
|
|
gimp_transform_tool_doit (tr_tool, GIMP_TOOL (tr_tool)->gdisp);
|
|
|
|
break;
|
2002-11-14 19:54:57 +08:00
|
|
|
|
2003-11-06 23:27:05 +08:00
|
|
|
default:
|
|
|
|
gimp_transform_tool_halt (tr_tool);
|
|
|
|
break;
|
|
|
|
}
|
2002-11-14 19:54:57 +08:00
|
|
|
}
|
2003-02-10 18:08:01 +08:00
|
|
|
|
|
|
|
static void
|
2003-05-31 07:52:24 +08:00
|
|
|
gimp_transform_tool_notify_type (GimpTransformOptions *options,
|
2003-02-10 18:08:01 +08:00
|
|
|
GParamSpec *pspec,
|
|
|
|
GimpTransformTool *tr_tool)
|
|
|
|
{
|
2003-10-31 17:38:04 +08:00
|
|
|
if (tr_tool->function != TRANSFORM_CREATING)
|
|
|
|
gimp_draw_tool_pause (GIMP_DRAW_TOOL (tr_tool));
|
2003-02-10 18:08:01 +08:00
|
|
|
|
2003-07-16 22:08:24 +08:00
|
|
|
tr_tool->type = options->type;
|
|
|
|
tr_tool->direction = options->direction;
|
2003-05-31 07:52:24 +08:00
|
|
|
|
2003-10-31 17:38:04 +08:00
|
|
|
if (tr_tool->function != TRANSFORM_CREATING)
|
|
|
|
{
|
|
|
|
/* recalculate the tool's transformation matrix */
|
|
|
|
gimp_transform_tool_recalc (tr_tool, GIMP_TOOL (tr_tool)->gdisp);
|
2003-02-10 18:08:01 +08:00
|
|
|
|
2003-10-31 17:38:04 +08:00
|
|
|
gimp_draw_tool_resume (GIMP_DRAW_TOOL (tr_tool));
|
|
|
|
}
|
2003-02-10 18:08:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-07-03 05:56:30 +08:00
|
|
|
gimp_transform_tool_notify_preview (GimpTransformOptions *options,
|
|
|
|
GParamSpec *pspec,
|
|
|
|
GimpTransformTool *tr_tool)
|
2003-02-10 18:08:01 +08:00
|
|
|
{
|
2004-07-03 05:56:30 +08:00
|
|
|
GimpDisplayShell *shell = NULL;
|
|
|
|
|
|
|
|
if (gimp_draw_tool_is_active (GIMP_DRAW_TOOL (tr_tool)))
|
|
|
|
shell = GIMP_DISPLAY_SHELL (GIMP_DRAW_TOOL (tr_tool)->gdisp->shell);
|
|
|
|
|
|
|
|
switch (options->preview_type)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
case GIMP_TRANSFORM_PREVIEW_TYPE_OUTLINE:
|
|
|
|
if (shell)
|
|
|
|
{
|
|
|
|
gimp_display_shell_set_show_transform (shell, FALSE);
|
|
|
|
gimp_transform_tool_force_expose_preview (tr_tool);
|
|
|
|
}
|
|
|
|
break;
|
2003-02-10 18:08:01 +08:00
|
|
|
|
2004-07-03 05:56:30 +08:00
|
|
|
case GIMP_TRANSFORM_PREVIEW_TYPE_GRID:
|
|
|
|
if (shell)
|
|
|
|
{
|
|
|
|
gimp_display_shell_set_show_transform (shell, FALSE);
|
|
|
|
gimp_transform_tool_force_expose_preview (tr_tool);
|
|
|
|
}
|
2003-02-10 18:08:01 +08:00
|
|
|
|
2004-07-03 05:56:30 +08:00
|
|
|
if (tr_tool->function != TRANSFORM_CREATING)
|
|
|
|
{
|
|
|
|
gimp_draw_tool_pause (GIMP_DRAW_TOOL (tr_tool));
|
2003-02-10 18:08:01 +08:00
|
|
|
|
2004-07-03 05:56:30 +08:00
|
|
|
gimp_transform_tool_grid_recalc (tr_tool);
|
|
|
|
gimp_transform_tool_transform_bounding_box (tr_tool);
|
2004-06-13 09:37:29 +08:00
|
|
|
|
2004-07-03 05:56:30 +08:00
|
|
|
gimp_draw_tool_resume (GIMP_DRAW_TOOL (tr_tool));
|
|
|
|
}
|
|
|
|
break;
|
2004-06-13 09:37:29 +08:00
|
|
|
|
2004-07-03 05:56:30 +08:00
|
|
|
case GIMP_TRANSFORM_PREVIEW_TYPE_IMAGE:
|
|
|
|
if (shell)
|
|
|
|
{
|
|
|
|
if (options->type == GIMP_TRANSFORM_TYPE_LAYER &&
|
|
|
|
options->direction == GIMP_TRANSFORM_FORWARD)
|
|
|
|
gimp_display_shell_set_show_transform (shell, TRUE);
|
|
|
|
else
|
|
|
|
gimp_display_shell_set_show_transform (shell, FALSE);
|
2004-06-14 18:48:00 +08:00
|
|
|
|
2004-07-03 05:56:30 +08:00
|
|
|
gimp_transform_tool_force_expose_preview (tr_tool);
|
|
|
|
}
|
|
|
|
break;
|
2004-06-14 18:48:00 +08:00
|
|
|
|
2004-07-03 05:56:30 +08:00
|
|
|
case GIMP_TRANSFORM_PREVIEW_TYPE_IMAGE_GRID:
|
|
|
|
if (shell)
|
|
|
|
{
|
|
|
|
if (options->type == GIMP_TRANSFORM_TYPE_LAYER &&
|
|
|
|
options->direction == GIMP_TRANSFORM_FORWARD)
|
|
|
|
gimp_display_shell_set_show_transform (shell, TRUE);
|
|
|
|
else
|
|
|
|
gimp_display_shell_set_show_transform (shell, FALSE);
|
2004-06-13 09:37:29 +08:00
|
|
|
|
2004-07-03 05:56:30 +08:00
|
|
|
gimp_transform_tool_force_expose_preview (tr_tool);
|
|
|
|
}
|
2004-06-14 18:48:00 +08:00
|
|
|
|
2004-07-03 05:56:30 +08:00
|
|
|
if (tr_tool->function != TRANSFORM_CREATING)
|
|
|
|
{
|
|
|
|
gimp_draw_tool_pause (GIMP_DRAW_TOOL (tr_tool));
|
2004-06-13 09:37:29 +08:00
|
|
|
|
2004-07-03 05:56:30 +08:00
|
|
|
gimp_transform_tool_grid_recalc (tr_tool);
|
|
|
|
gimp_transform_tool_transform_bounding_box (tr_tool);
|
2004-06-14 21:21:29 +08:00
|
|
|
|
2004-07-03 05:56:30 +08:00
|
|
|
gimp_draw_tool_resume (GIMP_DRAW_TOOL (tr_tool));
|
|
|
|
}
|
|
|
|
break;
|
2004-06-14 21:21:29 +08:00
|
|
|
}
|
2004-06-13 09:37:29 +08:00
|
|
|
}
|