(ns_display_info): Remove `height' and `width' members.
[bpt/emacs.git] / src / nsterm.m
CommitLineData
edfda783 1/* NeXT/Open/GNUstep / MacOSX communication module.
32d235f8
GM
2 Copyright (C) 1989, 1993, 1994, 2005, 2006, 2008
3 Free Software Foundation, Inc.
edfda783
AR
4
5This file is part of GNU Emacs.
6
32d235f8 7GNU Emacs is free software: you can redistribute it and/or modify
edfda783 8it under the terms of the GNU General Public License as published by
32d235f8
GM
9the Free Software Foundation, either version 3 of the License, or
10(at your option) any later version.
edfda783
AR
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
32d235f8 18along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
edfda783 19
32d235f8 20/*
edfda783
AR
21Originally by Carl Edman
22Updated by Christian Limpach (chris@nice.ch)
23OpenStep/Rhapsody port by Scott Bender (sbender@harmony-ds.com)
24MacOSX/Aqua port by Christophe de Dinechin (descubes@earthlink.net)
25GNUstep port and post-20 update by Adrian Robert (arobert@cogsci.ucsd.edu)
26*/
27
28#include <math.h>
29#include <sys/types.h>
30#include <time.h>
31#include <unistd.h>
32
33#include "config.h"
34#include "lisp.h"
35#include "blockinput.h"
36#include "sysselect.h"
37#include "nsterm.h"
38#include "systime.h"
39#include "character.h"
40#include "fontset.h"
41#include "composite.h"
42#include "ccl.h"
43
44#include "termhooks.h"
45#include "termopts.h"
46#include "termchar.h"
47
48#include "window.h"
49#include "keyboard.h"
50
51#include "font.h"
52
53/* call tracing */
54#if 0
55int term_trace_num = 0;
56#define NSTRACE(x) fprintf (stderr, "%s:%d: [%d] " #x "\n", \
57 __FILE__, __LINE__, ++term_trace_num)
58#else
59#define NSTRACE(x)
60#endif
61
62
63/* ==========================================================================
64
65 Local declarations
66
67 ========================================================================== */
68
69/* Special keycodes that we pass down the event chain */
70#define KEY_NS_POWER_OFF ((1<<28)|(0<<16)|1)
71#define KEY_NS_OPEN_FILE ((1<<28)|(0<<16)|2)
72#define KEY_NS_OPEN_TEMP_FILE ((1<<28)|(0<<16)|3)
73#define KEY_NS_DRAG_FILE ((1<<28)|(0<<16)|4)
74#define KEY_NS_DRAG_COLOR ((1<<28)|(0<<16)|5)
75#define KEY_NS_DRAG_TEXT ((1<<28)|(0<<16)|6)
76#define KEY_NS_CHANGE_FONT ((1<<28)|(0<<16)|7)
77#define KEY_NS_OPEN_FILE_LINE ((1<<28)|(0<<16)|8)
78#define KEY_NS_INSERT_WORKING_TEXT ((1<<28)|(0<<16)|9)
79#define KEY_NS_DELETE_WORKING_TEXT ((1<<28)|(0<<16)|10)
80#define KEY_NS_SPI_SERVICE_CALL ((1<<28)|(0<<16)|11)
4e622592 81#define KEY_NS_NEW_FRAME ((1<<28)|(0<<16)|12)
edfda783
AR
82
83/* Convert a symbol indexed with an NSxxx value to a value as defined
84 in keyboard.c (lispy_function_key). I hope this is a correct way
85 of doing things... */
86static unsigned convert_ns_to_X_keysym[] =
87{
88 NSHomeFunctionKey, 0x50,
89 NSLeftArrowFunctionKey, 0x51,
90 NSUpArrowFunctionKey, 0x52,
91 NSRightArrowFunctionKey, 0x53,
92 NSDownArrowFunctionKey, 0x54,
93 NSPageUpFunctionKey, 0x55,
94 NSPageDownFunctionKey, 0x56,
95 NSEndFunctionKey, 0x57,
96 NSBeginFunctionKey, 0x58,
97 NSSelectFunctionKey, 0x60,
98 NSPrintFunctionKey, 0x61,
99 NSExecuteFunctionKey, 0x62,
100 NSInsertFunctionKey, 0x63,
101 NSUndoFunctionKey, 0x65,
102 NSRedoFunctionKey, 0x66,
103 NSMenuFunctionKey, 0x67,
104 NSFindFunctionKey, 0x68,
105 NSHelpFunctionKey, 0x6A,
106 NSBreakFunctionKey, 0x6B,
107
108 NSF1FunctionKey, 0xBE,
109 NSF2FunctionKey, 0xBF,
110 NSF3FunctionKey, 0xC0,
111 NSF4FunctionKey, 0xC1,
112 NSF5FunctionKey, 0xC2,
113 NSF6FunctionKey, 0xC3,
114 NSF7FunctionKey, 0xC4,
115 NSF8FunctionKey, 0xC5,
116 NSF9FunctionKey, 0xC6,
117 NSF10FunctionKey, 0xC7,
118 NSF11FunctionKey, 0xC8,
119 NSF12FunctionKey, 0xC9,
120 NSF13FunctionKey, 0xCA,
121 NSF14FunctionKey, 0xCB,
122 NSF15FunctionKey, 0xCC,
123
124 NSBackspaceCharacter, 0x08, /* 8: Not on some KBs. */
125 NSDeleteCharacter, 0xFF, /* 127: Big 'delete' key upper right. */
126 NSDeleteFunctionKey, 0x9F, /* 63272: Del forw key off main array. */
127
128 NSTabCharacter, 0x09,
129 0x19, 0x09, /* left tab->regular since pass shift */
130 NSCarriageReturnCharacter, 0x0D,
131 NSNewlineCharacter, 0x0D,
132 NSEnterCharacter, 0x8D,
133
134 0x1B, 0x1B /* escape */
135};
136
137
138/* Lisp communications */
139Lisp_Object ns_input_file, ns_input_font, ns_input_fontsize, ns_input_line;
140Lisp_Object ns_input_color, ns_input_text, ns_working_text;
141Lisp_Object ns_input_spi_name, ns_input_spi_arg;
142Lisp_Object Vx_toolkit_scroll_bars;
143static Lisp_Object Qmodifier_value;
df2142db 144/* TODO: unsure why these defined in term files, anyway we need in keymap.c */
edfda783
AR
145Lisp_Object Qalt, Qcontrol, Qhyper, Qmeta, Qsuper;
146extern Lisp_Object Qcursor_color, Qcursor_type, Qns;
edfda783
AR
147
148
149EmacsPrefsController *prefsController;
150
151/* Defaults managed through the OpenStep defaults system. These pertain to
152 the NS interface specifically. Although a customization group could be
153 created, it's more natural to manage them via defaults. */
154
155/* Specifies which emacs modifier should be generated when NS receives
156 the Alternate modifer. May be Qnone or any of the modifier lisp symbols. */
157Lisp_Object ns_alternate_modifier;
158
159/* Specifies which emacs modifier should be generated when NS receives
160 the Command modifer. May be any of the modifier lisp symbols. */
161Lisp_Object ns_command_modifier;
162
163/* Specifies which emacs modifier should be generated when NS receives
164 the Control modifer. May be any of the modifier lisp symbols. */
165Lisp_Object ns_control_modifier;
166
167/* Specifies which emacs modifier should be generated when NS receives
168 the Function modifer (laptops). May be any of the modifier lisp symbols. */
169Lisp_Object ns_function_modifier;
170
edfda783
AR
171/* A floating point value specifying vertical stretch (positive) or shrink
172 (negative) of text line spacing. Zero means default spacing.
173 YES indicates 0.5, NO indicates 0.0. */
174Lisp_Object ns_expand_space;
175
176/* Control via default 'GSFontAntiAlias' on OS X and GNUstep. */
5c976973 177Lisp_Object ns_antialias_text;
edfda783
AR
178
179/* On OS X picks up the default NSGlobalDomain AppleAntiAliasingThreshold,
180 the maximum font size to NOT antialias. On GNUstep there is currently
181 no way to control this behavior. */
182float ns_antialias_threshold;
183
184/* Controls use of an undocumented CG function to do Quickdraw-style font
185 smoothing (less heavy) instead of regular Quartz smoothing. */
5c976973 186Lisp_Object ns_use_qd_smoothing;
edfda783
AR
187
188/* Used to pick up AppleHighlightColor on OS X */
5c976973 189Lisp_Object ns_use_system_highlight_color;
edfda783
AR
190NSString *ns_selection_color;
191
192
193NSArray *ns_send_types =0, *ns_return_types =0, *ns_drag_types =0;
194
195/* Display variables */
9e50ff0c 196struct ns_display_info *x_display_list; /* Chain of existing displays */
edfda783
AR
197Lisp_Object ns_display_name_list;
198long context_menu_value = 0;
199
200/* display update */
201NSPoint last_mouse_motion_position;
202static NSRect last_mouse_glyph;
203static unsigned long last_mouse_movement_time = 0;
204static Lisp_Object last_mouse_motion_frame;
205static EmacsScroller *last_mouse_scroll_bar = nil;
206static struct frame *ns_updating_frame;
207static NSView *focus_view = NULL;
208static int ns_window_num =0;
209static NSRect uRect;
210static BOOL gsaved = NO;
211BOOL ns_in_resize = NO;
df2142db
AR
212int ns_tmp_flags; /* FIXME */
213struct nsfont_info *ns_tmp_font; /* FIXME */
edfda783
AR
214/*static int debug_lock = 0; */
215
216#ifdef NS_IMPL_COCOA
217/* This undocumented Quartz function controls how fonts are anti-aliased.
218 (Found from code in Mac wxWindows impl, discovered by running `nm' on
219 the "QD" framework.)
220 Mode 0 is normal anti-aliasing, mode 1 is no anti-aliasing, and mode 2 is
221 4-bit pixel-aligned anti-aliasing (the old QuickDraw standard). */
222extern void CGContextSetFontRenderingMode (CGContextRef cg, int v);
223#endif
224
225
226/* event loop */
227static BOOL send_appdefined = YES;
228static NSEvent *last_appdefined_event = 0;
229static NSTimer *timed_entry = 0;
230static NSTimer *fd_entry = nil;
edfda783
AR
231static NSTimer *scroll_repeat_entry = nil;
232static fd_set select_readfds, t_readfds;
233static struct timeval select_timeout;
234static int select_nfds;
235static NSAutoreleasePool *outerpool;
236static BOOL ns_shutdown_properly = NO;
237static struct input_event *emacs_event = NULL;
238static struct input_event *q_event_ptr = NULL;
239static int n_emacs_events_pending = 0;
240static NSMutableArray *ns_pending_files, *ns_pending_service_names,
241 *ns_pending_service_args;
242static BOOL inNsSelect = 0;
243
244/* Convert modifiers in a NeXTSTEP event to emacs style modifiers. */
245#define NS_FUNCTION_KEY_MASK 0x800000
246#define EV_MODIFIERS(e) \
247 ((([e modifierFlags] & NSHelpKeyMask) ? \
248 hyper_modifier : 0) \
249 | (([e modifierFlags] & NSAlternateKeyMask) ? \
6882361b 250 parse_solitary_modifier (ns_alternate_modifier) : 0) \
edfda783
AR
251 | (([e modifierFlags] & NSShiftKeyMask) ? \
252 shift_modifier : 0) \
253 | (([e modifierFlags] & NSControlKeyMask) ? \
6882361b 254 parse_solitary_modifier (ns_control_modifier) : 0) \
edfda783 255 | (([e modifierFlags] & NS_FUNCTION_KEY_MASK) ? \
6882361b 256 parse_solitary_modifier (ns_function_modifier) : 0) \
edfda783 257 | (([e modifierFlags] & NSCommandKeyMask) ? \
6882361b 258 parse_solitary_modifier (ns_command_modifier):0))
edfda783
AR
259
260#define EV_UDMODIFIERS(e) \
261 ((([e type] == NSLeftMouseDown) ? down_modifier : 0) \
262 | (([e type] == NSRightMouseDown) ? down_modifier : 0) \
263 | (([e type] == NSLeftMouseDragged) ? down_modifier : 0) \
264 | (([e type] == NSRightMouseDragged) ? down_modifier : 0) \
265 | (([e type] == NSLeftMouseUp) ? up_modifier : 0) \
266 | (([e type] == NSRightMouseUp) ? up_modifier : 0))
267
268#define EV_BUTTON(e) \
269 ((([e type] == NSLeftMouseDown) || ([e type] == NSLeftMouseUp)) ? 0 : \
270 (([e type] == NSRightMouseDown) || ([e type] == NSRightMouseUp)) ? 2 : 1)
271
272/* Convert the time field to a timestamp in milliseconds. */
273#ifdef NS_IMPL_GNUSTEP
274/* Apple says timestamp is in seconds, but GNUstep seems to be returning msec */
275#define EV_TIMESTAMP(e) ([e timestamp])
276#else
277#define EV_TIMESTAMP(e) ([e timestamp] * 1000)
278#endif /* not gnustep */
279
280/* This is a piece of code which is common to all the event handling
281 methods. Maybe it should even be a function. */
282#define EV_TRAILER(e) \
283 { \
284 XSETFRAME (emacs_event->frame_or_window, [NSApp isActive] ? \
285 emacsframe : SELECTED_FRAME ()); \
286 if (e) emacs_event->timestamp = EV_TIMESTAMP (e); \
287 n_emacs_events_pending++; \
288 kbd_buffer_store_event_hold (emacs_event, q_event_ptr); \
289 EVENT_INIT (*emacs_event); \
290 ns_send_appdefined (-1); \
291 }
292
df2142db 293/* TODO: get rid of need for these forward declarations */
edfda783
AR
294static void ns_condemn_scroll_bars (struct frame *f),
295 ns_judge_scroll_bars (struct frame *f);
296
297/* unused variables needed for compatibility reasons */
298int x_use_underline_position_properties, x_underline_at_descent_line;
df2142db 299/* FIXME: figure out what to do with underline_minimum_offset. */
edfda783
AR
300
301
302/* ==========================================================================
303
304 Utilities
305
306 ========================================================================== */
307
308
309static Lisp_Object
310append2 (Lisp_Object list, Lisp_Object item)
311/* --------------------------------------------------------------------------
312 Utility to append to a list
313 -------------------------------------------------------------------------- */
314{
315 Lisp_Object array[2];
316 array[0] = list;
317 array[1] = Fcons (item, Qnil);
318 return Fnconc (2, &array[0]);
319}
320
321
322void
323ns_init_paths ()
324/* --------------------------------------------------------------------------
325 Used to allow emacs to find its resources under Emacs.app
326 Called from emacs.c at startup.
327 -------------------------------------------------------------------------- */
328{
329 NSBundle *bundle = [NSBundle mainBundle];
330 NSString *binDir = [bundle bundlePath], *resourceDir = [bundle resourcePath];
331 NSString *resourcePath, *resourcePaths;
332 NSRange range;
333 BOOL onWindows = NO; /* how do I determine this? */
334 NSString *pathSeparator = onWindows ? @";" : @":";
335 NSFileManager *fileManager = [NSFileManager defaultManager];
336 BOOL isDir;
337/*NSLog (@"ns_init_paths: '%@'\n%@\n", [[NSBundle mainBundle] bundlePath], [[NSBundle mainBundle] resourcePath]); */
338
339 /* get bindir from base */
340 range = [resourceDir rangeOfString: @"Contents"];
341 if (range.location != NSNotFound)
342 {
343 binDir = [binDir stringByAppendingPathComponent: @"Contents"];
344#ifdef NS_IMPL_COCOA
345 binDir = [binDir stringByAppendingPathComponent: @"MacOS"];
346#endif
347 }
348
349 /* the following based on Andrew Choi's init_mac_osx_environment () */
350 if (!getenv ("EMACSLOADPATH"))
351 {
352 NSArray *paths = [resourceDir stringsByAppendingPaths:
353 [NSArray arrayWithObjects:
354 @"site-lisp", @"lisp", @"leim", nil]];
355 NSEnumerator *pathEnum = [paths objectEnumerator];
356 resourcePaths = @"";
357 while (resourcePath = [pathEnum nextObject])
358 {
359 if ([fileManager fileExistsAtPath: resourcePath isDirectory: &isDir])
360 if (isDir)
361 {
362 if ([resourcePaths length] > 0)
facfbbbd
SM
363 resourcePaths
364 = [resourcePaths stringByAppendingString: pathSeparator];
365 resourcePaths
366 = [resourcePaths stringByAppendingString: resourcePath];
edfda783
AR
367 }
368 }
369 if ([resourcePaths length] > 0)
370 setenv ("EMACSLOADPATH", [resourcePaths UTF8String], 1);
371/*NSLog (@"loadPath: '%s'\n", resourcePaths); */
372 }
373
374 if (!getenv ("EMACSPATH"))
375 {
376 NSArray *paths = [binDir stringsByAppendingPaths:
377 [NSArray arrayWithObjects: @"bin",
378 @"lib-exec", nil]];
379 NSEnumerator *pathEnum = [paths objectEnumerator];
380 resourcePaths = @"";
381 while (resourcePath = [pathEnum nextObject])
382 {
383 if ([fileManager fileExistsAtPath: resourcePath isDirectory: &isDir])
384 if (isDir)
385 {
386 if ([resourcePaths length] > 0)
facfbbbd
SM
387 resourcePaths
388 = [resourcePaths stringByAppendingString: pathSeparator];
389 resourcePaths
390 = [resourcePaths stringByAppendingString: resourcePath];
edfda783
AR
391 }
392 }
393 if ([resourcePaths length] > 0)
394 setenv ("EMACSPATH", [resourcePaths UTF8String], 1);
395 }
396
397 resourcePath = [resourceDir stringByAppendingPathComponent: @"etc"];
398 if ([fileManager fileExistsAtPath: resourcePath isDirectory: &isDir])
399 {
400 if (isDir)
401 {
402 if (!getenv ("EMACSDATA"))
403 setenv ("EMACSDATA", [resourcePath UTF8String], 1);
404 if (!getenv ("EMACSDOC"))
405 setenv ("EMACSDOC", [resourcePath UTF8String], 1);
406 }
407 }
408
edfda783
AR
409 if (!getenv ("INFOPATH"))
410 {
411 resourcePath = [resourceDir stringByAppendingPathComponent: @"info"];
412 if ([fileManager fileExistsAtPath: resourcePath isDirectory: &isDir])
413 if (isDir)
414 setenv ("INFOPATH", [resourcePath UTF8String], 1);
415 }
416}
417
418
419static int
420timeval_subtract (struct timeval *result, struct timeval x, struct timeval y)
421/* --------------------------------------------------------------------------
422 Subtract the `struct timeval' values X and Y, storing the result in RESULT.
423 Return 1 if the difference is negative, otherwise 0.
424 -------------------------------------------------------------------------- */
425{
426 /* Perform the carry for the later subtraction by updating y.
427 This is safer because on some systems
428 the tv_sec member is unsigned. */
429 if (x.tv_usec < y.tv_usec)
430 {
431 int nsec = (y.tv_usec - x.tv_usec) / 1000000 + 1;
432 y.tv_usec -= 1000000 * nsec;
433 y.tv_sec += nsec;
434 }
435 if (x.tv_usec - y.tv_usec > 1000000)
436 {
437 int nsec = (y.tv_usec - x.tv_usec) / 1000000;
438 y.tv_usec += 1000000 * nsec;
439 y.tv_sec -= nsec;
440 }
441
442 /* Compute the time remaining to wait. tv_usec is certainly positive. */
443 result->tv_sec = x.tv_sec - y.tv_sec;
444 result->tv_usec = x.tv_usec - y.tv_usec;
445
446 /* Return indication of whether the result should be considered negative. */
447 return x.tv_sec < y.tv_sec;
448}
449
450static void
451ns_timeout (int usecs)
452/* --------------------------------------------------------------------------
453 Blocking timer utility used by ns_ring_bell
454 -------------------------------------------------------------------------- */
455{
456 struct timeval wakeup;
457
458 EMACS_GET_TIME (wakeup);
459
460 /* Compute time to wait until, propagating carry from usecs. */
461 wakeup.tv_usec += usecs;
462 wakeup.tv_sec += (wakeup.tv_usec / 1000000);
463 wakeup.tv_usec %= 1000000;
464
465 /* Keep waiting until past the time wakeup. */
466 while (1)
467 {
468 struct timeval timeout;
469
470 EMACS_GET_TIME (timeout);
471
472 /* In effect, timeout = wakeup - timeout.
473 Break if result would be negative. */
474 if (timeval_subtract (&timeout, wakeup, timeout))
475 break;
476
477 /* Try to wait that long--but we might wake up sooner. */
478 select (0, NULL, NULL, NULL, &timeout);
479 }
480}
481
482
483void
484ns_release_object (void *obj)
485/* --------------------------------------------------------------------------
486 Release an object (callable from C)
487 -------------------------------------------------------------------------- */
488{
489 [(id)obj release];
490}
491
492
493void
494ns_retain_object (void *obj)
495/* --------------------------------------------------------------------------
496 Retain an object (callable from C)
497 -------------------------------------------------------------------------- */
498{
499 [(id)obj retain];
500}
501
502
503void *
504ns_alloc_autorelease_pool ()
505/* --------------------------------------------------------------------------
506 Allocate a pool for temporary objects (callable from C)
507 -------------------------------------------------------------------------- */
508{
509 return [[NSAutoreleasePool alloc] init];
510}
511
512
513void
514ns_release_autorelease_pool (void *pool)
515/* --------------------------------------------------------------------------
516 Free a pool and temporary objects it refers to (callable from C)
517 -------------------------------------------------------------------------- */
518{
519 ns_release_object (pool);
520}
521
522
523
524/* ==========================================================================
525
526 Focus (clipping) and screen update
527
528 ========================================================================== */
529
530static NSRect
531ns_resize_handle_rect (NSWindow *window)
532{
533 NSRect r = [window frame];
534 r.origin.x = r.size.width - RESIZE_HANDLE_SIZE;
535 r.origin.y = 0;
536 r.size.width = r.size.height = RESIZE_HANDLE_SIZE;
537 return r;
538}
539
540
541static void
542ns_update_begin (struct frame *f)
543/* --------------------------------------------------------------------------
544 Prepare for a grouped sequence of drawing calls
545 23: external (RIF) call; now split w/ and called before update_window_begin
546 -------------------------------------------------------------------------- */
547{
548 NSView *view = FRAME_NS_VIEW (f);
549 NSTRACE (ns_update_begin);
550/*fprintf (stderr, "\\%p\n", f); */
551
552 ns_updating_frame = f;
553 [view lockFocus];
554
555#ifdef NS_IMPL_GNUSTEP
556 uRect = NSMakeRect (0, 0, 0, 0);
557#endif
558}
559
560
561static void
562ns_update_window_begin (struct window *w)
563/* --------------------------------------------------------------------------
564 Prepare for a grouped sequence of drawing calls
565 23: external (RIF) call; now split with and called after update_begin
566 -------------------------------------------------------------------------- */
567{
568 struct frame *f = XFRAME (WINDOW_FRAME (w));
569 struct ns_display_info *dpyinfo = FRAME_NS_DISPLAY_INFO (f);
570 NSTRACE (ns_update_window_begin);
571
572 updated_window = w;
573 set_output_cursor (&w->cursor);
574
575 BLOCK_INPUT;
576
577 if (f == dpyinfo->mouse_face_mouse_frame)
578 {
579 /* Don't do highlighting for mouse motion during the update. */
580 dpyinfo->mouse_face_defer = 1;
581
582 /* If the frame needs to be redrawn,
583 simply forget about any prior mouse highlighting. */
584 if (FRAME_GARBAGED_P (f))
585 dpyinfo->mouse_face_window = Qnil;
586
587 /* (further code for mouse faces ifdef'd out in other terms elided) */
588 }
589
590 UNBLOCK_INPUT;
591}
592
593
594static void
595ns_update_window_end (struct window *w, int cursor_on_p,
596 int mouse_face_overwritten_p)
597/* --------------------------------------------------------------------------
598 Finished a grouped sequence of drawing calls
599 23: external (RIF) call; now split with and called before update_window_end
600 -------------------------------------------------------------------------- */
601{
602 struct ns_display_info *dpyinfo = FRAME_NS_DISPLAY_INFO (XFRAME (w->frame));
603
604 /* note: this fn is nearly identical in all terms */
605 if (!w->pseudo_window_p)
606 {
607 BLOCK_INPUT;
608
609 if (cursor_on_p)
610 display_and_set_cursor (w, 1,
611 output_cursor.hpos, output_cursor.vpos,
612 output_cursor.x, output_cursor.y);
613
614 if (draw_window_fringes (w, 1))
615 x_draw_vertical_border (w);
616
617 UNBLOCK_INPUT;
618 }
619
620 /* If a row with mouse-face was overwritten, arrange for
621 frame_up_to_date to redisplay the mouse highlight. */
622 if (mouse_face_overwritten_p)
623 {
624 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
625 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
626 dpyinfo->mouse_face_window = Qnil;
627 }
628
629 updated_window = NULL;
630 NSTRACE (update_window_end);
631}
632
633
634static void
635ns_update_end (struct frame *f)
636/* --------------------------------------------------------------------------
637 Finished a grouped sequence of drawing calls
638 23: external (RIF) call; now split with and called after update_window_end
639 -------------------------------------------------------------------------- */
640{
641 NSView *view = FRAME_NS_VIEW (f);
642
643/* if (f == FRAME_NS_DISPLAY_INFO (f)->mouse_face_mouse_frame) */
644 FRAME_NS_DISPLAY_INFO (f)->mouse_face_defer = 0;
645
646 BLOCK_INPUT;
647
648#ifdef NS_IMPL_GNUSTEP
649 /* trigger flush only in the rectangle we tracked as being drawn */
650 [view unlockFocusNeedsFlush: NO];
651/*fprintf (stderr, " (%.0f, %.0f : %.0f x %.0f)", uRect.origin.x, uRect.origin.y, uRect.size.width, uRect.size.height); */
652 [view lockFocusInRect: uRect];
653#endif
654
655 [view unlockFocus];
656 [[view window] flushWindow];
657
658 UNBLOCK_INPUT;
659 ns_updating_frame = NULL;
660 NSTRACE (ns_update_end);
661}
662
663
664static void
665ns_flush (struct frame *f)
666/* --------------------------------------------------------------------------
667 23: external (RIF) call
668 NS impl is no-op since currently we flush in ns_update_end and elsewhere
669 -------------------------------------------------------------------------- */
670{
671 NSTRACE (ns_flush);
672}
673
674
675static void
676ns_focus (struct frame *f, NSRect *r, int n)
677/* --------------------------------------------------------------------------
678 Internal: Focus on given frame. During small local updates this is used to
679 draw, however during large updates, ns_update_begin and ns_update_end are
680 called to wrap the whole thing, in which case these calls are stubbed out.
681 Except, on GNUstep, we accumulate the rectangle being drawn into, because
682 the back end won't do this automatically, and will just end up flushing
683 the entire window.
684 -------------------------------------------------------------------------- */
685{
686 NSTRACE (ns_focus);
687#ifdef NS_IMPL_GNUSTEP
688 NSRect u;
689 if (n == 2)
690 u = NSUnionRect (r[0], r[1]);
691 else if (r)
692 u = *r;
693#endif
694/* static int c =0;
695 fprintf (stderr, "focus: %d", c++);
696 if (r) fprintf (stderr, " (%.0f, %.0f : %.0f x %.0f)", r->origin.x, r->origin.y, r->size.width, r->size.height);
697 fprintf (stderr, "\n"); */
698
699 if (f != ns_updating_frame)
700 {
701 NSView *view = FRAME_NS_VIEW (f);
702 if (view != focus_view)
703 {
704 if (focus_view != NULL)
705 {
706 [focus_view unlockFocus];
707 [[focus_view window] flushWindow];
708/*debug_lock--; */
709 }
710
711 if (view)
712#ifdef NS_IMPL_GNUSTEP
713 r ? [view lockFocusInRect: u] : [view lockFocus];
714#else
715 [view lockFocus];
716#endif
717 focus_view = view;
718/*if (view) debug_lock++; */
719 }
720#ifdef NS_IMPL_GNUSTEP
721 else
722 {
723 /* more than one rect being drawn into */
724 if (view && r)
725 {
726 [view unlockFocus]; /* add prev rect to redraw list */
727 [view lockFocusInRect: u]; /* focus for draw in new rect */
728 }
729 }
730#endif
731 }
732#ifdef NS_IMPL_GNUSTEP
733 else
734 {
735 /* in batch mode, but in GNUstep must still track rectangles explicitly */
736 uRect = (r ? NSUnionRect (uRect, u) : [FRAME_NS_VIEW (f) visibleRect]);
737 }
738#endif
739
740 /*23: clipping */
741 if (r)
742 {
743 [[NSGraphicsContext currentContext] saveGraphicsState];
744 if (n == 2)
745 NSRectClipList (r, 2);
746 else
747 NSRectClip (*r);
748 gsaved = YES;
749 }
750}
751
752
753static void
754ns_unfocus (struct frame *f)
755/* --------------------------------------------------------------------------
756 Internal: Remove focus on given frame
757 -------------------------------------------------------------------------- */
758{
759 NSTRACE (ns_unfocus);
760
761 if (gsaved)
762 {
763 [[NSGraphicsContext currentContext] restoreGraphicsState];
764 gsaved = NO;
765 }
766
767 if (f != ns_updating_frame)
768 {
769 if (focus_view != NULL)
770 {
771 [focus_view unlockFocus];
772 [[focus_view window] flushWindow];
773 focus_view = NULL;
774/*debug_lock--; */
775 }
776 }
777}
778
779
780static void
15034960 781ns_clip_to_row (struct window *w, struct glyph_row *row, int area, BOOL gc)
edfda783
AR
782/* --------------------------------------------------------------------------
783 23: Internal (but parallels other terms): Focus drawing on given row
784 -------------------------------------------------------------------------- */
785{
786 struct frame *f = XFRAME (WINDOW_FRAME (w));
787 NSRect clip_rect;
788 int window_x, window_y, window_width;
789
790 window_box (w, area, &window_x, &window_y, &window_width, 0);
791
792 clip_rect.origin.x = window_x - FRAME_INTERNAL_BORDER_WIDTH (f);
793 clip_rect.origin.y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, row->y));
794 clip_rect.origin.y = max (clip_rect.origin.y, window_y);
795 clip_rect.size.width = window_width + 2 * FRAME_INTERNAL_BORDER_WIDTH (f);
796 clip_rect.size.height = row->visible_height;
797
798 /* allow a full-height row at the top when requested
799 (used to draw fringe all the way through internal border area) */
800 if (gc && clip_rect.origin.y < 5)
801 {
802 clip_rect.origin.y -= FRAME_INTERNAL_BORDER_WIDTH (f);
803 clip_rect.size.height += FRAME_INTERNAL_BORDER_WIDTH (f);
804 }
805
806 /* likewise at bottom */
807 if (gc &&
808 FRAME_PIXEL_HEIGHT (f) - (clip_rect.origin.y + clip_rect.size.height) < 5)
809 clip_rect.size.height += FRAME_INTERNAL_BORDER_WIDTH (f);
810
811 ns_focus (f, &clip_rect, 1);
812}
813
814
815static void
816ns_ring_bell ()
817/* --------------------------------------------------------------------------
818 "Beep" routine
819 -------------------------------------------------------------------------- */
820{
821 NSTRACE (ns_ring_bell);
822 if (visible_bell)
823 {
824 NSAutoreleasePool *pool;
825 struct frame *frame = SELECTED_FRAME ();
826 NSView *view;
827
828 BLOCK_INPUT;
829 pool = [[NSAutoreleasePool alloc] init];
830
831 view = FRAME_NS_VIEW (frame);
832 if (view != nil)
833 {
834 NSRect r, surr;
835 NSPoint dim = NSMakePoint (128, 128);
836
837 r = [view bounds];
838 r.origin.x += (r.size.width - dim.x) / 2;
839 r.origin.y += (r.size.height - dim.y) / 2;
840 r.size.width = dim.x;
841 r.size.height = dim.y;
df2142db 842 /* XXX: cacheImageInRect under GNUSTEP does not account for
edfda783
AR
843 offset in x_set_window_size, so overestimate (4 fine on Cocoa) */
844 surr = NSInsetRect (r, -10, -10);
845 ns_focus (frame, &surr, 1);
846 [[view window] cacheImageInRect: surr];
847 [ns_lookup_indexed_color (NS_FACE_FOREGROUND
848 (FRAME_DEFAULT_FACE (frame)), frame) set];
849 NSRectFill (r);
850 [[view window] flushWindow];
851 ns_timeout (150000);
852 [[view window] restoreCachedImage];
853 [[view window] flushWindow];
854 ns_unfocus (frame);
855 }
856 [pool release];
857 UNBLOCK_INPUT;
858 }
859 else
860 {
861 NSBeep ();
862 }
863}
864
865
866static void
867ns_reset_terminal_modes (struct terminal *terminal)
868/* Externally called as hook */
869{
870 NSTRACE (ns_reset_terminal_modes);
871}
872
873static void
874ns_set_terminal_modes (struct terminal *terminal)
875/* Externally called as hook */
876{
877 NSTRACE (ns_set_terminal_modes);
878}
879
880
881
882/* ==========================================================================
883
884 Frame / window manager related functions
885
886 ========================================================================== */
887
888
889static void
890ns_raise_frame (struct frame *f)
891/* --------------------------------------------------------------------------
892 Bring window to foreground and make it active
893 -------------------------------------------------------------------------- */
894{
895 NSView *view = FRAME_NS_VIEW (f);
896 check_ns ();
897 BLOCK_INPUT;
898 [[view window] makeKeyAndOrderFront: NSApp];
899 UNBLOCK_INPUT;
900}
901
902
903static void
904ns_lower_frame (struct frame *f)
905/* --------------------------------------------------------------------------
906 Send window to back
907 -------------------------------------------------------------------------- */
908{
909 NSView *view = FRAME_NS_VIEW (f);
910 check_ns ();
911 BLOCK_INPUT;
912 [[view window] orderBack: NSApp];
913 UNBLOCK_INPUT;
914}
915
916
917static void
918ns_frame_raise_lower (struct frame *f, int raise)
919/* --------------------------------------------------------------------------
920 External (hook)
921 -------------------------------------------------------------------------- */
922{
923 NSTRACE (ns_frame_raise_lower);
924
925 if (raise)
926 ns_raise_frame (f);
927 else
928 ns_lower_frame (f);
929}
930
931
932static void
933ns_frame_rehighlight (struct frame *frame)
934/* --------------------------------------------------------------------------
935 External (hook): called on things like window switching within frame
936 -------------------------------------------------------------------------- */
937{
938 struct ns_display_info *dpyinfo = FRAME_NS_DISPLAY_INFO (frame);
9e50ff0c 939 struct frame *old_highlight = dpyinfo->x_highlight_frame;
edfda783
AR
940
941 NSTRACE (ns_frame_rehighlight);
9e50ff0c 942 if (dpyinfo->x_focus_frame)
edfda783 943 {
9e50ff0c
DN
944 dpyinfo->x_highlight_frame
945 = (FRAMEP (FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame))
946 ? XFRAME (FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame))
947 : dpyinfo->x_focus_frame);
948 if (!FRAME_LIVE_P (dpyinfo->x_highlight_frame))
edfda783 949 {
9e50ff0c
DN
950 FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame) = Qnil;
951 dpyinfo->x_highlight_frame = dpyinfo->x_focus_frame;
edfda783
AR
952 }
953 }
954 else
9e50ff0c 955 dpyinfo->x_highlight_frame = 0;
edfda783 956
9e50ff0c
DN
957 if (dpyinfo->x_highlight_frame &&
958 dpyinfo->x_highlight_frame != old_highlight)
edfda783
AR
959 {
960 /* as of 20080602 the lower and raise are superfluous */
961 if (old_highlight)
962 {
963 /*ns_lower_frame (old_highlight); */
964 x_update_cursor (old_highlight, 1);
965 }
9e50ff0c 966 if (dpyinfo->x_highlight_frame)
edfda783 967 {
9e50ff0c
DN
968 /*ns_raise_frame (dpyinfo->x_highlight_frame); */
969 x_update_cursor (dpyinfo->x_highlight_frame, 1);
edfda783
AR
970 }
971 }
972}
973
974
975void
976x_make_frame_visible (struct frame *f)
977/* --------------------------------------------------------------------------
978 External: Show the window (X11 semantics)
979 -------------------------------------------------------------------------- */
980{
981 NSTRACE (x_make_frame_visible);
df2142db 982 /* XXX: at some points in past this was not needed, as the only place that
edfda783
AR
983 called this (frame.c:Fraise_frame ()) also called raise_lower;
984 if this ends up the case again, comment this out again. */
985 if (!FRAME_VISIBLE_P (f))
986 ns_raise_frame (f);
987}
988
989
990void
991x_make_frame_invisible (struct frame *f)
992/* --------------------------------------------------------------------------
993 External: Hide the window (X11 semantics)
994 -------------------------------------------------------------------------- */
995{
996 NSView * view = FRAME_NS_VIEW (f);
997 NSTRACE (x_make_frame_invisible);
998 check_ns ();
999 [[view window] orderOut: NSApp];
1000}
1001
1002
1003void
1004x_iconify_frame (struct frame *f)
1005/* --------------------------------------------------------------------------
1006 External: Iconify window
1007 -------------------------------------------------------------------------- */
1008{
1009 NSView * view = FRAME_NS_VIEW (f);
1010 struct ns_display_info *dpyinfo = FRAME_NS_DISPLAY_INFO (f);
1011 NSTRACE (x_iconify_frame);
1012 check_ns ();
1013
9e50ff0c
DN
1014 if (dpyinfo->x_highlight_frame == f)
1015 dpyinfo->x_highlight_frame = 0;
edfda783
AR
1016
1017 if ([[view window] windowNumber] <= 0)
1018 {
1019 /* the window is still deferred. Make it very small, bring it
1020 on screen and order it out. */
1021 NSRect s = { { 100, 100}, {0, 0} };
1022 NSRect t;
1023 t = [[view window] frame];
1024 [[view window] setFrame: s display: NO];
1025 [[view window] orderBack: NSApp];
1026 [[view window] orderOut: NSApp];
1027 [[view window] setFrame: t display: NO];
1028 }
1029 [[view window] miniaturize: NSApp];
1030}
1031
1032
1033void
1034x_destroy_window (struct frame *f)
1035/* --------------------------------------------------------------------------
1036 External: Delete the window
1037 -------------------------------------------------------------------------- */
1038{
1039 NSView *view = FRAME_NS_VIEW (f);
1040 struct ns_display_info *dpyinfo = FRAME_NS_DISPLAY_INFO (f);
1041 NSTRACE (x_destroy_window);
1042 check_ns ();
1043
1044 [(EmacsView *)view setWindowClosing: YES]; /* may not have been informed */
1045
1046 BLOCK_INPUT;
1047
1048 free_frame_menubar (f);
1049
1050 if (FRAME_FACE_CACHE (f))
1051 free_frame_faces (f);
1052
9e50ff0c
DN
1053 if (f == dpyinfo->x_focus_frame)
1054 dpyinfo->x_focus_frame = 0;
1055 if (f == dpyinfo->x_highlight_frame)
1056 dpyinfo->x_highlight_frame = 0;
edfda783
AR
1057 if (f == dpyinfo->mouse_face_mouse_frame)
1058 {
1059 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
1060 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
1061 dpyinfo->mouse_face_window = Qnil;
1062 dpyinfo->mouse_face_deferred_gc = 0;
1063 dpyinfo->mouse_face_mouse_frame = 0;
1064 }
1065
1066 xfree (f->output_data.ns);
1067
1068 [[view window] close];
1069 [view release];
1070
1071 ns_window_num--;
1072 UNBLOCK_INPUT;
1073}
1074
1075
1076void
1077x_set_offset (struct frame *f, int xoff, int yoff, int change_grav)
1078/* --------------------------------------------------------------------------
1079 External: Position the window
1080 -------------------------------------------------------------------------- */
1081{
1082 NSScreen *screen;
1083 NSView *view = FRAME_NS_VIEW (f);
1084
1085 NSTRACE (x_set_offset);
1086
1087 BLOCK_INPUT;
1088
1089 f->left_pos = xoff;
1090 f->top_pos = yoff;
1091#ifdef NS_IMPL_GNUSTEP
1092 if (xoff < 100)
1093 f->left_pos = 100; /* don't overlap menu */
1094#endif
1095 if (view != nil && (screen = [[view window] screen]))
1096 [[view window] setFrameTopLeftPoint:
1097 NSMakePoint (SCREENMAXBOUND (f->left_pos),
1098 SCREENMAXBOUND ([screen frame].size.height
1099 - NS_TOP_POS (f)))];
1100 UNBLOCK_INPUT;
1101}
1102
1103
1104void
1105x_set_window_size (struct frame *f, int change_grav, int cols, int rows)
1106/* --------------------------------------------------------------------------
1107 Adjust window pixel size based on given character grid size
1108 Impl is a bit more complex than other terms, need to do some
1109 internal clipping and also pay attention to screen constraints.
1110 -------------------------------------------------------------------------- */
1111{
1112 EmacsView *view = FRAME_NS_VIEW (f);
1113 EmacsToolbar *toolbar = [view toolbar];
1114 NSWindow *window = [view window];
1115 NSScreen *screen = [window screen];
1116 NSRect wr = [window frame];
1117 int tb = FRAME_EXTERNAL_TOOL_BAR (f);
1118 int pixelwidth, pixelheight;
1119 static int oldRows, oldCols, oldFontWidth, oldFontHeight;
1120 static int oldTB;
1121 static struct frame *oldF;
1122
1123 NSTRACE (x_set_window_size);
1124
1125 if (view == nil ||
1126 (f == oldF
1127 && rows == oldRows && cols == oldCols
1128 && oldFontWidth == FRAME_COLUMN_WIDTH (f)
1129 && oldFontHeight == FRAME_LINE_HEIGHT (f)
1130 && oldTB == tb))
1131 return;
1132
1133/*fprintf (stderr, "\tsetWindowSize: %d x %d, font size %d x %d\n", cols, rows, FRAME_COLUMN_WIDTH (f), FRAME_LINE_HEIGHT (f)); */
1134
1135 BLOCK_INPUT;
1136
1137 check_frame_size (f, &rows, &cols);
1138 oldF = f;
1139 oldRows = rows;
1140 oldCols = cols;
1141 oldFontWidth = FRAME_COLUMN_WIDTH (f);
1142 oldFontHeight = FRAME_LINE_HEIGHT (f);
1143 oldTB = tb;
1144
1145 f->scroll_bar_actual_width = NS_SCROLL_BAR_WIDTH (f);
1146 compute_fringe_widths (f, 0);
1147
1148 pixelwidth = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, cols);
1149 pixelheight = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, rows);
1150
1151 /* If we have a change in toolbar display, calculate height */
1152 if (tb)
df2142db
AR
1153 /* XXX: GNUstep has not yet implemented the first method below, added
1154 in Panther, however the second is incorrect under Cocoa. */
edfda783 1155#ifdef NS_IMPL_GNUSTEP
facfbbbd
SM
1156 FRAME_NS_TOOLBAR_HEIGHT (f)
1157 = NSHeight ([NSWindow frameRectForContentRect: NSMakeRect (0, 0, 0, 0)
1158 styleMask: [window styleMask]])
1159 - FRAME_NS_TITLEBAR_HEIGHT (f);
edfda783
AR
1160#else
1161 FRAME_NS_TOOLBAR_HEIGHT (f) = 32;
1162 /* actually get wrong result here if toolbar not yet displayed
1163 NSHeight ([window frameRectForContentRect: NSMakeRect (0, 0, 0, 0)])
1164 - FRAME_NS_TITLEBAR_HEIGHT (f); */
1165#endif
1166 else
1167 FRAME_NS_TOOLBAR_HEIGHT (f) = 0;
1168
1169 wr.size.width = pixelwidth + f->border_width;
1170 wr.size.height = pixelheight + FRAME_NS_TITLEBAR_HEIGHT (f)
1171 + FRAME_NS_TOOLBAR_HEIGHT (f);
1172
1173 /* constrain to screen if we can */
1174 if (screen)
1175 {
1176 NSSize sz = [screen visibleFrame].size;
1177 NSSize ez = { wr.size.width - sz.width, wr.size.height - sz.height };
1178 if (ez.width > 0)
1179 {
1180 int cr = ez.width / FRAME_COLUMN_WIDTH (f) + 1;
1181 cols -= cr;
1182 oldCols = cols;
1183 wr.size.width -= cr * FRAME_COLUMN_WIDTH (f);
1184 pixelwidth -= cr * FRAME_COLUMN_WIDTH (f);
1185 }
1186 if (ez.height > 0)
1187 {
1188 int rr = ez.height / FRAME_LINE_HEIGHT (f) + 1;
1189 rows -= rr;
1190 oldRows = rows;
1191 wr.size.height -= rr * FRAME_LINE_HEIGHT (f);
1192 pixelheight -= rr * FRAME_LINE_HEIGHT (f);
1193 }
1194 wr.origin.x = f->left_pos;
1195 wr.origin.y = [screen frame].size.height - NS_TOP_POS (f)
1196 - wr.size.height;
1197 }
1198
1199 [view setRows: rows andColumns: cols];
1200 [window setFrame: wr display: YES];
1201
1202/*fprintf (stderr, "\tx_set_window_size %d, %d\t%d, %d\n", cols, rows, pixelwidth, pixelheight); */
1203
1204 /* This is a trick to compensate for Emacs' managing the scrollbar area
1205 as a fixed number of standard character columns. Instead of leaving
1206 blank space for the extra, we chopped it off above. Now for
1207 left-hand scrollbars, we shift all rendering to the left by the
1208 difference between the real width and Emacs' imagined one. For
1209 right-hand bars, don't worry about it since the extra is never used.
1210 (Obviously doesn't work for vertically split windows tho..) */
1211 NSPoint origin = FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f)
1212 ? NSMakePoint (FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f)
1213 - NS_SCROLL_BAR_WIDTH (f), 0)
1214 : NSMakePoint (0, 0);
1215 [view setFrame: NSMakeRect (0, 0, pixelwidth, pixelheight)];
1216 [view setBoundsOrigin: origin];
1217
1218 change_frame_size (f, rows, cols, 0, 1, 0); /* pretend, delay, safe */
1219 FRAME_PIXEL_WIDTH (f) = pixelwidth;
1220 FRAME_PIXEL_HEIGHT (f) = pixelheight;
1221/* SET_FRAME_GARBAGED (f); // this short-circuits expose call in drawRect */
1222
1223 mark_window_cursors_off (XWINDOW (f->root_window));
1224 cancel_mouse_face (f);
1225
1226 UNBLOCK_INPUT;
1227}
1228
1229
1230/* ==========================================================================
1231
1232 Color management
1233
1234 ========================================================================== */
1235
1236NSColor *
1237ns_lookup_indexed_color (unsigned long idx, struct frame *f)
1238{
1239 struct ns_color_table *color_table = FRAME_NS_DISPLAY_INFO (f)->color_table;
1240 return color_table->colors[idx];
1241}
1242
1243
1244unsigned long
1245ns_index_color (NSColor *color, struct frame *f)
1246{
1247 struct ns_color_table *color_table = FRAME_NS_DISPLAY_INFO (f)->color_table;
1248 int idx;
1249 NSNumber *index;
1250
1251 if (!color_table->colors)
1252 {
1253 color_table->size = NS_COLOR_CAPACITY;
1254 color_table->avail = 1; /* skip idx=0 as marker */
facfbbbd
SM
1255 color_table->colors
1256 = (NSColor **)xmalloc (color_table->size * sizeof (NSColor *));
edfda783
AR
1257 color_table->empty_indices = [[NSMutableSet alloc] init];
1258 }
1259
1260 /* do we already have this color ? */
1261 {
1262 int i;
1263 for (i = 1; i < color_table->avail; i++)
1264 {
1265 if (color_table->colors[i] && [color_table->colors[i] isEqual: color])
1266 {
1267 [color_table->colors[i] retain];
1268 return i;
1269 }
1270 }
1271 }
1272
1273 if ([color_table->empty_indices count] > 0)
1274 {
1275 index = [color_table->empty_indices anyObject];
1276 [color_table->empty_indices removeObject: index];
1277 idx = [index unsignedIntValue];
1278 }
1279 else
1280 {
1281 if (color_table->avail == color_table->size)
1282 {
1283 color_table->size += NS_COLOR_CAPACITY;
facfbbbd
SM
1284 color_table->colors
1285 = (NSColor **)xrealloc (color_table->colors,
1286 color_table->size * sizeof (NSColor *));
edfda783
AR
1287 }
1288 idx = color_table->avail++;
1289 index = [NSNumber numberWithUnsignedInt: idx];
1290 }
1291
1292 color_table->colors[idx] = color;
1293 [color retain];
1294/*fprintf(stderr, "color_table: allocated %d\n",idx);*/
1295 return idx;
1296}
1297
1298
1299void
1300ns_free_indexed_color (unsigned long idx, struct frame *f)
1301{
1302 struct ns_color_table *color_table = FRAME_NS_DISPLAY_INFO (f)->color_table;
1303 NSColor *color;
1304 if (!idx)
1305 return;
1306 color = color_table->colors[idx];
1307 [color release];
1308 color_table->colors[idx] = nil;
1309 [color_table->empty_indices addObject: [NSNumber numberWithUnsignedInt: idx]];
1310/*fprintf(stderr, "color_table: FREED %d\n",idx);*/
1311}
1312
1313
1314static int
1315ns_get_color (const char *name, NSColor **col)
1316/* --------------------------------------------------------------------------
1317 Parse a color name
1318/* --------------------------------------------------------------------------
1319/* On *Step, we recognize several color formats, in addition to a catalog
1320 of colors found in the file Emacs.clr. Color formats include:
1321 - #rrggbb or RGBrrggbb where rr, gg, bb specify red, green and blue in hex
1322 - ARGBaarrggbb is similar, with aa being the alpha channel (FF = opaque)
704a3a2d
AR
1323 - HSVhhssvv and AHSVaahhssvv (or HSB/AHSB) are similar for hue, saturation,
1324 value;
edfda783
AR
1325 - CMYKccmmyykk is similar for cyan, magenta, yellow, black. */
1326{
1327 NSColor * new = nil;
1328 const char *hex = NULL;
1329 enum { rgb, argb, hsv, ahsv, cmyk, gray } color_space;
1330 NSString *nsname = [NSString stringWithUTF8String: name];
1331
1332/*fprintf (stderr, "ns_get_color: '%s'\n", name); */
1333 BLOCK_INPUT;
1334
1335 if ([nsname isEqualToString: @"ns_selection_color"])
1336 {
1337 nsname = ns_selection_color;
1338 name = [ns_selection_color UTF8String];
1339 }
1340
1341 if (name[0] == '0' || name[0] == '1' || name[0] == '.')
1342 {
1343 /* RGB decimal */
1344 NSScanner *scanner = [NSScanner scannerWithString: nsname];
1345 float r, g, b;
1346 [scanner scanFloat: &r];
1347 [scanner scanFloat: &g];
1348 [scanner scanFloat: &b];
1349 *col = [NSColor colorWithCalibratedRed: r green: g blue: b alpha: 1.0];
1350 UNBLOCK_INPUT;
1351 return 0;
1352 }
1353
df2142db
AR
1354 /* 23: FIXME: emacs seems to downcase everything before passing it here,
1355 which we can work around, except for GRAY, since gray##, where ## is
1356 decimal between 0 and 99, is also an X11 colorname. */
edfda783
AR
1357 if (name[0] == '#') /* X11 format */
1358 {
1359 hex = name + 1;
1360 color_space = rgb;
1361 }
1362 else if (!memcmp (name, "RGB", 3) || !memcmp (name, "rgb", 3))
1363 {
1364 hex = name + 3;
1365 color_space = rgb;
1366 }
1367 else if (!memcmp (name, "ARGB", 4) || !memcmp (name, "argb", 4))
1368 {
1369 hex = name + 4;
1370 color_space = argb;
1371 }
704a3a2d
AR
1372 else if (!memcmp (name, "HSV", 3) || !memcmp (name, "hsv", 3) ||
1373 !memcmp (name, "HSB", 3) || !memcmp (name, "hsb", 3))
edfda783
AR
1374 {
1375 hex = name + 3;
1376 color_space = hsv;
1377 }
704a3a2d
AR
1378 else if (!memcmp (name, "AHSV", 4) || !memcmp (name, "ahsv", 4) ||
1379 !memcmp (name, "AHSB", 4) || !memcmp (name, "ahsb", 4))
edfda783
AR
1380 {
1381 hex = name + 4;
1382 color_space = ahsv;
1383 }
1384 else if (!memcmp (name, "CMYK", 4) || !memcmp (name, "cmyk", 4))
1385 {
1386 hex = name + 4;
1387 color_space = cmyk;
1388 }
1389 else if (!memcmp (name, "GRAY", 4) /*|| !memcmp (name, "gray", 4)*/)
1390 {
1391 hex = name + 4;
1392 color_space = gray;
1393 }
1394
1395 /* Direct colors (hex values) */
1396 if (hex)
1397 {
1398 unsigned int color = 0;
1399 if (sscanf (hex, "%x", &color))
1400 {
1401 float f1 = ((color >> 24) & 0xff) / 255.0;
1402 float f2 = ((color >> 16) & 0xff) / 255.0;
1403 float f3 = ((color >> 8) & 0xff) / 255.0;
1404 float f4 = ((color ) & 0xff) / 255.0;
1405
1406 switch (color_space)
1407 {
1408 case rgb:
1409 *col = [NSColor colorWithCalibratedRed: f2
1410 green: f3
1411 blue: f4
1412 alpha: 1.0];
1413 break;
1414 case argb:
1415 *col = [NSColor colorWithCalibratedRed: f2
1416 green: f3
1417 blue: f4
1418 alpha: f1];
1419 break;
1420 case hsv:
1421 *col = [NSColor colorWithCalibratedHue: f2
1422 saturation: f3
1423 brightness: f4
1424 alpha: 1.0];
1425 break;
1426 case ahsv:
1427 *col = [NSColor colorWithCalibratedHue: f2
1428 saturation: f3
1429 brightness: f4
1430 alpha: f1];
1431 break;
1432 case gray:
1433 *col = [NSColor colorWithCalibratedWhite: f3 alpha: f4];
1434 break;
1435 case cmyk:
1436 *col = [NSColor colorWithDeviceCyan: f1
1437 magenta: f2
1438 yellow: f3
1439 black: f4
1440 alpha: 1.0];
1441 break;
1442 }
1443 *col = [*col colorUsingColorSpaceName: NSCalibratedRGBColorSpace];
1444 UNBLOCK_INPUT;
1445 return 0;
1446 }
1447 }
1448
1449 /* Otherwise, color is expected to be from a list */
1450 {
1451 NSEnumerator *lenum, *cenum;
1452 NSString *name;
1453 NSColorList *clist;
14145fa3 1454
edfda783 1455#ifdef NS_IMPL_GNUSTEP
df2142db 1456 /* XXX: who is wrong, the requestor or the implementation? */
edfda783
AR
1457 if ([nsname compare: @"Highlight" options: NSCaseInsensitiveSearch]
1458 == NSOrderedSame)
1459 nsname = @"highlightColor";
1460#endif
edfda783
AR
1461
1462 lenum = [[NSColorList availableColorLists] objectEnumerator];
1463 while ( (clist = [lenum nextObject]) && new == nil)
1464 {
1465 cenum = [[clist allKeys] objectEnumerator];
1466 while ( (name = [cenum nextObject]) && new == nil )
1467 {
1468 if ([name compare: nsname
1469 options: NSCaseInsensitiveSearch] == NSOrderedSame )
1470 new = [clist colorWithKey: name];
1471 }
1472 }
1473 }
1474
1475 if ( new )
1476 *col = [new colorUsingColorSpaceName: NSCalibratedRGBColorSpace];
1477/* else
1478 NSLog (@"Failed to find color '%@'", nsname); */
1479 UNBLOCK_INPUT;
1480 return new ? 0 : 1;
1481}
1482
1483
1484static NSColor *
1485ns_get_color_default (const char *name, NSColor *dflt)
1486/* --------------------------------------------------------------------------
1487 Parse a color or use a default value
1488 -------------------------------------------------------------------------- */
1489{
1490 NSColor * col;
1491
1492 if (ns_get_color (name, &col))
1493 return dflt;
1494 else
1495 return col;
1496}
1497
1498
1499int
1500ns_lisp_to_color (Lisp_Object color, NSColor **col)
1501/* --------------------------------------------------------------------------
1502 Convert a Lisp string object to a NS color
1503 -------------------------------------------------------------------------- */
1504{
1505 NSTRACE (ns_lisp_to_color);
6882361b
SM
1506 if (STRINGP (color))
1507 return ns_get_color (SDATA (color), col);
1508 else if (SYMBOLP (color))
1509 return ns_get_color (SDATA (SYMBOL_NAME (color)), col);
edfda783
AR
1510 return 1;
1511}
1512
1513
1514Lisp_Object
1515ns_color_to_lisp (NSColor *col)
1516/* --------------------------------------------------------------------------
1517 Convert a color to a lisp string with the RGB equivalent
1518 -------------------------------------------------------------------------- */
1519{
1520 float red, green, blue, alpha, gray;
1521 char buf[1024];
1522 const char *str;
1523 NSTRACE (ns_color_to_lisp);
1524
1525 BLOCK_INPUT;
1526 if ([[col colorSpaceName] isEqualToString: NSNamedColorSpace])
1527
1528 if ((str =[[col colorNameComponent] UTF8String]))
1529 {
1530 UNBLOCK_INPUT;
1531 return build_string ((char *)str);
1532 }
1533
1534 [[col colorUsingColorSpaceName: NSCalibratedRGBColorSpace]
1535 getRed: &red green: &green blue: &blue alpha: &alpha];
1536 if (red ==green && red ==blue)
1537 {
1538 [[col colorUsingColorSpaceName: NSCalibratedWhiteColorSpace]
1539 getWhite: &gray alpha: &alpha];
1540 snprintf (buf, sizeof (buf), "GRAY%02.2lx%02.2lx",
1541 lrint (gray * 0xff), lrint (alpha * 0xff));
1542 UNBLOCK_INPUT;
1543 return build_string (buf);
1544 }
1545
1546 snprintf (buf, sizeof (buf), "ARGB%02.2lx%02.2lx%02.2lx%02.2lx",
1547 lrint (alpha*0xff),
1548 lrint (red*0xff), lrint (green*0xff), lrint (blue*0xff));
1549
1550 UNBLOCK_INPUT;
1551 return build_string (buf);
1552}
1553
1554
1555int
1556ns_defined_color (struct frame *f, char *name, XColor *color_def, int alloc,
1557 char makeIndex)
1558/* --------------------------------------------------------------------------
1559 23: Return 1 if named color found, and set color_def rgb accordingly.
1560 If makeIndex and alloc are nonzero put the color in the color_table,
1561 and set color_def pixel to the resulting index.
1562 If makeIndex is zero, set color_def pixel to ARGB.
1563 Return 0 if not found
1564 -------------------------------------------------------------------------- */
1565{
1566 NSColor *temp;
1567 float r, g, b, a;
1568 int notFound = ns_get_color (name, &temp);
1569
1570 NSTRACE (ns_defined_color);
1571
1572 if (notFound)
1573 return 0;
1574
1575 if (makeIndex && alloc)
712b2de1 1576 color_def->pixel = ns_index_color(temp, f); /* [temp retain]; */
edfda783
AR
1577
1578 [temp getRed: &r green: &g blue: &b alpha: &a];
1579 color_def->red = r * 256;
1580 color_def->green = g * 256;
1581 color_def->blue = b * 256;
1582
1583 if (!makeIndex)
facfbbbd
SM
1584 color_def->pixel
1585 = ARGB_TO_ULONG((int)(a*256),
1586 color_def->red, color_def->green, color_def->blue);
edfda783
AR
1587
1588 return 1;
1589}
1590
1591
1592unsigned long
1593ns_get_rgb_color (struct frame *f, float r, float g, float b, float a)
1594/* --------------------------------------------------------------------------
1595 return an autoreleased RGB color
1596 -------------------------------------------------------------------------- */
1597{
1598/*static int c = 1; fprintf (stderr, "color request %d\n", c++); */
1599 if (r < 0.0) r = 0.0;
1600 else if (r > 1.0) r = 1.0;
1601 if (g < 0.0) g = 0.0;
1602 else if (g > 1.0) g = 1.0;
1603 if (b < 0.0) b = 0.0;
1604 else if (b > 1.0) b = 1.0;
1605 if (a < 0.0) a = 0.0;
1606 else if (a > 1.0) a = 1.0;
1607 return (unsigned long) ns_index_color(
1608 [NSColor colorWithCalibratedRed: r green: g blue: b alpha: a], f);
1609}
1610
1611
1612
1613/* ==========================================================================
1614
1615 Mouse handling
1616
1617 ========================================================================== */
1618
1619
1620void
1621x_set_mouse_pixel_position (struct frame *f, int pix_x, int pix_y)
1622/* --------------------------------------------------------------------------
1623 Programmatically reposition mouse pointer in pixel coordinates
1624 -------------------------------------------------------------------------- */
1625{
1626 NSTRACE (x_set_mouse_pixel_position);
1627 ns_raise_frame (f);
1628#if 0
df2142db 1629 /* FIXME: this does not work, and what about GNUstep? */
edfda783
AR
1630#ifdef NS_IMPL_COCOA
1631 [FRAME_NS_VIEW (f) lockFocus];
1632 PSsetmouse ((float)pix_x, (float)pix_y);
1633 [FRAME_NS_VIEW (f) unlockFocus];
1634#endif
1635#endif
1636}
1637
1638
1639void
1640x_set_mouse_position (struct frame *f, int h, int v)
1641/* --------------------------------------------------------------------------
1642 Programmatically reposition mouse pointer in character coordinates
1643 -------------------------------------------------------------------------- */
1644{
1645 int pix_x, pix_y;
1646
1647 pix_x = FRAME_COL_TO_PIXEL_X (f, h) + FRAME_COLUMN_WIDTH (f) / 2;
1648 pix_y = FRAME_LINE_TO_PIXEL_Y (f, v) + FRAME_LINE_HEIGHT (f) / 2;
1649
1650 if (pix_x < 0) pix_x = 0;
1651 if (pix_x > FRAME_PIXEL_WIDTH (f)) pix_x = FRAME_PIXEL_WIDTH (f);
1652
1653 if (pix_y < 0) pix_y = 0;
1654 if (pix_y > FRAME_PIXEL_HEIGHT (f)) pix_y = FRAME_PIXEL_HEIGHT (f);
1655
1656 x_set_mouse_pixel_position (f, pix_x, pix_y);
1657}
1658
1659
1660static int
1661note_mouse_movement (struct frame *frame, float x, float y)
1662/* ------------------------------------------------------------------------
1663 Called by EmacsView on mouseMovement events. Passes on
1664 to emacs mainstream code if we moved off of a rect of interest
1665 known as last_mouse_glyph.
1666 ------------------------------------------------------------------------ */
1667{
1668 NSTRACE (note_mouse_movement);
1669
1670 XSETFRAME (last_mouse_motion_frame, frame);
1671
1672 /* Note, this doesn't get called for enter/leave, since we don't have a
1673 position. Those are taken care of in the corresponding NSView methods. */
1674
1675 /* has movement gone beyond last rect we were tracking? */
1676 if (x < last_mouse_glyph.origin.x ||
1677 x >= (last_mouse_glyph.origin.x + last_mouse_glyph.size.width) ||
1678 y < last_mouse_glyph.origin.y ||
1679 y >= (last_mouse_glyph.origin.y + last_mouse_glyph.size.height))
1680 {
1681 frame->mouse_moved = 1;
1682 note_mouse_highlight (frame, x, y);
1683 remember_mouse_glyph (frame, x, y, &last_mouse_glyph);
1684 return 1;
1685 }
1686
1687 return 0;
1688}
1689
1690
1691static void
1692ns_mouse_position (struct frame **fp, int insist, Lisp_Object *bar_window,
1693 enum scroll_bar_part *part, Lisp_Object *x, Lisp_Object *y,
1694 unsigned long *time)
1695/* --------------------------------------------------------------------------
1696 External (hook): inform emacs about mouse position and hit parts.
1697 If a scrollbar is being dragged, set bar_window, part, x, y, time.
1698 x & y should be position in the scrollbar (the whole bar, not the handle)
1699 and length of scrollbar respectively
1700 -------------------------------------------------------------------------- */
1701{
1702 id view;
1703 NSPoint position;
1704 int xchar, ychar;
1705 Lisp_Object frame, tail;
1706 struct frame *f;
1707 struct ns_display_info *dpyinfo;
1708
1709 NSTRACE (ns_mouse_position);
1710
1711 if (*fp == NULL)
1712 {
1713 fprintf (stderr, "Warning: ns_mouse_position () called with null *fp.\n");
1714 return;
1715 }
1716
1717 dpyinfo = FRAME_NS_DISPLAY_INFO (*fp);
1718
1719 BLOCK_INPUT;
1720
1721 if (last_mouse_scroll_bar != nil && insist == 0)
1722 {
df2142db
AR
1723 /* TODO: we do not use this path at the moment because drag events will
1724 go directly to the EmacsScroller. Leaving code in for now. */
edfda783
AR
1725 [last_mouse_scroll_bar getMouseMotionPart: (int *)part window: bar_window
1726 x: x y: y];
1727 if (time) *time = last_mouse_movement_time;
1728 last_mouse_scroll_bar = nil;
1729 }
1730 else
1731 {
1732 /* Clear the mouse-moved flag for every frame on this display. */
1733 FOR_EACH_FRAME (tail, frame)
1734 if (FRAME_NS_P (XFRAME (frame))
1735 && FRAME_NS_DISPLAY (XFRAME (frame)) == FRAME_NS_DISPLAY (*fp))
1736 XFRAME (frame)->mouse_moved = 0;
1737
1738 last_mouse_scroll_bar = nil;
1739 if (last_mouse_frame && FRAME_LIVE_P (last_mouse_frame))
1740 f = last_mouse_frame;
1741 else
9e50ff0c 1742 f = dpyinfo->x_focus_frame ? dpyinfo->x_focus_frame
edfda783
AR
1743 : SELECTED_FRAME ();
1744
df2142db 1745 if (f && f->output_data.ns) /* TODO: 2nd check no longer needed? */
edfda783
AR
1746 {
1747 view = FRAME_NS_VIEW (*fp);
1748
1749 position = [[view window] mouseLocationOutsideOfEventStream];
1750 position = [view convertPoint: position fromView: nil];
1751 remember_mouse_glyph (f, position.x, position.y, &last_mouse_glyph);
1752/*fprintf (stderr, "ns_mouse_position: %.0f, %.0f\n", position.x, position.y); */
1753
1754 if (bar_window) *bar_window = Qnil;
1755 if (part) *part = 0; /*scroll_bar_handle; */
1756
1757 if (x) XSETINT (*x, lrint (position.x));
1758 if (y) XSETINT (*y, lrint (position.y));
1759 if (time) *time = last_mouse_movement_time;
1760 *fp = f;
1761 }
1762 }
1763
1764 UNBLOCK_INPUT;
1765}
1766
1767
1768static void
1769ns_frame_up_to_date (struct frame *f)
1770/* --------------------------------------------------------------------------
1771 External (hook): Fix up mouse highlighting right after a full update.
1772 Some highlighting was deferred if GC was happening during
1773 note_mouse_highlight (), while other highlighting was deferred for update.
1774 -------------------------------------------------------------------------- */
1775{
1776 NSTRACE (ns_frame_up_to_date);
1777
1778 if (FRAME_NS_P (f))
1779 {
1780 struct ns_display_info *dpyinfo = FRAME_NS_DISPLAY_INFO (f);
1781 if ((dpyinfo->mouse_face_deferred_gc||f ==dpyinfo->mouse_face_mouse_frame)
1782 /*&& dpyinfo->mouse_face_mouse_frame*/)
1783 {
1784 BLOCK_INPUT;
1785 if (dpyinfo->mouse_face_mouse_frame)
1786 note_mouse_highlight (dpyinfo->mouse_face_mouse_frame,
1787 dpyinfo->mouse_face_mouse_x,
1788 dpyinfo->mouse_face_mouse_y);
1789 dpyinfo->mouse_face_deferred_gc = 0;
1790 UNBLOCK_INPUT;
1791 }
1792 }
1793}
1794
1795
1796void
1797ns_define_frame_cursor (struct frame *f, Cursor cursor)
1798/* --------------------------------------------------------------------------
1799 External (RIF): set frame mouse pointer type.
1800 -------------------------------------------------------------------------- */
1801{
1802 NSTRACE (ns_define_frame_cursor);
1803 if (FRAME_POINTER_TYPE (f) != cursor)
1804 {
1805 EmacsView *view = FRAME_NS_VIEW (f);
1806 FRAME_POINTER_TYPE (f) = cursor;
1807 [[view window] invalidateCursorRectsForView: view];
1808 }
1809}
1810
1811
1812
1813/* ==========================================================================
1814
1815 Keyboard handling
1816
1817 ========================================================================== */
1818
1819
1820static unsigned
1821ns_convert_key (unsigned code)
1822/* --------------------------------------------------------------------------
1823 Internal call used by NSView-keyDown.
1824 -------------------------------------------------------------------------- */
1825{
1826 const unsigned last_keysym = (sizeof (convert_ns_to_X_keysym)
1827 / sizeof (convert_ns_to_X_keysym[0]));
1828 unsigned keysym;
1829 /* An array would be faster, but less easy to read. */
1830 for (keysym = 0; keysym < last_keysym; keysym += 2)
1831 if (code == convert_ns_to_X_keysym[keysym])
1832 return 0xFF00 | convert_ns_to_X_keysym[keysym+1];
1833 return 0;
1834/* if decide to use keyCode and Carbon table, use this line:
1835 return code > 0xff ? 0 : 0xFF00 | ns_keycode_to_xkeysym_table[code]; */
1836}
1837
1838
1839char *
1840x_get_keysym_name (int keysym)
1841/* --------------------------------------------------------------------------
1842 Called by keyboard.c. Not sure if the return val is important, except
1843 that it be unique.
1844 -------------------------------------------------------------------------- */
1845{
1846 static char value[16];
1847 NSTRACE (x_get_keysym_name);
1848 sprintf (value, "%d", keysym);
1849 return value;
1850}
1851
1852
1853
1854/* ==========================================================================
1855
1856 Block drawing operations
1857
1858 ========================================================================== */
1859
1860
1861static void
1862ns_redraw_scroll_bars (struct frame *f)
1863{
1864 int i;
1865 id view;
1866 NSArray *subviews = [[FRAME_NS_VIEW (f) superview] subviews];
1867 NSTRACE (ns_judge_scroll_bars);
1868 for (i =[subviews count]-1; i >= 0; i--)
1869 {
1870 view = [subviews objectAtIndex: i];
1871 if (![view isKindOfClass: [EmacsScroller class]]) continue;
1872 [view display];
1873 }
1874}
1875
1876
1877void
1878ns_clear_frame (struct frame *f)
1879/* --------------------------------------------------------------------------
1880 External (hook): Erase the entire frame
1881 -------------------------------------------------------------------------- */
1882{
1883 NSView *view = FRAME_NS_VIEW (f);
1884 NSRect r;
1885
1886 NSTRACE (ns_clear_frame);
1887 if (ns_in_resize)
1888 return;
1889
1890 /* comes on initial frame because we have
1891 after-make-frame-functions = select-frame */
1892 if (!FRAME_DEFAULT_FACE (f))
1893 return;
1894
1895 mark_window_cursors_off (XWINDOW (FRAME_ROOT_WINDOW (f)));
1896
1897 output_cursor.hpos = output_cursor.vpos = 0;
1898 output_cursor.x = -1;
1899
1900 r = [view bounds];
1901
1902 BLOCK_INPUT;
1903 ns_focus (f, &r, 1);
1904 [ns_lookup_indexed_color (NS_FACE_BACKGROUND (FRAME_DEFAULT_FACE (f)), f) set];
1905 NSRectFill (r);
1906 ns_unfocus (f);
1907
1908#ifdef NS_IMPL_COCOA
1909 [[view window] display]; /* redraw resize handle */
1910#endif
1911
1912 /* as of 2006/11 or so this is now needed */
1913 ns_redraw_scroll_bars (f);
1914 UNBLOCK_INPUT;
1915}
1916
1917
1918void
1919ns_clear_frame_area (struct frame *f, int x, int y, int width, int height)
1920/* --------------------------------------------------------------------------
1921 23: External (RIF): Clear section of frame
1922 -------------------------------------------------------------------------- */
1923{
1924 NSRect r = NSMakeRect (x, y, width, height);
1925 NSView *view = FRAME_NS_VIEW (f);
1926 struct face *face = FRAME_DEFAULT_FACE (f);
1927
1928 if (!view || !face)
1929 return;
1930
1931 r = NSIntersectionRect (r, [view frame]);
1932 ns_focus (f, &r, 1);
1933 [ns_lookup_indexed_color (NS_FACE_BACKGROUND (face), f) set];
1934
1935#ifdef NS_IMPL_COCOA
1936 {
1937 /* clip out the resize handle */
1938 NSWindow *window = [FRAME_NS_VIEW (f) window];
facfbbbd
SM
1939 NSRect ir
1940 = [view convertRect: ns_resize_handle_rect (window) fromView: nil];
edfda783
AR
1941
1942 ir = NSIntersectionRect (r, ir);
1943 if (NSIsEmptyRect (ir))
1944 {
1945#endif
1946
1947 NSRectFill (r);
1948
1949#ifdef NS_IMPL_COCOA
1950 }
1951 else
1952 {
1953 NSRect r1 = r, r2 = r; /* upper and lower non-intersecting */
1954 r1.size.height -= ir.size.height;
1955 r2.origin.y += r1.size.height;
1956 r2.size.width -= ir.size.width;
1957 r2.size.height = ir.size.height;
1958 NSRectFill (r1);
1959 NSRectFill (r2);
1960 }
1961 }
1962#endif
1963
1964 ns_unfocus (f);
1965 return;
1966}
1967
1968
1969static void
1970ns_scroll_run (struct window *w, struct run *run)
1971/* --------------------------------------------------------------------------
1972 23: External (RIF): Insert or delete n lines at line vpos
1973 -------------------------------------------------------------------------- */
1974{
1975 struct frame *f = XFRAME (w->frame);
1976 int x, y, width, height, from_y, to_y, bottom_y;
1977
1978 NSTRACE (ns_scroll_run);
1979
1980 /* begin copy from other terms */
1981 /* Get frame-relative bounding box of the text display area of W,
1982 without mode lines. Include in this box the left and right
1983 fringe of W. */
1984 window_box (w, -1, &x, &y, &width, &height);
1985
1986 from_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->current_y);
1987 to_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->desired_y);
1988 bottom_y = y + height;
1989
1990 if (to_y < from_y)
1991 {
1992 /* Scrolling up. Make sure we don't copy part of the mode
1993 line at the bottom. */
1994 if (from_y + run->height > bottom_y)
1995 height = bottom_y - from_y;
1996 else
1997 height = run->height;
1998 }
1999 else
2000 {
2001 /* Scolling down. Make sure we don't copy over the mode line.
2002 at the bottom. */
2003 if (to_y + run->height > bottom_y)
2004 height = bottom_y - to_y;
2005 else
2006 height = run->height;
2007 }
2008 /* end copy from other terms */
2009
2010 if (height == 0)
2011 return;
2012
2013 BLOCK_INPUT;
2014
2015 updated_window = w;
2016 x_clear_cursor (w);
2017
2018 {
2019 NSRect srcRect = NSMakeRect (x, from_y, width, height);
2020 NSRect dstRect = NSMakeRect (x, to_y, width, height);
2021 NSPoint dstOrigin = NSMakePoint (x, to_y);
2022
2023 ns_focus (f, &dstRect, 1);
2024 NSCopyBits (0, srcRect , dstOrigin);
2025 ns_unfocus (f);
2026 }
2027
2028 UNBLOCK_INPUT;
2029}
2030
2031
2032static void
2033ns_after_update_window_line (struct glyph_row *desired_row)
2034/* --------------------------------------------------------------------------
2035 23: External (RIF): preparatory to fringe update after text was updated
2036 -------------------------------------------------------------------------- */
2037{
2038 struct window *w = updated_window;
2039 struct frame *f;
2040 int width, height;
2041
2042 NSTRACE (ns_after_update_window_line);
2043
2044 /* begin copy from other terms */
2045 xassert (w);
2046
2047 if (!desired_row->mode_line_p && !w->pseudo_window_p)
2048 desired_row->redraw_fringe_bitmaps_p = 1;
2049
2050 /* When a window has disappeared, make sure that no rest of
2051 full-width rows stays visible in the internal border.
2052 Under NS this is drawn inside the fringes. */
2053 if (windows_or_buffers_changed
2054 && (f = XFRAME (w->frame),
2055 width = FRAME_INTERNAL_BORDER_WIDTH (f),
2056 width != 0)
2057 && (height = desired_row->visible_height,
2058 height > 0))
2059 {
2060 int y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, desired_row->y));
2061
2062 /* Internal border is drawn below the tool bar. */
2063 if (WINDOWP (f->tool_bar_window)
2064 && w == XWINDOW (f->tool_bar_window))
2065 y -= width;
2066 /* end copy from other terms */
2067
2068 BLOCK_INPUT;
2069 if (!desired_row->full_width_p)
2070 {
2071 int x1 = WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (w)
2072 + WINDOW_LEFT_FRINGE_WIDTH (w);
2073 int x2 = WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (w)
2074 + FRAME_PIXEL_WIDTH (f) - NS_SCROLL_BAR_WIDTH (f)
2075 - WINDOW_RIGHT_FRINGE_WIDTH (w)
2076 - FRAME_INTERNAL_BORDER_WIDTH (f);
2077 ns_clear_frame_area (f, x1, y, width, height);
2078 ns_clear_frame_area (f, x2, y, width, height);
2079 }
2080 UNBLOCK_INPUT;
2081 }
2082}
2083
2084
2085static void
2086ns_shift_glyphs_for_insert (struct frame *f,
2087 int x, int y, int width, int height,
2088 int shift_by)
2089/* --------------------------------------------------------------------------
2090 23: External (RIF): copy an area horizontally, don't worry about clearing src
2091 -------------------------------------------------------------------------- */
2092{
2093 NSRect srcRect = NSMakeRect (x, y, width, height);
2094 NSRect dstRect = NSMakeRect (x+shift_by, y, width, height);
2095 NSPoint dstOrigin = dstRect.origin;
2096
2097 NSTRACE (ns_shift_glyphs_for_insert);
2098
2099 ns_focus (f, &dstRect, 1);
2100 NSCopyBits (0, srcRect, dstOrigin);
2101 ns_unfocus (f);
2102}
2103
2104
2105
2106/* ==========================================================================
2107
2108 Character encoding and metrics
2109
2110 ========================================================================== */
2111
2112
2113static inline void
2114ns_compute_glyph_string_overhangs (struct glyph_string *s)
2115/* --------------------------------------------------------------------------
2116 23: External (RIF); compute left/right overhang of whole string and set in s
2117 -------------------------------------------------------------------------- */
2118{
2119 struct face *face = FACE_FROM_ID (s->f, s->first_glyph->face_id);
2120 struct font *font = s->font; /*face->font; */
2121
2122 if (s->char2b)
2123 {
2124 struct font_metrics metrics;
2125 unsigned int codes[2];
2126 codes[0] = *(s->char2b);
2127 codes[1] = *(s->char2b + s->nchars - 1);
2128
2129 font->driver->text_extents (font, codes, 2, &metrics);
2130 s->left_overhang = -metrics.lbearing;
facfbbbd
SM
2131 s->right_overhang
2132 = metrics.rbearing > metrics.width
2133 ? metrics.rbearing - metrics.width : 0;
edfda783
AR
2134 }
2135 else
2136 {
2137 s->left_overhang = 0;
2138 s->right_overhang = ((struct nsfont_info *)font)->ital ?
2139 FONT_HEIGHT (font) * 0.2 : 0;
2140 }
2141}
2142
2143
2144
2145/* ==========================================================================
2146
2147 Fringe and cursor drawing
2148
2149 ========================================================================== */
2150
2151
2152extern int max_used_fringe_bitmap;
2153static void
2154ns_draw_fringe_bitmap (struct window *w, struct glyph_row *row,
2155 struct draw_fringe_bitmap_params *p)
2156/* --------------------------------------------------------------------------
2157 23: External (RIF); fringe-related
2158 -------------------------------------------------------------------------- */
2159{
2160 struct frame *f = XFRAME (WINDOW_FRAME (w));
2161 struct face *face = p->face;
2162 int rowY;
2163 static EmacsImage **bimgs = NULL;
2164 static int nBimgs = 0;
2165 /* NS-specific: move internal border inside fringe */
2166 int x = p->bx < 0 ? p->x : p->bx;
2167 int wd = p->bx < 0 ? p->wd : p->nx;
facfbbbd
SM
2168 BOOL fringeOnVeryLeft
2169 = x - WINDOW_LEFT_SCROLL_BAR_COLS (w) * WINDOW_FRAME_COLUMN_WIDTH (w)
edfda783 2170 - FRAME_INTERNAL_BORDER_WIDTH (f) < 10;
facfbbbd
SM
2171 BOOL fringeOnVeryRight
2172 = FRAME_PIXEL_WIDTH (f) - x - wd - FRAME_INTERNAL_BORDER_WIDTH (f)
edfda783
AR
2173 - WINDOW_RIGHT_SCROLL_BAR_COLS (w) * WINDOW_FRAME_COLUMN_WIDTH (w) < 10;
2174 int xAdjust = FRAME_INTERNAL_BORDER_WIDTH (f) *
2175 (fringeOnVeryLeft ? -1 : (fringeOnVeryRight ? 1 : 0));
2176
2177 /* grow bimgs if needed */
2178 if (nBimgs < max_used_fringe_bitmap)
2179 {
facfbbbd
SM
2180 EmacsImage **newBimgs
2181 = xmalloc (max_used_fringe_bitmap * sizeof (EmacsImage *));
edfda783
AR
2182 bzero (newBimgs, max_used_fringe_bitmap * sizeof (EmacsImage *));
2183
2184 if (nBimgs)
2185 {
2186 bcopy (bimgs, newBimgs, nBimgs * sizeof (EmacsImage *));
2187 xfree (bimgs);
2188 }
2189
2190 bimgs = newBimgs;
2191 nBimgs = max_used_fringe_bitmap;
2192 }
2193
2194 /* Must clip because of partially visible lines. */
2195 rowY = WINDOW_TO_FRAME_PIXEL_Y (w, row->y);
2196 if (p->y < rowY)
2197 {
2198 /* Adjust position of "bottom aligned" bitmap on partially
2199 visible last row. */
2200 int oldY = row->y;
2201 int oldVH = row->visible_height;
2202 row->visible_height = p->h;
2203 row->y -= rowY - p->y;
15034960 2204 ns_clip_to_row (w, row, -1, NO);
edfda783
AR
2205 row->y = oldY;
2206 row->visible_height = oldVH;
2207 }
2208 else
2209 ns_clip_to_row (w, row, -1, YES);
2210
2211 if (p->bx >= 0 && !p->overlay_p)
2212 {
2213 int yAdjust = rowY - FRAME_INTERNAL_BORDER_WIDTH (f) < 5 ?
2214 -FRAME_INTERNAL_BORDER_WIDTH (f) : 0;
2215 int yIncr = FRAME_PIXEL_HEIGHT (f) - (p->by+yAdjust + p->ny) < 5 ?
2216 FRAME_INTERNAL_BORDER_WIDTH (f) : 0;
2217 if (yAdjust)
2218 yIncr += FRAME_INTERNAL_BORDER_WIDTH (f);
2219 NSRect r = NSMakeRect (p->bx+xAdjust, p->by+yAdjust, p->nx, p->ny+yIncr);
2220 NSRectClip (r);
2221 [ns_lookup_indexed_color(face->background, f) set];
2222 NSRectFill (r);
2223 }
2224
2225 if (p->which)
2226 {
2227 NSRect r = NSMakeRect (p->x+xAdjust, p->y, p->wd, p->h);
2228 NSPoint pt = r.origin;
2229 EmacsImage *img = bimgs[p->which - 1];
2230
2231 if (!img)
2232 {
2233 unsigned short *bits = p->bits + p->dh;
2234 int len = 8 * p->h/8;
2235 int i;
2236 unsigned char *cbits = xmalloc (len);
2237
2238 for (i =0; i<len; i++)
2239 cbits[i] = ~(bits[i] & 0xff);
2240 img = [[EmacsImage alloc] initFromXBM: cbits width: 8 height: p->h
2241 flip: NO];
2242 bimgs[p->which - 1] = img;
2243 xfree (cbits);
2244 }
2245
2246 NSRectClip (r);
2247 /* Since we composite the bitmap instead of just blitting it, we need
2248 to erase the whole background. */
2249 [ns_lookup_indexed_color(face->background, f) set];
2250 NSRectFill (r);
2251 pt.y += p->h;
2252 [img setXBMColor: ns_lookup_indexed_color(face->foreground, f)];
2253 [img compositeToPoint: pt operation: NSCompositeSourceOver];
2254 }
2255 ns_unfocus (f);
2256}
2257
2258
2259void
2260ns_draw_window_cursor (struct window *w, struct glyph_row *glyph_row,
2261 int x, int y, int cursor_type, int cursor_width,
2262 int on_p, int active_p)
2263/* --------------------------------------------------------------------------
2264 External call (RIF): draw cursor
595d6a93
DR
2265 (modeled after x_draw_window_cursor and erase_phys_cursor.
2266 FIXME: erase_phys_cursor is called from display_and_set_cursor,
2267 called from update_window_cursor/x_update_window_end/...
2268 Why do we have to duplicate this code?
edfda783
AR
2269 -------------------------------------------------------------------------- */
2270{
2271 NSRect r, s;
2272 int fx, fy, h;
2273 struct frame *f = WINDOW_XFRAME (w);
2274 struct glyph *phys_cursor_glyph;
2275 int overspill;
f2f7f42c 2276 char drawGlyph = 0, cursorType, oldCursorType;
595d6a93
DR
2277 int new_cursor_type;
2278 int new_cursor_width;
2279 int active_cursor;
2280 enum draw_glyphs_face hl;
2281 struct glyph_matrix *active_glyphs = w->current_matrix;
2282 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
2283 int hpos = w->phys_cursor.hpos;
2284 int vpos = w->phys_cursor.vpos;
2285 struct glyph_row *cursor_row;
edfda783
AR
2286
2287 NSTRACE (dumpcursor);
2288
595d6a93 2289 if (!on_p) // check this? && !w->phys_cursor_on_p)
ed709b89 2290 return;
edfda783
AR
2291
2292 w->phys_cursor_type = cursor_type;
595d6a93 2293 w->phys_cursor_on_p = on_p;
edfda783
AR
2294
2295 if (cursor_type == NO_CURSOR)
2296 {
ed709b89 2297 w->phys_cursor_on_p = 0;
edfda783
AR
2298 w->phys_cursor_width = 0;
2299 return;
2300 }
2301
2302 if ((phys_cursor_glyph = get_phys_cursor_glyph (w)) == NULL)
2303 {
2304 if (glyph_row->exact_window_width_line_p
2305 && w->phys_cursor.hpos >= glyph_row->used[TEXT_AREA])
2306 {
2307 glyph_row->cursor_in_fringe_p = 1;
2308 draw_fringe_bitmap (w, glyph_row, 0);
2309 }
2310 return;
2311 }
2312
2313 get_phys_cursor_geometry (w, glyph_row, phys_cursor_glyph, &fx, &fy, &h);
2314
2315 r.origin.x = fx, r.origin.y = fy;
2316 r.size.height = h;
2317 r.size.width = w->phys_cursor_width;
2318
7ded3383 2319 /* FIXME: if we overwrite the internal border area, it does not get erased;
edfda783
AR
2320 fix by truncating cursor, but better would be to erase properly */
2321 overspill = r.origin.x + r.size.width -
2322 WINDOW_TEXT_TO_FRAME_PIXEL_X (w, WINDOW_BOX_RIGHT_EDGE_X (w)
2323 - WINDOW_TOTAL_FRINGE_WIDTH (w) - FRAME_INTERNAL_BORDER_WIDTH (f));
2324 if (overspill > 0)
2325 r.size.width -= overspill;
2326
edfda783
AR
2327 oldCursorType = FRAME_CURSOR (f);
2328 cursorType = FRAME_CURSOR (f) = FRAME_NEW_CURSOR (f);
595d6a93 2329 /* TODO: 23: use emacs stored cursor color instead of ns-specific */
facfbbbd
SM
2330 f->output_data.ns->current_cursor_color
2331 = f->output_data.ns->desired_cursor_color;
edfda783 2332
7ded3383 2333 /* TODO: only needed in rare cases with last-resort font in HELLO..
edfda783 2334 should we do this more efficiently? */
15034960 2335 ns_clip_to_row (w, glyph_row, -1, NO);
edfda783
AR
2336/* ns_focus (f, &r, 1); */
2337
ed709b89
DR
2338 /* Why would this be needed?
2339 if (FRAME_LAST_INACTIVE (f))
edfda783 2340 {
ed709b89 2341 * previously hollow box; clear entire area *
edfda783
AR
2342 [FRAME_BACKGROUND_COLOR (f) set];
2343 NSRectFill (r);
2344 drawGlyph = 1;
2345 FRAME_LAST_INACTIVE (f) = NO;
2346 }
ed709b89 2347 */
edfda783
AR
2348
2349 /* prepare to draw */
2350 if (cursorType == no_highlight || cursor_type == NO_CURSOR)
2351 {
2352 /* clearing for blink: erase the cursor itself */
595d6a93
DR
2353
2354 /* No cursor displayed or row invalidated => nothing to do on the
2355 screen. */
2356 if (w->phys_cursor_type == NO_CURSOR)
2357 return;
2358
2359 /* VPOS >= active_glyphs->nrows means that window has been resized.
2360 Don't bother to erase the cursor. */
2361 if (vpos >= active_glyphs->nrows)
2362 return;
2363
2364 /* If row containing cursor is marked invalid, there is nothing we
2365 can do. */
2366 cursor_row = MATRIX_ROW (active_glyphs, vpos);
2367 if (!cursor_row->enabled_p)
2368 return;
2369
2370 /* If line spacing is > 0, old cursor may only be partially visible in
2371 window after split-window. So adjust visible height. */
2372 cursor_row->visible_height = min (cursor_row->visible_height,
2373 window_text_bottom_y (w) - cursor_row->y);
2374
2375 /* If row is completely invisible, don't attempt to delete a cursor which
2376 isn't there. This can happen if cursor is at top of a window, and
2377 we switch to a buffer with a header line in that window. */
2378 if (cursor_row->visible_height <= 0)
2379 return;
2380
2381 /* If cursor is in the fringe, erase by drawing actual bitmap there. */
2382 if (cursor_row->cursor_in_fringe_p)
2383 {
2384 cursor_row->cursor_in_fringe_p = 0;
2385 draw_fringe_bitmap (w, cursor_row, 0);
2386 return;
2387 }
2388
2389 /* This can happen when the new row is shorter than the old one.
2390 In this case, either draw_glyphs or clear_end_of_line
2391 should have cleared the cursor. Note that we wouldn't be
2392 able to erase the cursor in this case because we don't have a
2393 cursor glyph at hand. */
2394 if (w->phys_cursor.hpos >= cursor_row->used[TEXT_AREA])
2395 return;
2396
2397 /* If the cursor is in the mouse face area, redisplay that when
2398 we clear the cursor. */
2399 if (! NILP (dpyinfo->mouse_face_window)
2400 && w == XWINDOW (dpyinfo->mouse_face_window)
2401 && (vpos > dpyinfo->mouse_face_beg_row
2402 || (vpos == dpyinfo->mouse_face_beg_row
2403 && hpos >= dpyinfo->mouse_face_beg_col))
2404 && (vpos < dpyinfo->mouse_face_end_row
2405 || (vpos == dpyinfo->mouse_face_end_row
2406 && hpos < dpyinfo->mouse_face_end_col))
2407 /* Don't redraw the cursor's spot in mouse face if it is at the
2408 end of a line (on a newline). The cursor appears there, but
2409 mouse highlighting does not. */
2410 && cursor_row->used[TEXT_AREA] > hpos)
2411 hl = DRAW_MOUSE_FACE;
2412 else
2413 hl = DRAW_NORMAL_TEXT;
2414 drawGlyph = 1; // just draw the Glyph
edfda783 2415 [FRAME_BACKGROUND_COLOR (f) set];
595d6a93 2416
870e0516 2417#ifdef NS_IMPL_COCOA
595d6a93 2418 NSDisableScreenUpdates ();
870e0516 2419#endif
edfda783
AR
2420 }
2421 else
595d6a93
DR
2422 {
2423 cursorType = cursor_type;
2424 hl = DRAW_CURSOR;
edfda783 2425 [FRAME_CURSOR_COLOR (f) set];
595d6a93 2426
edfda783 2427
595d6a93
DR
2428 if (!active_p)
2429 {
2430 /* inactive window: ignore what we just set and use a hollow box */
ed709b89 2431 cursorType = HOLLOW_BOX_CURSOR;
595d6a93 2432 }
edfda783 2433
870e0516 2434#ifdef NS_IMPL_COCOA
595d6a93 2435 NSDisableScreenUpdates ();
870e0516 2436#endif
595d6a93
DR
2437
2438 switch (cursorType)
2439 {
2440 case NO_CURSOR: // no_highlight:
2441 break;
2442 case FILLED_BOX_CURSOR: //filled_box:
2443 NSRectFill (r);
2444 drawGlyph = 1;
2445 break;
2446 case HOLLOW_BOX_CURSOR: //hollow_box:
2447 NSRectFill (r);
2448 [FRAME_BACKGROUND_COLOR (f) set];
2449 NSRectFill (NSInsetRect (r, 1, 1));
2450 [FRAME_CURSOR_COLOR (f) set];
2451 drawGlyph = 1;
2452 break;
2453 case HBAR_CURSOR: // underscore:
2454 s = r;
2455 s.origin.y += lrint (0.75 * s.size.height);
2456 s.size.height = cursor_width; //lrint (s.size.height * 0.25);
2457 NSRectFill (s);
2458 break;
2459 case BAR_CURSOR: //bar:
2460 s = r;
2461 s.size.width = cursor_width;
2462 NSRectFill (s);
2463 drawGlyph = 1;
2464 break;
2465 }
edfda783
AR
2466 }
2467 ns_unfocus (f);
2468
2469 /* if needed, draw the character under the cursor */
2470 if (drawGlyph)
595d6a93
DR
2471 draw_phys_cursor_glyph (w, glyph_row, hl);
2472
870e0516 2473#ifdef NS_IMPL_COCOA
595d6a93 2474 NSEnableScreenUpdates ();
870e0516 2475#endif
595d6a93 2476
edfda783
AR
2477}
2478
2479
2480static void
2481ns_draw_vertical_window_border (struct window *w, int x, int y0, int y1)
2482/* --------------------------------------------------------------------------
2483 External (RIF): Draw a vertical line.
2484 -------------------------------------------------------------------------- */
2485{
2486 struct frame *f = XFRAME (WINDOW_FRAME (w));
2487 struct face *face;
2488 NSRect r = NSMakeRect (x, y0, 2, y1-y0);
2489
2490 face = FACE_FROM_ID (f, VERTICAL_BORDER_FACE_ID);
2491 if (face)
2492 [ns_lookup_indexed_color(face->foreground, f) set];
2493
2494 ns_focus (f, &r, 1);
2495 NSDrawGroove (r, r);
2496 ns_unfocus (f);
2497}
2498
2499
2500void
2501show_hourglass (struct atimer *timer)
2502{
2503 if (hourglass_shown_p)
2504 return;
2505
2506 BLOCK_INPUT;
2507
df2142db 2508 /* TODO: add NSProgressIndicator to selected frame (see macfns.c) */
edfda783
AR
2509
2510 hourglass_shown_p = 1;
2511 UNBLOCK_INPUT;
2512}
2513
2514
2515void
2516hide_hourglass ()
2517{
2518 if (!hourglass_shown_p)
2519 return;
2520
7ded3383
AR
2521 BLOCK_INPUT;
2522
df2142db 2523 /* TODO: remove NSProgressIndicator from all frames */
edfda783
AR
2524
2525 hourglass_shown_p = 0;
2526 UNBLOCK_INPUT;
2527}
2528
2529
2530
2531/* ==========================================================================
2532
2533 Glyph drawing operations
2534
2535 ========================================================================== */
2536
2537
2538static inline NSRect
2539/* --------------------------------------------------------------------------
2540 Under NS we draw internal borders inside fringes, and want full-width
2541 rendering to go all the way to edge. This function makes that correction.
2542 -------------------------------------------------------------------------- */
2543ns_fix_rect_ibw (NSRect r, int fibw, int frame_pixel_width)
2544{
2545 if (r.origin.y <= fibw+1)
2546 {
2547 r.size.height += r.origin.y;
2548 r.origin.y = 0;
2549 }
2550 if (r.origin.x <= fibw+1)
2551 {
2552 r.size.width += r.origin.x;
2553 r.origin.x = 0;
2554 }
2555 if (frame_pixel_width - (r.origin.x+r.size.width) <= fibw+1)
2556 r.size.width += fibw;
2557
2558 return r;
2559}
2560
2561
2562static int
2563ns_get_glyph_string_clip_rect (struct glyph_string *s, NativeRectangle *nr)
2564/* --------------------------------------------------------------------------
2565 Wrapper utility to account for internal border width on full-width lines,
2566 and allow top full-width rows to hit the frame top. nr should be pointer
2567 to two successive NSRects. Number of rects actually used is returned.
2568 -------------------------------------------------------------------------- */
2569{
2570 int n = get_glyph_string_clip_rects (s, nr, 2);
2571 if (s->row->full_width_p)
2572 {
2573 *nr = ns_fix_rect_ibw (*nr, FRAME_INTERNAL_BORDER_WIDTH (s->f),
2574 FRAME_PIXEL_WIDTH (s->f));
2575 if (n == 2)
2576 *nr = ns_fix_rect_ibw (*(nr+1), FRAME_INTERNAL_BORDER_WIDTH (s->f),
2577 FRAME_PIXEL_WIDTH (s->f));
2578 }
2579 return n;
2580}
2581
2582
2583static void
2584ns_draw_box (NSRect r, float thickness, NSColor *col, char left_p, char right_p)
2585/* --------------------------------------------------------------------------
2586 Draw an unfilled rect inside r, optionally leaving left and/or right open.
2587 Note we can't just use an NSDrawRect command, because of the possibility
2588 of some sides not being drawn, and because the rect will be filled.
2589 -------------------------------------------------------------------------- */
2590{
2591 NSRect s = r;
2592 [col set];
2593
2594 /* top, bottom */
2595 s.size.height = thickness;
2596 NSRectFill (s);
2597 s.origin.y += r.size.height - thickness;
2598 NSRectFill (s);
2599
2600 s.size.height = r.size.height;
2601 s.origin.y = r.origin.y;
2602
2603 /* left, right (optional) */
2604 s.size.width = thickness;
2605 if (left_p)
2606 NSRectFill (s);
2607 if (right_p)
2608 {
2609 s.origin.x += r.size.width - thickness;
2610 NSRectFill (s);
2611 }
2612}
2613
2614
2615static void
2616ns_draw_relief (NSRect r, int thickness, char raised_p,
2617 char top_p, char bottom_p, char left_p, char right_p,
2618 struct glyph_string *s)
2619/* --------------------------------------------------------------------------
2620 Draw a relief rect inside r, optionally leaving some sides open.
2621 Note we can't just use an NSDrawBezel command, because of the possibility
2622 of some sides not being drawn, and because the rect will be filled.
2623 -------------------------------------------------------------------------- */
2624{
2625 static NSColor *baseCol = nil, *lightCol = nil, *darkCol = nil;
2626 NSColor *newBaseCol = nil;
2627 NSRect sr = r;
2628
2629 NSTRACE (ns_draw_relief);
2630
2631 /* set up colors */
2632
2633 if (s->face->use_box_color_for_shadows_p)
2634 {
2635 newBaseCol = ns_lookup_indexed_color (s->face->box_color, s->f);
2636 }
2637/* else if (s->first_glyph->type == IMAGE_GLYPH
2638 && s->img->pixmap
2639 && !IMAGE_BACKGROUND_TRANSPARENT (s->img, s->f, 0))
2640 {
2641 newBaseCol = IMAGE_BACKGROUND (s->img, s->f, 0);
2642 } */
2643 else
2644 {
2645 newBaseCol = ns_lookup_indexed_color (s->face->background, s->f);
2646 }
2647
2648 if (newBaseCol == nil)
2649 newBaseCol = [NSColor grayColor];
2650
df2142db 2651 if (newBaseCol != baseCol) /* TODO: better check */
edfda783
AR
2652 {
2653 [baseCol release];
2654 baseCol = [newBaseCol retain];
2655 [lightCol release];
2656 lightCol = [[baseCol highlightWithLevel: 0.2] retain];
2657 [darkCol release];
2658 darkCol = [[baseCol shadowWithLevel: 0.3] retain];
2659 }
2660
2661 [(raised_p ? lightCol : darkCol) set];
2662
2663 /* TODO: mitering. Using NSBezierPath doesn't work because of color switch. */
2664
2665 /* top */
2666 sr.size.height = thickness;
2667 if (top_p) NSRectFill (sr);
2668
2669 /* left */
2670 sr.size.height = r.size.height;
2671 sr.size.width = thickness;
2672 if (left_p) NSRectFill (sr);
2673
2674 [(raised_p ? darkCol : lightCol) set];
2675
2676 /* bottom */
2677 sr.size.width = r.size.width;
2678 sr.size.height = thickness;
2679 sr.origin.y += r.size.height - thickness;
2680 if (bottom_p) NSRectFill (sr);
2681
2682 /* right */
2683 sr.size.height = r.size.height;
2684 sr.origin.y = r.origin.y;
2685 sr.size.width = thickness;
2686 sr.origin.x += r.size.width - thickness;
2687 if (right_p) NSRectFill (sr);
2688}
2689
2690
2691static void
2692ns_dumpglyphs_box_or_relief (struct glyph_string *s)
2693/* --------------------------------------------------------------------------
2694 Function modeled after x_draw_glyph_string_box ().
2695 Sets up parameters for drawing.
2696 -------------------------------------------------------------------------- */
2697{
2698 int right_x, last_x;
2699 char left_p, right_p;
2700 struct glyph *last_glyph;
2701 NSRect r;
2702 int thickness;
2703 struct face *face;
2704
2705 if (s->hl == DRAW_MOUSE_FACE)
2706 {
2707 face = FACE_FROM_ID
2708 (s->f, FRAME_NS_DISPLAY_INFO (s->f)->mouse_face_face_id);
2709 if (!face)
2710 face = FACE_FROM_ID (s->f, MOUSE_FACE_ID);
2711 }
2712 else
2713 face = s->face;
2714
2715 thickness = face->box_line_width;
2716
2717 NSTRACE (ns_dumpglyphs_box_or_relief);
2718
2719 last_x = ((s->row->full_width_p && !s->w->pseudo_window_p)
2720 ? WINDOW_RIGHT_EDGE_X (s->w)
2721 : window_box_right (s->w, s->area));
2722 last_glyph = (s->cmp || s->img
2723 ? s->first_glyph : s->first_glyph + s->nchars-1);
2724
2725 right_x = ((s->row->full_width_p && s->extends_to_end_of_line_p
2726 ? last_x - 1 : min (last_x, s->x + s->background_width) - 1));
2727
2728 left_p = (s->first_glyph->left_box_line_p
2729 || (s->hl == DRAW_MOUSE_FACE
2730 && (s->prev == NULL || s->prev->hl != s->hl)));
2731 right_p = (last_glyph->right_box_line_p
2732 || (s->hl == DRAW_MOUSE_FACE
2733 && (s->next == NULL || s->next->hl != s->hl)));
2734
2735 r = NSMakeRect (s->x, s->y, right_x - s->x + 1, s->height);
2736
2737 /* expand full-width row over internal borders */
2738 if (s->row->full_width_p)
2739 r = ns_fix_rect_ibw (r, FRAME_INTERNAL_BORDER_WIDTH (s->f),
2740 FRAME_PIXEL_WIDTH (s->f));
2741
2742 if (s->face->box == FACE_SIMPLE_BOX)
2743 {
2744 xassert (s->face->box_color != nil);
2745 ns_draw_box (r, abs (thickness),
2746 ns_lookup_indexed_color (face->box_color, s->f),
2747 left_p, right_p);
2748 }
2749 else
2750 {
2751 ns_draw_relief (r, abs (thickness), s->face->box == FACE_RAISED_BOX,
2752 1, 1, left_p, right_p, s);
2753 }
2754}
2755
2756
2757static void
2758ns_maybe_dumpglyphs_background (struct glyph_string *s, char force_p)
2759/* --------------------------------------------------------------------------
2760 Modeled after x_draw_glyph_string_background, which draws BG in
2761 certain cases. Others are left to the text rendering routine.
2762 -------------------------------------------------------------------------- */
2763{
2764 NSTRACE (ns_maybe_dumpglyphs_background);
2765
2766 if (!s->background_filled_p/* || s->hl == DRAW_MOUSE_FACE*/)
2767 {
2768 int box_line_width = max (s->face->box_line_width, 0);
2769 if (FONT_HEIGHT (s->font) < s->height - 2 * box_line_width
2770 || s->font_not_found_p || s->extends_to_end_of_line_p || force_p)
2771 {
2772 struct face *face;
2773 if (s->hl == DRAW_MOUSE_FACE)
2774 {
2775 face = FACE_FROM_ID
2776 (s->f, FRAME_NS_DISPLAY_INFO (s->f)->mouse_face_face_id);
2777 if (!face)
2778 face = FACE_FROM_ID (s->f, MOUSE_FACE_ID);
2779 }
2780 else
2781 face = FACE_FROM_ID (s->f, s->first_glyph->face_id);
2782 if (!face->stipple)
45d325c4 2783 [(NS_FACE_BACKGROUND (face) != 0
edfda783
AR
2784 ? ns_lookup_indexed_color (NS_FACE_BACKGROUND (face), s->f)
2785 : FRAME_BACKGROUND_COLOR (s->f)) set];
2786 else
2787 {
2788 struct ns_display_info *dpyinfo = FRAME_NS_DISPLAY_INFO (s->f);
2789 [[dpyinfo->bitmaps[face->stipple-1].img stippleMask] set];
2790 }
2791
2792 if (s->hl != DRAW_CURSOR)
2793 {
2794 NSRect r = NSMakeRect (s->x, s->y + box_line_width,
2795 s->background_width,
2796 s->height-2*box_line_width);
2797
2798 /* expand full-width row over internal borders */
2799 if (s->row->full_width_p)
2800 {
2801 int fibw = FRAME_INTERNAL_BORDER_WIDTH (s->f);
2802 if (r.origin.y <= fibw+1 + box_line_width)
2803 {
2804 r.size.height += r.origin.y;
2805 r.origin.y = 0;
2806 }
2807 if (r.origin.x <= fibw+1)
2808 {
2809 r.size.width += 2*r.origin.x;
2810 r.origin.x = 0;
2811 }
2812 if (FRAME_PIXEL_WIDTH (s->f) - (r.origin.x + r.size.width)
2813 <= fibw+1)
2814 r.size.width += fibw;
2815 }
2816
2817 NSRectFill (r);
2818 }
2819
2820 s->background_filled_p = 1;
2821 }
2822 }
2823}
2824
2825
2826static void
2827ns_dumpglyphs_image (struct glyph_string *s, NSRect r)
2828/* --------------------------------------------------------------------------
2829 Renders an image and associated borders.
2830 -------------------------------------------------------------------------- */
2831{
2832 EmacsImage *img = s->img->pixmap;
2833 int box_line_vwidth = max (s->face->box_line_width, 0);
2834 int x = s->x, y = s->ybase - image_ascent (s->img, s->face, &s->slice);
2835 int bg_x, bg_y, bg_height;
2836 int th;
2837 char raised_p;
2838 NSRect br;
2839
2840 NSTRACE (ns_dumpglyphs_image);
2841
2842 if (s->face->box != FACE_NO_BOX
2843 && s->first_glyph->left_box_line_p && s->slice.x == 0)
2844 x += abs (s->face->box_line_width);
2845
2846 bg_x = x;
2847 bg_y = s->slice.y == 0 ? s->y : s->y + box_line_vwidth;
2848 bg_height = s->height;
2849 /* other terms have this, but was causing problems w/tabbar mode */
2850 /* - 2 * box_line_vwidth; */
2851
2852 if (s->slice.x == 0) x += s->img->hmargin;
2853 if (s->slice.y == 0) y += s->img->vmargin;
2854
2855 /* Draw BG: if we need larger area than image itself cleared, do that,
2856 otherwise, since we composite the image under NS (instead of mucking
2857 with its background color), we must clear just the image area. */
2858 [ns_lookup_indexed_color (NS_FACE_BACKGROUND
2859 (FACE_FROM_ID (s->f, s->first_glyph->face_id)), s->f) set];
2860
2861 if (bg_height > s->slice.height || s->img->hmargin || s->img->vmargin
2862 || s->img->mask || s->img->pixmap == 0 || s->width != s->background_width)
2863 {
2864 br = NSMakeRect (bg_x, bg_y, s->background_width, bg_height);
2865 s->background_filled_p = 1;
2866 }
2867 else
2868 {
2869 br = NSMakeRect (x, y, s->slice.width, s->slice.height);
2870 }
2871
2872 /* expand full-width row over internal borders */
2873 if (s->row->full_width_p)
2874 {
2875 int fibw = FRAME_INTERNAL_BORDER_WIDTH (s->f);
2876 if (br.origin.y <= fibw+1 + box_line_vwidth)
2877 {
2878 br.size.height += br.origin.y;
2879 br.origin.y = 0;
2880 }
2881 if (br.origin.x <= fibw+1 + box_line_vwidth)
2882 {
2883 br.size.width += br.origin.x;
2884 br.origin.x = 0;
2885 }
2886 if (FRAME_PIXEL_WIDTH (s->f) - (br.origin.x + br.size.width) <= fibw+1)
2887 br.size.width += fibw;
2888 }
2889
2890 NSRectFill (br);
2891
2892 /* Draw the image.. do we need to draw placeholder if img ==nil? */
2893 if (img != nil)
2894 [img compositeToPoint: NSMakePoint (x, y + s->slice.height)
2895 operation: NSCompositeSourceOver];
2896
2897 /* Draw relief, if requested */
2898 if (s->img->relief || s->hl ==DRAW_IMAGE_RAISED || s->hl ==DRAW_IMAGE_SUNKEN)
2899 {
2900 if (s->hl == DRAW_IMAGE_SUNKEN || s->hl == DRAW_IMAGE_RAISED)
2901 {
2902 th = tool_bar_button_relief >= 0 ?
2903 tool_bar_button_relief : DEFAULT_TOOL_BAR_BUTTON_RELIEF;
2904 raised_p = (s->hl == DRAW_IMAGE_RAISED);
2905 }
2906 else
2907 {
2908 th = abs (s->img->relief);
2909 raised_p = (s->img->relief > 0);
2910 }
2911
2912 r.origin.x = x - th;
2913 r.origin.y = y - th;
2914 r.size.width = s->slice.width + 2*th-1;
2915 r.size.height = s->slice.height + 2*th-1;
2916 ns_draw_relief (r, th, raised_p,
2917 s->slice.y == 0,
2918 s->slice.y + s->slice.height == s->img->height,
2919 s->slice.x == 0,
2920 s->slice.x + s->slice.width == s->img->width, s);
2921 }
2922}
2923
2924
2925static void
2926ns_draw_glyph_string (struct glyph_string *s)
2927/* --------------------------------------------------------------------------
2928 External (RIF): Main draw-text call.
2929 -------------------------------------------------------------------------- */
2930{
df2142db 2931 /* TODO (optimize): focus for box and contents draw */
edfda783
AR
2932 NSRect r[2];
2933 int n;
2934 char box_drawn_p = 0;
2935
2936 NSTRACE (ns_draw_glyph_string);
2937
f2f7f42c 2938 if (s->next && s->right_overhang && !s->for_overlaps/* && s->hl != DRAW_CURSOR*/)
edfda783 2939 {
f2f7f42c
AR
2940 int width;
2941 struct glyph_string *next;
2942
2943 for (width = 0, next = s->next; next;
2944 width += next->width, next = next->next)
2945 if (next->first_glyph->type != IMAGE_GLYPH)
2946 {
2947 n = ns_get_glyph_string_clip_rect (s->next, r);
2948 ns_focus (s->f, r, n);
2949 ns_maybe_dumpglyphs_background (s->next, 1);
2950 ns_unfocus (s->f);
2951 next->num_clips = 0;
2952 }
edfda783
AR
2953 }
2954
2955 if (!s->for_overlaps && s->face->box != FACE_NO_BOX
2956 && (s->first_glyph->type == CHAR_GLYPH
2957 || s->first_glyph->type == COMPOSITE_GLYPH))
2958 {
2959 n = ns_get_glyph_string_clip_rect (s, r);
2960 ns_focus (s->f, r, n);
2961 ns_maybe_dumpglyphs_background (s, 1);
2962 ns_dumpglyphs_box_or_relief (s);
2963 ns_unfocus (s->f);
2964 box_drawn_p = 1;
2965 }
2966
2967 switch (s->first_glyph->type)
2968 {
2969
2970 case IMAGE_GLYPH:
2971 n = ns_get_glyph_string_clip_rect (s, r);
2972 ns_focus (s->f, r, n);
2973 ns_dumpglyphs_image (s, r[0]);
2974 ns_unfocus (s->f);
2975 break;
2976
2977 case STRETCH_GLYPH:
2978 if (!s->background_filled_p)
2979 {
2980 *r = NSMakeRect (s->x, s->y, s->background_width, s->height);
2981
2982 if (!s->row->full_width_p)
2983 {
2984 /* truncate to avoid overwriting fringe and/or scrollbar */
2985 int overrun = max (0, (s->x + s->background_width)
2986 - (WINDOW_BOX_RIGHT_EDGE_X (s->w)
2987 - WINDOW_RIGHT_FRINGE_WIDTH (s->w)));
2988 r[0].size.width -= overrun;
2989
df2142db
AR
2990 /* XXX: Try to work between problem where a stretch glyph on
2991 a partially-visible bottom row will clear part of the
2992 modeline, and another where list-buffers headers and similar
2993 rows erroneously have visible_height set to 0. Not sure
2994 where this is coming from as other terms seem not to show. */
edfda783
AR
2995 r[0].size.height = min (s->height, s->row->visible_height);
2996 }
2997
2998 /* expand full-width rows over internal borders */
2999 else
3000 {
3001 r[0] = ns_fix_rect_ibw (r[0], FRAME_INTERNAL_BORDER_WIDTH (s->f),
3002 FRAME_PIXEL_WIDTH (s->f));
3003 }
3004
3005 /* NOTE: under NS this is NOT used to draw cursors, but we must avoid
3006 overwriting cursor (usually when cursor on a tab) */
3007 if (s->hl == DRAW_CURSOR)
3008 {
3009 r[0].origin.x += s->width;
3010 r[0].size.width -= s->width;
3011 }
3012
3013 ns_focus (s->f, r, 1);
3014 [ns_lookup_indexed_color (NS_FACE_BACKGROUND
3015 (FACE_FROM_ID (s->f, s->first_glyph->face_id)), s->f) set];
3016 NSRectFill (r[0]);
3017 ns_unfocus (s->f);
3018 s->background_filled_p = 1;
3019 }
3020 break;
3021
3022 case CHAR_GLYPH:
3023 case COMPOSITE_GLYPH:
3024 n = ns_get_glyph_string_clip_rect (s, r);
3025 ns_focus (s->f, r, n);
3026
7e279d89
KH
3027 if (s->for_overlaps || (s->cmp_from > 0
3028 && ! s->first_glyph->u.cmp.automatic))
edfda783
AR
3029 s->background_filled_p = 1;
3030 else /* 1 */
3031 ns_maybe_dumpglyphs_background
3032 (s, s->first_glyph->type == COMPOSITE_GLYPH);
3033
3034 ns_tmp_flags = s->hl == DRAW_CURSOR ? NS_DUMPGLYPH_CURSOR :
3035 (s->hl == DRAW_MOUSE_FACE ? NS_DUMPGLYPH_MOUSEFACE :
3036 (s->for_overlaps ? NS_DUMPGLYPH_FOREGROUND :
3037 NS_DUMPGLYPH_NORMAL));
3038 ns_tmp_font = (struct nsfont_info *)s->face->font;
15034960
AR
3039 if (ns_tmp_font == NULL)
3040 ns_tmp_font = (struct nsfont_info *)FRAME_FONT (s->f);
edfda783
AR
3041
3042 ns_tmp_font->font.driver->draw
3043 (s, 0, s->nchars, s->x, s->y,
3044 (ns_tmp_flags == NS_DUMPGLYPH_NORMAL && !s->background_filled_p)
3045 || ns_tmp_flags == NS_DUMPGLYPH_MOUSEFACE);
3046
3047 ns_unfocus (s->f);
3048 break;
3049
3050 default:
3051 abort ();
3052 }
3053
3054 /* Draw box if not done already. */
3055 if (!s->for_overlaps && !box_drawn_p && s->face->box != FACE_NO_BOX)
3056 {
3057 n = ns_get_glyph_string_clip_rect (s, r);
3058 ns_focus (s->f, r, n);
3059 ns_dumpglyphs_box_or_relief (s);
3060 ns_unfocus (s->f);
3061 }
3062
f2f7f42c 3063 s->num_clips = 0;
edfda783
AR
3064}
3065
3066
3067
3068/* ==========================================================================
3069
3070 Event loop
3071
3072 ========================================================================== */
3073
3074
3075static void
3076ns_send_appdefined (int value)
3077/* --------------------------------------------------------------------------
3078 Internal: post an appdefined event which EmacsApp-sendEvent will
3079 recognize and take as a command to halt the event loop.
3080 -------------------------------------------------------------------------- */
3081{
3082 /*NSTRACE (ns_send_appdefined); */
3083
3084 /* Only post this event if we haven't already posted one. This will end
3085 the [NXApp run] main loop after having processed all events queued at
3086 this moment. */
3087 if (send_appdefined)
3088 {
3089 NSEvent *nxev;
3090
3091 /* We only need one NX_APPDEFINED event to stop NXApp from running. */
3092 send_appdefined = NO;
3093
3094 /* Don't need wakeup timer any more */
3095 if (timed_entry)
3096 {
3097 [timed_entry invalidate];
3098 [timed_entry release];
3099 timed_entry = nil;
3100 }
3101
3102 /* Ditto for file descriptor poller */
3103 if (fd_entry)
3104 {
3105 [fd_entry invalidate];
3106 [fd_entry release];
3107 fd_entry = nil;
3108 }
3109
3110 nxev = [NSEvent otherEventWithType: NSApplicationDefined
3111 location: NSMakePoint (0, 0)
3112 modifierFlags: 0
3113 timestamp: 0
3114 windowNumber: [[NSApp mainWindow] windowNumber]
3115 context: [NSApp context]
3116 subtype: 0
3117 data1: value
3118 data2: 0];
3119
3120 /* Post an application defined event on the event queue. When this is
3121 received the [NXApp run] will return, thus having processed all
3122 events which are currently queued. */
3123 [NSApp postEvent: nxev atStart: NO];
3124 }
3125}
3126
3127
3128static int
3129ns_read_socket (struct terminal *terminal, int expected,
3130 struct input_event *hold_quit)
3131/* --------------------------------------------------------------------------
3132 External (hook): Post an event to ourself and keep reading events until
3133 we read it back again. In effect process all events which were waiting.
3134 23: Now we have to manage the event buffer ourselves.
3135 -------------------------------------------------------------------------- */
3136{
3137 struct input_event ev;
3138 int nevents;
3139 static NSDate *lastCheck = nil;
3140/* NSTRACE (ns_read_socket); */
3141
3142 if (interrupt_input_blocked)
3143 {
3144 interrupt_input_pending = 1;
3145 return -1;
3146 }
3147
3148 interrupt_input_pending = 0;
3149 BLOCK_INPUT;
3150
3151#ifdef COCOA_EXPERIMENTAL_CTRL_G
3152 /* causes Feval to abort; unclear on why this isn't in calling code */
3153 ++handling_signal;
3154#endif
3155
3156 n_emacs_events_pending = 0;
3157 EVENT_INIT (ev);
3158 emacs_event = &ev;
3159 q_event_ptr = hold_quit;
3160
3161 /* we manage autorelease pools by allocate/reallocate each time around
3162 the loop; strict nesting is occasionally violated but seems not to
3163 matter.. earlier methods using full nesting caused major memory leaks */
3164 [outerpool release];
3165 outerpool = [[NSAutoreleasePool alloc] init];
3166
3167 /* If have pending open-file requests, attend to the next one of those. */
3168 if (ns_pending_files && [ns_pending_files count] != 0
f2f7f42c 3169 && [(EmacsApp *)NSApp openFile: [ns_pending_files objectAtIndex: 0]])
edfda783
AR
3170 {
3171 [ns_pending_files removeObjectAtIndex: 0];
3172 }
3173 /* Deal with pending service requests. */
3174 else if (ns_pending_service_names && [ns_pending_service_names count] != 0
15034960
AR
3175 && [(EmacsApp *)
3176 NSApp fulfillService: [ns_pending_service_names objectAtIndex: 0]
3177 withArg: [ns_pending_service_args objectAtIndex: 0]])
edfda783
AR
3178 {
3179 [ns_pending_service_names removeObjectAtIndex: 0];
3180 [ns_pending_service_args removeObjectAtIndex: 0];
3181 }
3182 else
3183 {
3184 /* Run and wait for events. We must always send one NX_APPDEFINED event
3185 to ourself, otherwise [NXApp run] will never exit. */
3186 send_appdefined = YES;
3187
df2142db 3188 /* TODO: from termhooks.h: */
edfda783
AR
3189 /* XXX Please note that a non-zero value of EXPECTED only means that
3190 there is available input on at least one of the currently opened
3191 terminal devices -- but not necessarily on this device.
3192 Therefore, in most cases EXPECTED should be simply ignored. */
3193 /* However, if in ns_select, this is called from gobble_input, which
3194 appears to set it correctly for our purposes, and always assuming
3195 !expected causes 100% CPU usage. */
3196 if (!inNsSelect || !expected)
3197 {
3198 /* Post an application defined event on the event queue. When this is
3199 received the [NXApp run] will return, thus having processed all
3200 events which are currently queued, if any. */
3201 ns_send_appdefined (-1);
3202 }
3203
3204 [NSApp run];
3205 }
3206
3207 nevents = n_emacs_events_pending;
3208 n_emacs_events_pending = 0;
3209 emacs_event = q_event_ptr = NULL;
3210
3211#ifdef COCOA_EXPERIMENTAL_CTRL_G
3212 --handling_signal;
3213#endif
3214 UNBLOCK_INPUT;
3215 return nevents;
3216}
3217
3218
3219int
3220ns_select (int nfds, fd_set *readfds, fd_set *writefds,
3221 fd_set *exceptfds, struct timeval *timeout)
3222/* --------------------------------------------------------------------------
3223 Replacement for select, checking for events
3224 -------------------------------------------------------------------------- */
3225{
3226 int result;
3227 double time;
3228 NSEvent *ev;
3229/* NSTRACE (ns_select); */
3230
3231 if (NSApp == nil /* || ([NSApp isActive] == NO &&
3232 [NSApp nextEventMatchingMask:NSAnyEventMask untilDate:nil
3233 inMode:NSDefaultRunLoopMode dequeue:NO] == nil) */)
3234 return select (nfds, readfds, writefds, exceptfds, timeout);
3235
3236 /* Save file descriptor set, which gets overwritten in calls to select ()
3237 Note, this is called from process.c, and only readfds is ever set */
3238 if (readfds)
3239 {
3240 memcpy (&select_readfds, readfds, sizeof (fd_set));
3241 select_nfds = nfds;
3242 }
3243 else
3244 select_nfds = 0;
3245
3246 /* Try an initial select for pending data on input files */
3247 select_timeout.tv_sec = select_timeout.tv_usec = 0;
3248 result = select (nfds, readfds, writefds, exceptfds, &select_timeout);
3249 if (result)
3250 return result;
3251
3252 /* if (!timeout || timed_entry || fd_entry)
3253 fprintf (stderr, "assertion failed: timeout null or timed_entry/fd_entry non-null in ns_select\n"); */
3254
3255 /* set a timeout and run the main AppKit event loop while continuing
3256 to monitor the files */
3257 time = ((double) timeout->tv_sec) + ((double) timeout->tv_usec)/1000000.0;
3258 timed_entry = [[NSTimer scheduledTimerWithTimeInterval: time
3259 target: NSApp
3260 selector: @selector (timeout_handler:)
3261 userInfo: 0
3262 repeats: YES] /* for safe removal */
3263 retain];
3264
3265 /* set a periodic task to try the select () again */
3266 fd_entry = [[NSTimer scheduledTimerWithTimeInterval: 0.1
3267 target: NSApp
3268 selector: @selector (fd_handler:)
3269 userInfo: 0
3270 repeats: YES]
3271 retain];
3272
edfda783
AR
3273 /* Let Application dispatch events until it receives an event of the type
3274 NX_APPDEFINED, which should only be sent by timeout_handler. */
3275 inNsSelect = 1;
3276 gobble_input (timeout ? 1 : 0);
3277 ev = last_appdefined_event;
3278 inNsSelect = 0;
3279
3280 if (ev)
3281 {
3282 int t;
3283 if ([ev type] != NSApplicationDefined)
3284 abort ();
3285
3286 t = [ev data1];
3287 last_appdefined_event = 0;
3288
3289 if (t == -2)
3290 {
3291 /* The NX_APPDEFINED event we received was a timeout. */
3292 return 0;
3293 }
3294 else if (t == -1)
3295 {
3296 /* The NX_APPDEFINED event we received was the result of
3297 at least one real input event arriving. */
3298 errno = EINTR;
3299 return -1;
3300 }
3301 else
3302 {
3303 /* Received back from select () in fd_handler; copy the results */
3304 if (readfds)
3305 memcpy (readfds, &select_readfds, sizeof (fd_set));
3306 return t;
3307 }
3308 }
3309 /* never reached, shut compiler up */
3310 return 0;
3311}
3312
3313
3314
3315/* ==========================================================================
3316
3317 Scrollbar handling
3318
3319 ========================================================================== */
3320
3321
3322static void
3323ns_set_vertical_scroll_bar (struct window *window,
3324 int portion, int whole, int position)
3325/* --------------------------------------------------------------------------
3326 External (hook): Update or add scrollbar
3327 -------------------------------------------------------------------------- */
3328{
3329 Lisp_Object win;
3330 NSRect r, v;
3331 struct frame *f = XFRAME (WINDOW_FRAME (window));
3332 EmacsView *view = FRAME_NS_VIEW (f);
3333 int window_y, window_height;
3334 BOOL barOnVeryLeft, barOnVeryRight;
3335 int top, left, height, width, sb_width, sb_left;
3336 EmacsScroller *bar;
3337static int count = 0;
3338
3339 /* optimization; display engine sends WAY too many of these.. */
3340 if (!NILP (window->vertical_scroll_bar))
3341 {
3342 bar = XNS_SCROLL_BAR (window->vertical_scroll_bar);
3343 if ([bar checkSamePosition: position portion: portion whole: whole])
3344 {
3345 if (view->scrollbarsNeedingUpdate == 0)
3346 {
3347 if (!windows_or_buffers_changed)
3348 return;
3349 }
3350 else
3351 view->scrollbarsNeedingUpdate--;
3352 }
3353 }
3354
3355 NSTRACE (ns_set_vertical_scroll_bar);
3356
3357 /* Get dimensions. */
3358 window_box (window, -1, 0, &window_y, 0, &window_height);
3359 top = window_y;
3360 height = window_height;
3361 width = WINDOW_CONFIG_SCROLL_BAR_COLS (window) * FRAME_COLUMN_WIDTH (f);
3362 left = WINDOW_SCROLL_BAR_AREA_X (window);
3363
3364 if (top < 5) /* top scrollbar adjustment */
3365 {
3366 top -= FRAME_INTERNAL_BORDER_WIDTH (f);
3367 height += FRAME_INTERNAL_BORDER_WIDTH (f);
3368 }
3369
3370 /* allow for displaying a skinnier scrollbar than char area allotted */
3371 sb_width = (WINDOW_CONFIG_SCROLL_BAR_WIDTH (window) > 0) ?
3372 WINDOW_CONFIG_SCROLL_BAR_WIDTH (window) : width;
3373
3374 barOnVeryLeft = left < 5;
3375 barOnVeryRight = FRAME_PIXEL_WIDTH (f) - left - width < 5;
3376 sb_left = left + FRAME_INTERNAL_BORDER_WIDTH (f)
3377 * (barOnVeryLeft ? -1 : (barOnVeryRight ? 1 : 0));
3378
3379 r = NSMakeRect (sb_left, top, sb_width, height);
3380 /* the parent view is flipped, so we need to flip y value */
3381 v = [view frame];
3382 r.origin.y = (v.size.height - r.size.height - r.origin.y);
3383
3384 XSETWINDOW (win, window);
3385 BLOCK_INPUT;
3386
3387 /* we want at least 5 lines to display a scrollbar */
3388 if (WINDOW_TOTAL_LINES (window) < 5)
3389 {
3390 if (!NILP (window->vertical_scroll_bar))
3391 {
3392 bar = XNS_SCROLL_BAR (window->vertical_scroll_bar);
3393 [bar removeFromSuperview];
3394 window->vertical_scroll_bar = Qnil;
3395 }
3396 ns_clear_frame_area (f, sb_left, top, width, height);
3397 UNBLOCK_INPUT;
3398 return;
3399 }
3400
3401 if (NILP (window->vertical_scroll_bar))
3402 {
3403 ns_clear_frame_area (f, sb_left, top, width, height);
3404 bar = [[EmacsScroller alloc] initFrame: r window: win];
3405 window->vertical_scroll_bar = make_save_value (bar, 0);
3406 }
3407 else
3408 {
3409 NSRect oldRect;
3410 bar = XNS_SCROLL_BAR (window->vertical_scroll_bar);
3411 oldRect = [bar frame];
3412 r.size.width = oldRect.size.width;
3413 if (FRAME_LIVE_P (f) && !NSEqualRects (oldRect, r))
3414 {
3415 if (oldRect.origin.x != r.origin.x)
3416 ns_clear_frame_area (f, sb_left, top, width, height);
3417 [bar setFrame: r];
3418 }
3419 }
3420
3421 [bar setPosition: position portion: portion whole: whole];
3422 UNBLOCK_INPUT;
3423}
3424
3425
3426static void
3427ns_condemn_scroll_bars (struct frame *f)
3428/* --------------------------------------------------------------------------
3429 External (hook): arrange for all frame's scrollbars to be removed
3430 at next call to judge_scroll_bars, except for those redeemed.
3431 -------------------------------------------------------------------------- */
3432{
3433 int i;
3434 id view;
3435 NSArray *subviews = [[FRAME_NS_VIEW (f) superview] subviews];
3436
3437 NSTRACE (ns_condemn_scroll_bars);
3438
3439 for (i =[subviews count]-1; i >= 0; i--)
3440 {
3441 view = [subviews objectAtIndex: i];
3442 if ([view isKindOfClass: [EmacsScroller class]])
3443 [view condemn];
3444 }
3445}
3446
3447
3448static void
3449ns_redeem_scroll_bar (struct window *window)
3450/* --------------------------------------------------------------------------
3451 External (hook): arrange to spare this window's scrollbar
3452 at next call to judge_scroll_bars.
3453 -------------------------------------------------------------------------- */
3454{
3455 id bar;
3456 NSTRACE (ns_redeem_scroll_bar);
3457 if (!NILP (window->vertical_scroll_bar))
3458 {
3459 bar =XNS_SCROLL_BAR (window->vertical_scroll_bar);
3460 [bar reprieve];
3461 }
3462}
3463
3464
3465static void
3466ns_judge_scroll_bars (struct frame *f)
3467/* --------------------------------------------------------------------------
3468 External (hook): destroy all scrollbars on frame that weren't
3469 redeemed after call to condemn_scroll_bars.
3470 -------------------------------------------------------------------------- */
3471{
3472 int i;
3473 id view;
3474 NSArray *subviews = [[FRAME_NS_VIEW (f) superview] subviews];
3475 NSTRACE (ns_judge_scroll_bars);
3476 for (i =[subviews count]-1; i >= 0; i--)
3477 {
3478 view = [subviews objectAtIndex: i];
3479 if (![view isKindOfClass: [EmacsScroller class]]) continue;
3480 [view judge];
3481 }
3482}
3483
3484
3485
3486/* ==========================================================================
3487
3488 Miscellaneous, mainly stubbed-out functions added in 23
3489
3490 ========================================================================== */
3491
3492
3493void
3494x_wm_set_icon_position (struct frame *f, int icon_x, int icon_y)
3495{
3496}
3497
3498
3499
3500/* ==========================================================================
3501
3502 Initialization
3503
3504 ========================================================================== */
3505
15034960 3506static Lisp_Object ns_string_to_lispmod (const char *s)
edfda783
AR
3507/* --------------------------------------------------------------------------
3508 Convert modifier name to lisp symbol
3509 -------------------------------------------------------------------------- */
3510{
3511 if (!strncmp (SDATA (SYMBOL_NAME (Qmeta)), s, 10))
3512 return Qmeta;
3513 else if (!strncmp (SDATA (SYMBOL_NAME (Qsuper)), s, 10))
3514 return Qsuper;
3515 else if (!strncmp (SDATA (SYMBOL_NAME (Qcontrol)), s, 10))
3516 return Qcontrol;
3517 else if (!strncmp (SDATA (SYMBOL_NAME (Qalt)), s, 10))
3518 return Qalt;
3519 else if (!strncmp (SDATA (SYMBOL_NAME (Qhyper)), s, 10))
3520 return Qhyper;
3521 else if (!strncmp (SDATA (SYMBOL_NAME (Qnone)), s, 10))
3522 return Qnone;
3523 else
3524 return Qnil;
3525}
3526
3527
3528static Lisp_Object ns_mod_to_lisp (int m)
3529/* --------------------------------------------------------------------------
3530 Convert modifier code (see lisp.h) to lisp symbol
3531 -------------------------------------------------------------------------- */
3532{
3533 if (m == CHAR_META)
3534 return Qmeta;
3535 else if (m == CHAR_SUPER)
3536 return Qsuper;
3537 else if (m == CHAR_CTL)
3538 return Qcontrol;
3539 else if (m == CHAR_ALT)
3540 return Qalt;
3541 else if (m == CHAR_HYPER)
3542 return Qhyper;
3543 else /* if (m == 0) */
3544 return Qnone;
3545}
3546
3547
3548static void
3549ns_set_default_prefs ()
3550/* --------------------------------------------------------------------------
3551 Initialize preference variables to defaults
3552 -------------------------------------------------------------------------- */
3553{
3554 ns_alternate_modifier = Qmeta;
3555 ns_command_modifier = Qsuper;
3556 ns_control_modifier = Qcontrol;
3557 ns_function_modifier = Qnone;
edfda783 3558 ns_expand_space = make_float (0.0);
5c976973
AR
3559 ns_antialias_text = Qt;
3560 ns_antialias_threshold = 10.0; /* not exposed to lisp side */
3561 ns_use_qd_smoothing = Qnil;
3562 ns_use_system_highlight_color = Qt;
edfda783
AR
3563}
3564
3565
3566static void
3567ns_default (const char *parameter, Lisp_Object *result,
3568 Lisp_Object yesval, Lisp_Object noval,
3569 BOOL is_float, BOOL is_modstring)
3570/* --------------------------------------------------------------------------
3571 Check a parameter value in user's preferences
3572 -------------------------------------------------------------------------- */
3573{
3574 const char *value;
3575
3576 if ( (value =[[[NSUserDefaults standardUserDefaults]
3577 stringForKey: [NSString stringWithUTF8String: parameter]]
3578 UTF8String]) )
3579 {
3580 double f;
3581 char *pos;
3582 if (strcasecmp (value, "YES") == 0)
3583 *result = yesval;
3584 else if (strcasecmp (value, "NO") == 0)
3585 *result = noval;
3586 else if (is_float && (f = strtod (value, &pos), pos != value))
3587 *result = make_float (f);
3588 else if (is_modstring && value)
3589 *result = ns_string_to_lispmod (value);
3590 else fprintf (stderr,
3591 "Bad value for default \"%s\": \"%s\"\n", parameter, value);
3592 }
3593}
3594
3595
3596void
3597ns_initialize_display_info (struct ns_display_info *dpyinfo)
3598/* --------------------------------------------------------------------------
3599 Initialize global info and storage for display.
3600 -------------------------------------------------------------------------- */
3601{
3602 NSScreen *screen = [NSScreen mainScreen];
3603 NSWindowDepth depth = [screen depth];
3604
3605 dpyinfo->width = [screen frame].size.width;
3606 dpyinfo->height = [screen frame].size.height;
3607 dpyinfo->resx = 72.27; /* used 75.0, but this makes pt == pixel, expected */
3608 dpyinfo->resy = 72.27;
3609 dpyinfo->color_p = ![NSDeviceWhiteColorSpace isEqualToString:
3610 NSColorSpaceFromDepth (depth)]
3611 && ![NSCalibratedWhiteColorSpace isEqualToString:
3612 NSColorSpaceFromDepth (depth)];
3613 dpyinfo->n_planes = NSBitsPerPixelFromDepth (depth);
3614 dpyinfo->image_cache = make_image_cache ();
facfbbbd
SM
3615 dpyinfo->color_table
3616 = (struct ns_color_table *)xmalloc (sizeof (struct ns_color_table));
edfda783
AR
3617 dpyinfo->color_table->colors = NULL;
3618 dpyinfo->root_window = 42; /* a placeholder.. */
3619
3620 dpyinfo->mouse_face_mouse_frame = NULL;
3621 dpyinfo->mouse_face_deferred_gc = 0;
3622 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
3623 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
3624 dpyinfo->mouse_face_face_id = DEFAULT_FACE_ID;
3625 dpyinfo->mouse_face_window = dpyinfo->mouse_face_overlay = Qnil;
3626 dpyinfo->mouse_face_hidden = 0;
3627
3628 dpyinfo->mouse_face_mouse_x = dpyinfo->mouse_face_mouse_y = 0;
3629 dpyinfo->mouse_face_defer = 0;
3630
9e50ff0c 3631 dpyinfo->x_highlight_frame = dpyinfo->x_focus_frame = NULL;
edfda783
AR
3632
3633 dpyinfo->n_fonts = 0;
3634 dpyinfo->smallest_font_height = 1;
3635 dpyinfo->smallest_char_width = 1;
3636}
3637
3638
3639/* 23: Needed as new part of display engine; this and next define public
3640 functions in this file (well, many of them, anyway). */
3641/* x_... are generic versions in xdisp.c that we, and other terms, get away
3642 with using despite presence in the "system dependent" redisplay
3643 interface. In addition, many of the ns_ methods have code that is
3644 shared with all terms, indicating need for further refactoring. */
3645extern frame_parm_handler ns_frame_parm_handlers[];
3646static struct redisplay_interface ns_redisplay_interface =
3647{
3648 ns_frame_parm_handlers,
3649 x_produce_glyphs, /*generic OK */
3650 x_write_glyphs, /*generic OK */
3651 x_insert_glyphs, /*generic OK */
3652 x_clear_end_of_line, /*generic OK */
3653 ns_scroll_run, /*23 */
3654 ns_after_update_window_line, /*23: added */
3655 ns_update_window_begin, /*23: split from update_begin */
3656 ns_update_window_end, /*23: split from update_end */
3657 x_cursor_to, /*generic OK */
3658 ns_flush,
3659 0, /* flush_display_optional */
3660 x_clear_window_mouse_face, /*generic OK */
3661 x_get_glyph_overhangs, /*23: generic OK */
3662 x_fix_overlapping_area, /*generic OK */
3663 ns_draw_fringe_bitmap, /*23 */
df2142db 3664 0, /* define_fringe_bitmap */ /* FIXME: simplify ns_draw_fringe_bitmap */
edfda783
AR
3665 0, /* destroy_fringe_bitmap */
3666 ns_compute_glyph_string_overhangs, /*23 */
3667 ns_draw_glyph_string, /*23: interface to nsfont.m */
3668 ns_define_frame_cursor, /*23 */
3669 ns_clear_frame_area, /*23 */
3670 ns_draw_window_cursor, /*23: revamped ns_dumpcursor */
3671 ns_draw_vertical_window_border,
3672 ns_shift_glyphs_for_insert
3673};
3674
3675
3676static void
3677ns_delete_display (struct ns_display_info *dpyinfo)
3678{
df2142db 3679 /* TODO... */
edfda783
AR
3680}
3681
3682
3683/* This function is called when the last frame on a display is deleted. */
3684static void
3685ns_delete_terminal (struct terminal *terminal)
3686{
3687 struct ns_display_info *dpyinfo = terminal->display_info.ns;
3688 int i;
3689
3690 /* Protect against recursive calls. Fdelete_frame in
3691 delete_terminal calls us back when it deletes our last frame. */
3692 if (!terminal->name)
3693 return;
3694
3695 BLOCK_INPUT;
3696
3697 x_destroy_all_bitmaps (dpyinfo);
3698 ns_delete_display (dpyinfo);
3699 UNBLOCK_INPUT;
3700}
3701
3702
3703static struct terminal *
3704ns_create_terminal (struct ns_display_info *dpyinfo)
3705/* --------------------------------------------------------------------------
3706 Set up use of NS before we make the first connection.
3707 -------------------------------------------------------------------------- */
3708{
3709 struct terminal *terminal;
3710
3711 NSTRACE (ns_create_terminal);
3712
3713 terminal = create_terminal ();
3714
3715 terminal->type = output_ns;
3716 terminal->display_info.ns = dpyinfo;
3717 dpyinfo->terminal = terminal;
3718
3719 terminal->rif = &ns_redisplay_interface;
3720
3721 terminal->clear_frame_hook = ns_clear_frame;
3722 terminal->ins_del_lines_hook = 0; /* 23: vestigial? */
3723 terminal->delete_glyphs_hook = 0; /* 23: vestigial? */
3724 terminal->ring_bell_hook = ns_ring_bell;
3725 terminal->reset_terminal_modes_hook = ns_reset_terminal_modes;
3726 terminal->set_terminal_modes_hook = ns_set_terminal_modes;
3727 terminal->update_begin_hook = ns_update_begin;
3728 terminal->update_end_hook = ns_update_end;
3729 terminal->set_terminal_window_hook = NULL; /* 23: vestigial? */
3730 terminal->read_socket_hook = ns_read_socket;
3731 terminal->frame_up_to_date_hook = ns_frame_up_to_date;
3732 terminal->mouse_position_hook = ns_mouse_position;
3733 terminal->frame_rehighlight_hook = ns_frame_rehighlight;
3734 terminal->frame_raise_lower_hook = ns_frame_raise_lower;
3735
3736 terminal->fullscreen_hook = 0; /*XTfullscreen_hook;//23.50 */
3737
3738 terminal->set_vertical_scroll_bar_hook = ns_set_vertical_scroll_bar;
3739 terminal->condemn_scroll_bars_hook = ns_condemn_scroll_bars;
3740 terminal->redeem_scroll_bar_hook = ns_redeem_scroll_bar;
3741 terminal->judge_scroll_bars_hook = ns_judge_scroll_bars;
3742
3743 terminal->delete_frame_hook = x_destroy_window;
3744 terminal->delete_terminal_hook = ns_delete_terminal;
3745
3746 terminal->scroll_region_ok = 1;
3747 terminal->char_ins_del_ok = 1;
3748 terminal->line_ins_del_ok = 1;
3749 terminal->fast_clear_end_of_line = 1;
3750 terminal->memory_below_frame = 0;
3751
3752 return terminal;
3753}
3754
3755
3756void
3757ns_initialize ()
3758/* --------------------------------------------------------------------------
3759 Mainly vestigial under NS now that ns_create_terminal () does most things.
3760 -------------------------------------------------------------------------- */
3761{
3762 baud_rate = 38400;
3763 Fset_input_interrupt_mode (Qt);
3764}
3765
3766
3767struct ns_display_info *
3768ns_term_init (Lisp_Object display_name)
3769/* --------------------------------------------------------------------------
3770 Start the Application and get things rolling.
3771 -------------------------------------------------------------------------- */
3772{
3773 extern Lisp_Object Fset_input_mode (Lisp_Object, Lisp_Object,
3774 Lisp_Object, Lisp_Object);
3775 struct terminal *terminal;
3776 struct ns_display_info *dpyinfo;
3777 static int ns_initialized = 0;
3778 Lisp_Object tmp;
3779
3780 NSTRACE (ns_term_init);
3781
3782 /* count object allocs (About, click icon); on OS X use ObjectAlloc tool */
3783 /*GSDebugAllocationActive (YES); */
3784 BLOCK_INPUT;
1baa6236 3785 handling_signal = 0;
edfda783
AR
3786
3787 if (!ns_initialized)
3788 {
3789 ns_initialize ();
3790 ns_initialized = 1;
3791 }
3792
3793 ns_pending_files = [[NSMutableArray alloc] init];
3794 ns_pending_service_names = [[NSMutableArray alloc] init];
3795 ns_pending_service_args = [[NSMutableArray alloc] init];
3796
3797 /* Start app and create the main menu, window, view.
3798 Needs to be here because ns_initialize_display_info () uses AppKit classes.
3799 The view will then ask the NSApp to stop and return to Emacs. */
3800 [EmacsApp sharedApplication];
3801 if (NSApp == nil)
3802 return NULL;
3803 [NSApp setDelegate: NSApp];
3804
3805 /* debugging: log all notifications */
3806 /* [[NSNotificationCenter defaultCenter] addObserver: NSApp
3807 selector: @selector (logNotification:)
3808 name: nil object: nil]; */
3809
3810 dpyinfo = (struct ns_display_info *)xmalloc (sizeof (struct ns_display_info));
3811 bzero (dpyinfo, sizeof (struct ns_display_info));
3812
3813 ns_initialize_display_info (dpyinfo);
3814 terminal = ns_create_terminal (dpyinfo);
3815
3816 terminal->kboard = (KBOARD *) xmalloc (sizeof (KBOARD));
3817 init_kboard (terminal->kboard);
3818 terminal->kboard->Vwindow_system = Qns;
3819 terminal->kboard->next_kboard = all_kboards;
3820 all_kboards = terminal->kboard;
3821 /* Don't let the initial kboard remain current longer than necessary.
3822 That would cause problems if a file loaded on startup tries to
3823 prompt in the mini-buffer. */
3824 if (current_kboard == initial_kboard)
3825 current_kboard = terminal->kboard;
3826 terminal->kboard->reference_count++;
3827
9e50ff0c
DN
3828 dpyinfo->next = x_display_list;
3829 x_display_list = dpyinfo;
edfda783
AR
3830
3831 /* Put it on ns_display_name_list */
3832 ns_display_name_list = Fcons (Fcons (display_name, Qnil),
3833 ns_display_name_list);
3834/* ns_display_name_list = Fcons (Fcons (display_name,
3835 Fcons (Qnil, dpyinfo->xrdb)),
3836 ns_display_name_list); */
3837 dpyinfo->name_list_element = XCAR (ns_display_name_list);
3838
3839 /* Set the name of the terminal. */
3840 terminal->name = (char *) xmalloc (SBYTES (display_name) + 1);
3841 strncpy (terminal->name, SDATA (display_name), SBYTES (display_name));
3842 terminal->name[SBYTES (display_name)] = 0;
3843
3844 UNBLOCK_INPUT;
3845
3846 /* Read various user defaults. */
3847 ns_set_default_prefs ();
3848 ns_default ("AlternateModifier", &ns_alternate_modifier,
3849 Qnil, Qnil, NO, YES);
3850 if (NILP (ns_alternate_modifier))
3851 ns_alternate_modifier = Qmeta;
3852 ns_default ("CommandModifier", &ns_command_modifier,
3853 Qnil, Qnil, NO, YES);
3854 if (NILP (ns_command_modifier))
3855 ns_command_modifier = Qsuper;
3856 ns_default ("ControlModifier", &ns_control_modifier,
3857 Qnil, Qnil, NO, YES);
3858 if (NILP (ns_control_modifier))
3859 ns_control_modifier = Qcontrol;
3860 ns_default ("FunctionModifier", &ns_function_modifier,
3861 Qnil, Qnil, NO, YES);
3862 if (NILP (ns_function_modifier))
3863 ns_function_modifier = Qnone;
edfda783
AR
3864 ns_default ("ExpandSpace", &ns_expand_space,
3865 make_float (0.5), make_float (0.0), YES, NO);
3866 ns_default ("GSFontAntiAlias", &ns_antialias_text,
facfbbbd 3867 Qt, Qnil, NO, NO);
edfda783
AR
3868 tmp = Qnil;
3869 ns_default ("AppleAntiAliasingThreshold", &tmp,
3870 make_float (10.0), make_float (6.0), YES, NO);
3871 ns_antialias_threshold = NILP (tmp) ? 10.0 : XFLOATINT (tmp);
3872 ns_default ("UseQuickdrawSmoothing", &ns_use_qd_smoothing,
facfbbbd 3873 Qt, Qnil, NO, NO);
edfda783 3874 ns_default ("UseSystemHighlightColor", &ns_use_system_highlight_color,
facfbbbd 3875 Qt, Qnil, NO, NO);
5c976973 3876 if (EQ (ns_use_system_highlight_color, Qt))
edfda783
AR
3877 {
3878 ns_selection_color = [[NSUserDefaults standardUserDefaults]
3879 stringForKey: @"AppleHighlightColor"];
3880 if (ns_selection_color == nil)
3881 ns_selection_color = NS_SELECTION_COLOR_DEFAULT;
3882 }
3883 else
3884 ns_selection_color = NS_SELECTION_COLOR_DEFAULT;
3885
3886 {
7ded3383 3887 NSColorList *cl = [NSColorList colorListNamed: @"Emacs"];
edfda783
AR
3888
3889 if ( cl == nil )
3890 {
7ded3383
AR
3891 Lisp_Object color_file, color_map, color;
3892 int r,g,b;
3893 unsigned long c;
3894 char *name;
3895
3896 color_file = Fexpand_file_name (build_string ("rgb.txt"),
3897 Fsymbol_value (intern ("data-directory")));
3898 if (NILP (Ffile_readable_p (color_file)))
3899 fatal ("Could not find %s.\n", SDATA (color_file));
3900
3901 color_map = Fx_load_color_file (color_file);
3902 if (NILP (color_map))
3903 fatal ("Could not read %s.\n", SDATA (color_file));
3904
3905 cl = [[NSColorList alloc] initWithName: @"Emacs"];
3906 for ( ; CONSP (color_map); color_map = XCDR (color_map))
edfda783 3907 {
7ded3383
AR
3908 color = XCAR (color_map);
3909 name = SDATA (XCAR (color));
3910 c = XINT (XCDR (color));
3911 [cl setColor:
3912 [NSColor colorWithCalibratedRed: RED_FROM_ULONG (c) / 255.0
3913 green: GREEN_FROM_ULONG (c) / 255.0
3914 blue: BLUE_FROM_ULONG (c) / 255.0
3915 alpha: 1.0]
3916 forKey: [NSString stringWithUTF8String: name]];
edfda783 3917 }
edfda783
AR
3918 [cl writeToFile: nil];
3919 }
3920 }
3921
3922 {
3923 char c[128];
3924#ifdef NS_IMPL_GNUSTEP
3925 strncpy (c, gnustep_base_version, sizeof (c));
3926#else
3927 /*PSnextrelease (128, c); */
3928 snprintf (c, sizeof (c), "%g", NSAppKitVersionNumber);
3929#endif
3930 Vwindow_system_version = build_string (c);
3931 }
3932
3933 delete_keyboard_wait_descriptor (0);
3934
3935/* Set up OS X app menu */
3936#ifdef NS_IMPL_COCOA
3937 {
3938 NSMenu *appMenu;
15034960 3939 NSMenuItem *item;
edfda783
AR
3940 /* set up the application menu */
3941 svcsMenu = [[EmacsMenu alloc] initWithTitle: @"Services"];
3942 [svcsMenu setAutoenablesItems: NO];
3943 appMenu = [[EmacsMenu alloc] initWithTitle: @"Emacs"];
3944 [appMenu setAutoenablesItems: NO];
3945 mainMenu = [[EmacsMenu alloc] initWithTitle: @""];
4e622592 3946 dockMenu = [[EmacsMenu alloc] initWithTitle: @""];
edfda783
AR
3947
3948 [appMenu insertItemWithTitle: @"About Emacs"
3949 action: @selector (orderFrontStandardAboutPanel:)
3950 keyEquivalent: @""
3951 atIndex: 0];
3952 [appMenu insertItem: [NSMenuItem separatorItem] atIndex: 1];
3953 [appMenu insertItemWithTitle: @"Preferences..."
3954 action: @selector (showPreferencesWindow:)
3955 keyEquivalent: @","
3956 atIndex: 2];
3957 [appMenu insertItem: [NSMenuItem separatorItem] atIndex: 3];
3958 item = [appMenu insertItemWithTitle: @"Services"
3959 action: @selector (menuDown:)
3960 keyEquivalent: @""
3961 atIndex: 4];
3962 [appMenu setSubmenu: svcsMenu forItem: item];
3963/* [svcsMenu setSupercell: item]; */
3964 [appMenu insertItem: [NSMenuItem separatorItem] atIndex: 5];
3965 [appMenu insertItemWithTitle: @"Hide Emacs"
3966 action: @selector (hide:)
3967 keyEquivalent: @"h"
3968 atIndex: 6];
3969 item = [appMenu insertItemWithTitle: @"Hide Others"
3970 action: @selector (hideOtherApplications:)
3971 keyEquivalent: @"h"
3972 atIndex: 7];
3973 [item setKeyEquivalentModifierMask: NSCommandKeyMask | NSAlternateKeyMask];
3974 [appMenu insertItem: [NSMenuItem separatorItem] atIndex: 8];
3975 [appMenu insertItemWithTitle: @"Quit Emacs"
3976 action: @selector (terminate:)
3977 keyEquivalent: @"q"
3978 atIndex: 9];
3979
3980 item = [mainMenu insertItemWithTitle: @"Emacs"
3981 action: @selector (menuDown:)
3982 keyEquivalent: @""
3983 atIndex: 0];
3984 [mainMenu setSubmenu: appMenu forItem: item];
4e622592
AR
3985 [dockMenu insertItemWithTitle: @"New Frame"
3986 action: @selector (newFrame:)
3987 keyEquivalent: @""
3988 atIndex: 0];
edfda783
AR
3989
3990 [NSApp setMainMenu: mainMenu];
3991 [NSApp setAppleMenu: appMenu];
3992 [NSApp setServicesMenu: svcsMenu];
3993 /* Needed at least on Cocoa, to get dock menu to show windows */
3994 [NSApp setWindowsMenu: [[NSMenu alloc] init]];
3995 }
3996#endif /* MAC OS X menu setup */
3997
3998 [NSApp run];
3999
4000 return dpyinfo;
4001}
4002
4003
4004extern Lisp_Object Vauto_save_list_file_name;
4005void
4006ns_term_shutdown (int sig)
4007{
4008 /* code not reached in emacs.c after this is called by shut_down_emacs: */
4009 if (STRINGP (Vauto_save_list_file_name))
6882361b 4010 unlink (SDATA (Vauto_save_list_file_name));
edfda783
AR
4011
4012 ns_shutdown_properly = YES;
4013 [NSApp terminate: NSApp];
4014}
4015
4016
edfda783
AR
4017/* ==========================================================================
4018
4019 EmacsApp implementation
4020
4021 ========================================================================== */
4022
4023
4024@implementation EmacsApp
4025
4026- (void)logNotification: (NSNotification *)notification
4027{
4028 const char *name = [[notification name] UTF8String];
4029 if (!strstr (name, "Update") && !strstr (name, "NSMenu")
4030 && !strstr (name, "WindowNumber"))
4031 NSLog (@"notification: '%@'", [notification name]);
4032}
4033
4034
4035- (void)sendEvent: (NSEvent *)theEvent
4036/* --------------------------------------------------------------------------
4037 Events posted by ns_send_appdefined interrupt the run loop here
4038 -------------------------------------------------------------------------- */
4039{
4040 int type = [theEvent type];
4041 NSWindow *window = [theEvent window];
4042/* NSTRACE (sendEvent); */
4043/*fprintf (stderr, "received event of type %d\n", [theEvent type]); */
4044
4045 if (type == NSCursorUpdate && window == nil)
4046 {
4047 fprintf (stderr, "Dropping external cursor update event.\n");
4048 return;
4049 }
4050
4051#ifdef NS_IMPL_COCOA
4052 /* pass mouse down in resize handle and subsequent drags directly to
4053 EmacsWindow so we can generate continuous redisplays */
4054 if (ns_in_resize)
4055 {
4056 if (type == NSLeftMouseDragged)
4057 {
4058 [window mouseDragged: theEvent];
4059 return;
4060 }
4061 else if (type == NSLeftMouseUp)
4062 {
4063 [window mouseUp: theEvent];
4064 return;
4065 }
4066 }
4067 else if (type == NSLeftMouseDown)
4068 {
4069 NSRect r = ns_resize_handle_rect (window);
4070 if (NSPointInRect ([theEvent locationInWindow], r))
4071 {
4072 ns_in_resize = YES;
4073 [window mouseDown: theEvent];
4074 return;
4075 }
4076 }
4077#endif
4078
4079 if (type == NSApplicationDefined)
4080 {
4081 last_appdefined_event = theEvent;
4082 [self stop: self];
4083 }
4084
4085 [super sendEvent: theEvent];
4086}
4087
4088
4089- (void)showPreferencesWindow: (id)sender
4090{
4091 if (prefsController == nil)
4092 prefsController = [[EmacsPrefsController alloc] init];
4093 [prefsController showForFrame: SELECTED_FRAME ()];
4094}
4095
4096
4e622592
AR
4097- (void)newFrame: (id)sender
4098{
4099 struct frame *emacsframe = SELECTED_FRAME ();
4100 NSEvent *theEvent = [NSApp currentEvent];
4101
4102 if (!emacs_event)
4103 return;
4104 emacs_event->kind = NON_ASCII_KEYSTROKE_EVENT;
4105 emacs_event->code = KEY_NS_NEW_FRAME;
4106 emacs_event->modifiers = 0;
4107 EV_TRAILER (theEvent);
4108}
4109
4110
15034960
AR
4111/* Open a file (used by below, after going into queue read by ns_read_socket) */
4112- (BOOL) openFile: (NSString *)fileName
4113{
4114 struct frame *emacsframe = SELECTED_FRAME ();
4115 NSEvent *theEvent = [NSApp currentEvent];
4116
4117 if (!emacs_event)
4118 return NO;
4119
4120 emacs_event->kind = NON_ASCII_KEYSTROKE_EVENT;
4121 emacs_event->code = KEY_NS_OPEN_FILE_LINE;
4122 ns_input_file = append2 (ns_input_file, build_string ([fileName UTF8String]));
4123 ns_input_line = Qnil; /* can be start or cons start,end */
4124 emacs_event->modifiers =0;
4125 EV_TRAILER (theEvent);
4126
4127 return YES;
4128}
4129
4130
edfda783
AR
4131/* **************************************************************************
4132
4133 EmacsApp delegate implementation
4134
4135 ************************************************************************** */
4136
4137- (void)applicationDidFinishLaunching: (NSNotification *)notification
4138/* --------------------------------------------------------------------------
4139 When application is loaded, terminate event loop in ns_term_init
4140 -------------------------------------------------------------------------- */
4141{
4142 NSTRACE (applicationDidFinishLaunching);
4143 [NSApp setServicesProvider: NSApp];
4144 ns_send_appdefined (-2);
4145}
4146
4147
4148- (void) terminate: (id)sender
4149{
4150 BLOCK_INPUT;
4151 if (ns_shutdown_properly)
4152 [super terminate: sender];
4153 else
4154 {
4155/* Fkill_emacs (Qnil); */
4156 ns_shutdown_properly = YES;
4157 Feval (Fcons (intern ("save-buffers-kill-emacs"), Qnil));
4158 }
4159 UNBLOCK_INPUT;
4160}
4161
4162
4163- (NSApplicationTerminateReply)applicationShouldTerminate: (id)sender
4164{
4165 if (ns_shutdown_properly)
4166 return NSTerminateNow;
4167
4168 Lisp_Object contents = list3 (build_string ("Exit requested. Would you like to Save Buffers and Exit, or Cancel the request?"),
4169 Fcons (build_string ("Cancel"), Qnil),
4170 Fcons (build_string ("Save and Exit"), Qt));
4171 Lisp_Object res = ns_popup_dialog (Qt, contents, Qnil);
712b2de1 4172fprintf (stderr, "res = %d\n", EQ (res, Qt)); /* FIXME */
facfbbbd 4173 if (EQ (res, Qt))
edfda783
AR
4174 {
4175 Feval (Fcons (intern ("save-buffers-kill-emacs"), Qnil));
4176 return NSTerminateNow;
4177 }
4178 return NSTerminateCancel;
4179}
4180
4181
edfda783
AR
4182/* Notification from the Workspace to open a file */
4183- (BOOL)application: sender openFile: (NSString *)file
4184{
4185 [ns_pending_files addObject: file];
4186 return YES;
4187}
4188
4189
4190/* Open a file as a temporary file */
4191- (BOOL)application: sender openTempFile: (NSString *)file
4192{
4193 [ns_pending_files addObject: file];
4194 return YES;
4195}
4196
4197
4198/* Notification from the Workspace to open a file noninteractively (?) */
4199- (BOOL)application: sender openFileWithoutUI: (NSString *)file
4200{
4201 [ns_pending_files addObject: file];
4202 return YES;
4203}
4204
4205
4206/* Notification from the Workspace to open multiple files */
4207- (void)application: sender openFiles: (NSArray *)fileList
4208{
4209 NSEnumerator *files = [fileList objectEnumerator];
4210 NSString *file;
4211 while ((file = [files nextObject]) != nil)
4212 [ns_pending_files addObject: file];
98a2166a 4213
f2f7f42c
AR
4214/* TODO: when GNUstep implements this (and we require that version of
4215 GNUstep), remove. */
4216#ifndef NS_IMPL_GNUSTEP
15034960 4217 [self replyToOpenOrPrint: NSApplicationDelegateReplySuccess];
f2f7f42c 4218#endif /* !NS_IMPL_GNUSTEP */
98a2166a 4219
edfda783
AR
4220}
4221
4e622592
AR
4222
4223/* Handle dock menu requests. */
4224- (NSMenu *)applicationDockMenu: (NSApplication *) sender
4225{
4226 return dockMenu;
4227}
4228
4229
df2142db 4230/* TODO: these may help w/IO switching btwn terminal and NSApp */
edfda783
AR
4231- (void)applicationDidBecomeActive: (NSNotification *)notification
4232{
4233}
4234- (void)applicationDidResignActive: (NSNotification *)notification
4235{
4236 ns_send_appdefined (-1);
4237}
4238
4239
4240
4241/* ==========================================================================
4242
4243 EmacsApp aux handlers for managing event loop
4244
4245 ========================================================================== */
4246
4247
4248- (void)timeout_handler: (NSTimer *)timedEntry
4249/* --------------------------------------------------------------------------
4250 The timeout specified to ns_select has passed.
4251 -------------------------------------------------------------------------- */
4252{
4253 /*NSTRACE (timeout_handler); */
4254 ns_send_appdefined (-2);
4255}
4256
4257extern void update_window_cursor (struct window *w, int on);
4258
edfda783
AR
4259- (void)fd_handler: (NSTimer *) fdEntry
4260/* --------------------------------------------------------------------------
4261 Check data waiting on file descriptors and terminate if so
4262 -------------------------------------------------------------------------- */
4263{
4264 int result;
4265 /* NSTRACE (fd_handler); */
4266
4267 if (select_nfds == 0)
4268 return;
4269
4270 memcpy (&t_readfds, &select_readfds, sizeof (fd_set));
4271
4272 select_timeout.tv_sec = select_timeout.tv_usec = 0;
4273 result = select (select_nfds, &t_readfds, (SELECT_TYPE *)0, (SELECT_TYPE *)0,
4274 &select_timeout);
4275 if (result)
4276 {
4277 memcpy (&select_readfds, &t_readfds, sizeof (fd_set));
4278 ns_send_appdefined (result);
4279 }
4280}
4281
4282
4283
4284/* ==========================================================================
4285
4286 Service provision
4287
4288 ========================================================================== */
4289
4290/* called from system: queue for next pass through event loop */
4291- (void)requestService: (NSPasteboard *)pboard
4292 userData: (NSString *)userData
4293 error: (NSString **)error
4294{
4295 [ns_pending_service_names addObject: userData];
4296 [ns_pending_service_args addObject: [NSString stringWithUTF8String:
4297 SDATA (ns_string_from_pasteboard (pboard))]];
4298}
4299
4300
4301/* called from ns_read_socket to clear queue */
4302- (BOOL)fulfillService: (NSString *)name withArg: (NSString *)arg
4303{
4304 struct frame *emacsframe = SELECTED_FRAME ();
4305 NSEvent *theEvent = [NSApp currentEvent];
4306
4307 if (!emacs_event)
4308 return NO;
4309
4310 emacs_event->kind = NON_ASCII_KEYSTROKE_EVENT;
4311 emacs_event->code = KEY_NS_SPI_SERVICE_CALL;
4312 ns_input_spi_name = build_string ([name UTF8String]);
4313 ns_input_spi_arg = build_string ([arg UTF8String]);
4314 emacs_event->modifiers = EV_MODIFIERS (theEvent);
4315 EV_TRAILER (theEvent);
4316
4317 return YES;
4318}
4319
4320
4321@end /* EmacsApp */
4322
4323
4324
4325/* ==========================================================================
4326
4327 EmacsView implementation
4328
4329 ========================================================================== */
4330
4331
4332@implementation EmacsView
4333
4334/* needed to inform when window closed from LISP */
4335- (void) setWindowClosing: (BOOL)closing
4336{
4337 windowClosing = closing;
4338}
4339
4340
4341- (void)dealloc
4342{
4343 NSTRACE (EmacsView_dealloc);
4344 [toolbar release];
4345 [super dealloc];
4346}
4347
4348
4349/* called on font panel selection */
4350- (void)changeFont: (id)sender
4351{
4352 NSEvent *e =[[self window] currentEvent];
4353 struct face *face =FRAME_DEFAULT_FACE (emacsframe);
4354 id newFont;
4355 float size;
4356
4357 NSTRACE (changeFont);
4358 if (!emacs_event)
4359 return;
4360
4361 if (newFont = [sender convertFont:
4362 ((struct nsfont_info *)face->font)->nsfont])
4363 {
4364 emacs_event->kind = NON_ASCII_KEYSTROKE_EVENT;
4365 emacs_event->modifiers = 0;
4366 emacs_event->code = KEY_NS_CHANGE_FONT;
4367
4368 size = [newFont pointSize];
ed96cde8 4369 ns_input_fontsize = make_number (lrint (size));
edfda783
AR
4370 ns_input_font = build_string ([[newFont familyName] UTF8String]);
4371 EV_TRAILER (e);
4372 }
4373}
4374
4375
4376- (BOOL)acceptsFirstResponder
4377{
4378 NSTRACE (acceptsFirstResponder);
4379 return YES;
4380}
4381
4382
4383- (void)resetCursorRects
4384{
4385 NSRect visible = [self visibleRect];
4386 NSCursor *currentCursor = FRAME_POINTER_TYPE (emacsframe);
4387 NSTRACE (resetCursorRects);
4388
4389 if (currentCursor == nil)
4390 currentCursor = [NSCursor arrowCursor];
4391
4392 if (!NSIsEmptyRect (visible))
4393 [self addCursorRect: visible cursor: currentCursor];
4394 [currentCursor setOnMouseEntered: YES];
4395}
4396
4397
4398/*****************************************************************************/
4399/* Keyboard handling. */
4400#define NS_KEYLOG 0
4401
4402- (void)keyDown: (NSEvent *)theEvent
4403{
4404 struct ns_display_info *dpyinfo = FRAME_NS_DISPLAY_INFO (emacsframe);
4405 int code;
4406 unsigned fnKeysym = 0;
4407 int flags;
4408 static NSMutableArray *nsEvArray;
4409 static BOOL firstTime = YES;
4410
4411 NSTRACE (keyDown);
4412
4413 /* Rhapsody and OS X give up and down events for the arrow keys */
4414 if ([theEvent type] != NSKeyDown)
4415 return;
4416
4417 if (!emacs_event)
4418 return;
4419
edfda783
AR
4420 if (![[self window] isKeyWindow])
4421 {
df2142db
AR
4422 /* XXX: Using NO_SOCK_SIGIO like Carbon causes a condition in which,
4423 when Emacs display updates a different frame from the current one,
4424 and temporarily selects it, then processes some interrupt-driven
4425 input (dispnew.c:3878), OS will send the event to the correct NSWindow,
4426 but for some reason that window has its first responder set to the
4427 NSView most recently updated (I guess), which is not the correct one.
4428 UPDATE: After multi-TTY merge this happens even w/o NO_SOCK_SIGIO */
edfda783 4429 if ([[theEvent window] isKindOfClass: [EmacsWindow class]])
15034960 4430 [(EmacsView *)[[theEvent window] delegate] keyDown: theEvent];
edfda783
AR
4431 return;
4432 }
edfda783
AR
4433
4434 if (nsEvArray == nil)
4435 nsEvArray = [[NSMutableArray alloc] initWithCapacity: 1];
4436
4437 [NSCursor setHiddenUntilMouseMoves: YES];
4438
4439 if (dpyinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight))
4440 {
4441 clear_mouse_face (dpyinfo);
4442 dpyinfo->mouse_face_hidden = 1;
4443 }
4444
4445 if (!processingCompose)
4446 {
4447 code = ([[theEvent charactersIgnoringModifiers] length] == 0) ?
4448 0 : [[theEvent charactersIgnoringModifiers] characterAtIndex: 0];
4449 /* (Carbon way: [theEvent keyCode]) */
4450
4451 /* is it a "function key"? */
4452 fnKeysym = ns_convert_key (code);
4453 if (fnKeysym)
4454 {
4455 /* COUNTERHACK: map 'Delete' on upper-right main KB to 'Backspace',
4456 because Emacs treats Delete and KP-Delete same (in simple.el). */
4457 if (fnKeysym == 0xFFFF && [theEvent keyCode] == 0x33)
4458 code = 0xFF08; /* backspace */
4459 else
4460 code = fnKeysym;
4461 }
4462
4463 /* are there modifiers? */
4464 emacs_event->modifiers = 0;
4465 flags = [theEvent modifierFlags];
4466
4467 if (flags & NSHelpKeyMask)
4468 emacs_event->modifiers |= hyper_modifier;
4469
4470 if (flags & NSShiftKeyMask)
4471 emacs_event->modifiers |= shift_modifier;
4472
4473 if (flags & NSCommandKeyMask)
4474 {
6882361b 4475 emacs_event->modifiers |= parse_solitary_modifier (ns_command_modifier);
edfda783
AR
4476 /* if super (default), take input manager's word so things like
4477 dvorak / qwerty layout work */
4478 if (EQ (ns_command_modifier, Qsuper)
4479 && !fnKeysym
4480 && [[theEvent characters] length] != 0)
4481 {
df2142db 4482 /* XXX: the code we get will be unshifted, so if we have
edfda783
AR
4483 a shift modifier, must convert ourselves */
4484 if (!(flags & NSShiftKeyMask))
4485 code = [[theEvent characters] characterAtIndex: 0];
4486#if 0
4487 /* this is ugly and also requires linking w/Carbon framework
4488 (for LMGetKbdType) so for now leave this rare (?) case
4489 undealt with.. in future look into CGEvent methods */
4490 else
4491 {
4492 long smv = GetScriptManagerVariable (smKeyScript);
4493 Handle uchrHandle = GetResource
4494 ('uchr', GetScriptVariable (smv, smScriptKeys));
4495 UInt32 dummy = 0;
4496 UCKeyTranslate ((UCKeyboardLayout*)*uchrHandle,
4497 [[theEvent characters] characterAtIndex: 0],
4498 kUCKeyActionDisplay,
4499 (flags & ~NSCommandKeyMask) >> 8,
4500 LMGetKbdType (), kUCKeyTranslateNoDeadKeysMask,
4501 &dummy, 1, &dummy, &code);
4502 code &= 0xFF;
4503 }
4504#endif
4505 }
4506 }
4507
4508 if (flags & NSControlKeyMask)
6882361b 4509 emacs_event->modifiers |= parse_solitary_modifier (ns_control_modifier);
edfda783
AR
4510
4511 if (flags & NS_FUNCTION_KEY_MASK && !fnKeysym)
6882361b 4512 emacs_event->modifiers |= parse_solitary_modifier (ns_function_modifier);
edfda783
AR
4513
4514 if (flags & NSAlternateKeyMask) /* default = meta */
4515 {
4516 if (EQ (ns_alternate_modifier, Qnone) && !fnKeysym)
4517 { /* accept pre-interp alt comb */
4518 if ([[theEvent characters] length] > 0)
4519 code = [[theEvent characters] characterAtIndex: 0];
4520 /*HACK: clear lone shift modifier to stop next if from firing */
4521 if (emacs_event->modifiers == shift_modifier)
4522 emacs_event->modifiers = 0;
4523 }
4524 else
6882361b 4525 emacs_event->modifiers |= parse_solitary_modifier (ns_alternate_modifier);
edfda783
AR
4526 }
4527
4528/*fprintf (stderr,"code =%x\tfnKey =%x\tflags = %x\tmods = %x\n",code,fnKeysym,flags,emacs_event->modifiers); */
4529
4530 /* if it was a function key or had modifiers, pass it directly to emacs */
4531 if (fnKeysym || (emacs_event->modifiers
4532 && [[theEvent charactersIgnoringModifiers] length] > 0))
4533/*[[theEvent characters] length] */
4534 {
4535 emacs_event->kind = NON_ASCII_KEYSTROKE_EVENT;
4536 if (code < 0x20)
4537 code |= (1<<28)|(3<<16);
4538 else if (code == 0x7f)
4539 code |= (1<<28)|(3<<16);
4540 else if (!fnKeysym)
4541 emacs_event->kind = code > 0xFF
4542 ? MULTIBYTE_CHAR_KEYSTROKE_EVENT : ASCII_KEYSTROKE_EVENT;
4543
4544 emacs_event->code = code;
4545 EV_TRAILER (theEvent);
4546 return;
4547 }
4548 }
4549
4550 /* if we get here we should send the key for input manager processing */
4551 if (firstTime && [[NSInputManager currentInputManager]
4552 wantsToDelayTextChangeNotifications] == NO)
4553 fprintf (stderr,
4554 "Emacs: WARNING: TextInput mgr wants marked text to be permanent!\n");
4555 firstTime = NO;
4556
4557 if (NS_KEYLOG && !processingCompose)
4558 fprintf (stderr, "Begin compose sequence.\n");
4559
4560 processingCompose = YES;
4561 [nsEvArray addObject: theEvent];
4562 [self interpretKeyEvents: nsEvArray];
4563 [nsEvArray removeObject: theEvent];
4564}
4565
4566
4567/* <NSTextInput> implementation (called through super interpretKeyEvents:]). */
4568
4569
4570/* <NSTextInput>: called through when done composing */
4571- (void)insertText: (id)aString
4572{
4573 int code;
4574 int len = [(NSString *)aString length];
4575 int i;
4576
4577if (NS_KEYLOG) NSLog (@"insertText '%@'\tlen = %d", aString, len);
4578 processingCompose = NO;
4579
4580 if (!emacs_event)
4581 return;
4582
4583 /* first, clear any working text */
4584 if (workingText != nil)
4585 [self deleteWorkingText];
4586
4587 /* now insert the string as keystrokes */
4588 for (i =0; i<len; i++)
4589 {
4590 code = [aString characterAtIndex: i];
df2142db 4591 /* TODO: still need this? */
edfda783
AR
4592 if (code == 0x2DC)
4593 code = '~'; /* 0x7E */
4594 emacs_event->modifiers = 0;
facfbbbd
SM
4595 emacs_event->kind
4596 = code > 0xFF ? MULTIBYTE_CHAR_KEYSTROKE_EVENT : ASCII_KEYSTROKE_EVENT;
edfda783
AR
4597 emacs_event->code = code;
4598 EV_TRAILER ((id)nil);
4599 }
4600}
4601
4602
4603/* <NSTextInput>: inserts display of composing characters */
4604- (void)setMarkedText: (id)aString selectedRange: (NSRange)selRange
4605{
4606 NSString *str = [aString respondsToSelector: @selector (string)] ?
4607 [aString string] : aString;
4608 if (NS_KEYLOG)
4609 NSLog (@"setMarkedText '%@' len =%d range %d from %d", str, [str length],
4610 selRange.length, selRange.location);
4611
4612 if (workingText != nil)
4613 [self deleteWorkingText];
4614 if ([str length] == 0)
4615 return;
4616
4617 if (!emacs_event)
4618 return;
4619
4620 processingCompose = YES;
4621 workingText = [str copy];
4622 ns_working_text = build_string ([workingText UTF8String]);
4623
4624 /* if in "echo area", not true minibuffer, can't show chars in interactive
4625 mode, so call using eval; otherwise we send a key event, which was the
4626 original way this was done */
4627 if (!EQ (Feval (Fcons (intern ("ns-in-echo-area"), Qnil)), Qnil))
4628 {
4629 Feval (Fcons (intern ("ns-echo-working-text"), Qnil));
4630 ns_send_appdefined (-1);
4631 }
4632 else
4633 {
4634 emacs_event->kind = NON_ASCII_KEYSTROKE_EVENT;
4635 emacs_event->code = KEY_NS_INSERT_WORKING_TEXT;
4636 EV_TRAILER ((id)nil);
4637 }
4638}
4639
4640
4641/* delete display of composing characters [not in <NSTextInput>] */
4642- (void)deleteWorkingText
4643{
4644 if (workingText == nil)
4645 return;
4646 if (NS_KEYLOG)
4647 fprintf (stderr, "deleteWorkingText len =%d\n", [workingText length]);
4648 [workingText release];
4649 workingText = nil;
4650 processingCompose = NO;
4651
4652 if (!emacs_event)
4653 return;
4654
4655 if (!EQ (Feval (Fcons (intern ("ns-in-echo-area"), Qnil)), Qnil))
4656 {
4657 Feval (Fcons (intern ("ns-unecho-working-text"), Qnil));
4658 ns_send_appdefined (-1);
4659 }
4660 else
4661 {
4662 emacs_event->kind = NON_ASCII_KEYSTROKE_EVENT;
4663 emacs_event->code = KEY_NS_DELETE_WORKING_TEXT;
4664 EV_TRAILER ((id)nil);
4665 }
4666 }
4667
4668
4669- (BOOL)hasMarkedText
4670{
4671 return workingText != nil;
4672}
4673
4674- (NSRange)markedRange
4675{
4676 NSRange rng = workingText != nil
4677 ? NSMakeRange (0, [workingText length]) : NSMakeRange (NSNotFound, 0);
4678if (NS_KEYLOG) NSLog (@"markedRange request");
4679 return rng;
4680}
4681
4682- (void)unmarkText
4683{
4684if (NS_KEYLOG) NSLog (@"unmark (accept) text");
4685 [self deleteWorkingText];
4686 processingCompose = NO;
4687}
4688
4689/* used to position char selection windows, etc. */
4690- (NSRect)firstRectForCharacterRange: (NSRange)theRange
4691{
4692 NSRect rect;
4693 NSPoint pt;
4694 struct window *win = XWINDOW (FRAME_SELECTED_WINDOW (emacsframe));
4695if (NS_KEYLOG) NSLog (@"firstRectForCharRange request");
4696
4697 rect.size.width = theRange.length * FRAME_COLUMN_WIDTH (emacsframe);
4698 rect.size.height = FRAME_LINE_HEIGHT (emacsframe);
4699 pt.x = WINDOW_TEXT_TO_FRAME_PIXEL_X (win, win->phys_cursor.x);
4700 pt.y = WINDOW_TO_FRAME_PIXEL_Y (win, win->phys_cursor.y
4701 +FRAME_LINE_HEIGHT (emacsframe));
4702
4703 pt = [self convertPoint: pt toView: nil];
4704 pt = [[self window] convertBaseToScreen: pt];
4705 rect.origin = pt;
4706 return rect;
4707}
4708
15034960 4709- (NSInteger)conversationIdentifier
edfda783 4710{
15034960 4711 return (NSInteger)self;
edfda783
AR
4712}
4713
df2142db 4714/* TODO: below here not yet implemented correctly, but may not be needed */
edfda783
AR
4715
4716- (void)doCommandBySelector: (SEL)aSelector
4717{
4718 if (NS_KEYLOG) NSLog (@"Do command by selector: %@",
4719 NSStringFromSelector (aSelector));
4720
4721 if (aSelector == @selector (deleteBackward:))
4722 {
4723 /* happens when user backspaces over an ongoing composition:
4724 throw a 'delete' into the event queue */
4725 if (!emacs_event)
4726 return;
4727 emacs_event->kind = NON_ASCII_KEYSTROKE_EVENT;
4728 emacs_event->code = 0xFF08;
4729 EV_TRAILER ((id)nil);
4730 }
4731}
4732
4733- (NSArray *)validAttributesForMarkedText
4734{
4735 static NSArray *arr = nil;
4736 if (arr == nil) arr = [NSArray new];
4737 /* [[NSArray arrayWithObject: NSUnderlineStyleAttributeName] retain]; */
4738 return arr;
4739}
4740
4741- (NSRange)selectedRange
4742{
4743if (NS_KEYLOG) NSLog (@"selectedRange request");
4744 return NSMakeRange (NSNotFound, 0);
4745}
4746
4747- (unsigned int)characterIndexForPoint: (NSPoint)thePoint
4748{
4749if (NS_KEYLOG) NSLog (@"characterIndexForPoint request");
4750 return 0;
4751}
4752
4753- (NSAttributedString *)attributedSubstringFromRange: (NSRange)theRange
4754{
4755 static NSAttributedString *str = nil;
4756 if (str == nil) str = [NSAttributedString new];
4757if (NS_KEYLOG) NSLog (@"attributedSubstringFromRange request");
4758 return str;
4759}
4760
4761/* End <NSTextInput> impl. */
4762/*****************************************************************************/
4763
4764
4765/* This is what happens when the user presses a mouse button. */
4766- (void)mouseDown: (NSEvent *)theEvent
4767{
4768 NSPoint p = [self convertPoint: [theEvent locationInWindow] fromView: nil];
4769 Lisp_Object window;
4770
4771 NSTRACE (mouseDown);
4772
4773 [self deleteWorkingText];
4774
4775 if (!emacs_event)
4776 return;
4777
4778 last_mouse_frame = emacsframe;
4779 /* appears to be needed to prevent spurious movement events generated on
4780 button clicks */
4781 last_mouse_frame->mouse_moved = 0;
4782
4783 if ([theEvent type] == NSScrollWheel)
4784 {
4785 float delta = [theEvent deltaY];
4786 /* Mac notebooks send wheel events w/delta =0 when trackpad scrolling */
4787 if (delta == 0)
4788 return;
4789 emacs_event->kind = WHEEL_EVENT;
4790 emacs_event->code = 0;
4791 emacs_event->modifiers = EV_MODIFIERS (theEvent) |
4792 ((delta > 0) ? up_modifier : down_modifier);
4793 }
4794 else
4795 {
4796 emacs_event->kind = MOUSE_CLICK_EVENT;
4797 emacs_event->code = EV_BUTTON (theEvent);
4798 emacs_event->modifiers = EV_MODIFIERS (theEvent)
4799 | EV_UDMODIFIERS (theEvent);
4800 }
4801 XSETINT (emacs_event->x, lrint (p.x));
4802 XSETINT (emacs_event->y, lrint (p.y));
4803 EV_TRAILER (theEvent);
4804}
4805
4806
4807- (void)mouseUp: (NSEvent *)theEvent
4808{
4809 NSTRACE (mouseUp);
4810 [self mouseDown: theEvent];
4811}
4812
4813
4814- (void)rightMouseDown: (NSEvent *)theEvent
4815{
4816 NSTRACE (rightMouseDown);
4817 [self mouseDown: theEvent];
4818}
4819
4820
4821- (void)rightMouseUp: (NSEvent *)theEvent
4822{
4823 NSTRACE (rightMouseUp);
4824 [self mouseDown: theEvent];
4825}
4826
4827
4828- (void) scrollWheel: (NSEvent *)theEvent
4829{
4830 NSTRACE (scrollWheel);
4831 [self mouseDown: theEvent];
4832}
4833
4834
4835/* Tell emacs the mouse has moved. */
4836- (void)mouseMoved: (NSEvent *)e
4837{
4838 struct ns_display_info *dpyinfo = FRAME_NS_DISPLAY_INFO (emacsframe);
4839 Lisp_Object frame;
4840
4841 NSTRACE (mouseMoved);
4842
4843 last_mouse_movement_time = EV_TIMESTAMP (e);
facfbbbd
SM
4844 last_mouse_motion_position
4845 = [self convertPoint: [e locationInWindow] fromView: nil];
edfda783
AR
4846
4847 /* update any mouse face */
4848 if (dpyinfo->mouse_face_hidden)
4849 {
4850 dpyinfo->mouse_face_hidden = 0;
4851 clear_mouse_face (dpyinfo);
4852 }
4853
4854 /* tooltip handling */
4855 previous_help_echo_string = help_echo_string;
4856 help_echo_string = Qnil;
4857
4858 if (!note_mouse_movement (emacsframe, last_mouse_motion_position.x,
4859 last_mouse_motion_position.y))
4860 help_echo_string = previous_help_echo_string;
4861
4862 XSETFRAME (frame, emacsframe);
4863 if (!NILP (help_echo_string) || !NILP (previous_help_echo_string))
4864 {
4865 /* NOTE: help_echo_{window,pos,object} are set in xdisp.c
4866 (note_mouse_highlight), which is called through the
4867 note_mouse_movement () call above */
4868 gen_help_event (help_echo_string, frame, help_echo_window,
4869 help_echo_object, help_echo_pos);
4870 }
4871 else
4872 {
4873 help_echo_string = Qnil;
4874 gen_help_event (Qnil, frame, Qnil, Qnil, 0);
4875 }
4876
4877 if (emacsframe->mouse_moved && send_appdefined)
4878 ns_send_appdefined (-1);
4879}
4880
4881
4882- (void)mouseDragged: (NSEvent *)e
4883{
4884 NSTRACE (mouseDragged);
4885 [self mouseMoved: e];
4886}
4887
4888
4889- (void)rightMouseDragged: (NSEvent *)e
4890{
4891 NSTRACE (rightMouseDragged);
4892 [self mouseMoved: e];
4893}
4894
4895
4896- (BOOL)windowShouldClose: (id)sender
4897{
4898 NSEvent *e =[[self window] currentEvent];
4899
4900 NSTRACE (windowShouldClose);
4901 windowClosing = YES;
edfda783
AR
4902 if (!emacs_event)
4903 return NO;
4904 emacs_event->kind = DELETE_WINDOW_EVENT;
4905 emacs_event->modifiers = 0;
4906 emacs_event->code = 0;
4907 EV_TRAILER (e);
4908 /* Don't close this window, let this be done from lisp code. */
4909 return NO;
4910}
4911
4912
4913- (NSSize)windowWillResize: (NSWindow *)sender toSize: (NSSize)frameSize
4914/* normalize frame to gridded text size */
4915{
4916 NSTRACE (windowWillResize);
4917/*fprintf (stderr,"Window will resize: %.0f x %.0f\n",frameSize.width,frameSize.height); */
4918
4919 cols = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (emacsframe,
4920#ifdef NS_IMPL_GNUSTEP
4921 frameSize.width + 3);
4922#else
4923 frameSize.width);
4924#endif
4925 if (cols < MINWIDTH)
4926 cols = MINWIDTH;
4927 frameSize.width = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (emacsframe, cols);
4928
4929 rows = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (emacsframe, frameSize.height
4930#ifdef NS_IMPL_GNUSTEP
4931 - FRAME_NS_TITLEBAR_HEIGHT (emacsframe) + 3
4932 - FRAME_NS_TOOLBAR_HEIGHT (emacsframe));
4933#else
4934 - FRAME_NS_TITLEBAR_HEIGHT (emacsframe)
4935 - FRAME_NS_TOOLBAR_HEIGHT (emacsframe));
4936#endif
4937 if (rows < MINHEIGHT)
4938 rows = MINHEIGHT;
4939 frameSize.height = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (emacsframe, rows)
4940 + FRAME_NS_TITLEBAR_HEIGHT (emacsframe)
4941 + FRAME_NS_TOOLBAR_HEIGHT (emacsframe);
4942#ifdef NS_IMPL_COCOA
4943 {
4944 /* this sets window title to have size in it; the wm does this under GS */
4945 NSRect r = [[self window] frame];
4946 if (r.size.height == frameSize.height && r.size.width == frameSize.width)
4947 {
4948 if (old_title != 0)
4949 {
4950 xfree (old_title);
4951 old_title = 0;
4952 }
4953 }
4954 else
4955 {
4956 char *size_title;
4957 NSWindow *window = [self window];
4958 if (old_title == 0)
4959 {
4960 const char *t = [[[self window] title] UTF8String];
4961 char *pos = strstr (t, " — ");
4962 if (pos)
4963 *pos = '\0';
4964 old_title = (char *) xmalloc (strlen (t) + 1);
4965 strcpy (old_title, t);
4966 }
4967 size_title = xmalloc (strlen (old_title) + 40);
4968 sprintf (size_title, "%s — (%d x %d)", old_title, cols, rows);
4969 [window setTitle: [NSString stringWithUTF8String: size_title]];
4970 [window display];
4971 xfree (size_title);
4972 }
4973 }
4974#endif /* NS_IMPL_COCOA */
4975/*fprintf (stderr," ...size became %.0f x %.0f (%d x %d)\n",frameSize.width,frameSize.height,cols,rows); */
4976
4977 return frameSize;
4978}
4979
4980
4981- (void)windowDidResize: (NSNotification *)notification
4982{
4983 NSWindow *theWindow = [notification object];
4984
4985#ifdef NS_IMPL_GNUSTEP
4986 /* in GNUstep, at least currently, it's possible to get a didResize
4987 without getting a willResize.. therefore we need to act as if we got
4988 the willResize now */
4989 NSSize sz = [theWindow frame].size;
4990 sz = [self windowWillResize: theWindow toSize: sz];
4991#endif /* NS_IMPL_GNUSTEP */
4992
4993 NSTRACE (windowDidResize);
4994/*fprintf (stderr,"windowDidResize: %.0f\n",[theWindow frame].size.height); */
4995
4996#ifdef NS_IMPL_COCOA
4997 if (old_title != 0)
4998 {
4999 xfree (old_title);
5000 old_title = 0;
5001 }
5002#endif /* NS_IMPL_COCOA */
5003
5004 if (cols > 0 && rows > 0)
5005 x_set_window_size (emacsframe, 0, cols, rows);
5006
5007 ns_send_appdefined (-1);
1caf0534 5008
4e622592 5009 /* The following line causes a crash on GNUstep. Adrian Robert
1caf0534
CY
5010 says he doesn't remember why he added this line, but removing it
5011 doesn't seem to cause problems on OSX, either. */
5012#if 0
edfda783 5013 [NSApp stopModal];
1caf0534 5014#endif
edfda783
AR
5015}
5016
5017
5018- (void)windowDidBecomeKey: (NSNotification *)notification
5019{
5020 int val = ns_lisp_to_cursor_type (get_frame_param (emacsframe, Qcursor_type));
5021 struct ns_display_info *dpyinfo = FRAME_NS_DISPLAY_INFO (emacsframe);
9e50ff0c 5022 struct frame *old_focus = dpyinfo->x_focus_frame;
edfda783
AR
5023
5024 NSTRACE (windowDidBecomeKey);
5025
5026 if (emacsframe != old_focus)
9e50ff0c 5027 dpyinfo->x_focus_frame = emacsframe;
edfda783
AR
5028 /*/last_mouse_frame = emacsframe;? */
5029
5030 if (val >= 0)
5031 {
5032 FRAME_NEW_CURSOR (emacsframe) = val;
5033/* x_update_cursor (emacsframe, 1); // will happen in ns_frame_rehighlight */
5034 }
5035
5036 ns_frame_rehighlight (emacsframe);
5037
5038 if (emacs_event)
5039 {
5040 emacs_event->kind = FOCUS_IN_EVENT;
5041 EV_TRAILER ((id)nil);
5042 }
5043}
5044
5045
5046- (void)windowDidResignKey: (NSNotification *)notification
5047{
5048 struct ns_display_info *dpyinfo = FRAME_NS_DISPLAY_INFO (emacsframe);
5049 NSTRACE (windowDidResignKey);
5050
5051 if (!windowClosing && [[self window] isVisible] == YES)
5052 {
5053 FRAME_NEW_CURSOR (emacsframe) = hollow_box;
5054 x_update_cursor (emacsframe, 1);
5055 FRAME_LAST_INACTIVE (emacsframe) = YES;
5056 }
5057
9e50ff0c
DN
5058 if (dpyinfo->x_highlight_frame == emacsframe)
5059 dpyinfo->x_highlight_frame = 0;
5060 if (dpyinfo->x_focus_frame == emacsframe)
5061 dpyinfo->x_focus_frame = 0;
edfda783
AR
5062
5063 if (dpyinfo->mouse_face_mouse_frame == emacsframe)
5064 {
5065 clear_mouse_face (dpyinfo);
5066 dpyinfo->mouse_face_mouse_frame = 0;
5067 }
5068
5069 if (emacs_event)
5070 {
5071 [self deleteWorkingText];
5072 emacs_event->kind = FOCUS_IN_EVENT;
5073 EV_TRAILER ((id)nil);
5074 }
5075}
5076
5077
5078- (void)windowWillMiniaturize: sender
5079{
5080 NSTRACE (windowWillMiniaturize);
5081}
5082
5083
5084- (BOOL)isFlipped
5085{
5086 return YES;
5087}
5088
5089
5090- (BOOL)isOpaque
5091{
5092 return NO;
5093}
5094
5095
5096- initFrameFromEmacs: (struct frame *)f
5097{
5098 NSRect r, wr;
5099 Lisp_Object tem;
5100 NSWindow *win;
5101 NSButton *toggleButton;
5102 int vbextra = NS_SCROLL_BAR_WIDTH (f);
5103 NSSize sz;
5104 NSColor *col;
5105 NSString *name;
5106
5107 NSTRACE (initFrameFromEmacs);
5108
5109 windowClosing = NO;
5110 processingCompose = NO;
5111 scrollbarsNeedingUpdate = 0;
5112
5113/*fprintf (stderr,"init with %d, %d\n",f->text_cols, f->text_lines); */
5114
5115 r = NSMakeRect (0, 0, FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, f->text_cols),
5116 FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, f->text_lines));
5117 [self initWithFrame: r];
5118
5119 FRAME_NS_VIEW (f) = self;
5120 emacsframe = f;
5121 old_title = 0;
5122
5123 win = [[EmacsWindow alloc]
5124 initWithContentRect: r
5125 styleMask: (NSResizableWindowMask |
5126 NSMiniaturizableWindowMask |
5127 NSClosableWindowMask)
5128 backing: NSBackingStoreBuffered
5129 defer: YES];
5130
5131 wr = [win frame];
5132 f->border_width = wr.size.width - r.size.width;
5133 FRAME_NS_TITLEBAR_HEIGHT (f) = wr.size.height - r.size.height;
5134
5135 [win setAcceptsMouseMovedEvents: YES];
5136 [win setDelegate: self];
5137 [win useOptimizedDrawing: YES];
5138
5139 sz.width = FRAME_COLUMN_WIDTH (f);
5140 sz.height = FRAME_LINE_HEIGHT (f);
5141 [win setResizeIncrements: sz];
5142
5143 [[win contentView] addSubview: self];
5144
5145 if (ns_drag_types)
5146 [self registerForDraggedTypes: ns_drag_types];
5147
5148 tem = f->name;
5149 name = [NSString stringWithUTF8String:
6882361b 5150 NILP (tem) ? (unsigned char *)"Emacs" : SDATA (tem)];
edfda783
AR
5151 [win setTitle: name];
5152
5153 /* toolbar support */
5154 toolbar = [[EmacsToolbar alloc] initForView: self withIdentifier:
5155 [NSString stringWithFormat: @"Emacs Frame %d",
5156 ns_window_num]];
5157 [win setToolbar: toolbar];
5158 [toolbar setVisible: NO];
5159#ifdef NS_IMPL_COCOA
5160 toggleButton = [win standardWindowButton: NSWindowToolbarButton];
5161 [toggleButton setTarget: self];
5162 [toggleButton setAction: @selector (toggleToolbar: )];
5163#endif
5164 FRAME_NS_TOOLBAR_HEIGHT (f) = 0;
5165
5166 tem = f->icon_name;
5167 if (!NILP (tem))
5168 [win setMiniwindowTitle:
6882361b 5169 [NSString stringWithUTF8String: SDATA (tem)]];
edfda783
AR
5170
5171 {
5172 NSScreen *screen = [win screen];
5173
5174 if (screen != 0)
5175 [win setFrameTopLeftPoint: NSMakePoint
5176 (IN_BOUND (-SCREENMAX, f->left_pos, SCREENMAX),
5177 IN_BOUND (-SCREENMAX,
5178 [screen frame].size.height - NS_TOP_POS (f), SCREENMAX))];
5179 }
5180
5181 [win makeFirstResponder: self];
5182
5183 col = ns_lookup_indexed_color (NS_FACE_BACKGROUND
5184 (FRAME_DEFAULT_FACE (emacsframe)), emacsframe);
5185 [win setBackgroundColor: col];
5186 if ([col alphaComponent] != 1.0)
5187 [win setOpaque: NO];
5188
5189 [self allocateGState];
5190
5191 ns_window_num++;
5192 return self;
5193}
5194
5195
5196- (void)windowDidMove: sender
5197{
5198 NSWindow *win = [self window];
5199 NSRect r = [win frame];
5200 NSScreen *screen = [win screen];
5201 NSRect sr = [screen frame];
5202
5203 NSTRACE (windowDidMove);
5204
5205 if (!emacsframe->output_data.ns)
5206 return;
5207 if (screen != nil)
5208 {
5209 emacsframe->left_pos = r.origin.x; /* - sr.origin.x; */
5210 emacsframe->top_pos = sr.size.height -
5211 (r.origin.y + r.size.height); /* + sr.origin.y; */
5212 }
5213}
5214
5215#ifdef NS_IMPL_COCOA
5216/* if we don't do this manually, the window will resize but not move */
5217- (BOOL)windowShouldZoom: (NSWindow *)sender toFrame: (NSRect)newFrame
5218{
5219 [[self window] setFrame: newFrame display: NO];
5220 return YES;
5221}
5222#endif
5223
5224/* Implement this to control size of frame on zoom.
5225- (NSRect)windowWillUseStandardFrame:(NSWindow *)sender
5226 defaultFrame:(NSRect)defaultFrame; */
5227
5228
5229- (void)windowDidDeminiaturize: sender
5230{
5231 NSTRACE (windowDidDeminiaturize);
5232 if (!emacsframe->output_data.ns)
5233 return;
5234 emacsframe->async_visible = 1;
5235 emacsframe->async_iconified = 0;
5236 windows_or_buffers_changed++;
5237
5238 if (emacs_event)
5239 {
5240 emacs_event->kind = ICONIFY_EVENT;
5241 EV_TRAILER ((id)nil);
5242 }
5243}
5244
5245
5246- (void)windowDidExpose: sender
5247{
5248 NSTRACE (windowDidExpose);
5249 if (!emacsframe->output_data.ns)
5250 return;
5251 emacsframe->async_visible = 1;
5252 SET_FRAME_GARBAGED (emacsframe);
5253
5254 if (send_appdefined)
5255 ns_send_appdefined (-1);
5256}
5257
5258
5259- (void)windowDidMiniaturize: sender
5260{
5261 NSTRACE (windowDidMiniaturize);
5262 if (!emacsframe->output_data.ns)
5263 return;
5264
5265 emacsframe->async_iconified = 1;
5266
5267 if (emacs_event)
5268 {
5269 emacs_event->kind = ICONIFY_EVENT;
5270 EV_TRAILER ((id)nil);
5271 }
5272}
5273
5274
5275- (void)mouseEntered: (NSEvent *)theEvent
5276{
5277 NSPoint p = [self convertPoint: [theEvent locationInWindow] fromView: nil];
5278 struct ns_display_info *dpyinfo = FRAME_NS_DISPLAY_INFO (emacsframe);
5279 NSTRACE (mouseEntered);
5280
5281 last_mouse_movement_time = EV_TIMESTAMP (theEvent);
5282}
5283
5284
5285- (void)mouseExited: (NSEvent *)theEvent
5286{
5287 NSPoint p = [self convertPoint: [theEvent locationInWindow] fromView: nil];
5288 NSRect r;
facfbbbd
SM
5289 struct ns_display_info *dpyinfo
5290 = emacsframe ? FRAME_NS_DISPLAY_INFO (emacsframe) : NULL;
edfda783
AR
5291
5292 NSTRACE (mouseExited);
5293
5294 if (dpyinfo || !emacsframe)
5295 return;
5296
5297 last_mouse_movement_time = EV_TIMESTAMP (theEvent);
5298
5299 if (emacsframe == dpyinfo->mouse_face_mouse_frame)
5300 {
5301 clear_mouse_face (dpyinfo);
5302 dpyinfo->mouse_face_mouse_frame = 0;
5303 }
5304}
5305
5306
5307- menuDown: sender
5308{
5309 NSTRACE (menuDown);
5310 if (context_menu_value == -1)
5311 context_menu_value = [sender tag];
5312 else
5313 find_and_call_menu_selection (emacsframe, emacsframe->menu_bar_items_used,
15034960
AR
5314 emacsframe->menu_bar_vector,
5315 (void *)[sender tag]);
edfda783
AR
5316 ns_send_appdefined (-1);
5317 return self;
5318}
5319
5320
5321- (EmacsToolbar *)toolbar
5322{
5323 return toolbar;
5324}
5325
5326
5327/* this gets called on toolbar button click */
5328- toolbarClicked: (id)item
5329{
5330 NSEvent *theEvent;
5331 int idx = [item tag] * TOOL_BAR_ITEM_NSLOTS;
5332
5333 NSTRACE (toolbarClicked);
5334
5335 if (!emacs_event)
5336 return self;
5337
5338 /* send first event (for some reason two needed) */
5339 theEvent =[[self window] currentEvent];
5340 emacs_event->kind = TOOL_BAR_EVENT;
5341 XSETFRAME (emacs_event->arg, emacsframe);
5342 EV_TRAILER (theEvent);
5343
5344 emacs_event->kind = TOOL_BAR_EVENT;
5345/* XSETINT (emacs_event->code, 0); */
5346 emacs_event->arg = AREF (emacsframe->tool_bar_items,
5347 idx + TOOL_BAR_ITEM_KEY);
5348 emacs_event->modifiers = EV_MODIFIERS (theEvent);
5349 EV_TRAILER (theEvent);
5350 return self;
5351}
5352
5353
5354- toggleToolbar: (id)sender
5355{
5356 Lisp_Object lispFrame;
5357 XSETFRAME (lispFrame, emacsframe);
5358 Feval (Fcons (intern ("ns-toggle-toolbar"), Fcons (lispFrame, Qnil)));
5359 SET_FRAME_GARBAGED (emacsframe);
5360 ns_send_appdefined (-1);
5361}
5362
5363
5364- (void)drawRect: (NSRect)rect
5365{
5366 int x = NSMinX (rect), y = NSMinY (rect);
5367 int width = NSWidth (rect), height = NSHeight (rect);
5368
5369 NSTRACE (drawRect);
5370
5371 if (!emacsframe || !emacsframe->output_data.ns)
5372 return;
5373
5374 if (!ns_in_resize)
5375 ns_clear_frame_area (emacsframe, x, y, width, height);
5376 expose_frame (emacsframe, x, y, width, height);
5377
5378 emacsframe->async_visible = 1;
5379 emacsframe->async_iconified = 0;
5380
5381/* SET_FRAME_GARBAGED (emacsframe);
5382 ns_send_appdefined (-1); */
5383}
5384
5385
5386/* NSDraggingDestination protocol methods. Actually this is not really a
5387 protocol, but a category of Object. O well... */
5388
5389-(unsigned int) draggingEntered: (id <NSDraggingInfo>) sender
5390{
5391 NSTRACE (draggingEntered);
5392 return NSDragOperationGeneric;
5393}
5394
5395
5396-(BOOL)prepareForDragOperation: (id <NSDraggingInfo>) sender
5397{
5398 return YES;
5399}
5400
5401
5402-(BOOL)performDragOperation: (id <NSDraggingInfo>) sender
5403{
5404 id pb;
5405 int x, y;
5406 NSString *type;
5407 NSEvent *theEvent = [[self window] currentEvent];
5408 NSPoint position;
5409
5410 NSTRACE (performDragOperation);
5411
5412 if (!emacs_event)
5413 return;
5414
5415 position = [self convertPoint: [sender draggingLocation] fromView: nil];
5416 x = lrint (position.x); y = lrint (position.y);
5417
5418 pb = [sender draggingPasteboard];
5419 type = [pb availableTypeFromArray: ns_drag_types];
5420 if (type == 0)
5421 {
5422 return NO;
5423 }
5424 else if ([type isEqualToString: NSFilenamesPboardType])
5425 {
5426 NSArray *files;
5427 NSEnumerator *fenum;
5428 NSString *file;
5429
5430 if (!(files = [pb propertyListForType: type]))
5431 return NO;
5432
5433 fenum = [files objectEnumerator];
5434 while ( (file = [fenum nextObject]) )
5435 {
5436 emacs_event->kind = NON_ASCII_KEYSTROKE_EVENT;
5437 emacs_event->code = KEY_NS_DRAG_FILE;
5438 XSETINT (emacs_event->x, x);
5439 XSETINT (emacs_event->y, y);
5440 ns_input_file = append2 (ns_input_file,
5441 build_string ([file UTF8String]));
5442 emacs_event->modifiers = EV_MODIFIERS (theEvent);
5443 EV_TRAILER (theEvent);
5444 }
5445 return YES;
5446 }
5447 else if ([type isEqualToString: NSURLPboardType])
5448 {
5449 NSString *file;
5450 NSURL *fileURL;
5451
5452 if (!(fileURL = [NSURL URLFromPasteboard: pb]) ||
5453 [fileURL isFileURL] == NO)
5454 return NO;
5455
5456 file = [fileURL path];
5457 emacs_event->kind = NON_ASCII_KEYSTROKE_EVENT;
5458 emacs_event->code = KEY_NS_DRAG_FILE;
5459 XSETINT (emacs_event->x, x);
5460 XSETINT (emacs_event->y, y);
5461 ns_input_file = append2 (ns_input_file, build_string ([file UTF8String]));
5462 emacs_event->modifiers = EV_MODIFIERS (theEvent);
5463 EV_TRAILER (theEvent);
5464 return YES;
5465 }
5466 else if ([type isEqualToString: NSStringPboardType]
5467 || [type isEqualToString: NSTabularTextPboardType])
5468 {
5469 NSString *data;
5470
5471 if (! (data = [pb stringForType: type]))
5472 return NO;
5473
5474 emacs_event->kind = NON_ASCII_KEYSTROKE_EVENT;
5475 emacs_event->code = KEY_NS_DRAG_TEXT;
5476 XSETINT (emacs_event->x, x);
5477 XSETINT (emacs_event->y, y);
5478 ns_input_text = build_string ([data UTF8String]);
5479 emacs_event->modifiers = EV_MODIFIERS (theEvent);
5480 EV_TRAILER (theEvent);
5481 return YES;
5482 }
5483 else if ([type isEqualToString: NSColorPboardType])
5484 {
5485 NSColor *c = [NSColor colorFromPasteboard: pb];
5486 emacs_event->kind = NON_ASCII_KEYSTROKE_EVENT;
5487 emacs_event->code = KEY_NS_DRAG_COLOR;
5488 XSETINT (emacs_event->x, x);
5489 XSETINT (emacs_event->y, y);
5490 ns_input_color = ns_color_to_lisp (c);
5491 emacs_event->modifiers = EV_MODIFIERS (theEvent);
5492 EV_TRAILER (theEvent);
5493 return YES;
5494 }
5495 else if ([type isEqualToString: NSFontPboardType])
5496 {
5497 /* impl based on GNUstep NSTextView.m */
5498 NSData *data = [pb dataForType: NSFontPboardType];
5499 NSDictionary *dict = [NSUnarchiver unarchiveObjectWithData: data];
5500 NSFont *font = [dict objectForKey: NSFontAttributeName];
5501 char fontSize[10];
5502
5503 if (font == nil)
5504 return NO;
5505
5506 emacs_event->kind = NON_ASCII_KEYSTROKE_EVENT;
5507 emacs_event->code = KEY_NS_CHANGE_FONT;
5508 XSETINT (emacs_event->x, x);
5509 XSETINT (emacs_event->y, y);
5510 ns_input_font = build_string ([[font fontName] UTF8String]);
5511 snprintf (fontSize, 10, "%f", [font pointSize]);
5512 ns_input_fontsize = build_string (fontSize);
5513 emacs_event->modifiers = EV_MODIFIERS (theEvent);
5514 EV_TRAILER (theEvent);
5515 return YES;
5516 }
5517 else
5518 {
5519 error ("Invalid data type in dragging pasteboard.");
5520 return NO;
5521 }
5522}
5523
5524
5525- validRequestorForSendType: (NSString *)typeSent
5526 returnType: (NSString *)typeReturned
5527{
5528 NSTRACE (validRequestorForSendType);
5529 if ([ns_send_types indexOfObjectIdenticalTo: typeSent] != NSNotFound &&
5530 [ns_return_types indexOfObjectIdenticalTo: typeSent] != NSNotFound)
5531 return self;
5532
5533 return [super validRequestorForSendType: typeSent
5534 returnType: typeReturned];
5535}
5536
5537
5538/* setMini =YES means set from internal (gives a finder icon), NO means set nil
5539 (gives a miniaturized version of the window); currently we use the latter for
5540 frames whose active buffer doesn't correspond to any file
5541 (e.g., '*scratch*') */
5542- setMiniwindowImage: (BOOL) setMini
5543{
5544 id image = [[self window] miniwindowImage];
5545 NSTRACE (setMiniwindowImage);
5546
5547 /* NOTE: under Cocoa miniwindowImage always returns nil, documentation
5548 about "AppleDockIconEnabled" notwithstanding, however the set message
5549 below has its effect nonetheless. */
5550 if (image != emacsframe->output_data.ns->miniimage)
5551 {
5552 if (image && [image isKindOfClass: [EmacsImage class]])
5553 [image release];
5554 [[self window] setMiniwindowImage:
5555 setMini ? emacsframe->output_data.ns->miniimage : nil];
5556 }
5557
5558 return self;
5559}
5560
5561
5562- (void) setRows: (int) r andColumns: (int) c
5563{
5564 rows = r;
5565 cols = c;
5566}
5567
5568@end /* EmacsView */
5569
5570
5571
5572/* ==========================================================================
5573
5574 EmacsWindow implementation
5575
5576 ========================================================================== */
5577
5578@implementation EmacsWindow
5579
5580/* called only on resize clicks by special case in EmacsApp-sendEvent */
5581- (void)mouseDown: (NSEvent *)theEvent
5582{
5583 if (ns_in_resize)
5584 {
5585 NSSize size = [[theEvent window] frame].size;
5586 grabOffset = [theEvent locationInWindow];
5587 grabOffset.x = size.width - grabOffset.x;
5588 }
5589 else
5590 [super mouseDown: theEvent];
5591}
5592
5593
5594/* stop resizing */
5595- (void)mouseUp: (NSEvent *)theEvent
5596{
5597 if (ns_in_resize)
5598 {
5599 struct frame *f = ((EmacsView *)[self delegate])->emacsframe;
5600 ns_in_resize = NO;
5601 ns_set_name_as_filename (f);
5602 [self display];
5603 ns_send_appdefined (-1);
5604 }
5605 else
5606 [super mouseUp: theEvent];
5607}
5608
5609
5610/* send resize events */
5611- (void)mouseDragged: (NSEvent *)theEvent
5612{
5613 if (ns_in_resize)
5614 {
5615 NSPoint p = [theEvent locationInWindow];
5616 NSSize size, vettedSize, origSize = [self frame].size;
5617
5618 size.width = p.x + grabOffset.x;
5619 size.height = origSize.height - p.y + grabOffset.y;
5620
5621 if (size.width == origSize.width && size.height == origSize.height)
5622 return;
5623
5624 vettedSize = [[self delegate] windowWillResize: self toSize: size];
5625 if (vettedSize.width != size.width || vettedSize.height != size.height)
5626 {
5627 [[NSNotificationCenter defaultCenter]
5628 postNotificationName: NSWindowDidResizeNotification
5629 object: self];
5630 }
5631 }
5632 else
5633 [super mouseDragged: theEvent];
5634}
5635
5636@end /* EmacsWindow */
5637
5638
5639/* ==========================================================================
5640
5641 EmacsScroller implementation
5642
5643 ========================================================================== */
5644
5645
5646@implementation EmacsScroller
5647
5648/* for repeat button push */
5649#define SCROLL_BAR_FIRST_DELAY 0.5
5650#define SCROLL_BAR_CONTINUOUS_DELAY (1.0 / 15)
5651
5652+ (float) scrollerWidth
5653{
df2142db
AR
5654 /* TODO: if we want to allow variable widths, this is the place to do it,
5655 however neither GNUstep nor Cocoa support it very well */
edfda783
AR
5656 return [NSScroller scrollerWidth];
5657}
5658
5659
5660- initFrame: (NSRect )r window: (Lisp_Object)nwin
5661{
5662 NSTRACE (EmacsScroller_initFrame);
5663
5664 r.size.width = [EmacsScroller scrollerWidth];
5665 [super initWithFrame: r/*NSMakeRect (0, 0, 0, 0)*/];
5666 [self setContinuous: YES];
5667 [self setEnabled: YES];
5668
5669 /* Ensure auto resizing of scrollbars occurs within the emacs frame's view
5670 locked against the right, top and bottom edges. */
5671 [self setAutoresizingMask: NSViewMinXMargin | NSViewHeightSizable];
5672
5673 win = nwin;
5674 condemned = NO;
5675 pixel_height = NSHeight (r);
5676 min_portion = 20 / pixel_height;
5677
5678 frame = XFRAME (XWINDOW (win)->frame);
5679 if (FRAME_LIVE_P (frame))
5680 {
5681 int i;
5682 EmacsView *view = FRAME_NS_VIEW (frame);
5683 NSView *sview = [[view window] contentView];
5684 NSArray *subs = [sview subviews];
5685
5686 /* disable optimization stopping redraw of other scrollbars */
5687 view->scrollbarsNeedingUpdate = 0;
5688 for (i =[subs count]-1; i >= 0; i--)
5689 if ([[subs objectAtIndex: i] isKindOfClass: [EmacsScroller class]])
5690 view->scrollbarsNeedingUpdate++;
5691 [sview addSubview: self];
5692 }
5693
5694/* [self setFrame: r]; */
5695
5696 return self;
5697}
5698
5699
5700- (void)setFrame: (NSRect)newRect
5701{
5702 NSTRACE (EmacsScroller_setFrame);
5703/* BLOCK_INPUT; */
5704 pixel_height = NSHeight (newRect);
5705 min_portion = 20 / pixel_height;
5706 [super setFrame: newRect];
5707 [self display];
5708/* UNBLOCK_INPUT; */
5709}
5710
5711
5712- (void)dealloc
5713{
5714 NSTRACE (EmacsScroller_dealloc);
5715 if (!NILP (win))
5716 XWINDOW (win)->vertical_scroll_bar = Qnil;
5717 [super dealloc];
5718}
5719
5720
5721- condemn
5722{
5723 NSTRACE (condemn);
5724 condemned =YES;
5725 return self;
5726}
5727
5728
5729- reprieve
5730{
5731 NSTRACE (reprieve);
5732 condemned =NO;
5733 return self;
5734}
5735
5736
5737- judge
5738{
5739 NSTRACE (judge);
5740 if (condemned)
5741 {
5742 BLOCK_INPUT;
5743 /* ensure other scrollbar updates after deletion */
5744 EmacsView *view = (EmacsView *)FRAME_NS_VIEW (frame);
5745 if (view != nil)
5746 view->scrollbarsNeedingUpdate++;
5747 [self removeFromSuperview];
5748 [self release];
5749 UNBLOCK_INPUT;
5750 }
5751 return self;
5752}
5753
5754
5755- (void)resetCursorRects
5756{
5757 NSRect visible = [self visibleRect];
5758 NSTRACE (resetCursorRects);
5759
5760 if (!NSIsEmptyRect (visible))
5761 [self addCursorRect: visible cursor: [NSCursor arrowCursor]];
5762 [[NSCursor arrowCursor] setOnMouseEntered: YES];
5763}
5764
5765
5766- (int) checkSamePosition: (int) position portion: (int) portion
5767 whole: (int) whole
5768{
5769 return em_position ==position && em_portion ==portion && em_whole ==whole
5770 && portion != whole; /* needed for resize empty buf */
5771}
5772
5773
5774- setPosition: (int)position portion: (int)portion whole: (int)whole
5775{
5776 NSTRACE (setPosition);
5777
5778 em_position = position;
5779 em_portion = portion;
5780 em_whole = whole;
5781
5782 if (portion >= whole)
5783 [self setFloatValue: 0.0 knobProportion: 1.0];
5784 else
5785 {
5786 float pos, por;
5787 portion = max ((float)whole*min_portion/pixel_height, portion);
5788 pos = (float)position / (whole - portion);
5789 por = (float)portion/whole;
5790 [self setFloatValue: pos knobProportion: por];
5791 }
5792#ifdef NS_IMPL_GNUSTEP
5793 [self display];
5794#endif
5795 return self;
5796}
5797
df2142db
AR
5798/* FIXME: unused at moment (see ns_mouse_position) at the moment because
5799 drag events will go directly to the EmacsScroller. Leaving in for now. */
edfda783
AR
5800-(void)getMouseMotionPart: (int *)part window: (Lisp_Object *)window
5801 x: (Lisp_Object *)x y: ( Lisp_Object *)y
5802{
5803 *part = last_hit_part;
5804 *window = win;
5805 XSETINT (*y, pixel_height);
5806 if ([self floatValue] > 0.999)
5807 XSETINT (*x, pixel_height);
5808 else
5809 XSETINT (*x, pixel_height * [self floatValue]);
5810}
5811
5812
5813/* set up emacs_event */
5814- (void) sendScrollEventAtLoc: (float)loc fromEvent: (NSEvent *)e
5815{
5816 if (!emacs_event)
5817 return;
5818
5819 emacs_event->part = last_hit_part;
5820 emacs_event->code = 0;
5821 emacs_event->modifiers = EV_MODIFIERS (e) | down_modifier;
5822 emacs_event->frame_or_window = win;
5823 emacs_event->timestamp = EV_TIMESTAMP (e);
5824 emacs_event->kind = SCROLL_BAR_CLICK_EVENT;
5825 emacs_event->arg = Qnil;
5826 XSETINT (emacs_event->x, loc * pixel_height);
5827 XSETINT (emacs_event->y, pixel_height-20);
5828
5829 n_emacs_events_pending++;
5830 kbd_buffer_store_event_hold (emacs_event, q_event_ptr);
5831 EVENT_INIT (*emacs_event);
5832 ns_send_appdefined (-1);
5833}
5834
5835
5836/* called manually thru timer to implement repeated button action w/hold-down */
5837- repeatScroll: (NSTimer *)scrollEntry
5838{
5839 NSEvent *e = [[self window] currentEvent];
5840 NSPoint p = [[self window] mouseLocationOutsideOfEventStream];
5841 BOOL inKnob = [self testPart: p] == NSScrollerKnob;
5842
5843 /* clear timer if need be */
5844 if (inKnob || [scroll_repeat_entry timeInterval] == SCROLL_BAR_FIRST_DELAY)
5845 {
5846 [scroll_repeat_entry invalidate];
5847 [scroll_repeat_entry release];
5848 scroll_repeat_entry = nil;
5849
5850 if (inKnob)
5851 return self;
5852
facfbbbd
SM
5853 scroll_repeat_entry
5854 = [[NSTimer scheduledTimerWithTimeInterval:
5855 SCROLL_BAR_CONTINUOUS_DELAY
edfda783
AR
5856 target: self
5857 selector: @selector (repeatScroll:)
5858 userInfo: 0
5859 repeats: YES]
facfbbbd 5860 retain];
edfda783
AR
5861 }
5862
5863 [self sendScrollEventAtLoc: 0 fromEvent: e];
5864 return self;
5865}
5866
5867
5868/* Asynchronous mouse tracking for scroller. This allows us to dispatch
5869 mouseDragged events without going into a modal loop. */
5870- (void)mouseDown: (NSEvent *)e
5871{
5872 NSRect sr, kr;
5873 /* hitPart is only updated AFTER event is passed on */
5874 NSScrollerPart part = [self testPart: [e locationInWindow]];
5875 double inc = 0.0, loc, kloc, pos;
5876 int edge = 0;
5877
5878 NSTRACE (EmacsScroller_mouseDown);
5879
5880 switch (part)
5881 {
5882 case NSScrollerDecrementPage:
5883 last_hit_part = scroll_bar_above_handle; inc = -1.0; break;
5884 case NSScrollerIncrementPage:
5885 last_hit_part = scroll_bar_below_handle; inc = 1.0; break;
5886 case NSScrollerDecrementLine:
5887 last_hit_part = scroll_bar_up_arrow; inc = -0.1; break;
5888 case NSScrollerIncrementLine:
5889 last_hit_part = scroll_bar_down_arrow; inc = 0.1; break;
5890 case NSScrollerKnob:
5891 last_hit_part = scroll_bar_handle; break;
5892 case NSScrollerKnobSlot: /* GNUstep-only */
5893 last_hit_part = scroll_bar_move_ratio; break;
5894 default: /* NSScrollerNoPart? */
5895 fprintf (stderr, "EmacsScoller-mouseDown: unexpected part %d\n", part);
5896 return;
5897 }
5898
5899 if (inc != 0.0)
5900 {
5901 pos = 0; /* ignored */
5902
5903 /* set a timer to repeat, as we can't let superclass do this modally */
facfbbbd
SM
5904 scroll_repeat_entry
5905 = [[NSTimer scheduledTimerWithTimeInterval: 0.5
5906 target: self
5907 selector: @selector (repeatScroll:)
5908 userInfo: 0
5909 repeats: YES]
5910 retain];
edfda783
AR
5911 }
5912 else
5913 {
5914 /* handle, or on GNUstep possibly slot */
5915 NSEvent *fake_event;
5916
5917 /* compute float loc in slot and mouse offset on knob */
5918 sr = [self convertRect: [self rectForPart: NSScrollerKnobSlot]
5919 toView: nil];
5920 loc = NSHeight (sr) - ([e locationInWindow].y - NSMinY (sr));
5921 if (loc <= 0.0)
5922 {
5923 loc = 0.0;
5924 edge = -1;
5925 }
5926 else if (loc >= NSHeight (sr))
5927 {
5928 loc = NSHeight (sr);
5929 edge = 1;
5930 }
5931
5932 if (edge)
5933 kloc = 0.5 * edge;
5934 else
5935 {
5936 kr = [self convertRect: [self rectForPart: NSScrollerKnob]
5937 toView: nil];
5938 kloc = NSHeight (kr) - ([e locationInWindow].y - NSMinY (kr));
5939 }
5940 last_mouse_offset = kloc;
5941
5942 /* if knob, tell emacs a location offset by knob pos
5943 (to indicate top of handle) */
5944 if (part == NSScrollerKnob)
5945 pos = (loc - last_mouse_offset) / NSHeight (sr);
5946 else
5947 /* else this is a slot click on GNUstep: go straight there */
5948 pos = loc / NSHeight (sr);
5949
5950 /* send a fake mouse-up to super to preempt modal -trackKnob: mode */
5951 fake_event = [NSEvent mouseEventWithType: NSLeftMouseUp
5952 location: [e locationInWindow]
5953 modifierFlags: [e modifierFlags]
5954 timestamp: [e timestamp]
5955 windowNumber: [e windowNumber]
5956 context: [e context]
5957 eventNumber: [e eventNumber]
5958 clickCount: [e clickCount]
5959 pressure: [e pressure]];
5960 [super mouseUp: fake_event];
5961 }
5962
5963 if (part != NSScrollerKnob)
5964 [self sendScrollEventAtLoc: pos fromEvent: e];
5965}
5966
5967
5968/* Called as we manually track scroller drags, rather than superclass. */
5969- (void)mouseDragged: (NSEvent *)e
5970{
5971 NSRect sr;
5972 double loc, pos;
5973 int edge = 0;
5974
5975 NSTRACE (EmacsScroller_mouseDragged);
5976
5977 sr = [self convertRect: [self rectForPart: NSScrollerKnobSlot]
5978 toView: nil];
5979 loc = NSHeight (sr) - ([e locationInWindow].y - NSMinY (sr));
5980
5981 if (loc <= 0.0)
5982 {
5983 loc = 0.0;
5984 edge = -1;
5985 }
5986 else if (loc >= NSHeight (sr) + last_mouse_offset)
5987 {
5988 loc = NSHeight (sr) + last_mouse_offset;
5989 edge = 1;
5990 }
5991
5992 pos = /*(edge ? loc :*/ (loc - last_mouse_offset) / NSHeight (sr);
5993 [self sendScrollEventAtLoc: pos fromEvent: e];
5994}
5995
5996
5997- (void)mouseUp: (NSEvent *)e
5998{
5999 if (scroll_repeat_entry)
6000 {
6001 [scroll_repeat_entry invalidate];
6002 [scroll_repeat_entry release];
6003 scroll_repeat_entry = nil;
6004 }
6005 last_hit_part = 0;
6006}
6007
6008
6009/* treat scrollwheel events in the bar as though they were in the main window */
6010- (void) scrollWheel: (NSEvent *)theEvent
6011{
6012 EmacsView *view = (EmacsView *)FRAME_NS_VIEW (frame);
6013 [view mouseDown: theEvent];
6014}
6015
6016@end /* EmacsScroller */
6017
6018
6019
6020/* ==========================================================================
6021
6022 EmacsPrefsController implementation
6023
6024 ========================================================================== */
6025
6026
6027@implementation EmacsPrefsController
6028
6029/* in Tiger+, can just do [popup selectItemWithTag: tag]; */
6030static void selectItemWithTag (NSPopUpButton *popup, int tag)
6031{
6032 NSEnumerator *items = [[popup itemArray] objectEnumerator];
6033 NSMenuItem *item;
6034 while (item = [items nextObject])
6035 {
6036 if ([item tag] == tag)
6037 {
6038 [popup selectItem: item];
6039 return;
6040 }
6041 }
6042}
6043
6044- init
6045{
6046 [NSBundle loadNibNamed: @"preferences" owner: self];
6047 return self;
6048}
6049
6050
6051- (void) showForFrame: (struct frame *)f
6052{
6053 frame = f;
6054 [self setPanelFromValues];
6055 [prefsWindow makeKeyAndOrderFront: self];
6056 [prefsWindow display];
6057}
6058
6059
6060- (void) setPanelFromValues
6061{
facfbbbd
SM
6062 int cursorType
6063 = ns_lisp_to_cursor_type (get_frame_param (frame, Qcursor_type));
edfda783 6064 prevExpandSpace = XFLOATINT (ns_expand_space);
edfda783
AR
6065
6066#ifdef NS_IMPL_COCOA
6067 prevUseHighlightColor = ns_use_system_highlight_color;
6068#endif
6069
6070 [expandSpaceSlider setFloatValue: prevExpandSpace];
edfda783
AR
6071 [cursorTypeMatrix selectCellWithTag: (cursorType == filled_box ? 1 :
6072 (cursorType == bar ? 2 :
6073 (cursorType == underscore ? 3 : 4)))];
6882361b
SM
6074 selectItemWithTag (alternateModMenu,
6075 parse_solitary_modifier (ns_alternate_modifier));
6076 selectItemWithTag (commandModMenu,
6077 parse_solitary_modifier (ns_command_modifier));
edfda783 6078#ifdef NS_IMPL_COCOA
6882361b
SM
6079 selectItemWithTag (controlModMenu,
6080 parse_solitary_modifier (ns_control_modifier));
6081 selectItemWithTag (functionModMenu,
6082 parse_solitary_modifier (ns_function_modifier));
5c976973
AR
6083 [smoothFontsCheck setState: (NILP (ns_antialias_text) ? NO : YES)];
6084 [useQuickdrawCheck setState: (NILP (ns_use_qd_smoothing) ? NO : YES)];
6085 [useSysHiliteCheck setState: (NILP (prevUseHighlightColor) ? NO : YES)];
edfda783
AR
6086#endif
6087}
6088
6089
6090- (void) setValuesFromPanel
6091{
6092 int cursorTag = [[cursorTypeMatrix selectedCell] tag];
6093 int altTag = [[alternateModMenu selectedItem] tag];
6094 int cmdTag = [[commandModMenu selectedItem] tag];
6095#ifdef NS_IMPL_COCOA
6096 int ctrlTag = [[controlModMenu selectedItem] tag];
6097 int fnTag = [[functionModMenu selectedItem] tag];
6098#endif
edfda783 6099 float expandSpace = [expandSpaceSlider floatValue];
edfda783
AR
6100
6101 if (expandSpace != prevExpandSpace)
6102 {
6103 ns_expand_space = make_float (expandSpace);
df2142db 6104 /* TODO: more needed: store needed metrics in nsfont_info, update
edfda783
AR
6105 frame default font max_bounds and fontp, recompute faces */
6106/* FRAME_LINE_HEIGHT (frame) *= (expandSpace / prevExpandSpace);
6107 x_set_window_size (frame, 0, frame->text_cols, frame->text_lines); */
6108 prevExpandSpace = expandSpace;
6109 }
facfbbbd
SM
6110 FRAME_NEW_CURSOR (frame)
6111 = (cursorTag == 1 ? filled_box
6112 : cursorTag == 2 ? bar
6113 : cursorTag == 3 ? underscore : hollow_box);
edfda783
AR
6114 store_frame_param (frame, Qcursor_type,
6115 ns_cursor_type_to_lisp (FRAME_NEW_CURSOR (frame)));
6116 ns_alternate_modifier = ns_mod_to_lisp (altTag);
6117 ns_command_modifier = ns_mod_to_lisp (cmdTag);
6118#ifdef NS_IMPL_COCOA
6119 ns_control_modifier = ns_mod_to_lisp (ctrlTag);
6120 ns_function_modifier = ns_mod_to_lisp (fnTag);
5c976973
AR
6121 ns_antialias_text = [smoothFontsCheck state] ? Qt : Qnil;
6122 ns_use_qd_smoothing = [useQuickdrawCheck state] ? Qt : Qnil;
6123 ns_use_system_highlight_color = [useSysHiliteCheck state] ? Qt : Qnil;
6124 if (! EQ (ns_use_system_highlight_color, prevUseHighlightColor))
edfda783
AR
6125 {
6126 prevUseHighlightColor = ns_use_system_highlight_color;
5c976973 6127 if (EQ (ns_use_system_highlight_color, Qt))
edfda783
AR
6128 {
6129 ns_selection_color = [[NSUserDefaults standardUserDefaults]
6130 stringForKey: @"AppleHighlightColor"];
6131 if (ns_selection_color == nil)
6132 ns_selection_color = NS_SELECTION_COLOR_DEFAULT;
6133 }
6134 else
6135 ns_selection_color = NS_SELECTION_COLOR_DEFAULT;
6136 }
6137#endif /* NS_IMPL_COCOA */
6138 Fcall_interactively (intern ("ns-save-preferences"), Qnil, Qnil);
6139}
6140
6141
6142/* buttons */
6143- (IBAction)cancel: (id)sender
6144{
6145 [prefsWindow close];
6146}
6147
6148
6149- (IBAction)ok: (id)sender
6150{
6151 [self setValuesFromPanel];
6152 [prefsWindow close];
6153}
6154
6155
6156- (IBAction)resetToDefaults: (id)sender
6157{
6158 ns_set_default_prefs ();
6159 [self setPanelFromValues];
6160}
6161
6162
6163- (IBAction)runHelp: (id)sender
6164{
6165 Feval (Fcons (intern ("info"),
6166 Fcons (build_string ("(ns-emacs)Preferences Panel"), Qnil)));
6167 SET_FRAME_GARBAGED (frame);
6168 ns_send_appdefined (-1);
6169}
6170
6171
6172- (IBAction)setColors: (id)sender
6173{
6174 Lisp_Object lispFrame;
6175 XSETFRAME (lispFrame, frame);
6176 Fns_popup_color_panel (lispFrame);
6177}
6178
6179
6180- (IBAction)setDefaultFont: (id)sender
6181{
6182 Lisp_Object lispFrame;
6183 XSETFRAME (lispFrame, frame);
6184 Fns_popup_font_panel (lispFrame);
6185}
6186
6187@end /* EmacsPrefsController */
6188
6189
6190
6191
6192/* ==========================================================================
6193
6194 Font-related functions; these used to be in nsfaces.m
15034960 6195 The XLFD functions (115 lines) are an abomination that should be removed.
edfda783
AR
6196
6197 ========================================================================== */
6198
6199
6200Lisp_Object
6201x_new_font (struct frame *f, Lisp_Object font_object, int fontset)
6202{
6203 struct font *font = XFONT_OBJECT (font_object);
6204
6205 if (fontset < 0)
6206 fontset = fontset_from_font (font_object);
6207 FRAME_FONTSET (f) = fontset;
6208
6209 if (FRAME_FONT (f) == font)
6210 /* This font is already set in frame F. There's nothing more to
6211 do. */
6212 return font_object;
6213
6214 FRAME_FONT (f) = font;
6215
6216 FRAME_BASELINE_OFFSET (f) = font->baseline_offset;
6217 FRAME_COLUMN_WIDTH (f) = font->average_width;
6218 FRAME_SPACE_WIDTH (f) = font->space_width;
6219 FRAME_LINE_HEIGHT (f) = font->height;
6220
6221 compute_fringe_widths (f, 1);
6222
6223 /* Compute the scroll bar width in character columns. */
6224 if (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0)
6225 {
6226 int wid = FRAME_COLUMN_WIDTH (f);
6227 FRAME_CONFIG_SCROLL_BAR_COLS (f)
6228 = (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) + wid - 1) / wid;
6229 }
6230 else
6231 {
6232 int wid = FRAME_COLUMN_WIDTH (f);
6233 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (14 + wid - 1) / wid;
6234 }
6235
6236 /* Now make the frame display the given font. */
6237 if (FRAME_NS_WINDOW (f) != 0)
6238 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
6239
6240 return font_object;
6241}
6242
6243
edfda783
AR
6244/* XLFD: -foundry-family-weight-slant-swidth-adstyle-pxlsz-ptSz-resx-resy-spc-avgWidth-rgstry-encoding */
6245
15034960 6246static const char *
edfda783
AR
6247ns_font_to_xlfd (NSFont *nsfont)
6248/* --------------------------------------------------------------------------
6249 Convert an NS font name to an X font name (XLFD).
6250 The string returned is temporarily allocated.
6251 -------------------------------------------------------------------------- */
6252{
6253 NSFontManager *mgr = [NSFontManager sharedFontManager];
6254 NSString *sname = [nsfont /*familyName*/fontName];
15034960 6255 char *famName = (char *)[sname UTF8String];
edfda783
AR
6256 char *weightStr = [mgr fontNamed: sname hasTraits: NSBoldFontMask] ?
6257 "bold" : "medium";
6258 char *slantStr = [mgr fontNamed: sname hasTraits: NSItalicFontMask] ?
6259 "i" : "r";
6260 int size = [nsfont pointSize];
6261 int aWidth = lrint (10.0 * [nsfont widthOfString: @"a"]);
6262 const char *xlfd;
6263 int i, len;
6264
6265 /* change '-' to '$' to avoid messing w/XLFD separator */
15034960 6266 for (len = strlen (famName), i =0; i<len; i++)
edfda783
AR
6267 if (famName[i] == '-')
6268 {
6269 famName[i] = '\0';
6270 break;
6271 }
6272
6273 xlfd = [[NSString stringWithFormat:
6274 @"-apple-%s-%s-%s-normal--%d-%d-75-75-m-%d-iso10646-1",
6275 famName, weightStr, slantStr, size, 10*size, aWidth]
6276 UTF8String];
6277/*fprintf (stderr, "converted '%s' to '%s'\n",name,xlfd); */
6278 return xlfd;
6279}
6280
15034960 6281static const char *
edfda783
AR
6282ns_fontname_to_xlfd (const char *name)
6283/* --------------------------------------------------------------------------
6284 Convert an NS font name to an X font name (XLFD).
6285 Sizes are set to 0.
6286 The string returned is temporarily allocated.
6287 -------------------------------------------------------------------------- */
6288{
6289 char famName[180];
6290 char *weightStr = strcasestr (name, "bold") ? "bold" : "medium";
6291 char *slantStr = strcasestr (name, "italic") || strcasestr (name, "oblique")
6292 || strcasestr (name, "synthital") ? "i" : "r";
6293 int i, len;
6294 const char *xlfd;
6295
6296 /* change '-' to '$' to avoid messing w/XLFD separator, and ' ' to '_' */
6297 bzero (famName, 180);
6298 bcopy (name, famName, max (strlen (name), 179));
6299 for (len =strlen (famName), i =0; i<len; i++)
6300 {
6301 if (famName[i] == '-')
6302 famName[i] = '$';
6303 else if (famName[i] == ' ')
6304 famName[i] = '_';
6305 }
6306
6307 xlfd = [[NSString stringWithFormat:
6308 @"-apple-%s-%s-%s-normal--0-0-75-75-m-0-iso10646-1",
6309 famName, weightStr, slantStr]
6310 UTF8String];
6311/*fprintf (stderr, "converted '%s' to '%s'\n",name,xlfd); */
6312 return xlfd;
6313}
6314
6315
6316const char *
6317ns_xlfd_to_fontname (const char *xlfd)
6318/* --------------------------------------------------------------------------
6319 Convert an X font name (XLFD) to an NS font name.
6320 Only family is used.
6321 The string returned is temporarily allocated.
6322 -------------------------------------------------------------------------- */
6323{
6324 char *name = xmalloc (180);
6325 int i, len;
6326 const char *ret;
6327
6328 if (!strncmp (xlfd, "--", 2))
6329 sscanf (xlfd, "--%*[^-]-%[^-]179-", name);
6330 else
6331 sscanf (xlfd, "-%*[^-]-%[^-]179-", name);
6332
6333 /* stopgap for malformed XLFD input */
6334 if (strlen (name) == 0)
6335 strcpy (name, "Monaco");
6336
6337 /* undo hack in ns_fontname_to_xlfd, converting '$' to '-', '_' to ' '
6338 also uppercase after '-' or ' ' */
6339 name[0] = toupper (name[0]);
6340 for (len =strlen (name), i =0; i<len; i++)
6341 {
6342 if (name[i] == '$')
6343 {
6344 name[i] = '-';
6345 if (i+1<len)
6346 name[i+1] = toupper (name[i+1]);
6347 }
6348 else if (name[i] == '_')
6349 {
6350 name[i] = ' ';
6351 if (i+1<len)
6352 name[i+1] = toupper (name[i+1]);
6353 }
6354 }
6355/*fprintf (stderr, "converted '%s' to '%s'\n",xlfd,name); */
6356 ret = [[NSString stringWithUTF8String: name] UTF8String];
6357 xfree (name);
6358 return ret;
6359}
0ae1e5e5 6360
15034960 6361
1baa6236
DN
6362void
6363syms_of_nsterm ()
6364{
6365 NSTRACE (syms_of_nsterm);
6366 DEFVAR_LISP ("ns-input-file", &ns_input_file,
6367 "The file specified in the last NS event.");
6368 ns_input_file =Qnil;
6369
6370 DEFVAR_LISP ("ns-input-text", &ns_input_text,
6371 "The data received in the last NS text drag event.");
6372 ns_input_text =Qnil;
6373
6374 DEFVAR_LISP ("ns-working-text", &ns_working_text,
6375 "String for visualizing working composition sequence.");
6376 ns_working_text =Qnil;
6377
6378 DEFVAR_LISP ("ns-input-font", &ns_input_font,
6379 "The font specified in the last NS event.");
6380 ns_input_font =Qnil;
6381
6382 DEFVAR_LISP ("ns-input-fontsize", &ns_input_fontsize,
6383 "The fontsize specified in the last NS event.");
6384 ns_input_fontsize =Qnil;
6385
6386 DEFVAR_LISP ("ns-input-line", &ns_input_line,
6387 "The line specified in the last NS event.");
6388 ns_input_line =Qnil;
6389
6390 DEFVAR_LISP ("ns-input-color", &ns_input_color,
6391 "The color specified in the last NS event.");
6392 ns_input_color =Qnil;
6393
6394 DEFVAR_LISP ("ns-input-spi-name", &ns_input_spi_name,
6395 "The service name specified in the last NS event.");
6396 ns_input_spi_name =Qnil;
6397
6398 DEFVAR_LISP ("ns-input-spi-arg", &ns_input_spi_arg,
6399 "The service argument specified in the last NS event.");
6400 ns_input_spi_arg =Qnil;
6401
6402 DEFVAR_LISP ("ns-alternate-modifier", &ns_alternate_modifier,
6403 "This variable describes the behavior of the alternate or option key.\n\
6404Set to control, meta, alt, super, or hyper means it is taken to be that key.\n\
6405Set to none means that the alternate / option key is not interpreted by Emacs\n\
6406at all, allowing it to be used at a lower level for accented character entry.");
6407
6408 DEFVAR_LISP ("ns-command-modifier", &ns_command_modifier,
6409 "This variable describes the behavior of the command key.\n\
6410Set to control, meta, alt, super, or hyper means it is taken to be that key.");
6411
6412 DEFVAR_LISP ("ns-control-modifier", &ns_control_modifier,
6413 "This variable describes the behavior of the control key.\n\
6414Set to control, meta, alt, super, or hyper means it is taken to be that key.");
6415
6416 DEFVAR_LISP ("ns-function-modifier", &ns_function_modifier,
6417 "This variable describes the behavior of the function key (on laptops).\n\
6418Set to control, meta, alt, super, or hyper means it is taken to be that key.\n\
6419Set to none means that the function key is not interpreted by Emacs at all,\n\
6420allowing it to be used at a lower level for accented character entry.");
6421
1baa6236
DN
6422 DEFVAR_LISP ("ns-expand-space", &ns_expand_space,
6423 "Amount by which spacing between lines is expanded (positive)\n\
6424or shrunk (negative). Zero (the default) means standard line height.\n\
6425(This variable should only be read, never set.)");
6426
6427 DEFVAR_LISP ("ns-antialias-text", &ns_antialias_text,
6428 "Non-nil (the default) means to render text antialiased. Only has an effect on OS X Panther and above.");
6429
6430 DEFVAR_LISP ("ns-use-qd-smoothing", &ns_use_qd_smoothing,
6431 "Whether to render text using QuickDraw (less heavy) antialiasing. Only has an effect on OS X Panther and above. Default is nil (use Quartz smoothing).");
6432
6433 DEFVAR_LISP ("ns-use-system-highlight-color",
6434 &ns_use_system_highlight_color,
6435 "Whether to use the system default (on OS X only) for the highlight color. Nil means to use standard emacs (prior to version 21) 'grey'.");
6436
6437 staticpro (&ns_display_name_list);
6438 ns_display_name_list = Qnil;
6439
6440 staticpro (&last_mouse_motion_frame);
6441 last_mouse_motion_frame = Qnil;
6442
7c799cf5 6443 /*23: now apparently we need to tell emacs what modifiers there are.. */
1baa6236
DN
6444 Qmodifier_value = intern ("modifier-value");
6445 Qalt = intern ("alt");
6446 Fput (Qalt, Qmodifier_value, make_number (alt_modifier));
6447 Qhyper = intern ("hyper");
6448 Fput (Qhyper, Qmodifier_value, make_number (hyper_modifier));
6449 Qmeta = intern ("meta");
6450 Fput (Qmeta, Qmodifier_value, make_number (meta_modifier));
6451 Qsuper = intern ("super");
6452 Fput (Qsuper, Qmodifier_value, make_number (super_modifier));
6453 Qcontrol = intern ("control");
6454 Fput (Qcontrol, Qmodifier_value, make_number (ctrl_modifier));
6455
7ded3383 6456 /* TODO: move to common code */
1baa6236
DN
6457 DEFVAR_LISP ("x-toolkit-scroll-bars", &Vx_toolkit_scroll_bars,
6458 doc: /* If not nil, Emacs uses toolkit scroll bars. */);
6459#ifdef USE_TOOLKIT_SCROLL_BARS
6460 Vx_toolkit_scroll_bars = Qt;
6461#else
6462 Vx_toolkit_scroll_bars = Qnil;
6463#endif
6464
6465 /* these are unsupported but we need the declarations to avoid whining
6466 messages from cus-start.el */
6467 DEFVAR_BOOL ("x-use-underline-position-properties",
6468 &x_use_underline_position_properties,
6469 doc: /* NOT SUPPORTED UNDER NS.
6470*Non-nil means make use of UNDERLINE_POSITION font properties.
6471A value of nil means ignore them. If you encounter fonts with bogus
6472UNDERLINE_POSITION font properties, for example 7x13 on XFree prior
6473to 4.1, set this to nil.
6474
6475NOTE: Not supported on Mac yet. */);
6476 x_use_underline_position_properties = 0;
6477
6478 DEFVAR_BOOL ("x-underline-at-descent-line",
6479 &x_underline_at_descent_line,
6480 doc: /* NOT SUPPORTED UNDER NS.
6481*Non-nil means to draw the underline at the same place as the descent line.
6482A value of nil means to draw the underline according to the value of the
6483variable `x-use-underline-position-properties', which is usually at the
6484baseline level. The default value is nil. */);
6485 x_underline_at_descent_line = 0;
6486
6487 /* Tell emacs about this window system. */
7c799cf5 6488 Fprovide (intern ("ns"), Qnil);
7ded3383
AR
6489 /* TODO: try to move this back into lisp, ns-win.el loaded too late
6490 right now */
1baa6236
DN
6491 {
6492 Lisp_Object args[3] = { intern ("ns-version-string"), build_string ("9.0"),
6493 build_string ("NS Window system port version number.") };
6494 Fdefconst (Flist (3, args));
6495 }
6496}
6497
6498
2f8e74bb 6499// arch-tag: 6eaa8f7d-a69b-4e1c-b43d-ab31defbe0d2