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