2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
1997-11-25 06:05:25 +08:00
|
|
|
* 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-01-14 20:41:00 +08:00
|
|
|
#include "config.h"
|
|
|
|
|
2000-12-17 05:37:03 +08:00
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
2001-01-25 06:36:18 +08:00
|
|
|
#include "libgimpwidgets/gimpwidgets.h"
|
|
|
|
|
2002-05-03 20:45:22 +08:00
|
|
|
#include "tools-types.h"
|
2000-12-17 05:37:03 +08:00
|
|
|
|
2002-02-15 03:31:16 +08:00
|
|
|
#include "paint/gimpclone.h"
|
2003-02-05 22:39:40 +08:00
|
|
|
#include "paint/gimpcloneoptions.h"
|
2002-02-15 03:31:16 +08:00
|
|
|
|
2003-08-22 09:42:57 +08:00
|
|
|
#include "widgets/gimphelp-ids.h"
|
2004-10-12 20:06:50 +08:00
|
|
|
#include "widgets/gimpviewablebox.h"
|
|
|
|
#include "widgets/gimpwidgets-utils.h"
|
2002-03-20 03:17:31 +08:00
|
|
|
|
2003-08-22 09:42:57 +08:00
|
|
|
#include "display/gimpdisplay.h"
|
|
|
|
|
2001-04-19 21:01:44 +08:00
|
|
|
#include "gimpclonetool.h"
|
2003-06-30 04:40:45 +08:00
|
|
|
#include "gimppaintoptions-gui.h"
|
2003-04-16 00:05:52 +08:00
|
|
|
#include "gimptoolcontrol.h"
|
2001-04-19 21:01:44 +08:00
|
|
|
|
2003-03-26 00:38:19 +08:00
|
|
|
#include "gimp-intl.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
|
|
|
|
2000-12-29 23:22:01 +08:00
|
|
|
|
2006-09-04 07:11:35 +08:00
|
|
|
static GtkWidget * gimp_clone_options_gui (GimpToolOptions *tool_options);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-01-14 20:41:00 +08:00
|
|
|
|
2006-09-04 07:11:35 +08:00
|
|
|
G_DEFINE_TYPE (GimpCloneTool, gimp_clone_tool, GIMP_TYPE_SOURCE_TOOL)
|
2001-04-19 21:01:44 +08:00
|
|
|
|
2005-12-13 17:13:50 +08:00
|
|
|
#define parent_class gimp_clone_tool_parent_class
|
2001-11-21 07:00:47 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2001-04-19 21:01:44 +08:00
|
|
|
void
|
2002-03-29 11:50:29 +08:00
|
|
|
gimp_clone_tool_register (GimpToolRegisterCallback callback,
|
2002-05-03 19:31:08 +08:00
|
|
|
gpointer data)
|
1999-04-09 06:25:54 +08:00
|
|
|
{
|
2002-03-29 11:50:29 +08:00
|
|
|
(* callback) (GIMP_TYPE_CLONE_TOOL,
|
2003-02-05 22:39:40 +08:00
|
|
|
GIMP_TYPE_CLONE_OPTIONS,
|
|
|
|
gimp_clone_options_gui,
|
2003-06-30 04:40:45 +08:00
|
|
|
GIMP_PAINT_OPTIONS_CONTEXT_MASK |
|
2003-06-28 19:20:37 +08:00
|
|
|
GIMP_CONTEXT_PATTERN_MASK,
|
2002-03-21 20:17:17 +08:00
|
|
|
"gimp-clone-tool",
|
2001-11-21 07:00:47 +08:00
|
|
|
_("Clone"),
|
2006-09-19 02:00:22 +08:00
|
|
|
_("Clone Tool: Selectively copy from an image or pattern, using a brush"),
|
2004-04-29 21:19:28 +08:00
|
|
|
N_("_Clone"), "C",
|
2003-08-22 09:42:57 +08:00
|
|
|
NULL, GIMP_HELP_TOOL_CLONE,
|
2002-03-29 11:50:29 +08:00
|
|
|
GIMP_STOCK_TOOL_CLONE,
|
2002-05-03 19:31:08 +08:00
|
|
|
data);
|
2001-04-19 21:01:44 +08:00
|
|
|
}
|
1999-04-09 06:25:54 +08:00
|
|
|
|
2001-04-19 21:01:44 +08:00
|
|
|
static void
|
|
|
|
gimp_clone_tool_class_init (GimpCloneToolClass *klass)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2001-04-19 21:01:44 +08:00
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2001-04-19 21:01:44 +08:00
|
|
|
static void
|
|
|
|
gimp_clone_tool_init (GimpCloneTool *clone)
|
|
|
|
{
|
2006-09-04 07:11:35 +08:00
|
|
|
GimpTool *tool = GIMP_TOOL (clone);
|
|
|
|
GimpPaintTool *paint_tool = GIMP_PAINT_TOOL (tool);
|
|
|
|
GimpSourceTool *source_tool = GIMP_SOURCE_TOOL (tool);
|
1999-02-05 17:55:44 +08:00
|
|
|
|
2005-03-05 03:05:40 +08:00
|
|
|
gimp_tool_control_set_tool_cursor (tool->control,
|
|
|
|
GIMP_TOOL_CURSOR_CLONE);
|
|
|
|
gimp_tool_control_set_action_object_2 (tool->control,
|
|
|
|
"context/context-pattern-select-set");
|
2006-08-02 07:42:12 +08:00
|
|
|
|
2006-09-04 07:11:35 +08:00
|
|
|
paint_tool->status = _("Click to clone");
|
2006-08-02 07:42:12 +08:00
|
|
|
paint_tool->status_ctrl = _("%s to set a new clone source");
|
2004-06-22 23:31:14 +08:00
|
|
|
|
2006-09-12 14:37:54 +08:00
|
|
|
source_tool->status_paint = _("Click to clone");
|
2006-09-04 07:11:35 +08:00
|
|
|
source_tool->status_set_source = _("Click to set a new clone source");
|
|
|
|
source_tool->status_set_source_ctrl = _("%s to set a new clone source");
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2002-02-15 03:31:16 +08:00
|
|
|
|
2002-02-22 00:02:30 +08:00
|
|
|
/* tool options stuff */
|
2001-04-19 21:01:44 +08:00
|
|
|
|
2003-02-10 01:32:52 +08:00
|
|
|
static GtkWidget *
|
2003-02-05 22:39:40 +08:00
|
|
|
gimp_clone_options_gui (GimpToolOptions *tool_options)
|
2001-04-19 21:01:44 +08:00
|
|
|
{
|
2004-06-22 23:31:14 +08:00
|
|
|
GObject *config = G_OBJECT (tool_options);
|
2006-08-28 06:19:35 +08:00
|
|
|
GtkWidget *vbox = gimp_paint_options_gui (tool_options);
|
2003-02-08 01:12:21 +08:00
|
|
|
GtkWidget *frame;
|
2005-08-29 03:17:44 +08:00
|
|
|
GtkWidget *button;
|
2005-12-16 22:44:25 +08:00
|
|
|
GtkWidget *hbox;
|
|
|
|
GtkWidget *table;
|
|
|
|
GtkWidget *combo;
|
2001-04-19 21:01:44 +08:00
|
|
|
|
2003-02-08 01:12:21 +08:00
|
|
|
frame = gimp_prop_enum_radio_frame_new (config, "clone-type",
|
2005-12-16 22:44:25 +08:00
|
|
|
_("Source"), 0, 0);
|
2001-04-19 21:01:44 +08:00
|
|
|
gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (frame);
|
|
|
|
|
2005-09-10 20:05:04 +08:00
|
|
|
button = gimp_prop_check_button_new (config, "sample-merged",
|
2005-09-10 20:11:24 +08:00
|
|
|
_("Sample merged"));
|
2005-09-10 20:05:04 +08:00
|
|
|
gimp_enum_radio_frame_add (GTK_FRAME (frame), button, GIMP_IMAGE_CLONE);
|
|
|
|
|
2006-01-14 08:09:22 +08:00
|
|
|
hbox = gimp_prop_pattern_box_new (NULL, GIMP_CONTEXT (tool_options), 2,
|
|
|
|
"pattern-view-type", "pattern-view-size");
|
2004-10-12 20:06:50 +08:00
|
|
|
gimp_enum_radio_frame_add (GTK_FRAME (frame), hbox, GIMP_PATTERN_CLONE);
|
|
|
|
|
2005-12-16 22:44:25 +08:00
|
|
|
table = gtk_table_new (1, 2, FALSE);
|
|
|
|
gtk_table_set_col_spacings (GTK_TABLE (table), 2);
|
|
|
|
gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (table);
|
|
|
|
|
|
|
|
combo = gimp_prop_enum_combo_box_new (config, "align-mode", 0, 0);
|
|
|
|
gimp_table_attach_aligned (GTK_TABLE (table), 0, 0,
|
|
|
|
_("Alignment:"), 0.0, 0.5,
|
|
|
|
combo, 1, FALSE);
|
2003-02-10 01:32:52 +08:00
|
|
|
|
|
|
|
return vbox;
|
2001-04-19 21:01:44 +08:00
|
|
|
}
|