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

« back to all changes in this revision

Viewing changes to app/core/gimpbrushgenerated.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:
1
 
/* The GIMP -- an image manipulation program
 
1
/* GIMP - The GNU Image Manipulation Program
2
2
 * Copyright (C) 1995 Spencer Kimball and Peter Mattis
3
3
 *
4
4
 * brush_generated module Copyright 1998 Jay Cox <jaycox@earthlink.net>
25
25
#include "gimpbrush.h"
26
26
 
27
27
 
28
 
#define GIMP_BRUSH_GENERATED_FILE_EXTENSION ".vbr"
29
 
 
30
 
 
31
28
#define GIMP_TYPE_BRUSH_GENERATED            (gimp_brush_generated_get_type ())
32
29
#define GIMP_BRUSH_GENERATED(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_BRUSH_GENERATED, GimpBrushGenerated))
33
30
#define GIMP_BRUSH_GENERATED_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_BRUSH_GENERATED, GimpBrushGeneratedClass))
58
55
 
59
56
GType       gimp_brush_generated_get_type     (void) G_GNUC_CONST;
60
57
 
61
 
GimpData  * gimp_brush_generated_new          (const gchar *name,
 
58
GimpData  * gimp_brush_generated_new          (const gchar             *name,
62
59
                                               GimpBrushGeneratedShape  shape,
63
 
                                               gfloat       radius,
64
 
                                               gint         spikes,
65
 
                                               gfloat       hardness,
66
 
                                               gfloat       aspect_ratio,
67
 
                                               gfloat       angle,
68
 
                                               gboolean     stingy_memory_use);
69
 
GList     * gimp_brush_generated_load         (const gchar *file_name,
70
 
                                               gboolean     stingy_memory_use,
71
 
                                               GError     **error);
 
60
                                               gfloat                   radius,
 
61
                                               gint                     spikes,
 
62
                                               gfloat                   hardness,
 
63
                                               gfloat                   aspect_ratio,
 
64
                                               gfloat                   angle);
72
65
 
73
66
GimpBrushGeneratedShape
74
67
        gimp_brush_generated_set_shape        (GimpBrushGenerated      *brush,