(url-recreate-url-attributes): New function, code moved from `url-recreate-url'.
[emacs.git] / src / macterm.c
bloba5369eb16675f8b9e4d03a75705f63f823b2d3a4
1 /* Implementation of GUI terminal on the Mac OS.
2 Copyright (C) 2000, 2001, 2002, 2003, 2004,
3 2005, 2006 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
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.
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.
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. */
22 /* Contributed by Andrew Choi (akochoi@mac.com). */
24 #include <config.h>
25 #include <signal.h>
27 #include <stdio.h>
29 #include "lisp.h"
30 #include "blockinput.h"
32 #include "macterm.h"
34 #ifndef MAC_OSX
35 #include <alloca.h>
36 #endif
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
59 #if __profile__
60 #include <profiler.h>
61 #endif
62 #endif /* not TARGET_API_MAC_CARBON */
64 #include "systty.h"
65 #include "systime.h"
67 #include <ctype.h>
68 #include <errno.h>
69 #include <setjmp.h>
70 #include <sys/stat.h>
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"
90 /* Non-nil means Emacs uses toolkit scroll bars. */
92 Lisp_Object Vx_toolkit_scroll_bars;
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;
99 /* Non-zero means that a HELP_EVENT has been generated since Emacs
100 start. */
102 static int any_help_event_p;
104 /* Last window where we saw the mouse. Used by mouse-autoselect-window. */
105 static Lisp_Object last_window;
107 /* Non-zero means make use of UNDERLINE_POSITION font properties.
108 (Not yet supported.) */
109 int x_use_underline_position_properties;
111 /* This is a chain of structures for all the X displays currently in
112 use. */
114 struct x_display_info *x_display_list;
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. */
124 Lisp_Object x_display_name_list;
126 /* This is display since Mac does not support multiple ones. */
127 struct mac_display_info one_mac_display_info;
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. */
134 extern struct frame *updating_frame;
136 /* This is a frame waiting to be auto-raised, within XTread_socket. */
138 struct frame *pending_autoraise_frame;
140 /* Mouse movement.
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.
147 Simply asking for MotionNotify all the time seems to work better.
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. */
160 /* Where the mouse was last time we reported a mouse event. */
162 static Rect last_mouse_glyph;
163 static FRAME_PTR last_mouse_glyph_frame;
165 /* The scroll bar in which the last X motion event occurred.
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.
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. */
175 static Lisp_Object last_mouse_scroll_bar;
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. */
184 static Time last_mouse_movement_time;
186 struct scroll_bar *tracked_scroll_bar = NULL;
188 /* Incremented by XTread_socket whenever it really tries to read
189 events. */
191 #ifdef __STDC__
192 static int volatile input_signal_count;
193 #else
194 static int input_signal_count;
195 #endif
197 extern Lisp_Object Vsystem_name;
199 extern Lisp_Object Qeql;
201 /* A mask of extra modifier bits to put into every keyboard char. */
203 extern EMACS_INT extra_keyboard_modifiers;
205 /* The keysyms to use for the various modifiers. */
207 static Lisp_Object Qalt, Qhyper, Qsuper, Qcontrol, Qmeta, Qmodifier_value;
209 extern int inhibit_window_system;
211 #if __MRC__ && !TARGET_API_MAC_CARBON
212 QDGlobals qd; /* QuickDraw global information structure. */
213 #endif
215 #define mac_window_to_frame(wp) (((mac_output *) GetWRefCon (wp))->mFP)
217 struct mac_display_info *mac_display_info_for_display (Display *);
218 static void x_update_window_end P_ ((struct window *, int, int));
219 int x_catch_errors P_ ((Display *));
220 void x_uncatch_errors P_ ((Display *, int));
221 void x_lower_frame P_ ((struct frame *));
222 void x_scroll_bar_clear P_ ((struct frame *));
223 int x_had_errors_p P_ ((Display *));
224 void x_wm_set_size_hint P_ ((struct frame *, long, int));
225 void x_raise_frame P_ ((struct frame *));
226 void x_set_window_size P_ ((struct frame *, int, int, int));
227 void x_wm_set_window_state P_ ((struct frame *, int));
228 void x_wm_set_icon_pixmap P_ ((struct frame *, int));
229 void mac_initialize P_ ((void));
230 static void x_font_min_bounds P_ ((XFontStruct *, int *, int *));
231 static int x_compute_min_glyph_bounds P_ ((struct frame *));
232 static void x_update_end P_ ((struct frame *));
233 static void XTframe_up_to_date P_ ((struct frame *));
234 static void XTset_terminal_modes P_ ((void));
235 static void XTreset_terminal_modes P_ ((void));
236 static void x_clear_frame P_ ((void));
237 static void frame_highlight P_ ((struct frame *));
238 static void frame_unhighlight P_ ((struct frame *));
239 static void x_new_focus_frame P_ ((struct x_display_info *, struct frame *));
240 static void mac_focus_changed P_ ((int, struct mac_display_info *,
241 struct frame *, struct input_event *));
242 static void x_detect_focus_change P_ ((struct mac_display_info *,
243 EventRecord *, struct input_event *));
244 static void XTframe_rehighlight P_ ((struct frame *));
245 static void x_frame_rehighlight P_ ((struct x_display_info *));
246 static void x_draw_hollow_cursor P_ ((struct window *, struct glyph_row *));
247 static void x_draw_bar_cursor P_ ((struct window *, struct glyph_row *, int,
248 enum text_cursor_kinds));
250 static void x_clip_to_row P_ ((struct window *, struct glyph_row *, int, GC));
251 static void x_flush P_ ((struct frame *f));
252 static void x_update_begin P_ ((struct frame *));
253 static void x_update_window_begin P_ ((struct window *));
254 static void x_after_update_window_line P_ ((struct glyph_row *));
255 static void x_scroll_bar_report_motion P_ ((struct frame **, Lisp_Object *,
256 enum scroll_bar_part *,
257 Lisp_Object *, Lisp_Object *,
258 unsigned long *));
260 static int is_emacs_window P_ ((WindowPtr));
261 static XCharStruct *mac_per_char_metric P_ ((XFontStruct *, XChar2b *, int));
262 static void XSetFont P_ ((Display *, GC, XFontStruct *));
264 /* Defined in macmenu.h. */
265 extern void menubar_selection_callback (FRAME_PTR, int);
267 #define GC_FORE_COLOR(gc) (&(gc)->fore_color)
268 #define GC_BACK_COLOR(gc) (&(gc)->back_color)
269 #define GC_FONT(gc) ((gc)->xgcv.font)
270 #define FRAME_NORMAL_GC(f) ((f)->output_data.mac->normal_gc)
271 #define CG_SET_FILL_COLOR(context, color) \
272 CGContextSetRGBFillColor (context, \
273 RED_FROM_ULONG (color) / 255.0f, \
274 GREEN_FROM_ULONG (color) / 255.0f, \
275 BLUE_FROM_ULONG (color) / 255.0f, 1.0f)
276 #define CG_SET_STROKE_COLOR(context, color) \
277 CGContextSetRGBStrokeColor (context, \
278 RED_FROM_ULONG (color) / 255.0f, \
279 GREEN_FROM_ULONG (color) / 255.0f, \
280 BLUE_FROM_ULONG (color) / 255.0f, 1.0f)
281 #if USE_CG_DRAWING
282 #define FRAME_CG_CONTEXT(f) ((f)->output_data.mac->cg_context)
284 /* Fringe bitmaps. */
286 static int max_fringe_bmp = 0;
287 static CGImageRef *fringe_bmp = 0;
289 static CGContextRef
290 mac_begin_cg_clip (f, gc)
291 struct frame *f;
292 GC gc;
294 CGContextRef context = FRAME_CG_CONTEXT (f);
296 if (!context)
298 QDBeginCGContext (GetWindowPort (FRAME_MAC_WINDOW (f)), &context);
299 FRAME_CG_CONTEXT (f) = context;
302 CGContextSaveGState (context);
303 CGContextTranslateCTM (context, 0, FRAME_PIXEL_HEIGHT (f));
304 CGContextScaleCTM (context, 1, -1);
305 if (gc && gc->n_clip_rects)
306 CGContextClipToRects (context, gc->clip_rects, gc->n_clip_rects);
308 return context;
311 static void
312 mac_end_cg_clip (f)
313 struct frame *f;
315 CGContextRestoreGState (FRAME_CG_CONTEXT (f));
318 void
319 mac_prepare_for_quickdraw (f)
320 struct frame *f;
322 if (f == NULL)
324 Lisp_Object rest, frame;
325 FOR_EACH_FRAME (rest, frame)
326 if (FRAME_MAC_P (XFRAME (frame)))
327 mac_prepare_for_quickdraw (XFRAME (frame));
329 else
331 CGContextRef context = FRAME_CG_CONTEXT (f);
333 if (context)
335 CGContextSynchronize (context);
336 QDEndCGContext (GetWindowPort (FRAME_MAC_WINDOW (f)),
337 &FRAME_CG_CONTEXT (f));
341 #endif
343 static RgnHandle saved_port_clip_region = NULL;
345 static void
346 mac_begin_clip (gc)
347 GC gc;
349 static RgnHandle new_region = NULL;
351 if (saved_port_clip_region == NULL)
352 saved_port_clip_region = NewRgn ();
353 if (new_region == NULL)
354 new_region = NewRgn ();
356 if (gc->n_clip_rects)
358 GetClip (saved_port_clip_region);
359 SectRgn (saved_port_clip_region, gc->clip_region, new_region);
360 SetClip (new_region);
364 static void
365 mac_end_clip (gc)
366 GC gc;
368 if (gc->n_clip_rects)
369 SetClip (saved_port_clip_region);
373 /* X display function emulation */
375 void
376 XFreePixmap (display, pixmap)
377 Display *display; /* not used */
378 Pixmap pixmap;
380 DisposeGWorld (pixmap);
384 /* Mac version of XDrawLine. */
386 static void
387 mac_draw_line (f, gc, x1, y1, x2, y2)
388 struct frame *f;
389 GC gc;
390 int x1, y1, x2, y2;
392 #if USE_CG_DRAWING
393 CGContextRef context;
394 float gx1 = x1, gy1 = y1, gx2 = x2, gy2 = y2;
396 if (y1 != y2)
397 gx1 += 0.5f, gx2 += 0.5f;
398 if (x1 != x2)
399 gy1 += 0.5f, gy2 += 0.5f;
401 context = mac_begin_cg_clip (f, gc);
402 CG_SET_STROKE_COLOR (context, gc->xgcv.foreground);
403 CGContextBeginPath (context);
404 CGContextMoveToPoint (context, gx1, gy1);
405 CGContextAddLineToPoint (context, gx2, gy2);
406 CGContextClosePath (context);
407 CGContextStrokePath (context);
408 mac_end_cg_clip (f);
409 #else
410 if (x1 == x2)
412 if (y1 > y2)
413 y1--;
414 else if (y2 > y1)
415 y2--;
417 else if (y1 == y2)
419 if (x1 > x2)
420 x1--;
421 else
422 x2--;
425 SetPortWindowPort (FRAME_MAC_WINDOW (f));
427 RGBForeColor (GC_FORE_COLOR (gc));
429 mac_begin_clip (gc);
430 MoveTo (x1, y1);
431 LineTo (x2, y2);
432 mac_end_clip (gc);
433 #endif
436 void
437 mac_draw_line_to_pixmap (display, p, gc, x1, y1, x2, y2)
438 Display *display;
439 Pixmap p;
440 GC gc;
441 int x1, y1, x2, y2;
443 CGrafPtr old_port;
444 GDHandle old_gdh;
446 if (x1 == x2)
448 if (y1 > y2)
449 y1--;
450 else if (y2 > y1)
451 y2--;
453 else if (y1 == y2)
455 if (x1 > x2)
456 x1--;
457 else
458 x2--;
461 GetGWorld (&old_port, &old_gdh);
462 SetGWorld (p, NULL);
464 RGBForeColor (GC_FORE_COLOR (gc));
466 LockPixels (GetGWorldPixMap (p));
467 MoveTo (x1, y1);
468 LineTo (x2, y2);
469 UnlockPixels (GetGWorldPixMap (p));
471 SetGWorld (old_port, old_gdh);
475 static void
476 mac_erase_rectangle (f, gc, x, y, width, height)
477 struct frame *f;
478 GC gc;
479 int x, y;
480 unsigned int width, height;
482 #if USE_CG_DRAWING
483 CGContextRef context;
485 context = mac_begin_cg_clip (f, gc);
486 CG_SET_FILL_COLOR (context, gc->xgcv.background);
487 CGContextFillRect (context, CGRectMake (x, y, width, height));
488 mac_end_cg_clip (f);
489 #else
490 Rect r;
492 SetPortWindowPort (FRAME_MAC_WINDOW (f));
494 RGBBackColor (GC_BACK_COLOR (gc));
495 SetRect (&r, x, y, x + width, y + height);
497 mac_begin_clip (gc);
498 EraseRect (&r);
499 mac_end_clip (gc);
501 RGBBackColor (GC_BACK_COLOR (FRAME_NORMAL_GC (f)));
502 #endif
506 /* Mac version of XClearArea. */
508 void
509 mac_clear_area (f, x, y, width, height)
510 struct frame *f;
511 int x, y;
512 unsigned int width, height;
514 mac_erase_rectangle (f, FRAME_NORMAL_GC (f), x, y, width, height);
517 /* Mac version of XClearWindow. */
519 static void
520 mac_clear_window (f)
521 struct frame *f;
523 #if USE_CG_DRAWING
524 CGContextRef context;
525 GC gc = FRAME_NORMAL_GC (f);
527 context = mac_begin_cg_clip (f, NULL);
528 CG_SET_FILL_COLOR (context, gc->xgcv.background);
529 CGContextFillRect (context, CGRectMake (0, 0, FRAME_PIXEL_WIDTH (f),
530 FRAME_PIXEL_HEIGHT (f)));
531 mac_end_cg_clip (f);
532 #else
533 SetPortWindowPort (FRAME_MAC_WINDOW (f));
535 RGBBackColor (GC_BACK_COLOR (FRAME_NORMAL_GC (f)));
537 #if TARGET_API_MAC_CARBON
539 Rect r;
541 GetWindowPortBounds (FRAME_MAC_WINDOW (f), &r);
542 EraseRect (&r);
544 #else /* not TARGET_API_MAC_CARBON */
545 EraseRect (&(FRAME_MAC_WINDOW (f)->portRect));
546 #endif /* not TARGET_API_MAC_CARBON */
547 #endif
551 /* Mac replacement for XCopyArea. */
553 #if USE_CG_DRAWING
554 static void
555 mac_draw_cg_image (image, f, gc, src_x, src_y, width, height,
556 dest_x, dest_y, overlay_p)
557 CGImageRef image;
558 struct frame *f;
559 GC gc;
560 int src_x, src_y;
561 unsigned int width, height;
562 int dest_x, dest_y, overlay_p;
564 CGContextRef context;
565 float port_height = FRAME_PIXEL_HEIGHT (f);
566 CGRect dest_rect = CGRectMake (dest_x, dest_y, width, height);
568 context = mac_begin_cg_clip (f, gc);
569 if (!overlay_p)
571 CG_SET_FILL_COLOR (context, gc->xgcv.background);
572 CGContextFillRect (context, dest_rect);
574 CGContextClipToRect (context, dest_rect);
575 CGContextScaleCTM (context, 1, -1);
576 CGContextTranslateCTM (context, 0, -port_height);
577 if (CGImageIsMask (image))
578 CG_SET_FILL_COLOR (context, gc->xgcv.foreground);
579 CGContextDrawImage (context,
580 CGRectMake (dest_x - src_x,
581 port_height - (dest_y - src_y
582 + CGImageGetHeight (image)),
583 CGImageGetWidth (image),
584 CGImageGetHeight (image)),
585 image);
586 mac_end_cg_clip (f);
589 #else /* !USE_CG_DRAWING */
591 static void
592 mac_draw_bitmap (f, gc, x, y, width, height, bits, overlay_p)
593 struct frame *f;
594 GC gc;
595 int x, y, width, height;
596 unsigned short *bits;
597 int overlay_p;
599 BitMap bitmap;
600 Rect r;
602 bitmap.rowBytes = sizeof(unsigned short);
603 bitmap.baseAddr = (char *)bits;
604 SetRect (&(bitmap.bounds), 0, 0, width, height);
606 SetPortWindowPort (FRAME_MAC_WINDOW (f));
608 RGBForeColor (GC_FORE_COLOR (gc));
609 RGBBackColor (GC_BACK_COLOR (gc));
610 SetRect (&r, x, y, x + width, y + height);
612 mac_begin_clip (gc);
613 #if TARGET_API_MAC_CARBON
615 CGrafPtr port;
617 GetPort (&port);
618 LockPortBits (port);
619 CopyBits (&bitmap, GetPortBitMapForCopyBits (port),
620 &(bitmap.bounds), &r, overlay_p ? srcOr : srcCopy, 0);
621 UnlockPortBits (port);
623 #else /* not TARGET_API_MAC_CARBON */
624 CopyBits (&bitmap, &(FRAME_MAC_WINDOW (f)->portBits), &(bitmap.bounds), &r,
625 overlay_p ? srcOr : srcCopy, 0);
626 #endif /* not TARGET_API_MAC_CARBON */
627 mac_end_clip (gc);
629 RGBBackColor (GC_BACK_COLOR (FRAME_NORMAL_GC (f)));
631 #endif /* !USE_CG_DRAWING */
634 /* Mac replacement for XCreateBitmapFromBitmapData. */
636 static void
637 mac_create_bitmap_from_bitmap_data (bitmap, bits, w, h)
638 BitMap *bitmap;
639 char *bits;
640 int w, h;
642 static unsigned char swap_nibble[16]
643 = { 0x0, 0x8, 0x4, 0xc, /* 0000 1000 0100 1100 */
644 0x2, 0xa, 0x6, 0xe, /* 0010 1010 0110 1110 */
645 0x1, 0x9, 0x5, 0xd, /* 0001 1001 0101 1101 */
646 0x3, 0xb, 0x7, 0xf }; /* 0011 1011 0111 1111 */
647 int i, j, w1;
648 char *p;
650 w1 = (w + 7) / 8; /* nb of 8bits elt in X bitmap */
651 bitmap->rowBytes = ((w + 15) / 16) * 2; /* nb of 16bits elt in Mac bitmap */
652 bitmap->baseAddr = xmalloc (bitmap->rowBytes * h);
653 bzero (bitmap->baseAddr, bitmap->rowBytes * h);
654 for (i = 0; i < h; i++)
656 p = bitmap->baseAddr + i * bitmap->rowBytes;
657 for (j = 0; j < w1; j++)
659 /* Bitswap XBM bytes to match how Mac does things. */
660 unsigned char c = *bits++;
661 *p++ = (unsigned char)((swap_nibble[c & 0xf] << 4)
662 | (swap_nibble[(c>>4) & 0xf]));;
666 SetRect (&(bitmap->bounds), 0, 0, w, h);
670 static void
671 mac_free_bitmap (bitmap)
672 BitMap *bitmap;
674 xfree (bitmap->baseAddr);
678 Pixmap
679 XCreatePixmap (display, w, width, height, depth)
680 Display *display; /* not used */
681 WindowPtr w;
682 unsigned int width, height;
683 unsigned int depth;
685 Pixmap pixmap;
686 Rect r;
687 QDErr err;
689 SetPortWindowPort (w);
691 SetRect (&r, 0, 0, width, height);
692 #if !defined (WORDS_BIG_ENDIAN) && USE_CG_DRAWING
693 if (depth == 1)
694 #endif
695 err = NewGWorld (&pixmap, depth, &r, NULL, NULL, 0);
696 #if !defined (WORDS_BIG_ENDIAN) && USE_CG_DRAWING
697 else
698 /* CreateCGImageFromPixMaps requires ARGB format. */
699 err = QTNewGWorld (&pixmap, k32ARGBPixelFormat, &r, NULL, NULL, 0);
700 #endif
701 if (err != noErr)
702 return NULL;
703 return pixmap;
707 Pixmap
708 XCreatePixmapFromBitmapData (display, w, data, width, height, fg, bg, depth)
709 Display *display; /* not used */
710 WindowPtr w;
711 char *data;
712 unsigned int width, height;
713 unsigned long fg, bg;
714 unsigned int depth;
716 Pixmap pixmap;
717 BitMap bitmap;
718 CGrafPtr old_port;
719 GDHandle old_gdh;
720 static GC gc = NULL; /* not reentrant */
722 if (gc == NULL)
723 gc = XCreateGC (display, w, 0, NULL);
725 pixmap = XCreatePixmap (display, w, width, height, depth);
726 if (pixmap == NULL)
727 return NULL;
729 GetGWorld (&old_port, &old_gdh);
730 SetGWorld (pixmap, NULL);
731 mac_create_bitmap_from_bitmap_data (&bitmap, data, width, height);
732 XSetForeground (display, gc, fg);
733 XSetBackground (display, gc, bg);
734 RGBForeColor (GC_FORE_COLOR (gc));
735 RGBBackColor (GC_BACK_COLOR (gc));
736 LockPixels (GetGWorldPixMap (pixmap));
737 #if TARGET_API_MAC_CARBON
738 CopyBits (&bitmap, GetPortBitMapForCopyBits (pixmap),
739 &bitmap.bounds, &bitmap.bounds, srcCopy, 0);
740 #else /* not TARGET_API_MAC_CARBON */
741 CopyBits (&bitmap, &(((GrafPtr)pixmap)->portBits),
742 &bitmap.bounds, &bitmap.bounds, srcCopy, 0);
743 #endif /* not TARGET_API_MAC_CARBON */
744 UnlockPixels (GetGWorldPixMap (pixmap));
745 SetGWorld (old_port, old_gdh);
746 mac_free_bitmap (&bitmap);
748 return pixmap;
752 /* Mac replacement for XFillRectangle. */
754 static void
755 mac_fill_rectangle (f, gc, x, y, width, height)
756 struct frame *f;
757 GC gc;
758 int x, y;
759 unsigned int width, height;
761 #if USE_CG_DRAWING
762 CGContextRef context;
764 context = mac_begin_cg_clip (f, gc);
765 CG_SET_FILL_COLOR (context, gc->xgcv.foreground);
766 CGContextFillRect (context, CGRectMake (x, y, width, height));
767 mac_end_cg_clip (f);
768 #else
769 Rect r;
771 SetPortWindowPort (FRAME_MAC_WINDOW (f));
773 RGBForeColor (GC_FORE_COLOR (gc));
774 SetRect (&r, x, y, x + width, y + height);
776 mac_begin_clip (gc);
777 PaintRect (&r); /* using foreground color of gc */
778 mac_end_clip (gc);
779 #endif
783 /* Mac replacement for XDrawRectangle: dest is a window. */
785 static void
786 mac_draw_rectangle (f, gc, x, y, width, height)
787 struct frame *f;
788 GC gc;
789 int x, y;
790 unsigned int width, height;
792 #if USE_CG_DRAWING
793 CGContextRef context;
795 context = mac_begin_cg_clip (f, gc);
796 CG_SET_STROKE_COLOR (context, gc->xgcv.foreground);
797 CGContextStrokeRect (context,
798 CGRectMake (x + 0.5f, y + 0.5f, width, height));
799 mac_end_cg_clip (f);
800 #else
801 Rect r;
803 SetPortWindowPort (FRAME_MAC_WINDOW (f));
805 RGBForeColor (GC_FORE_COLOR (gc));
806 SetRect (&r, x, y, x + width + 1, y + height + 1);
808 mac_begin_clip (gc);
809 FrameRect (&r); /* using foreground color of gc */
810 mac_end_clip (gc);
811 #endif
815 #if USE_ATSUI
816 static OSStatus
817 atsu_get_text_layout_with_text_ptr (text, text_length, style, text_layout)
818 ConstUniCharArrayPtr text;
819 UniCharCount text_length;
820 ATSUStyle style;
821 ATSUTextLayout *text_layout;
823 OSStatus err;
824 static ATSUTextLayout saved_text_layout = NULL; /* not reentrant */
826 if (saved_text_layout == NULL)
828 UniCharCount lengths[] = {kATSUToTextEnd};
829 ATSUAttributeTag tags[] = {kATSULineLayoutOptionsTag};
830 ByteCount sizes[] = {sizeof (ATSLineLayoutOptions)};
831 static ATSLineLayoutOptions line_layout =
832 #if MAC_OS_X_VERSION_MAX_ALLOWED >= 1020
833 kATSLineDisableAllLayoutOperations | kATSLineUseDeviceMetrics
834 | kATSLineUseQDRendering
835 #else
836 kATSLineIsDisplayOnly | kATSLineFractDisable
837 #endif
839 ATSUAttributeValuePtr values[] = {&line_layout};
841 err = ATSUCreateTextLayoutWithTextPtr (text,
842 kATSUFromTextBeginning,
843 kATSUToTextEnd,
844 text_length,
845 1, lengths, &style,
846 &saved_text_layout);
847 if (err == noErr)
848 err = ATSUSetLayoutControls (saved_text_layout,
849 sizeof (tags) / sizeof (tags[0]),
850 tags, sizes, values);
851 /* XXX: Should we do this? */
852 if (err == noErr)
853 err = ATSUSetTransientFontMatching (saved_text_layout, true);
855 else
857 err = ATSUSetRunStyle (saved_text_layout, style,
858 kATSUFromTextBeginning, kATSUToTextEnd);
859 if (err == noErr)
860 err = ATSUSetTextPointerLocation (saved_text_layout, text,
861 kATSUFromTextBeginning,
862 kATSUToTextEnd,
863 text_length);
866 if (err == noErr)
867 *text_layout = saved_text_layout;
868 return err;
870 #endif
873 static void
874 mac_invert_rectangle (f, x, y, width, height)
875 struct frame *f;
876 int x, y;
877 unsigned int width, height;
879 Rect r;
881 #if USE_CG_DRAWING
882 mac_prepare_for_quickdraw (f);
883 #endif
884 SetPortWindowPort (FRAME_MAC_WINDOW (f));
886 SetRect (&r, x, y, x + width, y + height);
888 InvertRect (&r);
892 static void
893 mac_draw_string_common (f, gc, x, y, buf, nchars, bg_width, bytes_per_char)
894 struct frame *f;
895 GC gc;
896 int x, y;
897 char *buf;
898 int nchars, bg_width, bytes_per_char;
900 SetPortWindowPort (FRAME_MAC_WINDOW (f));
902 #if USE_ATSUI
903 if (GC_FONT (gc)->mac_style)
905 OSStatus err;
906 ATSUTextLayout text_layout;
908 xassert (bytes_per_char == 2);
910 #ifndef WORDS_BIG_ENDIAN
912 int i;
913 UniChar *text = (UniChar *)buf;
915 for (i = 0; i < nchars; i++)
916 text[i] = EndianU16_BtoN (text[i]);
918 #endif
919 err = atsu_get_text_layout_with_text_ptr ((ConstUniCharArrayPtr)buf,
920 nchars,
921 GC_FONT (gc)->mac_style,
922 &text_layout);
923 if (err != noErr)
924 return;
925 #ifdef MAC_OSX
926 if (!mac_use_core_graphics)
928 #endif
929 #if USE_CG_DRAWING
930 mac_prepare_for_quickdraw (f);
931 #endif
932 mac_begin_clip (gc);
933 RGBForeColor (GC_FORE_COLOR (gc));
934 if (bg_width)
936 Rect r;
938 SetRect (&r, x, y - FONT_BASE (GC_FONT (gc)),
939 x + bg_width, y + FONT_DESCENT (GC_FONT (gc)));
940 RGBBackColor (GC_BACK_COLOR (gc));
941 EraseRect (&r);
942 RGBBackColor (GC_BACK_COLOR (FRAME_NORMAL_GC (f)));
944 MoveTo (x, y);
945 ATSUDrawText (text_layout,
946 kATSUFromTextBeginning, kATSUToTextEnd,
947 kATSUUseGrafPortPenLoc, kATSUUseGrafPortPenLoc);
948 mac_end_clip (gc);
949 #ifdef MAC_OSX
951 else
953 CGrafPtr port;
954 CGContextRef context;
955 float port_height = FRAME_PIXEL_HEIGHT (f);
956 ATSUAttributeTag tags[] = {kATSUCGContextTag};
957 ByteCount sizes[] = {sizeof (CGContextRef)};
958 ATSUAttributeValuePtr values[] = {&context};
960 #if USE_CG_DRAWING
961 context = mac_begin_cg_clip (f, gc);
962 #else
963 GetPort (&port);
964 QDBeginCGContext (port, &context);
965 if (gc->n_clip_rects || bg_width)
967 CGContextTranslateCTM (context, 0, port_height);
968 CGContextScaleCTM (context, 1, -1);
969 if (gc->n_clip_rects)
970 CGContextClipToRects (context, gc->clip_rects,
971 gc->n_clip_rects);
972 #endif
973 if (bg_width)
975 CG_SET_FILL_COLOR (context, gc->xgcv.background);
976 CGContextFillRect
977 (context,
978 CGRectMake (x, y - FONT_BASE (GC_FONT (gc)),
979 bg_width, FONT_HEIGHT (GC_FONT (gc))));
981 CGContextScaleCTM (context, 1, -1);
982 CGContextTranslateCTM (context, 0, -port_height);
983 #if !USE_CG_DRAWING
985 #endif
986 CG_SET_FILL_COLOR (context, gc->xgcv.foreground);
987 err = ATSUSetLayoutControls (text_layout,
988 sizeof (tags) / sizeof (tags[0]),
989 tags, sizes, values);
990 if (err == noErr)
991 ATSUDrawText (text_layout,
992 kATSUFromTextBeginning, kATSUToTextEnd,
993 Long2Fix (x), Long2Fix (port_height - y));
994 #if USE_CG_DRAWING
995 mac_end_cg_clip (f);
996 context = NULL;
997 #else
998 CGContextSynchronize (context);
999 QDEndCGContext (port, &context);
1000 #endif
1001 #if 0
1002 /* This doesn't work on Mac OS X 10.1. */
1003 ATSUClearLayoutControls (text_layout,
1004 sizeof (tags) / sizeof (tags[0]), tags);
1005 #else
1006 ATSUSetLayoutControls (text_layout,
1007 sizeof (tags) / sizeof (tags[0]),
1008 tags, sizes, values);
1009 #endif
1011 #endif /* MAC_OSX */
1013 else
1014 #endif /* USE_ATSUI */
1016 #if MAC_OS_X_VERSION_MAX_ALLOWED >= 1020
1017 UInt32 savedFlags;
1019 if (mac_use_core_graphics)
1020 savedFlags = SwapQDTextFlags (kQDUseCGTextRendering);
1021 #endif
1022 #if USE_CG_DRAWING
1023 mac_prepare_for_quickdraw (f);
1024 #endif
1025 mac_begin_clip (gc);
1026 RGBForeColor (GC_FORE_COLOR (gc));
1027 #ifdef MAC_OS8
1028 if (bg_width)
1030 RGBBackColor (GC_BACK_COLOR (gc));
1031 TextMode (srcCopy);
1033 else
1034 TextMode (srcOr);
1035 #else
1036 /* We prefer not to use srcCopy text transfer mode on Mac OS X
1037 because:
1038 - Screen is double-buffered. (In srcCopy mode, a text is
1039 drawn into an offscreen graphics world first. So
1040 performance gain cannot be expected.)
1041 - It lowers rendering quality.
1042 - Some fonts leave garbage on cursor movement. */
1043 if (bg_width)
1045 Rect r;
1047 RGBBackColor (GC_BACK_COLOR (gc));
1048 SetRect (&r, x, y - FONT_BASE (GC_FONT (gc)),
1049 x + bg_width, y + FONT_DESCENT (GC_FONT (gc)));
1050 EraseRect (&r);
1052 TextMode (srcOr);
1053 #endif
1054 TextFont (GC_FONT (gc)->mac_fontnum);
1055 TextSize (GC_FONT (gc)->mac_fontsize);
1056 TextFace (GC_FONT (gc)->mac_fontface);
1057 MoveTo (x, y);
1058 DrawText (buf, 0, nchars * bytes_per_char);
1059 if (bg_width)
1060 RGBBackColor (GC_BACK_COLOR (FRAME_NORMAL_GC (f)));
1061 mac_end_clip (gc);
1063 #if MAC_OS_X_VERSION_MAX_ALLOWED >= 1020
1064 if (mac_use_core_graphics)
1065 SwapQDTextFlags(savedFlags);
1066 #endif
1071 /* Mac replacement for XDrawString. */
1073 static void
1074 mac_draw_string (f, gc, x, y, buf, nchars)
1075 struct frame *f;
1076 GC gc;
1077 int x, y;
1078 char *buf;
1079 int nchars;
1081 mac_draw_string_common (f, gc, x, y, buf, nchars, 0, 1);
1085 /* Mac replacement for XDrawString16. */
1087 static void
1088 mac_draw_string_16 (f, gc, x, y, buf, nchars)
1089 struct frame *f;
1090 GC gc;
1091 int x, y;
1092 XChar2b *buf;
1093 int nchars;
1095 mac_draw_string_common (f, gc, x, y, (char *) buf, nchars, 0, 2);
1099 /* Mac replacement for XDrawImageString. */
1101 static void
1102 mac_draw_image_string (f, gc, x, y, buf, nchars, bg_width)
1103 struct frame *f;
1104 GC gc;
1105 int x, y;
1106 char *buf;
1107 int nchars, bg_width;
1109 mac_draw_string_common (f, gc, x, y, buf, nchars, bg_width, 1);
1113 /* Mac replacement for XDrawString16. */
1115 static void
1116 mac_draw_image_string_16 (f, gc, x, y, buf, nchars, bg_width)
1117 struct frame *f;
1118 GC gc;
1119 int x, y;
1120 XChar2b *buf;
1121 int nchars, bg_width;
1123 mac_draw_string_common (f, gc, x, y, (char *) buf, nchars, bg_width, 2);
1127 /* Mac replacement for XQueryTextExtents, but takes a character. If
1128 STYLE is NULL, measurement is done by QuickDraw Text routines for
1129 the font of the current graphics port. If CG_GLYPH is not NULL,
1130 *CG_GLYPH is set to the glyph ID or 0 if it cannot be obtained. */
1132 static OSStatus
1133 mac_query_char_extents (style, c,
1134 font_ascent_return, font_descent_return,
1135 overall_return, cg_glyph)
1136 #if USE_ATSUI
1137 ATSUStyle style;
1138 #else
1139 void *style;
1140 #endif
1141 int c;
1142 int *font_ascent_return, *font_descent_return;
1143 XCharStruct *overall_return;
1144 #if USE_CG_TEXT_DRAWING
1145 CGGlyph *cg_glyph;
1146 #else
1147 void *cg_glyph;
1148 #endif
1150 OSStatus err = noErr;
1151 int width;
1152 Rect char_bounds;
1154 #if USE_ATSUI
1155 if (style)
1157 ATSUTextLayout text_layout;
1158 UniChar ch = c;
1160 err = atsu_get_text_layout_with_text_ptr (&ch, 1, style, &text_layout);
1161 if (err == noErr)
1163 ATSTrapezoid glyph_bounds;
1165 err = ATSUGetGlyphBounds (text_layout, 0, 0,
1166 kATSUFromTextBeginning, kATSUToTextEnd,
1167 #if MAC_OS_X_VERSION_MAX_ALLOWED >= 1020
1168 kATSUseFractionalOrigins,
1169 #else
1170 kATSUseDeviceOrigins,
1171 #endif
1172 1, &glyph_bounds, NULL);
1173 if (err == noErr)
1175 xassert (glyph_bounds.lowerRight.x - glyph_bounds.lowerLeft.x
1176 == glyph_bounds.upperRight.x - glyph_bounds.upperLeft.x);
1178 width = Fix2Long (glyph_bounds.upperRight.x
1179 - glyph_bounds.upperLeft.x);
1180 if (font_ascent_return)
1181 *font_ascent_return = -Fix2Long (glyph_bounds.upperLeft.y);
1182 if (font_descent_return)
1183 *font_descent_return = Fix2Long (glyph_bounds.lowerLeft.y);
1186 if (err == noErr && overall_return)
1188 err = ATSUMeasureTextImage (text_layout,
1189 kATSUFromTextBeginning, kATSUToTextEnd,
1190 0, 0, &char_bounds);
1191 if (err == noErr)
1192 STORE_XCHARSTRUCT (*overall_return, width, char_bounds);
1193 #if USE_CG_TEXT_DRAWING
1194 if (err == noErr && cg_glyph)
1196 OSStatus err1;
1197 ATSUGlyphInfoArray glyph_info_array;
1198 ByteCount count = sizeof (ATSUGlyphInfoArray);
1200 err1 = ATSUMatchFontsToText (text_layout, kATSUFromTextBeginning,
1201 kATSUToTextEnd, NULL, NULL, NULL);
1202 if (err1 == noErr)
1203 err1 = ATSUGetGlyphInfo (text_layout, kATSUFromTextBeginning,
1204 kATSUToTextEnd, &count,
1205 &glyph_info_array);
1206 if (err1 == noErr)
1208 xassert (glyph_info_array.glyphs[0].glyphID);
1209 *cg_glyph = glyph_info_array.glyphs[0].glyphID;
1211 else
1212 *cg_glyph = 0;
1214 #endif
1217 else
1218 #endif
1220 if (font_ascent_return || font_descent_return)
1222 FontInfo font_info;
1224 GetFontInfo (&font_info);
1225 if (font_ascent_return)
1226 *font_ascent_return = font_info.ascent;
1227 if (font_descent_return)
1228 *font_descent_return = font_info.descent;
1230 if (overall_return)
1232 char ch = c;
1234 width = CharWidth (ch);
1235 QDTextBounds (1, &ch, &char_bounds);
1236 STORE_XCHARSTRUCT (*overall_return, width, char_bounds);
1240 return err;
1244 /* Mac replacement for XTextExtents16. Only sets horizontal metrics. */
1246 static int
1247 mac_text_extents_16 (font_struct, string, nchars, overall_return)
1248 XFontStruct *font_struct;
1249 XChar2b *string;
1250 int nchars;
1251 XCharStruct *overall_return;
1253 int i;
1254 short width = 0, lbearing = 0, rbearing = 0;
1255 XCharStruct *pcm;
1257 for (i = 0; i < nchars; i++)
1259 pcm = mac_per_char_metric (font_struct, string, 0);
1260 if (pcm == NULL)
1261 width += FONT_WIDTH (font_struct);
1262 else
1264 lbearing = min (lbearing, width + pcm->lbearing);
1265 rbearing = max (rbearing, width + pcm->rbearing);
1266 width += pcm->width;
1268 string++;
1271 overall_return->lbearing = lbearing;
1272 overall_return->rbearing = rbearing;
1273 overall_return->width = width;
1275 /* What's the meaning of the return value of XTextExtents16? */
1279 #if USE_CG_TEXT_DRAWING
1280 static int cg_text_anti_aliasing_threshold = 8;
1282 static void
1283 init_cg_text_anti_aliasing_threshold ()
1285 int threshold;
1286 Boolean valid_p;
1288 threshold =
1289 CFPreferencesGetAppIntegerValue (CFSTR ("AppleAntiAliasingThreshold"),
1290 kCFPreferencesCurrentApplication,
1291 &valid_p);
1292 if (valid_p)
1293 cg_text_anti_aliasing_threshold = threshold;
1296 static int
1297 mac_draw_image_string_cg (f, gc, x, y, buf, nchars, bg_width)
1298 struct frame *f;
1299 GC gc;
1300 int x, y;
1301 XChar2b *buf;
1302 int nchars, bg_width;
1304 CGrafPtr port;
1305 float port_height, gx, gy;
1306 int i;
1307 CGContextRef context;
1308 CGGlyph *glyphs;
1309 CGSize *advances;
1311 if (!mac_use_core_graphics || GC_FONT (gc)->cg_font == NULL)
1312 return 0;
1314 port = GetWindowPort (FRAME_MAC_WINDOW (f));
1315 port_height = FRAME_PIXEL_HEIGHT (f);
1316 gx = x;
1317 gy = port_height - y;
1318 glyphs = (CGGlyph *)buf;
1319 advances = alloca (sizeof (CGSize) * nchars);
1320 if (advances == NULL)
1321 return 0;
1322 for (i = 0; i < nchars; i++)
1324 XCharStruct *pcm = mac_per_char_metric (GC_FONT (gc), buf, 0);
1326 advances[i].width = pcm->width;
1327 advances[i].height = 0;
1328 glyphs[i] = GC_FONT (gc)->cg_glyphs[buf->byte2];
1329 buf++;
1332 #if USE_CG_DRAWING
1333 context = mac_begin_cg_clip (f, gc);
1334 #else
1335 QDBeginCGContext (port, &context);
1336 if (gc->n_clip_rects || bg_width)
1338 CGContextTranslateCTM (context, 0, port_height);
1339 CGContextScaleCTM (context, 1, -1);
1340 if (gc->n_clip_rects)
1341 CGContextClipToRects (context, gc->clip_rects, gc->n_clip_rects);
1342 #endif
1343 if (bg_width)
1345 CG_SET_FILL_COLOR (context, gc->xgcv.background);
1346 CGContextFillRect
1347 (context,
1348 CGRectMake (gx, y - FONT_BASE (GC_FONT (gc)),
1349 bg_width, FONT_HEIGHT (GC_FONT (gc))));
1351 CGContextScaleCTM (context, 1, -1);
1352 CGContextTranslateCTM (context, 0, -port_height);
1353 #if !USE_CG_DRAWING
1355 #endif
1356 CG_SET_FILL_COLOR (context, gc->xgcv.foreground);
1357 CGContextSetFont (context, GC_FONT (gc)->cg_font);
1358 CGContextSetFontSize (context, GC_FONT (gc)->mac_fontsize);
1359 if (GC_FONT (gc)->mac_fontsize <= cg_text_anti_aliasing_threshold)
1360 CGContextSetShouldAntialias (context, false);
1361 #if MAC_OS_X_VERSION_MAX_ALLOWED >= 1030
1362 CGContextSetTextPosition (context, gx, gy);
1363 CGContextShowGlyphsWithAdvances (context, glyphs, advances, nchars);
1364 #else
1365 for (i = 0; i < nchars; i++)
1367 CGContextShowGlyphsAtPoint (context, gx, gy, glyphs + i, 1);
1368 gx += advances[i].width;
1370 #endif
1371 #if USE_CG_DRAWING
1372 mac_end_cg_clip (f);
1373 #else
1374 CGContextSynchronize (context);
1375 QDEndCGContext (port, &context);
1376 #endif
1378 return 1;
1380 #endif
1383 #if !USE_CG_DRAWING
1384 /* Mac replacement for XCopyArea: dest must be window. */
1386 static void
1387 mac_copy_area (src, f, gc, src_x, src_y, width, height, dest_x, dest_y)
1388 Pixmap src;
1389 struct frame *f;
1390 GC gc;
1391 int src_x, src_y;
1392 unsigned int width, height;
1393 int dest_x, dest_y;
1395 Rect src_r, dest_r;
1397 SetPortWindowPort (FRAME_MAC_WINDOW (f));
1399 SetRect (&src_r, src_x, src_y, src_x + width, src_y + height);
1400 SetRect (&dest_r, dest_x, dest_y, dest_x + width, dest_y + height);
1402 ForeColor (blackColor);
1403 BackColor (whiteColor);
1405 mac_begin_clip (gc);
1406 LockPixels (GetGWorldPixMap (src));
1407 #if TARGET_API_MAC_CARBON
1409 CGrafPtr port;
1411 GetPort (&port);
1412 LockPortBits (port);
1413 CopyBits (GetPortBitMapForCopyBits (src),
1414 GetPortBitMapForCopyBits (port),
1415 &src_r, &dest_r, srcCopy, 0);
1416 UnlockPortBits (port);
1418 #else /* not TARGET_API_MAC_CARBON */
1419 CopyBits (&(((GrafPtr)src)->portBits), &(FRAME_MAC_WINDOW (f)->portBits),
1420 &src_r, &dest_r, srcCopy, 0);
1421 #endif /* not TARGET_API_MAC_CARBON */
1422 UnlockPixels (GetGWorldPixMap (src));
1423 mac_end_clip (gc);
1425 RGBBackColor (GC_BACK_COLOR (FRAME_NORMAL_GC (f)));
1429 static void
1430 mac_copy_area_with_mask (src, mask, f, gc, src_x, src_y,
1431 width, height, dest_x, dest_y)
1432 Pixmap src, mask;
1433 struct frame *f;
1434 GC gc;
1435 int src_x, src_y;
1436 unsigned int width, height;
1437 int dest_x, dest_y;
1439 Rect src_r, dest_r;
1441 SetPortWindowPort (FRAME_MAC_WINDOW (f));
1443 SetRect (&src_r, src_x, src_y, src_x + width, src_y + height);
1444 SetRect (&dest_r, dest_x, dest_y, dest_x + width, dest_y + height);
1446 ForeColor (blackColor);
1447 BackColor (whiteColor);
1449 mac_begin_clip (gc);
1450 LockPixels (GetGWorldPixMap (src));
1451 LockPixels (GetGWorldPixMap (mask));
1452 #if TARGET_API_MAC_CARBON
1454 CGrafPtr port;
1456 GetPort (&port);
1457 LockPortBits (port);
1458 CopyMask (GetPortBitMapForCopyBits (src), GetPortBitMapForCopyBits (mask),
1459 GetPortBitMapForCopyBits (port),
1460 &src_r, &src_r, &dest_r);
1461 UnlockPortBits (port);
1463 #else /* not TARGET_API_MAC_CARBON */
1464 CopyMask (&(((GrafPtr)src)->portBits), &(((GrafPtr)mask)->portBits),
1465 &(FRAME_MAC_WINDOW (f)->portBits), &src_r, &src_r, &dest_r);
1466 #endif /* not TARGET_API_MAC_CARBON */
1467 UnlockPixels (GetGWorldPixMap (mask));
1468 UnlockPixels (GetGWorldPixMap (src));
1469 mac_end_clip (gc);
1471 RGBBackColor (GC_BACK_COLOR (FRAME_NORMAL_GC (f)));
1473 #endif /* !USE_CG_DRAWING */
1476 /* Mac replacement for XCopyArea: used only for scrolling. */
1478 static void
1479 mac_scroll_area (f, gc, src_x, src_y, width, height, dest_x, dest_y)
1480 struct frame *f;
1481 GC gc;
1482 int src_x, src_y;
1483 unsigned int width, height;
1484 int dest_x, dest_y;
1486 #if TARGET_API_MAC_CARBON
1487 Rect src_r;
1488 RgnHandle dummy = NewRgn (); /* For avoiding update events. */
1490 SetRect (&src_r, src_x, src_y, src_x + width, src_y + height);
1491 #if USE_CG_DRAWING
1492 mac_prepare_for_quickdraw (f);
1493 #endif
1494 ScrollWindowRect (FRAME_MAC_WINDOW (f),
1495 &src_r, dest_x - src_x, dest_y - src_y,
1496 kScrollWindowNoOptions, dummy);
1497 DisposeRgn (dummy);
1498 #else /* not TARGET_API_MAC_CARBON */
1499 Rect src_r, dest_r;
1500 WindowPtr w = FRAME_MAC_WINDOW (f);
1502 SetPort (w);
1504 SetRect (&src_r, src_x, src_y, src_x + width, src_y + height);
1505 SetRect (&dest_r, dest_x, dest_y, dest_x + width, dest_y + height);
1507 /* In Color QuickDraw, set ForeColor and BackColor as follows to avoid
1508 color mapping in CopyBits. Otherwise, it will be slow. */
1509 ForeColor (blackColor);
1510 BackColor (whiteColor);
1511 mac_begin_clip (gc);
1512 CopyBits (&(w->portBits), &(w->portBits), &src_r, &dest_r, srcCopy, 0);
1513 mac_end_clip (gc);
1515 RGBBackColor (GC_BACK_COLOR (FRAME_NORMAL_GC (f)));
1516 #endif /* not TARGET_API_MAC_CARBON */
1520 /* Mac replacement for XChangeGC. */
1522 static void
1523 XChangeGC (display, gc, mask, xgcv)
1524 Display *display;
1525 GC gc;
1526 unsigned long mask;
1527 XGCValues *xgcv;
1529 if (mask & GCForeground)
1530 XSetForeground (display, gc, xgcv->foreground);
1531 if (mask & GCBackground)
1532 XSetBackground (display, gc, xgcv->background);
1533 if (mask & GCFont)
1534 XSetFont (display, gc, xgcv->font);
1538 /* Mac replacement for XCreateGC. */
1541 XCreateGC (display, window, mask, xgcv)
1542 Display *display;
1543 Window window;
1544 unsigned long mask;
1545 XGCValues *xgcv;
1547 GC gc = xmalloc (sizeof (*gc));
1549 bzero (gc, sizeof (*gc));
1550 XChangeGC (display, gc, mask, xgcv);
1552 return gc;
1556 /* Used in xfaces.c. */
1558 void
1559 XFreeGC (display, gc)
1560 Display *display;
1561 GC gc;
1563 if (gc->clip_region)
1564 DisposeRgn (gc->clip_region);
1565 xfree (gc);
1569 /* Mac replacement for XGetGCValues. */
1571 static void
1572 XGetGCValues (display, gc, mask, xgcv)
1573 Display *display;
1574 GC gc;
1575 unsigned long mask;
1576 XGCValues *xgcv;
1578 if (mask & GCForeground)
1579 xgcv->foreground = gc->xgcv.foreground;
1580 if (mask & GCBackground)
1581 xgcv->background = gc->xgcv.background;
1582 if (mask & GCFont)
1583 xgcv->font = gc->xgcv.font;
1587 /* Mac replacement for XSetForeground. */
1589 void
1590 XSetForeground (display, gc, color)
1591 Display *display;
1592 GC gc;
1593 unsigned long color;
1595 if (gc->xgcv.foreground != color)
1597 gc->xgcv.foreground = color;
1598 gc->fore_color.red = RED16_FROM_ULONG (color);
1599 gc->fore_color.green = GREEN16_FROM_ULONG (color);
1600 gc->fore_color.blue = BLUE16_FROM_ULONG (color);
1605 /* Mac replacement for XSetBackground. */
1607 void
1608 XSetBackground (display, gc, color)
1609 Display *display;
1610 GC gc;
1611 unsigned long color;
1613 if (gc->xgcv.background != color)
1615 gc->xgcv.background = color;
1616 gc->back_color.red = RED16_FROM_ULONG (color);
1617 gc->back_color.green = GREEN16_FROM_ULONG (color);
1618 gc->back_color.blue = BLUE16_FROM_ULONG (color);
1623 /* Mac replacement for XSetFont. */
1625 static void
1626 XSetFont (display, gc, font)
1627 Display *display;
1628 GC gc;
1629 XFontStruct *font;
1631 gc->xgcv.font = font;
1635 /* Mac replacement for XSetClipRectangles. */
1637 static void
1638 mac_set_clip_rectangles (display, gc, rectangles, n)
1639 Display *display;
1640 GC gc;
1641 Rect *rectangles;
1642 int n;
1644 int i;
1646 xassert (n >= 0 && n <= MAX_CLIP_RECTS);
1648 gc->n_clip_rects = n;
1649 if (n > 0)
1651 if (gc->clip_region == NULL)
1652 gc->clip_region = NewRgn ();
1653 RectRgn (gc->clip_region, rectangles);
1654 if (n > 1)
1656 RgnHandle region = NewRgn ();
1658 for (i = 1; i < n; i++)
1660 RectRgn (region, rectangles + i);
1661 UnionRgn (gc->clip_region, region, gc->clip_region);
1663 DisposeRgn (region);
1666 #if defined (MAC_OSX) && (USE_ATSUI || USE_CG_DRAWING)
1667 for (i = 0; i < n; i++)
1669 Rect *rect = rectangles + i;
1671 gc->clip_rects[i] = CGRectMake (rect->left, rect->top,
1672 rect->right - rect->left,
1673 rect->bottom - rect->top);
1675 #endif
1679 /* Mac replacement for XSetClipMask. */
1681 static INLINE void
1682 mac_reset_clip_rectangles (display, gc)
1683 Display *display;
1684 GC gc;
1686 gc->n_clip_rects = 0;
1690 /* Mac replacement for XSetWindowBackground. */
1692 void
1693 XSetWindowBackground (display, w, color)
1694 Display *display;
1695 WindowPtr w;
1696 unsigned long color;
1698 #if !TARGET_API_MAC_CARBON
1699 AuxWinHandle aw_handle;
1700 CTabHandle ctab_handle;
1701 ColorSpecPtr ct_table;
1702 short ct_size;
1703 #endif
1704 RGBColor bg_color;
1706 bg_color.red = RED16_FROM_ULONG (color);
1707 bg_color.green = GREEN16_FROM_ULONG (color);
1708 bg_color.blue = BLUE16_FROM_ULONG (color);
1710 #if TARGET_API_MAC_CARBON
1711 SetWindowContentColor (w, &bg_color);
1712 #else
1713 if (GetAuxWin (w, &aw_handle))
1715 ctab_handle = (*aw_handle)->awCTable;
1716 HandToHand ((Handle *) &ctab_handle);
1717 ct_table = (*ctab_handle)->ctTable;
1718 ct_size = (*ctab_handle)->ctSize;
1719 while (ct_size > -1)
1721 if (ct_table->value == 0)
1723 ct_table->rgb = bg_color;
1724 CTabChanged (ctab_handle);
1725 SetWinColor (w, (WCTabHandle) ctab_handle);
1727 ct_size--;
1730 #endif
1733 /* Flush display of frame F, or of all frames if F is null. */
1735 static void
1736 x_flush (f)
1737 struct frame *f;
1739 #if TARGET_API_MAC_CARBON
1740 BLOCK_INPUT;
1741 #if USE_CG_DRAWING
1742 mac_prepare_for_quickdraw (f);
1743 #endif
1744 if (f)
1745 QDFlushPortBuffer (GetWindowPort (FRAME_MAC_WINDOW (f)), NULL);
1746 else
1747 QDFlushPortBuffer (GetQDGlobalsThePort (), NULL);
1748 UNBLOCK_INPUT;
1749 #endif
1753 /* Remove calls to XFlush by defining XFlush to an empty replacement.
1754 Calls to XFlush should be unnecessary because the X output buffer
1755 is flushed automatically as needed by calls to XPending,
1756 XNextEvent, or XWindowEvent according to the XFlush man page.
1757 XTread_socket calls XPending. Removing XFlush improves
1758 performance. */
1760 #define XFlush(DISPLAY) (void) 0
1763 /* Return the struct mac_display_info corresponding to DPY. There's
1764 only one. */
1766 struct mac_display_info *
1767 mac_display_info_for_display (dpy)
1768 Display *dpy;
1770 return &one_mac_display_info;
1775 /***********************************************************************
1776 Starting and ending an update
1777 ***********************************************************************/
1779 /* Start an update of frame F. This function is installed as a hook
1780 for update_begin, i.e. it is called when update_begin is called.
1781 This function is called prior to calls to x_update_window_begin for
1782 each window being updated. */
1784 static void
1785 x_update_begin (f)
1786 struct frame *f;
1788 #if TARGET_API_MAC_CARBON
1789 /* During update of a frame, availability of input events is
1790 periodically checked with ReceiveNextEvent if
1791 redisplay-dont-pause is nil. That normally flushes window buffer
1792 changes for every check, and thus screen update looks waving even
1793 if no input is available. So we disable screen updates during
1794 update of a frame. */
1795 BLOCK_INPUT;
1796 DisableScreenUpdates ();
1797 UNBLOCK_INPUT;
1798 #endif
1802 /* Start update of window W. Set the global variable updated_window
1803 to the window being updated and set output_cursor to the cursor
1804 position of W. */
1806 static void
1807 x_update_window_begin (w)
1808 struct window *w;
1810 struct frame *f = XFRAME (WINDOW_FRAME (w));
1811 struct mac_display_info *display_info = FRAME_MAC_DISPLAY_INFO (f);
1813 updated_window = w;
1814 set_output_cursor (&w->cursor);
1816 BLOCK_INPUT;
1818 if (f == display_info->mouse_face_mouse_frame)
1820 /* Don't do highlighting for mouse motion during the update. */
1821 display_info->mouse_face_defer = 1;
1823 /* If F needs to be redrawn, simply forget about any prior mouse
1824 highlighting. */
1825 if (FRAME_GARBAGED_P (f))
1826 display_info->mouse_face_window = Qnil;
1828 #if 0 /* Rows in a current matrix containing glyphs in mouse-face have
1829 their mouse_face_p flag set, which means that they are always
1830 unequal to rows in a desired matrix which never have that
1831 flag set. So, rows containing mouse-face glyphs are never
1832 scrolled, and we don't have to switch the mouse highlight off
1833 here to prevent it from being scrolled. */
1835 /* Can we tell that this update does not affect the window
1836 where the mouse highlight is? If so, no need to turn off.
1837 Likewise, don't do anything if the frame is garbaged;
1838 in that case, the frame's current matrix that we would use
1839 is all wrong, and we will redisplay that line anyway. */
1840 if (!NILP (display_info->mouse_face_window)
1841 && w == XWINDOW (display_info->mouse_face_window))
1843 int i;
1845 for (i = 0; i < w->desired_matrix->nrows; ++i)
1846 if (MATRIX_ROW_ENABLED_P (w->desired_matrix, i))
1847 break;
1849 if (i < w->desired_matrix->nrows)
1850 clear_mouse_face (display_info);
1852 #endif /* 0 */
1855 UNBLOCK_INPUT;
1859 /* Draw a vertical window border from (x,y0) to (x,y1) */
1861 static void
1862 mac_draw_vertical_window_border (w, x, y0, y1)
1863 struct window *w;
1864 int x, y0, y1;
1866 struct frame *f = XFRAME (WINDOW_FRAME (w));
1867 struct face *face;
1869 face = FACE_FROM_ID (f, VERTICAL_BORDER_FACE_ID);
1870 if (face)
1871 XSetForeground (FRAME_MAC_DISPLAY (f), f->output_data.mac->normal_gc,
1872 face->foreground);
1874 mac_draw_line (f, f->output_data.mac->normal_gc, x, y0, x, y1);
1877 /* End update of window W (which is equal to updated_window).
1879 Draw vertical borders between horizontally adjacent windows, and
1880 display W's cursor if CURSOR_ON_P is non-zero.
1882 MOUSE_FACE_OVERWRITTEN_P non-zero means that some row containing
1883 glyphs in mouse-face were overwritten. In that case we have to
1884 make sure that the mouse-highlight is properly redrawn.
1886 W may be a menu bar pseudo-window in case we don't have X toolkit
1887 support. Such windows don't have a cursor, so don't display it
1888 here. */
1890 static void
1891 x_update_window_end (w, cursor_on_p, mouse_face_overwritten_p)
1892 struct window *w;
1893 int cursor_on_p, mouse_face_overwritten_p;
1895 struct mac_display_info *dpyinfo = FRAME_MAC_DISPLAY_INFO (XFRAME (w->frame));
1897 if (!w->pseudo_window_p)
1899 BLOCK_INPUT;
1901 if (cursor_on_p)
1902 display_and_set_cursor (w, 1, output_cursor.hpos,
1903 output_cursor.vpos,
1904 output_cursor.x, output_cursor.y);
1906 if (draw_window_fringes (w, 1))
1907 x_draw_vertical_border (w);
1909 UNBLOCK_INPUT;
1912 /* If a row with mouse-face was overwritten, arrange for
1913 XTframe_up_to_date to redisplay the mouse highlight. */
1914 if (mouse_face_overwritten_p)
1916 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
1917 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
1918 dpyinfo->mouse_face_window = Qnil;
1921 updated_window = NULL;
1925 /* End update of frame F. This function is installed as a hook in
1926 update_end. */
1928 static void
1929 x_update_end (f)
1930 struct frame *f;
1932 /* Mouse highlight may be displayed again. */
1933 FRAME_MAC_DISPLAY_INFO (f)->mouse_face_defer = 0;
1935 BLOCK_INPUT;
1936 #if TARGET_API_MAC_CARBON
1937 EnableScreenUpdates ();
1938 #endif
1939 XFlush (FRAME_MAC_DISPLAY (f));
1940 UNBLOCK_INPUT;
1944 /* This function is called from various places in xdisp.c whenever a
1945 complete update has been performed. The global variable
1946 updated_window is not available here. */
1948 static void
1949 XTframe_up_to_date (f)
1950 struct frame *f;
1952 if (FRAME_MAC_P (f))
1954 struct mac_display_info *dpyinfo = FRAME_MAC_DISPLAY_INFO (f);
1956 if (dpyinfo->mouse_face_deferred_gc
1957 || f == dpyinfo->mouse_face_mouse_frame)
1959 BLOCK_INPUT;
1960 if (dpyinfo->mouse_face_mouse_frame)
1961 note_mouse_highlight (dpyinfo->mouse_face_mouse_frame,
1962 dpyinfo->mouse_face_mouse_x,
1963 dpyinfo->mouse_face_mouse_y);
1964 dpyinfo->mouse_face_deferred_gc = 0;
1965 UNBLOCK_INPUT;
1971 /* Draw truncation mark bitmaps, continuation mark bitmaps, overlay
1972 arrow bitmaps, or clear the fringes if no bitmaps are required
1973 before DESIRED_ROW is made current. The window being updated is
1974 found in updated_window. This function is called from
1975 update_window_line only if it is known that there are differences
1976 between bitmaps to be drawn between current row and DESIRED_ROW. */
1978 static void
1979 x_after_update_window_line (desired_row)
1980 struct glyph_row *desired_row;
1982 struct window *w = updated_window;
1983 struct frame *f;
1984 int width, height;
1986 xassert (w);
1988 if (!desired_row->mode_line_p && !w->pseudo_window_p)
1989 desired_row->redraw_fringe_bitmaps_p = 1;
1991 /* When a window has disappeared, make sure that no rest of
1992 full-width rows stays visible in the internal border. Could
1993 check here if updated_window is the leftmost/rightmost window,
1994 but I guess it's not worth doing since vertically split windows
1995 are almost never used, internal border is rarely set, and the
1996 overhead is very small. */
1997 if (windows_or_buffers_changed
1998 && desired_row->full_width_p
1999 && (f = XFRAME (w->frame),
2000 width = FRAME_INTERNAL_BORDER_WIDTH (f),
2001 width != 0)
2002 && (height = desired_row->visible_height,
2003 height > 0))
2005 int y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, desired_row->y));
2007 /* Internal border is drawn below the tool bar. */
2008 if (WINDOWP (f->tool_bar_window)
2009 && w == XWINDOW (f->tool_bar_window))
2010 y -= width;
2012 BLOCK_INPUT;
2013 mac_clear_area (f, 0, y, width, height);
2014 mac_clear_area (f, FRAME_PIXEL_WIDTH (f) - width, y, width, height);
2015 UNBLOCK_INPUT;
2020 /* Draw the bitmap WHICH in one of the left or right fringes of
2021 window W. ROW is the glyph row for which to display the bitmap; it
2022 determines the vertical position at which the bitmap has to be
2023 drawn. */
2025 static void
2026 x_draw_fringe_bitmap (w, row, p)
2027 struct window *w;
2028 struct glyph_row *row;
2029 struct draw_fringe_bitmap_params *p;
2031 struct frame *f = XFRAME (WINDOW_FRAME (w));
2032 Display *display = FRAME_MAC_DISPLAY (f);
2033 struct face *face = p->face;
2034 int rowY;
2036 /* Must clip because of partially visible lines. */
2037 rowY = WINDOW_TO_FRAME_PIXEL_Y (w, row->y);
2038 if (p->y < rowY)
2040 /* Adjust position of "bottom aligned" bitmap on partially
2041 visible last row. */
2042 int oldY = row->y;
2043 int oldVH = row->visible_height;
2044 row->visible_height = p->h;
2045 row->y -= rowY - p->y;
2046 x_clip_to_row (w, row, -1, face->gc);
2047 row->y = oldY;
2048 row->visible_height = oldVH;
2050 else
2051 x_clip_to_row (w, row, -1, face->gc);
2053 if (p->bx >= 0 && !p->overlay_p)
2055 #if 0 /* MAC_TODO: stipple */
2056 /* In case the same realized face is used for fringes and
2057 for something displayed in the text (e.g. face `region' on
2058 mono-displays, the fill style may have been changed to
2059 FillSolid in x_draw_glyph_string_background. */
2060 if (face->stipple)
2061 XSetFillStyle (FRAME_X_DISPLAY (f), face->gc, FillOpaqueStippled);
2062 else
2063 XSetForeground (FRAME_X_DISPLAY (f), face->gc, face->background);
2064 #endif
2066 mac_erase_rectangle (f, face->gc, p->bx, p->by, p->nx, p->ny);
2068 #if 0 /* MAC_TODO: stipple */
2069 if (!face->stipple)
2070 XSetForeground (FRAME_X_DISPLAY (f), face->gc, face->foreground);
2071 #endif
2074 if (p->which
2075 #if USE_CG_DRAWING
2076 && p->which < max_fringe_bmp
2077 #endif
2080 XGCValues gcv;
2082 XGetGCValues (display, face->gc, GCForeground, &gcv);
2083 XSetForeground (display, face->gc,
2084 (p->cursor_p
2085 ? (p->overlay_p ? face->background
2086 : f->output_data.mac->cursor_pixel)
2087 : face->foreground));
2088 #if USE_CG_DRAWING
2089 mac_draw_cg_image (fringe_bmp[p->which], f, face->gc, 0, p->dh,
2090 p->wd, p->h, p->x, p->y, p->overlay_p);
2091 #else
2092 mac_draw_bitmap (f, face->gc, p->x, p->y,
2093 p->wd, p->h, p->bits + p->dh, p->overlay_p);
2094 #endif
2095 XSetForeground (display, face->gc, gcv.foreground);
2098 mac_reset_clip_rectangles (display, face->gc);
2101 #if USE_CG_DRAWING
2102 static void
2103 mac_define_fringe_bitmap (which, bits, h, wd)
2104 int which;
2105 unsigned short *bits;
2106 int h, wd;
2108 int i;
2109 CGDataProviderRef provider;
2111 if (which >= max_fringe_bmp)
2113 i = max_fringe_bmp;
2114 max_fringe_bmp = which + 20;
2115 fringe_bmp = (CGImageRef *) xrealloc (fringe_bmp, max_fringe_bmp * sizeof (CGImageRef));
2116 while (i < max_fringe_bmp)
2117 fringe_bmp[i++] = 0;
2120 for (i = 0; i < h; i++)
2121 bits[i] = ~bits[i];
2122 provider = CGDataProviderCreateWithData (NULL, bits,
2123 sizeof (unsigned short) * h, NULL);
2124 if (provider)
2126 fringe_bmp[which] = CGImageMaskCreate (wd, h, 1, 1,
2127 sizeof (unsigned short),
2128 provider, NULL, 0);
2129 CGDataProviderRelease (provider);
2133 static void
2134 mac_destroy_fringe_bitmap (which)
2135 int which;
2137 if (which >= max_fringe_bmp)
2138 return;
2140 if (fringe_bmp[which])
2141 CGImageRelease (fringe_bmp[which]);
2142 fringe_bmp[which] = 0;
2144 #endif
2147 /* This is called when starting Emacs and when restarting after
2148 suspend. When starting Emacs, no window is mapped. And nothing
2149 must be done to Emacs's own window if it is suspended (though that
2150 rarely happens). */
2152 static void
2153 XTset_terminal_modes ()
2157 /* This is called when exiting or suspending Emacs. Exiting will make
2158 the windows go away, and suspending requires no action. */
2160 static void
2161 XTreset_terminal_modes ()
2167 /***********************************************************************
2168 Display Iterator
2169 ***********************************************************************/
2171 /* Function prototypes of this page. */
2173 static XCharStruct *x_per_char_metric P_ ((XFontStruct *, XChar2b *));
2174 static int mac_encode_char P_ ((int, XChar2b *, struct font_info *, int *));
2177 static void
2178 pcm_init (pcm, count)
2179 XCharStruct *pcm;
2180 int count;
2182 bzero (pcm, sizeof (XCharStruct) * count);
2183 while (--count >= 0)
2185 pcm->descent = PCM_INVALID;
2186 pcm++;
2190 static enum pcm_status
2191 pcm_get_status (pcm)
2192 XCharStruct *pcm;
2194 int height = pcm->ascent + pcm->descent;
2196 /* Negative height means some special status. */
2197 return height >= 0 ? PCM_VALID : height;
2200 /* Get metrics of character CHAR2B in FONT. Value is null if CHAR2B
2201 is not contained in the font. */
2203 static INLINE XCharStruct *
2204 x_per_char_metric (font, char2b)
2205 XFontStruct *font;
2206 XChar2b *char2b;
2208 /* The result metric information. */
2209 XCharStruct *pcm = NULL;
2211 xassert (font && char2b);
2213 #if USE_ATSUI
2214 if (font->mac_style)
2216 XCharStruct **row = font->bounds.rows + char2b->byte1;
2218 if (*row == NULL)
2220 *row = xmalloc (sizeof (XCharStruct) * 0x100);
2221 pcm_init (*row, 0x100);
2223 pcm = *row + char2b->byte2;
2224 if (pcm_get_status (pcm) != PCM_VALID)
2226 BLOCK_INPUT;
2227 mac_query_char_extents (font->mac_style,
2228 (char2b->byte1 << 8) + char2b->byte2,
2229 NULL, NULL, pcm, NULL);
2230 UNBLOCK_INPUT;
2233 else
2235 #endif
2236 if (font->bounds.per_char != NULL)
2238 if (font->min_byte1 == 0 && font->max_byte1 == 0)
2240 /* min_char_or_byte2 specifies the linear character index
2241 corresponding to the first element of the per_char array,
2242 max_char_or_byte2 is the index of the last character. A
2243 character with non-zero CHAR2B->byte1 is not in the font.
2244 A character with byte2 less than min_char_or_byte2 or
2245 greater max_char_or_byte2 is not in the font. */
2246 if (char2b->byte1 == 0
2247 && char2b->byte2 >= font->min_char_or_byte2
2248 && char2b->byte2 <= font->max_char_or_byte2)
2249 pcm = font->bounds.per_char
2250 + (char2b->byte2 - font->min_char_or_byte2);
2252 else
2254 /* If either min_byte1 or max_byte1 are nonzero, both
2255 min_char_or_byte2 and max_char_or_byte2 are less than
2256 256, and the 2-byte character index values corresponding
2257 to the per_char array element N (counting from 0) are:
2259 byte1 = N/D + min_byte1
2260 byte2 = N\D + min_char_or_byte2
2262 where:
2264 D = max_char_or_byte2 - min_char_or_byte2 + 1
2265 / = integer division
2266 \ = integer modulus */
2267 if (char2b->byte1 >= font->min_byte1
2268 && char2b->byte1 <= font->max_byte1
2269 && char2b->byte2 >= font->min_char_or_byte2
2270 && char2b->byte2 <= font->max_char_or_byte2)
2272 pcm = (font->bounds.per_char
2273 + ((font->max_char_or_byte2 - font->min_char_or_byte2 + 1)
2274 * (char2b->byte1 - font->min_byte1))
2275 + (char2b->byte2 - font->min_char_or_byte2));
2279 else
2281 /* If the per_char pointer is null, all glyphs between the first
2282 and last character indexes inclusive have the same
2283 information, as given by both min_bounds and max_bounds. */
2284 if (char2b->byte2 >= font->min_char_or_byte2
2285 && char2b->byte2 <= font->max_char_or_byte2)
2286 pcm = &font->max_bounds;
2288 #if USE_ATSUI
2290 #endif
2292 return ((pcm == NULL
2293 || (pcm->width == 0
2294 #if 0 /* Show hollow boxes for zero-width glyphs such as combining diacritics. */
2295 && (pcm->rbearing - pcm->lbearing) == 0
2296 #endif
2298 ? NULL : pcm);
2301 /* RIF:
2304 static XCharStruct *
2305 mac_per_char_metric (font, char2b, font_type)
2306 XFontStruct *font;
2307 XChar2b *char2b;
2308 int font_type;
2310 return x_per_char_metric (font, char2b);
2313 /* RIF:
2314 Encode CHAR2B using encoding information from FONT_INFO. CHAR2B is
2315 the two-byte form of C. Encoding is returned in *CHAR2B. */
2317 static int
2318 mac_encode_char (c, char2b, font_info, two_byte_p)
2319 int c;
2320 XChar2b *char2b;
2321 struct font_info *font_info;
2322 int *two_byte_p;
2324 int charset = CHAR_CHARSET (c);
2325 XFontStruct *font = font_info->font;
2327 /* FONT_INFO may define a scheme by which to encode byte1 and byte2.
2328 This may be either a program in a special encoder language or a
2329 fixed encoding. */
2330 if (font_info->font_encoder)
2332 /* It's a program. */
2333 struct ccl_program *ccl = font_info->font_encoder;
2335 check_ccl_update (ccl);
2336 if (CHARSET_DIMENSION (charset) == 1)
2338 ccl->reg[0] = charset;
2339 ccl->reg[1] = char2b->byte2;
2340 ccl->reg[2] = -1;
2342 else
2344 ccl->reg[0] = charset;
2345 ccl->reg[1] = char2b->byte1;
2346 ccl->reg[2] = char2b->byte2;
2349 ccl_driver (ccl, NULL, NULL, 0, 0, NULL);
2351 /* We assume that MSBs are appropriately set/reset by CCL
2352 program. */
2353 if (font->max_byte1 == 0) /* 1-byte font */
2354 char2b->byte1 = 0, char2b->byte2 = ccl->reg[1];
2355 else
2356 char2b->byte1 = ccl->reg[1], char2b->byte2 = ccl->reg[2];
2358 else if (font_info->encoding[charset])
2360 /* Fixed encoding scheme. See fontset.h for the meaning of the
2361 encoding numbers. */
2362 int enc = font_info->encoding[charset];
2364 if ((enc == 1 || enc == 2)
2365 && CHARSET_DIMENSION (charset) == 2)
2366 char2b->byte1 |= 0x80;
2368 if (enc == 1 || enc == 3)
2369 char2b->byte2 |= 0x80;
2371 if (enc == 4)
2373 int sjis1, sjis2;
2375 ENCODE_SJIS (char2b->byte1, char2b->byte2, sjis1, sjis2);
2376 char2b->byte1 = sjis1;
2377 char2b->byte2 = sjis2;
2381 if (two_byte_p)
2382 *two_byte_p = ((XFontStruct *) (font_info->font))->max_byte1 > 0;
2384 return FONT_TYPE_UNKNOWN;
2389 /***********************************************************************
2390 Glyph display
2391 ***********************************************************************/
2395 static void x_set_glyph_string_clipping P_ ((struct glyph_string *));
2396 static void x_set_glyph_string_gc P_ ((struct glyph_string *));
2397 static void x_draw_glyph_string_background P_ ((struct glyph_string *,
2398 int));
2399 static void x_draw_glyph_string_foreground P_ ((struct glyph_string *));
2400 static void x_draw_composite_glyph_string_foreground P_ ((struct glyph_string *));
2401 static void x_draw_glyph_string_box P_ ((struct glyph_string *));
2402 static void x_draw_glyph_string P_ ((struct glyph_string *));
2403 static void mac_compute_glyph_string_overhangs P_ ((struct glyph_string *));
2404 static void x_set_cursor_gc P_ ((struct glyph_string *));
2405 static void x_set_mode_line_face_gc P_ ((struct glyph_string *));
2406 static void x_set_mouse_face_gc P_ ((struct glyph_string *));
2407 /*static int x_alloc_lighter_color P_ ((struct frame *, Display *, Colormap,
2408 unsigned long *, double, int));*/
2409 static void x_setup_relief_color P_ ((struct frame *, struct relief *,
2410 double, int, unsigned long));
2411 static void x_setup_relief_colors P_ ((struct glyph_string *));
2412 static void x_draw_image_glyph_string P_ ((struct glyph_string *));
2413 static void x_draw_image_relief P_ ((struct glyph_string *));
2414 static void x_draw_image_foreground P_ ((struct glyph_string *));
2415 static void x_clear_glyph_string_rect P_ ((struct glyph_string *, int,
2416 int, int, int));
2417 static void x_draw_relief_rect P_ ((struct frame *, int, int, int, int,
2418 int, int, int, int, int, int,
2419 Rect *));
2420 static void x_draw_box_rect P_ ((struct glyph_string *, int, int, int, int,
2421 int, int, int, Rect *));
2423 #if GLYPH_DEBUG
2424 static void x_check_font P_ ((struct frame *, XFontStruct *));
2425 #endif
2428 /* Set S->gc to a suitable GC for drawing glyph string S in cursor
2429 face. */
2431 static void
2432 x_set_cursor_gc (s)
2433 struct glyph_string *s;
2435 if (s->font == FRAME_FONT (s->f)
2436 && s->face->background == FRAME_BACKGROUND_PIXEL (s->f)
2437 && s->face->foreground == FRAME_FOREGROUND_PIXEL (s->f)
2438 && !s->cmp)
2439 s->gc = s->f->output_data.mac->cursor_gc;
2440 else
2442 /* Cursor on non-default face: must merge. */
2443 XGCValues xgcv;
2444 unsigned long mask;
2446 xgcv.background = s->f->output_data.mac->cursor_pixel;
2447 xgcv.foreground = s->face->background;
2449 /* If the glyph would be invisible, try a different foreground. */
2450 if (xgcv.foreground == xgcv.background)
2451 xgcv.foreground = s->face->foreground;
2452 if (xgcv.foreground == xgcv.background)
2453 xgcv.foreground = s->f->output_data.mac->cursor_foreground_pixel;
2454 if (xgcv.foreground == xgcv.background)
2455 xgcv.foreground = s->face->foreground;
2457 /* Make sure the cursor is distinct from text in this face. */
2458 if (xgcv.background == s->face->background
2459 && xgcv.foreground == s->face->foreground)
2461 xgcv.background = s->face->foreground;
2462 xgcv.foreground = s->face->background;
2465 IF_DEBUG (x_check_font (s->f, s->font));
2466 xgcv.font = s->font;
2467 mask = GCForeground | GCBackground | GCFont;
2469 if (FRAME_MAC_DISPLAY_INFO (s->f)->scratch_cursor_gc)
2470 XChangeGC (s->display, FRAME_MAC_DISPLAY_INFO (s->f)->scratch_cursor_gc,
2471 mask, &xgcv);
2472 else
2473 FRAME_MAC_DISPLAY_INFO (s->f)->scratch_cursor_gc
2474 = XCreateGC (s->display, s->window, mask, &xgcv);
2476 s->gc = FRAME_MAC_DISPLAY_INFO (s->f)->scratch_cursor_gc;
2481 /* Set up S->gc of glyph string S for drawing text in mouse face. */
2483 static void
2484 x_set_mouse_face_gc (s)
2485 struct glyph_string *s;
2487 int face_id;
2488 struct face *face;
2490 /* What face has to be used last for the mouse face? */
2491 face_id = FRAME_X_DISPLAY_INFO (s->f)->mouse_face_face_id;
2492 face = FACE_FROM_ID (s->f, face_id);
2493 if (face == NULL)
2494 face = FACE_FROM_ID (s->f, MOUSE_FACE_ID);
2496 if (s->first_glyph->type == CHAR_GLYPH)
2497 face_id = FACE_FOR_CHAR (s->f, face, s->first_glyph->u.ch);
2498 else
2499 face_id = FACE_FOR_CHAR (s->f, face, 0);
2500 s->face = FACE_FROM_ID (s->f, face_id);
2501 PREPARE_FACE_FOR_DISPLAY (s->f, s->face);
2503 /* If font in this face is same as S->font, use it. */
2504 if (s->font == s->face->font)
2505 s->gc = s->face->gc;
2506 else
2508 /* Otherwise construct scratch_cursor_gc with values from FACE
2509 but font FONT. */
2510 XGCValues xgcv;
2511 unsigned long mask;
2513 xgcv.background = s->face->background;
2514 xgcv.foreground = s->face->foreground;
2515 IF_DEBUG (x_check_font (s->f, s->font));
2516 xgcv.font = s->font;
2517 mask = GCForeground | GCBackground | GCFont;
2519 if (FRAME_MAC_DISPLAY_INFO (s->f)->scratch_cursor_gc)
2520 XChangeGC (s->display, FRAME_MAC_DISPLAY_INFO (s->f)->scratch_cursor_gc,
2521 mask, &xgcv);
2522 else
2523 FRAME_MAC_DISPLAY_INFO (s->f)->scratch_cursor_gc
2524 = XCreateGC (s->display, s->window, mask, &xgcv);
2526 s->gc = FRAME_MAC_DISPLAY_INFO (s->f)->scratch_cursor_gc;
2529 xassert (s->gc != 0);
2533 /* Set S->gc of glyph string S to a GC suitable for drawing a mode line.
2534 Faces to use in the mode line have already been computed when the
2535 matrix was built, so there isn't much to do, here. */
2537 static INLINE void
2538 x_set_mode_line_face_gc (s)
2539 struct glyph_string *s;
2541 s->gc = s->face->gc;
2545 /* Set S->gc of glyph string S for drawing that glyph string. Set
2546 S->stippled_p to a non-zero value if the face of S has a stipple
2547 pattern. */
2549 static INLINE void
2550 x_set_glyph_string_gc (s)
2551 struct glyph_string *s;
2553 PREPARE_FACE_FOR_DISPLAY (s->f, s->face);
2555 if (s->hl == DRAW_NORMAL_TEXT)
2557 s->gc = s->face->gc;
2558 s->stippled_p = s->face->stipple != 0;
2560 else if (s->hl == DRAW_INVERSE_VIDEO)
2562 x_set_mode_line_face_gc (s);
2563 s->stippled_p = s->face->stipple != 0;
2565 else if (s->hl == DRAW_CURSOR)
2567 x_set_cursor_gc (s);
2568 s->stippled_p = 0;
2570 else if (s->hl == DRAW_MOUSE_FACE)
2572 x_set_mouse_face_gc (s);
2573 s->stippled_p = s->face->stipple != 0;
2575 else if (s->hl == DRAW_IMAGE_RAISED
2576 || s->hl == DRAW_IMAGE_SUNKEN)
2578 s->gc = s->face->gc;
2579 s->stippled_p = s->face->stipple != 0;
2581 else
2583 s->gc = s->face->gc;
2584 s->stippled_p = s->face->stipple != 0;
2587 /* GC must have been set. */
2588 xassert (s->gc != 0);
2592 /* Set clipping for output of glyph string S. S may be part of a mode
2593 line or menu if we don't have X toolkit support. */
2595 static INLINE void
2596 x_set_glyph_string_clipping (s)
2597 struct glyph_string *s;
2599 Rect rects[MAX_CLIP_RECTS];
2600 int n;
2602 n = get_glyph_string_clip_rects (s, rects, MAX_CLIP_RECTS);
2603 mac_set_clip_rectangles (s->display, s->gc, rects, n);
2607 /* RIF:
2608 Compute left and right overhang of glyph string S. If S is a glyph
2609 string for a composition, assume overhangs don't exist. */
2611 static void
2612 mac_compute_glyph_string_overhangs (s)
2613 struct glyph_string *s;
2615 if (!(s->cmp == NULL
2616 && s->first_glyph->type == CHAR_GLYPH))
2617 return;
2619 if (!s->two_byte_p
2620 #if USE_ATSUI
2621 || s->font->mac_style
2622 #endif
2625 XCharStruct cs;
2627 mac_text_extents_16 (s->font, s->char2b, s->nchars, &cs);
2628 s->right_overhang = cs.rbearing > cs.width ? cs.rbearing - cs.width : 0;
2629 s->left_overhang = cs.lbearing < 0 ? -cs.lbearing : 0;
2631 else
2633 Rect r;
2634 MacFontStruct *font = s->font;
2636 TextFont (font->mac_fontnum);
2637 TextSize (font->mac_fontsize);
2638 TextFace (font->mac_fontface);
2640 QDTextBounds (s->nchars * 2, (char *)s->char2b, &r);
2642 s->right_overhang = r.right > s->width ? r.right - s->width : 0;
2643 s->left_overhang = r.left < 0 ? -r.left : 0;
2648 /* Fill rectangle X, Y, W, H with background color of glyph string S. */
2650 static INLINE void
2651 x_clear_glyph_string_rect (s, x, y, w, h)
2652 struct glyph_string *s;
2653 int x, y, w, h;
2655 mac_erase_rectangle (s->f, s->gc, x, y, w, h);
2659 /* Draw the background of glyph_string S. If S->background_filled_p
2660 is non-zero don't draw it. FORCE_P non-zero means draw the
2661 background even if it wouldn't be drawn normally. This is used
2662 when a string preceding S draws into the background of S, or S
2663 contains the first component of a composition. */
2665 static void
2666 x_draw_glyph_string_background (s, force_p)
2667 struct glyph_string *s;
2668 int force_p;
2670 /* Nothing to do if background has already been drawn or if it
2671 shouldn't be drawn in the first place. */
2672 if (!s->background_filled_p)
2674 int box_line_width = max (s->face->box_line_width, 0);
2676 #if 0 /* MAC_TODO: stipple */
2677 if (s->stippled_p)
2679 /* Fill background with a stipple pattern. */
2680 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
2681 XFillRectangle (s->display, s->window, s->gc, s->x,
2682 s->y + box_line_width,
2683 s->background_width,
2684 s->height - 2 * box_line_width);
2685 XSetFillStyle (s->display, s->gc, FillSolid);
2686 s->background_filled_p = 1;
2688 else
2689 #endif
2690 if (FONT_HEIGHT (s->font) < s->height - 2 * box_line_width
2691 || s->font_not_found_p
2692 || s->extends_to_end_of_line_p
2693 || force_p)
2695 x_clear_glyph_string_rect (s, s->x, s->y + box_line_width,
2696 s->background_width,
2697 s->height - 2 * box_line_width);
2698 s->background_filled_p = 1;
2704 /* Draw the foreground of glyph string S. */
2706 static void
2707 x_draw_glyph_string_foreground (s)
2708 struct glyph_string *s;
2710 int i, x, bg_width;
2712 /* If first glyph of S has a left box line, start drawing the text
2713 of S to the right of that box line. */
2714 if (s->face->box != FACE_NO_BOX
2715 && s->first_glyph->left_box_line_p)
2716 x = s->x + abs (s->face->box_line_width);
2717 else
2718 x = s->x;
2720 /* Draw characters of S as rectangles if S's font could not be
2721 loaded. */
2722 if (s->font_not_found_p)
2724 for (i = 0; i < s->nchars; ++i)
2726 struct glyph *g = s->first_glyph + i;
2727 mac_draw_rectangle (s->f, s->gc, x, s->y,
2728 g->pixel_width - 1, s->height - 1);
2729 x += g->pixel_width;
2732 else
2734 char *char1b = (char *) s->char2b;
2735 int boff = s->font_info->baseline_offset;
2737 if (s->font_info->vertical_centering)
2738 boff = VCENTER_BASELINE_OFFSET (s->font, s->f) - boff;
2740 /* If we can use 8-bit functions, condense S->char2b. */
2741 if (!s->two_byte_p
2742 #if USE_ATSUI
2743 && GC_FONT (s->gc)->mac_style == NULL
2744 #endif
2746 for (i = 0; i < s->nchars; ++i)
2747 char1b[i] = s->char2b[i].byte2;
2749 /* Draw text with XDrawString if background has already been
2750 filled. Otherwise, use XDrawImageString. (Note that
2751 XDrawImageString is usually faster than XDrawString.) Always
2752 use XDrawImageString when drawing the cursor so that there is
2753 no chance that characters under a box cursor are invisible. */
2754 if (s->for_overlaps
2755 || (s->background_filled_p && s->hl != DRAW_CURSOR))
2756 bg_width = 0; /* Corresponds to XDrawString. */
2757 else
2758 bg_width = s->background_width; /* Corresponds to XDrawImageString. */
2760 if (s->two_byte_p
2761 #if USE_ATSUI
2762 || GC_FONT (s->gc)->mac_style
2763 #endif
2765 #if USE_CG_TEXT_DRAWING
2766 if (!s->two_byte_p
2767 && mac_draw_image_string_cg (s->f, s->gc, x, s->ybase - boff,
2768 s->char2b, s->nchars, bg_width))
2770 else
2771 #endif
2772 mac_draw_image_string_16 (s->f, s->gc, x, s->ybase - boff,
2773 s->char2b, s->nchars, bg_width);
2774 else
2775 mac_draw_image_string (s->f, s->gc, x, s->ybase - boff,
2776 char1b, s->nchars, bg_width);
2780 /* Draw the foreground of composite glyph string S. */
2782 static void
2783 x_draw_composite_glyph_string_foreground (s)
2784 struct glyph_string *s;
2786 int i, x;
2788 /* If first glyph of S has a left box line, start drawing the text
2789 of S to the right of that box line. */
2790 if (s->face->box != FACE_NO_BOX
2791 && s->first_glyph->left_box_line_p)
2792 x = s->x + abs (s->face->box_line_width);
2793 else
2794 x = s->x;
2796 /* S is a glyph string for a composition. S->gidx is the index of
2797 the first character drawn for glyphs of this composition.
2798 S->gidx == 0 means we are drawing the very first character of
2799 this composition. */
2801 /* Draw a rectangle for the composition if the font for the very
2802 first character of the composition could not be loaded. */
2803 if (s->font_not_found_p)
2805 if (s->gidx == 0)
2806 mac_draw_rectangle (s->f, s->gc, x, s->y,
2807 s->width - 1, s->height - 1);
2809 else
2811 for (i = 0; i < s->nchars; i++, ++s->gidx)
2812 mac_draw_string_16 (s->f, s->gc,
2813 x + s->cmp->offsets[s->gidx * 2],
2814 s->ybase - s->cmp->offsets[s->gidx * 2 + 1],
2815 s->char2b + i, 1);
2820 #ifdef USE_X_TOOLKIT
2822 static struct frame *x_frame_of_widget P_ ((Widget));
2825 /* Return the frame on which widget WIDGET is used.. Abort if frame
2826 cannot be determined. */
2828 static struct frame *
2829 x_frame_of_widget (widget)
2830 Widget widget;
2832 struct x_display_info *dpyinfo;
2833 Lisp_Object tail;
2834 struct frame *f;
2836 dpyinfo = x_display_info_for_display (XtDisplay (widget));
2838 /* Find the top-level shell of the widget. Note that this function
2839 can be called when the widget is not yet realized, so XtWindow
2840 (widget) == 0. That's the reason we can't simply use
2841 x_any_window_to_frame. */
2842 while (!XtIsTopLevelShell (widget))
2843 widget = XtParent (widget);
2845 /* Look for a frame with that top-level widget. Allocate the color
2846 on that frame to get the right gamma correction value. */
2847 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
2848 if (GC_FRAMEP (XCAR (tail))
2849 && (f = XFRAME (XCAR (tail)),
2850 (f->output_data.nothing != 1
2851 && FRAME_X_DISPLAY_INFO (f) == dpyinfo))
2852 && f->output_data.x->widget == widget)
2853 return f;
2855 abort ();
2859 /* Allocate the color COLOR->pixel on the screen and display of
2860 widget WIDGET in colormap CMAP. If an exact match cannot be
2861 allocated, try the nearest color available. Value is non-zero
2862 if successful. This is called from lwlib. */
2865 x_alloc_nearest_color_for_widget (widget, cmap, color)
2866 Widget widget;
2867 Colormap cmap;
2868 XColor *color;
2870 struct frame *f = x_frame_of_widget (widget);
2871 return x_alloc_nearest_color (f, cmap, color);
2875 #endif /* USE_X_TOOLKIT */
2877 #if 0 /* MAC_TODO */
2879 /* Allocate the color COLOR->pixel on SCREEN of DISPLAY, colormap
2880 CMAP. If an exact match can't be allocated, try the nearest color
2881 available. Value is non-zero if successful. Set *COLOR to the
2882 color allocated. */
2885 x_alloc_nearest_color (f, cmap, color)
2886 struct frame *f;
2887 Colormap cmap;
2888 XColor *color;
2890 Display *display = FRAME_X_DISPLAY (f);
2891 Screen *screen = FRAME_X_SCREEN (f);
2892 int rc;
2894 gamma_correct (f, color);
2895 rc = XAllocColor (display, cmap, color);
2896 if (rc == 0)
2898 /* If we got to this point, the colormap is full, so we're going
2899 to try to get the next closest color. The algorithm used is
2900 a least-squares matching, which is what X uses for closest
2901 color matching with StaticColor visuals. */
2902 int nearest, i;
2903 unsigned long nearest_delta = ~0;
2904 int ncells = XDisplayCells (display, XScreenNumberOfScreen (screen));
2905 XColor *cells = (XColor *) alloca (ncells * sizeof *cells);
2907 for (i = 0; i < ncells; ++i)
2908 cells[i].pixel = i;
2909 XQueryColors (display, cmap, cells, ncells);
2911 for (nearest = i = 0; i < ncells; ++i)
2913 long dred = (color->red >> 8) - (cells[i].red >> 8);
2914 long dgreen = (color->green >> 8) - (cells[i].green >> 8);
2915 long dblue = (color->blue >> 8) - (cells[i].blue >> 8);
2916 unsigned long delta = dred * dred + dgreen * dgreen + dblue * dblue;
2918 if (delta < nearest_delta)
2920 nearest = i;
2921 nearest_delta = delta;
2925 color->red = cells[nearest].red;
2926 color->green = cells[nearest].green;
2927 color->blue = cells[nearest].blue;
2928 rc = XAllocColor (display, cmap, color);
2931 #ifdef DEBUG_X_COLORS
2932 if (rc)
2933 register_color (color->pixel);
2934 #endif /* DEBUG_X_COLORS */
2936 return rc;
2940 /* Allocate color PIXEL on frame F. PIXEL must already be allocated.
2941 It's necessary to do this instead of just using PIXEL directly to
2942 get color reference counts right. */
2944 unsigned long
2945 x_copy_color (f, pixel)
2946 struct frame *f;
2947 unsigned long pixel;
2949 XColor color;
2951 color.pixel = pixel;
2952 BLOCK_INPUT;
2953 XQueryColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f), &color);
2954 XAllocColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f), &color);
2955 UNBLOCK_INPUT;
2956 #ifdef DEBUG_X_COLORS
2957 register_color (pixel);
2958 #endif
2959 return color.pixel;
2963 /* Allocate color PIXEL on display DPY. PIXEL must already be allocated.
2964 It's necessary to do this instead of just using PIXEL directly to
2965 get color reference counts right. */
2967 unsigned long
2968 x_copy_dpy_color (dpy, cmap, pixel)
2969 Display *dpy;
2970 Colormap cmap;
2971 unsigned long pixel;
2973 XColor color;
2975 color.pixel = pixel;
2976 BLOCK_INPUT;
2977 XQueryColor (dpy, cmap, &color);
2978 XAllocColor (dpy, cmap, &color);
2979 UNBLOCK_INPUT;
2980 #ifdef DEBUG_X_COLORS
2981 register_color (pixel);
2982 #endif
2983 return color.pixel;
2986 #endif /* MAC_TODO */
2989 /* Brightness beyond which a color won't have its highlight brightness
2990 boosted.
2992 Nominally, highlight colors for `3d' faces are calculated by
2993 brightening an object's color by a constant scale factor, but this
2994 doesn't yield good results for dark colors, so for colors who's
2995 brightness is less than this value (on a scale of 0-255) have to
2996 use an additional additive factor.
2998 The value here is set so that the default menu-bar/mode-line color
2999 (grey75) will not have its highlights changed at all. */
3000 #define HIGHLIGHT_COLOR_DARK_BOOST_LIMIT 187
3003 /* Allocate a color which is lighter or darker than *COLOR by FACTOR
3004 or DELTA. Try a color with RGB values multiplied by FACTOR first.
3005 If this produces the same color as COLOR, try a color where all RGB
3006 values have DELTA added. Return the allocated color in *COLOR.
3007 DISPLAY is the X display, CMAP is the colormap to operate on.
3008 Value is non-zero if successful. */
3010 static int
3011 mac_alloc_lighter_color (f, color, factor, delta)
3012 struct frame *f;
3013 unsigned long *color;
3014 double factor;
3015 int delta;
3017 unsigned long new;
3018 long bright;
3020 /* On Mac, RGB values are 0-255, not 0-65535, so scale delta. */
3021 delta /= 256;
3023 /* Change RGB values by specified FACTOR. Avoid overflow! */
3024 xassert (factor >= 0);
3025 new = RGB_TO_ULONG (min (0xff, (int) (factor * RED_FROM_ULONG (*color))),
3026 min (0xff, (int) (factor * GREEN_FROM_ULONG (*color))),
3027 min (0xff, (int) (factor * BLUE_FROM_ULONG (*color))));
3029 /* Calculate brightness of COLOR. */
3030 bright = (2 * RED_FROM_ULONG (*color) + 3 * GREEN_FROM_ULONG (*color)
3031 + BLUE_FROM_ULONG (*color)) / 6;
3033 /* We only boost colors that are darker than
3034 HIGHLIGHT_COLOR_DARK_BOOST_LIMIT. */
3035 if (bright < HIGHLIGHT_COLOR_DARK_BOOST_LIMIT)
3036 /* Make an additive adjustment to NEW, because it's dark enough so
3037 that scaling by FACTOR alone isn't enough. */
3039 /* How far below the limit this color is (0 - 1, 1 being darker). */
3040 double dimness = 1 - (double)bright / HIGHLIGHT_COLOR_DARK_BOOST_LIMIT;
3041 /* The additive adjustment. */
3042 int min_delta = delta * dimness * factor / 2;
3044 if (factor < 1)
3045 new = RGB_TO_ULONG (max (0, min (0xff, (int) (RED_FROM_ULONG (*color)) - min_delta)),
3046 max (0, min (0xff, (int) (GREEN_FROM_ULONG (*color)) - min_delta)),
3047 max (0, min (0xff, (int) (BLUE_FROM_ULONG (*color)) - min_delta)));
3048 else
3049 new = RGB_TO_ULONG (max (0, min (0xff, (int) (min_delta + RED_FROM_ULONG (*color)))),
3050 max (0, min (0xff, (int) (min_delta + GREEN_FROM_ULONG (*color)))),
3051 max (0, min (0xff, (int) (min_delta + BLUE_FROM_ULONG (*color)))));
3054 if (new == *color)
3055 new = RGB_TO_ULONG (max (0, min (0xff, (int) (delta + RED_FROM_ULONG (*color)))),
3056 max (0, min (0xff, (int) (delta + GREEN_FROM_ULONG (*color)))),
3057 max (0, min (0xff, (int) (delta + BLUE_FROM_ULONG (*color)))));
3059 /* MAC_TODO: Map to palette and retry with delta if same? */
3060 /* MAC_TODO: Free colors (if using palette)? */
3062 if (new == *color)
3063 return 0;
3065 *color = new;
3067 return 1;
3071 /* Set up the foreground color for drawing relief lines of glyph
3072 string S. RELIEF is a pointer to a struct relief containing the GC
3073 with which lines will be drawn. Use a color that is FACTOR or
3074 DELTA lighter or darker than the relief's background which is found
3075 in S->f->output_data.x->relief_background. If such a color cannot
3076 be allocated, use DEFAULT_PIXEL, instead. */
3078 static void
3079 x_setup_relief_color (f, relief, factor, delta, default_pixel)
3080 struct frame *f;
3081 struct relief *relief;
3082 double factor;
3083 int delta;
3084 unsigned long default_pixel;
3086 XGCValues xgcv;
3087 struct mac_output *di = f->output_data.mac;
3088 unsigned long mask = GCForeground;
3089 unsigned long pixel;
3090 unsigned long background = di->relief_background;
3091 struct mac_display_info *dpyinfo = FRAME_MAC_DISPLAY_INFO (f);
3093 /* MAC_TODO: Free colors (if using palette)? */
3095 /* Allocate new color. */
3096 xgcv.foreground = default_pixel;
3097 pixel = background;
3098 if (dpyinfo->n_planes != 1
3099 && mac_alloc_lighter_color (f, &pixel, factor, delta))
3101 relief->allocated_p = 1;
3102 xgcv.foreground = relief->pixel = pixel;
3105 if (relief->gc == 0)
3107 #if 0 /* MAC_TODO: stipple */
3108 xgcv.stipple = dpyinfo->gray;
3109 mask |= GCStipple;
3110 #endif
3111 relief->gc = XCreateGC (NULL, FRAME_MAC_WINDOW (f), mask, &xgcv);
3113 else
3114 XChangeGC (NULL, relief->gc, mask, &xgcv);
3118 /* Set up colors for the relief lines around glyph string S. */
3120 static void
3121 x_setup_relief_colors (s)
3122 struct glyph_string *s;
3124 struct mac_output *di = s->f->output_data.mac;
3125 unsigned long color;
3127 if (s->face->use_box_color_for_shadows_p)
3128 color = s->face->box_color;
3129 else if (s->first_glyph->type == IMAGE_GLYPH
3130 && s->img->pixmap
3131 && !IMAGE_BACKGROUND_TRANSPARENT (s->img, s->f, 0))
3132 color = IMAGE_BACKGROUND (s->img, s->f, 0);
3133 else
3135 XGCValues xgcv;
3137 /* Get the background color of the face. */
3138 XGetGCValues (s->display, s->gc, GCBackground, &xgcv);
3139 color = xgcv.background;
3142 if (di->white_relief.gc == 0
3143 || color != di->relief_background)
3145 di->relief_background = color;
3146 x_setup_relief_color (s->f, &di->white_relief, 1.2, 0x8000,
3147 WHITE_PIX_DEFAULT (s->f));
3148 x_setup_relief_color (s->f, &di->black_relief, 0.6, 0x4000,
3149 BLACK_PIX_DEFAULT (s->f));
3154 /* Draw a relief on frame F inside the rectangle given by LEFT_X,
3155 TOP_Y, RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the relief
3156 to draw, it must be >= 0. RAISED_P non-zero means draw a raised
3157 relief. LEFT_P non-zero means draw a relief on the left side of
3158 the rectangle. RIGHT_P non-zero means draw a relief on the right
3159 side of the rectangle. CLIP_RECT is the clipping rectangle to use
3160 when drawing. */
3162 static void
3163 x_draw_relief_rect (f, left_x, top_y, right_x, bottom_y, width,
3164 raised_p, top_p, bot_p, left_p, right_p, clip_rect)
3165 struct frame *f;
3166 int left_x, top_y, right_x, bottom_y, width;
3167 int top_p, bot_p, left_p, right_p, raised_p;
3168 Rect *clip_rect;
3170 Display *dpy = FRAME_MAC_DISPLAY (f);
3171 int i;
3172 GC gc;
3174 if (raised_p)
3175 gc = f->output_data.mac->white_relief.gc;
3176 else
3177 gc = f->output_data.mac->black_relief.gc;
3178 mac_set_clip_rectangles (dpy, gc, clip_rect, 1);
3180 /* Top. */
3181 if (top_p)
3182 for (i = 0; i < width; ++i)
3183 mac_draw_line (f, gc,
3184 left_x + i * left_p, top_y + i,
3185 right_x + 1 - i * right_p, top_y + i);
3187 /* Left. */
3188 if (left_p)
3189 for (i = 0; i < width; ++i)
3190 mac_draw_line (f, gc,
3191 left_x + i, top_y + i, left_x + i, bottom_y - i + 1);
3193 mac_reset_clip_rectangles (dpy, gc);
3194 if (raised_p)
3195 gc = f->output_data.mac->black_relief.gc;
3196 else
3197 gc = f->output_data.mac->white_relief.gc;
3198 mac_set_clip_rectangles (dpy, gc, clip_rect, 1);
3200 /* Bottom. */
3201 if (bot_p)
3202 for (i = 0; i < width; ++i)
3203 mac_draw_line (f, gc,
3204 left_x + i * left_p, bottom_y - i,
3205 right_x + 1 - i * right_p, bottom_y - i);
3207 /* Right. */
3208 if (right_p)
3209 for (i = 0; i < width; ++i)
3210 mac_draw_line (f, gc,
3211 right_x - i, top_y + i + 1, right_x - i, bottom_y - i);
3213 mac_reset_clip_rectangles (dpy, gc);
3217 /* Draw a box on frame F inside the rectangle given by LEFT_X, TOP_Y,
3218 RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the lines to
3219 draw, it must be >= 0. LEFT_P non-zero means draw a line on the
3220 left side of the rectangle. RIGHT_P non-zero means draw a line
3221 on the right side of the rectangle. CLIP_RECT is the clipping
3222 rectangle to use when drawing. */
3224 static void
3225 x_draw_box_rect (s, left_x, top_y, right_x, bottom_y, width,
3226 left_p, right_p, clip_rect)
3227 struct glyph_string *s;
3228 int left_x, top_y, right_x, bottom_y, width, left_p, right_p;
3229 Rect *clip_rect;
3231 XGCValues xgcv;
3233 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
3234 XSetForeground (s->display, s->gc, s->face->box_color);
3235 mac_set_clip_rectangles (s->display, s->gc, clip_rect, 1);
3237 /* Top. */
3238 mac_fill_rectangle (s->f, s->gc, left_x, top_y,
3239 right_x - left_x + 1, width);
3241 /* Left. */
3242 if (left_p)
3243 mac_fill_rectangle (s->f, s->gc, left_x, top_y,
3244 width, bottom_y - top_y + 1);
3246 /* Bottom. */
3247 mac_fill_rectangle (s->f, s->gc, left_x, bottom_y - width + 1,
3248 right_x - left_x + 1, width);
3250 /* Right. */
3251 if (right_p)
3252 mac_fill_rectangle (s->f, s->gc, right_x - width + 1,
3253 top_y, width, bottom_y - top_y + 1);
3255 XSetForeground (s->display, s->gc, xgcv.foreground);
3256 mac_reset_clip_rectangles (s->display, s->gc);
3260 /* Draw a box around glyph string S. */
3262 static void
3263 x_draw_glyph_string_box (s)
3264 struct glyph_string *s;
3266 int width, left_x, right_x, top_y, bottom_y, last_x, raised_p;
3267 int left_p, right_p;
3268 struct glyph *last_glyph;
3269 Rect clip_rect;
3271 last_x = ((s->row->full_width_p && !s->w->pseudo_window_p)
3272 ? WINDOW_RIGHT_EDGE_X (s->w)
3273 : window_box_right (s->w, s->area));
3275 /* The glyph that may have a right box line. */
3276 last_glyph = (s->cmp || s->img
3277 ? s->first_glyph
3278 : s->first_glyph + s->nchars - 1);
3280 width = abs (s->face->box_line_width);
3281 raised_p = s->face->box == FACE_RAISED_BOX;
3282 left_x = s->x;
3283 right_x = (s->row->full_width_p && s->extends_to_end_of_line_p
3284 ? last_x - 1
3285 : min (last_x, s->x + s->background_width) - 1);
3286 top_y = s->y;
3287 bottom_y = top_y + s->height - 1;
3289 left_p = (s->first_glyph->left_box_line_p
3290 || (s->hl == DRAW_MOUSE_FACE
3291 && (s->prev == NULL
3292 || s->prev->hl != s->hl)));
3293 right_p = (last_glyph->right_box_line_p
3294 || (s->hl == DRAW_MOUSE_FACE
3295 && (s->next == NULL
3296 || s->next->hl != s->hl)));
3298 get_glyph_string_clip_rect (s, &clip_rect);
3300 if (s->face->box == FACE_SIMPLE_BOX)
3301 x_draw_box_rect (s, left_x, top_y, right_x, bottom_y, width,
3302 left_p, right_p, &clip_rect);
3303 else
3305 x_setup_relief_colors (s);
3306 x_draw_relief_rect (s->f, left_x, top_y, right_x, bottom_y,
3307 width, raised_p, 1, 1, left_p, right_p, &clip_rect);
3312 /* Draw foreground of image glyph string S. */
3314 static void
3315 x_draw_image_foreground (s)
3316 struct glyph_string *s;
3318 int x = s->x;
3319 int y = s->ybase - image_ascent (s->img, s->face, &s->slice);
3321 /* If first glyph of S has a left box line, start drawing it to the
3322 right of that line. */
3323 if (s->face->box != FACE_NO_BOX
3324 && s->first_glyph->left_box_line_p
3325 && s->slice.x == 0)
3326 x += abs (s->face->box_line_width);
3328 /* If there is a margin around the image, adjust x- and y-position
3329 by that margin. */
3330 if (s->slice.x == 0)
3331 x += s->img->hmargin;
3332 if (s->slice.y == 0)
3333 y += s->img->vmargin;
3335 if (s->img->pixmap)
3337 x_set_glyph_string_clipping (s);
3339 #if USE_CG_DRAWING
3340 mac_draw_cg_image (s->img->data.ptr_val,
3341 s->f, s->gc, s->slice.x, s->slice.y,
3342 s->slice.width, s->slice.height, x, y, 1);
3343 #endif
3344 if (s->img->mask)
3345 #if !USE_CG_DRAWING
3346 mac_copy_area_with_mask (s->img->pixmap, s->img->mask,
3347 s->f, s->gc, s->slice.x, s->slice.y,
3348 s->slice.width, s->slice.height, x, y);
3349 #else
3351 #endif
3352 else
3354 #if !USE_CG_DRAWING
3355 mac_copy_area (s->img->pixmap,
3356 s->f, s->gc, s->slice.x, s->slice.y,
3357 s->slice.width, s->slice.height, x, y);
3358 #endif
3360 /* When the image has a mask, we can expect that at
3361 least part of a mouse highlight or a block cursor will
3362 be visible. If the image doesn't have a mask, make
3363 a block cursor visible by drawing a rectangle around
3364 the image. I believe it's looking better if we do
3365 nothing here for mouse-face. */
3366 if (s->hl == DRAW_CURSOR)
3368 int r = s->img->relief;
3369 if (r < 0) r = -r;
3370 mac_draw_rectangle (s->f, s->gc, x - r, y - r,
3371 s->slice.width + r*2 - 1,
3372 s->slice.height + r*2 - 1);
3376 else
3377 /* Draw a rectangle if image could not be loaded. */
3378 mac_draw_rectangle (s->f, s->gc, x, y,
3379 s->slice.width - 1, s->slice.height - 1);
3383 /* Draw a relief around the image glyph string S. */
3385 static void
3386 x_draw_image_relief (s)
3387 struct glyph_string *s;
3389 int x0, y0, x1, y1, thick, raised_p;
3390 Rect r;
3391 int x = s->x;
3392 int y = s->ybase - image_ascent (s->img, s->face, &s->slice);
3394 /* If first glyph of S has a left box line, start drawing it to the
3395 right of that line. */
3396 if (s->face->box != FACE_NO_BOX
3397 && s->first_glyph->left_box_line_p
3398 && s->slice.x == 0)
3399 x += abs (s->face->box_line_width);
3401 /* If there is a margin around the image, adjust x- and y-position
3402 by that margin. */
3403 if (s->slice.x == 0)
3404 x += s->img->hmargin;
3405 if (s->slice.y == 0)
3406 y += s->img->vmargin;
3408 if (s->hl == DRAW_IMAGE_SUNKEN
3409 || s->hl == DRAW_IMAGE_RAISED)
3411 thick = tool_bar_button_relief >= 0 ? tool_bar_button_relief : DEFAULT_TOOL_BAR_BUTTON_RELIEF;
3412 raised_p = s->hl == DRAW_IMAGE_RAISED;
3414 else
3416 thick = abs (s->img->relief);
3417 raised_p = s->img->relief > 0;
3420 x0 = x - thick;
3421 y0 = y - thick;
3422 x1 = x + s->slice.width + thick - 1;
3423 y1 = y + s->slice.height + thick - 1;
3425 x_setup_relief_colors (s);
3426 get_glyph_string_clip_rect (s, &r);
3427 x_draw_relief_rect (s->f, x0, y0, x1, y1, thick, raised_p,
3428 s->slice.y == 0,
3429 s->slice.y + s->slice.height == s->img->height,
3430 s->slice.x == 0,
3431 s->slice.x + s->slice.width == s->img->width,
3432 &r);
3436 /* Draw part of the background of glyph string S. X, Y, W, and H
3437 give the rectangle to draw. */
3439 static void
3440 x_draw_glyph_string_bg_rect (s, x, y, w, h)
3441 struct glyph_string *s;
3442 int x, y, w, h;
3444 #if 0 /* MAC_TODO: stipple */
3445 if (s->stippled_p)
3447 /* Fill background with a stipple pattern. */
3448 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
3449 XFillRectangle (s->display, s->window, s->gc, x, y, w, h);
3450 XSetFillStyle (s->display, s->gc, FillSolid);
3452 else
3453 #endif /* MAC_TODO */
3454 x_clear_glyph_string_rect (s, x, y, w, h);
3458 /* Draw image glyph string S.
3460 s->y
3461 s->x +-------------------------
3462 | s->face->box
3464 | +-------------------------
3465 | | s->img->margin
3467 | | +-------------------
3468 | | | the image
3472 static void
3473 x_draw_image_glyph_string (s)
3474 struct glyph_string *s;
3476 int x, y;
3477 int box_line_hwidth = abs (s->face->box_line_width);
3478 int box_line_vwidth = max (s->face->box_line_width, 0);
3479 int height;
3481 height = s->height - 2 * box_line_vwidth;
3484 /* Fill background with face under the image. Do it only if row is
3485 taller than image or if image has a clip mask to reduce
3486 flickering. */
3487 s->stippled_p = s->face->stipple != 0;
3488 if (height > s->slice.height
3489 || s->img->hmargin
3490 || s->img->vmargin
3491 || s->img->mask
3492 || s->img->pixmap == 0
3493 || s->width != s->background_width)
3495 x = s->x;
3496 if (s->first_glyph->left_box_line_p
3497 && s->slice.x == 0)
3498 x += box_line_hwidth;
3500 y = s->y;
3501 if (s->slice.y == 0)
3502 y += box_line_vwidth;
3504 x_draw_glyph_string_bg_rect (s, x, y, s->background_width, height);
3506 s->background_filled_p = 1;
3509 /* Draw the foreground. */
3510 x_draw_image_foreground (s);
3512 /* If we must draw a relief around the image, do it. */
3513 if (s->img->relief
3514 || s->hl == DRAW_IMAGE_RAISED
3515 || s->hl == DRAW_IMAGE_SUNKEN)
3516 x_draw_image_relief (s);
3520 /* Draw stretch glyph string S. */
3522 static void
3523 x_draw_stretch_glyph_string (s)
3524 struct glyph_string *s;
3526 xassert (s->first_glyph->type == STRETCH_GLYPH);
3527 s->stippled_p = s->face->stipple != 0;
3529 if (s->hl == DRAW_CURSOR
3530 && !x_stretch_cursor_p)
3532 /* If `x-stretch-block-cursor' is nil, don't draw a block cursor
3533 as wide as the stretch glyph. */
3534 int width, background_width = s->background_width;
3535 int x = s->x, left_x = window_box_left_offset (s->w, TEXT_AREA);
3537 if (x < left_x)
3539 background_width -= left_x - x;
3540 x = left_x;
3542 width = min (FRAME_COLUMN_WIDTH (s->f), background_width);
3544 /* Draw cursor. */
3545 x_draw_glyph_string_bg_rect (s, x, s->y, width, s->height);
3547 /* Clear rest using the GC of the original non-cursor face. */
3548 if (width < background_width)
3550 int y = s->y;
3551 int w = background_width - width, h = s->height;
3552 Rect r;
3553 GC gc;
3555 x += width;
3556 if (s->row->mouse_face_p
3557 && cursor_in_mouse_face_p (s->w))
3559 x_set_mouse_face_gc (s);
3560 gc = s->gc;
3562 else
3563 gc = s->face->gc;
3565 get_glyph_string_clip_rect (s, &r);
3566 mac_set_clip_rectangles (s->display, gc, &r, 1);
3568 #if 0 /* MAC_TODO: stipple */
3569 if (s->face->stipple)
3571 /* Fill background with a stipple pattern. */
3572 XSetFillStyle (s->display, gc, FillOpaqueStippled);
3573 XFillRectangle (s->display, s->window, gc, x, y, w, h);
3574 XSetFillStyle (s->display, gc, FillSolid);
3576 else
3577 #endif /* MAC_TODO */
3578 mac_erase_rectangle (s->f, gc, x, y, w, h);
3581 else if (!s->background_filled_p)
3583 int background_width = s->background_width;
3584 int x = s->x, left_x = window_box_left_offset (s->w, TEXT_AREA);
3586 /* Don't draw into left margin, fringe or scrollbar area
3587 except for header line and mode line. */
3588 if (x < left_x && !s->row->mode_line_p)
3590 background_width -= left_x - x;
3591 x = left_x;
3593 if (background_width > 0)
3594 x_draw_glyph_string_bg_rect (s, x, s->y, background_width, s->height);
3597 s->background_filled_p = 1;
3601 /* Draw glyph string S. */
3603 static void
3604 x_draw_glyph_string (s)
3605 struct glyph_string *s;
3607 int relief_drawn_p = 0;
3609 /* If S draws into the background of its successor that does not
3610 draw a cursor, draw the background of the successor first so that
3611 S can draw into it. This makes S->next use XDrawString instead
3612 of XDrawImageString. */
3613 if (s->next && s->right_overhang && !s->for_overlaps
3614 && s->next->hl != DRAW_CURSOR)
3616 xassert (s->next->img == NULL);
3617 x_set_glyph_string_gc (s->next);
3618 x_set_glyph_string_clipping (s->next);
3619 x_draw_glyph_string_background (s->next, 1);
3622 /* Set up S->gc, set clipping and draw S. */
3623 x_set_glyph_string_gc (s);
3625 /* Draw relief (if any) in advance for char/composition so that the
3626 glyph string can be drawn over it. */
3627 if (!s->for_overlaps
3628 && s->face->box != FACE_NO_BOX
3629 && (s->first_glyph->type == CHAR_GLYPH
3630 || s->first_glyph->type == COMPOSITE_GLYPH))
3633 x_set_glyph_string_clipping (s);
3634 x_draw_glyph_string_background (s, 1);
3635 x_draw_glyph_string_box (s);
3636 x_set_glyph_string_clipping (s);
3637 relief_drawn_p = 1;
3639 else
3640 x_set_glyph_string_clipping (s);
3642 switch (s->first_glyph->type)
3644 case IMAGE_GLYPH:
3645 x_draw_image_glyph_string (s);
3646 break;
3648 case STRETCH_GLYPH:
3649 x_draw_stretch_glyph_string (s);
3650 break;
3652 case CHAR_GLYPH:
3653 if (s->for_overlaps)
3654 s->background_filled_p = 1;
3655 else
3656 x_draw_glyph_string_background (s, 0);
3657 x_draw_glyph_string_foreground (s);
3658 break;
3660 case COMPOSITE_GLYPH:
3661 if (s->for_overlaps || s->gidx > 0)
3662 s->background_filled_p = 1;
3663 else
3664 x_draw_glyph_string_background (s, 1);
3665 x_draw_composite_glyph_string_foreground (s);
3666 break;
3668 default:
3669 abort ();
3672 if (!s->for_overlaps)
3674 /* Draw underline. */
3675 if (s->face->underline_p)
3677 unsigned long h = 1;
3678 unsigned long dy = s->height - h;
3680 if (s->face->underline_defaulted_p)
3681 mac_fill_rectangle (s->f, s->gc, s->x, s->y + dy,
3682 s->background_width, h);
3683 else
3685 XGCValues xgcv;
3686 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
3687 XSetForeground (s->display, s->gc, s->face->underline_color);
3688 mac_fill_rectangle (s->f, s->gc, s->x, s->y + dy,
3689 s->background_width, h);
3690 XSetForeground (s->display, s->gc, xgcv.foreground);
3694 /* Draw overline. */
3695 if (s->face->overline_p)
3697 unsigned long dy = 0, h = 1;
3699 if (s->face->overline_color_defaulted_p)
3700 mac_fill_rectangle (s->f, s->gc, s->x, s->y + dy,
3701 s->background_width, h);
3702 else
3704 XGCValues xgcv;
3705 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
3706 XSetForeground (s->display, s->gc, s->face->overline_color);
3707 mac_fill_rectangle (s->f, s->gc, s->x, s->y + dy,
3708 s->background_width, h);
3709 XSetForeground (s->display, s->gc, xgcv.foreground);
3713 /* Draw strike-through. */
3714 if (s->face->strike_through_p)
3716 unsigned long h = 1;
3717 unsigned long dy = (s->height - h) / 2;
3719 if (s->face->strike_through_color_defaulted_p)
3720 mac_fill_rectangle (s->f, s->gc, s->x, s->y + dy,
3721 s->width, h);
3722 else
3724 XGCValues xgcv;
3725 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
3726 XSetForeground (s->display, s->gc, s->face->strike_through_color);
3727 mac_fill_rectangle (s->f, s->gc, s->x, s->y + dy,
3728 s->width, h);
3729 XSetForeground (s->display, s->gc, xgcv.foreground);
3733 /* Draw relief if not yet drawn. */
3734 if (!relief_drawn_p && s->face->box != FACE_NO_BOX)
3735 x_draw_glyph_string_box (s);
3738 /* Reset clipping. */
3739 mac_reset_clip_rectangles (s->display, s->gc);
3742 /* Shift display to make room for inserted glyphs. */
3744 void
3745 mac_shift_glyphs_for_insert (f, x, y, width, height, shift_by)
3746 struct frame *f;
3747 int x, y, width, height, shift_by;
3749 mac_scroll_area (f, f->output_data.mac->normal_gc,
3750 x, y, width, height,
3751 x + shift_by, y);
3754 /* Delete N glyphs at the nominal cursor position. Not implemented
3755 for X frames. */
3757 static void
3758 x_delete_glyphs (n)
3759 register int n;
3761 abort ();
3765 /* Clear entire frame. If updating_frame is non-null, clear that
3766 frame. Otherwise clear the selected frame. */
3768 static void
3769 x_clear_frame ()
3771 struct frame *f;
3773 if (updating_frame)
3774 f = updating_frame;
3775 else
3776 f = SELECTED_FRAME ();
3778 /* Clearing the frame will erase any cursor, so mark them all as no
3779 longer visible. */
3780 mark_window_cursors_off (XWINDOW (FRAME_ROOT_WINDOW (f)));
3781 output_cursor.hpos = output_cursor.vpos = 0;
3782 output_cursor.x = -1;
3784 /* We don't set the output cursor here because there will always
3785 follow an explicit cursor_to. */
3786 BLOCK_INPUT;
3787 mac_clear_window (f);
3789 /* We have to clear the scroll bars, too. If we have changed
3790 colors or something like that, then they should be notified. */
3791 x_scroll_bar_clear (f);
3793 XFlush (FRAME_MAC_DISPLAY (f));
3794 UNBLOCK_INPUT;
3799 /* Invert the middle quarter of the frame for .15 sec. */
3801 /* We use the select system call to do the waiting, so we have to make
3802 sure it's available. If it isn't, we just won't do visual bells. */
3804 #if defined (HAVE_TIMEVAL) && defined (HAVE_SELECT)
3807 /* Subtract the `struct timeval' values X and Y, storing the result in
3808 *RESULT. Return 1 if the difference is negative, otherwise 0. */
3810 static int
3811 timeval_subtract (result, x, y)
3812 struct timeval *result, x, y;
3814 /* Perform the carry for the later subtraction by updating y. This
3815 is safer because on some systems the tv_sec member is unsigned. */
3816 if (x.tv_usec < y.tv_usec)
3818 int nsec = (y.tv_usec - x.tv_usec) / 1000000 + 1;
3819 y.tv_usec -= 1000000 * nsec;
3820 y.tv_sec += nsec;
3823 if (x.tv_usec - y.tv_usec > 1000000)
3825 int nsec = (y.tv_usec - x.tv_usec) / 1000000;
3826 y.tv_usec += 1000000 * nsec;
3827 y.tv_sec -= nsec;
3830 /* Compute the time remaining to wait. tv_usec is certainly
3831 positive. */
3832 result->tv_sec = x.tv_sec - y.tv_sec;
3833 result->tv_usec = x.tv_usec - y.tv_usec;
3835 /* Return indication of whether the result should be considered
3836 negative. */
3837 return x.tv_sec < y.tv_sec;
3840 void
3841 XTflash (f)
3842 struct frame *f;
3844 /* Get the height not including a menu bar widget. */
3845 int height = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, FRAME_LINES (f));
3846 /* Height of each line to flash. */
3847 int flash_height = FRAME_LINE_HEIGHT (f);
3848 /* These will be the left and right margins of the rectangles. */
3849 int flash_left = FRAME_INTERNAL_BORDER_WIDTH (f);
3850 int flash_right = FRAME_PIXEL_WIDTH (f) - FRAME_INTERNAL_BORDER_WIDTH (f);
3852 int width;
3854 /* Don't flash the area between a scroll bar and the frame
3855 edge it is next to. */
3856 switch (FRAME_VERTICAL_SCROLL_BAR_TYPE (f))
3858 case vertical_scroll_bar_left:
3859 flash_left += VERTICAL_SCROLL_BAR_WIDTH_TRIM;
3860 break;
3862 case vertical_scroll_bar_right:
3863 flash_right -= VERTICAL_SCROLL_BAR_WIDTH_TRIM;
3864 break;
3866 default:
3867 break;
3870 width = flash_right - flash_left;
3872 BLOCK_INPUT;
3874 /* If window is tall, flash top and bottom line. */
3875 if (height > 3 * FRAME_LINE_HEIGHT (f))
3877 mac_invert_rectangle (f, flash_left,
3878 (FRAME_INTERNAL_BORDER_WIDTH (f)
3879 + FRAME_TOOL_BAR_LINES (f) * FRAME_LINE_HEIGHT (f)),
3880 width, flash_height);
3881 mac_invert_rectangle (f, flash_left,
3882 (height - flash_height
3883 - FRAME_INTERNAL_BORDER_WIDTH (f)),
3884 width, flash_height);
3886 else
3887 /* If it is short, flash it all. */
3888 mac_invert_rectangle (f, flash_left, FRAME_INTERNAL_BORDER_WIDTH (f),
3889 width, height - 2 * FRAME_INTERNAL_BORDER_WIDTH (f));
3891 x_flush (f);
3894 struct timeval wakeup;
3896 EMACS_GET_TIME (wakeup);
3898 /* Compute time to wait until, propagating carry from usecs. */
3899 wakeup.tv_usec += 150000;
3900 wakeup.tv_sec += (wakeup.tv_usec / 1000000);
3901 wakeup.tv_usec %= 1000000;
3903 /* Keep waiting until past the time wakeup or any input gets
3904 available. */
3905 while (! detect_input_pending ())
3907 struct timeval current;
3908 struct timeval timeout;
3910 EMACS_GET_TIME (current);
3912 /* Break if result would be negative. */
3913 if (timeval_subtract (&current, wakeup, current))
3914 break;
3916 /* How long `select' should wait. */
3917 timeout.tv_sec = 0;
3918 timeout.tv_usec = 10000;
3920 /* Try to wait that long--but we might wake up sooner. */
3921 select (0, NULL, NULL, NULL, &timeout);
3925 /* If window is tall, flash top and bottom line. */
3926 if (height > 3 * FRAME_LINE_HEIGHT (f))
3928 mac_invert_rectangle (f, flash_left,
3929 (FRAME_INTERNAL_BORDER_WIDTH (f)
3930 + FRAME_TOOL_BAR_LINES (f) * FRAME_LINE_HEIGHT (f)),
3931 width, flash_height);
3932 mac_invert_rectangle (f, flash_left,
3933 (height - flash_height
3934 - FRAME_INTERNAL_BORDER_WIDTH (f)),
3935 width, flash_height);
3937 else
3938 /* If it is short, flash it all. */
3939 mac_invert_rectangle (f, flash_left, FRAME_INTERNAL_BORDER_WIDTH (f),
3940 width, height - 2 * FRAME_INTERNAL_BORDER_WIDTH (f));
3942 x_flush (f);
3944 UNBLOCK_INPUT;
3947 #endif /* defined (HAVE_TIMEVAL) && defined (HAVE_SELECT) */
3950 /* Make audible bell. */
3952 void
3953 XTring_bell ()
3955 struct frame *f = SELECTED_FRAME ();
3957 #if defined (HAVE_TIMEVAL) && defined (HAVE_SELECT)
3958 if (visible_bell)
3959 XTflash (f);
3960 else
3961 #endif
3963 BLOCK_INPUT;
3964 SysBeep (1);
3965 XFlush (FRAME_MAC_DISPLAY (f));
3966 UNBLOCK_INPUT;
3971 /* Specify how many text lines, from the top of the window,
3972 should be affected by insert-lines and delete-lines operations.
3973 This, and those operations, are used only within an update
3974 that is bounded by calls to x_update_begin and x_update_end. */
3976 static void
3977 XTset_terminal_window (n)
3978 register int n;
3980 /* This function intentionally left blank. */
3985 /***********************************************************************
3986 Line Dance
3987 ***********************************************************************/
3989 /* Perform an insert-lines or delete-lines operation, inserting N
3990 lines or deleting -N lines at vertical position VPOS. */
3992 static void
3993 x_ins_del_lines (vpos, n)
3994 int vpos, n;
3996 abort ();
4000 /* Scroll part of the display as described by RUN. */
4002 static void
4003 x_scroll_run (w, run)
4004 struct window *w;
4005 struct run *run;
4007 struct frame *f = XFRAME (w->frame);
4008 int x, y, width, height, from_y, to_y, bottom_y;
4010 /* Get frame-relative bounding box of the text display area of W,
4011 without mode lines. Include in this box the left and right
4012 fringe of W. */
4013 window_box (w, -1, &x, &y, &width, &height);
4015 from_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->current_y);
4016 to_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->desired_y);
4017 bottom_y = y + height;
4019 if (to_y < from_y)
4021 /* Scrolling up. Make sure we don't copy part of the mode
4022 line at the bottom. */
4023 if (from_y + run->height > bottom_y)
4024 height = bottom_y - from_y;
4025 else
4026 height = run->height;
4028 else
4030 /* Scolling down. Make sure we don't copy over the mode line.
4031 at the bottom. */
4032 if (to_y + run->height > bottom_y)
4033 height = bottom_y - to_y;
4034 else
4035 height = run->height;
4038 BLOCK_INPUT;
4040 /* Cursor off. Will be switched on again in x_update_window_end. */
4041 updated_window = w;
4042 x_clear_cursor (w);
4044 mac_scroll_area (f, f->output_data.mac->normal_gc,
4045 x, from_y,
4046 width, height,
4047 x, to_y);
4049 UNBLOCK_INPUT;
4054 /***********************************************************************
4055 Exposure Events
4056 ***********************************************************************/
4059 static void
4060 frame_highlight (f)
4061 struct frame *f;
4063 OSErr err;
4064 ControlRef root_control;
4066 BLOCK_INPUT;
4067 err = GetRootControl (FRAME_MAC_WINDOW (f), &root_control);
4068 if (err == noErr)
4069 ActivateControl (root_control);
4070 UNBLOCK_INPUT;
4071 x_update_cursor (f, 1);
4074 static void
4075 frame_unhighlight (f)
4076 struct frame *f;
4078 OSErr err;
4079 ControlRef root_control;
4081 BLOCK_INPUT;
4082 err = GetRootControl (FRAME_MAC_WINDOW (f), &root_control);
4083 if (err == noErr)
4084 DeactivateControl (root_control);
4085 UNBLOCK_INPUT;
4086 x_update_cursor (f, 1);
4089 /* The focus has changed. Update the frames as necessary to reflect
4090 the new situation. Note that we can't change the selected frame
4091 here, because the Lisp code we are interrupting might become confused.
4092 Each event gets marked with the frame in which it occurred, so the
4093 Lisp code can tell when the switch took place by examining the events. */
4095 static void
4096 x_new_focus_frame (dpyinfo, frame)
4097 struct x_display_info *dpyinfo;
4098 struct frame *frame;
4100 struct frame *old_focus = dpyinfo->x_focus_frame;
4102 if (frame != dpyinfo->x_focus_frame)
4104 /* Set this before calling other routines, so that they see
4105 the correct value of x_focus_frame. */
4106 dpyinfo->x_focus_frame = frame;
4108 if (old_focus && old_focus->auto_lower)
4109 x_lower_frame (old_focus);
4111 #if 0
4112 selected_frame = frame;
4113 XSETFRAME (XWINDOW (selected_frame->selected_window)->frame,
4114 selected_frame);
4115 Fselect_window (selected_frame->selected_window, Qnil);
4116 choose_minibuf_frame ();
4117 #endif /* ! 0 */
4119 if (dpyinfo->x_focus_frame && dpyinfo->x_focus_frame->auto_raise)
4120 pending_autoraise_frame = dpyinfo->x_focus_frame;
4121 else
4122 pending_autoraise_frame = 0;
4124 #if USE_MAC_FONT_PANEL
4125 if (frame)
4126 mac_set_font_info_for_selection (frame, DEFAULT_FACE_ID, 0);
4127 #endif
4130 x_frame_rehighlight (dpyinfo);
4133 /* Handle FocusIn and FocusOut state changes for FRAME.
4134 If FRAME has focus and there exists more than one frame, puts
4135 a FOCUS_IN_EVENT into *BUFP. */
4137 static void
4138 mac_focus_changed (type, dpyinfo, frame, bufp)
4139 int type;
4140 struct mac_display_info *dpyinfo;
4141 struct frame *frame;
4142 struct input_event *bufp;
4144 if (type == activeFlag)
4146 if (dpyinfo->x_focus_event_frame != frame)
4148 x_new_focus_frame (dpyinfo, frame);
4149 dpyinfo->x_focus_event_frame = frame;
4151 /* Don't stop displaying the initial startup message
4152 for a switch-frame event we don't need. */
4153 if (GC_NILP (Vterminal_frame)
4154 && GC_CONSP (Vframe_list)
4155 && !GC_NILP (XCDR (Vframe_list)))
4157 bufp->kind = FOCUS_IN_EVENT;
4158 XSETFRAME (bufp->frame_or_window, frame);
4162 else
4164 if (dpyinfo->x_focus_event_frame == frame)
4166 dpyinfo->x_focus_event_frame = 0;
4167 x_new_focus_frame (dpyinfo, 0);
4172 /* The focus may have changed. Figure out if it is a real focus change,
4173 by checking both FocusIn/Out and Enter/LeaveNotify events.
4175 Returns FOCUS_IN_EVENT event in *BUFP. */
4177 static void
4178 x_detect_focus_change (dpyinfo, event, bufp)
4179 struct mac_display_info *dpyinfo;
4180 EventRecord *event;
4181 struct input_event *bufp;
4183 struct frame *frame;
4185 frame = mac_window_to_frame ((WindowPtr) event->message);
4186 if (! frame)
4187 return;
4189 /* On Mac, this is only called from focus events, so no switch needed. */
4190 mac_focus_changed ((event->modifiers & activeFlag),
4191 dpyinfo, frame, bufp);
4195 /* Handle an event saying the mouse has moved out of an Emacs frame. */
4197 void
4198 x_mouse_leave (dpyinfo)
4199 struct x_display_info *dpyinfo;
4201 x_new_focus_frame (dpyinfo, dpyinfo->x_focus_event_frame);
4204 /* The focus has changed, or we have redirected a frame's focus to
4205 another frame (this happens when a frame uses a surrogate
4206 mini-buffer frame). Shift the highlight as appropriate.
4208 The FRAME argument doesn't necessarily have anything to do with which
4209 frame is being highlighted or un-highlighted; we only use it to find
4210 the appropriate X display info. */
4212 static void
4213 XTframe_rehighlight (frame)
4214 struct frame *frame;
4216 x_frame_rehighlight (FRAME_X_DISPLAY_INFO (frame));
4219 static void
4220 x_frame_rehighlight (dpyinfo)
4221 struct x_display_info *dpyinfo;
4223 struct frame *old_highlight = dpyinfo->x_highlight_frame;
4225 if (dpyinfo->x_focus_frame)
4227 dpyinfo->x_highlight_frame
4228 = ((GC_FRAMEP (FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame)))
4229 ? XFRAME (FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame))
4230 : dpyinfo->x_focus_frame);
4231 if (! FRAME_LIVE_P (dpyinfo->x_highlight_frame))
4233 FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame) = Qnil;
4234 dpyinfo->x_highlight_frame = dpyinfo->x_focus_frame;
4237 else
4238 dpyinfo->x_highlight_frame = 0;
4240 if (dpyinfo->x_highlight_frame != old_highlight)
4242 if (old_highlight)
4243 frame_unhighlight (old_highlight);
4244 if (dpyinfo->x_highlight_frame)
4245 frame_highlight (dpyinfo->x_highlight_frame);
4251 /* Convert a keysym to its name. */
4253 char *
4254 x_get_keysym_name (keysym)
4255 int keysym;
4257 char *value;
4259 BLOCK_INPUT;
4260 #if 0
4261 value = XKeysymToString (keysym);
4262 #else
4263 value = 0;
4264 #endif
4265 UNBLOCK_INPUT;
4267 return value;
4272 /* Function to report a mouse movement to the mainstream Emacs code.
4273 The input handler calls this.
4275 We have received a mouse movement event, which is given in *event.
4276 If the mouse is over a different glyph than it was last time, tell
4277 the mainstream emacs code by setting mouse_moved. If not, ask for
4278 another motion event, so we can check again the next time it moves. */
4280 static Point last_mouse_motion_position;
4281 static Lisp_Object last_mouse_motion_frame;
4283 static int
4284 note_mouse_movement (frame, pos)
4285 FRAME_PTR frame;
4286 Point *pos;
4288 struct mac_display_info *dpyinfo = FRAME_MAC_DISPLAY_INFO (frame);
4289 #if TARGET_API_MAC_CARBON
4290 Rect r;
4291 #endif
4293 last_mouse_movement_time = TickCount () * (1000 / 60); /* to milliseconds */
4294 last_mouse_motion_position = *pos;
4295 XSETFRAME (last_mouse_motion_frame, frame);
4297 #if TARGET_API_MAC_CARBON
4298 if (!PtInRect (*pos, GetWindowPortBounds (FRAME_MAC_WINDOW (frame), &r)))
4299 #else
4300 if (!PtInRect (*pos, &FRAME_MAC_WINDOW (frame)->portRect))
4301 #endif
4303 if (frame == dpyinfo->mouse_face_mouse_frame)
4304 /* This case corresponds to LeaveNotify in X11. */
4306 /* If we move outside the frame, then we're certainly no
4307 longer on any text in the frame. */
4308 clear_mouse_face (dpyinfo);
4309 dpyinfo->mouse_face_mouse_frame = 0;
4310 if (!dpyinfo->grabbed)
4311 rif->define_frame_cursor (frame,
4312 frame->output_data.mac->nontext_cursor);
4314 return 1;
4316 /* Has the mouse moved off the glyph it was on at the last sighting? */
4317 if (frame != last_mouse_glyph_frame
4318 || !PtInRect (*pos, &last_mouse_glyph))
4320 frame->mouse_moved = 1;
4321 last_mouse_scroll_bar = Qnil;
4322 note_mouse_highlight (frame, pos->h, pos->v);
4323 /* Remember which glyph we're now on. */
4324 remember_mouse_glyph (frame, pos->h, pos->v, &last_mouse_glyph);
4325 last_mouse_glyph_frame = frame;
4326 return 1;
4329 return 0;
4333 /************************************************************************
4334 Mouse Face
4335 ************************************************************************/
4337 /* MAC TODO: This should be called from somewhere (or removed) ++KFS */
4339 static void
4340 redo_mouse_highlight ()
4342 if (!NILP (last_mouse_motion_frame)
4343 && FRAME_LIVE_P (XFRAME (last_mouse_motion_frame)))
4344 note_mouse_highlight (XFRAME (last_mouse_motion_frame),
4345 last_mouse_motion_position.h,
4346 last_mouse_motion_position.v);
4350 static struct frame *
4351 mac_focus_frame (dpyinfo)
4352 struct mac_display_info *dpyinfo;
4354 if (dpyinfo->x_focus_frame)
4355 return dpyinfo->x_focus_frame;
4356 else
4357 /* Mac version may get events, such as a menu bar click, even when
4358 all the frames are invisible. In this case, we regard the
4359 event came to the selected frame. */
4360 return SELECTED_FRAME ();
4364 /* Return the current position of the mouse.
4365 *FP should be a frame which indicates which display to ask about.
4367 If the mouse movement started in a scroll bar, set *FP, *BAR_WINDOW,
4368 and *PART to the frame, window, and scroll bar part that the mouse
4369 is over. Set *X and *Y to the portion and whole of the mouse's
4370 position on the scroll bar.
4372 If the mouse movement started elsewhere, set *FP to the frame the
4373 mouse is on, *BAR_WINDOW to nil, and *X and *Y to the character cell
4374 the mouse is over.
4376 Set *TIME to the server time-stamp for the time at which the mouse
4377 was at this position.
4379 Don't store anything if we don't have a valid set of values to report.
4381 This clears the mouse_moved flag, so we can wait for the next mouse
4382 movement. */
4384 static void
4385 XTmouse_position (fp, insist, bar_window, part, x, y, time)
4386 FRAME_PTR *fp;
4387 int insist;
4388 Lisp_Object *bar_window;
4389 enum scroll_bar_part *part;
4390 Lisp_Object *x, *y;
4391 unsigned long *time;
4393 FRAME_PTR f1;
4395 BLOCK_INPUT;
4397 if (! NILP (last_mouse_scroll_bar) && insist == 0)
4398 x_scroll_bar_report_motion (fp, bar_window, part, x, y, time);
4399 else
4401 Lisp_Object frame, tail;
4403 /* Clear the mouse-moved flag for every frame on this display. */
4404 FOR_EACH_FRAME (tail, frame)
4405 XFRAME (frame)->mouse_moved = 0;
4407 last_mouse_scroll_bar = Qnil;
4409 if (FRAME_MAC_DISPLAY_INFO (*fp)->grabbed && last_mouse_frame
4410 && FRAME_LIVE_P (last_mouse_frame))
4411 f1 = last_mouse_frame;
4412 else
4413 f1 = mac_focus_frame (FRAME_MAC_DISPLAY_INFO (*fp));
4415 if (f1)
4417 /* Ok, we found a frame. Store all the values.
4418 last_mouse_glyph is a rectangle used to reduce the
4419 generation of mouse events. To not miss any motion
4420 events, we must divide the frame into rectangles of the
4421 size of the smallest character that could be displayed
4422 on it, i.e. into the same rectangles that matrices on
4423 the frame are divided into. */
4424 Point mouse_pos;
4426 SetPortWindowPort (FRAME_MAC_WINDOW (f1));
4427 GetMouse (&mouse_pos);
4428 remember_mouse_glyph (f1, mouse_pos.h, mouse_pos.v,
4429 &last_mouse_glyph);
4430 last_mouse_glyph_frame = f1;
4432 *bar_window = Qnil;
4433 *part = 0;
4434 *fp = f1;
4435 XSETINT (*x, mouse_pos.h);
4436 XSETINT (*y, mouse_pos.v);
4437 *time = last_mouse_movement_time;
4441 UNBLOCK_INPUT;
4445 /************************************************************************
4446 Toolkit scroll bars
4447 ************************************************************************/
4449 #ifdef USE_TOOLKIT_SCROLL_BARS
4451 static pascal void scroll_bar_timer_callback P_ ((EventLoopTimerRef, void *));
4452 static OSStatus install_scroll_bar_timer P_ ((void));
4453 static OSStatus set_scroll_bar_timer P_ ((EventTimerInterval));
4454 static int control_part_code_to_scroll_bar_part P_ ((ControlPartCode));
4455 static void construct_scroll_bar_click P_ ((struct scroll_bar *, int,
4456 struct input_event *));
4457 static OSStatus get_control_part_bounds P_ ((ControlHandle, ControlPartCode,
4458 Rect *));
4459 static void x_scroll_bar_handle_press P_ ((struct scroll_bar *,
4460 ControlPartCode,
4461 struct input_event *));
4462 static void x_scroll_bar_handle_release P_ ((struct scroll_bar *,
4463 struct input_event *));
4464 static void x_scroll_bar_handle_drag P_ ((WindowPtr, struct scroll_bar *,
4465 Point, struct input_event *));
4466 static void x_set_toolkit_scroll_bar_thumb P_ ((struct scroll_bar *,
4467 int, int, int));
4469 /* Last scroll bar part sent in x_scroll_bar_handle_*. */
4471 static int last_scroll_bar_part;
4473 static EventLoopTimerRef scroll_bar_timer;
4475 static int scroll_bar_timer_event_posted_p;
4477 #define SCROLL_BAR_FIRST_DELAY 0.5
4478 #define SCROLL_BAR_CONTINUOUS_DELAY (1.0 / 15)
4480 static pascal void
4481 scroll_bar_timer_callback (timer, data)
4482 EventLoopTimerRef timer;
4483 void *data;
4485 OSStatus err;
4487 err = mac_post_mouse_moved_event ();
4488 if (err == noErr)
4489 scroll_bar_timer_event_posted_p = 1;
4492 static OSStatus
4493 install_scroll_bar_timer ()
4495 static EventLoopTimerUPP scroll_bar_timer_callbackUPP = NULL;
4497 if (scroll_bar_timer_callbackUPP == NULL)
4498 scroll_bar_timer_callbackUPP =
4499 NewEventLoopTimerUPP (scroll_bar_timer_callback);
4501 if (scroll_bar_timer == NULL)
4502 /* Mac OS X and CarbonLib 1.5 and later allow us to specify
4503 kEventDurationForever as delays. */
4504 return
4505 InstallEventLoopTimer (GetCurrentEventLoop (),
4506 kEventDurationForever, kEventDurationForever,
4507 scroll_bar_timer_callbackUPP, NULL,
4508 &scroll_bar_timer);
4511 static OSStatus
4512 set_scroll_bar_timer (delay)
4513 EventTimerInterval delay;
4515 if (scroll_bar_timer == NULL)
4516 install_scroll_bar_timer ();
4518 scroll_bar_timer_event_posted_p = 0;
4520 return SetEventLoopTimerNextFireTime (scroll_bar_timer, delay);
4523 static int
4524 control_part_code_to_scroll_bar_part (part_code)
4525 ControlPartCode part_code;
4527 switch (part_code)
4529 case kControlUpButtonPart: return scroll_bar_up_arrow;
4530 case kControlDownButtonPart: return scroll_bar_down_arrow;
4531 case kControlPageUpPart: return scroll_bar_above_handle;
4532 case kControlPageDownPart: return scroll_bar_below_handle;
4533 case kControlIndicatorPart: return scroll_bar_handle;
4536 return -1;
4539 static void
4540 construct_scroll_bar_click (bar, part, bufp)
4541 struct scroll_bar *bar;
4542 int part;
4543 struct input_event *bufp;
4545 bufp->kind = SCROLL_BAR_CLICK_EVENT;
4546 bufp->frame_or_window = bar->window;
4547 bufp->arg = Qnil;
4548 bufp->part = part;
4549 bufp->code = 0;
4550 XSETINT (bufp->x, 0);
4551 XSETINT (bufp->y, 0);
4552 bufp->modifiers = 0;
4555 static OSStatus
4556 get_control_part_bounds (ch, part_code, rect)
4557 ControlHandle ch;
4558 ControlPartCode part_code;
4559 Rect *rect;
4561 RgnHandle region = NewRgn ();
4562 OSStatus err;
4564 err = GetControlRegion (ch, part_code, region);
4565 if (err == noErr)
4566 GetRegionBounds (region, rect);
4567 DisposeRgn (region);
4569 return err;
4572 static void
4573 x_scroll_bar_handle_press (bar, part_code, bufp)
4574 struct scroll_bar *bar;
4575 ControlPartCode part_code;
4576 struct input_event *bufp;
4578 int part = control_part_code_to_scroll_bar_part (part_code);
4580 if (part < 0)
4581 return;
4583 if (part != scroll_bar_handle)
4585 construct_scroll_bar_click (bar, part, bufp);
4586 HiliteControl (SCROLL_BAR_CONTROL_HANDLE (bar), part_code);
4587 set_scroll_bar_timer (SCROLL_BAR_FIRST_DELAY);
4590 last_scroll_bar_part = part;
4591 bar->dragging = Qnil;
4592 tracked_scroll_bar = bar;
4595 static void
4596 x_scroll_bar_handle_release (bar, bufp)
4597 struct scroll_bar *bar;
4598 struct input_event *bufp;
4600 if (last_scroll_bar_part != scroll_bar_handle
4601 || !GC_NILP (bar->dragging))
4602 construct_scroll_bar_click (bar, scroll_bar_end_scroll, bufp);
4604 HiliteControl (SCROLL_BAR_CONTROL_HANDLE (bar), 0);
4605 set_scroll_bar_timer (kEventDurationForever);
4607 last_scroll_bar_part = -1;
4608 bar->dragging = Qnil;
4609 tracked_scroll_bar = NULL;
4612 static void
4613 x_scroll_bar_handle_drag (win, bar, mouse_pos, bufp)
4614 WindowPtr win;
4615 struct scroll_bar *bar;
4616 Point mouse_pos;
4617 struct input_event *bufp;
4619 ControlHandle ch = SCROLL_BAR_CONTROL_HANDLE (bar);
4621 if (last_scroll_bar_part == scroll_bar_handle)
4623 int top, top_range;
4624 Rect r;
4626 get_control_part_bounds (SCROLL_BAR_CONTROL_HANDLE (bar),
4627 kControlIndicatorPart, &r);
4629 if (GC_NILP (bar->dragging))
4630 XSETINT (bar->dragging, mouse_pos.v - r.top);
4632 top = mouse_pos.v - XINT (bar->dragging) - XINT (bar->track_top);
4633 top_range = (XINT (bar->track_height) - (r.bottom - r.top)) *
4634 (1.0 + (float) GetControlViewSize (ch) / GetControl32BitMaximum (ch))
4635 + .5;
4637 if (top < 0)
4638 top = 0;
4639 if (top > top_range)
4640 top = top_range;
4642 construct_scroll_bar_click (bar, scroll_bar_handle, bufp);
4643 XSETINT (bufp->x, top);
4644 XSETINT (bufp->y, top_range);
4646 else
4648 ControlPartCode part_code;
4649 int unhilite_p = 0, part;
4651 if (ch != FindControlUnderMouse (mouse_pos, win, &part_code))
4652 unhilite_p = 1;
4653 else
4655 part = control_part_code_to_scroll_bar_part (part_code);
4657 switch (last_scroll_bar_part)
4659 case scroll_bar_above_handle:
4660 case scroll_bar_below_handle:
4661 if (part != scroll_bar_above_handle
4662 && part != scroll_bar_below_handle)
4663 unhilite_p = 1;
4664 break;
4666 case scroll_bar_up_arrow:
4667 case scroll_bar_down_arrow:
4668 if (part != scroll_bar_up_arrow
4669 && part != scroll_bar_down_arrow)
4670 unhilite_p = 1;
4671 break;
4675 if (unhilite_p)
4676 HiliteControl (SCROLL_BAR_CONTROL_HANDLE (bar), 0);
4677 else if (part != last_scroll_bar_part
4678 || scroll_bar_timer_event_posted_p)
4680 construct_scroll_bar_click (bar, part, bufp);
4681 last_scroll_bar_part = part;
4682 HiliteControl (SCROLL_BAR_CONTROL_HANDLE (bar), part_code);
4683 set_scroll_bar_timer (SCROLL_BAR_CONTINUOUS_DELAY);
4688 /* Set the thumb size and position of scroll bar BAR. We are currently
4689 displaying PORTION out of a whole WHOLE, and our position POSITION. */
4691 static void
4692 x_set_toolkit_scroll_bar_thumb (bar, portion, position, whole)
4693 struct scroll_bar *bar;
4694 int portion, position, whole;
4696 ControlHandle ch = SCROLL_BAR_CONTROL_HANDLE (bar);
4697 int value, viewsize, maximum;
4699 if (XINT (bar->track_height) == 0)
4700 return;
4702 if (whole == 0)
4703 value = 0, viewsize = 1, maximum = 0;
4704 else
4706 value = position;
4707 viewsize = portion;
4708 maximum = max (0, whole - portion);
4711 BLOCK_INPUT;
4713 if (GetControlViewSize (ch) != viewsize
4714 || GetControl32BitValue (ch) != value
4715 || GetControl32BitMaximum (ch) != maximum)
4717 /* Temporarily hide the scroll bar to avoid multiple redraws. */
4718 SetControlVisibility (ch, false, false);
4720 SetControl32BitMaximum (ch, maximum);
4721 SetControl32BitValue (ch, value);
4722 SetControlViewSize (ch, viewsize);
4724 SetControlVisibility (ch, true, true);
4727 UNBLOCK_INPUT;
4730 #endif /* USE_TOOLKIT_SCROLL_BARS */
4734 /************************************************************************
4735 Scroll bars, general
4736 ************************************************************************/
4738 /* Create a scroll bar and return the scroll bar vector for it. W is
4739 the Emacs window on which to create the scroll bar. TOP, LEFT,
4740 WIDTH and HEIGHT are the pixel coordinates and dimensions of the
4741 scroll bar. */
4743 static struct scroll_bar *
4744 x_scroll_bar_create (w, top, left, width, height, disp_top, disp_height)
4745 struct window *w;
4746 int top, left, width, height, disp_top, disp_height;
4748 struct frame *f = XFRAME (w->frame);
4749 struct scroll_bar *bar
4750 = XSCROLL_BAR (Fmake_vector (make_number (SCROLL_BAR_VEC_SIZE), Qnil));
4751 Rect r;
4752 ControlHandle ch;
4754 BLOCK_INPUT;
4756 r.left = left;
4757 r.top = disp_top;
4758 r.right = left + width;
4759 r.bottom = disp_top + disp_height;
4761 #if USE_CG_DRAWING
4762 mac_prepare_for_quickdraw (f);
4763 #endif
4764 #if TARGET_API_MAC_CARBON
4765 ch = NewControl (FRAME_MAC_WINDOW (f), &r, "\p",
4766 #if USE_TOOLKIT_SCROLL_BARS
4767 false,
4768 #else
4769 width < disp_height,
4770 #endif
4771 0, 0, 0, kControlScrollBarProc, (long) bar);
4772 #else
4773 ch = NewControl (FRAME_MAC_WINDOW (f), &r, "\p", width < disp_height,
4774 0, 0, 0, scrollBarProc, (long) bar);
4775 #endif
4776 SET_SCROLL_BAR_CONTROL_HANDLE (bar, ch);
4778 XSETWINDOW (bar->window, w);
4779 XSETINT (bar->top, top);
4780 XSETINT (bar->left, left);
4781 XSETINT (bar->width, width);
4782 XSETINT (bar->height, height);
4783 XSETINT (bar->start, 0);
4784 XSETINT (bar->end, 0);
4785 bar->dragging = Qnil;
4786 #ifdef USE_TOOLKIT_SCROLL_BARS
4787 bar->track_top = Qnil;
4788 bar->track_height = Qnil;
4789 #endif
4791 /* Add bar to its frame's list of scroll bars. */
4792 bar->next = FRAME_SCROLL_BARS (f);
4793 bar->prev = Qnil;
4794 XSETVECTOR (FRAME_SCROLL_BARS (f), bar);
4795 if (!NILP (bar->next))
4796 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
4798 UNBLOCK_INPUT;
4799 return bar;
4803 /* Draw BAR's handle in the proper position.
4805 If the handle is already drawn from START to END, don't bother
4806 redrawing it, unless REBUILD is non-zero; in that case, always
4807 redraw it. (REBUILD is handy for drawing the handle after expose
4808 events.)
4810 Normally, we want to constrain the start and end of the handle to
4811 fit inside its rectangle, but if the user is dragging the scroll
4812 bar handle, we want to let them drag it down all the way, so that
4813 the bar's top is as far down as it goes; otherwise, there's no way
4814 to move to the very end of the buffer. */
4816 #ifndef USE_TOOLKIT_SCROLL_BARS
4818 static void
4819 x_scroll_bar_set_handle (bar, start, end, rebuild)
4820 struct scroll_bar *bar;
4821 int start, end;
4822 int rebuild;
4824 int dragging = ! NILP (bar->dragging);
4825 ControlHandle ch = SCROLL_BAR_CONTROL_HANDLE (bar);
4826 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
4827 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height));
4828 int length = end - start;
4830 /* If the display is already accurate, do nothing. */
4831 if (! rebuild
4832 && start == XINT (bar->start)
4833 && end == XINT (bar->end))
4834 return;
4836 BLOCK_INPUT;
4838 /* Make sure the values are reasonable, and try to preserve the
4839 distance between start and end. */
4840 if (start < 0)
4841 start = 0;
4842 else if (start > top_range)
4843 start = top_range;
4844 end = start + length;
4846 if (end < start)
4847 end = start;
4848 else if (end > top_range && ! dragging)
4849 end = top_range;
4851 /* Store the adjusted setting in the scroll bar. */
4852 XSETINT (bar->start, start);
4853 XSETINT (bar->end, end);
4855 /* Clip the end position, just for display. */
4856 if (end > top_range)
4857 end = top_range;
4859 /* Draw bottom positions VERTICAL_SCROLL_BAR_MIN_HANDLE pixels below
4860 top positions, to make sure the handle is always at least that
4861 many pixels tall. */
4862 end += VERTICAL_SCROLL_BAR_MIN_HANDLE;
4864 SetControlMinimum (ch, 0);
4865 /* Don't inadvertently activate deactivated scroll bars */
4866 if (GetControlMaximum (ch) != -1)
4867 SetControlMaximum (ch, top_range + VERTICAL_SCROLL_BAR_MIN_HANDLE
4868 - (end - start));
4869 SetControlValue (ch, start);
4870 #if TARGET_API_MAC_CARBON
4871 SetControlViewSize (ch, end - start);
4872 #endif
4874 UNBLOCK_INPUT;
4877 #endif /* !USE_TOOLKIT_SCROLL_BARS */
4879 /* Destroy scroll bar BAR, and set its Emacs window's scroll bar to
4880 nil. */
4882 static void
4883 x_scroll_bar_remove (bar)
4884 struct scroll_bar *bar;
4886 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
4888 BLOCK_INPUT;
4890 #if USE_CG_DRAWING
4891 mac_prepare_for_quickdraw (f);
4892 #endif
4893 /* Destroy the Mac scroll bar control */
4894 DisposeControl (SCROLL_BAR_CONTROL_HANDLE (bar));
4896 /* Disassociate this scroll bar from its window. */
4897 XWINDOW (bar->window)->vertical_scroll_bar = Qnil;
4899 UNBLOCK_INPUT;
4903 /* Set the handle of the vertical scroll bar for WINDOW to indicate
4904 that we are displaying PORTION characters out of a total of WHOLE
4905 characters, starting at POSITION. If WINDOW has no scroll bar,
4906 create one. */
4908 static void
4909 XTset_vertical_scroll_bar (w, portion, whole, position)
4910 struct window *w;
4911 int portion, whole, position;
4913 struct frame *f = XFRAME (w->frame);
4914 struct scroll_bar *bar;
4915 int top, height, left, sb_left, width, sb_width, disp_top, disp_height;
4916 int window_y, window_height;
4918 /* Get window dimensions. */
4919 window_box (w, -1, 0, &window_y, 0, &window_height);
4920 top = window_y;
4921 width = WINDOW_CONFIG_SCROLL_BAR_COLS (w) * FRAME_COLUMN_WIDTH (f);
4922 height = window_height;
4924 /* Compute the left edge of the scroll bar area. */
4925 left = WINDOW_SCROLL_BAR_AREA_X (w);
4927 /* Compute the width of the scroll bar which might be less than
4928 the width of the area reserved for the scroll bar. */
4929 if (WINDOW_CONFIG_SCROLL_BAR_WIDTH (w) > 0)
4930 sb_width = WINDOW_CONFIG_SCROLL_BAR_WIDTH (w);
4931 else
4932 sb_width = width;
4934 /* Compute the left edge of the scroll bar. */
4935 if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w))
4936 sb_left = left;
4937 else
4938 sb_left = left + width - sb_width;
4940 /* Adjustments according to Inside Macintosh to make it look nice */
4941 disp_top = top;
4942 disp_height = height;
4943 #ifdef MAC_OS8
4944 if (disp_top == 0)
4946 disp_top = -1;
4947 disp_height++;
4949 else if (disp_top == FRAME_PIXEL_HEIGHT (f) - 16)
4951 disp_top++;
4952 disp_height--;
4955 if (sb_left + sb_width == FRAME_PIXEL_WIDTH (f))
4956 sb_left++;
4957 #endif
4959 /* Does the scroll bar exist yet? */
4960 if (NILP (w->vertical_scroll_bar))
4962 BLOCK_INPUT;
4963 mac_clear_area (f, left, top, width, height);
4964 UNBLOCK_INPUT;
4965 bar = x_scroll_bar_create (w, top, sb_left, sb_width, height, disp_top,
4966 disp_height);
4967 XSETVECTOR (w->vertical_scroll_bar, bar);
4969 else
4971 /* It may just need to be moved and resized. */
4972 ControlHandle ch;
4974 bar = XSCROLL_BAR (w->vertical_scroll_bar);
4975 ch = SCROLL_BAR_CONTROL_HANDLE (bar);
4977 BLOCK_INPUT;
4979 /* If already correctly positioned, do nothing. */
4980 if (!(XINT (bar->left) == sb_left
4981 && XINT (bar->top) == top
4982 && XINT (bar->width) == sb_width
4983 && XINT (bar->height) == height))
4985 /* Since toolkit scroll bars are smaller than the space reserved
4986 for them on the frame, we have to clear "under" them. */
4987 mac_clear_area (f, left, top, width, height);
4989 #if USE_CG_DRAWING
4990 mac_prepare_for_quickdraw (f);
4991 #endif
4992 HideControl (ch);
4993 MoveControl (ch, sb_left + VERTICAL_SCROLL_BAR_WIDTH_TRIM, disp_top);
4994 SizeControl (ch, sb_width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2,
4995 disp_height);
4996 #ifndef USE_TOOLKIT_SCROLL_BARS
4997 if (sb_width < disp_height)
4998 ShowControl (ch);
4999 #endif
5001 /* Remember new settings. */
5002 XSETINT (bar->left, sb_left);
5003 XSETINT (bar->top, top);
5004 XSETINT (bar->width, sb_width);
5005 XSETINT (bar->height, height);
5006 #ifdef USE_TOOLKIT_SCROLL_BARS
5007 bar->track_top = Qnil;
5008 bar->track_height = Qnil;
5009 #endif
5012 UNBLOCK_INPUT;
5015 #ifdef USE_TOOLKIT_SCROLL_BARS
5016 if (NILP (bar->track_top))
5018 if (sb_width >= disp_height)
5020 XSETINT (bar->track_top, 0);
5021 XSETINT (bar->track_height, 0);
5023 else
5025 ControlHandle ch = SCROLL_BAR_CONTROL_HANDLE (bar);
5026 Rect r0, r1;
5028 BLOCK_INPUT;
5030 SetControl32BitMinimum (ch, 0);
5031 SetControl32BitMaximum (ch, 1);
5032 SetControlViewSize (ch, 1);
5034 /* Move the scroll bar thumb to the top. */
5035 SetControl32BitValue (ch, 0);
5036 get_control_part_bounds (ch, kControlIndicatorPart, &r0);
5038 /* Move the scroll bar thumb to the bottom. */
5039 SetControl32BitValue (ch, 1);
5040 get_control_part_bounds (ch, kControlIndicatorPart, &r1);
5042 UnionRect (&r0, &r1, &r0);
5043 XSETINT (bar->track_top, r0.top);
5044 XSETINT (bar->track_height, r0.bottom - r0.top);
5046 /* Don't show the scroll bar if its height is not enough to
5047 display the scroll bar thumb. */
5048 if (r0.bottom - r0.top > 0)
5049 ShowControl (ch);
5051 UNBLOCK_INPUT;
5055 x_set_toolkit_scroll_bar_thumb (bar, portion, position, whole);
5056 #else /* not USE_TOOLKIT_SCROLL_BARS */
5057 /* Set the scroll bar's current state, unless we're currently being
5058 dragged. */
5059 if (NILP (bar->dragging))
5061 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, height);
5063 if (whole == 0)
5064 x_scroll_bar_set_handle (bar, 0, top_range, 0);
5065 else
5067 int start = ((double) position * top_range) / whole;
5068 int end = ((double) (position + portion) * top_range) / whole;
5069 x_scroll_bar_set_handle (bar, start, end, 0);
5072 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5076 /* The following three hooks are used when we're doing a thorough
5077 redisplay of the frame. We don't explicitly know which scroll bars
5078 are going to be deleted, because keeping track of when windows go
5079 away is a real pain - "Can you say set-window-configuration, boys
5080 and girls?" Instead, we just assert at the beginning of redisplay
5081 that *all* scroll bars are to be removed, and then save a scroll bar
5082 from the fiery pit when we actually redisplay its window. */
5084 /* Arrange for all scroll bars on FRAME to be removed at the next call
5085 to `*judge_scroll_bars_hook'. A scroll bar may be spared if
5086 `*redeem_scroll_bar_hook' is applied to its window before the judgment. */
5088 static void
5089 XTcondemn_scroll_bars (frame)
5090 FRAME_PTR frame;
5092 /* Transfer all the scroll bars to FRAME_CONDEMNED_SCROLL_BARS. */
5093 while (! NILP (FRAME_SCROLL_BARS (frame)))
5095 Lisp_Object bar;
5096 bar = FRAME_SCROLL_BARS (frame);
5097 FRAME_SCROLL_BARS (frame) = XSCROLL_BAR (bar)->next;
5098 XSCROLL_BAR (bar)->next = FRAME_CONDEMNED_SCROLL_BARS (frame);
5099 XSCROLL_BAR (bar)->prev = Qnil;
5100 if (! NILP (FRAME_CONDEMNED_SCROLL_BARS (frame)))
5101 XSCROLL_BAR (FRAME_CONDEMNED_SCROLL_BARS (frame))->prev = bar;
5102 FRAME_CONDEMNED_SCROLL_BARS (frame) = bar;
5107 /* Un-mark WINDOW's scroll bar for deletion in this judgment cycle.
5108 Note that WINDOW isn't necessarily condemned at all. */
5110 static void
5111 XTredeem_scroll_bar (window)
5112 struct window *window;
5114 struct scroll_bar *bar;
5115 struct frame *f;
5117 /* We can't redeem this window's scroll bar if it doesn't have one. */
5118 if (NILP (window->vertical_scroll_bar))
5119 abort ();
5121 bar = XSCROLL_BAR (window->vertical_scroll_bar);
5123 /* Unlink it from the condemned list. */
5124 f = XFRAME (WINDOW_FRAME (window));
5125 if (NILP (bar->prev))
5127 /* If the prev pointer is nil, it must be the first in one of
5128 the lists. */
5129 if (EQ (FRAME_SCROLL_BARS (f), window->vertical_scroll_bar))
5130 /* It's not condemned. Everything's fine. */
5131 return;
5132 else if (EQ (FRAME_CONDEMNED_SCROLL_BARS (f),
5133 window->vertical_scroll_bar))
5134 FRAME_CONDEMNED_SCROLL_BARS (f) = bar->next;
5135 else
5136 /* If its prev pointer is nil, it must be at the front of
5137 one or the other! */
5138 abort ();
5140 else
5141 XSCROLL_BAR (bar->prev)->next = bar->next;
5143 if (! NILP (bar->next))
5144 XSCROLL_BAR (bar->next)->prev = bar->prev;
5146 bar->next = FRAME_SCROLL_BARS (f);
5147 bar->prev = Qnil;
5148 XSETVECTOR (FRAME_SCROLL_BARS (f), bar);
5149 if (! NILP (bar->next))
5150 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
5153 /* Remove all scroll bars on FRAME that haven't been saved since the
5154 last call to `*condemn_scroll_bars_hook'. */
5156 static void
5157 XTjudge_scroll_bars (f)
5158 FRAME_PTR f;
5160 Lisp_Object bar, next;
5162 bar = FRAME_CONDEMNED_SCROLL_BARS (f);
5164 /* Clear out the condemned list now so we won't try to process any
5165 more events on the hapless scroll bars. */
5166 FRAME_CONDEMNED_SCROLL_BARS (f) = Qnil;
5168 for (; ! NILP (bar); bar = next)
5170 struct scroll_bar *b = XSCROLL_BAR (bar);
5172 x_scroll_bar_remove (b);
5174 next = b->next;
5175 b->next = b->prev = Qnil;
5178 /* Now there should be no references to the condemned scroll bars,
5179 and they should get garbage-collected. */
5183 /* Handle a mouse click on the scroll bar BAR. If *EMACS_EVENT's kind
5184 is set to something other than NO_EVENT, it is enqueued.
5186 This may be called from a signal handler, so we have to ignore GC
5187 mark bits. */
5189 static void
5190 x_scroll_bar_handle_click (bar, part_code, er, bufp)
5191 struct scroll_bar *bar;
5192 ControlPartCode part_code;
5193 EventRecord *er;
5194 struct input_event *bufp;
5196 int win_y, top_range;
5198 if (! GC_WINDOWP (bar->window))
5199 abort ();
5201 bufp->kind = SCROLL_BAR_CLICK_EVENT;
5202 bufp->frame_or_window = bar->window;
5203 bufp->arg = Qnil;
5205 bar->dragging = Qnil;
5207 switch (part_code)
5209 case kControlUpButtonPart:
5210 bufp->part = scroll_bar_up_arrow;
5211 break;
5212 case kControlDownButtonPart:
5213 bufp->part = scroll_bar_down_arrow;
5214 break;
5215 case kControlPageUpPart:
5216 bufp->part = scroll_bar_above_handle;
5217 break;
5218 case kControlPageDownPart:
5219 bufp->part = scroll_bar_below_handle;
5220 break;
5221 #if TARGET_API_MAC_CARBON
5222 default:
5223 #else
5224 case kControlIndicatorPart:
5225 #endif
5226 if (er->what == mouseDown)
5227 bar->dragging = make_number (0);
5228 XSETVECTOR (last_mouse_scroll_bar, bar);
5229 bufp->part = scroll_bar_handle;
5230 break;
5233 win_y = XINT (bufp->y) - XINT (bar->top);
5234 top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (0/*dummy*/, XINT (bar->height));
5236 win_y -= VERTICAL_SCROLL_BAR_TOP_BORDER;
5238 win_y -= 24;
5240 if (! NILP (bar->dragging))
5241 win_y -= XINT (bar->dragging);
5243 if (win_y < 0)
5244 win_y = 0;
5245 if (win_y > top_range)
5246 win_y = top_range;
5248 XSETINT (bufp->x, win_y);
5249 XSETINT (bufp->y, top_range);
5252 #ifndef USE_TOOLKIT_SCROLL_BARS
5254 /* Handle some mouse motion while someone is dragging the scroll bar.
5256 This may be called from a signal handler, so we have to ignore GC
5257 mark bits. */
5259 static void
5260 x_scroll_bar_note_movement (bar, y_pos, t)
5261 struct scroll_bar *bar;
5262 int y_pos;
5263 Time t;
5265 FRAME_PTR f = XFRAME (XWINDOW (bar->window)->frame);
5267 last_mouse_movement_time = t;
5269 f->mouse_moved = 1;
5270 XSETVECTOR (last_mouse_scroll_bar, bar);
5272 /* If we're dragging the bar, display it. */
5273 if (! GC_NILP (bar->dragging))
5275 /* Where should the handle be now? */
5276 int new_start = y_pos - 24;
5278 if (new_start != XINT (bar->start))
5280 int new_end = new_start + (XINT (bar->end) - XINT (bar->start));
5282 x_scroll_bar_set_handle (bar, new_start, new_end, 0);
5287 #endif /* !USE_TOOLKIT_SCROLL_BARS */
5289 /* Return information to the user about the current position of the mouse
5290 on the scroll bar. */
5292 static void
5293 x_scroll_bar_report_motion (fp, bar_window, part, x, y, time)
5294 FRAME_PTR *fp;
5295 Lisp_Object *bar_window;
5296 enum scroll_bar_part *part;
5297 Lisp_Object *x, *y;
5298 unsigned long *time;
5300 struct scroll_bar *bar = XSCROLL_BAR (last_mouse_scroll_bar);
5301 ControlHandle ch = SCROLL_BAR_CONTROL_HANDLE (bar);
5302 #if TARGET_API_MAC_CARBON
5303 WindowPtr wp = GetControlOwner (ch);
5304 #else
5305 WindowPtr wp = (*ch)->contrlOwner;
5306 #endif
5307 Point mouse_pos;
5308 struct frame *f = mac_window_to_frame (wp);
5309 int win_y, top_range;
5311 SetPortWindowPort (wp);
5313 GetMouse (&mouse_pos);
5315 win_y = mouse_pos.v - XINT (bar->top);
5316 top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height));
5318 win_y -= VERTICAL_SCROLL_BAR_TOP_BORDER;
5320 win_y -= 24;
5322 if (! NILP (bar->dragging))
5323 win_y -= XINT (bar->dragging);
5325 if (win_y < 0)
5326 win_y = 0;
5327 if (win_y > top_range)
5328 win_y = top_range;
5330 *fp = f;
5331 *bar_window = bar->window;
5333 if (! NILP (bar->dragging))
5334 *part = scroll_bar_handle;
5335 else if (win_y < XINT (bar->start))
5336 *part = scroll_bar_above_handle;
5337 else if (win_y < XINT (bar->end) + VERTICAL_SCROLL_BAR_MIN_HANDLE)
5338 *part = scroll_bar_handle;
5339 else
5340 *part = scroll_bar_below_handle;
5342 XSETINT (*x, win_y);
5343 XSETINT (*y, top_range);
5345 f->mouse_moved = 0;
5346 last_mouse_scroll_bar = Qnil;
5348 *time = last_mouse_movement_time;
5352 /* The screen has been cleared so we may have changed foreground or
5353 background colors, and the scroll bars may need to be redrawn.
5354 Clear out the scroll bars, and ask for expose events, so we can
5355 redraw them. */
5357 void
5358 x_scroll_bar_clear (f)
5359 FRAME_PTR f;
5361 XTcondemn_scroll_bars (f);
5362 XTjudge_scroll_bars (f);
5366 /***********************************************************************
5367 Text Cursor
5368 ***********************************************************************/
5370 /* Set clipping for output in glyph row ROW. W is the window in which
5371 we operate. GC is the graphics context to set clipping in.
5373 ROW may be a text row or, e.g., a mode line. Text rows must be
5374 clipped to the interior of the window dedicated to text display,
5375 mode lines must be clipped to the whole window. */
5377 static void
5378 x_clip_to_row (w, row, area, gc)
5379 struct window *w;
5380 struct glyph_row *row;
5381 int area;
5382 GC gc;
5384 struct frame *f = XFRAME (WINDOW_FRAME (w));
5385 Rect clip_rect;
5386 int window_x, window_y, window_width;
5388 window_box (w, area, &window_x, &window_y, &window_width, 0);
5390 clip_rect.left = window_x;
5391 clip_rect.top = WINDOW_TO_FRAME_PIXEL_Y (w, row->y);
5392 clip_rect.top = max (clip_rect.top, window_y);
5393 clip_rect.right = clip_rect.left + window_width;
5394 clip_rect.bottom = clip_rect.top + row->visible_height;
5396 mac_set_clip_rectangles (FRAME_MAC_DISPLAY (f), gc, &clip_rect, 1);
5400 /* Draw a hollow box cursor on window W in glyph row ROW. */
5402 static void
5403 x_draw_hollow_cursor (w, row)
5404 struct window *w;
5405 struct glyph_row *row;
5407 struct frame *f = XFRAME (WINDOW_FRAME (w));
5408 struct mac_display_info *dpyinfo = FRAME_MAC_DISPLAY_INFO (f);
5409 Display *dpy = FRAME_MAC_DISPLAY (f);
5410 int x, y, wd, h;
5411 XGCValues xgcv;
5412 struct glyph *cursor_glyph;
5413 GC gc;
5415 /* Get the glyph the cursor is on. If we can't tell because
5416 the current matrix is invalid or such, give up. */
5417 cursor_glyph = get_phys_cursor_glyph (w);
5418 if (cursor_glyph == NULL)
5419 return;
5421 /* Compute frame-relative coordinates for phys cursor. */
5422 get_phys_cursor_geometry (w, row, cursor_glyph, &x, &y, &h);
5423 wd = w->phys_cursor_width;
5425 /* The foreground of cursor_gc is typically the same as the normal
5426 background color, which can cause the cursor box to be invisible. */
5427 xgcv.foreground = f->output_data.mac->cursor_pixel;
5428 if (dpyinfo->scratch_cursor_gc)
5429 XChangeGC (dpy, dpyinfo->scratch_cursor_gc, GCForeground, &xgcv);
5430 else
5431 dpyinfo->scratch_cursor_gc = XCreateGC (dpy, FRAME_MAC_WINDOW (f),
5432 GCForeground, &xgcv);
5433 gc = dpyinfo->scratch_cursor_gc;
5435 /* Set clipping, draw the rectangle, and reset clipping again. */
5436 x_clip_to_row (w, row, TEXT_AREA, gc);
5437 mac_draw_rectangle (f, gc, x, y, wd, h - 1);
5438 mac_reset_clip_rectangles (dpy, gc);
5442 /* Draw a bar cursor on window W in glyph row ROW.
5444 Implementation note: One would like to draw a bar cursor with an
5445 angle equal to the one given by the font property XA_ITALIC_ANGLE.
5446 Unfortunately, I didn't find a font yet that has this property set.
5447 --gerd. */
5449 static void
5450 x_draw_bar_cursor (w, row, width, kind)
5451 struct window *w;
5452 struct glyph_row *row;
5453 int width;
5454 enum text_cursor_kinds kind;
5456 struct frame *f = XFRAME (w->frame);
5457 struct glyph *cursor_glyph;
5459 /* If cursor is out of bounds, don't draw garbage. This can happen
5460 in mini-buffer windows when switching between echo area glyphs
5461 and mini-buffer. */
5462 cursor_glyph = get_phys_cursor_glyph (w);
5463 if (cursor_glyph == NULL)
5464 return;
5466 /* If on an image, draw like a normal cursor. That's usually better
5467 visible than drawing a bar, esp. if the image is large so that
5468 the bar might not be in the window. */
5469 if (cursor_glyph->type == IMAGE_GLYPH)
5471 struct glyph_row *row;
5472 row = MATRIX_ROW (w->current_matrix, w->phys_cursor.vpos);
5473 draw_phys_cursor_glyph (w, row, DRAW_CURSOR);
5475 else
5477 Display *dpy = FRAME_MAC_DISPLAY (f);
5478 Window window = FRAME_MAC_WINDOW (f);
5479 GC gc = FRAME_MAC_DISPLAY_INFO (f)->scratch_cursor_gc;
5480 unsigned long mask = GCForeground | GCBackground;
5481 struct face *face = FACE_FROM_ID (f, cursor_glyph->face_id);
5482 XGCValues xgcv;
5484 /* If the glyph's background equals the color we normally draw
5485 the bar cursor in, the bar cursor in its normal color is
5486 invisible. Use the glyph's foreground color instead in this
5487 case, on the assumption that the glyph's colors are chosen so
5488 that the glyph is legible. */
5489 if (face->background == f->output_data.mac->cursor_pixel)
5490 xgcv.background = xgcv.foreground = face->foreground;
5491 else
5492 xgcv.background = xgcv.foreground = f->output_data.mac->cursor_pixel;
5494 if (gc)
5495 XChangeGC (dpy, gc, mask, &xgcv);
5496 else
5498 gc = XCreateGC (dpy, window, mask, &xgcv);
5499 FRAME_MAC_DISPLAY_INFO (f)->scratch_cursor_gc = gc;
5502 if (width < 0)
5503 width = FRAME_CURSOR_WIDTH (f);
5504 width = min (cursor_glyph->pixel_width, width);
5506 w->phys_cursor_width = width;
5507 x_clip_to_row (w, row, TEXT_AREA, gc);
5509 if (kind == BAR_CURSOR)
5510 mac_fill_rectangle (f, gc,
5511 WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x),
5512 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y),
5513 width, row->height);
5514 else
5515 mac_fill_rectangle (f, gc,
5516 WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x),
5517 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y +
5518 row->height - width),
5519 cursor_glyph->pixel_width,
5520 width);
5522 mac_reset_clip_rectangles (dpy, gc);
5527 /* RIF: Define cursor CURSOR on frame F. */
5529 static void
5530 mac_define_frame_cursor (f, cursor)
5531 struct frame *f;
5532 Cursor cursor;
5534 struct mac_display_info *dpyinfo = FRAME_MAC_DISPLAY_INFO (f);
5536 if (dpyinfo->x_focus_frame == f)
5537 SetThemeCursor (cursor);
5541 /* RIF: Clear area on frame F. */
5543 static void
5544 mac_clear_frame_area (f, x, y, width, height)
5545 struct frame *f;
5546 int x, y, width, height;
5548 mac_clear_area (f, x, y, width, height);
5552 /* RIF: Draw cursor on window W. */
5554 static void
5555 mac_draw_window_cursor (w, glyph_row, x, y, cursor_type, cursor_width, on_p, active_p)
5556 struct window *w;
5557 struct glyph_row *glyph_row;
5558 int x, y;
5559 int cursor_type, cursor_width;
5560 int on_p, active_p;
5562 if (on_p)
5564 w->phys_cursor_type = cursor_type;
5565 w->phys_cursor_on_p = 1;
5567 if (glyph_row->exact_window_width_line_p
5568 && w->phys_cursor.hpos >= glyph_row->used[TEXT_AREA])
5570 glyph_row->cursor_in_fringe_p = 1;
5571 draw_fringe_bitmap (w, glyph_row, 0);
5573 else
5574 switch (cursor_type)
5576 case HOLLOW_BOX_CURSOR:
5577 x_draw_hollow_cursor (w, glyph_row);
5578 break;
5580 case FILLED_BOX_CURSOR:
5581 draw_phys_cursor_glyph (w, glyph_row, DRAW_CURSOR);
5582 break;
5584 case BAR_CURSOR:
5585 x_draw_bar_cursor (w, glyph_row, cursor_width, BAR_CURSOR);
5586 break;
5588 case HBAR_CURSOR:
5589 x_draw_bar_cursor (w, glyph_row, cursor_width, HBAR_CURSOR);
5590 break;
5592 case NO_CURSOR:
5593 w->phys_cursor_width = 0;
5594 break;
5596 default:
5597 abort ();
5603 /* Icons. */
5605 #if 0 /* MAC_TODO: no icon support yet. */
5607 x_bitmap_icon (f, icon)
5608 struct frame *f;
5609 Lisp_Object icon;
5611 HANDLE hicon;
5613 if (FRAME_W32_WINDOW (f) == 0)
5614 return 1;
5616 if (NILP (icon))
5617 hicon = LoadIcon (hinst, EMACS_CLASS);
5618 else if (STRINGP (icon))
5619 hicon = LoadImage (NULL, (LPCTSTR) SDATA (icon), IMAGE_ICON, 0, 0,
5620 LR_DEFAULTSIZE | LR_LOADFROMFILE);
5621 else if (SYMBOLP (icon))
5623 LPCTSTR name;
5625 if (EQ (icon, intern ("application")))
5626 name = (LPCTSTR) IDI_APPLICATION;
5627 else if (EQ (icon, intern ("hand")))
5628 name = (LPCTSTR) IDI_HAND;
5629 else if (EQ (icon, intern ("question")))
5630 name = (LPCTSTR) IDI_QUESTION;
5631 else if (EQ (icon, intern ("exclamation")))
5632 name = (LPCTSTR) IDI_EXCLAMATION;
5633 else if (EQ (icon, intern ("asterisk")))
5634 name = (LPCTSTR) IDI_ASTERISK;
5635 else if (EQ (icon, intern ("winlogo")))
5636 name = (LPCTSTR) IDI_WINLOGO;
5637 else
5638 return 1;
5640 hicon = LoadIcon (NULL, name);
5642 else
5643 return 1;
5645 if (hicon == NULL)
5646 return 1;
5648 PostMessage (FRAME_W32_WINDOW (f), WM_SETICON, (WPARAM) ICON_BIG,
5649 (LPARAM) hicon);
5651 return 0;
5653 #endif /* MAC_TODO */
5655 /************************************************************************
5656 Handling X errors
5657 ************************************************************************/
5659 /* Display Error Handling functions not used on W32. Listing them here
5660 helps diff stay in step when comparing w32term.c with xterm.c.
5662 x_error_catcher (display, error)
5663 x_catch_errors (dpy)
5664 x_catch_errors_unwind (old_val)
5665 x_check_errors (dpy, format)
5666 x_had_errors_p (dpy)
5667 x_clear_errors (dpy)
5668 x_uncatch_errors (dpy, count)
5669 x_trace_wire ()
5670 x_connection_signal (signalnum)
5671 x_connection_closed (dpy, error_message)
5672 x_error_quitter (display, error)
5673 x_error_handler (display, error)
5674 x_io_error_quitter (display)
5679 /* Changing the font of the frame. */
5681 /* Give frame F the font named FONTNAME as its default font, and
5682 return the full name of that font. FONTNAME may be a wildcard
5683 pattern; in that case, we choose some font that fits the pattern.
5684 The return value shows which font we chose. */
5686 Lisp_Object
5687 x_new_font (f, fontname)
5688 struct frame *f;
5689 register char *fontname;
5691 struct font_info *fontp
5692 = FS_LOAD_FONT (f, 0, fontname, -1);
5694 if (!fontp)
5695 return Qnil;
5697 FRAME_FONT (f) = (XFontStruct *) (fontp->font);
5698 FRAME_BASELINE_OFFSET (f) = fontp->baseline_offset;
5699 FRAME_FONTSET (f) = -1;
5701 FRAME_COLUMN_WIDTH (f) = fontp->average_width;
5702 FRAME_SPACE_WIDTH (f) = fontp->space_width;
5703 FRAME_LINE_HEIGHT (f) = FONT_HEIGHT (FRAME_FONT (f));
5705 compute_fringe_widths (f, 1);
5707 /* Compute the scroll bar width in character columns. */
5708 if (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0)
5710 int wid = FRAME_COLUMN_WIDTH (f);
5711 FRAME_CONFIG_SCROLL_BAR_COLS (f)
5712 = (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) + wid-1) / wid;
5714 else
5716 int wid = FRAME_COLUMN_WIDTH (f);
5717 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (14 + wid - 1) / wid;
5720 /* Now make the frame display the given font. */
5721 if (FRAME_MAC_WINDOW (f) != 0)
5723 XSetFont (FRAME_MAC_DISPLAY (f), f->output_data.mac->normal_gc,
5724 FRAME_FONT (f));
5725 XSetFont (FRAME_MAC_DISPLAY (f), f->output_data.mac->reverse_gc,
5726 FRAME_FONT (f));
5727 XSetFont (FRAME_MAC_DISPLAY (f), f->output_data.mac->cursor_gc,
5728 FRAME_FONT (f));
5730 /* Don't change the size of a tip frame; there's no point in
5731 doing it because it's done in Fx_show_tip, and it leads to
5732 problems because the tip frame has no widget. */
5733 if (NILP (tip_frame) || XFRAME (tip_frame) != f)
5734 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
5737 return build_string (fontp->full_name);
5740 /* Give frame F the fontset named FONTSETNAME as its default font, and
5741 return the full name of that fontset. FONTSETNAME may be a wildcard
5742 pattern; in that case, we choose some fontset that fits the pattern.
5743 The return value shows which fontset we chose. */
5745 Lisp_Object
5746 x_new_fontset (f, fontsetname)
5747 struct frame *f;
5748 char *fontsetname;
5750 int fontset = fs_query_fontset (build_string (fontsetname), 0);
5751 Lisp_Object result;
5753 if (fontset < 0)
5754 return Qnil;
5756 if (FRAME_FONTSET (f) == fontset)
5757 /* This fontset is already set in frame F. There's nothing more
5758 to do. */
5759 return fontset_name (fontset);
5761 result = x_new_font (f, (SDATA (fontset_ascii (fontset))));
5763 if (!STRINGP (result))
5764 /* Can't load ASCII font. */
5765 return Qnil;
5767 /* Since x_new_font doesn't update any fontset information, do it now. */
5768 FRAME_FONTSET (f) = fontset;
5770 return build_string (fontsetname);
5774 /***********************************************************************
5775 TODO: W32 Input Methods
5776 ***********************************************************************/
5777 /* Listing missing functions from xterm.c helps diff stay in step.
5779 xim_destroy_callback (xim, client_data, call_data)
5780 xim_open_dpy (dpyinfo, resource_name)
5781 struct xim_inst_t
5782 xim_instantiate_callback (display, client_data, call_data)
5783 xim_initialize (dpyinfo, resource_name)
5784 xim_close_dpy (dpyinfo)
5789 void
5790 mac_get_window_bounds (f, inner, outer)
5791 struct frame *f;
5792 Rect *inner, *outer;
5794 #if TARGET_API_MAC_CARBON
5795 GetWindowBounds (FRAME_MAC_WINDOW (f), kWindowContentRgn, inner);
5796 GetWindowBounds (FRAME_MAC_WINDOW (f), kWindowStructureRgn, outer);
5797 #else /* not TARGET_API_MAC_CARBON */
5798 RgnHandle region = NewRgn ();
5800 GetWindowRegion (FRAME_MAC_WINDOW (f), kWindowContentRgn, region);
5801 *inner = (*region)->rgnBBox;
5802 GetWindowRegion (FRAME_MAC_WINDOW (f), kWindowStructureRgn, region);
5803 *outer = (*region)->rgnBBox;
5804 DisposeRgn (region);
5805 #endif /* not TARGET_API_MAC_CARBON */
5810 /* Calculate the absolute position in frame F
5811 from its current recorded position values and gravity. */
5813 void
5814 x_calc_absolute_position (f)
5815 struct frame *f;
5817 int width_diff = 0, height_diff = 0;
5818 int flags = f->size_hint_flags;
5819 Rect inner, outer;
5821 /* We have nothing to do if the current position
5822 is already for the top-left corner. */
5823 if (! ((flags & XNegative) || (flags & YNegative)))
5824 return;
5826 /* Find the offsets of the outside upper-left corner of
5827 the inner window, with respect to the outer window. */
5828 mac_get_window_bounds (f, &inner, &outer);
5830 width_diff = (outer.right - outer.left) - (inner.right - inner.left);
5831 height_diff = (outer.bottom - outer.top) - (inner.bottom - inner.top);
5833 /* Treat negative positions as relative to the leftmost bottommost
5834 position that fits on the screen. */
5835 if (flags & XNegative)
5836 f->left_pos = (FRAME_MAC_DISPLAY_INFO (f)->width
5837 - width_diff
5838 - FRAME_PIXEL_WIDTH (f)
5839 + f->left_pos);
5841 if (flags & YNegative)
5842 f->top_pos = (FRAME_MAC_DISPLAY_INFO (f)->height
5843 - height_diff
5844 - FRAME_PIXEL_HEIGHT (f)
5845 + f->top_pos);
5847 /* The left_pos and top_pos
5848 are now relative to the top and left screen edges,
5849 so the flags should correspond. */
5850 f->size_hint_flags &= ~ (XNegative | YNegative);
5853 /* CHANGE_GRAVITY is 1 when calling from Fset_frame_position,
5854 to really change the position, and 0 when calling from
5855 x_make_frame_visible (in that case, XOFF and YOFF are the current
5856 position values). It is -1 when calling from x_set_frame_parameters,
5857 which means, do adjust for borders but don't change the gravity. */
5859 void
5860 x_set_offset (f, xoff, yoff, change_gravity)
5861 struct frame *f;
5862 register int xoff, yoff;
5863 int change_gravity;
5865 if (change_gravity > 0)
5867 f->top_pos = yoff;
5868 f->left_pos = xoff;
5869 f->size_hint_flags &= ~ (XNegative | YNegative);
5870 if (xoff < 0)
5871 f->size_hint_flags |= XNegative;
5872 if (yoff < 0)
5873 f->size_hint_flags |= YNegative;
5874 f->win_gravity = NorthWestGravity;
5876 x_calc_absolute_position (f);
5878 BLOCK_INPUT;
5879 x_wm_set_size_hint (f, (long) 0, 0);
5881 #if TARGET_API_MAC_CARBON
5882 MoveWindowStructure (FRAME_MAC_WINDOW (f), f->left_pos, f->top_pos);
5883 /* If the title bar is completely outside the screen, adjust the
5884 position. */
5885 ConstrainWindowToScreen (FRAME_MAC_WINDOW (f), kWindowTitleBarRgn,
5886 kWindowConstrainMoveRegardlessOfFit
5887 | kWindowConstrainAllowPartial, NULL, NULL);
5888 x_real_positions (f, &f->left_pos, &f->top_pos);
5889 #else
5891 Rect inner, outer, screen_rect, dummy;
5892 RgnHandle region = NewRgn ();
5894 mac_get_window_bounds (f, &inner, &outer);
5895 f->x_pixels_diff = inner.left - outer.left;
5896 f->y_pixels_diff = inner.top - outer.top;
5897 MoveWindow (FRAME_MAC_WINDOW (f), f->left_pos + f->x_pixels_diff,
5898 f->top_pos + f->y_pixels_diff, false);
5900 /* If the title bar is completely outside the screen, adjust the
5901 position. The variable `outer' holds the title bar rectangle.
5902 The variable `inner' holds slightly smaller one than `outer',
5903 so that the calculation of overlapping may not become too
5904 strict. */
5905 GetWindowRegion (FRAME_MAC_WINDOW (f), kWindowTitleBarRgn, region);
5906 outer = (*region)->rgnBBox;
5907 DisposeRgn (region);
5908 inner = outer;
5909 InsetRect (&inner, 8, 8);
5910 screen_rect = qd.screenBits.bounds;
5911 screen_rect.top += GetMBarHeight ();
5913 if (!SectRect (&inner, &screen_rect, &dummy))
5915 if (inner.right <= screen_rect.left)
5916 f->left_pos = screen_rect.left;
5917 else if (inner.left >= screen_rect.right)
5918 f->left_pos = screen_rect.right - (outer.right - outer.left);
5920 if (inner.bottom <= screen_rect.top)
5921 f->top_pos = screen_rect.top;
5922 else if (inner.top >= screen_rect.bottom)
5923 f->top_pos = screen_rect.bottom - (outer.bottom - outer.top);
5925 MoveWindow (FRAME_MAC_WINDOW (f), f->left_pos + f->x_pixels_diff,
5926 f->top_pos + f->y_pixels_diff, false);
5929 #endif
5931 UNBLOCK_INPUT;
5934 /* Call this to change the size of frame F's x-window.
5935 If CHANGE_GRAVITY is 1, we change to top-left-corner window gravity
5936 for this size change and subsequent size changes.
5937 Otherwise we leave the window gravity unchanged. */
5939 void
5940 x_set_window_size (f, change_gravity, cols, rows)
5941 struct frame *f;
5942 int change_gravity;
5943 int cols, rows;
5945 int pixelwidth, pixelheight;
5947 BLOCK_INPUT;
5949 check_frame_size (f, &rows, &cols);
5950 f->scroll_bar_actual_width
5951 = FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f);
5953 compute_fringe_widths (f, 0);
5955 pixelwidth = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, cols);
5956 pixelheight = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, rows);
5958 f->win_gravity = NorthWestGravity;
5959 x_wm_set_size_hint (f, (long) 0, 0);
5961 SizeWindow (FRAME_MAC_WINDOW (f), pixelwidth, pixelheight, 0);
5962 #if TARGET_API_MAC_CARBON
5963 if (f->output_data.mac->hourglass_control)
5965 #if USE_CG_DRAWING
5966 mac_prepare_for_quickdraw (f);
5967 #endif
5968 MoveControl (f->output_data.mac->hourglass_control,
5969 pixelwidth - HOURGLASS_WIDTH, 0);
5971 #endif
5973 /* Now, strictly speaking, we can't be sure that this is accurate,
5974 but the window manager will get around to dealing with the size
5975 change request eventually, and we'll hear how it went when the
5976 ConfigureNotify event gets here.
5978 We could just not bother storing any of this information here,
5979 and let the ConfigureNotify event set everything up, but that
5980 might be kind of confusing to the Lisp code, since size changes
5981 wouldn't be reported in the frame parameters until some random
5982 point in the future when the ConfigureNotify event arrives.
5984 We pass 1 for DELAY since we can't run Lisp code inside of
5985 a BLOCK_INPUT. */
5986 change_frame_size (f, rows, cols, 0, 1, 0);
5987 FRAME_PIXEL_WIDTH (f) = pixelwidth;
5988 FRAME_PIXEL_HEIGHT (f) = pixelheight;
5990 /* We've set {FRAME,PIXEL}_{WIDTH,HEIGHT} to the values we hope to
5991 receive in the ConfigureNotify event; if we get what we asked
5992 for, then the event won't cause the screen to become garbaged, so
5993 we have to make sure to do it here. */
5994 SET_FRAME_GARBAGED (f);
5996 XFlush (FRAME_X_DISPLAY (f));
5998 /* If cursor was outside the new size, mark it as off. */
5999 mark_window_cursors_off (XWINDOW (f->root_window));
6001 /* Clear out any recollection of where the mouse highlighting was,
6002 since it might be in a place that's outside the new frame size.
6003 Actually checking whether it is outside is a pain in the neck,
6004 so don't try--just let the highlighting be done afresh with new size. */
6005 cancel_mouse_face (f);
6007 UNBLOCK_INPUT;
6010 /* Mouse warping. */
6012 void x_set_mouse_pixel_position (struct frame *f, int pix_x, int pix_y);
6014 void
6015 x_set_mouse_position (f, x, y)
6016 struct frame *f;
6017 int x, y;
6019 int pix_x, pix_y;
6021 pix_x = FRAME_COL_TO_PIXEL_X (f, x) + FRAME_COLUMN_WIDTH (f) / 2;
6022 pix_y = FRAME_LINE_TO_PIXEL_Y (f, y) + FRAME_LINE_HEIGHT (f) / 2;
6024 if (pix_x < 0) pix_x = 0;
6025 if (pix_x > FRAME_PIXEL_WIDTH (f)) pix_x = FRAME_PIXEL_WIDTH (f);
6027 if (pix_y < 0) pix_y = 0;
6028 if (pix_y > FRAME_PIXEL_HEIGHT (f)) pix_y = FRAME_PIXEL_HEIGHT (f);
6030 x_set_mouse_pixel_position (f, pix_x, pix_y);
6033 void
6034 x_set_mouse_pixel_position (f, pix_x, pix_y)
6035 struct frame *f;
6036 int pix_x, pix_y;
6038 #ifdef MAC_OSX
6039 Point p;
6040 CGPoint point;
6042 BLOCK_INPUT;
6043 SetPortWindowPort (FRAME_MAC_WINDOW (f));
6044 p.h = pix_x;
6045 p.v = pix_y;
6046 LocalToGlobal (&p);
6047 point.x = p.h;
6048 point.y = p.v;
6049 CGWarpMouseCursorPosition (point);
6050 UNBLOCK_INPUT;
6051 #else
6052 #if 0 /* MAC_TODO: LMSetMouseLocation and CursorDeviceMoveTo are non-Carbon */
6053 BLOCK_INPUT;
6055 XWarpPointer (FRAME_X_DISPLAY (f), None, FRAME_X_WINDOW (f),
6056 0, 0, 0, 0, pix_x, pix_y);
6057 UNBLOCK_INPUT;
6058 #endif
6059 #endif
6062 /* focus shifting, raising and lowering. */
6064 void
6065 x_focus_on_frame (f)
6066 struct frame *f;
6068 #if 0 /* This proves to be unpleasant. */
6069 x_raise_frame (f);
6070 #endif
6071 #if 0
6072 /* I don't think that the ICCCM allows programs to do things like this
6073 without the interaction of the window manager. Whatever you end up
6074 doing with this code, do it to x_unfocus_frame too. */
6075 XSetInputFocus (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
6076 RevertToPointerRoot, CurrentTime);
6077 #endif /* ! 0 */
6080 void
6081 x_unfocus_frame (f)
6082 struct frame *f;
6086 /* Raise frame F. */
6088 void
6089 x_raise_frame (f)
6090 struct frame *f;
6092 if (f->async_visible)
6094 BLOCK_INPUT;
6095 BringToFront (FRAME_MAC_WINDOW (f));
6096 UNBLOCK_INPUT;
6100 /* Lower frame F. */
6102 void
6103 x_lower_frame (f)
6104 struct frame *f;
6106 if (f->async_visible)
6108 BLOCK_INPUT;
6109 SendBehind (FRAME_MAC_WINDOW (f), NULL);
6110 UNBLOCK_INPUT;
6114 static void
6115 XTframe_raise_lower (f, raise_flag)
6116 FRAME_PTR f;
6117 int raise_flag;
6119 if (raise_flag)
6120 x_raise_frame (f);
6121 else
6122 x_lower_frame (f);
6125 /* Change of visibility. */
6127 static void
6128 mac_handle_visibility_change (f)
6129 struct frame *f;
6131 WindowPtr wp = FRAME_MAC_WINDOW (f);
6132 int visible = 0, iconified = 0;
6133 struct input_event buf;
6135 if (IsWindowVisible (wp))
6137 if (IsWindowCollapsed (wp))
6138 iconified = 1;
6139 else
6140 visible = 1;
6143 if (!f->async_visible && visible)
6145 if (f->iconified)
6147 /* wait_reading_process_output will notice this and update
6148 the frame's display structures. If we were made
6149 invisible, we should not set garbaged, because that stops
6150 redrawing on Update events. */
6151 SET_FRAME_GARBAGED (f);
6153 EVENT_INIT (buf);
6154 buf.kind = DEICONIFY_EVENT;
6155 XSETFRAME (buf.frame_or_window, f);
6156 buf.arg = Qnil;
6157 kbd_buffer_store_event (&buf);
6159 else if (! NILP (Vframe_list) && ! NILP (XCDR (Vframe_list)))
6160 /* Force a redisplay sooner or later to update the
6161 frame titles in case this is the second frame. */
6162 record_asynch_buffer_change ();
6164 else if (f->async_visible && !visible)
6165 if (iconified)
6167 EVENT_INIT (buf);
6168 buf.kind = ICONIFY_EVENT;
6169 XSETFRAME (buf.frame_or_window, f);
6170 buf.arg = Qnil;
6171 kbd_buffer_store_event (&buf);
6174 f->async_visible = visible;
6175 f->async_iconified = iconified;
6178 /* This tries to wait until the frame is really visible.
6179 However, if the window manager asks the user where to position
6180 the frame, this will return before the user finishes doing that.
6181 The frame will not actually be visible at that time,
6182 but it will become visible later when the window manager
6183 finishes with it. */
6185 void
6186 x_make_frame_visible (f)
6187 struct frame *f;
6189 BLOCK_INPUT;
6191 if (! FRAME_VISIBLE_P (f))
6193 /* We test FRAME_GARBAGED_P here to make sure we don't
6194 call x_set_offset a second time
6195 if we get to x_make_frame_visible a second time
6196 before the window gets really visible. */
6197 if (! FRAME_ICONIFIED_P (f)
6198 && ! f->output_data.mac->asked_for_visible)
6200 #if TARGET_API_MAC_CARBON
6201 if (!(FRAME_SIZE_HINTS (f)->flags & (USPosition | PPosition)))
6203 struct frame *sf = SELECTED_FRAME ();
6204 if (!FRAME_MAC_P (sf))
6205 RepositionWindow (FRAME_MAC_WINDOW (f), NULL,
6206 kWindowCenterOnMainScreen);
6207 else
6208 RepositionWindow (FRAME_MAC_WINDOW (f),
6209 FRAME_MAC_WINDOW (sf),
6210 #if MAC_OS_X_VERSION_MAX_ALLOWED >= 1020
6211 kWindowCascadeStartAtParentWindowScreen
6212 #else
6213 kWindowCascadeOnParentWindowScreen
6214 #endif
6216 x_real_positions (f, &f->left_pos, &f->top_pos);
6218 else
6219 #endif
6220 x_set_offset (f, f->left_pos, f->top_pos, 0);
6223 f->output_data.mac->asked_for_visible = 1;
6225 CollapseWindow (FRAME_MAC_WINDOW (f), false);
6226 ShowWindow (FRAME_MAC_WINDOW (f));
6229 XFlush (FRAME_MAC_DISPLAY (f));
6231 /* Synchronize to ensure Emacs knows the frame is visible
6232 before we do anything else. We do this loop with input not blocked
6233 so that incoming events are handled. */
6235 Lisp_Object frame;
6236 int count;
6238 /* This must come after we set COUNT. */
6239 UNBLOCK_INPUT;
6241 XSETFRAME (frame, f);
6243 /* Wait until the frame is visible. Process X events until a
6244 MapNotify event has been seen, or until we think we won't get a
6245 MapNotify at all.. */
6246 for (count = input_signal_count + 10;
6247 input_signal_count < count && !FRAME_VISIBLE_P (f);)
6249 /* Force processing of queued events. */
6250 x_sync (f);
6252 /* Machines that do polling rather than SIGIO have been
6253 observed to go into a busy-wait here. So we'll fake an
6254 alarm signal to let the handler know that there's something
6255 to be read. We used to raise a real alarm, but it seems
6256 that the handler isn't always enabled here. This is
6257 probably a bug. */
6258 if (input_polling_used ())
6260 /* It could be confusing if a real alarm arrives while
6261 processing the fake one. Turn it off and let the
6262 handler reset it. */
6263 extern void poll_for_input_1 P_ ((void));
6264 int old_poll_suppress_count = poll_suppress_count;
6265 poll_suppress_count = 1;
6266 poll_for_input_1 ();
6267 poll_suppress_count = old_poll_suppress_count;
6270 /* See if a MapNotify event has been processed. */
6271 FRAME_SAMPLE_VISIBILITY (f);
6276 /* Change from mapped state to withdrawn state. */
6278 /* Make the frame visible (mapped and not iconified). */
6280 void
6281 x_make_frame_invisible (f)
6282 struct frame *f;
6284 /* A deactivate event does not occur when the last visible frame is
6285 made invisible. So if we clear the highlight here, it will not
6286 be rehighlighted when it is made visible. */
6287 #if 0
6288 /* Don't keep the highlight on an invisible frame. */
6289 if (FRAME_MAC_DISPLAY_INFO (f)->x_highlight_frame == f)
6290 FRAME_MAC_DISPLAY_INFO (f)->x_highlight_frame = 0;
6291 #endif
6293 BLOCK_INPUT;
6295 /* Before unmapping the window, update the WM_SIZE_HINTS property to claim
6296 that the current position of the window is user-specified, rather than
6297 program-specified, so that when the window is mapped again, it will be
6298 placed at the same location, without forcing the user to position it
6299 by hand again (they have already done that once for this window.) */
6300 x_wm_set_size_hint (f, (long) 0, 1);
6302 HideWindow (FRAME_MAC_WINDOW (f));
6304 UNBLOCK_INPUT;
6306 #if !USE_CARBON_EVENTS
6307 mac_handle_visibility_change (f);
6308 #endif
6311 /* Change window state from mapped to iconified. */
6313 void
6314 x_iconify_frame (f)
6315 struct frame *f;
6317 OSStatus err;
6319 /* A deactivate event does not occur when the last visible frame is
6320 iconified. So if we clear the highlight here, it will not be
6321 rehighlighted when it is deiconified. */
6322 #if 0
6323 /* Don't keep the highlight on an invisible frame. */
6324 if (FRAME_MAC_DISPLAY_INFO (f)->x_highlight_frame == f)
6325 FRAME_MAC_DISPLAY_INFO (f)->x_highlight_frame = 0;
6326 #endif
6328 if (f->async_iconified)
6329 return;
6331 BLOCK_INPUT;
6333 FRAME_SAMPLE_VISIBILITY (f);
6335 if (! FRAME_VISIBLE_P (f))
6336 ShowWindow (FRAME_MAC_WINDOW (f));
6338 err = CollapseWindow (FRAME_MAC_WINDOW (f), true);
6340 UNBLOCK_INPUT;
6342 if (err != noErr)
6343 error ("Can't notify window manager of iconification");
6345 #if !USE_CARBON_EVENTS
6346 mac_handle_visibility_change (f);
6347 #endif
6351 /* Free X resources of frame F. */
6353 void
6354 x_free_frame_resources (f)
6355 struct frame *f;
6357 struct mac_display_info *dpyinfo = FRAME_MAC_DISPLAY_INFO (f);
6358 WindowPtr wp = FRAME_MAC_WINDOW (f);
6360 BLOCK_INPUT;
6362 if (wp != tip_window)
6363 remove_window_handler (wp);
6365 DisposeWindow (wp);
6366 if (wp == tip_window)
6367 /* Neither WaitNextEvent nor ReceiveNextEvent receives `window
6368 closed' event. So we reset tip_window here. */
6369 tip_window = NULL;
6371 free_frame_menubar (f);
6373 if (FRAME_FACE_CACHE (f))
6374 free_frame_faces (f);
6376 x_free_gcs (f);
6378 if (FRAME_SIZE_HINTS (f))
6379 xfree (FRAME_SIZE_HINTS (f));
6381 xfree (f->output_data.mac);
6382 f->output_data.mac = NULL;
6384 if (f == dpyinfo->x_focus_frame)
6386 dpyinfo->x_focus_frame = 0;
6387 #if USE_MAC_FONT_PANEL
6388 mac_set_font_info_for_selection (NULL, DEFAULT_FACE_ID, 0);
6389 #endif
6391 if (f == dpyinfo->x_focus_event_frame)
6392 dpyinfo->x_focus_event_frame = 0;
6393 if (f == dpyinfo->x_highlight_frame)
6394 dpyinfo->x_highlight_frame = 0;
6396 if (f == dpyinfo->mouse_face_mouse_frame)
6398 dpyinfo->mouse_face_beg_row
6399 = dpyinfo->mouse_face_beg_col = -1;
6400 dpyinfo->mouse_face_end_row
6401 = dpyinfo->mouse_face_end_col = -1;
6402 dpyinfo->mouse_face_window = Qnil;
6403 dpyinfo->mouse_face_deferred_gc = 0;
6404 dpyinfo->mouse_face_mouse_frame = 0;
6407 UNBLOCK_INPUT;
6411 /* Destroy the X window of frame F. */
6413 void
6414 x_destroy_window (f)
6415 struct frame *f;
6417 struct mac_display_info *dpyinfo = FRAME_MAC_DISPLAY_INFO (f);
6419 x_free_frame_resources (f);
6421 dpyinfo->reference_count--;
6425 /* Setting window manager hints. */
6427 /* Set the normal size hints for the window manager, for frame F.
6428 FLAGS is the flags word to use--or 0 meaning preserve the flags
6429 that the window now has.
6430 If USER_POSITION is nonzero, we set the USPosition
6431 flag (this is useful when FLAGS is 0). */
6432 void
6433 x_wm_set_size_hint (f, flags, user_position)
6434 struct frame *f;
6435 long flags;
6436 int user_position;
6438 int base_width, base_height, width_inc, height_inc;
6439 int min_rows = 0, min_cols = 0;
6440 XSizeHints *size_hints;
6442 base_width = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 0);
6443 base_height = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, 0);
6444 width_inc = FRAME_COLUMN_WIDTH (f);
6445 height_inc = FRAME_LINE_HEIGHT (f);
6447 check_frame_size (f, &min_rows, &min_cols);
6449 size_hints = FRAME_SIZE_HINTS (f);
6450 if (size_hints == NULL)
6452 size_hints = FRAME_SIZE_HINTS (f) = xmalloc (sizeof (XSizeHints));
6453 bzero (size_hints, sizeof (XSizeHints));
6456 size_hints->flags |= PResizeInc | PMinSize | PBaseSize ;
6457 size_hints->width_inc = width_inc;
6458 size_hints->height_inc = height_inc;
6459 size_hints->min_width = base_width + min_cols * width_inc;
6460 size_hints->min_height = base_height + min_rows * height_inc;
6461 size_hints->base_width = base_width;
6462 size_hints->base_height = base_height;
6464 if (flags)
6465 size_hints->flags = flags;
6466 else if (user_position)
6468 size_hints->flags &= ~ PPosition;
6469 size_hints->flags |= USPosition;
6473 #if 0 /* MAC_TODO: hide application instead of iconify? */
6474 /* Used for IconicState or NormalState */
6476 void
6477 x_wm_set_window_state (f, state)
6478 struct frame *f;
6479 int state;
6481 #ifdef USE_X_TOOLKIT
6482 Arg al[1];
6484 XtSetArg (al[0], XtNinitialState, state);
6485 XtSetValues (f->output_data.x->widget, al, 1);
6486 #else /* not USE_X_TOOLKIT */
6487 Window window = FRAME_X_WINDOW (f);
6489 f->output_data.x->wm_hints.flags |= StateHint;
6490 f->output_data.x->wm_hints.initial_state = state;
6492 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
6493 #endif /* not USE_X_TOOLKIT */
6496 void
6497 x_wm_set_icon_pixmap (f, pixmap_id)
6498 struct frame *f;
6499 int pixmap_id;
6501 Pixmap icon_pixmap;
6503 #ifndef USE_X_TOOLKIT
6504 Window window = FRAME_X_WINDOW (f);
6505 #endif
6507 if (pixmap_id > 0)
6509 icon_pixmap = x_bitmap_pixmap (f, pixmap_id);
6510 f->output_data.x->wm_hints.icon_pixmap = icon_pixmap;
6512 else
6514 /* It seems there is no way to turn off use of an icon pixmap.
6515 The following line does it, only if no icon has yet been created,
6516 for some window managers. But with mwm it crashes.
6517 Some people say it should clear the IconPixmapHint bit in this case,
6518 but that doesn't work, and the X consortium said it isn't the
6519 right thing at all. Since there is no way to win,
6520 best to explicitly give up. */
6521 #if 0
6522 f->output_data.x->wm_hints.icon_pixmap = None;
6523 #else
6524 return;
6525 #endif
6528 #ifdef USE_X_TOOLKIT /* same as in x_wm_set_window_state. */
6531 Arg al[1];
6532 XtSetArg (al[0], XtNiconPixmap, icon_pixmap);
6533 XtSetValues (f->output_data.x->widget, al, 1);
6536 #else /* not USE_X_TOOLKIT */
6538 f->output_data.x->wm_hints.flags |= IconPixmapHint;
6539 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
6541 #endif /* not USE_X_TOOLKIT */
6544 #endif /* MAC_TODO */
6546 void
6547 x_wm_set_icon_position (f, icon_x, icon_y)
6548 struct frame *f;
6549 int icon_x, icon_y;
6551 #if 0 /* MAC_TODO: no icons on Mac */
6552 #ifdef USE_X_TOOLKIT
6553 Window window = XtWindow (f->output_data.x->widget);
6554 #else
6555 Window window = FRAME_X_WINDOW (f);
6556 #endif
6558 f->output_data.x->wm_hints.flags |= IconPositionHint;
6559 f->output_data.x->wm_hints.icon_x = icon_x;
6560 f->output_data.x->wm_hints.icon_y = icon_y;
6562 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
6563 #endif /* MAC_TODO */
6567 /***********************************************************************
6568 XLFD Pattern Match
6569 ***********************************************************************/
6571 /* An XLFD pattern is divided into blocks delimited by '*'. This
6572 structure holds information for each block. */
6573 struct xlfdpat_block
6575 /* Length of the pattern string in this block. Non-zero except for
6576 the first and the last blocks. */
6577 int len;
6579 /* Pattern string except the last character in this block. The last
6580 character is replaced with NUL in order to use it as a
6581 sentinel. */
6582 unsigned char *pattern;
6584 /* Last character of the pattern string. Must not be '?'. */
6585 unsigned char last_char;
6587 /* One of the tables for the Boyer-Moore string search. It
6588 specifies the number of positions to proceed for each character
6589 with which the match fails. */
6590 int skip[256];
6592 /* The skip value for the last character in the above `skip' is
6593 assigned to `infinity' in order to simplify a loop condition.
6594 The original value is saved here. */
6595 int last_char_skip;
6598 struct xlfdpat
6600 /* Normalized pattern string. "Normalized" means that capital
6601 letters are lowered, blocks are not empty except the first and
6602 the last ones, and trailing '?'s in a block that is not the last
6603 one are moved to the next one. The last character in each block
6604 is replaced with NUL. */
6605 unsigned char *buf;
6607 /* Number of characters except '*'s and trailing '?'s in the
6608 normalized pattern string. */
6609 int nchars;
6611 /* Number of trailing '?'s in the normalized pattern string. */
6612 int trailing_anychars;
6614 /* Number of blocks and information for each block. The latter is
6615 NULL if the pattern is exact (no '*' or '?' in it). */
6616 int nblocks;
6617 struct xlfdpat_block *blocks;
6620 static void
6621 xlfdpat_destroy (pat)
6622 struct xlfdpat *pat;
6624 if (pat)
6626 if (pat->buf)
6628 if (pat->blocks)
6629 xfree (pat->blocks);
6630 xfree (pat->buf);
6632 xfree (pat);
6636 static struct xlfdpat *
6637 xlfdpat_create (pattern)
6638 char *pattern;
6640 struct xlfdpat *pat;
6641 int nblocks, i, skip;
6642 unsigned char last_char, *p, *q, *anychar_head;
6643 struct xlfdpat_block *blk;
6645 pat = xmalloc (sizeof (struct xlfdpat));
6646 pat->buf = xmalloc (strlen (pattern) + 1);
6648 /* Normalize the pattern string and store it to `pat->buf'. */
6649 nblocks = 0;
6650 anychar_head = NULL;
6651 q = pat->buf;
6652 last_char = '\0';
6653 for (p = pattern; *p; p++)
6655 unsigned char c = *p;
6657 if (c == '*')
6658 if (last_char == '*')
6659 /* ...a** -> ...a* */
6660 continue;
6661 else
6663 if (last_char == '?')
6665 if (anychar_head > pat->buf && *(anychar_head - 1) == '*')
6666 /* ...*??* -> ...*?? */
6667 continue;
6668 else
6669 /* ...a??* -> ...a*?? */
6671 *anychar_head++ = '*';
6672 c = '?';
6675 nblocks++;
6677 else if (c == '?')
6679 if (last_char != '?')
6680 anychar_head = q;
6682 else
6683 /* On Mac OS X 10.3, tolower also converts non-ASCII
6684 characters for some locales. */
6685 if (isascii (c))
6686 c = tolower (c);
6688 *q++ = last_char = c;
6690 *q = '\0';
6691 nblocks++;
6692 pat->nblocks = nblocks;
6693 if (last_char != '?')
6694 pat->trailing_anychars = 0;
6695 else
6697 pat->trailing_anychars = q - anychar_head;
6698 q = anychar_head;
6700 pat->nchars = q - pat->buf - (nblocks - 1);
6702 if (anychar_head == NULL && nblocks == 1)
6704 /* The pattern is exact. */
6705 pat->blocks = NULL;
6706 return pat;
6709 pat->blocks = xmalloc (sizeof (struct xlfdpat_block) * nblocks);
6711 /* Divide the normalized pattern into blocks. */
6712 p = pat->buf;
6713 for (blk = pat->blocks; blk < pat->blocks + nblocks - 1; blk++)
6715 blk->pattern = p;
6716 while (*p != '*')
6717 p++;
6718 blk->len = p - blk->pattern;
6719 p++;
6721 blk->pattern = p;
6722 blk->len = q - blk->pattern;
6724 /* Setup a table for the Boyer-Moore string search. */
6725 for (blk = pat->blocks; blk < pat->blocks + nblocks; blk++)
6726 if (blk->len != 0)
6728 blk->last_char = blk->pattern[blk->len - 1];
6729 blk->pattern[blk->len - 1] = '\0';
6731 for (skip = 1; skip < blk->len; skip++)
6732 if (blk->pattern[blk->len - skip - 1] == '?')
6733 break;
6735 for (i = 0; i < 256; i++)
6736 blk->skip[i] = skip;
6738 p = blk->pattern + (blk->len - skip);
6739 while (--skip > 0)
6740 blk->skip[*p++] = skip;
6742 blk->last_char_skip = blk->skip[blk->last_char];
6745 return pat;
6748 static INLINE int
6749 xlfdpat_exact_p (pat)
6750 struct xlfdpat *pat;
6752 return pat->blocks == NULL;
6755 /* Return the first string in STRING + 0, ..., STRING + START_MAX such
6756 that the pattern in *BLK matches with its prefix. Return NULL
6757 there is no such strings. STRING must be lowered in advance. */
6759 static char *
6760 xlfdpat_block_match_1 (blk, string, start_max)
6761 struct xlfdpat_block *blk;
6762 unsigned char *string;
6763 int start_max;
6765 int start, infinity;
6766 unsigned char *p, *s;
6768 xassert (blk->len > 0);
6769 xassert (start_max + blk->len <= strlen (string));
6770 xassert (blk->last_char != '?');
6772 /* See the comments in the function `boyer_moore' (search.c) for the
6773 use of `infinity'. */
6774 infinity = start_max + blk->len + 1;
6775 blk->skip[blk->last_char] = infinity;
6777 start = 0;
6780 /* Check the last character of the pattern. */
6781 s = string + blk->len - 1;
6784 start += blk->skip[*(s + start)];
6786 while (start <= start_max);
6788 if (start < infinity)
6789 /* Couldn't find the last character. */
6790 return NULL;
6792 /* No less than `infinity' means we could find the last
6793 character at `s[start - infinity]'. */
6794 start -= infinity;
6796 /* Check the remaining characters. We prefer making no-'?'
6797 cases faster because the use of '?' is really rare. */
6798 p = blk->pattern;
6799 s = string + start;
6802 while (*p++ == *s++)
6805 while (*(p - 1) == '?');
6807 if (*(p - 1) == '\0')
6808 /* Matched. */
6809 return string + start;
6811 /* Didn't match. */
6812 start += blk->last_char_skip;
6814 while (start <= start_max);
6816 return NULL;
6819 #define xlfdpat_block_match(b, s, m) \
6820 ((b)->len == 1 ? memchr ((s), (b)->last_char, (m) + 1) \
6821 : xlfdpat_block_match_1 (b, s, m))
6823 /* Check if XLFD pattern PAT, which is generated by `xfldpat_create',
6824 matches with STRING. STRING must be lowered in advance. */
6826 static int
6827 xlfdpat_match (pat, string)
6828 struct xlfdpat *pat;
6829 unsigned char *string;
6831 int str_len, nblocks, i, start_max;
6832 struct xlfdpat_block *blk;
6833 unsigned char *s;
6835 xassert (pat->nblocks > 0);
6837 if (xlfdpat_exact_p (pat))
6838 return strcmp (pat->buf, string) == 0;
6840 /* The number of the characters in the string must not be smaller
6841 than that in the pattern. */
6842 str_len = strlen (string);
6843 if (str_len < pat->nchars + pat->trailing_anychars)
6844 return 0;
6846 /* Chop off the trailing '?'s. */
6847 str_len -= pat->trailing_anychars;
6849 /* The last block. When it is non-empty, it must match at the end
6850 of the string. */
6851 nblocks = pat->nblocks;
6852 blk = pat->blocks + (nblocks - 1);
6853 if (nblocks == 1)
6854 /* The last block is also the first one. */
6855 return (str_len == blk->len
6856 && (blk->len == 0 || xlfdpat_block_match (blk, string, 0)));
6857 else if (blk->len != 0)
6858 if (!xlfdpat_block_match (blk, string + (str_len - blk->len), 0))
6859 return 0;
6861 /* The first block. When it is non-empty, it must match at the
6862 beginning of the string. */
6863 blk = pat->blocks;
6864 if (blk->len != 0)
6866 s = xlfdpat_block_match (blk, string, 0);
6867 if (s == NULL)
6868 return 0;
6869 string = s + blk->len;
6872 /* The rest of the blocks. */
6873 start_max = str_len - pat->nchars;
6874 for (i = 1, blk++; i < nblocks - 1; i++, blk++)
6876 s = xlfdpat_block_match (blk, string, start_max);
6877 if (s == NULL)
6878 return 0;
6879 start_max -= s - string;
6880 string = s + blk->len;
6883 return 1;
6887 /***********************************************************************
6888 Fonts
6889 ***********************************************************************/
6891 /* Return a pointer to struct font_info of font FONT_IDX of frame F. */
6893 struct font_info *
6894 x_get_font_info (f, font_idx)
6895 FRAME_PTR f;
6896 int font_idx;
6898 return (FRAME_MAC_FONT_TABLE (f) + font_idx);
6901 /* the global font name table */
6902 static char **font_name_table = NULL;
6903 static int font_name_table_size = 0;
6904 static int font_name_count = 0;
6906 /* Alist linking font family names to Font Manager font family
6907 references (which can also be used as QuickDraw font IDs). We use
6908 an alist because hash tables are not ready when the terminal frame
6909 for Mac OS Classic is created. */
6910 static Lisp_Object fm_font_family_alist;
6911 #if USE_ATSUI
6912 /* Hash table linking font family names to ATSU font IDs. */
6913 static Lisp_Object atsu_font_id_hash;
6914 /* Alist linking Font Manager style to face attributes. */
6915 static Lisp_Object fm_style_face_attributes_alist;
6916 static Lisp_Object Vmac_atsu_font_table;
6917 extern Lisp_Object QCfamily, QCweight, QCslant, Qnormal, Qbold, Qitalic;
6918 #endif
6920 /* Alist linking character set strings to Mac text encoding and Emacs
6921 coding system. */
6922 static Lisp_Object Vmac_charset_info_alist;
6924 static Lisp_Object
6925 create_text_encoding_info_alist ()
6927 Lisp_Object result = Qnil, rest;
6929 for (rest = Vmac_charset_info_alist; CONSP (rest); rest = XCDR (rest))
6931 Lisp_Object charset_info = XCAR (rest);
6932 Lisp_Object charset, coding_system, text_encoding;
6933 Lisp_Object existing_info;
6935 if (!(CONSP (charset_info)
6936 && STRINGP (charset = XCAR (charset_info))
6937 && CONSP (XCDR (charset_info))
6938 && INTEGERP (text_encoding = XCAR (XCDR (charset_info)))
6939 && CONSP (XCDR (XCDR (charset_info)))
6940 && SYMBOLP (coding_system = XCAR (XCDR (XCDR (charset_info))))))
6941 continue;
6943 existing_info = assq_no_quit (text_encoding, result);
6944 if (NILP (existing_info))
6945 result = Fcons (list3 (text_encoding, coding_system, charset),
6946 result);
6947 else
6948 if (NILP (Fmember (charset, XCDR (XCDR (existing_info)))))
6949 XSETCDR (XCDR (existing_info),
6950 Fcons (charset, XCDR (XCDR (existing_info))));
6953 return result;
6957 static void
6958 decode_mac_font_name (name, size, coding_system)
6959 char *name;
6960 int size;
6961 Lisp_Object coding_system;
6963 struct coding_system coding;
6964 char *buf, *p;
6966 if (!NILP (coding_system) && !NILP (Fcoding_system_p (coding_system)))
6968 for (p = name; *p; p++)
6969 if (!isascii (*p) || iscntrl (*p))
6970 break;
6972 if (*p)
6974 setup_coding_system (coding_system, &coding);
6975 coding.src_multibyte = 0;
6976 coding.dst_multibyte = 1;
6977 coding.mode |= CODING_MODE_LAST_BLOCK;
6978 coding.composing = COMPOSITION_DISABLED;
6979 buf = (char *) alloca (size);
6981 decode_coding (&coding, name, buf, strlen (name), size - 1);
6982 bcopy (buf, name, coding.produced);
6983 name[coding.produced] = '\0';
6987 /* If there's just one occurrence of '-' in the family name, it is
6988 replaced with '_'. (More than one occurrence of '-' means a
6989 "FOUNDRY-FAMILY-CHARSET"-style name.) */
6990 p = strchr (name, '-');
6991 if (p && strchr (p + 1, '-') == NULL)
6992 *p = '_';
6994 for (p = name; *p; p++)
6995 /* On Mac OS X 10.3, tolower also converts non-ASCII characters
6996 for some locales. */
6997 if (isascii (*p))
6998 *p = tolower (*p);
7002 static char *
7003 mac_to_x_fontname (name, size, style, charset)
7004 char *name;
7005 int size;
7006 Style style;
7007 char *charset;
7009 Str31 foundry, cs;
7010 Str255 family;
7011 char xf[256], *result;
7012 unsigned char *p;
7014 if (sscanf (name, "%31[^-]-%255[^-]-%31s", foundry, family, cs) == 3)
7015 charset = cs;
7016 else
7018 strcpy(foundry, "Apple");
7019 strcpy(family, name);
7022 sprintf (xf, "%s-%c-normal--%d-%d-%d-%d-m-%d-%s",
7023 style & bold ? "bold" : "medium", style & italic ? 'i' : 'r',
7024 size, size * 10, size ? 72 : 0, size ? 72 : 0, size * 10, charset);
7026 result = xmalloc (strlen (foundry) + strlen (family) + strlen (xf) + 3 + 1);
7027 sprintf (result, "-%s-%s-%s", foundry, family, xf);
7028 for (p = result; *p; p++)
7029 /* On Mac OS X 10.3, tolower also converts non-ASCII characters
7030 for some locales. */
7031 if (isascii (*p))
7032 *p = tolower (*p);
7033 return result;
7037 /* Parse fully-specified and instantiated X11 font spec XF, and store
7038 the results to FAMILY, *SIZE, *STYLE, and CHARSET. Return 1 if the
7039 parsing succeeded, and 0 otherwise. For FAMILY and CHARSET, the
7040 caller must allocate at least 256 and 32 bytes respectively. For
7041 ordinary Mac fonts, the value stored to FAMILY should just be their
7042 names, like "monaco", "Taipei", etc. Fonts converted from the GNU
7043 intlfonts collection contain their charset designation in their
7044 names, like "ETL-Fixed-iso8859-1", "ETL-Fixed-koi8-r", etc. Both
7045 types of font names are handled accordingly. */
7047 const int kDefaultFontSize = 12;
7049 static int
7050 parse_x_font_name (xf, family, size, style, charset)
7051 char *xf, *family;
7052 int *size;
7053 Style *style;
7054 char *charset;
7056 Str31 foundry, weight;
7057 int point_size, avgwidth;
7058 char slant[2], *p;
7060 if (sscanf (xf, "-%31[^-]-%255[^-]-%31[^-]-%1[^-]-%*[^-]-%*[^-]-%d-%d-%*[^-]-%*[^-]-%*c-%d-%31s",
7061 foundry, family, weight, slant, size,
7062 &point_size, &avgwidth, charset) != 8
7063 && sscanf (xf, "-%31[^-]-%255[^-]-%31[^-]-%1[^-]-%*[^-]--%d-%d-%*[^-]-%*[^-]-%*c-%d-%31s",
7064 foundry, family, weight, slant, size,
7065 &point_size, &avgwidth, charset) != 8)
7066 return 0;
7068 if (*size == 0)
7070 if (point_size > 0)
7071 *size = point_size / 10;
7072 else if (avgwidth > 0)
7073 *size = avgwidth / 10;
7075 if (*size == 0)
7076 *size = kDefaultFontSize;
7078 *style = normal;
7079 if (strcmp (weight, "bold") == 0)
7080 *style |= bold;
7081 if (*slant == 'i')
7082 *style |= italic;
7084 if (NILP (Fassoc (build_string (charset), Vmac_charset_info_alist)))
7086 int foundry_len = strlen (foundry), family_len = strlen (family);
7088 if (foundry_len + family_len + strlen (charset) + 2 < sizeof (Str255))
7090 /* Like sprintf (family, "%s-%s-%s", foundry, family, charset),
7091 but take overlap into account. */
7092 memmove (family + foundry_len + 1, family, family_len);
7093 memcpy (family, foundry, foundry_len);
7094 family[foundry_len] = '-';
7095 family[foundry_len + 1 + family_len] = '-';
7096 strcpy (family + foundry_len + 1 + family_len + 1, charset);
7098 else
7099 return 0;
7102 for (p = family; *p; p++)
7103 /* On Mac OS X 10.3, tolower also converts non-ASCII characters
7104 for some locales. */
7105 if (isascii (*p))
7106 *p = tolower (*p);
7108 return 1;
7112 static void
7113 add_font_name_table_entry (char *font_name)
7115 if (font_name_table_size == 0)
7117 font_name_table_size = 256;
7118 font_name_table = (char **)
7119 xmalloc (font_name_table_size * sizeof (char *));
7121 else if (font_name_count + 1 >= font_name_table_size)
7123 font_name_table_size *= 2;
7124 font_name_table = (char **)
7125 xrealloc (font_name_table,
7126 font_name_table_size * sizeof (char *));
7129 font_name_table[font_name_count++] = font_name;
7132 static void
7133 add_mac_font_name (name, size, style, charset)
7134 char *name;
7135 int size;
7136 Style style;
7137 char *charset;
7139 if (size > 0)
7140 add_font_name_table_entry (mac_to_x_fontname (name, size, style, charset));
7141 else
7143 add_font_name_table_entry (mac_to_x_fontname (name, 0, style, charset));
7144 add_font_name_table_entry (mac_to_x_fontname (name, 0, italic, charset));
7145 add_font_name_table_entry (mac_to_x_fontname (name, 0, bold, charset));
7146 add_font_name_table_entry (mac_to_x_fontname (name, 0, italic | bold,
7147 charset));
7151 #if USE_ATSUI
7152 static Lisp_Object
7153 fm_style_to_face_attributes (fm_style)
7154 FMFontStyle fm_style;
7156 Lisp_Object tem;
7158 fm_style &= (bold | italic);
7159 tem = assq_no_quit (make_number (fm_style),
7160 fm_style_face_attributes_alist);
7161 if (!NILP (tem))
7162 return XCDR (tem);
7164 tem = list4 (QCweight, fm_style & bold ? Qbold : Qnormal,
7165 QCslant, fm_style & italic ? Qitalic : Qnormal);
7166 fm_style_face_attributes_alist =
7167 Fcons (Fcons (make_number (fm_style), tem),
7168 fm_style_face_attributes_alist);
7170 return tem;
7172 #endif
7174 /* Sets up the table font_name_table to contain the list of all fonts
7175 in the system the first time the table is used so that the Resource
7176 Manager need not be accessed every time this information is
7177 needed. */
7179 static void
7180 init_font_name_table ()
7182 #if TARGET_API_MAC_CARBON
7183 FMFontFamilyIterator ffi;
7184 FMFontFamilyInstanceIterator ffii;
7185 FMFontFamily ff;
7186 Lisp_Object text_encoding_info_alist;
7187 struct gcpro gcpro1;
7189 text_encoding_info_alist = create_text_encoding_info_alist ();
7191 #if USE_ATSUI
7192 #if USE_CG_TEXT_DRAWING
7193 init_cg_text_anti_aliasing_threshold ();
7194 #endif
7195 if (!NILP (assq_no_quit (make_number (kTextEncodingMacUnicode),
7196 text_encoding_info_alist)))
7198 OSStatus err;
7199 struct Lisp_Hash_Table *h;
7200 unsigned hash_code;
7201 ItemCount nfonts, i;
7202 ATSUFontID *font_ids = NULL;
7203 Ptr name;
7204 ByteCount name_len;
7205 Lisp_Object family;
7207 atsu_font_id_hash =
7208 make_hash_table (Qequal, make_number (DEFAULT_HASH_SIZE),
7209 make_float (DEFAULT_REHASH_SIZE),
7210 make_float (DEFAULT_REHASH_THRESHOLD),
7211 Qnil, Qnil, Qnil);;
7212 h = XHASH_TABLE (atsu_font_id_hash);
7214 err = ATSUFontCount (&nfonts);
7215 if (err == noErr)
7217 font_ids = xmalloc (sizeof (ATSUFontID) * nfonts);
7218 err = ATSUGetFontIDs (font_ids, nfonts, NULL);
7220 if (err == noErr)
7221 for (i = 0; i < nfonts; i++)
7223 err = ATSUFindFontName (font_ids[i], kFontFamilyName,
7224 kFontMacintoshPlatform, kFontNoScript,
7225 kFontNoLanguage, 0, NULL, &name_len, NULL);
7226 if (err != noErr)
7227 continue;
7228 name = xmalloc (name_len + 1);
7229 name[name_len] = '\0';
7230 err = ATSUFindFontName (font_ids[i], kFontFamilyName,
7231 kFontMacintoshPlatform, kFontNoScript,
7232 kFontNoLanguage, name_len, name,
7233 NULL, NULL);
7234 if (err == noErr)
7236 FMFontFamily ff;
7237 FMFontStyle style = normal;
7239 decode_mac_font_name (name, name_len + 1, Qnil);
7240 family = make_unibyte_string (name, name_len);
7241 FMGetFontFamilyInstanceFromFont (font_ids[i], &ff, &style);
7242 Fputhash ((font_ids[i] > MOST_POSITIVE_FIXNUM
7243 ? make_float (font_ids[i])
7244 : make_number (font_ids[i])),
7245 Fcons (QCfamily,
7246 Fcons (family,
7247 fm_style_to_face_attributes (style))),
7248 Vmac_atsu_font_table);
7249 if (*name != '.'
7250 && hash_lookup (h, family, &hash_code) < 0)
7252 add_mac_font_name (name, 0, normal, "iso10646-1");
7253 hash_put (h, family, long_to_cons (font_ids[i]),
7254 hash_code);
7257 xfree (name);
7259 if (font_ids)
7260 xfree (font_ids);
7262 #endif
7264 /* Create a dummy instance iterator here to avoid creating and
7265 destroying it in the loop. */
7266 if (FMCreateFontFamilyInstanceIterator (0, &ffii) != noErr)
7267 return;
7268 /* Create an iterator to enumerate the font families. */
7269 if (FMCreateFontFamilyIterator (NULL, NULL, kFMDefaultOptions, &ffi)
7270 != noErr)
7272 FMDisposeFontFamilyInstanceIterator (&ffii);
7273 return;
7276 GCPRO1 (text_encoding_info_alist);
7278 while (FMGetNextFontFamily (&ffi, &ff) == noErr)
7280 Str255 name;
7281 FMFont font;
7282 FMFontStyle style;
7283 FMFontSize size;
7284 TextEncoding encoding;
7285 TextEncodingBase sc;
7286 Lisp_Object text_encoding_info, family;
7288 if (FMGetFontFamilyName (ff, name) != noErr)
7289 continue;
7290 p2cstr (name);
7291 if (*name == '.')
7292 continue;
7294 if (FMGetFontFamilyTextEncoding (ff, &encoding) != noErr)
7295 continue;
7296 sc = GetTextEncodingBase (encoding);
7297 text_encoding_info = assq_no_quit (make_number (sc),
7298 text_encoding_info_alist);
7299 if (NILP (text_encoding_info))
7300 text_encoding_info = assq_no_quit (make_number (kTextEncodingMacRoman),
7301 text_encoding_info_alist);
7302 decode_mac_font_name (name, sizeof (name),
7303 XCAR (XCDR (text_encoding_info)));
7304 family = build_string (name);
7305 if (!NILP (Fassoc (family, fm_font_family_alist)))
7306 continue;
7307 fm_font_family_alist = Fcons (Fcons (family, make_number (ff)),
7308 fm_font_family_alist);
7310 /* Point the instance iterator at the current font family. */
7311 if (FMResetFontFamilyInstanceIterator (ff, &ffii) != noErr)
7312 continue;
7314 while (FMGetNextFontFamilyInstance (&ffii, &font, &style, &size)
7315 == noErr)
7317 Lisp_Object rest = XCDR (XCDR (text_encoding_info));
7319 if (size > 0 || style == normal)
7320 for (; !NILP (rest); rest = XCDR (rest))
7321 add_mac_font_name (name, size, style, SDATA (XCAR (rest)));
7325 UNGCPRO;
7327 /* Dispose of the iterators. */
7328 FMDisposeFontFamilyIterator (&ffi);
7329 FMDisposeFontFamilyInstanceIterator (&ffii);
7330 #else /* !TARGET_API_MAC_CARBON */
7331 GrafPtr port;
7332 SInt16 fontnum, old_fontnum;
7333 int num_mac_fonts = CountResources('FOND');
7334 int i, j;
7335 Handle font_handle, font_handle_2;
7336 short id, scriptcode;
7337 ResType type;
7338 Str255 name;
7339 struct FontAssoc *fat;
7340 struct AsscEntry *assc_entry;
7341 Lisp_Object text_encoding_info_alist, text_encoding_info, family;
7342 struct gcpro gcpro1;
7344 GetPort (&port); /* save the current font number used */
7345 old_fontnum = port->txFont;
7347 text_encoding_info_alist = create_text_encoding_info_alist ();
7349 GCPRO1 (text_encoding_info_alist);
7351 for (i = 1; i <= num_mac_fonts; i++) /* get all available fonts */
7353 font_handle = GetIndResource ('FOND', i);
7354 if (!font_handle)
7355 continue;
7357 GetResInfo (font_handle, &id, &type, name);
7358 GetFNum (name, &fontnum);
7359 p2cstr (name);
7360 if (fontnum == 0 || *name == '.')
7361 continue;
7363 TextFont (fontnum);
7364 scriptcode = FontToScript (fontnum);
7365 text_encoding_info = assq_no_quit (make_number (scriptcode),
7366 text_encoding_info_alist);
7367 if (NILP (text_encoding_info))
7368 text_encoding_info = assq_no_quit (make_number (smRoman),
7369 text_encoding_info_alist);
7370 decode_mac_font_name (name, sizeof (name),
7371 XCAR (XCDR (text_encoding_info)));
7372 family = build_string (name);
7373 if (!NILP (Fassoc (family, fm_font_family_alist)))
7374 continue;
7375 fm_font_family_alist = Fcons (Fcons (family, make_number (fontnum)),
7376 fm_font_family_alist);
7379 HLock (font_handle);
7381 if (GetResourceSizeOnDisk (font_handle)
7382 >= sizeof (struct FamRec))
7384 fat = (struct FontAssoc *) (*font_handle
7385 + sizeof (struct FamRec));
7386 assc_entry
7387 = (struct AsscEntry *) (*font_handle
7388 + sizeof (struct FamRec)
7389 + sizeof (struct FontAssoc));
7391 for (j = 0; j <= fat->numAssoc; j++, assc_entry++)
7393 Lisp_Object rest = XCDR (XCDR (text_encoding_info));
7395 for (; !NILP (rest); rest = XCDR (rest))
7396 add_mac_font_name (name, assc_entry->fontSize,
7397 assc_entry->fontStyle,
7398 SDATA (XCAR (rest)));
7402 HUnlock (font_handle);
7403 font_handle_2 = GetNextFOND (font_handle);
7404 ReleaseResource (font_handle);
7405 font_handle = font_handle_2;
7407 while (ResError () == noErr && font_handle);
7410 UNGCPRO;
7412 TextFont (old_fontnum);
7413 #endif /* !TARGET_API_MAC_CARBON */
7417 void
7418 mac_clear_font_name_table ()
7420 int i;
7422 for (i = 0; i < font_name_count; i++)
7423 xfree (font_name_table[i]);
7424 xfree (font_name_table);
7425 font_name_table = NULL;
7426 font_name_table_size = font_name_count = 0;
7427 fm_font_family_alist = Qnil;
7431 enum xlfd_scalable_field_index
7433 XLFD_SCL_PIXEL_SIZE,
7434 XLFD_SCL_POINT_SIZE,
7435 XLFD_SCL_AVGWIDTH,
7436 XLFD_SCL_LAST
7439 static int xlfd_scalable_fields[] =
7441 6, /* PIXEL_SIZE */
7442 7, /* POINT_SIZE */
7443 11, /* AVGWIDTH */
7447 static Lisp_Object
7448 mac_do_list_fonts (pattern, maxnames)
7449 char *pattern;
7450 int maxnames;
7452 int i, n_fonts = 0;
7453 Lisp_Object font_list = Qnil;
7454 struct xlfdpat *pat;
7455 char *scaled, *ptr;
7456 int scl_val[XLFD_SCL_LAST], *field, *val;
7457 int exact;
7459 if (font_name_table == NULL) /* Initialize when first used. */
7460 init_font_name_table ();
7462 for (i = 0; i < XLFD_SCL_LAST; i++)
7463 scl_val[i] = -1;
7465 /* If the pattern contains 14 dashes and one of PIXEL_SIZE,
7466 POINT_SIZE, and AVGWIDTH fields is explicitly specified, scalable
7467 fonts are scaled according to the specified size. */
7468 ptr = pattern;
7469 i = 0;
7470 field = xlfd_scalable_fields;
7471 val = scl_val;
7472 if (*ptr == '-')
7475 ptr++;
7476 if (i == *field)
7478 if ('0' <= *ptr && *ptr <= '9')
7480 *val = *ptr++ - '0';
7481 while ('0' <= *ptr && *ptr <= '9' && *val < 10000)
7482 *val = *val * 10 + *ptr++ - '0';
7483 if (*ptr != '-')
7484 *val = -1;
7486 field++;
7487 val++;
7489 ptr = strchr (ptr, '-');
7490 i++;
7492 while (ptr && i < 14);
7494 if (i == 14 && ptr == NULL)
7496 if (scl_val[XLFD_SCL_PIXEL_SIZE] < 0)
7497 scl_val[XLFD_SCL_PIXEL_SIZE] =
7498 (scl_val[XLFD_SCL_POINT_SIZE] > 0 ? scl_val[XLFD_SCL_POINT_SIZE] / 10
7499 : (scl_val[XLFD_SCL_AVGWIDTH] > 0 ? scl_val[XLFD_SCL_AVGWIDTH] / 10
7500 : -1));
7501 if (scl_val[XLFD_SCL_POINT_SIZE] < 0)
7502 scl_val[XLFD_SCL_POINT_SIZE] =
7503 (scl_val[XLFD_SCL_PIXEL_SIZE] > 0 ? scl_val[XLFD_SCL_PIXEL_SIZE] * 10
7504 : (scl_val[XLFD_SCL_AVGWIDTH] > 0 ? scl_val[XLFD_SCL_AVGWIDTH]
7505 : -1));
7506 if (scl_val[XLFD_SCL_AVGWIDTH] < 0)
7507 scl_val[XLFD_SCL_AVGWIDTH] =
7508 (scl_val[XLFD_SCL_PIXEL_SIZE] > 0 ? scl_val[XLFD_SCL_PIXEL_SIZE] * 10
7509 : (scl_val[XLFD_SCL_POINT_SIZE] > 0 ? scl_val[XLFD_SCL_POINT_SIZE]
7510 : -1));
7512 else
7513 scl_val[XLFD_SCL_PIXEL_SIZE] = -1;
7515 pat = xlfdpat_create (pattern);
7516 if (pat == NULL)
7517 return Qnil;
7519 exact = xlfdpat_exact_p (pat);
7521 for (i = 0; i < font_name_count; i++)
7523 if (xlfdpat_match (pat, font_name_table[i]))
7525 font_list = Fcons (build_string (font_name_table[i]), font_list);
7526 if (exact || (maxnames > 0 && ++n_fonts >= maxnames))
7527 break;
7529 else if (scl_val[XLFD_SCL_PIXEL_SIZE] > 0
7530 && (ptr = strstr (font_name_table[i], "-0-0-0-0-m-0-")))
7532 int former_len = ptr - font_name_table[i];
7534 scaled = xmalloc (strlen (font_name_table[i]) + 20 + 1);
7535 memcpy (scaled, font_name_table[i], former_len);
7536 sprintf (scaled + former_len,
7537 "-%d-%d-72-72-m-%d-%s",
7538 scl_val[XLFD_SCL_PIXEL_SIZE],
7539 scl_val[XLFD_SCL_POINT_SIZE],
7540 scl_val[XLFD_SCL_AVGWIDTH],
7541 ptr + sizeof ("-0-0-0-0-m-0-") - 1);
7543 if (xlfdpat_match (pat, scaled))
7545 font_list = Fcons (build_string (scaled), font_list);
7546 xfree (scaled);
7547 if (exact || (maxnames > 0 && ++n_fonts >= maxnames))
7548 break;
7550 else
7551 xfree (scaled);
7555 xlfdpat_destroy (pat);
7557 return font_list;
7560 /* Return a list of names of available fonts matching PATTERN on frame F.
7562 Frame F null means we have not yet created any frame on Mac, and
7563 consult the first display in x_display_list. MAXNAMES sets a limit
7564 on how many fonts to match. */
7566 Lisp_Object
7567 x_list_fonts (f, pattern, size, maxnames)
7568 struct frame *f;
7569 Lisp_Object pattern;
7570 int size, maxnames;
7572 Lisp_Object list = Qnil, patterns, tem, key;
7573 struct mac_display_info *dpyinfo
7574 = f ? FRAME_MAC_DISPLAY_INFO (f) : x_display_list;
7576 xassert (size <= 0);
7578 patterns = Fassoc (pattern, Valternate_fontname_alist);
7579 if (NILP (patterns))
7580 patterns = Fcons (pattern, Qnil);
7582 for (; CONSP (patterns); patterns = XCDR (patterns))
7584 pattern = XCAR (patterns);
7586 if (!STRINGP (pattern))
7587 continue;
7589 tem = XCAR (XCDR (dpyinfo->name_list_element));
7590 key = Fcons (pattern, make_number (maxnames));
7592 list = Fassoc (key, tem);
7593 if (!NILP (list))
7595 list = Fcdr_safe (list);
7596 /* We have a cashed list. Don't have to get the list again. */
7597 goto label_cached;
7600 BLOCK_INPUT;
7601 list = mac_do_list_fonts (SDATA (pattern), maxnames);
7602 UNBLOCK_INPUT;
7604 /* MAC_TODO: add code for matching outline fonts here */
7606 /* Now store the result in the cache. */
7607 XSETCAR (XCDR (dpyinfo->name_list_element),
7608 Fcons (Fcons (key, list),
7609 XCAR (XCDR (dpyinfo->name_list_element))));
7611 label_cached:
7612 if (NILP (list)) continue; /* Try the remaining alternatives. */
7615 return list;
7619 #if GLYPH_DEBUG
7621 /* Check that FONT is valid on frame F. It is if it can be found in F's
7622 font table. */
7624 static void
7625 x_check_font (f, font)
7626 struct frame *f;
7627 XFontStruct *font;
7629 int i;
7630 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
7632 xassert (font != NULL);
7634 for (i = 0; i < dpyinfo->n_fonts; i++)
7635 if (dpyinfo->font_table[i].name
7636 && font == dpyinfo->font_table[i].font)
7637 break;
7639 xassert (i < dpyinfo->n_fonts);
7642 #endif /* GLYPH_DEBUG != 0 */
7644 /* Set *W to the minimum width, *H to the minimum font height of FONT.
7645 Note: There are (broken) X fonts out there with invalid XFontStruct
7646 min_bounds contents. For example, handa@etl.go.jp reports that
7647 "-adobe-courier-medium-r-normal--*-180-*-*-m-*-iso8859-1" fonts
7648 have font->min_bounds.width == 0. */
7650 static INLINE void
7651 x_font_min_bounds (font, w, h)
7652 MacFontStruct *font;
7653 int *w, *h;
7655 *h = FONT_HEIGHT (font);
7656 *w = font->min_bounds.width;
7660 /* Compute the smallest character width and smallest font height over
7661 all fonts available on frame F. Set the members smallest_char_width
7662 and smallest_font_height in F's x_display_info structure to
7663 the values computed. Value is non-zero if smallest_font_height or
7664 smallest_char_width become smaller than they were before. */
7666 static int
7667 x_compute_min_glyph_bounds (f)
7668 struct frame *f;
7670 int i;
7671 struct mac_display_info *dpyinfo = FRAME_MAC_DISPLAY_INFO (f);
7672 MacFontStruct *font;
7673 int old_width = dpyinfo->smallest_char_width;
7674 int old_height = dpyinfo->smallest_font_height;
7676 dpyinfo->smallest_font_height = 100000;
7677 dpyinfo->smallest_char_width = 100000;
7679 for (i = 0; i < dpyinfo->n_fonts; ++i)
7680 if (dpyinfo->font_table[i].name)
7682 struct font_info *fontp = dpyinfo->font_table + i;
7683 int w, h;
7685 font = (MacFontStruct *) fontp->font;
7686 xassert (font != (MacFontStruct *) ~0);
7687 x_font_min_bounds (font, &w, &h);
7689 dpyinfo->smallest_font_height = min (dpyinfo->smallest_font_height, h);
7690 dpyinfo->smallest_char_width = min (dpyinfo->smallest_char_width, w);
7693 xassert (dpyinfo->smallest_char_width > 0
7694 && dpyinfo->smallest_font_height > 0);
7696 return (dpyinfo->n_fonts == 1
7697 || dpyinfo->smallest_char_width < old_width
7698 || dpyinfo->smallest_font_height < old_height);
7702 /* Determine whether given string is a fully-specified XLFD: all 14
7703 fields are present, none is '*'. */
7705 static int
7706 is_fully_specified_xlfd (char *p)
7708 int i;
7709 char *q;
7711 if (*p != '-')
7712 return 0;
7714 for (i = 0; i < 13; i++)
7716 q = strchr (p + 1, '-');
7717 if (q == NULL)
7718 return 0;
7719 if (q - p == 2 && *(p + 1) == '*')
7720 return 0;
7721 p = q;
7724 if (strchr (p + 1, '-') != NULL)
7725 return 0;
7727 if (*(p + 1) == '*' && *(p + 2) == '\0')
7728 return 0;
7730 return 1;
7734 /* XLoadQueryFont creates and returns an internal representation for a
7735 font in a MacFontStruct struct. There is really no concept
7736 corresponding to "loading" a font on the Mac. But we check its
7737 existence and find the font number and all other information for it
7738 and store them in the returned MacFontStruct. */
7740 static MacFontStruct *
7741 XLoadQueryFont (Display *dpy, char *fontname)
7743 int size;
7744 char *name;
7745 Str255 family;
7746 Str31 charset;
7747 SInt16 fontnum;
7748 #if USE_ATSUI
7749 static ATSUFontID font_id;
7750 ATSUStyle mac_style = NULL;
7751 #endif
7752 Style fontface;
7753 #if TARGET_API_MAC_CARBON
7754 TextEncoding encoding;
7755 int scriptcode;
7756 #else
7757 short scriptcode;
7758 #endif
7759 MacFontStruct *font;
7760 XCharStruct *space_bounds = NULL, *pcm;
7762 if (is_fully_specified_xlfd (fontname))
7763 name = fontname;
7764 else
7766 Lisp_Object matched_fonts;
7768 matched_fonts = mac_do_list_fonts (fontname, 1);
7769 if (NILP (matched_fonts))
7770 return NULL;
7771 name = SDATA (XCAR (matched_fonts));
7774 if (parse_x_font_name (name, family, &size, &fontface, charset) == 0)
7775 return NULL;
7777 #if USE_ATSUI
7778 if (strcmp (charset, "iso10646-1") == 0) /* XXX */
7780 OSStatus err;
7781 ATSUAttributeTag tags[] = {kATSUFontTag, kATSUSizeTag,
7782 kATSUQDBoldfaceTag, kATSUQDItalicTag};
7783 ByteCount sizes[] = {sizeof (ATSUFontID), sizeof (Fixed),
7784 sizeof (Boolean), sizeof (Boolean)};
7785 static Fixed size_fixed;
7786 static Boolean bold_p, italic_p;
7787 ATSUAttributeValuePtr values[] = {&font_id, &size_fixed,
7788 &bold_p, &italic_p};
7789 ATSUFontFeatureType types[] = {kAllTypographicFeaturesType,
7790 kDiacriticsType};
7791 ATSUFontFeatureSelector selectors[] = {kAllTypeFeaturesOffSelector,
7792 kDecomposeDiacriticsSelector};
7793 Lisp_Object font_id_cons;
7794 FMFontStyle style;
7796 font_id_cons = Fgethash (make_unibyte_string (family, strlen (family)),
7797 atsu_font_id_hash, Qnil);
7798 if (NILP (font_id_cons))
7799 return NULL;
7800 font_id = cons_to_long (font_id_cons);
7801 size_fixed = Long2Fix (size);
7802 bold_p = (fontface & bold) != 0;
7803 italic_p = (fontface & italic) != 0;
7804 err = ATSUCreateStyle (&mac_style);
7805 if (err != noErr)
7806 return NULL;
7807 err = ATSUSetFontFeatures (mac_style, sizeof (types) / sizeof (types[0]),
7808 types, selectors);
7809 if (err != noErr)
7810 return NULL;
7811 err = ATSUSetAttributes (mac_style, sizeof (tags) / sizeof (tags[0]),
7812 tags, sizes, values);
7813 if (err != noErr)
7814 return NULL;
7815 err = FMGetFontFamilyInstanceFromFont (font_id, &fontnum, &style);
7816 if (err != noErr)
7817 fontnum = -1;
7818 scriptcode = kTextEncodingMacUnicode;
7820 else
7821 #endif
7823 Lisp_Object tmp = Fassoc (build_string (family), fm_font_family_alist);
7825 if (NILP (tmp))
7826 return NULL;
7827 fontnum = XINT (XCDR (tmp));
7828 #if TARGET_API_MAC_CARBON
7829 if (FMGetFontFamilyTextEncoding (fontnum, &encoding) != noErr)
7830 return NULL;
7831 scriptcode = GetTextEncodingBase (encoding);
7832 #else
7833 scriptcode = FontToScript (fontnum);
7834 #endif
7837 font = (MacFontStruct *) xmalloc (sizeof (struct MacFontStruct));
7839 font->mac_fontnum = fontnum;
7840 font->mac_fontsize = size;
7841 font->mac_fontface = fontface;
7842 font->mac_scriptcode = scriptcode;
7843 #if USE_ATSUI
7844 font->mac_style = mac_style;
7845 #if USE_CG_TEXT_DRAWING
7846 font->cg_font = NULL;
7847 font->cg_glyphs = NULL;
7848 #endif
7849 #endif
7851 /* Apple Japanese (SJIS) font is listed as both
7852 "*-jisx0208.1983-sjis" (Japanese script) and "*-jisx0201.1976-0"
7853 (Roman script) in init_font_name_table (). The latter should be
7854 treated as a one-byte font. */
7855 if (scriptcode == smJapanese && strcmp (charset, "jisx0201.1976-0") == 0)
7856 font->mac_scriptcode = smRoman;
7858 font->full_name = mac_to_x_fontname (family, size, fontface, charset);
7860 #if USE_ATSUI
7861 if (font->mac_style)
7863 OSStatus err;
7864 UniChar c;
7866 font->min_byte1 = 0;
7867 font->max_byte1 = 0xff;
7868 font->min_char_or_byte2 = 0;
7869 font->max_char_or_byte2 = 0xff;
7871 font->bounds.rows = xmalloc (sizeof (XCharStruct *) * 0x100);
7872 bzero (font->bounds.rows, sizeof (XCharStruct *) * 0x100);
7873 font->bounds.rows[0] = xmalloc (sizeof (XCharStruct) * 0x100);
7874 pcm_init (font->bounds.rows[0], 0x100);
7876 #if USE_CG_TEXT_DRAWING
7877 if (fontnum != -1)
7879 FMFontStyle style;
7880 ATSFontRef ats_font;
7882 err = FMGetFontFromFontFamilyInstance (fontnum, fontface,
7883 &font_id, &style);
7884 /* Use CG text drawing if italic/bold is not synthesized. */
7885 if (err == noErr && style == fontface)
7887 ats_font = FMGetATSFontRefFromFont (font_id);
7888 font->cg_font = CGFontCreateWithPlatformFont (&ats_font);
7892 if (font->cg_font)
7894 font->cg_glyphs = xmalloc (sizeof (CGGlyph) * 0x100);
7895 bzero (font->cg_glyphs, sizeof (CGGlyph) * 0x100);
7897 #endif
7898 space_bounds = font->bounds.rows[0] + 0x20;
7899 err = mac_query_char_extents (font->mac_style, 0x20,
7900 &font->ascent, &font->descent,
7901 space_bounds,
7902 #if USE_CG_TEXT_DRAWING
7903 (font->cg_glyphs ? font->cg_glyphs + 0x20
7904 : NULL)
7905 #else
7906 NULL
7907 #endif
7909 if (err != noErr)
7911 mac_unload_font (&one_mac_display_info, font);
7912 return NULL;
7915 pcm = font->bounds.rows[0];
7916 for (c = 0x21; c <= 0xff; c++)
7918 if (c == 0xad)
7919 /* Soft hyphen is not supported in ATSUI. */
7920 continue;
7921 else if (c == 0x7f)
7923 c = 0x9f;
7924 continue;
7927 mac_query_char_extents (font->mac_style, c, NULL, NULL, pcm + c,
7928 #if USE_CG_TEXT_DRAWING
7929 (font->cg_glyphs ? font->cg_glyphs + c
7930 : NULL)
7931 #else
7932 NULL
7933 #endif
7936 #if USE_CG_TEXT_DRAWING
7937 if (font->cg_glyphs && font->cg_glyphs[c] == 0)
7939 /* Don't use CG text drawing if font substitution occurs in
7940 ASCII or Latin-1 characters. */
7941 CGFontRelease (font->cg_font);
7942 font->cg_font = NULL;
7943 xfree (font->cg_glyphs);
7944 font->cg_glyphs = NULL;
7946 #endif
7949 else
7950 #endif
7952 GrafPtr port;
7953 SInt16 old_fontnum, old_fontsize;
7954 Style old_fontface;
7955 FontInfo the_fontinfo;
7956 int is_two_byte_font;
7958 /* Save the current font number used. */
7959 GetPort (&port);
7960 #if TARGET_API_MAC_CARBON
7961 old_fontnum = GetPortTextFont (port);
7962 old_fontsize = GetPortTextSize (port);
7963 old_fontface = GetPortTextFace (port);
7964 #else
7965 old_fontnum = port->txFont;
7966 old_fontsize = port->txSize;
7967 old_fontface = port->txFace;
7968 #endif
7970 TextFont (fontnum);
7971 TextSize (size);
7972 TextFace (fontface);
7974 GetFontInfo (&the_fontinfo);
7976 font->ascent = the_fontinfo.ascent;
7977 font->descent = the_fontinfo.descent;
7979 is_two_byte_font = (font->mac_scriptcode == smJapanese
7980 || font->mac_scriptcode == smTradChinese
7981 || font->mac_scriptcode == smSimpChinese
7982 || font->mac_scriptcode == smKorean);
7984 if (is_two_byte_font)
7986 int char_width;
7988 font->min_byte1 = 0xa1;
7989 font->max_byte1 = 0xfe;
7990 font->min_char_or_byte2 = 0xa1;
7991 font->max_char_or_byte2 = 0xfe;
7993 /* Use the width of an "ideographic space" of that font
7994 because the_fontinfo.widMax returns the wrong width for
7995 some fonts. */
7996 switch (font->mac_scriptcode)
7998 case smJapanese:
7999 font->min_byte1 = 0x81;
8000 font->max_byte1 = 0xfc;
8001 font->min_char_or_byte2 = 0x40;
8002 font->max_char_or_byte2 = 0xfc;
8003 char_width = StringWidth("\p\x81\x40");
8004 break;
8005 case smTradChinese:
8006 font->min_char_or_byte2 = 0x40;
8007 char_width = StringWidth("\p\xa1\x40");
8008 break;
8009 case smSimpChinese:
8010 char_width = StringWidth("\p\xa1\xa1");
8011 break;
8012 case smKorean:
8013 char_width = StringWidth("\p\xa1\xa1");
8014 break;
8017 font->bounds.per_char = NULL;
8019 if (fontface & italic)
8020 font->max_bounds.rbearing = char_width + 1;
8021 else
8022 font->max_bounds.rbearing = char_width;
8023 font->max_bounds.lbearing = 0;
8024 font->max_bounds.width = char_width;
8025 font->max_bounds.ascent = the_fontinfo.ascent;
8026 font->max_bounds.descent = the_fontinfo.descent;
8028 font->min_bounds = font->max_bounds;
8030 else
8032 int c;
8034 font->min_byte1 = font->max_byte1 = 0;
8035 font->min_char_or_byte2 = 0x20;
8036 font->max_char_or_byte2 = 0xff;
8038 font->bounds.per_char =
8039 xmalloc (sizeof (XCharStruct) * (0xff - 0x20 + 1));
8040 bzero (font->bounds.per_char,
8041 sizeof (XCharStruct) * (0xff - 0x20 + 1));
8043 space_bounds = font->bounds.per_char;
8044 mac_query_char_extents (NULL, 0x20, &font->ascent, &font->descent,
8045 space_bounds, NULL);
8047 for (c = 0x21, pcm = space_bounds + 1; c <= 0xff; c++, pcm++)
8048 mac_query_char_extents (NULL, c, NULL, NULL, pcm, NULL);
8051 /* Restore previous font number, size and face. */
8052 TextFont (old_fontnum);
8053 TextSize (old_fontsize);
8054 TextFace (old_fontface);
8057 if (space_bounds)
8059 int c;
8061 font->min_bounds = font->max_bounds = *space_bounds;
8062 for (c = 0x21, pcm = space_bounds + 1; c <= 0x7f; c++, pcm++)
8063 if (pcm->width > 0)
8065 font->min_bounds.lbearing = min (font->min_bounds.lbearing,
8066 pcm->lbearing);
8067 font->min_bounds.rbearing = min (font->min_bounds.rbearing,
8068 pcm->rbearing);
8069 font->min_bounds.width = min (font->min_bounds.width,
8070 pcm->width);
8071 font->min_bounds.ascent = min (font->min_bounds.ascent,
8072 pcm->ascent);
8074 font->max_bounds.lbearing = max (font->max_bounds.lbearing,
8075 pcm->lbearing);
8076 font->max_bounds.rbearing = max (font->max_bounds.rbearing,
8077 pcm->rbearing);
8078 font->max_bounds.width = max (font->max_bounds.width,
8079 pcm->width);
8080 font->max_bounds.ascent = max (font->max_bounds.ascent,
8081 pcm->ascent);
8083 if (
8084 #if USE_ATSUI
8085 font->mac_style == NULL &&
8086 #endif
8087 font->max_bounds.width == font->min_bounds.width
8088 && font->min_bounds.lbearing >= 0
8089 && font->max_bounds.rbearing <= font->max_bounds.width)
8091 /* Fixed width and no overhangs. */
8092 xfree (font->bounds.per_char);
8093 font->bounds.per_char = NULL;
8097 #if !defined (MAC_OS8) || USE_ATSUI
8098 /* AppKit and WebKit do some adjustment to the heights of Courier,
8099 Helvetica, and Times. This only works on the environments where
8100 srcCopy text transfer mode is never used. */
8101 if (
8102 #ifdef MAC_OS8 /* implies USE_ATSUI */
8103 font->mac_style &&
8104 #endif
8105 (strcmp (family, "courier") == 0 || strcmp (family, "helvetica") == 0
8106 || strcmp (family, "times") == 0))
8107 font->ascent += (font->ascent + font->descent) * .15 + 0.5;
8108 #endif
8110 return font;
8114 void
8115 mac_unload_font (dpyinfo, font)
8116 struct mac_display_info *dpyinfo;
8117 XFontStruct *font;
8119 xfree (font->full_name);
8120 #if USE_ATSUI
8121 if (font->mac_style)
8123 int i;
8125 for (i = font->min_byte1; i <= font->max_byte1; i++)
8126 if (font->bounds.rows[i])
8127 xfree (font->bounds.rows[i]);
8128 xfree (font->bounds.rows);
8129 ATSUDisposeStyle (font->mac_style);
8131 else
8132 #endif
8133 if (font->bounds.per_char)
8134 xfree (font->bounds.per_char);
8135 #if USE_CG_TEXT_DRAWING
8136 if (font->cg_font)
8137 CGFontRelease (font->cg_font);
8138 if (font->cg_glyphs)
8139 xfree (font->cg_glyphs);
8140 #endif
8141 xfree (font);
8145 /* Load font named FONTNAME of the size SIZE for frame F, and return a
8146 pointer to the structure font_info while allocating it dynamically.
8147 If SIZE is 0, load any size of font.
8148 If loading is failed, return NULL. */
8150 struct font_info *
8151 x_load_font (f, fontname, size)
8152 struct frame *f;
8153 register char *fontname;
8154 int size;
8156 struct mac_display_info *dpyinfo = FRAME_MAC_DISPLAY_INFO (f);
8157 Lisp_Object font_names;
8159 /* Get a list of all the fonts that match this name. Once we
8160 have a list of matching fonts, we compare them against the fonts
8161 we already have by comparing names. */
8162 font_names = x_list_fonts (f, build_string (fontname), size, 1);
8164 if (!NILP (font_names))
8166 Lisp_Object tail;
8167 int i;
8169 for (i = 0; i < dpyinfo->n_fonts; i++)
8170 for (tail = font_names; CONSP (tail); tail = XCDR (tail))
8171 if (dpyinfo->font_table[i].name
8172 && (!strcmp (dpyinfo->font_table[i].name,
8173 SDATA (XCAR (tail)))
8174 || !strcmp (dpyinfo->font_table[i].full_name,
8175 SDATA (XCAR (tail)))))
8176 return (dpyinfo->font_table + i);
8178 else
8179 return NULL;
8181 /* Load the font and add it to the table. */
8183 struct MacFontStruct *font;
8184 struct font_info *fontp;
8185 int i;
8187 fontname = (char *) SDATA (XCAR (font_names));
8189 BLOCK_INPUT;
8190 font = (MacFontStruct *) XLoadQueryFont (FRAME_MAC_DISPLAY (f), fontname);
8191 UNBLOCK_INPUT;
8192 if (!font)
8193 return NULL;
8195 /* Find a free slot in the font table. */
8196 for (i = 0; i < dpyinfo->n_fonts; ++i)
8197 if (dpyinfo->font_table[i].name == NULL)
8198 break;
8200 /* If no free slot found, maybe enlarge the font table. */
8201 if (i == dpyinfo->n_fonts
8202 && dpyinfo->n_fonts == dpyinfo->font_table_size)
8204 int sz;
8205 dpyinfo->font_table_size = max (16, 2 * dpyinfo->font_table_size);
8206 sz = dpyinfo->font_table_size * sizeof *dpyinfo->font_table;
8207 dpyinfo->font_table
8208 = (struct font_info *) xrealloc (dpyinfo->font_table, sz);
8211 fontp = dpyinfo->font_table + i;
8212 if (i == dpyinfo->n_fonts)
8213 ++dpyinfo->n_fonts;
8215 /* Now fill in the slots of *FONTP. */
8216 BLOCK_INPUT;
8217 bzero (fontp, sizeof (*fontp));
8218 fontp->font = font;
8219 fontp->font_idx = i;
8220 fontp->name = (char *) xmalloc (strlen (fontname) + 1);
8221 bcopy (fontname, fontp->name, strlen (fontname) + 1);
8223 if (font->min_bounds.width == font->max_bounds.width)
8225 /* Fixed width font. */
8226 fontp->average_width = fontp->space_width = font->min_bounds.width;
8228 else
8230 XChar2b char2b;
8231 XCharStruct *pcm;
8233 char2b.byte1 = 0x00, char2b.byte2 = 0x20;
8234 pcm = mac_per_char_metric (font, &char2b, 0);
8235 if (pcm)
8236 fontp->space_width = pcm->width;
8237 else
8238 fontp->space_width = FONT_WIDTH (font);
8240 if (pcm)
8242 int width = pcm->width;
8243 for (char2b.byte2 = 33; char2b.byte2 <= 126; char2b.byte2++)
8244 if ((pcm = mac_per_char_metric (font, &char2b, 0)) != NULL)
8245 width += pcm->width;
8246 fontp->average_width = width / 95;
8248 else
8249 fontp->average_width = FONT_WIDTH (font);
8252 fontp->full_name = (char *) xmalloc (strlen (font->full_name) + 1);
8253 bcopy (font->full_name, fontp->full_name, strlen (font->full_name) + 1);
8255 fontp->size = font->max_bounds.width;
8256 fontp->height = FONT_HEIGHT (font);
8258 /* For some font, ascent and descent in max_bounds field is
8259 larger than the above value. */
8260 int max_height = font->max_bounds.ascent + font->max_bounds.descent;
8261 if (max_height > fontp->height)
8262 fontp->height = max_height;
8265 /* The slot `encoding' specifies how to map a character
8266 code-points (0x20..0x7F or 0x2020..0x7F7F) of each charset to
8267 the font code-points (0:0x20..0x7F, 1:0xA0..0xFF), or
8268 (0:0x2020..0x7F7F, 1:0xA0A0..0xFFFF, 3:0x20A0..0x7FFF,
8269 2:0xA020..0xFF7F). For the moment, we don't know which charset
8270 uses this font. So, we set information in fontp->encoding[1]
8271 which is never used by any charset. If mapping can't be
8272 decided, set FONT_ENCODING_NOT_DECIDED. */
8273 if (font->mac_scriptcode == smJapanese)
8274 fontp->encoding[1] = 4;
8275 else
8277 fontp->encoding[1]
8278 = (font->max_byte1 == 0
8279 /* 1-byte font */
8280 ? (font->min_char_or_byte2 < 0x80
8281 ? (font->max_char_or_byte2 < 0x80
8282 ? 0 /* 0x20..0x7F */
8283 : FONT_ENCODING_NOT_DECIDED) /* 0x20..0xFF */
8284 : 1) /* 0xA0..0xFF */
8285 /* 2-byte font */
8286 : (font->min_byte1 < 0x80
8287 ? (font->max_byte1 < 0x80
8288 ? (font->min_char_or_byte2 < 0x80
8289 ? (font->max_char_or_byte2 < 0x80
8290 ? 0 /* 0x2020..0x7F7F */
8291 : FONT_ENCODING_NOT_DECIDED) /* 0x2020..0x7FFF */
8292 : 3) /* 0x20A0..0x7FFF */
8293 : FONT_ENCODING_NOT_DECIDED) /* 0x20??..0xA0?? */
8294 : (font->min_char_or_byte2 < 0x80
8295 ? (font->max_char_or_byte2 < 0x80
8296 ? 2 /* 0xA020..0xFF7F */
8297 : FONT_ENCODING_NOT_DECIDED) /* 0xA020..0xFFFF */
8298 : 1))); /* 0xA0A0..0xFFFF */
8301 #if 0 /* MAC_TODO: fill these out with more reasonably values */
8302 fontp->baseline_offset
8303 = (XGetFontProperty (font, dpyinfo->Xatom_MULE_BASELINE_OFFSET, &value)
8304 ? (long) value : 0);
8305 fontp->relative_compose
8306 = (XGetFontProperty (font, dpyinfo->Xatom_MULE_RELATIVE_COMPOSE, &value)
8307 ? (long) value : 0);
8308 fontp->default_ascent
8309 = (XGetFontProperty (font, dpyinfo->Xatom_MULE_DEFAULT_ASCENT, &value)
8310 ? (long) value : 0);
8311 #else
8312 fontp->baseline_offset = 0;
8313 fontp->relative_compose = 0;
8314 fontp->default_ascent = 0;
8315 #endif
8317 /* Set global flag fonts_changed_p to non-zero if the font loaded
8318 has a character with a smaller width than any other character
8319 before, or if the font loaded has a smaller height than any
8320 other font loaded before. If this happens, it will make a
8321 glyph matrix reallocation necessary. */
8322 fonts_changed_p |= x_compute_min_glyph_bounds (f);
8323 UNBLOCK_INPUT;
8324 return fontp;
8329 /* Return a pointer to struct font_info of a font named FONTNAME for
8330 frame F. If no such font is loaded, return NULL. */
8332 struct font_info *
8333 x_query_font (f, fontname)
8334 struct frame *f;
8335 register char *fontname;
8337 struct mac_display_info *dpyinfo = FRAME_MAC_DISPLAY_INFO (f);
8338 int i;
8340 for (i = 0; i < dpyinfo->n_fonts; i++)
8341 if (dpyinfo->font_table[i].name
8342 && (!xstricmp (dpyinfo->font_table[i].name, fontname)
8343 || !xstricmp (dpyinfo->font_table[i].full_name, fontname)))
8344 return (dpyinfo->font_table + i);
8345 return NULL;
8349 /* Find a CCL program for a font specified by FONTP, and set the member
8350 `encoder' of the structure. */
8352 void
8353 x_find_ccl_program (fontp)
8354 struct font_info *fontp;
8356 Lisp_Object list, elt;
8358 for (list = Vfont_ccl_encoder_alist; CONSP (list); list = XCDR (list))
8360 elt = XCAR (list);
8361 if (CONSP (elt)
8362 && STRINGP (XCAR (elt))
8363 && (fast_c_string_match_ignore_case (XCAR (elt), fontp->name)
8364 >= 0))
8365 break;
8367 if (! NILP (list))
8369 struct ccl_program *ccl
8370 = (struct ccl_program *) xmalloc (sizeof (struct ccl_program));
8372 if (setup_ccl_program (ccl, XCDR (elt)) < 0)
8373 xfree (ccl);
8374 else
8375 fontp->font_encoder = ccl;
8379 #if USE_MAC_FONT_PANEL
8380 /* Whether Font Panel has been shown before. The first call to font
8381 panel functions (FPIsFontPanelVisible, SetFontInfoForSelection) is
8382 slow. This variable is used for deferring such a call as much as
8383 possible. */
8384 static int font_panel_shown_p = 0;
8387 mac_font_panel_visible_p ()
8389 return font_panel_shown_p && FPIsFontPanelVisible ();
8392 OSStatus
8393 mac_show_hide_font_panel ()
8395 font_panel_shown_p = 1;
8397 return FPShowHideFontPanel ();
8400 OSStatus
8401 mac_set_font_info_for_selection (f, face_id, c)
8402 struct frame *f;
8403 int face_id, c;
8405 OSStatus err;
8406 EventTargetRef target = NULL;
8407 XFontStruct *font = NULL;
8409 if (!mac_font_panel_visible_p ())
8410 return noErr;
8412 if (f)
8414 target = GetWindowEventTarget (FRAME_MAC_WINDOW (f));
8416 if (FRAME_FACE_CACHE (f) && CHAR_VALID_P (c, 0))
8418 struct face *face;
8420 face_id = FACE_FOR_CHAR (f, FACE_FROM_ID (f, face_id), c);
8421 face = FACE_FROM_ID (f, face_id);
8422 font = face->font;
8426 if (font == NULL)
8427 err = SetFontInfoForSelection (kFontSelectionATSUIType, 0, NULL, target);
8428 else
8430 if (font->mac_fontnum != -1)
8432 FontSelectionQDStyle qd_style;
8434 qd_style.version = kFontSelectionQDStyleVersionZero;
8435 qd_style.instance.fontFamily = font->mac_fontnum;
8436 qd_style.instance.fontStyle = font->mac_fontface;
8437 qd_style.size = font->mac_fontsize;
8438 qd_style.hasColor = false;
8440 err = SetFontInfoForSelection (kFontSelectionQDType,
8441 1, &qd_style, target);
8443 else
8444 err = SetFontInfoForSelection (kFontSelectionATSUIType,
8445 1, &font->mac_style, target);
8448 return err;
8450 #endif
8453 /* The Mac Event loop code */
8455 #if !TARGET_API_MAC_CARBON
8456 #include <Events.h>
8457 #include <Quickdraw.h>
8458 #include <Balloons.h>
8459 #include <Devices.h>
8460 #include <Fonts.h>
8461 #include <Gestalt.h>
8462 #include <Menus.h>
8463 #include <Processes.h>
8464 #include <Sound.h>
8465 #include <ToolUtils.h>
8466 #include <TextUtils.h>
8467 #include <Dialogs.h>
8468 #include <Script.h>
8469 #include <Types.h>
8470 #include <Resources.h>
8472 #if __MWERKS__
8473 #include <unix.h>
8474 #endif
8475 #endif /* ! TARGET_API_MAC_CARBON */
8477 #define M_APPLE 128
8478 #define I_ABOUT 1
8480 #define WINDOW_RESOURCE 128
8481 #define TERM_WINDOW_RESOURCE 129
8483 #define DEFAULT_NUM_COLS 80
8485 #define MIN_DOC_SIZE 64
8486 #define MAX_DOC_SIZE 32767
8488 #define EXTRA_STACK_ALLOC (256 * 1024)
8490 #define ARGV_STRING_LIST_ID 129
8491 #define ABOUT_ALERT_ID 128
8492 #define RAM_TOO_LARGE_ALERT_ID 129
8494 /* Contains the string "reverse", which is a constant for mouse button emu.*/
8495 Lisp_Object Qreverse;
8498 /* Modifier associated with the control key, or nil to ignore. */
8499 Lisp_Object Vmac_control_modifier;
8501 /* Modifier associated with the option key, or nil to ignore. */
8502 Lisp_Object Vmac_option_modifier;
8504 /* Modifier associated with the command key, or nil to ignore. */
8505 Lisp_Object Vmac_command_modifier;
8507 /* Modifier associated with the function key, or nil to ignore. */
8508 Lisp_Object Vmac_function_modifier;
8510 /* True if the option and command modifiers should be used to emulate
8511 a three button mouse */
8512 Lisp_Object Vmac_emulate_three_button_mouse;
8514 #if USE_CARBON_EVENTS
8515 /* Non-zero if the mouse wheel button (i.e. button 4) should map to
8516 mouse-2, instead of mouse-3. */
8517 int mac_wheel_button_is_mouse_2;
8519 /* If non-zero, the Mac "Command" key is passed on to the Mac Toolbox
8520 for processing before Emacs sees it. */
8521 int mac_pass_command_to_system;
8523 /* If non-zero, the Mac "Control" key is passed on to the Mac Toolbox
8524 for processing before Emacs sees it. */
8525 int mac_pass_control_to_system;
8526 #endif
8528 /* Points to the variable `inev' in the function XTread_socket. It is
8529 used for passing an input event to the function back from
8530 Carbon/Apple event handlers. */
8531 static struct input_event *read_socket_inev = NULL;
8533 Point saved_menu_event_location;
8535 /* Apple Events */
8536 #if USE_CARBON_EVENTS
8537 static Lisp_Object Qhi_command;
8538 #ifdef MAC_OSX
8539 extern Lisp_Object Qwindow;
8540 static Lisp_Object Qtoolbar_switch_mode;
8541 #endif
8542 #if USE_MAC_FONT_PANEL
8543 extern Lisp_Object Qfont;
8544 static Lisp_Object Qpanel_closed, Qselection;
8545 #endif
8546 #if USE_MAC_TSM
8547 static TSMDocumentID tsm_document_id;
8548 static Lisp_Object Qtext_input;
8549 static Lisp_Object Qupdate_active_input_area, Qunicode_for_key_event;
8550 static Lisp_Object Vmac_ts_active_input_overlay;
8551 extern Lisp_Object Qbefore_string;
8552 static Lisp_Object Vmac_ts_script_language_on_focus;
8553 static Lisp_Object saved_ts_script_language_on_focus;
8554 static ScriptLanguageRecord saved_ts_language;
8555 static Component saved_ts_component;
8556 #endif
8557 #endif
8558 extern int mac_ready_for_apple_events;
8559 extern Lisp_Object Qundefined;
8560 extern void init_apple_event_handler P_ ((void));
8561 extern void mac_find_apple_event_spec P_ ((AEEventClass, AEEventID,
8562 Lisp_Object *, Lisp_Object *,
8563 Lisp_Object *));
8564 extern OSErr init_coercion_handler P_ ((void));
8566 /* Drag and Drop */
8567 OSErr install_drag_handler P_ ((WindowRef));
8568 void remove_drag_handler P_ ((WindowRef));
8570 #if USE_CARBON_EVENTS
8571 #ifdef MAC_OSX
8572 extern void init_service_handler ();
8573 static Lisp_Object Qservice, Qpaste, Qperform;
8574 #endif
8575 /* Window Event Handler */
8576 static pascal OSStatus mac_handle_window_event (EventHandlerCallRef,
8577 EventRef, void *);
8578 #endif
8579 OSStatus install_window_handler (WindowPtr);
8581 extern void init_emacs_passwd_dir ();
8582 extern int emacs_main (int, char **, char **);
8584 extern void initialize_applescript();
8585 extern void terminate_applescript();
8587 /* Table for translating Mac keycode to X keysym values. Contributed
8588 by Sudhir Shenoy.
8589 Mapping for special keys is now identical to that in Apple X11
8590 except `clear' (-> <clear>) on the KeyPad, `enter' (-> <kp-enter>)
8591 on the right of the Cmd key on laptops, and fn + `enter' (->
8592 <linefeed>). */
8593 static unsigned char keycode_to_xkeysym_table[] = {
8594 /*0x00*/ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8595 /*0x10*/ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8596 /*0x20*/ 0, 0, 0, 0, 0x0d /*return*/, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8598 /*0x30*/ 0x09 /*tab*/, 0 /*0x0020 space*/, 0, 0x08 /*backspace*/,
8599 /*0x34*/ 0x8d /*enter on laptops*/, 0x1b /*escape*/, 0, 0,
8600 /*0x38*/ 0, 0, 0, 0,
8601 /*0x3C*/ 0, 0, 0, 0,
8603 /*0x40*/ 0, 0xae /*kp-decimal*/, 0, 0xaa /*kp-multiply*/,
8604 /*0x44*/ 0, 0xab /*kp-add*/, 0, 0x0b /*clear*/,
8605 /*0x48*/ 0, 0, 0, 0xaf /*kp-divide*/,
8606 /*0x4C*/ 0x8d /*kp-enter*/, 0, 0xad /*kp-subtract*/, 0,
8608 /*0x50*/ 0, 0xbd /*kp-equal*/, 0xb0 /*kp-0*/, 0xb1 /*kp-1*/,
8609 /*0x54*/ 0xb2 /*kp-2*/, 0xb3 /*kp-3*/, 0xb4 /*kp-4*/, 0xb5 /*kp-5*/,
8610 /*0x58*/ 0xb6 /*kp-6*/, 0xb7 /*kp-7*/, 0, 0xb8 /*kp-8*/,
8611 /*0x5C*/ 0xb9 /*kp-9*/, 0, 0, 0,
8613 /*0x60*/ 0xc2 /*f5*/, 0xc3 /*f6*/, 0xc4 /*f7*/, 0xc0 /*f3*/,
8614 /*0x64*/ 0xc5 /*f8*/, 0xc6 /*f9*/, 0, 0xc8 /*f11*/,
8615 /*0x68*/ 0, 0xca /*f13*/, 0xcd /*f16*/, 0xcb /*f14*/,
8616 /*0x6C*/ 0, 0xc7 /*f10*/, 0x0a /*fn+enter on laptops*/, 0xc9 /*f12*/,
8618 /*0x70*/ 0, 0xcc /*f15*/, 0x6a /*help*/, 0x50 /*home*/,
8619 /*0x74*/ 0x55 /*pgup*/, 0xff /*delete*/, 0xc1 /*f4*/, 0x57 /*end*/,
8620 /*0x78*/ 0xbf /*f2*/, 0x56 /*pgdown*/, 0xbe /*f1*/, 0x51 /*left*/,
8621 /*0x7C*/ 0x53 /*right*/, 0x54 /*down*/, 0x52 /*up*/, 0
8624 #ifdef MAC_OSX
8625 /* Table for translating Mac keycode with the laptop `fn' key to that
8626 without it. Destination symbols in comments are keys on US
8627 keyboard, and they may not be the same on other types of keyboards.
8628 If the destination is identical to the source (f1 ... f12), it
8629 doesn't map `fn' key to a modifier. */
8630 static unsigned char fn_keycode_to_keycode_table[] = {
8631 /*0x00*/ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8632 /*0x10*/ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8633 /*0x20*/ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8635 /*0x30*/ 0, 0, 0, 0,
8636 /*0x34*/ 0, 0, 0, 0,
8637 /*0x38*/ 0, 0, 0, 0,
8638 /*0x3C*/ 0, 0, 0, 0,
8640 /*0x40*/ 0, 0x2f /*kp-decimal -> '.'*/, 0, 0x23 /*kp-multiply -> 'p'*/,
8641 /*0x44*/ 0, 0x2c /*kp-add -> '/'*/, 0, 0x16 /*clear -> '6'*/,
8642 /*0x48*/ 0, 0, 0, 0x1d /*kp-/ -> '0'*/,
8643 /*0x4C*/ 0x24 /*kp-enter -> return*/, 0, 0x29 /*kp-subtract -> ';'*/, 0,
8645 /*0x50*/ 0, 0x1b /*kp-equal -> '-'*/, 0x2e /*kp-0 -> 'm'*/, 0x26 /*kp-1 -> 'j'*/,
8646 /*0x54*/ 0x28 /*kp-2 -> 'k'*/, 0x25 /*kp-3 -> 'l'*/, 0x20 /*kp-4 -> 'u'*/, 0x22 /*kp-5 ->'i'*/,
8647 /*0x58*/ 0x1f /*kp-6 -> 'o'*/, 0x1a /*kp-7 -> '7'*/, 0, 0x1c /*kp-8 -> '8'*/,
8648 /*0x5C*/ 0x19 /*kp-9 -> '9'*/, 0, 0, 0,
8650 /*0x60*/ 0x60 /*f5 = f5*/, 0x61 /*f6 = f6*/, 0x62 /*f7 = f7*/, 0x63 /*f3 = f3*/,
8651 /*0x64*/ 0x64 /*f8 = f8*/, 0x65 /*f9 = f9*/, 0, 0x67 /*f11 = f11*/,
8652 /*0x68*/ 0, 0, 0, 0,
8653 /*0x6C*/ 0, 0x6d /*f10 = f10*/, 0, 0x6f /*f12 = f12*/,
8655 /*0x70*/ 0, 0, 0, 0x7b /*home -> left*/,
8656 /*0x74*/ 0x7e /*pgup -> up*/, 0x33 /*delete -> backspace*/, 0x76 /*f4 = f4*/, 0x7c /*end -> right*/,
8657 /*0x78*/ 0x78 /*f2 = f2*/, 0x7d /*pgdown -> down*/, 0x7a /*f1 = f1*/, 0,
8658 /*0x7C*/ 0, 0, 0, 0
8660 #endif /* MAC_OSX */
8662 static unsigned int
8663 #if USE_CARBON_EVENTS
8664 mac_to_emacs_modifiers (UInt32 mods)
8665 #else
8666 mac_to_emacs_modifiers (EventModifiers mods)
8667 #endif
8669 unsigned int result = 0;
8670 if (mods & shiftKey)
8671 result |= shift_modifier;
8673 /* Deactivated to simplify configuration:
8674 if Vmac_option_modifier is non-NIL, we fully process the Option
8675 key. Otherwise, we only process it if an additional Ctrl or Command
8676 is pressed. That way the system may convert the character to a
8677 composed one.
8678 if ((mods & optionKey) &&
8679 (( !NILP(Vmac_option_modifier) ||
8680 ((mods & cmdKey) || (mods & controlKey))))) */
8682 if (!NILP (Vmac_option_modifier) && (mods & optionKey)) {
8683 Lisp_Object val = Fget(Vmac_option_modifier, Qmodifier_value);
8684 if (INTEGERP(val))
8685 result |= XUINT(val);
8687 if (!NILP (Vmac_command_modifier) && (mods & cmdKey)) {
8688 Lisp_Object val = Fget(Vmac_command_modifier, Qmodifier_value);
8689 if (INTEGERP(val))
8690 result |= XUINT(val);
8692 if (!NILP (Vmac_control_modifier) && (mods & controlKey)) {
8693 Lisp_Object val = Fget(Vmac_control_modifier, Qmodifier_value);
8694 if (INTEGERP(val))
8695 result |= XUINT(val);
8698 #ifdef MAC_OSX
8699 if (!NILP (Vmac_function_modifier) && (mods & kEventKeyModifierFnMask)) {
8700 Lisp_Object val = Fget(Vmac_function_modifier, Qmodifier_value);
8701 if (INTEGERP(val))
8702 result |= XUINT(val);
8704 #endif
8706 return result;
8709 static int
8710 mac_get_emulated_btn ( UInt32 modifiers )
8712 int result = 0;
8713 if (!NILP (Vmac_emulate_three_button_mouse)) {
8714 int cmdIs3 = !EQ (Vmac_emulate_three_button_mouse, Qreverse);
8715 if (modifiers & cmdKey)
8716 result = cmdIs3 ? 2 : 1;
8717 else if (modifiers & optionKey)
8718 result = cmdIs3 ? 1 : 2;
8720 return result;
8723 #if USE_CARBON_EVENTS
8724 /* Obtains the event modifiers from the event ref and then calls
8725 mac_to_emacs_modifiers. */
8726 static UInt32
8727 mac_event_to_emacs_modifiers (EventRef eventRef)
8729 UInt32 mods = 0;
8730 GetEventParameter (eventRef, kEventParamKeyModifiers, typeUInt32, NULL,
8731 sizeof (UInt32), NULL, &mods);
8732 if (!NILP (Vmac_emulate_three_button_mouse) &&
8733 GetEventClass(eventRef) == kEventClassMouse)
8735 mods &= ~(optionKey | cmdKey);
8737 return mac_to_emacs_modifiers (mods);
8740 /* Given an event ref, return the code to use for the mouse button
8741 code in the emacs input_event. */
8742 static int
8743 mac_get_mouse_btn (EventRef ref)
8745 EventMouseButton result = kEventMouseButtonPrimary;
8746 GetEventParameter (ref, kEventParamMouseButton, typeMouseButton, NULL,
8747 sizeof (EventMouseButton), NULL, &result);
8748 switch (result)
8750 case kEventMouseButtonPrimary:
8751 if (NILP (Vmac_emulate_three_button_mouse))
8752 return 0;
8753 else {
8754 UInt32 mods = 0;
8755 GetEventParameter (ref, kEventParamKeyModifiers, typeUInt32, NULL,
8756 sizeof (UInt32), NULL, &mods);
8757 return mac_get_emulated_btn(mods);
8759 case kEventMouseButtonSecondary:
8760 return mac_wheel_button_is_mouse_2 ? 2 : 1;
8761 case kEventMouseButtonTertiary:
8762 case 4: /* 4 is the number for the mouse wheel button */
8763 return mac_wheel_button_is_mouse_2 ? 1 : 2;
8764 default:
8765 return 0;
8769 /* Normally, ConvertEventRefToEventRecord will correctly handle all
8770 events. However the click of the mouse wheel is not converted to a
8771 mouseDown or mouseUp event. Likewise for dead key down events.
8772 This calls ConvertEventRef, but then checks to see if it is a mouse
8773 up/down, or a dead key down carbon event that has not been
8774 converted, and if so, converts it by hand (to be picked up in the
8775 XTread_socket loop). */
8776 static Boolean mac_convert_event_ref (EventRef eventRef, EventRecord *eventRec)
8778 OSStatus err;
8779 Boolean result = ConvertEventRefToEventRecord (eventRef, eventRec);
8781 if (result)
8782 return result;
8784 switch (GetEventClass (eventRef))
8786 case kEventClassMouse:
8787 switch (GetEventKind (eventRef))
8789 case kEventMouseDown:
8790 eventRec->what = mouseDown;
8791 result = 1;
8792 break;
8794 case kEventMouseUp:
8795 eventRec->what = mouseUp;
8796 result = 1;
8797 break;
8799 default:
8800 break;
8802 break;
8804 case kEventClassKeyboard:
8805 switch (GetEventKind (eventRef))
8807 case kEventRawKeyDown:
8809 unsigned char char_codes;
8810 UInt32 key_code;
8812 err = GetEventParameter (eventRef, kEventParamKeyMacCharCodes,
8813 typeChar, NULL, sizeof (char),
8814 NULL, &char_codes);
8815 if (err == noErr)
8816 err = GetEventParameter (eventRef, kEventParamKeyCode,
8817 typeUInt32, NULL, sizeof (UInt32),
8818 NULL, &key_code);
8819 if (err == noErr)
8821 eventRec->what = keyDown;
8822 eventRec->message = char_codes | ((key_code & 0xff) << 8);
8823 result = 1;
8826 break;
8828 default:
8829 break;
8831 break;
8833 default:
8834 break;
8837 if (result)
8839 /* Need where and when. */
8840 UInt32 mods = 0;
8842 GetEventParameter (eventRef, kEventParamMouseLocation, typeQDPoint,
8843 NULL, sizeof (Point), NULL, &eventRec->where);
8844 /* Use two step process because new event modifiers are 32-bit
8845 and old are 16-bit. Currently, only loss is NumLock & Fn. */
8846 GetEventParameter (eventRef, kEventParamKeyModifiers, typeUInt32,
8847 NULL, sizeof (UInt32), NULL, &mods);
8848 eventRec->modifiers = mods;
8850 eventRec->when = EventTimeToTicks (GetEventTime (eventRef));
8853 return result;
8856 #endif
8858 #ifdef MAC_OS8
8859 static void
8860 do_get_menus (void)
8862 Handle menubar_handle;
8863 MenuHandle menu_handle;
8865 menubar_handle = GetNewMBar (128);
8866 if(menubar_handle == NULL)
8867 abort ();
8868 SetMenuBar (menubar_handle);
8869 DrawMenuBar ();
8871 #if !TARGET_API_MAC_CARBON
8872 menu_handle = GetMenuHandle (M_APPLE);
8873 if(menu_handle != NULL)
8874 AppendResMenu (menu_handle,'DRVR');
8875 else
8876 abort ();
8877 #endif
8881 static void
8882 do_init_managers (void)
8884 #if !TARGET_API_MAC_CARBON
8885 InitGraf (&qd.thePort);
8886 InitFonts ();
8887 FlushEvents (everyEvent, 0);
8888 InitWindows ();
8889 InitMenus ();
8890 TEInit ();
8891 InitDialogs (NULL);
8892 #endif /* !TARGET_API_MAC_CARBON */
8893 InitCursor ();
8895 #if !TARGET_API_MAC_CARBON
8896 /* set up some extra stack space for use by emacs */
8897 SetApplLimit ((Ptr) ((long) GetApplLimit () - EXTRA_STACK_ALLOC));
8899 /* MaxApplZone must be called for AppleScript to execute more
8900 complicated scripts */
8901 MaxApplZone ();
8902 MoreMasters ();
8903 #endif /* !TARGET_API_MAC_CARBON */
8906 static void
8907 do_check_ram_size (void)
8909 SInt32 physical_ram_size, logical_ram_size;
8911 if (Gestalt (gestaltPhysicalRAMSize, &physical_ram_size) != noErr
8912 || Gestalt (gestaltLogicalRAMSize, &logical_ram_size) != noErr
8913 || physical_ram_size > (1 << VALBITS)
8914 || logical_ram_size > (1 << VALBITS))
8916 StopAlert (RAM_TOO_LARGE_ALERT_ID, NULL);
8917 exit (1);
8920 #endif /* MAC_OS8 */
8922 static void
8923 do_window_update (WindowPtr win)
8925 struct frame *f = mac_window_to_frame (win);
8927 BeginUpdate (win);
8929 /* The tooltip has been drawn already. Avoid the SET_FRAME_GARBAGED
8930 below. */
8931 if (win != tip_window)
8933 if (f->async_visible == 0)
8935 /* Update events may occur when a frame gets iconified. */
8936 #if 0
8937 f->async_visible = 1;
8938 f->async_iconified = 0;
8939 SET_FRAME_GARBAGED (f);
8940 #endif
8942 else
8944 Rect r;
8945 #if TARGET_API_MAC_CARBON
8946 RgnHandle region = NewRgn ();
8948 GetPortVisibleRegion (GetWindowPort (win), region);
8949 GetRegionBounds (region, &r);
8950 expose_frame (f, r.left, r.top, r.right - r.left, r.bottom - r.top);
8951 UpdateControls (win, region);
8952 DisposeRgn (region);
8953 #else
8954 r = (*win->visRgn)->rgnBBox;
8955 expose_frame (f, r.left, r.top, r.right - r.left, r.bottom - r.top);
8956 UpdateControls (win, win->visRgn);
8957 #endif
8961 EndUpdate (win);
8964 static int
8965 is_emacs_window (WindowPtr win)
8967 Lisp_Object tail, frame;
8969 if (!win)
8970 return 0;
8972 FOR_EACH_FRAME (tail, frame)
8973 if (FRAME_MAC_P (XFRAME (frame)))
8974 if (FRAME_MAC_WINDOW (XFRAME (frame)) == win)
8975 return 1;
8977 return 0;
8980 #if USE_MAC_TSM
8981 static OSStatus
8982 mac_tsm_resume ()
8984 OSStatus err;
8985 ScriptLanguageRecord slrec, *slptr = NULL;
8987 err = ActivateTSMDocument (tsm_document_id);
8989 if (err == noErr)
8991 if (EQ (Vmac_ts_script_language_on_focus, Qt)
8992 && EQ (saved_ts_script_language_on_focus, Qt))
8993 slptr = &saved_ts_language;
8994 else if (CONSP (Vmac_ts_script_language_on_focus)
8995 && INTEGERP (XCAR (Vmac_ts_script_language_on_focus))
8996 && INTEGERP (XCDR (Vmac_ts_script_language_on_focus))
8997 && CONSP (saved_ts_script_language_on_focus)
8998 && EQ (XCAR (saved_ts_script_language_on_focus),
8999 XCAR (Vmac_ts_script_language_on_focus))
9000 && EQ (XCDR (saved_ts_script_language_on_focus),
9001 XCDR (Vmac_ts_script_language_on_focus)))
9003 slrec.fScript = XINT (XCAR (Vmac_ts_script_language_on_focus));
9004 slrec.fLanguage = XINT (XCDR (Vmac_ts_script_language_on_focus));
9005 slptr = &slrec;
9009 if (slptr)
9011 #if MAC_OS_X_VERSION_MAX_ALLOWED >= 1020
9012 err = SetDefaultInputMethodOfClass (saved_ts_component, slptr,
9013 kKeyboardInputMethodClass);
9014 #else
9015 err = SetDefaultInputMethod (saved_ts_component, slptr);
9016 #endif
9017 if (err == noErr)
9018 err = SetTextServiceLanguage (slptr);
9020 /* Seems to be needed on Mac OS X 10.2. */
9021 if (err == noErr)
9022 KeyScript (slptr->fScript | smKeyForceKeyScriptMask);
9025 return err;
9028 static OSStatus
9029 mac_tsm_suspend ()
9031 OSStatus err;
9032 ScriptLanguageRecord slrec, *slptr = NULL;
9034 saved_ts_script_language_on_focus = Vmac_ts_script_language_on_focus;
9036 if (EQ (Vmac_ts_script_language_on_focus, Qt))
9038 err = GetTextServiceLanguage (&saved_ts_language);
9039 if (err == noErr)
9040 slptr = &saved_ts_language;
9042 else if (CONSP (Vmac_ts_script_language_on_focus)
9043 && INTEGERP (XCAR (Vmac_ts_script_language_on_focus))
9044 && INTEGERP (XCDR (Vmac_ts_script_language_on_focus)))
9046 slrec.fScript = XINT (XCAR (Vmac_ts_script_language_on_focus));
9047 slrec.fLanguage = XINT (XCDR (Vmac_ts_script_language_on_focus));
9048 slptr = &slrec;
9051 if (slptr)
9053 #if MAC_OS_X_VERSION_MAX_ALLOWED >= 1020
9054 GetDefaultInputMethodOfClass (&saved_ts_component, slptr,
9055 kKeyboardInputMethodClass);
9056 #else
9057 GetDefaultInputMethod (&saved_ts_component, slptr);
9058 #endif
9061 err = DeactivateTSMDocument (tsm_document_id);
9063 return err;
9065 #endif
9067 static void
9068 do_apple_menu (SInt16 menu_item)
9070 #if !TARGET_API_MAC_CARBON
9071 Str255 item_name;
9072 SInt16 da_driver_refnum;
9074 if (menu_item == I_ABOUT)
9075 NoteAlert (ABOUT_ALERT_ID, NULL);
9076 else
9078 GetMenuItemText (GetMenuHandle (M_APPLE), menu_item, item_name);
9079 da_driver_refnum = OpenDeskAcc (item_name);
9081 #endif /* !TARGET_API_MAC_CARBON */
9084 void
9085 do_menu_choice (SInt32 menu_choice)
9087 SInt16 menu_id, menu_item;
9089 menu_id = HiWord (menu_choice);
9090 menu_item = LoWord (menu_choice);
9092 switch (menu_id)
9094 case 0:
9095 break;
9097 case M_APPLE:
9098 do_apple_menu (menu_item);
9099 break;
9101 default:
9103 struct frame *f = mac_focus_frame (&one_mac_display_info);
9104 MenuHandle menu = GetMenuHandle (menu_id);
9105 if (menu)
9107 UInt32 refcon;
9109 GetMenuItemRefCon (menu, menu_item, &refcon);
9110 menubar_selection_callback (f, refcon);
9115 HiliteMenu (0);
9119 /* Handle drags in size box. Based on code contributed by Ben
9120 Mesander and IM - Window Manager A. */
9122 static void
9123 do_grow_window (WindowPtr w, EventRecord *e)
9125 Rect limit_rect;
9126 int rows, columns, width, height;
9127 struct frame *f = mac_window_to_frame (w);
9128 XSizeHints *size_hints = FRAME_SIZE_HINTS (f);
9129 int min_width = MIN_DOC_SIZE, min_height = MIN_DOC_SIZE;
9130 #if TARGET_API_MAC_CARBON
9131 Rect new_rect;
9132 #else
9133 long grow_size;
9134 #endif
9136 if (size_hints->flags & PMinSize)
9138 min_width = size_hints->min_width;
9139 min_height = size_hints->min_height;
9141 SetRect (&limit_rect, min_width, min_height, MAX_DOC_SIZE, MAX_DOC_SIZE);
9143 #if TARGET_API_MAC_CARBON
9144 if (!ResizeWindow (w, e->where, &limit_rect, &new_rect))
9145 return;
9146 height = new_rect.bottom - new_rect.top;
9147 width = new_rect.right - new_rect.left;
9148 #else
9149 grow_size = GrowWindow (w, e->where, &limit_rect);
9150 /* see if it really changed size */
9151 if (grow_size == 0)
9152 return;
9153 height = HiWord (grow_size);
9154 width = LoWord (grow_size);
9155 #endif
9157 if (width != FRAME_PIXEL_WIDTH (f)
9158 || height != FRAME_PIXEL_HEIGHT (f))
9160 rows = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, height);
9161 columns = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, width);
9163 x_set_window_size (f, 0, columns, rows);
9168 /* Handle clicks in zoom box. Calculation of "standard state" based
9169 on code in IM - Window Manager A and code contributed by Ben
9170 Mesander. The standard state of an Emacs window is 80-characters
9171 wide (DEFAULT_NUM_COLS) and as tall as will fit on the screen. */
9173 static void
9174 do_zoom_window (WindowPtr w, int zoom_in_or_out)
9176 Rect zoom_rect, port_rect;
9177 int columns, rows, width, height;
9178 struct frame *f = mac_window_to_frame (w);
9179 struct mac_display_info *dpyinfo = FRAME_MAC_DISPLAY_INFO (f);
9180 #if TARGET_API_MAC_CARBON
9181 Point standard_size;
9183 standard_size.h = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, DEFAULT_NUM_COLS);
9184 standard_size.v = dpyinfo->height;
9186 if (IsWindowInStandardState (w, &standard_size, &zoom_rect))
9187 zoom_in_or_out = inZoomIn;
9188 else
9190 /* Adjust the standard size according to character boundaries. */
9192 columns = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, zoom_rect.right - zoom_rect.left);
9193 rows = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, zoom_rect.bottom - zoom_rect.top);
9194 standard_size.h = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, columns);
9195 standard_size.v = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, rows);
9196 GetWindowBounds (w, kWindowContentRgn, &port_rect);
9197 if (IsWindowInStandardState (w, &standard_size, &zoom_rect)
9198 && port_rect.left == zoom_rect.left
9199 && port_rect.top == zoom_rect.top)
9200 zoom_in_or_out = inZoomIn;
9201 else
9202 zoom_in_or_out = inZoomOut;
9205 ZoomWindowIdeal (w, zoom_in_or_out, &standard_size);
9206 #else /* not TARGET_API_MAC_CARBON */
9207 GrafPtr save_port;
9208 Point top_left;
9209 int w_title_height;
9211 GetPort (&save_port);
9213 SetPortWindowPort (w);
9215 /* Clear window to avoid flicker. */
9216 EraseRect (&(w->portRect));
9217 if (zoom_in_or_out == inZoomOut)
9219 SetPt (&top_left, w->portRect.left, w->portRect.top);
9220 LocalToGlobal (&top_left);
9222 /* calculate height of window's title bar */
9223 w_title_height = top_left.v - 1
9224 - (**((WindowPeek) w)->strucRgn).rgnBBox.top + GetMBarHeight ();
9226 /* get maximum height of window into zoom_rect.bottom - zoom_rect.top */
9227 zoom_rect = qd.screenBits.bounds;
9228 zoom_rect.top += w_title_height;
9229 InsetRect (&zoom_rect, 8, 4); /* not too tight */
9231 zoom_rect.right = zoom_rect.left
9232 + FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, DEFAULT_NUM_COLS);
9234 /* Adjust the standard size according to character boundaries. */
9235 rows = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, zoom_rect.bottom - zoom_rect.top);
9236 zoom_rect.bottom =
9237 zoom_rect.top + FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, rows);
9239 (**((WStateDataHandle) ((WindowPeek) w)->dataHandle)).stdState
9240 = zoom_rect;
9243 ZoomWindow (w, zoom_in_or_out, f == mac_focus_frame (dpyinfo));
9245 SetPort (save_port);
9246 #endif /* not TARGET_API_MAC_CARBON */
9248 /* retrieve window size and update application values */
9249 #if TARGET_API_MAC_CARBON
9250 GetWindowPortBounds (w, &port_rect);
9251 #else
9252 port_rect = w->portRect;
9253 #endif
9254 height = port_rect.bottom - port_rect.top;
9255 width = port_rect.right - port_rect.left;
9257 if (width != FRAME_PIXEL_WIDTH (f)
9258 || height != FRAME_PIXEL_HEIGHT (f))
9260 rows = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, height);
9261 columns = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, width);
9263 change_frame_size (f, rows, columns, 0, 1, 0);
9264 SET_FRAME_GARBAGED (f);
9265 cancel_mouse_face (f);
9267 FRAME_PIXEL_WIDTH (f) = width;
9268 FRAME_PIXEL_HEIGHT (f) = height;
9270 x_real_positions (f, &f->left_pos, &f->top_pos);
9273 void
9274 mac_store_apple_event (class, id, desc)
9275 Lisp_Object class, id;
9276 const AEDesc *desc;
9278 struct input_event buf;
9280 EVENT_INIT (buf);
9282 buf.kind = MAC_APPLE_EVENT;
9283 buf.x = class;
9284 buf.y = id;
9285 XSETFRAME (buf.frame_or_window,
9286 mac_focus_frame (&one_mac_display_info));
9287 /* Now that Lisp object allocations are protected by BLOCK_INPUT, it
9288 is safe to use them during read_socket_hook. */
9289 buf.arg = mac_aedesc_to_lisp (desc);
9290 kbd_buffer_store_event (&buf);
9293 #if TARGET_API_MAC_CARBON
9294 static OSStatus
9295 mac_store_event_ref_as_apple_event (class, id, class_key, id_key,
9296 event, num_params, names, types)
9297 AEEventClass class;
9298 AEEventID id;
9299 Lisp_Object class_key, id_key;
9300 EventRef event;
9301 UInt32 num_params;
9302 EventParamName *names;
9303 EventParamType *types;
9305 OSStatus err = eventNotHandledErr;
9306 Lisp_Object binding;
9308 mac_find_apple_event_spec (class, id, &class_key, &id_key, &binding);
9309 if (!NILP (binding) && !EQ (binding, Qundefined))
9311 if (INTEGERP (binding))
9312 err = XINT (binding);
9313 else
9315 AppleEvent apple_event;
9316 err = create_apple_event_from_event_ref (event, num_params,
9317 names, types,
9318 &apple_event);
9319 if (err == noErr)
9321 mac_store_apple_event (class_key, id_key, &apple_event);
9322 AEDisposeDesc (&apple_event);
9323 /* Post a harmless event so as to wake up from
9324 ReceiveNextEvent. */
9325 mac_post_mouse_moved_event ();
9330 return err;
9333 void
9334 mac_store_drag_event (window, mouse_pos, modifiers, desc)
9335 WindowRef window;
9336 Point mouse_pos;
9337 SInt16 modifiers;
9338 const AEDesc *desc;
9340 struct input_event buf;
9342 EVENT_INIT (buf);
9344 buf.kind = DRAG_N_DROP_EVENT;
9345 buf.modifiers = mac_to_emacs_modifiers (modifiers);
9346 buf.timestamp = TickCount () * (1000 / 60);
9347 XSETINT (buf.x, mouse_pos.h);
9348 XSETINT (buf.y, mouse_pos.v);
9349 XSETFRAME (buf.frame_or_window, mac_window_to_frame (window));
9350 buf.arg = mac_aedesc_to_lisp (desc);
9351 kbd_buffer_store_event (&buf);
9353 #endif
9355 #if USE_CARBON_EVENTS
9356 static pascal OSStatus
9357 mac_handle_command_event (next_handler, event, data)
9358 EventHandlerCallRef next_handler;
9359 EventRef event;
9360 void *data;
9362 OSStatus result, err;
9363 HICommand command;
9364 static EventParamName names[] = {kEventParamDirectObject,
9365 kEventParamKeyModifiers};
9366 static EventParamType types[] = {typeHICommand,
9367 typeUInt32};
9368 int num_params = sizeof (names) / sizeof (names[0]);
9370 result = CallNextEventHandler (next_handler, event);
9371 if (result != eventNotHandledErr)
9372 return result;
9374 err = GetEventParameter (event, kEventParamDirectObject, typeHICommand,
9375 NULL, sizeof (HICommand), NULL, &command);
9377 if (err != noErr || command.commandID == 0)
9378 return eventNotHandledErr;
9380 /* A HI command event is mapped to an Apple event whose event class
9381 symbol is `hi-command' and event ID is its command ID. */
9382 err = mac_store_event_ref_as_apple_event (0, command.commandID,
9383 Qhi_command, Qnil,
9384 event, num_params, names, types);
9385 return err == noErr ? noErr : eventNotHandledErr;
9388 static OSStatus
9389 init_command_handler ()
9391 EventTypeSpec specs[] = {{kEventClassCommand, kEventCommandProcess}};
9392 static EventHandlerUPP handle_command_eventUPP = NULL;
9394 if (handle_command_eventUPP == NULL)
9395 handle_command_eventUPP = NewEventHandlerUPP (mac_handle_command_event);
9396 return InstallApplicationEventHandler (handle_command_eventUPP,
9397 GetEventTypeCount (specs), specs,
9398 NULL, NULL);
9401 static pascal OSStatus
9402 mac_handle_window_event (next_handler, event, data)
9403 EventHandlerCallRef next_handler;
9404 EventRef event;
9405 void *data;
9407 WindowPtr wp;
9408 OSStatus result, err;
9409 UInt32 attributes;
9410 XSizeHints *size_hints;
9412 err = GetEventParameter (event, kEventParamDirectObject, typeWindowRef,
9413 NULL, sizeof (WindowPtr), NULL, &wp);
9414 if (err != noErr)
9415 return eventNotHandledErr;
9417 switch (GetEventKind (event))
9419 case kEventWindowUpdate:
9420 result = CallNextEventHandler (next_handler, event);
9421 if (result != eventNotHandledErr)
9422 return result;
9424 do_window_update (wp);
9425 return noErr;
9427 case kEventWindowBoundsChanging:
9428 result = CallNextEventHandler (next_handler, event);
9429 if (result != eventNotHandledErr)
9430 return result;
9432 err = GetEventParameter (event, kEventParamAttributes, typeUInt32,
9433 NULL, sizeof (UInt32), NULL, &attributes);
9434 if (err != noErr)
9435 break;
9437 size_hints = FRAME_SIZE_HINTS (mac_window_to_frame (wp));
9438 if ((attributes & kWindowBoundsChangeUserResize)
9439 && ((size_hints->flags & (PResizeInc | PBaseSize | PMinSize))
9440 == (PResizeInc | PBaseSize | PMinSize)))
9442 Rect bounds;
9443 int width, height;
9445 err = GetEventParameter (event, kEventParamCurrentBounds,
9446 typeQDRectangle, NULL, sizeof (Rect),
9447 NULL, &bounds);
9448 if (err != noErr)
9449 break;
9451 width = bounds.right - bounds.left;
9452 height = bounds.bottom - bounds.top;
9454 if (width < size_hints->min_width)
9455 width = size_hints->min_width;
9456 else
9457 width = size_hints->base_width
9458 + (int) ((width - size_hints->base_width)
9459 / (float) size_hints->width_inc + .5)
9460 * size_hints->width_inc;
9462 if (height < size_hints->min_height)
9463 height = size_hints->min_height;
9464 else
9465 height = size_hints->base_height
9466 + (int) ((height - size_hints->base_height)
9467 / (float) size_hints->height_inc + .5)
9468 * size_hints->height_inc;
9470 bounds.right = bounds.left + width;
9471 bounds.bottom = bounds.top + height;
9472 SetEventParameter (event, kEventParamCurrentBounds,
9473 typeQDRectangle, sizeof (Rect), &bounds);
9474 return noErr;
9476 break;
9478 case kEventWindowShown:
9479 case kEventWindowHidden:
9480 case kEventWindowExpanded:
9481 case kEventWindowCollapsed:
9482 result = CallNextEventHandler (next_handler, event);
9484 mac_handle_visibility_change (mac_window_to_frame (wp));
9485 return noErr;
9487 break;
9489 #ifdef MAC_OSX
9490 case kEventWindowToolbarSwitchMode:
9491 result = CallNextEventHandler (next_handler, event);
9493 static EventParamName names[] = {kEventParamDirectObject,
9494 kEventParamWindowMouseLocation,
9495 kEventParamKeyModifiers,
9496 kEventParamMouseButton,
9497 kEventParamClickCount,
9498 kEventParamMouseChord};
9499 static EventParamType types[] = {typeWindowRef,
9500 typeQDPoint,
9501 typeUInt32,
9502 typeMouseButton,
9503 typeUInt32,
9504 typeUInt32};
9505 int num_params = sizeof (names) / sizeof (names[0]);
9507 err = mac_store_event_ref_as_apple_event (0, 0,
9508 Qwindow,
9509 Qtoolbar_switch_mode,
9510 event, num_params,
9511 names, types);
9513 return err == noErr ? noErr : result;
9514 #endif
9516 #if USE_MAC_TSM
9517 case kEventWindowFocusAcquired:
9518 result = CallNextEventHandler (next_handler, event);
9519 err = mac_tsm_resume ();
9520 return err == noErr ? noErr : result;
9522 case kEventWindowFocusRelinquish:
9523 result = CallNextEventHandler (next_handler, event);
9524 err = mac_tsm_suspend ();
9525 return err == noErr ? noErr : result;
9526 #endif
9529 return eventNotHandledErr;
9532 static pascal OSStatus
9533 mac_handle_mouse_event (next_handler, event, data)
9534 EventHandlerCallRef next_handler;
9535 EventRef event;
9536 void *data;
9538 OSStatus result, err;
9540 switch (GetEventKind (event))
9542 case kEventMouseWheelMoved:
9544 WindowPtr wp;
9545 struct frame *f;
9546 EventMouseWheelAxis axis;
9547 SInt32 delta;
9548 Point point;
9550 result = CallNextEventHandler (next_handler, event);
9551 if (result != eventNotHandledErr || read_socket_inev == NULL)
9552 return result;
9554 err = GetEventParameter (event, kEventParamWindowRef, typeWindowRef,
9555 NULL, sizeof (WindowRef), NULL, &wp);
9556 if (err != noErr)
9557 break;
9559 f = mac_window_to_frame (wp);
9560 if (f != mac_focus_frame (&one_mac_display_info))
9561 break;
9563 err = GetEventParameter (event, kEventParamMouseWheelAxis,
9564 typeMouseWheelAxis, NULL,
9565 sizeof (EventMouseWheelAxis), NULL, &axis);
9566 if (err != noErr || axis != kEventMouseWheelAxisY)
9567 break;
9569 err = GetEventParameter (event, kEventParamMouseWheelDelta,
9570 typeSInt32, NULL, sizeof (SInt32),
9571 NULL, &delta);
9572 if (err != noErr)
9573 break;
9574 err = GetEventParameter (event, kEventParamMouseLocation,
9575 typeQDPoint, NULL, sizeof (Point),
9576 NULL, &point);
9577 if (err != noErr)
9578 break;
9579 read_socket_inev->kind = WHEEL_EVENT;
9580 read_socket_inev->code = 0;
9581 read_socket_inev->modifiers =
9582 (mac_event_to_emacs_modifiers (event)
9583 | ((delta < 0) ? down_modifier : up_modifier));
9584 SetPortWindowPort (wp);
9585 GlobalToLocal (&point);
9586 XSETINT (read_socket_inev->x, point.h);
9587 XSETINT (read_socket_inev->y, point.v);
9588 XSETFRAME (read_socket_inev->frame_or_window, f);
9590 return noErr;
9592 break;
9594 default:
9595 break;
9598 return eventNotHandledErr;
9601 #if USE_MAC_FONT_PANEL
9602 static pascal OSStatus
9603 mac_handle_font_event (next_handler, event, data)
9604 EventHandlerCallRef next_handler;
9605 EventRef event;
9606 void *data;
9608 OSStatus result, err;
9609 Lisp_Object id_key;
9610 int num_params;
9611 EventParamName *names;
9612 EventParamType *types;
9613 static EventParamName names_sel[] = {kEventParamATSUFontID,
9614 kEventParamATSUFontSize,
9615 kEventParamFMFontFamily,
9616 kEventParamFMFontSize,
9617 kEventParamFontColor};
9618 static EventParamType types_sel[] = {typeATSUFontID,
9619 typeATSUSize,
9620 typeFMFontFamily,
9621 typeFMFontSize,
9622 typeFontColor};
9624 result = CallNextEventHandler (next_handler, event);
9625 if (result != eventNotHandledErr)
9626 return result;
9628 switch (GetEventKind (event))
9630 case kEventFontPanelClosed:
9631 id_key = Qpanel_closed;
9632 num_params = 0;
9633 names = NULL;
9634 types = NULL;
9635 break;
9637 case kEventFontSelection:
9638 id_key = Qselection;
9639 num_params = sizeof (names_sel) / sizeof (names_sel[0]);
9640 names = names_sel;
9641 types = types_sel;
9642 break;
9645 err = mac_store_event_ref_as_apple_event (0, 0, Qfont, id_key,
9646 event, num_params,
9647 names, types);
9649 return err == noErr ? noErr : eventNotHandledErr;
9651 #endif
9653 #if USE_MAC_TSM
9654 static pascal OSStatus
9655 mac_handle_text_input_event (next_handler, event, data)
9656 EventHandlerCallRef next_handler;
9657 EventRef event;
9658 void *data;
9660 OSStatus result, err = noErr;
9661 Lisp_Object id_key = Qnil;
9662 int num_params;
9663 EventParamName *names;
9664 EventParamType *types;
9665 static UInt32 seqno_uaia = 0;
9666 static EventParamName names_uaia[] =
9667 {kEventParamTextInputSendComponentInstance,
9668 kEventParamTextInputSendRefCon,
9669 kEventParamTextInputSendSLRec,
9670 kEventParamTextInputSendFixLen,
9671 kEventParamTextInputSendText,
9672 kEventParamTextInputSendUpdateRng,
9673 kEventParamTextInputSendHiliteRng,
9674 kEventParamTextInputSendClauseRng,
9675 kEventParamTextInputSendPinRng,
9676 kEventParamTextInputSendTextServiceEncoding,
9677 kEventParamTextInputSendTextServiceMacEncoding,
9678 EVENT_PARAM_TEXT_INPUT_SEQUENCE_NUMBER};
9679 static EventParamType types_uaia[] =
9680 {typeComponentInstance,
9681 typeLongInteger,
9682 typeIntlWritingCode,
9683 typeLongInteger,
9684 #ifdef MAC_OSX
9685 typeUnicodeText,
9686 #else
9687 typeChar,
9688 #endif
9689 typeTextRangeArray,
9690 typeTextRangeArray,
9691 typeOffsetArray,
9692 typeTextRange,
9693 typeUInt32,
9694 typeUInt32,
9695 typeUInt32};
9696 static EventParamName names_ufke[] =
9697 {kEventParamTextInputSendComponentInstance,
9698 kEventParamTextInputSendRefCon,
9699 kEventParamTextInputSendSLRec,
9700 kEventParamTextInputSendText};
9701 static EventParamType types_ufke[] =
9702 {typeComponentInstance,
9703 typeLongInteger,
9704 typeIntlWritingCode,
9705 typeUnicodeText};
9707 result = CallNextEventHandler (next_handler, event);
9709 switch (GetEventKind (event))
9711 case kEventTextInputUpdateActiveInputArea:
9712 id_key = Qupdate_active_input_area;
9713 num_params = sizeof (names_uaia) / sizeof (names_uaia[0]);
9714 names = names_uaia;
9715 types = types_uaia;
9716 SetEventParameter (event, EVENT_PARAM_TEXT_INPUT_SEQUENCE_NUMBER,
9717 typeUInt32, sizeof (UInt32), &seqno_uaia);
9718 seqno_uaia++;
9719 break;
9721 case kEventTextInputUnicodeForKeyEvent:
9723 EventRef kbd_event;
9724 UInt32 actual_size, modifiers, mapped_modifiers;
9726 err = GetEventParameter (event, kEventParamTextInputSendKeyboardEvent,
9727 typeEventRef, NULL, sizeof (EventRef), NULL,
9728 &kbd_event);
9729 if (err == noErr)
9730 err = GetEventParameter (kbd_event, kEventParamKeyModifiers,
9731 typeUInt32, NULL,
9732 sizeof (UInt32), NULL, &modifiers);
9733 if (err == noErr)
9735 mapped_modifiers =
9736 (NILP (Vmac_control_modifier) ? 0 : controlKey)
9737 | (NILP (Vmac_option_modifier) ? 0 : optionKey)
9738 | (NILP (Vmac_command_modifier) ? 0 : cmdKey);
9739 #ifdef MAC_OSX
9740 mapped_modifiers |=
9741 (NILP (Vmac_function_modifier) ? 0 : kEventKeyModifierFnMask);
9742 #endif
9743 if (modifiers & mapped_modifiers)
9744 /* There're mapped modifier keys. Process it in
9745 XTread_socket. */
9746 return eventNotHandledErr;
9748 if (err == noErr)
9749 err = GetEventParameter (kbd_event, kEventParamKeyUnicodes,
9750 typeUnicodeText, NULL, 0, &actual_size,
9751 NULL);
9752 if (err == noErr && actual_size == sizeof (UniChar))
9754 UniChar code;
9756 err = GetEventParameter (kbd_event, kEventParamKeyUnicodes,
9757 typeUnicodeText, NULL,
9758 sizeof (UniChar), NULL, &code);
9759 if (err == noErr && code < 0x80)
9761 /* ASCII character. Process it in XTread_socket. */
9762 if (read_socket_inev && code >= 0x20 && code <= 0x7e)
9764 UInt32 key_code;
9766 err = GetEventParameter (kbd_event, kEventParamKeyCode,
9767 typeUInt32, NULL, sizeof (UInt32),
9768 NULL, &key_code);
9769 if (!(err == noErr && key_code <= 0x7f
9770 && keycode_to_xkeysym_table [key_code]))
9772 struct frame *f =
9773 mac_focus_frame (&one_mac_display_info);
9775 read_socket_inev->kind = ASCII_KEYSTROKE_EVENT;
9776 read_socket_inev->code = code;
9777 read_socket_inev->modifiers =
9778 (extra_keyboard_modifiers
9779 & (meta_modifier | alt_modifier
9780 | hyper_modifier | super_modifier));
9781 XSETFRAME (read_socket_inev->frame_or_window, f);
9784 return eventNotHandledErr;
9788 /* Non-ASCII keystrokes without mapped modifiers are processed
9789 at the Lisp level. */
9790 id_key = Qunicode_for_key_event;
9791 num_params = sizeof (names_ufke) / sizeof (names_ufke[0]);
9792 names = names_ufke;
9793 types = types_ufke;
9794 break;
9796 case kEventTextInputOffsetToPos:
9798 struct frame *f;
9799 struct window *w;
9800 Point p;
9802 if (!OVERLAYP (Vmac_ts_active_input_overlay))
9803 return eventNotHandledErr;
9805 /* Strictly speaking, this is not always correct because
9806 previous events may change some states about display. */
9807 if (NILP (Foverlay_get (Vmac_ts_active_input_overlay, Qbefore_string)))
9809 /* Active input area is displayed in the echo area. */
9810 w = XWINDOW (echo_area_window);
9811 f = WINDOW_XFRAME (w);
9813 else
9815 /* Active input area is displayed around the current point. */
9816 f = SELECTED_FRAME ();
9817 w = XWINDOW (f->selected_window);
9820 p.h = (WINDOW_TO_FRAME_PIXEL_X (w, w->cursor.x)
9821 + WINDOW_LEFT_FRINGE_WIDTH (w));
9822 p.v = (WINDOW_TO_FRAME_PIXEL_Y (w, w->cursor.y)
9823 + FONT_BASE (FRAME_FONT (f)));
9824 SetPortWindowPort (FRAME_MAC_WINDOW (f));
9825 LocalToGlobal (&p);
9826 err = SetEventParameter (event, kEventParamTextInputReplyPoint,
9827 typeQDPoint, sizeof (typeQDPoint), &p);
9829 break;
9831 default:
9832 abort ();
9835 if (!NILP (id_key))
9836 err = mac_store_event_ref_as_apple_event (0, 0, Qtext_input, id_key,
9837 event, num_params,
9838 names, types);
9840 return err == noErr ? noErr : result;
9842 #endif
9844 #ifdef MAC_OSX
9845 OSStatus
9846 mac_store_service_event (event)
9847 EventRef event;
9849 OSStatus err;
9850 Lisp_Object id_key;
9851 int num_params;
9852 EventParamName *names;
9853 EventParamType *types;
9854 static EventParamName names_pfm[] = {kEventParamServiceMessageName,
9855 kEventParamServiceUserData};
9856 static EventParamType types_pfm[] = {typeCFStringRef,
9857 typeCFStringRef};
9859 switch (GetEventKind (event))
9861 case kEventServicePaste:
9862 id_key = Qpaste;
9863 num_params = 0;
9864 names = NULL;
9865 types = NULL;
9866 break;
9868 case kEventServicePerform:
9869 id_key = Qperform;
9870 num_params = sizeof (names_pfm) / sizeof (names_pfm[0]);
9871 names = names_pfm;
9872 types = types_pfm;
9873 break;
9875 default:
9876 abort ();
9879 err = mac_store_event_ref_as_apple_event (0, 0, Qservice, id_key,
9880 event, num_params,
9881 names, types);
9883 return err;
9885 #endif /* MAC_OSX */
9886 #endif /* USE_CARBON_EVENTS */
9889 OSStatus
9890 install_window_handler (window)
9891 WindowPtr window;
9893 OSStatus err = noErr;
9894 #if USE_CARBON_EVENTS
9895 EventTypeSpec specs_window[] =
9896 {{kEventClassWindow, kEventWindowUpdate},
9897 {kEventClassWindow, kEventWindowBoundsChanging},
9898 {kEventClassWindow, kEventWindowShown},
9899 {kEventClassWindow, kEventWindowHidden},
9900 {kEventClassWindow, kEventWindowExpanded},
9901 {kEventClassWindow, kEventWindowCollapsed},
9902 #ifdef MAC_OSX
9903 {kEventClassWindow, kEventWindowToolbarSwitchMode},
9904 #endif
9905 #if USE_MAC_TSM
9906 {kEventClassWindow, kEventWindowFocusAcquired},
9907 {kEventClassWindow, kEventWindowFocusRelinquish},
9908 #endif
9910 EventTypeSpec specs_mouse[] = {{kEventClassMouse, kEventMouseWheelMoved}};
9911 static EventHandlerUPP handle_window_eventUPP = NULL;
9912 static EventHandlerUPP handle_mouse_eventUPP = NULL;
9913 #if USE_MAC_FONT_PANEL
9914 EventTypeSpec specs_font[] = {{kEventClassFont, kEventFontPanelClosed},
9915 {kEventClassFont, kEventFontSelection}};
9916 static EventHandlerUPP handle_font_eventUPP = NULL;
9917 #endif
9918 #if USE_MAC_TSM
9919 EventTypeSpec specs_text_input[] =
9920 {{kEventClassTextInput, kEventTextInputUpdateActiveInputArea},
9921 {kEventClassTextInput, kEventTextInputUnicodeForKeyEvent},
9922 {kEventClassTextInput, kEventTextInputOffsetToPos}};
9923 static EventHandlerUPP handle_text_input_eventUPP = NULL;
9924 #endif
9926 if (handle_window_eventUPP == NULL)
9927 handle_window_eventUPP = NewEventHandlerUPP (mac_handle_window_event);
9928 if (handle_mouse_eventUPP == NULL)
9929 handle_mouse_eventUPP = NewEventHandlerUPP (mac_handle_mouse_event);
9930 #if USE_MAC_FONT_PANEL
9931 if (handle_font_eventUPP == NULL)
9932 handle_font_eventUPP = NewEventHandlerUPP (mac_handle_font_event);
9933 #endif
9934 #if USE_MAC_TSM
9935 if (handle_text_input_eventUPP == NULL)
9936 handle_text_input_eventUPP =
9937 NewEventHandlerUPP (mac_handle_text_input_event);
9938 #endif
9939 err = InstallWindowEventHandler (window, handle_window_eventUPP,
9940 GetEventTypeCount (specs_window),
9941 specs_window, NULL, NULL);
9942 if (err == noErr)
9943 err = InstallWindowEventHandler (window, handle_mouse_eventUPP,
9944 GetEventTypeCount (specs_mouse),
9945 specs_mouse, NULL, NULL);
9946 #if USE_MAC_FONT_PANEL
9947 if (err == noErr)
9948 err = InstallWindowEventHandler (window, handle_font_eventUPP,
9949 GetEventTypeCount (specs_font),
9950 specs_font, NULL, NULL);
9951 #endif
9952 #if USE_MAC_TSM
9953 if (err == noErr)
9954 err = InstallWindowEventHandler (window, handle_text_input_eventUPP,
9955 GetEventTypeCount (specs_text_input),
9956 specs_text_input, window, NULL);
9957 #endif
9958 #endif
9959 if (err == noErr)
9960 err = install_drag_handler (window);
9962 return err;
9965 void
9966 remove_window_handler (window)
9967 WindowPtr window;
9969 remove_drag_handler (window);
9973 #if __profile__
9974 void
9975 profiler_exit_proc ()
9977 ProfilerDump ("\pEmacs.prof");
9978 ProfilerTerm ();
9980 #endif
9982 /* These few functions implement Emacs as a normal Mac application
9983 (almost): set up the heap and the Toolbox, handle necessary system
9984 events plus a few simple menu events. They also set up Emacs's
9985 access to functions defined in the rest of this file. Emacs uses
9986 function hooks to perform all its terminal I/O. A complete list of
9987 these functions appear in termhooks.h. For what they do, read the
9988 comments there and see also w32term.c and xterm.c. What's
9989 noticeably missing here is the event loop, which is normally
9990 present in most Mac application. After performing the necessary
9991 Mac initializations, main passes off control to emacs_main
9992 (corresponding to main in emacs.c). Emacs_main calls XTread_socket
9993 (defined further below) to read input. This is where
9994 WaitNextEvent/ReceiveNextEvent is called to process Mac events. */
9996 #ifdef MAC_OS8
9997 #undef main
9999 main (void)
10001 #if __profile__ /* is the profiler on? */
10002 if (ProfilerInit(collectDetailed, bestTimeBase, 5000, 200))
10003 exit(1);
10004 #endif
10006 #if __MWERKS__
10007 /* set creator and type for files created by MSL */
10008 _fcreator = 'EMAx';
10009 _ftype = 'TEXT';
10010 #endif
10012 do_init_managers ();
10014 do_get_menus ();
10016 #ifndef USE_LSB_TAG
10017 do_check_ram_size ();
10018 #endif
10020 init_emacs_passwd_dir ();
10022 init_environ ();
10024 init_coercion_handler ();
10026 initialize_applescript ();
10028 init_apple_event_handler ();
10031 char **argv;
10032 int argc = 0;
10034 /* set up argv array from STR# resource */
10035 get_string_list (&argv, ARGV_STRING_LIST_ID);
10036 while (argv[argc])
10037 argc++;
10039 /* free up AppleScript resources on exit */
10040 atexit (terminate_applescript);
10042 #if __profile__ /* is the profiler on? */
10043 atexit (profiler_exit_proc);
10044 #endif
10046 /* 3rd param "envp" never used in emacs_main */
10047 (void) emacs_main (argc, argv, 0);
10050 /* Never reached - real exit in Fkill_emacs */
10051 return 0;
10053 #endif
10055 #if !USE_CARBON_EVENTS
10056 static RgnHandle mouse_region = NULL;
10058 Boolean
10059 mac_wait_next_event (er, sleep_time, dequeue)
10060 EventRecord *er;
10061 UInt32 sleep_time;
10062 Boolean dequeue;
10064 static EventRecord er_buf = {nullEvent};
10065 UInt32 target_tick, current_tick;
10066 EventMask event_mask;
10068 if (mouse_region == NULL)
10069 mouse_region = NewRgn ();
10071 event_mask = everyEvent;
10072 if (!mac_ready_for_apple_events)
10073 event_mask -= highLevelEventMask;
10075 current_tick = TickCount ();
10076 target_tick = current_tick + sleep_time;
10078 if (er_buf.what == nullEvent)
10079 while (!WaitNextEvent (event_mask, &er_buf,
10080 target_tick - current_tick, mouse_region))
10082 current_tick = TickCount ();
10083 if (target_tick <= current_tick)
10084 return false;
10087 *er = er_buf;
10088 if (dequeue)
10089 er_buf.what = nullEvent;
10090 return true;
10092 #endif /* not USE_CARBON_EVENTS */
10094 #if TARGET_API_MAC_CARBON
10095 OSStatus
10096 mac_post_mouse_moved_event ()
10098 EventRef event = NULL;
10099 OSStatus err;
10101 err = CreateEvent (NULL, kEventClassMouse, kEventMouseMoved, 0,
10102 kEventAttributeNone, &event);
10103 if (err == noErr)
10105 Point mouse_pos;
10107 GetMouse (&mouse_pos);
10108 LocalToGlobal (&mouse_pos);
10109 err = SetEventParameter (event, kEventParamMouseLocation, typeQDPoint,
10110 sizeof (Point), &mouse_pos);
10112 if (err == noErr)
10114 UInt32 modifiers = GetCurrentKeyModifiers ();
10116 err = SetEventParameter (event, kEventParamKeyModifiers, typeUInt32,
10117 sizeof (UInt32), &modifiers);
10119 if (err == noErr)
10120 err = PostEventToQueue (GetCurrentEventQueue (), event,
10121 kEventPriorityStandard);
10122 if (event)
10123 ReleaseEvent (event);
10125 return err;
10128 static void
10129 mac_set_unicode_keystroke_event (code, buf)
10130 UniChar code;
10131 struct input_event *buf;
10133 int charset_id, c1, c2;
10135 if (code < 0x80)
10137 buf->kind = ASCII_KEYSTROKE_EVENT;
10138 buf->code = code;
10140 else if (code < 0x100)
10142 if (code < 0xA0)
10143 charset_id = CHARSET_8_BIT_CONTROL;
10144 else
10145 charset_id = charset_latin_iso8859_1;
10146 buf->kind = MULTIBYTE_CHAR_KEYSTROKE_EVENT;
10147 buf->code = MAKE_CHAR (charset_id, code, 0);
10149 else
10151 if (code < 0x2500)
10152 charset_id = charset_mule_unicode_0100_24ff,
10153 code -= 0x100;
10154 else if (code < 0x33FF)
10155 charset_id = charset_mule_unicode_2500_33ff,
10156 code -= 0x2500;
10157 else if (code >= 0xE000)
10158 charset_id = charset_mule_unicode_e000_ffff,
10159 code -= 0xE000;
10160 c1 = (code / 96) + 32, c2 = (code % 96) + 32;
10161 buf->kind = MULTIBYTE_CHAR_KEYSTROKE_EVENT;
10162 buf->code = MAKE_CHAR (charset_id, c1, c2);
10165 #endif
10167 /* Emacs calls this whenever it wants to read an input event from the
10168 user. */
10170 XTread_socket (sd, expected, hold_quit)
10171 int sd, expected;
10172 struct input_event *hold_quit;
10174 struct input_event inev;
10175 int count = 0;
10176 #if USE_CARBON_EVENTS
10177 EventRef eventRef;
10178 EventTargetRef toolbox_dispatcher;
10179 #endif
10180 EventRecord er;
10181 struct mac_display_info *dpyinfo = &one_mac_display_info;
10183 if (interrupt_input_blocked)
10185 interrupt_input_pending = 1;
10186 return -1;
10189 interrupt_input_pending = 0;
10190 BLOCK_INPUT;
10192 /* So people can tell when we have read the available input. */
10193 input_signal_count++;
10195 ++handling_signal;
10197 #if USE_CARBON_EVENTS
10198 toolbox_dispatcher = GetEventDispatcherTarget ();
10200 while (
10201 #if USE_CG_DRAWING
10202 mac_prepare_for_quickdraw (NULL),
10203 #endif
10204 !ReceiveNextEvent (0, NULL, kEventDurationNoWait,
10205 kEventRemoveFromQueue, &eventRef))
10206 #else /* !USE_CARBON_EVENTS */
10207 while (mac_wait_next_event (&er, 0, true))
10208 #endif /* !USE_CARBON_EVENTS */
10210 int do_help = 0;
10211 struct frame *f;
10212 unsigned long timestamp;
10214 EVENT_INIT (inev);
10215 inev.kind = NO_EVENT;
10216 inev.arg = Qnil;
10218 #if USE_CARBON_EVENTS
10219 timestamp = GetEventTime (eventRef) / kEventDurationMillisecond;
10220 #else
10221 timestamp = er.when * (1000 / 60); /* ticks to milliseconds */
10222 #endif
10224 #if USE_CARBON_EVENTS
10225 /* Handle new events */
10226 if (!mac_convert_event_ref (eventRef, &er))
10228 /* There used to be a handler for the kEventMouseWheelMoved
10229 event here. But as of Mac OS X 10.4, this kind of event
10230 is not directly posted to the main event queue by
10231 two-finger scrolling on the trackpad. Instead, some
10232 private event is posted and it is converted to a wheel
10233 event by the default handler for the application target.
10234 The converted one can be received by a Carbon event
10235 handler installed on a window target. */
10236 read_socket_inev = &inev;
10237 SendEventToEventTarget (eventRef, toolbox_dispatcher);
10238 read_socket_inev = NULL;
10240 else
10241 #endif /* USE_CARBON_EVENTS */
10242 switch (er.what)
10244 case mouseDown:
10245 case mouseUp:
10247 WindowPtr window_ptr;
10248 ControlPartCode part_code;
10249 int tool_bar_p = 0;
10251 #if USE_CARBON_EVENTS
10252 /* This is needed to send mouse events like aqua window
10253 buttons to the correct handler. */
10254 if (SendEventToEventTarget (eventRef, toolbox_dispatcher)
10255 != eventNotHandledErr)
10256 break;
10257 #endif
10258 last_mouse_glyph_frame = 0;
10260 if (dpyinfo->grabbed && last_mouse_frame
10261 && FRAME_LIVE_P (last_mouse_frame))
10263 window_ptr = FRAME_MAC_WINDOW (last_mouse_frame);
10264 part_code = inContent;
10266 else
10268 part_code = FindWindow (er.where, &window_ptr);
10269 if (tip_window && window_ptr == tip_window)
10271 HideWindow (tip_window);
10272 part_code = FindWindow (er.where, &window_ptr);
10276 if (er.what != mouseDown &&
10277 (part_code != inContent || dpyinfo->grabbed == 0))
10278 break;
10280 switch (part_code)
10282 case inMenuBar:
10283 f = mac_focus_frame (dpyinfo);
10284 saved_menu_event_location = er.where;
10285 inev.kind = MENU_BAR_ACTIVATE_EVENT;
10286 XSETFRAME (inev.frame_or_window, f);
10287 break;
10289 case inContent:
10290 if (
10291 #if TARGET_API_MAC_CARBON
10292 FrontNonFloatingWindow ()
10293 #else
10294 FrontWindow ()
10295 #endif
10296 != window_ptr)
10297 SelectWindow (window_ptr);
10298 else
10300 ControlPartCode control_part_code;
10301 ControlHandle ch;
10302 Point mouse_loc = er.where;
10303 #ifdef MAC_OSX
10304 ControlKind control_kind;
10305 #endif
10307 f = mac_window_to_frame (window_ptr);
10308 /* convert to local coordinates of new window */
10309 SetPortWindowPort (window_ptr);
10311 GlobalToLocal (&mouse_loc);
10312 #if TARGET_API_MAC_CARBON
10313 ch = FindControlUnderMouse (mouse_loc, window_ptr,
10314 &control_part_code);
10315 #ifdef MAC_OSX
10316 if (ch)
10317 GetControlKind (ch, &control_kind);
10318 #endif
10319 #else
10320 control_part_code = FindControl (mouse_loc, window_ptr,
10321 &ch);
10322 #endif
10324 #if USE_CARBON_EVENTS
10325 inev.code = mac_get_mouse_btn (eventRef);
10326 inev.modifiers = mac_event_to_emacs_modifiers (eventRef);
10327 #else
10328 inev.code = mac_get_emulated_btn (er.modifiers);
10329 inev.modifiers = mac_to_emacs_modifiers (er.modifiers);
10330 #endif
10331 XSETINT (inev.x, mouse_loc.h);
10332 XSETINT (inev.y, mouse_loc.v);
10334 if ((dpyinfo->grabbed && tracked_scroll_bar)
10335 || (ch != 0
10336 #ifndef USE_TOOLKIT_SCROLL_BARS
10337 /* control_part_code becomes kControlNoPart if
10338 a progress indicator is clicked. */
10339 && control_part_code != kControlNoPart
10340 #else /* USE_TOOLKIT_SCROLL_BARS */
10341 #ifdef MAC_OSX
10342 && control_kind.kind == kControlKindScrollBar
10343 #endif /* MAC_OSX */
10344 #endif /* USE_TOOLKIT_SCROLL_BARS */
10347 struct scroll_bar *bar;
10349 if (dpyinfo->grabbed && tracked_scroll_bar)
10351 bar = tracked_scroll_bar;
10352 #ifndef USE_TOOLKIT_SCROLL_BARS
10353 control_part_code = kControlIndicatorPart;
10354 #endif
10356 else
10357 bar = (struct scroll_bar *) GetControlReference (ch);
10358 #ifdef USE_TOOLKIT_SCROLL_BARS
10359 /* Make the "Ctrl-Mouse-2 splits window" work
10360 for toolkit scroll bars. */
10361 if (er.modifiers & controlKey)
10362 x_scroll_bar_handle_click (bar, control_part_code,
10363 &er, &inev);
10364 else if (er.what == mouseDown)
10365 x_scroll_bar_handle_press (bar, control_part_code,
10366 &inev);
10367 else
10368 x_scroll_bar_handle_release (bar, &inev);
10369 #else /* not USE_TOOLKIT_SCROLL_BARS */
10370 x_scroll_bar_handle_click (bar, control_part_code,
10371 &er, &inev);
10372 if (er.what == mouseDown
10373 && control_part_code == kControlIndicatorPart)
10374 tracked_scroll_bar = bar;
10375 else
10376 tracked_scroll_bar = NULL;
10377 #endif /* not USE_TOOLKIT_SCROLL_BARS */
10379 else
10381 Lisp_Object window;
10382 int x = mouse_loc.h;
10383 int y = mouse_loc.v;
10385 window = window_from_coordinates (f, x, y, 0, 0, 0, 1);
10386 if (EQ (window, f->tool_bar_window))
10388 if (er.what == mouseDown)
10389 handle_tool_bar_click (f, x, y, 1, 0);
10390 else
10391 handle_tool_bar_click (f, x, y, 0,
10392 inev.modifiers);
10393 tool_bar_p = 1;
10395 else
10397 XSETFRAME (inev.frame_or_window, f);
10398 inev.kind = MOUSE_CLICK_EVENT;
10402 if (er.what == mouseDown)
10404 dpyinfo->grabbed |= (1 << inev.code);
10405 last_mouse_frame = f;
10407 if (!tool_bar_p)
10408 last_tool_bar_item = -1;
10410 else
10412 if ((dpyinfo->grabbed & (1 << inev.code)) == 0)
10413 /* If a button is released though it was not
10414 previously pressed, that would be because
10415 of multi-button emulation. */
10416 dpyinfo->grabbed = 0;
10417 else
10418 dpyinfo->grabbed &= ~(1 << inev.code);
10421 /* Ignore any mouse motion that happened before
10422 this event; any subsequent mouse-movement Emacs
10423 events should reflect only motion after the
10424 ButtonPress. */
10425 if (f != 0)
10426 f->mouse_moved = 0;
10428 #ifdef USE_TOOLKIT_SCROLL_BARS
10429 if (inev.kind == MOUSE_CLICK_EVENT)
10430 #endif
10431 switch (er.what)
10433 case mouseDown:
10434 inev.modifiers |= down_modifier;
10435 break;
10436 case mouseUp:
10437 inev.modifiers |= up_modifier;
10438 break;
10441 break;
10443 case inDrag:
10444 #if TARGET_API_MAC_CARBON
10445 case inProxyIcon:
10446 if (IsWindowPathSelectClick (window_ptr, &er))
10448 WindowPathSelect (window_ptr, NULL, NULL);
10449 break;
10451 if (part_code == inProxyIcon
10452 && (TrackWindowProxyDrag (window_ptr, er.where)
10453 != errUserWantsToDragWindow))
10454 break;
10455 DragWindow (window_ptr, er.where, NULL);
10456 #else /* not TARGET_API_MAC_CARBON */
10457 DragWindow (window_ptr, er.where, &qd.screenBits.bounds);
10458 #endif /* not TARGET_API_MAC_CARBON */
10459 /* Update the frame parameters. */
10461 struct frame *f = mac_window_to_frame (window_ptr);
10463 if (f && !f->async_iconified)
10464 x_real_positions (f, &f->left_pos, &f->top_pos);
10466 break;
10468 case inGoAway:
10469 if (TrackGoAway (window_ptr, er.where))
10471 inev.kind = DELETE_WINDOW_EVENT;
10472 XSETFRAME (inev.frame_or_window,
10473 mac_window_to_frame (window_ptr));
10475 break;
10477 /* window resize handling added --ben */
10478 case inGrow:
10479 do_grow_window (window_ptr, &er);
10480 break;
10482 /* window zoom handling added --ben */
10483 case inZoomIn:
10484 case inZoomOut:
10485 if (TrackBox (window_ptr, er.where, part_code))
10486 do_zoom_window (window_ptr, part_code);
10487 break;
10489 default:
10490 break;
10493 break;
10495 case updateEvt:
10496 #if USE_CARBON_EVENTS
10497 if (SendEventToEventTarget (eventRef, toolbox_dispatcher)
10498 != eventNotHandledErr)
10499 break;
10500 #else
10501 do_window_update ((WindowPtr) er.message);
10502 #endif
10503 break;
10505 case osEvt:
10506 #if USE_CARBON_EVENTS
10507 if (SendEventToEventTarget (eventRef, toolbox_dispatcher)
10508 != eventNotHandledErr)
10509 break;
10510 #endif
10511 switch ((er.message >> 24) & 0x000000FF)
10513 case suspendResumeMessage:
10514 #if USE_MAC_TSM
10515 if (er.message & resumeFlag)
10516 mac_tsm_resume ();
10517 else
10518 mac_tsm_suspend ();
10519 #endif
10520 break;
10522 case mouseMovedMessage:
10523 #if !USE_CARBON_EVENTS
10524 SetRectRgn (mouse_region, er.where.h, er.where.v,
10525 er.where.h + 1, er.where.v + 1);
10526 #endif
10527 previous_help_echo_string = help_echo_string;
10528 help_echo_string = Qnil;
10530 if (dpyinfo->grabbed && last_mouse_frame
10531 && FRAME_LIVE_P (last_mouse_frame))
10532 f = last_mouse_frame;
10533 else
10534 f = dpyinfo->x_focus_frame;
10536 if (dpyinfo->mouse_face_hidden)
10538 dpyinfo->mouse_face_hidden = 0;
10539 clear_mouse_face (dpyinfo);
10542 if (f)
10544 WindowPtr wp = FRAME_MAC_WINDOW (f);
10545 Point mouse_pos = er.where;
10547 SetPortWindowPort (wp);
10549 GlobalToLocal (&mouse_pos);
10551 if (dpyinfo->grabbed && tracked_scroll_bar)
10552 #ifdef USE_TOOLKIT_SCROLL_BARS
10553 x_scroll_bar_handle_drag (wp, tracked_scroll_bar,
10554 mouse_pos, &inev);
10555 #else /* not USE_TOOLKIT_SCROLL_BARS */
10556 x_scroll_bar_note_movement (tracked_scroll_bar,
10557 mouse_pos.v
10558 - XINT (tracked_scroll_bar->top),
10559 er.when * (1000 / 60));
10560 #endif /* not USE_TOOLKIT_SCROLL_BARS */
10561 else
10563 /* Generate SELECT_WINDOW_EVENTs when needed. */
10564 if (mouse_autoselect_window)
10566 Lisp_Object window;
10568 window = window_from_coordinates (f,
10569 mouse_pos.h,
10570 mouse_pos.v,
10571 0, 0, 0, 0);
10573 /* Window will be selected only when it is
10574 not selected now and last mouse movement
10575 event was not in it. Minibuffer window
10576 will be selected iff it is active. */
10577 if (WINDOWP (window)
10578 && !EQ (window, last_window)
10579 && !EQ (window, selected_window))
10581 inev.kind = SELECT_WINDOW_EVENT;
10582 inev.frame_or_window = window;
10585 last_window=window;
10587 if (!note_mouse_movement (f, &mouse_pos))
10588 help_echo_string = previous_help_echo_string;
10592 /* If the contents of the global variable
10593 help_echo_string has changed, generate a
10594 HELP_EVENT. */
10595 if (!NILP (help_echo_string) || !NILP (previous_help_echo_string))
10596 do_help = 1;
10597 break;
10599 break;
10601 case activateEvt:
10603 WindowPtr window_ptr = (WindowPtr) er.message;
10605 #if USE_CARBON_EVENTS
10606 if (SendEventToEventTarget (eventRef, toolbox_dispatcher)
10607 != eventNotHandledErr)
10608 break;
10609 #endif
10610 if (window_ptr == tip_window)
10612 HideWindow (tip_window);
10613 break;
10616 if (!is_emacs_window (window_ptr))
10617 break;
10619 if ((er.modifiers & activeFlag) != 0)
10621 /* A window has been activated */
10622 Point mouse_loc = er.where;
10624 x_detect_focus_change (dpyinfo, &er, &inev);
10626 SetPortWindowPort (window_ptr);
10627 GlobalToLocal (&mouse_loc);
10628 /* Window-activated event counts as mouse movement,
10629 so update things that depend on mouse position. */
10630 note_mouse_movement (mac_window_to_frame (window_ptr),
10631 &mouse_loc);
10633 else
10635 /* A window has been deactivated */
10636 #if USE_TOOLKIT_SCROLL_BARS
10637 if (dpyinfo->grabbed && tracked_scroll_bar)
10639 struct input_event event;
10641 EVENT_INIT (event);
10642 event.kind = NO_EVENT;
10643 x_scroll_bar_handle_release (tracked_scroll_bar, &event);
10644 if (event.kind != NO_EVENT)
10646 event.timestamp = timestamp;
10647 kbd_buffer_store_event_hold (&event, hold_quit);
10648 count++;
10651 #endif
10652 dpyinfo->grabbed = 0;
10654 x_detect_focus_change (dpyinfo, &er, &inev);
10656 f = mac_window_to_frame (window_ptr);
10657 if (f == dpyinfo->mouse_face_mouse_frame)
10659 /* If we move outside the frame, then we're
10660 certainly no longer on any text in the
10661 frame. */
10662 clear_mouse_face (dpyinfo);
10663 dpyinfo->mouse_face_mouse_frame = 0;
10666 /* Generate a nil HELP_EVENT to cancel a help-echo.
10667 Do it only if there's something to cancel.
10668 Otherwise, the startup message is cleared when the
10669 mouse leaves the frame. */
10670 if (any_help_event_p)
10671 do_help = -1;
10674 break;
10676 case keyDown:
10677 case keyUp:
10678 case autoKey:
10680 int keycode = (er.message & keyCodeMask) >> 8;
10681 static SInt16 last_key_script = -1;
10682 SInt16 current_key_script;
10683 UInt32 modifiers = er.modifiers, mapped_modifiers;
10685 mapped_modifiers =
10686 (NILP (Vmac_control_modifier) ? 0 : controlKey)
10687 | (NILP (Vmac_option_modifier) ? 0 : optionKey)
10688 | (NILP (Vmac_command_modifier) ? 0 : cmdKey);
10690 #if USE_CARBON_EVENTS && defined (MAC_OSX)
10691 mapped_modifiers |=
10692 (NILP (Vmac_function_modifier) ? 0 : kEventKeyModifierFnMask);
10694 GetEventParameter (eventRef, kEventParamKeyModifiers,
10695 typeUInt32, NULL,
10696 sizeof (UInt32), NULL, &modifiers);
10697 #endif
10698 mapped_modifiers &= modifiers;
10700 #if USE_CARBON_EVENTS && (defined (MAC_OSX) || USE_MAC_TSM)
10701 /* When using Carbon Events, we need to pass raw keyboard
10702 events to the TSM ourselves. If TSM handles it, it
10703 will pass back noErr, otherwise it will pass back
10704 "eventNotHandledErr" and we can process it
10705 normally. */
10706 if (!(mapped_modifiers
10707 & ~(mac_pass_command_to_system ? cmdKey : 0)
10708 & ~(mac_pass_control_to_system ? controlKey : 0)))
10710 OSStatus err;
10712 read_socket_inev = &inev;
10713 err = SendEventToEventTarget (eventRef, toolbox_dispatcher);
10714 read_socket_inev = NULL;
10715 if (err != eventNotHandledErr)
10716 break;
10718 #endif
10719 if (er.what == keyUp)
10720 break;
10722 ObscureCursor ();
10724 f = mac_focus_frame (dpyinfo);
10726 if (!dpyinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight)
10727 && !EQ (f->tool_bar_window, dpyinfo->mouse_face_window))
10729 clear_mouse_face (dpyinfo);
10730 dpyinfo->mouse_face_hidden = 1;
10733 current_key_script = GetScriptManagerVariable (smKeyScript);
10734 if (last_key_script != current_key_script)
10736 struct input_event event;
10738 EVENT_INIT (event);
10739 event.kind = LANGUAGE_CHANGE_EVENT;
10740 event.arg = Qnil;
10741 event.code = current_key_script;
10742 event.timestamp = timestamp;
10743 kbd_buffer_store_event (&event);
10744 count++;
10745 last_key_script = current_key_script;
10748 #if USE_MAC_TSM
10749 if (inev.kind != NO_EVENT)
10750 break;
10751 #endif
10753 #ifdef MAC_OSX
10754 if (mapped_modifiers & kEventKeyModifierFnMask
10755 && keycode <= 0x7f
10756 && fn_keycode_to_keycode_table[keycode])
10757 keycode = fn_keycode_to_keycode_table[keycode];
10758 #endif
10759 if (keycode <= 0x7f && keycode_to_xkeysym_table [keycode])
10761 inev.kind = NON_ASCII_KEYSTROKE_EVENT;
10762 inev.code = 0xff00 | keycode_to_xkeysym_table [keycode];
10763 #ifdef MAC_OSX
10764 if (modifiers & kEventKeyModifierFnMask
10765 && keycode <= 0x7f
10766 && fn_keycode_to_keycode_table[keycode] == keycode)
10767 modifiers &= ~kEventKeyModifierFnMask;
10768 #endif
10770 else if (mapped_modifiers)
10772 /* translate the keycode back to determine the
10773 original key */
10774 #ifdef MAC_OSX
10775 static SInt16 last_key_layout_id = 0;
10776 static Handle uchr_handle = (Handle)-1;
10777 SInt16 current_key_layout_id =
10778 GetScriptVariable (current_key_script, smScriptKeys);
10780 if (uchr_handle == (Handle)-1
10781 || last_key_layout_id != current_key_layout_id)
10783 uchr_handle = GetResource ('uchr', current_key_layout_id);
10784 last_key_layout_id = current_key_layout_id;
10787 if (uchr_handle)
10789 OSStatus status;
10790 UInt16 key_action = er.what - keyDown;
10791 UInt32 modifier_key_state =
10792 (modifiers & ~mapped_modifiers) >> 8;
10793 UInt32 keyboard_type = LMGetKbdType ();
10794 SInt32 dead_key_state = 0;
10795 UniChar code;
10796 UniCharCount actual_length;
10798 status = UCKeyTranslate ((UCKeyboardLayout *)*uchr_handle,
10799 keycode, key_action,
10800 modifier_key_state,
10801 keyboard_type,
10802 kUCKeyTranslateNoDeadKeysMask,
10803 &dead_key_state,
10804 1, &actual_length, &code);
10805 if (status == noErr && actual_length == 1)
10806 mac_set_unicode_keystroke_event (code, &inev);
10808 #endif /* MAC_OSX */
10810 if (inev.kind == NO_EVENT)
10812 /* This code comes from Keyboard Resource,
10813 Appendix C of IM - Text. This is necessary
10814 since shift is ignored in KCHR table
10815 translation when option or command is pressed.
10816 It also does not translate correctly
10817 control-shift chars like C-% so mask off shift
10818 here also. */
10819 /* Mask off modifier keys that are mapped to some
10820 Emacs modifiers. */
10821 int new_modifiers = er.modifiers & ~mapped_modifiers;
10822 /* set high byte of keycode to modifier high byte*/
10823 int new_keycode = keycode | new_modifiers;
10824 Ptr kchr_ptr = (Ptr) GetScriptManagerVariable (smKCHRCache);
10825 unsigned long some_state = 0;
10826 UInt32 new_char_code;
10828 new_char_code = KeyTranslate (kchr_ptr, new_keycode,
10829 &some_state);
10830 if (new_char_code == 0)
10831 /* Seems like a dead key. Append up-stroke. */
10832 new_char_code = KeyTranslate (kchr_ptr,
10833 new_keycode | 0x80,
10834 &some_state);
10835 if (new_char_code)
10837 inev.kind = ASCII_KEYSTROKE_EVENT;
10838 inev.code = new_char_code & 0xff;
10843 if (inev.kind == NO_EVENT)
10845 inev.kind = ASCII_KEYSTROKE_EVENT;
10846 inev.code = er.message & charCodeMask;
10849 inev.modifiers = mac_to_emacs_modifiers (modifiers);
10850 inev.modifiers |= (extra_keyboard_modifiers
10851 & (meta_modifier | alt_modifier
10852 | hyper_modifier | super_modifier));
10853 XSETFRAME (inev.frame_or_window, f);
10855 #if TARGET_API_MAC_CARBON
10856 if (inev.kind == ASCII_KEYSTROKE_EVENT
10857 && inev.code >= 0x80 && inev.modifiers)
10859 OSStatus err;
10860 TextEncoding encoding = kTextEncodingMacRoman;
10861 TextToUnicodeInfo ttu_info;
10863 UpgradeScriptInfoToTextEncoding (current_key_script,
10864 kTextLanguageDontCare,
10865 kTextRegionDontCare,
10866 NULL, &encoding);
10867 err = CreateTextToUnicodeInfoByEncoding (encoding, &ttu_info);
10868 if (err == noErr)
10870 UniChar code;
10871 Str255 pstr;
10872 ByteCount unicode_len;
10874 pstr[0] = 1;
10875 pstr[1] = inev.code;
10876 err = ConvertFromPStringToUnicode (ttu_info, pstr,
10877 sizeof (UniChar),
10878 &unicode_len, &code);
10879 if (err == noErr && unicode_len == sizeof (UniChar))
10880 mac_set_unicode_keystroke_event (code, &inev);
10881 DisposeTextToUnicodeInfo (&ttu_info);
10884 #endif
10886 break;
10888 case kHighLevelEvent:
10889 AEProcessAppleEvent (&er);
10890 break;
10892 default:
10893 break;
10895 #if USE_CARBON_EVENTS
10896 ReleaseEvent (eventRef);
10897 #endif
10899 if (inev.kind != NO_EVENT)
10901 inev.timestamp = timestamp;
10902 kbd_buffer_store_event_hold (&inev, hold_quit);
10903 count++;
10906 if (do_help
10907 && !(hold_quit && hold_quit->kind != NO_EVENT))
10909 Lisp_Object frame;
10911 if (f)
10912 XSETFRAME (frame, f);
10913 else
10914 frame = Qnil;
10916 if (do_help > 0)
10918 any_help_event_p = 1;
10919 gen_help_event (help_echo_string, frame, help_echo_window,
10920 help_echo_object, help_echo_pos);
10922 else
10924 help_echo_string = Qnil;
10925 gen_help_event (Qnil, frame, Qnil, Qnil, 0);
10927 count++;
10932 /* If the focus was just given to an autoraising frame,
10933 raise it now. */
10934 /* ??? This ought to be able to handle more than one such frame. */
10935 if (pending_autoraise_frame)
10937 x_raise_frame (pending_autoraise_frame);
10938 pending_autoraise_frame = 0;
10941 #if !USE_CARBON_EVENTS
10942 /* Check which frames are still visible. We do this here because
10943 there doesn't seem to be any direct notification from the Window
10944 Manager that the visibility of a window has changed (at least,
10945 not in all cases). */
10947 Lisp_Object tail, frame;
10949 FOR_EACH_FRAME (tail, frame)
10951 struct frame *f = XFRAME (frame);
10953 /* The tooltip has been drawn already. Avoid the
10954 SET_FRAME_GARBAGED in mac_handle_visibility_change. */
10955 if (EQ (frame, tip_frame))
10956 continue;
10958 if (FRAME_MAC_P (f))
10959 mac_handle_visibility_change (f);
10962 #endif
10964 --handling_signal;
10965 UNBLOCK_INPUT;
10966 return count;
10970 /* Need to override CodeWarrior's input function so no conversion is
10971 done on newlines Otherwise compiled functions in .elc files will be
10972 read incorrectly. Defined in ...:MSL C:MSL
10973 Common:Source:buffer_io.c. */
10974 #ifdef __MWERKS__
10975 void
10976 __convert_to_newlines (unsigned char * p, size_t * n)
10978 #pragma unused(p,n)
10981 void
10982 __convert_from_newlines (unsigned char * p, size_t * n)
10984 #pragma unused(p,n)
10986 #endif
10988 #ifdef MAC_OS8
10989 void
10990 make_mac_terminal_frame (struct frame *f)
10992 Lisp_Object frame;
10993 Rect r;
10995 XSETFRAME (frame, f);
10997 f->output_method = output_mac;
10998 f->output_data.mac = (struct mac_output *)
10999 xmalloc (sizeof (struct mac_output));
11000 bzero (f->output_data.mac, sizeof (struct mac_output));
11002 XSETFRAME (FRAME_KBOARD (f)->Vdefault_minibuffer_frame, f);
11004 FRAME_COLS (f) = 96;
11005 FRAME_LINES (f) = 4;
11007 FRAME_CAN_HAVE_SCROLL_BARS (f) = 1;
11008 FRAME_VERTICAL_SCROLL_BAR_TYPE (f) = vertical_scroll_bar_right;
11010 FRAME_DESIRED_CURSOR (f) = FILLED_BOX_CURSOR;
11012 f->output_data.mac->cursor_pixel = 0;
11013 f->output_data.mac->border_pixel = 0x00ff00;
11014 f->output_data.mac->mouse_pixel = 0xff00ff;
11015 f->output_data.mac->cursor_foreground_pixel = 0x0000ff;
11017 f->output_data.mac->text_cursor = kThemeIBeamCursor;
11018 f->output_data.mac->nontext_cursor = kThemeArrowCursor;
11019 f->output_data.mac->modeline_cursor = kThemeArrowCursor;
11020 f->output_data.mac->hand_cursor = kThemePointingHandCursor;
11021 f->output_data.mac->hourglass_cursor = kThemeWatchCursor;
11022 f->output_data.mac->horizontal_drag_cursor = kThemeResizeLeftRightCursor;
11024 FRAME_FONTSET (f) = -1;
11025 f->output_data.mac->explicit_parent = 0;
11026 f->left_pos = 8;
11027 f->top_pos = 32;
11028 f->border_width = 0;
11030 f->internal_border_width = 0;
11032 f->auto_raise = 1;
11033 f->auto_lower = 1;
11035 f->new_text_cols = 0;
11036 f->new_text_lines = 0;
11038 SetRect (&r, f->left_pos, f->top_pos,
11039 f->left_pos + FRAME_PIXEL_WIDTH (f),
11040 f->top_pos + FRAME_PIXEL_HEIGHT (f));
11042 BLOCK_INPUT;
11044 if (!(FRAME_MAC_WINDOW (f) =
11045 NewCWindow (NULL, &r, "\p", true, dBoxProc,
11046 (WindowPtr) -1, 1, (long) f->output_data.mac)))
11047 abort ();
11048 /* so that update events can find this mac_output struct */
11049 f->output_data.mac->mFP = f; /* point back to emacs frame */
11051 UNBLOCK_INPUT;
11053 x_make_gc (f);
11055 /* Need to be initialized for unshow_buffer in window.c. */
11056 selected_window = f->selected_window;
11058 Fmodify_frame_parameters (frame,
11059 Fcons (Fcons (Qfont,
11060 build_string ("-*-monaco-medium-r-*--*-90-*-*-*-*-mac-roman")), Qnil));
11061 Fmodify_frame_parameters (frame,
11062 Fcons (Fcons (Qforeground_color,
11063 build_string ("black")), Qnil));
11064 Fmodify_frame_parameters (frame,
11065 Fcons (Fcons (Qbackground_color,
11066 build_string ("white")), Qnil));
11068 #endif
11071 /***********************************************************************
11072 Initialization
11073 ***********************************************************************/
11075 int mac_initialized = 0;
11077 void
11078 mac_initialize_display_info ()
11080 struct mac_display_info *dpyinfo = &one_mac_display_info;
11082 bzero (dpyinfo, sizeof (*dpyinfo));
11084 #ifdef MAC_OSX
11085 dpyinfo->mac_id_name
11086 = (char *) xmalloc (SCHARS (Vinvocation_name)
11087 + SCHARS (Vsystem_name)
11088 + 2);
11089 sprintf (dpyinfo->mac_id_name, "%s@%s",
11090 SDATA (Vinvocation_name), SDATA (Vsystem_name));
11091 #else
11092 dpyinfo->mac_id_name = (char *) xmalloc (strlen ("Mac Display") + 1);
11093 strcpy (dpyinfo->mac_id_name, "Mac Display");
11094 #endif
11096 dpyinfo->reference_count = 0;
11097 dpyinfo->resx = 72.0;
11098 dpyinfo->resy = 72.0;
11099 #ifdef MAC_OSX
11100 /* HasDepth returns true if it is possible to have a 32 bit display,
11101 but this may not be what is actually used. Mac OSX can do better. */
11102 dpyinfo->color_p = CGDisplaySamplesPerPixel (kCGDirectMainDisplay) > 1;
11103 dpyinfo->n_planes = CGDisplayBitsPerPixel (kCGDirectMainDisplay);
11104 dpyinfo->height = CGDisplayPixelsHigh (kCGDirectMainDisplay);
11105 dpyinfo->width = CGDisplayPixelsWide (kCGDirectMainDisplay);
11106 #else
11108 GDHandle main_device_handle = LMGetMainDevice();
11110 dpyinfo->color_p = TestDeviceAttribute (main_device_handle, gdDevType);
11111 for (dpyinfo->n_planes = 32; dpyinfo->n_planes > 0; dpyinfo->n_planes >>= 1)
11112 if (HasDepth (main_device_handle, dpyinfo->n_planes,
11113 gdDevType, dpyinfo->color_p))
11114 break;
11115 dpyinfo->height = (**main_device_handle).gdRect.bottom;
11116 dpyinfo->width = (**main_device_handle).gdRect.right;
11118 #endif
11119 dpyinfo->grabbed = 0;
11120 dpyinfo->root_window = NULL;
11121 dpyinfo->image_cache = make_image_cache ();
11123 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
11124 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
11125 dpyinfo->mouse_face_face_id = DEFAULT_FACE_ID;
11126 dpyinfo->mouse_face_window = Qnil;
11127 dpyinfo->mouse_face_overlay = Qnil;
11128 dpyinfo->mouse_face_hidden = 0;
11132 static XrmDatabase
11133 mac_make_rdb (xrm_option)
11134 char *xrm_option;
11136 XrmDatabase database;
11138 database = xrm_get_preference_database (NULL);
11139 if (xrm_option)
11140 xrm_merge_string_database (database, xrm_option);
11142 return database;
11145 struct mac_display_info *
11146 mac_term_init (display_name, xrm_option, resource_name)
11147 Lisp_Object display_name;
11148 char *xrm_option;
11149 char *resource_name;
11151 struct mac_display_info *dpyinfo;
11153 BLOCK_INPUT;
11155 if (!mac_initialized)
11157 mac_initialize ();
11158 mac_initialized = 1;
11161 if (x_display_list)
11162 error ("Sorry, this version can only handle one display");
11164 mac_initialize_display_info ();
11166 dpyinfo = &one_mac_display_info;
11168 dpyinfo->xrdb = mac_make_rdb (xrm_option);
11170 /* Put this display on the chain. */
11171 dpyinfo->next = x_display_list;
11172 x_display_list = dpyinfo;
11174 /* Put it on x_display_name_list. */
11175 x_display_name_list = Fcons (Fcons (display_name,
11176 Fcons (Qnil, dpyinfo->xrdb)),
11177 x_display_name_list);
11178 dpyinfo->name_list_element = XCAR (x_display_name_list);
11180 UNBLOCK_INPUT;
11182 return dpyinfo;
11184 /* Get rid of display DPYINFO, assuming all frames are already gone. */
11186 void
11187 x_delete_display (dpyinfo)
11188 struct mac_display_info *dpyinfo;
11190 int i;
11192 /* Discard this display from x_display_name_list and x_display_list.
11193 We can't use Fdelq because that can quit. */
11194 if (! NILP (x_display_name_list)
11195 && EQ (XCAR (x_display_name_list), dpyinfo->name_list_element))
11196 x_display_name_list = XCDR (x_display_name_list);
11197 else
11199 Lisp_Object tail;
11201 tail = x_display_name_list;
11202 while (CONSP (tail) && CONSP (XCDR (tail)))
11204 if (EQ (XCAR (XCDR (tail)), dpyinfo->name_list_element))
11206 XSETCDR (tail, XCDR (XCDR (tail)));
11207 break;
11209 tail = XCDR (tail);
11213 if (x_display_list == dpyinfo)
11214 x_display_list = dpyinfo->next;
11215 else
11217 struct x_display_info *tail;
11219 for (tail = x_display_list; tail; tail = tail->next)
11220 if (tail->next == dpyinfo)
11221 tail->next = tail->next->next;
11224 /* Free the font names in the font table. */
11225 for (i = 0; i < dpyinfo->n_fonts; i++)
11226 if (dpyinfo->font_table[i].name)
11228 if (dpyinfo->font_table[i].name != dpyinfo->font_table[i].full_name)
11229 xfree (dpyinfo->font_table[i].full_name);
11230 xfree (dpyinfo->font_table[i].name);
11233 if (dpyinfo->font_table)
11235 if (dpyinfo->font_table->font_encoder)
11236 xfree (dpyinfo->font_table->font_encoder);
11237 xfree (dpyinfo->font_table);
11239 if (dpyinfo->mac_id_name)
11240 xfree (dpyinfo->mac_id_name);
11242 if (x_display_list == 0)
11244 mac_clear_font_name_table ();
11245 bzero (dpyinfo, sizeof (*dpyinfo));
11250 #ifdef MAC_OSX
11251 void
11252 mac_check_bundle()
11254 extern int inhibit_window_system;
11255 extern int noninteractive;
11256 CFBundleRef appsBundle;
11258 /* No need to test if already -nw*/
11259 if (inhibit_window_system || noninteractive)
11260 return;
11262 appsBundle = CFBundleGetMainBundle();
11263 if (appsBundle != NULL)
11265 CFStringRef cfBI = CFSTR("CFBundleIdentifier");
11266 CFTypeRef res = CFBundleGetValueForInfoDictionaryKey(appsBundle, cfBI);
11267 /* We found the bundle identifier, now we know we are valid. */
11268 if (res != NULL)
11270 CFRelease(res);
11271 return;
11274 /* MAC_TODO: Have this start the bundled executable */
11276 /* For now, prevent the fatal error by bringing it up in the terminal */
11277 inhibit_window_system = 1;
11280 void
11281 MakeMeTheFrontProcess ()
11283 ProcessSerialNumber psn;
11284 OSErr err;
11286 err = GetCurrentProcess (&psn);
11287 if (err == noErr)
11288 (void) SetFrontProcess (&psn);
11291 /***** Code to handle C-g testing *****/
11293 /* Contains the Mac modifier formed from quit_char */
11294 int mac_quit_char_modifiers = 0;
11295 int mac_quit_char_keycode;
11296 extern int quit_char;
11298 static void
11299 mac_determine_quit_char_modifiers()
11301 /* Todo: Determine modifiers from quit_char. */
11302 UInt32 qc_modifiers = ctrl_modifier;
11304 /* Map modifiers */
11305 mac_quit_char_modifiers = 0;
11306 if (qc_modifiers & ctrl_modifier) mac_quit_char_modifiers |= controlKey;
11307 if (qc_modifiers & shift_modifier) mac_quit_char_modifiers |= shiftKey;
11308 if (qc_modifiers & alt_modifier) mac_quit_char_modifiers |= optionKey;
11311 static void
11312 init_quit_char_handler ()
11314 /* TODO: Let this support keys other the 'g' */
11315 mac_quit_char_keycode = 5;
11316 /* Look at <architecture/adb_kb_map.h> for details */
11317 /* http://gemma.apple.com/techpubs/mac/Toolbox/Toolbox-40.html#MARKER-9-184*/
11319 mac_determine_quit_char_modifiers();
11321 #endif /* MAC_OSX */
11323 static void
11324 init_menu_bar ()
11326 #ifdef MAC_OSX
11327 OSStatus err;
11328 MenuRef menu;
11329 MenuItemIndex menu_index;
11331 err = GetIndMenuItemWithCommandID (NULL, kHICommandQuit, 1,
11332 &menu, &menu_index);
11333 if (err == noErr)
11334 SetMenuItemCommandKey (menu, menu_index, false, 0);
11335 #if USE_CARBON_EVENTS
11336 EnableMenuCommand (NULL, kHICommandPreferences);
11337 err = GetIndMenuItemWithCommandID (NULL, kHICommandPreferences, 1,
11338 &menu, &menu_index);
11339 if (err == noErr)
11341 SetMenuItemCommandKey (menu, menu_index, false, 0);
11342 InsertMenuItemTextWithCFString (menu, NULL,
11343 0, kMenuItemAttrSeparator, 0);
11344 InsertMenuItemTextWithCFString (menu, CFSTR ("About Emacs"),
11345 0, 0, kHICommandAbout);
11347 #endif /* USE_CARBON_EVENTS */
11348 #else /* !MAC_OSX */
11349 #if USE_CARBON_EVENTS
11350 SetMenuItemCommandID (GetMenuHandle (M_APPLE), I_ABOUT, kHICommandAbout);
11351 #endif
11352 #endif
11355 #if USE_MAC_TSM
11356 static void
11357 init_tsm ()
11359 #ifdef MAC_OSX
11360 static InterfaceTypeList types = {kUnicodeDocument};
11361 #else
11362 static InterfaceTypeList types = {kTextService};
11363 #endif
11365 NewTSMDocument (sizeof (types) / sizeof (types[0]), types,
11366 &tsm_document_id, 0);
11368 #endif
11370 /* Set up use of X before we make the first connection. */
11372 extern frame_parm_handler mac_frame_parm_handlers[];
11374 static struct redisplay_interface x_redisplay_interface =
11376 mac_frame_parm_handlers,
11377 x_produce_glyphs,
11378 x_write_glyphs,
11379 x_insert_glyphs,
11380 x_clear_end_of_line,
11381 x_scroll_run,
11382 x_after_update_window_line,
11383 x_update_window_begin,
11384 x_update_window_end,
11385 x_cursor_to,
11386 x_flush,
11387 0, /* flush_display_optional */
11388 x_clear_window_mouse_face,
11389 x_get_glyph_overhangs,
11390 x_fix_overlapping_area,
11391 x_draw_fringe_bitmap,
11392 #if USE_CG_DRAWING
11393 mac_define_fringe_bitmap,
11394 mac_destroy_fringe_bitmap,
11395 #else
11396 0, /* define_fringe_bitmap */
11397 0, /* destroy_fringe_bitmap */
11398 #endif
11399 mac_per_char_metric,
11400 mac_encode_char,
11401 mac_compute_glyph_string_overhangs,
11402 x_draw_glyph_string,
11403 mac_define_frame_cursor,
11404 mac_clear_frame_area,
11405 mac_draw_window_cursor,
11406 mac_draw_vertical_window_border,
11407 mac_shift_glyphs_for_insert
11410 void
11411 mac_initialize ()
11413 rif = &x_redisplay_interface;
11415 clear_frame_hook = x_clear_frame;
11416 ins_del_lines_hook = x_ins_del_lines;
11417 delete_glyphs_hook = x_delete_glyphs;
11418 ring_bell_hook = XTring_bell;
11419 reset_terminal_modes_hook = XTreset_terminal_modes;
11420 set_terminal_modes_hook = XTset_terminal_modes;
11421 update_begin_hook = x_update_begin;
11422 update_end_hook = x_update_end;
11423 set_terminal_window_hook = XTset_terminal_window;
11424 read_socket_hook = XTread_socket;
11425 frame_up_to_date_hook = XTframe_up_to_date;
11426 mouse_position_hook = XTmouse_position;
11427 frame_rehighlight_hook = XTframe_rehighlight;
11428 frame_raise_lower_hook = XTframe_raise_lower;
11430 set_vertical_scroll_bar_hook = XTset_vertical_scroll_bar;
11431 condemn_scroll_bars_hook = XTcondemn_scroll_bars;
11432 redeem_scroll_bar_hook = XTredeem_scroll_bar;
11433 judge_scroll_bars_hook = XTjudge_scroll_bars;
11435 scroll_region_ok = 1; /* we'll scroll partial frames */
11436 char_ins_del_ok = 1;
11437 line_ins_del_ok = 1; /* we'll just blt 'em */
11438 fast_clear_end_of_line = 1; /* X does this well */
11439 memory_below_frame = 0; /* we don't remember what scrolls
11440 off the bottom */
11441 baud_rate = 19200;
11443 last_tool_bar_item = -1;
11444 any_help_event_p = 0;
11446 /* Try to use interrupt input; if we can't, then start polling. */
11447 Fset_input_mode (Qt, Qnil, Qt, Qnil);
11449 BLOCK_INPUT;
11451 #if TARGET_API_MAC_CARBON
11453 #if USE_CARBON_EVENTS
11454 #ifdef MAC_OSX
11455 init_service_handler ();
11457 init_quit_char_handler ();
11458 #endif /* MAC_OSX */
11460 init_command_handler ();
11462 init_menu_bar ();
11464 #if USE_MAC_TSM
11465 init_tsm ();
11466 #endif
11467 #endif /* USE_CARBON_EVENTS */
11469 #ifdef MAC_OSX
11470 init_coercion_handler ();
11472 init_apple_event_handler ();
11474 if (!inhibit_window_system)
11475 MakeMeTheFrontProcess ();
11476 #endif
11477 #endif
11479 #if USE_CG_DRAWING
11480 mac_init_fringe ();
11481 #endif
11483 UNBLOCK_INPUT;
11487 void
11488 syms_of_macterm ()
11490 #if 0
11491 staticpro (&x_error_message_string);
11492 x_error_message_string = Qnil;
11493 #endif
11495 Qcontrol = intern ("control"); staticpro (&Qcontrol);
11496 Qmeta = intern ("meta"); staticpro (&Qmeta);
11497 Qalt = intern ("alt"); staticpro (&Qalt);
11498 Qhyper = intern ("hyper"); staticpro (&Qhyper);
11499 Qsuper = intern ("super"); staticpro (&Qsuper);
11500 Qmodifier_value = intern ("modifier-value");
11501 staticpro (&Qmodifier_value);
11503 Fput (Qcontrol, Qmodifier_value, make_number (ctrl_modifier));
11504 Fput (Qmeta, Qmodifier_value, make_number (meta_modifier));
11505 Fput (Qalt, Qmodifier_value, make_number (alt_modifier));
11506 Fput (Qhyper, Qmodifier_value, make_number (hyper_modifier));
11507 Fput (Qsuper, Qmodifier_value, make_number (super_modifier));
11509 #if USE_CARBON_EVENTS
11510 Qhi_command = intern ("hi-command"); staticpro (&Qhi_command);
11511 #ifdef MAC_OSX
11512 Qtoolbar_switch_mode = intern ("toolbar-switch-mode");
11513 staticpro (&Qtoolbar_switch_mode);
11514 #if USE_MAC_FONT_PANEL
11515 Qpanel_closed = intern ("panel-closed"); staticpro (&Qpanel_closed);
11516 Qselection = intern ("selection"); staticpro (&Qselection);
11517 #endif
11519 Qservice = intern ("service"); staticpro (&Qservice);
11520 Qpaste = intern ("paste"); staticpro (&Qpaste);
11521 Qperform = intern ("perform"); staticpro (&Qperform);
11522 #endif
11523 #if USE_MAC_TSM
11524 Qtext_input = intern ("text-input"); staticpro (&Qtext_input);
11525 Qupdate_active_input_area = intern ("update-active-input-area");
11526 staticpro (&Qupdate_active_input_area);
11527 Qunicode_for_key_event = intern ("unicode-for-key-event");
11528 staticpro (&Qunicode_for_key_event);
11529 #endif
11530 #endif
11532 #ifdef MAC_OSX
11533 Fprovide (intern ("mac-carbon"), Qnil);
11534 #endif
11536 staticpro (&Qreverse);
11537 Qreverse = intern ("reverse");
11539 staticpro (&x_display_name_list);
11540 x_display_name_list = Qnil;
11542 staticpro (&last_mouse_scroll_bar);
11543 last_mouse_scroll_bar = Qnil;
11545 staticpro (&fm_font_family_alist);
11546 fm_font_family_alist = Qnil;
11548 #if USE_ATSUI
11549 staticpro (&atsu_font_id_hash);
11550 atsu_font_id_hash = Qnil;
11552 staticpro (&fm_style_face_attributes_alist);
11553 fm_style_face_attributes_alist = Qnil;
11554 #endif
11556 #if USE_MAC_TSM
11557 staticpro (&saved_ts_script_language_on_focus);
11558 saved_ts_script_language_on_focus = Qnil;
11559 #endif
11561 /* We don't yet support this, but defining this here avoids whining
11562 from cus-start.el and other places, like "M-x set-variable". */
11563 DEFVAR_BOOL ("x-use-underline-position-properties",
11564 &x_use_underline_position_properties,
11565 doc: /* *Non-nil means make use of UNDERLINE_POSITION font properties.
11566 nil means ignore them. If you encounter fonts with bogus
11567 UNDERLINE_POSITION font properties, for example 7x13 on XFree prior
11568 to 4.1, set this to nil.
11570 NOTE: Not supported on Mac yet. */);
11571 x_use_underline_position_properties = 0;
11573 DEFVAR_LISP ("x-toolkit-scroll-bars", &Vx_toolkit_scroll_bars,
11574 doc: /* If not nil, Emacs uses toolkit scroll bars. */);
11575 #ifdef USE_TOOLKIT_SCROLL_BARS
11576 Vx_toolkit_scroll_bars = Qt;
11577 #else
11578 Vx_toolkit_scroll_bars = Qnil;
11579 #endif
11581 staticpro (&last_mouse_motion_frame);
11582 last_mouse_motion_frame = Qnil;
11584 /* Variables to configure modifier key assignment. */
11586 DEFVAR_LISP ("mac-control-modifier", &Vmac_control_modifier,
11587 doc: /* *Modifier key assumed when the Mac control key is pressed.
11588 The value can be `control', `meta', `alt', `hyper', or `super' for the
11589 respective modifier. The default is `control'. */);
11590 Vmac_control_modifier = Qcontrol;
11592 DEFVAR_LISP ("mac-option-modifier", &Vmac_option_modifier,
11593 doc: /* *Modifier key assumed when the Mac alt/option key is pressed.
11594 The value can be `control', `meta', `alt', `hyper', or `super' for the
11595 respective modifier. If the value is nil then the key will act as the
11596 normal Mac control modifier, and the option key can be used to compose
11597 characters depending on the chosen Mac keyboard setting. */);
11598 Vmac_option_modifier = Qnil;
11600 DEFVAR_LISP ("mac-command-modifier", &Vmac_command_modifier,
11601 doc: /* *Modifier key assumed when the Mac command key is pressed.
11602 The value can be `control', `meta', `alt', `hyper', or `super' for the
11603 respective modifier. The default is `meta'. */);
11604 Vmac_command_modifier = Qmeta;
11606 DEFVAR_LISP ("mac-function-modifier", &Vmac_function_modifier,
11607 doc: /* *Modifier key assumed when the Mac function key is pressed.
11608 The value can be `control', `meta', `alt', `hyper', or `super' for the
11609 respective modifier. Note that remapping the function key may lead to
11610 unexpected results for some keys on non-US/GB keyboards. */);
11611 Vmac_function_modifier = Qnil;
11613 DEFVAR_LISP ("mac-emulate-three-button-mouse",
11614 &Vmac_emulate_three_button_mouse,
11615 doc: /* *Specify a way of three button mouse emulation.
11616 The value can be nil, t, or the symbol `reverse'.
11617 nil means that no emulation should be done and the modifiers should be
11618 placed on the mouse-1 event.
11619 t means that when the option-key is held down while pressing the mouse
11620 button, the click will register as mouse-2 and while the command-key
11621 is held down, the click will register as mouse-3.
11622 The symbol `reverse' means that the option-key will register for
11623 mouse-3 and the command-key will register for mouse-2. */);
11624 Vmac_emulate_three_button_mouse = Qnil;
11626 #if USE_CARBON_EVENTS
11627 DEFVAR_BOOL ("mac-wheel-button-is-mouse-2", &mac_wheel_button_is_mouse_2,
11628 doc: /* *Non-nil if the wheel button is mouse-2 and the right click mouse-3.
11629 Otherwise, the right click will be treated as mouse-2 and the wheel
11630 button will be mouse-3. */);
11631 mac_wheel_button_is_mouse_2 = 1;
11633 DEFVAR_BOOL ("mac-pass-command-to-system", &mac_pass_command_to_system,
11634 doc: /* *Non-nil if command key presses are passed on to the Mac Toolbox. */);
11635 mac_pass_command_to_system = 1;
11637 DEFVAR_BOOL ("mac-pass-control-to-system", &mac_pass_control_to_system,
11638 doc: /* *Non-nil if control key presses are passed on to the Mac Toolbox. */);
11639 mac_pass_control_to_system = 1;
11641 #endif
11643 DEFVAR_BOOL ("mac-allow-anti-aliasing", &mac_use_core_graphics,
11644 doc: /* *If non-nil, allow anti-aliasing.
11645 The text will be rendered using Core Graphics text rendering which
11646 may anti-alias the text. */);
11647 #if USE_CG_DRAWING
11648 mac_use_core_graphics = 1;
11649 #else
11650 mac_use_core_graphics = 0;
11651 #endif
11653 /* Register an entry for `mac-roman' so that it can be used when
11654 creating the terminal frame on Mac OS 9 before loading
11655 term/mac-win.elc. */
11656 DEFVAR_LISP ("mac-charset-info-alist", &Vmac_charset_info_alist,
11657 doc: /* Alist of Emacs character sets vs text encodings and coding systems.
11658 Each entry should be of the form:
11660 (CHARSET-NAME TEXT-ENCODING CODING-SYSTEM)
11662 where CHARSET-NAME is a string used in font names to identify the
11663 charset, TEXT-ENCODING is a TextEncodingBase value in Mac, and
11664 CODING_SYSTEM is a coding system corresponding to TEXT-ENCODING. */);
11665 Vmac_charset_info_alist =
11666 Fcons (list3 (build_string ("mac-roman"),
11667 make_number (smRoman), Qnil), Qnil);
11669 #if USE_ATSUI
11670 DEFVAR_LISP ("mac-atsu-font-table", &Vmac_atsu_font_table,
11671 doc: /* Hash table of ATSU font IDs vs plist of attributes and values. */);
11672 Vmac_atsu_font_table =
11673 make_hash_table (Qeql, make_number (DEFAULT_HASH_SIZE),
11674 make_float (DEFAULT_REHASH_SIZE),
11675 make_float (DEFAULT_REHASH_THRESHOLD),
11676 Qnil, Qnil, Qnil);
11677 #endif
11678 #if USE_MAC_TSM
11679 DEFVAR_LISP ("mac-ts-active-input-overlay", &Vmac_ts_active_input_overlay,
11680 doc: /* Overlay used to display Mac TSM active input area. */);
11681 Vmac_ts_active_input_overlay = Qnil;
11683 DEFVAR_LISP ("mac-ts-script-language-on-focus", &Vmac_ts_script_language_on_focus,
11684 doc: /* *How to change Mac TSM script/language when a frame gets focus.
11685 If the value is t, the input script and language are restored to those
11686 used in the last focus frame. If the value is a pair of integers, the
11687 input script and language codes, which are defined in the Script
11688 Manager, are set to its car and cdr parts, respectively. Otherwise,
11689 Emacs doesn't set them and thus follows the system default behavior. */);
11690 Vmac_ts_script_language_on_focus = Qnil;
11691 #endif
11694 /* arch-tag: f2259165-4454-4c04-a029-a133c8af7b5b
11695 (do not change this comment) */