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

« back to all changes in this revision

Viewing changes to app/vectors/gimpvectors.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
 * gimpvectors.h
40
40
  GimpItem  parent_instance;
41
41
 
42
42
  GList    *strokes;            /* The List of GimpStrokes        */
 
43
  gint      last_stroke_ID;
43
44
 
44
45
  gint      freeze_count;
45
 
  /* Stuff missing */
 
46
  gdouble   precision;
46
47
};
47
48
 
48
49
struct _GimpVectorsClass
86
87
 
87
88
GType           gimp_vectors_get_type           (void) G_GNUC_CONST;
88
89
 
89
 
GimpVectors   * gimp_vectors_new                (GimpImage         *gimage,
 
90
GimpVectors   * gimp_vectors_new                (GimpImage         *image,
90
91
                                                 const gchar       *name);
91
92
 
92
93
void            gimp_vectors_freeze             (GimpVectors       *vectors);
138
139
                                                 GimpStroke         *stroke);
139
140
void            gimp_vectors_stroke_remove      (GimpVectors        *vectors,
140
141
                                                 GimpStroke         *stroke);
 
142
gint            gimp_vectors_get_n_strokes      (const GimpVectors  *vectors);
141
143
GimpStroke    * gimp_vectors_stroke_get         (const GimpVectors  *vectors,
142
144
                                                 const GimpCoords   *coord);
 
145
GimpStroke    * gimp_vectors_stroke_get_by_ID   (const GimpVectors  *vectors,
 
146
                                                 gint                id);
143
147
 
144
148
/* prev == NULL: "first" stroke */
145
149
GimpStroke    * gimp_vectors_stroke_get_next    (const GimpVectors  *vectors,