(gdb-current-frame, gud-watch)
[bpt/emacs.git] / src / macgui.h
CommitLineData
1a578e9b 1/* Definitions and headers for communication on the Mac OS.
e0f712ba 2 Copyright (C) 2000, 2001 Free Software Foundation, Inc.
1a578e9b
AC
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2, or (at your option)
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
18the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
20
e0f712ba 21/* Contributed by Andrew Choi (akochoi@mac.com). */
1a578e9b
AC
22
23#ifndef EMACS_MACGUI_H
24#define EMACS_MACGUI_H
25
1a578e9b
AC
26typedef int Display; /* fix later */
27
574bdd83
KS
28typedef char * XrmDatabase; /* fix later */
29
1a578e9b 30typedef unsigned long Time;
e0f712ba
AC
31
32#if MAC_OSX
e3564461
ST
33#undef mktime
34#undef DEBUG
35#undef Z
36#undef free
37#undef malloc
38#undef realloc
39/* Macros max and min defined in lisp.h conflict with those in
40 precompiled header Carbon.h. */
41#undef max
42#undef min
43#undef init_process
44#include <Carbon/Carbon.h>
45#undef Z
46#define Z (current_buffer->text->z)
47#undef free
48#define free unexec_free
49#undef malloc
50#define malloc unexec_malloc
51#undef realloc
52#define realloc unexec_realloc
53#undef min
54#define min(a, b) ((a) < (b) ? (a) : (b))
55#undef max
56#define max(a, b) ((a) > (b) ? (a) : (b))
57#undef init_process
58#define init_process emacs_init_process
59#undef INFINITY
e0f712ba
AC
60typedef struct OpaqueWindowPtr* Window;
61#else
e3564461
ST
62#include <QuickDraw.h> /* for WindowPtr */
63#include <QDOffscreen.h> /* for GWorldPtr */
64#include <Controls.h> /* for ControlHandle in xdisp.c */
1a578e9b 65typedef WindowPtr Window;
e0f712ba 66#endif
1a578e9b 67
e3564461
ST
68typedef GWorldPtr Pixmap;
69
1a578e9b
AC
70#define FACE_DEFAULT (~0)
71
72
73/* Emulate XCharStruct. */
74typedef struct _XCharStruct
75{
76 int rbearing;
77 int lbearing;
78 int width;
79 int ascent;
80 int descent;
81} XCharStruct;
82
83struct MacFontStruct {
84 char *fontname;
85
e0f712ba 86 short mac_fontnum; /* font number of font used in this window */
1a578e9b 87 int mac_fontsize; /* size of font */
e0f712ba 88 short mac_fontface; /* plain, bold, italics, etc. */
1a578e9b
AC
89 short mac_scriptcode; /* Mac OS script code for font used */
90
91#if 0
92 SInt16 mFontNum; /* font number of font used in this window */
93 short mScriptCode; /* Mac OS script code for font used */
94 int mFontSize; /* size of font */
95 Style mFontFace; /* plain, bold, italics, etc. */
96 int mHeight; /* height of one line of text in pixels */
97 int mWidth; /* width of one character in pixels */
98 int mAscent;
99 int mDescent;
100 int mLeading;
101 char mTwoByte; /* true for two-byte font */
e0f712ba 102#endif /* 0 */
1a578e9b
AC
103
104/* from Xlib.h */
105#if 0
106 XExtData *ext_data; /* hook for extension to hang data */
107 Font fid; /* Font id for this font */
108 unsigned direction; /* hint about the direction font is painted */
e0f712ba 109#endif /* 0 */
1a578e9b
AC
110 unsigned min_char_or_byte2;/* first character */
111 unsigned max_char_or_byte2;/* last character */
112 unsigned min_byte1; /* first row that exists */
113 unsigned max_byte1; /* last row that exists */
114#if 0
115 Bool all_chars_exist; /* flag if all characters have nonzero size */
116 unsigned default_char; /* char to print for undefined character */
117 int n_properties; /* how many properties there are */
118 XFontProp *properties; /* pointer to array of additional properties */
e0f712ba 119#endif /* 0 */
1a578e9b
AC
120 XCharStruct min_bounds; /* minimum bounds over all existing char */
121 XCharStruct max_bounds; /* maximum bounds over all existing char */
122 XCharStruct *per_char; /* first_char to last_char information */
123 int ascent; /* logical extent above baseline for spacing */
124 int descent; /* logical decent below baseline for spacing */
125};
126
127typedef struct MacFontStruct MacFontStruct;
128typedef struct MacFontStruct XFontStruct;
129
ec480ce0
KS
130/* Structure borrowed from Xlib.h to represent two-byte characters. */
131
132typedef struct {
133 unsigned char byte1;
134 unsigned char byte2;
135} XChar2b;
136
137#define STORE_XCHAR2B(chp, b1, b2) \
138 ((chp)->byte1 = (b1), (chp)->byte2 = (b2))
139
140#define XCHAR2B_BYTE1(chp) \
141 ((chp)->byte1)
142
143#define XCHAR2B_BYTE2(chp) \
144 ((chp)->byte2)
145
1a578e9b
AC
146
147/* Emulate X GC's by keeping color and font info in a structure. */
148typedef struct _XGCValues
149{
150 unsigned long foreground;
151 unsigned long background;
152 XFontStruct *font;
153} XGCValues;
154
155typedef XGCValues *GC;
156
157extern XGCValues *
158XCreateGC (void *, Window, unsigned long, XGCValues *);
159
160#define GCForeground 0x01
161#define GCBackground 0x02
162#define GCFont 0x03
163#define GCGraphicsExposures 0
164
165/* Bit Gravity */
166
167#define ForgetGravity 0
168#define NorthWestGravity 1
169#define NorthGravity 2
170#define NorthEastGravity 3
171#define WestGravity 4
172#define CenterGravity 5
173#define EastGravity 6
174#define SouthWestGravity 7
175#define SouthGravity 8
176#define SouthEastGravity 9
177#define StaticGravity 10
178
179#define NoValue 0x0000
180#define XValue 0x0001
181#define YValue 0x0002
182#define WidthValue 0x0004
183#define HeightValue 0x0008
184#define AllValues 0x000F
185#define XNegative 0x0010
186#define YNegative 0x0020
187
188#define USPosition (1L << 0) /* user specified x, y */
189#define USSize (1L << 1) /* user specified width, height */
190
191#define PPosition (1L << 2) /* program specified position */
192#define PSize (1L << 3) /* program specified size */
193#define PMinSize (1L << 4) /* program specified minimum size */
194#define PMaxSize (1L << 5) /* program specified maximum size */
195#define PResizeInc (1L << 6) /* program specified resize increments */
196#define PAspect (1L << 7) /* program specified min and max aspect ratios */
197#define PBaseSize (1L << 8) /* program specified base for incrementing */
198#define PWinGravity (1L << 9) /* program specified window gravity */
199
200extern int XParseGeometry ();
201
e119ad0d
KS
202typedef struct {
203 int x, y;
204 unsigned width, height;
205} XRectangle;
206
207#define NativeRectangle Rect
208
209#define CONVERT_TO_XRECT(xr,nr) \
210 ((xr).x = (nr).left, \
211 (xr).y = (nr).top, \
212 (xr).width = ((nr).right - (nr).left), \
213 (xr).height = ((nr).bottom - (nr).top))
214
215#define CONVERT_FROM_XRECT(xr,nr) \
216 ((nr).left = (xr).x, \
217 (nr).top = (xr).y, \
218 (nr).right = ((xr).x + (xr).width), \
219 (nr).bottom = ((xr).y + (xr).height))
220
221#define STORE_NATIVE_RECT(nr,x,y,width,height) \
222 ((nr).left = (x), \
223 (nr).top = (y), \
224 (nr).right = ((nr).left + (width)), \
225 (nr).bottom = ((nr).top + (height)))
226
1a578e9b
AC
227#endif /* EMACS_MACGUI_H */
228
ab5796a9
MB
229/* arch-tag: 5a0da49a-35e2-418b-a58c-8a55778ae849
230 (do not change this comment) */