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

« back to all changes in this revision

Viewing changes to app/widgets/widgets-types.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
 * This program is free software; you can redistribute it and/or modify
38
38
/*  docks  */
39
39
 
40
40
typedef struct _GimpDock                     GimpDock;
 
41
typedef struct _GimpDockSeparator            GimpDockSeparator; /* not a dock */
41
42
typedef struct _GimpImageDock                GimpImageDock;
 
43
typedef struct _GimpMenuDock                 GimpMenuDock;
42
44
typedef struct _GimpToolbox                  GimpToolbox;
43
45
typedef struct _GimpDockbook                 GimpDockbook;
44
46
typedef struct _GimpDockable                 GimpDockable;
49
51
 
50
52
typedef struct _GimpEditor                   GimpEditor;
51
53
typedef struct _GimpColorEditor              GimpColorEditor;
 
54
typedef struct _GimpCursorView               GimpCursorView;
52
55
typedef struct _GimpDeviceStatus             GimpDeviceStatus;
53
56
typedef struct _GimpErrorConsole             GimpErrorConsole;
54
57
typedef struct _GimpToolOptionsEditor        GimpToolOptionsEditor;
68
71
typedef struct _GimpColormapEditor           GimpColormapEditor;
69
72
typedef struct _GimpComponentEditor          GimpComponentEditor;
70
73
typedef struct _GimpHistogramEditor          GimpHistogramEditor;
 
74
typedef struct _GimpSamplePointEditor        GimpSamplePointEditor;
71
75
typedef struct _GimpSelectionEditor          GimpSelectionEditor;
72
76
typedef struct _GimpUndoEditor               GimpUndoEditor;
73
77
 
126
130
typedef struct _GimpErrorDialog              GimpErrorDialog;
127
131
typedef struct _GimpFileDialog               GimpFileDialog;
128
132
typedef struct _GimpMessageDialog            GimpMessageDialog;
 
133
typedef struct _GimpProfileChooserDialog     GimpProfileChooserDialog;
129
134
typedef struct _GimpProgressDialog           GimpProgressDialog;
130
135
typedef struct _GimpTextEditor               GimpTextEditor;
131
 
typedef struct _GimpViewableDialog           GimpToolDialog;
 
136
typedef struct _GimpToolDialog               GimpToolDialog;
132
137
typedef struct _GimpViewableDialog           GimpViewableDialog;
133
138
 
134
139
 
151
156
typedef struct _GimpColorFrame               GimpColorFrame;
152
157
typedef struct _GimpColorPanel               GimpColorPanel;
153
158
typedef struct _GimpControllerEditor         GimpControllerEditor;
 
159
typedef struct _GimpControllerList           GimpControllerList;
154
160
typedef struct _GimpDashEditor               GimpDashEditor;
155
161
typedef struct _GimpFgBgEditor               GimpFgBgEditor;
 
162
typedef struct _GimpFgBgView                 GimpFgBgView;
156
163
typedef struct _GimpFileProcView             GimpFileProcView;
157
164
typedef struct _GimpGridEditor               GimpGridEditor;
158
165
typedef struct _GimpHistogramBox             GimpHistogramBox;
159
166
typedef struct _GimpHistogramView            GimpHistogramView;
 
167
typedef struct _GimpImageParasiteView        GimpImageParasiteView;
 
168
typedef struct _GimpImagePropView            GimpImagePropView;
 
169
typedef struct _GimpImageProfileView         GimpImageProfileView;
160
170
typedef struct _GimpMessageBox               GimpMessageBox;
161
171
typedef struct _GimpProgressBox              GimpProgressBox;
162
172
typedef struct _GimpSizeBox                  GimpSizeBox;
168
178
/*  views  */
169
179
 
170
180
typedef struct _GimpView                     GimpView;
 
181
typedef struct _GimpPaletteView              GimpPaletteView;
171
182
typedef struct _GimpNavigationView           GimpNavigationView;
172
183
 
173
184
 
178
189
typedef struct _GimpViewRendererBuffer       GimpViewRendererBuffer;
179
190
typedef struct _GimpViewRendererDrawable     GimpViewRendererDrawable;
180
191
typedef struct _GimpViewRendererGradient     GimpViewRendererGradient;
 
192
typedef struct _GimpViewRendererPalette      GimpViewRendererPalette;
181
193
typedef struct _GimpViewRendererLayer        GimpViewRendererLayer;
182
194
typedef struct _GimpViewRendererImage        GimpViewRendererImage;
183
195
typedef struct _GimpViewRendererImagefile    GimpViewRendererImagefile;
186
198
 
187
199
/*  cell renderers  */
188
200
 
189
 
typedef struct _GimpCellRendererAccel        GimpCellRendererAccel;
 
201
typedef struct _GimpCellRendererDashes       GimpCellRendererDashes;
190
202
typedef struct _GimpCellRendererViewable     GimpCellRendererViewable;
191
203
 
192
204
 
193
205
/*  misc utilities & constructors  */
194
206
 
195
207
typedef struct _GimpDialogFactory            GimpDialogFactory;
196
 
typedef struct _GimpEnumStore                GimpEnumStore;
197
 
typedef struct _GimpEnumComboBox             GimpEnumComboBox;
198
208
typedef struct _GimpUnitStore                GimpUnitStore;
199
209
typedef struct _GimpUnitComboBox             GimpUnitComboBox;
200
210