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

« back to all changes in this revision

Viewing changes to plug-ins/gfig/gfig.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:
40
40
  gboolean snap2grid;
41
41
  gboolean lockongrid;
42
42
  gboolean showcontrol;
 
43
  gdouble grid_radius_min;
 
44
  gdouble grid_radius_interval;
 
45
  gdouble grid_rotation;
 
46
  gdouble grid_granularity;
 
47
  gint grid_sectors_desired;
43
48
} GfigOpts;
44
49
 
45
50
typedef struct
62
67
#define MAX_LOAD_LINE    256
63
68
#define SQ_SIZE 8
64
69
 
65
 
#define HELP_ID "plug-in-gfig"
 
70
#define PLUG_IN_PROC   "plug-in-gfig"
 
71
#define PLUG_IN_BINARY "gfig"
66
72
 
67
73
extern gint       line_no;
68
74
extern gint       preview_width, preview_height;
146
152
  gboolean     using_new_layer;
147
153
} GFigContext;
148
154
 
149
 
GFigContext *gfig_context;
 
155
extern GFigContext *gfig_context;
150
156
 
151
157
extern selection_option selopt;
152
158
extern SelectItVals selvals;
218
224
GFigObj   *gfig_load_from_parasite (void);
219
225
GFigObj   *gfig_new                (void);
220
226
void       gfig_save_callbk        (void);
221
 
void       paint_layer_fill        (void);
222
 
 
223
 
 
224
 
 
225
 
GtkWidget    *top_level_dlg;
226
 
GimpDrawable *gfig_drawable;
227
 
GList        *gfig_list;
228
 
gdouble       org_scale_x_factor, org_scale_y_factor;
 
227
void       paint_layer_fill        (gdouble x1,
 
228
                                    gdouble y1,
 
229
                                    gdouble x2,
 
230
                                    gdouble y2);
 
231
 
 
232
 
 
233
 
 
234
extern GtkWidget    *top_level_dlg;
 
235
extern GimpDrawable *gfig_drawable;
 
236
extern GList        *gfig_list;
 
237
extern gdouble       org_scale_x_factor, org_scale_y_factor;
229
238
 
230
239
#endif /* __GFIG_H__ */