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-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
|
|
|
|
|
|
|
#include <gdk/gdkkeysyms.h>
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
#include "appenv.h"
|
|
|
|
#include "cursorutil.h"
|
|
|
|
#include "drawable.h"
|
|
|
|
#include "flip_tool.h"
|
|
|
|
#include "gdisplay.h"
|
1999-06-08 07:15:18 +08:00
|
|
|
#include "gimage_mask.h"
|
2000-01-14 20:41:00 +08:00
|
|
|
#include "gimpui.h"
|
2000-02-16 21:52:33 +08:00
|
|
|
#include "path_transform.h"
|
1999-04-27 10:09:03 +08:00
|
|
|
|
2000-03-22 01:47:32 +08:00
|
|
|
#include "tile_manager_pvt.h" /* ick. */
|
1998-01-22 15:02:57 +08:00
|
|
|
|
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"
|
|
|
|
|
1999-04-27 10:09:03 +08:00
|
|
|
#define FLIP_INFO 0
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-04-09 06:25:54 +08:00
|
|
|
/* the flip structures */
|
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
|
|
|
|
{
|
2000-01-05 19:18:38 +08:00
|
|
|
ToolOptions 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
|
|
|
};
|
|
|
|
|
1999-04-09 06:25:54 +08:00
|
|
|
static FlipOptions *flip_options = NULL;
|
|
|
|
|
|
|
|
/* functions */
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-08-14 06:33:49 +08:00
|
|
|
/* FIXME: Lame - 1 hacks abound since the code assumes certain values for
|
|
|
|
* the ORIENTATION_FOO constants.
|
|
|
|
*/
|
|
|
|
|
1999-04-09 06:25:54 +08:00
|
|
|
static void
|
1999-04-13 01:55:06 +08:00
|
|
|
flip_options_reset (void)
|
1999-04-09 06:25:54 +08:00
|
|
|
{
|
|
|
|
FlipOptions *options = flip_options;
|
|
|
|
|
1999-08-14 06:33:49 +08:00
|
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (options->type_w[options->type_d - 1]), TRUE);
|
1999-04-09 06:25:54 +08:00
|
|
|
}
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
static FlipOptions *
|
1999-04-13 01:55:06 +08:00
|
|
|
flip_options_new (void)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
FlipOptions *options;
|
|
|
|
|
1999-04-13 01:55:06 +08:00
|
|
|
GtkWidget *vbox;
|
1999-04-27 10:09:03 +08:00
|
|
|
GtkWidget *frame;
|
1999-04-28 05:06:00 +08:00
|
|
|
|
1999-04-13 01:55:06 +08:00
|
|
|
/* the new flip tool options structure */
|
2000-01-05 19:18:38 +08:00
|
|
|
options = g_new (FlipOptions, 1);
|
1999-04-13 01:55:06 +08:00
|
|
|
tool_options_init ((ToolOptions *) options,
|
2000-02-01 05:27:00 +08:00
|
|
|
_("Flip Tool"),
|
1999-04-13 01:55:06 +08:00
|
|
|
flip_options_reset);
|
1999-07-29 07:00:08 +08:00
|
|
|
options->type = options->type_d = ORIENTATION_HORIZONTAL;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* the main vbox */
|
1999-04-13 01:55:06 +08:00
|
|
|
vbox = options->tool_options.main_vbox;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-04-27 10:09:03 +08:00
|
|
|
/* tool toggle */
|
2000-01-14 20:41:00 +08:00
|
|
|
frame =
|
|
|
|
gimp_radio_group_new2 (TRUE, _("Tool Toggle"),
|
|
|
|
gimp_radio_button_update,
|
|
|
|
&options->type, (gpointer) options->type,
|
|
|
|
|
|
|
|
_("Horizontal"), (gpointer) ORIENTATION_HORIZONTAL,
|
|
|
|
&options->type_w[0],
|
|
|
|
_("Vertical"), (gpointer) ORIENTATION_VERTICAL,
|
|
|
|
&options->type_w[1],
|
|
|
|
|
|
|
|
NULL);
|
|
|
|
|
1999-04-27 10:09:03 +08:00
|
|
|
gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (frame);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
return options;
|
|
|
|
}
|
|
|
|
|
1999-04-27 10:09:03 +08:00
|
|
|
static void
|
1999-04-28 05:06:00 +08:00
|
|
|
flip_modifier_key_func (Tool *tool,
|
1999-06-08 06:38:20 +08:00
|
|
|
GdkEventKey *kevent,
|
|
|
|
gpointer gdisp_ptr)
|
1999-04-27 10:09:03 +08:00
|
|
|
{
|
1999-04-28 05:06:00 +08:00
|
|
|
switch (kevent->keyval)
|
|
|
|
{
|
|
|
|
case GDK_Alt_L: case GDK_Alt_R:
|
|
|
|
break;
|
|
|
|
case GDK_Shift_L: case GDK_Shift_R:
|
1999-06-08 06:38:20 +08:00
|
|
|
break;
|
|
|
|
case GDK_Control_L: case GDK_Control_R:
|
1999-07-29 07:00:08 +08:00
|
|
|
if (flip_options->type == ORIENTATION_HORIZONTAL)
|
2000-03-21 11:19:11 +08:00
|
|
|
{
|
|
|
|
gtk_toggle_button_set_active
|
|
|
|
(GTK_TOGGLE_BUTTON (flip_options->type_w[ORIENTATION_VERTICAL - 1]), TRUE);
|
|
|
|
}
|
1999-04-28 05:06:00 +08:00
|
|
|
else
|
2000-03-21 11:19:11 +08:00
|
|
|
{
|
|
|
|
gtk_toggle_button_set_active
|
|
|
|
(GTK_TOGGLE_BUTTON (flip_options->type_w[ORIENTATION_HORIZONTAL - 1]), TRUE);
|
|
|
|
}
|
1999-04-28 05:06:00 +08:00
|
|
|
break;
|
|
|
|
}
|
1999-04-27 10:09:03 +08:00
|
|
|
}
|
1999-04-28 05:06:00 +08:00
|
|
|
|
2000-01-05 19:18:38 +08:00
|
|
|
TileManager *
|
|
|
|
flip_tool_transform (Tool *tool,
|
|
|
|
gpointer gdisp_ptr,
|
|
|
|
TransformState state)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-01-05 19:18:38 +08:00
|
|
|
TransformCore *transform_core;
|
|
|
|
GDisplay *gdisp;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
transform_core = (TransformCore *) tool->private;
|
|
|
|
gdisp = (GDisplay *) gdisp_ptr;
|
|
|
|
|
|
|
|
switch (state)
|
|
|
|
{
|
2000-01-05 19:18:38 +08:00
|
|
|
case INIT:
|
1997-11-25 06:05:25 +08:00
|
|
|
transform_info = NULL;
|
|
|
|
break;
|
|
|
|
|
2000-01-05 19:18:38 +08:00
|
|
|
case MOTION:
|
1997-11-25 06:05:25 +08:00
|
|
|
break;
|
|
|
|
|
2000-01-05 19:18:38 +08:00
|
|
|
case RECALC:
|
1997-11-25 06:05:25 +08:00
|
|
|
break;
|
|
|
|
|
2000-01-05 19:18:38 +08:00
|
|
|
case FINISH:
|
Bit of a large checkin this - it's basically three things: 1 - GimpModules
Sun Jan 11 00:24:21 GMT 1999 Austin Donnelly <austin@greenend.org.uk>
Bit of a large checkin this - it's basically three things:
1 - GimpModules using gmodules to dynamically load and
initialise modules at gimp start of day.
2 - Color selectors now register themselves with a color
notebook.
3 - progress bars have been cleaned up a bit, so now have
progress indictations on all transform tool and gradient
fill operations. Not done bucket fill, but that seems to
be the next candidate.
New directories:
* modules/: new directory for dynamically loadable modules.
New files:
* modules/.cvsignore
* modules/Makefile.am
* modules/colorsel_gtk.c: GTK color selector wrapped up as a
color selector the gimp can use.
* app/gimpprogress.[ch]: progress bars within gimp core, either as
popups, or in the status bar. This is mainly code moved out
of plug-in.c
* app/color_notebook.[ch]: color selector notebook, implementing
very similar interface to color_select.h so it can be used as
a drop-in replacement for it.
* libgimp/color_selector.h: API color selectors need to implement
to become a page in the color_notebook.
* libgimp/gimpmodule.h: API gimp modules need to implement to be
initialised by gimp at start of day.
Modified files:
* Makefile.am: add modules/ to SUBDIRS
* libgimp/Makefile.am: install gimpmodule.h and color_selector.h
* app/gimprc.[ch]: recognise module-path variable.
* gimprc.in: set module-path variable to something sensible
(currently "${gimp_dir}/modules:${gimp_plugin_dir}/modules").
* app/Makefile.am: build color notebook and gimpprogress
* app/app_procs.c: register internal GIMP color selector with
color notebook.
* app/asupsample.c: call progress function less frequently for
better performance.
* app/asupsample.h: progress_func_t typedef moved to gimpprogress.h
* app/blend.c: make callbacks to a progress function
* app/color_area.c: use a color notebook rather than a color selector
* app/color_panel.c: ditto
* app/color_select.c: export color selector interface for notebook
* app/color_select.h: color_select_init() prototype
* app/flip_tool.c: flip the image every time, rather than every
second click.
* app/interface.c: move progress bar stuff out to
gimpprogress.c. Make the code actually work while we're at it.
* app/interface.h: move prototypes for progress functions out to
gimpprogress.h
* app/plug_in.c: load and initialise modules (if possible). Move
progress bar handling code out to gimpprogress.c
* app/plug_in.h: keep only a gimp_progress * for each plugin, not
a whole bunch of GtkWidgets.
* app/scale_tool.c
* app/rotate_tool.c
* app/shear_tool.c
* app/perspective_tool.c: progress bar during operation.
De-sensitise the dialog to discourage the user from running
two transforms in parallel.
* app/transform_core.c: recalculate grid coords when bounding box
changes. Only initialise the action area of the dialog once,
to avoid multiple "ok" / "reset" buttons appearing. Undraw
transform tool with correct matrix to get rid of handle
remains on screen. Call a progress function as we apply the
transform matrix. A few new i18n markups. Invalidate
floating selection marching ants after applying matrix.
* app/transform_core.h: transform_core_do() takes an optional
progress callback argument (and data).
* plug-ins/oilify/oilify.c: send progress bar updates after every
pixel region, not only if they processed a multiple of 5
pixels (which was quite unlikely, and therefore gave a jerky
progress indication).
1999-01-11 08:57:33 +08:00
|
|
|
/* transform_core->trans_info[FLIP] *= -1.0;*/
|
1999-08-14 06:33:49 +08:00
|
|
|
return flip_tool_flip (gdisp->gimage,
|
|
|
|
gimage_active_drawable (gdisp->gimage),
|
1999-06-19 11:41:02 +08:00
|
|
|
transform_core->original,
|
2000-01-05 19:18:38 +08:00
|
|
|
(int) transform_core->trans_info[FLIP_INFO],
|
1999-04-27 10:09:03 +08:00
|
|
|
flip_options->type);
|
1997-11-25 06:05:25 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
1999-04-27 10:09:03 +08:00
|
|
|
static void
|
|
|
|
flip_cursor_update (Tool *tool,
|
|
|
|
GdkEventMotion *mevent,
|
|
|
|
gpointer gdisp_ptr)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-01-05 19:18:38 +08:00
|
|
|
GDisplay *gdisp;
|
2000-03-22 01:47:32 +08:00
|
|
|
GimpDrawable *drawable;
|
2000-01-05 19:18:38 +08:00
|
|
|
GdkCursorType ctype = GDK_TOP_LEFT_ARROW;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
gdisp = (GDisplay *) gdisp_ptr;
|
1999-06-08 07:15:18 +08:00
|
|
|
|
2000-03-22 01:47:32 +08:00
|
|
|
if ((drawable = gimage_active_drawable (gdisp->gimage)))
|
1999-06-08 07:15:18 +08:00
|
|
|
{
|
2000-03-21 11:19:11 +08:00
|
|
|
gint x, y;
|
|
|
|
gint off_x, off_y;
|
1999-06-08 07:15:18 +08:00
|
|
|
|
2000-03-21 11:19:11 +08:00
|
|
|
drawable_offsets (drawable, &off_x, &off_y);
|
|
|
|
gdisplay_untransform_coords (gdisp,
|
|
|
|
(double) mevent->x, (double) mevent->y,
|
1999-06-08 07:15:18 +08:00
|
|
|
&x, &y, TRUE, FALSE);
|
|
|
|
|
|
|
|
if (x >= off_x && y >= off_y &&
|
2000-03-21 11:19:11 +08:00
|
|
|
x < (off_x + drawable_width (drawable)) &&
|
|
|
|
y < (off_y + drawable_height (drawable)))
|
1999-06-08 07:15:18 +08:00
|
|
|
{
|
|
|
|
/* Is there a selected region? If so, is cursor inside? */
|
1999-08-14 06:33:49 +08:00
|
|
|
if (gimage_mask_is_empty (gdisp->gimage) ||
|
|
|
|
gimage_mask_value (gdisp->gimage, x, y))
|
1999-06-08 07:15:18 +08:00
|
|
|
{
|
1999-07-29 07:00:08 +08:00
|
|
|
if (flip_options->type == ORIENTATION_HORIZONTAL)
|
1999-08-14 06:33:49 +08:00
|
|
|
ctype = GDK_SB_H_DOUBLE_ARROW;
|
1999-06-08 07:15:18 +08:00
|
|
|
else
|
|
|
|
ctype = GDK_SB_V_DOUBLE_ARROW;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1999-04-27 10:09:03 +08:00
|
|
|
gdisplay_install_tool_cursor (gdisp, ctype);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Tool *
|
1999-08-14 06:33:49 +08:00
|
|
|
tools_new_flip (void)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-03-22 01:47:32 +08:00
|
|
|
Tool *tool;
|
|
|
|
TransformCore *private;
|
1999-04-27 10:09:03 +08:00
|
|
|
|
1999-04-13 01:55:06 +08:00
|
|
|
/* The tool options */
|
1997-11-25 06:05:25 +08:00
|
|
|
if (! flip_options)
|
1999-04-13 01:55:06 +08:00
|
|
|
{
|
|
|
|
flip_options = flip_options_new ();
|
1999-04-27 10:09:03 +08:00
|
|
|
tools_register (FLIP, (ToolOptions *) flip_options);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2000-01-05 19:18:38 +08:00
|
|
|
tool = transform_core_new (FLIP, FALSE);
|
1997-11-25 06:05:25 +08:00
|
|
|
private = tool->private;
|
|
|
|
|
2000-01-05 19:18:38 +08:00
|
|
|
private->trans_func = flip_tool_transform;
|
1999-06-26 19:16:47 +08:00
|
|
|
private->trans_info[FLIP_INFO] = -1.0;
|
|
|
|
|
2000-01-05 19:18:38 +08:00
|
|
|
tool->modifier_key_func = flip_modifier_key_func;
|
1999-04-27 10:09:03 +08:00
|
|
|
tool->cursor_update_func = flip_cursor_update;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
return tool;
|
|
|
|
}
|
|
|
|
|
1999-04-27 10:09:03 +08:00
|
|
|
void
|
|
|
|
tools_free_flip_tool (Tool *tool)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
1999-04-27 10:09:03 +08:00
|
|
|
transform_core_free (tool);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
1999-04-19 05:22:41 +08:00
|
|
|
TileManager *
|
1999-08-14 06:33:49 +08:00
|
|
|
flip_tool_flip (GimpImage *gimage,
|
|
|
|
GimpDrawable *drawable,
|
|
|
|
TileManager *orig,
|
2000-03-21 11:19:11 +08:00
|
|
|
gint flip,
|
1999-08-14 06:33:49 +08:00
|
|
|
InternalOrientationType type)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
TileManager *new;
|
2000-01-05 19:18:38 +08:00
|
|
|
PixelRegion srcPR, destPR;
|
|
|
|
gint i;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
if (!orig)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (flip > 0)
|
|
|
|
{
|
1998-08-16 03:17:36 +08:00
|
|
|
new = tile_manager_new (orig->width, orig->height, orig->bpp);
|
|
|
|
pixel_region_init (&srcPR, orig, 0, 0, orig->width, orig->height, FALSE);
|
|
|
|
pixel_region_init (&destPR, new, 0, 0, orig->width, orig->height, TRUE);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
copy_region (&srcPR, &destPR);
|
|
|
|
new->x = orig->x;
|
|
|
|
new->y = orig->y;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
1998-08-16 03:17:36 +08:00
|
|
|
new = tile_manager_new (orig->width, orig->height, orig->bpp);
|
1997-11-25 06:05:25 +08:00
|
|
|
new->x = orig->x;
|
|
|
|
new->y = orig->y;
|
|
|
|
|
1999-07-29 07:00:08 +08:00
|
|
|
if (type == ORIENTATION_HORIZONTAL)
|
1999-04-27 10:09:03 +08:00
|
|
|
for (i = 0; i < orig->width; i++)
|
|
|
|
{
|
|
|
|
pixel_region_init (&srcPR, orig, i, 0, 1, orig->height, FALSE);
|
2000-01-05 19:18:38 +08:00
|
|
|
pixel_region_init (&destPR, new,
|
|
|
|
(orig->width - i - 1), 0, 1, orig->height, TRUE);
|
1999-04-27 10:09:03 +08:00
|
|
|
copy_region (&srcPR, &destPR);
|
|
|
|
}
|
|
|
|
else
|
1999-04-30 06:54:09 +08:00
|
|
|
for (i = 0; i < orig->height; i++)
|
1999-04-27 10:09:03 +08:00
|
|
|
{
|
|
|
|
pixel_region_init (&srcPR, orig, 0, i, orig->width, 1, FALSE);
|
2000-01-05 19:18:38 +08:00
|
|
|
pixel_region_init (&destPR, new,
|
|
|
|
0, (orig->height - i - 1), orig->width, 1, TRUE);
|
1999-04-27 10:09:03 +08:00
|
|
|
copy_region (&srcPR, &destPR);
|
|
|
|
}
|
1999-10-19 04:55:25 +08:00
|
|
|
|
|
|
|
/* flip locked paths */
|
|
|
|
/* Note that the undo structures etc are setup before we enter this
|
|
|
|
* function.
|
|
|
|
*/
|
2000-01-05 19:18:38 +08:00
|
|
|
if (type == ORIENTATION_HORIZONTAL)
|
2000-02-16 21:52:33 +08:00
|
|
|
path_transform_flip_horz (gimage);
|
1999-10-19 04:55:25 +08:00
|
|
|
else
|
2000-02-16 21:52:33 +08:00
|
|
|
path_transform_flip_vert (gimage);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return new;
|
|
|
|
}
|