]> code.delx.au - gnu-emacs/blob - src/macfns.c
* dispextern.h: Change HAVE_CARBON to MAC_OS.
[gnu-emacs] / src / macfns.c
1 /* Graphical user interface functions for Mac OS.
2 Copyright (C) 2000, 2001, 2004 Free Software Foundation, Inc.
3
4 This file is part of GNU Emacs.
5
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
20
21 /* Contributed by Andrew Choi (akochoi@mac.com). */
22
23 #include <config.h>
24
25 #include <signal.h>
26 #include <stdio.h>
27 #include <math.h>
28 #include <limits.h>
29 #include <errno.h>
30
31 #include "lisp.h"
32 #include "charset.h"
33 #include "macterm.h"
34 #include "frame.h"
35 #include "window.h"
36 #include "buffer.h"
37 #include "dispextern.h"
38 #include "fontset.h"
39 #include "intervals.h"
40 #include "keyboard.h"
41 #include "blockinput.h"
42 #include "epaths.h"
43 #include "termhooks.h"
44 #include "coding.h"
45 #include "systime.h"
46
47 /* #include "bitmaps/gray.xbm" */
48 #define gray_width 2
49 #define gray_height 2
50 static unsigned char gray_bits[] = {
51 0x01, 0x02};
52
53 /*#include <commdlg.h>
54 #include <shellapi.h>*/
55 #include <ctype.h>
56 #include <sys/types.h>
57 #include <sys/stat.h>
58
59 #include <stdlib.h>
60 #include <string.h>
61
62 /*extern void free_frame_menubar ();
63 extern double atof ();
64 extern int w32_console_toggle_lock_key (int vk_code, Lisp_Object new_state);
65 extern int quit_char;*/
66
67 extern char *lispy_function_keys[];
68
69 /* The gray bitmap `bitmaps/gray'. This is done because macterm.c uses
70 it, and including `bitmaps/gray' more than once is a problem when
71 config.h defines `static' as an empty replacement string. */
72
73 int gray_bitmap_width = gray_width;
74 int gray_bitmap_height = gray_height;
75 unsigned char *gray_bitmap_bits = gray_bits;
76
77 /* Non-zero means we're allowed to display an hourglass cursor. */
78
79 int display_hourglass_p;
80
81 /* The background and shape of the mouse pointer, and shape when not
82 over text or in the modeline. */
83
84 Lisp_Object Vx_pointer_shape, Vx_nontext_pointer_shape, Vx_mode_pointer_shape;
85 Lisp_Object Vx_hourglass_pointer_shape;
86
87 /* The shape when over mouse-sensitive text. */
88
89 Lisp_Object Vx_sensitive_text_pointer_shape;
90
91 /* If non-nil, the pointer shape to indicate that windows can be
92 dragged horizontally. */
93
94 Lisp_Object Vx_window_horizontal_drag_shape;
95
96 /* Color of chars displayed in cursor box. */
97
98 Lisp_Object Vx_cursor_fore_pixel;
99
100 /* Nonzero if using Windows. */
101
102 static int mac_in_use;
103
104 /* Non nil if no window manager is in use. */
105
106 Lisp_Object Vx_no_window_manager;
107
108 /* Regexp matching a font name whose width is the same as `PIXEL_SIZE'. */
109
110 Lisp_Object Vx_pixel_size_width_font_regexp;
111
112 /* Evaluate this expression to rebuild the section of syms_of_macfns
113 that initializes and staticpros the symbols declared below. Note
114 that Emacs 18 has a bug that keeps C-x C-e from being able to
115 evaluate this expression.
116
117 (progn
118 ;; Accumulate a list of the symbols we want to initialize from the
119 ;; declarations at the top of the file.
120 (goto-char (point-min))
121 (search-forward "/\*&&& symbols declared here &&&*\/\n")
122 (let (symbol-list)
123 (while (looking-at "Lisp_Object \\(Q[a-z_]+\\)")
124 (setq symbol-list
125 (cons (buffer-substring (match-beginning 1) (match-end 1))
126 symbol-list))
127 (forward-line 1))
128 (setq symbol-list (nreverse symbol-list))
129 ;; Delete the section of syms_of_... where we initialize the symbols.
130 (search-forward "\n /\*&&& init symbols here &&&*\/\n")
131 (let ((start (point)))
132 (while (looking-at "^ Q")
133 (forward-line 2))
134 (kill-region start (point)))
135 ;; Write a new symbol initialization section.
136 (while symbol-list
137 (insert (format " %s = intern (\"" (car symbol-list)))
138 (let ((start (point)))
139 (insert (substring (car symbol-list) 1))
140 (subst-char-in-region start (point) ?_ ?-))
141 (insert (format "\");\n staticpro (&%s);\n" (car symbol-list)))
142 (setq symbol-list (cdr symbol-list)))))
143
144 */
145
146 /*&&& symbols declared here &&&*/
147 Lisp_Object Qnone;
148 Lisp_Object Qsuppress_icon;
149 Lisp_Object Qundefined_color;
150 Lisp_Object Qcancel_timer;
151 Lisp_Object Qhyper;
152 Lisp_Object Qsuper;
153 Lisp_Object Qmeta;
154 Lisp_Object Qalt;
155 Lisp_Object Qctrl;
156 Lisp_Object Qcontrol;
157 Lisp_Object Qshift;
158
159 extern Lisp_Object Vwindow_system_version;
160
161 #if 0 /* Use xstricmp instead. */
162 /* compare two strings ignoring case */
163
164 static int
165 stricmp (const char *s, const char *t)
166 {
167 for ( ; tolower (*s) == tolower (*t); s++, t++)
168 if (*s == '\0')
169 return 0;
170 return tolower (*s) - tolower (*t);
171 }
172 #endif
173
174 /* compare two strings up to n characters, ignoring case */
175
176 static int
177 strnicmp (const char *s, const char *t, unsigned int n)
178 {
179 for ( ; n > 0 && tolower (*s) == tolower (*t); n--, s++, t++)
180 if (*s == '\0')
181 return 0;
182 return n == 0 ? 0 : tolower (*s) - tolower (*t);
183 }
184
185 \f
186 /* Error if we are not running on Mac OS. */
187
188 void
189 check_mac ()
190 {
191 if (! mac_in_use)
192 error ("Mac native windows not in use or not initialized");
193 }
194
195 /* Nonzero if we can use mouse menus.
196 You should not call this unless HAVE_MENUS is defined. */
197
198 int
199 have_menus_p ()
200 {
201 return mac_in_use;
202 }
203
204 /* Extract a frame as a FRAME_PTR, defaulting to the selected frame
205 and checking validity for Mac. */
206
207 FRAME_PTR
208 check_x_frame (frame)
209 Lisp_Object frame;
210 {
211 FRAME_PTR f;
212
213 if (NILP (frame))
214 frame = selected_frame;
215 CHECK_LIVE_FRAME (frame);
216 f = XFRAME (frame);
217 if (! FRAME_MAC_P (f))
218 error ("non-mac frame used");
219 return f;
220 }
221
222 /* Let the user specify a display with a frame.
223 nil stands for the selected frame--or, if that is not a mac frame,
224 the first display on the list. */
225
226 struct mac_display_info *
227 check_x_display_info (frame)
228 Lisp_Object frame;
229 {
230 struct mac_display_info *dpyinfo = NULL;
231
232 if (NILP (frame))
233 {
234 struct frame *sf = XFRAME (selected_frame);
235
236 if (FRAME_MAC_P (sf) && FRAME_LIVE_P (sf))
237 dpyinfo = FRAME_MAC_DISPLAY_INFO (sf);
238 else if (x_display_list != 0)
239 dpyinfo = x_display_list;
240 else
241 error ("Mac native windows are not in use or not initialized");
242 }
243 else if (STRINGP (frame))
244 dpyinfo = x_display_info_for_name (frame);
245 else
246 {
247 FRAME_PTR f = check_x_frame (frame);
248 dpyinfo = FRAME_MAC_DISPLAY_INFO (f);
249 }
250
251 return dpyinfo;
252 }
253 \f
254 /* Return the Emacs frame-object corresponding to a mac window.
255 It could be the frame's main window or an icon window. */
256
257 /* This function can be called during GC, so use GC_xxx type test macros. */
258
259 struct frame *
260 x_window_to_frame (dpyinfo, wdesc)
261 struct mac_display_info *dpyinfo;
262 WindowPtr wdesc;
263 {
264 Lisp_Object tail, frame;
265 struct frame *f;
266
267 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
268 {
269 frame = XCAR (tail);
270 if (!GC_FRAMEP (frame))
271 continue;
272 f = XFRAME (frame);
273 if (!FRAME_W32_P (f) || FRAME_MAC_DISPLAY_INFO (f) != dpyinfo)
274 continue;
275 /*if (f->output_data.w32->hourglass_window == wdesc)
276 return f;*/
277
278 /* MAC_TODO: Check tooltips when supported. */
279 if (FRAME_MAC_WINDOW (f) == wdesc)
280 return f;
281 }
282 return 0;
283 }
284
285 \f
286 static Lisp_Object unwind_create_frame P_ ((Lisp_Object));
287
288 void x_set_foreground_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
289 void x_set_background_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
290 void x_set_mouse_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
291 void x_set_cursor_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
292 void x_set_border_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
293 void x_set_cursor_type P_ ((struct frame *, Lisp_Object, Lisp_Object));
294 void x_set_icon_type P_ ((struct frame *, Lisp_Object, Lisp_Object));
295 void x_set_icon_name P_ ((struct frame *, Lisp_Object, Lisp_Object));
296 void x_explicitly_set_name P_ ((struct frame *, Lisp_Object, Lisp_Object));
297 void x_set_menu_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object));
298 void x_set_title P_ ((struct frame *, Lisp_Object, Lisp_Object));
299 void x_set_tool_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object));
300 void x_set_scroll_bar_foreground P_ ((struct frame *, Lisp_Object,
301 Lisp_Object));
302 void x_set_scroll_bar_background P_ ((struct frame *, Lisp_Object,
303 Lisp_Object));
304 static Lisp_Object x_default_scroll_bar_color_parameter P_ ((struct frame *,
305 Lisp_Object,
306 Lisp_Object,
307 char *, char *,
308 int));
309
310 extern void mac_get_window_bounds P_ ((struct frame *, Rect *, Rect *));
311
312 /* Store the screen positions of frame F into XPTR and YPTR.
313 These are the positions of the containing window manager window,
314 not Emacs's own window. */
315
316 void
317 x_real_positions (f, xptr, yptr)
318 FRAME_PTR f;
319 int *xptr, *yptr;
320 {
321 Rect inner, outer;
322
323 mac_get_window_bounds (f, &inner, &outer);
324
325 f->x_pixels_diff = inner.left - outer.left;
326 f->y_pixels_diff = inner.top - outer.top;
327
328 *xptr = outer.left;
329 *yptr = outer.top;
330 }
331
332 \f
333 /* The default colors for the Mac color map */
334 typedef struct colormap_t
335 {
336 unsigned long color;
337 char *name;
338 } colormap_t;
339
340 colormap_t mac_color_map[] =
341 {
342 { RGB_TO_ULONG(255, 250, 250), "snow" },
343 { RGB_TO_ULONG(248, 248, 255), "ghost white" },
344 { RGB_TO_ULONG(248, 248, 255), "GhostWhite" },
345 { RGB_TO_ULONG(245, 245, 245), "white smoke" },
346 { RGB_TO_ULONG(245, 245, 245), "WhiteSmoke" },
347 { RGB_TO_ULONG(220, 220, 220), "gainsboro" },
348 { RGB_TO_ULONG(255, 250, 240), "floral white" },
349 { RGB_TO_ULONG(255, 250, 240), "FloralWhite" },
350 { RGB_TO_ULONG(253, 245, 230), "old lace" },
351 { RGB_TO_ULONG(253, 245, 230), "OldLace" },
352 { RGB_TO_ULONG(250, 240, 230), "linen" },
353 { RGB_TO_ULONG(250, 235, 215), "antique white" },
354 { RGB_TO_ULONG(250, 235, 215), "AntiqueWhite" },
355 { RGB_TO_ULONG(255, 239, 213), "papaya whip" },
356 { RGB_TO_ULONG(255, 239, 213), "PapayaWhip" },
357 { RGB_TO_ULONG(255, 235, 205), "blanched almond" },
358 { RGB_TO_ULONG(255, 235, 205), "BlanchedAlmond" },
359 { RGB_TO_ULONG(255, 228, 196), "bisque" },
360 { RGB_TO_ULONG(255, 218, 185), "peach puff" },
361 { RGB_TO_ULONG(255, 218, 185), "PeachPuff" },
362 { RGB_TO_ULONG(255, 222, 173), "navajo white" },
363 { RGB_TO_ULONG(255, 222, 173), "NavajoWhite" },
364 { RGB_TO_ULONG(255, 228, 181), "moccasin" },
365 { RGB_TO_ULONG(255, 248, 220), "cornsilk" },
366 { RGB_TO_ULONG(255, 255, 240), "ivory" },
367 { RGB_TO_ULONG(255, 250, 205), "lemon chiffon" },
368 { RGB_TO_ULONG(255, 250, 205), "LemonChiffon" },
369 { RGB_TO_ULONG(255, 245, 238), "seashell" },
370 { RGB_TO_ULONG(240, 255, 240), "honeydew" },
371 { RGB_TO_ULONG(245, 255, 250), "mint cream" },
372 { RGB_TO_ULONG(245, 255, 250), "MintCream" },
373 { RGB_TO_ULONG(240, 255, 255), "azure" },
374 { RGB_TO_ULONG(240, 248, 255), "alice blue" },
375 { RGB_TO_ULONG(240, 248, 255), "AliceBlue" },
376 { RGB_TO_ULONG(230, 230, 250), "lavender" },
377 { RGB_TO_ULONG(255, 240, 245), "lavender blush" },
378 { RGB_TO_ULONG(255, 240, 245), "LavenderBlush" },
379 { RGB_TO_ULONG(255, 228, 225), "misty rose" },
380 { RGB_TO_ULONG(255, 228, 225), "MistyRose" },
381 { RGB_TO_ULONG(255, 255, 255), "white" },
382 { RGB_TO_ULONG(0 , 0 , 0 ), "black" },
383 { RGB_TO_ULONG(47 , 79 , 79 ), "dark slate gray" },
384 { RGB_TO_ULONG(47 , 79 , 79 ), "DarkSlateGray" },
385 { RGB_TO_ULONG(47 , 79 , 79 ), "dark slate grey" },
386 { RGB_TO_ULONG(47 , 79 , 79 ), "DarkSlateGrey" },
387 { RGB_TO_ULONG(105, 105, 105), "dim gray" },
388 { RGB_TO_ULONG(105, 105, 105), "DimGray" },
389 { RGB_TO_ULONG(105, 105, 105), "dim grey" },
390 { RGB_TO_ULONG(105, 105, 105), "DimGrey" },
391 { RGB_TO_ULONG(112, 128, 144), "slate gray" },
392 { RGB_TO_ULONG(112, 128, 144), "SlateGray" },
393 { RGB_TO_ULONG(112, 128, 144), "slate grey" },
394 { RGB_TO_ULONG(112, 128, 144), "SlateGrey" },
395 { RGB_TO_ULONG(119, 136, 153), "light slate gray" },
396 { RGB_TO_ULONG(119, 136, 153), "LightSlateGray" },
397 { RGB_TO_ULONG(119, 136, 153), "light slate grey" },
398 { RGB_TO_ULONG(119, 136, 153), "LightSlateGrey" },
399 { RGB_TO_ULONG(190, 190, 190), "gray" },
400 { RGB_TO_ULONG(190, 190, 190), "grey" },
401 { RGB_TO_ULONG(211, 211, 211), "light grey" },
402 { RGB_TO_ULONG(211, 211, 211), "LightGrey" },
403 { RGB_TO_ULONG(211, 211, 211), "light gray" },
404 { RGB_TO_ULONG(211, 211, 211), "LightGray" },
405 { RGB_TO_ULONG(25 , 25 , 112), "midnight blue" },
406 { RGB_TO_ULONG(25 , 25 , 112), "MidnightBlue" },
407 { RGB_TO_ULONG(0 , 0 , 128), "navy" },
408 { RGB_TO_ULONG(0 , 0 , 128), "navy blue" },
409 { RGB_TO_ULONG(0 , 0 , 128), "NavyBlue" },
410 { RGB_TO_ULONG(100, 149, 237), "cornflower blue" },
411 { RGB_TO_ULONG(100, 149, 237), "CornflowerBlue" },
412 { RGB_TO_ULONG(72 , 61 , 139), "dark slate blue" },
413 { RGB_TO_ULONG(72 , 61 , 139), "DarkSlateBlue" },
414 { RGB_TO_ULONG(106, 90 , 205), "slate blue" },
415 { RGB_TO_ULONG(106, 90 , 205), "SlateBlue" },
416 { RGB_TO_ULONG(123, 104, 238), "medium slate blue" },
417 { RGB_TO_ULONG(123, 104, 238), "MediumSlateBlue" },
418 { RGB_TO_ULONG(132, 112, 255), "light slate blue" },
419 { RGB_TO_ULONG(132, 112, 255), "LightSlateBlue" },
420 { RGB_TO_ULONG(0 , 0 , 205), "medium blue" },
421 { RGB_TO_ULONG(0 , 0 , 205), "MediumBlue" },
422 { RGB_TO_ULONG(65 , 105, 225), "royal blue" },
423 { RGB_TO_ULONG(65 , 105, 225), "RoyalBlue" },
424 { RGB_TO_ULONG(0 , 0 , 255), "blue" },
425 { RGB_TO_ULONG(30 , 144, 255), "dodger blue" },
426 { RGB_TO_ULONG(30 , 144, 255), "DodgerBlue" },
427 { RGB_TO_ULONG(0 , 191, 255), "deep sky blue" },
428 { RGB_TO_ULONG(0 , 191, 255), "DeepSkyBlue" },
429 { RGB_TO_ULONG(135, 206, 235), "sky blue" },
430 { RGB_TO_ULONG(135, 206, 235), "SkyBlue" },
431 { RGB_TO_ULONG(135, 206, 250), "light sky blue" },
432 { RGB_TO_ULONG(135, 206, 250), "LightSkyBlue" },
433 { RGB_TO_ULONG(70 , 130, 180), "steel blue" },
434 { RGB_TO_ULONG(70 , 130, 180), "SteelBlue" },
435 { RGB_TO_ULONG(176, 196, 222), "light steel blue" },
436 { RGB_TO_ULONG(176, 196, 222), "LightSteelBlue" },
437 { RGB_TO_ULONG(173, 216, 230), "light blue" },
438 { RGB_TO_ULONG(173, 216, 230), "LightBlue" },
439 { RGB_TO_ULONG(176, 224, 230), "powder blue" },
440 { RGB_TO_ULONG(176, 224, 230), "PowderBlue" },
441 { RGB_TO_ULONG(175, 238, 238), "pale turquoise" },
442 { RGB_TO_ULONG(175, 238, 238), "PaleTurquoise" },
443 { RGB_TO_ULONG(0 , 206, 209), "dark turquoise" },
444 { RGB_TO_ULONG(0 , 206, 209), "DarkTurquoise" },
445 { RGB_TO_ULONG(72 , 209, 204), "medium turquoise" },
446 { RGB_TO_ULONG(72 , 209, 204), "MediumTurquoise" },
447 { RGB_TO_ULONG(64 , 224, 208), "turquoise" },
448 { RGB_TO_ULONG(0 , 255, 255), "cyan" },
449 { RGB_TO_ULONG(224, 255, 255), "light cyan" },
450 { RGB_TO_ULONG(224, 255, 255), "LightCyan" },
451 { RGB_TO_ULONG(95 , 158, 160), "cadet blue" },
452 { RGB_TO_ULONG(95 , 158, 160), "CadetBlue" },
453 { RGB_TO_ULONG(102, 205, 170), "medium aquamarine" },
454 { RGB_TO_ULONG(102, 205, 170), "MediumAquamarine" },
455 { RGB_TO_ULONG(127, 255, 212), "aquamarine" },
456 { RGB_TO_ULONG(0 , 100, 0 ), "dark green" },
457 { RGB_TO_ULONG(0 , 100, 0 ), "DarkGreen" },
458 { RGB_TO_ULONG(85 , 107, 47 ), "dark olive green" },
459 { RGB_TO_ULONG(85 , 107, 47 ), "DarkOliveGreen" },
460 { RGB_TO_ULONG(143, 188, 143), "dark sea green" },
461 { RGB_TO_ULONG(143, 188, 143), "DarkSeaGreen" },
462 { RGB_TO_ULONG(46 , 139, 87 ), "sea green" },
463 { RGB_TO_ULONG(46 , 139, 87 ), "SeaGreen" },
464 { RGB_TO_ULONG(60 , 179, 113), "medium sea green" },
465 { RGB_TO_ULONG(60 , 179, 113), "MediumSeaGreen" },
466 { RGB_TO_ULONG(32 , 178, 170), "light sea green" },
467 { RGB_TO_ULONG(32 , 178, 170), "LightSeaGreen" },
468 { RGB_TO_ULONG(152, 251, 152), "pale green" },
469 { RGB_TO_ULONG(152, 251, 152), "PaleGreen" },
470 { RGB_TO_ULONG(0 , 255, 127), "spring green" },
471 { RGB_TO_ULONG(0 , 255, 127), "SpringGreen" },
472 { RGB_TO_ULONG(124, 252, 0 ), "lawn green" },
473 { RGB_TO_ULONG(124, 252, 0 ), "LawnGreen" },
474 { RGB_TO_ULONG(0 , 255, 0 ), "green" },
475 { RGB_TO_ULONG(127, 255, 0 ), "chartreuse" },
476 { RGB_TO_ULONG(0 , 250, 154), "medium spring green" },
477 { RGB_TO_ULONG(0 , 250, 154), "MediumSpringGreen" },
478 { RGB_TO_ULONG(173, 255, 47 ), "green yellow" },
479 { RGB_TO_ULONG(173, 255, 47 ), "GreenYellow" },
480 { RGB_TO_ULONG(50 , 205, 50 ), "lime green" },
481 { RGB_TO_ULONG(50 , 205, 50 ), "LimeGreen" },
482 { RGB_TO_ULONG(154, 205, 50 ), "yellow green" },
483 { RGB_TO_ULONG(154, 205, 50 ), "YellowGreen" },
484 { RGB_TO_ULONG(34 , 139, 34 ), "forest green" },
485 { RGB_TO_ULONG(34 , 139, 34 ), "ForestGreen" },
486 { RGB_TO_ULONG(107, 142, 35 ), "olive drab" },
487 { RGB_TO_ULONG(107, 142, 35 ), "OliveDrab" },
488 { RGB_TO_ULONG(189, 183, 107), "dark khaki" },
489 { RGB_TO_ULONG(189, 183, 107), "DarkKhaki" },
490 { RGB_TO_ULONG(240, 230, 140), "khaki" },
491 { RGB_TO_ULONG(238, 232, 170), "pale goldenrod" },
492 { RGB_TO_ULONG(238, 232, 170), "PaleGoldenrod" },
493 { RGB_TO_ULONG(250, 250, 210), "light goldenrod yellow" },
494 { RGB_TO_ULONG(250, 250, 210), "LightGoldenrodYellow" },
495 { RGB_TO_ULONG(255, 255, 224), "light yellow" },
496 { RGB_TO_ULONG(255, 255, 224), "LightYellow" },
497 { RGB_TO_ULONG(255, 255, 0 ), "yellow" },
498 { RGB_TO_ULONG(255, 215, 0 ), "gold" },
499 { RGB_TO_ULONG(238, 221, 130), "light goldenrod" },
500 { RGB_TO_ULONG(238, 221, 130), "LightGoldenrod" },
501 { RGB_TO_ULONG(218, 165, 32 ), "goldenrod" },
502 { RGB_TO_ULONG(184, 134, 11 ), "dark goldenrod" },
503 { RGB_TO_ULONG(184, 134, 11 ), "DarkGoldenrod" },
504 { RGB_TO_ULONG(188, 143, 143), "rosy brown" },
505 { RGB_TO_ULONG(188, 143, 143), "RosyBrown" },
506 { RGB_TO_ULONG(205, 92 , 92 ), "indian red" },
507 { RGB_TO_ULONG(205, 92 , 92 ), "IndianRed" },
508 { RGB_TO_ULONG(139, 69 , 19 ), "saddle brown" },
509 { RGB_TO_ULONG(139, 69 , 19 ), "SaddleBrown" },
510 { RGB_TO_ULONG(160, 82 , 45 ), "sienna" },
511 { RGB_TO_ULONG(205, 133, 63 ), "peru" },
512 { RGB_TO_ULONG(222, 184, 135), "burlywood" },
513 { RGB_TO_ULONG(245, 245, 220), "beige" },
514 { RGB_TO_ULONG(245, 222, 179), "wheat" },
515 { RGB_TO_ULONG(244, 164, 96 ), "sandy brown" },
516 { RGB_TO_ULONG(244, 164, 96 ), "SandyBrown" },
517 { RGB_TO_ULONG(210, 180, 140), "tan" },
518 { RGB_TO_ULONG(210, 105, 30 ), "chocolate" },
519 { RGB_TO_ULONG(178, 34 , 34 ), "firebrick" },
520 { RGB_TO_ULONG(165, 42 , 42 ), "brown" },
521 { RGB_TO_ULONG(233, 150, 122), "dark salmon" },
522 { RGB_TO_ULONG(233, 150, 122), "DarkSalmon" },
523 { RGB_TO_ULONG(250, 128, 114), "salmon" },
524 { RGB_TO_ULONG(255, 160, 122), "light salmon" },
525 { RGB_TO_ULONG(255, 160, 122), "LightSalmon" },
526 { RGB_TO_ULONG(255, 165, 0 ), "orange" },
527 { RGB_TO_ULONG(255, 140, 0 ), "dark orange" },
528 { RGB_TO_ULONG(255, 140, 0 ), "DarkOrange" },
529 { RGB_TO_ULONG(255, 127, 80 ), "coral" },
530 { RGB_TO_ULONG(240, 128, 128), "light coral" },
531 { RGB_TO_ULONG(240, 128, 128), "LightCoral" },
532 { RGB_TO_ULONG(255, 99 , 71 ), "tomato" },
533 { RGB_TO_ULONG(255, 69 , 0 ), "orange red" },
534 { RGB_TO_ULONG(255, 69 , 0 ), "OrangeRed" },
535 { RGB_TO_ULONG(255, 0 , 0 ), "red" },
536 { RGB_TO_ULONG(255, 105, 180), "hot pink" },
537 { RGB_TO_ULONG(255, 105, 180), "HotPink" },
538 { RGB_TO_ULONG(255, 20 , 147), "deep pink" },
539 { RGB_TO_ULONG(255, 20 , 147), "DeepPink" },
540 { RGB_TO_ULONG(255, 192, 203), "pink" },
541 { RGB_TO_ULONG(255, 182, 193), "light pink" },
542 { RGB_TO_ULONG(255, 182, 193), "LightPink" },
543 { RGB_TO_ULONG(219, 112, 147), "pale violet red" },
544 { RGB_TO_ULONG(219, 112, 147), "PaleVioletRed" },
545 { RGB_TO_ULONG(176, 48 , 96 ), "maroon" },
546 { RGB_TO_ULONG(199, 21 , 133), "medium violet red" },
547 { RGB_TO_ULONG(199, 21 , 133), "MediumVioletRed" },
548 { RGB_TO_ULONG(208, 32 , 144), "violet red" },
549 { RGB_TO_ULONG(208, 32 , 144), "VioletRed" },
550 { RGB_TO_ULONG(255, 0 , 255), "magenta" },
551 { RGB_TO_ULONG(238, 130, 238), "violet" },
552 { RGB_TO_ULONG(221, 160, 221), "plum" },
553 { RGB_TO_ULONG(218, 112, 214), "orchid" },
554 { RGB_TO_ULONG(186, 85 , 211), "medium orchid" },
555 { RGB_TO_ULONG(186, 85 , 211), "MediumOrchid" },
556 { RGB_TO_ULONG(153, 50 , 204), "dark orchid" },
557 { RGB_TO_ULONG(153, 50 , 204), "DarkOrchid" },
558 { RGB_TO_ULONG(148, 0 , 211), "dark violet" },
559 { RGB_TO_ULONG(148, 0 , 211), "DarkViolet" },
560 { RGB_TO_ULONG(138, 43 , 226), "blue violet" },
561 { RGB_TO_ULONG(138, 43 , 226), "BlueViolet" },
562 { RGB_TO_ULONG(160, 32 , 240), "purple" },
563 { RGB_TO_ULONG(147, 112, 219), "medium purple" },
564 { RGB_TO_ULONG(147, 112, 219), "MediumPurple" },
565 { RGB_TO_ULONG(216, 191, 216), "thistle" },
566 { RGB_TO_ULONG(255, 250, 250), "snow1" },
567 { RGB_TO_ULONG(238, 233, 233), "snow2" },
568 { RGB_TO_ULONG(205, 201, 201), "snow3" },
569 { RGB_TO_ULONG(139, 137, 137), "snow4" },
570 { RGB_TO_ULONG(255, 245, 238), "seashell1" },
571 { RGB_TO_ULONG(238, 229, 222), "seashell2" },
572 { RGB_TO_ULONG(205, 197, 191), "seashell3" },
573 { RGB_TO_ULONG(139, 134, 130), "seashell4" },
574 { RGB_TO_ULONG(255, 239, 219), "AntiqueWhite1" },
575 { RGB_TO_ULONG(238, 223, 204), "AntiqueWhite2" },
576 { RGB_TO_ULONG(205, 192, 176), "AntiqueWhite3" },
577 { RGB_TO_ULONG(139, 131, 120), "AntiqueWhite4" },
578 { RGB_TO_ULONG(255, 228, 196), "bisque1" },
579 { RGB_TO_ULONG(238, 213, 183), "bisque2" },
580 { RGB_TO_ULONG(205, 183, 158), "bisque3" },
581 { RGB_TO_ULONG(139, 125, 107), "bisque4" },
582 { RGB_TO_ULONG(255, 218, 185), "PeachPuff1" },
583 { RGB_TO_ULONG(238, 203, 173), "PeachPuff2" },
584 { RGB_TO_ULONG(205, 175, 149), "PeachPuff3" },
585 { RGB_TO_ULONG(139, 119, 101), "PeachPuff4" },
586 { RGB_TO_ULONG(255, 222, 173), "NavajoWhite1" },
587 { RGB_TO_ULONG(238, 207, 161), "NavajoWhite2" },
588 { RGB_TO_ULONG(205, 179, 139), "NavajoWhite3" },
589 { RGB_TO_ULONG(139, 121, 94), "NavajoWhite4" },
590 { RGB_TO_ULONG(255, 250, 205), "LemonChiffon1" },
591 { RGB_TO_ULONG(238, 233, 191), "LemonChiffon2" },
592 { RGB_TO_ULONG(205, 201, 165), "LemonChiffon3" },
593 { RGB_TO_ULONG(139, 137, 112), "LemonChiffon4" },
594 { RGB_TO_ULONG(255, 248, 220), "cornsilk1" },
595 { RGB_TO_ULONG(238, 232, 205), "cornsilk2" },
596 { RGB_TO_ULONG(205, 200, 177), "cornsilk3" },
597 { RGB_TO_ULONG(139, 136, 120), "cornsilk4" },
598 { RGB_TO_ULONG(255, 255, 240), "ivory1" },
599 { RGB_TO_ULONG(238, 238, 224), "ivory2" },
600 { RGB_TO_ULONG(205, 205, 193), "ivory3" },
601 { RGB_TO_ULONG(139, 139, 131), "ivory4" },
602 { RGB_TO_ULONG(240, 255, 240), "honeydew1" },
603 { RGB_TO_ULONG(224, 238, 224), "honeydew2" },
604 { RGB_TO_ULONG(193, 205, 193), "honeydew3" },
605 { RGB_TO_ULONG(131, 139, 131), "honeydew4" },
606 { RGB_TO_ULONG(255, 240, 245), "LavenderBlush1" },
607 { RGB_TO_ULONG(238, 224, 229), "LavenderBlush2" },
608 { RGB_TO_ULONG(205, 193, 197), "LavenderBlush3" },
609 { RGB_TO_ULONG(139, 131, 134), "LavenderBlush4" },
610 { RGB_TO_ULONG(255, 228, 225), "MistyRose1" },
611 { RGB_TO_ULONG(238, 213, 210), "MistyRose2" },
612 { RGB_TO_ULONG(205, 183, 181), "MistyRose3" },
613 { RGB_TO_ULONG(139, 125, 123), "MistyRose4" },
614 { RGB_TO_ULONG(240, 255, 255), "azure1" },
615 { RGB_TO_ULONG(224, 238, 238), "azure2" },
616 { RGB_TO_ULONG(193, 205, 205), "azure3" },
617 { RGB_TO_ULONG(131, 139, 139), "azure4" },
618 { RGB_TO_ULONG(131, 111, 255), "SlateBlue1" },
619 { RGB_TO_ULONG(122, 103, 238), "SlateBlue2" },
620 { RGB_TO_ULONG(105, 89 , 205), "SlateBlue3" },
621 { RGB_TO_ULONG(71 , 60 , 139), "SlateBlue4" },
622 { RGB_TO_ULONG(72 , 118, 255), "RoyalBlue1" },
623 { RGB_TO_ULONG(67 , 110, 238), "RoyalBlue2" },
624 { RGB_TO_ULONG(58 , 95 , 205), "RoyalBlue3" },
625 { RGB_TO_ULONG(39 , 64 , 139), "RoyalBlue4" },
626 { RGB_TO_ULONG(0 , 0 , 255), "blue1" },
627 { RGB_TO_ULONG(0 , 0 , 238), "blue2" },
628 { RGB_TO_ULONG(0 , 0 , 205), "blue3" },
629 { RGB_TO_ULONG(0 , 0 , 139), "blue4" },
630 { RGB_TO_ULONG(30 , 144, 255), "DodgerBlue1" },
631 { RGB_TO_ULONG(28 , 134, 238), "DodgerBlue2" },
632 { RGB_TO_ULONG(24 , 116, 205), "DodgerBlue3" },
633 { RGB_TO_ULONG(16 , 78 , 139), "DodgerBlue4" },
634 { RGB_TO_ULONG(99 , 184, 255), "SteelBlue1" },
635 { RGB_TO_ULONG(92 , 172, 238), "SteelBlue2" },
636 { RGB_TO_ULONG(79 , 148, 205), "SteelBlue3" },
637 { RGB_TO_ULONG(54 , 100, 139), "SteelBlue4" },
638 { RGB_TO_ULONG(0 , 191, 255), "DeepSkyBlue1" },
639 { RGB_TO_ULONG(0 , 178, 238), "DeepSkyBlue2" },
640 { RGB_TO_ULONG(0 , 154, 205), "DeepSkyBlue3" },
641 { RGB_TO_ULONG(0 , 104, 139), "DeepSkyBlue4" },
642 { RGB_TO_ULONG(135, 206, 255), "SkyBlue1" },
643 { RGB_TO_ULONG(126, 192, 238), "SkyBlue2" },
644 { RGB_TO_ULONG(108, 166, 205), "SkyBlue3" },
645 { RGB_TO_ULONG(74 , 112, 139), "SkyBlue4" },
646 { RGB_TO_ULONG(176, 226, 255), "LightSkyBlue1" },
647 { RGB_TO_ULONG(164, 211, 238), "LightSkyBlue2" },
648 { RGB_TO_ULONG(141, 182, 205), "LightSkyBlue3" },
649 { RGB_TO_ULONG(96 , 123, 139), "LightSkyBlue4" },
650 { RGB_TO_ULONG(198, 226, 255), "SlateGray1" },
651 { RGB_TO_ULONG(185, 211, 238), "SlateGray2" },
652 { RGB_TO_ULONG(159, 182, 205), "SlateGray3" },
653 { RGB_TO_ULONG(108, 123, 139), "SlateGray4" },
654 { RGB_TO_ULONG(202, 225, 255), "LightSteelBlue1" },
655 { RGB_TO_ULONG(188, 210, 238), "LightSteelBlue2" },
656 { RGB_TO_ULONG(162, 181, 205), "LightSteelBlue3" },
657 { RGB_TO_ULONG(110, 123, 139), "LightSteelBlue4" },
658 { RGB_TO_ULONG(191, 239, 255), "LightBlue1" },
659 { RGB_TO_ULONG(178, 223, 238), "LightBlue2" },
660 { RGB_TO_ULONG(154, 192, 205), "LightBlue3" },
661 { RGB_TO_ULONG(104, 131, 139), "LightBlue4" },
662 { RGB_TO_ULONG(224, 255, 255), "LightCyan1" },
663 { RGB_TO_ULONG(209, 238, 238), "LightCyan2" },
664 { RGB_TO_ULONG(180, 205, 205), "LightCyan3" },
665 { RGB_TO_ULONG(122, 139, 139), "LightCyan4" },
666 { RGB_TO_ULONG(187, 255, 255), "PaleTurquoise1" },
667 { RGB_TO_ULONG(174, 238, 238), "PaleTurquoise2" },
668 { RGB_TO_ULONG(150, 205, 205), "PaleTurquoise3" },
669 { RGB_TO_ULONG(102, 139, 139), "PaleTurquoise4" },
670 { RGB_TO_ULONG(152, 245, 255), "CadetBlue1" },
671 { RGB_TO_ULONG(142, 229, 238), "CadetBlue2" },
672 { RGB_TO_ULONG(122, 197, 205), "CadetBlue3" },
673 { RGB_TO_ULONG(83 , 134, 139), "CadetBlue4" },
674 { RGB_TO_ULONG(0 , 245, 255), "turquoise1" },
675 { RGB_TO_ULONG(0 , 229, 238), "turquoise2" },
676 { RGB_TO_ULONG(0 , 197, 205), "turquoise3" },
677 { RGB_TO_ULONG(0 , 134, 139), "turquoise4" },
678 { RGB_TO_ULONG(0 , 255, 255), "cyan1" },
679 { RGB_TO_ULONG(0 , 238, 238), "cyan2" },
680 { RGB_TO_ULONG(0 , 205, 205), "cyan3" },
681 { RGB_TO_ULONG(0 , 139, 139), "cyan4" },
682 { RGB_TO_ULONG(151, 255, 255), "DarkSlateGray1" },
683 { RGB_TO_ULONG(141, 238, 238), "DarkSlateGray2" },
684 { RGB_TO_ULONG(121, 205, 205), "DarkSlateGray3" },
685 { RGB_TO_ULONG(82 , 139, 139), "DarkSlateGray4" },
686 { RGB_TO_ULONG(127, 255, 212), "aquamarine1" },
687 { RGB_TO_ULONG(118, 238, 198), "aquamarine2" },
688 { RGB_TO_ULONG(102, 205, 170), "aquamarine3" },
689 { RGB_TO_ULONG(69 , 139, 116), "aquamarine4" },
690 { RGB_TO_ULONG(193, 255, 193), "DarkSeaGreen1" },
691 { RGB_TO_ULONG(180, 238, 180), "DarkSeaGreen2" },
692 { RGB_TO_ULONG(155, 205, 155), "DarkSeaGreen3" },
693 { RGB_TO_ULONG(105, 139, 105), "DarkSeaGreen4" },
694 { RGB_TO_ULONG(84 , 255, 159), "SeaGreen1" },
695 { RGB_TO_ULONG(78 , 238, 148), "SeaGreen2" },
696 { RGB_TO_ULONG(67 , 205, 128), "SeaGreen3" },
697 { RGB_TO_ULONG(46 , 139, 87 ), "SeaGreen4" },
698 { RGB_TO_ULONG(154, 255, 154), "PaleGreen1" },
699 { RGB_TO_ULONG(144, 238, 144), "PaleGreen2" },
700 { RGB_TO_ULONG(124, 205, 124), "PaleGreen3" },
701 { RGB_TO_ULONG(84 , 139, 84 ), "PaleGreen4" },
702 { RGB_TO_ULONG(0 , 255, 127), "SpringGreen1" },
703 { RGB_TO_ULONG(0 , 238, 118), "SpringGreen2" },
704 { RGB_TO_ULONG(0 , 205, 102), "SpringGreen3" },
705 { RGB_TO_ULONG(0 , 139, 69 ), "SpringGreen4" },
706 { RGB_TO_ULONG(0 , 255, 0 ), "green1" },
707 { RGB_TO_ULONG(0 , 238, 0 ), "green2" },
708 { RGB_TO_ULONG(0 , 205, 0 ), "green3" },
709 { RGB_TO_ULONG(0 , 139, 0 ), "green4" },
710 { RGB_TO_ULONG(127, 255, 0 ), "chartreuse1" },
711 { RGB_TO_ULONG(118, 238, 0 ), "chartreuse2" },
712 { RGB_TO_ULONG(102, 205, 0 ), "chartreuse3" },
713 { RGB_TO_ULONG(69 , 139, 0 ), "chartreuse4" },
714 { RGB_TO_ULONG(192, 255, 62 ), "OliveDrab1" },
715 { RGB_TO_ULONG(179, 238, 58 ), "OliveDrab2" },
716 { RGB_TO_ULONG(154, 205, 50 ), "OliveDrab3" },
717 { RGB_TO_ULONG(105, 139, 34 ), "OliveDrab4" },
718 { RGB_TO_ULONG(202, 255, 112), "DarkOliveGreen1" },
719 { RGB_TO_ULONG(188, 238, 104), "DarkOliveGreen2" },
720 { RGB_TO_ULONG(162, 205, 90 ), "DarkOliveGreen3" },
721 { RGB_TO_ULONG(110, 139, 61 ), "DarkOliveGreen4" },
722 { RGB_TO_ULONG(255, 246, 143), "khaki1" },
723 { RGB_TO_ULONG(238, 230, 133), "khaki2" },
724 { RGB_TO_ULONG(205, 198, 115), "khaki3" },
725 { RGB_TO_ULONG(139, 134, 78 ), "khaki4" },
726 { RGB_TO_ULONG(255, 236, 139), "LightGoldenrod1" },
727 { RGB_TO_ULONG(238, 220, 130), "LightGoldenrod2" },
728 { RGB_TO_ULONG(205, 190, 112), "LightGoldenrod3" },
729 { RGB_TO_ULONG(139, 129, 76 ), "LightGoldenrod4" },
730 { RGB_TO_ULONG(255, 255, 224), "LightYellow1" },
731 { RGB_TO_ULONG(238, 238, 209), "LightYellow2" },
732 { RGB_TO_ULONG(205, 205, 180), "LightYellow3" },
733 { RGB_TO_ULONG(139, 139, 122), "LightYellow4" },
734 { RGB_TO_ULONG(255, 255, 0 ), "yellow1" },
735 { RGB_TO_ULONG(238, 238, 0 ), "yellow2" },
736 { RGB_TO_ULONG(205, 205, 0 ), "yellow3" },
737 { RGB_TO_ULONG(139, 139, 0 ), "yellow4" },
738 { RGB_TO_ULONG(255, 215, 0 ), "gold1" },
739 { RGB_TO_ULONG(238, 201, 0 ), "gold2" },
740 { RGB_TO_ULONG(205, 173, 0 ), "gold3" },
741 { RGB_TO_ULONG(139, 117, 0 ), "gold4" },
742 { RGB_TO_ULONG(255, 193, 37 ), "goldenrod1" },
743 { RGB_TO_ULONG(238, 180, 34 ), "goldenrod2" },
744 { RGB_TO_ULONG(205, 155, 29 ), "goldenrod3" },
745 { RGB_TO_ULONG(139, 105, 20 ), "goldenrod4" },
746 { RGB_TO_ULONG(255, 185, 15 ), "DarkGoldenrod1" },
747 { RGB_TO_ULONG(238, 173, 14 ), "DarkGoldenrod2" },
748 { RGB_TO_ULONG(205, 149, 12 ), "DarkGoldenrod3" },
749 { RGB_TO_ULONG(139, 101, 8 ), "DarkGoldenrod4" },
750 { RGB_TO_ULONG(255, 193, 193), "RosyBrown1" },
751 { RGB_TO_ULONG(238, 180, 180), "RosyBrown2" },
752 { RGB_TO_ULONG(205, 155, 155), "RosyBrown3" },
753 { RGB_TO_ULONG(139, 105, 105), "RosyBrown4" },
754 { RGB_TO_ULONG(255, 106, 106), "IndianRed1" },
755 { RGB_TO_ULONG(238, 99 , 99 ), "IndianRed2" },
756 { RGB_TO_ULONG(205, 85 , 85 ), "IndianRed3" },
757 { RGB_TO_ULONG(139, 58 , 58 ), "IndianRed4" },
758 { RGB_TO_ULONG(255, 130, 71 ), "sienna1" },
759 { RGB_TO_ULONG(238, 121, 66 ), "sienna2" },
760 { RGB_TO_ULONG(205, 104, 57 ), "sienna3" },
761 { RGB_TO_ULONG(139, 71 , 38 ), "sienna4" },
762 { RGB_TO_ULONG(255, 211, 155), "burlywood1" },
763 { RGB_TO_ULONG(238, 197, 145), "burlywood2" },
764 { RGB_TO_ULONG(205, 170, 125), "burlywood3" },
765 { RGB_TO_ULONG(139, 115, 85 ), "burlywood4" },
766 { RGB_TO_ULONG(255, 231, 186), "wheat1" },
767 { RGB_TO_ULONG(238, 216, 174), "wheat2" },
768 { RGB_TO_ULONG(205, 186, 150), "wheat3" },
769 { RGB_TO_ULONG(139, 126, 102), "wheat4" },
770 { RGB_TO_ULONG(255, 165, 79 ), "tan1" },
771 { RGB_TO_ULONG(238, 154, 73 ), "tan2" },
772 { RGB_TO_ULONG(205, 133, 63 ), "tan3" },
773 { RGB_TO_ULONG(139, 90 , 43 ), "tan4" },
774 { RGB_TO_ULONG(255, 127, 36 ), "chocolate1" },
775 { RGB_TO_ULONG(238, 118, 33 ), "chocolate2" },
776 { RGB_TO_ULONG(205, 102, 29 ), "chocolate3" },
777 { RGB_TO_ULONG(139, 69 , 19 ), "chocolate4" },
778 { RGB_TO_ULONG(255, 48 , 48 ), "firebrick1" },
779 { RGB_TO_ULONG(238, 44 , 44 ), "firebrick2" },
780 { RGB_TO_ULONG(205, 38 , 38 ), "firebrick3" },
781 { RGB_TO_ULONG(139, 26 , 26 ), "firebrick4" },
782 { RGB_TO_ULONG(255, 64 , 64 ), "brown1" },
783 { RGB_TO_ULONG(238, 59 , 59 ), "brown2" },
784 { RGB_TO_ULONG(205, 51 , 51 ), "brown3" },
785 { RGB_TO_ULONG(139, 35 , 35 ), "brown4" },
786 { RGB_TO_ULONG(255, 140, 105), "salmon1" },
787 { RGB_TO_ULONG(238, 130, 98 ), "salmon2" },
788 { RGB_TO_ULONG(205, 112, 84 ), "salmon3" },
789 { RGB_TO_ULONG(139, 76 , 57 ), "salmon4" },
790 { RGB_TO_ULONG(255, 160, 122), "LightSalmon1" },
791 { RGB_TO_ULONG(238, 149, 114), "LightSalmon2" },
792 { RGB_TO_ULONG(205, 129, 98 ), "LightSalmon3" },
793 { RGB_TO_ULONG(139, 87 , 66 ), "LightSalmon4" },
794 { RGB_TO_ULONG(255, 165, 0 ), "orange1" },
795 { RGB_TO_ULONG(238, 154, 0 ), "orange2" },
796 { RGB_TO_ULONG(205, 133, 0 ), "orange3" },
797 { RGB_TO_ULONG(139, 90 , 0 ), "orange4" },
798 { RGB_TO_ULONG(255, 127, 0 ), "DarkOrange1" },
799 { RGB_TO_ULONG(238, 118, 0 ), "DarkOrange2" },
800 { RGB_TO_ULONG(205, 102, 0 ), "DarkOrange3" },
801 { RGB_TO_ULONG(139, 69 , 0 ), "DarkOrange4" },
802 { RGB_TO_ULONG(255, 114, 86 ), "coral1" },
803 { RGB_TO_ULONG(238, 106, 80 ), "coral2" },
804 { RGB_TO_ULONG(205, 91 , 69 ), "coral3" },
805 { RGB_TO_ULONG(139, 62 , 47 ), "coral4" },
806 { RGB_TO_ULONG(255, 99 , 71 ), "tomato1" },
807 { RGB_TO_ULONG(238, 92 , 66 ), "tomato2" },
808 { RGB_TO_ULONG(205, 79 , 57 ), "tomato3" },
809 { RGB_TO_ULONG(139, 54 , 38 ), "tomato4" },
810 { RGB_TO_ULONG(255, 69 , 0 ), "OrangeRed1" },
811 { RGB_TO_ULONG(238, 64 , 0 ), "OrangeRed2" },
812 { RGB_TO_ULONG(205, 55 , 0 ), "OrangeRed3" },
813 { RGB_TO_ULONG(139, 37 , 0 ), "OrangeRed4" },
814 { RGB_TO_ULONG(255, 0 , 0 ), "red1" },
815 { RGB_TO_ULONG(238, 0 , 0 ), "red2" },
816 { RGB_TO_ULONG(205, 0 , 0 ), "red3" },
817 { RGB_TO_ULONG(139, 0 , 0 ), "red4" },
818 { RGB_TO_ULONG(255, 20 , 147), "DeepPink1" },
819 { RGB_TO_ULONG(238, 18 , 137), "DeepPink2" },
820 { RGB_TO_ULONG(205, 16 , 118), "DeepPink3" },
821 { RGB_TO_ULONG(139, 10 , 80 ), "DeepPink4" },
822 { RGB_TO_ULONG(255, 110, 180), "HotPink1" },
823 { RGB_TO_ULONG(238, 106, 167), "HotPink2" },
824 { RGB_TO_ULONG(205, 96 , 144), "HotPink3" },
825 { RGB_TO_ULONG(139, 58 , 98 ), "HotPink4" },
826 { RGB_TO_ULONG(255, 181, 197), "pink1" },
827 { RGB_TO_ULONG(238, 169, 184), "pink2" },
828 { RGB_TO_ULONG(205, 145, 158), "pink3" },
829 { RGB_TO_ULONG(139, 99 , 108), "pink4" },
830 { RGB_TO_ULONG(255, 174, 185), "LightPink1" },
831 { RGB_TO_ULONG(238, 162, 173), "LightPink2" },
832 { RGB_TO_ULONG(205, 140, 149), "LightPink3" },
833 { RGB_TO_ULONG(139, 95 , 101), "LightPink4" },
834 { RGB_TO_ULONG(255, 130, 171), "PaleVioletRed1" },
835 { RGB_TO_ULONG(238, 121, 159), "PaleVioletRed2" },
836 { RGB_TO_ULONG(205, 104, 137), "PaleVioletRed3" },
837 { RGB_TO_ULONG(139, 71 , 93 ), "PaleVioletRed4" },
838 { RGB_TO_ULONG(255, 52 , 179), "maroon1" },
839 { RGB_TO_ULONG(238, 48 , 167), "maroon2" },
840 { RGB_TO_ULONG(205, 41 , 144), "maroon3" },
841 { RGB_TO_ULONG(139, 28 , 98 ), "maroon4" },
842 { RGB_TO_ULONG(255, 62 , 150), "VioletRed1" },
843 { RGB_TO_ULONG(238, 58 , 140), "VioletRed2" },
844 { RGB_TO_ULONG(205, 50 , 120), "VioletRed3" },
845 { RGB_TO_ULONG(139, 34 , 82 ), "VioletRed4" },
846 { RGB_TO_ULONG(255, 0 , 255), "magenta1" },
847 { RGB_TO_ULONG(238, 0 , 238), "magenta2" },
848 { RGB_TO_ULONG(205, 0 , 205), "magenta3" },
849 { RGB_TO_ULONG(139, 0 , 139), "magenta4" },
850 { RGB_TO_ULONG(255, 131, 250), "orchid1" },
851 { RGB_TO_ULONG(238, 122, 233), "orchid2" },
852 { RGB_TO_ULONG(205, 105, 201), "orchid3" },
853 { RGB_TO_ULONG(139, 71 , 137), "orchid4" },
854 { RGB_TO_ULONG(255, 187, 255), "plum1" },
855 { RGB_TO_ULONG(238, 174, 238), "plum2" },
856 { RGB_TO_ULONG(205, 150, 205), "plum3" },
857 { RGB_TO_ULONG(139, 102, 139), "plum4" },
858 { RGB_TO_ULONG(224, 102, 255), "MediumOrchid1" },
859 { RGB_TO_ULONG(209, 95 , 238), "MediumOrchid2" },
860 { RGB_TO_ULONG(180, 82 , 205), "MediumOrchid3" },
861 { RGB_TO_ULONG(122, 55 , 139), "MediumOrchid4" },
862 { RGB_TO_ULONG(191, 62 , 255), "DarkOrchid1" },
863 { RGB_TO_ULONG(178, 58 , 238), "DarkOrchid2" },
864 { RGB_TO_ULONG(154, 50 , 205), "DarkOrchid3" },
865 { RGB_TO_ULONG(104, 34 , 139), "DarkOrchid4" },
866 { RGB_TO_ULONG(155, 48 , 255), "purple1" },
867 { RGB_TO_ULONG(145, 44 , 238), "purple2" },
868 { RGB_TO_ULONG(125, 38 , 205), "purple3" },
869 { RGB_TO_ULONG(85 , 26 , 139), "purple4" },
870 { RGB_TO_ULONG(171, 130, 255), "MediumPurple1" },
871 { RGB_TO_ULONG(159, 121, 238), "MediumPurple2" },
872 { RGB_TO_ULONG(137, 104, 205), "MediumPurple3" },
873 { RGB_TO_ULONG(93 , 71 , 139), "MediumPurple4" },
874 { RGB_TO_ULONG(255, 225, 255), "thistle1" },
875 { RGB_TO_ULONG(238, 210, 238), "thistle2" },
876 { RGB_TO_ULONG(205, 181, 205), "thistle3" },
877 { RGB_TO_ULONG(139, 123, 139), "thistle4" },
878 { RGB_TO_ULONG(0 , 0 , 0 ), "gray0" },
879 { RGB_TO_ULONG(0 , 0 , 0 ), "grey0" },
880 { RGB_TO_ULONG(3 , 3 , 3 ), "gray1" },
881 { RGB_TO_ULONG(3 , 3 , 3 ), "grey1" },
882 { RGB_TO_ULONG(5 , 5 , 5 ), "gray2" },
883 { RGB_TO_ULONG(5 , 5 , 5 ), "grey2" },
884 { RGB_TO_ULONG(8 , 8 , 8 ), "gray3" },
885 { RGB_TO_ULONG(8 , 8 , 8 ), "grey3" },
886 { RGB_TO_ULONG(10 , 10 , 10 ), "gray4" },
887 { RGB_TO_ULONG(10 , 10 , 10 ), "grey4" },
888 { RGB_TO_ULONG(13 , 13 , 13 ), "gray5" },
889 { RGB_TO_ULONG(13 , 13 , 13 ), "grey5" },
890 { RGB_TO_ULONG(15 , 15 , 15 ), "gray6" },
891 { RGB_TO_ULONG(15 , 15 , 15 ), "grey6" },
892 { RGB_TO_ULONG(18 , 18 , 18 ), "gray7" },
893 { RGB_TO_ULONG(18 , 18 , 18 ), "grey7" },
894 { RGB_TO_ULONG(20 , 20 , 20 ), "gray8" },
895 { RGB_TO_ULONG(20 , 20 , 20 ), "grey8" },
896 { RGB_TO_ULONG(23 , 23 , 23 ), "gray9" },
897 { RGB_TO_ULONG(23 , 23 , 23 ), "grey9" },
898 { RGB_TO_ULONG(26 , 26 , 26 ), "gray10" },
899 { RGB_TO_ULONG(26 , 26 , 26 ), "grey10" },
900 { RGB_TO_ULONG(28 , 28 , 28 ), "gray11" },
901 { RGB_TO_ULONG(28 , 28 , 28 ), "grey11" },
902 { RGB_TO_ULONG(31 , 31 , 31 ), "gray12" },
903 { RGB_TO_ULONG(31 , 31 , 31 ), "grey12" },
904 { RGB_TO_ULONG(33 , 33 , 33 ), "gray13" },
905 { RGB_TO_ULONG(33 , 33 , 33 ), "grey13" },
906 { RGB_TO_ULONG(36 , 36 , 36 ), "gray14" },
907 { RGB_TO_ULONG(36 , 36 , 36 ), "grey14" },
908 { RGB_TO_ULONG(38 , 38 , 38 ), "gray15" },
909 { RGB_TO_ULONG(38 , 38 , 38 ), "grey15" },
910 { RGB_TO_ULONG(41 , 41 , 41 ), "gray16" },
911 { RGB_TO_ULONG(41 , 41 , 41 ), "grey16" },
912 { RGB_TO_ULONG(43 , 43 , 43 ), "gray17" },
913 { RGB_TO_ULONG(43 , 43 , 43 ), "grey17" },
914 { RGB_TO_ULONG(46 , 46 , 46 ), "gray18" },
915 { RGB_TO_ULONG(46 , 46 , 46 ), "grey18" },
916 { RGB_TO_ULONG(48 , 48 , 48 ), "gray19" },
917 { RGB_TO_ULONG(48 , 48 , 48 ), "grey19" },
918 { RGB_TO_ULONG(51 , 51 , 51 ), "gray20" },
919 { RGB_TO_ULONG(51 , 51 , 51 ), "grey20" },
920 { RGB_TO_ULONG(54 , 54 , 54 ), "gray21" },
921 { RGB_TO_ULONG(54 , 54 , 54 ), "grey21" },
922 { RGB_TO_ULONG(56 , 56 , 56 ), "gray22" },
923 { RGB_TO_ULONG(56 , 56 , 56 ), "grey22" },
924 { RGB_TO_ULONG(59 , 59 , 59 ), "gray23" },
925 { RGB_TO_ULONG(59 , 59 , 59 ), "grey23" },
926 { RGB_TO_ULONG(61 , 61 , 61 ), "gray24" },
927 { RGB_TO_ULONG(61 , 61 , 61 ), "grey24" },
928 { RGB_TO_ULONG(64 , 64 , 64 ), "gray25" },
929 { RGB_TO_ULONG(64 , 64 , 64 ), "grey25" },
930 { RGB_TO_ULONG(66 , 66 , 66 ), "gray26" },
931 { RGB_TO_ULONG(66 , 66 , 66 ), "grey26" },
932 { RGB_TO_ULONG(69 , 69 , 69 ), "gray27" },
933 { RGB_TO_ULONG(69 , 69 , 69 ), "grey27" },
934 { RGB_TO_ULONG(71 , 71 , 71 ), "gray28" },
935 { RGB_TO_ULONG(71 , 71 , 71 ), "grey28" },
936 { RGB_TO_ULONG(74 , 74 , 74 ), "gray29" },
937 { RGB_TO_ULONG(74 , 74 , 74 ), "grey29" },
938 { RGB_TO_ULONG(77 , 77 , 77 ), "gray30" },
939 { RGB_TO_ULONG(77 , 77 , 77 ), "grey30" },
940 { RGB_TO_ULONG(79 , 79 , 79 ), "gray31" },
941 { RGB_TO_ULONG(79 , 79 , 79 ), "grey31" },
942 { RGB_TO_ULONG(82 , 82 , 82 ), "gray32" },
943 { RGB_TO_ULONG(82 , 82 , 82 ), "grey32" },
944 { RGB_TO_ULONG(84 , 84 , 84 ), "gray33" },
945 { RGB_TO_ULONG(84 , 84 , 84 ), "grey33" },
946 { RGB_TO_ULONG(87 , 87 , 87 ), "gray34" },
947 { RGB_TO_ULONG(87 , 87 , 87 ), "grey34" },
948 { RGB_TO_ULONG(89 , 89 , 89 ), "gray35" },
949 { RGB_TO_ULONG(89 , 89 , 89 ), "grey35" },
950 { RGB_TO_ULONG(92 , 92 , 92 ), "gray36" },
951 { RGB_TO_ULONG(92 , 92 , 92 ), "grey36" },
952 { RGB_TO_ULONG(94 , 94 , 94 ), "gray37" },
953 { RGB_TO_ULONG(94 , 94 , 94 ), "grey37" },
954 { RGB_TO_ULONG(97 , 97 , 97 ), "gray38" },
955 { RGB_TO_ULONG(97 , 97 , 97 ), "grey38" },
956 { RGB_TO_ULONG(99 , 99 , 99 ), "gray39" },
957 { RGB_TO_ULONG(99 , 99 , 99 ), "grey39" },
958 { RGB_TO_ULONG(102, 102, 102), "gray40" },
959 { RGB_TO_ULONG(102, 102, 102), "grey40" },
960 { RGB_TO_ULONG(105, 105, 105), "gray41" },
961 { RGB_TO_ULONG(105, 105, 105), "grey41" },
962 { RGB_TO_ULONG(107, 107, 107), "gray42" },
963 { RGB_TO_ULONG(107, 107, 107), "grey42" },
964 { RGB_TO_ULONG(110, 110, 110), "gray43" },
965 { RGB_TO_ULONG(110, 110, 110), "grey43" },
966 { RGB_TO_ULONG(112, 112, 112), "gray44" },
967 { RGB_TO_ULONG(112, 112, 112), "grey44" },
968 { RGB_TO_ULONG(115, 115, 115), "gray45" },
969 { RGB_TO_ULONG(115, 115, 115), "grey45" },
970 { RGB_TO_ULONG(117, 117, 117), "gray46" },
971 { RGB_TO_ULONG(117, 117, 117), "grey46" },
972 { RGB_TO_ULONG(120, 120, 120), "gray47" },
973 { RGB_TO_ULONG(120, 120, 120), "grey47" },
974 { RGB_TO_ULONG(122, 122, 122), "gray48" },
975 { RGB_TO_ULONG(122, 122, 122), "grey48" },
976 { RGB_TO_ULONG(125, 125, 125), "gray49" },
977 { RGB_TO_ULONG(125, 125, 125), "grey49" },
978 { RGB_TO_ULONG(127, 127, 127), "gray50" },
979 { RGB_TO_ULONG(127, 127, 127), "grey50" },
980 { RGB_TO_ULONG(130, 130, 130), "gray51" },
981 { RGB_TO_ULONG(130, 130, 130), "grey51" },
982 { RGB_TO_ULONG(133, 133, 133), "gray52" },
983 { RGB_TO_ULONG(133, 133, 133), "grey52" },
984 { RGB_TO_ULONG(135, 135, 135), "gray53" },
985 { RGB_TO_ULONG(135, 135, 135), "grey53" },
986 { RGB_TO_ULONG(138, 138, 138), "gray54" },
987 { RGB_TO_ULONG(138, 138, 138), "grey54" },
988 { RGB_TO_ULONG(140, 140, 140), "gray55" },
989 { RGB_TO_ULONG(140, 140, 140), "grey55" },
990 { RGB_TO_ULONG(143, 143, 143), "gray56" },
991 { RGB_TO_ULONG(143, 143, 143), "grey56" },
992 { RGB_TO_ULONG(145, 145, 145), "gray57" },
993 { RGB_TO_ULONG(145, 145, 145), "grey57" },
994 { RGB_TO_ULONG(148, 148, 148), "gray58" },
995 { RGB_TO_ULONG(148, 148, 148), "grey58" },
996 { RGB_TO_ULONG(150, 150, 150), "gray59" },
997 { RGB_TO_ULONG(150, 150, 150), "grey59" },
998 { RGB_TO_ULONG(153, 153, 153), "gray60" },
999 { RGB_TO_ULONG(153, 153, 153), "grey60" },
1000 { RGB_TO_ULONG(156, 156, 156), "gray61" },
1001 { RGB_TO_ULONG(156, 156, 156), "grey61" },
1002 { RGB_TO_ULONG(158, 158, 158), "gray62" },
1003 { RGB_TO_ULONG(158, 158, 158), "grey62" },
1004 { RGB_TO_ULONG(161, 161, 161), "gray63" },
1005 { RGB_TO_ULONG(161, 161, 161), "grey63" },
1006 { RGB_TO_ULONG(163, 163, 163), "gray64" },
1007 { RGB_TO_ULONG(163, 163, 163), "grey64" },
1008 { RGB_TO_ULONG(166, 166, 166), "gray65" },
1009 { RGB_TO_ULONG(166, 166, 166), "grey65" },
1010 { RGB_TO_ULONG(168, 168, 168), "gray66" },
1011 { RGB_TO_ULONG(168, 168, 168), "grey66" },
1012 { RGB_TO_ULONG(171, 171, 171), "gray67" },
1013 { RGB_TO_ULONG(171, 171, 171), "grey67" },
1014 { RGB_TO_ULONG(173, 173, 173), "gray68" },
1015 { RGB_TO_ULONG(173, 173, 173), "grey68" },
1016 { RGB_TO_ULONG(176, 176, 176), "gray69" },
1017 { RGB_TO_ULONG(176, 176, 176), "grey69" },
1018 { RGB_TO_ULONG(179, 179, 179), "gray70" },
1019 { RGB_TO_ULONG(179, 179, 179), "grey70" },
1020 { RGB_TO_ULONG(181, 181, 181), "gray71" },
1021 { RGB_TO_ULONG(181, 181, 181), "grey71" },
1022 { RGB_TO_ULONG(184, 184, 184), "gray72" },
1023 { RGB_TO_ULONG(184, 184, 184), "grey72" },
1024 { RGB_TO_ULONG(186, 186, 186), "gray73" },
1025 { RGB_TO_ULONG(186, 186, 186), "grey73" },
1026 { RGB_TO_ULONG(189, 189, 189), "gray74" },
1027 { RGB_TO_ULONG(189, 189, 189), "grey74" },
1028 { RGB_TO_ULONG(191, 191, 191), "gray75" },
1029 { RGB_TO_ULONG(191, 191, 191), "grey75" },
1030 { RGB_TO_ULONG(194, 194, 194), "gray76" },
1031 { RGB_TO_ULONG(194, 194, 194), "grey76" },
1032 { RGB_TO_ULONG(196, 196, 196), "gray77" },
1033 { RGB_TO_ULONG(196, 196, 196), "grey77" },
1034 { RGB_TO_ULONG(199, 199, 199), "gray78" },
1035 { RGB_TO_ULONG(199, 199, 199), "grey78" },
1036 { RGB_TO_ULONG(201, 201, 201), "gray79" },
1037 { RGB_TO_ULONG(201, 201, 201), "grey79" },
1038 { RGB_TO_ULONG(204, 204, 204), "gray80" },
1039 { RGB_TO_ULONG(204, 204, 204), "grey80" },
1040 { RGB_TO_ULONG(207, 207, 207), "gray81" },
1041 { RGB_TO_ULONG(207, 207, 207), "grey81" },
1042 { RGB_TO_ULONG(209, 209, 209), "gray82" },
1043 { RGB_TO_ULONG(209, 209, 209), "grey82" },
1044 { RGB_TO_ULONG(212, 212, 212), "gray83" },
1045 { RGB_TO_ULONG(212, 212, 212), "grey83" },
1046 { RGB_TO_ULONG(214, 214, 214), "gray84" },
1047 { RGB_TO_ULONG(214, 214, 214), "grey84" },
1048 { RGB_TO_ULONG(217, 217, 217), "gray85" },
1049 { RGB_TO_ULONG(217, 217, 217), "grey85" },
1050 { RGB_TO_ULONG(219, 219, 219), "gray86" },
1051 { RGB_TO_ULONG(219, 219, 219), "grey86" },
1052 { RGB_TO_ULONG(222, 222, 222), "gray87" },
1053 { RGB_TO_ULONG(222, 222, 222), "grey87" },
1054 { RGB_TO_ULONG(224, 224, 224), "gray88" },
1055 { RGB_TO_ULONG(224, 224, 224), "grey88" },
1056 { RGB_TO_ULONG(227, 227, 227), "gray89" },
1057 { RGB_TO_ULONG(227, 227, 227), "grey89" },
1058 { RGB_TO_ULONG(229, 229, 229), "gray90" },
1059 { RGB_TO_ULONG(229, 229, 229), "grey90" },
1060 { RGB_TO_ULONG(232, 232, 232), "gray91" },
1061 { RGB_TO_ULONG(232, 232, 232), "grey91" },
1062 { RGB_TO_ULONG(235, 235, 235), "gray92" },
1063 { RGB_TO_ULONG(235, 235, 235), "grey92" },
1064 { RGB_TO_ULONG(237, 237, 237), "gray93" },
1065 { RGB_TO_ULONG(237, 237, 237), "grey93" },
1066 { RGB_TO_ULONG(240, 240, 240), "gray94" },
1067 { RGB_TO_ULONG(240, 240, 240), "grey94" },
1068 { RGB_TO_ULONG(242, 242, 242), "gray95" },
1069 { RGB_TO_ULONG(242, 242, 242), "grey95" },
1070 { RGB_TO_ULONG(245, 245, 245), "gray96" },
1071 { RGB_TO_ULONG(245, 245, 245), "grey96" },
1072 { RGB_TO_ULONG(247, 247, 247), "gray97" },
1073 { RGB_TO_ULONG(247, 247, 247), "grey97" },
1074 { RGB_TO_ULONG(250, 250, 250), "gray98" },
1075 { RGB_TO_ULONG(250, 250, 250), "grey98" },
1076 { RGB_TO_ULONG(252, 252, 252), "gray99" },
1077 { RGB_TO_ULONG(252, 252, 252), "grey99" },
1078 { RGB_TO_ULONG(255, 255, 255), "gray100" },
1079 { RGB_TO_ULONG(255, 255, 255), "grey100" },
1080 { RGB_TO_ULONG(169, 169, 169), "dark grey" },
1081 { RGB_TO_ULONG(169, 169, 169), "DarkGrey" },
1082 { RGB_TO_ULONG(169, 169, 169), "dark gray" },
1083 { RGB_TO_ULONG(169, 169, 169), "DarkGray" },
1084 { RGB_TO_ULONG(0 , 0 , 139), "dark blue" },
1085 { RGB_TO_ULONG(0 , 0 , 139), "DarkBlue" },
1086 { RGB_TO_ULONG(0 , 139, 139), "dark cyan" },
1087 { RGB_TO_ULONG(0 , 139, 139), "DarkCyan" },
1088 { RGB_TO_ULONG(139, 0 , 139), "dark magenta" },
1089 { RGB_TO_ULONG(139, 0 , 139), "DarkMagenta" },
1090 { RGB_TO_ULONG(139, 0 , 0 ), "dark red" },
1091 { RGB_TO_ULONG(139, 0 , 0 ), "DarkRed" },
1092 { RGB_TO_ULONG(144, 238, 144), "light green" },
1093 { RGB_TO_ULONG(144, 238, 144), "LightGreen" }
1094 };
1095
1096 Lisp_Object
1097 mac_color_map_lookup (colorname)
1098 char *colorname;
1099 {
1100 Lisp_Object ret = Qnil;
1101 int i;
1102
1103 BLOCK_INPUT;
1104
1105 for (i = 0; i < sizeof (mac_color_map) / sizeof (mac_color_map[0]); i++)
1106 if (xstricmp (colorname, mac_color_map[i].name) == 0)
1107 {
1108 ret = make_number (mac_color_map[i].color);
1109 break;
1110 }
1111
1112 UNBLOCK_INPUT;
1113
1114 return ret;
1115 }
1116
1117 Lisp_Object
1118 x_to_mac_color (colorname)
1119 char * colorname;
1120 {
1121 register Lisp_Object tail, ret = Qnil;
1122
1123 BLOCK_INPUT;
1124
1125 if (colorname[0] == '#')
1126 {
1127 /* Could be an old-style RGB Device specification. */
1128 char *color;
1129 int size;
1130 color = colorname + 1;
1131
1132 size = strlen(color);
1133 if (size == 3 || size == 6 || size == 9 || size == 12)
1134 {
1135 unsigned long colorval;
1136 int i, pos;
1137 pos = 16;
1138 size /= 3;
1139 colorval = 0;
1140
1141 for (i = 0; i < 3; i++)
1142 {
1143 char *end;
1144 char t;
1145 unsigned long value;
1146
1147 /* The check for 'x' in the following conditional takes into
1148 account the fact that strtol allows a "0x" in front of
1149 our numbers, and we don't. */
1150 if (!isxdigit(color[0]) || color[1] == 'x')
1151 break;
1152 t = color[size];
1153 color[size] = '\0';
1154 value = strtoul(color, &end, 16);
1155 color[size] = t;
1156 if (errno == ERANGE || end - color != size)
1157 break;
1158 switch (size)
1159 {
1160 case 1:
1161 value = value * 0x10;
1162 break;
1163 case 2:
1164 break;
1165 case 3:
1166 value /= 0x10;
1167 break;
1168 case 4:
1169 value /= 0x100;
1170 break;
1171 }
1172 colorval |= (value << pos);
1173 pos -= 8;
1174 if (i == 2)
1175 {
1176 UNBLOCK_INPUT;
1177 return make_number (colorval);
1178 }
1179 color = end;
1180 }
1181 }
1182 }
1183 else if (strnicmp(colorname, "rgb:", 4) == 0)
1184 {
1185 char *color;
1186 unsigned long colorval;
1187 int i, pos;
1188 pos = 0;
1189
1190 colorval = 0;
1191 color = colorname + 4;
1192 for (i = 0; i < 3; i++)
1193 {
1194 char *end;
1195 unsigned long value;
1196
1197 /* The check for 'x' in the following conditional takes into
1198 account the fact that strtol allows a "0x" in front of
1199 our numbers, and we don't. */
1200 if (!isxdigit(color[0]) || color[1] == 'x')
1201 break;
1202 value = strtoul(color, &end, 16);
1203 if (errno == ERANGE)
1204 break;
1205 switch (end - color)
1206 {
1207 case 1:
1208 value = value * 0x10 + value;
1209 break;
1210 case 2:
1211 break;
1212 case 3:
1213 value /= 0x10;
1214 break;
1215 case 4:
1216 value /= 0x100;
1217 break;
1218 default:
1219 value = ULONG_MAX;
1220 }
1221 if (value == ULONG_MAX)
1222 break;
1223 colorval |= (value << pos);
1224 pos += 0x8;
1225 if (i == 2)
1226 {
1227 if (*end != '\0')
1228 break;
1229 UNBLOCK_INPUT;
1230 return make_number (colorval);
1231 }
1232 if (*end != '/')
1233 break;
1234 color = end + 1;
1235 }
1236 }
1237 else if (strnicmp(colorname, "rgbi:", 5) == 0)
1238 {
1239 /* This is an RGB Intensity specification. */
1240 char *color;
1241 unsigned long colorval;
1242 int i, pos;
1243 pos = 0;
1244
1245 colorval = 0;
1246 color = colorname + 5;
1247 for (i = 0; i < 3; i++)
1248 {
1249 char *end;
1250 double value;
1251 unsigned long val;
1252
1253 value = strtod(color, &end);
1254 if (errno == ERANGE)
1255 break;
1256 if (value < 0.0 || value > 1.0)
1257 break;
1258 val = (unsigned long)(0x100 * value);
1259 /* We used 0x100 instead of 0xFF to give a continuous
1260 range between 0.0 and 1.0 inclusive. The next statement
1261 fixes the 1.0 case. */
1262 if (val == 0x100)
1263 val = 0xFF;
1264 colorval |= (val << pos);
1265 pos += 0x8;
1266 if (i == 2)
1267 {
1268 if (*end != '\0')
1269 break;
1270 UNBLOCK_INPUT;
1271 return make_number (colorval);
1272 }
1273 if (*end != '/')
1274 break;
1275 color = end + 1;
1276 }
1277 }
1278
1279 ret = mac_color_map_lookup (colorname);
1280
1281 UNBLOCK_INPUT;
1282 return ret;
1283 }
1284
1285 /* Gamma-correct COLOR on frame F. */
1286
1287 void
1288 gamma_correct (f, color)
1289 struct frame *f;
1290 unsigned long *color;
1291 {
1292 if (f->gamma)
1293 {
1294 unsigned long red, green, blue;
1295
1296 red = pow (RED_FROM_ULONG (*color) / 255.0, f->gamma) * 255.0 + 0.5;
1297 green = pow (GREEN_FROM_ULONG (*color) / 255.0, f->gamma) * 255.0 + 0.5;
1298 blue = pow (BLUE_FROM_ULONG (*color) / 255.0, f->gamma) * 255.0 + 0.5;
1299 *color = RGB_TO_ULONG (red, green, blue);
1300 }
1301 }
1302
1303 /* Decide if color named COLOR is valid for the display associated
1304 with the selected frame; if so, return the rgb values in COLOR_DEF.
1305 If ALLOC is nonzero, allocate a new colormap cell. */
1306
1307 int
1308 mac_defined_color (f, color, color_def, alloc)
1309 FRAME_PTR f;
1310 char *color;
1311 XColor *color_def;
1312 int alloc;
1313 {
1314 register Lisp_Object tem;
1315 unsigned long mac_color_ref;
1316
1317 tem = x_to_mac_color (color);
1318
1319 if (!NILP (tem))
1320 {
1321 if (f)
1322 {
1323 /* Apply gamma correction. */
1324 mac_color_ref = XUINT (tem);
1325 gamma_correct (f, &mac_color_ref);
1326 XSETINT (tem, mac_color_ref);
1327 }
1328
1329 color_def->pixel = mac_color_ref;
1330 color_def->red = RED16_FROM_ULONG (mac_color_ref);
1331 color_def->green = GREEN16_FROM_ULONG (mac_color_ref);
1332 color_def->blue = BLUE16_FROM_ULONG (mac_color_ref);
1333
1334 return 1;
1335 }
1336 else
1337 {
1338 return 0;
1339 }
1340 }
1341
1342 /* Given a string ARG naming a color, compute a pixel value from it
1343 suitable for screen F.
1344 If F is not a color screen, return DEF (default) regardless of what
1345 ARG says. */
1346
1347 int
1348 x_decode_color (f, arg, def)
1349 FRAME_PTR f;
1350 Lisp_Object arg;
1351 int def;
1352 {
1353 XColor cdef;
1354
1355 CHECK_STRING (arg);
1356
1357 if (strcmp (SDATA (arg), "black") == 0)
1358 return BLACK_PIX_DEFAULT (f);
1359 else if (strcmp (SDATA (arg), "white") == 0)
1360 return WHITE_PIX_DEFAULT (f);
1361
1362 #if 0
1363 if (FRAME_MAC_DISPLAY_INFO (f)->n_planes) == 1)
1364 return def;
1365 #endif
1366
1367 if (mac_defined_color (f, SDATA (arg), &cdef, 1))
1368 return cdef.pixel;
1369
1370 /* defined_color failed; return an ultimate default. */
1371 return def;
1372 }
1373 \f
1374 /* Functions called only from `x_set_frame_param'
1375 to set individual parameters.
1376
1377 If FRAME_MAC_WINDOW (f) is 0,
1378 the frame is being created and its window does not exist yet.
1379 In that case, just record the parameter's new value
1380 in the standard place; do not attempt to change the window. */
1381
1382 void
1383 x_set_foreground_color (f, arg, oldval)
1384 struct frame *f;
1385 Lisp_Object arg, oldval;
1386 {
1387 unsigned long fg, old_fg;
1388
1389 fg = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
1390 old_fg = FRAME_FOREGROUND_PIXEL (f);
1391 FRAME_FOREGROUND_PIXEL (f) = fg;
1392
1393 if (FRAME_MAC_WINDOW (f) != 0)
1394 {
1395 update_face_from_frame_parameter (f, Qforeground_color, arg);
1396 if (FRAME_VISIBLE_P (f))
1397 redraw_frame (f);
1398 }
1399 }
1400
1401 void
1402 x_set_background_color (f, arg, oldval)
1403 struct frame *f;
1404 Lisp_Object arg, oldval;
1405 {
1406 FRAME_BACKGROUND_PIXEL (f)
1407 = x_decode_color (f, arg, WHITE_PIX_DEFAULT (f));
1408
1409 if (FRAME_MAC_WINDOW (f) != 0)
1410 {
1411 update_face_from_frame_parameter (f, Qbackground_color, arg);
1412
1413 if (FRAME_VISIBLE_P (f))
1414 redraw_frame (f);
1415 }
1416 }
1417
1418 void
1419 x_set_mouse_color (f, arg, oldval)
1420 struct frame *f;
1421 Lisp_Object arg, oldval;
1422 {
1423 Cursor cursor, nontext_cursor, mode_cursor, hand_cursor;
1424 int count;
1425 int mask_color;
1426
1427 if (!EQ (Qnil, arg))
1428 f->output_data.mac->mouse_pixel
1429 = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
1430 mask_color = FRAME_BACKGROUND_PIXEL (f);
1431
1432 /* Don't let pointers be invisible. */
1433 if (mask_color == f->output_data.mac->mouse_pixel
1434 && mask_color == FRAME_BACKGROUND_PIXEL (f))
1435 f->output_data.mac->mouse_pixel = FRAME_FOREGROUND_PIXEL (f);
1436
1437 #if 0 /* MAC_TODO : cursor changes */
1438 BLOCK_INPUT;
1439
1440 /* It's not okay to crash if the user selects a screwy cursor. */
1441 count = x_catch_errors (FRAME_W32_DISPLAY (f));
1442
1443 if (!EQ (Qnil, Vx_pointer_shape))
1444 {
1445 CHECK_NUMBER (Vx_pointer_shape);
1446 cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XINT (Vx_pointer_shape));
1447 }
1448 else
1449 cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XC_xterm);
1450 x_check_errors (FRAME_W32_DISPLAY (f), "bad text pointer cursor: %s");
1451
1452 if (!EQ (Qnil, Vx_nontext_pointer_shape))
1453 {
1454 CHECK_NUMBER (Vx_nontext_pointer_shape);
1455 nontext_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f),
1456 XINT (Vx_nontext_pointer_shape));
1457 }
1458 else
1459 nontext_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XC_left_ptr);
1460 x_check_errors (FRAME_W32_DISPLAY (f), "bad nontext pointer cursor: %s");
1461
1462 if (!EQ (Qnil, Vx_hourglass_pointer_shape))
1463 {
1464 CHECK_NUMBER (Vx_hourglass_pointer_shape);
1465 hourglass_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f),
1466 XINT (Vx_hourglass_pointer_shape));
1467 }
1468 else
1469 hourglass_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XC_watch);
1470 x_check_errors (FRAME_W32_DISPLAY (f), "bad busy pointer cursor: %s");
1471
1472 x_check_errors (FRAME_W32_DISPLAY (f), "bad nontext pointer cursor: %s");
1473 if (!EQ (Qnil, Vx_mode_pointer_shape))
1474 {
1475 CHECK_NUMBER (Vx_mode_pointer_shape);
1476 mode_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f),
1477 XINT (Vx_mode_pointer_shape));
1478 }
1479 else
1480 mode_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XC_xterm);
1481 x_check_errors (FRAME_W32_DISPLAY (f), "bad modeline pointer cursor: %s");
1482
1483 if (!EQ (Qnil, Vx_sensitive_text_pointer_shape))
1484 {
1485 CHECK_NUMBER (Vx_sensitive_text_pointer_shape);
1486 hand_cursor
1487 = XCreateFontCursor (FRAME_W32_DISPLAY (f),
1488 XINT (Vx_sensitive_text_pointer_shape));
1489 }
1490 else
1491 hand_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XC_crosshair);
1492
1493 if (!NILP (Vx_window_horizontal_drag_shape))
1494 {
1495 CHECK_NUMBER (Vx_window_horizontal_drag_shape);
1496 horizontal_drag_cursor
1497 = XCreateFontCursor (FRAME_W32_DISPLAY (f),
1498 XINT (Vx_window_horizontal_drag_shape));
1499 }
1500 else
1501 horizontal_drag_cursor
1502 = XCreateFontCursor (FRAME_W32_DISPLAY (f), XC_sb_h_double_arrow);
1503
1504 /* Check and report errors with the above calls. */
1505 x_check_errors (FRAME_W32_DISPLAY (f), "can't set cursor shape: %s");
1506 x_uncatch_errors (FRAME_W32_DISPLAY (f), count);
1507
1508 {
1509 XColor fore_color, back_color;
1510
1511 fore_color.pixel = f->output_data.w32->mouse_pixel;
1512 back_color.pixel = mask_color;
1513 XQueryColor (FRAME_W32_DISPLAY (f),
1514 DefaultColormap (FRAME_W32_DISPLAY (f),
1515 DefaultScreen (FRAME_W32_DISPLAY (f))),
1516 &fore_color);
1517 XQueryColor (FRAME_W32_DISPLAY (f),
1518 DefaultColormap (FRAME_W32_DISPLAY (f),
1519 DefaultScreen (FRAME_W32_DISPLAY (f))),
1520 &back_color);
1521 XRecolorCursor (FRAME_W32_DISPLAY (f), cursor,
1522 &fore_color, &back_color);
1523 XRecolorCursor (FRAME_W32_DISPLAY (f), nontext_cursor,
1524 &fore_color, &back_color);
1525 XRecolorCursor (FRAME_W32_DISPLAY (f), mode_cursor,
1526 &fore_color, &back_color);
1527 XRecolorCursor (FRAME_W32_DISPLAY (f), hand_cursor,
1528 &fore_color, &back_color);
1529 XRecolorCursor (FRAME_W32_DISPLAY (f), hourglass_cursor,
1530 &fore_color, &back_color);
1531 }
1532
1533 if (FRAME_W32_WINDOW (f) != 0)
1534 XDefineCursor (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f), cursor);
1535
1536 if (cursor != f->output_data.w32->text_cursor && f->output_data.w32->text_cursor != 0)
1537 XFreeCursor (FRAME_W32_DISPLAY (f), f->output_data.w32->text_cursor);
1538 f->output_data.w32->text_cursor = cursor;
1539
1540 if (nontext_cursor != f->output_data.w32->nontext_cursor
1541 && f->output_data.w32->nontext_cursor != 0)
1542 XFreeCursor (FRAME_W32_DISPLAY (f), f->output_data.w32->nontext_cursor);
1543 f->output_data.w32->nontext_cursor = nontext_cursor;
1544
1545 if (hourglass_cursor != f->output_data.w32->hourglass_cursor
1546 && f->output_data.w32->hourglass_cursor != 0)
1547 XFreeCursor (FRAME_W32_DISPLAY (f), f->output_data.w32->hourglass_cursor);
1548 f->output_data.w32->hourglass_cursor = hourglass_cursor;
1549
1550 if (mode_cursor != f->output_data.w32->modeline_cursor
1551 && f->output_data.w32->modeline_cursor != 0)
1552 XFreeCursor (FRAME_W32_DISPLAY (f), f->output_data.w32->modeline_cursor);
1553 f->output_data.w32->modeline_cursor = mode_cursor;
1554
1555 if (hand_cursor != f->output_data.w32->hand_cursor
1556 && f->output_data.w32->hand_cursor != 0)
1557 XFreeCursor (FRAME_W32_DISPLAY (f), f->output_data.w32->hand_cursor);
1558 f->output_data.w32->hand_cursor = hand_cursor;
1559
1560 XFlush (FRAME_W32_DISPLAY (f));
1561 UNBLOCK_INPUT;
1562
1563 update_face_from_frame_parameter (f, Qmouse_color, arg);
1564 #endif /* MAC_TODO */
1565 }
1566
1567 void
1568 x_set_cursor_color (f, arg, oldval)
1569 struct frame *f;
1570 Lisp_Object arg, oldval;
1571 {
1572 unsigned long fore_pixel, pixel;
1573
1574 if (!NILP (Vx_cursor_fore_pixel))
1575 fore_pixel = x_decode_color (f, Vx_cursor_fore_pixel,
1576 WHITE_PIX_DEFAULT (f));
1577 else
1578 fore_pixel = FRAME_BACKGROUND_PIXEL (f);
1579
1580 pixel = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
1581
1582 /* Make sure that the cursor color differs from the background color. */
1583 if (pixel == FRAME_BACKGROUND_PIXEL (f))
1584 {
1585 pixel = f->output_data.mac->mouse_pixel;
1586 if (pixel == fore_pixel)
1587 fore_pixel = FRAME_BACKGROUND_PIXEL (f);
1588 }
1589
1590 f->output_data.mac->cursor_foreground_pixel = fore_pixel;
1591 f->output_data.mac->cursor_pixel = pixel;
1592
1593 if (FRAME_MAC_WINDOW (f) != 0)
1594 {
1595 BLOCK_INPUT;
1596 /* Update frame's cursor_gc. */
1597 f->output_data.mac->cursor_gc->foreground = fore_pixel;
1598 f->output_data.mac->cursor_gc->background = pixel;
1599
1600 UNBLOCK_INPUT;
1601
1602 if (FRAME_VISIBLE_P (f))
1603 {
1604 x_update_cursor (f, 0);
1605 x_update_cursor (f, 1);
1606 }
1607 }
1608
1609 update_face_from_frame_parameter (f, Qcursor_color, arg);
1610 }
1611
1612 /* Set the border-color of frame F to pixel value PIX.
1613 Note that this does not fully take effect if done before
1614 F has a window. */
1615
1616 void
1617 x_set_border_pixel (f, pix)
1618 struct frame *f;
1619 int pix;
1620 {
1621
1622 f->output_data.mac->border_pixel = pix;
1623
1624 if (FRAME_MAC_WINDOW (f) != 0 && f->border_width > 0)
1625 {
1626 if (FRAME_VISIBLE_P (f))
1627 redraw_frame (f);
1628 }
1629 }
1630
1631 /* Set the border-color of frame F to value described by ARG.
1632 ARG can be a string naming a color.
1633 The border-color is used for the border that is drawn by the server.
1634 Note that this does not fully take effect if done before
1635 F has a window; it must be redone when the window is created. */
1636
1637 void
1638 x_set_border_color (f, arg, oldval)
1639 struct frame *f;
1640 Lisp_Object arg, oldval;
1641 {
1642 int pix;
1643
1644 CHECK_STRING (arg);
1645 pix = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
1646 x_set_border_pixel (f, pix);
1647 update_face_from_frame_parameter (f, Qborder_color, arg);
1648 }
1649
1650
1651 void
1652 x_set_cursor_type (f, arg, oldval)
1653 FRAME_PTR f;
1654 Lisp_Object arg, oldval;
1655 {
1656 set_frame_cursor_types (f, arg);
1657
1658 /* Make sure the cursor gets redrawn. */
1659 cursor_type_changed = 1;
1660 }
1661 \f
1662 #if 0 /* MAC_TODO: really no icon for Mac */
1663 void
1664 x_set_icon_type (f, arg, oldval)
1665 struct frame *f;
1666 Lisp_Object arg, oldval;
1667 {
1668 int result;
1669
1670 if (NILP (arg) && NILP (oldval))
1671 return;
1672
1673 if (STRINGP (arg) && STRINGP (oldval)
1674 && EQ (Fstring_equal (oldval, arg), Qt))
1675 return;
1676
1677 if (SYMBOLP (arg) && SYMBOLP (oldval) && EQ (arg, oldval))
1678 return;
1679
1680 BLOCK_INPUT;
1681
1682 result = x_bitmap_icon (f, arg);
1683 if (result)
1684 {
1685 UNBLOCK_INPUT;
1686 error ("No icon window available");
1687 }
1688
1689 UNBLOCK_INPUT;
1690 }
1691 #endif /* MAC_TODO */
1692
1693 void
1694 x_set_icon_name (f, arg, oldval)
1695 struct frame *f;
1696 Lisp_Object arg, oldval;
1697 {
1698 int result;
1699
1700 if (STRINGP (arg))
1701 {
1702 if (STRINGP (oldval) && EQ (Fstring_equal (oldval, arg), Qt))
1703 return;
1704 }
1705 else if (!STRINGP (oldval) && EQ (oldval, Qnil) == EQ (arg, Qnil))
1706 return;
1707
1708 f->icon_name = arg;
1709
1710 #if 0 /* MAC_TODO */
1711 if (f->output_data.w32->icon_bitmap != 0)
1712 return;
1713
1714 BLOCK_INPUT;
1715
1716 result = x_text_icon (f,
1717 (char *) SDATA ((!NILP (f->icon_name)
1718 ? f->icon_name
1719 : !NILP (f->title)
1720 ? f->title
1721 : f->name)));
1722
1723 if (result)
1724 {
1725 UNBLOCK_INPUT;
1726 error ("No icon window available");
1727 }
1728
1729 /* If the window was unmapped (and its icon was mapped),
1730 the new icon is not mapped, so map the window in its stead. */
1731 if (FRAME_VISIBLE_P (f))
1732 {
1733 #ifdef USE_X_TOOLKIT
1734 XtPopup (f->output_data.w32->widget, XtGrabNone);
1735 #endif
1736 XMapWindow (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f));
1737 }
1738
1739 XFlush (FRAME_W32_DISPLAY (f));
1740 UNBLOCK_INPUT;
1741 #endif /* MAC_TODO */
1742 }
1743
1744 \f
1745 void
1746 x_set_menu_bar_lines (f, value, oldval)
1747 struct frame *f;
1748 Lisp_Object value, oldval;
1749 {
1750 int nlines;
1751 int olines = FRAME_MENU_BAR_LINES (f);
1752
1753 /* Right now, menu bars don't work properly in minibuf-only frames;
1754 most of the commands try to apply themselves to the minibuffer
1755 frame itself, and get an error because you can't switch buffers
1756 in or split the minibuffer window. */
1757 if (FRAME_MINIBUF_ONLY_P (f))
1758 return;
1759
1760 if (INTEGERP (value))
1761 nlines = XINT (value);
1762 else
1763 nlines = 0;
1764
1765 FRAME_MENU_BAR_LINES (f) = 0;
1766 if (nlines)
1767 FRAME_EXTERNAL_MENU_BAR (f) = 1;
1768 else
1769 {
1770 if (FRAME_EXTERNAL_MENU_BAR (f) == 1)
1771 free_frame_menubar (f);
1772 FRAME_EXTERNAL_MENU_BAR (f) = 0;
1773
1774 /* Adjust the frame size so that the client (text) dimensions
1775 remain the same. This depends on FRAME_EXTERNAL_MENU_BAR being
1776 set correctly. */
1777 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
1778 do_pending_window_change (0);
1779 }
1780 adjust_glyphs (f);
1781 }
1782
1783
1784 /* Set the number of lines used for the tool bar of frame F to VALUE.
1785 VALUE not an integer, or < 0 means set the lines to zero. OLDVAL
1786 is the old number of tool bar lines. This function changes the
1787 height of all windows on frame F to match the new tool bar height.
1788 The frame's height doesn't change. */
1789
1790 void
1791 x_set_tool_bar_lines (f, value, oldval)
1792 struct frame *f;
1793 Lisp_Object value, oldval;
1794 {
1795 int delta, nlines, root_height;
1796 Lisp_Object root_window;
1797
1798 /* Treat tool bars like menu bars. */
1799 if (FRAME_MINIBUF_ONLY_P (f))
1800 return;
1801
1802 /* Use VALUE only if an integer >= 0. */
1803 if (INTEGERP (value) && XINT (value) >= 0)
1804 nlines = XFASTINT (value);
1805 else
1806 nlines = 0;
1807
1808 /* Make sure we redisplay all windows in this frame. */
1809 ++windows_or_buffers_changed;
1810
1811 delta = nlines - FRAME_TOOL_BAR_LINES (f);
1812
1813 /* Don't resize the tool-bar to more than we have room for. */
1814 root_window = FRAME_ROOT_WINDOW (f);
1815 root_height = WINDOW_TOTAL_LINES (XWINDOW (root_window));
1816 if (root_height - delta < 1)
1817 {
1818 delta = root_height - 1;
1819 nlines = FRAME_TOOL_BAR_LINES (f) + delta;
1820 }
1821
1822 FRAME_TOOL_BAR_LINES (f) = nlines;
1823 change_window_heights (root_window, delta);
1824 adjust_glyphs (f);
1825
1826 /* We also have to make sure that the internal border at the top of
1827 the frame, below the menu bar or tool bar, is redrawn when the
1828 tool bar disappears. This is so because the internal border is
1829 below the tool bar if one is displayed, but is below the menu bar
1830 if there isn't a tool bar. The tool bar draws into the area
1831 below the menu bar. */
1832 if (FRAME_MAC_WINDOW (f) && FRAME_TOOL_BAR_LINES (f) == 0)
1833 {
1834 updating_frame = f;
1835 clear_frame ();
1836 clear_current_matrices (f);
1837 updating_frame = NULL;
1838 }
1839
1840 /* If the tool bar gets smaller, the internal border below it
1841 has to be cleared. It was formerly part of the display
1842 of the larger tool bar, and updating windows won't clear it. */
1843 if (delta < 0)
1844 {
1845 int height = FRAME_INTERNAL_BORDER_WIDTH (f);
1846 int width = FRAME_PIXEL_WIDTH (f);
1847 int y = nlines * FRAME_LINE_HEIGHT (f);
1848
1849 BLOCK_INPUT;
1850 XClearArea (FRAME_MAC_DISPLAY (f), FRAME_MAC_WINDOW (f),
1851 0, y, width, height, 0);
1852 UNBLOCK_INPUT;
1853
1854 if (WINDOWP (f->tool_bar_window))
1855 clear_glyph_matrix (XWINDOW (f->tool_bar_window)->current_matrix);
1856 }
1857 }
1858
1859
1860 /* Change the name of frame F to NAME. If NAME is nil, set F's name to
1861 w32_id_name.
1862
1863 If EXPLICIT is non-zero, that indicates that lisp code is setting the
1864 name; if NAME is a string, set F's name to NAME and set
1865 F->explicit_name; if NAME is Qnil, then clear F->explicit_name.
1866
1867 If EXPLICIT is zero, that indicates that Emacs redisplay code is
1868 suggesting a new name, which lisp code should override; if
1869 F->explicit_name is set, ignore the new name; otherwise, set it. */
1870
1871 void
1872 x_set_name (f, name, explicit)
1873 struct frame *f;
1874 Lisp_Object name;
1875 int explicit;
1876 {
1877 /* Make sure that requests from lisp code override requests from
1878 Emacs redisplay code. */
1879 if (explicit)
1880 {
1881 /* If we're switching from explicit to implicit, we had better
1882 update the mode lines and thereby update the title. */
1883 if (f->explicit_name && NILP (name))
1884 update_mode_lines = 1;
1885
1886 f->explicit_name = ! NILP (name);
1887 }
1888 else if (f->explicit_name)
1889 return;
1890
1891 /* If NAME is nil, set the name to the w32_id_name. */
1892 if (NILP (name))
1893 {
1894 /* Check for no change needed in this very common case
1895 before we do any consing. */
1896 if (!strcmp (FRAME_MAC_DISPLAY_INFO (f)->mac_id_name,
1897 SDATA (f->name)))
1898 return;
1899 name = build_string (FRAME_MAC_DISPLAY_INFO (f)->mac_id_name);
1900 }
1901 else
1902 CHECK_STRING (name);
1903
1904 /* Don't change the name if it's already NAME. */
1905 if (! NILP (Fstring_equal (name, f->name)))
1906 return;
1907
1908 f->name = name;
1909
1910 /* For setting the frame title, the title parameter should override
1911 the name parameter. */
1912 if (! NILP (f->title))
1913 name = f->title;
1914
1915 if (FRAME_MAC_WINDOW (f))
1916 {
1917 if (STRING_MULTIBYTE (name))
1918 #if TARGET_API_MAC_CARBON
1919 name = ENCODE_UTF_8 (name);
1920 #else
1921 return;
1922 #endif
1923
1924 BLOCK_INPUT;
1925
1926 {
1927 #if TARGET_API_MAC_CARBON
1928 CFStringRef windowTitle =
1929 cfstring_create_with_utf8_cstring (SDATA (name));
1930
1931 SetWindowTitleWithCFString (FRAME_MAC_WINDOW (f), windowTitle);
1932 CFRelease (windowTitle);
1933 #else
1934 Str255 windowTitle;
1935 if (strlen (SDATA (name)) < 255)
1936 {
1937 strcpy (windowTitle, SDATA (name));
1938 c2pstr (windowTitle);
1939 SetWTitle (FRAME_MAC_WINDOW (f), windowTitle);
1940 }
1941 #endif
1942 }
1943
1944 UNBLOCK_INPUT;
1945 }
1946 }
1947
1948 /* This function should be called when the user's lisp code has
1949 specified a name for the frame; the name will override any set by the
1950 redisplay code. */
1951 void
1952 x_explicitly_set_name (f, arg, oldval)
1953 FRAME_PTR f;
1954 Lisp_Object arg, oldval;
1955 {
1956 x_set_name (f, arg, 1);
1957 }
1958
1959 /* This function should be called by Emacs redisplay code to set the
1960 name; names set this way will never override names set by the user's
1961 lisp code. */
1962 void
1963 x_implicitly_set_name (f, arg, oldval)
1964 FRAME_PTR f;
1965 Lisp_Object arg, oldval;
1966 {
1967 x_set_name (f, arg, 0);
1968 }
1969 \f
1970 /* Change the title of frame F to NAME.
1971 If NAME is nil, use the frame name as the title.
1972
1973 If EXPLICIT is non-zero, that indicates that lisp code is setting the
1974 name; if NAME is a string, set F's name to NAME and set
1975 F->explicit_name; if NAME is Qnil, then clear F->explicit_name.
1976
1977 If EXPLICIT is zero, that indicates that Emacs redisplay code is
1978 suggesting a new name, which lisp code should override; if
1979 F->explicit_name is set, ignore the new name; otherwise, set it. */
1980
1981 void
1982 x_set_title (f, name, old_name)
1983 struct frame *f;
1984 Lisp_Object name, old_name;
1985 {
1986 /* Don't change the title if it's already NAME. */
1987 if (EQ (name, f->title))
1988 return;
1989
1990 update_mode_lines = 1;
1991
1992 f->title = name;
1993
1994 if (NILP (name))
1995 name = f->name;
1996
1997 if (FRAME_MAC_WINDOW (f))
1998 {
1999 if (STRING_MULTIBYTE (name))
2000 #if TARGET_API_MAC_CARBON
2001 name = ENCODE_UTF_8 (name);
2002 #else
2003 return;
2004 #endif
2005
2006 BLOCK_INPUT;
2007
2008 {
2009 #if TARGET_API_MAC_CARBON
2010 CFStringRef windowTitle =
2011 cfstring_create_with_utf8_cstring (SDATA (name));
2012
2013 SetWindowTitleWithCFString (FRAME_MAC_WINDOW (f), windowTitle);
2014 CFRelease (windowTitle);
2015 #else
2016 Str255 windowTitle;
2017 if (strlen (SDATA (name)) < 255)
2018 {
2019 strcpy (windowTitle, SDATA (name));
2020 c2pstr (windowTitle);
2021 SetWTitle (FRAME_MAC_WINDOW (f), windowTitle);
2022 }
2023 #endif
2024 }
2025
2026 UNBLOCK_INPUT;
2027 }
2028 }
2029
2030 void
2031 x_set_scroll_bar_default_width (f)
2032 struct frame *f;
2033 {
2034 /* Imitate X without X Toolkit */
2035
2036 int wid = FRAME_COLUMN_WIDTH (f);
2037
2038 #ifdef MAC_OSX
2039 FRAME_CONFIG_SCROLL_BAR_WIDTH (f) = 16; /* Aqua scroll bars. */
2040 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) +
2041 wid - 1) / wid;
2042 #else /* not MAC_OSX */
2043 /* Make the actual width at least 14 pixels and a multiple of a
2044 character width. */
2045 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (14 + wid - 1) / wid;
2046
2047 /* Use all of that space (aside from required margins) for the
2048 scroll bar. */
2049 FRAME_CONFIG_SCROLL_BAR_WIDTH (f) = 0;
2050 #endif /* not MAC_OSX */
2051 }
2052
2053 \f
2054 /* Subroutines of creating a frame. */
2055
2056 static char *
2057 mac_get_rdb_resource (rdb, resource)
2058 char *rdb;
2059 char *resource;
2060 {
2061 char *value = rdb;
2062 int len = strlen (resource);
2063
2064 while (*value)
2065 {
2066 if ((strncmp (value, resource, len) == 0) && (value[len] == ':'))
2067 return xstrdup (&value[len + 1]);
2068
2069 value = strchr (value, '\0') + 1;
2070 }
2071
2072 return NULL;
2073 }
2074
2075 /* Retrieve the string resource specified by NAME with CLASS from
2076 database RDB. */
2077
2078 char *
2079 x_get_string_resource (rdb, name, class)
2080 XrmDatabase rdb;
2081 char *name, *class;
2082 {
2083 if (rdb)
2084 {
2085 char *resource;
2086
2087 if (resource = mac_get_rdb_resource (rdb, name))
2088 return resource;
2089 if (resource = mac_get_rdb_resource (rdb, class))
2090 return resource;
2091 }
2092
2093 /* MAC_TODO: implement resource strings. (Maybe Property Lists?) */
2094 #if 0
2095 return mac_get_string_resource (name, class);
2096 #else
2097 return (char *)0;
2098 #endif
2099 }
2100
2101 /* Return the value of parameter PARAM.
2102
2103 First search ALIST, then Vdefault_frame_alist, then the X defaults
2104 database, using ATTRIBUTE as the attribute name and CLASS as its class.
2105
2106 Convert the resource to the type specified by desired_type.
2107
2108 If no default is specified, return Qunbound. If you call
2109 mac_get_arg, make sure you deal with Qunbound in a reasonable way,
2110 and don't let it get stored in any Lisp-visible variables! */
2111
2112 static Lisp_Object
2113 mac_get_arg (alist, param, attribute, class, type)
2114 Lisp_Object alist, param;
2115 char *attribute;
2116 char *class;
2117 enum resource_types type;
2118 {
2119 return x_get_arg (check_x_display_info (Qnil),
2120 alist, param, attribute, class, type);
2121 }
2122
2123 \f
2124 /* XParseGeometry copied from w32xfns.c */
2125
2126 /*
2127 * XParseGeometry parses strings of the form
2128 * "=<width>x<height>{+-}<xoffset>{+-}<yoffset>", where
2129 * width, height, xoffset, and yoffset are unsigned integers.
2130 * Example: "=80x24+300-49"
2131 * The equal sign is optional.
2132 * It returns a bitmask that indicates which of the four values
2133 * were actually found in the string. For each value found,
2134 * the corresponding argument is updated; for each value
2135 * not found, the corresponding argument is left unchanged.
2136 */
2137
2138 static int
2139 read_integer (string, NextString)
2140 register char *string;
2141 char **NextString;
2142 {
2143 register int Result = 0;
2144 int Sign = 1;
2145
2146 if (*string == '+')
2147 string++;
2148 else if (*string == '-')
2149 {
2150 string++;
2151 Sign = -1;
2152 }
2153 for (; (*string >= '0') && (*string <= '9'); string++)
2154 {
2155 Result = (Result * 10) + (*string - '0');
2156 }
2157 *NextString = string;
2158 if (Sign >= 0)
2159 return (Result);
2160 else
2161 return (-Result);
2162 }
2163
2164 int
2165 XParseGeometry (string, x, y, width, height)
2166 char *string;
2167 int *x, *y;
2168 unsigned int *width, *height; /* RETURN */
2169 {
2170 int mask = NoValue;
2171 register char *strind;
2172 unsigned int tempWidth, tempHeight;
2173 int tempX, tempY;
2174 char *nextCharacter;
2175
2176 if ((string == NULL) || (*string == '\0')) return (mask);
2177 if (*string == '=')
2178 string++; /* ignore possible '=' at beg of geometry spec */
2179
2180 strind = (char *)string;
2181 if (*strind != '+' && *strind != '-' && *strind != 'x')
2182 {
2183 tempWidth = read_integer (strind, &nextCharacter);
2184 if (strind == nextCharacter)
2185 return (0);
2186 strind = nextCharacter;
2187 mask |= WidthValue;
2188 }
2189
2190 if (*strind == 'x' || *strind == 'X')
2191 {
2192 strind++;
2193 tempHeight = read_integer (strind, &nextCharacter);
2194 if (strind == nextCharacter)
2195 return (0);
2196 strind = nextCharacter;
2197 mask |= HeightValue;
2198 }
2199
2200 if ((*strind == '+') || (*strind == '-'))
2201 {
2202 if (*strind == '-')
2203 {
2204 strind++;
2205 tempX = -read_integer (strind, &nextCharacter);
2206 if (strind == nextCharacter)
2207 return (0);
2208 strind = nextCharacter;
2209 mask |= XNegative;
2210
2211 }
2212 else
2213 {
2214 strind++;
2215 tempX = read_integer (strind, &nextCharacter);
2216 if (strind == nextCharacter)
2217 return (0);
2218 strind = nextCharacter;
2219 }
2220 mask |= XValue;
2221 if ((*strind == '+') || (*strind == '-'))
2222 {
2223 if (*strind == '-')
2224 {
2225 strind++;
2226 tempY = -read_integer (strind, &nextCharacter);
2227 if (strind == nextCharacter)
2228 return (0);
2229 strind = nextCharacter;
2230 mask |= YNegative;
2231
2232 }
2233 else
2234 {
2235 strind++;
2236 tempY = read_integer (strind, &nextCharacter);
2237 if (strind == nextCharacter)
2238 return (0);
2239 strind = nextCharacter;
2240 }
2241 mask |= YValue;
2242 }
2243 }
2244
2245 /* If strind isn't at the end of the string the it's an invalid
2246 geometry specification. */
2247
2248 if (*strind != '\0') return (0);
2249
2250 if (mask & XValue)
2251 *x = tempX;
2252 if (mask & YValue)
2253 *y = tempY;
2254 if (mask & WidthValue)
2255 *width = tempWidth;
2256 if (mask & HeightValue)
2257 *height = tempHeight;
2258 return (mask);
2259 }
2260
2261 \f
2262 /* Create and set up the Mac window for frame F. */
2263
2264 extern install_window_handler (WindowPtr);
2265
2266 static void
2267 mac_window (f)
2268 struct frame *f;
2269 {
2270 Rect r;
2271
2272 BLOCK_INPUT;
2273
2274 SetRect (&r, f->left_pos, f->top_pos,
2275 f->left_pos + FRAME_PIXEL_WIDTH (f),
2276 f->top_pos + FRAME_PIXEL_HEIGHT (f));
2277 #if TARGET_API_MAC_CARBON
2278 CreateNewWindow (kDocumentWindowClass,
2279 kWindowStandardDocumentAttributes
2280 /* | kWindowToolbarButtonAttribute */,
2281 &r, &FRAME_MAC_WINDOW (f));
2282 if (FRAME_MAC_WINDOW (f))
2283 {
2284 SetWRefCon (FRAME_MAC_WINDOW (f), (long) f->output_data.mac);
2285 install_window_handler (FRAME_MAC_WINDOW (f));
2286 }
2287 #else
2288 FRAME_MAC_WINDOW (f)
2289 = NewCWindow (NULL, &r, "\p", false, zoomDocProc,
2290 (WindowPtr) -1, 1, (long) f->output_data.mac);
2291 #endif
2292 /* so that update events can find this mac_output struct */
2293 f->output_data.mac->mFP = f; /* point back to emacs frame */
2294
2295 validate_x_resource_name ();
2296
2297 /* x_set_name normally ignores requests to set the name if the
2298 requested name is the same as the current name. This is the one
2299 place where that assumption isn't correct; f->name is set, but
2300 the server hasn't been told. */
2301 {
2302 Lisp_Object name;
2303 int explicit = f->explicit_name;
2304
2305 f->explicit_name = 0;
2306 name = f->name;
2307 f->name = Qnil;
2308 x_set_name (f, name, explicit);
2309 }
2310
2311 UNBLOCK_INPUT;
2312
2313 if (FRAME_MAC_WINDOW (f) == 0)
2314 error ("Unable to create window");
2315 }
2316
2317 /* Handle the icon stuff for this window. Perhaps later we might
2318 want an x_set_icon_position which can be called interactively as
2319 well. */
2320
2321 static void
2322 x_icon (f, parms)
2323 struct frame *f;
2324 Lisp_Object parms;
2325 {
2326 Lisp_Object icon_x, icon_y;
2327
2328 /* Set the position of the icon. Note that Windows 95 groups all
2329 icons in the tray. */
2330 icon_x = mac_get_arg (parms, Qicon_left, 0, 0, RES_TYPE_NUMBER);
2331 icon_y = mac_get_arg (parms, Qicon_top, 0, 0, RES_TYPE_NUMBER);
2332 if (!EQ (icon_x, Qunbound) && !EQ (icon_y, Qunbound))
2333 {
2334 CHECK_NUMBER (icon_x);
2335 CHECK_NUMBER (icon_y);
2336 }
2337 else if (!EQ (icon_x, Qunbound) || !EQ (icon_y, Qunbound))
2338 error ("Both left and top icon corners of icon must be specified");
2339
2340 BLOCK_INPUT;
2341
2342 if (! EQ (icon_x, Qunbound))
2343 x_wm_set_icon_position (f, XINT (icon_x), XINT (icon_y));
2344
2345 #if 0 /* TODO */
2346 /* Start up iconic or window? */
2347 x_wm_set_window_state
2348 (f, (EQ (w32_get_arg (parms, Qvisibility, 0, 0, RES_TYPE_SYMBOL), Qicon)
2349 ? IconicState
2350 : NormalState));
2351
2352 x_text_icon (f, (char *) SDATA ((!NILP (f->icon_name)
2353 ? f->icon_name
2354 : f->name)));
2355 #endif
2356
2357 UNBLOCK_INPUT;
2358 }
2359
2360
2361 void
2362 x_make_gc (f)
2363 struct frame *f;
2364 {
2365 XGCValues gc_values;
2366
2367 BLOCK_INPUT;
2368
2369 /* Create the GCs of this frame.
2370 Note that many default values are used. */
2371
2372 /* Normal video */
2373 gc_values.font = FRAME_FONT (f);
2374 gc_values.foreground = FRAME_FOREGROUND_PIXEL (f);
2375 gc_values.background = FRAME_BACKGROUND_PIXEL (f);
2376 f->output_data.mac->normal_gc = XCreateGC (FRAME_MAC_DISPLAY (f),
2377 FRAME_MAC_WINDOW (f),
2378 GCFont | GCForeground | GCBackground,
2379 &gc_values);
2380
2381 /* Reverse video style. */
2382 gc_values.foreground = FRAME_BACKGROUND_PIXEL (f);
2383 gc_values.background = FRAME_FOREGROUND_PIXEL (f);
2384 f->output_data.mac->reverse_gc = XCreateGC (FRAME_MAC_DISPLAY (f),
2385 FRAME_MAC_WINDOW (f),
2386 GCFont | GCForeground | GCBackground,
2387 &gc_values);
2388
2389 /* Cursor has cursor-color background, background-color foreground. */
2390 gc_values.foreground = FRAME_BACKGROUND_PIXEL (f);
2391 gc_values.background = f->output_data.mac->cursor_pixel;
2392 f->output_data.mac->cursor_gc = XCreateGC (FRAME_MAC_DISPLAY (f),
2393 FRAME_MAC_WINDOW (f),
2394 GCFont | GCForeground | GCBackground,
2395 &gc_values);
2396
2397 /* Reliefs. */
2398 f->output_data.mac->white_relief.gc = 0;
2399 f->output_data.mac->black_relief.gc = 0;
2400
2401 #if 0
2402 /* Create the gray border tile used when the pointer is not in
2403 the frame. Since this depends on the frame's pixel values,
2404 this must be done on a per-frame basis. */
2405 f->output_data.x->border_tile
2406 = (XCreatePixmapFromBitmapData
2407 (FRAME_X_DISPLAY (f), FRAME_X_DISPLAY_INFO (f)->root_window,
2408 gray_bits, gray_width, gray_height,
2409 f->output_data.x->foreground_pixel,
2410 f->output_data.x->background_pixel,
2411 DefaultDepth (FRAME_X_DISPLAY (f), FRAME_X_SCREEN_NUMBER (f))));
2412 #endif
2413
2414 UNBLOCK_INPUT;
2415 }
2416
2417
2418 /* Free what was was allocated in x_make_gc. */
2419
2420 void
2421 x_free_gcs (f)
2422 struct frame *f;
2423 {
2424 Display *dpy = FRAME_MAC_DISPLAY (f);
2425
2426 BLOCK_INPUT;
2427
2428 if (f->output_data.mac->normal_gc)
2429 {
2430 XFreeGC (dpy, f->output_data.mac->normal_gc);
2431 f->output_data.mac->normal_gc = 0;
2432 }
2433
2434 if (f->output_data.mac->reverse_gc)
2435 {
2436 XFreeGC (dpy, f->output_data.mac->reverse_gc);
2437 f->output_data.mac->reverse_gc = 0;
2438 }
2439
2440 if (f->output_data.mac->cursor_gc)
2441 {
2442 XFreeGC (dpy, f->output_data.mac->cursor_gc);
2443 f->output_data.mac->cursor_gc = 0;
2444 }
2445
2446 #if 0
2447 if (f->output_data.mac->border_tile)
2448 {
2449 XFreePixmap (dpy, f->output_data.mac->border_tile);
2450 f->output_data.mac->border_tile = 0;
2451 }
2452 #endif
2453
2454 if (f->output_data.mac->white_relief.gc)
2455 {
2456 XFreeGC (dpy, f->output_data.mac->white_relief.gc);
2457 f->output_data.mac->white_relief.gc = 0;
2458 }
2459
2460 if (f->output_data.mac->black_relief.gc)
2461 {
2462 XFreeGC (dpy, f->output_data.mac->black_relief.gc);
2463 f->output_data.mac->black_relief.gc = 0;
2464 }
2465
2466 UNBLOCK_INPUT;
2467 }
2468
2469
2470 /* Handler for signals raised during x_create_frame and
2471 x_create_top_frame. FRAME is the frame which is partially
2472 constructed. */
2473
2474 static Lisp_Object
2475 unwind_create_frame (frame)
2476 Lisp_Object frame;
2477 {
2478 struct frame *f = XFRAME (frame);
2479
2480 /* If frame is ``official'', nothing to do. */
2481 if (!CONSP (Vframe_list) || !EQ (XCAR (Vframe_list), frame))
2482 {
2483 #if GLYPH_DEBUG
2484 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
2485 #endif
2486
2487 x_free_frame_resources (f);
2488
2489 /* Check that reference counts are indeed correct. */
2490 xassert (dpyinfo->reference_count == dpyinfo_refcount);
2491 xassert (dpyinfo->image_cache->refcount == image_cache_refcount);
2492 return Qt;
2493 }
2494
2495 return Qnil;
2496 }
2497
2498
2499 DEFUN ("x-create-frame", Fx_create_frame, Sx_create_frame,
2500 1, 1, 0,
2501 doc: /* Make a new window, which is called a \"frame\" in Emacs terms.
2502 Returns an Emacs frame object.
2503 ALIST is an alist of frame parameters.
2504 If the parameters specify that the frame should not have a minibuffer,
2505 and do not specify a specific minibuffer window to use,
2506 then `default-minibuffer-frame' must be a frame whose minibuffer can
2507 be shared by the new frame.
2508
2509 This function is an internal primitive--use `make-frame' instead. */)
2510 (parms)
2511 Lisp_Object parms;
2512 {
2513 struct frame *f;
2514 Lisp_Object frame, tem;
2515 Lisp_Object name;
2516 int minibuffer_only = 0;
2517 long window_prompting = 0;
2518 int width, height;
2519 int count = SPECPDL_INDEX ();
2520 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
2521 Lisp_Object display;
2522 struct mac_display_info *dpyinfo = NULL;
2523 Lisp_Object parent;
2524 struct kboard *kb;
2525 char x_frame_name[10];
2526 static int x_frame_count = 2; /* begins at 2 because terminal frame is F1 */
2527
2528 check_mac ();
2529
2530 /* Use this general default value to start with
2531 until we know if this frame has a specified name. */
2532 Vx_resource_name = Vinvocation_name;
2533
2534 display = mac_get_arg (parms, Qdisplay, 0, 0, RES_TYPE_STRING);
2535 if (EQ (display, Qunbound))
2536 display = Qnil;
2537 dpyinfo = check_x_display_info (display);
2538 #ifdef MULTI_KBOARD
2539 kb = dpyinfo->kboard;
2540 #else
2541 kb = &the_only_kboard;
2542 #endif
2543
2544 name = mac_get_arg (parms, Qname, "name", "Name", RES_TYPE_STRING);
2545 if (!STRINGP (name)
2546 && ! EQ (name, Qunbound)
2547 && ! NILP (name))
2548 error ("Invalid frame name--not a string or nil");
2549
2550 if (STRINGP (name))
2551 Vx_resource_name = name;
2552
2553 /* See if parent window is specified. */
2554 parent = mac_get_arg (parms, Qparent_id, NULL, NULL, RES_TYPE_NUMBER);
2555 if (EQ (parent, Qunbound))
2556 parent = Qnil;
2557 if (! NILP (parent))
2558 CHECK_NUMBER (parent);
2559
2560 /* make_frame_without_minibuffer can run Lisp code and garbage collect. */
2561 /* No need to protect DISPLAY because that's not used after passing
2562 it to make_frame_without_minibuffer. */
2563 frame = Qnil;
2564 GCPRO4 (parms, parent, name, frame);
2565 tem = mac_get_arg (parms, Qminibuffer, "minibuffer", "Minibuffer",
2566 RES_TYPE_SYMBOL);
2567 if (EQ (tem, Qnone) || NILP (tem))
2568 f = make_frame_without_minibuffer (Qnil, kb, display);
2569 else if (EQ (tem, Qonly))
2570 {
2571 f = make_minibuffer_frame ();
2572 minibuffer_only = 1;
2573 }
2574 else if (WINDOWP (tem))
2575 f = make_frame_without_minibuffer (tem, kb, display);
2576 else
2577 f = make_frame (1);
2578
2579 if (EQ (name, Qunbound) || NILP (name))
2580 {
2581 sprintf (x_frame_name, "F%d", x_frame_count++);
2582 f->name = build_string (x_frame_name);
2583 f->explicit_name = 0;
2584 }
2585 else
2586 {
2587 f->name = name;
2588 f->explicit_name = 1;
2589 }
2590
2591 XSETFRAME (frame, f);
2592
2593 /* Note that X Windows does support scroll bars. */
2594 FRAME_CAN_HAVE_SCROLL_BARS (f) = 1;
2595
2596 f->output_method = output_mac;
2597 f->output_data.mac = (struct mac_output *) xmalloc (sizeof (struct mac_output));
2598 bzero (f->output_data.mac, sizeof (struct mac_output));
2599 FRAME_FONTSET (f) = -1;
2600 record_unwind_protect (unwind_create_frame, frame);
2601
2602 f->icon_name
2603 = mac_get_arg (parms, Qicon_name, "iconName", "Title", RES_TYPE_STRING);
2604 if (! STRINGP (f->icon_name))
2605 f->icon_name = Qnil;
2606
2607 /* FRAME_W32_DISPLAY_INFO (f) = dpyinfo; */
2608 #ifdef MULTI_KBOARD
2609 FRAME_KBOARD (f) = kb;
2610 #endif
2611
2612 /* Specify the parent under which to make this window. */
2613
2614 if (!NILP (parent))
2615 {
2616 f->output_data.mac->parent_desc = (Window) XFASTINT (parent);
2617 f->output_data.mac->explicit_parent = 1;
2618 }
2619 else
2620 {
2621 f->output_data.mac->parent_desc = FRAME_MAC_DISPLAY_INFO (f)->root_window;
2622 f->output_data.mac->explicit_parent = 0;
2623 }
2624
2625 /* Set the name; the functions to which we pass f expect the name to
2626 be set. */
2627 if (EQ (name, Qunbound) || NILP (name))
2628 {
2629 f->name = build_string (dpyinfo->mac_id_name);
2630 f->explicit_name = 0;
2631 }
2632 else
2633 {
2634 f->name = name;
2635 f->explicit_name = 1;
2636 /* use the frame's title when getting resources for this frame. */
2637 specbind (Qx_resource_name, name);
2638 }
2639
2640 /* Extract the window parameters from the supplied values
2641 that are needed to determine window geometry. */
2642 {
2643 Lisp_Object font;
2644
2645 font = mac_get_arg (parms, Qfont, "font", "Font", RES_TYPE_STRING);
2646
2647 BLOCK_INPUT;
2648 /* First, try whatever font the caller has specified. */
2649 if (STRINGP (font))
2650 {
2651 tem = Fquery_fontset (font, Qnil);
2652 if (STRINGP (tem))
2653 font = x_new_fontset (f, SDATA (tem));
2654 else
2655 font = x_new_font (f, SDATA (font));
2656 }
2657
2658 /* Try out a font which we hope has bold and italic variations. */
2659 if (! STRINGP (font))
2660 font = x_new_font (f, "-ETL-fixed-medium-r-*--*-160-*-*-*-*-iso8859-1");
2661 /* If those didn't work, look for something which will at least work. */
2662 if (! STRINGP (font))
2663 font = x_new_font (f, "-*-monaco-*-12-*-mac-roman");
2664 if (! STRINGP (font))
2665 font = x_new_font (f, "-*-courier-*-10-*-mac-roman");
2666 if (! STRINGP (font))
2667 error ("Cannot find any usable font");
2668 UNBLOCK_INPUT;
2669
2670 x_default_parameter (f, parms, Qfont, font,
2671 "font", "Font", RES_TYPE_STRING);
2672 }
2673
2674 x_default_parameter (f, parms, Qborder_width, make_number (0),
2675 "borderwidth", "BorderWidth", RES_TYPE_NUMBER);
2676 /* This defaults to 2 in order to match xterm. We recognize either
2677 internalBorderWidth or internalBorder (which is what xterm calls
2678 it). */
2679 if (NILP (Fassq (Qinternal_border_width, parms)))
2680 {
2681 Lisp_Object value;
2682
2683 value = mac_get_arg (parms, Qinternal_border_width,
2684 "internalBorder", "InternalBorder", RES_TYPE_NUMBER);
2685 if (! EQ (value, Qunbound))
2686 parms = Fcons (Fcons (Qinternal_border_width, value),
2687 parms);
2688 }
2689 /* Default internalBorderWidth to 0 on Windows to match other programs. */
2690 x_default_parameter (f, parms, Qinternal_border_width, make_number (0),
2691 "internalBorderWidth", "InternalBorder", RES_TYPE_NUMBER);
2692 x_default_parameter (f, parms, Qvertical_scroll_bars, Qright,
2693 "verticalScrollBars", "ScrollBars", RES_TYPE_SYMBOL);
2694
2695 /* Also do the stuff which must be set before the window exists. */
2696 x_default_parameter (f, parms, Qforeground_color, build_string ("black"),
2697 "foreground", "Foreground", RES_TYPE_STRING);
2698 x_default_parameter (f, parms, Qbackground_color, build_string ("white"),
2699 "background", "Background", RES_TYPE_STRING);
2700 x_default_parameter (f, parms, Qmouse_color, build_string ("black"),
2701 "pointerColor", "Foreground", RES_TYPE_STRING);
2702 x_default_parameter (f, parms, Qcursor_color, build_string ("black"),
2703 "cursorColor", "Foreground", RES_TYPE_STRING);
2704 x_default_parameter (f, parms, Qborder_color, build_string ("black"),
2705 "borderColor", "BorderColor", RES_TYPE_STRING);
2706 x_default_parameter (f, parms, Qscreen_gamma, Qnil,
2707 "screenGamma", "ScreenGamma", RES_TYPE_FLOAT);
2708 x_default_parameter (f, parms, Qline_spacing, Qnil,
2709 "lineSpacing", "LineSpacing", RES_TYPE_NUMBER);
2710 x_default_parameter (f, parms, Qleft_fringe, Qnil,
2711 "leftFringe", "LeftFringe", RES_TYPE_NUMBER);
2712 x_default_parameter (f, parms, Qright_fringe, Qnil,
2713 "rightFringe", "RightFringe", RES_TYPE_NUMBER);
2714
2715
2716 /* Init faces before x_default_parameter is called for scroll-bar
2717 parameters because that function calls x_set_scroll_bar_width,
2718 which calls change_frame_size, which calls Fset_window_buffer,
2719 which runs hooks, which call Fvertical_motion. At the end, we
2720 end up in init_iterator with a null face cache, which should not
2721 happen. */
2722 init_frame_faces (f);
2723
2724 x_default_parameter (f, parms, Qmenu_bar_lines, make_number (1),
2725 "menuBar", "MenuBar", RES_TYPE_NUMBER);
2726 x_default_parameter (f, parms, Qtool_bar_lines, make_number (1),
2727 "toolBar", "ToolBar", RES_TYPE_NUMBER);
2728 x_default_parameter (f, parms, Qbuffer_predicate, Qnil,
2729 "bufferPredicate", "BufferPredicate", RES_TYPE_SYMBOL);
2730 x_default_parameter (f, parms, Qtitle, Qnil,
2731 "title", "Title", RES_TYPE_STRING);
2732 x_default_parameter (f, parms, Qfullscreen, Qnil,
2733 "fullscreen", "Fullscreen", RES_TYPE_SYMBOL);
2734
2735 f->output_data.mac->parent_desc = FRAME_MAC_DISPLAY_INFO (f)->root_window;
2736
2737 #if TARGET_API_MAC_CARBON
2738 f->output_data.mac->text_cursor = kThemeIBeamCursor;
2739 f->output_data.mac->nontext_cursor = kThemeArrowCursor;
2740 f->output_data.mac->modeline_cursor = kThemeArrowCursor;
2741 f->output_data.mac->hand_cursor = kThemePointingHandCursor;
2742 f->output_data.mac->hourglass_cursor = kThemeWatchCursor;
2743 f->output_data.mac->horizontal_drag_cursor = kThemeResizeLeftRightCursor;
2744 #else
2745 f->output_data.mac->text_cursor = GetCursor (iBeamCursor);
2746 f->output_data.mac->nontext_cursor = &arrow_cursor;
2747 f->output_data.mac->modeline_cursor = &arrow_cursor;
2748 f->output_data.mac->hand_cursor = &arrow_cursor;
2749 f->output_data.mac->hourglass_cursor = GetCursor (watchCursor);
2750 f->output_data.mac->horizontal_drag_cursor = &arrow_cursor;
2751 #endif
2752
2753 /* Compute the size of the window. */
2754 window_prompting = x_figure_window_size (f, parms, 1);
2755
2756 tem = mac_get_arg (parms, Qunsplittable, 0, 0, RES_TYPE_BOOLEAN);
2757 f->no_split = minibuffer_only || EQ (tem, Qt);
2758
2759 mac_window (f);
2760
2761 x_icon (f, parms);
2762 x_make_gc (f);
2763
2764 /* Now consider the frame official. */
2765 FRAME_MAC_DISPLAY_INFO (f)->reference_count++;
2766 Vframe_list = Fcons (frame, Vframe_list);
2767
2768 /* We need to do this after creating the window, so that the
2769 icon-creation functions can say whose icon they're describing. */
2770 x_default_parameter (f, parms, Qicon_type, Qnil,
2771 "bitmapIcon", "BitmapIcon", RES_TYPE_SYMBOL);
2772
2773 x_default_parameter (f, parms, Qauto_raise, Qnil,
2774 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN);
2775 x_default_parameter (f, parms, Qauto_lower, Qnil,
2776 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN);
2777 x_default_parameter (f, parms, Qcursor_type, Qbox,
2778 "cursorType", "CursorType", RES_TYPE_SYMBOL);
2779 x_default_parameter (f, parms, Qscroll_bar_width, Qnil,
2780 "scrollBarWidth", "ScrollBarWidth",
2781 RES_TYPE_NUMBER);
2782
2783 /* Dimensions, especially FRAME_LINES (f), must be done via change_frame_size.
2784 Change will not be effected unless different from the current
2785 FRAME_LINES (f). */
2786 width = FRAME_COLS (f);
2787 height = FRAME_LINES (f);
2788
2789 SET_FRAME_COLS (f, 0);
2790 FRAME_LINES (f) = 0;
2791 change_frame_size (f, height, width, 1, 0, 0);
2792
2793 /* Tell the server what size and position, etc, we want, and how
2794 badly we want them. This should be done after we have the menu
2795 bar so that its size can be taken into account. */
2796 BLOCK_INPUT;
2797 x_wm_set_size_hint (f, window_prompting, 0);
2798 UNBLOCK_INPUT;
2799
2800 /* Make the window appear on the frame and enable display, unless
2801 the caller says not to. However, with explicit parent, Emacs
2802 cannot control visibility, so don't try. */
2803 if (! f->output_data.mac->explicit_parent)
2804 {
2805 Lisp_Object visibility;
2806
2807 visibility = mac_get_arg (parms, Qvisibility, 0, 0, RES_TYPE_SYMBOL);
2808 if (EQ (visibility, Qunbound))
2809 visibility = Qt;
2810
2811 #if 0 /* MAC_TODO: really no iconify on Mac */
2812 if (EQ (visibility, Qicon))
2813 x_iconify_frame (f);
2814 else
2815 #endif
2816 if (! NILP (visibility))
2817 x_make_frame_visible (f);
2818 else
2819 /* Must have been Qnil. */
2820 ;
2821 }
2822 UNGCPRO;
2823
2824 /* Make sure windows on this frame appear in calls to next-window
2825 and similar functions. */
2826 Vwindow_list = Qnil;
2827
2828 return unbind_to (count, frame);
2829 }
2830
2831 /* FRAME is used only to get a handle on the X display. We don't pass the
2832 display info directly because we're called from frame.c, which doesn't
2833 know about that structure. */
2834 Lisp_Object
2835 x_get_focus_frame (frame)
2836 struct frame *frame;
2837 {
2838 struct mac_display_info *dpyinfo = FRAME_MAC_DISPLAY_INFO (frame);
2839 Lisp_Object xfocus;
2840 if (! dpyinfo->x_focus_frame)
2841 return Qnil;
2842
2843 XSETFRAME (xfocus, dpyinfo->x_focus_frame);
2844 return xfocus;
2845 }
2846 \f
2847 DEFUN ("xw-color-defined-p", Fxw_color_defined_p, Sxw_color_defined_p, 1, 2, 0,
2848 doc: /* Internal function called by `color-defined-p', which see. */)
2849 (color, frame)
2850 Lisp_Object color, frame;
2851 {
2852 XColor foo;
2853 FRAME_PTR f = check_x_frame (frame);
2854
2855 CHECK_STRING (color);
2856
2857 if (mac_defined_color (f, SDATA (color), &foo, 0))
2858 return Qt;
2859 else
2860 return Qnil;
2861 }
2862
2863 DEFUN ("xw-color-values", Fxw_color_values, Sxw_color_values, 1, 2, 0,
2864 doc: /* Internal function called by `color-values', which see. */)
2865 (color, frame)
2866 Lisp_Object color, frame;
2867 {
2868 XColor foo;
2869 FRAME_PTR f = check_x_frame (frame);
2870
2871 CHECK_STRING (color);
2872
2873 if (mac_defined_color (f, SDATA (color), &foo, 0))
2874 {
2875 Lisp_Object rgb[3];
2876
2877 rgb[0] = make_number (foo.red);
2878 rgb[1] = make_number (foo.green);
2879 rgb[2] = make_number (foo.blue);
2880 return Flist (3, rgb);
2881 }
2882 else
2883 return Qnil;
2884 }
2885
2886 DEFUN ("xw-display-color-p", Fxw_display_color_p, Sxw_display_color_p, 0, 1, 0,
2887 doc: /* Internal function called by `display-color-p', which see. */)
2888 (display)
2889 Lisp_Object display;
2890 {
2891 struct mac_display_info *dpyinfo = check_x_display_info (display);
2892
2893 if (!dpyinfo->color_p)
2894 return Qnil;
2895
2896 return Qt;
2897 }
2898
2899 DEFUN ("x-display-grayscale-p", Fx_display_grayscale_p, Sx_display_grayscale_p,
2900 0, 1, 0,
2901 doc: /* Return t if the X display supports shades of gray.
2902 Note that color displays do support shades of gray.
2903 The optional argument DISPLAY specifies which display to ask about.
2904 DISPLAY should be either a frame or a display name (a string).
2905 If omitted or nil, that stands for the selected frame's display. */)
2906 (display)
2907 Lisp_Object display;
2908 {
2909 struct mac_display_info *dpyinfo = check_x_display_info (display);
2910
2911 if (dpyinfo->n_planes <= 1)
2912 return Qnil;
2913
2914 return Qt;
2915 }
2916
2917 DEFUN ("x-display-pixel-width", Fx_display_pixel_width, Sx_display_pixel_width,
2918 0, 1, 0,
2919 doc: /* Returns the width in pixels of the X display DISPLAY.
2920 The optional argument DISPLAY specifies which display to ask about.
2921 DISPLAY should be either a frame or a display name (a string).
2922 If omitted or nil, that stands for the selected frame's display. */)
2923 (display)
2924 Lisp_Object display;
2925 {
2926 struct mac_display_info *dpyinfo = check_x_display_info (display);
2927
2928 return make_number (dpyinfo->width);
2929 }
2930
2931 DEFUN ("x-display-pixel-height", Fx_display_pixel_height,
2932 Sx_display_pixel_height, 0, 1, 0,
2933 doc: /* Returns the height in pixels of the X display DISPLAY.
2934 The optional argument DISPLAY specifies which display to ask about.
2935 DISPLAY should be either a frame or a display name (a string).
2936 If omitted or nil, that stands for the selected frame's display. */)
2937 (display)
2938 Lisp_Object display;
2939 {
2940 struct mac_display_info *dpyinfo = check_x_display_info (display);
2941
2942 return make_number (dpyinfo->height);
2943 }
2944
2945 DEFUN ("x-display-planes", Fx_display_planes, Sx_display_planes,
2946 0, 1, 0,
2947 doc: /* Returns the number of bitplanes of the display DISPLAY.
2948 The optional argument DISPLAY specifies which display to ask about.
2949 DISPLAY should be either a frame or a display name (a string).
2950 If omitted or nil, that stands for the selected frame's display. */)
2951 (display)
2952 Lisp_Object display;
2953 {
2954 struct mac_display_info *dpyinfo = check_x_display_info (display);
2955
2956 return make_number (dpyinfo->n_planes);
2957 }
2958
2959 DEFUN ("x-display-color-cells", Fx_display_color_cells, Sx_display_color_cells,
2960 0, 1, 0,
2961 doc: /* Returns the number of color cells of the display DISPLAY.
2962 The optional argument DISPLAY specifies which display to ask about.
2963 DISPLAY should be either a frame or a display name (a string).
2964 If omitted or nil, that stands for the selected frame's display. */)
2965 (display)
2966 Lisp_Object display;
2967 {
2968 struct mac_display_info *dpyinfo = check_x_display_info (display);
2969
2970 /* We force 24+ bit depths to 24-bit to prevent an overflow. */
2971 return make_number (1 << min (dpyinfo->n_planes, 24));
2972 }
2973
2974 DEFUN ("x-server-max-request-size", Fx_server_max_request_size,
2975 Sx_server_max_request_size,
2976 0, 1, 0,
2977 doc: /* Returns the maximum request size of the server of display DISPLAY.
2978 The optional argument DISPLAY specifies which display to ask about.
2979 DISPLAY should be either a frame or a display name (a string).
2980 If omitted or nil, that stands for the selected frame's display. */)
2981 (display)
2982 Lisp_Object display;
2983 {
2984 struct mac_display_info *dpyinfo = check_x_display_info (display);
2985
2986 return make_number (1);
2987 }
2988
2989 DEFUN ("x-server-vendor", Fx_server_vendor, Sx_server_vendor, 0, 1, 0,
2990 doc: /* Returns the vendor ID string of the Mac OS system (Apple).
2991 The optional argument DISPLAY specifies which display to ask about.
2992 DISPLAY should be either a frame or a display name (a string).
2993 If omitted or nil, that stands for the selected frame's display. */)
2994 (display)
2995 Lisp_Object display;
2996 {
2997 return build_string ("Apple Computers");
2998 }
2999
3000 DEFUN ("x-server-version", Fx_server_version, Sx_server_version, 0, 1, 0,
3001 doc: /* Returns the version numbers of the server of display DISPLAY.
3002 The value is a list of three integers: the major and minor
3003 version numbers, and the vendor-specific release
3004 number. See also the function `x-server-vendor'.
3005
3006 The optional argument DISPLAY specifies which display to ask about.
3007 DISPLAY should be either a frame or a display name (a string).
3008 If omitted or nil, that stands for the selected frame's display. */)
3009 (display)
3010 Lisp_Object display;
3011 {
3012 int mac_major_version;
3013 SInt32 response;
3014
3015 if (Gestalt (gestaltSystemVersion, &response) != noErr)
3016 error ("Cannot get Mac OS version");
3017
3018 mac_major_version = (response >> 8) & 0xff;
3019 /* convert BCD to int */
3020 mac_major_version -= (mac_major_version >> 4) * 6;
3021
3022 return Fcons (make_number (mac_major_version),
3023 Fcons (make_number ((response >> 4) & 0xf),
3024 Fcons (make_number (response & 0xf),
3025 Qnil)));
3026 }
3027
3028 DEFUN ("x-display-screens", Fx_display_screens, Sx_display_screens, 0, 1, 0,
3029 doc: /* Return the number of screens on the server of display DISPLAY.
3030 The optional argument DISPLAY specifies which display to ask about.
3031 DISPLAY should be either a frame or a display name (a string).
3032 If omitted or nil, that stands for the selected frame's display. */)
3033 (display)
3034 Lisp_Object display;
3035 {
3036 return make_number (1);
3037 }
3038
3039 DEFUN ("x-display-mm-height", Fx_display_mm_height, Sx_display_mm_height, 0, 1, 0,
3040 doc: /* Return the height in millimeters of the X display DISPLAY.
3041 The optional argument DISPLAY specifies which display to ask about.
3042 DISPLAY should be either a frame or a display name (a string).
3043 If omitted or nil, that stands for the selected frame's display. */)
3044 (display)
3045 Lisp_Object display;
3046 {
3047 /* MAC_TODO: this is an approximation, and only of the main display */
3048
3049 struct mac_display_info *dpyinfo = check_x_display_info (display);
3050
3051 return make_number ((int) (dpyinfo->height * 25.4 / dpyinfo->resy));
3052 }
3053
3054 DEFUN ("x-display-mm-width", Fx_display_mm_width, Sx_display_mm_width, 0, 1, 0,
3055 doc: /* Return the width in millimeters of the X display DISPLAY.
3056 The optional argument DISPLAY specifies which display to ask about.
3057 DISPLAY should be either a frame or a display name (a string).
3058 If omitted or nil, that stands for the selected frame's display. */)
3059 (display)
3060 Lisp_Object display;
3061 {
3062 /* MAC_TODO: this is an approximation, and only of the main display */
3063
3064 struct mac_display_info *dpyinfo = check_x_display_info (display);
3065
3066 return make_number ((int) (dpyinfo->width * 25.4 / dpyinfo->resx));
3067 }
3068
3069 DEFUN ("x-display-backing-store", Fx_display_backing_store,
3070 Sx_display_backing_store, 0, 1, 0,
3071 doc: /* Returns an indication of whether display DISPLAY does backing store.
3072 The value may be `always', `when-mapped', or `not-useful'.
3073 The optional argument DISPLAY specifies which display to ask about.
3074 DISPLAY should be either a frame or a display name (a string).
3075 If omitted or nil, that stands for the selected frame's display. */)
3076 (display)
3077 Lisp_Object display;
3078 {
3079 return intern ("not-useful");
3080 }
3081
3082 DEFUN ("x-display-visual-class", Fx_display_visual_class,
3083 Sx_display_visual_class, 0, 1, 0,
3084 doc: /* Returns the visual class of the display DISPLAY.
3085 The value is one of the symbols `static-gray', `gray-scale',
3086 `static-color', `pseudo-color', `true-color', or `direct-color'.
3087
3088 The optional argument DISPLAY specifies which display to ask about.
3089 DISPLAY should be either a frame or a display name (a string).
3090 If omitted or nil, that stands for the selected frame's display. */)
3091 (display)
3092 Lisp_Object display;
3093 {
3094 struct mac_display_info *dpyinfo = check_x_display_info (display);
3095
3096 #if 0
3097 switch (dpyinfo->visual->class)
3098 {
3099 case StaticGray: return (intern ("static-gray"));
3100 case GrayScale: return (intern ("gray-scale"));
3101 case StaticColor: return (intern ("static-color"));
3102 case PseudoColor: return (intern ("pseudo-color"));
3103 case TrueColor: return (intern ("true-color"));
3104 case DirectColor: return (intern ("direct-color"));
3105 default:
3106 error ("Display has an unknown visual class");
3107 }
3108 #endif /* 0 */
3109
3110 return (intern ("true-color"));
3111 }
3112
3113 DEFUN ("x-display-save-under", Fx_display_save_under,
3114 Sx_display_save_under, 0, 1, 0,
3115 doc: /* Returns t if the display DISPLAY supports the save-under feature.
3116 The optional argument DISPLAY specifies which display to ask about.
3117 DISPLAY should be either a frame or a display name (a string).
3118 If omitted or nil, that stands for the selected frame's display. */)
3119 (display)
3120 Lisp_Object display;
3121 {
3122 return Qnil;
3123 }
3124 \f
3125 int
3126 x_pixel_width (f)
3127 register struct frame *f;
3128 {
3129 return FRAME_PIXEL_WIDTH (f);
3130 }
3131
3132 int
3133 x_pixel_height (f)
3134 register struct frame *f;
3135 {
3136 return FRAME_PIXEL_HEIGHT (f);
3137 }
3138
3139 int
3140 x_char_width (f)
3141 register struct frame *f;
3142 {
3143 return FRAME_COLUMN_WIDTH (f);
3144 }
3145
3146 int
3147 x_char_height (f)
3148 register struct frame *f;
3149 {
3150 return FRAME_LINE_HEIGHT (f);
3151 }
3152
3153 int
3154 x_screen_planes (f)
3155 register struct frame *f;
3156 {
3157 return FRAME_MAC_DISPLAY_INFO (f)->n_planes;
3158 }
3159 \f
3160 /* Return the display structure for the display named NAME.
3161 Open a new connection if necessary. */
3162
3163 struct mac_display_info *
3164 x_display_info_for_name (name)
3165 Lisp_Object name;
3166 {
3167 Lisp_Object names;
3168 struct mac_display_info *dpyinfo;
3169
3170 CHECK_STRING (name);
3171
3172 if (! EQ (Vwindow_system, intern ("mac")))
3173 error ("Not using Mac native windows");
3174
3175 for (dpyinfo = &one_mac_display_info, names = x_display_name_list;
3176 dpyinfo;
3177 dpyinfo = dpyinfo->next, names = XCDR (names))
3178 {
3179 Lisp_Object tem;
3180 tem = Fstring_equal (XCAR (XCAR (names)), name);
3181 if (!NILP (tem))
3182 return dpyinfo;
3183 }
3184
3185 /* Use this general default value to start with. */
3186 Vx_resource_name = Vinvocation_name;
3187
3188 validate_x_resource_name ();
3189
3190 dpyinfo = mac_term_init (name, (unsigned char *) 0,
3191 (char *) SDATA (Vx_resource_name));
3192
3193 if (dpyinfo == 0)
3194 error ("Cannot connect to server %s", SDATA (name));
3195
3196 mac_in_use = 1;
3197 XSETFASTINT (Vwindow_system_version, 3);
3198
3199 return dpyinfo;
3200 }
3201
3202 DEFUN ("x-open-connection", Fx_open_connection, Sx_open_connection,
3203 1, 3, 0,
3204 doc: /* Open a connection to a server.
3205 DISPLAY is the name of the display to connect to.
3206 Optional second arg XRM-STRING is a string of resources in xrdb format.
3207 If the optional third arg MUST-SUCCEED is non-nil,
3208 terminate Emacs if we can't open the connection. */)
3209 (display, xrm_string, must_succeed)
3210 Lisp_Object display, xrm_string, must_succeed;
3211 {
3212 unsigned char *xrm_option;
3213 struct mac_display_info *dpyinfo;
3214
3215 CHECK_STRING (display);
3216 if (! NILP (xrm_string))
3217 CHECK_STRING (xrm_string);
3218
3219 if (! EQ (Vwindow_system, intern ("mac")))
3220 error ("Not using Mac native windows");
3221
3222 if (! NILP (xrm_string))
3223 xrm_option = (unsigned char *) SDATA (xrm_string);
3224 else
3225 xrm_option = (unsigned char *) 0;
3226
3227 validate_x_resource_name ();
3228
3229 /* This is what opens the connection and sets x_current_display.
3230 This also initializes many symbols, such as those used for input. */
3231 dpyinfo = mac_term_init (display, xrm_option,
3232 (char *) SDATA (Vx_resource_name));
3233
3234 if (dpyinfo == 0)
3235 {
3236 if (!NILP (must_succeed))
3237 fatal ("Cannot connect to server %s.\n",
3238 SDATA (display));
3239 else
3240 error ("Cannot connect to server %s", SDATA (display));
3241 }
3242
3243 mac_in_use = 1;
3244
3245 XSETFASTINT (Vwindow_system_version, 3);
3246 return Qnil;
3247 }
3248
3249 DEFUN ("x-close-connection", Fx_close_connection,
3250 Sx_close_connection, 1, 1, 0,
3251 doc: /* Close the connection to DISPLAY's server.
3252 For DISPLAY, specify either a frame or a display name (a string).
3253 If DISPLAY is nil, that stands for the selected frame's display. */)
3254 (display)
3255 Lisp_Object display;
3256 {
3257 struct mac_display_info *dpyinfo = check_x_display_info (display);
3258 int i;
3259
3260 if (dpyinfo->reference_count > 0)
3261 error ("Display still has frames on it");
3262
3263 BLOCK_INPUT;
3264 /* Free the fonts in the font table. */
3265 for (i = 0; i < dpyinfo->n_fonts; i++)
3266 if (dpyinfo->font_table[i].name)
3267 {
3268 mac_unload_font (dpyinfo, dpyinfo->font_table[i].font);
3269 }
3270
3271 x_destroy_all_bitmaps (dpyinfo);
3272
3273 x_delete_display (dpyinfo);
3274 UNBLOCK_INPUT;
3275
3276 return Qnil;
3277 }
3278
3279 DEFUN ("x-display-list", Fx_display_list, Sx_display_list, 0, 0, 0,
3280 doc: /* Return the list of display names that Emacs has connections to. */)
3281 ()
3282 {
3283 Lisp_Object tail, result;
3284
3285 result = Qnil;
3286 for (tail = x_display_name_list; ! NILP (tail); tail = XCDR (tail))
3287 result = Fcons (XCAR (XCAR (tail)), result);
3288
3289 return result;
3290 }
3291
3292 DEFUN ("x-synchronize", Fx_synchronize, Sx_synchronize, 1, 2, 0,
3293 doc: /* If ON is non-nil, report errors as soon as the erring request is made.
3294 If ON is nil, allow buffering of requests.
3295 This is a noop on Mac OS systems.
3296 The optional second argument DISPLAY specifies which display to act on.
3297 DISPLAY should be either a frame or a display name (a string).
3298 If DISPLAY is omitted or nil, that stands for the selected frame's display. */)
3299 (on, display)
3300 Lisp_Object display, on;
3301 {
3302 return Qnil;
3303 }
3304
3305 \f
3306 /***********************************************************************
3307 Window properties
3308 ***********************************************************************/
3309
3310 DEFUN ("x-change-window-property", Fx_change_window_property,
3311 Sx_change_window_property, 2, 6, 0,
3312 doc: /* Change window property PROP to VALUE on the X window of FRAME.
3313 VALUE may be a string or a list of conses, numbers and/or strings.
3314 If an element in the list is a string, it is converted to
3315 an Atom and the value of the Atom is used. If an element is a cons,
3316 it is converted to a 32 bit number where the car is the 16 top bits and the
3317 cdr is the lower 16 bits.
3318 FRAME nil or omitted means use the selected frame.
3319 If TYPE is given and non-nil, it is the name of the type of VALUE.
3320 If TYPE is not given or nil, the type is STRING.
3321 FORMAT gives the size in bits of each element if VALUE is a list.
3322 It must be one of 8, 16 or 32.
3323 If VALUE is a string or FORMAT is nil or not given, FORMAT defaults to 8.
3324 If OUTER_P is non-nil, the property is changed for the outer X window of
3325 FRAME. Default is to change on the edit X window.
3326
3327 Value is VALUE. */)
3328 (prop, value, frame, type, format, outer_p)
3329 Lisp_Object prop, value, frame, type, format, outer_p;
3330 {
3331 #if 0 /* MAC_TODO : port window properties to Mac */
3332 struct frame *f = check_x_frame (frame);
3333 Atom prop_atom;
3334
3335 CHECK_STRING (prop);
3336 CHECK_STRING (value);
3337
3338 BLOCK_INPUT;
3339 prop_atom = XInternAtom (FRAME_W32_DISPLAY (f), SDATA (prop), False);
3340 XChangeProperty (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f),
3341 prop_atom, XA_STRING, 8, PropModeReplace,
3342 SDATA (value), SCHARS (value));
3343
3344 /* Make sure the property is set when we return. */
3345 XFlush (FRAME_W32_DISPLAY (f));
3346 UNBLOCK_INPUT;
3347
3348 #endif /* MAC_TODO */
3349
3350 return value;
3351 }
3352
3353
3354 DEFUN ("x-delete-window-property", Fx_delete_window_property,
3355 Sx_delete_window_property, 1, 2, 0,
3356 doc: /* Remove window property PROP from X window of FRAME.
3357 FRAME nil or omitted means use the selected frame. Value is PROP. */)
3358 (prop, frame)
3359 Lisp_Object prop, frame;
3360 {
3361 #if 0 /* MAC_TODO : port window properties to Mac */
3362
3363 struct frame *f = check_x_frame (frame);
3364 Atom prop_atom;
3365
3366 CHECK_STRING (prop);
3367 BLOCK_INPUT;
3368 prop_atom = XInternAtom (FRAME_W32_DISPLAY (f), SDATA (prop), False);
3369 XDeleteProperty (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f), prop_atom);
3370
3371 /* Make sure the property is removed when we return. */
3372 XFlush (FRAME_W32_DISPLAY (f));
3373 UNBLOCK_INPUT;
3374 #endif /* MAC_TODO */
3375
3376 return prop;
3377 }
3378
3379
3380 DEFUN ("x-window-property", Fx_window_property, Sx_window_property,
3381 1, 2, 0,
3382 doc: /* Value is the value of window property PROP on FRAME.
3383 If FRAME is nil or omitted, use the selected frame. Value is nil
3384 if FRAME hasn't a property with name PROP or if PROP has no string
3385 value. */)
3386 (prop, frame)
3387 Lisp_Object prop, frame;
3388 {
3389 #if 0 /* MAC_TODO : port window properties to Mac */
3390
3391 struct frame *f = check_x_frame (frame);
3392 Atom prop_atom;
3393 int rc;
3394 Lisp_Object prop_value = Qnil;
3395 char *tmp_data = NULL;
3396 Atom actual_type;
3397 int actual_format;
3398 unsigned long actual_size, bytes_remaining;
3399
3400 CHECK_STRING (prop);
3401 BLOCK_INPUT;
3402 prop_atom = XInternAtom (FRAME_W32_DISPLAY (f), SDATA (prop), False);
3403 rc = XGetWindowProperty (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f),
3404 prop_atom, 0, 0, False, XA_STRING,
3405 &actual_type, &actual_format, &actual_size,
3406 &bytes_remaining, (unsigned char **) &tmp_data);
3407 if (rc == Success)
3408 {
3409 int size = bytes_remaining;
3410
3411 XFree (tmp_data);
3412 tmp_data = NULL;
3413
3414 rc = XGetWindowProperty (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f),
3415 prop_atom, 0, bytes_remaining,
3416 False, XA_STRING,
3417 &actual_type, &actual_format,
3418 &actual_size, &bytes_remaining,
3419 (unsigned char **) &tmp_data);
3420 if (rc == Success)
3421 prop_value = make_string (tmp_data, size);
3422
3423 XFree (tmp_data);
3424 }
3425
3426 UNBLOCK_INPUT;
3427
3428 return prop_value;
3429
3430 #endif /* MAC_TODO */
3431 return Qnil;
3432 }
3433
3434
3435 \f
3436 /***********************************************************************
3437 Hourglass cursor
3438 ***********************************************************************/
3439
3440 /* If non-null, an asynchronous timer that, when it expires, displays
3441 an hourglass cursor on all frames. */
3442
3443 static struct atimer *hourglass_atimer;
3444
3445 /* Non-zero means an hourglass cursor is currently shown. */
3446
3447 static int hourglass_shown_p;
3448
3449 /* Number of seconds to wait before displaying an hourglass cursor. */
3450
3451 static Lisp_Object Vhourglass_delay;
3452
3453 /* Default number of seconds to wait before displaying an hourglass
3454 cursor. */
3455
3456 #define DEFAULT_HOURGLASS_DELAY 1
3457
3458 /* Function prototypes. */
3459
3460 static void show_hourglass P_ ((struct atimer *));
3461 static void hide_hourglass P_ ((void));
3462
3463
3464 /* Cancel a currently active hourglass timer, and start a new one. */
3465
3466 void
3467 start_hourglass ()
3468 {
3469 #if 0 /* MAC_TODO: cursor shape changes. */
3470 EMACS_TIME delay;
3471 int secs, usecs = 0;
3472
3473 cancel_hourglass ();
3474
3475 if (INTEGERP (Vhourglass_delay)
3476 && XINT (Vhourglass_delay) > 0)
3477 secs = XFASTINT (Vhourglass_delay);
3478 else if (FLOATP (Vhourglass_delay)
3479 && XFLOAT_DATA (Vhourglass_delay) > 0)
3480 {
3481 Lisp_Object tem;
3482 tem = Ftruncate (Vhourglass_delay, Qnil);
3483 secs = XFASTINT (tem);
3484 usecs = (XFLOAT_DATA (Vhourglass_delay) - secs) * 1000000;
3485 }
3486 else
3487 secs = DEFAULT_HOURGLASS_DELAY;
3488
3489 EMACS_SET_SECS_USECS (delay, secs, usecs);
3490 hourglass_atimer = start_atimer (ATIMER_RELATIVE, delay,
3491 show_hourglass, NULL);
3492 #endif /* MAC_TODO */
3493 }
3494
3495
3496 /* Cancel the hourglass cursor timer if active, hide an hourglass
3497 cursor if shown. */
3498
3499 void
3500 cancel_hourglass ()
3501 {
3502 if (hourglass_atimer)
3503 {
3504 cancel_atimer (hourglass_atimer);
3505 hourglass_atimer = NULL;
3506 }
3507
3508 if (hourglass_shown_p)
3509 hide_hourglass ();
3510 }
3511
3512
3513 /* Timer function of hourglass_atimer. TIMER is equal to
3514 hourglass_atimer.
3515
3516 Display an hourglass cursor on all frames by mapping the frames'
3517 hourglass_window. Set the hourglass_p flag in the frames'
3518 output_data.x structure to indicate that an hourglass cursor is
3519 shown on the frames. */
3520
3521 static void
3522 show_hourglass (timer)
3523 struct atimer *timer;
3524 {
3525 #if 0 /* MAC_TODO: cursor shape changes. */
3526 /* The timer implementation will cancel this timer automatically
3527 after this function has run. Set hourglass_atimer to null
3528 so that we know the timer doesn't have to be canceled. */
3529 hourglass_atimer = NULL;
3530
3531 if (!hourglass_shown_p)
3532 {
3533 Lisp_Object rest, frame;
3534
3535 BLOCK_INPUT;
3536
3537 FOR_EACH_FRAME (rest, frame)
3538 if (FRAME_W32_P (XFRAME (frame)))
3539 {
3540 struct frame *f = XFRAME (frame);
3541
3542 f->output_data.w32->hourglass_p = 1;
3543
3544 if (!f->output_data.w32->hourglass_window)
3545 {
3546 unsigned long mask = CWCursor;
3547 XSetWindowAttributes attrs;
3548
3549 attrs.cursor = f->output_data.w32->hourglass_cursor;
3550
3551 f->output_data.w32->hourglass_window
3552 = XCreateWindow (FRAME_X_DISPLAY (f),
3553 FRAME_OUTER_WINDOW (f),
3554 0, 0, 32000, 32000, 0, 0,
3555 InputOnly,
3556 CopyFromParent,
3557 mask, &attrs);
3558 }
3559
3560 XMapRaised (FRAME_X_DISPLAY (f),
3561 f->output_data.w32->hourglass_window);
3562 XFlush (FRAME_X_DISPLAY (f));
3563 }
3564
3565 hourglass_shown_p = 1;
3566 UNBLOCK_INPUT;
3567 }
3568 #endif /* MAC_TODO */
3569 }
3570
3571
3572 /* Hide the hourglass cursor on all frames, if it is currently shown. */
3573
3574 static void
3575 hide_hourglass ()
3576 {
3577 #if 0 /* MAC_TODO: cursor shape changes. */
3578 if (hourglass_shown_p)
3579 {
3580 Lisp_Object rest, frame;
3581
3582 BLOCK_INPUT;
3583 FOR_EACH_FRAME (rest, frame)
3584 {
3585 struct frame *f = XFRAME (frame);
3586
3587 if (FRAME_W32_P (f)
3588 /* Watch out for newly created frames. */
3589 && f->output_data.x->hourglass_window)
3590 {
3591 XUnmapWindow (FRAME_X_DISPLAY (f),
3592 f->output_data.x->hourglass_window);
3593 /* Sync here because XTread_socket looks at the
3594 hourglass_p flag that is reset to zero below. */
3595 XSync (FRAME_X_DISPLAY (f), False);
3596 f->output_data.x->hourglass_p = 0;
3597 }
3598 }
3599
3600 hourglass_shown_p = 0;
3601 UNBLOCK_INPUT;
3602 }
3603 #endif /* MAC_TODO */
3604 }
3605
3606
3607 \f
3608 /***********************************************************************
3609 Tool tips
3610 ***********************************************************************/
3611
3612 static Lisp_Object x_create_tip_frame P_ ((struct mac_display_info *,
3613 Lisp_Object, Lisp_Object));
3614 static void compute_tip_xy P_ ((struct frame *, Lisp_Object, Lisp_Object,
3615 Lisp_Object, int, int, int *, int *));
3616
3617 /* The frame of a currently visible tooltip. */
3618
3619 Lisp_Object tip_frame;
3620
3621 /* If non-nil, a timer started that hides the last tooltip when it
3622 fires. */
3623
3624 Lisp_Object tip_timer;
3625 Window tip_window;
3626
3627 /* If non-nil, a vector of 3 elements containing the last args
3628 with which x-show-tip was called. See there. */
3629
3630 Lisp_Object last_show_tip_args;
3631
3632 /* Maximum size for tooltips; a cons (COLUMNS . ROWS). */
3633
3634 Lisp_Object Vx_max_tooltip_size;
3635
3636
3637 static Lisp_Object
3638 unwind_create_tip_frame (frame)
3639 Lisp_Object frame;
3640 {
3641 Lisp_Object deleted;
3642
3643 deleted = unwind_create_frame (frame);
3644 if (EQ (deleted, Qt))
3645 {
3646 tip_window = NULL;
3647 tip_frame = Qnil;
3648 }
3649
3650 return deleted;
3651 }
3652
3653
3654 /* Create a frame for a tooltip on the display described by DPYINFO.
3655 PARMS is a list of frame parameters. TEXT is the string to
3656 display in the tip frame. Value is the frame.
3657
3658 Note that functions called here, esp. x_default_parameter can
3659 signal errors, for instance when a specified color name is
3660 undefined. We have to make sure that we're in a consistent state
3661 when this happens. */
3662
3663 static Lisp_Object
3664 x_create_tip_frame (dpyinfo, parms, text)
3665 struct mac_display_info *dpyinfo;
3666 Lisp_Object parms, text;
3667 {
3668 struct frame *f;
3669 Lisp_Object frame, tem;
3670 Lisp_Object name;
3671 long window_prompting = 0;
3672 int width, height;
3673 int count = SPECPDL_INDEX ();
3674 struct gcpro gcpro1, gcpro2, gcpro3;
3675 struct kboard *kb;
3676 int face_change_count_before = face_change_count;
3677 Lisp_Object buffer;
3678 struct buffer *old_buffer;
3679
3680 check_mac ();
3681
3682 /* Use this general default value to start with until we know if
3683 this frame has a specified name. */
3684 Vx_resource_name = Vinvocation_name;
3685
3686 #ifdef MULTI_KBOARD
3687 kb = dpyinfo->kboard;
3688 #else
3689 kb = &the_only_kboard;
3690 #endif
3691
3692 /* Get the name of the frame to use for resource lookup. */
3693 name = mac_get_arg (parms, Qname, "name", "Name", RES_TYPE_STRING);
3694 if (!STRINGP (name)
3695 && !EQ (name, Qunbound)
3696 && !NILP (name))
3697 error ("Invalid frame name--not a string or nil");
3698 Vx_resource_name = name;
3699
3700 frame = Qnil;
3701 GCPRO3 (parms, name, frame);
3702 f = make_frame (1);
3703 XSETFRAME (frame, f);
3704
3705 buffer = Fget_buffer_create (build_string (" *tip*"));
3706 Fset_window_buffer (FRAME_ROOT_WINDOW (f), buffer, Qnil);
3707 old_buffer = current_buffer;
3708 set_buffer_internal_1 (XBUFFER (buffer));
3709 current_buffer->truncate_lines = Qnil;
3710 specbind (Qinhibit_read_only, Qt);
3711 specbind (Qinhibit_modification_hooks, Qt);
3712 Ferase_buffer ();
3713 Finsert (1, &text);
3714 set_buffer_internal_1 (old_buffer);
3715
3716 FRAME_CAN_HAVE_SCROLL_BARS (f) = 0;
3717 record_unwind_protect (unwind_create_tip_frame, frame);
3718
3719 /* By setting the output method, we're essentially saying that
3720 the frame is live, as per FRAME_LIVE_P. If we get a signal
3721 from this point on, x_destroy_window might screw up reference
3722 counts etc. */
3723 f->output_method = output_mac;
3724 f->output_data.mac =
3725 (struct mac_output *) xmalloc (sizeof (struct mac_output));
3726 bzero (f->output_data.mac, sizeof (struct mac_output));
3727
3728 FRAME_FONTSET (f) = -1;
3729 f->icon_name = Qnil;
3730
3731 #if 0 /* GLYPH_DEBUG TODO: image support. */
3732 image_cache_refcount = FRAME_X_IMAGE_CACHE (f)->refcount;
3733 dpyinfo_refcount = dpyinfo->reference_count;
3734 #endif /* GLYPH_DEBUG */
3735 #ifdef MULTI_KBOARD
3736 FRAME_KBOARD (f) = kb;
3737 #endif
3738 f->output_data.mac->parent_desc = FRAME_MAC_DISPLAY_INFO (f)->root_window;
3739 f->output_data.mac->explicit_parent = 0;
3740
3741 /* Set the name; the functions to which we pass f expect the name to
3742 be set. */
3743 if (EQ (name, Qunbound) || NILP (name))
3744 {
3745 f->name = build_string (dpyinfo->mac_id_name);
3746 f->explicit_name = 0;
3747 }
3748 else
3749 {
3750 f->name = name;
3751 f->explicit_name = 1;
3752 /* use the frame's title when getting resources for this frame. */
3753 specbind (Qx_resource_name, name);
3754 }
3755
3756 /* Extract the window parameters from the supplied values that are
3757 needed to determine window geometry. */
3758 {
3759 Lisp_Object font;
3760
3761 font = mac_get_arg (parms, Qfont, "font", "Font", RES_TYPE_STRING);
3762
3763 BLOCK_INPUT;
3764 /* First, try whatever font the caller has specified. */
3765 if (STRINGP (font))
3766 {
3767 tem = Fquery_fontset (font, Qnil);
3768 if (STRINGP (tem))
3769 font = x_new_fontset (f, SDATA (tem));
3770 else
3771 font = x_new_font (f, SDATA (font));
3772 }
3773
3774 /* Try out a font which we hope has bold and italic variations. */
3775 if (! STRINGP (font))
3776 font = x_new_font (f, "-ETL-fixed-medium-r-*--*-160-*-*-*-*-iso8859-1");
3777 /* If those didn't work, look for something which will at least work. */
3778 if (! STRINGP (font))
3779 font = x_new_font (f, "-*-monaco-*-12-*-mac-roman");
3780 if (! STRINGP (font))
3781 font = x_new_font (f, "-*-courier-*-10-*-mac-roman");
3782 UNBLOCK_INPUT;
3783 if (! STRINGP (font))
3784 error ("Cannot find any usable font");
3785
3786 x_default_parameter (f, parms, Qfont, font,
3787 "font", "Font", RES_TYPE_STRING);
3788 }
3789
3790 x_default_parameter (f, parms, Qborder_width, make_number (2),
3791 "borderWidth", "BorderWidth", RES_TYPE_NUMBER);
3792
3793 /* This defaults to 2 in order to match xterm. We recognize either
3794 internalBorderWidth or internalBorder (which is what xterm calls
3795 it). */
3796 if (NILP (Fassq (Qinternal_border_width, parms)))
3797 {
3798 Lisp_Object value;
3799
3800 value = mac_get_arg (parms, Qinternal_border_width,
3801 "internalBorder", "internalBorder", RES_TYPE_NUMBER);
3802 if (! EQ (value, Qunbound))
3803 parms = Fcons (Fcons (Qinternal_border_width, value),
3804 parms);
3805 }
3806
3807 x_default_parameter (f, parms, Qinternal_border_width, make_number (1),
3808 "internalBorderWidth", "internalBorderWidth",
3809 RES_TYPE_NUMBER);
3810
3811 /* Also do the stuff which must be set before the window exists. */
3812 x_default_parameter (f, parms, Qforeground_color, build_string ("black"),
3813 "foreground", "Foreground", RES_TYPE_STRING);
3814 x_default_parameter (f, parms, Qbackground_color, build_string ("white"),
3815 "background", "Background", RES_TYPE_STRING);
3816 x_default_parameter (f, parms, Qmouse_color, build_string ("black"),
3817 "pointerColor", "Foreground", RES_TYPE_STRING);
3818 x_default_parameter (f, parms, Qcursor_color, build_string ("black"),
3819 "cursorColor", "Foreground", RES_TYPE_STRING);
3820 x_default_parameter (f, parms, Qborder_color, build_string ("black"),
3821 "borderColor", "BorderColor", RES_TYPE_STRING);
3822
3823 /* Init faces before x_default_parameter is called for scroll-bar
3824 parameters because that function calls x_set_scroll_bar_width,
3825 which calls change_frame_size, which calls Fset_window_buffer,
3826 which runs hooks, which call Fvertical_motion. At the end, we
3827 end up in init_iterator with a null face cache, which should not
3828 happen. */
3829 init_frame_faces (f);
3830
3831 f->output_data.mac->parent_desc = FRAME_MAC_DISPLAY_INFO (f)->root_window;
3832
3833 window_prompting = x_figure_window_size (f, parms, 0);
3834
3835 {
3836 Rect r;
3837
3838 BLOCK_INPUT;
3839 SetRect (&r, 0, 0, 1, 1);
3840 #if TARGET_API_MAC_CARBON
3841 if (CreateNewWindow (kHelpWindowClass,
3842 #ifdef MAC_OS_X_VERSION_10_2
3843 kWindowIgnoreClicksAttribute |
3844 #endif
3845 kWindowNoUpdatesAttribute |
3846 kWindowNoActivatesAttribute,
3847 &r, &tip_window) == noErr)
3848 #else
3849 if (tip_window = NewCWindow (NULL, &r, "\p", false, plainDBox,
3850 NULL, false, 0L))
3851 #endif
3852 {
3853 FRAME_MAC_WINDOW (f) = tip_window;
3854 SetWRefCon (tip_window, (long) f->output_data.mac);
3855 /* so that update events can find this mac_output struct */
3856 f->output_data.mac->mFP = f;
3857 }
3858 UNBLOCK_INPUT;
3859 }
3860
3861 x_make_gc (f);
3862
3863 x_default_parameter (f, parms, Qauto_raise, Qnil,
3864 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN);
3865 x_default_parameter (f, parms, Qauto_lower, Qnil,
3866 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN);
3867 x_default_parameter (f, parms, Qcursor_type, Qbox,
3868 "cursorType", "CursorType", RES_TYPE_SYMBOL);
3869
3870 /* Dimensions, especially FRAME_LINES (f), must be done via change_frame_size.
3871 Change will not be effected unless different from the current
3872 FRAME_LINES (f). */
3873 width = FRAME_COLS (f);
3874 height = FRAME_LINES (f);
3875 SET_FRAME_COLS (f, 0);
3876 FRAME_LINES (f) = 0;
3877 change_frame_size (f, height, width, 1, 0, 0);
3878
3879 /* Add `tooltip' frame parameter's default value. */
3880 if (NILP (Fframe_parameter (frame, intern ("tooltip"))))
3881 Fmodify_frame_parameters (frame, Fcons (Fcons (intern ("tooltip"), Qt),
3882 Qnil));
3883
3884 /* Set up faces after all frame parameters are known. This call
3885 also merges in face attributes specified for new frames.
3886
3887 Frame parameters may be changed if .Xdefaults contains
3888 specifications for the default font. For example, if there is an
3889 `Emacs.default.attributeBackground: pink', the `background-color'
3890 attribute of the frame get's set, which let's the internal border
3891 of the tooltip frame appear in pink. Prevent this. */
3892 {
3893 Lisp_Object bg = Fframe_parameter (frame, Qbackground_color);
3894
3895 /* Set tip_frame here, so that */
3896 tip_frame = frame;
3897 call1 (Qface_set_after_frame_default, frame);
3898
3899 if (!EQ (bg, Fframe_parameter (frame, Qbackground_color)))
3900 Fmodify_frame_parameters (frame, Fcons (Fcons (Qbackground_color, bg),
3901 Qnil));
3902 }
3903
3904 f->no_split = 1;
3905
3906 UNGCPRO;
3907
3908 /* It is now ok to make the frame official even if we get an error
3909 below. And the frame needs to be on Vframe_list or making it
3910 visible won't work. */
3911 Vframe_list = Fcons (frame, Vframe_list);
3912
3913 /* Now that the frame is official, it counts as a reference to
3914 its display. */
3915 FRAME_MAC_DISPLAY_INFO (f)->reference_count++;
3916
3917 /* Setting attributes of faces of the tooltip frame from resources
3918 and similar will increment face_change_count, which leads to the
3919 clearing of all current matrices. Since this isn't necessary
3920 here, avoid it by resetting face_change_count to the value it
3921 had before we created the tip frame. */
3922 face_change_count = face_change_count_before;
3923
3924 /* Discard the unwind_protect. */
3925 return unbind_to (count, frame);
3926 }
3927
3928
3929 /* Compute where to display tip frame F. PARMS is the list of frame
3930 parameters for F. DX and DY are specified offsets from the current
3931 location of the mouse. WIDTH and HEIGHT are the width and height
3932 of the tooltip. Return coordinates relative to the root window of
3933 the display in *ROOT_X, and *ROOT_Y. */
3934
3935 static void
3936 compute_tip_xy (f, parms, dx, dy, width, height, root_x, root_y)
3937 struct frame *f;
3938 Lisp_Object parms, dx, dy;
3939 int width, height;
3940 int *root_x, *root_y;
3941 {
3942 Lisp_Object left, top;
3943
3944 /* User-specified position? */
3945 left = Fcdr (Fassq (Qleft, parms));
3946 top = Fcdr (Fassq (Qtop, parms));
3947
3948 /* Move the tooltip window where the mouse pointer is. Resize and
3949 show it. */
3950 if (!INTEGERP (left) || !INTEGERP (top))
3951 {
3952 Point mouse_pos;
3953
3954 BLOCK_INPUT;
3955 GetMouse (&mouse_pos);
3956 LocalToGlobal (&mouse_pos);
3957 *root_x = mouse_pos.h;
3958 *root_y = mouse_pos.v;
3959 UNBLOCK_INPUT;
3960 }
3961
3962 if (INTEGERP (top))
3963 *root_y = XINT (top);
3964 else if (*root_y + XINT (dy) - height < 0)
3965 *root_y -= XINT (dy);
3966 else
3967 {
3968 *root_y -= height;
3969 *root_y += XINT (dy);
3970 }
3971
3972 if (INTEGERP (left))
3973 *root_x = XINT (left);
3974 else if (*root_x + XINT (dx) + width <= FRAME_MAC_DISPLAY_INFO (f)->width)
3975 /* It fits to the right of the pointer. */
3976 *root_x += XINT (dx);
3977 else if (width + XINT (dx) <= *root_x)
3978 /* It fits to the left of the pointer. */
3979 *root_x -= width + XINT (dx);
3980 else
3981 /* Put it left-justified on the screen -- it ought to fit that way. */
3982 *root_x = 0;
3983 }
3984
3985
3986 DEFUN ("x-show-tip", Fx_show_tip, Sx_show_tip, 1, 6, 0,
3987 doc: /* Show STRING in a "tooltip" window on frame FRAME.
3988 A tooltip window is a small X window displaying a string.
3989
3990 FRAME nil or omitted means use the selected frame.
3991
3992 PARMS is an optional list of frame parameters which can be used to
3993 change the tooltip's appearance.
3994
3995 Automatically hide the tooltip after TIMEOUT seconds. TIMEOUT nil
3996 means use the default timeout of 5 seconds.
3997
3998 If the list of frame parameters PARAMS contains a `left' parameters,
3999 the tooltip is displayed at that x-position. Otherwise it is
4000 displayed at the mouse position, with offset DX added (default is 5 if
4001 DX isn't specified). Likewise for the y-position; if a `top' frame
4002 parameter is specified, it determines the y-position of the tooltip
4003 window, otherwise it is displayed at the mouse position, with offset
4004 DY added (default is -10).
4005
4006 A tooltip's maximum size is specified by `x-max-tooltip-size'.
4007 Text larger than the specified size is clipped. */)
4008 (string, frame, parms, timeout, dx, dy)
4009 Lisp_Object string, frame, parms, timeout, dx, dy;
4010 {
4011 struct frame *f;
4012 struct window *w;
4013 int root_x, root_y;
4014 struct buffer *old_buffer;
4015 struct text_pos pos;
4016 int i, width, height;
4017 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
4018 int old_windows_or_buffers_changed = windows_or_buffers_changed;
4019 int count = SPECPDL_INDEX ();
4020
4021 specbind (Qinhibit_redisplay, Qt);
4022
4023 GCPRO4 (string, parms, frame, timeout);
4024
4025 CHECK_STRING (string);
4026 f = check_x_frame (frame);
4027 if (NILP (timeout))
4028 timeout = make_number (5);
4029 else
4030 CHECK_NATNUM (timeout);
4031
4032 if (NILP (dx))
4033 dx = make_number (5);
4034 else
4035 CHECK_NUMBER (dx);
4036
4037 if (NILP (dy))
4038 dy = make_number (-10);
4039 else
4040 CHECK_NUMBER (dy);
4041
4042 if (NILP (last_show_tip_args))
4043 last_show_tip_args = Fmake_vector (make_number (3), Qnil);
4044
4045 if (!NILP (tip_frame))
4046 {
4047 Lisp_Object last_string = AREF (last_show_tip_args, 0);
4048 Lisp_Object last_frame = AREF (last_show_tip_args, 1);
4049 Lisp_Object last_parms = AREF (last_show_tip_args, 2);
4050
4051 if (EQ (frame, last_frame)
4052 && !NILP (Fequal (last_string, string))
4053 && !NILP (Fequal (last_parms, parms)))
4054 {
4055 struct frame *f = XFRAME (tip_frame);
4056
4057 /* Only DX and DY have changed. */
4058 if (!NILP (tip_timer))
4059 {
4060 Lisp_Object timer = tip_timer;
4061 tip_timer = Qnil;
4062 call1 (Qcancel_timer, timer);
4063 }
4064
4065 BLOCK_INPUT;
4066 compute_tip_xy (f, parms, dx, dy, FRAME_PIXEL_WIDTH (f),
4067 FRAME_PIXEL_HEIGHT (f), &root_x, &root_y);
4068 MoveWindow (FRAME_MAC_WINDOW (f), root_x, root_y, false);
4069 UNBLOCK_INPUT;
4070 goto start_timer;
4071 }
4072 }
4073
4074 /* Hide a previous tip, if any. */
4075 Fx_hide_tip ();
4076
4077 ASET (last_show_tip_args, 0, string);
4078 ASET (last_show_tip_args, 1, frame);
4079 ASET (last_show_tip_args, 2, parms);
4080
4081 /* Add default values to frame parameters. */
4082 if (NILP (Fassq (Qname, parms)))
4083 parms = Fcons (Fcons (Qname, build_string ("tooltip")), parms);
4084 if (NILP (Fassq (Qinternal_border_width, parms)))
4085 parms = Fcons (Fcons (Qinternal_border_width, make_number (3)), parms);
4086 if (NILP (Fassq (Qborder_width, parms)))
4087 parms = Fcons (Fcons (Qborder_width, make_number (1)), parms);
4088 if (NILP (Fassq (Qborder_color, parms)))
4089 parms = Fcons (Fcons (Qborder_color, build_string ("lightyellow")), parms);
4090 if (NILP (Fassq (Qbackground_color, parms)))
4091 parms = Fcons (Fcons (Qbackground_color, build_string ("lightyellow")),
4092 parms);
4093
4094 /* Create a frame for the tooltip, and record it in the global
4095 variable tip_frame. */
4096 frame = x_create_tip_frame (FRAME_MAC_DISPLAY_INFO (f), parms, string);
4097 f = XFRAME (frame);
4098
4099 /* Set up the frame's root window. */
4100 w = XWINDOW (FRAME_ROOT_WINDOW (f));
4101 w->left_col = w->top_line = make_number (0);
4102
4103 if (CONSP (Vx_max_tooltip_size)
4104 && INTEGERP (XCAR (Vx_max_tooltip_size))
4105 && XINT (XCAR (Vx_max_tooltip_size)) > 0
4106 && INTEGERP (XCDR (Vx_max_tooltip_size))
4107 && XINT (XCDR (Vx_max_tooltip_size)) > 0)
4108 {
4109 w->total_cols = XCAR (Vx_max_tooltip_size);
4110 w->total_lines = XCDR (Vx_max_tooltip_size);
4111 }
4112 else
4113 {
4114 w->total_cols = make_number (80);
4115 w->total_lines = make_number (40);
4116 }
4117
4118 FRAME_TOTAL_COLS (f) = XINT (w->total_cols);
4119 adjust_glyphs (f);
4120 w->pseudo_window_p = 1;
4121
4122 /* Display the tooltip text in a temporary buffer. */
4123 old_buffer = current_buffer;
4124 set_buffer_internal_1 (XBUFFER (XWINDOW (FRAME_ROOT_WINDOW (f))->buffer));
4125 current_buffer->truncate_lines = Qnil;
4126 clear_glyph_matrix (w->desired_matrix);
4127 clear_glyph_matrix (w->current_matrix);
4128 SET_TEXT_POS (pos, BEGV, BEGV_BYTE);
4129 try_window (FRAME_ROOT_WINDOW (f), pos);
4130
4131 /* Compute width and height of the tooltip. */
4132 width = height = 0;
4133 for (i = 0; i < w->desired_matrix->nrows; ++i)
4134 {
4135 struct glyph_row *row = &w->desired_matrix->rows[i];
4136 struct glyph *last;
4137 int row_width;
4138
4139 /* Stop at the first empty row at the end. */
4140 if (!row->enabled_p || !row->displays_text_p)
4141 break;
4142
4143 /* Let the row go over the full width of the frame. */
4144 row->full_width_p = 1;
4145
4146 /* There's a glyph at the end of rows that is used to place
4147 the cursor there. Don't include the width of this glyph. */
4148 if (row->used[TEXT_AREA])
4149 {
4150 last = &row->glyphs[TEXT_AREA][row->used[TEXT_AREA] - 1];
4151 row_width = row->pixel_width - last->pixel_width;
4152 }
4153 else
4154 row_width = row->pixel_width;
4155
4156 height += row->height;
4157 width = max (width, row_width);
4158 }
4159
4160 /* Add the frame's internal border to the width and height the X
4161 window should have. */
4162 height += 2 * FRAME_INTERNAL_BORDER_WIDTH (f);
4163 width += 2 * FRAME_INTERNAL_BORDER_WIDTH (f);
4164
4165 /* Move the tooltip window where the mouse pointer is. Resize and
4166 show it. */
4167 compute_tip_xy (f, parms, dx, dy, width, height, &root_x, &root_y);
4168
4169 BLOCK_INPUT;
4170 MoveWindow (FRAME_MAC_WINDOW (f), root_x, root_y, false);
4171 SizeWindow (FRAME_MAC_WINDOW (f), width, height, true);
4172 ShowWindow (FRAME_MAC_WINDOW (f));
4173 BringToFront (FRAME_MAC_WINDOW (f));
4174 UNBLOCK_INPUT;
4175
4176 /* Draw into the window. */
4177 w->must_be_updated_p = 1;
4178 update_single_window (w, 1);
4179
4180 /* Restore original current buffer. */
4181 set_buffer_internal_1 (old_buffer);
4182 windows_or_buffers_changed = old_windows_or_buffers_changed;
4183
4184 start_timer:
4185 /* Let the tip disappear after timeout seconds. */
4186 tip_timer = call3 (intern ("run-at-time"), timeout, Qnil,
4187 intern ("x-hide-tip"));
4188
4189 UNGCPRO;
4190 return unbind_to (count, Qnil);
4191 }
4192
4193
4194 DEFUN ("x-hide-tip", Fx_hide_tip, Sx_hide_tip, 0, 0, 0,
4195 doc: /* Hide the current tooltip window, if there is any.
4196 Value is t if tooltip was open, nil otherwise. */)
4197 ()
4198 {
4199 int count;
4200 Lisp_Object deleted, frame, timer;
4201 struct gcpro gcpro1, gcpro2;
4202
4203 /* Return quickly if nothing to do. */
4204 if (NILP (tip_timer) && NILP (tip_frame))
4205 return Qnil;
4206
4207 frame = tip_frame;
4208 timer = tip_timer;
4209 GCPRO2 (frame, timer);
4210 tip_frame = tip_timer = deleted = Qnil;
4211
4212 count = SPECPDL_INDEX ();
4213 specbind (Qinhibit_redisplay, Qt);
4214 specbind (Qinhibit_quit, Qt);
4215
4216 if (!NILP (timer))
4217 call1 (Qcancel_timer, timer);
4218
4219 if (FRAMEP (frame))
4220 {
4221 Fdelete_frame (frame, Qnil);
4222 deleted = Qt;
4223 }
4224
4225 UNGCPRO;
4226 return unbind_to (count, deleted);
4227 }
4228
4229
4230 \f
4231 #if TARGET_API_MAC_CARBON
4232 /***********************************************************************
4233 File selection dialog
4234 ***********************************************************************/
4235
4236 /**
4237 There is a relatively standard way to do this using applescript to run
4238 a (choose file) method. However, this doesn't do "the right thing"
4239 by working only if the find-file occurred during a menu or toolbar
4240 click. So we must do the file dialog by hand, using the navigation
4241 manager. This also has more flexibility in determining the default
4242 directory and whether or not we are going to choose a file.
4243 **/
4244
4245 extern Lisp_Object Qfile_name_history;
4246
4247 DEFUN ("x-file-dialog", Fx_file_dialog, Sx_file_dialog, 2, 5, 0,
4248 doc: /* Read file name, prompting with PROMPT in directory DIR.
4249 Use a file selection dialog.
4250 Select DEFAULT-FILENAME in the dialog's file selection box, if
4251 specified. Ensure that file exists if MUSTMATCH is non-nil.
4252 If ONLY-DIR-P is non-nil, the user can only select directories. */)
4253 (prompt, dir, default_filename, mustmatch, only_dir_p)
4254 Lisp_Object prompt, dir, default_filename, mustmatch, only_dir_p;
4255 {
4256 struct frame *f = SELECTED_FRAME ();
4257 Lisp_Object file = Qnil;
4258 int count = SPECPDL_INDEX ();
4259 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5, gcpro6;
4260 char filename[1001];
4261 int default_filter_index = 1; /* 1: All Files, 2: Directories only */
4262
4263 GCPRO6 (prompt, dir, default_filename, mustmatch, file, only_dir_p);
4264 CHECK_STRING (prompt);
4265 CHECK_STRING (dir);
4266
4267 /* Create the dialog with PROMPT as title, using DIR as initial
4268 directory and using "*" as pattern. */
4269 dir = Fexpand_file_name (dir, Qnil);
4270
4271 {
4272 OSStatus status;
4273 NavDialogCreationOptions options;
4274 NavDialogRef dialogRef;
4275 NavTypeListHandle fileTypes = NULL;
4276 NavUserAction userAction;
4277 CFStringRef message=NULL, saveName = NULL;
4278
4279 BLOCK_INPUT;
4280 /* No need for a callback function because we are modal */
4281 NavGetDefaultDialogCreationOptions(&options);
4282 options.modality = kWindowModalityAppModal;
4283 options.location.h = options.location.v = -1;
4284 options.optionFlags = kNavDefaultNavDlogOptions;
4285 options.optionFlags |= kNavAllFilesInPopup; /* All files allowed */
4286 options.optionFlags |= kNavSelectAllReadableItem;
4287 if (!NILP(prompt))
4288 {
4289 message = cfstring_create_with_utf8_cstring (SDATA (prompt));
4290 options.message = message;
4291 }
4292 /* Don't set the application, let it use default.
4293 options.clientName = CFSTR ("Emacs");
4294 */
4295
4296 if (!NILP (only_dir_p))
4297 status = NavCreateChooseFolderDialog(&options, NULL, NULL, NULL,
4298 &dialogRef);
4299 else if (NILP (mustmatch))
4300 {
4301 /* This is a save dialog */
4302 options.optionFlags |= kNavDontConfirmReplacement;
4303 options.actionButtonLabel = CFSTR ("Ok");
4304 options.windowTitle = CFSTR ("Enter name");
4305
4306 if (!NILP(default_filename))
4307 {
4308 saveName =
4309 cfstring_create_with_utf8_cstring (SDATA (default_filename));
4310 options.saveFileName = saveName;
4311 options.optionFlags |= kNavSelectDefaultLocation;
4312 }
4313 status = NavCreatePutFileDialog(&options,
4314 'TEXT', kNavGenericSignature,
4315 NULL, NULL, &dialogRef);
4316 }
4317 else
4318 {
4319 /* This is an open dialog*/
4320 status = NavCreateChooseFileDialog(&options, fileTypes,
4321 NULL, NULL, NULL, NULL,
4322 &dialogRef);
4323 }
4324
4325 /* Set the default location and continue*/
4326 if (status == noErr) {
4327 if (!NILP(dir)) {
4328 FSRef defLoc;
4329 AEDesc defLocAed;
4330 status = FSPathMakeRef(SDATA(dir), &defLoc, NULL);
4331 if (status == noErr)
4332 {
4333 AECreateDesc(typeFSRef, &defLoc, sizeof(FSRef), &defLocAed);
4334 NavCustomControl(dialogRef, kNavCtlSetLocation, (void*) &defLocAed);
4335 }
4336 AEDisposeDesc(&defLocAed);
4337 }
4338
4339 status = NavDialogRun(dialogRef);
4340 }
4341
4342 if (saveName) CFRelease(saveName);
4343 if (message) CFRelease(message);
4344
4345 if (status == noErr) {
4346 userAction = NavDialogGetUserAction(dialogRef);
4347 switch (userAction)
4348 {
4349 case kNavUserActionNone:
4350 case kNavUserActionCancel:
4351 break; /* Treat cancel like C-g */
4352 case kNavUserActionOpen:
4353 case kNavUserActionChoose:
4354 case kNavUserActionSaveAs:
4355 {
4356 NavReplyRecord reply;
4357 AEDesc aed;
4358 FSRef fsRef;
4359 status = NavDialogGetReply(dialogRef, &reply);
4360 AECoerceDesc(&reply.selection, typeFSRef, &aed);
4361 AEGetDescData(&aed, (void *) &fsRef, sizeof (FSRef));
4362 FSRefMakePath(&fsRef, (UInt8 *) filename, 1000);
4363 AEDisposeDesc(&aed);
4364 if (reply.saveFileName)
4365 {
4366 /* If it was a saved file, we need to add the file name */
4367 int len = strlen(filename);
4368 if (len && filename[len-1] != '/')
4369 filename[len++] = '/';
4370 CFStringGetCString(reply.saveFileName, filename+len,
4371 1000-len, kCFStringEncodingUTF8);
4372 }
4373 file = DECODE_FILE(build_string (filename));
4374 NavDisposeReply(&reply);
4375 }
4376 break;
4377 }
4378 NavDialogDispose(dialogRef);
4379 }
4380 else {
4381 /* Fall back on minibuffer if there was a problem */
4382 file = Fcompleting_read (prompt, intern ("read-file-name-internal"),
4383 dir, mustmatch, dir, Qfile_name_history,
4384 default_filename, Qnil);
4385 }
4386 UNBLOCK_INPUT;
4387 }
4388
4389 UNGCPRO;
4390
4391 /* Make "Cancel" equivalent to C-g. */
4392 if (NILP (file))
4393 Fsignal (Qquit, Qnil);
4394
4395 return unbind_to (count, file);
4396 }
4397
4398
4399 #endif
4400 \f
4401 /***********************************************************************
4402 Initialization
4403 ***********************************************************************/
4404
4405 /* Keep this list in the same order as frame_parms in frame.c.
4406 Use 0 for unsupported frame parameters. */
4407
4408 frame_parm_handler mac_frame_parm_handlers[] =
4409 {
4410 x_set_autoraise,
4411 x_set_autolower,
4412 x_set_background_color,
4413 x_set_border_color,
4414 x_set_border_width,
4415 x_set_cursor_color,
4416 x_set_cursor_type,
4417 x_set_font,
4418 x_set_foreground_color,
4419 x_set_icon_name,
4420 0, /* MAC_TODO: x_set_icon_type, */
4421 x_set_internal_border_width,
4422 x_set_menu_bar_lines,
4423 x_set_mouse_color,
4424 x_explicitly_set_name,
4425 x_set_scroll_bar_width,
4426 x_set_title,
4427 x_set_unsplittable,
4428 x_set_vertical_scroll_bars,
4429 x_set_visibility,
4430 x_set_tool_bar_lines,
4431 0, /* MAC_TODO: x_set_scroll_bar_foreground, */
4432 0, /* MAC_TODO: x_set_scroll_bar_background, */
4433 x_set_screen_gamma,
4434 x_set_line_spacing,
4435 x_set_fringe_width,
4436 x_set_fringe_width,
4437 0, /* x_set_wait_for_wm, */
4438 x_set_fullscreen,
4439 };
4440
4441 void
4442 syms_of_macfns ()
4443 {
4444 #ifdef MAC_OSX
4445 /* This is zero if not using Mac native windows. */
4446 mac_in_use = 0;
4447 #else
4448 /* Certainly running on Mac native windows. */
4449 mac_in_use = 1;
4450 #endif
4451
4452 /* The section below is built by the lisp expression at the top of the file,
4453 just above where these variables are declared. */
4454 /*&&& init symbols here &&&*/
4455 Qnone = intern ("none");
4456 staticpro (&Qnone);
4457 Qsuppress_icon = intern ("suppress-icon");
4458 staticpro (&Qsuppress_icon);
4459 Qundefined_color = intern ("undefined-color");
4460 staticpro (&Qundefined_color);
4461 Qcancel_timer = intern ("cancel-timer");
4462 staticpro (&Qcancel_timer);
4463
4464 Qhyper = intern ("hyper");
4465 staticpro (&Qhyper);
4466 Qsuper = intern ("super");
4467 staticpro (&Qsuper);
4468 Qmeta = intern ("meta");
4469 staticpro (&Qmeta);
4470 Qalt = intern ("alt");
4471 staticpro (&Qalt);
4472 Qctrl = intern ("ctrl");
4473 staticpro (&Qctrl);
4474 Qcontrol = intern ("control");
4475 staticpro (&Qcontrol);
4476 Qshift = intern ("shift");
4477 staticpro (&Qshift);
4478 /* This is the end of symbol initialization. */
4479
4480 /* Text property `display' should be nonsticky by default. */
4481 Vtext_property_default_nonsticky
4482 = Fcons (Fcons (Qdisplay, Qt), Vtext_property_default_nonsticky);
4483
4484 Qface_set_after_frame_default = intern ("face-set-after-frame-default");
4485 staticpro (&Qface_set_after_frame_default);
4486
4487 Fput (Qundefined_color, Qerror_conditions,
4488 Fcons (Qundefined_color, Fcons (Qerror, Qnil)));
4489 Fput (Qundefined_color, Qerror_message,
4490 build_string ("Undefined color"));
4491
4492 DEFVAR_LISP ("x-pointer-shape", &Vx_pointer_shape,
4493 doc: /* The shape of the pointer when over text.
4494 Changing the value does not affect existing frames
4495 unless you set the mouse color. */);
4496 Vx_pointer_shape = Qnil;
4497
4498 Vx_nontext_pointer_shape = Qnil;
4499
4500 Vx_mode_pointer_shape = Qnil;
4501
4502 DEFVAR_LISP ("x-hourglass-pointer-shape", &Vx_hourglass_pointer_shape,
4503 doc: /* The shape of the pointer when Emacs is hourglass.
4504 This variable takes effect when you create a new frame
4505 or when you set the mouse color. */);
4506 Vx_hourglass_pointer_shape = Qnil;
4507
4508 DEFVAR_BOOL ("display-hourglass", &display_hourglass_p,
4509 doc: /* Non-zero means Emacs displays an hourglass pointer on window systems. */);
4510 display_hourglass_p = 1;
4511
4512 DEFVAR_LISP ("hourglass-delay", &Vhourglass_delay,
4513 doc: /* *Seconds to wait before displaying an hourglass pointer.
4514 Value must be an integer or float. */);
4515 Vhourglass_delay = make_number (DEFAULT_HOURGLASS_DELAY);
4516
4517 DEFVAR_LISP ("x-sensitive-text-pointer-shape",
4518 &Vx_sensitive_text_pointer_shape,
4519 doc: /* The shape of the pointer when over mouse-sensitive text.
4520 This variable takes effect when you create a new frame
4521 or when you set the mouse color. */);
4522 Vx_sensitive_text_pointer_shape = Qnil;
4523
4524 DEFVAR_LISP ("x-cursor-fore-pixel", &Vx_cursor_fore_pixel,
4525 doc: /* A string indicating the foreground color of the cursor box. */);
4526 Vx_cursor_fore_pixel = Qnil;
4527
4528 DEFVAR_LISP ("x-max-tooltip-size", &Vx_max_tooltip_size,
4529 doc: /* Maximum size for tooltips. Value is a pair (COLUMNS . ROWS).
4530 Text larger than this is clipped. */);
4531 Vx_max_tooltip_size = Fcons (make_number (80), make_number (40));
4532
4533 DEFVAR_LISP ("x-no-window-manager", &Vx_no_window_manager,
4534 doc: /* Non-nil if no window manager is in use.
4535 Emacs doesn't try to figure this out; this is always nil
4536 unless you set it to something else. */);
4537 /* We don't have any way to find this out, so set it to nil
4538 and maybe the user would like to set it to t. */
4539 Vx_no_window_manager = Qnil;
4540
4541 DEFVAR_LISP ("x-pixel-size-width-font-regexp",
4542 &Vx_pixel_size_width_font_regexp,
4543 doc: /* Regexp matching a font name whose width is the same as `PIXEL_SIZE'.
4544
4545 Since Emacs gets width of a font matching with this regexp from
4546 PIXEL_SIZE field of the name, font finding mechanism gets faster for
4547 such a font. This is especially effective for such large fonts as
4548 Chinese, Japanese, and Korean. */);
4549 Vx_pixel_size_width_font_regexp = Qnil;
4550
4551 /* X window properties. */
4552 defsubr (&Sx_change_window_property);
4553 defsubr (&Sx_delete_window_property);
4554 defsubr (&Sx_window_property);
4555
4556 defsubr (&Sxw_display_color_p);
4557 defsubr (&Sx_display_grayscale_p);
4558 defsubr (&Sxw_color_defined_p);
4559 defsubr (&Sxw_color_values);
4560 defsubr (&Sx_server_max_request_size);
4561 defsubr (&Sx_server_vendor);
4562 defsubr (&Sx_server_version);
4563 defsubr (&Sx_display_pixel_width);
4564 defsubr (&Sx_display_pixel_height);
4565 defsubr (&Sx_display_mm_width);
4566 defsubr (&Sx_display_mm_height);
4567 defsubr (&Sx_display_screens);
4568 defsubr (&Sx_display_planes);
4569 defsubr (&Sx_display_color_cells);
4570 defsubr (&Sx_display_visual_class);
4571 defsubr (&Sx_display_backing_store);
4572 defsubr (&Sx_display_save_under);
4573 defsubr (&Sx_create_frame);
4574 defsubr (&Sx_open_connection);
4575 defsubr (&Sx_close_connection);
4576 defsubr (&Sx_display_list);
4577 defsubr (&Sx_synchronize);
4578
4579 /* Setting callback functions for fontset handler. */
4580 get_font_info_func = x_get_font_info;
4581
4582 #if 0 /* This function pointer doesn't seem to be used anywhere.
4583 And the pointer assigned has the wrong type, anyway. */
4584 list_fonts_func = x_list_fonts;
4585 #endif
4586
4587 load_font_func = x_load_font;
4588 find_ccl_program_func = x_find_ccl_program;
4589 query_font_func = x_query_font;
4590 set_frame_fontset_func = x_set_font;
4591 check_window_system_func = check_mac;
4592
4593 hourglass_atimer = NULL;
4594 hourglass_shown_p = 0;
4595
4596 defsubr (&Sx_show_tip);
4597 defsubr (&Sx_hide_tip);
4598 tip_timer = Qnil;
4599 staticpro (&tip_timer);
4600 tip_frame = Qnil;
4601 staticpro (&tip_frame);
4602
4603 last_show_tip_args = Qnil;
4604 staticpro (&last_show_tip_args);
4605
4606 #if TARGET_API_MAC_CARBON
4607 defsubr (&Sx_file_dialog);
4608 #endif
4609 }
4610
4611 /* arch-tag: d7591289-f374-4377-b245-12f5dbbb8edc
4612 (do not change this comment) */