/* The GIMP -- an image manipulation program * Copyright (C) 1995 Spencer Kimball and Peter Mattis * * brush_generated module Copyright 1998 Jay Cox * * 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_GENERATED_H__ #define __GIMP_BRUSH_GENERATED_H__ #include "gimpbrush.h" typedef struct _GimpBrushGenerated { GimpBrush gbrush; float radius; float hardness; /* 0.0 - 1.0 */ float angle; /* in degrees */ float aspect_ratio; /* y/x */ int freeze; /*GSpline *profile_curve */ /* Some lazy day... */ } GimpBrushGenerated; typedef struct _GimpBrushGeneratedClass { GimpBrushClass parent_class; void (* generate) (GimpBrushGenerated *brush); } GimpBrushGeneratedClass; /* object stuff */ #define GIMP_TYPE_BRUSH_GENERATED (gimp_brush_generated_get_type ()) #define GIMP_BRUSH_GENERATED(obj) (GIMP_CHECK_CAST ((obj), GIMP_TYPE_BRUSH_GENERATED, GimpBrushGenerated)) #define GIMP_IS_BRUSH_GENERATED(obj) (GIMP_CHECK_TYPE ((obj), GIMP_TYPE_BRUSH_GENERATED)) guint gimp_brush_generated_get_type (void); /* normal stuff */ GimpBrushGenerated *gimp_brush_generated_new(float radius, float hardness, float angle, float aspect_ratio); GimpBrushGenerated *gimp_brush_generated_load (const char *file_name); void gimp_brush_generated_save (GimpBrushGenerated *brush, const char *file_name); void gimp_brush_generated_freeze (GimpBrushGenerated *brush); void gimp_brush_generated_thaw (GimpBrushGenerated *brush); float gimp_brush_generated_set_radius (GimpBrushGenerated* brush, float radius); float gimp_brush_generated_set_hardness (GimpBrushGenerated* brush, float hardness); float gimp_brush_generated_set_angle (GimpBrushGenerated* brush, float angle); float gimp_brush_generated_set_aspect_ratio(GimpBrushGenerated* brush, float ratio); float gimp_brush_generated_get_radius (const GimpBrushGenerated* brush); float gimp_brush_generated_get_hardness (const GimpBrushGenerated* brush); float gimp_brush_generated_get_angle (const GimpBrushGenerated* brush); float gimp_brush_generated_get_aspect_ratio (const GimpBrushGenerated* brush); #endif /* __GIMP_BRUSH_GENERATED_H__ */