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

« back to all changes in this revision

Viewing changes to libgimp/gimpselectiontools_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_SELECTION_TOOLS_PDB_H__
25
25
#define __GIMP_SELECTION_TOOLS_PDB_H__
29
29
/* For information look into the C source or the html documentation */
30
30
 
31
31
 
32
 
gboolean gimp_by_color_select (gint32          drawable_ID,
33
 
                               const GimpRGB  *color,
34
 
                               gint            threshold,
35
 
                               GimpChannelOps  operation,
36
 
                               gboolean        antialias,
37
 
                               gboolean        feather,
38
 
                               gdouble         feather_radius,
39
 
                               gboolean        sample_merged);
40
 
gboolean gimp_ellipse_select  (gint32          image_ID,
41
 
                               gdouble         x,
42
 
                               gdouble         y,
43
 
                               gdouble         width,
44
 
                               gdouble         height,
45
 
                               GimpChannelOps  operation,
46
 
                               gboolean        antialias,
47
 
                               gboolean        feather,
48
 
                               gdouble         feather_radius);
49
 
gboolean gimp_free_select     (gint32          image_ID,
50
 
                               gint            num_segs,
51
 
                               const gdouble  *segs,
52
 
                               GimpChannelOps  operation,
53
 
                               gboolean        antialias,
54
 
                               gboolean        feather,
55
 
                               gdouble         feather_radius);
56
 
gboolean gimp_fuzzy_select    (gint32          drawable_ID,
57
 
                               gdouble         x,
58
 
                               gdouble         y,
59
 
                               gint            threshold,
60
 
                               GimpChannelOps  operation,
61
 
                               gboolean        antialias,
62
 
                               gboolean        feather,
63
 
                               gdouble         feather_radius,
64
 
                               gboolean        sample_merged);
65
 
gboolean gimp_rect_select     (gint32          image_ID,
66
 
                               gdouble         x,
67
 
                               gdouble         y,
68
 
                               gdouble         width,
69
 
                               gdouble         height,
70
 
                               GimpChannelOps  operation,
71
 
                               gboolean        feather,
72
 
                               gdouble         feather_radius);
 
32
gboolean gimp_by_color_select      (gint32               drawable_ID,
 
33
                                    const GimpRGB       *color,
 
34
                                    gint                 threshold,
 
35
                                    GimpChannelOps       operation,
 
36
                                    gboolean             antialias,
 
37
                                    gboolean             feather,
 
38
                                    gdouble              feather_radius,
 
39
                                    gboolean             sample_merged);
 
40
gboolean gimp_by_color_select_full (gint32               drawable_ID,
 
41
                                    const GimpRGB       *color,
 
42
                                    gint                 threshold,
 
43
                                    GimpChannelOps       operation,
 
44
                                    gboolean             antialias,
 
45
                                    gboolean             feather,
 
46
                                    gdouble              feather_radius_x,
 
47
                                    gdouble              feather_radius_y,
 
48
                                    gboolean             sample_merged,
 
49
                                    gboolean             select_transparent,
 
50
                                    GimpSelectCriterion  select_criterion);
 
51
gboolean gimp_ellipse_select       (gint32               image_ID,
 
52
                                    gdouble              x,
 
53
                                    gdouble              y,
 
54
                                    gdouble              width,
 
55
                                    gdouble              height,
 
56
                                    GimpChannelOps       operation,
 
57
                                    gboolean             antialias,
 
58
                                    gboolean             feather,
 
59
                                    gdouble              feather_radius);
 
60
gboolean gimp_free_select          (gint32               image_ID,
 
61
                                    gint                 num_segs,
 
62
                                    const gdouble       *segs,
 
63
                                    GimpChannelOps       operation,
 
64
                                    gboolean             antialias,
 
65
                                    gboolean             feather,
 
66
                                    gdouble              feather_radius);
 
67
gboolean gimp_fuzzy_select         (gint32               drawable_ID,
 
68
                                    gdouble              x,
 
69
                                    gdouble              y,
 
70
                                    gint                 threshold,
 
71
                                    GimpChannelOps       operation,
 
72
                                    gboolean             antialias,
 
73
                                    gboolean             feather,
 
74
                                    gdouble              feather_radius,
 
75
                                    gboolean             sample_merged);
 
76
gboolean gimp_fuzzy_select_full    (gint32               drawable_ID,
 
77
                                    gdouble              x,
 
78
                                    gdouble              y,
 
79
                                    gint                 threshold,
 
80
                                    GimpChannelOps       operation,
 
81
                                    gboolean             antialias,
 
82
                                    gboolean             feather,
 
83
                                    gdouble              feather_radius_x,
 
84
                                    gdouble              feather_radius_y,
 
85
                                    gboolean             sample_merged,
 
86
                                    gboolean             select_transparent,
 
87
                                    GimpSelectCriterion  select_criterion);
 
88
gboolean gimp_rect_select          (gint32               image_ID,
 
89
                                    gdouble              x,
 
90
                                    gdouble              y,
 
91
                                    gdouble              width,
 
92
                                    gdouble              height,
 
93
                                    GimpChannelOps       operation,
 
94
                                    gboolean             feather,
 
95
                                    gdouble              feather_radius);
 
96
gboolean gimp_round_rect_select    (gint32               image_ID,
 
97
                                    gdouble              x,
 
98
                                    gdouble              y,
 
99
                                    gdouble              width,
 
100
                                    gdouble              height,
 
101
                                    gdouble              corner_radius_x,
 
102
                                    gdouble              corner_radius_y,
 
103
                                    GimpChannelOps       operation,
 
104
                                    gboolean             antialias,
 
105
                                    gboolean             feather,
 
106
                                    gdouble              feather_radius_x,
 
107
                                    gdouble              feather_radius_y);
73
108
 
74
109
 
75
110
G_END_DECLS