]> code.delx.au - gnu-emacs/blob - src/macterm.c
(mac_per_char_metric): Add prototype.
[gnu-emacs] / src / macterm.c
1 /* Implementation of GUI terminal on the Mac OS.
2 Copyright (C) 2000, 2001, 2002, 2003, 2004,
3 2005 Free Software Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
21
22 /* Contributed by Andrew Choi (akochoi@mac.com). */
23
24 #include <config.h>
25 #include <signal.h>
26
27 #include <stdio.h>
28
29 #include "lisp.h"
30 #include "blockinput.h"
31
32 #include "macterm.h"
33
34 #ifndef MAC_OSX
35 #include <alloca.h>
36 #endif
37
38 #if TARGET_API_MAC_CARBON
39 /* USE_CARBON_EVENTS determines if the Carbon Event Manager is used to
40 obtain events from the event queue. If set to 0, WaitNextEvent is
41 used instead. */
42 #define USE_CARBON_EVENTS 1
43 #else /* not TARGET_API_MAC_CARBON */
44 #include <Quickdraw.h>
45 #include <ToolUtils.h>
46 #include <Sound.h>
47 #include <Events.h>
48 #include <Script.h>
49 #include <Resources.h>
50 #include <Fonts.h>
51 #include <TextUtils.h>
52 #include <LowMem.h>
53 #include <Controls.h>
54 #include <Windows.h>
55 #if defined (__MRC__) || (__MSL__ >= 0x6000)
56 #include <ControlDefinitions.h>
57 #endif
58
59 #if __profile__
60 #include <profiler.h>
61 #endif
62 #endif /* not TARGET_API_MAC_CARBON */
63
64 #include "systty.h"
65 #include "systime.h"
66
67 #include <ctype.h>
68 #include <errno.h>
69 #include <setjmp.h>
70 #include <sys/stat.h>
71 #include <sys/param.h>
72
73 #include "charset.h"
74 #include "coding.h"
75 #include "frame.h"
76 #include "dispextern.h"
77 #include "fontset.h"
78 #include "termhooks.h"
79 #include "termopts.h"
80 #include "termchar.h"
81 #include "gnu.h"
82 #include "disptab.h"
83 #include "buffer.h"
84 #include "window.h"
85 #include "keyboard.h"
86 #include "intervals.h"
87 #include "atimer.h"
88 #include "keymap.h"
89
90 \f
91
92 /* Non-nil means Emacs uses toolkit scroll bars. */
93
94 Lisp_Object Vx_toolkit_scroll_bars;
95
96 /* If non-zero, the text will be rendered using Core Graphics text
97 rendering which may anti-alias the text. */
98 int mac_use_core_graphics;
99
100
101 /* Non-zero means that a HELP_EVENT has been generated since Emacs
102 start. */
103
104 static int any_help_event_p;
105
106 /* Last window where we saw the mouse. Used by mouse-autoselect-window. */
107 static Lisp_Object last_window;
108
109 /* Non-zero means make use of UNDERLINE_POSITION font properties.
110 (Not yet supported.) */
111 int x_use_underline_position_properties;
112
113 /* This is a chain of structures for all the X displays currently in
114 use. */
115
116 struct x_display_info *x_display_list;
117
118 /* This is a list of cons cells, each of the form (NAME
119 FONT-LIST-CACHE . RESOURCE-DATABASE), one for each element of
120 x_display_list and in the same order. NAME is the name of the
121 frame. FONT-LIST-CACHE records previous values returned by
122 x-list-fonts. RESOURCE-DATABASE preserves the X Resource Database
123 equivalent, which is implemented with a Lisp object, for the
124 display. */
125
126 Lisp_Object x_display_name_list;
127
128 /* This is display since Mac does not support multiple ones. */
129 struct mac_display_info one_mac_display_info;
130
131 /* Frame being updated by update_frame. This is declared in term.c.
132 This is set by update_begin and looked at by all the XT functions.
133 It is zero while not inside an update. In that case, the XT
134 functions assume that `selected_frame' is the frame to apply to. */
135
136 extern struct frame *updating_frame;
137
138 /* This is a frame waiting to be auto-raised, within XTread_socket. */
139
140 struct frame *pending_autoraise_frame;
141
142 /* Mouse movement.
143
144 Formerly, we used PointerMotionHintMask (in standard_event_mask)
145 so that we would have to call XQueryPointer after each MotionNotify
146 event to ask for another such event. However, this made mouse tracking
147 slow, and there was a bug that made it eventually stop.
148
149 Simply asking for MotionNotify all the time seems to work better.
150
151 In order to avoid asking for motion events and then throwing most
152 of them away or busy-polling the server for mouse positions, we ask
153 the server for pointer motion hints. This means that we get only
154 one event per group of mouse movements. "Groups" are delimited by
155 other kinds of events (focus changes and button clicks, for
156 example), or by XQueryPointer calls; when one of these happens, we
157 get another MotionNotify event the next time the mouse moves. This
158 is at least as efficient as getting motion events when mouse
159 tracking is on, and I suspect only negligibly worse when tracking
160 is off. */
161
162 /* Where the mouse was last time we reported a mouse event. */
163
164 static Rect last_mouse_glyph;
165 static FRAME_PTR last_mouse_glyph_frame;
166
167 /* The scroll bar in which the last X motion event occurred.
168
169 If the last X motion event occurred in a scroll bar, we set this so
170 XTmouse_position can know whether to report a scroll bar motion or
171 an ordinary motion.
172
173 If the last X motion event didn't occur in a scroll bar, we set
174 this to Qnil, to tell XTmouse_position to return an ordinary motion
175 event. */
176
177 static Lisp_Object last_mouse_scroll_bar;
178
179 /* This is a hack. We would really prefer that XTmouse_position would
180 return the time associated with the position it returns, but there
181 doesn't seem to be any way to wrest the time-stamp from the server
182 along with the position query. So, we just keep track of the time
183 of the last movement we received, and return that in hopes that
184 it's somewhat accurate. */
185
186 static Time last_mouse_movement_time;
187
188 struct scroll_bar *tracked_scroll_bar = NULL;
189
190 /* Incremented by XTread_socket whenever it really tries to read
191 events. */
192
193 #ifdef __STDC__
194 static int volatile input_signal_count;
195 #else
196 static int input_signal_count;
197 #endif
198
199 extern Lisp_Object Vsystem_name;
200
201 /* A mask of extra modifier bits to put into every keyboard char. */
202
203 extern EMACS_INT extra_keyboard_modifiers;
204
205 /* The keysyms to use for the various modifiers. */
206
207 static Lisp_Object Qalt, Qhyper, Qsuper, Qcontrol, Qmeta, Qmodifier_value;
208
209 extern int inhibit_window_system;
210
211 #if __MRC__ && !TARGET_API_MAC_CARBON
212 QDGlobals qd; /* QuickDraw global information structure. */
213 #endif
214
215 #define mac_window_to_frame(wp) (((mac_output *) GetWRefCon (wp))->mFP)
216
217 struct mac_display_info *mac_display_info_for_display (Display *);
218 static void x_update_window_end P_ ((struct window *, int, int));
219 static int x_io_error_quitter P_ ((Display *));
220 int x_catch_errors P_ ((Display *));
221 void x_uncatch_errors P_ ((Display *, int));
222 void x_lower_frame P_ ((struct frame *));
223 void x_scroll_bar_clear P_ ((struct frame *));
224 int x_had_errors_p P_ ((Display *));
225 void x_wm_set_size_hint P_ ((struct frame *, long, int));
226 void x_raise_frame P_ ((struct frame *));
227 void x_set_window_size P_ ((struct frame *, int, int, int));
228 void x_wm_set_window_state P_ ((struct frame *, int));
229 void x_wm_set_icon_pixmap P_ ((struct frame *, int));
230 void mac_initialize P_ ((void));
231 static void x_font_min_bounds P_ ((XFontStruct *, int *, int *));
232 static int x_compute_min_glyph_bounds P_ ((struct frame *));
233 static void x_update_end P_ ((struct frame *));
234 static void XTframe_up_to_date P_ ((struct frame *));
235 static void XTset_terminal_modes P_ ((void));
236 static void XTreset_terminal_modes P_ ((void));
237 static void x_clear_frame P_ ((void));
238 static void frame_highlight P_ ((struct frame *));
239 static void frame_unhighlight P_ ((struct frame *));
240 static void x_new_focus_frame P_ ((struct x_display_info *, struct frame *));
241 static void mac_focus_changed P_ ((int, struct mac_display_info *,
242 struct frame *, struct input_event *));
243 static void x_detect_focus_change P_ ((struct mac_display_info *,
244 EventRecord *, struct input_event *));
245 static void XTframe_rehighlight P_ ((struct frame *));
246 static void x_frame_rehighlight P_ ((struct x_display_info *));
247 static void x_draw_hollow_cursor P_ ((struct window *, struct glyph_row *));
248 static void x_draw_bar_cursor P_ ((struct window *, struct glyph_row *, int,
249 enum text_cursor_kinds));
250
251 static void x_clip_to_row P_ ((struct window *, struct glyph_row *, int, GC));
252 static void x_flush P_ ((struct frame *f));
253 static void x_update_begin P_ ((struct frame *));
254 static void x_update_window_begin P_ ((struct window *));
255 static void x_after_update_window_line P_ ((struct glyph_row *));
256 static void x_scroll_bar_report_motion P_ ((struct frame **, Lisp_Object *,
257 enum scroll_bar_part *,
258 Lisp_Object *, Lisp_Object *,
259 unsigned long *));
260
261 static int is_emacs_window P_ ((WindowPtr));
262 static XCharStruct *mac_per_char_metric P_ ((XFontStruct *, XChar2b *, int));
263 static void XSetFont P_ ((Display *, GC, XFontStruct *));
264
265 /* Defined in macmenu.h. */
266 extern void menubar_selection_callback (FRAME_PTR, int);
267
268 #define GC_FORE_COLOR(gc) (&(gc)->fore_color)
269 #define GC_BACK_COLOR(gc) (&(gc)->back_color)
270 #define GC_FONT(gc) ((gc)->xgcv.font)
271 #define GC_CLIP_REGION(gc) ((gc)->clip_region)
272 #define FRAME_NORMAL_GC(f) ((f)->output_data.mac->normal_gc)
273
274 static RgnHandle saved_port_clip_region = NULL;
275
276 static void
277 mac_begin_clip (region)
278 RgnHandle region;
279 {
280 static RgnHandle new_region = NULL;
281
282 if (saved_port_clip_region == NULL)
283 saved_port_clip_region = NewRgn ();
284 if (new_region == NULL)
285 new_region = NewRgn ();
286
287 if (region)
288 {
289 GetClip (saved_port_clip_region);
290 SectRgn (saved_port_clip_region, region, new_region);
291 SetClip (new_region);
292 }
293 }
294
295 static void
296 mac_end_clip (region)
297 RgnHandle region;
298 {
299 if (region)
300 SetClip (saved_port_clip_region);
301 }
302
303
304 /* X display function emulation */
305
306 void
307 XFreePixmap (display, pixmap)
308 Display *display; /* not used */
309 Pixmap pixmap;
310 {
311 DisposeGWorld (pixmap);
312 }
313
314
315 /* Mac version of XDrawLine. */
316
317 static void
318 mac_draw_line (f, gc, x1, y1, x2, y2)
319 struct frame *f;
320 GC gc;
321 int x1, y1, x2, y2;
322 {
323 SetPortWindowPort (FRAME_MAC_WINDOW (f));
324
325 RGBForeColor (GC_FORE_COLOR (gc));
326
327 mac_begin_clip (GC_CLIP_REGION (gc));
328 MoveTo (x1, y1);
329 LineTo (x2, y2);
330 mac_end_clip (GC_CLIP_REGION (gc));
331 }
332
333 void
334 mac_draw_line_to_pixmap (display, p, gc, x1, y1, x2, y2)
335 Display *display;
336 Pixmap p;
337 GC gc;
338 int x1, y1, x2, y2;
339 {
340 CGrafPtr old_port;
341 GDHandle old_gdh;
342
343 GetGWorld (&old_port, &old_gdh);
344 SetGWorld (p, NULL);
345
346 RGBForeColor (GC_FORE_COLOR (gc));
347
348 LockPixels (GetGWorldPixMap (p));
349 MoveTo (x1, y1);
350 LineTo (x2, y2);
351 UnlockPixels (GetGWorldPixMap (p));
352
353 SetGWorld (old_port, old_gdh);
354 }
355
356
357 static void
358 mac_erase_rectangle (f, gc, x, y, width, height)
359 struct frame *f;
360 GC gc;
361 int x, y;
362 unsigned int width, height;
363 {
364 Rect r;
365
366 SetPortWindowPort (FRAME_MAC_WINDOW (f));
367
368 RGBBackColor (GC_BACK_COLOR (gc));
369 SetRect (&r, x, y, x + width, y + height);
370
371 mac_begin_clip (GC_CLIP_REGION (gc));
372 EraseRect (&r);
373 mac_end_clip (GC_CLIP_REGION (gc));
374
375 RGBBackColor (GC_BACK_COLOR (FRAME_NORMAL_GC (f)));
376 }
377
378
379 /* Mac version of XClearArea. */
380
381 void
382 mac_clear_area (f, x, y, width, height)
383 struct frame *f;
384 int x, y;
385 unsigned int width, height;
386 {
387 mac_erase_rectangle (f, FRAME_NORMAL_GC (f), x, y, width, height);
388 }
389
390 /* Mac version of XClearWindow. */
391
392 static void
393 mac_clear_window (f)
394 struct frame *f;
395 {
396 SetPortWindowPort (FRAME_MAC_WINDOW (f));
397
398 RGBBackColor (GC_BACK_COLOR (FRAME_NORMAL_GC (f)));
399
400 #if TARGET_API_MAC_CARBON
401 {
402 Rect r;
403
404 GetWindowPortBounds (FRAME_MAC_WINDOW (f), &r);
405 EraseRect (&r);
406 }
407 #else /* not TARGET_API_MAC_CARBON */
408 EraseRect (&(FRAME_MAC_WINDOW (f)->portRect));
409 #endif /* not TARGET_API_MAC_CARBON */
410 }
411
412
413 /* Mac replacement for XCopyArea. */
414
415 static void
416 mac_draw_bitmap (f, gc, x, y, width, height, bits, overlay_p)
417 struct frame *f;
418 GC gc;
419 int x, y, width, height;
420 unsigned short *bits;
421 int overlay_p;
422 {
423 BitMap bitmap;
424 Rect r;
425
426 bitmap.rowBytes = sizeof(unsigned short);
427 bitmap.baseAddr = (char *)bits;
428 SetRect (&(bitmap.bounds), 0, 0, width, height);
429
430 SetPortWindowPort (FRAME_MAC_WINDOW (f));
431
432 RGBForeColor (GC_FORE_COLOR (gc));
433 RGBBackColor (GC_BACK_COLOR (gc));
434 SetRect (&r, x, y, x + width, y + height);
435
436 mac_begin_clip (GC_CLIP_REGION (gc));
437 #if TARGET_API_MAC_CARBON
438 {
439 CGrafPtr port;
440
441 GetPort (&port);
442 LockPortBits (port);
443 CopyBits (&bitmap, GetPortBitMapForCopyBits (port),
444 &(bitmap.bounds), &r, overlay_p ? srcOr : srcCopy, 0);
445 UnlockPortBits (port);
446 }
447 #else /* not TARGET_API_MAC_CARBON */
448 CopyBits (&bitmap, &(FRAME_MAC_WINDOW (f)->portBits), &(bitmap.bounds), &r,
449 overlay_p ? srcOr : srcCopy, 0);
450 #endif /* not TARGET_API_MAC_CARBON */
451 mac_end_clip (GC_CLIP_REGION (gc));
452
453 RGBBackColor (GC_BACK_COLOR (FRAME_NORMAL_GC (f)));
454 }
455
456
457 /* Mac replacement for XCreateBitmapFromBitmapData. */
458
459 static void
460 mac_create_bitmap_from_bitmap_data (bitmap, bits, w, h)
461 BitMap *bitmap;
462 char *bits;
463 int w, h;
464 {
465 static unsigned char swap_nibble[16]
466 = { 0x0, 0x8, 0x4, 0xc, /* 0000 1000 0100 1100 */
467 0x2, 0xa, 0x6, 0xe, /* 0010 1010 0110 1110 */
468 0x1, 0x9, 0x5, 0xd, /* 0001 1001 0101 1101 */
469 0x3, 0xb, 0x7, 0xf }; /* 0011 1011 0111 1111 */
470 int i, j, w1;
471 char *p;
472
473 w1 = (w + 7) / 8; /* nb of 8bits elt in X bitmap */
474 bitmap->rowBytes = ((w + 15) / 16) * 2; /* nb of 16bits elt in Mac bitmap */
475 bitmap->baseAddr = xmalloc (bitmap->rowBytes * h);
476 bzero (bitmap->baseAddr, bitmap->rowBytes * h);
477 for (i = 0; i < h; i++)
478 {
479 p = bitmap->baseAddr + i * bitmap->rowBytes;
480 for (j = 0; j < w1; j++)
481 {
482 /* Bitswap XBM bytes to match how Mac does things. */
483 unsigned char c = *bits++;
484 *p++ = (unsigned char)((swap_nibble[c & 0xf] << 4)
485 | (swap_nibble[(c>>4) & 0xf]));;
486 }
487 }
488
489 SetRect (&(bitmap->bounds), 0, 0, w, h);
490 }
491
492
493 static void
494 mac_free_bitmap (bitmap)
495 BitMap *bitmap;
496 {
497 xfree (bitmap->baseAddr);
498 }
499
500
501 Pixmap
502 XCreatePixmap (display, w, width, height, depth)
503 Display *display; /* not used */
504 WindowPtr w;
505 unsigned int width, height;
506 unsigned int depth;
507 {
508 Pixmap pixmap;
509 Rect r;
510 QDErr err;
511
512 SetPortWindowPort (w);
513
514 SetRect (&r, 0, 0, width, height);
515 err = NewGWorld (&pixmap, depth, &r, NULL, NULL, 0);
516 if (err != noErr)
517 return NULL;
518 return pixmap;
519 }
520
521
522 Pixmap
523 XCreatePixmapFromBitmapData (display, w, data, width, height, fg, bg, depth)
524 Display *display; /* not used */
525 WindowPtr w;
526 char *data;
527 unsigned int width, height;
528 unsigned long fg, bg;
529 unsigned int depth;
530 {
531 Pixmap pixmap;
532 BitMap bitmap;
533 CGrafPtr old_port;
534 GDHandle old_gdh;
535 static GC gc = NULL; /* not reentrant */
536
537 if (gc == NULL)
538 gc = XCreateGC (display, w, 0, NULL);
539
540 pixmap = XCreatePixmap (display, w, width, height, depth);
541 if (pixmap == NULL)
542 return NULL;
543
544 GetGWorld (&old_port, &old_gdh);
545 SetGWorld (pixmap, NULL);
546 mac_create_bitmap_from_bitmap_data (&bitmap, data, width, height);
547 XSetForeground (display, gc, fg);
548 XSetBackground (display, gc, bg);
549 RGBForeColor (GC_FORE_COLOR (gc));
550 RGBBackColor (GC_BACK_COLOR (gc));
551 LockPixels (GetGWorldPixMap (pixmap));
552 #if TARGET_API_MAC_CARBON
553 CopyBits (&bitmap, GetPortBitMapForCopyBits (pixmap),
554 &bitmap.bounds, &bitmap.bounds, srcCopy, 0);
555 #else /* not TARGET_API_MAC_CARBON */
556 CopyBits (&bitmap, &(((GrafPtr)pixmap)->portBits),
557 &bitmap.bounds, &bitmap.bounds, srcCopy, 0);
558 #endif /* not TARGET_API_MAC_CARBON */
559 UnlockPixels (GetGWorldPixMap (pixmap));
560 SetGWorld (old_port, old_gdh);
561 mac_free_bitmap (&bitmap);
562
563 return pixmap;
564 }
565
566
567 /* Mac replacement for XFillRectangle. */
568
569 static void
570 mac_fill_rectangle (f, gc, x, y, width, height)
571 struct frame *f;
572 GC gc;
573 int x, y;
574 unsigned int width, height;
575 {
576 Rect r;
577
578 SetPortWindowPort (FRAME_MAC_WINDOW (f));
579
580 RGBForeColor (GC_FORE_COLOR (gc));
581 SetRect (&r, x, y, x + width, y + height);
582
583 mac_begin_clip (GC_CLIP_REGION (gc));
584 PaintRect (&r); /* using foreground color of gc */
585 mac_end_clip (GC_CLIP_REGION (gc));
586 }
587
588
589 /* Mac replacement for XDrawRectangle: dest is a window. */
590
591 static void
592 mac_draw_rectangle (f, gc, x, y, width, height)
593 struct frame *f;
594 GC gc;
595 int x, y;
596 unsigned int width, height;
597 {
598 Rect r;
599
600 SetPortWindowPort (FRAME_MAC_WINDOW (f));
601
602 RGBForeColor (GC_FORE_COLOR (gc));
603 SetRect (&r, x, y, x + width + 1, y + height + 1);
604
605 mac_begin_clip (GC_CLIP_REGION (gc));
606 FrameRect (&r); /* using foreground color of gc */
607 mac_end_clip (GC_CLIP_REGION (gc));
608 }
609
610
611 #if USE_ATSUI
612 static OSStatus
613 atsu_get_text_layout_with_text_ptr (text, text_length, style, text_layout)
614 ConstUniCharArrayPtr text;
615 UniCharCount text_length;
616 ATSUStyle style;
617 ATSUTextLayout *text_layout;
618 {
619 OSStatus err;
620 static ATSUTextLayout saved_text_layout = NULL; /* not reentrant */
621
622 if (saved_text_layout == NULL)
623 {
624 UniCharCount lengths[] = {kATSUToTextEnd};
625 ATSUAttributeTag tags[] = {kATSULineLayoutOptionsTag};
626 ByteCount sizes[] = {sizeof (ATSLineLayoutOptions)};
627 static ATSLineLayoutOptions line_layout =
628 #if MAC_OS_X_VERSION_MAX_ALLOWED >= 1020
629 kATSLineDisableAllLayoutOperations | kATSLineUseDeviceMetrics
630 #else
631 kATSLineIsDisplayOnly | kATSLineFractDisable
632 #endif
633 ;
634 ATSUAttributeValuePtr values[] = {&line_layout};
635
636 err = ATSUCreateTextLayoutWithTextPtr (text,
637 kATSUFromTextBeginning,
638 kATSUToTextEnd,
639 text_length,
640 1, lengths, &style,
641 &saved_text_layout);
642 if (err == noErr)
643 err = ATSUSetLayoutControls (saved_text_layout,
644 sizeof (tags) / sizeof (tags[0]),
645 tags, sizes, values);
646 /* XXX: Should we do this? */
647 if (err == noErr)
648 err = ATSUSetTransientFontMatching (saved_text_layout, true);
649 }
650 else
651 {
652 err = ATSUSetRunStyle (saved_text_layout, style,
653 kATSUFromTextBeginning, kATSUToTextEnd);
654 if (err == noErr)
655 err = ATSUSetTextPointerLocation (saved_text_layout, text,
656 kATSUFromTextBeginning,
657 kATSUToTextEnd,
658 text_length);
659 }
660
661 if (err == noErr)
662 *text_layout = saved_text_layout;
663 return err;
664 }
665 #endif
666
667
668 static void
669 mac_invert_rectangle (f, x, y, width, height)
670 struct frame *f;
671 int x, y;
672 unsigned int width, height;
673 {
674 Rect r;
675
676 SetPortWindowPort (FRAME_MAC_WINDOW (f));
677
678 SetRect (&r, x, y, x + width, y + height);
679
680 InvertRect (&r);
681 }
682
683
684 static void
685 mac_draw_string_common (f, gc, x, y, buf, nchars, mode, bytes_per_char)
686 struct frame *f;
687 GC gc;
688 int x, y;
689 char *buf;
690 int nchars, mode, bytes_per_char;
691 {
692 #if MAC_OS_X_VERSION_MAX_ALLOWED >= 1020
693 UInt32 textFlags, savedFlags;
694 if (mac_use_core_graphics) {
695 textFlags = kQDUseCGTextRendering;
696 savedFlags = SwapQDTextFlags(textFlags);
697 }
698 #endif
699
700 SetPortWindowPort (FRAME_MAC_WINDOW (f));
701
702 RGBForeColor (GC_FORE_COLOR (gc));
703 if (mode != srcOr)
704 RGBBackColor (GC_BACK_COLOR (gc));
705
706 #if USE_ATSUI
707 if (GC_FONT (gc)->mac_style)
708 {
709 OSErr err;
710 ATSUTextLayout text_layout;
711
712 xassert (bytes_per_char == 2);
713
714 #ifndef WORDS_BIG_ENDIAN
715 {
716 int i;
717 UniChar *text = (UniChar *)buf;
718
719 for (i = 0; i < nchars; i++)
720 text[i] = EndianU16_BtoN (text[i]);
721 }
722 #endif
723 err = atsu_get_text_layout_with_text_ptr ((ConstUniCharArrayPtr)buf,
724 nchars,
725 GC_FONT (gc)->mac_style,
726 &text_layout);
727 if (err == noErr)
728 {
729 #ifdef MAC_OSX
730 if (!mac_use_core_graphics)
731 {
732 #endif
733 mac_begin_clip (GC_CLIP_REGION (gc));
734 MoveTo (x, y);
735 ATSUDrawText (text_layout,
736 kATSUFromTextBeginning, kATSUToTextEnd,
737 kATSUUseGrafPortPenLoc, kATSUUseGrafPortPenLoc);
738 mac_end_clip (GC_CLIP_REGION (gc));
739 #ifdef MAC_OSX
740 }
741 else
742 {
743 CGrafPtr port;
744 CGContextRef context;
745 float port_height = FRAME_PIXEL_HEIGHT (f);
746 ATSUAttributeTag tags[] = {kATSUCGContextTag};
747 ByteCount sizes[] = {sizeof (CGContextRef)};
748 ATSUAttributeValuePtr values[] = {&context};
749
750 GetPort (&port);
751 QDBeginCGContext (port, &context);
752 if (gc->n_clip_rects)
753 {
754 CGContextTranslateCTM (context, 0, port_height);
755 CGContextScaleCTM (context, 1, -1);
756 CGContextClipToRects (context, gc->clip_rects,
757 gc->n_clip_rects);
758 CGContextScaleCTM (context, 1, -1);
759 CGContextTranslateCTM (context, 0, -port_height);
760 }
761 CGContextSetRGBFillColor
762 (context,
763 RED_FROM_ULONG (gc->xgcv.foreground) / 255.0,
764 GREEN_FROM_ULONG (gc->xgcv.foreground) / 255.0,
765 BLUE_FROM_ULONG (gc->xgcv.foreground) / 255.0,
766 1.0);
767 err = ATSUSetLayoutControls (text_layout,
768 sizeof (tags) / sizeof (tags[0]),
769 tags, sizes, values);
770 if (err == noErr)
771 ATSUDrawText (text_layout,
772 kATSUFromTextBeginning, kATSUToTextEnd,
773 Long2Fix (x), Long2Fix (port_height - y));
774 CGContextSynchronize (context);
775 QDEndCGContext (port, &context);
776 #if 0
777 /* This doesn't work on Mac OS X 10.1. */
778 ATSUClearLayoutControls (text_layout,
779 sizeof (tags) / sizeof (tags[0]),
780 tags);
781 #else
782 ATSUSetLayoutControls (text_layout,
783 sizeof (tags) / sizeof (tags[0]),
784 tags, sizes, values);
785 #endif
786 }
787 #endif
788 }
789 }
790 else
791 {
792 #endif
793 TextFont (GC_FONT (gc)->mac_fontnum);
794 TextSize (GC_FONT (gc)->mac_fontsize);
795 TextFace (GC_FONT (gc)->mac_fontface);
796 TextMode (mode);
797
798 mac_begin_clip (GC_CLIP_REGION (gc));
799 MoveTo (x, y);
800 DrawText (buf, 0, nchars * bytes_per_char);
801 mac_end_clip (GC_CLIP_REGION (gc));
802 #if USE_ATSUI
803 }
804 #endif
805
806 if (mode != srcOr)
807 RGBBackColor (GC_BACK_COLOR (FRAME_NORMAL_GC (f)));
808 #if MAC_OS_X_VERSION_MAX_ALLOWED >= 1020
809 if (mac_use_core_graphics)
810 SwapQDTextFlags(savedFlags);
811 #endif
812 }
813
814
815 /* Mac replacement for XDrawString. */
816
817 static void
818 mac_draw_string (f, gc, x, y, buf, nchars)
819 struct frame *f;
820 GC gc;
821 int x, y;
822 char *buf;
823 int nchars;
824 {
825 mac_draw_string_common (f, gc, x, y, buf, nchars, srcOr, 1);
826 }
827
828
829 /* Mac replacement for XDrawString16. */
830
831 static void
832 mac_draw_string_16 (f, gc, x, y, buf, nchars)
833 struct frame *f;
834 GC gc;
835 int x, y;
836 XChar2b *buf;
837 int nchars;
838 {
839 mac_draw_string_common (f, gc, x, y, (char *) buf, nchars, srcOr, 2);
840 }
841
842
843 /* Mac replacement for XDrawImageString. */
844
845 static void
846 mac_draw_image_string (f, gc, x, y, buf, nchars)
847 struct frame *f;
848 GC gc;
849 int x, y;
850 char *buf;
851 int nchars;
852 {
853 mac_draw_string_common (f, gc, x, y, buf, nchars, srcCopy, 1);
854 }
855
856
857 /* Mac replacement for XDrawString16. */
858
859 static void
860 mac_draw_image_string_16 (f, gc, x, y, buf, nchars)
861 struct frame *f;
862 GC gc;
863 int x, y;
864 XChar2b *buf;
865 int nchars;
866 {
867 mac_draw_string_common (f, gc, x, y, (char *) buf, nchars, srcCopy, 2);
868 }
869
870
871 /* Mac replacement for XQueryTextExtents, but takes a character. If
872 STYLE is NULL, measurement is done by QuickDraw Text routines for
873 the font of the current graphics port. If CG_GLYPH is not NULL,
874 *CG_GLYPH is set to the glyph ID or 0 if it cannot be obtained. */
875
876 static OSErr
877 mac_query_char_extents (style, c,
878 font_ascent_return, font_descent_return,
879 overall_return, cg_glyph)
880 #if USE_ATSUI
881 ATSUStyle style;
882 #else
883 void *style;
884 #endif
885 int c;
886 int *font_ascent_return, *font_descent_return;
887 XCharStruct *overall_return;
888 #if USE_CG_TEXT_DRAWING
889 CGGlyph *cg_glyph;
890 #else
891 void *cg_glyph;
892 #endif
893 {
894 OSErr err = noErr;
895 int width;
896 Rect char_bounds;
897
898 #if USE_ATSUI
899 if (style)
900 {
901 ATSUTextLayout text_layout;
902 UniChar ch = c;
903
904 err = atsu_get_text_layout_with_text_ptr (&ch, 1, style, &text_layout);
905 if (err == noErr)
906 {
907 ATSTrapezoid glyph_bounds;
908
909 err = ATSUGetGlyphBounds (text_layout, 0, 0,
910 kATSUFromTextBeginning, kATSUToTextEnd,
911 #if MAC_OS_X_VERSION_MAX_ALLOWED >= 1020
912 kATSUseFractionalOrigins,
913 #else
914 kATSUseDeviceOrigins,
915 #endif
916 1, &glyph_bounds, NULL);
917 if (err == noErr)
918 {
919 xassert (glyph_bounds.lowerRight.x - glyph_bounds.lowerLeft.x
920 == glyph_bounds.upperRight.x - glyph_bounds.upperLeft.x);
921
922 width = Fix2Long (glyph_bounds.upperRight.x
923 - glyph_bounds.upperLeft.x);
924 if (font_ascent_return)
925 *font_ascent_return = -Fix2Long (glyph_bounds.upperLeft.y);
926 if (font_descent_return)
927 *font_descent_return = Fix2Long (glyph_bounds.lowerLeft.y);
928 }
929 }
930 if (err == noErr && overall_return)
931 {
932 err = ATSUMeasureTextImage (text_layout,
933 kATSUFromTextBeginning, kATSUToTextEnd,
934 0, 0, &char_bounds);
935 if (err == noErr)
936 STORE_XCHARSTRUCT (*overall_return, width, char_bounds);
937 #if USE_CG_TEXT_DRAWING
938 if (err == noErr && cg_glyph)
939 {
940 OSErr err1;
941 ATSUGlyphInfoArray glyph_info_array;
942 ByteCount count = sizeof (ATSUGlyphInfoArray);
943
944 err1 = ATSUMatchFontsToText (text_layout, kATSUFromTextBeginning,
945 kATSUToTextEnd, NULL, NULL, NULL);
946 if (err1 == noErr)
947 err1 = ATSUGetGlyphInfo (text_layout, kATSUFromTextBeginning,
948 kATSUToTextEnd, &count,
949 &glyph_info_array);
950 if (err1 == noErr)
951 {
952 xassert (glyph_info_array.glyphs[0].glyphID);
953 *cg_glyph = glyph_info_array.glyphs[0].glyphID;
954 }
955 else
956 *cg_glyph = 0;
957 }
958 #endif
959 }
960 }
961 else
962 #endif
963 {
964 if (font_ascent_return || font_descent_return)
965 {
966 FontInfo font_info;
967
968 GetFontInfo (&font_info);
969 if (font_ascent_return)
970 *font_ascent_return = font_info.ascent;
971 if (font_descent_return)
972 *font_descent_return = font_info.descent;
973 }
974 if (overall_return)
975 {
976 char ch = c;
977
978 width = CharWidth (ch);
979 QDTextBounds (1, &ch, &char_bounds);
980 STORE_XCHARSTRUCT (*overall_return, width, char_bounds);
981 }
982 }
983
984 return err;
985 }
986
987
988 /* Mac replacement for XTextExtents16. Only sets horizontal metrics. */
989
990 static int
991 mac_text_extents_16 (font_struct, string, nchars, overall_return)
992 XFontStruct *font_struct;
993 XChar2b *string;
994 int nchars;
995 XCharStruct *overall_return;
996 {
997 int i;
998 short width = 0, lbearing = 0, rbearing = 0;
999 XCharStruct *pcm;
1000
1001 for (i = 0; i < nchars; i++)
1002 {
1003 pcm = mac_per_char_metric (font_struct, string, 0);
1004 if (pcm == NULL)
1005 width += FONT_WIDTH (font_struct);
1006 else
1007 {
1008 lbearing = min (lbearing, width + pcm->lbearing);
1009 rbearing = max (rbearing, width + pcm->rbearing);
1010 width += pcm->width;
1011 }
1012 string++;
1013 }
1014
1015 overall_return->lbearing = lbearing;
1016 overall_return->rbearing = rbearing;
1017 overall_return->width = width;
1018
1019 /* What's the meaning of the return value of XTextExtents16? */
1020 }
1021
1022
1023 #if USE_CG_TEXT_DRAWING
1024 static int cg_text_anti_aliasing_threshold = 8;
1025
1026 static void
1027 init_cg_text_anti_aliasing_threshold ()
1028 {
1029 Lisp_Object val =
1030 Fmac_get_preference (build_string ("AppleAntiAliasingThreshold"),
1031 Qnil, Qnil, Qnil);
1032
1033 if (INTEGERP (val))
1034 cg_text_anti_aliasing_threshold = XINT (val);
1035 }
1036
1037 static int
1038 mac_draw_string_cg (f, gc, x, y, buf, nchars)
1039 struct frame *f;
1040 GC gc;
1041 int x, y;
1042 XChar2b *buf;
1043 int nchars;
1044 {
1045 CGrafPtr port;
1046 float port_height, gx, gy;
1047 int i;
1048 CGContextRef context;
1049 CGGlyph *glyphs;
1050 CGSize *advances;
1051
1052 if (!mac_use_core_graphics || GC_FONT (gc)->cg_font == NULL)
1053 return 0;
1054
1055 port = GetWindowPort (FRAME_MAC_WINDOW (f));
1056 port_height = FRAME_PIXEL_HEIGHT (f);
1057 gx = x;
1058 gy = port_height - y;
1059 glyphs = (CGGlyph *)buf;
1060 advances = xmalloc (sizeof (CGSize) * nchars);
1061 for (i = 0; i < nchars; i++)
1062 {
1063 XCharStruct *pcm = mac_per_char_metric (GC_FONT (gc), buf, 0);
1064
1065 advances[i].width = pcm->width;
1066 advances[i].height = 0;
1067 glyphs[i] = GC_FONT (gc)->cg_glyphs[buf->byte2];
1068 buf++;
1069 }
1070
1071 QDBeginCGContext (port, &context);
1072 if (gc->n_clip_rects)
1073 {
1074 CGContextTranslateCTM (context, 0, port_height);
1075 CGContextScaleCTM (context, 1, -1);
1076 CGContextClipToRects (context, gc->clip_rects, gc->n_clip_rects);
1077 CGContextScaleCTM (context, 1, -1);
1078 CGContextTranslateCTM (context, 0, -port_height);
1079 }
1080 CGContextSetRGBFillColor (context,
1081 RED_FROM_ULONG (gc->xgcv.foreground) / 255.0,
1082 GREEN_FROM_ULONG (gc->xgcv.foreground) / 255.0,
1083 BLUE_FROM_ULONG (gc->xgcv.foreground) / 255.0,
1084 1.0);
1085 CGContextSetFont (context, GC_FONT (gc)->cg_font);
1086 CGContextSetFontSize (context, GC_FONT (gc)->mac_fontsize);
1087 if (GC_FONT (gc)->mac_fontsize <= cg_text_anti_aliasing_threshold)
1088 CGContextSetShouldAntialias (context, false);
1089 #if MAC_OS_X_VERSION_MAX_ALLOWED >= 1030
1090 CGContextSetTextPosition (context, gx, gy);
1091 CGContextShowGlyphsWithAdvances (context, glyphs, advances, nchars);
1092 #else
1093 for (i = 0; i < nchars; i++)
1094 {
1095 CGContextShowGlyphsAtPoint (context, gx, gy, glyphs + i, 1);
1096 gx += advances[i].width;
1097 }
1098 #endif
1099 CGContextSynchronize (context);
1100 QDEndCGContext (port, &context);
1101
1102 xfree (advances);
1103
1104 return 1;
1105 }
1106 #endif
1107
1108
1109 /* Mac replacement for XCopyArea: dest must be window. */
1110
1111 static void
1112 mac_copy_area (src, f, gc, src_x, src_y, width, height, dest_x, dest_y)
1113 Pixmap src;
1114 struct frame *f;
1115 GC gc;
1116 int src_x, src_y;
1117 unsigned int width, height;
1118 int dest_x, dest_y;
1119 {
1120 Rect src_r, dest_r;
1121
1122 SetPortWindowPort (FRAME_MAC_WINDOW (f));
1123
1124 SetRect (&src_r, src_x, src_y, src_x + width, src_y + height);
1125 SetRect (&dest_r, dest_x, dest_y, dest_x + width, dest_y + height);
1126
1127 ForeColor (blackColor);
1128 BackColor (whiteColor);
1129
1130 mac_begin_clip (GC_CLIP_REGION (gc));
1131 LockPixels (GetGWorldPixMap (src));
1132 #if TARGET_API_MAC_CARBON
1133 {
1134 CGrafPtr port;
1135
1136 GetPort (&port);
1137 LockPortBits (port);
1138 CopyBits (GetPortBitMapForCopyBits (src),
1139 GetPortBitMapForCopyBits (port),
1140 &src_r, &dest_r, srcCopy, 0);
1141 UnlockPortBits (port);
1142 }
1143 #else /* not TARGET_API_MAC_CARBON */
1144 CopyBits (&(((GrafPtr)src)->portBits), &(FRAME_MAC_WINDOW (f)->portBits),
1145 &src_r, &dest_r, srcCopy, 0);
1146 #endif /* not TARGET_API_MAC_CARBON */
1147 UnlockPixels (GetGWorldPixMap (src));
1148 mac_end_clip (GC_CLIP_REGION (gc));
1149
1150 RGBBackColor (GC_BACK_COLOR (FRAME_NORMAL_GC (f)));
1151 }
1152
1153
1154 static void
1155 mac_copy_area_with_mask (src, mask, f, gc, src_x, src_y,
1156 width, height, dest_x, dest_y)
1157 Pixmap src, mask;
1158 struct frame *f;
1159 GC gc;
1160 int src_x, src_y;
1161 unsigned int width, height;
1162 int dest_x, dest_y;
1163 {
1164 Rect src_r, dest_r;
1165
1166 SetPortWindowPort (FRAME_MAC_WINDOW (f));
1167
1168 SetRect (&src_r, src_x, src_y, src_x + width, src_y + height);
1169 SetRect (&dest_r, dest_x, dest_y, dest_x + width, dest_y + height);
1170
1171 ForeColor (blackColor);
1172 BackColor (whiteColor);
1173
1174 mac_begin_clip (GC_CLIP_REGION (gc));
1175 LockPixels (GetGWorldPixMap (src));
1176 LockPixels (GetGWorldPixMap (mask));
1177 #if TARGET_API_MAC_CARBON
1178 {
1179 CGrafPtr port;
1180
1181 GetPort (&port);
1182 LockPortBits (port);
1183 CopyMask (GetPortBitMapForCopyBits (src), GetPortBitMapForCopyBits (mask),
1184 GetPortBitMapForCopyBits (port),
1185 &src_r, &src_r, &dest_r);
1186 UnlockPortBits (port);
1187 }
1188 #else /* not TARGET_API_MAC_CARBON */
1189 CopyMask (&(((GrafPtr)src)->portBits), &(((GrafPtr)mask)->portBits),
1190 &(FRAME_MAC_WINDOW (f)->portBits), &src_r, &src_r, &dest_r);
1191 #endif /* not TARGET_API_MAC_CARBON */
1192 UnlockPixels (GetGWorldPixMap (mask));
1193 UnlockPixels (GetGWorldPixMap (src));
1194 mac_end_clip (GC_CLIP_REGION (gc));
1195
1196 RGBBackColor (GC_BACK_COLOR (FRAME_NORMAL_GC (f)));
1197 }
1198
1199
1200 /* Mac replacement for XCopyArea: used only for scrolling. */
1201
1202 static void
1203 mac_scroll_area (f, gc, src_x, src_y, width, height, dest_x, dest_y)
1204 struct frame *f;
1205 GC gc;
1206 int src_x, src_y;
1207 unsigned int width, height;
1208 int dest_x, dest_y;
1209 {
1210 #if TARGET_API_MAC_CARBON
1211 Rect src_r;
1212 RgnHandle dummy = NewRgn (); /* For avoiding update events. */
1213
1214 SetRect (&src_r, src_x, src_y, src_x + width, src_y + height);
1215 ScrollWindowRect (FRAME_MAC_WINDOW (f),
1216 &src_r, dest_x - src_x, dest_y - src_y,
1217 kScrollWindowNoOptions, dummy);
1218 DisposeRgn (dummy);
1219 #else /* not TARGET_API_MAC_CARBON */
1220 Rect src_r, dest_r;
1221 WindowPtr w = FRAME_MAC_WINDOW (f);
1222
1223 SetPort (w);
1224
1225 SetRect (&src_r, src_x, src_y, src_x + width, src_y + height);
1226 SetRect (&dest_r, dest_x, dest_y, dest_x + width, dest_y + height);
1227
1228 /* In Color QuickDraw, set ForeColor and BackColor as follows to avoid
1229 color mapping in CopyBits. Otherwise, it will be slow. */
1230 ForeColor (blackColor);
1231 BackColor (whiteColor);
1232 mac_begin_clip (GC_CLIP_REGION (gc));
1233 CopyBits (&(w->portBits), &(w->portBits), &src_r, &dest_r, srcCopy, 0);
1234 mac_end_clip (GC_CLIP_REGION (gc));
1235
1236 RGBBackColor (GC_BACK_COLOR (FRAME_NORMAL_GC (f)));
1237 #endif /* not TARGET_API_MAC_CARBON */
1238 }
1239
1240
1241 /* Mac replacement for XChangeGC. */
1242
1243 static void
1244 XChangeGC (display, gc, mask, xgcv)
1245 Display *display;
1246 GC gc;
1247 unsigned long mask;
1248 XGCValues *xgcv;
1249 {
1250 if (mask & GCForeground)
1251 XSetForeground (display, gc, xgcv->foreground);
1252 if (mask & GCBackground)
1253 XSetBackground (display, gc, xgcv->background);
1254 if (mask & GCFont)
1255 XSetFont (display, gc, xgcv->font);
1256 }
1257
1258
1259 /* Mac replacement for XCreateGC. */
1260
1261 GC
1262 XCreateGC (display, window, mask, xgcv)
1263 Display *display;
1264 Window window;
1265 unsigned long mask;
1266 XGCValues *xgcv;
1267 {
1268 GC gc = xmalloc (sizeof (*gc));
1269
1270 if (gc)
1271 {
1272 bzero (gc, sizeof (*gc));
1273 XChangeGC (display, gc, mask, xgcv);
1274 }
1275
1276 return gc;
1277 }
1278
1279
1280 /* Used in xfaces.c. */
1281
1282 void
1283 XFreeGC (display, gc)
1284 Display *display;
1285 GC gc;
1286 {
1287 if (gc->clip_region)
1288 DisposeRgn (gc->clip_region);
1289 xfree (gc);
1290 }
1291
1292
1293 /* Mac replacement for XGetGCValues. */
1294
1295 static void
1296 XGetGCValues (display, gc, mask, xgcv)
1297 Display *display;
1298 GC gc;
1299 unsigned long mask;
1300 XGCValues *xgcv;
1301 {
1302 if (mask & GCForeground)
1303 xgcv->foreground = gc->xgcv.foreground;
1304 if (mask & GCBackground)
1305 xgcv->background = gc->xgcv.background;
1306 if (mask & GCFont)
1307 xgcv->font = gc->xgcv.font;
1308 }
1309
1310
1311 /* Mac replacement for XSetForeground. */
1312
1313 void
1314 XSetForeground (display, gc, color)
1315 Display *display;
1316 GC gc;
1317 unsigned long color;
1318 {
1319 if (gc->xgcv.foreground != color)
1320 {
1321 gc->xgcv.foreground = color;
1322 gc->fore_color.red = RED16_FROM_ULONG (color);
1323 gc->fore_color.green = GREEN16_FROM_ULONG (color);
1324 gc->fore_color.blue = BLUE16_FROM_ULONG (color);
1325 }
1326 }
1327
1328
1329 /* Mac replacement for XSetBackground. */
1330
1331 void
1332 XSetBackground (display, gc, color)
1333 Display *display;
1334 GC gc;
1335 unsigned long color;
1336 {
1337 if (gc->xgcv.background != color)
1338 {
1339 gc->xgcv.background = color;
1340 gc->back_color.red = RED16_FROM_ULONG (color);
1341 gc->back_color.green = GREEN16_FROM_ULONG (color);
1342 gc->back_color.blue = BLUE16_FROM_ULONG (color);
1343 }
1344 }
1345
1346
1347 /* Mac replacement for XSetFont. */
1348
1349 static void
1350 XSetFont (display, gc, font)
1351 Display *display;
1352 GC gc;
1353 XFontStruct *font;
1354 {
1355 gc->xgcv.font = font;
1356 }
1357
1358
1359 /* Mac replacement for XSetClipRectangles. */
1360
1361 static void
1362 mac_set_clip_rectangles (display, gc, rectangles, n)
1363 Display *display;
1364 GC gc;
1365 Rect *rectangles;
1366 int n;
1367 {
1368 int i;
1369
1370 if (n < 0 || n > MAX_CLIP_RECTS)
1371 abort ();
1372 if (n == 0)
1373 {
1374 if (gc->clip_region)
1375 {
1376 DisposeRgn (gc->clip_region);
1377 gc->clip_region = NULL;
1378 }
1379 }
1380 else
1381 {
1382 if (gc->clip_region == NULL)
1383 gc->clip_region = NewRgn ();
1384 RectRgn (gc->clip_region, rectangles);
1385 if (n > 1)
1386 {
1387 RgnHandle region = NewRgn ();
1388
1389 for (i = 1; i < n; i++)
1390 {
1391 RectRgn (region, rectangles + i);
1392 UnionRgn (gc->clip_region, region, gc->clip_region);
1393 }
1394 DisposeRgn (region);
1395 }
1396 }
1397 #if defined (MAC_OSX) && USE_ATSUI
1398 gc->n_clip_rects = n;
1399
1400 for (i = 0; i < n; i++)
1401 {
1402 Rect *rect = rectangles + i;
1403
1404 gc->clip_rects[i] = CGRectMake (rect->left, rect->top,
1405 rect->right - rect->left,
1406 rect->bottom - rect->top);
1407 }
1408 #endif
1409 }
1410
1411
1412 /* Mac replacement for XSetClipMask. */
1413
1414 static INLINE void
1415 mac_reset_clip_rectangles (display, gc)
1416 Display *display;
1417 GC gc;
1418 {
1419 mac_set_clip_rectangles (display, gc, NULL, 0);
1420 }
1421
1422
1423 /* Mac replacement for XSetWindowBackground. */
1424
1425 void
1426 XSetWindowBackground (display, w, color)
1427 Display *display;
1428 WindowPtr w;
1429 unsigned long color;
1430 {
1431 #if !TARGET_API_MAC_CARBON
1432 AuxWinHandle aw_handle;
1433 CTabHandle ctab_handle;
1434 ColorSpecPtr ct_table;
1435 short ct_size;
1436 #endif
1437 RGBColor bg_color;
1438
1439 bg_color.red = RED16_FROM_ULONG (color);
1440 bg_color.green = GREEN16_FROM_ULONG (color);
1441 bg_color.blue = BLUE16_FROM_ULONG (color);
1442
1443 #if TARGET_API_MAC_CARBON
1444 SetWindowContentColor (w, &bg_color);
1445 #else
1446 if (GetAuxWin (w, &aw_handle))
1447 {
1448 ctab_handle = (*aw_handle)->awCTable;
1449 HandToHand ((Handle *) &ctab_handle);
1450 ct_table = (*ctab_handle)->ctTable;
1451 ct_size = (*ctab_handle)->ctSize;
1452 while (ct_size > -1)
1453 {
1454 if (ct_table->value == 0)
1455 {
1456 ct_table->rgb = bg_color;
1457 CTabChanged (ctab_handle);
1458 SetWinColor (w, (WCTabHandle) ctab_handle);
1459 }
1460 ct_size--;
1461 }
1462 }
1463 #endif
1464 }
1465
1466 /* x_sync is a no-op on Mac. */
1467 void
1468 x_sync (f)
1469 void *f;
1470 {
1471 }
1472
1473
1474 /* Flush display of frame F, or of all frames if F is null. */
1475
1476 static void
1477 x_flush (f)
1478 struct frame *f;
1479 {
1480 #if TARGET_API_MAC_CARBON
1481 BLOCK_INPUT;
1482 if (f)
1483 QDFlushPortBuffer (GetWindowPort (FRAME_MAC_WINDOW (f)), NULL);
1484 else
1485 QDFlushPortBuffer (GetQDGlobalsThePort (), NULL);
1486 UNBLOCK_INPUT;
1487 #endif
1488 }
1489
1490
1491 /* Remove calls to XFlush by defining XFlush to an empty replacement.
1492 Calls to XFlush should be unnecessary because the X output buffer
1493 is flushed automatically as needed by calls to XPending,
1494 XNextEvent, or XWindowEvent according to the XFlush man page.
1495 XTread_socket calls XPending. Removing XFlush improves
1496 performance. */
1497
1498 #define XFlush(DISPLAY) (void) 0
1499
1500 \f
1501 /* Return the struct mac_display_info corresponding to DPY. There's
1502 only one. */
1503
1504 struct mac_display_info *
1505 mac_display_info_for_display (dpy)
1506 Display *dpy;
1507 {
1508 return &one_mac_display_info;
1509 }
1510
1511
1512 \f
1513 /***********************************************************************
1514 Starting and ending an update
1515 ***********************************************************************/
1516
1517 /* Start an update of frame F. This function is installed as a hook
1518 for update_begin, i.e. it is called when update_begin is called.
1519 This function is called prior to calls to x_update_window_begin for
1520 each window being updated. */
1521
1522 static void
1523 x_update_begin (f)
1524 struct frame *f;
1525 {
1526 #if TARGET_API_MAC_CARBON
1527 /* During update of a frame, availability of input events is
1528 periodically checked with ReceiveNextEvent if
1529 redisplay-dont-pause is nil. That normally flushes window buffer
1530 changes for every check, and thus screen update looks waving even
1531 if no input is available. So we disable screen updates during
1532 update of a frame. */
1533 BLOCK_INPUT;
1534 DisableScreenUpdates ();
1535 UNBLOCK_INPUT;
1536 #endif
1537 }
1538
1539
1540 /* Start update of window W. Set the global variable updated_window
1541 to the window being updated and set output_cursor to the cursor
1542 position of W. */
1543
1544 static void
1545 x_update_window_begin (w)
1546 struct window *w;
1547 {
1548 struct frame *f = XFRAME (WINDOW_FRAME (w));
1549 struct mac_display_info *display_info = FRAME_MAC_DISPLAY_INFO (f);
1550
1551 updated_window = w;
1552 set_output_cursor (&w->cursor);
1553
1554 BLOCK_INPUT;
1555
1556 if (f == display_info->mouse_face_mouse_frame)
1557 {
1558 /* Don't do highlighting for mouse motion during the update. */
1559 display_info->mouse_face_defer = 1;
1560
1561 /* If F needs to be redrawn, simply forget about any prior mouse
1562 highlighting. */
1563 if (FRAME_GARBAGED_P (f))
1564 display_info->mouse_face_window = Qnil;
1565
1566 #if 0 /* Rows in a current matrix containing glyphs in mouse-face have
1567 their mouse_face_p flag set, which means that they are always
1568 unequal to rows in a desired matrix which never have that
1569 flag set. So, rows containing mouse-face glyphs are never
1570 scrolled, and we don't have to switch the mouse highlight off
1571 here to prevent it from being scrolled. */
1572
1573 /* Can we tell that this update does not affect the window
1574 where the mouse highlight is? If so, no need to turn off.
1575 Likewise, don't do anything if the frame is garbaged;
1576 in that case, the frame's current matrix that we would use
1577 is all wrong, and we will redisplay that line anyway. */
1578 if (!NILP (display_info->mouse_face_window)
1579 && w == XWINDOW (display_info->mouse_face_window))
1580 {
1581 int i;
1582
1583 for (i = 0; i < w->desired_matrix->nrows; ++i)
1584 if (MATRIX_ROW_ENABLED_P (w->desired_matrix, i))
1585 break;
1586
1587 if (i < w->desired_matrix->nrows)
1588 clear_mouse_face (display_info);
1589 }
1590 #endif /* 0 */
1591 }
1592
1593 UNBLOCK_INPUT;
1594 }
1595
1596
1597 /* Draw a vertical window border from (x,y0) to (x,y1) */
1598
1599 static void
1600 mac_draw_vertical_window_border (w, x, y0, y1)
1601 struct window *w;
1602 int x, y0, y1;
1603 {
1604 struct frame *f = XFRAME (WINDOW_FRAME (w));
1605 struct face *face;
1606
1607 face = FACE_FROM_ID (f, VERTICAL_BORDER_FACE_ID);
1608 if (face)
1609 XSetForeground (FRAME_MAC_DISPLAY (f), f->output_data.mac->normal_gc,
1610 face->foreground);
1611
1612 mac_draw_line (f, f->output_data.mac->normal_gc, x, y0, x, y1);
1613 }
1614
1615 /* End update of window W (which is equal to updated_window).
1616
1617 Draw vertical borders between horizontally adjacent windows, and
1618 display W's cursor if CURSOR_ON_P is non-zero.
1619
1620 MOUSE_FACE_OVERWRITTEN_P non-zero means that some row containing
1621 glyphs in mouse-face were overwritten. In that case we have to
1622 make sure that the mouse-highlight is properly redrawn.
1623
1624 W may be a menu bar pseudo-window in case we don't have X toolkit
1625 support. Such windows don't have a cursor, so don't display it
1626 here. */
1627
1628 static void
1629 x_update_window_end (w, cursor_on_p, mouse_face_overwritten_p)
1630 struct window *w;
1631 int cursor_on_p, mouse_face_overwritten_p;
1632 {
1633 struct mac_display_info *dpyinfo = FRAME_MAC_DISPLAY_INFO (XFRAME (w->frame));
1634
1635 if (!w->pseudo_window_p)
1636 {
1637 BLOCK_INPUT;
1638
1639 if (cursor_on_p)
1640 display_and_set_cursor (w, 1, output_cursor.hpos,
1641 output_cursor.vpos,
1642 output_cursor.x, output_cursor.y);
1643
1644 if (draw_window_fringes (w, 1))
1645 x_draw_vertical_border (w);
1646
1647 UNBLOCK_INPUT;
1648 }
1649
1650 /* If a row with mouse-face was overwritten, arrange for
1651 XTframe_up_to_date to redisplay the mouse highlight. */
1652 if (mouse_face_overwritten_p)
1653 {
1654 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
1655 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
1656 dpyinfo->mouse_face_window = Qnil;
1657 }
1658
1659 updated_window = NULL;
1660 }
1661
1662
1663 /* End update of frame F. This function is installed as a hook in
1664 update_end. */
1665
1666 static void
1667 x_update_end (f)
1668 struct frame *f;
1669 {
1670 /* Mouse highlight may be displayed again. */
1671 FRAME_MAC_DISPLAY_INFO (f)->mouse_face_defer = 0;
1672
1673 BLOCK_INPUT;
1674 #if TARGET_API_MAC_CARBON
1675 EnableScreenUpdates ();
1676 #endif
1677 XFlush (FRAME_MAC_DISPLAY (f));
1678 UNBLOCK_INPUT;
1679 }
1680
1681
1682 /* This function is called from various places in xdisp.c whenever a
1683 complete update has been performed. The global variable
1684 updated_window is not available here. */
1685
1686 static void
1687 XTframe_up_to_date (f)
1688 struct frame *f;
1689 {
1690 if (FRAME_MAC_P (f))
1691 {
1692 struct mac_display_info *dpyinfo = FRAME_MAC_DISPLAY_INFO (f);
1693
1694 if (dpyinfo->mouse_face_deferred_gc
1695 || f == dpyinfo->mouse_face_mouse_frame)
1696 {
1697 BLOCK_INPUT;
1698 if (dpyinfo->mouse_face_mouse_frame)
1699 note_mouse_highlight (dpyinfo->mouse_face_mouse_frame,
1700 dpyinfo->mouse_face_mouse_x,
1701 dpyinfo->mouse_face_mouse_y);
1702 dpyinfo->mouse_face_deferred_gc = 0;
1703 UNBLOCK_INPUT;
1704 }
1705 }
1706 }
1707
1708
1709 /* Draw truncation mark bitmaps, continuation mark bitmaps, overlay
1710 arrow bitmaps, or clear the fringes if no bitmaps are required
1711 before DESIRED_ROW is made current. The window being updated is
1712 found in updated_window. This function is called from
1713 update_window_line only if it is known that there are differences
1714 between bitmaps to be drawn between current row and DESIRED_ROW. */
1715
1716 static void
1717 x_after_update_window_line (desired_row)
1718 struct glyph_row *desired_row;
1719 {
1720 struct window *w = updated_window;
1721 struct frame *f;
1722 int width, height;
1723
1724 xassert (w);
1725
1726 if (!desired_row->mode_line_p && !w->pseudo_window_p)
1727 desired_row->redraw_fringe_bitmaps_p = 1;
1728
1729 /* When a window has disappeared, make sure that no rest of
1730 full-width rows stays visible in the internal border. Could
1731 check here if updated_window is the leftmost/rightmost window,
1732 but I guess it's not worth doing since vertically split windows
1733 are almost never used, internal border is rarely set, and the
1734 overhead is very small. */
1735 if (windows_or_buffers_changed
1736 && desired_row->full_width_p
1737 && (f = XFRAME (w->frame),
1738 width = FRAME_INTERNAL_BORDER_WIDTH (f),
1739 width != 0)
1740 && (height = desired_row->visible_height,
1741 height > 0))
1742 {
1743 int y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, desired_row->y));
1744
1745 /* Internal border is drawn below the tool bar. */
1746 if (WINDOWP (f->tool_bar_window)
1747 && w == XWINDOW (f->tool_bar_window))
1748 y -= width;
1749
1750 BLOCK_INPUT;
1751 mac_clear_area (f, 0, y, width, height);
1752 mac_clear_area (f, FRAME_PIXEL_WIDTH (f) - width, y, width, height);
1753 UNBLOCK_INPUT;
1754 }
1755 }
1756
1757
1758 /* Draw the bitmap WHICH in one of the left or right fringes of
1759 window W. ROW is the glyph row for which to display the bitmap; it
1760 determines the vertical position at which the bitmap has to be
1761 drawn. */
1762
1763 static void
1764 x_draw_fringe_bitmap (w, row, p)
1765 struct window *w;
1766 struct glyph_row *row;
1767 struct draw_fringe_bitmap_params *p;
1768 {
1769 struct frame *f = XFRAME (WINDOW_FRAME (w));
1770 Display *display = FRAME_MAC_DISPLAY (f);
1771 struct face *face = p->face;
1772 int rowY;
1773
1774 /* Must clip because of partially visible lines. */
1775 rowY = WINDOW_TO_FRAME_PIXEL_Y (w, row->y);
1776 if (p->y < rowY)
1777 {
1778 /* Adjust position of "bottom aligned" bitmap on partially
1779 visible last row. */
1780 int oldY = row->y;
1781 int oldVH = row->visible_height;
1782 row->visible_height = p->h;
1783 row->y -= rowY - p->y;
1784 x_clip_to_row (w, row, -1, face->gc);
1785 row->y = oldY;
1786 row->visible_height = oldVH;
1787 }
1788 else
1789 x_clip_to_row (w, row, -1, face->gc);
1790
1791 if (p->bx >= 0 && !p->overlay_p)
1792 {
1793 #if 0 /* MAC_TODO: stipple */
1794 /* In case the same realized face is used for fringes and
1795 for something displayed in the text (e.g. face `region' on
1796 mono-displays, the fill style may have been changed to
1797 FillSolid in x_draw_glyph_string_background. */
1798 if (face->stipple)
1799 XSetFillStyle (FRAME_X_DISPLAY (f), face->gc, FillOpaqueStippled);
1800 else
1801 XSetForeground (FRAME_X_DISPLAY (f), face->gc, face->background);
1802 #endif
1803
1804 mac_erase_rectangle (f, face->gc, p->bx, p->by, p->nx, p->ny);
1805
1806 #if 0 /* MAC_TODO: stipple */
1807 if (!face->stipple)
1808 XSetForeground (FRAME_X_DISPLAY (f), face->gc, face->foreground);
1809 #endif
1810 }
1811
1812 if (p->which)
1813 {
1814 unsigned short *bits = p->bits + p->dh;
1815 XGCValues gcv;
1816
1817 XGetGCValues (display, face->gc, GCForeground, &gcv);
1818 XSetForeground (display, face->gc,
1819 (p->cursor_p
1820 ? (p->overlay_p ? face->background
1821 : f->output_data.mac->cursor_pixel)
1822 : face->foreground));
1823 mac_draw_bitmap (f, face->gc, p->x, p->y,
1824 p->wd, p->h, bits, p->overlay_p);
1825 XSetForeground (display, face->gc, gcv.foreground);
1826 }
1827
1828 mac_reset_clip_rectangles (display, face->gc);
1829 }
1830
1831 \f
1832
1833 /* This is called when starting Emacs and when restarting after
1834 suspend. When starting Emacs, no window is mapped. And nothing
1835 must be done to Emacs's own window if it is suspended (though that
1836 rarely happens). */
1837
1838 static void
1839 XTset_terminal_modes ()
1840 {
1841 }
1842
1843 /* This is called when exiting or suspending Emacs. Exiting will make
1844 the windows go away, and suspending requires no action. */
1845
1846 static void
1847 XTreset_terminal_modes ()
1848 {
1849 }
1850
1851
1852 \f
1853 /***********************************************************************
1854 Display Iterator
1855 ***********************************************************************/
1856
1857 /* Function prototypes of this page. */
1858
1859 static XCharStruct *x_per_char_metric P_ ((XFontStruct *, XChar2b *));
1860 static int mac_encode_char P_ ((int, XChar2b *, struct font_info *, int *));
1861
1862
1863 /* Get metrics of character CHAR2B in FONT. Value is null if CHAR2B
1864 is not contained in the font. */
1865
1866 static INLINE XCharStruct *
1867 x_per_char_metric (font, char2b)
1868 XFontStruct *font;
1869 XChar2b *char2b;
1870 {
1871 /* The result metric information. */
1872 XCharStruct *pcm = NULL;
1873
1874 xassert (font && char2b);
1875
1876 #if USE_ATSUI
1877 if (font->mac_style)
1878 {
1879 XCharStructRow **row = font->bounds.rows + char2b->byte1;
1880
1881 if (*row == NULL)
1882 {
1883 *row = xmalloc (sizeof (XCharStructRow));
1884 if (*row)
1885 bzero (*row, sizeof (XCharStructRow));
1886 }
1887 if (*row)
1888 {
1889 pcm = (*row)->per_char + char2b->byte2;
1890 if (!XCHARSTRUCTROW_CHAR_VALID_P (*row, char2b->byte2))
1891 {
1892 BLOCK_INPUT;
1893 mac_query_char_extents (font->mac_style,
1894 (char2b->byte1 << 8) + char2b->byte2,
1895 NULL, NULL, pcm, NULL);
1896 UNBLOCK_INPUT;
1897 XCHARSTRUCTROW_SET_CHAR_VALID (*row, char2b->byte2);
1898 }
1899 }
1900 }
1901 else
1902 {
1903 #endif
1904 if (font->bounds.per_char != NULL)
1905 {
1906 if (font->min_byte1 == 0 && font->max_byte1 == 0)
1907 {
1908 /* min_char_or_byte2 specifies the linear character index
1909 corresponding to the first element of the per_char array,
1910 max_char_or_byte2 is the index of the last character. A
1911 character with non-zero CHAR2B->byte1 is not in the font.
1912 A character with byte2 less than min_char_or_byte2 or
1913 greater max_char_or_byte2 is not in the font. */
1914 if (char2b->byte1 == 0
1915 && char2b->byte2 >= font->min_char_or_byte2
1916 && char2b->byte2 <= font->max_char_or_byte2)
1917 pcm = font->bounds.per_char
1918 + (char2b->byte2 - font->min_char_or_byte2);
1919 }
1920 else
1921 {
1922 /* If either min_byte1 or max_byte1 are nonzero, both
1923 min_char_or_byte2 and max_char_or_byte2 are less than
1924 256, and the 2-byte character index values corresponding
1925 to the per_char array element N (counting from 0) are:
1926
1927 byte1 = N/D + min_byte1
1928 byte2 = N\D + min_char_or_byte2
1929
1930 where:
1931
1932 D = max_char_or_byte2 - min_char_or_byte2 + 1
1933 / = integer division
1934 \ = integer modulus */
1935 if (char2b->byte1 >= font->min_byte1
1936 && char2b->byte1 <= font->max_byte1
1937 && char2b->byte2 >= font->min_char_or_byte2
1938 && char2b->byte2 <= font->max_char_or_byte2)
1939 {
1940 pcm = (font->bounds.per_char
1941 + ((font->max_char_or_byte2 - font->min_char_or_byte2 + 1)
1942 * (char2b->byte1 - font->min_byte1))
1943 + (char2b->byte2 - font->min_char_or_byte2));
1944 }
1945 }
1946 }
1947 else
1948 {
1949 /* If the per_char pointer is null, all glyphs between the first
1950 and last character indexes inclusive have the same
1951 information, as given by both min_bounds and max_bounds. */
1952 if (char2b->byte2 >= font->min_char_or_byte2
1953 && char2b->byte2 <= font->max_char_or_byte2)
1954 pcm = &font->max_bounds;
1955 }
1956 #if USE_ATSUI
1957 }
1958 #endif
1959
1960 return ((pcm == NULL
1961 || (pcm->width == 0 && (pcm->rbearing - pcm->lbearing) == 0))
1962 ? NULL : pcm);
1963 }
1964
1965 /* RIF:
1966 */
1967
1968 static XCharStruct *
1969 mac_per_char_metric (font, char2b, font_type)
1970 XFontStruct *font;
1971 XChar2b *char2b;
1972 int font_type;
1973 {
1974 return x_per_char_metric (font, char2b);
1975 }
1976
1977 /* RIF:
1978 Encode CHAR2B using encoding information from FONT_INFO. CHAR2B is
1979 the two-byte form of C. Encoding is returned in *CHAR2B. */
1980
1981 static int
1982 mac_encode_char (c, char2b, font_info, two_byte_p)
1983 int c;
1984 XChar2b *char2b;
1985 struct font_info *font_info;
1986 int *two_byte_p;
1987 {
1988 int charset = CHAR_CHARSET (c);
1989 XFontStruct *font = font_info->font;
1990
1991 /* FONT_INFO may define a scheme by which to encode byte1 and byte2.
1992 This may be either a program in a special encoder language or a
1993 fixed encoding. */
1994 if (font_info->font_encoder)
1995 {
1996 /* It's a program. */
1997 struct ccl_program *ccl = font_info->font_encoder;
1998
1999 check_ccl_update (ccl);
2000 if (CHARSET_DIMENSION (charset) == 1)
2001 {
2002 ccl->reg[0] = charset;
2003 ccl->reg[1] = char2b->byte2;
2004 ccl->reg[2] = -1;
2005 }
2006 else
2007 {
2008 ccl->reg[0] = charset;
2009 ccl->reg[1] = char2b->byte1;
2010 ccl->reg[2] = char2b->byte2;
2011 }
2012
2013 ccl_driver (ccl, NULL, NULL, 0, 0, NULL);
2014
2015 /* We assume that MSBs are appropriately set/reset by CCL
2016 program. */
2017 if (font->max_byte1 == 0) /* 1-byte font */
2018 char2b->byte1 = 0, char2b->byte2 = ccl->reg[1];
2019 else
2020 char2b->byte1 = ccl->reg[1], char2b->byte2 = ccl->reg[2];
2021 }
2022 else if (font_info->encoding[charset])
2023 {
2024 /* Fixed encoding scheme. See fontset.h for the meaning of the
2025 encoding numbers. */
2026 int enc = font_info->encoding[charset];
2027
2028 if ((enc == 1 || enc == 2)
2029 && CHARSET_DIMENSION (charset) == 2)
2030 char2b->byte1 |= 0x80;
2031
2032 if (enc == 1 || enc == 3)
2033 char2b->byte2 |= 0x80;
2034
2035 if (enc == 4)
2036 {
2037 int sjis1, sjis2;
2038
2039 ENCODE_SJIS (char2b->byte1, char2b->byte2, sjis1, sjis2);
2040 char2b->byte1 = sjis1;
2041 char2b->byte2 = sjis2;
2042 }
2043 }
2044
2045 if (two_byte_p)
2046 *two_byte_p = ((XFontStruct *) (font_info->font))->max_byte1 > 0;
2047
2048 return FONT_TYPE_UNKNOWN;
2049 }
2050
2051
2052 \f
2053 /***********************************************************************
2054 Glyph display
2055 ***********************************************************************/
2056
2057
2058
2059 static void x_set_glyph_string_clipping P_ ((struct glyph_string *));
2060 static void x_set_glyph_string_gc P_ ((struct glyph_string *));
2061 static void x_draw_glyph_string_background P_ ((struct glyph_string *,
2062 int));
2063 static void x_draw_glyph_string_foreground P_ ((struct glyph_string *));
2064 static void x_draw_composite_glyph_string_foreground P_ ((struct glyph_string *));
2065 static void x_draw_glyph_string_box P_ ((struct glyph_string *));
2066 static void x_draw_glyph_string P_ ((struct glyph_string *));
2067 static void mac_compute_glyph_string_overhangs P_ ((struct glyph_string *));
2068 static void x_set_cursor_gc P_ ((struct glyph_string *));
2069 static void x_set_mode_line_face_gc P_ ((struct glyph_string *));
2070 static void x_set_mouse_face_gc P_ ((struct glyph_string *));
2071 /*static int x_alloc_lighter_color P_ ((struct frame *, Display *, Colormap,
2072 unsigned long *, double, int));*/
2073 static void x_setup_relief_color P_ ((struct frame *, struct relief *,
2074 double, int, unsigned long));
2075 static void x_setup_relief_colors P_ ((struct glyph_string *));
2076 static void x_draw_image_glyph_string P_ ((struct glyph_string *));
2077 static void x_draw_image_relief P_ ((struct glyph_string *));
2078 static void x_draw_image_foreground P_ ((struct glyph_string *));
2079 static void x_draw_image_foreground_1 P_ ((struct glyph_string *, Pixmap));
2080 static void x_clear_glyph_string_rect P_ ((struct glyph_string *, int,
2081 int, int, int));
2082 static void x_draw_relief_rect P_ ((struct frame *, int, int, int, int,
2083 int, int, int, int, int, int,
2084 Rect *));
2085 static void x_draw_box_rect P_ ((struct glyph_string *, int, int, int, int,
2086 int, int, int, Rect *));
2087
2088 #if GLYPH_DEBUG
2089 static void x_check_font P_ ((struct frame *, XFontStruct *));
2090 #endif
2091
2092
2093 /* Set S->gc to a suitable GC for drawing glyph string S in cursor
2094 face. */
2095
2096 static void
2097 x_set_cursor_gc (s)
2098 struct glyph_string *s;
2099 {
2100 if (s->font == FRAME_FONT (s->f)
2101 && s->face->background == FRAME_BACKGROUND_PIXEL (s->f)
2102 && s->face->foreground == FRAME_FOREGROUND_PIXEL (s->f)
2103 && !s->cmp)
2104 s->gc = s->f->output_data.mac->cursor_gc;
2105 else
2106 {
2107 /* Cursor on non-default face: must merge. */
2108 XGCValues xgcv;
2109 unsigned long mask;
2110
2111 xgcv.background = s->f->output_data.mac->cursor_pixel;
2112 xgcv.foreground = s->face->background;
2113
2114 /* If the glyph would be invisible, try a different foreground. */
2115 if (xgcv.foreground == xgcv.background)
2116 xgcv.foreground = s->face->foreground;
2117 if (xgcv.foreground == xgcv.background)
2118 xgcv.foreground = s->f->output_data.mac->cursor_foreground_pixel;
2119 if (xgcv.foreground == xgcv.background)
2120 xgcv.foreground = s->face->foreground;
2121
2122 /* Make sure the cursor is distinct from text in this face. */
2123 if (xgcv.background == s->face->background
2124 && xgcv.foreground == s->face->foreground)
2125 {
2126 xgcv.background = s->face->foreground;
2127 xgcv.foreground = s->face->background;
2128 }
2129
2130 IF_DEBUG (x_check_font (s->f, s->font));
2131 xgcv.font = s->font;
2132 mask = GCForeground | GCBackground | GCFont;
2133
2134 if (FRAME_MAC_DISPLAY_INFO (s->f)->scratch_cursor_gc)
2135 XChangeGC (s->display, FRAME_MAC_DISPLAY_INFO (s->f)->scratch_cursor_gc,
2136 mask, &xgcv);
2137 else
2138 FRAME_MAC_DISPLAY_INFO (s->f)->scratch_cursor_gc
2139 = XCreateGC (s->display, s->window, mask, &xgcv);
2140
2141 s->gc = FRAME_MAC_DISPLAY_INFO (s->f)->scratch_cursor_gc;
2142 }
2143 }
2144
2145
2146 /* Set up S->gc of glyph string S for drawing text in mouse face. */
2147
2148 static void
2149 x_set_mouse_face_gc (s)
2150 struct glyph_string *s;
2151 {
2152 int face_id;
2153 struct face *face;
2154
2155 /* What face has to be used last for the mouse face? */
2156 face_id = FRAME_X_DISPLAY_INFO (s->f)->mouse_face_face_id;
2157 face = FACE_FROM_ID (s->f, face_id);
2158 if (face == NULL)
2159 face = FACE_FROM_ID (s->f, MOUSE_FACE_ID);
2160
2161 if (s->first_glyph->type == CHAR_GLYPH)
2162 face_id = FACE_FOR_CHAR (s->f, face, s->first_glyph->u.ch);
2163 else
2164 face_id = FACE_FOR_CHAR (s->f, face, 0);
2165 s->face = FACE_FROM_ID (s->f, face_id);
2166 PREPARE_FACE_FOR_DISPLAY (s->f, s->face);
2167
2168 /* If font in this face is same as S->font, use it. */
2169 if (s->font == s->face->font)
2170 s->gc = s->face->gc;
2171 else
2172 {
2173 /* Otherwise construct scratch_cursor_gc with values from FACE
2174 but font FONT. */
2175 XGCValues xgcv;
2176 unsigned long mask;
2177
2178 xgcv.background = s->face->background;
2179 xgcv.foreground = s->face->foreground;
2180 IF_DEBUG (x_check_font (s->f, s->font));
2181 xgcv.font = s->font;
2182 mask = GCForeground | GCBackground | GCFont;
2183
2184 if (FRAME_MAC_DISPLAY_INFO (s->f)->scratch_cursor_gc)
2185 XChangeGC (s->display, FRAME_MAC_DISPLAY_INFO (s->f)->scratch_cursor_gc,
2186 mask, &xgcv);
2187 else
2188 FRAME_MAC_DISPLAY_INFO (s->f)->scratch_cursor_gc
2189 = XCreateGC (s->display, s->window, mask, &xgcv);
2190
2191 s->gc = FRAME_MAC_DISPLAY_INFO (s->f)->scratch_cursor_gc;
2192 }
2193
2194 xassert (s->gc != 0);
2195 }
2196
2197
2198 /* Set S->gc of glyph string S to a GC suitable for drawing a mode line.
2199 Faces to use in the mode line have already been computed when the
2200 matrix was built, so there isn't much to do, here. */
2201
2202 static INLINE void
2203 x_set_mode_line_face_gc (s)
2204 struct glyph_string *s;
2205 {
2206 s->gc = s->face->gc;
2207 }
2208
2209
2210 /* Set S->gc of glyph string S for drawing that glyph string. Set
2211 S->stippled_p to a non-zero value if the face of S has a stipple
2212 pattern. */
2213
2214 static INLINE void
2215 x_set_glyph_string_gc (s)
2216 struct glyph_string *s;
2217 {
2218 PREPARE_FACE_FOR_DISPLAY (s->f, s->face);
2219
2220 if (s->hl == DRAW_NORMAL_TEXT)
2221 {
2222 s->gc = s->face->gc;
2223 s->stippled_p = s->face->stipple != 0;
2224 }
2225 else if (s->hl == DRAW_INVERSE_VIDEO)
2226 {
2227 x_set_mode_line_face_gc (s);
2228 s->stippled_p = s->face->stipple != 0;
2229 }
2230 else if (s->hl == DRAW_CURSOR)
2231 {
2232 x_set_cursor_gc (s);
2233 s->stippled_p = 0;
2234 }
2235 else if (s->hl == DRAW_MOUSE_FACE)
2236 {
2237 x_set_mouse_face_gc (s);
2238 s->stippled_p = s->face->stipple != 0;
2239 }
2240 else if (s->hl == DRAW_IMAGE_RAISED
2241 || s->hl == DRAW_IMAGE_SUNKEN)
2242 {
2243 s->gc = s->face->gc;
2244 s->stippled_p = s->face->stipple != 0;
2245 }
2246 else
2247 {
2248 s->gc = s->face->gc;
2249 s->stippled_p = s->face->stipple != 0;
2250 }
2251
2252 /* GC must have been set. */
2253 xassert (s->gc != 0);
2254 }
2255
2256
2257 /* Set clipping for output of glyph string S. S may be part of a mode
2258 line or menu if we don't have X toolkit support. */
2259
2260 static INLINE void
2261 x_set_glyph_string_clipping (s)
2262 struct glyph_string *s;
2263 {
2264 Rect rects[MAX_CLIP_RECTS];
2265 int n;
2266
2267 n = get_glyph_string_clip_rects (s, rects, MAX_CLIP_RECTS);
2268 mac_set_clip_rectangles (s->display, s->gc, rects, n);
2269 }
2270
2271
2272 /* RIF:
2273 Compute left and right overhang of glyph string S. If S is a glyph
2274 string for a composition, assume overhangs don't exist. */
2275
2276 static void
2277 mac_compute_glyph_string_overhangs (s)
2278 struct glyph_string *s;
2279 {
2280 if (s->cmp == NULL
2281 && s->first_glyph->type == CHAR_GLYPH)
2282 if (!s->two_byte_p
2283 #if USE_ATSUI
2284 || s->font->mac_style
2285 #endif
2286 )
2287 {
2288 XCharStruct cs;
2289
2290 mac_text_extents_16 (s->font, s->char2b, s->nchars, &cs);
2291 s->right_overhang = cs.rbearing > cs.width ? cs.rbearing - cs.width : 0;
2292 s->left_overhang = cs.lbearing < 0 ? -cs.lbearing : 0;
2293 }
2294 else
2295 {
2296 Rect r;
2297 MacFontStruct *font = s->font;
2298
2299 TextFont (font->mac_fontnum);
2300 TextSize (font->mac_fontsize);
2301 TextFace (font->mac_fontface);
2302
2303 QDTextBounds (s->nchars * 2, (char *)s->char2b, &r);
2304
2305 s->right_overhang = r.right > s->width ? r.right - s->width : 0;
2306 s->left_overhang = r.left < 0 ? -r.left : 0;
2307 }
2308 }
2309
2310
2311 /* Fill rectangle X, Y, W, H with background color of glyph string S. */
2312
2313 static INLINE void
2314 x_clear_glyph_string_rect (s, x, y, w, h)
2315 struct glyph_string *s;
2316 int x, y, w, h;
2317 {
2318 mac_erase_rectangle (s->f, s->gc, x, y, w, h);
2319 }
2320
2321
2322 /* We prefer not to use XDrawImageString (srcCopy text transfer mode)
2323 on Mac OS X because:
2324 - Screen is double-buffered. (In srcCopy mode, a text is drawn
2325 into an offscreen graphics world first. So performance gain
2326 cannot be expected.)
2327 - It lowers rendering quality.
2328 - Some fonts leave garbage on cursor movement. */
2329
2330 /* Draw the background of glyph_string S. If S->background_filled_p
2331 is non-zero don't draw it. FORCE_P non-zero means draw the
2332 background even if it wouldn't be drawn normally. This is used
2333 when a string preceding S draws into the background of S, or S
2334 contains the first component of a composition. */
2335
2336 static void
2337 x_draw_glyph_string_background (s, force_p)
2338 struct glyph_string *s;
2339 int force_p;
2340 {
2341 /* Nothing to do if background has already been drawn or if it
2342 shouldn't be drawn in the first place. */
2343 if (!s->background_filled_p)
2344 {
2345 int box_line_width = max (s->face->box_line_width, 0);
2346
2347 #if 0 /* MAC_TODO: stipple */
2348 if (s->stippled_p)
2349 {
2350 /* Fill background with a stipple pattern. */
2351 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
2352 XFillRectangle (s->display, s->window, s->gc, s->x,
2353 s->y + box_line_width,
2354 s->background_width,
2355 s->height - 2 * box_line_width);
2356 XSetFillStyle (s->display, s->gc, FillSolid);
2357 s->background_filled_p = 1;
2358 }
2359 else
2360 #endif
2361 #if defined (MAC_OS8) && !USE_ATSUI
2362 if (FONT_HEIGHT (s->font) < s->height - 2 * box_line_width
2363 || s->font_not_found_p
2364 || s->extends_to_end_of_line_p
2365 || force_p)
2366 #endif
2367 {
2368 x_clear_glyph_string_rect (s, s->x, s->y + box_line_width,
2369 s->background_width,
2370 s->height - 2 * box_line_width);
2371 s->background_filled_p = 1;
2372 }
2373 }
2374 }
2375
2376
2377 /* Draw the foreground of glyph string S. */
2378
2379 static void
2380 x_draw_glyph_string_foreground (s)
2381 struct glyph_string *s;
2382 {
2383 int i, x;
2384
2385 /* If first glyph of S has a left box line, start drawing the text
2386 of S to the right of that box line. */
2387 if (s->face->box != FACE_NO_BOX
2388 && s->first_glyph->left_box_line_p)
2389 x = s->x + abs (s->face->box_line_width);
2390 else
2391 x = s->x;
2392
2393 /* Draw characters of S as rectangles if S's font could not be
2394 loaded. */
2395 if (s->font_not_found_p)
2396 {
2397 for (i = 0; i < s->nchars; ++i)
2398 {
2399 struct glyph *g = s->first_glyph + i;
2400 mac_draw_rectangle (s->f, s->gc, x, s->y,
2401 g->pixel_width - 1, s->height - 1);
2402 x += g->pixel_width;
2403 }
2404 }
2405 else
2406 {
2407 char *char1b = (char *) s->char2b;
2408 int boff = s->font_info->baseline_offset;
2409
2410 if (s->font_info->vertical_centering)
2411 boff = VCENTER_BASELINE_OFFSET (s->font, s->f) - boff;
2412
2413 /* If we can use 8-bit functions, condense S->char2b. */
2414 if (!s->two_byte_p
2415 #if USE_ATSUI
2416 && GC_FONT (s->gc)->mac_style == NULL
2417 #endif
2418 )
2419 for (i = 0; i < s->nchars; ++i)
2420 char1b[i] = s->char2b[i].byte2;
2421
2422 #if defined (MAC_OS8) && !USE_ATSUI
2423 /* Draw text with XDrawString if background has already been
2424 filled. Otherwise, use XDrawImageString. (Note that
2425 XDrawImageString is usually faster than XDrawString.) Always
2426 use XDrawImageString when drawing the cursor so that there is
2427 no chance that characters under a box cursor are invisible. */
2428 if (s->for_overlaps
2429 || (s->background_filled_p && s->hl != DRAW_CURSOR))
2430 #endif
2431 {
2432 /* Draw characters with 16-bit or 8-bit functions. */
2433 if (s->two_byte_p
2434 #if USE_ATSUI
2435 || GC_FONT (s->gc)->mac_style
2436 #endif
2437 )
2438 #if USE_CG_TEXT_DRAWING
2439 if (!s->two_byte_p
2440 && mac_draw_string_cg (s->f, s->gc, x, s->ybase - boff,
2441 s->char2b, s->nchars))
2442 ;
2443 else
2444 #endif
2445 mac_draw_string_16 (s->f, s->gc, x, s->ybase - boff,
2446 s->char2b, s->nchars);
2447 else
2448 mac_draw_string (s->f, s->gc, x, s->ybase - boff,
2449 char1b, s->nchars);
2450 }
2451 #if defined (MAC_OS8) && !USE_ATSUI
2452 else
2453 {
2454 if (s->two_byte_p)
2455 mac_draw_image_string_16 (s->f, s->gc, x, s->ybase - boff,
2456 s->char2b, s->nchars);
2457 else
2458 mac_draw_image_string (s->f, s->gc, x, s->ybase - boff,
2459 char1b, s->nchars);
2460 }
2461 #endif
2462 }
2463 }
2464
2465 /* Draw the foreground of composite glyph string S. */
2466
2467 static void
2468 x_draw_composite_glyph_string_foreground (s)
2469 struct glyph_string *s;
2470 {
2471 int i, x;
2472
2473 /* If first glyph of S has a left box line, start drawing the text
2474 of S to the right of that box line. */
2475 if (s->face->box != FACE_NO_BOX
2476 && s->first_glyph->left_box_line_p)
2477 x = s->x + abs (s->face->box_line_width);
2478 else
2479 x = s->x;
2480
2481 /* S is a glyph string for a composition. S->gidx is the index of
2482 the first character drawn for glyphs of this composition.
2483 S->gidx == 0 means we are drawing the very first character of
2484 this composition. */
2485
2486 /* Draw a rectangle for the composition if the font for the very
2487 first character of the composition could not be loaded. */
2488 if (s->font_not_found_p)
2489 {
2490 if (s->gidx == 0)
2491 mac_draw_rectangle (s->f, s->gc, x, s->y,
2492 s->width - 1, s->height - 1);
2493 }
2494 else
2495 {
2496 for (i = 0; i < s->nchars; i++, ++s->gidx)
2497 mac_draw_string_16 (s->f, s->gc,
2498 x + s->cmp->offsets[s->gidx * 2],
2499 s->ybase - s->cmp->offsets[s->gidx * 2 + 1],
2500 s->char2b + i, 1);
2501 }
2502 }
2503
2504
2505 #ifdef USE_X_TOOLKIT
2506
2507 static struct frame *x_frame_of_widget P_ ((Widget));
2508
2509
2510 /* Return the frame on which widget WIDGET is used.. Abort if frame
2511 cannot be determined. */
2512
2513 static struct frame *
2514 x_frame_of_widget (widget)
2515 Widget widget;
2516 {
2517 struct x_display_info *dpyinfo;
2518 Lisp_Object tail;
2519 struct frame *f;
2520
2521 dpyinfo = x_display_info_for_display (XtDisplay (widget));
2522
2523 /* Find the top-level shell of the widget. Note that this function
2524 can be called when the widget is not yet realized, so XtWindow
2525 (widget) == 0. That's the reason we can't simply use
2526 x_any_window_to_frame. */
2527 while (!XtIsTopLevelShell (widget))
2528 widget = XtParent (widget);
2529
2530 /* Look for a frame with that top-level widget. Allocate the color
2531 on that frame to get the right gamma correction value. */
2532 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
2533 if (GC_FRAMEP (XCAR (tail))
2534 && (f = XFRAME (XCAR (tail)),
2535 (f->output_data.nothing != 1
2536 && FRAME_X_DISPLAY_INFO (f) == dpyinfo))
2537 && f->output_data.x->widget == widget)
2538 return f;
2539
2540 abort ();
2541 }
2542
2543
2544 /* Allocate the color COLOR->pixel on the screen and display of
2545 widget WIDGET in colormap CMAP. If an exact match cannot be
2546 allocated, try the nearest color available. Value is non-zero
2547 if successful. This is called from lwlib. */
2548
2549 int
2550 x_alloc_nearest_color_for_widget (widget, cmap, color)
2551 Widget widget;
2552 Colormap cmap;
2553 XColor *color;
2554 {
2555 struct frame *f = x_frame_of_widget (widget);
2556 return x_alloc_nearest_color (f, cmap, color);
2557 }
2558
2559
2560 #endif /* USE_X_TOOLKIT */
2561
2562 #if 0 /* MAC_TODO */
2563
2564 /* Allocate the color COLOR->pixel on SCREEN of DISPLAY, colormap
2565 CMAP. If an exact match can't be allocated, try the nearest color
2566 available. Value is non-zero if successful. Set *COLOR to the
2567 color allocated. */
2568
2569 int
2570 x_alloc_nearest_color (f, cmap, color)
2571 struct frame *f;
2572 Colormap cmap;
2573 XColor *color;
2574 {
2575 Display *display = FRAME_X_DISPLAY (f);
2576 Screen *screen = FRAME_X_SCREEN (f);
2577 int rc;
2578
2579 gamma_correct (f, color);
2580 rc = XAllocColor (display, cmap, color);
2581 if (rc == 0)
2582 {
2583 /* If we got to this point, the colormap is full, so we're going
2584 to try to get the next closest color. The algorithm used is
2585 a least-squares matching, which is what X uses for closest
2586 color matching with StaticColor visuals. */
2587 int nearest, i;
2588 unsigned long nearest_delta = ~0;
2589 int ncells = XDisplayCells (display, XScreenNumberOfScreen (screen));
2590 XColor *cells = (XColor *) alloca (ncells * sizeof *cells);
2591
2592 for (i = 0; i < ncells; ++i)
2593 cells[i].pixel = i;
2594 XQueryColors (display, cmap, cells, ncells);
2595
2596 for (nearest = i = 0; i < ncells; ++i)
2597 {
2598 long dred = (color->red >> 8) - (cells[i].red >> 8);
2599 long dgreen = (color->green >> 8) - (cells[i].green >> 8);
2600 long dblue = (color->blue >> 8) - (cells[i].blue >> 8);
2601 unsigned long delta = dred * dred + dgreen * dgreen + dblue * dblue;
2602
2603 if (delta < nearest_delta)
2604 {
2605 nearest = i;
2606 nearest_delta = delta;
2607 }
2608 }
2609
2610 color->red = cells[nearest].red;
2611 color->green = cells[nearest].green;
2612 color->blue = cells[nearest].blue;
2613 rc = XAllocColor (display, cmap, color);
2614 }
2615
2616 #ifdef DEBUG_X_COLORS
2617 if (rc)
2618 register_color (color->pixel);
2619 #endif /* DEBUG_X_COLORS */
2620
2621 return rc;
2622 }
2623
2624
2625 /* Allocate color PIXEL on frame F. PIXEL must already be allocated.
2626 It's necessary to do this instead of just using PIXEL directly to
2627 get color reference counts right. */
2628
2629 unsigned long
2630 x_copy_color (f, pixel)
2631 struct frame *f;
2632 unsigned long pixel;
2633 {
2634 XColor color;
2635
2636 color.pixel = pixel;
2637 BLOCK_INPUT;
2638 XQueryColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f), &color);
2639 XAllocColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f), &color);
2640 UNBLOCK_INPUT;
2641 #ifdef DEBUG_X_COLORS
2642 register_color (pixel);
2643 #endif
2644 return color.pixel;
2645 }
2646
2647
2648 /* Allocate color PIXEL on display DPY. PIXEL must already be allocated.
2649 It's necessary to do this instead of just using PIXEL directly to
2650 get color reference counts right. */
2651
2652 unsigned long
2653 x_copy_dpy_color (dpy, cmap, pixel)
2654 Display *dpy;
2655 Colormap cmap;
2656 unsigned long pixel;
2657 {
2658 XColor color;
2659
2660 color.pixel = pixel;
2661 BLOCK_INPUT;
2662 XQueryColor (dpy, cmap, &color);
2663 XAllocColor (dpy, cmap, &color);
2664 UNBLOCK_INPUT;
2665 #ifdef DEBUG_X_COLORS
2666 register_color (pixel);
2667 #endif
2668 return color.pixel;
2669 }
2670
2671 #endif /* MAC_TODO */
2672
2673
2674 /* Brightness beyond which a color won't have its highlight brightness
2675 boosted.
2676
2677 Nominally, highlight colors for `3d' faces are calculated by
2678 brightening an object's color by a constant scale factor, but this
2679 doesn't yield good results for dark colors, so for colors who's
2680 brightness is less than this value (on a scale of 0-255) have to
2681 use an additional additive factor.
2682
2683 The value here is set so that the default menu-bar/mode-line color
2684 (grey75) will not have its highlights changed at all. */
2685 #define HIGHLIGHT_COLOR_DARK_BOOST_LIMIT 187
2686
2687
2688 /* Allocate a color which is lighter or darker than *COLOR by FACTOR
2689 or DELTA. Try a color with RGB values multiplied by FACTOR first.
2690 If this produces the same color as COLOR, try a color where all RGB
2691 values have DELTA added. Return the allocated color in *COLOR.
2692 DISPLAY is the X display, CMAP is the colormap to operate on.
2693 Value is non-zero if successful. */
2694
2695 static int
2696 mac_alloc_lighter_color (f, color, factor, delta)
2697 struct frame *f;
2698 unsigned long *color;
2699 double factor;
2700 int delta;
2701 {
2702 unsigned long new;
2703 long bright;
2704
2705 /* On Mac, RGB values are 0-255, not 0-65535, so scale delta. */
2706 delta /= 256;
2707
2708 /* Change RGB values by specified FACTOR. Avoid overflow! */
2709 xassert (factor >= 0);
2710 new = RGB_TO_ULONG (min (0xff, (int) (factor * RED_FROM_ULONG (*color))),
2711 min (0xff, (int) (factor * GREEN_FROM_ULONG (*color))),
2712 min (0xff, (int) (factor * BLUE_FROM_ULONG (*color))));
2713
2714 /* Calculate brightness of COLOR. */
2715 bright = (2 * RED_FROM_ULONG (*color) + 3 * GREEN_FROM_ULONG (*color)
2716 + BLUE_FROM_ULONG (*color)) / 6;
2717
2718 /* We only boost colors that are darker than
2719 HIGHLIGHT_COLOR_DARK_BOOST_LIMIT. */
2720 if (bright < HIGHLIGHT_COLOR_DARK_BOOST_LIMIT)
2721 /* Make an additive adjustment to NEW, because it's dark enough so
2722 that scaling by FACTOR alone isn't enough. */
2723 {
2724 /* How far below the limit this color is (0 - 1, 1 being darker). */
2725 double dimness = 1 - (double)bright / HIGHLIGHT_COLOR_DARK_BOOST_LIMIT;
2726 /* The additive adjustment. */
2727 int min_delta = delta * dimness * factor / 2;
2728
2729 if (factor < 1)
2730 new = RGB_TO_ULONG (max (0, min (0xff, (int) (RED_FROM_ULONG (*color)) - min_delta)),
2731 max (0, min (0xff, (int) (GREEN_FROM_ULONG (*color)) - min_delta)),
2732 max (0, min (0xff, (int) (BLUE_FROM_ULONG (*color)) - min_delta)));
2733 else
2734 new = RGB_TO_ULONG (max (0, min (0xff, (int) (min_delta + RED_FROM_ULONG (*color)))),
2735 max (0, min (0xff, (int) (min_delta + GREEN_FROM_ULONG (*color)))),
2736 max (0, min (0xff, (int) (min_delta + BLUE_FROM_ULONG (*color)))));
2737 }
2738
2739 if (new == *color)
2740 new = RGB_TO_ULONG (max (0, min (0xff, (int) (delta + RED_FROM_ULONG (*color)))),
2741 max (0, min (0xff, (int) (delta + GREEN_FROM_ULONG (*color)))),
2742 max (0, min (0xff, (int) (delta + BLUE_FROM_ULONG (*color)))));
2743
2744 /* MAC_TODO: Map to palette and retry with delta if same? */
2745 /* MAC_TODO: Free colors (if using palette)? */
2746
2747 if (new == *color)
2748 return 0;
2749
2750 *color = new;
2751
2752 return 1;
2753 }
2754
2755
2756 /* Set up the foreground color for drawing relief lines of glyph
2757 string S. RELIEF is a pointer to a struct relief containing the GC
2758 with which lines will be drawn. Use a color that is FACTOR or
2759 DELTA lighter or darker than the relief's background which is found
2760 in S->f->output_data.x->relief_background. If such a color cannot
2761 be allocated, use DEFAULT_PIXEL, instead. */
2762
2763 static void
2764 x_setup_relief_color (f, relief, factor, delta, default_pixel)
2765 struct frame *f;
2766 struct relief *relief;
2767 double factor;
2768 int delta;
2769 unsigned long default_pixel;
2770 {
2771 XGCValues xgcv;
2772 struct mac_output *di = f->output_data.mac;
2773 unsigned long mask = GCForeground;
2774 unsigned long pixel;
2775 unsigned long background = di->relief_background;
2776 struct mac_display_info *dpyinfo = FRAME_MAC_DISPLAY_INFO (f);
2777
2778 /* MAC_TODO: Free colors (if using palette)? */
2779
2780 /* Allocate new color. */
2781 xgcv.foreground = default_pixel;
2782 pixel = background;
2783 if (dpyinfo->n_planes != 1
2784 && mac_alloc_lighter_color (f, &pixel, factor, delta))
2785 {
2786 relief->allocated_p = 1;
2787 xgcv.foreground = relief->pixel = pixel;
2788 }
2789
2790 if (relief->gc == 0)
2791 {
2792 #if 0 /* MAC_TODO: stipple */
2793 xgcv.stipple = dpyinfo->gray;
2794 mask |= GCStipple;
2795 #endif
2796 relief->gc = XCreateGC (NULL, FRAME_MAC_WINDOW (f), mask, &xgcv);
2797 }
2798 else
2799 XChangeGC (NULL, relief->gc, mask, &xgcv);
2800 }
2801
2802
2803 /* Set up colors for the relief lines around glyph string S. */
2804
2805 static void
2806 x_setup_relief_colors (s)
2807 struct glyph_string *s;
2808 {
2809 struct mac_output *di = s->f->output_data.mac;
2810 unsigned long color;
2811
2812 if (s->face->use_box_color_for_shadows_p)
2813 color = s->face->box_color;
2814 else if (s->first_glyph->type == IMAGE_GLYPH
2815 && s->img->pixmap
2816 && !IMAGE_BACKGROUND_TRANSPARENT (s->img, s->f, 0))
2817 color = IMAGE_BACKGROUND (s->img, s->f, 0);
2818 else
2819 {
2820 XGCValues xgcv;
2821
2822 /* Get the background color of the face. */
2823 XGetGCValues (s->display, s->gc, GCBackground, &xgcv);
2824 color = xgcv.background;
2825 }
2826
2827 if (di->white_relief.gc == 0
2828 || color != di->relief_background)
2829 {
2830 di->relief_background = color;
2831 x_setup_relief_color (s->f, &di->white_relief, 1.2, 0x8000,
2832 WHITE_PIX_DEFAULT (s->f));
2833 x_setup_relief_color (s->f, &di->black_relief, 0.6, 0x4000,
2834 BLACK_PIX_DEFAULT (s->f));
2835 }
2836 }
2837
2838
2839 /* Draw a relief on frame F inside the rectangle given by LEFT_X,
2840 TOP_Y, RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the relief
2841 to draw, it must be >= 0. RAISED_P non-zero means draw a raised
2842 relief. LEFT_P non-zero means draw a relief on the left side of
2843 the rectangle. RIGHT_P non-zero means draw a relief on the right
2844 side of the rectangle. CLIP_RECT is the clipping rectangle to use
2845 when drawing. */
2846
2847 static void
2848 x_draw_relief_rect (f, left_x, top_y, right_x, bottom_y, width,
2849 raised_p, top_p, bot_p, left_p, right_p, clip_rect)
2850 struct frame *f;
2851 int left_x, top_y, right_x, bottom_y, width;
2852 int top_p, bot_p, left_p, right_p, raised_p;
2853 Rect *clip_rect;
2854 {
2855 Display *dpy = FRAME_MAC_DISPLAY (f);
2856 int i;
2857 GC gc;
2858
2859 if (raised_p)
2860 gc = f->output_data.mac->white_relief.gc;
2861 else
2862 gc = f->output_data.mac->black_relief.gc;
2863 mac_set_clip_rectangles (dpy, gc, clip_rect, 1);
2864
2865 /* Top. */
2866 if (top_p)
2867 for (i = 0; i < width; ++i)
2868 mac_draw_line (f, gc,
2869 left_x + i * left_p, top_y + i,
2870 right_x - i * right_p, top_y + i);
2871
2872 /* Left. */
2873 if (left_p)
2874 for (i = 0; i < width; ++i)
2875 mac_draw_line (f, gc,
2876 left_x + i, top_y + i, left_x + i, bottom_y - i);
2877
2878 mac_reset_clip_rectangles (dpy, gc);
2879 if (raised_p)
2880 gc = f->output_data.mac->black_relief.gc;
2881 else
2882 gc = f->output_data.mac->white_relief.gc;
2883 mac_set_clip_rectangles (dpy, gc, clip_rect, 1);
2884
2885 /* Bottom. */
2886 if (bot_p)
2887 for (i = 0; i < width; ++i)
2888 mac_draw_line (f, gc,
2889 left_x + i * left_p, bottom_y - i,
2890 right_x - i * right_p, bottom_y - i);
2891
2892 /* Right. */
2893 if (right_p)
2894 for (i = 0; i < width; ++i)
2895 mac_draw_line (f, gc,
2896 right_x - i, top_y + i + 1, right_x - i, bottom_y - i - 1);
2897
2898 mac_reset_clip_rectangles (dpy, gc);
2899 }
2900
2901
2902 /* Draw a box on frame F inside the rectangle given by LEFT_X, TOP_Y,
2903 RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the lines to
2904 draw, it must be >= 0. LEFT_P non-zero means draw a line on the
2905 left side of the rectangle. RIGHT_P non-zero means draw a line
2906 on the right side of the rectangle. CLIP_RECT is the clipping
2907 rectangle to use when drawing. */
2908
2909 static void
2910 x_draw_box_rect (s, left_x, top_y, right_x, bottom_y, width,
2911 left_p, right_p, clip_rect)
2912 struct glyph_string *s;
2913 int left_x, top_y, right_x, bottom_y, width, left_p, right_p;
2914 Rect *clip_rect;
2915 {
2916 XGCValues xgcv;
2917
2918 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
2919 XSetForeground (s->display, s->gc, s->face->box_color);
2920 mac_set_clip_rectangles (s->display, s->gc, clip_rect, 1);
2921
2922 /* Top. */
2923 mac_fill_rectangle (s->f, s->gc, left_x, top_y,
2924 right_x - left_x + 1, width);
2925
2926 /* Left. */
2927 if (left_p)
2928 mac_fill_rectangle (s->f, s->gc, left_x, top_y,
2929 width, bottom_y - top_y + 1);
2930
2931 /* Bottom. */
2932 mac_fill_rectangle (s->f, s->gc, left_x, bottom_y - width + 1,
2933 right_x - left_x + 1, width);
2934
2935 /* Right. */
2936 if (right_p)
2937 mac_fill_rectangle (s->f, s->gc, right_x - width + 1,
2938 top_y, width, bottom_y - top_y + 1);
2939
2940 XSetForeground (s->display, s->gc, xgcv.foreground);
2941 mac_reset_clip_rectangles (s->display, s->gc);
2942 }
2943
2944
2945 /* Draw a box around glyph string S. */
2946
2947 static void
2948 x_draw_glyph_string_box (s)
2949 struct glyph_string *s;
2950 {
2951 int width, left_x, right_x, top_y, bottom_y, last_x, raised_p;
2952 int left_p, right_p;
2953 struct glyph *last_glyph;
2954 Rect clip_rect;
2955
2956 last_x = ((s->row->full_width_p && !s->w->pseudo_window_p)
2957 ? WINDOW_RIGHT_EDGE_X (s->w)
2958 : window_box_right (s->w, s->area));
2959
2960 /* The glyph that may have a right box line. */
2961 last_glyph = (s->cmp || s->img
2962 ? s->first_glyph
2963 : s->first_glyph + s->nchars - 1);
2964
2965 width = abs (s->face->box_line_width);
2966 raised_p = s->face->box == FACE_RAISED_BOX;
2967 left_x = s->x;
2968 right_x = (s->row->full_width_p && s->extends_to_end_of_line_p
2969 ? last_x - 1
2970 : min (last_x, s->x + s->background_width) - 1);
2971 top_y = s->y;
2972 bottom_y = top_y + s->height - 1;
2973
2974 left_p = (s->first_glyph->left_box_line_p
2975 || (s->hl == DRAW_MOUSE_FACE
2976 && (s->prev == NULL
2977 || s->prev->hl != s->hl)));
2978 right_p = (last_glyph->right_box_line_p
2979 || (s->hl == DRAW_MOUSE_FACE
2980 && (s->next == NULL
2981 || s->next->hl != s->hl)));
2982
2983 get_glyph_string_clip_rect (s, &clip_rect);
2984
2985 if (s->face->box == FACE_SIMPLE_BOX)
2986 x_draw_box_rect (s, left_x, top_y, right_x, bottom_y, width,
2987 left_p, right_p, &clip_rect);
2988 else
2989 {
2990 x_setup_relief_colors (s);
2991 x_draw_relief_rect (s->f, left_x, top_y, right_x, bottom_y,
2992 width, raised_p, 1, 1, left_p, right_p, &clip_rect);
2993 }
2994 }
2995
2996
2997 /* Draw foreground of image glyph string S. */
2998
2999 static void
3000 x_draw_image_foreground (s)
3001 struct glyph_string *s;
3002 {
3003 int x = s->x;
3004 int y = s->ybase - image_ascent (s->img, s->face, &s->slice);
3005
3006 /* If first glyph of S has a left box line, start drawing it to the
3007 right of that line. */
3008 if (s->face->box != FACE_NO_BOX
3009 && s->first_glyph->left_box_line_p
3010 && s->slice.x == 0)
3011 x += abs (s->face->box_line_width);
3012
3013 /* If there is a margin around the image, adjust x- and y-position
3014 by that margin. */
3015 if (s->slice.x == 0)
3016 x += s->img->hmargin;
3017 if (s->slice.y == 0)
3018 y += s->img->vmargin;
3019
3020 if (s->img->pixmap)
3021 {
3022 x_set_glyph_string_clipping (s);
3023
3024 if (s->img->mask)
3025 mac_copy_area_with_mask (s->img->pixmap, s->img->mask,
3026 s->f, s->gc, s->slice.x, s->slice.y,
3027 s->slice.width, s->slice.height, x, y);
3028 else
3029 {
3030 mac_copy_area (s->img->pixmap,
3031 s->f, s->gc, s->slice.x, s->slice.y,
3032 s->slice.width, s->slice.height, x, y);
3033
3034 /* When the image has a mask, we can expect that at
3035 least part of a mouse highlight or a block cursor will
3036 be visible. If the image doesn't have a mask, make
3037 a block cursor visible by drawing a rectangle around
3038 the image. I believe it's looking better if we do
3039 nothing here for mouse-face. */
3040 if (s->hl == DRAW_CURSOR)
3041 {
3042 int r = s->img->relief;
3043 if (r < 0) r = -r;
3044 mac_draw_rectangle (s->f, s->gc, x - r, y - r,
3045 s->slice.width + r*2 - 1,
3046 s->slice.height + r*2 - 1);
3047 }
3048 }
3049 }
3050 else
3051 /* Draw a rectangle if image could not be loaded. */
3052 mac_draw_rectangle (s->f, s->gc, x, y,
3053 s->slice.width - 1, s->slice.height - 1);
3054 }
3055
3056
3057 /* Draw a relief around the image glyph string S. */
3058
3059 static void
3060 x_draw_image_relief (s)
3061 struct glyph_string *s;
3062 {
3063 int x0, y0, x1, y1, thick, raised_p;
3064 Rect r;
3065 int x = s->x;
3066 int y = s->ybase - image_ascent (s->img, s->face, &s->slice);
3067
3068 /* If first glyph of S has a left box line, start drawing it to the
3069 right of that line. */
3070 if (s->face->box != FACE_NO_BOX
3071 && s->first_glyph->left_box_line_p
3072 && s->slice.x == 0)
3073 x += abs (s->face->box_line_width);
3074
3075 /* If there is a margin around the image, adjust x- and y-position
3076 by that margin. */
3077 if (s->slice.x == 0)
3078 x += s->img->hmargin;
3079 if (s->slice.y == 0)
3080 y += s->img->vmargin;
3081
3082 if (s->hl == DRAW_IMAGE_SUNKEN
3083 || s->hl == DRAW_IMAGE_RAISED)
3084 {
3085 thick = tool_bar_button_relief >= 0 ? tool_bar_button_relief : DEFAULT_TOOL_BAR_BUTTON_RELIEF;
3086 raised_p = s->hl == DRAW_IMAGE_RAISED;
3087 }
3088 else
3089 {
3090 thick = abs (s->img->relief);
3091 raised_p = s->img->relief > 0;
3092 }
3093
3094 x0 = x - thick;
3095 y0 = y - thick;
3096 x1 = x + s->slice.width + thick - 1;
3097 y1 = y + s->slice.height + thick - 1;
3098
3099 x_setup_relief_colors (s);
3100 get_glyph_string_clip_rect (s, &r);
3101 x_draw_relief_rect (s->f, x0, y0, x1, y1, thick, raised_p,
3102 s->slice.y == 0,
3103 s->slice.y + s->slice.height == s->img->height,
3104 s->slice.x == 0,
3105 s->slice.x + s->slice.width == s->img->width,
3106 &r);
3107 }
3108
3109
3110 /* Draw part of the background of glyph string S. X, Y, W, and H
3111 give the rectangle to draw. */
3112
3113 static void
3114 x_draw_glyph_string_bg_rect (s, x, y, w, h)
3115 struct glyph_string *s;
3116 int x, y, w, h;
3117 {
3118 #if 0 /* MAC_TODO: stipple */
3119 if (s->stippled_p)
3120 {
3121 /* Fill background with a stipple pattern. */
3122 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
3123 XFillRectangle (s->display, s->window, s->gc, x, y, w, h);
3124 XSetFillStyle (s->display, s->gc, FillSolid);
3125 }
3126 else
3127 #endif /* MAC_TODO */
3128 x_clear_glyph_string_rect (s, x, y, w, h);
3129 }
3130
3131
3132 /* Draw image glyph string S.
3133
3134 s->y
3135 s->x +-------------------------
3136 | s->face->box
3137 |
3138 | +-------------------------
3139 | | s->img->margin
3140 | |
3141 | | +-------------------
3142 | | | the image
3143
3144 */
3145
3146 static void
3147 x_draw_image_glyph_string (s)
3148 struct glyph_string *s;
3149 {
3150 int x, y;
3151 int box_line_hwidth = abs (s->face->box_line_width);
3152 int box_line_vwidth = max (s->face->box_line_width, 0);
3153 int height;
3154 Pixmap pixmap = 0;
3155
3156 height = s->height - 2 * box_line_vwidth;
3157
3158
3159 /* Fill background with face under the image. Do it only if row is
3160 taller than image or if image has a clip mask to reduce
3161 flickering. */
3162 s->stippled_p = s->face->stipple != 0;
3163 if (height > s->slice.height
3164 || s->img->hmargin
3165 || s->img->vmargin
3166 || s->img->mask
3167 || s->img->pixmap == 0
3168 || s->width != s->background_width)
3169 {
3170 x = s->x;
3171 if (s->first_glyph->left_box_line_p
3172 && s->slice.x == 0)
3173 x += box_line_hwidth;
3174
3175 y = s->y;
3176 if (s->slice.y == 0)
3177 y += box_line_vwidth;
3178
3179 x_draw_glyph_string_bg_rect (s, x, y, s->background_width, height);
3180
3181 s->background_filled_p = 1;
3182 }
3183
3184 /* Draw the foreground. */
3185 x_draw_image_foreground (s);
3186
3187 /* If we must draw a relief around the image, do it. */
3188 if (s->img->relief
3189 || s->hl == DRAW_IMAGE_RAISED
3190 || s->hl == DRAW_IMAGE_SUNKEN)
3191 x_draw_image_relief (s);
3192 }
3193
3194
3195 /* Draw stretch glyph string S. */
3196
3197 static void
3198 x_draw_stretch_glyph_string (s)
3199 struct glyph_string *s;
3200 {
3201 xassert (s->first_glyph->type == STRETCH_GLYPH);
3202 s->stippled_p = s->face->stipple != 0;
3203
3204 if (s->hl == DRAW_CURSOR
3205 && !x_stretch_cursor_p)
3206 {
3207 /* If `x-stretch-block-cursor' is nil, don't draw a block cursor
3208 as wide as the stretch glyph. */
3209 int width = min (FRAME_COLUMN_WIDTH (s->f), s->background_width);
3210
3211 /* Draw cursor. */
3212 x_draw_glyph_string_bg_rect (s, s->x, s->y, width, s->height);
3213
3214 /* Clear rest using the GC of the original non-cursor face. */
3215 if (width < s->background_width)
3216 {
3217 int x = s->x + width, y = s->y;
3218 int w = s->background_width - width, h = s->height;
3219 Rect r;
3220 GC gc;
3221
3222 if (s->row->mouse_face_p
3223 && cursor_in_mouse_face_p (s->w))
3224 {
3225 x_set_mouse_face_gc (s);
3226 gc = s->gc;
3227 }
3228 else
3229 gc = s->face->gc;
3230
3231 get_glyph_string_clip_rect (s, &r);
3232 mac_set_clip_rectangles (s->display, gc, &r, 1);
3233
3234 #if 0 /* MAC_TODO: stipple */
3235 if (s->face->stipple)
3236 {
3237 /* Fill background with a stipple pattern. */
3238 XSetFillStyle (s->display, gc, FillOpaqueStippled);
3239 XFillRectangle (s->display, s->window, gc, x, y, w, h);
3240 XSetFillStyle (s->display, gc, FillSolid);
3241 }
3242 else
3243 #endif /* MAC_TODO */
3244 mac_erase_rectangle (s->f, gc, x, y, w, h);
3245 }
3246 }
3247 else if (!s->background_filled_p)
3248 x_draw_glyph_string_bg_rect (s, s->x, s->y, s->background_width,
3249 s->height);
3250
3251 s->background_filled_p = 1;
3252 }
3253
3254
3255 /* Draw glyph string S. */
3256
3257 static void
3258 x_draw_glyph_string (s)
3259 struct glyph_string *s;
3260 {
3261 int relief_drawn_p = 0;
3262
3263 /* If S draws into the background of its successor that does not
3264 draw a cursor, draw the background of the successor first so that
3265 S can draw into it. This makes S->next use XDrawString instead
3266 of XDrawImageString. */
3267 if (s->next && s->right_overhang && !s->for_overlaps
3268 && s->next->hl != DRAW_CURSOR)
3269 {
3270 xassert (s->next->img == NULL);
3271 x_set_glyph_string_gc (s->next);
3272 x_set_glyph_string_clipping (s->next);
3273 x_draw_glyph_string_background (s->next, 1);
3274 }
3275
3276 /* Set up S->gc, set clipping and draw S. */
3277 x_set_glyph_string_gc (s);
3278
3279 /* Draw relief (if any) in advance for char/composition so that the
3280 glyph string can be drawn over it. */
3281 if (!s->for_overlaps
3282 && s->face->box != FACE_NO_BOX
3283 && (s->first_glyph->type == CHAR_GLYPH
3284 || s->first_glyph->type == COMPOSITE_GLYPH))
3285
3286 {
3287 x_set_glyph_string_clipping (s);
3288 x_draw_glyph_string_background (s, 1);
3289 x_draw_glyph_string_box (s);
3290 x_set_glyph_string_clipping (s);
3291 relief_drawn_p = 1;
3292 }
3293 else
3294 x_set_glyph_string_clipping (s);
3295
3296 switch (s->first_glyph->type)
3297 {
3298 case IMAGE_GLYPH:
3299 x_draw_image_glyph_string (s);
3300 break;
3301
3302 case STRETCH_GLYPH:
3303 x_draw_stretch_glyph_string (s);
3304 break;
3305
3306 case CHAR_GLYPH:
3307 if (s->for_overlaps)
3308 s->background_filled_p = 1;
3309 else
3310 x_draw_glyph_string_background (s, 0);
3311 x_draw_glyph_string_foreground (s);
3312 break;
3313
3314 case COMPOSITE_GLYPH:
3315 if (s->for_overlaps || s->gidx > 0)
3316 s->background_filled_p = 1;
3317 else
3318 x_draw_glyph_string_background (s, 1);
3319 x_draw_composite_glyph_string_foreground (s);
3320 break;
3321
3322 default:
3323 abort ();
3324 }
3325
3326 if (!s->for_overlaps)
3327 {
3328 /* Draw underline. */
3329 if (s->face->underline_p)
3330 {
3331 unsigned long h = 1;
3332 unsigned long dy = s->height - h;
3333
3334 if (s->face->underline_defaulted_p)
3335 mac_fill_rectangle (s->f, s->gc, s->x, s->y + dy,
3336 s->width, h);
3337 else
3338 {
3339 XGCValues xgcv;
3340 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
3341 XSetForeground (s->display, s->gc, s->face->underline_color);
3342 mac_fill_rectangle (s->f, s->gc, s->x, s->y + dy,
3343 s->width, h);
3344 XSetForeground (s->display, s->gc, xgcv.foreground);
3345 }
3346 }
3347
3348 /* Draw overline. */
3349 if (s->face->overline_p)
3350 {
3351 unsigned long dy = 0, h = 1;
3352
3353 if (s->face->overline_color_defaulted_p)
3354 mac_fill_rectangle (s->f, s->gc, s->x, s->y + dy,
3355 s->width, h);
3356 else
3357 {
3358 XGCValues xgcv;
3359 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
3360 XSetForeground (s->display, s->gc, s->face->overline_color);
3361 mac_fill_rectangle (s->f, s->gc, s->x, s->y + dy,
3362 s->width, h);
3363 XSetForeground (s->display, s->gc, xgcv.foreground);
3364 }
3365 }
3366
3367 /* Draw strike-through. */
3368 if (s->face->strike_through_p)
3369 {
3370 unsigned long h = 1;
3371 unsigned long dy = (s->height - h) / 2;
3372
3373 if (s->face->strike_through_color_defaulted_p)
3374 mac_fill_rectangle (s->f, s->gc, s->x, s->y + dy,
3375 s->width, h);
3376 else
3377 {
3378 XGCValues xgcv;
3379 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
3380 XSetForeground (s->display, s->gc, s->face->strike_through_color);
3381 mac_fill_rectangle (s->f, s->gc, s->x, s->y + dy,
3382 s->width, h);
3383 XSetForeground (s->display, s->gc, xgcv.foreground);
3384 }
3385 }
3386
3387 /* Draw relief if not yet drawn. */
3388 if (!relief_drawn_p && s->face->box != FACE_NO_BOX)
3389 x_draw_glyph_string_box (s);
3390 }
3391
3392 /* Reset clipping. */
3393 mac_reset_clip_rectangles (s->display, s->gc);
3394 }
3395
3396 /* Shift display to make room for inserted glyphs. */
3397
3398 void
3399 mac_shift_glyphs_for_insert (f, x, y, width, height, shift_by)
3400 struct frame *f;
3401 int x, y, width, height, shift_by;
3402 {
3403 mac_scroll_area (f, f->output_data.mac->normal_gc,
3404 x, y, width, height,
3405 x + shift_by, y);
3406 }
3407
3408 /* Delete N glyphs at the nominal cursor position. Not implemented
3409 for X frames. */
3410
3411 static void
3412 x_delete_glyphs (n)
3413 register int n;
3414 {
3415 abort ();
3416 }
3417
3418
3419 /* Clear entire frame. If updating_frame is non-null, clear that
3420 frame. Otherwise clear the selected frame. */
3421
3422 static void
3423 x_clear_frame ()
3424 {
3425 struct frame *f;
3426
3427 if (updating_frame)
3428 f = updating_frame;
3429 else
3430 f = SELECTED_FRAME ();
3431
3432 /* Clearing the frame will erase any cursor, so mark them all as no
3433 longer visible. */
3434 mark_window_cursors_off (XWINDOW (FRAME_ROOT_WINDOW (f)));
3435 output_cursor.hpos = output_cursor.vpos = 0;
3436 output_cursor.x = -1;
3437
3438 /* We don't set the output cursor here because there will always
3439 follow an explicit cursor_to. */
3440 BLOCK_INPUT;
3441 mac_clear_window (f);
3442
3443 /* We have to clear the scroll bars, too. If we have changed
3444 colors or something like that, then they should be notified. */
3445 x_scroll_bar_clear (f);
3446
3447 XFlush (FRAME_MAC_DISPLAY (f));
3448 UNBLOCK_INPUT;
3449 }
3450
3451
3452 \f
3453 /* Invert the middle quarter of the frame for .15 sec. */
3454
3455 /* We use the select system call to do the waiting, so we have to make
3456 sure it's available. If it isn't, we just won't do visual bells. */
3457
3458 #if defined (HAVE_TIMEVAL) && defined (HAVE_SELECT)
3459
3460
3461 /* Subtract the `struct timeval' values X and Y, storing the result in
3462 *RESULT. Return 1 if the difference is negative, otherwise 0. */
3463
3464 static int
3465 timeval_subtract (result, x, y)
3466 struct timeval *result, x, y;
3467 {
3468 /* Perform the carry for the later subtraction by updating y. This
3469 is safer because on some systems the tv_sec member is unsigned. */
3470 if (x.tv_usec < y.tv_usec)
3471 {
3472 int nsec = (y.tv_usec - x.tv_usec) / 1000000 + 1;
3473 y.tv_usec -= 1000000 * nsec;
3474 y.tv_sec += nsec;
3475 }
3476
3477 if (x.tv_usec - y.tv_usec > 1000000)
3478 {
3479 int nsec = (y.tv_usec - x.tv_usec) / 1000000;
3480 y.tv_usec += 1000000 * nsec;
3481 y.tv_sec -= nsec;
3482 }
3483
3484 /* Compute the time remaining to wait. tv_usec is certainly
3485 positive. */
3486 result->tv_sec = x.tv_sec - y.tv_sec;
3487 result->tv_usec = x.tv_usec - y.tv_usec;
3488
3489 /* Return indication of whether the result should be considered
3490 negative. */
3491 return x.tv_sec < y.tv_sec;
3492 }
3493
3494 void
3495 XTflash (f)
3496 struct frame *f;
3497 {
3498 /* Get the height not including a menu bar widget. */
3499 int height = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, FRAME_LINES (f));
3500 /* Height of each line to flash. */
3501 int flash_height = FRAME_LINE_HEIGHT (f);
3502 /* These will be the left and right margins of the rectangles. */
3503 int flash_left = FRAME_INTERNAL_BORDER_WIDTH (f);
3504 int flash_right = FRAME_PIXEL_WIDTH (f) - FRAME_INTERNAL_BORDER_WIDTH (f);
3505
3506 int width;
3507
3508 /* Don't flash the area between a scroll bar and the frame
3509 edge it is next to. */
3510 switch (FRAME_VERTICAL_SCROLL_BAR_TYPE (f))
3511 {
3512 case vertical_scroll_bar_left:
3513 flash_left += VERTICAL_SCROLL_BAR_WIDTH_TRIM;
3514 break;
3515
3516 case vertical_scroll_bar_right:
3517 flash_right -= VERTICAL_SCROLL_BAR_WIDTH_TRIM;
3518 break;
3519
3520 default:
3521 break;
3522 }
3523
3524 width = flash_right - flash_left;
3525
3526 BLOCK_INPUT;
3527
3528 /* If window is tall, flash top and bottom line. */
3529 if (height > 3 * FRAME_LINE_HEIGHT (f))
3530 {
3531 mac_invert_rectangle (f, flash_left,
3532 (FRAME_INTERNAL_BORDER_WIDTH (f)
3533 + FRAME_TOOL_BAR_LINES (f) * FRAME_LINE_HEIGHT (f)),
3534 width, flash_height);
3535 mac_invert_rectangle (f, flash_left,
3536 (height - flash_height
3537 - FRAME_INTERNAL_BORDER_WIDTH (f)),
3538 width, flash_height);
3539 }
3540 else
3541 /* If it is short, flash it all. */
3542 mac_invert_rectangle (f, flash_left, FRAME_INTERNAL_BORDER_WIDTH (f),
3543 width, height - 2 * FRAME_INTERNAL_BORDER_WIDTH (f));
3544
3545 x_flush (f);
3546
3547 {
3548 struct timeval wakeup;
3549
3550 EMACS_GET_TIME (wakeup);
3551
3552 /* Compute time to wait until, propagating carry from usecs. */
3553 wakeup.tv_usec += 150000;
3554 wakeup.tv_sec += (wakeup.tv_usec / 1000000);
3555 wakeup.tv_usec %= 1000000;
3556
3557 /* Keep waiting until past the time wakeup or any input gets
3558 available. */
3559 while (! detect_input_pending ())
3560 {
3561 struct timeval current;
3562 struct timeval timeout;
3563
3564 EMACS_GET_TIME (current);
3565
3566 /* Break if result would be negative. */
3567 if (timeval_subtract (&current, wakeup, current))
3568 break;
3569
3570 /* How long `select' should wait. */
3571 timeout.tv_sec = 0;
3572 timeout.tv_usec = 10000;
3573
3574 /* Try to wait that long--but we might wake up sooner. */
3575 select (0, NULL, NULL, NULL, &timeout);
3576 }
3577 }
3578
3579 /* If window is tall, flash top and bottom line. */
3580 if (height > 3 * FRAME_LINE_HEIGHT (f))
3581 {
3582 mac_invert_rectangle (f, flash_left,
3583 (FRAME_INTERNAL_BORDER_WIDTH (f)
3584 + FRAME_TOOL_BAR_LINES (f) * FRAME_LINE_HEIGHT (f)),
3585 width, flash_height);
3586 mac_invert_rectangle (f, flash_left,
3587 (height - flash_height
3588 - FRAME_INTERNAL_BORDER_WIDTH (f)),
3589 width, flash_height);
3590 }
3591 else
3592 /* If it is short, flash it all. */
3593 mac_invert_rectangle (f, flash_left, FRAME_INTERNAL_BORDER_WIDTH (f),
3594 width, height - 2 * FRAME_INTERNAL_BORDER_WIDTH (f));
3595
3596 x_flush (f);
3597
3598 UNBLOCK_INPUT;
3599 }
3600
3601 #endif /* defined (HAVE_TIMEVAL) && defined (HAVE_SELECT) */
3602
3603
3604 /* Make audible bell. */
3605
3606 void
3607 XTring_bell ()
3608 {
3609 struct frame *f = SELECTED_FRAME ();
3610
3611 #if defined (HAVE_TIMEVAL) && defined (HAVE_SELECT)
3612 if (visible_bell)
3613 XTflash (f);
3614 else
3615 #endif
3616 {
3617 BLOCK_INPUT;
3618 SysBeep (1);
3619 XFlush (FRAME_MAC_DISPLAY (f));
3620 UNBLOCK_INPUT;
3621 }
3622 }
3623
3624 \f
3625 /* Specify how many text lines, from the top of the window,
3626 should be affected by insert-lines and delete-lines operations.
3627 This, and those operations, are used only within an update
3628 that is bounded by calls to x_update_begin and x_update_end. */
3629
3630 static void
3631 XTset_terminal_window (n)
3632 register int n;
3633 {
3634 /* This function intentionally left blank. */
3635 }
3636
3637
3638 \f
3639 /***********************************************************************
3640 Line Dance
3641 ***********************************************************************/
3642
3643 /* Perform an insert-lines or delete-lines operation, inserting N
3644 lines or deleting -N lines at vertical position VPOS. */
3645
3646 static void
3647 x_ins_del_lines (vpos, n)
3648 int vpos, n;
3649 {
3650 abort ();
3651 }
3652
3653
3654 /* Scroll part of the display as described by RUN. */
3655
3656 static void
3657 x_scroll_run (w, run)
3658 struct window *w;
3659 struct run *run;
3660 {
3661 struct frame *f = XFRAME (w->frame);
3662 int x, y, width, height, from_y, to_y, bottom_y;
3663
3664 /* Get frame-relative bounding box of the text display area of W,
3665 without mode lines. Include in this box the left and right
3666 fringe of W. */
3667 window_box (w, -1, &x, &y, &width, &height);
3668
3669 from_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->current_y);
3670 to_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->desired_y);
3671 bottom_y = y + height;
3672
3673 if (to_y < from_y)
3674 {
3675 /* Scrolling up. Make sure we don't copy part of the mode
3676 line at the bottom. */
3677 if (from_y + run->height > bottom_y)
3678 height = bottom_y - from_y;
3679 else
3680 height = run->height;
3681 }
3682 else
3683 {
3684 /* Scolling down. Make sure we don't copy over the mode line.
3685 at the bottom. */
3686 if (to_y + run->height > bottom_y)
3687 height = bottom_y - to_y;
3688 else
3689 height = run->height;
3690 }
3691
3692 BLOCK_INPUT;
3693
3694 /* Cursor off. Will be switched on again in x_update_window_end. */
3695 updated_window = w;
3696 x_clear_cursor (w);
3697
3698 mac_scroll_area (f, f->output_data.mac->normal_gc,
3699 x, from_y,
3700 width, height,
3701 x, to_y);
3702
3703 UNBLOCK_INPUT;
3704 }
3705
3706
3707 \f
3708 /***********************************************************************
3709 Exposure Events
3710 ***********************************************************************/
3711
3712 \f
3713 static void
3714 frame_highlight (f)
3715 struct frame *f;
3716 {
3717 OSErr err;
3718 ControlRef root_control;
3719
3720 BLOCK_INPUT;
3721 err = GetRootControl (FRAME_MAC_WINDOW (f), &root_control);
3722 if (err == noErr)
3723 ActivateControl (root_control);
3724 UNBLOCK_INPUT;
3725 x_update_cursor (f, 1);
3726 }
3727
3728 static void
3729 frame_unhighlight (f)
3730 struct frame *f;
3731 {
3732 OSErr err;
3733 ControlRef root_control;
3734
3735 BLOCK_INPUT;
3736 err = GetRootControl (FRAME_MAC_WINDOW (f), &root_control);
3737 if (err == noErr)
3738 DeactivateControl (root_control);
3739 UNBLOCK_INPUT;
3740 x_update_cursor (f, 1);
3741 }
3742
3743 /* The focus has changed. Update the frames as necessary to reflect
3744 the new situation. Note that we can't change the selected frame
3745 here, because the Lisp code we are interrupting might become confused.
3746 Each event gets marked with the frame in which it occurred, so the
3747 Lisp code can tell when the switch took place by examining the events. */
3748
3749 static void
3750 x_new_focus_frame (dpyinfo, frame)
3751 struct x_display_info *dpyinfo;
3752 struct frame *frame;
3753 {
3754 struct frame *old_focus = dpyinfo->x_focus_frame;
3755
3756 if (frame != dpyinfo->x_focus_frame)
3757 {
3758 /* Set this before calling other routines, so that they see
3759 the correct value of x_focus_frame. */
3760 dpyinfo->x_focus_frame = frame;
3761
3762 if (old_focus && old_focus->auto_lower)
3763 x_lower_frame (old_focus);
3764
3765 #if 0
3766 selected_frame = frame;
3767 XSETFRAME (XWINDOW (selected_frame->selected_window)->frame,
3768 selected_frame);
3769 Fselect_window (selected_frame->selected_window, Qnil);
3770 choose_minibuf_frame ();
3771 #endif /* ! 0 */
3772
3773 if (dpyinfo->x_focus_frame && dpyinfo->x_focus_frame->auto_raise)
3774 pending_autoraise_frame = dpyinfo->x_focus_frame;
3775 else
3776 pending_autoraise_frame = 0;
3777 }
3778
3779 x_frame_rehighlight (dpyinfo);
3780 }
3781
3782 /* Handle FocusIn and FocusOut state changes for FRAME.
3783 If FRAME has focus and there exists more than one frame, puts
3784 a FOCUS_IN_EVENT into *BUFP. */
3785
3786 static void
3787 mac_focus_changed (type, dpyinfo, frame, bufp)
3788 int type;
3789 struct mac_display_info *dpyinfo;
3790 struct frame *frame;
3791 struct input_event *bufp;
3792 {
3793 if (type == activeFlag)
3794 {
3795 if (dpyinfo->x_focus_event_frame != frame)
3796 {
3797 x_new_focus_frame (dpyinfo, frame);
3798 dpyinfo->x_focus_event_frame = frame;
3799
3800 /* Don't stop displaying the initial startup message
3801 for a switch-frame event we don't need. */
3802 if (GC_NILP (Vterminal_frame)
3803 && GC_CONSP (Vframe_list)
3804 && !GC_NILP (XCDR (Vframe_list)))
3805 {
3806 bufp->kind = FOCUS_IN_EVENT;
3807 XSETFRAME (bufp->frame_or_window, frame);
3808 }
3809 }
3810 }
3811 else
3812 {
3813 if (dpyinfo->x_focus_event_frame == frame)
3814 {
3815 dpyinfo->x_focus_event_frame = 0;
3816 x_new_focus_frame (dpyinfo, 0);
3817 }
3818 }
3819 }
3820
3821 /* The focus may have changed. Figure out if it is a real focus change,
3822 by checking both FocusIn/Out and Enter/LeaveNotify events.
3823
3824 Returns FOCUS_IN_EVENT event in *BUFP. */
3825
3826 static void
3827 x_detect_focus_change (dpyinfo, event, bufp)
3828 struct mac_display_info *dpyinfo;
3829 EventRecord *event;
3830 struct input_event *bufp;
3831 {
3832 struct frame *frame;
3833
3834 frame = mac_window_to_frame ((WindowPtr) event->message);
3835 if (! frame)
3836 return;
3837
3838 /* On Mac, this is only called from focus events, so no switch needed. */
3839 mac_focus_changed ((event->modifiers & activeFlag),
3840 dpyinfo, frame, bufp);
3841 }
3842
3843
3844 /* Handle an event saying the mouse has moved out of an Emacs frame. */
3845
3846 void
3847 x_mouse_leave (dpyinfo)
3848 struct x_display_info *dpyinfo;
3849 {
3850 x_new_focus_frame (dpyinfo, dpyinfo->x_focus_event_frame);
3851 }
3852
3853 /* The focus has changed, or we have redirected a frame's focus to
3854 another frame (this happens when a frame uses a surrogate
3855 mini-buffer frame). Shift the highlight as appropriate.
3856
3857 The FRAME argument doesn't necessarily have anything to do with which
3858 frame is being highlighted or un-highlighted; we only use it to find
3859 the appropriate X display info. */
3860
3861 static void
3862 XTframe_rehighlight (frame)
3863 struct frame *frame;
3864 {
3865 x_frame_rehighlight (FRAME_X_DISPLAY_INFO (frame));
3866 }
3867
3868 static void
3869 x_frame_rehighlight (dpyinfo)
3870 struct x_display_info *dpyinfo;
3871 {
3872 struct frame *old_highlight = dpyinfo->x_highlight_frame;
3873
3874 if (dpyinfo->x_focus_frame)
3875 {
3876 dpyinfo->x_highlight_frame
3877 = ((GC_FRAMEP (FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame)))
3878 ? XFRAME (FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame))
3879 : dpyinfo->x_focus_frame);
3880 if (! FRAME_LIVE_P (dpyinfo->x_highlight_frame))
3881 {
3882 FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame) = Qnil;
3883 dpyinfo->x_highlight_frame = dpyinfo->x_focus_frame;
3884 }
3885 }
3886 else
3887 dpyinfo->x_highlight_frame = 0;
3888
3889 if (dpyinfo->x_highlight_frame != old_highlight)
3890 {
3891 if (old_highlight)
3892 frame_unhighlight (old_highlight);
3893 if (dpyinfo->x_highlight_frame)
3894 frame_highlight (dpyinfo->x_highlight_frame);
3895 }
3896 }
3897
3898
3899 \f
3900 /* Keyboard processing - modifier keys, vendor-specific keysyms, etc. */
3901
3902 #if 0 /* MAC_TODO */
3903 /* Initialize mode_switch_bit and modifier_meaning. */
3904 static void
3905 x_find_modifier_meanings (dpyinfo)
3906 struct x_display_info *dpyinfo;
3907 {
3908 int min_code, max_code;
3909 KeySym *syms;
3910 int syms_per_code;
3911 XModifierKeymap *mods;
3912
3913 dpyinfo->meta_mod_mask = 0;
3914 dpyinfo->shift_lock_mask = 0;
3915 dpyinfo->alt_mod_mask = 0;
3916 dpyinfo->super_mod_mask = 0;
3917 dpyinfo->hyper_mod_mask = 0;
3918
3919 #ifdef HAVE_X11R4
3920 XDisplayKeycodes (dpyinfo->display, &min_code, &max_code);
3921 #else
3922 min_code = dpyinfo->display->min_keycode;
3923 max_code = dpyinfo->display->max_keycode;
3924 #endif
3925
3926 syms = XGetKeyboardMapping (dpyinfo->display,
3927 min_code, max_code - min_code + 1,
3928 &syms_per_code);
3929 mods = XGetModifierMapping (dpyinfo->display);
3930
3931 /* Scan the modifier table to see which modifier bits the Meta and
3932 Alt keysyms are on. */
3933 {
3934 int row, col; /* The row and column in the modifier table. */
3935
3936 for (row = 3; row < 8; row++)
3937 for (col = 0; col < mods->max_keypermod; col++)
3938 {
3939 KeyCode code
3940 = mods->modifiermap[(row * mods->max_keypermod) + col];
3941
3942 /* Zeroes are used for filler. Skip them. */
3943 if (code == 0)
3944 continue;
3945
3946 /* Are any of this keycode's keysyms a meta key? */
3947 {
3948 int code_col;
3949
3950 for (code_col = 0; code_col < syms_per_code; code_col++)
3951 {
3952 int sym = syms[((code - min_code) * syms_per_code) + code_col];
3953
3954 switch (sym)
3955 {
3956 case XK_Meta_L:
3957 case XK_Meta_R:
3958 dpyinfo->meta_mod_mask |= (1 << row);
3959 break;
3960
3961 case XK_Alt_L:
3962 case XK_Alt_R:
3963 dpyinfo->alt_mod_mask |= (1 << row);
3964 break;
3965
3966 case XK_Hyper_L:
3967 case XK_Hyper_R:
3968 dpyinfo->hyper_mod_mask |= (1 << row);
3969 break;
3970
3971 case XK_Super_L:
3972 case XK_Super_R:
3973 dpyinfo->super_mod_mask |= (1 << row);
3974 break;
3975
3976 case XK_Shift_Lock:
3977 /* Ignore this if it's not on the lock modifier. */
3978 if ((1 << row) == LockMask)
3979 dpyinfo->shift_lock_mask = LockMask;
3980 break;
3981 }
3982 }
3983 }
3984 }
3985 }
3986
3987 /* If we couldn't find any meta keys, accept any alt keys as meta keys. */
3988 if (! dpyinfo->meta_mod_mask)
3989 {
3990 dpyinfo->meta_mod_mask = dpyinfo->alt_mod_mask;
3991 dpyinfo->alt_mod_mask = 0;
3992 }
3993
3994 /* If some keys are both alt and meta,
3995 make them just meta, not alt. */
3996 if (dpyinfo->alt_mod_mask & dpyinfo->meta_mod_mask)
3997 {
3998 dpyinfo->alt_mod_mask &= ~dpyinfo->meta_mod_mask;
3999 }
4000
4001 XFree ((char *) syms);
4002 XFreeModifiermap (mods);
4003 }
4004
4005 #endif /* MAC_TODO */
4006
4007 /* Convert between the modifier bits X uses and the modifier bits
4008 Emacs uses. */
4009
4010 static unsigned int
4011 x_mac_to_emacs_modifiers (dpyinfo, state)
4012 struct x_display_info *dpyinfo;
4013 unsigned short state;
4014 {
4015 return (((state & shiftKey) ? shift_modifier : 0)
4016 | ((state & controlKey) ? ctrl_modifier : 0)
4017 | ((state & cmdKey) ? meta_modifier : 0)
4018 | ((state & optionKey) ? alt_modifier : 0));
4019 }
4020
4021 #if 0 /* MAC_TODO */
4022 static unsigned short
4023 x_emacs_to_x_modifiers (dpyinfo, state)
4024 struct x_display_info *dpyinfo;
4025 unsigned int state;
4026 {
4027 return ( ((state & alt_modifier) ? dpyinfo->alt_mod_mask : 0)
4028 | ((state & super_modifier) ? dpyinfo->super_mod_mask : 0)
4029 | ((state & hyper_modifier) ? dpyinfo->hyper_mod_mask : 0)
4030 | ((state & shift_modifier) ? ShiftMask : 0)
4031 | ((state & ctrl_modifier) ? ControlMask : 0)
4032 | ((state & meta_modifier) ? dpyinfo->meta_mod_mask : 0));
4033 }
4034 #endif /* MAC_TODO */
4035
4036 /* Convert a keysym to its name. */
4037
4038 char *
4039 x_get_keysym_name (keysym)
4040 int keysym;
4041 {
4042 char *value;
4043
4044 BLOCK_INPUT;
4045 #if 0
4046 value = XKeysymToString (keysym);
4047 #else
4048 value = 0;
4049 #endif
4050 UNBLOCK_INPUT;
4051
4052 return value;
4053 }
4054
4055
4056 \f
4057 /* Function to report a mouse movement to the mainstream Emacs code.
4058 The input handler calls this.
4059
4060 We have received a mouse movement event, which is given in *event.
4061 If the mouse is over a different glyph than it was last time, tell
4062 the mainstream emacs code by setting mouse_moved. If not, ask for
4063 another motion event, so we can check again the next time it moves. */
4064
4065 static Point last_mouse_motion_position;
4066 static Lisp_Object last_mouse_motion_frame;
4067
4068 static int
4069 note_mouse_movement (frame, pos)
4070 FRAME_PTR frame;
4071 Point *pos;
4072 {
4073 struct mac_display_info *dpyinfo = FRAME_MAC_DISPLAY_INFO (frame);
4074 #if TARGET_API_MAC_CARBON
4075 Rect r;
4076 #endif
4077
4078 last_mouse_movement_time = TickCount () * (1000 / 60); /* to milliseconds */
4079 last_mouse_motion_position = *pos;
4080 XSETFRAME (last_mouse_motion_frame, frame);
4081
4082 #if TARGET_API_MAC_CARBON
4083 if (!PtInRect (*pos, GetWindowPortBounds (FRAME_MAC_WINDOW (frame), &r)))
4084 #else
4085 if (!PtInRect (*pos, &FRAME_MAC_WINDOW (frame)->portRect))
4086 #endif
4087 {
4088 if (frame == dpyinfo->mouse_face_mouse_frame)
4089 /* This case corresponds to LeaveNotify in X11. */
4090 {
4091 /* If we move outside the frame, then we're certainly no
4092 longer on any text in the frame. */
4093 clear_mouse_face (dpyinfo);
4094 dpyinfo->mouse_face_mouse_frame = 0;
4095 if (!dpyinfo->grabbed)
4096 rif->define_frame_cursor (frame,
4097 frame->output_data.mac->nontext_cursor);
4098 }
4099 return 1;
4100 }
4101 /* Has the mouse moved off the glyph it was on at the last sighting? */
4102 if (frame != last_mouse_glyph_frame
4103 || !PtInRect (*pos, &last_mouse_glyph))
4104 {
4105 frame->mouse_moved = 1;
4106 last_mouse_scroll_bar = Qnil;
4107 note_mouse_highlight (frame, pos->h, pos->v);
4108 /* Remember which glyph we're now on. */
4109 remember_mouse_glyph (frame, pos->h, pos->v, &last_mouse_glyph);
4110 last_mouse_glyph_frame = frame;
4111 return 1;
4112 }
4113
4114 return 0;
4115 }
4116
4117 \f
4118 /************************************************************************
4119 Mouse Face
4120 ************************************************************************/
4121
4122 /* MAC TODO: This should be called from somewhere (or removed) ++KFS */
4123
4124 static void
4125 redo_mouse_highlight ()
4126 {
4127 if (!NILP (last_mouse_motion_frame)
4128 && FRAME_LIVE_P (XFRAME (last_mouse_motion_frame)))
4129 note_mouse_highlight (XFRAME (last_mouse_motion_frame),
4130 last_mouse_motion_position.h,
4131 last_mouse_motion_position.v);
4132 }
4133
4134
4135 static struct frame *
4136 mac_focus_frame (dpyinfo)
4137 struct mac_display_info *dpyinfo;
4138 {
4139 if (dpyinfo->x_focus_frame)
4140 return dpyinfo->x_focus_frame;
4141 else
4142 /* Mac version may get events, such as a menu bar click, even when
4143 all the frames are invisible. In this case, we regard the
4144 event came to the selected frame. */
4145 return SELECTED_FRAME ();
4146 }
4147
4148
4149 /* Return the current position of the mouse.
4150 *FP should be a frame which indicates which display to ask about.
4151
4152 If the mouse movement started in a scroll bar, set *FP, *BAR_WINDOW,
4153 and *PART to the frame, window, and scroll bar part that the mouse
4154 is over. Set *X and *Y to the portion and whole of the mouse's
4155 position on the scroll bar.
4156
4157 If the mouse movement started elsewhere, set *FP to the frame the
4158 mouse is on, *BAR_WINDOW to nil, and *X and *Y to the character cell
4159 the mouse is over.
4160
4161 Set *TIME to the server time-stamp for the time at which the mouse
4162 was at this position.
4163
4164 Don't store anything if we don't have a valid set of values to report.
4165
4166 This clears the mouse_moved flag, so we can wait for the next mouse
4167 movement. */
4168
4169 static void
4170 XTmouse_position (fp, insist, bar_window, part, x, y, time)
4171 FRAME_PTR *fp;
4172 int insist;
4173 Lisp_Object *bar_window;
4174 enum scroll_bar_part *part;
4175 Lisp_Object *x, *y;
4176 unsigned long *time;
4177 {
4178 FRAME_PTR f1;
4179
4180 BLOCK_INPUT;
4181
4182 if (! NILP (last_mouse_scroll_bar) && insist == 0)
4183 x_scroll_bar_report_motion (fp, bar_window, part, x, y, time);
4184 else
4185 {
4186 Lisp_Object frame, tail;
4187
4188 /* Clear the mouse-moved flag for every frame on this display. */
4189 FOR_EACH_FRAME (tail, frame)
4190 XFRAME (frame)->mouse_moved = 0;
4191
4192 last_mouse_scroll_bar = Qnil;
4193
4194 if (FRAME_MAC_DISPLAY_INFO (*fp)->grabbed && last_mouse_frame
4195 && FRAME_LIVE_P (last_mouse_frame))
4196 f1 = last_mouse_frame;
4197 else
4198 f1 = mac_focus_frame (FRAME_MAC_DISPLAY_INFO (*fp));
4199
4200 if (f1)
4201 {
4202 /* Ok, we found a frame. Store all the values.
4203 last_mouse_glyph is a rectangle used to reduce the
4204 generation of mouse events. To not miss any motion
4205 events, we must divide the frame into rectangles of the
4206 size of the smallest character that could be displayed
4207 on it, i.e. into the same rectangles that matrices on
4208 the frame are divided into. */
4209 Point mouse_pos;
4210
4211 SetPortWindowPort (FRAME_MAC_WINDOW (f1));
4212 GetMouse (&mouse_pos);
4213 remember_mouse_glyph (f1, mouse_pos.h, mouse_pos.v,
4214 &last_mouse_glyph);
4215 last_mouse_glyph_frame = f1;
4216
4217 *bar_window = Qnil;
4218 *part = 0;
4219 *fp = f1;
4220 XSETINT (*x, mouse_pos.h);
4221 XSETINT (*y, mouse_pos.v);
4222 *time = last_mouse_movement_time;
4223 }
4224 }
4225
4226 UNBLOCK_INPUT;
4227 }
4228
4229 \f
4230 /************************************************************************
4231 Toolkit scroll bars
4232 ************************************************************************/
4233
4234 #ifdef USE_TOOLKIT_SCROLL_BARS
4235
4236 static pascal void scroll_bar_timer_callback P_ ((EventLoopTimerRef, void *));
4237 static OSStatus install_scroll_bar_timer P_ ((void));
4238 static OSStatus set_scroll_bar_timer P_ ((EventTimerInterval));
4239 static int control_part_code_to_scroll_bar_part P_ ((ControlPartCode));
4240 static void construct_scroll_bar_click P_ ((struct scroll_bar *, int,
4241 struct input_event *));
4242 static OSErr get_control_part_bounds P_ ((ControlHandle, ControlPartCode,
4243 Rect *));
4244 static void x_scroll_bar_handle_press P_ ((struct scroll_bar *,
4245 ControlPartCode,
4246 struct input_event *));
4247 static void x_scroll_bar_handle_release P_ ((struct scroll_bar *,
4248 struct input_event *));
4249 static void x_scroll_bar_handle_drag P_ ((WindowPtr, struct scroll_bar *,
4250 Point, struct input_event *));
4251 static void x_set_toolkit_scroll_bar_thumb P_ ((struct scroll_bar *,
4252 int, int, int));
4253
4254 /* Last scroll bar part sent in x_scroll_bar_handle_*. */
4255
4256 static int last_scroll_bar_part;
4257
4258 static EventLoopTimerRef scroll_bar_timer;
4259
4260 static int scroll_bar_timer_event_posted_p;
4261
4262 #define SCROLL_BAR_FIRST_DELAY 0.5
4263 #define SCROLL_BAR_CONTINUOUS_DELAY (1.0 / 15)
4264
4265 static pascal void
4266 scroll_bar_timer_callback (timer, data)
4267 EventLoopTimerRef timer;
4268 void *data;
4269 {
4270 EventRef event = NULL;
4271 OSErr err;
4272
4273 err = CreateEvent (NULL, kEventClassMouse, kEventMouseMoved, 0,
4274 kEventAttributeNone, &event);
4275 if (err == noErr)
4276 {
4277 Point mouse_pos;
4278
4279 GetMouse (&mouse_pos);
4280 LocalToGlobal (&mouse_pos);
4281 err = SetEventParameter (event, kEventParamMouseLocation, typeQDPoint,
4282 sizeof (Point), &mouse_pos);
4283 }
4284 if (err == noErr)
4285 {
4286 UInt32 modifiers = GetCurrentKeyModifiers ();
4287
4288 err = SetEventParameter (event, kEventParamKeyModifiers, typeUInt32,
4289 sizeof (UInt32), &modifiers);
4290 }
4291 if (err == noErr)
4292 err = PostEventToQueue (GetCurrentEventQueue (), event,
4293 kEventPriorityStandard);
4294 if (err == noErr)
4295 scroll_bar_timer_event_posted_p = 1;
4296
4297 if (event)
4298 ReleaseEvent (event);
4299 }
4300
4301 static OSStatus
4302 install_scroll_bar_timer ()
4303 {
4304 static EventLoopTimerUPP scroll_bar_timer_callbackUPP = NULL;
4305
4306 if (scroll_bar_timer_callbackUPP == NULL)
4307 scroll_bar_timer_callbackUPP =
4308 NewEventLoopTimerUPP (scroll_bar_timer_callback);
4309
4310 if (scroll_bar_timer == NULL)
4311 /* Mac OS X and CarbonLib 1.5 and later allow us to specify
4312 kEventDurationForever as delays. */
4313 return
4314 InstallEventLoopTimer (GetCurrentEventLoop (),
4315 kEventDurationForever, kEventDurationForever,
4316 scroll_bar_timer_callbackUPP, NULL,
4317 &scroll_bar_timer);
4318 }
4319
4320 static OSStatus
4321 set_scroll_bar_timer (delay)
4322 EventTimerInterval delay;
4323 {
4324 if (scroll_bar_timer == NULL)
4325 install_scroll_bar_timer ();
4326
4327 scroll_bar_timer_event_posted_p = 0;
4328
4329 return SetEventLoopTimerNextFireTime (scroll_bar_timer, delay);
4330 }
4331
4332 static int
4333 control_part_code_to_scroll_bar_part (part_code)
4334 ControlPartCode part_code;
4335 {
4336 switch (part_code)
4337 {
4338 case kControlUpButtonPart: return scroll_bar_up_arrow;
4339 case kControlDownButtonPart: return scroll_bar_down_arrow;
4340 case kControlPageUpPart: return scroll_bar_above_handle;
4341 case kControlPageDownPart: return scroll_bar_below_handle;
4342 case kControlIndicatorPart: return scroll_bar_handle;
4343 }
4344
4345 return -1;
4346 }
4347
4348 static void
4349 construct_scroll_bar_click (bar, part, bufp)
4350 struct scroll_bar *bar;
4351 int part;
4352 struct input_event *bufp;
4353 {
4354 bufp->kind = SCROLL_BAR_CLICK_EVENT;
4355 bufp->frame_or_window = bar->window;
4356 bufp->arg = Qnil;
4357 bufp->part = part;
4358 bufp->code = 0;
4359 XSETINT (bufp->x, 0);
4360 XSETINT (bufp->y, 0);
4361 bufp->modifiers = 0;
4362 }
4363
4364 static OSErr
4365 get_control_part_bounds (ch, part_code, rect)
4366 ControlHandle ch;
4367 ControlPartCode part_code;
4368 Rect *rect;
4369 {
4370 RgnHandle region = NewRgn ();
4371 OSStatus err;
4372
4373 err = GetControlRegion (ch, part_code, region);
4374 if (err == noErr)
4375 GetRegionBounds (region, rect);
4376 DisposeRgn (region);
4377
4378 return err;
4379 }
4380
4381 static void
4382 x_scroll_bar_handle_press (bar, part_code, bufp)
4383 struct scroll_bar *bar;
4384 ControlPartCode part_code;
4385 struct input_event *bufp;
4386 {
4387 int part = control_part_code_to_scroll_bar_part (part_code);
4388
4389 if (part < 0)
4390 return;
4391
4392 if (part != scroll_bar_handle)
4393 {
4394 construct_scroll_bar_click (bar, part, bufp);
4395 HiliteControl (SCROLL_BAR_CONTROL_HANDLE (bar), part_code);
4396 set_scroll_bar_timer (SCROLL_BAR_FIRST_DELAY);
4397 }
4398
4399 last_scroll_bar_part = part;
4400 bar->dragging = Qnil;
4401 tracked_scroll_bar = bar;
4402 }
4403
4404 static void
4405 x_scroll_bar_handle_release (bar, bufp)
4406 struct scroll_bar *bar;
4407 struct input_event *bufp;
4408 {
4409 if (last_scroll_bar_part != scroll_bar_handle
4410 || !GC_NILP (bar->dragging))
4411 construct_scroll_bar_click (bar, scroll_bar_end_scroll, bufp);
4412
4413 HiliteControl (SCROLL_BAR_CONTROL_HANDLE (bar), 0);
4414 set_scroll_bar_timer (kEventDurationForever);
4415
4416 last_scroll_bar_part = -1;
4417 bar->dragging = Qnil;
4418 tracked_scroll_bar = NULL;
4419 }
4420
4421 static void
4422 x_scroll_bar_handle_drag (win, bar, mouse_pos, bufp)
4423 WindowPtr win;
4424 struct scroll_bar *bar;
4425 Point mouse_pos;
4426 struct input_event *bufp;
4427 {
4428 ControlHandle ch = SCROLL_BAR_CONTROL_HANDLE (bar);
4429
4430 if (last_scroll_bar_part == scroll_bar_handle)
4431 {
4432 int top, top_range;
4433 Rect r;
4434
4435 get_control_part_bounds (SCROLL_BAR_CONTROL_HANDLE (bar),
4436 kControlIndicatorPart, &r);
4437
4438 if (GC_NILP (bar->dragging))
4439 XSETINT (bar->dragging, mouse_pos.v - r.top);
4440
4441 top = mouse_pos.v - XINT (bar->dragging) - XINT (bar->track_top);
4442 top_range = (XINT (bar->track_height) - (r.bottom - r.top)) *
4443 (1.0 + (float) GetControlViewSize (ch) / GetControl32BitMaximum (ch))
4444 + .5;
4445
4446 if (top < 0)
4447 top = 0;
4448 if (top > top_range)
4449 top = top_range;
4450
4451 construct_scroll_bar_click (bar, scroll_bar_handle, bufp);
4452 XSETINT (bufp->x, top);
4453 XSETINT (bufp->y, top_range);
4454 }
4455 else
4456 {
4457 ControlPartCode part_code;
4458 int unhilite_p = 0, part;
4459
4460 if (ch != FindControlUnderMouse (mouse_pos, win, &part_code))
4461 unhilite_p = 1;
4462 else
4463 {
4464 part = control_part_code_to_scroll_bar_part (part_code);
4465
4466 switch (last_scroll_bar_part)
4467 {
4468 case scroll_bar_above_handle:
4469 case scroll_bar_below_handle:
4470 if (part != scroll_bar_above_handle
4471 && part != scroll_bar_below_handle)
4472 unhilite_p = 1;
4473 break;
4474
4475 case scroll_bar_up_arrow:
4476 case scroll_bar_down_arrow:
4477 if (part != scroll_bar_up_arrow
4478 && part != scroll_bar_down_arrow)
4479 unhilite_p = 1;
4480 break;
4481 }
4482 }
4483
4484 if (unhilite_p)
4485 HiliteControl (SCROLL_BAR_CONTROL_HANDLE (bar), 0);
4486 else if (part != last_scroll_bar_part
4487 || scroll_bar_timer_event_posted_p)
4488 {
4489 construct_scroll_bar_click (bar, part, bufp);
4490 last_scroll_bar_part = part;
4491 HiliteControl (SCROLL_BAR_CONTROL_HANDLE (bar), part_code);
4492 set_scroll_bar_timer (SCROLL_BAR_CONTINUOUS_DELAY);
4493 }
4494 }
4495 }
4496
4497 /* Set the thumb size and position of scroll bar BAR. We are currently
4498 displaying PORTION out of a whole WHOLE, and our position POSITION. */
4499
4500 static void
4501 x_set_toolkit_scroll_bar_thumb (bar, portion, position, whole)
4502 struct scroll_bar *bar;
4503 int portion, position, whole;
4504 {
4505 ControlHandle ch = SCROLL_BAR_CONTROL_HANDLE (bar);
4506
4507 int value, viewsize, maximum;
4508
4509 if (whole == 0 || XINT (bar->track_height) == 0)
4510 value = 0, viewsize = 1, maximum = 0;
4511 else
4512 {
4513 value = position;
4514 viewsize = portion;
4515 maximum = max (0, whole - portion);
4516 }
4517
4518 BLOCK_INPUT;
4519
4520 SetControl32BitMinimum (ch, 0);
4521 SetControl32BitMaximum (ch, maximum);
4522 SetControl32BitValue (ch, value);
4523 SetControlViewSize (ch, viewsize);
4524
4525 UNBLOCK_INPUT;
4526 }
4527
4528 #endif /* USE_TOOLKIT_SCROLL_BARS */
4529
4530
4531 \f
4532 /************************************************************************
4533 Scroll bars, general
4534 ************************************************************************/
4535
4536 /* Create a scroll bar and return the scroll bar vector for it. W is
4537 the Emacs window on which to create the scroll bar. TOP, LEFT,
4538 WIDTH and HEIGHT are the pixel coordinates and dimensions of the
4539 scroll bar. */
4540
4541 static struct scroll_bar *
4542 x_scroll_bar_create (w, top, left, width, height, disp_top, disp_height)
4543 struct window *w;
4544 int top, left, width, height, disp_top, disp_height;
4545 {
4546 struct frame *f = XFRAME (w->frame);
4547 struct scroll_bar *bar
4548 = XSCROLL_BAR (Fmake_vector (make_number (SCROLL_BAR_VEC_SIZE), Qnil));
4549 Rect r;
4550 ControlHandle ch;
4551
4552 BLOCK_INPUT;
4553
4554 r.left = left;
4555 r.top = disp_top;
4556 r.right = left + width;
4557 r.bottom = disp_top + disp_height;
4558
4559 #if TARGET_API_MAC_CARBON
4560 ch = NewControl (FRAME_MAC_WINDOW (f), &r, "\p", width < disp_height,
4561 0, 0, 0, kControlScrollBarProc, (long) bar);
4562 #else
4563 ch = NewControl (FRAME_MAC_WINDOW (f), &r, "\p", width < disp_height,
4564 0, 0, 0, scrollBarProc, (long) bar);
4565 #endif
4566 SET_SCROLL_BAR_CONTROL_HANDLE (bar, ch);
4567
4568 XSETWINDOW (bar->window, w);
4569 XSETINT (bar->top, top);
4570 XSETINT (bar->left, left);
4571 XSETINT (bar->width, width);
4572 XSETINT (bar->height, height);
4573 XSETINT (bar->start, 0);
4574 XSETINT (bar->end, 0);
4575 bar->dragging = Qnil;
4576 #ifdef USE_TOOLKIT_SCROLL_BARS
4577 bar->track_top = Qnil;
4578 bar->track_height = Qnil;
4579 #endif
4580
4581 /* Add bar to its frame's list of scroll bars. */
4582 bar->next = FRAME_SCROLL_BARS (f);
4583 bar->prev = Qnil;
4584 XSETVECTOR (FRAME_SCROLL_BARS (f), bar);
4585 if (!NILP (bar->next))
4586 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
4587
4588 UNBLOCK_INPUT;
4589 return bar;
4590 }
4591
4592
4593 /* Draw BAR's handle in the proper position.
4594
4595 If the handle is already drawn from START to END, don't bother
4596 redrawing it, unless REBUILD is non-zero; in that case, always
4597 redraw it. (REBUILD is handy for drawing the handle after expose
4598 events.)
4599
4600 Normally, we want to constrain the start and end of the handle to
4601 fit inside its rectangle, but if the user is dragging the scroll
4602 bar handle, we want to let them drag it down all the way, so that
4603 the bar's top is as far down as it goes; otherwise, there's no way
4604 to move to the very end of the buffer. */
4605
4606 #ifndef USE_TOOLKIT_SCROLL_BARS
4607
4608 static void
4609 x_scroll_bar_set_handle (bar, start, end, rebuild)
4610 struct scroll_bar *bar;
4611 int start, end;
4612 int rebuild;
4613 {
4614 int dragging = ! NILP (bar->dragging);
4615 ControlHandle ch = SCROLL_BAR_CONTROL_HANDLE (bar);
4616 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
4617 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height));
4618 int length = end - start;
4619
4620 /* If the display is already accurate, do nothing. */
4621 if (! rebuild
4622 && start == XINT (bar->start)
4623 && end == XINT (bar->end))
4624 return;
4625
4626 BLOCK_INPUT;
4627
4628 /* Make sure the values are reasonable, and try to preserve the
4629 distance between start and end. */
4630 if (start < 0)
4631 start = 0;
4632 else if (start > top_range)
4633 start = top_range;
4634 end = start + length;
4635
4636 if (end < start)
4637 end = start;
4638 else if (end > top_range && ! dragging)
4639 end = top_range;
4640
4641 /* Store the adjusted setting in the scroll bar. */
4642 XSETINT (bar->start, start);
4643 XSETINT (bar->end, end);
4644
4645 /* Clip the end position, just for display. */
4646 if (end > top_range)
4647 end = top_range;
4648
4649 /* Draw bottom positions VERTICAL_SCROLL_BAR_MIN_HANDLE pixels below
4650 top positions, to make sure the handle is always at least that
4651 many pixels tall. */
4652 end += VERTICAL_SCROLL_BAR_MIN_HANDLE;
4653
4654 SetControlMinimum (ch, 0);
4655 /* Don't inadvertently activate deactivated scroll bars */
4656 if (GetControlMaximum (ch) != -1)
4657 SetControlMaximum (ch, top_range + VERTICAL_SCROLL_BAR_MIN_HANDLE
4658 - (end - start));
4659 SetControlValue (ch, start);
4660 #if TARGET_API_MAC_CARBON
4661 SetControlViewSize (ch, end - start);
4662 #endif
4663
4664 UNBLOCK_INPUT;
4665 }
4666
4667 #endif /* !USE_TOOLKIT_SCROLL_BARS */
4668
4669 /* Destroy scroll bar BAR, and set its Emacs window's scroll bar to
4670 nil. */
4671
4672 static void
4673 x_scroll_bar_remove (bar)
4674 struct scroll_bar *bar;
4675 {
4676 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
4677
4678 BLOCK_INPUT;
4679
4680 /* Destroy the Mac scroll bar control */
4681 DisposeControl (SCROLL_BAR_CONTROL_HANDLE (bar));
4682
4683 /* Disassociate this scroll bar from its window. */
4684 XWINDOW (bar->window)->vertical_scroll_bar = Qnil;
4685
4686 UNBLOCK_INPUT;
4687 }
4688
4689
4690 /* Set the handle of the vertical scroll bar for WINDOW to indicate
4691 that we are displaying PORTION characters out of a total of WHOLE
4692 characters, starting at POSITION. If WINDOW has no scroll bar,
4693 create one. */
4694
4695 static void
4696 XTset_vertical_scroll_bar (w, portion, whole, position)
4697 struct window *w;
4698 int portion, whole, position;
4699 {
4700 struct frame *f = XFRAME (w->frame);
4701 struct scroll_bar *bar;
4702 int top, height, left, sb_left, width, sb_width, disp_top, disp_height;
4703 int window_y, window_height;
4704
4705 /* Get window dimensions. */
4706 window_box (w, -1, 0, &window_y, 0, &window_height);
4707 top = window_y;
4708 width = WINDOW_CONFIG_SCROLL_BAR_COLS (w) * FRAME_COLUMN_WIDTH (f);
4709 height = window_height;
4710
4711 /* Compute the left edge of the scroll bar area. */
4712 left = WINDOW_SCROLL_BAR_AREA_X (w);
4713
4714 /* Compute the width of the scroll bar which might be less than
4715 the width of the area reserved for the scroll bar. */
4716 if (WINDOW_CONFIG_SCROLL_BAR_WIDTH (w) > 0)
4717 sb_width = WINDOW_CONFIG_SCROLL_BAR_WIDTH (w);
4718 else
4719 sb_width = width;
4720
4721 /* Compute the left edge of the scroll bar. */
4722 if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w))
4723 sb_left = left;
4724 else
4725 sb_left = left + width - sb_width;
4726
4727 /* Adjustments according to Inside Macintosh to make it look nice */
4728 disp_top = top;
4729 disp_height = height;
4730 if (disp_top == 0)
4731 {
4732 disp_top = -1;
4733 disp_height++;
4734 }
4735 else if (disp_top == FRAME_PIXEL_HEIGHT (f) - 16)
4736 {
4737 disp_top++;
4738 disp_height--;
4739 }
4740
4741 if (sb_left + sb_width == FRAME_PIXEL_WIDTH (f))
4742 sb_left++;
4743
4744 /* Does the scroll bar exist yet? */
4745 if (NILP (w->vertical_scroll_bar))
4746 {
4747 BLOCK_INPUT;
4748 mac_clear_area (f, left, top, width, height);
4749 UNBLOCK_INPUT;
4750 bar = x_scroll_bar_create (w, top, sb_left, sb_width, height, disp_top,
4751 disp_height);
4752 XSETVECTOR (w->vertical_scroll_bar, bar);
4753 }
4754 else
4755 {
4756 /* It may just need to be moved and resized. */
4757 ControlHandle ch;
4758
4759 bar = XSCROLL_BAR (w->vertical_scroll_bar);
4760 ch = SCROLL_BAR_CONTROL_HANDLE (bar);
4761
4762 BLOCK_INPUT;
4763
4764 /* If already correctly positioned, do nothing. */
4765 if (!(XINT (bar->left) == sb_left
4766 && XINT (bar->top) == top
4767 && XINT (bar->width) == sb_width
4768 && XINT (bar->height) == height))
4769 {
4770 /* Since toolkit scroll bars are smaller than the space reserved
4771 for them on the frame, we have to clear "under" them. */
4772 mac_clear_area (f, left, top, width, height);
4773
4774 HideControl (ch);
4775 MoveControl (ch, sb_left + VERTICAL_SCROLL_BAR_WIDTH_TRIM, disp_top);
4776 SizeControl (ch, sb_width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2,
4777 disp_height);
4778 if (sb_width < disp_height)
4779 ShowControl (ch);
4780
4781 /* Remember new settings. */
4782 XSETINT (bar->left, sb_left);
4783 XSETINT (bar->top, top);
4784 XSETINT (bar->width, sb_width);
4785 XSETINT (bar->height, height);
4786 #ifdef USE_TOOLKIT_SCROLL_BARS
4787 bar->track_top = Qnil;
4788 bar->track_height = Qnil;
4789 #endif
4790 }
4791
4792 UNBLOCK_INPUT;
4793 }
4794
4795 #ifdef USE_TOOLKIT_SCROLL_BARS
4796 if (NILP (bar->track_top))
4797 {
4798 ControlHandle ch = SCROLL_BAR_CONTROL_HANDLE (bar);
4799 Rect r0, r1;
4800
4801 BLOCK_INPUT;
4802
4803 SetControl32BitMinimum (ch, 0);
4804 SetControl32BitMaximum (ch, 1);
4805 SetControlViewSize (ch, 1);
4806
4807 /* Move the scroll bar thumb to the top. */
4808 SetControl32BitValue (ch, 0);
4809 get_control_part_bounds (ch, kControlIndicatorPart, &r0);
4810
4811 /* Move the scroll bar thumb to the bottom. */
4812 SetControl32BitValue (ch, 1);
4813 get_control_part_bounds (ch, kControlIndicatorPart, &r1);
4814
4815 UnionRect (&r0, &r1, &r0);
4816 XSETINT (bar->track_top, r0.top);
4817 XSETINT (bar->track_height, r0.bottom - r0.top);
4818
4819 UNBLOCK_INPUT;
4820 }
4821
4822 x_set_toolkit_scroll_bar_thumb (bar, portion, position, whole);
4823 #else /* not USE_TOOLKIT_SCROLL_BARS */
4824 /* Set the scroll bar's current state, unless we're currently being
4825 dragged. */
4826 if (NILP (bar->dragging))
4827 {
4828 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, height);
4829
4830 if (whole == 0)
4831 x_scroll_bar_set_handle (bar, 0, top_range, 0);
4832 else
4833 {
4834 int start = ((double) position * top_range) / whole;
4835 int end = ((double) (position + portion) * top_range) / whole;
4836 x_scroll_bar_set_handle (bar, start, end, 0);
4837 }
4838 }
4839 #endif /* not USE_TOOLKIT_SCROLL_BARS */
4840 }
4841
4842
4843 /* The following three hooks are used when we're doing a thorough
4844 redisplay of the frame. We don't explicitly know which scroll bars
4845 are going to be deleted, because keeping track of when windows go
4846 away is a real pain - "Can you say set-window-configuration, boys
4847 and girls?" Instead, we just assert at the beginning of redisplay
4848 that *all* scroll bars are to be removed, and then save a scroll bar
4849 from the fiery pit when we actually redisplay its window. */
4850
4851 /* Arrange for all scroll bars on FRAME to be removed at the next call
4852 to `*judge_scroll_bars_hook'. A scroll bar may be spared if
4853 `*redeem_scroll_bar_hook' is applied to its window before the judgment. */
4854
4855 static void
4856 XTcondemn_scroll_bars (frame)
4857 FRAME_PTR frame;
4858 {
4859 /* Transfer all the scroll bars to FRAME_CONDEMNED_SCROLL_BARS. */
4860 while (! NILP (FRAME_SCROLL_BARS (frame)))
4861 {
4862 Lisp_Object bar;
4863 bar = FRAME_SCROLL_BARS (frame);
4864 FRAME_SCROLL_BARS (frame) = XSCROLL_BAR (bar)->next;
4865 XSCROLL_BAR (bar)->next = FRAME_CONDEMNED_SCROLL_BARS (frame);
4866 XSCROLL_BAR (bar)->prev = Qnil;
4867 if (! NILP (FRAME_CONDEMNED_SCROLL_BARS (frame)))
4868 XSCROLL_BAR (FRAME_CONDEMNED_SCROLL_BARS (frame))->prev = bar;
4869 FRAME_CONDEMNED_SCROLL_BARS (frame) = bar;
4870 }
4871 }
4872
4873
4874 /* Un-mark WINDOW's scroll bar for deletion in this judgment cycle.
4875 Note that WINDOW isn't necessarily condemned at all. */
4876
4877 static void
4878 XTredeem_scroll_bar (window)
4879 struct window *window;
4880 {
4881 struct scroll_bar *bar;
4882 struct frame *f;
4883
4884 /* We can't redeem this window's scroll bar if it doesn't have one. */
4885 if (NILP (window->vertical_scroll_bar))
4886 abort ();
4887
4888 bar = XSCROLL_BAR (window->vertical_scroll_bar);
4889
4890 /* Unlink it from the condemned list. */
4891 f = XFRAME (WINDOW_FRAME (window));
4892 if (NILP (bar->prev))
4893 {
4894 /* If the prev pointer is nil, it must be the first in one of
4895 the lists. */
4896 if (EQ (FRAME_SCROLL_BARS (f), window->vertical_scroll_bar))
4897 /* It's not condemned. Everything's fine. */
4898 return;
4899 else if (EQ (FRAME_CONDEMNED_SCROLL_BARS (f),
4900 window->vertical_scroll_bar))
4901 FRAME_CONDEMNED_SCROLL_BARS (f) = bar->next;
4902 else
4903 /* If its prev pointer is nil, it must be at the front of
4904 one or the other! */
4905 abort ();
4906 }
4907 else
4908 XSCROLL_BAR (bar->prev)->next = bar->next;
4909
4910 if (! NILP (bar->next))
4911 XSCROLL_BAR (bar->next)->prev = bar->prev;
4912
4913 bar->next = FRAME_SCROLL_BARS (f);
4914 bar->prev = Qnil;
4915 XSETVECTOR (FRAME_SCROLL_BARS (f), bar);
4916 if (! NILP (bar->next))
4917 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
4918 }
4919
4920 /* Remove all scroll bars on FRAME that haven't been saved since the
4921 last call to `*condemn_scroll_bars_hook'. */
4922
4923 static void
4924 XTjudge_scroll_bars (f)
4925 FRAME_PTR f;
4926 {
4927 Lisp_Object bar, next;
4928
4929 bar = FRAME_CONDEMNED_SCROLL_BARS (f);
4930
4931 /* Clear out the condemned list now so we won't try to process any
4932 more events on the hapless scroll bars. */
4933 FRAME_CONDEMNED_SCROLL_BARS (f) = Qnil;
4934
4935 for (; ! NILP (bar); bar = next)
4936 {
4937 struct scroll_bar *b = XSCROLL_BAR (bar);
4938
4939 x_scroll_bar_remove (b);
4940
4941 next = b->next;
4942 b->next = b->prev = Qnil;
4943 }
4944
4945 /* Now there should be no references to the condemned scroll bars,
4946 and they should get garbage-collected. */
4947 }
4948
4949
4950 /* Handle a mouse click on the scroll bar BAR. If *EMACS_EVENT's kind
4951 is set to something other than NO_EVENT, it is enqueued.
4952
4953 This may be called from a signal handler, so we have to ignore GC
4954 mark bits. */
4955
4956 static void
4957 x_scroll_bar_handle_click (bar, part_code, er, bufp)
4958 struct scroll_bar *bar;
4959 ControlPartCode part_code;
4960 EventRecord *er;
4961 struct input_event *bufp;
4962 {
4963 int win_y, top_range;
4964
4965 if (! GC_WINDOWP (bar->window))
4966 abort ();
4967
4968 bufp->kind = SCROLL_BAR_CLICK_EVENT;
4969 bufp->frame_or_window = bar->window;
4970 bufp->arg = Qnil;
4971
4972 bar->dragging = Qnil;
4973
4974 switch (part_code)
4975 {
4976 case kControlUpButtonPart:
4977 bufp->part = scroll_bar_up_arrow;
4978 break;
4979 case kControlDownButtonPart:
4980 bufp->part = scroll_bar_down_arrow;
4981 break;
4982 case kControlPageUpPart:
4983 bufp->part = scroll_bar_above_handle;
4984 break;
4985 case kControlPageDownPart:
4986 bufp->part = scroll_bar_below_handle;
4987 break;
4988 #if TARGET_API_MAC_CARBON
4989 default:
4990 #else
4991 case kControlIndicatorPart:
4992 #endif
4993 if (er->what == mouseDown)
4994 bar->dragging = make_number (0);
4995 XSETVECTOR (last_mouse_scroll_bar, bar);
4996 bufp->part = scroll_bar_handle;
4997 break;
4998 }
4999
5000 win_y = XINT (bufp->y) - XINT (bar->top);
5001 top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (0/*dummy*/, XINT (bar->height));
5002
5003 win_y -= VERTICAL_SCROLL_BAR_TOP_BORDER;
5004
5005 win_y -= 24;
5006
5007 if (! NILP (bar->dragging))
5008 win_y -= XINT (bar->dragging);
5009
5010 if (win_y < 0)
5011 win_y = 0;
5012 if (win_y > top_range)
5013 win_y = top_range;
5014
5015 XSETINT (bufp->x, win_y);
5016 XSETINT (bufp->y, top_range);
5017 }
5018
5019 #ifndef USE_TOOLKIT_SCROLL_BARS
5020
5021 /* Handle some mouse motion while someone is dragging the scroll bar.
5022
5023 This may be called from a signal handler, so we have to ignore GC
5024 mark bits. */
5025
5026 static void
5027 x_scroll_bar_note_movement (bar, y_pos, t)
5028 struct scroll_bar *bar;
5029 int y_pos;
5030 Time t;
5031 {
5032 FRAME_PTR f = XFRAME (XWINDOW (bar->window)->frame);
5033
5034 last_mouse_movement_time = t;
5035
5036 f->mouse_moved = 1;
5037 XSETVECTOR (last_mouse_scroll_bar, bar);
5038
5039 /* If we're dragging the bar, display it. */
5040 if (! GC_NILP (bar->dragging))
5041 {
5042 /* Where should the handle be now? */
5043 int new_start = y_pos - 24;
5044
5045 if (new_start != XINT (bar->start))
5046 {
5047 int new_end = new_start + (XINT (bar->end) - XINT (bar->start));
5048
5049 x_scroll_bar_set_handle (bar, new_start, new_end, 0);
5050 }
5051 }
5052 }
5053
5054 #endif /* !USE_TOOLKIT_SCROLL_BARS */
5055
5056 /* Return information to the user about the current position of the mouse
5057 on the scroll bar. */
5058
5059 static void
5060 x_scroll_bar_report_motion (fp, bar_window, part, x, y, time)
5061 FRAME_PTR *fp;
5062 Lisp_Object *bar_window;
5063 enum scroll_bar_part *part;
5064 Lisp_Object *x, *y;
5065 unsigned long *time;
5066 {
5067 struct scroll_bar *bar = XSCROLL_BAR (last_mouse_scroll_bar);
5068 ControlHandle ch = SCROLL_BAR_CONTROL_HANDLE (bar);
5069 #if TARGET_API_MAC_CARBON
5070 WindowPtr wp = GetControlOwner (ch);
5071 #else
5072 WindowPtr wp = (*ch)->contrlOwner;
5073 #endif
5074 Point mouse_pos;
5075 struct frame *f = mac_window_to_frame (wp);
5076 int win_y, top_range;
5077
5078 SetPortWindowPort (wp);
5079
5080 GetMouse (&mouse_pos);
5081
5082 win_y = mouse_pos.v - XINT (bar->top);
5083 top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height));
5084
5085 win_y -= VERTICAL_SCROLL_BAR_TOP_BORDER;
5086
5087 win_y -= 24;
5088
5089 if (! NILP (bar->dragging))
5090 win_y -= XINT (bar->dragging);
5091
5092 if (win_y < 0)
5093 win_y = 0;
5094 if (win_y > top_range)
5095 win_y = top_range;
5096
5097 *fp = f;
5098 *bar_window = bar->window;
5099
5100 if (! NILP (bar->dragging))
5101 *part = scroll_bar_handle;
5102 else if (win_y < XINT (bar->start))
5103 *part = scroll_bar_above_handle;
5104 else if (win_y < XINT (bar->end) + VERTICAL_SCROLL_BAR_MIN_HANDLE)
5105 *part = scroll_bar_handle;
5106 else
5107 *part = scroll_bar_below_handle;
5108
5109 XSETINT (*x, win_y);
5110 XSETINT (*y, top_range);
5111
5112 f->mouse_moved = 0;
5113 last_mouse_scroll_bar = Qnil;
5114
5115 *time = last_mouse_movement_time;
5116 }
5117
5118
5119 /* The screen has been cleared so we may have changed foreground or
5120 background colors, and the scroll bars may need to be redrawn.
5121 Clear out the scroll bars, and ask for expose events, so we can
5122 redraw them. */
5123
5124 void
5125 x_scroll_bar_clear (f)
5126 FRAME_PTR f;
5127 {
5128 XTcondemn_scroll_bars (f);
5129 XTjudge_scroll_bars (f);
5130 }
5131
5132 \f
5133 /***********************************************************************
5134 Text Cursor
5135 ***********************************************************************/
5136
5137 /* Set clipping for output in glyph row ROW. W is the window in which
5138 we operate. GC is the graphics context to set clipping in.
5139
5140 ROW may be a text row or, e.g., a mode line. Text rows must be
5141 clipped to the interior of the window dedicated to text display,
5142 mode lines must be clipped to the whole window. */
5143
5144 static void
5145 x_clip_to_row (w, row, area, gc)
5146 struct window *w;
5147 struct glyph_row *row;
5148 int area;
5149 GC gc;
5150 {
5151 struct frame *f = XFRAME (WINDOW_FRAME (w));
5152 Rect clip_rect;
5153 int window_x, window_y, window_width;
5154
5155 window_box (w, area, &window_x, &window_y, &window_width, 0);
5156
5157 clip_rect.left = window_x;
5158 clip_rect.top = WINDOW_TO_FRAME_PIXEL_Y (w, row->y);
5159 clip_rect.top = max (clip_rect.top, window_y);
5160 clip_rect.right = clip_rect.left + window_width;
5161 clip_rect.bottom = clip_rect.top + row->visible_height;
5162
5163 mac_set_clip_rectangles (FRAME_MAC_DISPLAY (f), gc, &clip_rect, 1);
5164 }
5165
5166
5167 /* Draw a hollow box cursor on window W in glyph row ROW. */
5168
5169 static void
5170 x_draw_hollow_cursor (w, row)
5171 struct window *w;
5172 struct glyph_row *row;
5173 {
5174 struct frame *f = XFRAME (WINDOW_FRAME (w));
5175 struct mac_display_info *dpyinfo = FRAME_MAC_DISPLAY_INFO (f);
5176 Display *dpy = FRAME_MAC_DISPLAY (f);
5177 int x, y, wd, h;
5178 XGCValues xgcv;
5179 struct glyph *cursor_glyph;
5180 GC gc;
5181
5182 /* Get the glyph the cursor is on. If we can't tell because
5183 the current matrix is invalid or such, give up. */
5184 cursor_glyph = get_phys_cursor_glyph (w);
5185 if (cursor_glyph == NULL)
5186 return;
5187
5188 /* Compute frame-relative coordinates for phys cursor. */
5189 x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x);
5190 y = get_phys_cursor_geometry (w, row, cursor_glyph, &h);
5191 wd = w->phys_cursor_width;
5192
5193 /* The foreground of cursor_gc is typically the same as the normal
5194 background color, which can cause the cursor box to be invisible. */
5195 xgcv.foreground = f->output_data.mac->cursor_pixel;
5196 if (dpyinfo->scratch_cursor_gc)
5197 XChangeGC (dpy, dpyinfo->scratch_cursor_gc, GCForeground, &xgcv);
5198 else
5199 dpyinfo->scratch_cursor_gc = XCreateGC (dpy, FRAME_MAC_WINDOW (f),
5200 GCForeground, &xgcv);
5201 gc = dpyinfo->scratch_cursor_gc;
5202
5203 /* Set clipping, draw the rectangle, and reset clipping again. */
5204 x_clip_to_row (w, row, TEXT_AREA, gc);
5205 mac_draw_rectangle (f, gc, x, y, wd, h);
5206 mac_reset_clip_rectangles (dpy, gc);
5207 }
5208
5209
5210 /* Draw a bar cursor on window W in glyph row ROW.
5211
5212 Implementation note: One would like to draw a bar cursor with an
5213 angle equal to the one given by the font property XA_ITALIC_ANGLE.
5214 Unfortunately, I didn't find a font yet that has this property set.
5215 --gerd. */
5216
5217 static void
5218 x_draw_bar_cursor (w, row, width, kind)
5219 struct window *w;
5220 struct glyph_row *row;
5221 int width;
5222 enum text_cursor_kinds kind;
5223 {
5224 struct frame *f = XFRAME (w->frame);
5225 struct glyph *cursor_glyph;
5226
5227 /* If cursor is out of bounds, don't draw garbage. This can happen
5228 in mini-buffer windows when switching between echo area glyphs
5229 and mini-buffer. */
5230 cursor_glyph = get_phys_cursor_glyph (w);
5231 if (cursor_glyph == NULL)
5232 return;
5233
5234 /* If on an image, draw like a normal cursor. That's usually better
5235 visible than drawing a bar, esp. if the image is large so that
5236 the bar might not be in the window. */
5237 if (cursor_glyph->type == IMAGE_GLYPH)
5238 {
5239 struct glyph_row *row;
5240 row = MATRIX_ROW (w->current_matrix, w->phys_cursor.vpos);
5241 draw_phys_cursor_glyph (w, row, DRAW_CURSOR);
5242 }
5243 else
5244 {
5245 Display *dpy = FRAME_MAC_DISPLAY (f);
5246 Window window = FRAME_MAC_WINDOW (f);
5247 GC gc = FRAME_MAC_DISPLAY_INFO (f)->scratch_cursor_gc;
5248 unsigned long mask = GCForeground | GCBackground;
5249 struct face *face = FACE_FROM_ID (f, cursor_glyph->face_id);
5250 XGCValues xgcv;
5251
5252 /* If the glyph's background equals the color we normally draw
5253 the bar cursor in, the bar cursor in its normal color is
5254 invisible. Use the glyph's foreground color instead in this
5255 case, on the assumption that the glyph's colors are chosen so
5256 that the glyph is legible. */
5257 if (face->background == f->output_data.mac->cursor_pixel)
5258 xgcv.background = xgcv.foreground = face->foreground;
5259 else
5260 xgcv.background = xgcv.foreground = f->output_data.mac->cursor_pixel;
5261
5262 if (gc)
5263 XChangeGC (dpy, gc, mask, &xgcv);
5264 else
5265 {
5266 gc = XCreateGC (dpy, window, mask, &xgcv);
5267 FRAME_MAC_DISPLAY_INFO (f)->scratch_cursor_gc = gc;
5268 }
5269
5270 if (width < 0)
5271 width = FRAME_CURSOR_WIDTH (f);
5272 width = min (cursor_glyph->pixel_width, width);
5273
5274 w->phys_cursor_width = width;
5275 x_clip_to_row (w, row, TEXT_AREA, gc);
5276
5277 if (kind == BAR_CURSOR)
5278 mac_fill_rectangle (f, gc,
5279 WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x),
5280 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y),
5281 width, row->height);
5282 else
5283 mac_fill_rectangle (f, gc,
5284 WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x),
5285 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y +
5286 row->height - width),
5287 cursor_glyph->pixel_width,
5288 width);
5289
5290 mac_reset_clip_rectangles (dpy, gc);
5291 }
5292 }
5293
5294
5295 /* RIF: Define cursor CURSOR on frame F. */
5296
5297 static void
5298 mac_define_frame_cursor (f, cursor)
5299 struct frame *f;
5300 Cursor cursor;
5301 {
5302 SetThemeCursor (cursor);
5303 }
5304
5305
5306 /* RIF: Clear area on frame F. */
5307
5308 static void
5309 mac_clear_frame_area (f, x, y, width, height)
5310 struct frame *f;
5311 int x, y, width, height;
5312 {
5313 mac_clear_area (f, x, y, width, height);
5314 }
5315
5316
5317 /* RIF: Draw cursor on window W. */
5318
5319 static void
5320 mac_draw_window_cursor (w, glyph_row, x, y, cursor_type, cursor_width, on_p, active_p)
5321 struct window *w;
5322 struct glyph_row *glyph_row;
5323 int x, y;
5324 int cursor_type, cursor_width;
5325 int on_p, active_p;
5326 {
5327 if (on_p)
5328 {
5329 w->phys_cursor_type = cursor_type;
5330 w->phys_cursor_on_p = 1;
5331
5332 if (glyph_row->exact_window_width_line_p
5333 && w->phys_cursor.hpos >= glyph_row->used[TEXT_AREA])
5334 {
5335 glyph_row->cursor_in_fringe_p = 1;
5336 draw_fringe_bitmap (w, glyph_row, 0);
5337 }
5338 else
5339 switch (cursor_type)
5340 {
5341 case HOLLOW_BOX_CURSOR:
5342 x_draw_hollow_cursor (w, glyph_row);
5343 break;
5344
5345 case FILLED_BOX_CURSOR:
5346 draw_phys_cursor_glyph (w, glyph_row, DRAW_CURSOR);
5347 break;
5348
5349 case BAR_CURSOR:
5350 x_draw_bar_cursor (w, glyph_row, cursor_width, BAR_CURSOR);
5351 break;
5352
5353 case HBAR_CURSOR:
5354 x_draw_bar_cursor (w, glyph_row, cursor_width, HBAR_CURSOR);
5355 break;
5356
5357 case NO_CURSOR:
5358 w->phys_cursor_width = 0;
5359 break;
5360
5361 default:
5362 abort ();
5363 }
5364 }
5365 }
5366
5367 \f
5368 /* Icons. */
5369
5370 #if 0 /* MAC_TODO: no icon support yet. */
5371 int
5372 x_bitmap_icon (f, icon)
5373 struct frame *f;
5374 Lisp_Object icon;
5375 {
5376 HANDLE hicon;
5377
5378 if (FRAME_W32_WINDOW (f) == 0)
5379 return 1;
5380
5381 if (NILP (icon))
5382 hicon = LoadIcon (hinst, EMACS_CLASS);
5383 else if (STRINGP (icon))
5384 hicon = LoadImage (NULL, (LPCTSTR) SDATA (icon), IMAGE_ICON, 0, 0,
5385 LR_DEFAULTSIZE | LR_LOADFROMFILE);
5386 else if (SYMBOLP (icon))
5387 {
5388 LPCTSTR name;
5389
5390 if (EQ (icon, intern ("application")))
5391 name = (LPCTSTR) IDI_APPLICATION;
5392 else if (EQ (icon, intern ("hand")))
5393 name = (LPCTSTR) IDI_HAND;
5394 else if (EQ (icon, intern ("question")))
5395 name = (LPCTSTR) IDI_QUESTION;
5396 else if (EQ (icon, intern ("exclamation")))
5397 name = (LPCTSTR) IDI_EXCLAMATION;
5398 else if (EQ (icon, intern ("asterisk")))
5399 name = (LPCTSTR) IDI_ASTERISK;
5400 else if (EQ (icon, intern ("winlogo")))
5401 name = (LPCTSTR) IDI_WINLOGO;
5402 else
5403 return 1;
5404
5405 hicon = LoadIcon (NULL, name);
5406 }
5407 else
5408 return 1;
5409
5410 if (hicon == NULL)
5411 return 1;
5412
5413 PostMessage (FRAME_W32_WINDOW (f), WM_SETICON, (WPARAM) ICON_BIG,
5414 (LPARAM) hicon);
5415
5416 return 0;
5417 }
5418 #endif /* MAC_TODO */
5419 \f
5420 /************************************************************************
5421 Handling X errors
5422 ************************************************************************/
5423
5424 /* Display Error Handling functions not used on W32. Listing them here
5425 helps diff stay in step when comparing w32term.c with xterm.c.
5426
5427 x_error_catcher (display, error)
5428 x_catch_errors (dpy)
5429 x_catch_errors_unwind (old_val)
5430 x_check_errors (dpy, format)
5431 x_had_errors_p (dpy)
5432 x_clear_errors (dpy)
5433 x_uncatch_errors (dpy, count)
5434 x_trace_wire ()
5435 x_connection_signal (signalnum)
5436 x_connection_closed (dpy, error_message)
5437 x_error_quitter (display, error)
5438 x_error_handler (display, error)
5439 x_io_error_quitter (display)
5440
5441 */
5442
5443 \f
5444 /* Changing the font of the frame. */
5445
5446 /* Give frame F the font named FONTNAME as its default font, and
5447 return the full name of that font. FONTNAME may be a wildcard
5448 pattern; in that case, we choose some font that fits the pattern.
5449 The return value shows which font we chose. */
5450
5451 Lisp_Object
5452 x_new_font (f, fontname)
5453 struct frame *f;
5454 register char *fontname;
5455 {
5456 struct font_info *fontp
5457 = FS_LOAD_FONT (f, 0, fontname, -1);
5458
5459 if (!fontp)
5460 return Qnil;
5461
5462 FRAME_FONT (f) = (XFontStruct *) (fontp->font);
5463 FRAME_BASELINE_OFFSET (f) = fontp->baseline_offset;
5464 FRAME_FONTSET (f) = -1;
5465
5466 FRAME_COLUMN_WIDTH (f) = fontp->average_width;
5467 FRAME_SPACE_WIDTH (f) = fontp->space_width;
5468 FRAME_LINE_HEIGHT (f) = FONT_HEIGHT (FRAME_FONT (f));
5469
5470 compute_fringe_widths (f, 1);
5471
5472 /* Compute the scroll bar width in character columns. */
5473 if (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0)
5474 {
5475 int wid = FRAME_COLUMN_WIDTH (f);
5476 FRAME_CONFIG_SCROLL_BAR_COLS (f)
5477 = (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) + wid-1) / wid;
5478 }
5479 else
5480 {
5481 int wid = FRAME_COLUMN_WIDTH (f);
5482 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (14 + wid - 1) / wid;
5483 }
5484
5485 /* Now make the frame display the given font. */
5486 if (FRAME_MAC_WINDOW (f) != 0)
5487 {
5488 XSetFont (FRAME_MAC_DISPLAY (f), f->output_data.mac->normal_gc,
5489 FRAME_FONT (f));
5490 XSetFont (FRAME_MAC_DISPLAY (f), f->output_data.mac->reverse_gc,
5491 FRAME_FONT (f));
5492 XSetFont (FRAME_MAC_DISPLAY (f), f->output_data.mac->cursor_gc,
5493 FRAME_FONT (f));
5494
5495 /* Don't change the size of a tip frame; there's no point in
5496 doing it because it's done in Fx_show_tip, and it leads to
5497 problems because the tip frame has no widget. */
5498 if (NILP (tip_frame) || XFRAME (tip_frame) != f)
5499 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
5500 }
5501
5502 return build_string (fontp->full_name);
5503 }
5504
5505 /* Give frame F the fontset named FONTSETNAME as its default font, and
5506 return the full name of that fontset. FONTSETNAME may be a wildcard
5507 pattern; in that case, we choose some fontset that fits the pattern.
5508 The return value shows which fontset we chose. */
5509
5510 Lisp_Object
5511 x_new_fontset (f, fontsetname)
5512 struct frame *f;
5513 char *fontsetname;
5514 {
5515 int fontset = fs_query_fontset (build_string (fontsetname), 0);
5516 Lisp_Object result;
5517
5518 if (fontset < 0)
5519 return Qnil;
5520
5521 if (FRAME_FONTSET (f) == fontset)
5522 /* This fontset is already set in frame F. There's nothing more
5523 to do. */
5524 return fontset_name (fontset);
5525
5526 result = x_new_font (f, (SDATA (fontset_ascii (fontset))));
5527
5528 if (!STRINGP (result))
5529 /* Can't load ASCII font. */
5530 return Qnil;
5531
5532 /* Since x_new_font doesn't update any fontset information, do it now. */
5533 FRAME_FONTSET (f) = fontset;
5534
5535 return build_string (fontsetname);
5536 }
5537
5538 \f
5539 /***********************************************************************
5540 TODO: W32 Input Methods
5541 ***********************************************************************/
5542 /* Listing missing functions from xterm.c helps diff stay in step.
5543
5544 xim_destroy_callback (xim, client_data, call_data)
5545 xim_open_dpy (dpyinfo, resource_name)
5546 struct xim_inst_t
5547 xim_instantiate_callback (display, client_data, call_data)
5548 xim_initialize (dpyinfo, resource_name)
5549 xim_close_dpy (dpyinfo)
5550
5551 */
5552
5553 \f
5554 void
5555 mac_get_window_bounds (f, inner, outer)
5556 struct frame *f;
5557 Rect *inner, *outer;
5558 {
5559 #if TARGET_API_MAC_CARBON
5560 GetWindowBounds (FRAME_MAC_WINDOW (f), kWindowContentRgn, inner);
5561 GetWindowBounds (FRAME_MAC_WINDOW (f), kWindowStructureRgn, outer);
5562 #else /* not TARGET_API_MAC_CARBON */
5563 RgnHandle region = NewRgn ();
5564
5565 GetWindowRegion (FRAME_MAC_WINDOW (f), kWindowContentRgn, region);
5566 *inner = (*region)->rgnBBox;
5567 GetWindowRegion (FRAME_MAC_WINDOW (f), kWindowStructureRgn, region);
5568 *outer = (*region)->rgnBBox;
5569 DisposeRgn (region);
5570 #endif /* not TARGET_API_MAC_CARBON */
5571 }
5572
5573
5574 \f
5575 /* Calculate the absolute position in frame F
5576 from its current recorded position values and gravity. */
5577
5578 void
5579 x_calc_absolute_position (f)
5580 struct frame *f;
5581 {
5582 int width_diff = 0, height_diff = 0;
5583 int flags = f->size_hint_flags;
5584 Rect inner, outer;
5585
5586 /* We have nothing to do if the current position
5587 is already for the top-left corner. */
5588 if (! ((flags & XNegative) || (flags & YNegative)))
5589 return;
5590
5591 /* Find the offsets of the outside upper-left corner of
5592 the inner window, with respect to the outer window. */
5593 mac_get_window_bounds (f, &inner, &outer);
5594
5595 width_diff = (outer.right - outer.left) - (inner.right - inner.left);
5596 height_diff = (outer.bottom - outer.top) - (inner.bottom - inner.top);
5597
5598 /* Treat negative positions as relative to the leftmost bottommost
5599 position that fits on the screen. */
5600 if (flags & XNegative)
5601 f->left_pos = (FRAME_MAC_DISPLAY_INFO (f)->width
5602 - width_diff
5603 - FRAME_PIXEL_WIDTH (f)
5604 + f->left_pos);
5605
5606 if (flags & YNegative)
5607 f->top_pos = (FRAME_MAC_DISPLAY_INFO (f)->height
5608 - height_diff
5609 - FRAME_PIXEL_HEIGHT (f)
5610 + f->top_pos);
5611
5612 /* The left_pos and top_pos
5613 are now relative to the top and left screen edges,
5614 so the flags should correspond. */
5615 f->size_hint_flags &= ~ (XNegative | YNegative);
5616 }
5617
5618 /* CHANGE_GRAVITY is 1 when calling from Fset_frame_position,
5619 to really change the position, and 0 when calling from
5620 x_make_frame_visible (in that case, XOFF and YOFF are the current
5621 position values). It is -1 when calling from x_set_frame_parameters,
5622 which means, do adjust for borders but don't change the gravity. */
5623
5624 void
5625 x_set_offset (f, xoff, yoff, change_gravity)
5626 struct frame *f;
5627 register int xoff, yoff;
5628 int change_gravity;
5629 {
5630 if (change_gravity > 0)
5631 {
5632 f->top_pos = yoff;
5633 f->left_pos = xoff;
5634 f->size_hint_flags &= ~ (XNegative | YNegative);
5635 if (xoff < 0)
5636 f->size_hint_flags |= XNegative;
5637 if (yoff < 0)
5638 f->size_hint_flags |= YNegative;
5639 f->win_gravity = NorthWestGravity;
5640 }
5641 x_calc_absolute_position (f);
5642
5643 BLOCK_INPUT;
5644 x_wm_set_size_hint (f, (long) 0, 0);
5645
5646 #if TARGET_API_MAC_CARBON
5647 MoveWindowStructure (FRAME_MAC_WINDOW (f), f->left_pos, f->top_pos);
5648 /* If the title bar is completely outside the screen, adjust the
5649 position. */
5650 ConstrainWindowToScreen (FRAME_MAC_WINDOW (f), kWindowTitleBarRgn,
5651 kWindowConstrainMoveRegardlessOfFit
5652 | kWindowConstrainAllowPartial, NULL, NULL);
5653 x_real_positions (f, &f->left_pos, &f->top_pos);
5654 #else
5655 {
5656 Rect inner, outer, screen_rect, dummy;
5657 RgnHandle region = NewRgn ();
5658
5659 mac_get_window_bounds (f, &inner, &outer);
5660 f->x_pixels_diff = inner.left - outer.left;
5661 f->y_pixels_diff = inner.top - outer.top;
5662 MoveWindow (FRAME_MAC_WINDOW (f), f->left_pos + f->x_pixels_diff,
5663 f->top_pos + f->y_pixels_diff, false);
5664
5665 /* If the title bar is completely outside the screen, adjust the
5666 position. The variable `outer' holds the title bar rectangle.
5667 The variable `inner' holds slightly smaller one than `outer',
5668 so that the calculation of overlapping may not become too
5669 strict. */
5670 GetWindowRegion (FRAME_MAC_WINDOW (f), kWindowTitleBarRgn, region);
5671 outer = (*region)->rgnBBox;
5672 DisposeRgn (region);
5673 inner = outer;
5674 InsetRect (&inner, 8, 8);
5675 screen_rect = qd.screenBits.bounds;
5676 screen_rect.top += GetMBarHeight ();
5677
5678 if (!SectRect (&inner, &screen_rect, &dummy))
5679 {
5680 if (inner.right <= screen_rect.left)
5681 f->left_pos = screen_rect.left;
5682 else if (inner.left >= screen_rect.right)
5683 f->left_pos = screen_rect.right - (outer.right - outer.left);
5684
5685 if (inner.bottom <= screen_rect.top)
5686 f->top_pos = screen_rect.top;
5687 else if (inner.top >= screen_rect.bottom)
5688 f->top_pos = screen_rect.bottom - (outer.bottom - outer.top);
5689
5690 MoveWindow (FRAME_MAC_WINDOW (f), f->left_pos + f->x_pixels_diff,
5691 f->top_pos + f->y_pixels_diff, false);
5692 }
5693 }
5694 #endif
5695
5696 UNBLOCK_INPUT;
5697 }
5698
5699 /* Call this to change the size of frame F's x-window.
5700 If CHANGE_GRAVITY is 1, we change to top-left-corner window gravity
5701 for this size change and subsequent size changes.
5702 Otherwise we leave the window gravity unchanged. */
5703
5704 void
5705 x_set_window_size (f, change_gravity, cols, rows)
5706 struct frame *f;
5707 int change_gravity;
5708 int cols, rows;
5709 {
5710 int pixelwidth, pixelheight;
5711
5712 BLOCK_INPUT;
5713
5714 check_frame_size (f, &rows, &cols);
5715 f->scroll_bar_actual_width
5716 = FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f);
5717
5718 compute_fringe_widths (f, 0);
5719
5720 pixelwidth = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, cols);
5721 pixelheight = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, rows);
5722
5723 f->win_gravity = NorthWestGravity;
5724 x_wm_set_size_hint (f, (long) 0, 0);
5725
5726 SizeWindow (FRAME_MAC_WINDOW (f), pixelwidth, pixelheight, 0);
5727 #if TARGET_API_MAC_CARBON
5728 if (f->output_data.mac->hourglass_control)
5729 MoveControl (f->output_data.mac->hourglass_control,
5730 pixelwidth - HOURGLASS_WIDTH, 0);
5731 #endif
5732
5733 /* Now, strictly speaking, we can't be sure that this is accurate,
5734 but the window manager will get around to dealing with the size
5735 change request eventually, and we'll hear how it went when the
5736 ConfigureNotify event gets here.
5737
5738 We could just not bother storing any of this information here,
5739 and let the ConfigureNotify event set everything up, but that
5740 might be kind of confusing to the Lisp code, since size changes
5741 wouldn't be reported in the frame parameters until some random
5742 point in the future when the ConfigureNotify event arrives.
5743
5744 We pass 1 for DELAY since we can't run Lisp code inside of
5745 a BLOCK_INPUT. */
5746 change_frame_size (f, rows, cols, 0, 1, 0);
5747 FRAME_PIXEL_WIDTH (f) = pixelwidth;
5748 FRAME_PIXEL_HEIGHT (f) = pixelheight;
5749
5750 /* We've set {FRAME,PIXEL}_{WIDTH,HEIGHT} to the values we hope to
5751 receive in the ConfigureNotify event; if we get what we asked
5752 for, then the event won't cause the screen to become garbaged, so
5753 we have to make sure to do it here. */
5754 SET_FRAME_GARBAGED (f);
5755
5756 XFlush (FRAME_X_DISPLAY (f));
5757
5758 /* If cursor was outside the new size, mark it as off. */
5759 mark_window_cursors_off (XWINDOW (f->root_window));
5760
5761 /* Clear out any recollection of where the mouse highlighting was,
5762 since it might be in a place that's outside the new frame size.
5763 Actually checking whether it is outside is a pain in the neck,
5764 so don't try--just let the highlighting be done afresh with new size. */
5765 cancel_mouse_face (f);
5766
5767 UNBLOCK_INPUT;
5768 }
5769 \f
5770 /* Mouse warping. */
5771
5772 void x_set_mouse_pixel_position (struct frame *f, int pix_x, int pix_y);
5773
5774 void
5775 x_set_mouse_position (f, x, y)
5776 struct frame *f;
5777 int x, y;
5778 {
5779 int pix_x, pix_y;
5780
5781 pix_x = FRAME_COL_TO_PIXEL_X (f, x) + FRAME_COLUMN_WIDTH (f) / 2;
5782 pix_y = FRAME_LINE_TO_PIXEL_Y (f, y) + FRAME_LINE_HEIGHT (f) / 2;
5783
5784 if (pix_x < 0) pix_x = 0;
5785 if (pix_x > FRAME_PIXEL_WIDTH (f)) pix_x = FRAME_PIXEL_WIDTH (f);
5786
5787 if (pix_y < 0) pix_y = 0;
5788 if (pix_y > FRAME_PIXEL_HEIGHT (f)) pix_y = FRAME_PIXEL_HEIGHT (f);
5789
5790 x_set_mouse_pixel_position (f, pix_x, pix_y);
5791 }
5792
5793 void
5794 x_set_mouse_pixel_position (f, pix_x, pix_y)
5795 struct frame *f;
5796 int pix_x, pix_y;
5797 {
5798 #if 0 /* MAC_TODO: CursorDeviceMoveTo is non-Carbon */
5799 BLOCK_INPUT;
5800
5801 XWarpPointer (FRAME_X_DISPLAY (f), None, FRAME_X_WINDOW (f),
5802 0, 0, 0, 0, pix_x, pix_y);
5803 UNBLOCK_INPUT;
5804 #endif
5805 }
5806 \f
5807 /* focus shifting, raising and lowering. */
5808
5809 void
5810 x_focus_on_frame (f)
5811 struct frame *f;
5812 {
5813 #if 0 /* This proves to be unpleasant. */
5814 x_raise_frame (f);
5815 #endif
5816 #if 0
5817 /* I don't think that the ICCCM allows programs to do things like this
5818 without the interaction of the window manager. Whatever you end up
5819 doing with this code, do it to x_unfocus_frame too. */
5820 XSetInputFocus (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5821 RevertToPointerRoot, CurrentTime);
5822 #endif /* ! 0 */
5823 }
5824
5825 void
5826 x_unfocus_frame (f)
5827 struct frame *f;
5828 {
5829 }
5830
5831 /* Raise frame F. */
5832
5833 void
5834 x_raise_frame (f)
5835 struct frame *f;
5836 {
5837 if (f->async_visible)
5838 {
5839 BLOCK_INPUT;
5840 SelectWindow (FRAME_MAC_WINDOW (f));
5841 UNBLOCK_INPUT;
5842 }
5843 }
5844
5845 /* Lower frame F. */
5846
5847 void
5848 x_lower_frame (f)
5849 struct frame *f;
5850 {
5851 if (f->async_visible)
5852 {
5853 BLOCK_INPUT;
5854 SendBehind (FRAME_MAC_WINDOW (f), nil);
5855 UNBLOCK_INPUT;
5856 }
5857 }
5858
5859 static void
5860 XTframe_raise_lower (f, raise_flag)
5861 FRAME_PTR f;
5862 int raise_flag;
5863 {
5864 if (raise_flag)
5865 x_raise_frame (f);
5866 else
5867 x_lower_frame (f);
5868 }
5869 \f
5870 /* Change of visibility. */
5871
5872 static void
5873 mac_handle_visibility_change (f)
5874 struct frame *f;
5875 {
5876 WindowPtr wp = FRAME_MAC_WINDOW (f);
5877 int visible = 0, iconified = 0;
5878 struct input_event buf;
5879
5880 if (IsWindowVisible (wp))
5881 if (IsWindowCollapsed (wp))
5882 iconified = 1;
5883 else
5884 visible = 1;
5885
5886 if (!f->async_visible && visible)
5887 {
5888 if (f->iconified)
5889 {
5890 /* wait_reading_process_output will notice this and update
5891 the frame's display structures. If we were made
5892 invisible, we should not set garbaged, because that stops
5893 redrawing on Update events. */
5894 SET_FRAME_GARBAGED (f);
5895
5896 EVENT_INIT (buf);
5897 buf.kind = DEICONIFY_EVENT;
5898 XSETFRAME (buf.frame_or_window, f);
5899 kbd_buffer_store_event (&buf);
5900 }
5901 else if (! NILP (Vframe_list) && ! NILP (XCDR (Vframe_list)))
5902 /* Force a redisplay sooner or later to update the
5903 frame titles in case this is the second frame. */
5904 record_asynch_buffer_change ();
5905 }
5906 else if (f->async_visible && !visible)
5907 if (iconified)
5908 {
5909 EVENT_INIT (buf);
5910 buf.kind = ICONIFY_EVENT;
5911 XSETFRAME (buf.frame_or_window, f);
5912 kbd_buffer_store_event (&buf);
5913 }
5914
5915 f->async_visible = visible;
5916 f->async_iconified = iconified;
5917 }
5918
5919 /* This tries to wait until the frame is really visible.
5920 However, if the window manager asks the user where to position
5921 the frame, this will return before the user finishes doing that.
5922 The frame will not actually be visible at that time,
5923 but it will become visible later when the window manager
5924 finishes with it. */
5925
5926 void
5927 x_make_frame_visible (f)
5928 struct frame *f;
5929 {
5930 Lisp_Object type;
5931 int original_top, original_left;
5932
5933 BLOCK_INPUT;
5934
5935 if (! FRAME_VISIBLE_P (f))
5936 {
5937 /* We test FRAME_GARBAGED_P here to make sure we don't
5938 call x_set_offset a second time
5939 if we get to x_make_frame_visible a second time
5940 before the window gets really visible. */
5941 if (! FRAME_ICONIFIED_P (f)
5942 && ! f->output_data.mac->asked_for_visible)
5943 #if TARGET_API_MAC_CARBON
5944 if (!(FRAME_SIZE_HINTS (f)->flags & (USPosition | PPosition)))
5945 {
5946 struct frame *sf = SELECTED_FRAME ();
5947 if (!FRAME_MAC_P (sf))
5948 RepositionWindow (FRAME_MAC_WINDOW (f), NULL,
5949 kWindowCenterOnMainScreen);
5950 else
5951 RepositionWindow (FRAME_MAC_WINDOW (f),
5952 FRAME_MAC_WINDOW (sf),
5953 #if MAC_OS_X_VERSION_MAX_ALLOWED >= 1020
5954 kWindowCascadeStartAtParentWindowScreen
5955 #else
5956 kWindowCascadeOnParentWindowScreen
5957 #endif
5958 );
5959 x_real_positions (f, &f->left_pos, &f->top_pos);
5960 }
5961 else
5962 #endif
5963 x_set_offset (f, f->left_pos, f->top_pos, 0);
5964
5965 f->output_data.mac->asked_for_visible = 1;
5966
5967 SelectWindow (FRAME_MAC_WINDOW (f));
5968 CollapseWindow (FRAME_MAC_WINDOW (f), false);
5969 ShowWindow (FRAME_MAC_WINDOW (f));
5970 }
5971
5972 XFlush (FRAME_MAC_DISPLAY (f));
5973
5974 /* Synchronize to ensure Emacs knows the frame is visible
5975 before we do anything else. We do this loop with input not blocked
5976 so that incoming events are handled. */
5977 {
5978 Lisp_Object frame;
5979 int count;
5980
5981 /* This must come after we set COUNT. */
5982 UNBLOCK_INPUT;
5983
5984 XSETFRAME (frame, f);
5985
5986 /* Wait until the frame is visible. Process X events until a
5987 MapNotify event has been seen, or until we think we won't get a
5988 MapNotify at all.. */
5989 for (count = input_signal_count + 10;
5990 input_signal_count < count && !FRAME_VISIBLE_P (f);)
5991 {
5992 /* Force processing of queued events. */
5993 x_sync (f);
5994
5995 /* Machines that do polling rather than SIGIO have been
5996 observed to go into a busy-wait here. So we'll fake an
5997 alarm signal to let the handler know that there's something
5998 to be read. We used to raise a real alarm, but it seems
5999 that the handler isn't always enabled here. This is
6000 probably a bug. */
6001 if (input_polling_used ())
6002 {
6003 /* It could be confusing if a real alarm arrives while
6004 processing the fake one. Turn it off and let the
6005 handler reset it. */
6006 extern void poll_for_input_1 P_ ((void));
6007 int old_poll_suppress_count = poll_suppress_count;
6008 poll_suppress_count = 1;
6009 poll_for_input_1 ();
6010 poll_suppress_count = old_poll_suppress_count;
6011 }
6012
6013 /* See if a MapNotify event has been processed. */
6014 FRAME_SAMPLE_VISIBILITY (f);
6015 }
6016 }
6017 }
6018
6019 /* Change from mapped state to withdrawn state. */
6020
6021 /* Make the frame visible (mapped and not iconified). */
6022
6023 void
6024 x_make_frame_invisible (f)
6025 struct frame *f;
6026 {
6027 /* A deactivate event does not occur when the last visible frame is
6028 made invisible. So if we clear the highlight here, it will not
6029 be rehighlighted when it is made visible. */
6030 #if 0
6031 /* Don't keep the highlight on an invisible frame. */
6032 if (FRAME_MAC_DISPLAY_INFO (f)->x_highlight_frame == f)
6033 FRAME_MAC_DISPLAY_INFO (f)->x_highlight_frame = 0;
6034 #endif
6035
6036 BLOCK_INPUT;
6037
6038 /* Before unmapping the window, update the WM_SIZE_HINTS property to claim
6039 that the current position of the window is user-specified, rather than
6040 program-specified, so that when the window is mapped again, it will be
6041 placed at the same location, without forcing the user to position it
6042 by hand again (they have already done that once for this window.) */
6043 x_wm_set_size_hint (f, (long) 0, 1);
6044
6045 HideWindow (FRAME_MAC_WINDOW (f));
6046
6047 UNBLOCK_INPUT;
6048
6049 #if !USE_CARBON_EVENTS
6050 mac_handle_visibility_change (f);
6051 #endif
6052 }
6053
6054 /* Change window state from mapped to iconified. */
6055
6056 void
6057 x_iconify_frame (f)
6058 struct frame *f;
6059 {
6060 OSErr err;
6061
6062 /* A deactivate event does not occur when the last visible frame is
6063 iconified. So if we clear the highlight here, it will not be
6064 rehighlighted when it is deiconified. */
6065 #if 0
6066 /* Don't keep the highlight on an invisible frame. */
6067 if (FRAME_MAC_DISPLAY_INFO (f)->x_highlight_frame == f)
6068 FRAME_MAC_DISPLAY_INFO (f)->x_highlight_frame = 0;
6069 #endif
6070
6071 if (f->async_iconified)
6072 return;
6073
6074 BLOCK_INPUT;
6075
6076 FRAME_SAMPLE_VISIBILITY (f);
6077
6078 if (! FRAME_VISIBLE_P (f))
6079 ShowWindow (FRAME_MAC_WINDOW (f));
6080
6081 err = CollapseWindow (FRAME_MAC_WINDOW (f), true);
6082
6083 UNBLOCK_INPUT;
6084
6085 if (err != noErr)
6086 error ("Can't notify window manager of iconification");
6087
6088 #if !USE_CARBON_EVENTS
6089 mac_handle_visibility_change (f);
6090 #endif
6091 }
6092
6093 \f
6094 /* Free X resources of frame F. */
6095
6096 void
6097 x_free_frame_resources (f)
6098 struct frame *f;
6099 {
6100 struct mac_display_info *dpyinfo = FRAME_MAC_DISPLAY_INFO (f);
6101 WindowPtr wp = FRAME_MAC_WINDOW (f);
6102
6103 BLOCK_INPUT;
6104
6105 if (wp != tip_window)
6106 remove_window_handler (wp);
6107
6108 DisposeWindow (wp);
6109 if (wp == tip_window)
6110 /* Neither WaitNextEvent nor ReceiveNextEvent receives `window
6111 closed' event. So we reset tip_window here. */
6112 tip_window = NULL;
6113
6114 free_frame_menubar (f);
6115
6116 if (FRAME_FACE_CACHE (f))
6117 free_frame_faces (f);
6118
6119 x_free_gcs (f);
6120
6121 if (FRAME_SIZE_HINTS (f))
6122 xfree (FRAME_SIZE_HINTS (f));
6123
6124 xfree (f->output_data.mac);
6125 f->output_data.mac = NULL;
6126
6127 if (f == dpyinfo->x_focus_frame)
6128 dpyinfo->x_focus_frame = 0;
6129 if (f == dpyinfo->x_focus_event_frame)
6130 dpyinfo->x_focus_event_frame = 0;
6131 if (f == dpyinfo->x_highlight_frame)
6132 dpyinfo->x_highlight_frame = 0;
6133
6134 if (f == dpyinfo->mouse_face_mouse_frame)
6135 {
6136 dpyinfo->mouse_face_beg_row
6137 = dpyinfo->mouse_face_beg_col = -1;
6138 dpyinfo->mouse_face_end_row
6139 = dpyinfo->mouse_face_end_col = -1;
6140 dpyinfo->mouse_face_window = Qnil;
6141 dpyinfo->mouse_face_deferred_gc = 0;
6142 dpyinfo->mouse_face_mouse_frame = 0;
6143 }
6144
6145 UNBLOCK_INPUT;
6146 }
6147
6148
6149 /* Destroy the X window of frame F. */
6150
6151 void
6152 x_destroy_window (f)
6153 struct frame *f;
6154 {
6155 struct mac_display_info *dpyinfo = FRAME_MAC_DISPLAY_INFO (f);
6156
6157 x_free_frame_resources (f);
6158
6159 dpyinfo->reference_count--;
6160 }
6161
6162 \f
6163 /* Setting window manager hints. */
6164
6165 /* Set the normal size hints for the window manager, for frame F.
6166 FLAGS is the flags word to use--or 0 meaning preserve the flags
6167 that the window now has.
6168 If USER_POSITION is nonzero, we set the USPosition
6169 flag (this is useful when FLAGS is 0). */
6170 void
6171 x_wm_set_size_hint (f, flags, user_position)
6172 struct frame *f;
6173 long flags;
6174 int user_position;
6175 {
6176 int base_width, base_height, width_inc, height_inc;
6177 int min_rows = 0, min_cols = 0;
6178 XSizeHints *size_hints;
6179
6180 base_width = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 0);
6181 base_height = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, 0);
6182 width_inc = FRAME_COLUMN_WIDTH (f);
6183 height_inc = FRAME_LINE_HEIGHT (f);
6184
6185 check_frame_size (f, &min_rows, &min_cols);
6186
6187 size_hints = FRAME_SIZE_HINTS (f);
6188 if (size_hints == NULL)
6189 {
6190 size_hints = FRAME_SIZE_HINTS (f) = xmalloc (sizeof (XSizeHints));
6191 bzero (size_hints, sizeof (XSizeHints));
6192 }
6193
6194 size_hints->flags |= PResizeInc | PMinSize | PBaseSize ;
6195 size_hints->width_inc = width_inc;
6196 size_hints->height_inc = height_inc;
6197 size_hints->min_width = base_width + min_cols * width_inc;
6198 size_hints->min_height = base_height + min_rows * height_inc;
6199 size_hints->base_width = base_width;
6200 size_hints->base_height = base_height;
6201
6202 if (flags)
6203 size_hints->flags = flags;
6204 else if (user_position)
6205 {
6206 size_hints->flags &= ~ PPosition;
6207 size_hints->flags |= USPosition;
6208 }
6209 }
6210
6211 #if 0 /* MAC_TODO: hide application instead of iconify? */
6212 /* Used for IconicState or NormalState */
6213
6214 void
6215 x_wm_set_window_state (f, state)
6216 struct frame *f;
6217 int state;
6218 {
6219 #ifdef USE_X_TOOLKIT
6220 Arg al[1];
6221
6222 XtSetArg (al[0], XtNinitialState, state);
6223 XtSetValues (f->output_data.x->widget, al, 1);
6224 #else /* not USE_X_TOOLKIT */
6225 Window window = FRAME_X_WINDOW (f);
6226
6227 f->output_data.x->wm_hints.flags |= StateHint;
6228 f->output_data.x->wm_hints.initial_state = state;
6229
6230 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
6231 #endif /* not USE_X_TOOLKIT */
6232 }
6233
6234 void
6235 x_wm_set_icon_pixmap (f, pixmap_id)
6236 struct frame *f;
6237 int pixmap_id;
6238 {
6239 Pixmap icon_pixmap;
6240
6241 #ifndef USE_X_TOOLKIT
6242 Window window = FRAME_X_WINDOW (f);
6243 #endif
6244
6245 if (pixmap_id > 0)
6246 {
6247 icon_pixmap = x_bitmap_pixmap (f, pixmap_id);
6248 f->output_data.x->wm_hints.icon_pixmap = icon_pixmap;
6249 }
6250 else
6251 {
6252 /* It seems there is no way to turn off use of an icon pixmap.
6253 The following line does it, only if no icon has yet been created,
6254 for some window managers. But with mwm it crashes.
6255 Some people say it should clear the IconPixmapHint bit in this case,
6256 but that doesn't work, and the X consortium said it isn't the
6257 right thing at all. Since there is no way to win,
6258 best to explicitly give up. */
6259 #if 0
6260 f->output_data.x->wm_hints.icon_pixmap = None;
6261 #else
6262 return;
6263 #endif
6264 }
6265
6266 #ifdef USE_X_TOOLKIT /* same as in x_wm_set_window_state. */
6267
6268 {
6269 Arg al[1];
6270 XtSetArg (al[0], XtNiconPixmap, icon_pixmap);
6271 XtSetValues (f->output_data.x->widget, al, 1);
6272 }
6273
6274 #else /* not USE_X_TOOLKIT */
6275
6276 f->output_data.x->wm_hints.flags |= IconPixmapHint;
6277 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
6278
6279 #endif /* not USE_X_TOOLKIT */
6280 }
6281
6282 #endif /* MAC_TODO */
6283
6284 void
6285 x_wm_set_icon_position (f, icon_x, icon_y)
6286 struct frame *f;
6287 int icon_x, icon_y;
6288 {
6289 #if 0 /* MAC_TODO: no icons on Mac */
6290 #ifdef USE_X_TOOLKIT
6291 Window window = XtWindow (f->output_data.x->widget);
6292 #else
6293 Window window = FRAME_X_WINDOW (f);
6294 #endif
6295
6296 f->output_data.x->wm_hints.flags |= IconPositionHint;
6297 f->output_data.x->wm_hints.icon_x = icon_x;
6298 f->output_data.x->wm_hints.icon_y = icon_y;
6299
6300 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
6301 #endif /* MAC_TODO */
6302 }
6303
6304 \f
6305 /***********************************************************************
6306 XLFD Pattern Match
6307 ***********************************************************************/
6308
6309 /* An XLFD pattern is divided into blocks delimited by '*'. This
6310 structure holds information for each block. */
6311 struct xlfdpat_block
6312 {
6313 /* Length of the pattern string in this block. Non-zero except for
6314 the first and the last blocks. */
6315 int len;
6316
6317 /* Pattern string except the last character in this block. The last
6318 character is replaced with NUL in order to use it as a
6319 sentinel. */
6320 unsigned char *pattern;
6321
6322 /* Last character of the pattern string. Must not be '?'. */
6323 unsigned char last_char;
6324
6325 /* One of the tables for the Boyer-Moore string search. It
6326 specifies the number of positions to proceed for each character
6327 with which the match fails. */
6328 int skip[256];
6329
6330 /* The skip value for the last character in the above `skip' is
6331 assigned to `infinity' in order to simplify a loop condition.
6332 The original value is saved here. */
6333 int last_char_skip;
6334 };
6335
6336 struct xlfdpat
6337 {
6338 /* Normalized pattern string. "Normalized" means that capital
6339 letters are lowered, blocks are not empty except the first and
6340 the last ones, and trailing '?'s in a block that is not the last
6341 one are moved to the next one. The last character in each block
6342 is replaced with NUL. */
6343 unsigned char *buf;
6344
6345 /* Number of characters except '*'s and trailing '?'s in the
6346 normalized pattern string. */
6347 int nchars;
6348
6349 /* Number of trailing '?'s in the normalized pattern string. */
6350 int trailing_anychars;
6351
6352 /* Number of blocks and information for each block. The latter is
6353 NULL if the pattern is exact (no '*' or '?' in it). */
6354 int nblocks;
6355 struct xlfdpat_block *blocks;
6356 };
6357
6358 static void
6359 xlfdpat_destroy (pat)
6360 struct xlfdpat *pat;
6361 {
6362 if (pat)
6363 {
6364 if (pat->buf)
6365 {
6366 if (pat->blocks)
6367 xfree (pat->blocks);
6368 xfree (pat->buf);
6369 }
6370 xfree (pat);
6371 }
6372 }
6373
6374 static struct xlfdpat *
6375 xlfdpat_create (pattern)
6376 char *pattern;
6377 {
6378 struct xlfdpat *pat;
6379 int nblocks, i, skip;
6380 unsigned char last_char, *p, *q, *anychar_head;
6381 struct xlfdpat_block *blk;
6382
6383 pat = xmalloc (sizeof (struct xlfdpat));
6384 if (pat == NULL)
6385 goto error;
6386
6387 pat->buf = xmalloc (strlen (pattern) + 1);
6388 if (pat->buf == NULL)
6389 goto error;
6390
6391 /* Normalize the pattern string and store it to `pat->buf'. */
6392 nblocks = 0;
6393 anychar_head = NULL;
6394 q = pat->buf;
6395 last_char = '\0';
6396 for (p = pattern; *p; p++)
6397 {
6398 unsigned char c = *p;
6399
6400 if (c == '*')
6401 if (last_char == '*')
6402 /* ...a** -> ...a* */
6403 continue;
6404 else
6405 {
6406 if (last_char == '?')
6407 if (anychar_head > pat->buf && *(anychar_head - 1) == '*')
6408 /* ...*??* -> ...*?? */
6409 continue;
6410 else
6411 /* ...a??* -> ...a*?? */
6412 {
6413 *anychar_head++ = '*';
6414 c = '?';
6415 }
6416 nblocks++;
6417 }
6418 else if (c == '?')
6419 {
6420 if (last_char != '?')
6421 anychar_head = q;
6422 }
6423 else
6424 /* On Mac OS X 10.3, tolower also converts non-ASCII
6425 characters for some locales. */
6426 if (isascii (c))
6427 c = tolower (c);
6428
6429 *q++ = last_char = c;
6430 }
6431 *q = '\0';
6432 nblocks++;
6433 pat->nblocks = nblocks;
6434 if (last_char != '?')
6435 pat->trailing_anychars = 0;
6436 else
6437 {
6438 pat->trailing_anychars = q - anychar_head;
6439 q = anychar_head;
6440 }
6441 pat->nchars = q - pat->buf - (nblocks - 1);
6442
6443 if (anychar_head == NULL && nblocks == 1)
6444 {
6445 /* The pattern is exact. */
6446 pat->blocks = NULL;
6447 return pat;
6448 }
6449
6450 pat->blocks = xmalloc (sizeof (struct xlfdpat_block) * nblocks);
6451 if (pat->blocks == NULL)
6452 goto error;
6453
6454 /* Divide the normalized pattern into blocks. */
6455 p = pat->buf;
6456 for (blk = pat->blocks; blk < pat->blocks + nblocks - 1; blk++)
6457 {
6458 blk->pattern = p;
6459 while (*p != '*')
6460 p++;
6461 blk->len = p - blk->pattern;
6462 p++;
6463 }
6464 blk->pattern = p;
6465 blk->len = q - blk->pattern;
6466
6467 /* Setup a table for the Boyer-Moore string search. */
6468 for (blk = pat->blocks; blk < pat->blocks + nblocks; blk++)
6469 if (blk->len != 0)
6470 {
6471 blk->last_char = blk->pattern[blk->len - 1];
6472 blk->pattern[blk->len - 1] = '\0';
6473
6474 for (skip = 1; skip < blk->len; skip++)
6475 if (blk->pattern[blk->len - skip - 1] == '?')
6476 break;
6477
6478 for (i = 0; i < 256; i++)
6479 blk->skip[i] = skip;
6480
6481 p = blk->pattern + (blk->len - skip);
6482 while (--skip > 0)
6483 blk->skip[*p++] = skip;
6484
6485 blk->last_char_skip = blk->skip[blk->last_char];
6486 }
6487
6488 return pat;
6489
6490 error:
6491 xlfdpat_destroy (pat);
6492 return NULL;
6493 }
6494
6495 static INLINE int
6496 xlfdpat_exact_p (pat)
6497 struct xlfdpat *pat;
6498 {
6499 return pat->blocks == NULL;
6500 }
6501
6502 /* Return the first string in STRING + 0, ..., STRING + START_MAX such
6503 that the pattern in *BLK matches with its prefix. Return NULL
6504 there is no such strings. STRING must be lowered in advance. */
6505
6506 static char *
6507 xlfdpat_block_match_1 (blk, string, start_max)
6508 struct xlfdpat_block *blk;
6509 unsigned char *string;
6510 int start_max;
6511 {
6512 int start, infinity;
6513 unsigned char *p, *s;
6514
6515 xassert (blk->len > 0);
6516 xassert (start_max + blk->len <= strlen (string));
6517 xassert (blk->last_char != '?');
6518
6519 /* See the comments in the function `boyer_moore' (search.c) for the
6520 use of `infinity'. */
6521 infinity = start_max + blk->len + 1;
6522 blk->skip[blk->last_char] = infinity;
6523
6524 start = 0;
6525 do
6526 {
6527 /* Check the last character of the pattern. */
6528 s = string + blk->len - 1;
6529 do
6530 {
6531 start += blk->skip[*(s + start)];
6532 }
6533 while (start <= start_max);
6534
6535 if (start < infinity)
6536 /* Couldn't find the last character. */
6537 return NULL;
6538
6539 /* No less than `infinity' means we could find the last
6540 character at `s[start - infinity]'. */
6541 start -= infinity;
6542
6543 /* Check the remaining characters. We prefer making no-'?'
6544 cases faster because the use of '?' is really rare. */
6545 p = blk->pattern;
6546 s = string + start;
6547 do
6548 {
6549 while (*p++ == *s++)
6550 ;
6551 }
6552 while (*(p - 1) == '?');
6553
6554 if (*(p - 1) == '\0')
6555 /* Matched. */
6556 return string + start;
6557
6558 /* Didn't match. */
6559 start += blk->last_char_skip;
6560 }
6561 while (start <= start_max);
6562
6563 return NULL;
6564 }
6565
6566 #define xlfdpat_block_match(b, s, m) \
6567 ((b)->len == 1 ? memchr ((s), (b)->last_char, (m) + 1) \
6568 : xlfdpat_block_match_1 (b, s, m))
6569
6570 /* Check if XLFD pattern PAT, which is generated by `xfldpat_create',
6571 matches with STRING. STRING must be lowered in advance. */
6572
6573 static int
6574 xlfdpat_match (pat, string)
6575 struct xlfdpat *pat;
6576 unsigned char *string;
6577 {
6578 int str_len, nblocks, i, start_max;
6579 struct xlfdpat_block *blk;
6580 unsigned char *s;
6581
6582 xassert (pat->nblocks > 0);
6583
6584 if (xlfdpat_exact_p (pat))
6585 return strcmp (pat->buf, string) == 0;
6586
6587 /* The number of the characters in the string must not be smaller
6588 than that in the pattern. */
6589 str_len = strlen (string);
6590 if (str_len < pat->nchars + pat->trailing_anychars)
6591 return 0;
6592
6593 /* Chop off the trailing '?'s. */
6594 str_len -= pat->trailing_anychars;
6595
6596 /* The last block. When it is non-empty, it must match at the end
6597 of the string. */
6598 nblocks = pat->nblocks;
6599 blk = pat->blocks + (nblocks - 1);
6600 if (nblocks == 1)
6601 /* The last block is also the first one. */
6602 return (str_len == blk->len
6603 && (blk->len == 0 || xlfdpat_block_match (blk, string, 0)));
6604 else if (blk->len != 0)
6605 if (!xlfdpat_block_match (blk, string + (str_len - blk->len), 0))
6606 return 0;
6607
6608 /* The first block. When it is non-empty, it must match at the
6609 beginning of the string. */
6610 blk = pat->blocks;
6611 if (blk->len != 0)
6612 {
6613 s = xlfdpat_block_match (blk, string, 0);
6614 if (s == NULL)
6615 return 0;
6616 string = s + blk->len;
6617 }
6618
6619 /* The rest of the blocks. */
6620 start_max = str_len - pat->nchars;
6621 for (i = 1, blk++; i < nblocks - 1; i++, blk++)
6622 {
6623 s = xlfdpat_block_match (blk, string, start_max);
6624 if (s == NULL)
6625 return 0;
6626 start_max -= s - string;
6627 string = s + blk->len;
6628 }
6629
6630 return 1;
6631 }
6632
6633 \f
6634 /***********************************************************************
6635 Fonts
6636 ***********************************************************************/
6637
6638 /* Return a pointer to struct font_info of font FONT_IDX of frame F. */
6639
6640 struct font_info *
6641 x_get_font_info (f, font_idx)
6642 FRAME_PTR f;
6643 int font_idx;
6644 {
6645 return (FRAME_MAC_FONT_TABLE (f) + font_idx);
6646 }
6647
6648 /* the global font name table */
6649 static char **font_name_table = NULL;
6650 static int font_name_table_size = 0;
6651 static int font_name_count = 0;
6652
6653 /* Alist linking font family names to Font Manager font family
6654 references (which can also be used as QuickDraw font IDs). We use
6655 an alist because hash tables are not ready when the terminal frame
6656 for Mac OS Classic is created. */
6657 static Lisp_Object fm_font_family_alist;
6658 #if USE_ATSUI
6659 /* Hash table linking font family names to ATSU font IDs. */
6660 static Lisp_Object atsu_font_id_hash;
6661 #endif
6662
6663 /* Alist linking character set strings to Mac text encoding and Emacs
6664 coding system. */
6665 static Lisp_Object Vmac_charset_info_alist;
6666
6667 static Lisp_Object
6668 create_text_encoding_info_alist ()
6669 {
6670 Lisp_Object result = Qnil, rest;
6671
6672 for (rest = Vmac_charset_info_alist; CONSP (rest); rest = XCDR (rest))
6673 {
6674 Lisp_Object charset_info = XCAR (rest);
6675 Lisp_Object charset, coding_system, text_encoding;
6676 Lisp_Object existing_info;
6677
6678 if (!(CONSP (charset_info)
6679 && STRINGP (charset = XCAR (charset_info))
6680 && CONSP (XCDR (charset_info))
6681 && INTEGERP (text_encoding = XCAR (XCDR (charset_info)))
6682 && CONSP (XCDR (XCDR (charset_info)))
6683 && SYMBOLP (coding_system = XCAR (XCDR (XCDR (charset_info))))))
6684 continue;
6685
6686 existing_info = assq_no_quit (text_encoding, result);
6687 if (NILP (existing_info))
6688 result = Fcons (list3 (text_encoding, coding_system, charset),
6689 result);
6690 else
6691 if (NILP (Fmember (charset, XCDR (XCDR (existing_info)))))
6692 XSETCDR (XCDR (existing_info),
6693 Fcons (charset, XCDR (XCDR (existing_info))));
6694 }
6695
6696 return result;
6697 }
6698
6699
6700 static void
6701 decode_mac_font_name (name, size, coding_system)
6702 char *name;
6703 int size;
6704 Lisp_Object coding_system;
6705 {
6706 struct coding_system coding;
6707 char *buf, *p;
6708
6709 if (!NILP (coding_system) && !NILP (Fcoding_system_p (coding_system)))
6710 {
6711 for (p = name; *p; p++)
6712 if (!isascii (*p) || iscntrl (*p))
6713 break;
6714
6715 if (*p)
6716 {
6717 setup_coding_system (coding_system, &coding);
6718 coding.src_multibyte = 0;
6719 coding.dst_multibyte = 1;
6720 coding.mode |= CODING_MODE_LAST_BLOCK;
6721 coding.composing = COMPOSITION_DISABLED;
6722 buf = (char *) alloca (size);
6723
6724 decode_coding (&coding, name, buf, strlen (name), size - 1);
6725 bcopy (buf, name, coding.produced);
6726 name[coding.produced] = '\0';
6727 }
6728 }
6729
6730 /* If there's just one occurrence of '-' in the family name, it is
6731 replaced with '_'. (More than one occurrence of '-' means a
6732 "FOUNDRY-FAMILY-CHARSET"-style name.) */
6733 p = strchr (name, '-');
6734 if (p && strchr (p + 1, '-') == NULL)
6735 *p = '_';
6736
6737 for (p = name; *p; p++)
6738 /* On Mac OS X 10.3, tolower also converts non-ASCII characters
6739 for some locales. */
6740 if (isascii (*p))
6741 *p = tolower (*p);
6742 }
6743
6744
6745 static char *
6746 mac_to_x_fontname (name, size, style, charset)
6747 char *name;
6748 int size;
6749 Style style;
6750 char *charset;
6751 {
6752 Str31 foundry, cs;
6753 Str255 family;
6754 char xf[256], *result;
6755 unsigned char *p;
6756
6757 if (sscanf (name, "%31[^-]-%255[^-]-%31s", foundry, family, cs) == 3)
6758 charset = cs;
6759 else
6760 {
6761 strcpy(foundry, "Apple");
6762 strcpy(family, name);
6763 }
6764
6765 sprintf (xf, "%s-%c-normal--%d-%d-%d-%d-m-%d-%s",
6766 style & bold ? "bold" : "medium", style & italic ? 'i' : 'r',
6767 size, size * 10, size ? 72 : 0, size ? 72 : 0, size * 10, charset);
6768
6769 result = xmalloc (strlen (foundry) + strlen (family) + strlen (xf) + 3 + 1);
6770 sprintf (result, "-%s-%s-%s", foundry, family, xf);
6771 for (p = result; *p; p++)
6772 /* On Mac OS X 10.3, tolower also converts non-ASCII characters
6773 for some locales. */
6774 if (isascii (*p))
6775 *p = tolower (*p);
6776 return result;
6777 }
6778
6779
6780 /* Parse fully-specified and instantiated X11 font spec XF, and store
6781 the results to FAMILY, *SIZE, *STYLE, and CHARSET. Return 1 if the
6782 parsing succeeded, and 0 otherwise. For FAMILY and CHARSET, the
6783 caller must allocate at least 256 and 32 bytes respectively. For
6784 ordinary Mac fonts, the value stored to FAMILY should just be their
6785 names, like "monaco", "Taipei", etc. Fonts converted from the GNU
6786 intlfonts collection contain their charset designation in their
6787 names, like "ETL-Fixed-iso8859-1", "ETL-Fixed-koi8-r", etc. Both
6788 types of font names are handled accordingly. */
6789
6790 const int kDefaultFontSize = 12;
6791
6792 static int
6793 parse_x_font_name (xf, family, size, style, charset)
6794 char *xf, *family;
6795 int *size;
6796 Style *style;
6797 char *charset;
6798 {
6799 Str31 foundry, weight;
6800 int point_size, avgwidth;
6801 char slant[2], *p;
6802
6803 if (sscanf (xf, "-%31[^-]-%255[^-]-%31[^-]-%1[^-]-%*[^-]-%*[^-]-%d-%d-%*[^-]-%*[^-]-%*c-%d-%31s",
6804 foundry, family, weight, slant, size,
6805 &point_size, &avgwidth, charset) != 8
6806 && sscanf (xf, "-%31[^-]-%255[^-]-%31[^-]-%1[^-]-%*[^-]--%d-%d-%*[^-]-%*[^-]-%*c-%d-%31s",
6807 foundry, family, weight, slant, size,
6808 &point_size, &avgwidth, charset) != 8)
6809 return 0;
6810
6811 if (*size == 0)
6812 {
6813 if (point_size > 0)
6814 *size = point_size / 10;
6815 else if (avgwidth > 0)
6816 *size = avgwidth / 10;
6817 }
6818 if (*size == 0)
6819 *size = kDefaultFontSize;
6820
6821 *style = normal;
6822 if (strcmp (weight, "bold") == 0)
6823 *style |= bold;
6824 if (*slant == 'i')
6825 *style |= italic;
6826
6827 if (NILP (Fassoc (build_string (charset), Vmac_charset_info_alist)))
6828 {
6829 int foundry_len = strlen (foundry), family_len = strlen (family);
6830
6831 if (foundry_len + family_len + strlen (charset) + 2 < sizeof (Str255))
6832 {
6833 /* Like sprintf (family, "%s-%s-%s", foundry, family, charset),
6834 but take overlap into account. */
6835 memmove (family + foundry_len + 1, family, family_len);
6836 memcpy (family, foundry, foundry_len);
6837 family[foundry_len] = '-';
6838 family[foundry_len + 1 + family_len] = '-';
6839 strcpy (family + foundry_len + 1 + family_len + 1, charset);
6840 }
6841 else
6842 return 0;
6843 }
6844
6845 for (p = family; *p; p++)
6846 /* On Mac OS X 10.3, tolower also converts non-ASCII characters
6847 for some locales. */
6848 if (isascii (*p))
6849 *p = tolower (*p);
6850
6851 return 1;
6852 }
6853
6854
6855 static void
6856 add_font_name_table_entry (char *font_name)
6857 {
6858 if (font_name_table_size == 0)
6859 {
6860 font_name_table_size = 256;
6861 font_name_table = (char **)
6862 xmalloc (font_name_table_size * sizeof (char *));
6863 }
6864 else if (font_name_count + 1 >= font_name_table_size)
6865 {
6866 font_name_table_size *= 2;
6867 font_name_table = (char **)
6868 xrealloc (font_name_table,
6869 font_name_table_size * sizeof (char *));
6870 }
6871
6872 font_name_table[font_name_count++] = font_name;
6873 }
6874
6875 /* Sets up the table font_name_table to contain the list of all fonts
6876 in the system the first time the table is used so that the Resource
6877 Manager need not be accessed every time this information is
6878 needed. */
6879
6880 static void
6881 init_font_name_table ()
6882 {
6883 #if TARGET_API_MAC_CARBON
6884 FMFontFamilyIterator ffi;
6885 FMFontFamilyInstanceIterator ffii;
6886 FMFontFamily ff;
6887 Lisp_Object text_encoding_info_alist;
6888 struct gcpro gcpro1;
6889
6890 text_encoding_info_alist = create_text_encoding_info_alist ();
6891
6892 #if USE_ATSUI
6893 #if USE_CG_TEXT_DRAWING
6894 init_cg_text_anti_aliasing_threshold ();
6895 #endif
6896 if (!NILP (assq_no_quit (make_number (kTextEncodingMacUnicode),
6897 text_encoding_info_alist)))
6898 {
6899 OSErr err;
6900 ItemCount nfonts, i;
6901 ATSUFontID *font_ids = NULL;
6902 Ptr name, prev_name = NULL;
6903 ByteCount name_len;
6904
6905 atsu_font_id_hash =
6906 make_hash_table (Qequal, make_number (DEFAULT_HASH_SIZE),
6907 make_float (DEFAULT_REHASH_SIZE),
6908 make_float (DEFAULT_REHASH_THRESHOLD),
6909 Qnil, Qnil, Qnil);;
6910 err = ATSUFontCount (&nfonts);
6911 if (err == noErr)
6912 font_ids = xmalloc (sizeof (ATSUFontID) * nfonts);
6913 if (font_ids)
6914 err = ATSUGetFontIDs (font_ids, nfonts, NULL);
6915 if (err == noErr)
6916 for (i = 0; i < nfonts; i++)
6917 {
6918 err = ATSUFindFontName (font_ids[i], kFontFamilyName,
6919 kFontMacintoshPlatform, kFontNoScript,
6920 kFontNoLanguage, 0, NULL, &name_len, NULL);
6921 if (err != noErr)
6922 continue;
6923 name = xmalloc (name_len + 1);
6924 if (name == NULL)
6925 continue;
6926 name[name_len] = '\0';
6927 err = ATSUFindFontName (font_ids[i], kFontFamilyName,
6928 kFontMacintoshPlatform, kFontNoScript,
6929 kFontNoLanguage, name_len, name,
6930 NULL, NULL);
6931 if (err == noErr)
6932 decode_mac_font_name (name, name_len + 1, Qnil);
6933 if (err == noErr
6934 && *name != '.'
6935 && (prev_name == NULL
6936 || strcmp (name, prev_name) != 0))
6937 {
6938 static char *cs = "iso10646-1";
6939
6940 add_font_name_table_entry (mac_to_x_fontname (name, 0,
6941 normal, cs));
6942 add_font_name_table_entry (mac_to_x_fontname (name, 0,
6943 italic, cs));
6944 add_font_name_table_entry (mac_to_x_fontname (name, 0,
6945 bold, cs));
6946 add_font_name_table_entry (mac_to_x_fontname (name, 0,
6947 italic | bold, cs));
6948 Fputhash (make_unibyte_string (name, name_len),
6949 long_to_cons (font_ids[i]), atsu_font_id_hash);
6950 xfree (prev_name);
6951 prev_name = name;
6952 }
6953 else
6954 xfree (name);
6955 }
6956 if (prev_name)
6957 xfree (prev_name);
6958 if (font_ids)
6959 xfree (font_ids);
6960 }
6961 #endif
6962
6963 /* Create a dummy instance iterator here to avoid creating and
6964 destroying it in the loop. */
6965 if (FMCreateFontFamilyInstanceIterator (0, &ffii) != noErr)
6966 return;
6967 /* Create an iterator to enumerate the font families. */
6968 if (FMCreateFontFamilyIterator (NULL, NULL, kFMDefaultOptions, &ffi)
6969 != noErr)
6970 {
6971 FMDisposeFontFamilyInstanceIterator (&ffii);
6972 return;
6973 }
6974
6975 GCPRO1 (text_encoding_info_alist);
6976
6977 while (FMGetNextFontFamily (&ffi, &ff) == noErr)
6978 {
6979 Str255 name;
6980 FMFont font;
6981 FMFontStyle style;
6982 FMFontSize size;
6983 TextEncoding encoding;
6984 TextEncodingBase sc;
6985 Lisp_Object text_encoding_info;
6986
6987 if (FMGetFontFamilyName (ff, name) != noErr)
6988 break;
6989 p2cstr (name);
6990 if (*name == '.')
6991 continue;
6992
6993 if (FMGetFontFamilyTextEncoding (ff, &encoding) != noErr)
6994 break;
6995 sc = GetTextEncodingBase (encoding);
6996 text_encoding_info = assq_no_quit (make_number (sc),
6997 text_encoding_info_alist);
6998 if (NILP (text_encoding_info))
6999 text_encoding_info = assq_no_quit (make_number (kTextEncodingMacRoman),
7000 text_encoding_info_alist);
7001 decode_mac_font_name (name, sizeof (name),
7002 XCAR (XCDR (text_encoding_info)));
7003 fm_font_family_alist = Fcons (Fcons (build_string (name),
7004 make_number (ff)),
7005 fm_font_family_alist);
7006
7007 /* Point the instance iterator at the current font family. */
7008 if (FMResetFontFamilyInstanceIterator (ff, &ffii) != noErr)
7009 break;
7010
7011 while (FMGetNextFontFamilyInstance (&ffii, &font, &style, &size)
7012 == noErr)
7013 {
7014 Lisp_Object rest = XCDR (XCDR (text_encoding_info));
7015
7016 if (size > 0 || style == normal)
7017 for (; !NILP (rest); rest = XCDR (rest))
7018 {
7019 char *cs = SDATA (XCAR (rest));
7020
7021 if (size == 0)
7022 {
7023 add_font_name_table_entry (mac_to_x_fontname (name, size,
7024 style, cs));
7025 add_font_name_table_entry (mac_to_x_fontname (name, size,
7026 italic, cs));
7027 add_font_name_table_entry (mac_to_x_fontname (name, size,
7028 bold, cs));
7029 add_font_name_table_entry (mac_to_x_fontname (name, size,
7030 italic | bold,
7031 cs));
7032 }
7033 else
7034 {
7035 add_font_name_table_entry (mac_to_x_fontname (name, size,
7036 style, cs));
7037 }
7038 }
7039 }
7040 }
7041
7042 UNGCPRO;
7043
7044 /* Dispose of the iterators. */
7045 FMDisposeFontFamilyIterator (&ffi);
7046 FMDisposeFontFamilyInstanceIterator (&ffii);
7047 #else /* !TARGET_API_MAC_CARBON */
7048 GrafPtr port;
7049 SInt16 fontnum, old_fontnum;
7050 int num_mac_fonts = CountResources('FOND');
7051 int i, j;
7052 Handle font_handle, font_handle_2;
7053 short id, scriptcode;
7054 ResType type;
7055 Str255 name;
7056 struct FontAssoc *fat;
7057 struct AsscEntry *assc_entry;
7058 Lisp_Object text_encoding_info_alist, text_encoding_info;
7059 struct gcpro gcpro1;
7060
7061 GetPort (&port); /* save the current font number used */
7062 old_fontnum = port->txFont;
7063
7064 text_encoding_info_alist = create_text_encoding_info_alist ();
7065
7066 GCPRO1 (text_encoding_info_alist);
7067
7068 for (i = 1; i <= num_mac_fonts; i++) /* get all available fonts */
7069 {
7070 font_handle = GetIndResource ('FOND', i);
7071 if (!font_handle)
7072 continue;
7073
7074 GetResInfo (font_handle, &id, &type, name);
7075 GetFNum (name, &fontnum);
7076 p2cstr (name);
7077 if (fontnum == 0)
7078 continue;
7079
7080 TextFont (fontnum);
7081 scriptcode = FontToScript (fontnum);
7082 text_encoding_info = assq_no_quit (make_number (scriptcode),
7083 text_encoding_info_alist);
7084 if (NILP (text_encoding_info))
7085 text_encoding_info = assq_no_quit (make_number (smRoman),
7086 text_encoding_info_alist);
7087 decode_mac_font_name (name, sizeof (name),
7088 XCAR (XCDR (text_encoding_info)));
7089 fm_font_family_alist = Fcons (Fcons (build_string (name),
7090 make_number (fontnum)),
7091 fm_font_family_alist);
7092 do
7093 {
7094 HLock (font_handle);
7095
7096 if (GetResourceSizeOnDisk (font_handle)
7097 >= sizeof (struct FamRec))
7098 {
7099 fat = (struct FontAssoc *) (*font_handle
7100 + sizeof (struct FamRec));
7101 assc_entry
7102 = (struct AsscEntry *) (*font_handle
7103 + sizeof (struct FamRec)
7104 + sizeof (struct FontAssoc));
7105
7106 for (j = 0; j <= fat->numAssoc; j++, assc_entry++)
7107 {
7108 Lisp_Object rest = XCDR (XCDR (text_encoding_info));
7109
7110 for (; !NILP (rest); rest = XCDR (rest))
7111 {
7112 char *cs = SDATA (XCAR (rest));
7113
7114 add_font_name_table_entry (mac_to_x_fontname (name,
7115 assc_entry->fontSize,
7116 assc_entry->fontStyle,
7117 cs));
7118 }
7119 }
7120 }
7121
7122 HUnlock (font_handle);
7123 font_handle_2 = GetNextFOND (font_handle);
7124 ReleaseResource (font_handle);
7125 font_handle = font_handle_2;
7126 }
7127 while (ResError () == noErr && font_handle);
7128 }
7129
7130 UNGCPRO;
7131
7132 TextFont (old_fontnum);
7133 #endif /* !TARGET_API_MAC_CARBON */
7134 }
7135
7136
7137 void
7138 mac_clear_font_name_table ()
7139 {
7140 int i;
7141
7142 for (i = 0; i < font_name_count; i++)
7143 xfree (font_name_table[i]);
7144 xfree (font_name_table);
7145 font_name_table = NULL;
7146 font_name_table_size = font_name_count = 0;
7147 fm_font_family_alist = Qnil;
7148 }
7149
7150
7151 enum xlfd_scalable_field_index
7152 {
7153 XLFD_SCL_PIXEL_SIZE,
7154 XLFD_SCL_POINT_SIZE,
7155 XLFD_SCL_AVGWIDTH,
7156 XLFD_SCL_LAST
7157 };
7158
7159 static int xlfd_scalable_fields[] =
7160 {
7161 6, /* PIXEL_SIZE */
7162 7, /* POINT_SIZE */
7163 11, /* AVGWIDTH */
7164 -1
7165 };
7166
7167 static Lisp_Object
7168 mac_do_list_fonts (pattern, maxnames)
7169 char *pattern;
7170 int maxnames;
7171 {
7172 int i, n_fonts = 0;
7173 Lisp_Object font_list = Qnil;
7174 struct xlfdpat *pat;
7175 char *scaled, *ptr;
7176 int scl_val[XLFD_SCL_LAST], *field, *val;
7177 int exact;
7178
7179 if (font_name_table == NULL) /* Initialize when first used. */
7180 init_font_name_table ();
7181
7182 for (i = 0; i < XLFD_SCL_LAST; i++)
7183 scl_val[i] = -1;
7184
7185 /* If the pattern contains 14 dashes and one of PIXEL_SIZE,
7186 POINT_SIZE, and AVGWIDTH fields is explicitly specified, scalable
7187 fonts are scaled according to the specified size. */
7188 ptr = pattern;
7189 i = 0;
7190 field = xlfd_scalable_fields;
7191 val = scl_val;
7192 if (*ptr == '-')
7193 do
7194 {
7195 ptr++;
7196 if (i == *field)
7197 {
7198 if ('0' <= *ptr && *ptr <= '9')
7199 {
7200 *val = *ptr++ - '0';
7201 while ('0' <= *ptr && *ptr <= '9' && *val < 10000)
7202 *val = *val * 10 + *ptr++ - '0';
7203 if (*ptr != '-')
7204 *val = -1;
7205 }
7206 field++;
7207 val++;
7208 }
7209 ptr = strchr (ptr, '-');
7210 i++;
7211 }
7212 while (ptr && i < 14);
7213
7214 if (i == 14 && ptr == NULL)
7215 {
7216 if (scl_val[XLFD_SCL_PIXEL_SIZE] < 0)
7217 scl_val[XLFD_SCL_PIXEL_SIZE] =
7218 (scl_val[XLFD_SCL_POINT_SIZE] > 0 ? scl_val[XLFD_SCL_POINT_SIZE] / 10
7219 : (scl_val[XLFD_SCL_AVGWIDTH] > 0 ? scl_val[XLFD_SCL_AVGWIDTH] / 10
7220 : -1));
7221 if (scl_val[XLFD_SCL_POINT_SIZE] < 0)
7222 scl_val[XLFD_SCL_POINT_SIZE] =
7223 (scl_val[XLFD_SCL_PIXEL_SIZE] > 0 ? scl_val[XLFD_SCL_PIXEL_SIZE] * 10
7224 : (scl_val[XLFD_SCL_AVGWIDTH] > 0 ? scl_val[XLFD_SCL_AVGWIDTH]
7225 : -1));
7226 if (scl_val[XLFD_SCL_AVGWIDTH] < 0)
7227 scl_val[XLFD_SCL_AVGWIDTH] =
7228 (scl_val[XLFD_SCL_PIXEL_SIZE] > 0 ? scl_val[XLFD_SCL_PIXEL_SIZE] * 10
7229 : (scl_val[XLFD_SCL_POINT_SIZE] > 0 ? scl_val[XLFD_SCL_POINT_SIZE]
7230 : -1));
7231 }
7232 else
7233 scl_val[XLFD_SCL_PIXEL_SIZE] = -1;
7234
7235 pat = xlfdpat_create (pattern);
7236 if (pat == NULL)
7237 return Qnil;
7238
7239 exact = xlfdpat_exact_p (pat);
7240
7241 for (i = 0; i < font_name_count; i++)
7242 {
7243 if (xlfdpat_match (pat, font_name_table[i]))
7244 {
7245 font_list = Fcons (build_string (font_name_table[i]), font_list);
7246 if (exact || maxnames > 0 && ++n_fonts >= maxnames)
7247 break;
7248 }
7249 else if (scl_val[XLFD_SCL_PIXEL_SIZE] > 0
7250 && (ptr = strstr (font_name_table[i], "-0-0-0-0-m-0-")))
7251 {
7252 int former_len = ptr - font_name_table[i];
7253
7254 scaled = xmalloc (strlen (font_name_table[i]) + 20 + 1);
7255 if (scaled == NULL)
7256 continue;
7257 memcpy (scaled, font_name_table[i], former_len);
7258 sprintf (scaled + former_len,
7259 "-%d-%d-72-72-m-%d-%s",
7260 scl_val[XLFD_SCL_PIXEL_SIZE],
7261 scl_val[XLFD_SCL_POINT_SIZE],
7262 scl_val[XLFD_SCL_AVGWIDTH],
7263 ptr + sizeof ("-0-0-0-0-m-0-") - 1);
7264
7265 if (xlfdpat_match (pat, scaled))
7266 {
7267 font_list = Fcons (build_string (scaled), font_list);
7268 xfree (scaled);
7269 if (exact || maxnames > 0 && ++n_fonts >= maxnames)
7270 break;
7271 }
7272 else
7273 xfree (scaled);
7274 }
7275 }
7276
7277 xlfdpat_destroy (pat);
7278
7279 return font_list;
7280 }
7281
7282 /* Return a list of names of available fonts matching PATTERN on frame F.
7283
7284 Frame F null means we have not yet created any frame on Mac, and
7285 consult the first display in x_display_list. MAXNAMES sets a limit
7286 on how many fonts to match. */
7287
7288 Lisp_Object
7289 x_list_fonts (f, pattern, size, maxnames)
7290 struct frame *f;
7291 Lisp_Object pattern;
7292 int size, maxnames;
7293 {
7294 Lisp_Object list = Qnil, patterns, tem, key;
7295 struct mac_display_info *dpyinfo
7296 = f ? FRAME_MAC_DISPLAY_INFO (f) : x_display_list;
7297
7298 xassert (size <= 0);
7299
7300 patterns = Fassoc (pattern, Valternate_fontname_alist);
7301 if (NILP (patterns))
7302 patterns = Fcons (pattern, Qnil);
7303
7304 for (; CONSP (patterns); patterns = XCDR (patterns))
7305 {
7306 pattern = XCAR (patterns);
7307
7308 if (!STRINGP (pattern))
7309 continue;
7310
7311 tem = XCAR (XCDR (dpyinfo->name_list_element));
7312 key = Fcons (pattern, make_number (maxnames));
7313
7314 list = Fassoc (key, tem);
7315 if (!NILP (list))
7316 {
7317 list = Fcdr_safe (list);
7318 /* We have a cashed list. Don't have to get the list again. */
7319 goto label_cached;
7320 }
7321
7322 BLOCK_INPUT;
7323 list = mac_do_list_fonts (SDATA (pattern), maxnames);
7324 UNBLOCK_INPUT;
7325
7326 /* MAC_TODO: add code for matching outline fonts here */
7327
7328 /* Now store the result in the cache. */
7329 XSETCAR (XCDR (dpyinfo->name_list_element),
7330 Fcons (Fcons (key, list),
7331 XCAR (XCDR (dpyinfo->name_list_element))));
7332
7333 label_cached:
7334 if (NILP (list)) continue; /* Try the remaining alternatives. */
7335 }
7336
7337 return list;
7338 }
7339
7340
7341 #if GLYPH_DEBUG
7342
7343 /* Check that FONT is valid on frame F. It is if it can be found in F's
7344 font table. */
7345
7346 static void
7347 x_check_font (f, font)
7348 struct frame *f;
7349 XFontStruct *font;
7350 {
7351 int i;
7352 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
7353
7354 xassert (font != NULL);
7355
7356 for (i = 0; i < dpyinfo->n_fonts; i++)
7357 if (dpyinfo->font_table[i].name
7358 && font == dpyinfo->font_table[i].font)
7359 break;
7360
7361 xassert (i < dpyinfo->n_fonts);
7362 }
7363
7364 #endif /* GLYPH_DEBUG != 0 */
7365
7366 /* Set *W to the minimum width, *H to the minimum font height of FONT.
7367 Note: There are (broken) X fonts out there with invalid XFontStruct
7368 min_bounds contents. For example, handa@etl.go.jp reports that
7369 "-adobe-courier-medium-r-normal--*-180-*-*-m-*-iso8859-1" fonts
7370 have font->min_bounds.width == 0. */
7371
7372 static INLINE void
7373 x_font_min_bounds (font, w, h)
7374 MacFontStruct *font;
7375 int *w, *h;
7376 {
7377 *h = FONT_HEIGHT (font);
7378 *w = font->min_bounds.width;
7379 }
7380
7381
7382 /* Compute the smallest character width and smallest font height over
7383 all fonts available on frame F. Set the members smallest_char_width
7384 and smallest_font_height in F's x_display_info structure to
7385 the values computed. Value is non-zero if smallest_font_height or
7386 smallest_char_width become smaller than they were before. */
7387
7388 static int
7389 x_compute_min_glyph_bounds (f)
7390 struct frame *f;
7391 {
7392 int i;
7393 struct mac_display_info *dpyinfo = FRAME_MAC_DISPLAY_INFO (f);
7394 MacFontStruct *font;
7395 int old_width = dpyinfo->smallest_char_width;
7396 int old_height = dpyinfo->smallest_font_height;
7397
7398 dpyinfo->smallest_font_height = 100000;
7399 dpyinfo->smallest_char_width = 100000;
7400
7401 for (i = 0; i < dpyinfo->n_fonts; ++i)
7402 if (dpyinfo->font_table[i].name)
7403 {
7404 struct font_info *fontp = dpyinfo->font_table + i;
7405 int w, h;
7406
7407 font = (MacFontStruct *) fontp->font;
7408 xassert (font != (MacFontStruct *) ~0);
7409 x_font_min_bounds (font, &w, &h);
7410
7411 dpyinfo->smallest_font_height = min (dpyinfo->smallest_font_height, h);
7412 dpyinfo->smallest_char_width = min (dpyinfo->smallest_char_width, w);
7413 }
7414
7415 xassert (dpyinfo->smallest_char_width > 0
7416 && dpyinfo->smallest_font_height > 0);
7417
7418 return (dpyinfo->n_fonts == 1
7419 || dpyinfo->smallest_char_width < old_width
7420 || dpyinfo->smallest_font_height < old_height);
7421 }
7422
7423
7424 /* Determine whether given string is a fully-specified XLFD: all 14
7425 fields are present, none is '*'. */
7426
7427 static int
7428 is_fully_specified_xlfd (char *p)
7429 {
7430 int i;
7431 char *q;
7432
7433 if (*p != '-')
7434 return 0;
7435
7436 for (i = 0; i < 13; i++)
7437 {
7438 q = strchr (p + 1, '-');
7439 if (q == NULL)
7440 return 0;
7441 if (q - p == 2 && *(p + 1) == '*')
7442 return 0;
7443 p = q;
7444 }
7445
7446 if (strchr (p + 1, '-') != NULL)
7447 return 0;
7448
7449 if (*(p + 1) == '*' && *(p + 2) == '\0')
7450 return 0;
7451
7452 return 1;
7453 }
7454
7455
7456 /* XLoadQueryFont creates and returns an internal representation for a
7457 font in a MacFontStruct struct. There is really no concept
7458 corresponding to "loading" a font on the Mac. But we check its
7459 existence and find the font number and all other information for it
7460 and store them in the returned MacFontStruct. */
7461
7462 static MacFontStruct *
7463 XLoadQueryFont (Display *dpy, char *fontname)
7464 {
7465 int size;
7466 char *name;
7467 Str255 family;
7468 Str31 charset;
7469 SInt16 fontnum;
7470 #if USE_ATSUI
7471 static ATSUFontID font_id;
7472 ATSUStyle mac_style = NULL;
7473 #endif
7474 Style fontface;
7475 #if TARGET_API_MAC_CARBON
7476 TextEncoding encoding;
7477 int scriptcode;
7478 #else
7479 short scriptcode;
7480 #endif
7481 MacFontStruct *font;
7482 XCharStruct *space_bounds = NULL, *pcm;
7483
7484 if (is_fully_specified_xlfd (fontname))
7485 name = fontname;
7486 else
7487 {
7488 Lisp_Object matched_fonts;
7489
7490 matched_fonts = mac_do_list_fonts (fontname, 1);
7491 if (NILP (matched_fonts))
7492 return NULL;
7493 name = SDATA (XCAR (matched_fonts));
7494 }
7495
7496 if (parse_x_font_name (name, family, &size, &fontface, charset) == 0)
7497 return NULL;
7498
7499 #if USE_ATSUI
7500 if (strcmp (charset, "iso10646-1") == 0) /* XXX */
7501 {
7502 OSErr err;
7503 ATSUAttributeTag tags[] = {kATSUFontTag, kATSUSizeTag,
7504 kATSUQDBoldfaceTag, kATSUQDItalicTag};
7505 ByteCount sizes[] = {sizeof (ATSUFontID), sizeof (Fixed),
7506 sizeof (Boolean), sizeof (Boolean)};
7507 static Fixed size_fixed;
7508 static Boolean bold_p, italic_p;
7509 ATSUAttributeValuePtr values[] = {&font_id, &size_fixed,
7510 &bold_p, &italic_p};
7511 ATSUFontFeatureType types[] = {kAllTypographicFeaturesType};
7512 ATSUFontFeatureSelector selectors[] = {kAllTypeFeaturesOffSelector};
7513 Lisp_Object font_id_cons;
7514
7515 font_id_cons = Fgethash (make_unibyte_string (family, strlen (family)),
7516 atsu_font_id_hash, Qnil);
7517 if (NILP (font_id_cons))
7518 return NULL;
7519 font_id = cons_to_long (font_id_cons);
7520 size_fixed = Long2Fix (size);
7521 bold_p = (fontface & bold) != 0;
7522 italic_p = (fontface & italic) != 0;
7523 err = ATSUCreateStyle (&mac_style);
7524 if (err != noErr)
7525 return NULL;
7526 err = ATSUSetFontFeatures (mac_style, sizeof (types) / sizeof (types[0]),
7527 types, selectors);
7528 if (err != noErr)
7529 return NULL;
7530 err = ATSUSetAttributes (mac_style, sizeof (tags) / sizeof (tags[0]),
7531 tags, sizes, values);
7532 fontnum = -1;
7533 scriptcode = kTextEncodingMacUnicode;
7534 }
7535 else
7536 #endif
7537 {
7538 Lisp_Object tmp = Fassoc (build_string (family), fm_font_family_alist);
7539
7540 if (NILP (tmp))
7541 return NULL;
7542 fontnum = XINT (XCDR (tmp));
7543 #if TARGET_API_MAC_CARBON
7544 if (FMGetFontFamilyTextEncoding (fontnum, &encoding) != noErr)
7545 return NULL;
7546 scriptcode = GetTextEncodingBase (encoding);
7547 #else
7548 scriptcode = FontToScript (fontnum);
7549 #endif
7550 }
7551
7552 font = (MacFontStruct *) xmalloc (sizeof (struct MacFontStruct));
7553
7554 font->mac_fontnum = fontnum;
7555 font->mac_fontsize = size;
7556 font->mac_fontface = fontface;
7557 font->mac_scriptcode = scriptcode;
7558 #if USE_ATSUI
7559 font->mac_style = mac_style;
7560 #if USE_CG_TEXT_DRAWING
7561 font->cg_font = NULL;
7562 font->cg_glyphs = NULL;
7563 #endif
7564 #endif
7565
7566 /* Apple Japanese (SJIS) font is listed as both
7567 "*-jisx0208.1983-sjis" (Japanese script) and "*-jisx0201.1976-0"
7568 (Roman script) in init_font_name_table (). The latter should be
7569 treated as a one-byte font. */
7570 if (scriptcode == smJapanese && strcmp (charset, "jisx0201.1976-0") == 0)
7571 font->mac_scriptcode = smRoman;
7572
7573 font->full_name = mac_to_x_fontname (family, size, fontface, charset);
7574
7575 #if USE_ATSUI
7576 if (font->mac_style)
7577 {
7578 OSErr err;
7579 UniChar c;
7580
7581 font->min_byte1 = 0;
7582 font->max_byte1 = 0xff;
7583 font->min_char_or_byte2 = 0;
7584 font->max_char_or_byte2 = 0xff;
7585
7586 font->bounds.rows = xmalloc (sizeof (XCharStructRow *) * 0x100);
7587 if (font->bounds.rows == NULL)
7588 {
7589 mac_unload_font (&one_mac_display_info, font);
7590 return NULL;
7591 }
7592 bzero (font->bounds.rows, sizeof (XCharStructRow *) * 0x100);
7593 font->bounds.rows[0] = xmalloc (sizeof (XCharStructRow));
7594 if (font->bounds.rows[0] == NULL)
7595 {
7596 mac_unload_font (&one_mac_display_info, font);
7597 return NULL;
7598 }
7599 bzero (font->bounds.rows[0], sizeof (XCharStructRow));
7600
7601 #if USE_CG_TEXT_DRAWING
7602 {
7603 FMFontFamily font_family;
7604 FMFontStyle style;
7605 ATSFontRef ats_font;
7606
7607 err = FMGetFontFamilyInstanceFromFont (font_id, &font_family, &style);
7608 if (err == noErr)
7609 err = FMGetFontFromFontFamilyInstance (font_family, fontface,
7610 &font_id, &style);
7611 /* Use CG text drawing if italic/bold is not synthesized. */
7612 if (err == noErr && style == fontface)
7613 {
7614 ats_font = FMGetATSFontRefFromFont (font_id);
7615 font->cg_font = CGFontCreateWithPlatformFont (&ats_font);
7616 }
7617 }
7618
7619 if (font->cg_font)
7620 font->cg_glyphs = xmalloc (sizeof (CGGlyph) * 0x100);
7621 if (font->cg_glyphs)
7622 bzero (font->cg_glyphs, sizeof (CGGlyph) * 0x100);
7623 #endif
7624 space_bounds = font->bounds.rows[0]->per_char + 0x20;
7625 err = mac_query_char_extents (font->mac_style, 0x20,
7626 &font->ascent, &font->descent,
7627 space_bounds,
7628 #if USE_CG_TEXT_DRAWING
7629 (font->cg_glyphs ? font->cg_glyphs + 0x20
7630 : NULL)
7631 #else
7632 NULL
7633 #endif
7634 );
7635 if (err != noErr)
7636 {
7637 mac_unload_font (&one_mac_display_info, font);
7638 return NULL;
7639 }
7640 XCHARSTRUCTROW_SET_CHAR_VALID (font->bounds.rows[0], 0x20);
7641
7642 pcm = font->bounds.rows[0]->per_char;
7643 for (c = 0x21; c <= 0xff; c++)
7644 {
7645 if (c == 0xad)
7646 /* Soft hyphen is not supported in ATSUI. */
7647 continue;
7648 else if (c == 0x7f)
7649 {
7650 c = 0x9f;
7651 continue;
7652 }
7653
7654 mac_query_char_extents (font->mac_style, c, NULL, NULL, pcm + c,
7655 #if USE_CG_TEXT_DRAWING
7656 (font->cg_glyphs ? font->cg_glyphs + c
7657 : NULL)
7658 #else
7659 NULL
7660 #endif
7661 );
7662 XCHARSTRUCTROW_SET_CHAR_VALID (font->bounds.rows[0], c);
7663
7664 #if USE_CG_TEXT_DRAWING
7665 if (font->cg_glyphs && font->cg_glyphs[c] == 0)
7666 {
7667 /* Don't use CG text drawing if font substitution occurs in
7668 ASCII or Latin-1 characters. */
7669 CGFontRelease (font->cg_font);
7670 font->cg_font = NULL;
7671 xfree (font->cg_glyphs);
7672 font->cg_glyphs = NULL;
7673 }
7674 #endif
7675 }
7676 }
7677 else
7678 #endif
7679 {
7680 GrafPtr port;
7681 SInt16 old_fontnum, old_fontsize;
7682 Style old_fontface;
7683 FontInfo the_fontinfo;
7684 int is_two_byte_font;
7685
7686 /* Save the current font number used. */
7687 GetPort (&port);
7688 #if TARGET_API_MAC_CARBON
7689 old_fontnum = GetPortTextFont (port);
7690 old_fontsize = GetPortTextSize (port);
7691 old_fontface = GetPortTextFace (port);
7692 #else
7693 old_fontnum = port->txFont;
7694 old_fontsize = port->txSize;
7695 old_fontface = port->txFace;
7696 #endif
7697
7698 TextFont (fontnum);
7699 TextSize (size);
7700 TextFace (fontface);
7701
7702 GetFontInfo (&the_fontinfo);
7703
7704 font->ascent = the_fontinfo.ascent;
7705 font->descent = the_fontinfo.descent;
7706
7707 is_two_byte_font = (font->mac_scriptcode == smJapanese
7708 || font->mac_scriptcode == smTradChinese
7709 || font->mac_scriptcode == smSimpChinese
7710 || font->mac_scriptcode == smKorean);
7711
7712 if (is_two_byte_font)
7713 {
7714 int char_width;
7715
7716 font->min_byte1 = 0xa1;
7717 font->max_byte1 = 0xfe;
7718 font->min_char_or_byte2 = 0xa1;
7719 font->max_char_or_byte2 = 0xfe;
7720
7721 /* Use the width of an "ideographic space" of that font
7722 because the_fontinfo.widMax returns the wrong width for
7723 some fonts. */
7724 switch (font->mac_scriptcode)
7725 {
7726 case smJapanese:
7727 font->min_byte1 = 0x81;
7728 font->max_byte1 = 0xfc;
7729 font->min_char_or_byte2 = 0x40;
7730 font->max_char_or_byte2 = 0xfc;
7731 char_width = StringWidth("\p\x81\x40");
7732 break;
7733 case smTradChinese:
7734 font->min_char_or_byte2 = 0x40;
7735 char_width = StringWidth("\p\xa1\x40");
7736 break;
7737 case smSimpChinese:
7738 char_width = StringWidth("\p\xa1\xa1");
7739 break;
7740 case smKorean:
7741 char_width = StringWidth("\p\xa1\xa1");
7742 break;
7743 }
7744
7745 font->bounds.per_char = NULL;
7746
7747 if (fontface & italic)
7748 font->max_bounds.rbearing = char_width + 1;
7749 else
7750 font->max_bounds.rbearing = char_width;
7751 font->max_bounds.lbearing = 0;
7752 font->max_bounds.width = char_width;
7753 font->max_bounds.ascent = the_fontinfo.ascent;
7754 font->max_bounds.descent = the_fontinfo.descent;
7755
7756 font->min_bounds = font->max_bounds;
7757 }
7758 else
7759 {
7760 int c;
7761
7762 font->min_byte1 = font->max_byte1 = 0;
7763 font->min_char_or_byte2 = 0x20;
7764 font->max_char_or_byte2 = 0xff;
7765
7766 font->bounds.per_char =
7767 xmalloc (sizeof (XCharStruct) * (0xff - 0x20 + 1));
7768 if (font->bounds.per_char == NULL)
7769 {
7770 mac_unload_font (&one_mac_display_info, font);
7771 return NULL;
7772 }
7773 bzero (font->bounds.per_char,
7774 sizeof (XCharStruct) * (0xff - 0x20 + 1));
7775
7776 space_bounds = font->bounds.per_char;
7777 mac_query_char_extents (NULL, 0x20, &font->ascent, &font->descent,
7778 space_bounds, NULL);
7779
7780 for (c = 0x21, pcm = space_bounds + 1; c <= 0xff; c++, pcm++)
7781 mac_query_char_extents (NULL, c, NULL, NULL, pcm, NULL);
7782 }
7783
7784 /* Restore previous font number, size and face. */
7785 TextFont (old_fontnum);
7786 TextSize (old_fontsize);
7787 TextFace (old_fontface);
7788 }
7789
7790 if (space_bounds)
7791 {
7792 int c;
7793
7794 font->min_bounds = font->max_bounds = *space_bounds;
7795 for (c = 0x21, pcm = space_bounds + 1; c <= 0x7f; c++, pcm++)
7796 if (pcm->width > 0)
7797 {
7798 font->min_bounds.lbearing = min (font->min_bounds.lbearing,
7799 pcm->lbearing);
7800 font->min_bounds.rbearing = min (font->min_bounds.rbearing,
7801 pcm->rbearing);
7802 font->min_bounds.width = min (font->min_bounds.width,
7803 pcm->width);
7804 font->min_bounds.ascent = min (font->min_bounds.ascent,
7805 pcm->ascent);
7806
7807 font->max_bounds.lbearing = max (font->max_bounds.lbearing,
7808 pcm->lbearing);
7809 font->max_bounds.rbearing = max (font->max_bounds.rbearing,
7810 pcm->rbearing);
7811 font->max_bounds.width = max (font->max_bounds.width,
7812 pcm->width);
7813 font->max_bounds.ascent = max (font->max_bounds.ascent,
7814 pcm->ascent);
7815 }
7816 if (
7817 #if USE_ATSUI
7818 font->mac_style == NULL &&
7819 #endif
7820 font->max_bounds.width == font->min_bounds.width
7821 && font->min_bounds.lbearing >= 0
7822 && font->max_bounds.rbearing <= font->max_bounds.width)
7823 {
7824 /* Fixed width and no overhangs. */
7825 xfree (font->bounds.per_char);
7826 font->bounds.per_char = NULL;
7827 }
7828 }
7829
7830 #if !defined (MAC_OS8) || USE_ATSUI
7831 /* AppKit and WebKit do some adjustment to the heights of Courier,
7832 Helvetica, and Times. This only works on the environments where
7833 the XDrawImageString counterpart is never used. */
7834 if (strcmp (family, "courier") == 0 || strcmp (family, "helvetica") == 0
7835 || strcmp (family, "times") == 0)
7836 font->ascent += (font->ascent + font->descent) * .15 + 0.5;
7837 #endif
7838
7839 return font;
7840 }
7841
7842
7843 void
7844 mac_unload_font (dpyinfo, font)
7845 struct mac_display_info *dpyinfo;
7846 XFontStruct *font;
7847 {
7848 xfree (font->full_name);
7849 #if USE_ATSUI
7850 if (font->mac_style)
7851 {
7852 int i;
7853
7854 for (i = font->min_byte1; i <= font->max_byte1; i++)
7855 if (font->bounds.rows[i])
7856 xfree (font->bounds.rows[i]);
7857 xfree (font->bounds.rows);
7858 ATSUDisposeStyle (font->mac_style);
7859 }
7860 else
7861 #endif
7862 if (font->bounds.per_char)
7863 xfree (font->bounds.per_char);
7864 #if USE_CG_TEXT_DRAWING
7865 if (font->cg_font)
7866 CGFontRelease (font->cg_font);
7867 if (font->cg_glyphs)
7868 xfree (font->cg_glyphs);
7869 #endif
7870 xfree (font);
7871 }
7872
7873
7874 /* Load font named FONTNAME of the size SIZE for frame F, and return a
7875 pointer to the structure font_info while allocating it dynamically.
7876 If SIZE is 0, load any size of font.
7877 If loading is failed, return NULL. */
7878
7879 struct font_info *
7880 x_load_font (f, fontname, size)
7881 struct frame *f;
7882 register char *fontname;
7883 int size;
7884 {
7885 struct mac_display_info *dpyinfo = FRAME_MAC_DISPLAY_INFO (f);
7886 Lisp_Object font_names;
7887
7888 /* Get a list of all the fonts that match this name. Once we
7889 have a list of matching fonts, we compare them against the fonts
7890 we already have by comparing names. */
7891 font_names = x_list_fonts (f, build_string (fontname), size, 1);
7892
7893 if (!NILP (font_names))
7894 {
7895 Lisp_Object tail;
7896 int i;
7897
7898 for (i = 0; i < dpyinfo->n_fonts; i++)
7899 for (tail = font_names; CONSP (tail); tail = XCDR (tail))
7900 if (dpyinfo->font_table[i].name
7901 && (!strcmp (dpyinfo->font_table[i].name,
7902 SDATA (XCAR (tail)))
7903 || !strcmp (dpyinfo->font_table[i].full_name,
7904 SDATA (XCAR (tail)))))
7905 return (dpyinfo->font_table + i);
7906 }
7907 else
7908 return NULL;
7909
7910 /* Load the font and add it to the table. */
7911 {
7912 char *full_name;
7913 struct MacFontStruct *font;
7914 struct font_info *fontp;
7915 unsigned long value;
7916 int i;
7917
7918 fontname = (char *) SDATA (XCAR (font_names));
7919
7920 BLOCK_INPUT;
7921 font = (MacFontStruct *) XLoadQueryFont (FRAME_MAC_DISPLAY (f), fontname);
7922 UNBLOCK_INPUT;
7923 if (!font)
7924 return NULL;
7925
7926 /* Find a free slot in the font table. */
7927 for (i = 0; i < dpyinfo->n_fonts; ++i)
7928 if (dpyinfo->font_table[i].name == NULL)
7929 break;
7930
7931 /* If no free slot found, maybe enlarge the font table. */
7932 if (i == dpyinfo->n_fonts
7933 && dpyinfo->n_fonts == dpyinfo->font_table_size)
7934 {
7935 int sz;
7936 dpyinfo->font_table_size = max (16, 2 * dpyinfo->font_table_size);
7937 sz = dpyinfo->font_table_size * sizeof *dpyinfo->font_table;
7938 dpyinfo->font_table
7939 = (struct font_info *) xrealloc (dpyinfo->font_table, sz);
7940 }
7941
7942 fontp = dpyinfo->font_table + i;
7943 if (i == dpyinfo->n_fonts)
7944 ++dpyinfo->n_fonts;
7945
7946 /* Now fill in the slots of *FONTP. */
7947 BLOCK_INPUT;
7948 bzero (fontp, sizeof (*fontp));
7949 fontp->font = font;
7950 fontp->font_idx = i;
7951 fontp->name = (char *) xmalloc (strlen (fontname) + 1);
7952 bcopy (fontname, fontp->name, strlen (fontname) + 1);
7953
7954 if (font->min_bounds.width == font->max_bounds.width)
7955 {
7956 /* Fixed width font. */
7957 fontp->average_width = fontp->space_width = font->min_bounds.width;
7958 }
7959 else
7960 {
7961 XChar2b char2b;
7962 XCharStruct *pcm;
7963
7964 char2b.byte1 = 0x00, char2b.byte2 = 0x20;
7965 pcm = mac_per_char_metric (font, &char2b, 0);
7966 if (pcm)
7967 fontp->space_width = pcm->width;
7968 else
7969 fontp->space_width = FONT_WIDTH (font);
7970
7971 if (pcm)
7972 {
7973 int width = pcm->width;
7974 for (char2b.byte2 = 33; char2b.byte2 <= 126; char2b.byte2++)
7975 if ((pcm = mac_per_char_metric (font, &char2b, 0)) != NULL)
7976 width += pcm->width;
7977 fontp->average_width = width / 95;
7978 }
7979 else
7980 fontp->average_width = FONT_WIDTH (font);
7981 }
7982
7983 fontp->full_name = (char *) xmalloc (strlen (font->full_name) + 1);
7984 bcopy (font->full_name, fontp->full_name, strlen (font->full_name) + 1);
7985
7986 fontp->size = font->max_bounds.width;
7987 fontp->height = FONT_HEIGHT (font);
7988 {
7989 /* For some font, ascent and descent in max_bounds field is
7990 larger than the above value. */
7991 int max_height = font->max_bounds.ascent + font->max_bounds.descent;
7992 if (max_height > fontp->height)
7993 fontp->height = max_height;
7994 }
7995
7996 /* The slot `encoding' specifies how to map a character
7997 code-points (0x20..0x7F or 0x2020..0x7F7F) of each charset to
7998 the font code-points (0:0x20..0x7F, 1:0xA0..0xFF), or
7999 (0:0x2020..0x7F7F, 1:0xA0A0..0xFFFF, 3:0x20A0..0x7FFF,
8000 2:0xA020..0xFF7F). For the moment, we don't know which charset
8001 uses this font. So, we set information in fontp->encoding[1]
8002 which is never used by any charset. If mapping can't be
8003 decided, set FONT_ENCODING_NOT_DECIDED. */
8004 if (font->mac_scriptcode == smJapanese)
8005 fontp->encoding[1] = 4;
8006 else
8007 {
8008 fontp->encoding[1]
8009 = (font->max_byte1 == 0
8010 /* 1-byte font */
8011 ? (font->min_char_or_byte2 < 0x80
8012 ? (font->max_char_or_byte2 < 0x80
8013 ? 0 /* 0x20..0x7F */
8014 : FONT_ENCODING_NOT_DECIDED) /* 0x20..0xFF */
8015 : 1) /* 0xA0..0xFF */
8016 /* 2-byte font */
8017 : (font->min_byte1 < 0x80
8018 ? (font->max_byte1 < 0x80
8019 ? (font->min_char_or_byte2 < 0x80
8020 ? (font->max_char_or_byte2 < 0x80
8021 ? 0 /* 0x2020..0x7F7F */
8022 : FONT_ENCODING_NOT_DECIDED) /* 0x2020..0x7FFF */
8023 : 3) /* 0x20A0..0x7FFF */
8024 : FONT_ENCODING_NOT_DECIDED) /* 0x20??..0xA0?? */
8025 : (font->min_char_or_byte2 < 0x80
8026 ? (font->max_char_or_byte2 < 0x80
8027 ? 2 /* 0xA020..0xFF7F */
8028 : FONT_ENCODING_NOT_DECIDED) /* 0xA020..0xFFFF */
8029 : 1))); /* 0xA0A0..0xFFFF */
8030 }
8031
8032 #if 0 /* MAC_TODO: fill these out with more reasonably values */
8033 fontp->baseline_offset
8034 = (XGetFontProperty (font, dpyinfo->Xatom_MULE_BASELINE_OFFSET, &value)
8035 ? (long) value : 0);
8036 fontp->relative_compose
8037 = (XGetFontProperty (font, dpyinfo->Xatom_MULE_RELATIVE_COMPOSE, &value)
8038 ? (long) value : 0);
8039 fontp->default_ascent
8040 = (XGetFontProperty (font, dpyinfo->Xatom_MULE_DEFAULT_ASCENT, &value)
8041 ? (long) value : 0);
8042 #else
8043 fontp->baseline_offset = 0;
8044 fontp->relative_compose = 0;
8045 fontp->default_ascent = 0;
8046 #endif
8047
8048 /* Set global flag fonts_changed_p to non-zero if the font loaded
8049 has a character with a smaller width than any other character
8050 before, or if the font loaded has a smaller height than any
8051 other font loaded before. If this happens, it will make a
8052 glyph matrix reallocation necessary. */
8053 fonts_changed_p |= x_compute_min_glyph_bounds (f);
8054 UNBLOCK_INPUT;
8055 return fontp;
8056 }
8057 }
8058
8059
8060 /* Return a pointer to struct font_info of a font named FONTNAME for
8061 frame F. If no such font is loaded, return NULL. */
8062
8063 struct font_info *
8064 x_query_font (f, fontname)
8065 struct frame *f;
8066 register char *fontname;
8067 {
8068 struct mac_display_info *dpyinfo = FRAME_MAC_DISPLAY_INFO (f);
8069 int i;
8070
8071 for (i = 0; i < dpyinfo->n_fonts; i++)
8072 if (dpyinfo->font_table[i].name
8073 && (!strcmp (dpyinfo->font_table[i].name, fontname)
8074 || !strcmp (dpyinfo->font_table[i].full_name, fontname)))
8075 return (dpyinfo->font_table + i);
8076 return NULL;
8077 }
8078
8079
8080 /* Find a CCL program for a font specified by FONTP, and set the member
8081 `encoder' of the structure. */
8082
8083 void
8084 x_find_ccl_program (fontp)
8085 struct font_info *fontp;
8086 {
8087 Lisp_Object list, elt;
8088
8089 for (list = Vfont_ccl_encoder_alist; CONSP (list); list = XCDR (list))
8090 {
8091 elt = XCAR (list);
8092 if (CONSP (elt)
8093 && STRINGP (XCAR (elt))
8094 && (fast_c_string_match_ignore_case (XCAR (elt), fontp->name)
8095 >= 0))
8096 break;
8097 }
8098 if (! NILP (list))
8099 {
8100 struct ccl_program *ccl
8101 = (struct ccl_program *) xmalloc (sizeof (struct ccl_program));
8102
8103 if (setup_ccl_program (ccl, XCDR (elt)) < 0)
8104 xfree (ccl);
8105 else
8106 fontp->font_encoder = ccl;
8107 }
8108 }
8109
8110
8111 \f
8112 /* The Mac Event loop code */
8113
8114 #if !TARGET_API_MAC_CARBON
8115 #include <Events.h>
8116 #include <Quickdraw.h>
8117 #include <Balloons.h>
8118 #include <Devices.h>
8119 #include <Fonts.h>
8120 #include <Gestalt.h>
8121 #include <Menus.h>
8122 #include <Processes.h>
8123 #include <Sound.h>
8124 #include <ToolUtils.h>
8125 #include <TextUtils.h>
8126 #include <Dialogs.h>
8127 #include <Script.h>
8128 #include <Types.h>
8129 #include <Resources.h>
8130
8131 #if __MWERKS__
8132 #include <unix.h>
8133 #endif
8134 #endif /* ! TARGET_API_MAC_CARBON */
8135
8136 #define M_APPLE 128
8137 #define I_ABOUT 1
8138
8139 #define WINDOW_RESOURCE 128
8140 #define TERM_WINDOW_RESOURCE 129
8141
8142 #define DEFAULT_NUM_COLS 80
8143
8144 #define MIN_DOC_SIZE 64
8145 #define MAX_DOC_SIZE 32767
8146
8147 #define EXTRA_STACK_ALLOC (256 * 1024)
8148
8149 #define ARGV_STRING_LIST_ID 129
8150 #define ABOUT_ALERT_ID 128
8151 #define RAM_TOO_LARGE_ALERT_ID 129
8152
8153 /* Contains the string "reverse", which is a constant for mouse button emu.*/
8154 Lisp_Object Qreverse;
8155
8156
8157 /* Modifier associated with the control key, or nil to ignore. */
8158 Lisp_Object Vmac_control_modifier;
8159
8160 /* Modifier associated with the option key, or nil to ignore. */
8161 Lisp_Object Vmac_option_modifier;
8162
8163 /* Modifier associated with the command key, or nil to ignore. */
8164 Lisp_Object Vmac_command_modifier;
8165
8166 /* Modifier associated with the function key, or nil to ignore. */
8167 Lisp_Object Vmac_function_modifier;
8168
8169 /* True if the option and command modifiers should be used to emulate
8170 a three button mouse */
8171 Lisp_Object Vmac_emulate_three_button_mouse;
8172
8173 #if USE_CARBON_EVENTS
8174 /* Non-zero if the mouse wheel button (i.e. button 4) should map to
8175 mouse-2, instead of mouse-3. */
8176 int mac_wheel_button_is_mouse_2;
8177
8178 /* If non-zero, the Mac "Command" key is passed on to the Mac Toolbox
8179 for processing before Emacs sees it. */
8180 int mac_pass_command_to_system;
8181
8182 /* If non-zero, the Mac "Control" key is passed on to the Mac Toolbox
8183 for processing before Emacs sees it. */
8184 int mac_pass_control_to_system;
8185 #endif
8186
8187 /* Points to the variable `inev' in the function XTread_socket. It is
8188 used for passing an input event to the function back from
8189 Carbon/Apple event handlers. */
8190 static struct input_event *read_socket_inev = NULL;
8191
8192 Point saved_menu_event_location;
8193
8194 /* Apple Events */
8195 #if USE_CARBON_EVENTS
8196 static Lisp_Object Qhicommand;
8197 #endif
8198 extern int mac_ready_for_apple_events;
8199 extern Lisp_Object Qundefined;
8200 extern void init_apple_event_handler P_ ((void));
8201 extern void mac_find_apple_event_spec P_ ((AEEventClass, AEEventID,
8202 Lisp_Object *, Lisp_Object *,
8203 Lisp_Object *));
8204
8205 #if TARGET_API_MAC_CARBON
8206 /* Drag and Drop */
8207 static pascal OSErr mac_do_track_drag (DragTrackingMessage, WindowPtr, void*, DragReference);
8208 static pascal OSErr mac_do_receive_drag (WindowPtr, void*, DragReference);
8209 static DragTrackingHandlerUPP mac_do_track_dragUPP = NULL;
8210 static DragReceiveHandlerUPP mac_do_receive_dragUPP = NULL;
8211 #endif
8212
8213 #if USE_CARBON_EVENTS
8214 #ifdef MAC_OSX
8215 extern void init_service_handler ();
8216 static Lisp_Object Qservices, Qpaste, Qperform;
8217 #endif
8218 /* Window Event Handler */
8219 static pascal OSStatus mac_handle_window_event (EventHandlerCallRef,
8220 EventRef, void *);
8221 #endif
8222 OSErr install_window_handler (WindowPtr);
8223
8224 extern void init_emacs_passwd_dir ();
8225 extern int emacs_main (int, char **, char **);
8226
8227 extern void initialize_applescript();
8228 extern void terminate_applescript();
8229
8230 static unsigned int
8231 #if USE_CARBON_EVENTS
8232 mac_to_emacs_modifiers (UInt32 mods)
8233 #else
8234 mac_to_emacs_modifiers (EventModifiers mods)
8235 #endif
8236 {
8237 unsigned int result = 0;
8238 if (mods & shiftKey)
8239 result |= shift_modifier;
8240
8241 /* Deactivated to simplify configuration:
8242 if Vmac_option_modifier is non-NIL, we fully process the Option
8243 key. Otherwise, we only process it if an additional Ctrl or Command
8244 is pressed. That way the system may convert the character to a
8245 composed one.
8246 if ((mods & optionKey) &&
8247 (( !NILP(Vmac_option_modifier) ||
8248 ((mods & cmdKey) || (mods & controlKey))))) */
8249
8250 if (!NILP (Vmac_option_modifier) && (mods & optionKey)) {
8251 Lisp_Object val = Fget(Vmac_option_modifier, Qmodifier_value);
8252 if (INTEGERP(val))
8253 result |= XUINT(val);
8254 }
8255 if (!NILP (Vmac_command_modifier) && (mods & cmdKey)) {
8256 Lisp_Object val = Fget(Vmac_command_modifier, Qmodifier_value);
8257 if (INTEGERP(val))
8258 result |= XUINT(val);
8259 }
8260 if (!NILP (Vmac_control_modifier) && (mods & controlKey)) {
8261 Lisp_Object val = Fget(Vmac_control_modifier, Qmodifier_value);
8262 if (INTEGERP(val))
8263 result |= XUINT(val);
8264 }
8265
8266 #ifdef MAC_OSX
8267 if (!NILP (Vmac_function_modifier) && (mods & kEventKeyModifierFnMask)) {
8268 Lisp_Object val = Fget(Vmac_function_modifier, Qmodifier_value);
8269 if (INTEGERP(val))
8270 result |= XUINT(val);
8271 }
8272 #endif
8273
8274 return result;
8275 }
8276
8277 static int
8278 mac_get_emulated_btn ( UInt32 modifiers )
8279 {
8280 int result = 0;
8281 if (!NILP (Vmac_emulate_three_button_mouse)) {
8282 int cmdIs3 = !EQ (Vmac_emulate_three_button_mouse, Qreverse);
8283 if (modifiers & cmdKey)
8284 result = cmdIs3 ? 2 : 1;
8285 else if (modifiers & optionKey)
8286 result = cmdIs3 ? 1 : 2;
8287 }
8288 return result;
8289 }
8290
8291 #if USE_CARBON_EVENTS
8292 /* Obtains the event modifiers from the event ref and then calls
8293 mac_to_emacs_modifiers. */
8294 static UInt32
8295 mac_event_to_emacs_modifiers (EventRef eventRef)
8296 {
8297 UInt32 mods = 0;
8298 GetEventParameter (eventRef, kEventParamKeyModifiers, typeUInt32, NULL,
8299 sizeof (UInt32), NULL, &mods);
8300 if (!NILP (Vmac_emulate_three_button_mouse) &&
8301 GetEventClass(eventRef) == kEventClassMouse)
8302 {
8303 mods &= ~(optionKey | cmdKey);
8304 }
8305 return mac_to_emacs_modifiers (mods);
8306 }
8307
8308 /* Given an event ref, return the code to use for the mouse button
8309 code in the emacs input_event. */
8310 static int
8311 mac_get_mouse_btn (EventRef ref)
8312 {
8313 EventMouseButton result = kEventMouseButtonPrimary;
8314 GetEventParameter (ref, kEventParamMouseButton, typeMouseButton, NULL,
8315 sizeof (EventMouseButton), NULL, &result);
8316 switch (result)
8317 {
8318 case kEventMouseButtonPrimary:
8319 if (NILP (Vmac_emulate_three_button_mouse))
8320 return 0;
8321 else {
8322 UInt32 mods = 0;
8323 GetEventParameter (ref, kEventParamKeyModifiers, typeUInt32, NULL,
8324 sizeof (UInt32), NULL, &mods);
8325 return mac_get_emulated_btn(mods);
8326 }
8327 case kEventMouseButtonSecondary:
8328 return mac_wheel_button_is_mouse_2 ? 2 : 1;
8329 case kEventMouseButtonTertiary:
8330 case 4: /* 4 is the number for the mouse wheel button */
8331 return mac_wheel_button_is_mouse_2 ? 1 : 2;
8332 default:
8333 return 0;
8334 }
8335 }
8336
8337 /* Normally, ConvertEventRefToEventRecord will correctly handle all
8338 events. However the click of the mouse wheel is not converted to a
8339 mouseDown or mouseUp event. Likewise for dead key down events.
8340 This calls ConvertEventRef, but then checks to see if it is a mouse
8341 up/down, or a dead key down carbon event that has not been
8342 converted, and if so, converts it by hand (to be picked up in the
8343 XTread_socket loop). */
8344 static Boolean mac_convert_event_ref (EventRef eventRef, EventRecord *eventRec)
8345 {
8346 Boolean result = ConvertEventRefToEventRecord (eventRef, eventRec);
8347
8348 if (result)
8349 return result;
8350
8351 switch (GetEventClass (eventRef))
8352 {
8353 case kEventClassMouse:
8354 switch (GetEventKind (eventRef))
8355 {
8356 case kEventMouseDown:
8357 eventRec->what = mouseDown;
8358 result = 1;
8359 break;
8360
8361 case kEventMouseUp:
8362 eventRec->what = mouseUp;
8363 result = 1;
8364 break;
8365
8366 default:
8367 break;
8368 }
8369 break;
8370
8371 case kEventClassKeyboard:
8372 switch (GetEventKind (eventRef))
8373 {
8374 case kEventRawKeyDown:
8375 {
8376 unsigned char char_codes;
8377 UInt32 key_code;
8378
8379 eventRec->what = keyDown;
8380 GetEventParameter (eventRef, kEventParamKeyMacCharCodes, typeChar,
8381 NULL, sizeof (char), NULL, &char_codes);
8382 GetEventParameter (eventRef, kEventParamKeyCode, typeUInt32,
8383 NULL, sizeof (UInt32), NULL, &key_code);
8384 eventRec->message = char_codes | ((key_code & 0xff) << 8);
8385 result = 1;
8386 }
8387 break;
8388
8389 default:
8390 break;
8391 }
8392 break;
8393
8394 default:
8395 break;
8396 }
8397
8398 if (result)
8399 {
8400 /* Need where and when. */
8401 UInt32 mods;
8402
8403 GetEventParameter (eventRef, kEventParamMouseLocation, typeQDPoint,
8404 NULL, sizeof (Point), NULL, &eventRec->where);
8405 /* Use two step process because new event modifiers are 32-bit
8406 and old are 16-bit. Currently, only loss is NumLock & Fn. */
8407 GetEventParameter (eventRef, kEventParamKeyModifiers, typeUInt32,
8408 NULL, sizeof (UInt32), NULL, &mods);
8409 eventRec->modifiers = mods;
8410
8411 eventRec->when = EventTimeToTicks (GetEventTime (eventRef));
8412 }
8413
8414 return result;
8415 }
8416
8417 #endif
8418
8419 static void
8420 do_get_menus (void)
8421 {
8422 Handle menubar_handle;
8423 MenuHandle menu_handle;
8424
8425 menubar_handle = GetNewMBar (128);
8426 if(menubar_handle == NULL)
8427 abort ();
8428 SetMenuBar (menubar_handle);
8429 DrawMenuBar ();
8430
8431 #if !TARGET_API_MAC_CARBON
8432 menu_handle = GetMenuHandle (M_APPLE);
8433 if(menu_handle != NULL)
8434 AppendResMenu (menu_handle,'DRVR');
8435 else
8436 abort ();
8437 #endif
8438 }
8439
8440
8441 static void
8442 do_init_managers (void)
8443 {
8444 #if !TARGET_API_MAC_CARBON
8445 InitGraf (&qd.thePort);
8446 InitFonts ();
8447 FlushEvents (everyEvent, 0);
8448 InitWindows ();
8449 InitMenus ();
8450 TEInit ();
8451 InitDialogs (NULL);
8452 #endif /* !TARGET_API_MAC_CARBON */
8453 InitCursor ();
8454
8455 #if !TARGET_API_MAC_CARBON
8456 /* set up some extra stack space for use by emacs */
8457 SetApplLimit ((Ptr) ((long) GetApplLimit () - EXTRA_STACK_ALLOC));
8458
8459 /* MaxApplZone must be called for AppleScript to execute more
8460 complicated scripts */
8461 MaxApplZone ();
8462 MoreMasters ();
8463 #endif /* !TARGET_API_MAC_CARBON */
8464 }
8465
8466 static void
8467 do_check_ram_size (void)
8468 {
8469 SInt32 physical_ram_size, logical_ram_size;
8470
8471 if (Gestalt (gestaltPhysicalRAMSize, &physical_ram_size) != noErr
8472 || Gestalt (gestaltLogicalRAMSize, &logical_ram_size) != noErr
8473 || physical_ram_size > (1 << VALBITS)
8474 || logical_ram_size > (1 << VALBITS))
8475 {
8476 StopAlert (RAM_TOO_LARGE_ALERT_ID, NULL);
8477 exit (1);
8478 }
8479 }
8480
8481 static void
8482 do_window_update (WindowPtr win)
8483 {
8484 struct frame *f = mac_window_to_frame (win);
8485
8486 BeginUpdate (win);
8487
8488 /* The tooltip has been drawn already. Avoid the SET_FRAME_GARBAGED
8489 below. */
8490 if (win != tip_window)
8491 {
8492 if (f->async_visible == 0)
8493 {
8494 /* Update events may occur when a frame gets iconified. */
8495 #if 0
8496 f->async_visible = 1;
8497 f->async_iconified = 0;
8498 SET_FRAME_GARBAGED (f);
8499 #endif
8500 }
8501 else
8502 {
8503 Rect r;
8504 #if TARGET_API_MAC_CARBON
8505 RgnHandle region = NewRgn ();
8506
8507 GetPortVisibleRegion (GetWindowPort (win), region);
8508 GetRegionBounds (region, &r);
8509 expose_frame (f, r.left, r.top, r.right - r.left, r.bottom - r.top);
8510 UpdateControls (win, region);
8511 DisposeRgn (region);
8512 #else
8513 r = (*win->visRgn)->rgnBBox;
8514 expose_frame (f, r.left, r.top, r.right - r.left, r.bottom - r.top);
8515 UpdateControls (win, win->visRgn);
8516 #endif
8517 }
8518 }
8519
8520 EndUpdate (win);
8521 }
8522
8523 static int
8524 is_emacs_window (WindowPtr win)
8525 {
8526 Lisp_Object tail, frame;
8527
8528 if (!win)
8529 return 0;
8530
8531 FOR_EACH_FRAME (tail, frame)
8532 if (FRAME_MAC_P (XFRAME (frame)))
8533 if (FRAME_MAC_WINDOW (XFRAME (frame)) == win)
8534 return 1;
8535
8536 return 0;
8537 }
8538
8539 static void
8540 do_app_resume ()
8541 {
8542 /* Window-activate events will do the job. */
8543 }
8544
8545 static void
8546 do_app_suspend ()
8547 {
8548 /* Window-deactivate events will do the job. */
8549 }
8550
8551
8552 static void
8553 do_apple_menu (SInt16 menu_item)
8554 {
8555 #if !TARGET_API_MAC_CARBON
8556 Str255 item_name;
8557 SInt16 da_driver_refnum;
8558
8559 if (menu_item == I_ABOUT)
8560 NoteAlert (ABOUT_ALERT_ID, NULL);
8561 else
8562 {
8563 GetMenuItemText (GetMenuHandle (M_APPLE), menu_item, item_name);
8564 da_driver_refnum = OpenDeskAcc (item_name);
8565 }
8566 #endif /* !TARGET_API_MAC_CARBON */
8567 }
8568
8569 void
8570 do_menu_choice (SInt32 menu_choice)
8571 {
8572 SInt16 menu_id, menu_item;
8573
8574 menu_id = HiWord (menu_choice);
8575 menu_item = LoWord (menu_choice);
8576
8577 switch (menu_id)
8578 {
8579 case 0:
8580 break;
8581
8582 case M_APPLE:
8583 do_apple_menu (menu_item);
8584 break;
8585
8586 default:
8587 {
8588 struct frame *f = mac_focus_frame (&one_mac_display_info);
8589 MenuHandle menu = GetMenuHandle (menu_id);
8590 if (menu)
8591 {
8592 UInt32 refcon;
8593
8594 GetMenuItemRefCon (menu, menu_item, &refcon);
8595 menubar_selection_callback (f, refcon);
8596 }
8597 }
8598 }
8599
8600 HiliteMenu (0);
8601 }
8602
8603
8604 /* Handle drags in size box. Based on code contributed by Ben
8605 Mesander and IM - Window Manager A. */
8606
8607 static void
8608 do_grow_window (WindowPtr w, EventRecord *e)
8609 {
8610 Rect limit_rect;
8611 int rows, columns, width, height;
8612 struct frame *f = mac_window_to_frame (w);
8613 XSizeHints *size_hints = FRAME_SIZE_HINTS (f);
8614 int min_width = MIN_DOC_SIZE, min_height = MIN_DOC_SIZE;
8615 #if TARGET_API_MAC_CARBON
8616 Rect new_rect;
8617 #else
8618 long grow_size;
8619 #endif
8620
8621 if (size_hints->flags & PMinSize)
8622 {
8623 min_width = size_hints->min_width;
8624 min_height = size_hints->min_height;
8625 }
8626 SetRect (&limit_rect, min_width, min_height, MAX_DOC_SIZE, MAX_DOC_SIZE);
8627
8628 #if TARGET_API_MAC_CARBON
8629 if (!ResizeWindow (w, e->where, &limit_rect, &new_rect))
8630 return;
8631 height = new_rect.bottom - new_rect.top;
8632 width = new_rect.right - new_rect.left;
8633 #else
8634 grow_size = GrowWindow (w, e->where, &limit_rect);
8635 /* see if it really changed size */
8636 if (grow_size == 0)
8637 return;
8638 height = HiWord (grow_size);
8639 width = LoWord (grow_size);
8640 #endif
8641
8642 if (width != FRAME_PIXEL_WIDTH (f)
8643 || height != FRAME_PIXEL_HEIGHT (f))
8644 {
8645 rows = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, height);
8646 columns = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, width);
8647
8648 x_set_window_size (f, 0, columns, rows);
8649 }
8650 }
8651
8652
8653 /* Handle clicks in zoom box. Calculation of "standard state" based
8654 on code in IM - Window Manager A and code contributed by Ben
8655 Mesander. The standard state of an Emacs window is 80-characters
8656 wide (DEFAULT_NUM_COLS) and as tall as will fit on the screen. */
8657
8658 static void
8659 do_zoom_window (WindowPtr w, int zoom_in_or_out)
8660 {
8661 GrafPtr save_port;
8662 Rect zoom_rect, port_rect;
8663 Point top_left;
8664 int w_title_height, columns, rows, width, height;
8665 struct frame *f = mac_window_to_frame (w);
8666 struct mac_display_info *dpyinfo = FRAME_MAC_DISPLAY_INFO (f);
8667
8668 #if TARGET_API_MAC_CARBON
8669 {
8670 Point standard_size;
8671
8672 standard_size.h = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, DEFAULT_NUM_COLS);
8673 standard_size.v = dpyinfo->height;
8674
8675 if (IsWindowInStandardState (w, &standard_size, &zoom_rect))
8676 zoom_in_or_out = inZoomIn;
8677 else
8678 {
8679 /* Adjust the standard size according to character boundaries. */
8680
8681 columns = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, zoom_rect.right - zoom_rect.left);
8682 rows = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, zoom_rect.bottom - zoom_rect.top);
8683 standard_size.h = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, columns);
8684 standard_size.v = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, rows);
8685 GetWindowBounds (w, kWindowContentRgn, &port_rect);
8686 if (IsWindowInStandardState (w, &standard_size, &zoom_rect)
8687 && port_rect.left == zoom_rect.left
8688 && port_rect.top == zoom_rect.top)
8689 zoom_in_or_out = inZoomIn;
8690 else
8691 zoom_in_or_out = inZoomOut;
8692 }
8693
8694 ZoomWindowIdeal (w, zoom_in_or_out, &standard_size);
8695 }
8696 #else /* not TARGET_API_MAC_CARBON */
8697 GetPort (&save_port);
8698
8699 SetPortWindowPort (w);
8700
8701 /* Clear window to avoid flicker. */
8702 EraseRect (&(w->portRect));
8703 if (zoom_in_or_out == inZoomOut)
8704 {
8705 SetPt (&top_left, w->portRect.left, w->portRect.top);
8706 LocalToGlobal (&top_left);
8707
8708 /* calculate height of window's title bar */
8709 w_title_height = top_left.v - 1
8710 - (**((WindowPeek) w)->strucRgn).rgnBBox.top + GetMBarHeight ();
8711
8712 /* get maximum height of window into zoom_rect.bottom - zoom_rect.top */
8713 zoom_rect = qd.screenBits.bounds;
8714 zoom_rect.top += w_title_height;
8715 InsetRect (&zoom_rect, 8, 4); /* not too tight */
8716
8717 zoom_rect.right = zoom_rect.left
8718 + FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, DEFAULT_NUM_COLS);
8719
8720 /* Adjust the standard size according to character boundaries. */
8721 rows = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, zoom_rect.bottom - zoom_rect.top);
8722 zoom_rect.bottom =
8723 zoom_rect.top + FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, rows);
8724
8725 (**((WStateDataHandle) ((WindowPeek) w)->dataHandle)).stdState
8726 = zoom_rect;
8727 }
8728
8729 ZoomWindow (w, zoom_in_or_out, f == mac_focus_frame (dpyinfo));
8730
8731 SetPort (save_port);
8732 #endif /* not TARGET_API_MAC_CARBON */
8733
8734 /* retrieve window size and update application values */
8735 #if TARGET_API_MAC_CARBON
8736 GetWindowPortBounds (w, &port_rect);
8737 #else
8738 port_rect = w->portRect;
8739 #endif
8740 height = port_rect.bottom - port_rect.top;
8741 width = port_rect.right - port_rect.left;
8742
8743 if (width != FRAME_PIXEL_WIDTH (f)
8744 || height != FRAME_PIXEL_HEIGHT (f))
8745 {
8746 rows = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, height);
8747 columns = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, width);
8748
8749 change_frame_size (f, rows, columns, 0, 1, 0);
8750 SET_FRAME_GARBAGED (f);
8751 cancel_mouse_face (f);
8752
8753 FRAME_PIXEL_WIDTH (f) = width;
8754 FRAME_PIXEL_HEIGHT (f) = height;
8755 }
8756 x_real_positions (f, &f->left_pos, &f->top_pos);
8757 }
8758
8759 OSErr
8760 mac_store_apple_event (class, id, desc)
8761 Lisp_Object class, id;
8762 const AEDesc *desc;
8763 {
8764 OSErr err = noErr;
8765 struct input_event buf;
8766 AEDesc *desc_copy;
8767
8768 desc_copy = xmalloc (sizeof (AEDesc));
8769 if (desc_copy == NULL)
8770 err = memFullErr;
8771 else
8772 err = AEDuplicateDesc (desc, desc_copy);
8773 if (err == noErr)
8774 {
8775 EVENT_INIT (buf);
8776
8777 buf.kind = MAC_APPLE_EVENT;
8778 buf.x = class;
8779 buf.y = id;
8780 buf.code = (int)desc_copy;
8781 XSETFRAME (buf.frame_or_window,
8782 mac_focus_frame (&one_mac_display_info));
8783 buf.arg = Qnil;
8784 kbd_buffer_store_event (&buf);
8785 }
8786
8787 return err;
8788 }
8789
8790 Lisp_Object
8791 mac_make_lispy_event_code (code)
8792 int code;
8793 {
8794 AEDesc *desc = (AEDesc *)code;
8795 Lisp_Object obj;
8796
8797 obj = mac_aedesc_to_lisp (desc);
8798 AEDisposeDesc (desc);
8799 xfree (desc);
8800
8801 return obj;
8802 }
8803
8804 #if USE_CARBON_EVENTS
8805 static pascal OSStatus
8806 mac_handle_command_event (next_handler, event, data)
8807 EventHandlerCallRef next_handler;
8808 EventRef event;
8809 void *data;
8810 {
8811 OSStatus result;
8812 OSErr err;
8813 HICommand command;
8814 Lisp_Object class_key, id_key, binding;
8815
8816 result = CallNextEventHandler (next_handler, event);
8817 if (result != eventNotHandledErr)
8818 return result;
8819
8820 GetEventParameter (event, kEventParamDirectObject, typeHICommand, NULL,
8821 sizeof (HICommand), NULL, &command);
8822
8823 if (command.commandID == 0)
8824 return eventNotHandledErr;
8825
8826 /* A HICommand event is mapped to an Apple event whose event class
8827 symbol is `hicommand' and event ID is its command ID. */
8828 class_key = Qhicommand;
8829 mac_find_apple_event_spec (0, command.commandID,
8830 &class_key, &id_key, &binding);
8831 if (!NILP (binding) && !EQ (binding, Qundefined))
8832 if (INTEGERP (binding))
8833 return XINT (binding);
8834 else
8835 {
8836 AppleEvent apple_event;
8837 UInt32 modifiers;
8838 static EventParamName names[] = {kEventParamDirectObject,
8839 kEventParamKeyModifiers};
8840 static EventParamType types[] = {typeHICommand,
8841 typeUInt32};
8842 err = create_apple_event_from_event_ref (event, 2, names, types,
8843 &apple_event);
8844 if (err == noErr)
8845 {
8846 err = mac_store_apple_event (class_key, id_key, &apple_event);
8847 AEDisposeDesc (&apple_event);
8848 }
8849 if (err == noErr)
8850 return noErr;
8851 }
8852
8853 return eventNotHandledErr;
8854 }
8855
8856 static OSErr
8857 init_command_handler ()
8858 {
8859 OSErr err = noErr;
8860 EventTypeSpec specs[] = {{kEventClassCommand, kEventCommandProcess}};
8861 static EventHandlerUPP handle_command_eventUPP = NULL;
8862
8863 if (handle_command_eventUPP == NULL)
8864 handle_command_eventUPP = NewEventHandlerUPP (mac_handle_command_event);
8865 return InstallApplicationEventHandler (handle_command_eventUPP,
8866 GetEventTypeCount (specs), specs,
8867 NULL, NULL);
8868 }
8869
8870 static pascal OSStatus
8871 mac_handle_window_event (next_handler, event, data)
8872 EventHandlerCallRef next_handler;
8873 EventRef event;
8874 void *data;
8875 {
8876 WindowPtr wp;
8877 OSStatus result;
8878 UInt32 attributes;
8879 XSizeHints *size_hints;
8880
8881 GetEventParameter (event, kEventParamDirectObject, typeWindowRef,
8882 NULL, sizeof (WindowPtr), NULL, &wp);
8883
8884 switch (GetEventKind (event))
8885 {
8886 case kEventWindowUpdate:
8887 result = CallNextEventHandler (next_handler, event);
8888 if (result != eventNotHandledErr)
8889 return result;
8890
8891 do_window_update (wp);
8892 return noErr;
8893
8894 case kEventWindowBoundsChanging:
8895 result = CallNextEventHandler (next_handler, event);
8896 if (result != eventNotHandledErr)
8897 return result;
8898
8899 GetEventParameter (event, kEventParamAttributes, typeUInt32,
8900 NULL, sizeof (UInt32), NULL, &attributes);
8901 size_hints = FRAME_SIZE_HINTS (mac_window_to_frame (wp));
8902 if ((attributes & kWindowBoundsChangeUserResize)
8903 && ((size_hints->flags & (PResizeInc | PBaseSize | PMinSize))
8904 == (PResizeInc | PBaseSize | PMinSize)))
8905 {
8906 Rect bounds;
8907 int width, height;
8908
8909 GetEventParameter (event, kEventParamCurrentBounds,
8910 typeQDRectangle,
8911 NULL, sizeof (Rect), NULL, &bounds);
8912 width = bounds.right - bounds.left;
8913 height = bounds.bottom - bounds.top;
8914
8915 if (width < size_hints->min_width)
8916 width = size_hints->min_width;
8917 else
8918 width = size_hints->base_width
8919 + (int) ((width - size_hints->base_width)
8920 / (float) size_hints->width_inc + .5)
8921 * size_hints->width_inc;
8922
8923 if (height < size_hints->min_height)
8924 height = size_hints->min_height;
8925 else
8926 height = size_hints->base_height
8927 + (int) ((height - size_hints->base_height)
8928 / (float) size_hints->height_inc + .5)
8929 * size_hints->height_inc;
8930
8931 bounds.right = bounds.left + width;
8932 bounds.bottom = bounds.top + height;
8933 SetEventParameter (event, kEventParamCurrentBounds,
8934 typeQDRectangle, sizeof (Rect), &bounds);
8935 return noErr;
8936 }
8937 break;
8938
8939 case kEventWindowShown:
8940 case kEventWindowHidden:
8941 case kEventWindowExpanded:
8942 case kEventWindowCollapsed:
8943 result = CallNextEventHandler (next_handler, event);
8944
8945 mac_handle_visibility_change (mac_window_to_frame (wp));
8946 return noErr;
8947
8948 break;
8949 }
8950
8951 return eventNotHandledErr;
8952 }
8953
8954 static pascal OSStatus
8955 mac_handle_mouse_event (next_handler, event, data)
8956 EventHandlerCallRef next_handler;
8957 EventRef event;
8958 void *data;
8959 {
8960 OSStatus result;
8961
8962 switch (GetEventKind (event))
8963 {
8964 case kEventMouseWheelMoved:
8965 {
8966 WindowPtr wp;
8967 struct frame *f;
8968 EventMouseWheelAxis axis;
8969 SInt32 delta;
8970 Point point;
8971
8972 result = CallNextEventHandler (next_handler, event);
8973 if (result != eventNotHandledErr || read_socket_inev == NULL)
8974 return result;
8975
8976 GetEventParameter (event, kEventParamWindowRef, typeWindowRef,
8977 NULL, sizeof (WindowRef), NULL, &wp);
8978 f = mac_window_to_frame (wp);
8979 if (f != mac_focus_frame (&one_mac_display_info))
8980 break;
8981
8982 GetEventParameter (event, kEventParamMouseWheelAxis,
8983 typeMouseWheelAxis, NULL,
8984 sizeof (EventMouseWheelAxis), NULL, &axis);
8985 if (axis != kEventMouseWheelAxisY)
8986 break;
8987
8988 GetEventParameter (event, kEventParamMouseWheelDelta, typeSInt32,
8989 NULL, sizeof (SInt32), NULL, &delta);
8990 GetEventParameter (event, kEventParamMouseLocation, typeQDPoint,
8991 NULL, sizeof (Point), NULL, &point);
8992 read_socket_inev->kind = WHEEL_EVENT;
8993 read_socket_inev->code = 0;
8994 read_socket_inev->modifiers =
8995 (mac_event_to_emacs_modifiers (event)
8996 | ((delta < 0) ? down_modifier : up_modifier));
8997 SetPortWindowPort (wp);
8998 GlobalToLocal (&point);
8999 XSETINT (read_socket_inev->x, point.h);
9000 XSETINT (read_socket_inev->y, point.v);
9001 XSETFRAME (read_socket_inev->frame_or_window, f);
9002
9003 return noErr;
9004 }
9005 break;
9006
9007 default:
9008 break;
9009 }
9010
9011 return eventNotHandledErr;
9012 }
9013
9014 #ifdef MAC_OSX
9015 OSErr
9016 mac_store_services_event (event)
9017 EventRef event;
9018 {
9019 OSErr err;
9020 AppleEvent apple_event;
9021 Lisp_Object id_key;
9022
9023 switch (GetEventKind (event))
9024 {
9025 case kEventServicePaste:
9026 id_key = Qpaste;
9027 err = create_apple_event_from_event_ref (event, 0, NULL, NULL,
9028 &apple_event);
9029 break;
9030
9031 case kEventServicePerform:
9032 {
9033 static EventParamName names[] = {kEventParamServiceMessageName,
9034 kEventParamServiceUserData};
9035 static EventParamType types[] = {typeCFStringRef,
9036 typeCFStringRef};
9037
9038 id_key = Qperform;
9039 err = create_apple_event_from_event_ref (event, 2, names, types,
9040 &apple_event);
9041 }
9042 break;
9043
9044 default:
9045 abort ();
9046 }
9047
9048 if (err == noErr)
9049 {
9050 err = mac_store_apple_event (Qservices, id_key, &apple_event);
9051 AEDisposeDesc (&apple_event);
9052 }
9053
9054 return err;
9055 }
9056 #endif /* MAC_OSX */
9057 #endif /* USE_CARBON_EVENTS */
9058
9059
9060 OSErr
9061 install_window_handler (window)
9062 WindowPtr window;
9063 {
9064 OSErr err = noErr;
9065 #if USE_CARBON_EVENTS
9066 EventTypeSpec specs_window[] =
9067 {{kEventClassWindow, kEventWindowUpdate},
9068 {kEventClassWindow, kEventWindowBoundsChanging},
9069 {kEventClassWindow, kEventWindowShown},
9070 {kEventClassWindow, kEventWindowHidden},
9071 {kEventClassWindow, kEventWindowExpanded},
9072 {kEventClassWindow, kEventWindowCollapsed}};
9073 EventTypeSpec specs_mouse[] = {{kEventClassMouse, kEventMouseWheelMoved}};
9074 static EventHandlerUPP handle_window_eventUPP = NULL;
9075 static EventHandlerUPP handle_mouse_eventUPP = NULL;
9076
9077 if (handle_window_eventUPP == NULL)
9078 handle_window_eventUPP = NewEventHandlerUPP (mac_handle_window_event);
9079 if (handle_mouse_eventUPP == NULL)
9080 handle_mouse_eventUPP = NewEventHandlerUPP (mac_handle_mouse_event);
9081 err = InstallWindowEventHandler (window, handle_window_eventUPP,
9082 GetEventTypeCount (specs_window),
9083 specs_window, NULL, NULL);
9084 if (err == noErr)
9085 err = InstallWindowEventHandler (window, handle_mouse_eventUPP,
9086 GetEventTypeCount (specs_mouse),
9087 specs_mouse, NULL, NULL);
9088 #endif
9089 #if TARGET_API_MAC_CARBON
9090 if (mac_do_track_dragUPP == NULL)
9091 mac_do_track_dragUPP = NewDragTrackingHandlerUPP (mac_do_track_drag);
9092 if (mac_do_receive_dragUPP == NULL)
9093 mac_do_receive_dragUPP = NewDragReceiveHandlerUPP (mac_do_receive_drag);
9094
9095 if (err == noErr)
9096 err = InstallTrackingHandler (mac_do_track_dragUPP, window, NULL);
9097 if (err == noErr)
9098 err = InstallReceiveHandler (mac_do_receive_dragUPP, window, NULL);
9099 #endif
9100 return err;
9101 }
9102
9103 void
9104 remove_window_handler (window)
9105 WindowPtr window;
9106 {
9107 #if TARGET_API_MAC_CARBON
9108 if (mac_do_track_dragUPP)
9109 RemoveTrackingHandler (mac_do_track_dragUPP, window);
9110 if (mac_do_receive_dragUPP)
9111 RemoveReceiveHandler (mac_do_receive_dragUPP, window);
9112 #endif
9113 }
9114
9115 #if TARGET_API_MAC_CARBON
9116 static pascal OSErr
9117 mac_do_track_drag (DragTrackingMessage message, WindowPtr window,
9118 void *handlerRefCon, DragReference theDrag)
9119 {
9120 static int can_accept;
9121 short items;
9122 short index;
9123 ItemReference theItem;
9124 FlavorFlags theFlags;
9125 OSErr result;
9126
9127 if (GetFrontWindowOfClass (kMovableModalWindowClass, false))
9128 return dragNotAcceptedErr;
9129
9130 switch (message)
9131 {
9132 case kDragTrackingEnterHandler:
9133 CountDragItems (theDrag, &items);
9134 can_accept = 0;
9135 for (index = 1; index <= items; index++)
9136 {
9137 GetDragItemReferenceNumber (theDrag, index, &theItem);
9138 result = GetFlavorFlags (theDrag, theItem, flavorTypeHFS, &theFlags);
9139 if (result == noErr)
9140 {
9141 can_accept = 1;
9142 break;
9143 }
9144 }
9145 break;
9146
9147 case kDragTrackingEnterWindow:
9148 if (can_accept)
9149 {
9150 RgnHandle hilite_rgn = NewRgn ();
9151 Rect r;
9152 struct frame *f = mac_window_to_frame (window);
9153
9154 GetWindowPortBounds (window, &r);
9155 OffsetRect (&r, -r.left, -r.top);
9156 RectRgn (hilite_rgn, &r);
9157 ShowDragHilite (theDrag, hilite_rgn, true);
9158 DisposeRgn (hilite_rgn);
9159 SetThemeCursor (kThemeCopyArrowCursor);
9160 }
9161 break;
9162
9163 case kDragTrackingInWindow:
9164 break;
9165
9166 case kDragTrackingLeaveWindow:
9167 if (can_accept)
9168 {
9169 struct frame *f = mac_window_to_frame (window);
9170
9171 HideDragHilite (theDrag);
9172 SetThemeCursor (kThemeArrowCursor);
9173 }
9174 break;
9175
9176 case kDragTrackingLeaveHandler:
9177 break;
9178 }
9179
9180 return noErr;
9181 }
9182
9183 static pascal OSErr
9184 mac_do_receive_drag (WindowPtr window, void *handlerRefCon,
9185 DragReference theDrag)
9186 {
9187 short items;
9188 short index;
9189 FlavorFlags theFlags;
9190 Point mouse;
9191 OSErr result;
9192 ItemReference theItem;
9193 HFSFlavor data;
9194 Size size = sizeof (HFSFlavor);
9195 Lisp_Object file_list;
9196
9197 if (GetFrontWindowOfClass (kMovableModalWindowClass, false))
9198 return dragNotAcceptedErr;
9199
9200 file_list = Qnil;
9201 GetDragMouse (theDrag, &mouse, 0L);
9202 CountDragItems (theDrag, &items);
9203 for (index = 1; index <= items; index++)
9204 {
9205 /* Only handle file references. */
9206 GetDragItemReferenceNumber (theDrag, index, &theItem);
9207 result = GetFlavorFlags (theDrag, theItem, flavorTypeHFS, &theFlags);
9208 if (result == noErr)
9209 {
9210 #ifdef MAC_OSX
9211 FSRef fref;
9212 #endif
9213 char unix_path_name[MAXPATHLEN];
9214
9215 GetFlavorData (theDrag, theItem, flavorTypeHFS, &data, &size, 0L);
9216 #ifdef MAC_OSX
9217 /* Use Carbon routines, otherwise it converts the file name
9218 to /Macintosh HD/..., which is not correct. */
9219 FSpMakeFSRef (&data.fileSpec, &fref);
9220 if (! FSRefMakePath (&fref, unix_path_name, sizeof (unix_path_name)));
9221 #else
9222 if (fsspec_to_posix_pathname (&data.fileSpec, unix_path_name,
9223 sizeof (unix_path_name) - 1) == noErr)
9224 #endif
9225 /* x-dnd functions expect undecoded filenames. */
9226 file_list = Fcons (make_unibyte_string (unix_path_name,
9227 strlen (unix_path_name)),
9228 file_list);
9229 }
9230 }
9231 /* If there are items in the list, construct an event and post it to
9232 the queue like an interrupt using kbd_buffer_store_event. */
9233 if (!NILP (file_list))
9234 {
9235 struct input_event event;
9236 Lisp_Object frame;
9237 struct frame *f = mac_window_to_frame (window);
9238 SInt16 modifiers;
9239
9240 GlobalToLocal (&mouse);
9241 GetDragModifiers (theDrag, NULL, NULL, &modifiers);
9242
9243 event.kind = DRAG_N_DROP_EVENT;
9244 event.code = 0;
9245 event.modifiers = mac_to_emacs_modifiers (modifiers);
9246 event.timestamp = TickCount () * (1000 / 60);
9247 XSETINT (event.x, mouse.h);
9248 XSETINT (event.y, mouse.v);
9249 XSETFRAME (frame, f);
9250 event.frame_or_window = frame;
9251 event.arg = file_list;
9252 /* Post to the interrupt queue */
9253 kbd_buffer_store_event (&event);
9254 /* MAC_TODO: Mimic behavior of windows by switching contexts to Emacs */
9255 {
9256 ProcessSerialNumber psn;
9257 GetCurrentProcess (&psn);
9258 SetFrontProcess (&psn);
9259 }
9260
9261 return noErr;
9262 }
9263 else
9264 return dragNotAcceptedErr;
9265 }
9266 #endif
9267
9268
9269 #if __profile__
9270 void
9271 profiler_exit_proc ()
9272 {
9273 ProfilerDump ("\pEmacs.prof");
9274 ProfilerTerm ();
9275 }
9276 #endif
9277
9278 /* These few functions implement Emacs as a normal Mac application
9279 (almost): set up the heap and the Toolbox, handle necessary system
9280 events plus a few simple menu events. They also set up Emacs's
9281 access to functions defined in the rest of this file. Emacs uses
9282 function hooks to perform all its terminal I/O. A complete list of
9283 these functions appear in termhooks.h. For what they do, read the
9284 comments there and see also w32term.c and xterm.c. What's
9285 noticeably missing here is the event loop, which is normally
9286 present in most Mac application. After performing the necessary
9287 Mac initializations, main passes off control to emacs_main
9288 (corresponding to main in emacs.c). Emacs_main calls XTread_socket
9289 (defined further below) to read input. This is where
9290 WaitNextEvent/ReceiveNextEvent is called to process Mac events. */
9291
9292 #ifdef MAC_OS8
9293 #undef main
9294 int
9295 main (void)
9296 {
9297 #if __profile__ /* is the profiler on? */
9298 if (ProfilerInit(collectDetailed, bestTimeBase, 5000, 200))
9299 exit(1);
9300 #endif
9301
9302 #if __MWERKS__
9303 /* set creator and type for files created by MSL */
9304 _fcreator = 'EMAx';
9305 _ftype = 'TEXT';
9306 #endif
9307
9308 do_init_managers ();
9309
9310 do_get_menus ();
9311
9312 #ifndef USE_LSB_TAG
9313 do_check_ram_size ();
9314 #endif
9315
9316 init_emacs_passwd_dir ();
9317
9318 init_environ ();
9319
9320 initialize_applescript ();
9321
9322 init_apple_event_handler ();
9323
9324 {
9325 char **argv;
9326 int argc = 0;
9327
9328 /* set up argv array from STR# resource */
9329 get_string_list (&argv, ARGV_STRING_LIST_ID);
9330 while (argv[argc])
9331 argc++;
9332
9333 /* free up AppleScript resources on exit */
9334 atexit (terminate_applescript);
9335
9336 #if __profile__ /* is the profiler on? */
9337 atexit (profiler_exit_proc);
9338 #endif
9339
9340 /* 3rd param "envp" never used in emacs_main */
9341 (void) emacs_main (argc, argv, 0);
9342 }
9343
9344 /* Never reached - real exit in Fkill_emacs */
9345 return 0;
9346 }
9347 #endif
9348
9349 /* Table for translating Mac keycode to X keysym values. Contributed
9350 by Sudhir Shenoy.
9351 Mapping for special keys is now identical to that in Apple X11
9352 except `clear' (-> <clear>) on the KeyPad, `enter' (-> <kp-enter>)
9353 on the right of the Cmd key on laptops, and fn + `enter' (->
9354 <linefeed>). */
9355 static unsigned char keycode_to_xkeysym_table[] = {
9356 /*0x00*/ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
9357 /*0x10*/ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
9358 /*0x20*/ 0, 0, 0, 0, 0x0d /*return*/, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
9359
9360 /*0x30*/ 0x09 /*tab*/, 0 /*0x0020 space*/, 0, 0x08 /*backspace*/,
9361 /*0x34*/ 0x8d /*enter on laptops*/, 0x1b /*escape*/, 0, 0,
9362 /*0x38*/ 0, 0, 0, 0,
9363 /*0x3C*/ 0, 0, 0, 0,
9364
9365 /*0x40*/ 0, 0xae /*kp-.*/, 0, 0xaa /*kp-**/,
9366 /*0x44*/ 0, 0xab /*kp-+*/, 0, 0x0b /*clear*/,
9367 /*0x48*/ 0, 0, 0, 0xaf /*kp-/*/,
9368 /*0x4C*/ 0x8d /*kp-enter*/, 0, 0xad /*kp--*/, 0,
9369
9370 /*0x50*/ 0, 0xbd /*kp-=*/, 0xb0 /*kp-0*/, 0xb1 /*kp-1*/,
9371 /*0x54*/ 0xb2 /*kp-2*/, 0xb3 /*kp-3*/, 0xb4 /*kp-4*/, 0xb5 /*kp-5*/,
9372 /*0x58*/ 0xb6 /*kp-6*/, 0xb7 /*kp-7*/, 0, 0xb8 /*kp-8*/,
9373 /*0x5C*/ 0xb9 /*kp-9*/, 0, 0, 0,
9374
9375 /*0x60*/ 0xc2 /*f5*/, 0xc3 /*f6*/, 0xc4 /*f7*/, 0xc0 /*f3*/,
9376 /*0x64*/ 0xc5 /*f8*/, 0xc6 /*f9*/, 0, 0xc8 /*f11*/,
9377 /*0x68*/ 0, 0xca /*f13*/, 0, 0xcb /*f14*/,
9378 /*0x6C*/ 0, 0xc7 /*f10*/, 0x0a /*fn+enter on laptops*/, 0xc9 /*f12*/,
9379
9380 /*0x70*/ 0, 0xcc /*f15*/, 0x6a /*help*/, 0x50 /*home*/,
9381 /*0x74*/ 0x55 /*pgup*/, 0xff /*delete*/, 0xc1 /*f4*/, 0x57 /*end*/,
9382 /*0x78*/ 0xbf /*f2*/, 0x56 /*pgdown*/, 0xbe /*f1*/, 0x51 /*left*/,
9383 /*0x7C*/ 0x53 /*right*/, 0x54 /*down*/, 0x52 /*up*/, 0
9384 };
9385
9386
9387 static int
9388 keycode_to_xkeysym (int keyCode, int *xKeySym)
9389 {
9390 *xKeySym = keycode_to_xkeysym_table [keyCode & 0x7f];
9391 return *xKeySym != 0;
9392 }
9393
9394 static unsigned char fn_keycode_to_xkeysym_table[] = {
9395 /*0x00*/ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
9396 /*0x10*/ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
9397 /*0x20*/ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
9398
9399 /*0x30*/ 0, 0, 0, 0,
9400 /*0x34*/ 0, 0, 0, 0,
9401 /*0x38*/ 0, 0, 0, 0,
9402 /*0x3C*/ 0, 0, 0, 0,
9403
9404 /*0x40*/ 0, 0x2e /*kp-. = .*/, 0, 0x50 /*kp-* = 'p'*/,
9405 /*0x44*/ 0, '/' /*kp-+*/, 0, 0,
9406 /*0x48*/ 0, 0, 0, 0x30 /*kp-/ = '0'*/,
9407 /*0x4C*/ 0, 0, 0x3b /*kp-- = ';'*/, 0,
9408
9409 /*0x50*/ 0, 0x2d /*kp-= = '-'*/, 0x6d /*kp-0 = 'm'*/, 0x6a /*kp-1 = 'j'*/,
9410 /*0x54*/ 0x6b /*kp-2 = 'k'*/, 0x6c /*kp-3 = 'l'*/, 'u' /*kp-4*/, 'i' /*kp-5*/,
9411 /*0x58*/ 'o' /*kp-6*/, '7' /*kp-7*/, 0, '8' /*kp-8*/,
9412 /*0x5C*/ '9' /*kp-9*/, 0, 0, 0,
9413
9414 /*0x60*/ 0, 0, 0, 0,
9415 /*0x64*/ 0, 0, 0, 0,
9416 /*0x68*/ 0, 0, 0, 0,
9417 /*0x6C*/ 0, 0, 0, 0,
9418
9419 /*0x70*/ 0, 0, 0, 0,
9420 /*0x74*/ 0, 0, 0, 0,
9421 /*0x78*/ 0, 0, 0, 0,
9422 /*0x7C*/ 0, 0, 0, 0
9423 };
9424 static int
9425 convert_fn_keycode (EventRef eventRef, int keyCode, int *newCode)
9426 {
9427 #ifdef MAC_OSX
9428 /* Use the special map to translate keys when function modifier is
9429 to be caught. KeyTranslate can't be used in that case.
9430 We can't detect the function key using the input_event.modifiers,
9431 because this uses the high word of an UInt32. Therefore,
9432 we'll just read it out of the original eventRef.
9433 */
9434
9435
9436 /* TODO / known issues
9437
9438 - Fn-Shift-j is regonized as Fn-j and not Fn-J.
9439 The above table always translates to lower characters. We need to use
9440 the KCHR keyboard resource (KeyTranslate() ) to map k->K and 8->*.
9441
9442 - The table is meant for English language keyboards, and it will work
9443 for many others with the exception of key combinations like Fn-ö on
9444 a German keyboard, which is currently mapped to Fn-;.
9445 How to solve this without keeping separate tables for all keyboards
9446 around? KeyTranslate isn't of much help here, as it only takes a 16-bit
9447 value for keycode with the modifiers in he high byte, i.e. no room for the
9448 Fn modifier. That's why we need the table.
9449
9450 */
9451
9452 UInt32 mods = 0;
9453 if (!NILP(Vmac_function_modifier))
9454 {
9455 GetEventParameter (eventRef, kEventParamKeyModifiers, typeUInt32, NULL,
9456 sizeof (UInt32), NULL, &mods);
9457 if (mods & kEventKeyModifierFnMask)
9458 { *newCode = fn_keycode_to_xkeysym_table [keyCode & 0x7f];
9459
9460 return (*newCode != 0);
9461 }
9462 }
9463 #endif
9464 return false;
9465 }
9466
9467 static int
9468 backtranslate_modified_keycode(int mods, int keycode, int def)
9469 {
9470 EventModifiers mapped_modifiers =
9471 (NILP (Vmac_control_modifier) ? 0 : controlKey)
9472 | (NILP (Vmac_option_modifier) ? 0 : optionKey)
9473 | (NILP (Vmac_command_modifier) ? 0 : cmdKey);
9474
9475 if (mods & mapped_modifiers)
9476 {
9477 /* This code comes from Keyboard Resource,
9478 Appendix C of IM - Text. This is necessary
9479 since shift is ignored in KCHR table
9480 translation when option or command is pressed.
9481 It also does not translate correctly
9482 control-shift chars like C-% so mask off shift
9483 here also.
9484
9485 Not done for combinations with the option key (alt)
9486 unless it is to be caught by Emacs: this is
9487 to preserve key combinations translated by the OS
9488 such as Alt-3.
9489 */
9490 /* Mask off modifier keys that are mapped to some Emacs
9491 modifiers. */
9492 int new_modifiers = mods & ~mapped_modifiers;
9493 /* set high byte of keycode to modifier high byte*/
9494 int new_keycode = keycode | new_modifiers;
9495 Ptr kchr_ptr = (Ptr) GetScriptManagerVariable (smKCHRCache);
9496 unsigned long some_state = 0;
9497 return (int) KeyTranslate (kchr_ptr, new_keycode,
9498 &some_state) & 0xff;
9499 /* TO DO: Recognize two separate resulting characters, "for
9500 example, when the user presses Option-E followed by N, you
9501 can map this through the KeyTranslate function using the
9502 U.S. 'KCHR' resource to produce ´n, which KeyTranslate
9503 returns as two characters in the bytes labeled Character code
9504 1 and Character code 2." (from Carbon API doc) */
9505
9506 }
9507 else
9508 return def;
9509 }
9510
9511
9512 #if !USE_CARBON_EVENTS
9513 static RgnHandle mouse_region = NULL;
9514
9515 Boolean
9516 mac_wait_next_event (er, sleep_time, dequeue)
9517 EventRecord *er;
9518 UInt32 sleep_time;
9519 Boolean dequeue;
9520 {
9521 static EventRecord er_buf = {nullEvent};
9522 UInt32 target_tick, current_tick;
9523 EventMask event_mask;
9524
9525 if (mouse_region == NULL)
9526 mouse_region = NewRgn ();
9527
9528 event_mask = everyEvent;
9529 if (!mac_ready_for_apple_events)
9530 event_mask -= highLevelEventMask;
9531
9532 current_tick = TickCount ();
9533 target_tick = current_tick + sleep_time;
9534
9535 if (er_buf.what == nullEvent)
9536 while (!WaitNextEvent (event_mask, &er_buf,
9537 target_tick - current_tick, mouse_region))
9538 {
9539 current_tick = TickCount ();
9540 if (target_tick <= current_tick)
9541 return false;
9542 }
9543
9544 *er = er_buf;
9545 if (dequeue)
9546 er_buf.what = nullEvent;
9547 return true;
9548 }
9549 #endif /* not USE_CARBON_EVENTS */
9550
9551 /* Emacs calls this whenever it wants to read an input event from the
9552 user. */
9553 int
9554 XTread_socket (sd, expected, hold_quit)
9555 int sd, expected;
9556 struct input_event *hold_quit;
9557 {
9558 struct input_event inev;
9559 int count = 0;
9560 #if USE_CARBON_EVENTS
9561 EventRef eventRef;
9562 EventTargetRef toolbox_dispatcher;
9563 #endif
9564 EventRecord er;
9565 struct mac_display_info *dpyinfo = &one_mac_display_info;
9566
9567 if (interrupt_input_blocked)
9568 {
9569 interrupt_input_pending = 1;
9570 return -1;
9571 }
9572
9573 interrupt_input_pending = 0;
9574 BLOCK_INPUT;
9575
9576 /* So people can tell when we have read the available input. */
9577 input_signal_count++;
9578
9579 #if USE_CARBON_EVENTS
9580 toolbox_dispatcher = GetEventDispatcherTarget ();
9581
9582 while (!ReceiveNextEvent (0, NULL, kEventDurationNoWait,
9583 kEventRemoveFromQueue, &eventRef))
9584 #else /* !USE_CARBON_EVENTS */
9585 while (mac_wait_next_event (&er, 0, true))
9586 #endif /* !USE_CARBON_EVENTS */
9587 {
9588 int do_help = 0;
9589 struct frame *f;
9590 unsigned long timestamp;
9591
9592 /* It is necessary to set this (additional) argument slot of an
9593 event to nil because keyboard.c protects incompletely
9594 processed event from being garbage collected by placing them
9595 in the kbd_buffer_gcpro vector. */
9596 EVENT_INIT (inev);
9597 inev.kind = NO_EVENT;
9598 inev.arg = Qnil;
9599
9600 #if USE_CARBON_EVENTS
9601 timestamp = GetEventTime (eventRef) / kEventDurationMillisecond;
9602 #else
9603 timestamp = er.when * (1000 / 60); /* ticks to milliseconds */
9604 #endif
9605
9606 #if USE_CARBON_EVENTS
9607 /* Handle new events */
9608 if (!mac_convert_event_ref (eventRef, &er))
9609 {
9610 /* There used to be a handler for the kEventMouseWheelMoved
9611 event here. But as of Mac OS X 10.4, this kind of event
9612 is not directly posted to the main event queue by
9613 two-finger scrolling on the trackpad. Instead, some
9614 private event is posted and it is converted to a wheel
9615 event by the default handler for the application target.
9616 The converted one can be received by a Carbon event
9617 handler installed on a window target. */
9618 read_socket_inev = &inev;
9619 SendEventToEventTarget (eventRef, toolbox_dispatcher);
9620 read_socket_inev = NULL;
9621 }
9622 else
9623 #endif /* USE_CARBON_EVENTS */
9624 switch (er.what)
9625 {
9626 case mouseDown:
9627 case mouseUp:
9628 {
9629 WindowPtr window_ptr;
9630 ControlPartCode part_code;
9631 int tool_bar_p = 0;
9632
9633 #if USE_CARBON_EVENTS
9634 /* This is needed to send mouse events like aqua window
9635 buttons to the correct handler. */
9636 if (SendEventToEventTarget (eventRef, toolbox_dispatcher)
9637 != eventNotHandledErr)
9638 break;
9639 #endif
9640 last_mouse_glyph_frame = 0;
9641
9642 if (dpyinfo->grabbed && last_mouse_frame
9643 && FRAME_LIVE_P (last_mouse_frame))
9644 {
9645 window_ptr = FRAME_MAC_WINDOW (last_mouse_frame);
9646 part_code = inContent;
9647 }
9648 else
9649 {
9650 part_code = FindWindow (er.where, &window_ptr);
9651 if (tip_window && window_ptr == tip_window)
9652 {
9653 HideWindow (tip_window);
9654 part_code = FindWindow (er.where, &window_ptr);
9655 }
9656 }
9657
9658 if (er.what != mouseDown &&
9659 (part_code != inContent || dpyinfo->grabbed == 0))
9660 break;
9661
9662 switch (part_code)
9663 {
9664 case inMenuBar:
9665 f = mac_focus_frame (dpyinfo);
9666 saved_menu_event_location = er.where;
9667 inev.kind = MENU_BAR_ACTIVATE_EVENT;
9668 XSETFRAME (inev.frame_or_window, f);
9669 break;
9670
9671 case inContent:
9672 if (window_ptr != FRAME_MAC_WINDOW (mac_focus_frame (dpyinfo)))
9673 SelectWindow (window_ptr);
9674 else
9675 {
9676 ControlPartCode control_part_code;
9677 ControlHandle ch;
9678 Point mouse_loc = er.where;
9679 #ifdef MAC_OSX
9680 ControlKind control_kind;
9681 #endif
9682
9683 f = mac_window_to_frame (window_ptr);
9684 /* convert to local coordinates of new window */
9685 SetPortWindowPort (window_ptr);
9686
9687 GlobalToLocal (&mouse_loc);
9688 #if TARGET_API_MAC_CARBON
9689 ch = FindControlUnderMouse (mouse_loc, window_ptr,
9690 &control_part_code);
9691 #ifdef MAC_OSX
9692 if (ch)
9693 GetControlKind (ch, &control_kind);
9694 #endif
9695 #else
9696 control_part_code = FindControl (mouse_loc, window_ptr,
9697 &ch);
9698 #endif
9699
9700 #if USE_CARBON_EVENTS
9701 inev.code = mac_get_mouse_btn (eventRef);
9702 inev.modifiers = mac_event_to_emacs_modifiers (eventRef);
9703 #else
9704 inev.code = mac_get_emulated_btn (er.modifiers);
9705 inev.modifiers = mac_to_emacs_modifiers (er.modifiers);
9706 #endif
9707 XSETINT (inev.x, mouse_loc.h);
9708 XSETINT (inev.y, mouse_loc.v);
9709
9710 if (dpyinfo->grabbed && tracked_scroll_bar
9711 || ch != 0
9712 #ifndef USE_TOOLKIT_SCROLL_BARS
9713 /* control_part_code becomes kControlNoPart if
9714 a progress indicator is clicked. */
9715 && control_part_code != kControlNoPart
9716 #else /* USE_TOOLKIT_SCROLL_BARS */
9717 #ifdef MAC_OSX
9718 && control_kind.kind == kControlKindScrollBar
9719 #endif /* MAC_OSX */
9720 #endif /* USE_TOOLKIT_SCROLL_BARS */
9721 )
9722 {
9723 struct scroll_bar *bar;
9724
9725 if (dpyinfo->grabbed && tracked_scroll_bar)
9726 {
9727 bar = tracked_scroll_bar;
9728 #ifndef USE_TOOLKIT_SCROLL_BARS
9729 control_part_code = kControlIndicatorPart;
9730 #endif
9731 }
9732 else
9733 bar = (struct scroll_bar *) GetControlReference (ch);
9734 #ifdef USE_TOOLKIT_SCROLL_BARS
9735 /* Make the "Ctrl-Mouse-2 splits window" work
9736 for toolkit scroll bars. */
9737 if (er.modifiers & controlKey)
9738 x_scroll_bar_handle_click (bar, control_part_code,
9739 &er, &inev);
9740 else if (er.what == mouseDown)
9741 x_scroll_bar_handle_press (bar, control_part_code,
9742 &inev);
9743 else
9744 x_scroll_bar_handle_release (bar, &inev);
9745 #else /* not USE_TOOLKIT_SCROLL_BARS */
9746 x_scroll_bar_handle_click (bar, control_part_code,
9747 &er, &inev);
9748 if (er.what == mouseDown
9749 && control_part_code == kControlIndicatorPart)
9750 tracked_scroll_bar = bar;
9751 else
9752 tracked_scroll_bar = NULL;
9753 #endif /* not USE_TOOLKIT_SCROLL_BARS */
9754 }
9755 else
9756 {
9757 Lisp_Object window;
9758 int x = mouse_loc.h;
9759 int y = mouse_loc.v;
9760
9761 window = window_from_coordinates (f, x, y, 0, 0, 0, 1);
9762 if (EQ (window, f->tool_bar_window))
9763 {
9764 if (er.what == mouseDown)
9765 handle_tool_bar_click (f, x, y, 1, 0);
9766 else
9767 handle_tool_bar_click (f, x, y, 0,
9768 inev.modifiers);
9769 tool_bar_p = 1;
9770 }
9771 else
9772 {
9773 XSETFRAME (inev.frame_or_window, f);
9774 inev.kind = MOUSE_CLICK_EVENT;
9775 }
9776 }
9777
9778 if (er.what == mouseDown)
9779 {
9780 dpyinfo->grabbed |= (1 << inev.code);
9781 last_mouse_frame = f;
9782
9783 if (!tool_bar_p)
9784 last_tool_bar_item = -1;
9785 }
9786 else
9787 {
9788 if ((dpyinfo->grabbed & (1 << inev.code)) == 0)
9789 /* If a button is released though it was not
9790 previously pressed, that would be because
9791 of multi-button emulation. */
9792 dpyinfo->grabbed = 0;
9793 else
9794 dpyinfo->grabbed &= ~(1 << inev.code);
9795 }
9796
9797 /* Ignore any mouse motion that happened before
9798 this event; any subsequent mouse-movement Emacs
9799 events should reflect only motion after the
9800 ButtonPress. */
9801 if (f != 0)
9802 f->mouse_moved = 0;
9803
9804 #ifdef USE_TOOLKIT_SCROLL_BARS
9805 if (inev.kind == MOUSE_CLICK_EVENT)
9806 #endif
9807 switch (er.what)
9808 {
9809 case mouseDown:
9810 inev.modifiers |= down_modifier;
9811 break;
9812 case mouseUp:
9813 inev.modifiers |= up_modifier;
9814 break;
9815 }
9816 }
9817 break;
9818
9819 case inDrag:
9820 #if TARGET_API_MAC_CARBON
9821 DragWindow (window_ptr, er.where, NULL);
9822 #else /* not TARGET_API_MAC_CARBON */
9823 DragWindow (window_ptr, er.where, &qd.screenBits.bounds);
9824 #endif /* not TARGET_API_MAC_CARBON */
9825 /* Update the frame parameters. */
9826 {
9827 struct frame *f = mac_window_to_frame (window_ptr);
9828
9829 if (f && !f->async_iconified)
9830 x_real_positions (f, &f->left_pos, &f->top_pos);
9831 }
9832 break;
9833
9834 case inGoAway:
9835 if (TrackGoAway (window_ptr, er.where))
9836 {
9837 inev.kind = DELETE_WINDOW_EVENT;
9838 XSETFRAME (inev.frame_or_window,
9839 mac_window_to_frame (window_ptr));
9840 }
9841 break;
9842
9843 /* window resize handling added --ben */
9844 case inGrow:
9845 do_grow_window (window_ptr, &er);
9846 break;
9847
9848 /* window zoom handling added --ben */
9849 case inZoomIn:
9850 case inZoomOut:
9851 if (TrackBox (window_ptr, er.where, part_code))
9852 do_zoom_window (window_ptr, part_code);
9853 break;
9854
9855 default:
9856 break;
9857 }
9858 }
9859 break;
9860
9861 case updateEvt:
9862 #if USE_CARBON_EVENTS
9863 if (SendEventToEventTarget (eventRef, toolbox_dispatcher)
9864 != eventNotHandledErr)
9865 break;
9866 #else
9867 do_window_update ((WindowPtr) er.message);
9868 #endif
9869 break;
9870
9871 case osEvt:
9872 #if USE_CARBON_EVENTS
9873 if (SendEventToEventTarget (eventRef, toolbox_dispatcher)
9874 != eventNotHandledErr)
9875 break;
9876 #endif
9877 switch ((er.message >> 24) & 0x000000FF)
9878 {
9879 case suspendResumeMessage:
9880 if ((er.message & resumeFlag) == 1)
9881 do_app_resume ();
9882 else
9883 do_app_suspend ();
9884 break;
9885
9886 case mouseMovedMessage:
9887 #if !USE_CARBON_EVENTS
9888 SetRectRgn (mouse_region, er.where.h, er.where.v,
9889 er.where.h + 1, er.where.v + 1);
9890 #endif
9891 previous_help_echo_string = help_echo_string;
9892 help_echo_string = Qnil;
9893
9894 if (dpyinfo->grabbed && last_mouse_frame
9895 && FRAME_LIVE_P (last_mouse_frame))
9896 f = last_mouse_frame;
9897 else
9898 f = dpyinfo->x_focus_frame;
9899
9900 if (dpyinfo->mouse_face_hidden)
9901 {
9902 dpyinfo->mouse_face_hidden = 0;
9903 clear_mouse_face (dpyinfo);
9904 }
9905
9906 if (f)
9907 {
9908 WindowPtr wp = FRAME_MAC_WINDOW (f);
9909 Point mouse_pos = er.where;
9910
9911 SetPortWindowPort (wp);
9912
9913 GlobalToLocal (&mouse_pos);
9914
9915 if (dpyinfo->grabbed && tracked_scroll_bar)
9916 #ifdef USE_TOOLKIT_SCROLL_BARS
9917 x_scroll_bar_handle_drag (wp, tracked_scroll_bar,
9918 mouse_pos, &inev);
9919 #else /* not USE_TOOLKIT_SCROLL_BARS */
9920 x_scroll_bar_note_movement (tracked_scroll_bar,
9921 mouse_pos.v
9922 - XINT (tracked_scroll_bar->top),
9923 er.when * (1000 / 60));
9924 #endif /* not USE_TOOLKIT_SCROLL_BARS */
9925 else
9926 {
9927 /* Generate SELECT_WINDOW_EVENTs when needed. */
9928 if (mouse_autoselect_window)
9929 {
9930 Lisp_Object window;
9931
9932 window = window_from_coordinates (f,
9933 mouse_pos.h,
9934 mouse_pos.v,
9935 0, 0, 0, 0);
9936
9937 /* Window will be selected only when it is
9938 not selected now and last mouse movement
9939 event was not in it. Minibuffer window
9940 will be selected iff it is active. */
9941 if (WINDOWP (window)
9942 && !EQ (window, last_window)
9943 && !EQ (window, selected_window))
9944 {
9945 inev.kind = SELECT_WINDOW_EVENT;
9946 inev.frame_or_window = window;
9947 }
9948
9949 last_window=window;
9950 }
9951 if (!note_mouse_movement (f, &mouse_pos))
9952 help_echo_string = previous_help_echo_string;
9953 }
9954 }
9955
9956 /* If the contents of the global variable
9957 help_echo_string has changed, generate a
9958 HELP_EVENT. */
9959 if (!NILP (help_echo_string) || !NILP (previous_help_echo_string))
9960 do_help = 1;
9961 break;
9962 }
9963 break;
9964
9965 case activateEvt:
9966 {
9967 WindowPtr window_ptr = (WindowPtr) er.message;
9968
9969 #if USE_CARBON_EVENTS
9970 if (SendEventToEventTarget (eventRef, toolbox_dispatcher)
9971 != eventNotHandledErr)
9972 break;
9973 #endif
9974 if (window_ptr == tip_window)
9975 {
9976 HideWindow (tip_window);
9977 break;
9978 }
9979
9980 if (!is_emacs_window (window_ptr))
9981 break;
9982
9983 if ((er.modifiers & activeFlag) != 0)
9984 {
9985 /* A window has been activated */
9986 Point mouse_loc = er.where;
9987
9988 x_detect_focus_change (dpyinfo, &er, &inev);
9989
9990 SetPortWindowPort (window_ptr);
9991 GlobalToLocal (&mouse_loc);
9992 /* Window-activated event counts as mouse movement,
9993 so update things that depend on mouse position. */
9994 note_mouse_movement (mac_window_to_frame (window_ptr),
9995 &mouse_loc);
9996 }
9997 else
9998 {
9999 /* A window has been deactivated */
10000 #if USE_TOOLKIT_SCROLL_BARS
10001 if (dpyinfo->grabbed && tracked_scroll_bar)
10002 {
10003 struct input_event event;
10004
10005 EVENT_INIT (event);
10006 event.kind = NO_EVENT;
10007 x_scroll_bar_handle_release (tracked_scroll_bar, &event);
10008 if (event.kind != NO_EVENT)
10009 {
10010 event.timestamp = timestamp;
10011 kbd_buffer_store_event_hold (&event, hold_quit);
10012 count++;
10013 }
10014 }
10015 #endif
10016 dpyinfo->grabbed = 0;
10017
10018 x_detect_focus_change (dpyinfo, &er, &inev);
10019
10020 f = mac_window_to_frame (window_ptr);
10021 if (f == dpyinfo->mouse_face_mouse_frame)
10022 {
10023 /* If we move outside the frame, then we're
10024 certainly no longer on any text in the
10025 frame. */
10026 clear_mouse_face (dpyinfo);
10027 dpyinfo->mouse_face_mouse_frame = 0;
10028 }
10029
10030 /* Generate a nil HELP_EVENT to cancel a help-echo.
10031 Do it only if there's something to cancel.
10032 Otherwise, the startup message is cleared when the
10033 mouse leaves the frame. */
10034 if (any_help_event_p)
10035 do_help = -1;
10036 }
10037 }
10038 break;
10039
10040 case keyDown:
10041 case autoKey:
10042 {
10043 int keycode = (er.message & keyCodeMask) >> 8;
10044 int xkeysym;
10045
10046 #if USE_CARBON_EVENTS && defined (MAC_OSX)
10047 /* When using Carbon Events, we need to pass raw keyboard
10048 events to the TSM ourselves. If TSM handles it, it
10049 will pass back noErr, otherwise it will pass back
10050 "eventNotHandledErr" and we can process it
10051 normally. */
10052 if ((mac_pass_command_to_system
10053 || !(er.modifiers & cmdKey))
10054 && (mac_pass_control_to_system
10055 || !(er.modifiers & controlKey))
10056 && (NILP (Vmac_option_modifier)
10057 || !(er.modifiers & optionKey)))
10058 if (SendEventToEventTarget (eventRef, toolbox_dispatcher)
10059 != eventNotHandledErr)
10060 break;
10061 #endif
10062
10063 #if 0
10064 if (dpyinfo->x_focus_frame == NULL)
10065 {
10066 /* Beep if keyboard input occurs when all the frames
10067 are invisible. */
10068 SysBeep (1);
10069 break;
10070 }
10071 #endif
10072
10073 {
10074 static SInt16 last_key_script = -1;
10075 SInt16 current_key_script = GetScriptManagerVariable (smKeyScript);
10076
10077 if (last_key_script != current_key_script)
10078 {
10079 struct input_event event;
10080
10081 EVENT_INIT (event);
10082 event.kind = LANGUAGE_CHANGE_EVENT;
10083 event.arg = Qnil;
10084 event.code = current_key_script;
10085 event.timestamp = timestamp;
10086 kbd_buffer_store_event (&event);
10087 count++;
10088 }
10089 last_key_script = current_key_script;
10090 }
10091
10092 ObscureCursor ();
10093
10094 if (!dpyinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight))
10095 {
10096 clear_mouse_face (dpyinfo);
10097 dpyinfo->mouse_face_hidden = 1;
10098 }
10099
10100 /* translate the keycode back to determine the original key */
10101 /* Convert key code if function key is pressed.
10102 Otherwise, if non-ASCII-event, take care of that
10103 without re-translating the key code. */
10104 #if USE_CARBON_EVENTS
10105 if (convert_fn_keycode (eventRef, keycode, &xkeysym))
10106 {
10107 inev.code = xkeysym;
10108 /* this doesn't work - tried to add shift modifiers */
10109 inev.code =
10110 backtranslate_modified_keycode(er.modifiers & (~0x2200),
10111 xkeysym | 0x80, xkeysym);
10112 inev.kind = ASCII_KEYSTROKE_EVENT;
10113 }
10114 else
10115 #endif
10116 if (keycode_to_xkeysym (keycode, &xkeysym))
10117 {
10118 inev.code = 0xff00 | xkeysym;
10119 inev.kind = NON_ASCII_KEYSTROKE_EVENT;
10120 }
10121 else
10122 {
10123 inev.code =
10124 backtranslate_modified_keycode(er.modifiers, keycode,
10125 er.message & charCodeMask);
10126 inev.kind = ASCII_KEYSTROKE_EVENT;
10127 }
10128 }
10129
10130 #if USE_CARBON_EVENTS
10131 inev.modifiers = mac_event_to_emacs_modifiers (eventRef);
10132 #else
10133 inev.modifiers = mac_to_emacs_modifiers (er.modifiers);
10134 #endif
10135 inev.modifiers |= (extra_keyboard_modifiers
10136 & (meta_modifier | alt_modifier
10137 | hyper_modifier | super_modifier));
10138 XSETFRAME (inev.frame_or_window, mac_focus_frame (dpyinfo));
10139 break;
10140
10141 case kHighLevelEvent:
10142 read_socket_inev = &inev;
10143 AEProcessAppleEvent (&er);
10144 read_socket_inev = NULL;
10145 break;
10146
10147 default:
10148 break;
10149 }
10150 #if USE_CARBON_EVENTS
10151 ReleaseEvent (eventRef);
10152 #endif
10153
10154 if (inev.kind != NO_EVENT)
10155 {
10156 inev.timestamp = timestamp;
10157 kbd_buffer_store_event_hold (&inev, hold_quit);
10158 count++;
10159 }
10160
10161 if (do_help
10162 && !(hold_quit && hold_quit->kind != NO_EVENT))
10163 {
10164 Lisp_Object frame;
10165
10166 if (f)
10167 XSETFRAME (frame, f);
10168 else
10169 frame = Qnil;
10170
10171 if (do_help > 0)
10172 {
10173 any_help_event_p = 1;
10174 gen_help_event (help_echo_string, frame, help_echo_window,
10175 help_echo_object, help_echo_pos);
10176 }
10177 else
10178 {
10179 help_echo_string = Qnil;
10180 gen_help_event (Qnil, frame, Qnil, Qnil, 0);
10181 }
10182 count++;
10183 }
10184
10185 }
10186
10187 /* If the focus was just given to an autoraising frame,
10188 raise it now. */
10189 /* ??? This ought to be able to handle more than one such frame. */
10190 if (pending_autoraise_frame)
10191 {
10192 x_raise_frame (pending_autoraise_frame);
10193 pending_autoraise_frame = 0;
10194 }
10195
10196 #if !USE_CARBON_EVENTS
10197 /* Check which frames are still visible. We do this here because
10198 there doesn't seem to be any direct notification from the Window
10199 Manager that the visibility of a window has changed (at least,
10200 not in all cases). */
10201 {
10202 Lisp_Object tail, frame;
10203
10204 FOR_EACH_FRAME (tail, frame)
10205 {
10206 struct frame *f = XFRAME (frame);
10207
10208 /* The tooltip has been drawn already. Avoid the
10209 SET_FRAME_GARBAGED in mac_handle_visibility_change. */
10210 if (EQ (frame, tip_frame))
10211 continue;
10212
10213 if (FRAME_MAC_P (f))
10214 mac_handle_visibility_change (f);
10215 }
10216 }
10217 #endif
10218
10219 UNBLOCK_INPUT;
10220 return count;
10221 }
10222
10223
10224 /* Need to override CodeWarrior's input function so no conversion is
10225 done on newlines Otherwise compiled functions in .elc files will be
10226 read incorrectly. Defined in ...:MSL C:MSL
10227 Common:Source:buffer_io.c. */
10228 #ifdef __MWERKS__
10229 void
10230 __convert_to_newlines (unsigned char * p, size_t * n)
10231 {
10232 #pragma unused(p,n)
10233 }
10234
10235 void
10236 __convert_from_newlines (unsigned char * p, size_t * n)
10237 {
10238 #pragma unused(p,n)
10239 }
10240 #endif
10241
10242 #ifdef MAC_OS8
10243 void
10244 make_mac_terminal_frame (struct frame *f)
10245 {
10246 Lisp_Object frame;
10247 Rect r;
10248
10249 XSETFRAME (frame, f);
10250
10251 f->output_method = output_mac;
10252 f->output_data.mac = (struct mac_output *)
10253 xmalloc (sizeof (struct mac_output));
10254 bzero (f->output_data.mac, sizeof (struct mac_output));
10255
10256 XSETFRAME (FRAME_KBOARD (f)->Vdefault_minibuffer_frame, f);
10257
10258 FRAME_COLS (f) = 96;
10259 FRAME_LINES (f) = 4;
10260
10261 FRAME_CAN_HAVE_SCROLL_BARS (f) = 1;
10262 FRAME_VERTICAL_SCROLL_BAR_TYPE (f) = vertical_scroll_bar_right;
10263
10264 FRAME_DESIRED_CURSOR (f) = FILLED_BOX_CURSOR;
10265
10266 f->output_data.mac->cursor_pixel = 0;
10267 f->output_data.mac->border_pixel = 0x00ff00;
10268 f->output_data.mac->mouse_pixel = 0xff00ff;
10269 f->output_data.mac->cursor_foreground_pixel = 0x0000ff;
10270
10271 f->output_data.mac->text_cursor = kThemeIBeamCursor;
10272 f->output_data.mac->nontext_cursor = kThemeArrowCursor;
10273 f->output_data.mac->modeline_cursor = kThemeArrowCursor;
10274 f->output_data.mac->hand_cursor = kThemePointingHandCursor;
10275 f->output_data.mac->hourglass_cursor = kThemeWatchCursor;
10276 f->output_data.mac->horizontal_drag_cursor = kThemeResizeLeftRightCursor;
10277
10278 FRAME_FONTSET (f) = -1;
10279 f->output_data.mac->explicit_parent = 0;
10280 f->left_pos = 8;
10281 f->top_pos = 32;
10282 f->border_width = 0;
10283
10284 f->internal_border_width = 0;
10285
10286 f->auto_raise = 1;
10287 f->auto_lower = 1;
10288
10289 f->new_text_cols = 0;
10290 f->new_text_lines = 0;
10291
10292 SetRect (&r, f->left_pos, f->top_pos,
10293 f->left_pos + FRAME_PIXEL_WIDTH (f),
10294 f->top_pos + FRAME_PIXEL_HEIGHT (f));
10295
10296 BLOCK_INPUT;
10297
10298 if (!(FRAME_MAC_WINDOW (f) =
10299 NewCWindow (NULL, &r, "\p", true, dBoxProc,
10300 (WindowPtr) -1, 1, (long) f->output_data.mac)))
10301 abort ();
10302 /* so that update events can find this mac_output struct */
10303 f->output_data.mac->mFP = f; /* point back to emacs frame */
10304
10305 UNBLOCK_INPUT;
10306
10307 x_make_gc (f);
10308
10309 /* Need to be initialized for unshow_buffer in window.c. */
10310 selected_window = f->selected_window;
10311
10312 Fmodify_frame_parameters (frame,
10313 Fcons (Fcons (Qfont,
10314 build_string ("-*-monaco-medium-r-*--*-90-*-*-*-*-mac-roman")), Qnil));
10315 Fmodify_frame_parameters (frame,
10316 Fcons (Fcons (Qforeground_color,
10317 build_string ("black")), Qnil));
10318 Fmodify_frame_parameters (frame,
10319 Fcons (Fcons (Qbackground_color,
10320 build_string ("white")), Qnil));
10321 }
10322 #endif
10323
10324 \f
10325 /***********************************************************************
10326 Initialization
10327 ***********************************************************************/
10328
10329 int mac_initialized = 0;
10330
10331 void
10332 mac_initialize_display_info ()
10333 {
10334 struct mac_display_info *dpyinfo = &one_mac_display_info;
10335 GDHandle main_device_handle;
10336
10337 bzero (dpyinfo, sizeof (*dpyinfo));
10338
10339 #ifdef MAC_OSX
10340 dpyinfo->mac_id_name
10341 = (char *) xmalloc (SCHARS (Vinvocation_name)
10342 + SCHARS (Vsystem_name)
10343 + 2);
10344 sprintf (dpyinfo->mac_id_name, "%s@%s",
10345 SDATA (Vinvocation_name), SDATA (Vsystem_name));
10346 #else
10347 dpyinfo->mac_id_name = (char *) xmalloc (strlen ("Mac Display") + 1);
10348 strcpy (dpyinfo->mac_id_name, "Mac Display");
10349 #endif
10350
10351 main_device_handle = LMGetMainDevice();
10352
10353 dpyinfo->reference_count = 0;
10354 dpyinfo->resx = 72.0;
10355 dpyinfo->resy = 72.0;
10356 dpyinfo->color_p = TestDeviceAttribute (main_device_handle, gdDevType);
10357 #ifdef MAC_OSX
10358 /* HasDepth returns true if it is possible to have a 32 bit display,
10359 but this may not be what is actually used. Mac OSX can do better.
10360 CGMainDisplayID is only available on OSX 10.2 and higher, but the
10361 header for CGGetActiveDisplayList says that the first display returned
10362 is the active one, so we use that. */
10363 {
10364 CGDirectDisplayID disp_id[1];
10365 CGDisplayCount disp_count;
10366 CGDisplayErr error_code;
10367
10368 error_code = CGGetActiveDisplayList (1, disp_id, &disp_count);
10369 if (error_code != 0)
10370 error ("No display found, CGGetActiveDisplayList error %d", error_code);
10371
10372 dpyinfo->n_planes = CGDisplayBitsPerPixel (disp_id[0]);
10373 }
10374 #else
10375 for (dpyinfo->n_planes = 32; dpyinfo->n_planes > 0; dpyinfo->n_planes >>= 1)
10376 if (HasDepth (main_device_handle, dpyinfo->n_planes,
10377 gdDevType, dpyinfo->color_p))
10378 break;
10379 #endif
10380 dpyinfo->height = (**main_device_handle).gdRect.bottom;
10381 dpyinfo->width = (**main_device_handle).gdRect.right;
10382 dpyinfo->grabbed = 0;
10383 dpyinfo->root_window = NULL;
10384 dpyinfo->image_cache = make_image_cache ();
10385
10386 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
10387 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
10388 dpyinfo->mouse_face_face_id = DEFAULT_FACE_ID;
10389 dpyinfo->mouse_face_window = Qnil;
10390 dpyinfo->mouse_face_overlay = Qnil;
10391 dpyinfo->mouse_face_hidden = 0;
10392 }
10393
10394
10395 static XrmDatabase
10396 mac_make_rdb (xrm_option)
10397 char *xrm_option;
10398 {
10399 XrmDatabase database;
10400
10401 database = xrm_get_preference_database (NULL);
10402 if (xrm_option)
10403 xrm_merge_string_database (database, xrm_option);
10404
10405 return database;
10406 }
10407
10408 struct mac_display_info *
10409 mac_term_init (display_name, xrm_option, resource_name)
10410 Lisp_Object display_name;
10411 char *xrm_option;
10412 char *resource_name;
10413 {
10414 struct mac_display_info *dpyinfo;
10415
10416 BLOCK_INPUT;
10417
10418 if (!mac_initialized)
10419 {
10420 mac_initialize ();
10421 mac_initialized = 1;
10422 }
10423
10424 if (x_display_list)
10425 error ("Sorry, this version can only handle one display");
10426
10427 mac_initialize_display_info ();
10428
10429 dpyinfo = &one_mac_display_info;
10430
10431 dpyinfo->xrdb = mac_make_rdb (xrm_option);
10432
10433 /* Put this display on the chain. */
10434 dpyinfo->next = x_display_list;
10435 x_display_list = dpyinfo;
10436
10437 /* Put it on x_display_name_list. */
10438 x_display_name_list = Fcons (Fcons (display_name,
10439 Fcons (Qnil, dpyinfo->xrdb)),
10440 x_display_name_list);
10441 dpyinfo->name_list_element = XCAR (x_display_name_list);
10442
10443 UNBLOCK_INPUT;
10444
10445 return dpyinfo;
10446 }
10447 /* Get rid of display DPYINFO, assuming all frames are already gone. */
10448
10449 void
10450 x_delete_display (dpyinfo)
10451 struct mac_display_info *dpyinfo;
10452 {
10453 int i;
10454
10455 /* Discard this display from x_display_name_list and x_display_list.
10456 We can't use Fdelq because that can quit. */
10457 if (! NILP (x_display_name_list)
10458 && EQ (XCAR (x_display_name_list), dpyinfo->name_list_element))
10459 x_display_name_list = XCDR (x_display_name_list);
10460 else
10461 {
10462 Lisp_Object tail;
10463
10464 tail = x_display_name_list;
10465 while (CONSP (tail) && CONSP (XCDR (tail)))
10466 {
10467 if (EQ (XCAR (XCDR (tail)), dpyinfo->name_list_element))
10468 {
10469 XSETCDR (tail, XCDR (XCDR (tail)));
10470 break;
10471 }
10472 tail = XCDR (tail);
10473 }
10474 }
10475
10476 if (x_display_list == dpyinfo)
10477 x_display_list = dpyinfo->next;
10478 else
10479 {
10480 struct x_display_info *tail;
10481
10482 for (tail = x_display_list; tail; tail = tail->next)
10483 if (tail->next == dpyinfo)
10484 tail->next = tail->next->next;
10485 }
10486
10487 /* Free the font names in the font table. */
10488 for (i = 0; i < dpyinfo->n_fonts; i++)
10489 if (dpyinfo->font_table[i].name)
10490 {
10491 if (dpyinfo->font_table[i].name != dpyinfo->font_table[i].full_name)
10492 xfree (dpyinfo->font_table[i].full_name);
10493 xfree (dpyinfo->font_table[i].name);
10494 }
10495
10496 if (dpyinfo->font_table->font_encoder)
10497 xfree (dpyinfo->font_table->font_encoder);
10498
10499 xfree (dpyinfo->font_table);
10500 xfree (dpyinfo->mac_id_name);
10501
10502 if (x_display_list == 0)
10503 {
10504 mac_clear_font_name_table ();
10505 bzero (dpyinfo, sizeof (*dpyinfo));
10506 }
10507 }
10508
10509 \f
10510 #ifdef MAC_OSX
10511 void
10512 mac_check_bundle()
10513 {
10514 extern int inhibit_window_system;
10515 extern int noninteractive;
10516 CFBundleRef appsBundle;
10517 pid_t child;
10518
10519 /* No need to test if already -nw*/
10520 if (inhibit_window_system || noninteractive)
10521 return;
10522
10523 appsBundle = CFBundleGetMainBundle();
10524 if (appsBundle != NULL)
10525 {
10526 CFStringRef cfBI = CFSTR("CFBundleIdentifier");
10527 CFTypeRef res = CFBundleGetValueForInfoDictionaryKey(appsBundle, cfBI);
10528 /* We found the bundle identifier, now we know we are valid. */
10529 if (res != NULL)
10530 {
10531 CFRelease(res);
10532 return;
10533 }
10534 }
10535 /* MAC_TODO: Have this start the bundled executable */
10536
10537 /* For now, prevent the fatal error by bringing it up in the terminal */
10538 inhibit_window_system = 1;
10539 }
10540
10541 void
10542 MakeMeTheFrontProcess ()
10543 {
10544 ProcessSerialNumber psn;
10545 OSErr err;
10546
10547 err = GetCurrentProcess (&psn);
10548 if (err == noErr)
10549 (void) SetFrontProcess (&psn);
10550 }
10551
10552 /***** Code to handle C-g testing *****/
10553
10554 /* Contains the Mac modifier formed from quit_char */
10555 int mac_quit_char_modifiers = 0;
10556 int mac_quit_char_keycode;
10557 extern int quit_char;
10558
10559 static void
10560 mac_determine_quit_char_modifiers()
10561 {
10562 /* Todo: Determine modifiers from quit_char. */
10563 UInt32 qc_modifiers = ctrl_modifier;
10564
10565 /* Map modifiers */
10566 mac_quit_char_modifiers = 0;
10567 if (qc_modifiers & ctrl_modifier) mac_quit_char_modifiers |= controlKey;
10568 if (qc_modifiers & shift_modifier) mac_quit_char_modifiers |= shiftKey;
10569 if (qc_modifiers & alt_modifier) mac_quit_char_modifiers |= optionKey;
10570 }
10571
10572 static void
10573 init_quit_char_handler ()
10574 {
10575 /* TODO: Let this support keys other the 'g' */
10576 mac_quit_char_keycode = 5;
10577 /* Look at <architecture/adb_kb_map.h> for details */
10578 /* http://gemma.apple.com/techpubs/mac/Toolbox/Toolbox-40.html#MARKER-9-184*/
10579
10580 mac_determine_quit_char_modifiers();
10581 }
10582 #endif /* MAC_OSX */
10583
10584 static void
10585 init_menu_bar ()
10586 {
10587 #ifdef MAC_OSX
10588 OSErr err;
10589 MenuRef menu;
10590 MenuItemIndex menu_index;
10591
10592 err = GetIndMenuItemWithCommandID (NULL, kHICommandQuit, 1,
10593 &menu, &menu_index);
10594 if (err == noErr)
10595 SetMenuItemCommandKey (menu, menu_index, false, 0);
10596 #if USE_CARBON_EVENTS
10597 EnableMenuCommand (NULL, kHICommandPreferences);
10598 err = GetIndMenuItemWithCommandID (NULL, kHICommandPreferences, 1,
10599 &menu, &menu_index);
10600 if (err == noErr)
10601 {
10602 SetMenuItemCommandKey (menu, menu_index, false, 0);
10603 InsertMenuItemTextWithCFString (menu, NULL,
10604 0, kMenuItemAttrSeparator, 0);
10605 InsertMenuItemTextWithCFString (menu, CFSTR ("About Emacs"),
10606 0, 0, kHICommandAbout);
10607 }
10608 #endif /* USE_CARBON_EVENTS */
10609 #else /* !MAC_OSX */
10610 #if USE_CARBON_EVENTS
10611 SetMenuItemCommandID (GetMenuHandle (M_APPLE), I_ABOUT, kHICommandAbout);
10612 #endif
10613 #endif
10614 }
10615
10616
10617 /* Set up use of X before we make the first connection. */
10618
10619 extern frame_parm_handler mac_frame_parm_handlers[];
10620
10621 static struct redisplay_interface x_redisplay_interface =
10622 {
10623 mac_frame_parm_handlers,
10624 x_produce_glyphs,
10625 x_write_glyphs,
10626 x_insert_glyphs,
10627 x_clear_end_of_line,
10628 x_scroll_run,
10629 x_after_update_window_line,
10630 x_update_window_begin,
10631 x_update_window_end,
10632 x_cursor_to,
10633 x_flush,
10634 0, /* flush_display_optional */
10635 x_clear_window_mouse_face,
10636 x_get_glyph_overhangs,
10637 x_fix_overlapping_area,
10638 x_draw_fringe_bitmap,
10639 0, /* define_fringe_bitmap */
10640 0, /* destroy_fringe_bitmap */
10641 mac_per_char_metric,
10642 mac_encode_char,
10643 mac_compute_glyph_string_overhangs,
10644 x_draw_glyph_string,
10645 mac_define_frame_cursor,
10646 mac_clear_frame_area,
10647 mac_draw_window_cursor,
10648 mac_draw_vertical_window_border,
10649 mac_shift_glyphs_for_insert
10650 };
10651
10652 void
10653 mac_initialize ()
10654 {
10655 rif = &x_redisplay_interface;
10656
10657 clear_frame_hook = x_clear_frame;
10658 ins_del_lines_hook = x_ins_del_lines;
10659 delete_glyphs_hook = x_delete_glyphs;
10660 ring_bell_hook = XTring_bell;
10661 reset_terminal_modes_hook = XTreset_terminal_modes;
10662 set_terminal_modes_hook = XTset_terminal_modes;
10663 update_begin_hook = x_update_begin;
10664 update_end_hook = x_update_end;
10665 set_terminal_window_hook = XTset_terminal_window;
10666 read_socket_hook = XTread_socket;
10667 frame_up_to_date_hook = XTframe_up_to_date;
10668 mouse_position_hook = XTmouse_position;
10669 frame_rehighlight_hook = XTframe_rehighlight;
10670 frame_raise_lower_hook = XTframe_raise_lower;
10671
10672 set_vertical_scroll_bar_hook = XTset_vertical_scroll_bar;
10673 condemn_scroll_bars_hook = XTcondemn_scroll_bars;
10674 redeem_scroll_bar_hook = XTredeem_scroll_bar;
10675 judge_scroll_bars_hook = XTjudge_scroll_bars;
10676
10677 scroll_region_ok = 1; /* we'll scroll partial frames */
10678 char_ins_del_ok = 1;
10679 line_ins_del_ok = 1; /* we'll just blt 'em */
10680 fast_clear_end_of_line = 1; /* X does this well */
10681 memory_below_frame = 0; /* we don't remember what scrolls
10682 off the bottom */
10683 baud_rate = 19200;
10684
10685 last_tool_bar_item = -1;
10686 any_help_event_p = 0;
10687
10688 /* Try to use interrupt input; if we can't, then start polling. */
10689 Fset_input_mode (Qt, Qnil, Qt, Qnil);
10690
10691 BLOCK_INPUT;
10692
10693 #if TARGET_API_MAC_CARBON
10694
10695 #if USE_CARBON_EVENTS
10696 #ifdef MAC_OSX
10697 init_service_handler ();
10698
10699 init_quit_char_handler ();
10700 #endif /* MAC_OSX */
10701
10702 init_command_handler ();
10703
10704 init_menu_bar ();
10705 #endif /* USE_CARBON_EVENTS */
10706
10707 #ifdef MAC_OSX
10708 init_apple_event_handler ();
10709
10710 if (!inhibit_window_system)
10711 MakeMeTheFrontProcess ();
10712 #endif
10713 #endif
10714 UNBLOCK_INPUT;
10715 }
10716
10717
10718 void
10719 syms_of_macterm ()
10720 {
10721 #if 0
10722 staticpro (&x_error_message_string);
10723 x_error_message_string = Qnil;
10724 #endif
10725
10726 Qcontrol = intern ("control"); staticpro (&Qcontrol);
10727 Qmeta = intern ("meta"); staticpro (&Qmeta);
10728 Qalt = intern ("alt"); staticpro (&Qalt);
10729 Qhyper = intern ("hyper"); staticpro (&Qhyper);
10730 Qsuper = intern ("super"); staticpro (&Qsuper);
10731 Qmodifier_value = intern ("modifier-value");
10732 staticpro (&Qmodifier_value);
10733
10734 Fput (Qcontrol, Qmodifier_value, make_number (ctrl_modifier));
10735 Fput (Qmeta, Qmodifier_value, make_number (meta_modifier));
10736 Fput (Qalt, Qmodifier_value, make_number (alt_modifier));
10737 Fput (Qhyper, Qmodifier_value, make_number (hyper_modifier));
10738 Fput (Qsuper, Qmodifier_value, make_number (super_modifier));
10739
10740 #if USE_CARBON_EVENTS
10741 Qhicommand = intern ("hicommand"); staticpro (&Qhicommand);
10742 #ifdef MAC_OSX
10743 Qservices = intern ("services"); staticpro (&Qservices);
10744 Qpaste = intern ("paste"); staticpro (&Qpaste);
10745 Qperform = intern ("perform"); staticpro (&Qperform);
10746 #endif
10747 #endif
10748
10749 #ifdef MAC_OSX
10750 Fprovide (intern ("mac-carbon"), Qnil);
10751 #endif
10752
10753 staticpro (&Qreverse);
10754 Qreverse = intern ("reverse");
10755
10756 staticpro (&x_display_name_list);
10757 x_display_name_list = Qnil;
10758
10759 staticpro (&last_mouse_scroll_bar);
10760 last_mouse_scroll_bar = Qnil;
10761
10762 staticpro (&fm_font_family_alist);
10763 fm_font_family_alist = Qnil;
10764
10765 #if USE_ATSUI
10766 staticpro (&atsu_font_id_hash);
10767 atsu_font_id_hash = Qnil;
10768 #endif
10769
10770 /* We don't yet support this, but defining this here avoids whining
10771 from cus-start.el and other places, like "M-x set-variable". */
10772 DEFVAR_BOOL ("x-use-underline-position-properties",
10773 &x_use_underline_position_properties,
10774 doc: /* *Non-nil means make use of UNDERLINE_POSITION font properties.
10775 nil means ignore them. If you encounter fonts with bogus
10776 UNDERLINE_POSITION font properties, for example 7x13 on XFree prior
10777 to 4.1, set this to nil.
10778
10779 NOTE: Not supported on Mac yet. */);
10780 x_use_underline_position_properties = 0;
10781
10782 DEFVAR_LISP ("x-toolkit-scroll-bars", &Vx_toolkit_scroll_bars,
10783 doc: /* If not nil, Emacs uses toolkit scroll bars. */);
10784 #ifdef USE_TOOLKIT_SCROLL_BARS
10785 Vx_toolkit_scroll_bars = Qt;
10786 #else
10787 Vx_toolkit_scroll_bars = Qnil;
10788 #endif
10789
10790 staticpro (&last_mouse_motion_frame);
10791 last_mouse_motion_frame = Qnil;
10792
10793 /* Variables to configure modifier key assignment. */
10794
10795 DEFVAR_LISP ("mac-control-modifier", &Vmac_control_modifier,
10796 doc: /* *Modifier key assumed when the Mac control key is pressed.
10797 The value can be `control', `meta', `alt', `hyper', or `super' for the
10798 respective modifier. The default is `control'. */);
10799 Vmac_control_modifier = Qcontrol;
10800
10801 DEFVAR_LISP ("mac-option-modifier", &Vmac_option_modifier,
10802 doc: /* *Modifier key assumed when the Mac alt/option key is pressed.
10803 The value can be `control', `meta', `alt', `hyper', or `super' for the
10804 respective modifier. If the value is nil then the key will act as the
10805 normal Mac control modifier, and the option key can be used to compose
10806 characters depending on the chosen Mac keyboard setting. */);
10807 Vmac_option_modifier = Qnil;
10808
10809 DEFVAR_LISP ("mac-command-modifier", &Vmac_command_modifier,
10810 doc: /* *Modifier key assumed when the Mac command key is pressed.
10811 The value can be `control', `meta', `alt', `hyper', or `super' for the
10812 respective modifier. The default is `meta'. */);
10813 Vmac_command_modifier = Qmeta;
10814
10815 DEFVAR_LISP ("mac-function-modifier", &Vmac_function_modifier,
10816 doc: /* *Modifier key assumed when the Mac function key is pressed.
10817 The value can be `control', `meta', `alt', `hyper', or `super' for the
10818 respective modifier. Note that remapping the function key may lead to
10819 unexpected results for some keys on non-US/GB keyboards. */);
10820 Vmac_function_modifier = Qnil;
10821
10822 DEFVAR_LISP ("mac-emulate-three-button-mouse",
10823 &Vmac_emulate_three_button_mouse,
10824 doc: /* *Specify a way of three button mouse emulation.
10825 The value can be nil, t, or the symbol `reverse'.
10826 nil means that no emulation should be done and the modifiers should be
10827 placed on the mouse-1 event.
10828 t means that when the option-key is held down while pressing the mouse
10829 button, the click will register as mouse-2 and while the command-key
10830 is held down, the click will register as mouse-3.
10831 The symbol `reverse' means that the option-key will register for
10832 mouse-3 and the command-key will register for mouse-2. */);
10833 Vmac_emulate_three_button_mouse = Qnil;
10834
10835 #if USE_CARBON_EVENTS
10836 DEFVAR_BOOL ("mac-wheel-button-is-mouse-2", &mac_wheel_button_is_mouse_2,
10837 doc: /* *Non-nil if the wheel button is mouse-2 and the right click mouse-3.
10838 Otherwise, the right click will be treated as mouse-2 and the wheel
10839 button will be mouse-3. */);
10840 mac_wheel_button_is_mouse_2 = 1;
10841
10842 DEFVAR_BOOL ("mac-pass-command-to-system", &mac_pass_command_to_system,
10843 doc: /* *Non-nil if command key presses are passed on to the Mac Toolbox. */);
10844 mac_pass_command_to_system = 1;
10845
10846 DEFVAR_BOOL ("mac-pass-control-to-system", &mac_pass_control_to_system,
10847 doc: /* *Non-nil if control key presses are passed on to the Mac Toolbox. */);
10848 mac_pass_control_to_system = 1;
10849
10850 #endif
10851
10852 DEFVAR_BOOL ("mac-allow-anti-aliasing", &mac_use_core_graphics,
10853 doc: /* *If non-nil, allow anti-aliasing.
10854 The text will be rendered using Core Graphics text rendering which
10855 may anti-alias the text. */);
10856 mac_use_core_graphics = 0;
10857
10858 /* Register an entry for `mac-roman' so that it can be used when
10859 creating the terminal frame on Mac OS 9 before loading
10860 term/mac-win.elc. */
10861 DEFVAR_LISP ("mac-charset-info-alist", &Vmac_charset_info_alist,
10862 doc: /* Alist of Emacs character sets vs text encodings and coding systems.
10863 Each entry should be of the form:
10864
10865 (CHARSET-NAME TEXT-ENCODING CODING-SYSTEM)
10866
10867 where CHARSET-NAME is a string used in font names to identify the
10868 charset, TEXT-ENCODING is a TextEncodingBase value in Mac, and
10869 CODING_SYSTEM is a coding system corresponding to TEXT-ENCODING. */);
10870 Vmac_charset_info_alist =
10871 Fcons (list3 (build_string ("mac-roman"),
10872 make_number (smRoman), Qnil), Qnil);
10873 }
10874
10875 /* arch-tag: f2259165-4454-4c04-a029-a133c8af7b5b
10876 (do not change this comment) */