]> Pileus Git - ~andy/gtk/blob - gdk/gdktypes.h
87ac3b24919decb9afcd7b14413ffdf7e9a1707f
[~andy/gtk] / gdk / gdktypes.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 #if !defined (__GDK_H_INSIDE__) && !defined (GDK_COMPILATION)
28 #error "Only <gdk/gdk.h> can be included directly."
29 #endif
30
31 #ifndef __GDK_TYPES_H__
32 #define __GDK_TYPES_H__
33
34 /* GDK uses "glib". (And so does GTK).
35  */
36 #include <glib.h>
37 #include <pango/pango.h>
38 #include <glib-object.h>
39 #include <cairo.h>
40
41 /* The system specific file gdkconfig.h contains such configuration
42  * settings that are needed not only when compiling GDK (or GTK)
43  * itself, but also occasionally when compiling programs that use GDK
44  * (or GTK). One such setting is what windowing API backend is in use.
45  */
46 #include <gdk/gdkconfig.h>
47
48 /* some common magic values */
49
50 /**
51  * GDK_CURRENT_TIME:
52  *
53  * Represents the current time, and can be used anywhere a time is expected.
54  */
55 #define GDK_CURRENT_TIME     0L
56
57 /**
58  * GDK_PARENT_RELATIVE:
59  *
60  * A special value, indicating that the background
61  * for a window should be inherited from the parent window.
62  */
63 #define GDK_PARENT_RELATIVE  1L
64
65
66
67 G_BEGIN_DECLS
68
69
70 /* Type definitions for the basic structures.
71  */
72 typedef struct _GdkPoint              GdkPoint;
73
74 /**
75  * GdkRectangle:
76  *
77  * Defines the position and size of a rectangle. It is identical to
78  * #cairo_rectangle_int_t.
79  */
80 typedef cairo_rectangle_int_t         GdkRectangle;
81
82 /**
83  * GdkAtom:
84  *
85  * An opaque type representing a string as an index into a table
86  * of strings on the X server.
87  */
88 typedef struct _GdkAtom            *GdkAtom;
89
90 /**
91  * GDK_ATOM_TO_POINTER:
92  * @atom: a #GdkAtom.
93  *
94  * Converts a #GdkAtom into a pointer type.
95  */
96 #define GDK_ATOM_TO_POINTER(atom) (atom)
97
98 /**
99  * GDK_POINTER_TO_ATOM:
100  * @ptr: a pointer containing a #GdkAtom.
101  *
102  * Extracts a #GdkAtom from a pointer. The #GdkAtom must have been
103  * stored in the pointer with GDK_ATOM_TO_POINTER().
104  */
105 #define GDK_POINTER_TO_ATOM(ptr)  ((GdkAtom)(ptr))
106
107 #define _GDK_MAKE_ATOM(val) ((GdkAtom)GUINT_TO_POINTER(val))
108
109 /**
110  * GDK_NONE:
111  *
112  * A null value for #GdkAtom, used in a similar way as
113  * <literal>None</literal> in the Xlib API.
114  */
115 #define GDK_NONE            _GDK_MAKE_ATOM (0)
116
117 /* Forward declarations of commonly used types */
118 typedef struct _GdkColor              GdkColor;
119 typedef struct _GdkRGBA               GdkRGBA;
120 typedef struct _GdkCursor             GdkCursor;
121 typedef struct _GdkVisual             GdkVisual;
122 typedef struct _GdkDevice             GdkDevice;
123 typedef struct _GdkDragContext        GdkDragContext;
124
125 typedef struct _GdkDisplayManager     GdkDisplayManager;
126 typedef struct _GdkDeviceManager      GdkDeviceManager;
127 typedef struct _GdkDisplay            GdkDisplay;
128 typedef struct _GdkScreen             GdkScreen;
129 typedef struct _GdkWindow             GdkWindow;
130 typedef struct _GdkKeymap             GdkKeymap;
131 typedef struct _GdkAppLaunchContext   GdkAppLaunchContext;
132
133 /**
134  * GdkByteOrder:
135  * @GDK_LSB_FIRST: The values are stored with the least-significant byte
136  *   first. For instance, the 32-bit value 0xffeecc would be stored
137  *   in memory as 0xcc, 0xee, 0xff, 0x00.
138  * @GDK_MSB_FIRST: The values are stored with the most-significant byte
139  *   first. For instance, the 32-bit value 0xffeecc would be stored
140  *   in memory as 0x00, 0xcc, 0xee, 0xff.
141  *
142  * A set of values describing the possible byte-orders
143  * for storing pixel values in memory.
144  */
145 typedef enum
146 {
147   GDK_LSB_FIRST,
148   GDK_MSB_FIRST
149 } GdkByteOrder;
150
151 /* Types of modifiers.
152  */
153 /**
154  * GdkModifierType:
155  * @GDK_SHIFT_MASK: the Shift key.
156  * @GDK_LOCK_MASK: a Lock key (depending on the modifier mapping of the
157  *  X server this may either be CapsLock or ShiftLock).
158  * @GDK_CONTROL_MASK: the Control key.
159  * @GDK_MOD1_MASK: the fourth modifier key (it depends on the modifier
160  *  mapping of the X server which key is interpreted as this modifier, but
161  *  normally it is the Alt key).
162  * @GDK_MOD2_MASK: the fifth modifier key (it depends on the modifier
163  *  mapping of the X server which key is interpreted as this modifier).
164  * @GDK_MOD3_MASK: the sixth modifier key (it depends on the modifier
165  *  mapping of the X server which key is interpreted as this modifier).
166  * @GDK_MOD4_MASK: the seventh modifier key (it depends on the modifier
167  *  mapping of the X server which key is interpreted as this modifier).
168  * @GDK_MOD5_MASK: the eighth modifier key (it depends on the modifier
169  *  mapping of the X server which key is interpreted as this modifier).
170  * @GDK_BUTTON1_MASK: the first mouse button.
171  * @GDK_BUTTON2_MASK: the second mouse button.
172  * @GDK_BUTTON3_MASK: the third mouse button.
173  * @GDK_BUTTON4_MASK: the fourth mouse button.
174  * @GDK_BUTTON5_MASK: the fifth mouse button.
175  * @GDK_MODIFIER_RESERVED_13_MASK: A reserved bit flag; do not use in your own code
176  * @GDK_SUPER_MASK: the Super modifier. Since 2.10
177  * @GDK_HYPER_MASK: the Hyper modifier. Since 2.10
178  * @GDK_META_MASK: the Meta modifier. Since 2.10
179  * @GDK_RELEASE_MASK: not used in GDK itself. GTK+ uses it to differentiate
180  *  between (keyval, modifiers) pairs from key press and release events.
181  * @GDK_MODIFIER_MASK: a mask covering all modifier types.
182  *
183  * A set of bit-flags to indicate the state of modifier keys and mouse buttons
184  * in various event types. Typical modifier keys are Shift, Control, Meta,
185  * Super, Hyper, Alt, Compose, Apple, CapsLock or ShiftLock.
186  *
187  * Like the X Window System, GDK supports 8 modifier keys and 5 mouse buttons.
188  *
189  * Since 2.10, GDK recognizes which of the Meta, Super or Hyper keys are mapped
190  * to Mod2 - Mod5, and indicates this by setting %GDK_SUPER_MASK,
191  * %GDK_HYPER_MASK or %GDK_META_MASK in the state field of key events.
192  *
193  * Note that GDK may add internal values to events which include
194  * reserved values such as %GDK_MODIFIER_RESERVED_13_MASK.  Your code
195  * should preserve and ignore them.  You can use %GDK_MODIFIER_MASK to
196  * remove all reserved values.
197  */
198 typedef enum
199 {
200   GDK_SHIFT_MASK    = 1 << 0,
201   GDK_LOCK_MASK     = 1 << 1,
202   GDK_CONTROL_MASK  = 1 << 2,
203   GDK_MOD1_MASK     = 1 << 3,
204   GDK_MOD2_MASK     = 1 << 4,
205   GDK_MOD3_MASK     = 1 << 5,
206   GDK_MOD4_MASK     = 1 << 6,
207   GDK_MOD5_MASK     = 1 << 7,
208   GDK_BUTTON1_MASK  = 1 << 8,
209   GDK_BUTTON2_MASK  = 1 << 9,
210   GDK_BUTTON3_MASK  = 1 << 10,
211   GDK_BUTTON4_MASK  = 1 << 11,
212   GDK_BUTTON5_MASK  = 1 << 12,
213
214   GDK_MODIFIER_RESERVED_13_MASK  = 1 << 13,
215   GDK_MODIFIER_RESERVED_14_MASK  = 1 << 14,
216   GDK_MODIFIER_RESERVED_15_MASK  = 1 << 15,
217   GDK_MODIFIER_RESERVED_16_MASK  = 1 << 16,
218   GDK_MODIFIER_RESERVED_17_MASK  = 1 << 17,
219   GDK_MODIFIER_RESERVED_18_MASK  = 1 << 18,
220   GDK_MODIFIER_RESERVED_19_MASK  = 1 << 19,
221   GDK_MODIFIER_RESERVED_20_MASK  = 1 << 20,
222   GDK_MODIFIER_RESERVED_21_MASK  = 1 << 21,
223   GDK_MODIFIER_RESERVED_22_MASK  = 1 << 22,
224   GDK_MODIFIER_RESERVED_23_MASK  = 1 << 23,
225   GDK_MODIFIER_RESERVED_24_MASK  = 1 << 24,
226   GDK_MODIFIER_RESERVED_25_MASK  = 1 << 25,
227
228   /* The next few modifiers are used by XKB, so we skip to the end.
229    * Bits 15 - 25 are currently unused. Bit 29 is used internally.
230    */
231   
232   GDK_SUPER_MASK    = 1 << 26,
233   GDK_HYPER_MASK    = 1 << 27,
234   GDK_META_MASK     = 1 << 28,
235   
236   GDK_MODIFIER_RESERVED_29_MASK  = 1 << 29,
237
238   GDK_RELEASE_MASK  = 1 << 30,
239
240   /* Combination of GDK_SHIFT_MASK..GDK_BUTTON5_MASK + GDK_SUPER_MASK
241      + GDK_HYPER_MASK + GDK_META_MASK + GDK_RELEASE_MASK */
242   GDK_MODIFIER_MASK = 0x5c001fff
243 } GdkModifierType;
244
245 typedef enum
246 {
247   GDK_OK          = 0,
248   GDK_ERROR       = -1,
249   GDK_ERROR_PARAM = -2,
250   GDK_ERROR_FILE  = -3,
251   GDK_ERROR_MEM   = -4
252 } GdkStatus;
253
254 /**
255  * GdkGrabStatus:
256  * @GDK_GRAB_SUCCESS: the resource was successfully grabbed.
257  * @GDK_GRAB_ALREADY_GRABBED: the resource is actively grabbed by another client.
258  * @GDK_GRAB_INVALID_TIME: the resource was grabbed more recently than the
259  *  specified time.
260  * @GDK_GRAB_NOT_VIEWABLE: the grab window or the @confine_to window are not
261  *  viewable.
262  * @GDK_GRAB_FROZEN: the resource is frozen by an active grab of another client.
263  *
264  * Returned by gdk_pointer_grab() and gdk_keyboard_grab() to indicate
265  * success or the reason for the failure of the grab attempt.
266  */
267 typedef enum
268 {
269   GDK_GRAB_SUCCESS         = 0,
270   GDK_GRAB_ALREADY_GRABBED = 1,
271   GDK_GRAB_INVALID_TIME    = 2,
272   GDK_GRAB_NOT_VIEWABLE    = 3,
273   GDK_GRAB_FROZEN          = 4
274 } GdkGrabStatus;
275
276 /**
277  * GdkGrabOwnership:
278  * @GDK_OWNERSHIP_NONE: All other devices' events are allowed.
279  * @GDK_OWNERSHIP_WINDOW: Other devices' events are blocked for the grab window.
280  * @GDK_OWNERSHIP_APPLICATION: Other devices' events are blocked for the whole application.
281  *
282  * Defines how device grabs interact with other devices.
283  */
284 typedef enum
285 {
286   GDK_OWNERSHIP_NONE,
287   GDK_OWNERSHIP_WINDOW,
288   GDK_OWNERSHIP_APPLICATION
289 } GdkGrabOwnership;
290
291 /**
292  * GdkEventMask:
293  * @GDK_EXPOSURE_MASK: receive expose events
294  * @GDK_POINTER_MOTION_MASK: receive all pointer motion events
295  * @GDK_POINTER_MOTION_HINT_MASK: see the explanation above
296  * @GDK_BUTTON_MOTION_MASK: receive pointer motion events while any button is pressed
297  * @GDK_BUTTON1_MOTION_MASK: receive pointer motion events while 1 button is pressed
298  * @GDK_BUTTON2_MOTION_MASK: receive pointer motion events while 2 button is pressed
299  * @GDK_BUTTON3_MOTION_MASK: receive pointer motion events while 3 button is pressed
300  * @GDK_BUTTON_PRESS_MASK: receive button press events
301  * @GDK_BUTTON_RELEASE_MASK: receive button release events
302  * @GDK_KEY_PRESS_MASK: receive key press events
303  * @GDK_KEY_RELEASE_MASK: receive key release events
304  * @GDK_ENTER_NOTIFY_MASK: receive window enter events
305  * @GDK_LEAVE_NOTIFY_MASK: receive window leave events
306  * @GDK_FOCUS_CHANGE_MASK: receive focus change events
307  * @GDK_STRUCTURE_MASK: receive events about window configuration change
308  * @GDK_PROPERTY_CHANGE_MASK: receive property change events
309  * @GDK_VISIBILITY_NOTIFY_MASK: receive visibility change events
310  * @GDK_PROXIMITY_IN_MASK: receive proximity in events
311  * @GDK_PROXIMITY_OUT_MASK: receive proximity out events
312  * @GDK_SUBSTRUCTURE_MASK: receive events about window configuration changes of
313  *   child windows
314  * @GDK_SCROLL_MASK: receive scroll events
315  * @GDK_ALL_EVENTS_MASK: the combination of all the above event masks.
316  *
317  * A set of bit-flags to indicate which events a window is to receive.
318  * Most of these masks map onto one or more of the #GdkEventType event types
319  * above.
320  *
321  * %GDK_POINTER_MOTION_HINT_MASK is a special mask which is used to reduce the
322  * number of %GDK_MOTION_NOTIFY events received. Normally a %GDK_MOTION_NOTIFY
323  * event is received each time the mouse moves. However, if the application
324  * spends a lot of time processing the event (updating the display, for example),
325  * it can lag behind the position of the mouse. When using
326  * %GDK_POINTER_MOTION_HINT_MASK, fewer %GDK_MOTION_NOTIFY events will be sent,
327  * some of which are marked as a hint (the is_hint member is %TRUE).
328  * To receive more motion events after a motion hint event, the application
329  * needs to asks for more, by calling gdk_event_request_motions().
330  */
331 typedef enum
332 {
333   GDK_EXPOSURE_MASK             = 1 << 1,
334   GDK_POINTER_MOTION_MASK       = 1 << 2,
335   GDK_POINTER_MOTION_HINT_MASK  = 1 << 3,
336   GDK_BUTTON_MOTION_MASK        = 1 << 4,
337   GDK_BUTTON1_MOTION_MASK       = 1 << 5,
338   GDK_BUTTON2_MOTION_MASK       = 1 << 6,
339   GDK_BUTTON3_MOTION_MASK       = 1 << 7,
340   GDK_BUTTON_PRESS_MASK         = 1 << 8,
341   GDK_BUTTON_RELEASE_MASK       = 1 << 9,
342   GDK_KEY_PRESS_MASK            = 1 << 10,
343   GDK_KEY_RELEASE_MASK          = 1 << 11,
344   GDK_ENTER_NOTIFY_MASK         = 1 << 12,
345   GDK_LEAVE_NOTIFY_MASK         = 1 << 13,
346   GDK_FOCUS_CHANGE_MASK         = 1 << 14,
347   GDK_STRUCTURE_MASK            = 1 << 15,
348   GDK_PROPERTY_CHANGE_MASK      = 1 << 16,
349   GDK_VISIBILITY_NOTIFY_MASK    = 1 << 17,
350   GDK_PROXIMITY_IN_MASK         = 1 << 18,
351   GDK_PROXIMITY_OUT_MASK        = 1 << 19,
352   GDK_SUBSTRUCTURE_MASK         = 1 << 20,
353   GDK_SCROLL_MASK               = 1 << 21,
354   GDK_ALL_EVENTS_MASK           = 0x3FFFFE
355 } GdkEventMask;
356
357 /**
358  * GdkPoint:
359  * @x: the x coordinate of the point.
360  * @y: the y coordinate of the point.
361  *
362  * Defines the x and y coordinates of a point.
363  */
364 struct _GdkPoint
365 {
366   gint x;
367   gint y;
368 };
369
370
371 G_END_DECLS
372
373
374 #endif /* __GDK_TYPES_H__ */