~ubuntu-branches/ubuntu/jaunty/gimp/jaunty-security

« back to all changes in this revision

Viewing changes to libgimp/gimpbrush_pdb.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-05-02 16:33:03 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070502163303-bvzhjzbpw8qglc4y
Tags: 2.3.16-1ubuntu1
* Resynchronized with Debian, remaining Ubuntu changes:
  - debian/rules: i18n magic.
* debian/control.in:
  - Maintainer: Ubuntu Core Developers <ubuntu-devel@lists.ubuntu.com>
* debian/patches/02_help-message.patch,
  debian/patches/03_gimp.desktop.in.in.patch,
  debian/patches/10_dont_show_wizard.patch: updated.
* debian/patches/04_composite-signedness.patch,
  debian/patches/05_add-letter-spacing.patch: dropped, used upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 * Boston, MA 02111-1307, USA.
20
20
 */
21
21
 
22
 
/* NOTE: This file is autogenerated by pdbgen.pl */
 
22
/* NOTE: This file is auto-generated by pdbgen.pl */
23
23
 
24
24
#ifndef __GIMP_BRUSH_PDB_H__
25
25
#define __GIMP_BRUSH_PDB_H__
29
29
/* For information look into the C source or the html documentation */
30
30
 
31
31
 
32
 
gchar*   gimp_brush_new         (const gchar  *name);
33
 
gchar*   gimp_brush_duplicate   (const gchar  *name);
34
 
gchar*   gimp_brush_rename      (const gchar  *name,
35
 
                                 const gchar  *new_name);
36
 
gboolean gimp_brush_delete      (const gchar  *name);
37
 
gboolean gimp_brush_get_info    (const gchar  *name,
38
 
                                 gint         *width,
39
 
                                 gint         *height,
40
 
                                 gint         *mask_bpp,
41
 
                                 gint         *color_bpp);
42
 
gboolean gimp_brush_get_pixels  (const gchar  *name,
43
 
                                 gint         *width,
44
 
                                 gint         *height,
45
 
                                 gint         *mask_bpp,
46
 
                                 gint         *num_mask_bytes,
47
 
                                 guint8      **mask_bytes,
48
 
                                 gint         *color_bpp,
49
 
                                 gint         *num_color_bytes,
50
 
                                 guint8      **color_bytes);
51
 
gboolean gimp_brush_get_spacing (const gchar  *name,
52
 
                                 gint         *spacing);
53
 
gboolean gimp_brush_set_spacing (const gchar  *name,
54
 
                                 gint          spacing);
 
32
gchar*                  gimp_brush_new              (const gchar              *name);
 
33
gchar*                  gimp_brush_duplicate        (const gchar              *name);
 
34
gboolean                gimp_brush_is_generated     (const gchar              *name);
 
35
gchar*                  gimp_brush_rename           (const gchar              *name,
 
36
                                                     const gchar              *new_name);
 
37
gboolean                gimp_brush_delete           (const gchar              *name);
 
38
gboolean                gimp_brush_is_editable      (const gchar              *name);
 
39
gboolean                gimp_brush_get_info         (const gchar              *name,
 
40
                                                     gint                     *width,
 
41
                                                     gint                     *height,
 
42
                                                     gint                     *mask_bpp,
 
43
                                                     gint                     *color_bpp);
 
44
gboolean                gimp_brush_get_pixels       (const gchar              *name,
 
45
                                                     gint                     *width,
 
46
                                                     gint                     *height,
 
47
                                                     gint                     *mask_bpp,
 
48
                                                     gint                     *num_mask_bytes,
 
49
                                                     guint8                  **mask_bytes,
 
50
                                                     gint                     *color_bpp,
 
51
                                                     gint                     *num_color_bytes,
 
52
                                                     guint8                  **color_bytes);
 
53
gboolean                gimp_brush_get_spacing      (const gchar              *name,
 
54
                                                     gint                     *spacing);
 
55
gboolean                gimp_brush_set_spacing      (const gchar              *name,
 
56
                                                     gint                      spacing);
 
57
GimpBrushGeneratedShape gimp_brush_get_shape        (const gchar              *name);
 
58
gdouble                 gimp_brush_get_radius       (const gchar              *name);
 
59
gint                    gimp_brush_get_spikes       (const gchar              *name);
 
60
gdouble                 gimp_brush_get_hardness     (const gchar              *name);
 
61
gdouble                 gimp_brush_get_aspect_ratio (const gchar              *name);
 
62
gdouble                 gimp_brush_get_angle        (const gchar              *name);
 
63
GimpBrushGeneratedShape gimp_brush_set_shape        (const gchar              *name,
 
64
                                                     GimpBrushGeneratedShape   shape_in);
 
65
gdouble                 gimp_brush_set_radius       (const gchar              *name,
 
66
                                                     gdouble                   radius_in);
 
67
gint                    gimp_brush_set_spikes       (const gchar              *name,
 
68
                                                     gint                      spikes_in);
 
69
gdouble                 gimp_brush_set_hardness     (const gchar              *name,
 
70
                                                     gdouble                   hardness_in);
 
71
gdouble                 gimp_brush_set_aspect_ratio (const gchar              *name,
 
72
                                                     gdouble                   aspect_ratio_in);
 
73
gdouble                 gimp_brush_set_angle        (const gchar              *name,
 
74
                                                     gdouble                   angle_in);
55
75
 
56
76
 
57
77
G_END_DECLS