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

« back to all changes in this revision

Viewing changes to app/core/gimpdrawable-bucket-fill.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2008-10-06 13:30:41 UTC
  • mto: This revision was merged to the branch mainline in revision 35.
  • Revision ID: james.westby@ubuntu.com-20081006133041-3panbkcanaymfsmp
Tags: upstream-2.6.0
ImportĀ upstreamĀ versionĀ 2.6.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#define  __GIMP_DRAWABLE_BUCKET_FILL_H__
21
21
 
22
22
 
23
 
void   gimp_drawable_bucket_fill      (GimpDrawable        *drawable,
24
 
                                       GimpContext         *context,
25
 
                                       GimpBucketFillMode   fill_mode,
26
 
                                       gint                 paint_mode,
27
 
                                       gdouble              opacity,
28
 
                                       gboolean             do_seed_fill,
29
 
                                       gboolean             fill_transparent,
30
 
                                       GimpSelectCriterion  fill_criterion,
31
 
                                       gdouble              threshold,
32
 
                                       gboolean             sample_merged,
33
 
                                       gdouble              x,
34
 
                                       gdouble              y);
 
23
gboolean   gimp_drawable_bucket_fill      (GimpDrawable         *drawable,
 
24
                                           GimpContext          *context,
 
25
                                           GimpBucketFillMode    fill_mode,
 
26
                                           gint                  paint_mode,
 
27
                                           gdouble               opacity,
 
28
                                           gboolean              do_seed_fill,
 
29
                                           gboolean              fill_transparent,
 
30
                                           GimpSelectCriterion   fill_criterion,
 
31
                                           gdouble               threshold,
 
32
                                           gboolean              sample_merged,
 
33
                                           gdouble               x,
 
34
                                           gdouble               y,
 
35
                                           GError              **error);
35
36
 
36
 
void   gimp_drawable_bucket_fill_full (GimpDrawable        *drawable,
37
 
                                       GimpBucketFillMode   fill_mode,
38
 
                                       gint                 paint_mode,
39
 
                                       gdouble              opacity,
40
 
                                       gboolean             do_seed_fill,
41
 
                                       gboolean             fill_transparent,
42
 
                                       GimpSelectCriterion  fill_criterion,
43
 
                                       gdouble              threshold,
44
 
                                       gboolean             sample_merged,
45
 
                                       gdouble              x,
46
 
                                       gdouble              y,
47
 
                                       const GimpRGB       *color,
48
 
                                       GimpPattern         *pattern);
 
37
void       gimp_drawable_bucket_fill_full (GimpDrawable         *drawable,
 
38
                                           GimpBucketFillMode    fill_mode,
 
39
                                           gint                  paint_mode,
 
40
                                           gdouble               opacity,
 
41
                                           gboolean              do_seed_fill,
 
42
                                           gboolean              fill_transparent,
 
43
                                           GimpSelectCriterion   fill_criterion,
 
44
                                           gdouble               threshold,
 
45
                                           gboolean              sample_merged,
 
46
                                           gdouble               x,
 
47
                                           gdouble               y,
 
48
                                           const GimpRGB        *color,
 
49
                                           GimpPattern          *pattern);
49
50
 
50
51
 
51
52
#endif  /*  __GIMP_DRAWABLE_BUCKET_FILL_H__  */