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