2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
1998-06-15 06:42:36 +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
|
1998-06-15 06:42:36 +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
|
1998-06-15 06:42:36 +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
|
2018-07-12 05:27:07 +08:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
1998-06-15 06:42:36 +08:00
|
|
|
*/
|
2000-12-29 23:22:01 +08:00
|
|
|
|
2004-05-26 23:34:45 +08:00
|
|
|
#ifndef __GIMP_INK_H__
|
|
|
|
#define __GIMP_INK_H__
|
1998-06-15 06:42:36 +08:00
|
|
|
|
|
|
|
|
2004-05-26 23:34:45 +08:00
|
|
|
#include "gimppaintcore.h"
|
|
|
|
#include "gimpink-blob.h"
|
1998-06-15 06:42:36 +08:00
|
|
|
|
2000-12-31 12:07:42 +08:00
|
|
|
|
2004-05-26 23:34:45 +08:00
|
|
|
#define GIMP_TYPE_INK (gimp_ink_get_type ())
|
|
|
|
#define GIMP_INK(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_INK, GimpInk))
|
|
|
|
#define GIMP_INK_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_INK, GimpInkClass))
|
|
|
|
#define GIMP_IS_INK(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_INK))
|
|
|
|
#define GIMP_IS_INK_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_INK))
|
|
|
|
#define GIMP_INK_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_INK, GimpInkClass))
|
2001-02-28 08:10:58 +08:00
|
|
|
|
|
|
|
|
2004-05-26 23:34:45 +08:00
|
|
|
typedef struct _GimpInkClass GimpInkClass;
|
2001-02-28 08:10:58 +08:00
|
|
|
|
2004-05-26 23:34:45 +08:00
|
|
|
struct _GimpInk
|
2001-02-28 08:10:58 +08:00
|
|
|
{
|
2004-05-26 23:34:45 +08:00
|
|
|
GimpPaintCore parent_instance;
|
2001-02-28 08:10:58 +08:00
|
|
|
|
2023-06-26 12:20:11 +08:00
|
|
|
GList *start_blobs; /* starting blobs per stroke (for undo) */
|
2005-01-15 04:13:54 +08:00
|
|
|
|
2023-06-26 12:20:11 +08:00
|
|
|
GimpBlob *cur_blob; /* current blob */
|
|
|
|
GList *last_blobs; /* blobs for last stroke positions */
|
|
|
|
GList *blobs_to_render;
|
2001-02-28 08:10:58 +08:00
|
|
|
};
|
|
|
|
|
2004-05-26 23:34:45 +08:00
|
|
|
struct _GimpInkClass
|
2001-02-28 08:10:58 +08:00
|
|
|
{
|
2004-05-26 23:34:45 +08:00
|
|
|
GimpPaintCoreClass parent_class;
|
2001-02-28 08:10:58 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2004-05-26 23:34:45 +08:00
|
|
|
void gimp_ink_register (Gimp *gimp,
|
|
|
|
GimpPaintRegisterCallback callback);
|
2001-02-28 08:10:58 +08:00
|
|
|
|
2004-05-26 23:34:45 +08:00
|
|
|
GType gimp_ink_get_type (void) G_GNUC_CONST;
|
2001-02-28 08:10:58 +08:00
|
|
|
|
|
|
|
|
2004-05-26 23:34:45 +08:00
|
|
|
#endif /* __GIMP_INK_H__ */
|