2008-10-25 01:55:30 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* gimpfilleditor.h
|
|
|
|
* Copyright (C) 2008 Michael Natterer <mitch@gimp.org>
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2008-10-25 01:55:30 +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
|
2008-10-25 01:55:30 +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/>.
|
2008-10-25 01:55:30 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GIMP_FILL_EDITOR_H__
|
|
|
|
#define __GIMP_FILL_EDITOR_H__
|
|
|
|
|
|
|
|
|
|
|
|
#define GIMP_TYPE_FILL_EDITOR (gimp_fill_editor_get_type ())
|
|
|
|
#define GIMP_FILL_EDITOR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_FILL_EDITOR, GimpFillEditor))
|
|
|
|
#define GIMP_FILL_EDITOR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_FILL_EDITOR, GimpFillEditorClass))
|
|
|
|
#define GIMP_IS_FILL_EDITOR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_FILL_EDITOR))
|
|
|
|
#define GIMP_IS_FILL_EDITOR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_FILL_EDITOR))
|
|
|
|
#define GIMP_FILL_EDITOR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_FILL_EDITOR, GimpFillEditorClass))
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct _GimpFillEditorClass GimpFillEditorClass;
|
|
|
|
|
|
|
|
struct _GimpFillEditor
|
|
|
|
{
|
2010-10-30 21:44:46 +08:00
|
|
|
GtkBox parent_instance;
|
2008-10-25 01:55:30 +08:00
|
|
|
|
|
|
|
GimpFillOptions *options;
|
2008-10-25 06:34:24 +08:00
|
|
|
gboolean edit_context;
|
2008-10-25 01:55:30 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GimpFillEditorClass
|
|
|
|
{
|
2010-10-30 21:44:46 +08:00
|
|
|
GtkBoxClass parent_class;
|
2008-10-25 01:55:30 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
GType gimp_fill_editor_get_type (void) G_GNUC_CONST;
|
|
|
|
|
2008-10-25 06:34:24 +08:00
|
|
|
GtkWidget * gimp_fill_editor_new (GimpFillOptions *options,
|
|
|
|
gboolean edit_context);
|
2008-10-25 01:55:30 +08:00
|
|
|
|
|
|
|
|
|
|
|
#endif /* __GIMP_FILL_EDITOR_H__ */
|