2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2004-05-26 04:41:09 +08:00
|
|
|
* 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
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GIMP_BRUSH_CORE_H__
|
|
|
|
#define __GIMP_BRUSH_CORE_H__
|
|
|
|
|
|
|
|
|
|
|
|
#include "gimppaintcore.h"
|
|
|
|
|
|
|
|
|
|
|
|
#define BRUSH_CORE_SUBSAMPLE 4
|
|
|
|
#define BRUSH_CORE_SOLID_SUBSAMPLE 2
|
2007-07-04 14:30:34 +08:00
|
|
|
#define BRUSH_CORE_JITTER_LUTSIZE 360
|
2004-05-26 04:41:09 +08:00
|
|
|
|
|
|
|
|
|
|
|
#define GIMP_TYPE_BRUSH_CORE (gimp_brush_core_get_type ())
|
|
|
|
#define GIMP_BRUSH_CORE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_BRUSH_CORE, GimpBrushCore))
|
|
|
|
#define GIMP_BRUSH_CORE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_BRUSH_CORE, GimpBrushCoreClass))
|
|
|
|
#define GIMP_IS_BRUSH_CORE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_BRUSH_CORE))
|
|
|
|
#define GIMP_IS_BRUSH_CORE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_BRUSH_CORE))
|
|
|
|
#define GIMP_BRUSH_CORE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_BRUSH_CORE, GimpBrushCoreClass))
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct _GimpBrushCoreClass GimpBrushCoreClass;
|
|
|
|
|
|
|
|
struct _GimpBrushCore
|
|
|
|
{
|
|
|
|
GimpPaintCore parent_instance;
|
|
|
|
|
2004-06-14 20:52:33 +08:00
|
|
|
GimpBrush *main_brush;
|
2004-05-26 04:41:09 +08:00
|
|
|
GimpBrush *brush;
|
|
|
|
gdouble spacing;
|
2004-05-26 17:32:03 +08:00
|
|
|
gdouble scale;
|
2004-05-26 04:41:09 +08:00
|
|
|
|
|
|
|
/* brush buffers */
|
2007-04-13 22:04:37 +08:00
|
|
|
TempBuf *pressure_brush;
|
2004-05-26 04:41:09 +08:00
|
|
|
|
2007-04-13 22:04:37 +08:00
|
|
|
TempBuf *solid_brushes[BRUSH_CORE_SOLID_SUBSAMPLE][BRUSH_CORE_SOLID_SUBSAMPLE];
|
|
|
|
TempBuf *last_solid_brush;
|
2004-05-26 04:41:09 +08:00
|
|
|
gboolean solid_cache_invalid;
|
|
|
|
|
2007-04-13 22:04:37 +08:00
|
|
|
TempBuf *scale_brush;
|
|
|
|
TempBuf *last_scale_brush;
|
2004-05-26 04:41:09 +08:00
|
|
|
gint last_scale_width;
|
|
|
|
gint last_scale_height;
|
2008-05-18 21:10:23 +08:00
|
|
|
gdouble last_scale;
|
2004-05-26 04:41:09 +08:00
|
|
|
|
2007-04-13 22:04:37 +08:00
|
|
|
TempBuf *scale_pixmap;
|
|
|
|
TempBuf *last_scale_pixmap;
|
2004-05-26 04:41:09 +08:00
|
|
|
gint last_scale_pixmap_width;
|
|
|
|
gint last_scale_pixmap_height;
|
|
|
|
|
2007-04-13 22:04:37 +08:00
|
|
|
TempBuf *kernel_brushes[BRUSH_CORE_SUBSAMPLE + 1][BRUSH_CORE_SUBSAMPLE + 1];
|
2004-05-26 04:41:09 +08:00
|
|
|
|
2007-04-13 22:04:37 +08:00
|
|
|
TempBuf *last_brush_mask;
|
2004-05-26 04:41:09 +08:00
|
|
|
gboolean cache_invalid;
|
2005-10-05 04:16:52 +08:00
|
|
|
|
2005-10-04 03:03:14 +08:00
|
|
|
gdouble jitter;
|
2007-07-04 14:30:34 +08:00
|
|
|
gdouble jitter_lut_x[BRUSH_CORE_JITTER_LUTSIZE];
|
|
|
|
gdouble jitter_lut_y[BRUSH_CORE_JITTER_LUTSIZE];
|
2004-05-26 04:41:09 +08:00
|
|
|
|
2006-11-23 04:22:32 +08:00
|
|
|
GRand *rand;
|
|
|
|
|
2004-05-26 04:41:09 +08:00
|
|
|
/* don't use these... */
|
|
|
|
BoundSeg *brush_bound_segs;
|
|
|
|
gint n_brush_bound_segs;
|
2004-06-23 20:19:28 +08:00
|
|
|
gint brush_bound_width;
|
|
|
|
gint brush_bound_height;
|
2004-05-26 04:41:09 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GimpBrushCoreClass
|
|
|
|
{
|
|
|
|
GimpPaintCoreClass parent_class;
|
2004-05-26 17:32:03 +08:00
|
|
|
|
2004-05-28 04:48:49 +08:00
|
|
|
/* Set for tools that don't mind if the brush changes while painting */
|
|
|
|
gboolean handles_changing_brush;
|
|
|
|
|
2007-11-13 17:30:46 +08:00
|
|
|
/* Set for tools that don't mind if the brush scales while painting */
|
|
|
|
gboolean handles_scaling_brush;
|
2004-06-23 20:19:28 +08:00
|
|
|
|
|
|
|
void (* set_brush) (GimpBrushCore *core,
|
|
|
|
GimpBrush *brush);
|
2004-05-26 04:41:09 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
GType gimp_brush_core_get_type (void) G_GNUC_CONST;
|
|
|
|
|
2004-06-23 20:19:28 +08:00
|
|
|
void gimp_brush_core_set_brush (GimpBrushCore *core,
|
|
|
|
GimpBrush *brush);
|
2006-11-16 23:11:27 +08:00
|
|
|
void gimp_brush_core_create_bound_segs (GimpBrushCore *core,
|
|
|
|
GimpPaintOptions *options);
|
|
|
|
|
2004-05-26 04:41:09 +08:00
|
|
|
void gimp_brush_core_paste_canvas (GimpBrushCore *core,
|
|
|
|
GimpDrawable *drawable,
|
|
|
|
gdouble brush_opacity,
|
|
|
|
gdouble image_opacity,
|
|
|
|
GimpLayerModeEffects paint_mode,
|
|
|
|
GimpBrushApplicationMode brush_hardness,
|
|
|
|
GimpPaintApplicationMode mode);
|
|
|
|
void gimp_brush_core_replace_canvas (GimpBrushCore *core,
|
2007-03-19 03:58:57 +08:00
|
|
|
GimpDrawable *drawable,
|
2004-05-26 04:41:09 +08:00
|
|
|
gdouble brush_opacity,
|
|
|
|
gdouble image_opacity,
|
|
|
|
GimpBrushApplicationMode brush_hardness,
|
|
|
|
GimpPaintApplicationMode mode);
|
|
|
|
|
|
|
|
void gimp_brush_core_color_area_with_pixmap
|
2007-12-12 03:31:46 +08:00
|
|
|
(GimpBrushCore *core,
|
|
|
|
GimpDrawable *drawable,
|
|
|
|
TempBuf *area,
|
|
|
|
GimpBrushApplicationMode mode);
|
2004-05-26 04:41:09 +08:00
|
|
|
|
2007-12-12 03:31:46 +08:00
|
|
|
TempBuf * gimp_brush_core_get_brush_mask (GimpBrushCore *core,
|
|
|
|
GimpBrushApplicationMode brush_hardness);
|
2004-05-26 04:41:09 +08:00
|
|
|
|
2008-05-10 18:03:21 +08:00
|
|
|
|
2004-05-26 04:41:09 +08:00
|
|
|
#endif /* __GIMP_BRUSH_CORE_H__ */
|