]> Pileus Git - ~andy/gtk/blob - gdk/gdk.h
gdk: Remove GdkPixmap
[~andy/gtk] / gdk / gdk.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 #ifndef __GDK_H__
28 #define __GDK_H__
29
30 #define __GDK_H_INSIDE__
31
32 #include <gdk/gdkapplaunchcontext.h>
33 #include <gdk/gdkcairo.h>
34 #include <gdk/gdkcolor.h>
35 #include <gdk/gdkcursor.h>
36 #include <gdk/gdkdevice.h>
37 #include <gdk/gdkdevicemanager.h>
38 #include <gdk/gdkdisplay.h>
39 #include <gdk/gdkdisplaymanager.h>
40 #include <gdk/gdkdnd.h>
41 #include <gdk/gdkdrawable.h>
42 #include <gdk/gdkenumtypes.h>
43 #include <gdk/gdkevents.h>
44 #include <gdk/gdkinput.h>
45 #include <gdk/gdkkeys.h>
46 #include <gdk/gdkkeysyms.h>
47 #include <gdk/gdkpango.h>
48 #include <gdk/gdkpixbuf.h>
49 #include <gdk/gdkproperty.h>
50 #include <gdk/gdkscreen.h>
51 #include <gdk/gdkselection.h>
52 #include <gdk/gdkspawn.h>
53 #include <gdk/gdktestutils.h>
54 #include <gdk/gdktypes.h>
55 #include <gdk/gdkvisual.h>
56 #include <gdk/gdkwindow.h>
57
58 #undef __GDK_H_INSIDE__
59
60 G_BEGIN_DECLS
61
62
63 /* Initialization, exit and events
64  */
65 #define   GDK_PRIORITY_EVENTS           (G_PRIORITY_DEFAULT)
66 void      gdk_enable_multidevice        (void);
67 void      gdk_parse_args                (gint           *argc,
68                                          gchar        ***argv);
69 void      gdk_init                      (gint           *argc,
70                                          gchar        ***argv);
71 gboolean  gdk_init_check                (gint           *argc,
72                                          gchar        ***argv);
73 void gdk_add_option_entries_libgtk_only (GOptionGroup *group);
74 void gdk_pre_parse_libgtk_only          (void);
75
76 gchar*    gdk_set_locale                (void);
77
78 G_CONST_RETURN char *gdk_get_program_class (void);
79 void                 gdk_set_program_class (const char *program_class);
80
81 /* Push and pop error handlers for X errors
82  */
83 void                           gdk_error_trap_push        (void);
84 /* warn unused because you could use pop_ignored otherwise */
85 G_GNUC_WARN_UNUSED_RESULT gint gdk_error_trap_pop         (void);
86 void                           gdk_error_trap_pop_ignored (void);
87
88
89 gchar*                    gdk_get_display               (void);
90 G_CONST_RETURN gchar*     gdk_get_display_arg_name      (void);
91
92 #ifndef GDK_MULTIDEVICE_SAFE
93 GdkGrabStatus gdk_pointer_grab       (GdkWindow    *window,
94                                       gboolean      owner_events,
95                                       GdkEventMask  event_mask,
96                                       GdkWindow    *confine_to,
97                                       GdkCursor    *cursor,
98                                       guint32       time_);
99 GdkGrabStatus gdk_keyboard_grab      (GdkWindow    *window,
100                                       gboolean      owner_events,
101                                       guint32       time_);
102 #endif /* GDK_MULTIDEVICE_SAFE */
103
104 #ifndef GDK_MULTIHEAD_SAFE
105
106 #ifndef GDK_MULTIDEVICE_SAFE
107 void          gdk_pointer_ungrab     (guint32       time_);
108 void          gdk_keyboard_ungrab    (guint32       time_);
109 gboolean      gdk_pointer_is_grabbed (void);
110 #endif /* GDK_MULTIDEVICE_SAFE */
111
112 gint gdk_screen_width  (void) G_GNUC_CONST;
113 gint gdk_screen_height (void) G_GNUC_CONST;
114
115 gint gdk_screen_width_mm  (void) G_GNUC_CONST;
116 gint gdk_screen_height_mm (void) G_GNUC_CONST;
117
118 void gdk_beep (void);
119 #endif /* GDK_MULTIHEAD_SAFE */
120
121 void gdk_flush (void);
122
123 #ifndef GDK_MULTIHEAD_SAFE
124 void gdk_set_double_click_time             (guint       msec);
125 #endif
126
127 /* Rectangle utilities
128  */
129 gboolean gdk_rectangle_intersect (const GdkRectangle *src1,
130                                   const GdkRectangle *src2,
131                                   GdkRectangle       *dest);
132 void     gdk_rectangle_union     (const GdkRectangle *src1,
133                                   const GdkRectangle *src2,
134                                   GdkRectangle       *dest);
135
136 GType gdk_rectangle_get_type (void) G_GNUC_CONST;
137
138 #define GDK_TYPE_RECTANGLE (gdk_rectangle_get_type ())
139
140 /* Miscellaneous */
141 #ifndef GDK_MULTIHEAD_SAFE
142 gboolean gdk_event_send_client_message      (GdkEvent       *event,
143                                              GdkNativeWindow winid);
144 void     gdk_event_send_clientmessage_toall (GdkEvent  *event);
145 #endif
146 gboolean gdk_event_send_client_message_for_display (GdkDisplay *display,
147                                                     GdkEvent       *event,
148                                                     GdkNativeWindow winid);
149
150 void gdk_notify_startup_complete (void);
151
152 void gdk_notify_startup_complete_with_id (const gchar* startup_id);
153
154 /* Threading
155  */
156
157 void     gdk_threads_enter                    (void);
158 void     gdk_threads_leave                    (void);
159 void     gdk_threads_init                     (void);
160 void     gdk_threads_set_lock_functions       (GCallback enter_fn,
161                                                GCallback leave_fn);
162
163 guint    gdk_threads_add_idle_full            (gint           priority,
164                                                GSourceFunc    function,
165                                                gpointer       data,
166                                                GDestroyNotify notify);
167 guint    gdk_threads_add_idle                 (GSourceFunc    function,
168                                                gpointer       data);
169 guint    gdk_threads_add_timeout_full         (gint           priority,
170                                                guint          interval,
171                                                GSourceFunc    function,
172                                                gpointer       data,
173                                                GDestroyNotify notify);
174 guint    gdk_threads_add_timeout              (guint          interval,
175                                                GSourceFunc    function,
176                                                gpointer       data);
177 guint    gdk_threads_add_timeout_seconds_full (gint           priority,
178                                                guint          interval,
179                                                GSourceFunc    function,
180                                                gpointer       data,
181                                                GDestroyNotify notify);
182 guint    gdk_threads_add_timeout_seconds      (guint          interval,
183                                                GSourceFunc    function,
184                                                gpointer       data);
185
186 #define GDK_THREADS_ENTER() gdk_threads_enter()
187 #define GDK_THREADS_LEAVE() gdk_threads_leave()
188
189 G_END_DECLS
190
191
192 #endif /* __GDK_H__ */