2001-07-07 Michael Natterer <mitch@gimp.org> * app/Makefile.am * app/context_manager.[ch]: removed. * app/app_procs.c: call tool_mananger instead of context_manager functions, pass "the_gimp" to some more functions. * app/drawable.[ch]: pass a GimpContext to drawable_fill(). * app/errors.c: behave according to "stack_trace_mode" when using the debugging signal handler. * app/gimprc.[ch]: removed the core/ config variables. * app/selection.c: set the selection's state to INVISIBLE in selection_pause(). * app/core/Makefile.am * app/core/gimpcoreconfig.[ch]: new files (the configuration variables used by core/). * app/core/gimpcontext.[ch]: removed the global contexts (user, default, ...) and their functions. It's no longer possible to pass NULL to the context functions to manipulate the current context (gimpcontext.c doesn't know the current context any more). * app/core/gimp.[ch]: added them here. The functions are now called gimp_[set|get]_*_context(). Added gimp_create_context() which is the only function to create contexts now. * app/gui/dialogs.[ch] * app/gui/gui.[ch]: pass "gimp" to all functions. * app/tools/tool_manager.[ch] * app/tools/tools.[ch]: pass "gimp" to lots of functions. Added the "global_tool_context" logic and the global/non-global paint options switching from the context_manager. Pass "gimp" to all tools' "register" functions. * app/tools/*: changed accordingly. * app/devices.c * app/disp_callbacks.c * app/file-open.[ch] * app/file-save.c * app/gdisplay.c * app/gimage.c * app/libgimp_glue.c * app/module_db.c * app/nav_window.c * app/plug_in.c * app/qmask.c * app/undo.c * app/base/base-config.c * app/core/gimpbrushpipe.c * app/core/gimpdrawable-offset.c * app/core/gimpgradient.c * app/core/gimpimage-duplicate.c * app/core/gimpimage-mask.c * app/core/gimpimage-new.c * app/core/gimpimage.c * app/core/gimppalette.c * app/core/gimptoolinfo.[ch] * app/core/gimpundo.c * app/gui/brush-select.c * app/gui/channels-commands.c * app/gui/color-area.c * app/gui/dialogs-constructors.c * app/gui/file-new-dialog.c * app/gui/file-open-dialog.c * app/gui/gradient-editor.c * app/gui/gradient-select.c * app/gui/info-window.c * app/gui/layers-commands.c * app/gui/menus.c * app/gui/palette-editor.c * app/gui/palette-import-dialog.c * app/gui/palette-select.c * app/gui/paths-dialog.c * app/gui/pattern-select.c * app/gui/preferences-dialog.c * app/gui/resize-dialog.c * app/gui/test-commands.c * app/gui/tool-options-dialog.c * app/gui/toolbox.c * app/gui/tools-commands.c * app/xcf/xcf-load.c * app/xcf/xcf-save.c * app/widgets/gimpchannellistview.c * app/widgets/gimpdnd.c * app/widgets/gimpdrawablelistview.[ch] * app/widgets/gimpimagedock.c * app/widgets/gimplayerlistview.c * app/pdb/brushes_cmds.c * app/pdb/drawable_cmds.c * app/pdb/gradient_select_cmds.c * app/pdb/gradients_cmds.c * app/pdb/palette_cmds.c * app/pdb/patterns_cmds.c * app/pdb/procedural_db.c * tools/pdbgen/pdb/brushes.pdb * tools/pdbgen/pdb/drawable.pdb * tools/pdbgen/pdb/gradient_select.pdb * tools/pdbgen/pdb/gradients.pdb * tools/pdbgen/pdb/palette.pdb * tools/pdbgen/pdb/patterns.pdb: changed accordingly: remove usage of gimp_context_[get|set]_*(NULL), create contexts with gimp_create_context(). Get the user/current context with gimp_get_[user|current]_context(). Added/removed access to the global "the_gimp" variable in some places. Get the core's config variables from "core_config".
425 lines
11 KiB
C
425 lines
11 KiB
C
/* 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
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <gtk/gtk.h>
|
|
#include <gdk/gdkkeysyms.h>
|
|
|
|
#include "libgimpwidgets/gimpwidgets.h"
|
|
|
|
#include "tools-types.h"
|
|
|
|
#include "base/pixel-region.h"
|
|
#include "base/tile-manager.h"
|
|
|
|
#include "paint-funcs/paint-funcs.h"
|
|
|
|
#include "core/gimpdrawable.h"
|
|
#include "core/gimpimage.h"
|
|
#include "core/gimpimage-mask.h"
|
|
#include "core/gimplayer.h"
|
|
|
|
#include "gdisplay.h"
|
|
#include "gdisplay_ops.h"
|
|
#include "undo.h"
|
|
#include "path_transform.h"
|
|
|
|
#include "gimpfliptool.h"
|
|
#include "tool_manager.h"
|
|
#include "tool_options.h"
|
|
|
|
#include "libgimp/gimpintl.h"
|
|
|
|
#define WANT_FLIP_BITS
|
|
#include "icons.h"
|
|
|
|
|
|
/* FIXME: Lame - 1 hacks abound since the code assumes certain values for
|
|
* the ORIENTATION_FOO constants.
|
|
*/
|
|
|
|
#define FLIP_INFO 0
|
|
|
|
typedef struct _FlipOptions FlipOptions;
|
|
|
|
struct _FlipOptions
|
|
{
|
|
ToolOptions tool_options;
|
|
|
|
InternalOrientationType type;
|
|
InternalOrientationType type_d;
|
|
GtkWidget *type_w[2];
|
|
};
|
|
|
|
|
|
/* local function prototypes */
|
|
|
|
static void gimp_flip_tool_class_init (GimpFlipToolClass *klass);
|
|
static void gimp_flip_tool_init (GimpFlipTool *flip_tool);
|
|
|
|
static void gimp_flip_tool_destroy (GtkObject *object);
|
|
|
|
static void gimp_flip_tool_cursor_update (GimpTool *tool,
|
|
GdkEventMotion *mevent,
|
|
GDisplay *gdisp);
|
|
static void gimp_flip_tool_modifier_key (GimpTool *tool,
|
|
GdkEventKey *kevent,
|
|
GDisplay *gdisp);
|
|
|
|
static TileManager * gimp_flip_tool_transform (GimpTransformTool *tool,
|
|
GDisplay *gdisp,
|
|
TransformState state);
|
|
|
|
static FlipOptions * flip_options_new (void);
|
|
static void flip_options_reset (ToolOptions *tool_options);
|
|
|
|
|
|
static FlipOptions *flip_options = NULL;
|
|
|
|
static GimpTransformToolClass *parent_class = NULL;
|
|
|
|
|
|
/* public functions */
|
|
|
|
void
|
|
gimp_flip_tool_register (Gimp *gimp)
|
|
{
|
|
tool_manager_register_tool (gimp,
|
|
GIMP_TYPE_FLIP_TOOL,
|
|
FALSE,
|
|
"gimp:flip_tool",
|
|
_("Flip Tool"),
|
|
_("Flip the layer or selection"),
|
|
N_("/Tools/Transform Tools/Flip"), "<shift>F",
|
|
NULL, "tools/flip.html",
|
|
(const gchar **) flip_bits);
|
|
}
|
|
|
|
GtkType
|
|
gimp_flip_tool_get_type (void)
|
|
{
|
|
static GtkType tool_type = 0;
|
|
|
|
if (! tool_type)
|
|
{
|
|
GtkTypeInfo tool_info =
|
|
{
|
|
"GimpFlipTool",
|
|
sizeof (GimpFlipTool),
|
|
sizeof (GimpFlipToolClass),
|
|
(GtkClassInitFunc) gimp_flip_tool_class_init,
|
|
(GtkObjectInitFunc) gimp_flip_tool_init,
|
|
/* reserved_1 */ NULL,
|
|
/* reserved_2 */ NULL,
|
|
(GtkClassInitFunc) NULL,
|
|
};
|
|
|
|
tool_type = gtk_type_unique (GIMP_TYPE_TRANSFORM_TOOL, &tool_info);
|
|
}
|
|
|
|
return tool_type;
|
|
}
|
|
|
|
TileManager *
|
|
flip_tool_flip (GimpImage *gimage,
|
|
GimpDrawable *drawable,
|
|
TileManager *orig,
|
|
gint flip,
|
|
InternalOrientationType type)
|
|
{
|
|
TileManager *new;
|
|
PixelRegion srcPR, destPR;
|
|
gint orig_width;
|
|
gint orig_height;
|
|
gint orig_bpp;
|
|
gint orig_x, orig_y;
|
|
gint i;
|
|
|
|
if (! orig)
|
|
return NULL;
|
|
|
|
orig_width = tile_manager_width (orig);
|
|
orig_height = tile_manager_height (orig);
|
|
orig_bpp = tile_manager_bpp (orig);
|
|
tile_manager_get_offsets (orig, &orig_x, &orig_y);
|
|
|
|
if (flip > 0)
|
|
{
|
|
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);
|
|
|
|
copy_region (&srcPR, &destPR);
|
|
tile_manager_set_offsets (new, orig_x, orig_y);
|
|
}
|
|
else
|
|
{
|
|
new = tile_manager_new (orig_width, orig_height, orig_bpp);
|
|
tile_manager_set_offsets (new, orig_x, orig_y);
|
|
|
|
if (type == ORIENTATION_HORIZONTAL)
|
|
for (i = 0; i < orig_width; i++)
|
|
{
|
|
pixel_region_init (&srcPR, orig, i, 0, 1, orig_height, FALSE);
|
|
pixel_region_init (&destPR, new,
|
|
(orig_width - i - 1), 0, 1, orig_height, TRUE);
|
|
copy_region (&srcPR, &destPR);
|
|
}
|
|
else
|
|
for (i = 0; i < orig_height; i++)
|
|
{
|
|
pixel_region_init (&srcPR, orig, 0, i, orig_width, 1, FALSE);
|
|
pixel_region_init (&destPR, new,
|
|
0, (orig_height - i - 1), orig_width, 1, TRUE);
|
|
copy_region (&srcPR, &destPR);
|
|
}
|
|
|
|
/* flip locked paths */
|
|
/* Note that the undo structures etc are setup before we enter this
|
|
* function.
|
|
*/
|
|
if (type == ORIENTATION_HORIZONTAL)
|
|
path_transform_flip_horz (gimage);
|
|
else
|
|
path_transform_flip_vert (gimage);
|
|
}
|
|
|
|
return new;
|
|
}
|
|
|
|
|
|
/* private functions */
|
|
|
|
static void
|
|
gimp_flip_tool_class_init (GimpFlipToolClass *klass)
|
|
{
|
|
GtkObjectClass *object_class;
|
|
GimpToolClass *tool_class;
|
|
GimpDrawToolClass *draw_class;
|
|
GimpTransformToolClass *trans_class;
|
|
|
|
object_class = (GtkObjectClass *) klass;
|
|
tool_class = (GimpToolClass *) klass;
|
|
draw_class = (GimpDrawToolClass *) klass;
|
|
trans_class = (GimpTransformToolClass *) klass;
|
|
|
|
parent_class = gtk_type_class (GIMP_TYPE_TRANSFORM_TOOL);
|
|
|
|
object_class->destroy = gimp_flip_tool_destroy;
|
|
|
|
tool_class->cursor_update = gimp_flip_tool_cursor_update;
|
|
tool_class->modifier_key = gimp_flip_tool_modifier_key;
|
|
|
|
draw_class->draw = NULL;
|
|
|
|
trans_class->transform = gimp_flip_tool_transform;
|
|
}
|
|
|
|
static void
|
|
gimp_flip_tool_init (GimpFlipTool *flip_tool)
|
|
{
|
|
GimpTool *tool;
|
|
GimpTransformTool *tr_tool;
|
|
|
|
tool = GIMP_TOOL (flip_tool);
|
|
tr_tool = GIMP_TRANSFORM_TOOL (flip_tool);
|
|
|
|
/* The tool options */
|
|
if (! flip_options)
|
|
{
|
|
flip_options = flip_options_new ();
|
|
|
|
tool_manager_register_tool_options (GIMP_TYPE_FLIP_TOOL,
|
|
(ToolOptions *) flip_options);
|
|
}
|
|
|
|
tool->tool_cursor = GIMP_FLIP_HORIZONTAL_TOOL_CURSOR;
|
|
tool->toggle_cursor = GIMP_FLIP_VERTICAL_TOOL_CURSOR;
|
|
|
|
tool->auto_snap_to = FALSE; /* Don't snap to guides */
|
|
|
|
tr_tool->trans_info[FLIP_INFO] = -1.0;
|
|
}
|
|
|
|
static void
|
|
gimp_flip_tool_destroy (GtkObject *object)
|
|
{
|
|
GimpFlipTool *flip_tool;
|
|
GimpTool *tool;
|
|
|
|
flip_tool = GIMP_FLIP_TOOL (object);
|
|
tool = GIMP_TOOL (flip_tool);
|
|
|
|
if (GTK_OBJECT_CLASS (parent_class)->destroy)
|
|
GTK_OBJECT_CLASS (parent_class)->destroy (object);
|
|
}
|
|
|
|
static void
|
|
gimp_flip_tool_cursor_update (GimpTool *tool,
|
|
GdkEventMotion *mevent,
|
|
GDisplay *gdisp)
|
|
{
|
|
GimpDrawable *drawable;
|
|
GdkCursorType ctype = GIMP_BAD_CURSOR;
|
|
GimpToolCursorType tool_cursor = GIMP_FLIP_HORIZONTAL_TOOL_CURSOR;
|
|
|
|
if ((drawable = gimp_image_active_drawable (gdisp->gimage)))
|
|
{
|
|
gint x, y;
|
|
gint off_x, off_y;
|
|
|
|
gimp_drawable_offsets (drawable, &off_x, &off_y);
|
|
gdisplay_untransform_coords (gdisp,
|
|
(double) mevent->x, (double) mevent->y,
|
|
&x, &y, TRUE, FALSE);
|
|
|
|
if (x >= off_x && y >= off_y &&
|
|
x < (off_x + gimp_drawable_width (drawable)) &&
|
|
y < (off_y + gimp_drawable_height (drawable)))
|
|
{
|
|
/* Is there a selected region? If so, is cursor inside? */
|
|
if (gimage_mask_is_empty (gdisp->gimage) ||
|
|
gimage_mask_value (gdisp->gimage, x, y))
|
|
{
|
|
if (flip_options->type == ORIENTATION_HORIZONTAL)
|
|
ctype = GDK_SB_H_DOUBLE_ARROW;
|
|
else
|
|
ctype = GDK_SB_V_DOUBLE_ARROW;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (flip_options->type == ORIENTATION_HORIZONTAL)
|
|
tool_cursor = GIMP_FLIP_HORIZONTAL_TOOL_CURSOR;
|
|
else
|
|
tool_cursor = GIMP_FLIP_VERTICAL_TOOL_CURSOR;
|
|
|
|
gdisplay_install_tool_cursor (gdisp,
|
|
ctype,
|
|
tool_cursor,
|
|
GIMP_CURSOR_MODIFIER_NONE);
|
|
}
|
|
|
|
static void
|
|
gimp_flip_tool_modifier_key (GimpTool *tool,
|
|
GdkEventKey *kevent,
|
|
GDisplay *gdisp)
|
|
{
|
|
switch (kevent->keyval)
|
|
{
|
|
case GDK_Alt_L: case GDK_Alt_R:
|
|
break;
|
|
case GDK_Shift_L: case GDK_Shift_R:
|
|
break;
|
|
case GDK_Control_L: case GDK_Control_R:
|
|
if (flip_options->type == ORIENTATION_HORIZONTAL)
|
|
{
|
|
gtk_toggle_button_set_active
|
|
(GTK_TOGGLE_BUTTON (flip_options->type_w[ORIENTATION_VERTICAL - 1]), TRUE);
|
|
}
|
|
else
|
|
{
|
|
gtk_toggle_button_set_active
|
|
(GTK_TOGGLE_BUTTON (flip_options->type_w[ORIENTATION_HORIZONTAL - 1]), TRUE);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
static TileManager *
|
|
gimp_flip_tool_transform (GimpTransformTool *trans_tool,
|
|
GDisplay *gdisp,
|
|
TransformState state)
|
|
{
|
|
GimpTool *tool;
|
|
|
|
tool = GIMP_TOOL (trans_tool);
|
|
|
|
switch (state)
|
|
{
|
|
case TRANSFORM_INIT:
|
|
transform_info = NULL;
|
|
break;
|
|
|
|
case TRANSFORM_MOTION:
|
|
break;
|
|
|
|
case TRANSFORM_RECALC:
|
|
break;
|
|
|
|
case TRANSFORM_FINISH:
|
|
return flip_tool_flip (gdisp->gimage,
|
|
gimp_image_active_drawable (gdisp->gimage),
|
|
trans_tool->original,
|
|
(gint) trans_tool->trans_info[FLIP_INFO],
|
|
flip_options->type);
|
|
break;
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
static FlipOptions *
|
|
flip_options_new (void)
|
|
{
|
|
FlipOptions *options;
|
|
GtkWidget *vbox;
|
|
GtkWidget *frame;
|
|
|
|
options = g_new0 (FlipOptions, 1);
|
|
tool_options_init ((ToolOptions *) options,
|
|
flip_options_reset);
|
|
|
|
options->type = options->type_d = ORIENTATION_HORIZONTAL;
|
|
|
|
/* the main vbox */
|
|
vbox = options->tool_options.main_vbox;
|
|
|
|
/* tool toggle */
|
|
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);
|
|
|
|
gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, FALSE, 0);
|
|
gtk_widget_show (frame);
|
|
|
|
return options;
|
|
}
|
|
|
|
static void
|
|
flip_options_reset (ToolOptions *tool_options)
|
|
{
|
|
FlipOptions *options;
|
|
|
|
options = (FlipOptions *) tool_options;
|
|
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (options->type_w[options->type_d - 1]), TRUE);
|
|
}
|