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
|
|
|
*/
|
2000-12-17 05:37:03 +08:00
|
|
|
|
2000-03-22 01:47:32 +08:00
|
|
|
#include "config.h"
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
#include <stdlib.h>
|
2000-01-14 20:41:00 +08:00
|
|
|
|
2000-12-17 05:37:03 +08:00
|
|
|
#include <gtk/gtk.h>
|
2000-01-14 20:41:00 +08:00
|
|
|
#include <gdk/gdkkeysyms.h>
|
|
|
|
|
2001-01-25 06:36:18 +08:00
|
|
|
#include "libgimpwidgets/gimpwidgets.h"
|
|
|
|
|
2001-05-10 06:34:59 +08:00
|
|
|
#include "tools-types.h"
|
2000-12-17 05:37:03 +08:00
|
|
|
|
2001-05-09 10:32:03 +08:00
|
|
|
#include "core/gimpdrawable.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"
|
|
|
|
#include "core/gimpimage-mask.h"
|
2001-11-20 02:23:43 +08:00
|
|
|
#include "core/gimptoolinfo.h"
|
2001-05-09 10:32:03 +08:00
|
|
|
|
2001-09-26 07:23:09 +08:00
|
|
|
#include "display/gimpdisplay.h"
|
2001-11-01 05:20:09 +08:00
|
|
|
#include "display/gimpdisplayshell.h"
|
2001-01-23 21:01:48 +08:00
|
|
|
|
2001-04-01 01:08:55 +08:00
|
|
|
#include "gimpfliptool.h"
|
2000-12-29 23:22:01 +08:00
|
|
|
#include "tool_options.h"
|
1998-01-22 15:02:57 +08:00
|
|
|
|
2001-11-01 05:20:09 +08:00
|
|
|
#include "path_transform.h"
|
|
|
|
|
Lots of ii8n stuff here and some additions to the de.po. Applied
Wed Oct 14 17:46:15 EDT 1998 Adrian Likins <adrian@gimp.org>
* app/*, po/de.po, de/POTFILES.in, libgimp/gimpintl.h:
Lots of ii8n stuff here and some additions to the de.po.
Applied gimp-egger-981005-1 ,gimp-egger-981006-1,
gimp-egger-981007-1, gimp-egger-981008-1,
gimp-egger-981009-1.patch, gimp-egger-981010-1.patch
* plug-in/guillotine/guillotine.c: added the coordinates
of the split images from the original image to the title.
ie foo.jpg (0,0) for the image in the topleft.
* plug-in/script-fu/scripts/neon-logo.scm,
perspective-shadow.scm, predator.scm,rendermap.scm,
ripply-anim.scm, select_to_image.scm,swirltile.scm,
xach-effect.scm: updated scripts to use new script-fu stuff
wooo boy! a big un!
in testing this, it looks like some of the po files are busted.
but the code stuff seems okay.
-adrian
1998-10-15 07:23:52 +08:00
|
|
|
#include "libgimp/gimpintl.h"
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-04-09 06:25:54 +08:00
|
|
|
typedef struct _FlipOptions FlipOptions;
|
2000-01-05 19:18:38 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
struct _FlipOptions
|
|
|
|
{
|
2001-07-18 04:50:01 +08:00
|
|
|
GimpToolOptions tool_options;
|
1999-04-13 01:55:06 +08:00
|
|
|
|
2000-01-05 19:18:38 +08:00
|
|
|
InternalOrientationType type;
|
|
|
|
InternalOrientationType type_d;
|
|
|
|
GtkWidget *type_w[2];
|
1997-11-25 06:05:25 +08:00
|
|
|
};
|
|
|
|
|
2000-12-31 12:07:42 +08:00
|
|
|
|
|
|
|
/* local function prototypes */
|
|
|
|
|
2001-04-01 01:08:55 +08:00
|
|
|
static void gimp_flip_tool_class_init (GimpFlipToolClass *klass);
|
|
|
|
static void gimp_flip_tool_init (GimpFlipTool *flip_tool);
|
1999-04-09 06:25:54 +08:00
|
|
|
|
2001-04-01 01:08:55 +08:00
|
|
|
static void gimp_flip_tool_modifier_key (GimpTool *tool,
|
2001-11-09 03:14:51 +08:00
|
|
|
GdkModifierType key,
|
|
|
|
gboolean press,
|
|
|
|
GdkModifierType state,
|
|
|
|
GimpDisplay *gdisp);
|
|
|
|
static void gimp_flip_tool_cursor_update (GimpTool *tool,
|
|
|
|
GimpCoords *coords,
|
|
|
|
GdkModifierType state,
|
2001-10-29 19:47:11 +08:00
|
|
|
GimpDisplay *gdisp);
|
2000-12-31 12:07:42 +08:00
|
|
|
|
2001-04-01 01:08:55 +08:00
|
|
|
static TileManager * gimp_flip_tool_transform (GimpTransformTool *tool,
|
2001-10-29 19:47:11 +08:00
|
|
|
GimpDisplay *gdisp,
|
2001-04-01 01:08:55 +08:00
|
|
|
TransformState state);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2001-11-21 07:00:47 +08:00
|
|
|
static GimpToolOptions * flip_options_new (GimpToolInfo *tool_info);
|
|
|
|
static void flip_options_reset (GimpToolOptions *tool_options);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
|
2001-04-01 01:08:55 +08:00
|
|
|
static GimpTransformToolClass *parent_class = NULL;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
|
2001-04-01 01:08:55 +08:00
|
|
|
/* public functions */
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2001-04-01 01:08:55 +08:00
|
|
|
void
|
2001-11-21 07:00:47 +08:00
|
|
|
gimp_flip_tool_register (Gimp *gimp,
|
|
|
|
GimpToolRegisterCallback callback)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2001-11-21 07:00:47 +08:00
|
|
|
(* callback) (gimp,
|
|
|
|
GIMP_TYPE_FLIP_TOOL,
|
|
|
|
flip_options_new,
|
|
|
|
FALSE,
|
|
|
|
"gimp:flip_tool",
|
|
|
|
_("Flip Tool"),
|
|
|
|
_("Flip the layer or selection"),
|
|
|
|
N_("/Tools/Transform Tools/Flip"), "<shift>F",
|
|
|
|
NULL, "tools/flip.html",
|
|
|
|
GIMP_STOCK_TOOL_FLIP);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2001-08-14 22:53:55 +08:00
|
|
|
GType
|
2001-04-01 01:08:55 +08:00
|
|
|
gimp_flip_tool_get_type (void)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2001-08-14 22:53:55 +08:00
|
|
|
static GType tool_type = 0;
|
1999-04-27 10:09:03 +08:00
|
|
|
|
2001-04-01 01:08:55 +08:00
|
|
|
if (! tool_type)
|
1999-04-13 01:55:06 +08:00
|
|
|
{
|
2001-08-14 22:53:55 +08:00
|
|
|
static const GTypeInfo tool_info =
|
2001-04-01 01:08:55 +08:00
|
|
|
{
|
|
|
|
sizeof (GimpFlipToolClass),
|
2001-08-14 22:53:55 +08:00
|
|
|
(GBaseInitFunc) NULL,
|
|
|
|
(GBaseFinalizeFunc) NULL,
|
|
|
|
(GClassInitFunc) gimp_flip_tool_class_init,
|
|
|
|
NULL, /* class_finalize */
|
|
|
|
NULL, /* class_data */
|
|
|
|
sizeof (GimpFlipTool),
|
|
|
|
0, /* n_preallocs */
|
|
|
|
(GInstanceInitFunc) gimp_flip_tool_init,
|
2001-04-01 01:08:55 +08:00
|
|
|
};
|
|
|
|
|
2001-08-14 22:53:55 +08:00
|
|
|
tool_type = g_type_register_static (GIMP_TYPE_TRANSFORM_TOOL,
|
|
|
|
"GimpFlipTool",
|
|
|
|
&tool_info, 0);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2001-04-01 01:08:55 +08:00
|
|
|
return tool_type;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2001-04-01 01:08:55 +08:00
|
|
|
|
|
|
|
/* private functions */
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_flip_tool_class_init (GimpFlipToolClass *klass)
|
|
|
|
{
|
|
|
|
GimpToolClass *tool_class;
|
|
|
|
GimpTransformToolClass *trans_class;
|
|
|
|
|
2001-08-14 22:53:55 +08:00
|
|
|
tool_class = GIMP_TOOL_CLASS (klass);
|
|
|
|
trans_class = GIMP_TRANSFORM_TOOL_CLASS (klass);
|
2001-04-01 01:08:55 +08:00
|
|
|
|
2001-08-14 22:53:55 +08:00
|
|
|
parent_class = g_type_class_peek_parent (klass);
|
2001-04-01 01:08:55 +08:00
|
|
|
|
|
|
|
tool_class->modifier_key = gimp_flip_tool_modifier_key;
|
2001-11-09 03:14:51 +08:00
|
|
|
tool_class->cursor_update = gimp_flip_tool_cursor_update;
|
2001-04-01 01:08:55 +08:00
|
|
|
|
|
|
|
trans_class->transform = gimp_flip_tool_transform;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_flip_tool_init (GimpFlipTool *flip_tool)
|
|
|
|
{
|
|
|
|
GimpTool *tool;
|
2001-11-20 02:23:43 +08:00
|
|
|
GimpTransformTool *transform_tool;
|
2001-04-01 01:08:55 +08:00
|
|
|
|
2001-11-20 02:23:43 +08:00
|
|
|
tool = GIMP_TOOL (flip_tool);
|
|
|
|
transform_tool = GIMP_TRANSFORM_TOOL (flip_tool);
|
2001-04-01 01:08:55 +08:00
|
|
|
|
|
|
|
tool->tool_cursor = GIMP_FLIP_HORIZONTAL_TOOL_CURSOR;
|
|
|
|
tool->toggle_cursor = GIMP_FLIP_VERTICAL_TOOL_CURSOR;
|
|
|
|
|
2001-11-09 03:14:51 +08:00
|
|
|
tool->auto_snap_to = FALSE; /* Don't snap to guides */
|
2001-11-20 02:23:43 +08:00
|
|
|
|
|
|
|
transform_tool->use_grid = FALSE;
|
2001-11-09 03:14:51 +08:00
|
|
|
}
|
2001-04-01 01:08:55 +08:00
|
|
|
|
2001-11-09 03:14:51 +08:00
|
|
|
static void
|
|
|
|
gimp_flip_tool_modifier_key (GimpTool *tool,
|
|
|
|
GdkModifierType key,
|
|
|
|
gboolean press,
|
|
|
|
GdkModifierType state,
|
|
|
|
GimpDisplay *gdisp)
|
|
|
|
{
|
2001-11-20 02:23:43 +08:00
|
|
|
FlipOptions *options;
|
|
|
|
|
|
|
|
options = (FlipOptions *) tool->tool_info->tool_options;
|
|
|
|
|
2001-11-09 03:14:51 +08:00
|
|
|
if (key == GDK_CONTROL_MASK)
|
|
|
|
{
|
2001-11-20 02:23:43 +08:00
|
|
|
switch (options->type)
|
2001-11-09 03:14:51 +08:00
|
|
|
{
|
|
|
|
case ORIENTATION_HORIZONTAL:
|
2001-11-22 21:01:26 +08:00
|
|
|
gimp_radio_group_set_active (GTK_RADIO_BUTTON (options->type_w[0]),
|
|
|
|
GINT_TO_POINTER (ORIENTATION_VERTICAL));
|
2001-11-09 03:14:51 +08:00
|
|
|
break;
|
|
|
|
case ORIENTATION_VERTICAL:
|
2001-11-22 21:01:26 +08:00
|
|
|
gimp_radio_group_set_active (GTK_RADIO_BUTTON (options->type_w[0]),
|
|
|
|
GINT_TO_POINTER (ORIENTATION_HORIZONTAL));
|
2001-11-09 03:14:51 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2001-04-01 01:08:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-11-09 03:14:51 +08:00
|
|
|
gimp_flip_tool_cursor_update (GimpTool *tool,
|
|
|
|
GimpCoords *coords,
|
|
|
|
GdkModifierType state,
|
|
|
|
GimpDisplay *gdisp)
|
2001-04-01 01:08:55 +08:00
|
|
|
{
|
2001-11-01 05:20:09 +08:00
|
|
|
GimpDisplayShell *shell;
|
2001-04-01 01:08:55 +08:00
|
|
|
GimpDrawable *drawable;
|
|
|
|
GdkCursorType ctype = GIMP_BAD_CURSOR;
|
|
|
|
GimpToolCursorType tool_cursor = GIMP_FLIP_HORIZONTAL_TOOL_CURSOR;
|
2001-11-20 02:23:43 +08:00
|
|
|
FlipOptions *options;
|
2001-04-01 01:08:55 +08:00
|
|
|
|
2001-11-01 05:20:09 +08:00
|
|
|
shell = GIMP_DISPLAY_SHELL (gdisp->shell);
|
|
|
|
|
2001-11-20 02:23:43 +08:00
|
|
|
options = (FlipOptions *) tool->tool_info->tool_options;
|
|
|
|
|
2001-04-01 01:08:55 +08:00
|
|
|
if ((drawable = gimp_image_active_drawable (gdisp->gimage)))
|
|
|
|
{
|
|
|
|
gint off_x, off_y;
|
|
|
|
|
|
|
|
gimp_drawable_offsets (drawable, &off_x, &off_y);
|
|
|
|
|
2001-11-09 03:14:51 +08:00
|
|
|
if (coords->x >= off_x &&
|
|
|
|
coords->y >= off_y &&
|
|
|
|
coords->x < (off_x + gimp_drawable_width (drawable)) &&
|
|
|
|
coords->y < (off_y + gimp_drawable_height (drawable)))
|
2001-04-01 01:08:55 +08:00
|
|
|
{
|
|
|
|
/* Is there a selected region? If so, is cursor inside? */
|
2001-11-29 06:42:19 +08:00
|
|
|
if (gimp_image_mask_is_empty (gdisp->gimage) ||
|
|
|
|
gimp_image_mask_value (gdisp->gimage, coords->x, coords->y))
|
2001-04-01 01:08:55 +08:00
|
|
|
{
|
2001-11-20 02:23:43 +08:00
|
|
|
if (options->type == ORIENTATION_HORIZONTAL)
|
2001-04-01 01:08:55 +08:00
|
|
|
ctype = GDK_SB_H_DOUBLE_ARROW;
|
|
|
|
else
|
|
|
|
ctype = GDK_SB_V_DOUBLE_ARROW;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-11-20 02:23:43 +08:00
|
|
|
if (options->type == ORIENTATION_HORIZONTAL)
|
2001-04-01 01:08:55 +08:00
|
|
|
tool_cursor = GIMP_FLIP_HORIZONTAL_TOOL_CURSOR;
|
|
|
|
else
|
|
|
|
tool_cursor = GIMP_FLIP_VERTICAL_TOOL_CURSOR;
|
|
|
|
|
2001-11-01 05:20:09 +08:00
|
|
|
gimp_display_shell_install_tool_cursor (shell,
|
|
|
|
ctype,
|
|
|
|
tool_cursor,
|
|
|
|
GIMP_CURSOR_MODIFIER_NONE);
|
2001-04-01 01:08:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static TileManager *
|
|
|
|
gimp_flip_tool_transform (GimpTransformTool *trans_tool,
|
2001-10-29 19:47:11 +08:00
|
|
|
GimpDisplay *gdisp,
|
2001-04-01 01:08:55 +08:00
|
|
|
TransformState state)
|
|
|
|
{
|
2001-11-20 02:23:43 +08:00
|
|
|
FlipOptions *options;
|
2001-04-01 01:08:55 +08:00
|
|
|
|
2001-11-20 02:23:43 +08:00
|
|
|
options = (FlipOptions *) GIMP_TOOL (trans_tool)->tool_info->tool_options;
|
2001-04-01 01:08:55 +08:00
|
|
|
|
|
|
|
switch (state)
|
|
|
|
{
|
|
|
|
case TRANSFORM_INIT:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TRANSFORM_MOTION:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TRANSFORM_RECALC:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TRANSFORM_FINISH:
|
2001-11-20 02:23:43 +08:00
|
|
|
return gimp_drawable_transform_tiles_flip (gimp_image_active_drawable (gdisp->gimage),
|
|
|
|
trans_tool->original,
|
|
|
|
options->type);
|
2001-04-01 01:08:55 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2001-11-21 07:00:47 +08:00
|
|
|
|
|
|
|
/* tool options stuff */
|
|
|
|
|
|
|
|
static GimpToolOptions *
|
|
|
|
flip_options_new (GimpToolInfo *tool_info)
|
2001-04-01 01:08:55 +08:00
|
|
|
{
|
|
|
|
FlipOptions *options;
|
2001-04-01 04:41:39 +08:00
|
|
|
GtkWidget *vbox;
|
|
|
|
GtkWidget *frame;
|
2001-04-01 01:08:55 +08:00
|
|
|
|
|
|
|
options = g_new0 (FlipOptions, 1);
|
2001-11-21 07:00:47 +08:00
|
|
|
|
|
|
|
tool_options_init ((GimpToolOptions *) options, tool_info);
|
|
|
|
|
|
|
|
((GimpToolOptions *) options)->reset_func = flip_options_reset;
|
2001-04-01 01:08:55 +08:00
|
|
|
|
|
|
|
options->type = options->type_d = ORIENTATION_HORIZONTAL;
|
|
|
|
|
|
|
|
/* the main vbox */
|
|
|
|
vbox = options->tool_options.main_vbox;
|
|
|
|
|
|
|
|
/* tool toggle */
|
2001-11-26 21:17:18 +08:00
|
|
|
frame = gimp_radio_group_new2 (TRUE, _("Tool Toggle (<Ctrl>)"),
|
2001-11-20 02:23:43 +08:00
|
|
|
G_CALLBACK (gimp_radio_button_update),
|
|
|
|
&options->type,
|
|
|
|
GINT_TO_POINTER (options->type),
|
|
|
|
|
|
|
|
_("Horizontal"),
|
|
|
|
GINT_TO_POINTER (ORIENTATION_HORIZONTAL),
|
|
|
|
&options->type_w[0],
|
|
|
|
|
|
|
|
_("Vertical"),
|
|
|
|
GINT_TO_POINTER (ORIENTATION_VERTICAL),
|
|
|
|
&options->type_w[1],
|
|
|
|
|
|
|
|
NULL);
|
2001-04-01 01:08:55 +08:00
|
|
|
|
|
|
|
gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (frame);
|
|
|
|
|
2001-11-21 07:00:47 +08:00
|
|
|
return (GimpToolOptions *) options;
|
2001-04-01 01:08:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-07-18 04:50:01 +08:00
|
|
|
flip_options_reset (GimpToolOptions *tool_options)
|
2001-04-01 01:08:55 +08:00
|
|
|
{
|
2001-04-01 04:41:39 +08:00
|
|
|
FlipOptions *options;
|
|
|
|
|
|
|
|
options = (FlipOptions *) tool_options;
|
2001-04-01 01:08:55 +08:00
|
|
|
|
2001-11-22 21:01:26 +08:00
|
|
|
gimp_radio_group_set_active (GTK_RADIO_BUTTON (options->type_w[0]),
|
|
|
|
GINT_TO_POINTER (options->type_d));
|
2001-04-01 01:08:55 +08:00
|
|
|
}
|