]> Pileus Git - ~andy/gtk/blob - gdk/gdkinternals.h
Export _gdk_draw_pixbuf as gdk_draw_pixbuf(), rename the _draw_pixbuf
[~andy/gtk] / gdk / gdkinternals.h
1 /* GDK - The GIMP Drawing Kit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 /* Uninstalled header defining types and functions internal to GDK */
28
29 #include <gdk/gdktypes.h>
30 #include <gdk/gdkwindow.h>
31 #include <gdk/gdkprivate.h>
32
33 #ifndef __GDK_INTERNALS_H__
34 #define __GDK_INTERNALS_H__
35
36 /**********************
37  * General Facilities * 
38  **********************/
39
40 /* Debugging support */
41
42 typedef struct _GdkColorInfo           GdkColorInfo;
43 typedef struct _GdkEventFilter         GdkEventFilter;
44 typedef struct _GdkClientFilter        GdkClientFilter;
45
46 typedef enum {
47   GDK_COLOR_WRITEABLE = 1 << 0
48 } GdkColorInfoFlags;
49
50 struct _GdkColorInfo
51 {
52   GdkColorInfoFlags flags;
53   guint ref_count;
54 };
55
56 struct _GdkEventFilter {
57   GdkFilterFunc function;
58   gpointer data;
59 };
60
61 struct _GdkClientFilter {
62   GdkAtom       type;
63   GdkFilterFunc function;
64   gpointer      data;
65 };
66
67 typedef enum {
68   GDK_DEBUG_MISC          = 1 << 0,
69   GDK_DEBUG_EVENTS        = 1 << 1,
70   GDK_DEBUG_DND           = 1 << 2,
71   GDK_DEBUG_XIM           = 1 << 3,
72   GDK_DEBUG_NOGRABS       = 1 << 4,
73   GDK_DEBUG_COLORMAP      = 1 << 5,
74   GDK_DEBUG_GDKRGB        = 1 << 6,
75   GDK_DEBUG_GC            = 1 << 7,
76   GDK_DEBUG_PIXMAP        = 1 << 8,
77   GDK_DEBUG_IMAGE         = 1 << 9,
78   GDK_DEBUG_INPUT         = 1 <<10,
79   GDK_DEBUG_CURSOR        = 1 <<11,
80   GDK_DEBUG_MULTIHEAD     = 1 <<12
81 } GdkDebugFlag;
82
83 #ifndef GDK_DISABLE_DEPRECATED
84
85 typedef struct _GdkFontPrivate         GdkFontPrivate;
86
87 struct _GdkFontPrivate
88 {
89   GdkFont font;
90   guint ref_count;
91 };
92
93 #endif /* GDK_DISABLE_DEPRECATED */
94
95 extern GList            *_gdk_default_filters;
96 extern GdkWindow        *_gdk_parent_root;
97 extern gint              _gdk_error_code;
98 extern gint              _gdk_error_warnings;
99
100 extern guint _gdk_debug_flags;
101
102 #ifdef G_ENABLE_DEBUG
103
104 #define GDK_NOTE(type,action)                G_STMT_START { \
105     if (_gdk_debug_flags & GDK_DEBUG_##type)                \
106        { action; };                          } G_STMT_END
107
108 #else /* !G_ENABLE_DEBUG */
109
110 #define GDK_NOTE(type,action)
111
112 #endif /* G_ENABLE_DEBUG */
113
114 /* Arg parsing */
115
116 typedef enum 
117 {
118   GDK_ARG_STRING,
119   GDK_ARG_INT,
120   GDK_ARG_BOOL,
121   GDK_ARG_NOBOOL,
122   GDK_ARG_CALLBACK
123 } GdkArgType;
124
125 typedef struct _GdkArgContext GdkArgContext;
126 typedef struct _GdkArgDesc GdkArgDesc;
127
128 typedef void (*GdkArgFunc) (const char *name, const char *arg, gpointer data);
129
130 struct _GdkArgContext
131 {
132   GPtrArray *tables;
133   gpointer cb_data;
134 };
135
136 struct _GdkArgDesc
137 {
138   const char *name;
139   GdkArgType type;
140   gpointer location;
141   GdkArgFunc callback;
142 };
143
144 /* Event handling */
145
146 typedef struct _GdkEventPrivate GdkEventPrivate;
147
148 typedef enum
149 {
150   /* Following flag is set for events on the event queue during
151    * translation and cleared afterwards.
152    */
153   GDK_EVENT_PENDING = 1 << 0
154 } GdkEventFlags;
155
156 struct _GdkEventPrivate
157 {
158   GdkEvent   event;
159   guint      flags;
160   GdkScreen *screen;
161 };
162
163 extern GdkEventFunc   _gdk_event_func;    /* Callback for events */
164 extern gpointer       _gdk_event_data;
165 extern GDestroyNotify _gdk_event_notify;
166
167 extern GSList    *_gdk_displays;
168 extern gchar     *_gdk_display_name;
169
170 extern const GdkPointerHooks *_gdk_current_pointer_hooks;
171
172 GdkEvent* _gdk_event_new (void);
173
174
175 void      _gdk_events_queue  (GdkDisplay *display);
176 GdkEvent* _gdk_event_unqueue (GdkDisplay *display);
177
178 GList* _gdk_event_queue_find_first  (GdkDisplay *display);
179 void   _gdk_event_queue_remove_link (GdkDisplay *display,
180                                      GList      *node);
181 GList*  _gdk_event_queue_append     (GdkDisplay *display,
182                                      GdkEvent   *event);
183 void _gdk_event_button_generate     (GdkDisplay *display,
184                                      GdkEvent   *event);
185
186 void gdk_synthesize_window_state (GdkWindow     *window,
187                                   GdkWindowState unset_flags,
188                                   GdkWindowState set_flags);
189
190 #define GDK_SCRATCH_IMAGE_WIDTH 256
191 #define GDK_SCRATCH_IMAGE_HEIGHT 64
192
193 GdkImage* _gdk_image_new_for_depth (GdkScreen    *screen,
194                                     GdkImageType  type,
195                                     GdkVisual    *visual,
196                                     gint          width,
197                                     gint          height,
198                                     gint          depth);
199 GdkImage *_gdk_image_get_scratch (GdkScreen *screen,
200                                   gint       width,
201                                   gint       height,
202                                   gint       depth,
203                                   gint      *x,
204                                   gint      *y);
205
206 GdkImage *_gdk_drawable_copy_to_image (GdkDrawable  *drawable,
207                                        GdkImage     *image,
208                                        gint          src_x,
209                                        gint          src_y,
210                                        gint          dest_x,
211                                        gint          dest_y,
212                                        gint          width,
213                                        gint          height);
214
215 /*************************************
216  * Interfaces used by windowing code *
217  *************************************/
218
219 void       _gdk_window_destroy           (GdkWindow   *window,
220                                           gboolean     foreign_destroy);
221 void       _gdk_window_clear_update_area (GdkWindow   *window);
222
223 void       _gdk_screen_close             (GdkScreen   *screen);
224
225 const char *_gdk_get_sm_client_id (void);
226
227 /*****************************************
228  * Interfaces provided by windowing code *
229  *****************************************/
230
231 /* Font/string functions implemented in module-specific code */
232 gint _gdk_font_strlen (GdkFont *font, const char *str);
233 void _gdk_font_destroy (GdkFont *font);
234
235 void _gdk_colormap_real_destroy (GdkColormap *colormap);
236
237 void _gdk_cursor_destroy (GdkCursor *cursor);
238
239 extern GdkArgDesc _gdk_windowing_args[];
240 void     _gdk_windowing_init                    (gint       *argc,
241                                                  gchar    ***argv);
242 void     _gdk_windowing_set_default_display     (GdkDisplay *display);
243
244 void     _gdk_windowing_window_get_offsets      (GdkWindow  *window,
245                                                  gint       *x_offset,
246                                                  gint       *y_offset);
247 void     _gdk_windowing_window_clear_area       (GdkWindow  *window,
248                                                  gint        x,
249                                                  gint        y,
250                                                  gint        width,
251                                                  gint        height);
252 void     _gdk_windowing_window_clear_area_e     (GdkWindow  *window,
253                                                  gint        x,
254                                                  gint        y,
255                                                  gint        width,
256                                                  gint        height);
257
258 GdkWindow* _gdk_windowing_window_at_pointer  (GdkScreen       *screen,
259                                               gint            *win_x,
260                                               gint            *win_y);
261 GdkWindow* _gdk_windowing_window_get_pointer (GdkWindow       *window,
262                                               gint            *x,
263                                               gint            *y,
264                                               GdkModifierType *mask);
265
266 /* Return the number of bits-per-pixel for images of the specified depth. */
267 gint _gdk_windowing_get_bits_for_depth (GdkDisplay *display,
268                                         gint        depth);
269
270 #define GDK_WINDOW_IS_MAPPED(window) ((((GdkWindowObject*)window)->state & GDK_WINDOW_STATE_WITHDRAWN) == 0)
271
272 /* Called before processing updates for a window. This gives the windowing
273  * layer a chance to save the region for later use in avoiding duplicate
274  * exposes. The return value indicates whether the function has a saved
275  * the region; if the result is TRUE, then the windowing layer is responsible
276  * for destroying the region later.
277  */
278 gboolean _gdk_windowing_window_queue_antiexpose (GdkWindow  *window,
279                                                  GdkRegion  *area);
280
281 /* Called to do the windowing system specific part of gdk_window_destroy(),
282  *
283  * window: The window being destroyed
284  * recursing: If TRUE, then this is being called because a parent
285  *            was destroyed. This generally means that the call to the windowing system
286  *            to destroy the window can be omitted, since it will be destroyed as a result
287  *            of the parent being destroyed. Unless @foreign_destroy
288  *            
289  * foreign_destroy: If TRUE, the window or a parent was destroyed by some external 
290  *            agency. The window has already been destroyed and no windowing
291  *            system calls should be made. (This may never happen for some
292  *            windowing systems.)
293  */
294 void _gdk_windowing_window_destroy (GdkWindow *window,
295                                     gboolean   recursing,
296                                     gboolean   foreign_destroy);
297
298 void _gdk_windowing_display_set_sm_client_id (GdkDisplay  *display,
299                                               const gchar *sm_client_id);
300
301 /* Implementation types */
302 GType _gdk_window_impl_get_type (void) G_GNUC_CONST;
303 GType _gdk_pixmap_impl_get_type (void) G_GNUC_CONST;
304
305 /************************************
306  * Initialization and exit routines *
307  ************************************/
308
309 void _gdk_image_exit  (void);
310 void _gdk_windowing_exit (void);
311
312 void _gdk_get_command_line_args (int    *argc,
313                                  char ***argv);
314
315 #ifdef __cplusplus
316 }
317 #endif /* __cplusplus */
318
319 #endif /* __GDK_INTERNALS_H__ */