~ubuntu-branches/ubuntu/hoary/gimp/hoary

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
/* The GIMP -- an image manipulation program
 * Copyright (C) 1995 Spencer Kimball and Peter Mattis
 *
 * gimpcontext.h
 * Copyright (C) 1999-2001 Michael Natterer
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */

#ifndef __GIMP_CONTEXT_H__
#define __GIMP_CONTEXT_H__


#include "gimpobject.h"


#define GIMP_TYPE_CONTEXT            (gimp_context_get_type ())
#define GIMP_CONTEXT(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_CONTEXT, GimpContext))
#define GIMP_CONTEXT_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST (klass, GIMP_TYPE_CONTEXT, GimpContextClass))
#define GIMP_IS_CONTEXT(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_CONTEXT))
#define GIMP_IS_CONTEXT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_CONTEXT))
#define GIMP_CONTEXT_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS (obj, GIMP_TYPE_CONTEXT, GimpContextClass))


typedef struct _GimpContextClass GimpContextClass;

struct _GimpContext
{
  GimpObject            parent_instance;

  Gimp                 *gimp;

  GimpContext          *parent;

  guint32               defined_props;
  guint32               serialize_props;

  GimpImage            *image;
  gpointer              display;

  GimpToolInfo         *tool_info;
  gchar                *tool_name;

  GimpRGB               foreground;
  GimpRGB               background;

  gdouble               opacity;
  GimpLayerModeEffects  paint_mode;

  GimpBrush            *brush;
  gchar                *brush_name;

  GimpPattern          *pattern;
  gchar                *pattern_name;

  GimpGradient         *gradient;
  gchar                *gradient_name;

  GimpPalette          *palette;
  gchar                *palette_name;

  GimpFont             *font;
  gchar                *font_name;

  GimpBuffer           *buffer;
  gchar                *buffer_name;

  GimpImagefile        *imagefile;
  gchar                *imagefile_name;

  GimpTemplate         *template;
  gchar                *template_name;
};

struct _GimpContextClass
{
  GimpObjectClass  parent_class;

  void (* image_changed)      (GimpContext          *context,
                               GimpImage            *image);
  void (* display_changed)    (GimpContext          *context,
                               gpointer              display);

  void (* tool_changed)       (GimpContext          *context,
                               GimpToolInfo         *tool_info);

  void (* foreground_changed) (GimpContext          *context,
                               GimpRGB              *color);
  void (* background_changed) (GimpContext          *context,
                               GimpRGB              *color);
  void (* opacity_changed)    (GimpContext          *context,
                               gdouble               opacity);
  void (* paint_mode_changed) (GimpContext          *context,
                               GimpLayerModeEffects  paint_mode);
  void (* brush_changed)      (GimpContext          *context,
                               GimpBrush            *brush);
  void (* pattern_changed)    (GimpContext          *context,
                               GimpPattern          *pattern);
  void (* gradient_changed)   (GimpContext          *context,
                               GimpGradient         *gradient);
  void (* palette_changed)    (GimpContext          *context,
                               GimpPalette          *palette);
  void (* font_changed)       (GimpContext          *context,
                               GimpFont             *font);
  void (* buffer_changed)     (GimpContext          *context,
                               GimpBuffer           *buffer);
  void (* imagefile_changed)  (GimpContext          *context,
                               GimpImagefile        *imagefile);
  void (* template_changed)   (GimpContext          *context,
                               GimpTemplate         *template);
};


GType         gimp_context_get_type          (void) G_GNUC_CONST;

GimpContext * gimp_context_new               (Gimp              *gimp,
                                              const gchar       *name,
                                              GimpContext       *template);

const gchar * gimp_context_get_name          (const GimpContext *context);
void          gimp_context_set_name          (GimpContext       *context,
                                              const gchar       *name);

GimpContext * gimp_context_get_parent        (const GimpContext *context);
void          gimp_context_set_parent        (GimpContext       *context,
                                              GimpContext       *parent);

/*  define / undefinine context properties
 *
 *  the value of an undefined property will be taken from the parent context.
 */
void          gimp_context_define_property   (GimpContext         *context,
                                              GimpContextPropType  prop,
                                              gboolean             defined);

gboolean      gimp_context_property_defined  (GimpContext         *context,
                                              GimpContextPropType  prop);

void          gimp_context_define_properties (GimpContext         *context,
                                              GimpContextPropMask  props_mask,
                                              gboolean             defined);


/*  specify which context properties will be serialized
 */
void   gimp_context_set_serialize_properties (GimpContext         *context,
                                              GimpContextPropMask  props_mask);

GimpContextPropMask
       gimp_context_get_serialize_properties (GimpContext         *context);


/*  copying context properties
 */
void          gimp_context_copy_property     (GimpContext         *src,
                                              GimpContext         *dest,
                                              GimpContextPropType  prop);

void          gimp_context_copy_properties   (GimpContext         *src,
                                              GimpContext         *dest,
                                              GimpContextPropMask  props_mask);


