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-04-28 01:27:28 +08:00
|
|
|
#include "config.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-07-07 20:17:23 +08:00
|
|
|
#include "core/gimp.h"
|
2001-05-09 10:32:03 +08:00
|
|
|
#include "core/gimpcontext.h"
|
|
|
|
#include "core/gimpdrawable.h"
|
2001-11-09 03:14:51 +08:00
|
|
|
#include "core/gimpdrawable-bucket-fill.h"
|
2001-05-09 10:32:03 +08:00
|
|
|
#include "core/gimpimage.h"
|
|
|
|
#include "core/gimpimage-mask.h"
|
2001-11-20 21:53:21 +08:00
|
|
|
#include "core/gimptoolinfo.h"
|
2001-05-09 10:32:03 +08:00
|
|
|
|
2002-02-22 00:02:30 +08:00
|
|
|
#include "paint/gimppaintoptions.h"
|
|
|
|
|
2001-09-26 07:23:09 +08:00
|
|
|
#include "display/gimpdisplay.h"
|
2001-10-13 20:52:30 +08:00
|
|
|
#include "display/gimpdisplay-foreach.h"
|
2001-09-26 07:23:09 +08:00
|
|
|
|
2001-03-08 09:07:03 +08:00
|
|
|
#include "gimpbucketfilltool.h"
|
2001-01-25 06:36:18 +08:00
|
|
|
#include "paint_options.h"
|
|
|
|
|
removed the gimp_busy boolean, check whether user_installation is needed
2001-07-10 Michael Natterer <mitch@gimp.org>
* app/app_procs.[ch]: removed the gimp_busy boolean, check whether
user_installation is needed here, not in user_install.c, parse
gtkrc an friends only if(!no_interface), create the Gimp object
before parsing gimp's rc files an pas it to the parse functions,
many other cleanups.
* app/appenums.h: added MessageHandlerType and StackTraceMode.
* app/appenv.h: removed MessageHandlerType, declare all global
variables from main.c (no more hidden global stuff please).
* app/errors.[ch]: added the fatal message func here (from main.c),
removed the StackTraceMode enum.
* app/gimprc.[ch]: renamed functions to gimprc_*(), pass a Gimp
pointer to some functions.
* app/gimpunit.c
* app/unitrc.h: ok, this is ugly: renamed all functions to
_gimp_unit_*() and made them public. The unit list is part
of the Gimp object now, so pass a Gimp* to all functions.
* app/libgimp_glue.[ch]: added EEKy wrappers for all gimp_unit_*()
functions which are used by widgets.
* app/main.c: cleaned up the global variables, removed the fatal
message handler, call app_init() directly, not via the
user_install stuff, misc. cleanups.
* app/user_install.[ch]: removed the check if user_installation is
needed (done by app_procs.c now).
* app/core/gimp.[ch]: added the user_unit list and the "busy"
boolean. Moved gimp_[set|unset]_busy() here. Added
gimp_initialize() which is called after unitrc and gimprc are
parsed.
* app/batch.c
* app/colormaps.c
* app/devices.c
* app/disp_callbacks.c
* app/gdisplay_ops.c
* app/gimphelp.c
* app/module_db.c
* app/nav_window.c
* app/plug_in.c
* app/core/gimpcontext.c
* app/core/gimpdatafiles.c
* app/core/gimpimage-convert.c
* app/core/gimpimage-duplicate.c
* app/core/gimpimage.c
* app/core/gimpparasite.c
* app/core/gimpparasitelist.h
* app/gui/file-open-dialog.c
* app/gui/gui.[ch]
* app/gui/info-dialog.c
* app/gui/info-window.c
* app/gui/preferences-dialog.c
* app/gui/session.c
* app/gui/tips-dialog.c
* app/gui/toolbox.c
* app/tools/gimpblendtool.c
* app/tools/gimpbucketfilltool.c
* app/tools/gimpcolorpickertool.c
* app/tools/gimpfuzzyselecttool.c
* app/tools/gimptransformtool.c
* app/tools/tool_manager.c
* app/widgets/gimpcolorpanel.c
* app/widgets/gimpcursor.c
* app/xcf/xcf-load.c
* app/xcf/xcf-save.c
* app/xcf/xcf.c
* tools/pdbgen/Makefile.am
* tools/pdbgen/app.pl
* tools/pdbgen/enums.pl
* tools/pdbgen/pdb/image.pdb
* tools/pdbgen/pdb/message.pdb
* tools/pdbgen/pdb/unit.pdb
* app/pdb/image_cmds.c
* app/pdb/message_cmds.c
* app/pdb/unit_cmds.c: changed accordingly, minor cleanups.
2001-07-11 03:16:16 +08:00
|
|
|
#include "gimprc.h"
|
|
|
|
#include "undo.h"
|
2001-01-22 05:58:16 +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"
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-04-09 06:25:54 +08:00
|
|
|
typedef struct _BucketOptions BucketOptions;
|
2000-12-29 23:22:01 +08:00
|
|
|
|
1999-04-09 06:25:54 +08:00
|
|
|
struct _BucketOptions
|
|
|
|
{
|
2002-02-22 00:02:30 +08:00
|
|
|
GimpPaintOptions paint_options;
|
1999-04-09 06:25:54 +08:00
|
|
|
|
2002-02-22 00:02:30 +08:00
|
|
|
gboolean fill_transparent;
|
|
|
|
gboolean fill_transparent_d;
|
|
|
|
GtkWidget *fill_transparent_w;
|
2002-02-10 23:18:08 +08:00
|
|
|
|
2002-02-22 00:02:30 +08:00
|
|
|
gboolean sample_merged;
|
|
|
|
gboolean sample_merged_d;
|
|
|
|
GtkWidget *sample_merged_w;
|
1999-04-18 07:18:43 +08:00
|
|
|
|
2002-02-22 00:02:30 +08:00
|
|
|
gdouble threshold;
|
|
|
|
/* gdouble threshold_d; (from gimprc) */
|
|
|
|
GtkObject *threshold_w;
|
2000-04-20 23:57:13 +08:00
|
|
|
|
1999-04-19 05:22:41 +08:00
|
|
|
BucketFillMode fill_mode;
|
|
|
|
BucketFillMode fill_mode_d;
|
1999-04-28 05:06:00 +08:00
|
|
|
GtkWidget *fill_mode_w[3];
|
1999-04-09 06:25:54 +08:00
|
|
|
};
|
|
|
|
|
1999-04-13 01:55:06 +08:00
|
|
|
|
2001-11-21 07:00:47 +08:00
|
|
|
static GimpToolClass *parent_class = NULL;
|
2001-02-28 09:05:22 +08:00
|
|
|
|
1999-04-09 06:25:54 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
/* local function prototypes */
|
1999-06-22 06:12:07 +08:00
|
|
|
|
2001-02-28 09:05:22 +08:00
|
|
|
static void gimp_bucket_fill_tool_class_init (GimpBucketFillToolClass *klass);
|
|
|
|
static void gimp_bucket_fill_tool_init (GimpBucketFillTool *bucket_fill_tool);
|
|
|
|
|
2001-07-18 04:50:01 +08:00
|
|
|
static void gimp_bucket_fill_tool_button_press (GimpTool *tool,
|
2001-11-09 03:14:51 +08:00
|
|
|
GimpCoords *coords,
|
|
|
|
guint32 time,
|
|
|
|
GdkModifierType state,
|
2001-10-22 20:13:44 +08:00
|
|
|
GimpDisplay *gdisp);
|
2001-07-18 04:50:01 +08:00
|
|
|
static void gimp_bucket_fill_tool_button_release (GimpTool *tool,
|
2001-11-09 03:14:51 +08:00
|
|
|
GimpCoords *coords,
|
|
|
|
guint32 time,
|
|
|
|
GdkModifierType state,
|
2001-10-22 20:13:44 +08:00
|
|
|
GimpDisplay *gdisp);
|
2001-07-18 04:50:01 +08:00
|
|
|
static void gimp_bucket_fill_tool_modifier_key (GimpTool *tool,
|
2001-11-09 03:14:51 +08:00
|
|
|
GdkModifierType key,
|
|
|
|
gboolean press,
|
|
|
|
GdkModifierType state,
|
|
|
|
GimpDisplay *gdisp);
|
|
|
|
static void gimp_bucket_fill_tool_cursor_update (GimpTool *tool,
|
|
|
|
GimpCoords *coords,
|
|
|
|
GdkModifierType state,
|
2001-10-22 20:13:44 +08:00
|
|
|
GimpDisplay *gdisp);
|
2001-07-18 04:50:01 +08:00
|
|
|
|
2001-11-21 07:00:47 +08:00
|
|
|
static GimpToolOptions * bucket_options_new (GimpToolInfo *tool_info);
|
|
|
|
static void bucket_options_reset (GimpToolOptions *tool_options);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
|
2001-11-09 03:14:51 +08:00
|
|
|
/* public functions */
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2001-02-28 09:05:22 +08:00
|
|
|
void
|
2001-11-21 07:00:47 +08:00
|
|
|
gimp_bucket_fill_tool_register (Gimp *gimp,
|
|
|
|
GimpToolRegisterCallback callback)
|
2001-02-28 09:05:22 +08:00
|
|
|
{
|
2001-11-21 07:00:47 +08:00
|
|
|
(* callback) (gimp,
|
|
|
|
GIMP_TYPE_BUCKET_FILL_TOOL,
|
|
|
|
bucket_options_new,
|
|
|
|
TRUE,
|
|
|
|
"gimp:bucket_fill_tool",
|
|
|
|
_("Bucket Fill"),
|
|
|
|
_("Fill with a color or pattern"),
|
|
|
|
N_("/Tools/Paint Tools/Bucket Fill"), "<shift>B",
|
|
|
|
NULL, "tools/bucket_fill.html",
|
|
|
|
GIMP_STOCK_TOOL_BUCKET_FILL);
|
2001-02-28 09:05:22 +08:00
|
|
|
}
|
|
|
|
|
2001-08-14 22:53:55 +08:00
|
|
|
GType
|
2001-02-28 09:05:22 +08:00
|
|
|
gimp_bucket_fill_tool_get_type (void)
|
|
|
|
{
|
2001-08-14 22:53:55 +08:00
|
|
|
static GType tool_type = 0;
|
2001-02-28 09:05:22 +08:00
|
|
|
|
|
|
|
if (! tool_type)
|
|
|
|
{
|
2001-08-14 22:53:55 +08:00
|
|
|
static const GTypeInfo tool_info =
|
2001-02-28 09:05:22 +08:00
|
|
|
{
|
|
|
|
sizeof (GimpBucketFillToolClass),
|
2001-08-14 22:53:55 +08:00
|
|
|
(GBaseInitFunc) NULL,
|
|
|
|
(GBaseFinalizeFunc) NULL,
|
|
|
|
(GClassInitFunc) gimp_bucket_fill_tool_class_init,
|
|
|
|
NULL, /* class_finalize */
|
|
|
|
NULL, /* class_data */
|
|
|
|
sizeof (GimpBucketFillTool),
|
|
|
|
0, /* n_preallocs */
|
|
|
|
(GInstanceInitFunc) gimp_bucket_fill_tool_init,
|
2001-02-28 09:05:22 +08:00
|
|
|
};
|
|
|
|
|
2001-08-14 22:53:55 +08:00
|
|
|
tool_type = g_type_register_static (GIMP_TYPE_TOOL,
|
|
|
|
"GimpBucketFillTool",
|
|
|
|
&tool_info, 0);
|
2001-02-28 09:05:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return tool_type;
|
|
|
|
}
|
|
|
|
|
2001-11-09 03:14:51 +08:00
|
|
|
|
|
|
|
/* private functions */
|
|
|
|
|
2001-02-28 09:05:22 +08:00
|
|
|
static void
|
|
|
|
gimp_bucket_fill_tool_class_init (GimpBucketFillToolClass *klass)
|
|
|
|
{
|
2001-08-14 22:53:55 +08:00
|
|
|
GimpToolClass *tool_class;
|
2001-02-28 09:05:22 +08:00
|
|
|
|
2001-08-14 22:53:55 +08:00
|
|
|
tool_class = GIMP_TOOL_CLASS (klass);
|
2001-02-28 09:05:22 +08:00
|
|
|
|
2001-08-14 22:53:55 +08:00
|
|
|
parent_class = g_type_class_peek_parent (klass);
|
2001-02-28 09:05:22 +08:00
|
|
|
|
|
|
|
tool_class->button_press = gimp_bucket_fill_tool_button_press;
|
|
|
|
tool_class->button_release = gimp_bucket_fill_tool_button_release;
|
|
|
|
tool_class->modifier_key = gimp_bucket_fill_tool_modifier_key;
|
|
|
|
tool_class->cursor_update = gimp_bucket_fill_tool_cursor_update;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_bucket_fill_tool_init (GimpBucketFillTool *bucket_fill_tool)
|
|
|
|
{
|
|
|
|
GimpTool *tool;
|
|
|
|
|
|
|
|
tool = GIMP_TOOL (bucket_fill_tool);
|
|
|
|
|
2001-04-01 01:08:55 +08:00
|
|
|
tool->tool_cursor = GIMP_BUCKET_FILL_TOOL_CURSOR;
|
2001-02-28 09:05:22 +08:00
|
|
|
tool->scroll_lock = TRUE; /* Disallow scrolling */
|
|
|
|
}
|
|
|
|
|
1999-04-09 06:25:54 +08:00
|
|
|
static void
|
2001-11-09 03:14:51 +08:00
|
|
|
gimp_bucket_fill_tool_button_press (GimpTool *tool,
|
|
|
|
GimpCoords *coords,
|
|
|
|
guint32 time,
|
|
|
|
GdkModifierType state,
|
|
|
|
GimpDisplay *gdisp)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2001-02-28 09:05:22 +08:00
|
|
|
GimpBucketFillTool *bucket_tool;
|
2001-11-20 21:53:21 +08:00
|
|
|
BucketOptions *options;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2001-02-28 09:05:22 +08:00
|
|
|
bucket_tool = GIMP_BUCKET_FILL_TOOL (tool);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2001-11-20 21:53:21 +08:00
|
|
|
options = (BucketOptions *) tool->tool_info->tool_options;
|
|
|
|
|
2001-11-09 03:14:51 +08:00
|
|
|
bucket_tool->target_x = coords->x;
|
|
|
|
bucket_tool->target_y = coords->y;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2001-11-20 21:53:21 +08:00
|
|
|
if (! options->sample_merged)
|
2001-11-09 03:14:51 +08:00
|
|
|
{
|
|
|
|
gint off_x, off_y;
|
|
|
|
|
|
|
|
gimp_drawable_offsets (gimp_image_active_drawable (gdisp->gimage),
|
|
|
|
&off_x, &off_y);
|
|
|
|
|
|
|
|
bucket_tool->target_x -= off_x;
|
|
|
|
bucket_tool->target_y -= off_y;
|
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-12-31 12:07:42 +08:00
|
|
|
tool->gdisp = gdisp;
|
1997-11-25 06:05:25 +08:00
|
|
|
tool->state = ACTIVE;
|
|
|
|
}
|
|
|
|
|
1998-03-19 06:35:31 +08:00
|
|
|
static void
|
2001-11-09 03:14:51 +08:00
|
|
|
gimp_bucket_fill_tool_button_release (GimpTool *tool,
|
|
|
|
GimpCoords *coords,
|
|
|
|
guint32 time,
|
|
|
|
GdkModifierType state,
|
|
|
|
GimpDisplay *gdisp)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2001-02-28 09:05:22 +08:00
|
|
|
GimpBucketFillTool *bucket_tool;
|
2001-11-20 21:53:21 +08:00
|
|
|
BucketOptions *options;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2001-02-28 09:05:22 +08:00
|
|
|
bucket_tool = GIMP_BUCKET_FILL_TOOL (tool);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2001-11-20 21:53:21 +08:00
|
|
|
options = (BucketOptions *) tool->tool_info->tool_options;
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
/* if the 3rd button isn't pressed, fill the selected region */
|
2001-11-09 03:14:51 +08:00
|
|
|
if (! (state & GDK_BUTTON3_MASK))
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2001-07-07 20:17:23 +08:00
|
|
|
GimpContext *context;
|
|
|
|
|
|
|
|
context = gimp_get_current_context (gdisp->gimage->gimp);
|
|
|
|
|
2002-02-10 23:18:08 +08:00
|
|
|
gimp_drawable_bucket_fill (gimp_image_active_drawable (gdisp->gimage),
|
|
|
|
options->fill_mode,
|
|
|
|
gimp_context_get_paint_mode (context),
|
|
|
|
gimp_context_get_opacity (context),
|
|
|
|
options->fill_transparent,
|
|
|
|
options->threshold,
|
|
|
|
options->sample_merged,
|
|
|
|
bucket_tool->target_x,
|
|
|
|
bucket_tool->target_y);
|
|
|
|
|
|
|
|
gdisplays_flush ();
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
tool->state = INACTIVE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-11-09 03:14:51 +08:00
|
|
|
gimp_bucket_fill_tool_modifier_key (GimpTool *tool,
|
|
|
|
GdkModifierType key,
|
|
|
|
gboolean press,
|
|
|
|
GdkModifierType state,
|
|
|
|
GimpDisplay *gdisp)
|
|
|
|
{
|
2001-11-20 21:53:21 +08:00
|
|
|
BucketOptions *options;
|
|
|
|
|
|
|
|
options = (BucketOptions *) tool->tool_info->tool_options;
|
|
|
|
|
2001-11-09 03:14:51 +08:00
|
|
|
if (key == GDK_CONTROL_MASK)
|
|
|
|
{
|
2001-11-20 21:53:21 +08:00
|
|
|
switch (options->fill_mode)
|
2001-11-09 03:14:51 +08:00
|
|
|
{
|
|
|
|
case FG_BUCKET_FILL:
|
2001-11-22 21:01:26 +08:00
|
|
|
gimp_radio_group_set_active
|
|
|
|
(GTK_RADIO_BUTTON (options->fill_mode_w[0]),
|
|
|
|
GINT_TO_POINTER (BG_BUCKET_FILL));
|
2001-11-09 03:14:51 +08:00
|
|
|
break;
|
|
|
|
case BG_BUCKET_FILL:
|
2001-11-22 21:01:26 +08:00
|
|
|
gimp_radio_group_set_active
|
|
|
|
(GTK_RADIO_BUTTON (options->fill_mode_w[0]),
|
|
|
|
GINT_TO_POINTER (FG_BUCKET_FILL));
|
2001-11-09 03:14:51 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_bucket_fill_tool_cursor_update (GimpTool *tool,
|
|
|
|
GimpCoords *coords,
|
|
|
|
GdkModifierType state,
|
|
|
|
GimpDisplay *gdisp)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2001-11-20 21:53:21 +08:00
|
|
|
BucketOptions *options;
|
2001-02-25 03:29:47 +08:00
|
|
|
GimpLayer *layer;
|
|
|
|
GimpCursorModifier cmodifier = GIMP_CURSOR_MODIFIER_NONE;
|
|
|
|
gint off_x, off_y;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2001-11-20 21:53:21 +08:00
|
|
|
options = (BucketOptions *) tool->tool_info->tool_options;
|
|
|
|
|
2000-12-29 23:22:01 +08:00
|
|
|
if ((layer = gimp_image_get_active_layer (gdisp->gimage)))
|
1998-01-22 15:02:57 +08:00
|
|
|
{
|
2001-01-15 05:11:52 +08:00
|
|
|
gimp_drawable_offsets (GIMP_DRAWABLE (layer), &off_x, &off_y);
|
2000-07-30 00:12:40 +08:00
|
|
|
|
2001-11-09 03:14:51 +08:00
|
|
|
if (coords->x >= off_x &&
|
|
|
|
coords->y >= off_y &&
|
|
|
|
coords->x < (off_x + gimp_drawable_width (GIMP_DRAWABLE (layer))) &&
|
|
|
|
coords->y < (off_y + gimp_drawable_height (GIMP_DRAWABLE (layer))))
|
1998-01-22 15:02:57 +08:00
|
|
|
{
|
|
|
|
/* One more test--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))
|
2000-07-30 00:12:40 +08:00
|
|
|
{
|
2001-11-20 21:53:21 +08:00
|
|
|
switch (options->fill_mode)
|
2000-07-30 00:12:40 +08:00
|
|
|
{
|
|
|
|
case FG_BUCKET_FILL:
|
2001-02-25 03:29:47 +08:00
|
|
|
cmodifier = GIMP_CURSOR_MODIFIER_FOREGROUND;
|
2000-07-30 00:12:40 +08:00
|
|
|
break;
|
|
|
|
case BG_BUCKET_FILL:
|
2001-02-25 03:29:47 +08:00
|
|
|
cmodifier = GIMP_CURSOR_MODIFIER_BACKGROUND;
|
2000-07-30 00:12:40 +08:00
|
|
|
break;
|
|
|
|
case PATTERN_BUCKET_FILL:
|
2001-02-25 03:29:47 +08:00
|
|
|
cmodifier = GIMP_CURSOR_MODIFIER_PATTERN;
|
2000-07-30 00:12:40 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
1998-01-22 15:02:57 +08:00
|
|
|
}
|
|
|
|
}
|
2000-07-30 00:12:40 +08:00
|
|
|
|
2002-02-05 01:43:01 +08:00
|
|
|
tool->cursor_modifier = cmodifier;
|
|
|
|
|
|
|
|
GIMP_TOOL_CLASS (parent_class)->cursor_update (tool, coords, state, gdisp);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2001-11-21 07:00:47 +08:00
|
|
|
static GimpToolOptions *
|
|
|
|
bucket_options_new (GimpToolInfo *tool_info)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2001-11-09 03:14:51 +08:00
|
|
|
BucketOptions *options;
|
1999-01-11 07:36:29 +08:00
|
|
|
|
2001-11-09 03:14:51 +08:00
|
|
|
GtkWidget *vbox;
|
2002-02-10 23:18:08 +08:00
|
|
|
GtkWidget *vbox2;
|
2002-03-09 02:30:40 +08:00
|
|
|
GtkWidget *table;
|
2001-11-09 03:14:51 +08:00
|
|
|
GtkWidget *frame;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2001-11-09 03:14:51 +08:00
|
|
|
options = g_new0 (BucketOptions, 1);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2002-02-22 00:02:30 +08:00
|
|
|
gimp_paint_options_init ((GimpPaintOptions *) options);
|
|
|
|
|
|
|
|
paint_options_init ((GimpPaintOptions *) options, tool_info);
|
2001-11-21 07:00:47 +08:00
|
|
|
|
|
|
|
((GimpToolOptions *) options)->reset_func = bucket_options_reset;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2002-02-10 23:18:08 +08:00
|
|
|
options->fill_transparent = options->fill_transparent_d = TRUE;
|
2002-02-12 00:22:26 +08:00
|
|
|
options->sample_merged = options->sample_merged_d = FALSE;
|
2002-02-10 23:18:08 +08:00
|
|
|
options->threshold = gimprc.default_threshold;
|
|
|
|
options->fill_mode = options->fill_mode_d = FG_BUCKET_FILL;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2001-11-09 03:14:51 +08:00
|
|
|
/* the main vbox */
|
|
|
|
vbox = ((GimpToolOptions *) options)->main_vbox;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2002-02-10 23:18:08 +08:00
|
|
|
frame = gtk_frame_new (_("Finding Similar Colors"));
|
|
|
|
gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (frame);
|
|
|
|
|
|
|
|
vbox2 = gtk_vbox_new (FALSE, 0);
|
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (vbox2), 2);
|
|
|
|
gtk_container_add (GTK_CONTAINER (frame), vbox2);
|
|
|
|
gtk_widget_show (vbox2);
|
|
|
|
|
|
|
|
/* the fill transparent areas toggle */
|
|
|
|
options->fill_transparent_w =
|
|
|
|
gtk_check_button_new_with_label (_("Fill Transparent Areas"));
|
|
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (options->fill_transparent_w),
|
|
|
|
options->fill_transparent_d);
|
|
|
|
gtk_box_pack_start (GTK_BOX (vbox2), options->fill_transparent_w,
|
|
|
|
FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (options->fill_transparent_w);
|
|
|
|
|
|
|
|
gimp_help_set_help_data (options->fill_transparent_w,
|
|
|
|
_("Allow completely transparent regions "
|
|
|
|
"to be filled"), NULL);
|
|
|
|
|
|
|
|
g_signal_connect (G_OBJECT (options->fill_transparent_w), "toggled",
|
|
|
|
G_CALLBACK (gimp_toggle_button_update),
|
|
|
|
&options->fill_transparent);
|
|
|
|
|
2001-11-09 03:14:51 +08:00
|
|
|
/* the sample merged toggle */
|
|
|
|
options->sample_merged_w =
|
|
|
|
gtk_check_button_new_with_label (_("Sample Merged"));
|
2002-02-10 23:18:08 +08:00
|
|
|
gtk_box_pack_start (GTK_BOX (vbox2), options->sample_merged_w,
|
|
|
|
FALSE, FALSE, 0);
|
2001-11-09 03:14:51 +08:00
|
|
|
gtk_widget_show (options->sample_merged_w);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2002-02-12 00:22:26 +08:00
|
|
|
gimp_help_set_help_data (options->sample_merged_w,
|
|
|
|
_("Base filled area on all visible layers"), NULL);
|
|
|
|
|
|
|
|
g_signal_connect (G_OBJECT (options->sample_merged_w), "toggled",
|
|
|
|
G_CALLBACK (gimp_toggle_button_update),
|
|
|
|
&options->sample_merged);
|
|
|
|
|
2001-11-09 03:14:51 +08:00
|
|
|
/* the threshold scale */
|
2002-03-09 02:30:40 +08:00
|
|
|
table = gtk_table_new (1, 3, FALSE);
|
|
|
|
gtk_table_set_col_spacings (GTK_TABLE (table), 2);
|
|
|
|
gtk_box_pack_start (GTK_BOX (vbox2), table, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (table);
|
|
|
|
|
|
|
|
options->threshold_w = gimp_scale_entry_new (GTK_TABLE (table), 0, 0,
|
|
|
|
_("Threshold:"), -1, 50,
|
|
|
|
gimprc.default_threshold,
|
|
|
|
0.0, 255.0, 1.0, 16.0, 1,
|
|
|
|
TRUE, 0.0, 0.0,
|
|
|
|
_("Maximum color difference"),
|
|
|
|
NULL);
|
2002-02-12 00:22:26 +08:00
|
|
|
|
2001-11-09 03:14:51 +08:00
|
|
|
g_signal_connect (G_OBJECT (options->threshold_w), "value_changed",
|
|
|
|
G_CALLBACK (gimp_double_adjustment_update),
|
|
|
|
&options->threshold);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2001-11-09 03:14:51 +08:00
|
|
|
/* fill type */
|
2002-02-10 23:18:08 +08:00
|
|
|
frame = gimp_radio_group_new2 (TRUE, _("Fill Type (<Ctrl>)"),
|
|
|
|
G_CALLBACK (gimp_radio_button_update),
|
|
|
|
&options->fill_mode,
|
|
|
|
GINT_TO_POINTER (options->fill_mode),
|
|
|
|
|
|
|
|
_("FG Color Fill"),
|
|
|
|
GINT_TO_POINTER (FG_BUCKET_FILL),
|
|
|
|
&options->fill_mode_w[0],
|
|
|
|
|
|
|
|
_("BG Color Fill"),
|
|
|
|
GINT_TO_POINTER (BG_BUCKET_FILL),
|
|
|
|
&options->fill_mode_w[1],
|
|
|
|
|
|
|
|
_("Pattern Fill"),
|
|
|
|
GINT_TO_POINTER (PATTERN_BUCKET_FILL),
|
|
|
|
&options->fill_mode_w[2],
|
|
|
|
|
|
|
|
NULL);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2001-11-09 03:14:51 +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
|
|
|
|
2001-11-10 00:54:56 +08:00
|
|
|
bucket_options_reset ((GimpToolOptions *) options);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2001-11-21 07:00:47 +08:00
|
|
|
return (GimpToolOptions *) options;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-11-09 03:14:51 +08:00
|
|
|
bucket_options_reset (GimpToolOptions *tool_options)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2001-11-09 03:14:51 +08:00
|
|
|
BucketOptions *options;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2001-11-09 03:14:51 +08:00
|
|
|
options = (BucketOptions *) tool_options;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2001-11-09 03:14:51 +08:00
|
|
|
paint_options_reset (tool_options);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2002-02-12 00:22:26 +08:00
|
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (options->fill_transparent_w),
|
|
|
|
options->fill_transparent_d);
|
|
|
|
|
2001-11-09 03:14:51 +08:00
|
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (options->sample_merged_w),
|
|
|
|
options->sample_merged_d);
|
2001-11-22 21:01:26 +08:00
|
|
|
|
2001-11-09 03:14:51 +08:00
|
|
|
gtk_adjustment_set_value (GTK_ADJUSTMENT (options->threshold_w),
|
|
|
|
gimprc.default_threshold);
|
2001-11-22 21:01:26 +08:00
|
|
|
|
|
|
|
gimp_radio_group_set_active (GTK_RADIO_BUTTON (options->fill_mode_w[0]),
|
|
|
|
GINT_TO_POINTER (options->fill_mode_d));
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|