]> code.delx.au - gnu-emacs/blob - src/macgui.h
(nnmail-extra-headers): Add defvar.
[gnu-emacs] / src / macgui.h
1 /* Definitions and headers for communication on the Mac OS.
2 Copyright (C) 2000, 2001, 2002, 2003, 2004,
3 2005 Free Software Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
21
22 /* Contributed by Andrew Choi (akochoi@mac.com). */
23
24 #ifndef EMACS_MACGUI_H
25 #define EMACS_MACGUI_H
26
27 typedef int Display; /* fix later */
28
29 typedef Lisp_Object XrmDatabase;
30
31 typedef unsigned long Time;
32
33 #ifdef HAVE_CARBON
34 #undef Z
35 #ifdef MAC_OSX
36 #if ! HAVE_MKTIME || BROKEN_MKTIME
37 #undef mktime
38 #endif
39 #undef DEBUG
40 #undef free
41 #undef malloc
42 #undef realloc
43 /* Macros max and min defined in lisp.h conflict with those in
44 precompiled header Carbon.h. */
45 #undef max
46 #undef min
47 #undef init_process
48 #include <Carbon/Carbon.h>
49 #if ! HAVE_MKTIME || BROKEN_MKTIME
50 #undef mktime
51 #define mktime emacs_mktime
52 #endif
53 #undef free
54 #define free unexec_free
55 #undef malloc
56 #define malloc unexec_malloc
57 #undef realloc
58 #define realloc unexec_realloc
59 #undef min
60 #define min(a, b) ((a) < (b) ? (a) : (b))
61 #undef max
62 #define max(a, b) ((a) > (b) ? (a) : (b))
63 #undef init_process
64 #define init_process emacs_init_process
65 #undef INFINITY
66 #else /* not MAC_OSX */
67 #undef SIGHUP
68 #define OLDP2C 1
69 #include <Carbon.h>
70 #endif /* not MAC_OSX */
71 #undef Z
72 #define Z (current_buffer->text->z)
73 #else /* not HAVE_CARBON */
74 #include <QuickDraw.h> /* for WindowPtr */
75 #include <QDOffscreen.h> /* for GWorldPtr */
76 #include <Appearance.h> /* for ThemeCursor */
77 #include <Windows.h>
78 #include <Controls.h>
79 #include <Gestalt.h>
80 #endif /* not HAVE_CARBON */
81
82 typedef WindowPtr Window;
83 typedef GWorldPtr Pixmap;
84
85 #define Cursor ThemeCursor
86 #define No_Cursor (-1)
87
88 #define FACE_DEFAULT (~0)
89
90 #if !TARGET_API_MAC_CARBON
91 #define GetPixDepth(pmh) ((*(pmh))->pixelSize)
92 #endif
93
94
95 /* Emulate XCharStruct. */
96 typedef struct _XCharStruct
97 {
98 int rbearing;
99 int lbearing;
100 int width;
101 int ascent;
102 int descent;
103 } XCharStruct;
104
105 #define STORE_XCHARSTRUCT(xcs, w, bds) \
106 ((xcs).width = (w), \
107 (xcs).lbearing = (bds).left, \
108 (xcs).rbearing = (bds).right, \
109 (xcs).ascent = -(bds).top, \
110 (xcs).descent = (bds).bottom)
111
112 struct MacFontStruct {
113 char *full_name;
114
115 short mac_fontnum; /* font number of font used in this window */
116 int mac_fontsize; /* size of font */
117 short mac_fontface; /* plain, bold, italics, etc. */
118 #if TARGET_API_MAC_CARBON
119 int mac_scriptcode; /* Mac OS script code for font used */
120 #else
121 short mac_scriptcode; /* Mac OS script code for font used */
122 #endif
123
124 #if 0
125 SInt16 mFontNum; /* font number of font used in this window */
126 short mScriptCode; /* Mac OS script code for font used */
127 int mFontSize; /* size of font */
128 Style mFontFace; /* plain, bold, italics, etc. */
129 int mHeight; /* height of one line of text in pixels */
130 int mWidth; /* width of one character in pixels */
131 int mAscent;
132 int mDescent;
133 int mLeading;
134 char mTwoByte; /* true for two-byte font */
135 #endif /* 0 */
136
137 /* from Xlib.h */
138 #if 0
139 XExtData *ext_data; /* hook for extension to hang data */
140 Font fid; /* Font id for this font */
141 unsigned direction; /* hint about the direction font is painted */
142 #endif /* 0 */
143 unsigned min_char_or_byte2;/* first character */
144 unsigned max_char_or_byte2;/* last character */
145 unsigned min_byte1; /* first row that exists */
146 unsigned max_byte1; /* last row that exists */
147 #if 0
148 Bool all_chars_exist; /* flag if all characters have nonzero size */
149 unsigned default_char; /* char to print for undefined character */
150 int n_properties; /* how many properties there are */
151 XFontProp *properties; /* pointer to array of additional properties */
152 #endif /* 0 */
153 XCharStruct min_bounds; /* minimum bounds over all existing char */
154 XCharStruct max_bounds; /* maximum bounds over all existing char */
155 XCharStruct *per_char; /* first_char to last_char information */
156 int ascent; /* logical extent above baseline for spacing */
157 int descent; /* logical decent below baseline for spacing */
158 };
159
160 typedef struct MacFontStruct MacFontStruct;
161 typedef struct MacFontStruct XFontStruct;
162
163 /* Structure borrowed from Xlib.h to represent two-byte characters. */
164
165 typedef struct {
166 unsigned char byte1;
167 unsigned char byte2;
168 } XChar2b;
169
170 #define STORE_XCHAR2B(chp, b1, b2) \
171 ((chp)->byte1 = (b1), (chp)->byte2 = (b2))
172
173 #define XCHAR2B_BYTE1(chp) \
174 ((chp)->byte1)
175
176 #define XCHAR2B_BYTE2(chp) \
177 ((chp)->byte2)
178
179
180 /* Emulate X GC's by keeping color and font info in a structure. */
181 typedef struct _XGCValues
182 {
183 unsigned long foreground;
184 unsigned long background;
185 XFontStruct *font;
186 } XGCValues;
187
188 typedef struct _XGC
189 {
190 /* Original value. */
191 XGCValues xgcv;
192
193 /* Cached data members follow. */
194
195 /* QuickDraw foreground color. */
196 RGBColor fore_color;
197
198 /* QuickDraw background color. */
199 RGBColor back_color;
200 } *GC;
201
202 #define GCForeground (1L<<2)
203 #define GCBackground (1L<<3)
204 #define GCFont (1L<<14)
205 #define GCGraphicsExposures 0
206
207 /* Bit Gravity */
208
209 #define ForgetGravity 0
210 #define NorthWestGravity 1
211 #define NorthGravity 2
212 #define NorthEastGravity 3
213 #define WestGravity 4
214 #define CenterGravity 5
215 #define EastGravity 6
216 #define SouthWestGravity 7
217 #define SouthGravity 8
218 #define SouthEastGravity 9
219 #define StaticGravity 10
220
221 #define NoValue 0x0000
222 #define XValue 0x0001
223 #define YValue 0x0002
224 #define WidthValue 0x0004
225 #define HeightValue 0x0008
226 #define AllValues 0x000F
227 #define XNegative 0x0010
228 #define YNegative 0x0020
229
230 typedef struct {
231 long flags; /* marks which fields in this structure are defined */
232 #if 0
233 int x, y; /* obsolete for new window mgrs, but clients */
234 int width, height; /* should set so old wm's don't mess up */
235 #endif
236 int min_width, min_height;
237 #if 0
238 int max_width, max_height;
239 #endif
240 int width_inc, height_inc;
241 #if 0
242 struct {
243 int x; /* numerator */
244 int y; /* denominator */
245 } min_aspect, max_aspect;
246 #endif
247 int base_width, base_height; /* added by ICCCM version 1 */
248 #if 0
249 int win_gravity; /* added by ICCCM version 1 */
250 #endif
251 } XSizeHints;
252
253 #define USPosition (1L << 0) /* user specified x, y */
254 #define USSize (1L << 1) /* user specified width, height */
255
256 #define PPosition (1L << 2) /* program specified position */
257 #define PSize (1L << 3) /* program specified size */
258 #define PMinSize (1L << 4) /* program specified minimum size */
259 #define PMaxSize (1L << 5) /* program specified maximum size */
260 #define PResizeInc (1L << 6) /* program specified resize increments */
261 #define PAspect (1L << 7) /* program specified min and max aspect ratios */
262 #define PBaseSize (1L << 8) /* program specified base for incrementing */
263 #define PWinGravity (1L << 9) /* program specified window gravity */
264
265 typedef struct {
266 int x, y;
267 unsigned width, height;
268 } XRectangle;
269
270 #define NativeRectangle Rect
271
272 #define CONVERT_TO_XRECT(xr,nr) \
273 ((xr).x = (nr).left, \
274 (xr).y = (nr).top, \
275 (xr).width = ((nr).right - (nr).left), \
276 (xr).height = ((nr).bottom - (nr).top))
277
278 #define CONVERT_FROM_XRECT(xr,nr) \
279 ((nr).left = (xr).x, \
280 (nr).top = (xr).y, \
281 (nr).right = ((xr).x + (xr).width), \
282 (nr).bottom = ((xr).y + (xr).height))
283
284 #define STORE_NATIVE_RECT(nr,x,y,width,height) \
285 ((nr).left = (x), \
286 (nr).top = (y), \
287 (nr).right = ((nr).left + (width)), \
288 (nr).bottom = ((nr).top + (height)))
289
290 #endif /* EMACS_MACGUI_H */
291
292 /* arch-tag: 5a0da49a-35e2-418b-a58c-8a55778ae849
293 (do not change this comment) */