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

« back to all changes in this revision

Viewing changes to libgimpbase/gimpprotocol.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:
69
69
  gint8    check_size;
70
70
  gint8    check_type;
71
71
  gint8    show_help_button;
72
 
  gint8    gimp_reserved_4;
 
72
  gint8    use_cpu_accel;
73
73
  gint8    gimp_reserved_5;
74
74
  gint8    gimp_reserved_6;
75
75
  gint8    gimp_reserved_7;
76
76
  gint8    gimp_reserved_8;
77
77
  gint8    install_cmap;
78
 
  gint8    show_tool_tips;
 
78
  gint8    show_tooltips;
79
79
  gint32   min_colors;
80
80
  gint32   gdisp_ID;
81
81
  gchar   *app_name;
109
109
 
110
110
  union
111
111
  {
112
 
    gint32    d_int32;
113
 
    gint16    d_int16;
114
 
    gint8     d_int8;
115
 
    gdouble   d_float;
116
 
    gchar    *d_string;
117
 
    gint32   *d_int32array;
118
 
    gint16   *d_int16array;
119
 
    gint8    *d_int8array;
120
 
    gdouble  *d_floatarray;
121
 
    gchar   **d_stringarray;
122
 
    GimpRGB   d_color;
 
112
    gint32        d_int32;
 
113
    gint16        d_int16;
 
114
    guint8        d_int8;
 
115
    gdouble       d_float;
 
116
    gchar        *d_string;
 
117
    gint32       *d_int32array;
 
118
    gint16       *d_int16array;
 
119
    guint8       *d_int8array;
 
120
    gdouble      *d_floatarray;
 
121
    gchar       **d_stringarray;
 
122
    GimpRGB       d_color;
123
123
    struct
124
124
    {
125
125
      gint32 x;
127
127
      gint32 width;
128
128
      gint32 height;
129
129
    } d_region;
130
 
    gint32 d_display;
131
 
    gint32 d_image;
132
 
    gint32 d_layer;
133
 
    gint32 d_channel;
134
 
    gint32 d_drawable;
135
 
    gint32 d_selection;
136
 
    gint32 d_boundary;
137
 
    gint32 d_path;
138
 
    struct
139
 
    {
140
 
      gchar    *name;
141
 
      guint32   flags;
142
 
      guint32   size;
143
 
      gpointer  data;
144
 
    } d_parasite;
145
 
    gint32 d_status;
 
130
    gint32        d_display;
 
131
    gint32        d_image;
 
132
    gint32        d_layer;
 
133
    gint32        d_channel;
 
134
    gint32        d_drawable;
 
135
    gint32        d_selection;
 
136
    gint32        d_boundary;
 
137
    gint32        d_path; /* deprecated */
 
138
    gint32        d_vectors;
 
139
    gint32        d_status;
 
140
    GimpParasite  d_parasite;
146
141
  } data;
147
142
};
148
143
 
195
190
gboolean  gp_quit_write             (GIOChannel      *channel,
196
191
                                     gpointer         user_data);
197
192
gboolean  gp_config_write           (GIOChannel      *channel,
198
 
                                     GPConfig        *config,
 
193
                                     GPConfig        *config,
199
194
                                     gpointer         user_data);
200
195
gboolean  gp_tile_req_write         (GIOChannel      *channel,
201
 
                                     GPTileReq       *tile_req,
 
196
                                     GPTileReq       *tile_req,
202
197
                                     gpointer         user_data);
203
198
gboolean  gp_tile_ack_write         (GIOChannel      *channel,
204
199
                                     gpointer         user_data);
205
200
gboolean  gp_tile_data_write        (GIOChannel      *channel,
206
 
                                     GPTileData      *tile_data,
 
201
                                     GPTileData      *tile_data,
207
202
                                     gpointer         user_data);
208
203
gboolean  gp_proc_run_write         (GIOChannel      *channel,
209
 
                                     GPProcRun       *proc_run,
 
204
                                     GPProcRun       *proc_run,
210
205
                                     gpointer         user_data);
211
206
gboolean  gp_proc_return_write      (GIOChannel      *channel,
212
 
                                     GPProcReturn    *proc_return,
 
207
                                     GPProcReturn    *proc_return,
213
208
                                     gpointer         user_data);
214
209
gboolean  gp_temp_proc_run_write    (GIOChannel      *channel,
215
 
                                     GPProcRun       *proc_run,
 
210
                                     GPProcRun       *proc_run,
216
211
                                     gpointer         user_data);
217
212
gboolean  gp_temp_proc_return_write (GIOChannel      *channel,
218
 
                                     GPProcReturn    *proc_return,
 
213
                                     GPProcReturn    *proc_return,
219
214
                                     gpointer         user_data);
220
215
gboolean  gp_proc_install_write     (GIOChannel      *channel,
221
 
                                     GPProcInstall   *proc_install,
 
216
                                     GPProcInstall   *proc_install,
222
217
                                     gpointer         user_data);
223
218
gboolean  gp_proc_uninstall_write   (GIOChannel      *channel,
224
 
                                     GPProcUninstall *proc_uninstall,
 
219
                                     GPProcUninstall *proc_uninstall,
225
220
                                     gpointer         user_data);
226
221
gboolean  gp_extension_ack_write    (GIOChannel      *channel,
227
222
                                     gpointer         user_data);
228
223
gboolean  gp_has_init_write         (GIOChannel      *channel,
229
224
                                     gpointer         user_data);
230
225
 
 
226
void      gp_params_destroy         (GPParam         *params,
 
227
                                     gint             nparams);
 
228
 
231
229
 
232
230
G_END_DECLS
233
231