]> Pileus Git - ~andy/gtk/blob - gdk/gdktypes.h
correct checking for BeOS check
[~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 Library 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  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library 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-1999.  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_TYPES_H__
28 #define __GDK_TYPES_H__
29
30 /* GDK uses "glib". (And so does GTK).
31  */
32 #include <glib.h>
33
34 #ifdef G_OS_WIN32
35 #  ifdef GDK_COMPILATION
36 #    define GDKVAR __declspec(dllexport)
37 #  else
38 #    define GDKVAR extern __declspec(dllimport)
39 #  endif
40 #else
41 #  define GDKVAR extern
42 #endif
43
44 /* The system specific file gdkconfig.h contains such configuration
45  * settings that are needed not only when compiling GDK (or GTK)
46  * itself, but also occasionally when compiling programs that use GDK
47  * (or GTK). One such setting is what windowing API backend is in use.
48  */
49 #include <gdkconfig.h>
50
51 /* some common magic values */
52 #define GDK_NONE             0L
53 #define GDK_CURRENT_TIME     0L
54 #define GDK_PARENT_RELATIVE  1L
55
56 /* special deviceid for core pointer events */
57 #define GDK_CORE_POINTER 0xfedc
58
59
60 #ifdef __cplusplus
61 extern "C" {
62 #endif /* __cplusplus */
63
64
65 /* Type definitions for the basic structures.
66  */
67 typedef struct _GdkPoint              GdkPoint;
68 typedef struct _GdkRectangle          GdkRectangle;
69 typedef struct _GdkSegment            GdkSegment;
70
71 typedef guint32                     GdkWChar;
72 typedef gulong                      GdkAtom;
73  
74 /* Forward declarations of commonly used types
75  */
76 typedef struct _GdkColor              GdkColor;
77 typedef struct _GdkColormap           GdkColormap;
78 typedef struct _GdkCursor             GdkCursor;
79 typedef struct _GdkFont               GdkFont;
80 typedef struct _GdkGC                 GdkGC;
81 typedef struct _GdkImage              GdkImage;
82 typedef struct _GdkRegion             GdkRegion;
83 typedef struct _GdkVisual             GdkVisual;
84
85 typedef struct _GdkDrawable           GdkDrawable;
86 typedef struct _GdkDrawable           GdkBitmap;
87 typedef struct _GdkDrawable           GdkPixmap;
88 typedef struct _GdkDrawable           GdkWindow;
89
90 typedef enum
91 {
92   GDK_LSB_FIRST,
93   GDK_MSB_FIRST
94 } GdkByteOrder;
95
96 /* Types of modifiers.
97  */
98 typedef enum
99 {
100   GDK_SHIFT_MASK    = 1 << 0,
101   GDK_LOCK_MASK     = 1 << 1,
102   GDK_CONTROL_MASK  = 1 << 2,
103   GDK_MOD1_MASK     = 1 << 3,
104   GDK_MOD2_MASK     = 1 << 4,
105   GDK_MOD3_MASK     = 1 << 5,
106   GDK_MOD4_MASK     = 1 << 6,
107   GDK_MOD5_MASK     = 1 << 7,
108   GDK_BUTTON1_MASK  = 1 << 8,
109   GDK_BUTTON2_MASK  = 1 << 9,
110   GDK_BUTTON3_MASK  = 1 << 10,
111   GDK_BUTTON4_MASK  = 1 << 11,
112   GDK_BUTTON5_MASK  = 1 << 12,
113   GDK_RELEASE_MASK  = 1 << 13,
114   GDK_MODIFIER_MASK = 0x3fff
115 } GdkModifierType;
116
117 typedef enum
118 {
119   GDK_INPUT_READ       = 1 << 0,
120   GDK_INPUT_WRITE      = 1 << 1,
121   GDK_INPUT_EXCEPTION  = 1 << 2
122 } GdkInputCondition;
123
124 typedef enum
125 {
126   GDK_OK          = 0,
127   GDK_ERROR       = -1,
128   GDK_ERROR_PARAM = -2,
129   GDK_ERROR_FILE  = -3,
130   GDK_ERROR_MEM   = -4
131 } GdkStatus;
132
133 typedef void (*GdkInputFunction) (gpointer          data,
134                                   gint              source,
135                                   GdkInputCondition condition);
136
137 typedef void (*GdkDestroyNotify) (gpointer data);
138
139 struct _GdkPoint
140 {
141   gint16 x;
142   gint16 y;
143 };
144
145 struct _GdkRectangle
146 {
147   gint16 x;
148   gint16 y;
149   guint16 width;
150   guint16 height;
151 };
152
153 struct _GdkSegment
154 {
155   gint16 x1;
156   gint16 y1;
157   gint16 x2;
158   gint16 y2;
159 };
160
161
162 #ifdef __cplusplus
163 }
164 #endif /* __cplusplus */
165
166
167 #endif /* __GDK_TYPES_H__ */