2005-02-01 02:43:28 +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
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
|
|
|
#include "libgimpwidgets/gimpwidgets.h"
|
|
|
|
|
|
|
|
#include "tools-types.h"
|
|
|
|
|
|
|
|
#include "core/gimpchannel.h"
|
|
|
|
#include "core/gimpchannel-select.h"
|
2005-04-10 02:08:47 +08:00
|
|
|
#include "core/gimplayer-floating-sel.h"
|
2005-02-01 02:43:28 +08:00
|
|
|
#include "core/gimpimage.h"
|
2005-07-12 03:21:52 +08:00
|
|
|
#include "core/gimppickable.h"
|
2005-02-01 02:43:28 +08:00
|
|
|
#include "core/gimptoolinfo.h"
|
|
|
|
#include "core/gimp-utils.h"
|
|
|
|
|
|
|
|
#include "widgets/gimpdialogfactory.h"
|
|
|
|
#include "widgets/gimphelp-ids.h"
|
|
|
|
#include "widgets/gimpviewabledialog.h"
|
|
|
|
#include "widgets/gimpwidgets-utils.h"
|
|
|
|
|
|
|
|
#include "display/gimpcanvas.h"
|
|
|
|
#include "display/gimpdisplay.h"
|
|
|
|
#include "display/gimpdisplayshell.h"
|
|
|
|
#include "display/gimpdisplayshell-transform.h"
|
|
|
|
|
|
|
|
#include "gimpselectiontool.h"
|
|
|
|
#include "gimpselectionoptions.h"
|
2005-03-03 02:18:19 +08:00
|
|
|
#include "gimprectangletool.h"
|
|
|
|
#include "gimprectangleoptions.h"
|
2005-02-01 02:43:28 +08:00
|
|
|
#include "gimpnewrectselecttool.h"
|
2005-08-15 22:23:28 +08:00
|
|
|
#include "gimpnewrectselectoptions.h"
|
2005-02-01 02:43:28 +08:00
|
|
|
#include "gimptoolcontrol.h"
|
|
|
|
|
|
|
|
#include "gimp-intl.h"
|
|
|
|
|
|
|
|
|
2005-03-03 02:18:19 +08:00
|
|
|
static void gimp_new_rect_select_tool_class_init (GimpNewRectSelectToolClass *klass);
|
|
|
|
static void gimp_new_rect_select_tool_init (GimpNewRectSelectTool *rect_tool);
|
2005-08-15 22:23:28 +08:00
|
|
|
static void gimp_new_rect_select_tool_rectangle_tool_iface_init (GimpRectangleToolInterface *rectangle_iface);
|
|
|
|
|
|
|
|
static GObject * gimp_new_rect_select_tool_constructor (GType type,
|
|
|
|
guint n_params,
|
|
|
|
GObjectConstructParam *params);
|
|
|
|
static void gimp_new_rect_select_tool_finalize (GObject *object);
|
|
|
|
static void gimp_new_rect_select_tool_control (GimpTool *tool,
|
|
|
|
GimpToolAction action,
|
|
|
|
GimpDisplay *gdisp);
|
|
|
|
static void gimp_new_rect_select_tool_oper_update (GimpTool *tool,
|
|
|
|
GimpCoords *coords,
|
|
|
|
GdkModifierType state,
|
|
|
|
GimpDisplay *gdisp);
|
2005-04-10 02:08:47 +08:00
|
|
|
static gboolean gimp_new_rect_select_tool_execute (GimpRectangleTool *rect_tool,
|
2005-03-03 02:18:19 +08:00
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint w,
|
|
|
|
gint h);
|
2005-02-01 02:43:28 +08:00
|
|
|
|
2005-08-15 22:23:28 +08:00
|
|
|
static GimpSelectionToolClass *parent_class = NULL;
|
2005-02-01 02:43:28 +08:00
|
|
|
|
|
|
|
|
|
|
|
/* public functions */
|
|
|
|
|
|
|
|
void
|
|
|
|
gimp_new_rect_select_tool_register (GimpToolRegisterCallback callback,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
(* callback) (GIMP_TYPE_NEW_RECT_SELECT_TOOL,
|
2005-08-15 22:23:28 +08:00
|
|
|
GIMP_TYPE_NEW_RECT_SELECT_OPTIONS,
|
|
|
|
gimp_new_rect_select_options_gui,
|
2005-02-01 02:43:28 +08:00
|
|
|
0,
|
|
|
|
"gimp-new-rect-select-tool",
|
|
|
|
_("New Rect Select"),
|
|
|
|
_("Select a Rectangular part of an image"),
|
2005-04-15 09:13:47 +08:00
|
|
|
N_("_New Rect Select"), NULL,
|
2005-02-01 02:43:28 +08:00
|
|
|
NULL, GIMP_HELP_TOOL_RECT_SELECT,
|
2005-02-01 04:43:46 +08:00
|
|
|
GIMP_STOCK_TOOL_RECT_SELECT,
|
2005-02-01 02:43:28 +08:00
|
|
|
data);
|
|
|
|
}
|
|
|
|
|
|
|
|
GType
|
|
|
|
gimp_new_rect_select_tool_get_type (void)
|
|
|
|
{
|
|
|
|
static GType tool_type = 0;
|
|
|
|
|
|
|
|
if (! tool_type)
|
|
|
|
{
|
|
|
|
static const GTypeInfo tool_info =
|
|
|
|
{
|
|
|
|
sizeof (GimpNewRectSelectToolClass),
|
|
|
|
(GBaseInitFunc) NULL,
|
|
|
|
(GBaseFinalizeFunc) NULL,
|
|
|
|
(GClassInitFunc) gimp_new_rect_select_tool_class_init,
|
|
|
|
NULL, /* class_finalize */
|
|
|
|
NULL, /* class_data */
|
|
|
|
sizeof (GimpNewRectSelectTool),
|
|
|
|
0, /* n_preallocs */
|
|
|
|
(GInstanceInitFunc) gimp_new_rect_select_tool_init,
|
|
|
|
};
|
2005-08-15 22:23:28 +08:00
|
|
|
static const GInterfaceInfo rectangle_info =
|
|
|
|
{
|
|
|
|
(GInterfaceInitFunc) gimp_new_rect_select_tool_rectangle_tool_iface_init, /* interface_init */
|
|
|
|
NULL, /* interface_finalize */
|
|
|
|
NULL /* interface_data */
|
|
|
|
};
|
2005-02-01 02:43:28 +08:00
|
|
|
|
2005-08-15 22:23:28 +08:00
|
|
|
tool_type = g_type_register_static (GIMP_TYPE_SELECTION_TOOL,
|
2005-02-01 02:43:28 +08:00
|
|
|
"GimpNewRectSelectTool",
|
|
|
|
&tool_info, 0);
|
2005-08-15 22:23:28 +08:00
|
|
|
g_type_add_interface_static (tool_type,
|
|
|
|
GIMP_TYPE_RECTANGLE_TOOL,
|
|
|
|
&rectangle_info);
|
2005-02-01 02:43:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return tool_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_new_rect_select_tool_class_init (GimpNewRectSelectToolClass *klass)
|
|
|
|
{
|
2005-08-15 22:23:28 +08:00
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
GimpToolClass *tool_class = GIMP_TOOL_CLASS (klass);
|
|
|
|
GimpDrawToolClass *draw_tool_class = GIMP_DRAW_TOOL_CLASS (klass);
|
2005-02-01 02:43:28 +08:00
|
|
|
|
|
|
|
parent_class = g_type_class_peek_parent (klass);
|
|
|
|
|
2005-08-15 22:23:28 +08:00
|
|
|
object_class->constructor = gimp_new_rect_select_tool_constructor;
|
2005-09-04 03:48:22 +08:00
|
|
|
object_class->dispose = gimp_rectangle_tool_dispose;
|
2005-08-15 22:23:28 +08:00
|
|
|
object_class->finalize = gimp_new_rect_select_tool_finalize;
|
2005-09-04 03:48:22 +08:00
|
|
|
object_class->set_property = gimp_rectangle_tool_set_property;
|
|
|
|
object_class->get_property = gimp_rectangle_tool_get_property;
|
|
|
|
gimp_rectangle_tool_install_properties (object_class);
|
2005-08-15 22:23:28 +08:00
|
|
|
|
|
|
|
tool_class->initialize = gimp_rectangle_tool_initialize;
|
|
|
|
tool_class->control = gimp_new_rect_select_tool_control;
|
|
|
|
tool_class->button_press = gimp_rectangle_tool_button_press;
|
|
|
|
tool_class->button_release = gimp_rectangle_tool_button_release;
|
|
|
|
tool_class->motion = gimp_rectangle_tool_motion;
|
|
|
|
tool_class->key_press = gimp_rectangle_tool_key_press;
|
|
|
|
tool_class->modifier_key = gimp_rectangle_tool_modifier_key;
|
|
|
|
tool_class->oper_update = gimp_new_rect_select_tool_oper_update;
|
|
|
|
tool_class->cursor_update = gimp_rectangle_tool_cursor_update;
|
2005-02-01 02:43:28 +08:00
|
|
|
|
2005-08-15 22:23:28 +08:00
|
|
|
draw_tool_class->draw = gimp_rectangle_tool_draw;
|
2005-02-01 02:43:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_new_rect_select_tool_init (GimpNewRectSelectTool *new_rect_select_tool)
|
|
|
|
{
|
2005-03-15 04:44:18 +08:00
|
|
|
GimpTool *tool = GIMP_TOOL (new_rect_select_tool);
|
2005-02-01 02:43:28 +08:00
|
|
|
|
|
|
|
gimp_tool_control_set_tool_cursor (tool->control, GIMP_TOOL_CURSOR_RECT_SELECT);
|
|
|
|
}
|
|
|
|
|
2005-04-10 02:08:47 +08:00
|
|
|
static void
|
2005-08-15 22:23:28 +08:00
|
|
|
gimp_new_rect_select_tool_rectangle_tool_iface_init (GimpRectangleToolInterface *rectangle_iface)
|
2005-04-10 02:08:47 +08:00
|
|
|
{
|
2005-08-15 22:23:28 +08:00
|
|
|
rectangle_iface->execute = gimp_new_rect_select_tool_execute;
|
|
|
|
}
|
2005-04-10 02:08:47 +08:00
|
|
|
|
2005-08-15 22:23:28 +08:00
|
|
|
static GObject *
|
|
|
|
gimp_new_rect_select_tool_constructor (GType type,
|
|
|
|
guint n_params,
|
|
|
|
GObjectConstructParam *params)
|
|
|
|
{
|
|
|
|
GObject *object;
|
2005-04-10 02:08:47 +08:00
|
|
|
|
2005-08-15 22:23:28 +08:00
|
|
|
object = G_OBJECT_CLASS (parent_class)->constructor (type, n_params, params);
|
|
|
|
|
|
|
|
gimp_rectangle_tool_constructor (object);
|
|
|
|
|
|
|
|
return object;
|
2005-04-10 02:08:47 +08:00
|
|
|
}
|
|
|
|
|
2005-02-01 02:43:28 +08:00
|
|
|
static void
|
2005-08-15 22:23:28 +08:00
|
|
|
gimp_new_rect_select_tool_finalize (GObject *object)
|
2005-02-01 02:43:28 +08:00
|
|
|
{
|
2005-08-15 22:23:28 +08:00
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
2005-02-01 02:43:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-08-15 22:23:28 +08:00
|
|
|
gimp_new_rect_select_tool_control (GimpTool *tool,
|
|
|
|
GimpToolAction action,
|
|
|
|
GimpDisplay *gdisp)
|
2005-02-01 02:43:28 +08:00
|
|
|
{
|
2005-08-15 22:23:28 +08:00
|
|
|
gimp_rectangle_tool_control (tool, action, gdisp);
|
|
|
|
|
|
|
|
GIMP_TOOL_CLASS (parent_class)->control (tool, action, gdisp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_new_rect_select_tool_oper_update (GimpTool *tool,
|
|
|
|
GimpCoords *coords,
|
|
|
|
GdkModifierType state,
|
|
|
|
GimpDisplay *gdisp)
|
|
|
|
{
|
|
|
|
gimp_rectangle_tool_oper_update (tool, coords, state, gdisp);
|
2005-02-01 02:43:28 +08:00
|
|
|
|
2005-08-15 22:23:28 +08:00
|
|
|
GIMP_TOOL_CLASS (parent_class)->oper_update (tool, coords, state, gdisp);
|
2005-02-01 02:43:28 +08:00
|
|
|
}
|
|
|
|
|
2005-04-10 02:08:47 +08:00
|
|
|
/*
|
|
|
|
* This function is called if the user clicks and releases the left
|
|
|
|
* button without moving it. There are five things we might want
|
|
|
|
* to do here:
|
|
|
|
* 1) If there is a floating selection, we anchor it.
|
|
|
|
* 2) If there is an existing rectangle and we are inside it, we
|
|
|
|
* convert it into a selection.
|
|
|
|
* 3) If there is an existing rectangle and we are outside it, we
|
|
|
|
* clear it.
|
|
|
|
* 4) If there is no rectangle and we are inside the selection, we
|
|
|
|
* create a rectangle from the selection bounds.
|
|
|
|
* 5) If there is no rectangle and we are outside the selection,
|
|
|
|
* we clear the selection.
|
|
|
|
*/
|
|
|
|
static gboolean
|
|
|
|
gimp_new_rect_select_tool_execute (GimpRectangleTool *rectangle,
|
2005-03-03 02:18:19 +08:00
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint w,
|
|
|
|
gint h)
|
2005-02-01 02:43:28 +08:00
|
|
|
{
|
2005-04-10 02:08:47 +08:00
|
|
|
GimpTool *tool = GIMP_TOOL (rectangle);
|
2005-02-01 02:43:28 +08:00
|
|
|
GimpSelectionOptions *options;
|
2005-04-10 02:08:47 +08:00
|
|
|
GimpImage *gimage;
|
2005-09-16 04:31:49 +08:00
|
|
|
gint max_x, max_y;
|
2005-04-10 02:08:47 +08:00
|
|
|
gboolean rectangle_exists;
|
|
|
|
gboolean selected;
|
|
|
|
gint val;
|
|
|
|
GimpChannel *selection_mask;
|
2005-08-15 22:23:28 +08:00
|
|
|
gint x1, y1;
|
|
|
|
gint x2, y2;
|
2005-02-01 02:43:28 +08:00
|
|
|
|
|
|
|
options = GIMP_SELECTION_OPTIONS (tool->tool_info->tool_options);
|
|
|
|
|
2005-04-10 02:08:47 +08:00
|
|
|
gimage = tool->gdisp->gimage;
|
2005-09-16 04:31:49 +08:00
|
|
|
max_x = gimage->width;
|
|
|
|
max_y = gimage->height;
|
2005-04-10 02:08:47 +08:00
|
|
|
selection_mask = gimp_image_get_mask (gimage);
|
|
|
|
|
2005-09-16 04:31:49 +08:00
|
|
|
rectangle_exists == (x <= max_x && y <= max_y
|
|
|
|
&& x + w >= 0 && y + h >= 0
|
|
|
|
&& w > 0 && h > 0);
|
|
|
|
if (x < 0)
|
|
|
|
{
|
|
|
|
w += x;
|
|
|
|
x = 0;
|
|
|
|
}
|
|
|
|
if (y < 0)
|
|
|
|
{
|
|
|
|
h += y;
|
|
|
|
y = 0;
|
|
|
|
}
|
|
|
|
if (x + w > max_x)
|
|
|
|
w = max_x - x;
|
|
|
|
if (y + h > max_y)
|
|
|
|
h = max_y - y;
|
2005-04-10 02:08:47 +08:00
|
|
|
|
|
|
|
/* If there is a floating selection, anchor it */
|
|
|
|
if (gimp_image_floating_sel (gimage))
|
|
|
|
{
|
|
|
|
floating_sel_anchor (gimp_image_floating_sel (gimage));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* if rectangle exists, turn it into a selection */
|
|
|
|
if (rectangle_exists)
|
|
|
|
{
|
|
|
|
GimpChannel *selection_mask = gimp_image_get_mask (gimage);
|
|
|
|
|
|
|
|
gimp_channel_select_rectangle (selection_mask,
|
|
|
|
x, y, w, h,
|
|
|
|
options->operation,
|
|
|
|
options->feather,
|
|
|
|
options->feather_radius,
|
|
|
|
options->feather_radius);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-07-12 03:21:52 +08:00
|
|
|
val = gimp_pickable_get_opacity_at (GIMP_PICKABLE (selection_mask),
|
2005-08-15 22:23:28 +08:00
|
|
|
gimp_rectangle_tool_get_pressx (rectangle), gimp_rectangle_tool_get_pressy (rectangle));
|
2005-04-10 02:08:47 +08:00
|
|
|
|
|
|
|
selected = (val > 127);
|
|
|
|
|
|
|
|
/* if point clicked is inside selection, set rectangle to */
|
|
|
|
/* selection bounds. */
|
|
|
|
if (selected)
|
|
|
|
{
|
|
|
|
if (! gimp_channel_bounds (selection_mask,
|
2005-08-15 22:23:28 +08:00
|
|
|
&x1, &y1,
|
|
|
|
&x2, &y2))
|
2005-04-10 02:08:47 +08:00
|
|
|
{
|
2005-08-15 22:23:28 +08:00
|
|
|
gimp_rectangle_tool_set_x1 (rectangle, x1);
|
|
|
|
gimp_rectangle_tool_set_y1 (rectangle, y1);
|
|
|
|
gimp_rectangle_tool_set_x2 (rectangle, x2);
|
|
|
|
gimp_rectangle_tool_set_y2 (rectangle, y2);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gimp_rectangle_tool_set_x1 (rectangle, 0);
|
|
|
|
gimp_rectangle_tool_set_y1 (rectangle, 0);
|
|
|
|
gimp_rectangle_tool_set_x2 (rectangle, gimage->width);
|
|
|
|
gimp_rectangle_tool_set_y2 (rectangle, gimage->height);
|
2005-04-10 02:08:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* otherwise clear the selection */
|
|
|
|
gimp_channel_clear (selection_mask, NULL, TRUE);
|
|
|
|
|
|
|
|
return TRUE;
|
2005-02-01 02:43:28 +08:00
|
|
|
}
|
|
|
|
|