2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2003-09-27 01:33:49 +08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* gimpstrokeeditor.h
|
|
|
|
* Copyright (C) 2003 Sven Neumann <sven@gimp.org>
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2003-09-27 01:33:49 +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-09-27 01:33:49 +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-09-27 01:33:49 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GIMP_STROKE_EDITOR_H__
|
|
|
|
#define __GIMP_STROKE_EDITOR_H__
|
|
|
|
|
|
|
|
|
2008-10-25 01:55:30 +08:00
|
|
|
#include "gimpfilleditor.h"
|
|
|
|
|
|
|
|
|
2003-09-27 01:33:49 +08:00
|
|
|
#define GIMP_TYPE_STROKE_EDITOR (gimp_stroke_editor_get_type ())
|
|
|
|
#define GIMP_STROKE_EDITOR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_STROKE_EDITOR, GimpStrokeEditor))
|
|
|
|
#define GIMP_STROKE_EDITOR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_STROKE_EDITOR, GimpStrokeEditorClass))
|
|
|
|
#define GIMP_IS_STROKE_EDITOR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_STROKE_EDITOR))
|
|
|
|
#define GIMP_IS_STROKE_EDITOR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_STROKE_EDITOR))
|
|
|
|
#define GIMP_STROKE_EDITOR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_STROKE_EDITOR, GimpStrokeEditorClass))
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct _GimpStrokeEditorClass GimpStrokeEditorClass;
|
|
|
|
|
|
|
|
struct _GimpStrokeEditor
|
|
|
|
{
|
2008-10-25 01:55:30 +08:00
|
|
|
GimpFillEditor parent_instance;
|
2003-09-27 01:33:49 +08:00
|
|
|
|
2008-10-25 01:55:30 +08:00
|
|
|
gdouble resolution;
|
2003-09-27 01:33:49 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GimpStrokeEditorClass
|
|
|
|
{
|
2008-10-25 01:55:30 +08:00
|
|
|
GimpFillEditorClass parent_class;
|
2003-09-27 01:33:49 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2008-10-25 01:55:30 +08:00
|
|
|
GType gimp_stroke_editor_get_type (void) G_GNUC_CONST;
|
2003-09-27 01:33:49 +08:00
|
|
|
|
2008-10-25 01:55:30 +08:00
|
|
|
GtkWidget * gimp_stroke_editor_new (GimpStrokeOptions *options,
|
2008-10-25 06:34:24 +08:00
|
|
|
gdouble resolution,
|
|
|
|
gboolean edit_context);
|
2003-09-27 01:33:49 +08:00
|
|
|
|
|
|
|
|
2008-10-25 01:55:30 +08:00
|
|
|
#endif /* __GIMP_STROKE_EDITOR_H__ */
|