2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2003-02-05 22:39:40 +08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2003-02-05 22:39:40 +08:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-18 06:28:01 +08:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2003-02-05 22:39:40 +08:00
|
|
|
* (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
|
2009-01-18 06:28:01 +08:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2003-02-05 22:39:40 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GIMP_BUCKET_FILL_OPTIONS_H__
|
|
|
|
#define __GIMP_BUCKET_FILL_OPTIONS_H__
|
|
|
|
|
|
|
|
|
|
|
|
#include "paint/gimppaintoptions.h"
|
|
|
|
|
|
|
|
|
|
|
|
#define GIMP_TYPE_BUCKET_FILL_OPTIONS (gimp_bucket_fill_options_get_type ())
|
|
|
|
#define GIMP_BUCKET_FILL_OPTIONS(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_BUCKET_FILL_OPTIONS, GimpBucketFillOptions))
|
|
|
|
#define GIMP_BUCKET_FILL_OPTIONS_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_BUCKET_FILL_OPTIONS, GimpBucketFillOptionsClass))
|
|
|
|
#define GIMP_IS_BUCKET_FILL_OPTIONS(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_BUCKET_FILL_OPTIONS))
|
|
|
|
#define GIMP_IS_BUCKET_FILL_OPTIONS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_BUCKET_FILL_OPTIONS))
|
|
|
|
#define GIMP_BUCKET_FILL_OPTIONS_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_BUCKET_FILL_OPTIONS, GimpBucketFillOptionsClass))
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct _GimpBucketFillOptions GimpBucketFillOptions;
|
|
|
|
typedef struct _GimpPaintOptionsClass GimpBucketFillOptionsClass;
|
|
|
|
|
|
|
|
struct _GimpBucketFillOptions
|
|
|
|
{
|
|
|
|
GimpPaintOptions paint_options;
|
|
|
|
|
2004-01-27 23:26:11 +08:00
|
|
|
GimpBucketFillMode fill_mode;
|
|
|
|
gboolean fill_selection;
|
2003-02-05 22:39:40 +08:00
|
|
|
gboolean fill_transparent;
|
|
|
|
gboolean sample_merged;
|
|
|
|
gdouble threshold;
|
Applied (modified and enhanced) patch from Chris Moller which allows tools
2006-08-05 Michael Natterer <mitch@gimp.org>
Applied (modified and enhanced) patch from Chris Moller which allows
tools to distinguish similar colors not only by composite, but also
by R, G, B, H, S and V. Fixes bug #348291.
* app/core/core-enums.[ch]: added new enum GimpSelectCriterion
which can be one of { COMPOSITE, R, G, B, H, S, V }.
* app/core/gimpimage-contiguous-region.[ch]: added
select_criterion params and create the region based on difference
by the selected criterion.
* app/core/gimpchannel-select.[ch]
* app/core/gimpdrawable-bucket-fill.[ch]: take criterion params and
pass them through to the contiguous region functions.
* app/tools/gimpbucketfilloptions.[ch]
* app/tools/gimpselectionoptions.[ch]: added criterion properties
and GUI to select it.
* app/tools/gimpbucketfilltool.c
* app/tools/gimpbycolorselecttool.c
* app/tools/gimpfuzzyselecttool.c: pass the selected criterion to
the resp. core functions.
* app/widgets/gimpdrawabletreeview.c
* app/widgets/gimpselectioneditor.c
* app/display/gimpdisplayshell-dnd.c
* tools/pdbgen/pdb/edit.pdb
* tools/pdbgen/pdb/selection_tools.pdb: changed accordingly
(simply pass GIMP_SELECT_CRITERION_COMPOSITE in most cases).
* app/pdb/edit_cmds.c
* app/pdb/selection_tools_cmds.c: regenerated.
2006-08-05 21:02:47 +08:00
|
|
|
GimpSelectCriterion fill_criterion;
|
2003-02-05 22:39:40 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-02-10 01:32:52 +08:00
|
|
|
GType gimp_bucket_fill_options_get_type (void) G_GNUC_CONST;
|
2003-02-05 22:39:40 +08:00
|
|
|
|
2003-02-10 01:32:52 +08:00
|
|
|
GtkWidget * gimp_bucket_fill_options_gui (GimpToolOptions *tool_options);
|
2003-02-05 22:39:40 +08:00
|
|
|
|
|
|
|
|
|
|
|
#endif /* __GIMP_BUCKET_FILL_OPTIONS_H__ */
|