/*  manipulate by GType  */
GimpContextPropType   gimp_context_type_to_property    (GType     type);
const gchar         * gimp_context_type_to_prop_name   (GType     type);
const gchar         * gimp_context_type_to_signal_name (GType     type);

GimpObject    * gimp_context_get_by_type        (GimpContext     *context,
                                                 GType            type);
void            gimp_context_set_by_type        (GimpContext     *context,
                                                 GType            type,
                                                 GimpObject      *object);
void            gimp_context_changed_by_type    (GimpContext     *context,
                                                 GType            type);


/*  image  */
GimpImage     * gimp_context_get_image          (GimpContext     *context);
void            gimp_context_set_image          (GimpContext     *context,
                                                 GimpImage       *image);
void            gimp_context_image_changed      (GimpContext     *context);


/*  display  */
gpointer        gimp_context_get_display        (GimpContext     *context);
void            gimp_context_set_display        (GimpContext     *context,
                                                 gpointer         display);
void            gimp_context_display_changed    (GimpContext     *context);


/*  tool  */
GimpToolInfo  * gimp_context_get_tool           (GimpContext     *context);
void            gimp_context_set_tool           (GimpContext     *context,
                                                 GimpToolInfo    *tool_info);
void            gimp_context_tool_changed       (GimpContext     *context);


/*  foreground color  */
void            gimp_context_get_foreground     (GimpContext     *context,
                                                 GimpRGB         *color);
void            gimp_context_set_foreground     (GimpContext     *context,
                                                 const GimpRGB   *color);
void            gimp_context_foreground_changed (GimpContext     *context);


/*  background color  */
void            gimp_context_get_background     (GimpContext     *context,
                                                 GimpRGB         *color);
void            gimp_context_set_background     (GimpContext     *context,
                                                 const GimpRGB   *color);
void            gimp_context_background_changed (GimpContext     *context);


/*  color utility functions  */
void            gimp_context_set_default_colors (GimpContext     *context);
void            gimp_context_swap_colors        (GimpContext     *context);


/*  opacity  */
gdouble         gimp_context_get_opacity        (GimpContext     *context);
void            gimp_context_set_opacity        (GimpContext     *context,
                                                 gdouble          opacity);
void            gimp_context_opacity_changed    (GimpContext     *context);


/*  paint mode  */
GimpLayerModeEffects
                gimp_context_get_paint_mode     (GimpContext     *context);
void            gimp_context_set_paint_mode     (GimpContext     *context,
                                            GimpLayerModeEffects  paint_mode);
void            gimp_context_paint_mode_changed (GimpContext     *context);


/*  brush  */
GimpBrush     * gimp_context_get_brush          (GimpContext     *context);
void            gimp_context_set_brush          (GimpContext     *context,
                                                 GimpBrush       *brush);
void            gimp_context_brush_changed      (GimpContext     *context);


/*  pattern  */
GimpPattern   * gimp_context_get_pattern        (GimpContext     *context);
void            gimp_context_set_pattern        (GimpContext     *context,
                                                 GimpPattern     *pattern);
void            gimp_context_pattern_changed    (GimpContext     *context);


/*  gradient  */
GimpGradient  * gimp_context_get_gradient       (GimpContext     *context);
void            gimp_context_set_gradient       (GimpContext     *context,
                                                 GimpGradient    *gradient);
void            gimp_context_gradient_changed   (GimpContext     *context);


/*  palette  */
GimpPalette   * gimp_context_get_palette        (GimpContext     *context);
void            gimp_context_set_palette        (GimpContext     *context,
                                                 GimpPalette     *palette);
void            gimp_context_palette_changed    (GimpContext     *context);


/*  font  */
GimpFont      * gimp_context_get_font           (GimpContext     *context);
void            gimp_context_set_font           (GimpContext     *context,
                                                 GimpFont        *font);
const gchar   * gimp_context_get_font_name      (GimpContext     *context);
void            gimp_context_set_font_name      (GimpContext     *context,
                                                 const gchar     *name);
void            gimp_context_font_changed       (GimpContext     *context);


/*  buffer  */
GimpBuffer    * gimp_context_get_buffer         (GimpContext     *context);
void            gimp_context_set_buffer         (GimpContext     *context,
                                                 GimpBuffer      *palette);
void            gimp_context_buffer_changed     (GimpContext     *context);


/*  imagefile  */
GimpImagefile * gimp_context_get_imagefile      (GimpContext     *context);
void            gimp_context_set_imagefile      (GimpContext     *context,
                                                 GimpImagefile   *imagefile);
void            gimp_context_imagefile_changed  (GimpContext     *context);


/*  template  */
GimpTemplate  * gimp_context_get_template       (GimpContext     *context);
void            gimp_context_set_template       (GimpContext     *context,
                                                 GimpTemplate    *template);
void            gimp_context_template_changed   (GimpContext     *context);


#endif /* __GIMP_CONTEXT_H__ */