1 /* Definitions and headers for communication on the Mac OS.
2 Copyright (C) 2000, 2001, 2002, 2003, 2004,
3 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
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 3, or (at your option)
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.
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. */
22 /* Contributed by Andrew Choi (akochoi@mac.com). */
24 #ifndef EMACS_MACGUI_H
25 #define EMACS_MACGUI_H
27 typedef struct _XDisplay Display
; /* opaque */
29 typedef Lisp_Object XrmDatabase
;
31 typedef unsigned long Time
;
36 #if ! HAVE_MKTIME || BROKEN_MKTIME
43 /* Macros max and min defined in lisp.h conflict with those in
44 precompiled header Carbon.h. */
48 #include <Carbon/Carbon.h>
49 #if ! HAVE_MKTIME || BROKEN_MKTIME
51 #define mktime emacs_mktime
54 #define free unexec_free
56 #define malloc unexec_malloc
58 #define realloc unexec_realloc
60 #define min(a, b) ((a) < (b) ? (a) : (b))
62 #define max(a, b) ((a) > (b) ? (a) : (b))
64 #define init_process emacs_init_process
66 #else /* not MAC_OSX */
70 #endif /* not MAC_OSX */
72 #define Z (current_buffer->text->z)
73 #else /* not HAVE_CARBON */
74 #include <Quickdraw.h> /* for WindowRef */
75 #include <QDOffscreen.h> /* for GWorldPtr */
76 #include <Appearance.h> /* for ThemeCursor */
80 #endif /* not HAVE_CARBON */
82 /* Whether to use ATSUI (Apple Type Services for Unicode Imaging) for
84 #if 0 /* Don't enable by default on the emacs-unicode-2 branch. */
92 /* Whether to use low-level Quartz 2D (aka Core Graphics) text drawing
93 in preference to ATSUI for ASCII and Latin-1 characters. */
94 #ifndef USE_CG_TEXT_DRAWING
95 #if USE_ATSUI && MAC_OS_X_VERSION_MAX_ALLOWED >= 1030
96 #define USE_CG_TEXT_DRAWING 1
100 /* Whether to use Quartz 2D routines for drawing operations other than
102 #ifndef USE_CG_DRAWING
103 #if MAC_OS_X_VERSION_MAX_ALLOWED >= 1020
104 #define USE_CG_DRAWING 1
108 /* Whether to use the standard Font Panel floating dialog. */
109 #ifndef USE_MAC_FONT_PANEL
110 #if USE_ATSUI && MAC_OS_X_VERSION_MAX_ALLOWED >= 1020
111 #define USE_MAC_FONT_PANEL 1
115 /* Whether to use Text Services Manager. */
117 #if TARGET_API_MAC_CARBON
118 #define USE_MAC_TSM 1
122 /* Whether to use HIToolbar. */
123 #ifndef USE_MAC_TOOLBAR
124 #if USE_CG_DRAWING && MAC_OS_X_VERSION_MAX_ALLOWED >= 1030 && MAC_OS_X_VERSION_MIN_REQUIRED != 1020
125 #define USE_MAC_TOOLBAR 1
129 typedef WindowRef Window
;
130 #if TARGET_API_MAC_CARBON
131 typedef ScrapRef Selection
;
133 typedef int Selection
;
135 #define mac_set_window_title SetWindowTitleWithCFString
136 #define mac_set_window_modified SetWindowModified
137 #define mac_is_window_visible IsWindowVisible
138 #define mac_is_window_collapsed IsWindowCollapsed
139 #define mac_bring_window_to_front BringToFront
140 #define mac_send_window_behind SendBehind
141 #define mac_hide_window HideWindow
142 #define mac_show_window ShowWindow
143 #define mac_collapse_window CollapseWindow
144 #define mac_front_non_floating_window FrontNonFloatingWindow
145 #define mac_active_non_floating_window ActiveNonFloatingWindow
146 #define mac_activate_window ActivateWindow
147 #define mac_move_window_structure MoveWindowStructure
148 #define mac_move_window MoveWindow
149 #define mac_size_window SizeWindow
150 #define mac_get_global_mouse GetGlobalMouse
151 #define mac_is_window_toolbar_visible IsWindowToolbarVisible
152 typedef GWorldPtr Pixmap
;
154 #define Cursor ThemeCursor
155 #define No_Cursor (-1)
157 #define FACE_DEFAULT (~0)
159 #if !TARGET_API_MAC_CARBON
160 #define GetPixDepth(pmh) ((*(pmh))->pixelSize)
164 /* Emulate XCharStruct. */
165 /* If the sum of ascent and descent is negative, that means some
166 special status specified by enum pcm_status. */
167 typedef struct _XCharStruct
169 short lbearing
; /* origin to left edge of raster */
170 short rbearing
; /* origin to right edge of raster */
171 short width
; /* advance to next char's origin */
172 short ascent
; /* baseline to top edge of raster */
173 short descent
; /* baseline to bottom edge of raster */
175 unsigned short attributes
; /* per char flags (not predefined) */
181 PCM_VALID
= 0, /* pcm data is valid */
182 PCM_INVALID
= -1, /* pcm data is invalid */
185 #define STORE_XCHARSTRUCT(xcs, w, bds) \
186 ((xcs).width = (w), \
187 (xcs).lbearing = (bds).left, \
188 (xcs).rbearing = (bds).right, \
189 (xcs).ascent = -(bds).top, \
190 (xcs).descent = (bds).bottom)
192 struct MacFontStruct
{
195 short mac_fontnum
; /* font number of font used in this window */
196 int mac_fontsize
; /* size of font */
197 short mac_fontface
; /* plain, bold, italics, etc. */
198 #if TARGET_API_MAC_CARBON
199 int mac_scriptcode
; /* Mac OS script code for font used */
201 short mac_scriptcode
; /* Mac OS script code for font used */
204 ATSUStyle mac_style
; /* NULL if QuickDraw Text is used */
205 #if USE_CG_TEXT_DRAWING
206 CGFontRef cg_font
; /* NULL if ATSUI text drawing is used */
207 CGGlyph
*cg_glyphs
; /* Likewise */
213 XExtData
*ext_data
; /* hook for extension to hang data */
214 Font fid
; /* Font id for this font */
215 unsigned direction
; /* hint about the direction font is painted */
217 unsigned min_char_or_byte2
;/* first character */
218 unsigned max_char_or_byte2
;/* last character */
219 unsigned min_byte1
; /* first row that exists */
220 unsigned max_byte1
; /* last row that exists */
222 Bool all_chars_exist
; /* flag if all characters have nonzero size */
223 unsigned default_char
; /* char to print for undefined character */
224 int n_properties
; /* how many properties there are */
225 XFontProp
*properties
; /* pointer to array of additional properties */
227 XCharStruct min_bounds
; /* minimum bounds over all existing char */
228 XCharStruct max_bounds
; /* maximum bounds over all existing char */
230 XCharStruct
*per_char
; /* first_char to last_char information */
231 XCharStruct
**rows
; /* first row to last row information */
233 int ascent
; /* logical extent above baseline for spacing */
234 int descent
; /* logical decent below baseline for spacing */
237 typedef struct MacFontStruct MacFontStruct
;
238 typedef struct MacFontStruct XFontStruct
;
240 /* Structure borrowed from Xlib.h to represent two-byte characters. */
247 #define STORE_XCHAR2B(chp, b1, b2) \
248 ((chp)->byte1 = (b1), (chp)->byte2 = (b2))
250 #define XCHAR2B_BYTE1(chp) \
253 #define XCHAR2B_BYTE2(chp) \
257 /* Emulate X GC's by keeping color and font info in a structure. */
258 typedef struct _XGCValues
260 unsigned long foreground
;
261 unsigned long background
;
267 /* Original value. */
270 /* Cached data members follow. */
272 /* QuickDraw foreground color. */
275 /* QuickDraw background color. */
278 #if USE_CG_DRAWING && MAC_OS_X_VERSION_MAX_ALLOWED >= 1030
279 /* Quartz 2D foreground color. */
280 CGColorRef cg_fore_color
;
282 /* Quartz 2D background color. */
283 CGColorRef cg_back_color
;
286 #define MAX_CLIP_RECTS 2
287 /* Number of clipping rectangles. */
290 /* QuickDraw clipping region. Ignored if n_clip_rects == 0. */
291 RgnHandle clip_region
;
293 #if defined (MAC_OSX) && (USE_ATSUI || USE_CG_DRAWING)
294 /* Clipping rectangles used in Quartz 2D drawing. The y-coordinate
295 is in QuickDraw's. */
296 CGRect clip_rects
[MAX_CLIP_RECTS
];
300 #define GCForeground (1L<<2)
301 #define GCBackground (1L<<3)
302 #define GCFont (1L<<14)
303 #define GCGraphicsExposures 0
307 #define ForgetGravity 0
308 #define NorthWestGravity 1
309 #define NorthGravity 2
310 #define NorthEastGravity 3
311 #define WestGravity 4
312 #define CenterGravity 5
313 #define EastGravity 6
314 #define SouthWestGravity 7
315 #define SouthGravity 8
316 #define SouthEastGravity 9
317 #define StaticGravity 10
319 #define NoValue 0x0000
320 #define XValue 0x0001
321 #define YValue 0x0002
322 #define WidthValue 0x0004
323 #define HeightValue 0x0008
324 #define AllValues 0x000F
325 #define XNegative 0x0010
326 #define YNegative 0x0020
329 long flags
; /* marks which fields in this structure are defined */
331 int x
, y
; /* obsolete for new window mgrs, but clients */
332 int width
, height
; /* should set so old wm's don't mess up */
334 int min_width
, min_height
;
336 int max_width
, max_height
;
338 int width_inc
, height_inc
;
341 int x
; /* numerator */
342 int y
; /* denominator */
343 } min_aspect
, max_aspect
;
345 int base_width
, base_height
; /* added by ICCCM version 1 */
347 int win_gravity
; /* added by ICCCM version 1 */
351 #define USPosition (1L << 0) /* user specified x, y */
352 #define USSize (1L << 1) /* user specified width, height */
354 #define PPosition (1L << 2) /* program specified position */
355 #define PSize (1L << 3) /* program specified size */
356 #define PMinSize (1L << 4) /* program specified minimum size */
357 #define PMaxSize (1L << 5) /* program specified maximum size */
358 #define PResizeInc (1L << 6) /* program specified resize increments */
359 #define PAspect (1L << 7) /* program specified min and max aspect ratios */
360 #define PBaseSize (1L << 8) /* program specified base for incrementing */
361 #define PWinGravity (1L << 9) /* program specified window gravity */
365 unsigned width
, height
;
368 #define NativeRectangle Rect
370 #define CONVERT_TO_XRECT(xr,nr) \
371 ((xr).x = (nr).left, \
373 (xr).width = ((nr).right - (nr).left), \
374 (xr).height = ((nr).bottom - (nr).top))
376 #define CONVERT_FROM_XRECT(xr,nr) \
377 ((nr).left = (xr).x, \
379 (nr).right = ((xr).x + (xr).width), \
380 (nr).bottom = ((xr).y + (xr).height))
382 #define STORE_NATIVE_RECT(nr,x,y,width,height) \
385 (nr).right = ((nr).left + (width)), \
386 (nr).bottom = ((nr).top + (height)))
388 /* Definitions copied from lwlib.h */
390 typedef void * XtPointer
;
399 /* This structure is based on the one in ../lwlib/lwlib.h, modified
401 typedef struct _widget_value
406 /* value (meaning depend on widget type) */
408 /* keyboard equivalent. no implications for XtTranslations */
411 /* Help string or nil if none.
412 GC finds this string through the frame's menu_bar_vector
413 or through menu_items. */
415 /* true if enabled */
417 /* true if selected */
419 /* The type of a button. */
420 enum button_type button_type
;
421 /* true if menu title */
424 /* true if was edited (maintained by get_value) */
426 /* true if has changed (maintained by lw library) */
428 /* true if this widget itself has changed,
429 but not counting the other widgets found in the `next' field. */
430 change_type this_one_change
;
432 /* Contents of the sub-widgets, also selected slot for checkbox */
433 struct _widget_value
* contents
;
434 /* data passed to callback */
436 /* next one in the list */
437 struct _widget_value
* next
;
439 /* slot for the toolkit dependent part. Always initialize to NULL. */
441 /* tell us if we should free the toolkit data slot when freeing the
442 widget_value itself. */
443 Boolean free_toolkit_data
;
445 /* we resource the widget_value structures; this points to the next
446 one on the free list if this one has been deallocated.
448 struct _widget_value
*free_list
;
456 #define EXTRA_STACK_ALLOC (256 * 1024)
458 #define ARGV_STRING_LIST_ID 129
459 #define RAM_TOO_LARGE_ALERT_ID 129
460 #define ABOUT_ALERT_ID 128
463 #define DIALOG_LEFT_MARGIN (112)
464 #define DIALOG_TOP_MARGIN (24)
465 #define DIALOG_RIGHT_MARGIN (24)
466 #define DIALOG_BOTTOM_MARGIN (20)
467 #define DIALOG_MIN_INNER_WIDTH (338)
468 #define DIALOG_MAX_INNER_WIDTH (564)
469 #define DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE (12)
470 #define DIALOG_BUTTON_BUTTON_VERTICAL_SPACE (12)
471 #define DIALOG_BUTTON_MIN_WIDTH (68)
472 #define DIALOG_TEXT_MIN_HEIGHT (50)
473 #define DIALOG_TEXT_BUTTONS_VERTICAL_SPACE (10)
474 #define DIALOG_ICON_WIDTH (64)
475 #define DIALOG_ICON_HEIGHT (64)
476 #define DIALOG_ICON_LEFT_MARGIN (24)
477 #define DIALOG_ICON_TOP_MARGIN (15)
479 #endif /* EMACS_MACGUI_H */
481 /* arch-tag: 5a0da49a-35e2-418b-a58c-8a55778ae849
482 (do not change this comment) */