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