]> code.delx.au - gnu-emacs/blob - src/nsterm.m
Simplify NS font driver draw, merge from Macport.
[gnu-emacs] / src / nsterm.m
1 /* NeXT/Open/GNUstep / MacOSX communication module.
2
3 Copyright (C) 1989, 1993-1994, 2005-2006, 2008-2014 Free Software
4 Foundation, Inc.
5
6 This file is part of GNU Emacs.
7
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
12
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20
21 /*
22 Originally by Carl Edman
23 Updated by Christian Limpach (chris@nice.ch)
24 OpenStep/Rhapsody port by Scott Bender (sbender@harmony-ds.com)
25 MacOSX/Aqua port by Christophe de Dinechin (descubes@earthlink.net)
26 GNUstep port and post-20 update by Adrian Robert (arobert@cogsci.ucsd.edu)
27 */
28
29 /* This should be the first include, as it may set up #defines affecting
30 interpretation of even the system includes. */
31 #include <config.h>
32
33 #include <fcntl.h>
34 #include <math.h>
35 #include <pthread.h>
36 #include <sys/types.h>
37 #include <time.h>
38 #include <signal.h>
39 #include <unistd.h>
40
41 #include <c-ctype.h>
42 #include <c-strcase.h>
43 #include <ftoastr.h>
44
45 #include "lisp.h"
46 #include "blockinput.h"
47 #include "sysselect.h"
48 #include "nsterm.h"
49 #include "systime.h"
50 #include "character.h"
51 #include "fontset.h"
52 #include "composite.h"
53 #include "ccl.h"
54
55 #include "termhooks.h"
56 #include "termchar.h"
57
58 #include "window.h"
59 #include "keyboard.h"
60 #include "buffer.h"
61 #include "font.h"
62
63 #ifdef NS_IMPL_GNUSTEP
64 #include "process.h"
65 #endif
66
67 #ifdef NS_IMPL_COCOA
68 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5
69 #include "macfont.h"
70 #endif
71 #endif
72
73 /* call tracing */
74 #if 0
75 int term_trace_num = 0;
76 #define NSTRACE(x) fprintf (stderr, "%s:%d: [%d] " #x "\n", \
77 __FILE__, __LINE__, ++term_trace_num)
78 #else
79 #define NSTRACE(x)
80 #endif
81
82 /* Detailed tracing. "S" means "size" and "LL" stands for "lower left". */
83 #if 0
84 int term_trace_num = 0;
85 #define NSTRACE_SIZE(str,size) fprintf (stderr, \
86 "%s:%d: [%d] " str \
87 " (S:%.0f x %.0f)\n", \
88 __FILE__, __LINE__, ++term_trace_num,\
89 size.height, \
90 size.width)
91 #define NSTRACE_RECT(s,r) fprintf (stderr, \
92 "%s:%d: [%d] " s \
93 " (LL:%.0f x %.0f -> S:%.0f x %.0f)\n", \
94 __FILE__, __LINE__, ++term_trace_num,\
95 r.origin.x, \
96 r.origin.y, \
97 r.size.height, \
98 r.size.width)
99 #else
100 #define NSTRACE_SIZE(str,size)
101 #define NSTRACE_RECT(s,r)
102 #endif
103
104 extern NSString *NSMenuDidBeginTrackingNotification;
105
106 /* ==========================================================================
107
108 NSColor, EmacsColor category.
109
110 ========================================================================== */
111 @implementation NSColor (EmacsColor)
112 + (NSColor *)colorForEmacsRed:(CGFloat)red green:(CGFloat)green
113 blue:(CGFloat)blue alpha:(CGFloat)alpha
114 {
115 #ifdef NS_IMPL_COCOA
116 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_7
117 if (ns_use_srgb_colorspace)
118 return [NSColor colorWithSRGBRed: red
119 green: green
120 blue: blue
121 alpha: alpha];
122 #endif
123 #endif
124 return [NSColor colorWithCalibratedRed: red
125 green: green
126 blue: blue
127 alpha: alpha];
128 }
129
130 - (NSColor *)colorUsingDefaultColorSpace
131 {
132 #ifdef NS_IMPL_COCOA
133 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_7
134 if (ns_use_srgb_colorspace)
135 return [self colorUsingColorSpace: [NSColorSpace sRGBColorSpace]];
136 #endif
137 #endif
138 return [self colorUsingColorSpaceName: NSCalibratedRGBColorSpace];
139 }
140
141 @end
142
143 /* ==========================================================================
144
145 Local declarations
146
147 ========================================================================== */
148
149 /* Convert a symbol indexed with an NSxxx value to a value as defined
150 in keyboard.c (lispy_function_key). I hope this is a correct way
151 of doing things... */
152 static unsigned convert_ns_to_X_keysym[] =
153 {
154 NSHomeFunctionKey, 0x50,
155 NSLeftArrowFunctionKey, 0x51,
156 NSUpArrowFunctionKey, 0x52,
157 NSRightArrowFunctionKey, 0x53,
158 NSDownArrowFunctionKey, 0x54,
159 NSPageUpFunctionKey, 0x55,
160 NSPageDownFunctionKey, 0x56,
161 NSEndFunctionKey, 0x57,
162 NSBeginFunctionKey, 0x58,
163 NSSelectFunctionKey, 0x60,
164 NSPrintFunctionKey, 0x61,
165 NSClearLineFunctionKey, 0x0B,
166 NSExecuteFunctionKey, 0x62,
167 NSInsertFunctionKey, 0x63,
168 NSUndoFunctionKey, 0x65,
169 NSRedoFunctionKey, 0x66,
170 NSMenuFunctionKey, 0x67,
171 NSFindFunctionKey, 0x68,
172 NSHelpFunctionKey, 0x6A,
173 NSBreakFunctionKey, 0x6B,
174
175 NSF1FunctionKey, 0xBE,
176 NSF2FunctionKey, 0xBF,
177 NSF3FunctionKey, 0xC0,
178 NSF4FunctionKey, 0xC1,
179 NSF5FunctionKey, 0xC2,
180 NSF6FunctionKey, 0xC3,
181 NSF7FunctionKey, 0xC4,
182 NSF8FunctionKey, 0xC5,
183 NSF9FunctionKey, 0xC6,
184 NSF10FunctionKey, 0xC7,
185 NSF11FunctionKey, 0xC8,
186 NSF12FunctionKey, 0xC9,
187 NSF13FunctionKey, 0xCA,
188 NSF14FunctionKey, 0xCB,
189 NSF15FunctionKey, 0xCC,
190 NSF16FunctionKey, 0xCD,
191 NSF17FunctionKey, 0xCE,
192 NSF18FunctionKey, 0xCF,
193 NSF19FunctionKey, 0xD0,
194 NSF20FunctionKey, 0xD1,
195 NSF21FunctionKey, 0xD2,
196 NSF22FunctionKey, 0xD3,
197 NSF23FunctionKey, 0xD4,
198 NSF24FunctionKey, 0xD5,
199
200 NSBackspaceCharacter, 0x08, /* 8: Not on some KBs. */
201 NSDeleteCharacter, 0xFF, /* 127: Big 'delete' key upper right. */
202 NSDeleteFunctionKey, 0x9F, /* 63272: Del forw key off main array. */
203
204 NSTabCharacter, 0x09,
205 0x19, 0x09, /* left tab->regular since pass shift */
206 NSCarriageReturnCharacter, 0x0D,
207 NSNewlineCharacter, 0x0D,
208 NSEnterCharacter, 0x8D,
209
210 0x41|NSNumericPadKeyMask, 0xAE, /* KP_Decimal */
211 0x43|NSNumericPadKeyMask, 0xAA, /* KP_Multiply */
212 0x45|NSNumericPadKeyMask, 0xAB, /* KP_Add */
213 0x4B|NSNumericPadKeyMask, 0xAF, /* KP_Divide */
214 0x4E|NSNumericPadKeyMask, 0xAD, /* KP_Subtract */
215 0x51|NSNumericPadKeyMask, 0xBD, /* KP_Equal */
216 0x52|NSNumericPadKeyMask, 0xB0, /* KP_0 */
217 0x53|NSNumericPadKeyMask, 0xB1, /* KP_1 */
218 0x54|NSNumericPadKeyMask, 0xB2, /* KP_2 */
219 0x55|NSNumericPadKeyMask, 0xB3, /* KP_3 */
220 0x56|NSNumericPadKeyMask, 0xB4, /* KP_4 */
221 0x57|NSNumericPadKeyMask, 0xB5, /* KP_5 */
222 0x58|NSNumericPadKeyMask, 0xB6, /* KP_6 */
223 0x59|NSNumericPadKeyMask, 0xB7, /* KP_7 */
224 0x5B|NSNumericPadKeyMask, 0xB8, /* KP_8 */
225 0x5C|NSNumericPadKeyMask, 0xB9, /* KP_9 */
226
227 0x1B, 0x1B /* escape */
228 };
229
230 static Lisp_Object Qmodifier_value;
231 Lisp_Object Qalt, Qcontrol, Qhyper, Qmeta, Qsuper;
232 extern Lisp_Object Qcursor_color, Qcursor_type, Qns, Qleft;
233
234 static Lisp_Object QUTF8_STRING;
235 static Lisp_Object Qcocoa, Qgnustep;
236 static Lisp_Object Qfile, Qurl;
237
238 /* On OS X picks up the default NSGlobalDomain AppleAntiAliasingThreshold,
239 the maximum font size to NOT antialias. On GNUstep there is currently
240 no way to control this behavior. */
241 float ns_antialias_threshold;
242
243 NSArray *ns_send_types =0, *ns_return_types =0, *ns_drag_types =0;
244 NSString *ns_app_name = @"Emacs"; /* default changed later */
245
246 /* Display variables */
247 struct ns_display_info *x_display_list; /* Chain of existing displays */
248 long context_menu_value = 0;
249
250 /* display update */
251 static struct frame *ns_updating_frame;
252 static NSView *focus_view = NULL;
253 static int ns_window_num = 0;
254 #ifdef NS_IMPL_GNUSTEP
255 static NSRect uRect;
256 #endif
257 static BOOL gsaved = NO;
258 static BOOL ns_fake_keydown = NO;
259 #ifdef NS_IMPL_COCOA
260 static BOOL ns_menu_bar_is_hidden = NO;
261 #endif
262 /*static int debug_lock = 0; */
263
264 /* event loop */
265 static BOOL send_appdefined = YES;
266 #define NO_APPDEFINED_DATA (-8)
267 static int last_appdefined_event_data = NO_APPDEFINED_DATA;
268 static NSTimer *timed_entry = 0;
269 static NSTimer *scroll_repeat_entry = nil;
270 static fd_set select_readfds, select_writefds;
271 enum { SELECT_HAVE_READ = 1, SELECT_HAVE_WRITE = 2, SELECT_HAVE_TMO = 4 };
272 static int select_nfds = 0, select_valid = 0;
273 static struct timespec select_timeout = { 0, 0 };
274 static int selfds[2] = { -1, -1 };
275 static pthread_mutex_t select_mutex;
276 static int apploopnr = 0;
277 static NSAutoreleasePool *outerpool;
278 static struct input_event *emacs_event = NULL;
279 static struct input_event *q_event_ptr = NULL;
280 static int n_emacs_events_pending = 0;
281 static NSMutableArray *ns_pending_files, *ns_pending_service_names,
282 *ns_pending_service_args;
283 static BOOL ns_do_open_file = NO;
284 static BOOL ns_last_use_native_fullscreen;
285
286 static struct {
287 struct input_event *q;
288 int nr, cap;
289 } hold_event_q = {
290 NULL, 0, 0
291 };
292
293 #ifdef NS_IMPL_COCOA
294 /*
295 * State for pending menu activation:
296 * MENU_NONE Normal state
297 * MENU_PENDING A menu has been clicked on, but has been canceled so we can
298 * run lisp to update the menu.
299 * MENU_OPENING Menu is up to date, and the click event is redone so the menu
300 * will open.
301 */
302 #define MENU_NONE 0
303 #define MENU_PENDING 1
304 #define MENU_OPENING 2
305 static int menu_will_open_state = MENU_NONE;
306
307 /* Saved position for menu click. */
308 static CGPoint menu_mouse_point;
309 #endif
310
311 /* Convert modifiers in a NeXTstep event to emacs style modifiers. */
312 #define NS_FUNCTION_KEY_MASK 0x800000
313 #define NSLeftControlKeyMask (0x000001 | NSControlKeyMask)
314 #define NSRightControlKeyMask (0x002000 | NSControlKeyMask)
315 #define NSLeftCommandKeyMask (0x000008 | NSCommandKeyMask)
316 #define NSRightCommandKeyMask (0x000010 | NSCommandKeyMask)
317 #define NSLeftAlternateKeyMask (0x000020 | NSAlternateKeyMask)
318 #define NSRightAlternateKeyMask (0x000040 | NSAlternateKeyMask)
319 #define EV_MODIFIERS2(flags) \
320 (((flags & NSHelpKeyMask) ? \
321 hyper_modifier : 0) \
322 | (!EQ (ns_right_alternate_modifier, Qleft) && \
323 ((flags & NSRightAlternateKeyMask) \
324 == NSRightAlternateKeyMask) ? \
325 parse_solitary_modifier (ns_right_alternate_modifier) : 0) \
326 | ((flags & NSAlternateKeyMask) ? \
327 parse_solitary_modifier (ns_alternate_modifier) : 0) \
328 | ((flags & NSShiftKeyMask) ? \
329 shift_modifier : 0) \
330 | (!EQ (ns_right_control_modifier, Qleft) && \
331 ((flags & NSRightControlKeyMask) \
332 == NSRightControlKeyMask) ? \
333 parse_solitary_modifier (ns_right_control_modifier) : 0) \
334 | ((flags & NSControlKeyMask) ? \
335 parse_solitary_modifier (ns_control_modifier) : 0) \
336 | ((flags & NS_FUNCTION_KEY_MASK) ? \
337 parse_solitary_modifier (ns_function_modifier) : 0) \
338 | (!EQ (ns_right_command_modifier, Qleft) && \
339 ((flags & NSRightCommandKeyMask) \
340 == NSRightCommandKeyMask) ? \
341 parse_solitary_modifier (ns_right_command_modifier) : 0) \
342 | ((flags & NSCommandKeyMask) ? \
343 parse_solitary_modifier (ns_command_modifier):0))
344 #define EV_MODIFIERS(e) EV_MODIFIERS2 ([e modifierFlags])
345
346 #define EV_UDMODIFIERS(e) \
347 ((([e type] == NSLeftMouseDown) ? down_modifier : 0) \
348 | (([e type] == NSRightMouseDown) ? down_modifier : 0) \
349 | (([e type] == NSOtherMouseDown) ? down_modifier : 0) \
350 | (([e type] == NSLeftMouseDragged) ? down_modifier : 0) \
351 | (([e type] == NSRightMouseDragged) ? down_modifier : 0) \
352 | (([e type] == NSOtherMouseDragged) ? down_modifier : 0) \
353 | (([e type] == NSLeftMouseUp) ? up_modifier : 0) \
354 | (([e type] == NSRightMouseUp) ? up_modifier : 0) \
355 | (([e type] == NSOtherMouseUp) ? up_modifier : 0))
356
357 #define EV_BUTTON(e) \
358 ((([e type] == NSLeftMouseDown) || ([e type] == NSLeftMouseUp)) ? 0 : \
359 (([e type] == NSRightMouseDown) || ([e type] == NSRightMouseUp)) ? 2 : \
360 [e buttonNumber] - 1)
361
362 /* Convert the time field to a timestamp in milliseconds. */
363 #define EV_TIMESTAMP(e) ([e timestamp] * 1000)
364
365 /* This is a piece of code which is common to all the event handling
366 methods. Maybe it should even be a function. */
367 #define EV_TRAILER(e) \
368 { \
369 XSETFRAME (emacs_event->frame_or_window, emacsframe); \
370 EV_TRAILER2 (e); \
371 }
372
373 #define EV_TRAILER2(e) \
374 { \
375 if (e) emacs_event->timestamp = EV_TIMESTAMP (e); \
376 if (q_event_ptr) \
377 { \
378 n_emacs_events_pending++; \
379 kbd_buffer_store_event_hold (emacs_event, q_event_ptr); \
380 } \
381 else \
382 hold_event (emacs_event); \
383 EVENT_INIT (*emacs_event); \
384 ns_send_appdefined (-1); \
385 }
386
387 /* TODO: get rid of need for these forward declarations */
388 static void ns_condemn_scroll_bars (struct frame *f);
389 static void ns_judge_scroll_bars (struct frame *f);
390 void x_set_frame_alpha (struct frame *f);
391
392
393 /* ==========================================================================
394
395 Utilities
396
397 ========================================================================== */
398
399 static void
400 hold_event (struct input_event *event)
401 {
402 if (hold_event_q.nr == hold_event_q.cap)
403 {
404 if (hold_event_q.cap == 0) hold_event_q.cap = 10;
405 else hold_event_q.cap *= 2;
406 hold_event_q.q =
407 xrealloc (hold_event_q.q, hold_event_q.cap * sizeof *hold_event_q.q);
408 }
409
410 hold_event_q.q[hold_event_q.nr++] = *event;
411 /* Make sure ns_read_socket is called, i.e. we have input. */
412 raise (SIGIO);
413 send_appdefined = YES;
414 }
415
416 static Lisp_Object
417 append2 (Lisp_Object list, Lisp_Object item)
418 /* --------------------------------------------------------------------------
419 Utility to append to a list
420 -------------------------------------------------------------------------- */
421 {
422 Lisp_Object array[2];
423 array[0] = list;
424 array[1] = list1 (item);
425 return Fnconc (2, &array[0]);
426 }
427
428
429 const char *
430 ns_etc_directory (void)
431 /* If running as a self-contained app bundle, return as a string the
432 filename of the etc directory, if present; else nil. */
433 {
434 NSBundle *bundle = [NSBundle mainBundle];
435 NSString *resourceDir = [bundle resourcePath];
436 NSString *resourcePath;
437 NSFileManager *fileManager = [NSFileManager defaultManager];
438 BOOL isDir;
439
440 resourcePath = [resourceDir stringByAppendingPathComponent: @"etc"];
441 if ([fileManager fileExistsAtPath: resourcePath isDirectory: &isDir])
442 {
443 if (isDir) return [resourcePath UTF8String];
444 }
445 return NULL;
446 }
447
448
449 const char *
450 ns_exec_path (void)
451 /* If running as a self-contained app bundle, return as a path string
452 the filenames of the libexec and bin directories, ie libexec:bin.
453 Otherwise, return nil.
454 Normally, Emacs does not add its own bin/ directory to the PATH.
455 However, a self-contained NS build has a different layout, with
456 bin/ and libexec/ subdirectories in the directory that contains
457 Emacs.app itself.
458 We put libexec first, because init_callproc_1 uses the first
459 element to initialize exec-directory. An alternative would be
460 for init_callproc to check for invocation-directory/libexec.
461 */
462 {
463 NSBundle *bundle = [NSBundle mainBundle];
464 NSString *resourceDir = [bundle resourcePath];
465 NSString *binDir = [bundle bundlePath];
466 NSString *resourcePath, *resourcePaths;
467 NSRange range;
468 NSString *pathSeparator = [NSString stringWithFormat: @"%c", SEPCHAR];
469 NSFileManager *fileManager = [NSFileManager defaultManager];
470 NSArray *paths;
471 NSEnumerator *pathEnum;
472 BOOL isDir;
473
474 range = [resourceDir rangeOfString: @"Contents"];
475 if (range.location != NSNotFound)
476 {
477 binDir = [binDir stringByAppendingPathComponent: @"Contents"];
478 #ifdef NS_IMPL_COCOA
479 binDir = [binDir stringByAppendingPathComponent: @"MacOS"];
480 #endif
481 }
482
483 paths = [binDir stringsByAppendingPaths:
484 [NSArray arrayWithObjects: @"libexec", @"bin", nil]];
485 pathEnum = [paths objectEnumerator];
486 resourcePaths = @"";
487
488 while ((resourcePath = [pathEnum nextObject]))
489 {
490 if ([fileManager fileExistsAtPath: resourcePath isDirectory: &isDir])
491 if (isDir)
492 {
493 if ([resourcePaths length] > 0)
494 resourcePaths
495 = [resourcePaths stringByAppendingString: pathSeparator];
496 resourcePaths
497 = [resourcePaths stringByAppendingString: resourcePath];
498 }
499 }
500 if ([resourcePaths length] > 0) return [resourcePaths UTF8String];
501
502 return NULL;
503 }
504
505
506 const char *
507 ns_load_path (void)
508 /* If running as a self-contained app bundle, return as a path string
509 the filenames of the site-lisp and lisp directories.
510 Ie, site-lisp:lisp. Otherwise, return nil. */
511 {
512 NSBundle *bundle = [NSBundle mainBundle];
513 NSString *resourceDir = [bundle resourcePath];
514 NSString *resourcePath, *resourcePaths;
515 NSString *pathSeparator = [NSString stringWithFormat: @"%c", SEPCHAR];
516 NSFileManager *fileManager = [NSFileManager defaultManager];
517 BOOL isDir;
518 NSArray *paths = [resourceDir stringsByAppendingPaths:
519 [NSArray arrayWithObjects:
520 @"site-lisp", @"lisp", nil]];
521 NSEnumerator *pathEnum = [paths objectEnumerator];
522 resourcePaths = @"";
523
524 /* Hack to skip site-lisp. */
525 if (no_site_lisp) resourcePath = [pathEnum nextObject];
526
527 while ((resourcePath = [pathEnum nextObject]))
528 {
529 if ([fileManager fileExistsAtPath: resourcePath isDirectory: &isDir])
530 if (isDir)
531 {
532 if ([resourcePaths length] > 0)
533 resourcePaths
534 = [resourcePaths stringByAppendingString: pathSeparator];
535 resourcePaths
536 = [resourcePaths stringByAppendingString: resourcePath];
537 }
538 }
539 if ([resourcePaths length] > 0) return [resourcePaths UTF8String];
540
541 return NULL;
542 }
543
544 static void
545 ns_timeout (int usecs)
546 /* --------------------------------------------------------------------------
547 Blocking timer utility used by ns_ring_bell
548 -------------------------------------------------------------------------- */
549 {
550 struct timespec wakeup = timespec_add (current_timespec (),
551 make_timespec (0, usecs * 1000));
552
553 /* Keep waiting until past the time wakeup. */
554 while (1)
555 {
556 struct timespec timeout, now = current_timespec ();
557 if (timespec_cmp (wakeup, now) <= 0)
558 break;
559 timeout = timespec_sub (wakeup, now);
560
561 /* Try to wait that long--but we might wake up sooner. */
562 pselect (0, NULL, NULL, NULL, &timeout, NULL);
563 }
564 }
565
566
567 void
568 ns_release_object (void *obj)
569 /* --------------------------------------------------------------------------
570 Release an object (callable from C)
571 -------------------------------------------------------------------------- */
572 {
573 [(id)obj release];
574 }
575
576
577 void
578 ns_retain_object (void *obj)
579 /* --------------------------------------------------------------------------
580 Retain an object (callable from C)
581 -------------------------------------------------------------------------- */
582 {
583 [(id)obj retain];
584 }
585
586
587 void *
588 ns_alloc_autorelease_pool (void)
589 /* --------------------------------------------------------------------------
590 Allocate a pool for temporary objects (callable from C)
591 -------------------------------------------------------------------------- */
592 {
593 return [[NSAutoreleasePool alloc] init];
594 }
595
596
597 void
598 ns_release_autorelease_pool (void *pool)
599 /* --------------------------------------------------------------------------
600 Free a pool and temporary objects it refers to (callable from C)
601 -------------------------------------------------------------------------- */
602 {
603 ns_release_object (pool);
604 }
605
606
607
608 /* ==========================================================================
609
610 Focus (clipping) and screen update
611
612 ========================================================================== */
613
614 //
615 // Window constraining
616 // -------------------
617 //
618 // To ensure that the windows are not placed under the menu bar, they
619 // are typically moved by the call-back constrainFrameRect. However,
620 // by overriding it, it's possible to inhibit this, leaving the window
621 // in it's original position.
622 //
623 // It's possible to hide the menu bar. However, technically, it's only
624 // possible to hide it when the application is active. To ensure that
625 // this work properly, the menu bar and window constraining are
626 // deferred until the application becomes active.
627 //
628 // Even though it's not possible to manually move a window above the
629 // top of the screen, it is allowed if it's done programmatically,
630 // when the menu is hidden. This allows the editable area to cover the
631 // full screen height.
632 //
633 // Test cases
634 // ----------
635 //
636 // Use the following extra files:
637 //
638 // init.el:
639 // ;; Hide menu and place frame slightly above the top of the screen.
640 // (setq ns-auto-hide-menu-bar t)
641 // (set-frame-position (selected-frame) 0 -20)
642 //
643 // Test 1:
644 //
645 // emacs -Q -l init.el
646 //
647 // Result: No menu bar, and the title bar should be above the screen.
648 //
649 // Test 2:
650 //
651 // emacs -Q
652 //
653 // Result: Menu bar visible, frame placed immediately below the menu.
654 //
655
656 static void
657 ns_constrain_all_frames (void)
658 {
659 Lisp_Object tail, frame;
660
661 FOR_EACH_FRAME (tail, frame)
662 {
663 struct frame *f = XFRAME (frame);
664 if (FRAME_NS_P (f))
665 {
666 NSView *view = FRAME_NS_VIEW (f);
667 /* This no-op will trigger the default window placing
668 * constraint system. */
669 [[view window] setFrameOrigin:[[view window] frame].origin];
670 }
671 }
672 }
673
674
675 /* True, if the menu bar should be hidden. */
676
677 static BOOL
678 ns_menu_bar_should_be_hidden (void)
679 {
680 return !NILP (ns_auto_hide_menu_bar)
681 && [NSApp respondsToSelector:@selector(setPresentationOptions:)];
682 }
683
684
685 /* Show or hide the menu bar, based on user setting. */
686
687 static void
688 ns_update_auto_hide_menu_bar (void)
689 {
690 #ifdef NS_IMPL_COCOA
691 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
692 block_input ();
693
694 NSTRACE (ns_update_auto_hide_menu_bar);
695
696 if (NSApp != nil && [NSApp isActive])
697 {
698 // Note, "setPresentationOptions" triggers an error unless the
699 // application is active.
700 BOOL menu_bar_should_be_hidden = ns_menu_bar_should_be_hidden ();
701
702 if (menu_bar_should_be_hidden != ns_menu_bar_is_hidden)
703 {
704 NSApplicationPresentationOptions options
705 = NSApplicationPresentationDefault;
706
707 if (menu_bar_should_be_hidden)
708 options |= NSApplicationPresentationAutoHideMenuBar
709 | NSApplicationPresentationAutoHideDock;
710
711 [NSApp setPresentationOptions: options];
712
713 ns_menu_bar_is_hidden = menu_bar_should_be_hidden;
714
715 if (!ns_menu_bar_is_hidden)
716 {
717 ns_constrain_all_frames ();
718 }
719 }
720 }
721
722 unblock_input ();
723 #endif
724 #endif
725 }
726
727
728 static void
729 ns_update_begin (struct frame *f)
730 /* --------------------------------------------------------------------------
731 Prepare for a grouped sequence of drawing calls
732 external (RIF) call; whole frame, called before update_window_begin
733 -------------------------------------------------------------------------- */
734 {
735 EmacsView *view = FRAME_NS_VIEW (f);
736 NSTRACE (ns_update_begin);
737
738 ns_update_auto_hide_menu_bar ();
739
740 #ifdef NS_IMPL_COCOA
741 if ([view isFullscreen] && [view fsIsNative])
742 {
743 // Fix reappearing tool bar in fullscreen for OSX 10.7
744 BOOL tbar_visible = FRAME_EXTERNAL_TOOL_BAR (f) ? YES : NO;
745 NSToolbar *toolbar = [FRAME_NS_VIEW (f) toolbar];
746 if (! tbar_visible != ! [toolbar isVisible])
747 [toolbar setVisible: tbar_visible];
748 }
749 #endif
750
751 ns_updating_frame = f;
752 [view lockFocus];
753
754 /* drawRect may have been called for say the minibuffer, and then clip path
755 is for the minibuffer. But the display engine may draw more because
756 we have set the frame as garbaged. So reset clip path to the whole
757 view. */
758 #ifdef NS_IMPL_COCOA
759 {
760 NSBezierPath *bp;
761 NSRect r = [view frame];
762 NSRect cr = [[view window] frame];
763 /* If a large frame size is set, r may be larger than the window frame
764 before constrained. In that case don't change the clip path, as we
765 will clear in to the tool bar and title bar. */
766 if (r.size.height
767 + FRAME_NS_TITLEBAR_HEIGHT (f)
768 + FRAME_TOOLBAR_HEIGHT (f) <= cr.size.height)
769 {
770 bp = [[NSBezierPath bezierPathWithRect: r] retain];
771 [bp setClip];
772 [bp release];
773 }
774 }
775 #endif
776
777 #ifdef NS_IMPL_GNUSTEP
778 uRect = NSMakeRect (0, 0, 0, 0);
779 #endif
780 }
781
782
783 static void
784 ns_update_window_begin (struct window *w)
785 /* --------------------------------------------------------------------------
786 Prepare for a grouped sequence of drawing calls
787 external (RIF) call; for one window, called after update_begin
788 -------------------------------------------------------------------------- */
789 {
790 struct frame *f = XFRAME (WINDOW_FRAME (w));
791 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
792
793 NSTRACE (ns_update_window_begin);
794 w->output_cursor = w->cursor;
795
796 block_input ();
797
798 if (f == hlinfo->mouse_face_mouse_frame)
799 {
800 /* Don't do highlighting for mouse motion during the update. */
801 hlinfo->mouse_face_defer = 1;
802
803 /* If the frame needs to be redrawn,
804 simply forget about any prior mouse highlighting. */
805 if (FRAME_GARBAGED_P (f))
806 hlinfo->mouse_face_window = Qnil;
807
808 /* (further code for mouse faces ifdef'd out in other terms elided) */
809 }
810
811 unblock_input ();
812 }
813
814
815 static void
816 ns_update_window_end (struct window *w, bool cursor_on_p,
817 bool mouse_face_overwritten_p)
818 /* --------------------------------------------------------------------------
819 Finished a grouped sequence of drawing calls
820 external (RIF) call; for one window called before update_end
821 -------------------------------------------------------------------------- */
822 {
823 /* note: this fn is nearly identical in all terms */
824 if (!w->pseudo_window_p)
825 {
826 block_input ();
827
828 if (cursor_on_p)
829 display_and_set_cursor (w, 1,
830 w->output_cursor.hpos, w->output_cursor.vpos,
831 w->output_cursor.x, w->output_cursor.y);
832
833 if (draw_window_fringes (w, 1))
834 {
835 if (WINDOW_RIGHT_DIVIDER_WIDTH (w))
836 x_draw_right_divider (w);
837 else
838 x_draw_vertical_border (w);
839 }
840
841 unblock_input ();
842 }
843
844 /* If a row with mouse-face was overwritten, arrange for
845 frame_up_to_date to redisplay the mouse highlight. */
846 if (mouse_face_overwritten_p)
847 reset_mouse_highlight (MOUSE_HL_INFO (XFRAME (w->frame)));
848
849 NSTRACE (update_window_end);
850 }
851
852
853 static void
854 ns_update_end (struct frame *f)
855 /* --------------------------------------------------------------------------
856 Finished a grouped sequence of drawing calls
857 external (RIF) call; for whole frame, called after update_window_end
858 -------------------------------------------------------------------------- */
859 {
860 EmacsView *view = FRAME_NS_VIEW (f);
861
862 /* if (f == MOUSE_HL_INFO (f)->mouse_face_mouse_frame) */
863 MOUSE_HL_INFO (f)->mouse_face_defer = 0;
864
865 block_input ();
866
867 [view unlockFocus];
868 [[view window] flushWindow];
869
870 unblock_input ();
871 ns_updating_frame = NULL;
872 NSTRACE (ns_update_end);
873 }
874
875 static void
876 ns_focus (struct frame *f, NSRect *r, int n)
877 /* --------------------------------------------------------------------------
878 Internal: Focus on given frame. During small local updates this is used to
879 draw, however during large updates, ns_update_begin and ns_update_end are
880 called to wrap the whole thing, in which case these calls are stubbed out.
881 Except, on GNUstep, we accumulate the rectangle being drawn into, because
882 the back end won't do this automatically, and will just end up flushing
883 the entire window.
884 -------------------------------------------------------------------------- */
885 {
886 // NSTRACE (ns_focus);
887 /* static int c =0;
888 fprintf (stderr, "focus: %d", c++);
889 if (r) fprintf (stderr, " (%.0f, %.0f : %.0f x %.0f)", r->origin.x, r->origin.y, r->size.width, r->size.height);
890 fprintf (stderr, "\n"); */
891
892 if (f != ns_updating_frame)
893 {
894 NSView *view = FRAME_NS_VIEW (f);
895 if (view != focus_view)
896 {
897 if (focus_view != NULL)
898 {
899 [focus_view unlockFocus];
900 [[focus_view window] flushWindow];
901 /*debug_lock--; */
902 }
903
904 if (view)
905 [view lockFocus];
906 focus_view = view;
907 /*if (view) debug_lock++; */
908 }
909 }
910
911 /* clipping */
912 if (r)
913 {
914 [[NSGraphicsContext currentContext] saveGraphicsState];
915 if (n == 2)
916 NSRectClipList (r, 2);
917 else
918 NSRectClip (*r);
919 gsaved = YES;
920 }
921 }
922
923
924 static void
925 ns_unfocus (struct frame *f)
926 /* --------------------------------------------------------------------------
927 Internal: Remove focus on given frame
928 -------------------------------------------------------------------------- */
929 {
930 // NSTRACE (ns_unfocus);
931
932 if (gsaved)
933 {
934 [[NSGraphicsContext currentContext] restoreGraphicsState];
935 gsaved = NO;
936 }
937
938 if (f != ns_updating_frame)
939 {
940 if (focus_view != NULL)
941 {
942 [focus_view unlockFocus];
943 [[focus_view window] flushWindow];
944 focus_view = NULL;
945 /*debug_lock--; */
946 }
947 }
948 }
949
950
951 static void
952 ns_clip_to_row (struct window *w, struct glyph_row *row,
953 enum glyph_row_area area, BOOL gc)
954 /* --------------------------------------------------------------------------
955 Internal (but parallels other terms): Focus drawing on given row
956 -------------------------------------------------------------------------- */
957 {
958 struct frame *f = XFRAME (WINDOW_FRAME (w));
959 NSRect clip_rect;
960 int window_x, window_y, window_width;
961
962 window_box (w, area, &window_x, &window_y, &window_width, 0);
963
964 clip_rect.origin.x = window_x;
965 clip_rect.origin.y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, row->y));
966 clip_rect.origin.y = max (clip_rect.origin.y, window_y);
967 clip_rect.size.width = window_width;
968 clip_rect.size.height = row->visible_height;
969
970 ns_focus (f, &clip_rect, 1);
971 }
972
973
974 static void
975 ns_ring_bell (struct frame *f)
976 /* --------------------------------------------------------------------------
977 "Beep" routine
978 -------------------------------------------------------------------------- */
979 {
980 NSTRACE (ns_ring_bell);
981 if (visible_bell)
982 {
983 NSAutoreleasePool *pool;
984 struct frame *frame = SELECTED_FRAME ();
985 NSView *view;
986
987 block_input ();
988 pool = [[NSAutoreleasePool alloc] init];
989
990 view = FRAME_NS_VIEW (frame);
991 if (view != nil)
992 {
993 NSRect r, surr;
994 NSPoint dim = NSMakePoint (128, 128);
995
996 r = [view bounds];
997 r.origin.x += (r.size.width - dim.x) / 2;
998 r.origin.y += (r.size.height - dim.y) / 2;
999 r.size.width = dim.x;
1000 r.size.height = dim.y;
1001 surr = NSInsetRect (r, -2, -2);
1002 ns_focus (frame, &surr, 1);
1003 [[view window] cacheImageInRect: [view convertRect: surr toView:nil]];
1004 [ns_lookup_indexed_color (NS_FACE_FOREGROUND
1005 (FRAME_DEFAULT_FACE (frame)), frame) set];
1006 NSRectFill (r);
1007 [[view window] flushWindow];
1008 ns_timeout (150000);
1009 [[view window] restoreCachedImage];
1010 [[view window] flushWindow];
1011 ns_unfocus (frame);
1012 }
1013 [pool release];
1014 unblock_input ();
1015 }
1016 else
1017 {
1018 NSBeep ();
1019 }
1020 }
1021
1022 /* ==========================================================================
1023
1024 Frame / window manager related functions
1025
1026 ========================================================================== */
1027
1028
1029 static void
1030 ns_raise_frame (struct frame *f)
1031 /* --------------------------------------------------------------------------
1032 Bring window to foreground and make it active
1033 -------------------------------------------------------------------------- */
1034 {
1035 NSView *view;
1036 check_window_system (f);
1037 view = FRAME_NS_VIEW (f);
1038 block_input ();
1039 if (FRAME_VISIBLE_P (f))
1040 [[view window] makeKeyAndOrderFront: NSApp];
1041 unblock_input ();
1042 }
1043
1044
1045 static void
1046 ns_lower_frame (struct frame *f)
1047 /* --------------------------------------------------------------------------
1048 Send window to back
1049 -------------------------------------------------------------------------- */
1050 {
1051 NSView *view;
1052 check_window_system (f);
1053 view = FRAME_NS_VIEW (f);
1054 block_input ();
1055 [[view window] orderBack: NSApp];
1056 unblock_input ();
1057 }
1058
1059
1060 static void
1061 ns_frame_raise_lower (struct frame *f, int raise)
1062 /* --------------------------------------------------------------------------
1063 External (hook)
1064 -------------------------------------------------------------------------- */
1065 {
1066 NSTRACE (ns_frame_raise_lower);
1067
1068 if (raise)
1069 ns_raise_frame (f);
1070 else
1071 ns_lower_frame (f);
1072 }
1073
1074
1075 static void
1076 ns_frame_rehighlight (struct frame *frame)
1077 /* --------------------------------------------------------------------------
1078 External (hook): called on things like window switching within frame
1079 -------------------------------------------------------------------------- */
1080 {
1081 struct ns_display_info *dpyinfo = FRAME_DISPLAY_INFO (frame);
1082 struct frame *old_highlight = dpyinfo->x_highlight_frame;
1083
1084 NSTRACE (ns_frame_rehighlight);
1085 if (dpyinfo->x_focus_frame)
1086 {
1087 dpyinfo->x_highlight_frame
1088 = (FRAMEP (FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame))
1089 ? XFRAME (FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame))
1090 : dpyinfo->x_focus_frame);
1091 if (!FRAME_LIVE_P (dpyinfo->x_highlight_frame))
1092 {
1093 fset_focus_frame (dpyinfo->x_focus_frame, Qnil);
1094 dpyinfo->x_highlight_frame = dpyinfo->x_focus_frame;
1095 }
1096 }
1097 else
1098 dpyinfo->x_highlight_frame = 0;
1099
1100 if (dpyinfo->x_highlight_frame &&
1101 dpyinfo->x_highlight_frame != old_highlight)
1102 {
1103 if (old_highlight)
1104 {
1105 x_update_cursor (old_highlight, 1);
1106 x_set_frame_alpha (old_highlight);
1107 }
1108 if (dpyinfo->x_highlight_frame)
1109 {
1110 x_update_cursor (dpyinfo->x_highlight_frame, 1);
1111 x_set_frame_alpha (dpyinfo->x_highlight_frame);
1112 }
1113 }
1114 }
1115
1116
1117 void
1118 x_make_frame_visible (struct frame *f)
1119 /* --------------------------------------------------------------------------
1120 External: Show the window (X11 semantics)
1121 -------------------------------------------------------------------------- */
1122 {
1123 NSTRACE (x_make_frame_visible);
1124 /* XXX: at some points in past this was not needed, as the only place that
1125 called this (frame.c:Fraise_frame ()) also called raise_lower;
1126 if this ends up the case again, comment this out again. */
1127 if (!FRAME_VISIBLE_P (f))
1128 {
1129 EmacsView *view = (EmacsView *)FRAME_NS_VIEW (f);
1130
1131 SET_FRAME_VISIBLE (f, 1);
1132 ns_raise_frame (f);
1133
1134 /* Making a new frame from a fullscreen frame will make the new frame
1135 fullscreen also. So skip handleFS as this will print an error. */
1136 if ([view fsIsNative] && f->want_fullscreen == FULLSCREEN_BOTH
1137 && [view isFullscreen])
1138 return;
1139
1140 if (f->want_fullscreen != FULLSCREEN_NONE)
1141 {
1142 block_input ();
1143 [view handleFS];
1144 unblock_input ();
1145 }
1146 }
1147 }
1148
1149
1150 void
1151 x_make_frame_invisible (struct frame *f)
1152 /* --------------------------------------------------------------------------
1153 External: Hide the window (X11 semantics)
1154 -------------------------------------------------------------------------- */
1155 {
1156 NSView *view;
1157 NSTRACE (x_make_frame_invisible);
1158 check_window_system (f);
1159 view = FRAME_NS_VIEW (f);
1160 [[view window] orderOut: NSApp];
1161 SET_FRAME_VISIBLE (f, 0);
1162 SET_FRAME_ICONIFIED (f, 0);
1163 }
1164
1165
1166 void
1167 x_iconify_frame (struct frame *f)
1168 /* --------------------------------------------------------------------------
1169 External: Iconify window
1170 -------------------------------------------------------------------------- */
1171 {
1172 NSView *view;
1173 struct ns_display_info *dpyinfo;
1174
1175 NSTRACE (x_iconify_frame);
1176 check_window_system (f);
1177 view = FRAME_NS_VIEW (f);
1178 dpyinfo = FRAME_DISPLAY_INFO (f);
1179
1180 if (dpyinfo->x_highlight_frame == f)
1181 dpyinfo->x_highlight_frame = 0;
1182
1183 if ([[view window] windowNumber] <= 0)
1184 {
1185 /* the window is still deferred. Make it very small, bring it
1186 on screen and order it out. */
1187 NSRect s = { { 100, 100}, {0, 0} };
1188 NSRect t;
1189 t = [[view window] frame];
1190 [[view window] setFrame: s display: NO];
1191 [[view window] orderBack: NSApp];
1192 [[view window] orderOut: NSApp];
1193 [[view window] setFrame: t display: NO];
1194 }
1195 [[view window] miniaturize: NSApp];
1196 }
1197
1198 /* Free X resources of frame F. */
1199
1200 void
1201 x_free_frame_resources (struct frame *f)
1202 {
1203 NSView *view;
1204 struct ns_display_info *dpyinfo;
1205 Mouse_HLInfo *hlinfo;
1206
1207 NSTRACE (x_free_frame_resources);
1208 check_window_system (f);
1209 view = FRAME_NS_VIEW (f);
1210 dpyinfo = FRAME_DISPLAY_INFO (f);
1211 hlinfo = MOUSE_HL_INFO (f);
1212
1213 [(EmacsView *)view setWindowClosing: YES]; /* may not have been informed */
1214
1215 block_input ();
1216
1217 free_frame_menubar (f);
1218 free_frame_faces (f);
1219
1220 if (f == dpyinfo->x_focus_frame)
1221 dpyinfo->x_focus_frame = 0;
1222 if (f == dpyinfo->x_highlight_frame)
1223 dpyinfo->x_highlight_frame = 0;
1224 if (f == hlinfo->mouse_face_mouse_frame)
1225 reset_mouse_highlight (hlinfo);
1226
1227 if (f->output_data.ns->miniimage != nil)
1228 [f->output_data.ns->miniimage release];
1229
1230 [[view window] close];
1231 [view release];
1232
1233 xfree (f->output_data.ns);
1234
1235 unblock_input ();
1236 }
1237
1238 void
1239 x_destroy_window (struct frame *f)
1240 /* --------------------------------------------------------------------------
1241 External: Delete the window
1242 -------------------------------------------------------------------------- */
1243 {
1244 NSTRACE (x_destroy_window);
1245 check_window_system (f);
1246 x_free_frame_resources (f);
1247 ns_window_num--;
1248 }
1249
1250
1251 void
1252 x_set_offset (struct frame *f, int xoff, int yoff, int change_grav)
1253 /* --------------------------------------------------------------------------
1254 External: Position the window
1255 -------------------------------------------------------------------------- */
1256 {
1257 NSView *view = FRAME_NS_VIEW (f);
1258 NSArray *screens = [NSScreen screens];
1259 NSScreen *fscreen = [screens objectAtIndex: 0];
1260 NSScreen *screen = [[view window] screen];
1261
1262 NSTRACE (x_set_offset);
1263
1264 block_input ();
1265
1266 f->left_pos = xoff;
1267 f->top_pos = yoff;
1268
1269 if (view != nil && screen && fscreen)
1270 {
1271 f->left_pos = f->size_hint_flags & XNegative
1272 ? [screen visibleFrame].size.width + f->left_pos - FRAME_PIXEL_WIDTH (f)
1273 : f->left_pos;
1274 /* We use visibleFrame here to take menu bar into account.
1275 Ideally we should also adjust left/top with visibleFrame.origin. */
1276
1277 f->top_pos = f->size_hint_flags & YNegative
1278 ? ([screen visibleFrame].size.height + f->top_pos
1279 - FRAME_PIXEL_HEIGHT (f) - FRAME_NS_TITLEBAR_HEIGHT (f)
1280 - FRAME_TOOLBAR_HEIGHT (f))
1281 : f->top_pos;
1282 #ifdef NS_IMPL_GNUSTEP
1283 if (f->left_pos < 100)
1284 f->left_pos = 100; /* don't overlap menu */
1285 #endif
1286 /* Constrain the setFrameTopLeftPoint so we don't move behind the
1287 menu bar. */
1288 [[view window] setFrameTopLeftPoint:
1289 NSMakePoint (SCREENMAXBOUND (f->left_pos),
1290 SCREENMAXBOUND ([fscreen frame].size.height
1291 - NS_TOP_POS (f)))];
1292 f->size_hint_flags &= ~(XNegative|YNegative);
1293 }
1294
1295 unblock_input ();
1296 }
1297
1298
1299 void
1300 x_set_window_size (struct frame *f,
1301 int change_grav,
1302 int width,
1303 int height,
1304 bool pixelwise)
1305 /* --------------------------------------------------------------------------
1306 Adjust window pixel size based on given character grid size
1307 Impl is a bit more complex than other terms, need to do some
1308 internal clipping.
1309 -------------------------------------------------------------------------- */
1310 {
1311 EmacsView *view = FRAME_NS_VIEW (f);
1312 NSWindow *window = [view window];
1313 NSRect wr = [window frame];
1314 int tb = FRAME_EXTERNAL_TOOL_BAR (f);
1315 int pixelwidth, pixelheight;
1316 int rows, cols;
1317
1318 NSTRACE (x_set_window_size);
1319
1320 if (view == nil)
1321 return;
1322
1323 /*fprintf (stderr, "\tsetWindowSize: %d x %d, pixelwise %d, font size %d x %d\n", width, height, pixelwise, FRAME_COLUMN_WIDTH (f), FRAME_LINE_HEIGHT (f));*/
1324
1325 block_input ();
1326
1327 check_frame_size (f, &width, &height, pixelwise);
1328
1329 compute_fringe_widths (f, 0);
1330
1331 if (pixelwise)
1332 {
1333 pixelwidth = FRAME_TEXT_TO_PIXEL_WIDTH (f, width);
1334 pixelheight = FRAME_TEXT_TO_PIXEL_HEIGHT (f, height);
1335 cols = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, pixelwidth);
1336 rows = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, pixelheight);
1337 }
1338 else
1339 {
1340 pixelwidth = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, width);
1341 pixelheight = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, height);
1342 cols = width;
1343 rows = height;
1344 }
1345
1346 /* If we have a toolbar, take its height into account. */
1347 if (tb && ! [view isFullscreen])
1348 {
1349 /* NOTE: previously this would generate wrong result if toolbar not
1350 yet displayed and fixing toolbar_height=32 helped, but
1351 now (200903) seems no longer needed */
1352 FRAME_TOOLBAR_HEIGHT (f) =
1353 NSHeight ([window frameRectForContentRect: NSMakeRect (0, 0, 0, 0)])
1354 - FRAME_NS_TITLEBAR_HEIGHT (f);
1355 #ifdef NS_IMPL_GNUSTEP
1356 FRAME_TOOLBAR_HEIGHT (f) -= 3;
1357 #endif
1358 }
1359 else
1360 FRAME_TOOLBAR_HEIGHT (f) = 0;
1361
1362 wr.size.width = pixelwidth + f->border_width;
1363 wr.size.height = pixelheight;
1364 if (! [view isFullscreen])
1365 wr.size.height += FRAME_NS_TITLEBAR_HEIGHT (f)
1366 + FRAME_TOOLBAR_HEIGHT (f);
1367
1368 /* Do not try to constrain to this screen. We may have multiple
1369 screens, and want Emacs to span those. Constraining to screen
1370 prevents that, and that is not nice to the user. */
1371 if (f->output_data.ns->zooming)
1372 f->output_data.ns->zooming = 0;
1373 else
1374 wr.origin.y += FRAME_PIXEL_HEIGHT (f) - pixelheight;
1375
1376 [view setRows: rows andColumns: cols];
1377 [window setFrame: wr display: YES];
1378
1379 /* This is a trick to compensate for Emacs' managing the scrollbar area
1380 as a fixed number of standard character columns. Instead of leaving
1381 blank space for the extra, we chopped it off above. Now for
1382 left-hand scrollbars, we shift all rendering to the left by the
1383 difference between the real width and Emacs' imagined one. For
1384 right-hand bars, don't worry about it since the extra is never used.
1385 (Obviously doesn't work for vertically split windows tho..) */
1386 {
1387 NSPoint origin = FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f)
1388 ? NSMakePoint (FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f)
1389 - NS_SCROLL_BAR_WIDTH (f), 0)
1390 : NSMakePoint (0, 0);
1391 [view setFrame: NSMakeRect (0, 0, pixelwidth, pixelheight)];
1392 [view setBoundsOrigin: origin];
1393 }
1394
1395 change_frame_size (f, width, height, 0, 1, 0, pixelwise);
1396 /* SET_FRAME_GARBAGED (f); // this short-circuits expose call in drawRect */
1397
1398 mark_window_cursors_off (XWINDOW (f->root_window));
1399 cancel_mouse_face (f);
1400
1401 unblock_input ();
1402 }
1403
1404
1405 static void
1406 ns_fullscreen_hook (struct frame *f)
1407 {
1408 EmacsView *view = (EmacsView *)FRAME_NS_VIEW (f);
1409
1410 if (!FRAME_VISIBLE_P (f))
1411 return;
1412
1413 if (! [view fsIsNative] && f->want_fullscreen == FULLSCREEN_BOTH)
1414 {
1415 /* Old style fs don't initiate correctly if created from
1416 init/default-frame alist, so use a timer (not nice...).
1417 */
1418 [NSTimer scheduledTimerWithTimeInterval: 0.5 target: view
1419 selector: @selector (handleFS)
1420 userInfo: nil repeats: NO];
1421 return;
1422 }
1423
1424 block_input ();
1425 [view handleFS];
1426 unblock_input ();
1427 }
1428
1429 /* ==========================================================================
1430
1431 Color management
1432
1433 ========================================================================== */
1434
1435
1436 NSColor *
1437 ns_lookup_indexed_color (unsigned long idx, struct frame *f)
1438 {
1439 struct ns_color_table *color_table = FRAME_DISPLAY_INFO (f)->color_table;
1440 if (idx < 1 || idx >= color_table->avail)
1441 return nil;
1442 return color_table->colors[idx];
1443 }
1444
1445
1446 unsigned long
1447 ns_index_color (NSColor *color, struct frame *f)
1448 {
1449 struct ns_color_table *color_table = FRAME_DISPLAY_INFO (f)->color_table;
1450 ptrdiff_t idx;
1451 ptrdiff_t i;
1452
1453 if (!color_table->colors)
1454 {
1455 color_table->size = NS_COLOR_CAPACITY;
1456 color_table->avail = 1; /* skip idx=0 as marker */
1457 color_table->colors = xmalloc (color_table->size * sizeof (NSColor *));
1458 color_table->colors[0] = nil;
1459 color_table->empty_indices = [[NSMutableSet alloc] init];
1460 }
1461
1462 /* Do we already have this color? */
1463 for (i = 1; i < color_table->avail; i++)
1464 if (color_table->colors[i] && [color_table->colors[i] isEqual: color])
1465 return i;
1466
1467 if ([color_table->empty_indices count] > 0)
1468 {
1469 NSNumber *index = [color_table->empty_indices anyObject];
1470 [color_table->empty_indices removeObject: index];
1471 idx = [index unsignedLongValue];
1472 }
1473 else
1474 {
1475 if (color_table->avail == color_table->size)
1476 color_table->colors =
1477 xpalloc (color_table->colors, &color_table->size, 1,
1478 min (ULONG_MAX, PTRDIFF_MAX), sizeof *color_table->colors);
1479 idx = color_table->avail++;
1480 }
1481
1482 color_table->colors[idx] = color;
1483 [color retain];
1484 /*fprintf(stderr, "color_table: allocated %d\n",idx);*/
1485 return idx;
1486 }
1487
1488
1489 void
1490 ns_free_indexed_color (unsigned long idx, struct frame *f)
1491 {
1492 struct ns_color_table *color_table;
1493 NSColor *color;
1494 NSNumber *index;
1495
1496 if (!f)
1497 return;
1498
1499 color_table = FRAME_DISPLAY_INFO (f)->color_table;
1500
1501 if (idx <= 0 || idx >= color_table->size) {
1502 message1 ("ns_free_indexed_color: Color index out of range.\n");
1503 return;
1504 }
1505
1506 index = [NSNumber numberWithUnsignedInt: idx];
1507 if ([color_table->empty_indices containsObject: index]) {
1508 message1 ("ns_free_indexed_color: attempt to free already freed color.\n");
1509 return;
1510 }
1511
1512 color = color_table->colors[idx];
1513 [color release];
1514 color_table->colors[idx] = nil;
1515 [color_table->empty_indices addObject: index];
1516 /*fprintf(stderr, "color_table: FREED %d\n",idx);*/
1517 }
1518
1519
1520 static int
1521 ns_get_color (const char *name, NSColor **col)
1522 /* --------------------------------------------------------------------------
1523 Parse a color name
1524 -------------------------------------------------------------------------- */
1525 /* On *Step, we attempt to mimic the X11 platform here, down to installing an
1526 X11 rgb.txt-compatible color list in Emacs.clr (see ns_term_init()).
1527 See: http://thread.gmane.org/gmane.emacs.devel/113050/focus=113272). */
1528 {
1529 NSColor *new = nil;
1530 static char hex[20];
1531 int scaling;
1532 float r = -1.0, g, b;
1533 NSString *nsname = [NSString stringWithUTF8String: name];
1534
1535 /*fprintf (stderr, "ns_get_color: '%s'\n", name); */
1536 block_input ();
1537
1538 if ([nsname isEqualToString: @"ns_selection_bg_color"])
1539 {
1540 #ifdef NS_IMPL_COCOA
1541 NSString *defname = [[NSUserDefaults standardUserDefaults]
1542 stringForKey: @"AppleHighlightColor"];
1543 if (defname != nil)
1544 nsname = defname;
1545 else
1546 #endif
1547 if ((new = [NSColor selectedTextBackgroundColor]) != nil)
1548 {
1549 *col = [new colorUsingDefaultColorSpace];
1550 unblock_input ();
1551 return 0;
1552 }
1553 else
1554 nsname = NS_SELECTION_BG_COLOR_DEFAULT;
1555
1556 name = [nsname UTF8String];
1557 }
1558 else if ([nsname isEqualToString: @"ns_selection_fg_color"])
1559 {
1560 /* NOTE: OSX applications normally don't set foreground selection, but
1561 text may be unreadable if we don't.
1562 */
1563 if ((new = [NSColor selectedTextColor]) != nil)
1564 {
1565 *col = [new colorUsingDefaultColorSpace];
1566 unblock_input ();
1567 return 0;
1568 }
1569
1570 nsname = NS_SELECTION_FG_COLOR_DEFAULT;
1571 name = [nsname UTF8String];
1572 }
1573
1574 /* First, check for some sort of numeric specification. */
1575 hex[0] = '\0';
1576
1577 if (name[0] == '0' || name[0] == '1' || name[0] == '.') /* RGB decimal */
1578 {
1579 NSScanner *scanner = [NSScanner scannerWithString: nsname];
1580 [scanner scanFloat: &r];
1581 [scanner scanFloat: &g];
1582 [scanner scanFloat: &b];
1583 }
1584 else if (!strncmp(name, "rgb:", 4)) /* A newer X11 format -- rgb:r/g/b */
1585 scaling = (snprintf (hex, sizeof hex, "%s", name + 4) - 2) / 3;
1586 else if (name[0] == '#') /* An old X11 format; convert to newer */
1587 {
1588 int len = (strlen(name) - 1);
1589 int start = (len % 3 == 0) ? 1 : len / 4 + 1;
1590 int i;
1591 scaling = strlen(name+start) / 3;
1592 for (i = 0; i < 3; i++)
1593 sprintf (hex + i * (scaling + 1), "%.*s/", scaling,
1594 name + start + i * scaling);
1595 hex[3 * (scaling + 1) - 1] = '\0';
1596 }
1597
1598 if (hex[0])
1599 {
1600 int rr, gg, bb;
1601 float fscale = scaling == 4 ? 65535.0 : (scaling == 2 ? 255.0 : 15.0);
1602 if (sscanf (hex, "%x/%x/%x", &rr, &gg, &bb))
1603 {
1604 r = rr / fscale;
1605 g = gg / fscale;
1606 b = bb / fscale;
1607 }
1608 }
1609
1610 if (r >= 0.0F)
1611 {
1612 *col = [NSColor colorForEmacsRed: r green: g blue: b alpha: 1.0];
1613 unblock_input ();
1614 return 0;
1615 }
1616
1617 /* Otherwise, color is expected to be from a list */
1618 {
1619 NSEnumerator *lenum, *cenum;
1620 NSString *name;
1621 NSColorList *clist;
1622
1623 #ifdef NS_IMPL_GNUSTEP
1624 /* XXX: who is wrong, the requestor or the implementation? */
1625 if ([nsname compare: @"Highlight" options: NSCaseInsensitiveSearch]
1626 == NSOrderedSame)
1627 nsname = @"highlightColor";
1628 #endif
1629
1630 lenum = [[NSColorList availableColorLists] objectEnumerator];
1631 while ( (clist = [lenum nextObject]) && new == nil)
1632 {
1633 cenum = [[clist allKeys] objectEnumerator];
1634 while ( (name = [cenum nextObject]) && new == nil )
1635 {
1636 if ([name compare: nsname
1637 options: NSCaseInsensitiveSearch] == NSOrderedSame )
1638 new = [clist colorWithKey: name];
1639 }
1640 }
1641 }
1642
1643 if (new)
1644 *col = [new colorUsingDefaultColorSpace];
1645 unblock_input ();
1646 return new ? 0 : 1;
1647 }
1648
1649
1650 int
1651 ns_lisp_to_color (Lisp_Object color, NSColor **col)
1652 /* --------------------------------------------------------------------------
1653 Convert a Lisp string object to a NS color
1654 -------------------------------------------------------------------------- */
1655 {
1656 NSTRACE (ns_lisp_to_color);
1657 if (STRINGP (color))
1658 return ns_get_color (SSDATA (color), col);
1659 else if (SYMBOLP (color))
1660 return ns_get_color (SSDATA (SYMBOL_NAME (color)), col);
1661 return 1;
1662 }
1663
1664
1665 Lisp_Object
1666 ns_color_to_lisp (NSColor *col)
1667 /* --------------------------------------------------------------------------
1668 Convert a color to a lisp string with the RGB equivalent
1669 -------------------------------------------------------------------------- */
1670 {
1671 EmacsCGFloat red, green, blue, alpha, gray;
1672 char buf[1024];
1673 const char *str;
1674 NSTRACE (ns_color_to_lisp);
1675
1676 block_input ();
1677 if ([[col colorSpaceName] isEqualToString: NSNamedColorSpace])
1678
1679 if ((str =[[col colorNameComponent] UTF8String]))
1680 {
1681 unblock_input ();
1682 return build_string ((char *)str);
1683 }
1684
1685 [[col colorUsingDefaultColorSpace]
1686 getRed: &red green: &green blue: &blue alpha: &alpha];
1687 if (red == green && red == blue)
1688 {
1689 [[col colorUsingColorSpaceName: NSCalibratedWhiteColorSpace]
1690 getWhite: &gray alpha: &alpha];
1691 snprintf (buf, sizeof (buf), "#%2.2lx%2.2lx%2.2lx",
1692 lrint (gray * 0xff), lrint (gray * 0xff), lrint (gray * 0xff));
1693 unblock_input ();
1694 return build_string (buf);
1695 }
1696
1697 snprintf (buf, sizeof (buf), "#%2.2lx%2.2lx%2.2lx",
1698 lrint (red*0xff), lrint (green*0xff), lrint (blue*0xff));
1699
1700 unblock_input ();
1701 return build_string (buf);
1702 }
1703
1704
1705 void
1706 ns_query_color(void *col, XColor *color_def, int setPixel)
1707 /* --------------------------------------------------------------------------
1708 Get ARGB values out of NSColor col and put them into color_def.
1709 If setPixel, set the pixel to a concatenated version.
1710 and set color_def pixel to the resulting index.
1711 -------------------------------------------------------------------------- */
1712 {
1713 EmacsCGFloat r, g, b, a;
1714
1715 [((NSColor *)col) getRed: &r green: &g blue: &b alpha: &a];
1716 color_def->red = r * 65535;
1717 color_def->green = g * 65535;
1718 color_def->blue = b * 65535;
1719
1720 if (setPixel == YES)
1721 color_def->pixel
1722 = ARGB_TO_ULONG((int)(a*255),
1723 (int)(r*255), (int)(g*255), (int)(b*255));
1724 }
1725
1726
1727 bool
1728 ns_defined_color (struct frame *f,
1729 const char *name,
1730 XColor *color_def,
1731 bool alloc,
1732 bool makeIndex)
1733 /* --------------------------------------------------------------------------
1734 Return true if named color found, and set color_def rgb accordingly.
1735 If makeIndex and alloc are nonzero put the color in the color_table,
1736 and set color_def pixel to the resulting index.
1737 If makeIndex is zero, set color_def pixel to ARGB.
1738 Return false if not found
1739 -------------------------------------------------------------------------- */
1740 {
1741 NSColor *col;
1742 NSTRACE (ns_defined_color);
1743
1744 block_input ();
1745 if (ns_get_color (name, &col) != 0) /* Color not found */
1746 {
1747 unblock_input ();
1748 return 0;
1749 }
1750 if (makeIndex && alloc)
1751 color_def->pixel = ns_index_color (col, f);
1752 ns_query_color (col, color_def, !makeIndex);
1753 unblock_input ();
1754 return 1;
1755 }
1756
1757
1758 void
1759 x_set_frame_alpha (struct frame *f)
1760 /* --------------------------------------------------------------------------
1761 change the entire-frame transparency
1762 -------------------------------------------------------------------------- */
1763 {
1764 struct ns_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
1765 double alpha = 1.0;
1766 double alpha_min = 1.0;
1767
1768 if (dpyinfo->x_highlight_frame == f)
1769 alpha = f->alpha[0];
1770 else
1771 alpha = f->alpha[1];
1772
1773 if (FLOATP (Vframe_alpha_lower_limit))
1774 alpha_min = XFLOAT_DATA (Vframe_alpha_lower_limit);
1775 else if (INTEGERP (Vframe_alpha_lower_limit))
1776 alpha_min = (XINT (Vframe_alpha_lower_limit)) / 100.0;
1777
1778 if (alpha < 0.0)
1779 return;
1780 else if (1.0 < alpha)
1781 alpha = 1.0;
1782 else if (0.0 <= alpha && alpha < alpha_min && alpha_min <= 1.0)
1783 alpha = alpha_min;
1784
1785 #ifdef NS_IMPL_COCOA
1786 {
1787 EmacsView *view = FRAME_NS_VIEW (f);
1788 [[view window] setAlphaValue: alpha];
1789 }
1790 #endif
1791 }
1792
1793
1794 /* ==========================================================================
1795
1796 Mouse handling
1797
1798 ========================================================================== */
1799
1800
1801 void
1802 x_set_mouse_pixel_position (struct frame *f, int pix_x, int pix_y)
1803 /* --------------------------------------------------------------------------
1804 Programmatically reposition mouse pointer in pixel coordinates
1805 -------------------------------------------------------------------------- */
1806 {
1807 NSTRACE (x_set_mouse_pixel_position);
1808 ns_raise_frame (f);
1809 #if 0
1810 /* FIXME: this does not work, and what about GNUstep? */
1811 #ifdef NS_IMPL_COCOA
1812 [FRAME_NS_VIEW (f) lockFocus];
1813 PSsetmouse ((float)pix_x, (float)pix_y);
1814 [FRAME_NS_VIEW (f) unlockFocus];
1815 #endif
1816 #endif
1817 }
1818
1819
1820 void
1821 x_set_mouse_position (struct frame *f, int h, int v)
1822 /* --------------------------------------------------------------------------
1823 Programmatically reposition mouse pointer in character coordinates
1824 -------------------------------------------------------------------------- */
1825 {
1826 int pix_x, pix_y;
1827
1828 pix_x = FRAME_COL_TO_PIXEL_X (f, h) + FRAME_COLUMN_WIDTH (f) / 2;
1829 pix_y = FRAME_LINE_TO_PIXEL_Y (f, v) + FRAME_LINE_HEIGHT (f) / 2;
1830
1831 if (pix_x < 0) pix_x = 0;
1832 if (pix_x > FRAME_PIXEL_WIDTH (f)) pix_x = FRAME_PIXEL_WIDTH (f);
1833
1834 if (pix_y < 0) pix_y = 0;
1835 if (pix_y > FRAME_PIXEL_HEIGHT (f)) pix_y = FRAME_PIXEL_HEIGHT (f);
1836
1837 x_set_mouse_pixel_position (f, pix_x, pix_y);
1838 }
1839
1840
1841 static int
1842 note_mouse_movement (struct frame *frame, CGFloat x, CGFloat y)
1843 /* ------------------------------------------------------------------------
1844 Called by EmacsView on mouseMovement events. Passes on
1845 to emacs mainstream code if we moved off of a rect of interest
1846 known as last_mouse_glyph.
1847 ------------------------------------------------------------------------ */
1848 {
1849 struct ns_display_info *dpyinfo = FRAME_DISPLAY_INFO (frame);
1850 NSRect *r;
1851
1852 // NSTRACE (note_mouse_movement);
1853
1854 dpyinfo->last_mouse_motion_frame = frame;
1855 r = &dpyinfo->last_mouse_glyph;
1856
1857 /* Note, this doesn't get called for enter/leave, since we don't have a
1858 position. Those are taken care of in the corresponding NSView methods. */
1859
1860 /* has movement gone beyond last rect we were tracking? */
1861 if (x < r->origin.x || x >= r->origin.x + r->size.width
1862 || y < r->origin.y || y >= r->origin.y + r->size.height)
1863 {
1864 ns_update_begin (frame);
1865 frame->mouse_moved = 1;
1866 note_mouse_highlight (frame, x, y);
1867 remember_mouse_glyph (frame, x, y, r);
1868 ns_update_end (frame);
1869 return 1;
1870 }
1871
1872 return 0;
1873 }
1874
1875
1876 static void
1877 ns_mouse_position (struct frame **fp, int insist, Lisp_Object *bar_window,
1878 enum scroll_bar_part *part, Lisp_Object *x, Lisp_Object *y,
1879 Time *time)
1880 /* --------------------------------------------------------------------------
1881 External (hook): inform emacs about mouse position and hit parts.
1882 If a scrollbar is being dragged, set bar_window, part, x, y, time.
1883 x & y should be position in the scrollbar (the whole bar, not the handle)
1884 and length of scrollbar respectively
1885 -------------------------------------------------------------------------- */
1886 {
1887 id view;
1888 NSPoint position;
1889 Lisp_Object frame, tail;
1890 struct frame *f;
1891 struct ns_display_info *dpyinfo;
1892
1893 NSTRACE (ns_mouse_position);
1894
1895 if (*fp == NULL)
1896 {
1897 fprintf (stderr, "Warning: ns_mouse_position () called with null *fp.\n");
1898 return;
1899 }
1900
1901 dpyinfo = FRAME_DISPLAY_INFO (*fp);
1902
1903 block_input ();
1904
1905 if (dpyinfo->last_mouse_scroll_bar != nil && insist == 0)
1906 {
1907 /* TODO: we do not use this path at the moment because drag events will
1908 go directly to the EmacsScroller. Leaving code in for now. */
1909 [dpyinfo->last_mouse_scroll_bar
1910 getMouseMotionPart: (int *)part window: bar_window x: x y: y];
1911 if (time)
1912 *time = dpyinfo->last_mouse_movement_time;
1913 dpyinfo->last_mouse_scroll_bar = nil;
1914 }
1915 else
1916 {
1917 /* Clear the mouse-moved flag for every frame on this display. */
1918 FOR_EACH_FRAME (tail, frame)
1919 if (FRAME_NS_P (XFRAME (frame))
1920 && FRAME_NS_DISPLAY (XFRAME (frame)) == FRAME_NS_DISPLAY (*fp))
1921 XFRAME (frame)->mouse_moved = 0;
1922
1923 dpyinfo->last_mouse_scroll_bar = nil;
1924 if (dpyinfo->last_mouse_frame
1925 && FRAME_LIVE_P (dpyinfo->last_mouse_frame))
1926 f = dpyinfo->last_mouse_frame;
1927 else
1928 f = dpyinfo->x_focus_frame ? dpyinfo->x_focus_frame
1929 : SELECTED_FRAME ();
1930
1931 if (f && FRAME_NS_P (f))
1932 {
1933 view = FRAME_NS_VIEW (*fp);
1934
1935 position = [[view window] mouseLocationOutsideOfEventStream];
1936 position = [view convertPoint: position fromView: nil];
1937 remember_mouse_glyph (f, position.x, position.y,
1938 &dpyinfo->last_mouse_glyph);
1939 /*fprintf (stderr, "ns_mouse_position: %.0f, %.0f\n", position.x, position.y); */
1940
1941 if (bar_window) *bar_window = Qnil;
1942 if (part) *part = 0; /*scroll_bar_handle; */
1943
1944 if (x) XSETINT (*x, lrint (position.x));
1945 if (y) XSETINT (*y, lrint (position.y));
1946 if (time)
1947 *time = dpyinfo->last_mouse_movement_time;
1948 *fp = f;
1949 }
1950 }
1951
1952 unblock_input ();
1953 }
1954
1955
1956 static void
1957 ns_frame_up_to_date (struct frame *f)
1958 /* --------------------------------------------------------------------------
1959 External (hook): Fix up mouse highlighting right after a full update.
1960 Can't use FRAME_MOUSE_UPDATE due to ns_frame_begin and ns_frame_end calls.
1961 -------------------------------------------------------------------------- */
1962 {
1963 NSTRACE (ns_frame_up_to_date);
1964
1965 if (FRAME_NS_P (f))
1966 {
1967 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
1968 if (f == hlinfo->mouse_face_mouse_frame)
1969 {
1970 block_input ();
1971 ns_update_begin(f);
1972 note_mouse_highlight (hlinfo->mouse_face_mouse_frame,
1973 hlinfo->mouse_face_mouse_x,
1974 hlinfo->mouse_face_mouse_y);
1975 ns_update_end(f);
1976 unblock_input ();
1977 }
1978 }
1979 }
1980
1981
1982 static void
1983 ns_define_frame_cursor (struct frame *f, Cursor cursor)
1984 /* --------------------------------------------------------------------------
1985 External (RIF): set frame mouse pointer type.
1986 -------------------------------------------------------------------------- */
1987 {
1988 NSTRACE (ns_define_frame_cursor);
1989 if (FRAME_POINTER_TYPE (f) != cursor)
1990 {
1991 EmacsView *view = FRAME_NS_VIEW (f);
1992 FRAME_POINTER_TYPE (f) = cursor;
1993 [[view window] invalidateCursorRectsForView: view];
1994 /* Redisplay assumes this function also draws the changed frame
1995 cursor, but this function doesn't, so do it explicitly. */
1996 x_update_cursor (f, 1);
1997 }
1998 }
1999
2000
2001
2002 /* ==========================================================================
2003
2004 Keyboard handling
2005
2006 ========================================================================== */
2007
2008
2009 static unsigned
2010 ns_convert_key (unsigned code)
2011 /* --------------------------------------------------------------------------
2012 Internal call used by NSView-keyDown.
2013 -------------------------------------------------------------------------- */
2014 {
2015 const unsigned last_keysym = ARRAYELTS (convert_ns_to_X_keysym);
2016 unsigned keysym;
2017 /* An array would be faster, but less easy to read. */
2018 for (keysym = 0; keysym < last_keysym; keysym += 2)
2019 if (code == convert_ns_to_X_keysym[keysym])
2020 return 0xFF00 | convert_ns_to_X_keysym[keysym+1];
2021 return 0;
2022 /* if decide to use keyCode and Carbon table, use this line:
2023 return code > 0xff ? 0 : 0xFF00 | ns_keycode_to_xkeysym_table[code]; */
2024 }
2025
2026
2027 char *
2028 x_get_keysym_name (int keysym)
2029 /* --------------------------------------------------------------------------
2030 Called by keyboard.c. Not sure if the return val is important, except
2031 that it be unique.
2032 -------------------------------------------------------------------------- */
2033 {
2034 static char value[16];
2035 NSTRACE (x_get_keysym_name);
2036 sprintf (value, "%d", keysym);
2037 return value;
2038 }
2039
2040
2041
2042 /* ==========================================================================
2043
2044 Block drawing operations
2045
2046 ========================================================================== */
2047
2048
2049 static void
2050 ns_redraw_scroll_bars (struct frame *f)
2051 {
2052 int i;
2053 id view;
2054 NSArray *subviews = [[FRAME_NS_VIEW (f) superview] subviews];
2055 NSTRACE (ns_redraw_scroll_bars);
2056 for (i =[subviews count]-1; i >= 0; i--)
2057 {
2058 view = [subviews objectAtIndex: i];
2059 if (![view isKindOfClass: [EmacsScroller class]]) continue;
2060 [view display];
2061 }
2062 }
2063
2064
2065 void
2066 ns_clear_frame (struct frame *f)
2067 /* --------------------------------------------------------------------------
2068 External (hook): Erase the entire frame
2069 -------------------------------------------------------------------------- */
2070 {
2071 NSView *view = FRAME_NS_VIEW (f);
2072 NSRect r;
2073
2074 NSTRACE (ns_clear_frame);
2075
2076 /* comes on initial frame because we have
2077 after-make-frame-functions = select-frame */
2078 if (!FRAME_DEFAULT_FACE (f))
2079 return;
2080
2081 mark_window_cursors_off (XWINDOW (FRAME_ROOT_WINDOW (f)));
2082
2083 r = [view bounds];
2084
2085 block_input ();
2086 ns_focus (f, &r, 1);
2087 [ns_lookup_indexed_color (NS_FACE_BACKGROUND (FRAME_DEFAULT_FACE (f)), f) set];
2088 NSRectFill (r);
2089 ns_unfocus (f);
2090
2091 /* as of 2006/11 or so this is now needed */
2092 ns_redraw_scroll_bars (f);
2093 unblock_input ();
2094 }
2095
2096
2097 static void
2098 ns_clear_frame_area (struct frame *f, int x, int y, int width, int height)
2099 /* --------------------------------------------------------------------------
2100 External (RIF): Clear section of frame
2101 -------------------------------------------------------------------------- */
2102 {
2103 NSRect r = NSMakeRect (x, y, width, height);
2104 NSView *view = FRAME_NS_VIEW (f);
2105 struct face *face = FRAME_DEFAULT_FACE (f);
2106
2107 if (!view || !face)
2108 return;
2109
2110 NSTRACE (ns_clear_frame_area);
2111
2112 r = NSIntersectionRect (r, [view frame]);
2113 ns_focus (f, &r, 1);
2114 [ns_lookup_indexed_color (NS_FACE_BACKGROUND (face), f) set];
2115
2116 NSRectFill (r);
2117
2118 ns_unfocus (f);
2119 return;
2120 }
2121
2122
2123 static void
2124 ns_scroll_run (struct window *w, struct run *run)
2125 /* --------------------------------------------------------------------------
2126 External (RIF): Insert or delete n lines at line vpos
2127 -------------------------------------------------------------------------- */
2128 {
2129 struct frame *f = XFRAME (w->frame);
2130 int x, y, width, height, from_y, to_y, bottom_y;
2131
2132 NSTRACE (ns_scroll_run);
2133
2134 /* begin copy from other terms */
2135 /* Get frame-relative bounding box of the text display area of W,
2136 without mode lines. Include in this box the left and right
2137 fringe of W. */
2138 window_box (w, ANY_AREA, &x, &y, &width, &height);
2139
2140 from_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->current_y);
2141 to_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->desired_y);
2142 bottom_y = y + height;
2143
2144 if (to_y < from_y)
2145 {
2146 /* Scrolling up. Make sure we don't copy part of the mode
2147 line at the bottom. */
2148 if (from_y + run->height > bottom_y)
2149 height = bottom_y - from_y;
2150 else
2151 height = run->height;
2152 }
2153 else
2154 {
2155 /* Scrolling down. Make sure we don't copy over the mode line.
2156 at the bottom. */
2157 if (to_y + run->height > bottom_y)
2158 height = bottom_y - to_y;
2159 else
2160 height = run->height;
2161 }
2162 /* end copy from other terms */
2163
2164 if (height == 0)
2165 return;
2166
2167 block_input ();
2168
2169 x_clear_cursor (w);
2170
2171 {
2172 NSRect srcRect = NSMakeRect (x, from_y, width, height);
2173 NSRect dstRect = NSMakeRect (x, to_y, width, height);
2174 NSPoint dstOrigin = NSMakePoint (x, to_y);
2175
2176 ns_focus (f, &dstRect, 1);
2177 NSCopyBits (0, srcRect , dstOrigin);
2178 ns_unfocus (f);
2179 }
2180
2181 unblock_input ();
2182 }
2183
2184
2185 static void
2186 ns_after_update_window_line (struct window *w, struct glyph_row *desired_row)
2187 /* --------------------------------------------------------------------------
2188 External (RIF): preparatory to fringe update after text was updated
2189 -------------------------------------------------------------------------- */
2190 {
2191 struct frame *f;
2192 int width, height;
2193
2194 NSTRACE (ns_after_update_window_line);
2195
2196 /* begin copy from other terms */
2197 eassert (w);
2198
2199 if (!desired_row->mode_line_p && !w->pseudo_window_p)
2200 desired_row->redraw_fringe_bitmaps_p = 1;
2201
2202 /* When a window has disappeared, make sure that no rest of
2203 full-width rows stays visible in the internal border. */
2204 if (windows_or_buffers_changed
2205 && desired_row->full_width_p
2206 && (f = XFRAME (w->frame),
2207 width = FRAME_INTERNAL_BORDER_WIDTH (f),
2208 width != 0)
2209 && (height = desired_row->visible_height,
2210 height > 0))
2211 {
2212 int y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, desired_row->y));
2213
2214 block_input ();
2215 ns_clear_frame_area (f, 0, y, width, height);
2216 ns_clear_frame_area (f,
2217 FRAME_PIXEL_WIDTH (f) - width,
2218 y, width, height);
2219 unblock_input ();
2220 }
2221 }
2222
2223
2224 static void
2225 ns_shift_glyphs_for_insert (struct frame *f,
2226 int x, int y, int width, int height,
2227 int shift_by)
2228 /* --------------------------------------------------------------------------
2229 External (RIF): copy an area horizontally, don't worry about clearing src
2230 -------------------------------------------------------------------------- */
2231 {
2232 NSRect srcRect = NSMakeRect (x, y, width, height);
2233 NSRect dstRect = NSMakeRect (x+shift_by, y, width, height);
2234 NSPoint dstOrigin = dstRect.origin;
2235
2236 NSTRACE (ns_shift_glyphs_for_insert);
2237
2238 ns_focus (f, &dstRect, 1);
2239 NSCopyBits (0, srcRect, dstOrigin);
2240 ns_unfocus (f);
2241 }
2242
2243
2244
2245 /* ==========================================================================
2246
2247 Character encoding and metrics
2248
2249 ========================================================================== */
2250
2251
2252 static void
2253 ns_compute_glyph_string_overhangs (struct glyph_string *s)
2254 /* --------------------------------------------------------------------------
2255 External (RIF); compute left/right overhang of whole string and set in s
2256 -------------------------------------------------------------------------- */
2257 {
2258 struct font *font = s->font;
2259
2260 if (s->char2b)
2261 {
2262 struct font_metrics metrics;
2263 unsigned int codes[2];
2264 codes[0] = *(s->char2b);
2265 codes[1] = *(s->char2b + s->nchars - 1);
2266
2267 font->driver->text_extents (font, codes, 2, &metrics);
2268 s->left_overhang = -metrics.lbearing;
2269 s->right_overhang
2270 = metrics.rbearing > metrics.width
2271 ? metrics.rbearing - metrics.width : 0;
2272 }
2273 else
2274 {
2275 s->left_overhang = 0;
2276 if (EQ (font->driver->type, Qns))
2277 s->right_overhang = ((struct nsfont_info *)font)->ital ?
2278 FONT_HEIGHT (font) * 0.2 : 0;
2279 else
2280 s->right_overhang = 0;
2281 }
2282 }
2283
2284
2285
2286 /* ==========================================================================
2287
2288 Fringe and cursor drawing
2289
2290 ========================================================================== */
2291
2292
2293 extern int max_used_fringe_bitmap;
2294 static void
2295 ns_draw_fringe_bitmap (struct window *w, struct glyph_row *row,
2296 struct draw_fringe_bitmap_params *p)
2297 /* --------------------------------------------------------------------------
2298 External (RIF); fringe-related
2299 -------------------------------------------------------------------------- */
2300 {
2301 struct frame *f = XFRAME (WINDOW_FRAME (w));
2302 struct face *face = p->face;
2303 static EmacsImage **bimgs = NULL;
2304 static int nBimgs = 0;
2305
2306 /* grow bimgs if needed */
2307 if (nBimgs < max_used_fringe_bitmap)
2308 {
2309 bimgs = xrealloc (bimgs, max_used_fringe_bitmap * sizeof *bimgs);
2310 memset (bimgs + nBimgs, 0,
2311 (max_used_fringe_bitmap - nBimgs) * sizeof *bimgs);
2312 nBimgs = max_used_fringe_bitmap;
2313 }
2314
2315 /* Must clip because of partially visible lines. */
2316 ns_clip_to_row (w, row, ANY_AREA, YES);
2317
2318 if (!p->overlay_p)
2319 {
2320 int bx = p->bx, by = p->by, nx = p->nx, ny = p->ny;
2321
2322 /* If the fringe is adjacent to the left (right) scroll bar of a
2323 leftmost (rightmost, respectively) window, then extend its
2324 background to the gap between the fringe and the bar. */
2325 if ((WINDOW_LEFTMOST_P (w)
2326 && WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w))
2327 || (WINDOW_RIGHTMOST_P (w)
2328 && WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w)))
2329 {
2330 int sb_width = WINDOW_CONFIG_SCROLL_BAR_WIDTH (w);
2331
2332 if (sb_width > 0)
2333 {
2334 int bar_area_x = WINDOW_SCROLL_BAR_AREA_X (w);
2335 int bar_area_width = (WINDOW_CONFIG_SCROLL_BAR_COLS (w)
2336 * FRAME_COLUMN_WIDTH (f));
2337
2338 if (bx < 0)
2339 {
2340 /* Bitmap fills the fringe. */
2341 if (bar_area_x + bar_area_width == p->x)
2342 bx = bar_area_x + sb_width;
2343 else if (p->x + p->wd == bar_area_x)
2344 bx = bar_area_x;
2345 if (bx >= 0)
2346 {
2347 int header_line_height = WINDOW_HEADER_LINE_HEIGHT (w);
2348
2349 nx = bar_area_width - sb_width;
2350 by = WINDOW_TO_FRAME_PIXEL_Y (w, max (header_line_height,
2351 row->y));
2352 ny = row->visible_height;
2353 }
2354 }
2355 else
2356 {
2357 if (bar_area_x + bar_area_width == bx)
2358 {
2359 bx = bar_area_x + sb_width;
2360 nx += bar_area_width - sb_width;
2361 }
2362 else if (bx + nx == bar_area_x)
2363 nx += bar_area_width - sb_width;
2364 }
2365 }
2366 }
2367
2368 if (bx >= 0 && nx > 0)
2369 {
2370 NSRect r = NSMakeRect (bx, by, nx, ny);
2371 NSRectClip (r);
2372 [ns_lookup_indexed_color (face->background, f) set];
2373 NSRectFill (r);
2374 }
2375 }
2376
2377 if (p->which)
2378 {
2379 NSRect r = NSMakeRect (p->x, p->y, p->wd, p->h);
2380 EmacsImage *img = bimgs[p->which - 1];
2381
2382 if (!img)
2383 {
2384 unsigned short *bits = p->bits + p->dh;
2385 int len = p->h;
2386 int i;
2387 unsigned char *cbits = xmalloc (len);
2388
2389 for (i = 0; i < len; i++)
2390 cbits[i] = ~(bits[i] & 0xff);
2391 img = [[EmacsImage alloc] initFromXBM: cbits width: 8 height: p->h
2392 flip: NO];
2393 bimgs[p->which - 1] = img;
2394 xfree (cbits);
2395 }
2396
2397 NSRectClip (r);
2398 /* Since we composite the bitmap instead of just blitting it, we need
2399 to erase the whole background. */
2400 [ns_lookup_indexed_color(face->background, f) set];
2401 NSRectFill (r);
2402 [img setXBMColor: ns_lookup_indexed_color(face->foreground, f)];
2403 #if defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
2404 [img drawInRect: r
2405 fromRect: NSZeroRect
2406 operation: NSCompositeSourceOver
2407 fraction: 1.0
2408 respectFlipped: YES
2409 hints: nil];
2410 #else
2411 {
2412 NSPoint pt = r.origin;
2413 pt.y += p->h;
2414 [img compositeToPoint: pt operation: NSCompositeSourceOver];
2415 }
2416 #endif
2417 }
2418 ns_unfocus (f);
2419 }
2420
2421
2422 static void
2423 ns_draw_window_cursor (struct window *w, struct glyph_row *glyph_row,
2424 int x, int y, enum text_cursor_kinds cursor_type,
2425 int cursor_width, bool on_p, bool active_p)
2426 /* --------------------------------------------------------------------------
2427 External call (RIF): draw cursor.
2428 Note that CURSOR_WIDTH is meaningful only for (h)bar cursors.
2429 -------------------------------------------------------------------------- */
2430 {
2431 NSRect r, s;
2432 int fx, fy, h, cursor_height;
2433 struct frame *f = WINDOW_XFRAME (w);
2434 struct glyph *phys_cursor_glyph;
2435 struct glyph *cursor_glyph;
2436 struct face *face;
2437 NSColor *hollow_color = FRAME_BACKGROUND_COLOR (f);
2438
2439 /* If cursor is out of bounds, don't draw garbage. This can happen
2440 in mini-buffer windows when switching between echo area glyphs
2441 and mini-buffer. */
2442
2443 NSTRACE (dumpcursor);
2444
2445 if (!on_p)
2446 return;
2447
2448 w->phys_cursor_type = cursor_type;
2449 w->phys_cursor_on_p = on_p;
2450
2451 if (cursor_type == NO_CURSOR)
2452 {
2453 w->phys_cursor_width = 0;
2454 return;
2455 }
2456
2457 if ((phys_cursor_glyph = get_phys_cursor_glyph (w)) == NULL)
2458 {
2459 if (glyph_row->exact_window_width_line_p
2460 && w->phys_cursor.hpos >= glyph_row->used[TEXT_AREA])
2461 {
2462 glyph_row->cursor_in_fringe_p = 1;
2463 draw_fringe_bitmap (w, glyph_row, 0);
2464 }
2465 return;
2466 }
2467
2468 /* We draw the cursor (with NSRectFill), then draw the glyph on top
2469 (other terminals do it the other way round). We must set
2470 w->phys_cursor_width to the cursor width. For bar cursors, that
2471 is CURSOR_WIDTH; for box cursors, it is the glyph width. */
2472 get_phys_cursor_geometry (w, glyph_row, phys_cursor_glyph, &fx, &fy, &h);
2473
2474 /* The above get_phys_cursor_geometry call set w->phys_cursor_width
2475 to the glyph width; replace with CURSOR_WIDTH for (V)BAR cursors. */
2476 if (cursor_type == BAR_CURSOR)
2477 {
2478 if (cursor_width < 1)
2479 cursor_width = max (FRAME_CURSOR_WIDTH (f), 1);
2480 w->phys_cursor_width = cursor_width;
2481 }
2482 /* If we have an HBAR, "cursor_width" MAY specify height. */
2483 else if (cursor_type == HBAR_CURSOR)
2484 {
2485 cursor_height = (cursor_width < 1) ? lrint (0.25 * h) : cursor_width;
2486 fy += h - cursor_height;
2487 h = cursor_height;
2488 }
2489
2490 r.origin.x = fx, r.origin.y = fy;
2491 r.size.height = h;
2492 r.size.width = w->phys_cursor_width;
2493
2494 /* TODO: only needed in rare cases with last-resort font in HELLO..
2495 should we do this more efficiently? */
2496 ns_clip_to_row (w, glyph_row, ANY_AREA, NO); /* do ns_focus(f, &r, 1); if remove */
2497
2498
2499 face = FACE_FROM_ID (f, phys_cursor_glyph->face_id);
2500 if (face && NS_FACE_BACKGROUND (face)
2501 == ns_index_color (FRAME_CURSOR_COLOR (f), f))
2502 {
2503 [ns_lookup_indexed_color (NS_FACE_FOREGROUND (face), f) set];
2504 hollow_color = FRAME_CURSOR_COLOR (f);
2505 }
2506 else
2507 [FRAME_CURSOR_COLOR (f) set];
2508
2509 #ifdef NS_IMPL_COCOA
2510 /* TODO: This makes drawing of cursor plus that of phys_cursor_glyph
2511 atomic. Cleaner ways of doing this should be investigated.
2512 One way would be to set a global variable DRAWING_CURSOR
2513 when making the call to draw_phys..(), don't focus in that
2514 case, then move the ns_unfocus() here after that call. */
2515 NSDisableScreenUpdates ();
2516 #endif
2517
2518 switch (cursor_type)
2519 {
2520 case NO_CURSOR:
2521 break;
2522 case FILLED_BOX_CURSOR:
2523 NSRectFill (r);
2524 break;
2525 case HOLLOW_BOX_CURSOR:
2526 NSRectFill (r);
2527 [hollow_color set];
2528 NSRectFill (NSInsetRect (r, 1, 1));
2529 [FRAME_CURSOR_COLOR (f) set];
2530 break;
2531 case HBAR_CURSOR:
2532 NSRectFill (r);
2533 break;
2534 case BAR_CURSOR:
2535 s = r;
2536 /* If the character under cursor is R2L, draw the bar cursor
2537 on the right of its glyph, rather than on the left. */
2538 cursor_glyph = get_phys_cursor_glyph (w);
2539 if ((cursor_glyph->resolved_level & 1) != 0)
2540 s.origin.x += cursor_glyph->pixel_width - s.size.width;
2541
2542 NSRectFill (s);
2543 break;
2544 }
2545 ns_unfocus (f);
2546
2547 /* draw the character under the cursor */
2548 if (cursor_type != NO_CURSOR)
2549 draw_phys_cursor_glyph (w, glyph_row, DRAW_CURSOR);
2550
2551 #ifdef NS_IMPL_COCOA
2552 NSEnableScreenUpdates ();
2553 #endif
2554
2555 }
2556
2557
2558 static void
2559 ns_draw_vertical_window_border (struct window *w, int x, int y0, int y1)
2560 /* --------------------------------------------------------------------------
2561 External (RIF): Draw a vertical line.
2562 -------------------------------------------------------------------------- */
2563 {
2564 struct frame *f = XFRAME (WINDOW_FRAME (w));
2565 struct face *face;
2566 NSRect r = NSMakeRect (x, y0, 1, y1-y0);
2567
2568 NSTRACE (ns_draw_vertical_window_border);
2569
2570 face = FACE_FROM_ID (f, VERTICAL_BORDER_FACE_ID);
2571 if (face)
2572 [ns_lookup_indexed_color(face->foreground, f) set];
2573
2574 ns_focus (f, &r, 1);
2575 NSRectFill(r);
2576 ns_unfocus (f);
2577 }
2578
2579
2580 static void
2581 ns_draw_window_divider (struct window *w, int x0, int x1, int y0, int y1)
2582 /* --------------------------------------------------------------------------
2583 External (RIF): Draw a window divider.
2584 -------------------------------------------------------------------------- */
2585 {
2586 struct frame *f = XFRAME (WINDOW_FRAME (w));
2587 struct face *face;
2588 NSRect r = NSMakeRect (x0, y0, x1-x0, y1-y0);
2589
2590 NSTRACE (ns_draw_window_divider);
2591
2592 face = FACE_FROM_ID (f, WINDOW_DIVIDER_FACE_ID);
2593 if (face)
2594 [ns_lookup_indexed_color(face->foreground, f) set];
2595
2596 ns_focus (f, &r, 1);
2597 NSRectFill(r);
2598 ns_unfocus (f);
2599 }
2600
2601
2602 void
2603 show_hourglass (struct atimer *timer)
2604 {
2605 if (hourglass_shown_p)
2606 return;
2607
2608 block_input ();
2609
2610 /* TODO: add NSProgressIndicator to selected frame (see macfns.c) */
2611
2612 hourglass_shown_p = 1;
2613 unblock_input ();
2614 }
2615
2616
2617 void
2618 hide_hourglass (void)
2619 {
2620 if (!hourglass_shown_p)
2621 return;
2622
2623 block_input ();
2624
2625 /* TODO: remove NSProgressIndicator from all frames */
2626
2627 hourglass_shown_p = 0;
2628 unblock_input ();
2629 }
2630
2631
2632
2633 /* ==========================================================================
2634
2635 Glyph drawing operations
2636
2637 ========================================================================== */
2638
2639 static int
2640 ns_get_glyph_string_clip_rect (struct glyph_string *s, NativeRectangle *nr)
2641 /* --------------------------------------------------------------------------
2642 Wrapper utility to account for internal border width on full-width lines,
2643 and allow top full-width rows to hit the frame top. nr should be pointer
2644 to two successive NSRects. Number of rects actually used is returned.
2645 -------------------------------------------------------------------------- */
2646 {
2647 int n = get_glyph_string_clip_rects (s, nr, 2);
2648 return n;
2649 }
2650
2651 /* --------------------------------------------------------------------
2652 Draw a wavy line under glyph string s. The wave fills wave_height
2653 pixels from y.
2654
2655 x wave_length = 2
2656 --
2657 y * * * * *
2658 |* * * * * * * * *
2659 wave_height = 3 | * * * *
2660 --------------------------------------------------------------------- */
2661
2662 static void
2663 ns_draw_underwave (struct glyph_string *s, EmacsCGFloat width, EmacsCGFloat x)
2664 {
2665 int wave_height = 3, wave_length = 2;
2666 int y, dx, dy, odd, xmax;
2667 NSPoint a, b;
2668 NSRect waveClip;
2669
2670 dx = wave_length;
2671 dy = wave_height - 1;
2672 y = s->ybase - wave_height + 3;
2673 xmax = x + width;
2674
2675 /* Find and set clipping rectangle */
2676 waveClip = NSMakeRect (x, y, width, wave_height);
2677 [[NSGraphicsContext currentContext] saveGraphicsState];
2678 NSRectClip (waveClip);
2679
2680 /* Draw the waves */
2681 a.x = x - ((int)(x) % dx) + (EmacsCGFloat) 0.5;
2682 b.x = a.x + dx;
2683 odd = (int)(a.x/dx) % 2;
2684 a.y = b.y = y + 0.5;
2685
2686 if (odd)
2687 a.y += dy;
2688 else
2689 b.y += dy;
2690
2691 while (a.x <= xmax)
2692 {
2693 [NSBezierPath strokeLineFromPoint:a toPoint:b];
2694 a.x = b.x, a.y = b.y;
2695 b.x += dx, b.y = y + 0.5 + odd*dy;
2696 odd = !odd;
2697 }
2698
2699 /* Restore previous clipping rectangle(s) */
2700 [[NSGraphicsContext currentContext] restoreGraphicsState];
2701 }
2702
2703
2704
2705 void
2706 ns_draw_text_decoration (struct glyph_string *s, struct face *face,
2707 NSColor *defaultCol, CGFloat width, CGFloat x)
2708 /* --------------------------------------------------------------------------
2709 Draw underline, overline, and strike-through on glyph string s.
2710 -------------------------------------------------------------------------- */
2711 {
2712 if (s->for_overlaps)
2713 return;
2714
2715 /* Do underline. */
2716 if (face->underline_p)
2717 {
2718 if (s->face->underline_type == FACE_UNDER_WAVE)
2719 {
2720 if (face->underline_defaulted_p)
2721 [defaultCol set];
2722 else
2723 [ns_lookup_indexed_color (face->underline_color, s->f) set];
2724
2725 ns_draw_underwave (s, width, x);
2726 }
2727 else if (s->face->underline_type == FACE_UNDER_LINE)
2728 {
2729
2730 NSRect r;
2731 unsigned long thickness, position;
2732
2733 /* If the prev was underlined, match its appearance. */
2734 if (s->prev && s->prev->face->underline_p
2735 && s->prev->face->underline_type == FACE_UNDER_LINE
2736 && s->prev->underline_thickness > 0)
2737 {
2738 thickness = s->prev->underline_thickness;
2739 position = s->prev->underline_position;
2740 }
2741 else
2742 {
2743 struct font *font;
2744 unsigned long descent;
2745
2746 font=s->font;
2747 descent = s->y + s->height - s->ybase;
2748
2749 /* Use underline thickness of font, defaulting to 1. */
2750 thickness = (font && font->underline_thickness > 0)
2751 ? font->underline_thickness : 1;
2752
2753 /* Determine the offset of underlining from the baseline. */
2754 if (x_underline_at_descent_line)
2755 position = descent - thickness;
2756 else if (x_use_underline_position_properties
2757 && font && font->underline_position >= 0)
2758 position = font->underline_position;
2759 else if (font)
2760 position = lround (font->descent / 2);
2761 else
2762 position = underline_minimum_offset;
2763
2764 position = max (position, underline_minimum_offset);
2765
2766 /* Ensure underlining is not cropped. */
2767 if (descent <= position)
2768 {
2769 position = descent - 1;
2770 thickness = 1;
2771 }
2772 else if (descent < position + thickness)
2773 thickness = 1;
2774 }
2775
2776 s->underline_thickness = thickness;
2777 s->underline_position = position;
2778
2779 r = NSMakeRect (x, s->ybase + position, width, thickness);
2780
2781 if (face->underline_defaulted_p)
2782 [defaultCol set];
2783 else
2784 [ns_lookup_indexed_color (face->underline_color, s->f) set];
2785 NSRectFill (r);
2786 }
2787 }
2788 /* Do overline. We follow other terms in using a thickness of 1
2789 and ignoring overline_margin. */
2790 if (face->overline_p)
2791 {
2792 NSRect r;
2793 r = NSMakeRect (x, s->y, width, 1);
2794
2795 if (face->overline_color_defaulted_p)
2796 [defaultCol set];
2797 else
2798 [ns_lookup_indexed_color (face->overline_color, s->f) set];
2799 NSRectFill (r);
2800 }
2801
2802 /* Do strike-through. We follow other terms for thickness and
2803 vertical position.*/
2804 if (face->strike_through_p)
2805 {
2806 NSRect r;
2807 unsigned long dy;
2808
2809 dy = lrint ((s->height - 1) / 2);
2810 r = NSMakeRect (x, s->y + dy, width, 1);
2811
2812 if (face->strike_through_color_defaulted_p)
2813 [defaultCol set];
2814 else
2815 [ns_lookup_indexed_color (face->strike_through_color, s->f) set];
2816 NSRectFill (r);
2817 }
2818 }
2819
2820 static void
2821 ns_draw_box (NSRect r, CGFloat thickness, NSColor *col,
2822 char left_p, char right_p)
2823 /* --------------------------------------------------------------------------
2824 Draw an unfilled rect inside r, optionally leaving left and/or right open.
2825 Note we can't just use an NSDrawRect command, because of the possibility
2826 of some sides not being drawn, and because the rect will be filled.
2827 -------------------------------------------------------------------------- */
2828 {
2829 NSRect s = r;
2830 [col set];
2831
2832 /* top, bottom */
2833 s.size.height = thickness;
2834 NSRectFill (s);
2835 s.origin.y += r.size.height - thickness;
2836 NSRectFill (s);
2837
2838 s.size.height = r.size.height;
2839 s.origin.y = r.origin.y;
2840
2841 /* left, right (optional) */
2842 s.size.width = thickness;
2843 if (left_p)
2844 NSRectFill (s);
2845 if (right_p)
2846 {
2847 s.origin.x += r.size.width - thickness;
2848 NSRectFill (s);
2849 }
2850 }
2851
2852
2853 static void
2854 ns_draw_relief (NSRect r, int thickness, char raised_p,
2855 char top_p, char bottom_p, char left_p, char right_p,
2856 struct glyph_string *s)
2857 /* --------------------------------------------------------------------------
2858 Draw a relief rect inside r, optionally leaving some sides open.
2859 Note we can't just use an NSDrawBezel command, because of the possibility
2860 of some sides not being drawn, and because the rect will be filled.
2861 -------------------------------------------------------------------------- */
2862 {
2863 static NSColor *baseCol = nil, *lightCol = nil, *darkCol = nil;
2864 NSColor *newBaseCol = nil;
2865 NSRect sr = r;
2866
2867 NSTRACE (ns_draw_relief);
2868
2869 /* set up colors */
2870
2871 if (s->face->use_box_color_for_shadows_p)
2872 {
2873 newBaseCol = ns_lookup_indexed_color (s->face->box_color, s->f);
2874 }
2875 /* else if (s->first_glyph->type == IMAGE_GLYPH
2876 && s->img->pixmap
2877 && !IMAGE_BACKGROUND_TRANSPARENT (s->img, s->f, 0))
2878 {
2879 newBaseCol = IMAGE_BACKGROUND (s->img, s->f, 0);
2880 } */
2881 else
2882 {
2883 newBaseCol = ns_lookup_indexed_color (s->face->background, s->f);
2884 }
2885
2886 if (newBaseCol == nil)
2887 newBaseCol = [NSColor grayColor];
2888
2889 if (newBaseCol != baseCol) /* TODO: better check */
2890 {
2891 [baseCol release];
2892 baseCol = [newBaseCol retain];
2893 [lightCol release];
2894 lightCol = [[baseCol highlightWithLevel: 0.2] retain];
2895 [darkCol release];
2896 darkCol = [[baseCol shadowWithLevel: 0.3] retain];
2897 }
2898
2899 [(raised_p ? lightCol : darkCol) set];
2900
2901 /* TODO: mitering. Using NSBezierPath doesn't work because of color switch. */
2902
2903 /* top */
2904 sr.size.height = thickness;
2905 if (top_p) NSRectFill (sr);
2906
2907 /* left */
2908 sr.size.height = r.size.height;
2909 sr.size.width = thickness;
2910 if (left_p) NSRectFill (sr);
2911
2912 [(raised_p ? darkCol : lightCol) set];
2913
2914 /* bottom */
2915 sr.size.width = r.size.width;
2916 sr.size.height = thickness;
2917 sr.origin.y += r.size.height - thickness;
2918 if (bottom_p) NSRectFill (sr);
2919
2920 /* right */
2921 sr.size.height = r.size.height;
2922 sr.origin.y = r.origin.y;
2923 sr.size.width = thickness;
2924 sr.origin.x += r.size.width - thickness;
2925 if (right_p) NSRectFill (sr);
2926 }
2927
2928
2929 static void
2930 ns_dumpglyphs_box_or_relief (struct glyph_string *s)
2931 /* --------------------------------------------------------------------------
2932 Function modeled after x_draw_glyph_string_box ().
2933 Sets up parameters for drawing.
2934 -------------------------------------------------------------------------- */
2935 {
2936 int right_x, last_x;
2937 char left_p, right_p;
2938 struct glyph *last_glyph;
2939 NSRect r;
2940 int thickness;
2941 struct face *face;
2942
2943 if (s->hl == DRAW_MOUSE_FACE)
2944 {
2945 face = FACE_FROM_ID (s->f, MOUSE_HL_INFO (s->f)->mouse_face_face_id);
2946 if (!face)
2947 face = FACE_FROM_ID (s->f, MOUSE_FACE_ID);
2948 }
2949 else
2950 face = s->face;
2951
2952 thickness = face->box_line_width;
2953
2954 NSTRACE (ns_dumpglyphs_box_or_relief);
2955
2956 last_x = ((s->row->full_width_p && !s->w->pseudo_window_p)
2957 ? WINDOW_RIGHT_EDGE_X (s->w)
2958 : window_box_right (s->w, s->area));
2959 last_glyph = (s->cmp || s->img
2960 ? s->first_glyph : s->first_glyph + s->nchars-1);
2961
2962 right_x = ((s->row->full_width_p && s->extends_to_end_of_line_p
2963 ? last_x - 1 : min (last_x, s->x + s->background_width) - 1));
2964
2965 left_p = (s->first_glyph->left_box_line_p
2966 || (s->hl == DRAW_MOUSE_FACE
2967 && (s->prev == NULL || s->prev->hl != s->hl)));
2968 right_p = (last_glyph->right_box_line_p
2969 || (s->hl == DRAW_MOUSE_FACE
2970 && (s->next == NULL || s->next->hl != s->hl)));
2971
2972 r = NSMakeRect (s->x, s->y, right_x - s->x + 1, s->height);
2973
2974 /* TODO: Sometimes box_color is 0 and this seems wrong; should investigate. */
2975 if (s->face->box == FACE_SIMPLE_BOX && s->face->box_color)
2976 {
2977 ns_draw_box (r, abs (thickness),
2978 ns_lookup_indexed_color (face->box_color, s->f),
2979 left_p, right_p);
2980 }
2981 else
2982 {
2983 ns_draw_relief (r, abs (thickness), s->face->box == FACE_RAISED_BOX,
2984 1, 1, left_p, right_p, s);
2985 }
2986 }
2987
2988
2989 static void
2990 ns_maybe_dumpglyphs_background (struct glyph_string *s, char force_p)
2991 /* --------------------------------------------------------------------------
2992 Modeled after x_draw_glyph_string_background, which draws BG in
2993 certain cases. Others are left to the text rendering routine.
2994 -------------------------------------------------------------------------- */
2995 {
2996 NSTRACE (ns_maybe_dumpglyphs_background);
2997
2998 if (!s->background_filled_p/* || s->hl == DRAW_MOUSE_FACE*/)
2999 {
3000 int box_line_width = max (s->face->box_line_width, 0);
3001 if (FONT_HEIGHT (s->font) < s->height - 2 * box_line_width
3002 || s->font_not_found_p || s->extends_to_end_of_line_p || force_p)
3003 {
3004 struct face *face;
3005 if (s->hl == DRAW_MOUSE_FACE)
3006 {
3007 face = FACE_FROM_ID (s->f,
3008 MOUSE_HL_INFO (s->f)->mouse_face_face_id);
3009 if (!face)
3010 face = FACE_FROM_ID (s->f, MOUSE_FACE_ID);
3011 }
3012 else
3013 face = FACE_FROM_ID (s->f, s->first_glyph->face_id);
3014 if (!face->stipple)
3015 [(NS_FACE_BACKGROUND (face) != 0
3016 ? ns_lookup_indexed_color (NS_FACE_BACKGROUND (face), s->f)
3017 : FRAME_BACKGROUND_COLOR (s->f)) set];
3018 else
3019 {
3020 struct ns_display_info *dpyinfo = FRAME_DISPLAY_INFO (s->f);
3021 [[dpyinfo->bitmaps[face->stipple-1].img stippleMask] set];
3022 }
3023
3024 if (s->hl != DRAW_CURSOR)
3025 {
3026 NSRect r = NSMakeRect (s->x, s->y + box_line_width,
3027 s->background_width,
3028 s->height-2*box_line_width);
3029 NSRectFill (r);
3030 }
3031
3032 s->background_filled_p = 1;
3033 }
3034 }
3035 }
3036
3037
3038 static void
3039 ns_dumpglyphs_image (struct glyph_string *s, NSRect r)
3040 /* --------------------------------------------------------------------------
3041 Renders an image and associated borders.
3042 -------------------------------------------------------------------------- */
3043 {
3044 EmacsImage *img = s->img->pixmap;
3045 int box_line_vwidth = max (s->face->box_line_width, 0);
3046 int x = s->x, y = s->ybase - image_ascent (s->img, s->face, &s->slice);
3047 int bg_x, bg_y, bg_height;
3048 int th;
3049 char raised_p;
3050 NSRect br;
3051 struct face *face;
3052 NSColor *tdCol;
3053
3054 NSTRACE (ns_dumpglyphs_image);
3055
3056 if (s->face->box != FACE_NO_BOX
3057 && s->first_glyph->left_box_line_p && s->slice.x == 0)
3058 x += abs (s->face->box_line_width);
3059
3060 bg_x = x;
3061 bg_y = s->slice.y == 0 ? s->y : s->y + box_line_vwidth;
3062 bg_height = s->height;
3063 /* other terms have this, but was causing problems w/tabbar mode */
3064 /* - 2 * box_line_vwidth; */
3065
3066 if (s->slice.x == 0) x += s->img->hmargin;
3067 if (s->slice.y == 0) y += s->img->vmargin;
3068
3069 /* Draw BG: if we need larger area than image itself cleared, do that,
3070 otherwise, since we composite the image under NS (instead of mucking
3071 with its background color), we must clear just the image area. */
3072 if (s->hl == DRAW_MOUSE_FACE)
3073 {
3074 face = FACE_FROM_ID (s->f, MOUSE_HL_INFO (s->f)->mouse_face_face_id);
3075 if (!face)
3076 face = FACE_FROM_ID (s->f, MOUSE_FACE_ID);
3077 }
3078 else
3079 face = FACE_FROM_ID (s->f, s->first_glyph->face_id);
3080
3081 [ns_lookup_indexed_color (NS_FACE_BACKGROUND (face), s->f) set];
3082
3083 if (bg_height > s->slice.height || s->img->hmargin || s->img->vmargin
3084 || s->img->mask || s->img->pixmap == 0 || s->width != s->background_width)
3085 {
3086 br = NSMakeRect (bg_x, bg_y, s->background_width, bg_height);
3087 s->background_filled_p = 1;
3088 }
3089 else
3090 {
3091 br = NSMakeRect (x, y, s->slice.width, s->slice.height);
3092 }
3093
3094 NSRectFill (br);
3095
3096 /* Draw the image.. do we need to draw placeholder if img ==nil? */
3097 if (img != nil)
3098 {
3099 #if defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
3100 NSRect dr = NSMakeRect (x, y, s->slice.width, s->slice.height);
3101 NSRect ir = NSMakeRect (s->slice.x, s->slice.y,
3102 s->slice.width, s->slice.height);
3103 [img drawInRect: dr
3104 fromRect: ir
3105 operation: NSCompositeSourceOver
3106 fraction: 1.0
3107 respectFlipped: YES
3108 hints: nil];
3109 #else
3110 [img compositeToPoint: NSMakePoint (x, y + s->slice.height)
3111 operation: NSCompositeSourceOver];
3112 #endif
3113 }
3114
3115 if (s->hl == DRAW_CURSOR)
3116 {
3117 [FRAME_CURSOR_COLOR (s->f) set];
3118 if (s->w->phys_cursor_type == FILLED_BOX_CURSOR)
3119 tdCol = ns_lookup_indexed_color (NS_FACE_BACKGROUND (face), s->f);
3120 else
3121 /* Currently on NS img->mask is always 0. Since
3122 get_window_cursor_type specifies a hollow box cursor when on
3123 a non-masked image we never reach this clause. But we put it
3124 in in anticipation of better support for image masks on
3125 NS. */
3126 tdCol = ns_lookup_indexed_color (NS_FACE_FOREGROUND (face), s->f);
3127 }
3128 else
3129 {
3130 tdCol = ns_lookup_indexed_color (NS_FACE_FOREGROUND (face), s->f);
3131 }
3132
3133 /* Draw underline, overline, strike-through. */
3134 ns_draw_text_decoration (s, face, tdCol, br.size.width, br.origin.x);
3135
3136 /* Draw relief, if requested */
3137 if (s->img->relief || s->hl ==DRAW_IMAGE_RAISED || s->hl ==DRAW_IMAGE_SUNKEN)
3138 {
3139 if (s->hl == DRAW_IMAGE_SUNKEN || s->hl == DRAW_IMAGE_RAISED)
3140 {
3141 th = tool_bar_button_relief >= 0 ?
3142 tool_bar_button_relief : DEFAULT_TOOL_BAR_BUTTON_RELIEF;
3143 raised_p = (s->hl == DRAW_IMAGE_RAISED);
3144 }
3145 else
3146 {
3147 th = abs (s->img->relief);
3148 raised_p = (s->img->relief > 0);
3149 }
3150
3151 r.origin.x = x - th;
3152 r.origin.y = y - th;
3153 r.size.width = s->slice.width + 2*th-1;
3154 r.size.height = s->slice.height + 2*th-1;
3155 ns_draw_relief (r, th, raised_p,
3156 s->slice.y == 0,
3157 s->slice.y + s->slice.height == s->img->height,
3158 s->slice.x == 0,
3159 s->slice.x + s->slice.width == s->img->width, s);
3160 }
3161
3162 /* If there is no mask, the background won't be seen,
3163 so draw a rectangle on the image for the cursor.
3164 Do this for all images, getting transparency right is not reliable. */
3165 if (s->hl == DRAW_CURSOR)
3166 {
3167 int thickness = abs (s->img->relief);
3168 if (thickness == 0) thickness = 1;
3169 ns_draw_box (br, thickness, FRAME_CURSOR_COLOR (s->f), 1, 1);
3170 }
3171 }
3172
3173
3174 static void
3175 ns_dumpglyphs_stretch (struct glyph_string *s)
3176 {
3177 NSRect r[2];
3178 int n, i;
3179 struct face *face;
3180 NSColor *fgCol, *bgCol;
3181
3182 if (!s->background_filled_p)
3183 {
3184 n = ns_get_glyph_string_clip_rect (s, r);
3185 *r = NSMakeRect (s->x, s->y, s->background_width, s->height);
3186
3187 ns_focus (s->f, r, n);
3188
3189 if (s->hl == DRAW_MOUSE_FACE)
3190 {
3191 face = FACE_FROM_ID (s->f, MOUSE_HL_INFO (s->f)->mouse_face_face_id);
3192 if (!face)
3193 face = FACE_FROM_ID (s->f, MOUSE_FACE_ID);
3194 }
3195 else
3196 face = FACE_FROM_ID (s->f, s->first_glyph->face_id);
3197
3198 bgCol = ns_lookup_indexed_color (NS_FACE_BACKGROUND (face), s->f);
3199 fgCol = ns_lookup_indexed_color (NS_FACE_FOREGROUND (face), s->f);
3200
3201 for (i = 0; i < n; ++i)
3202 {
3203 if (!s->row->full_width_p)
3204 {
3205 int overrun, leftoverrun;
3206
3207 /* truncate to avoid overwriting fringe and/or scrollbar */
3208 overrun = max (0, (s->x + s->background_width)
3209 - (WINDOW_BOX_RIGHT_EDGE_X (s->w)
3210 - WINDOW_RIGHT_FRINGE_WIDTH (s->w)));
3211 r[i].size.width -= overrun;
3212
3213 /* truncate to avoid overwriting to left of the window box */
3214 leftoverrun = (WINDOW_BOX_LEFT_EDGE_X (s->w)
3215 + WINDOW_LEFT_FRINGE_WIDTH (s->w)) - s->x;
3216
3217 if (leftoverrun > 0)
3218 {
3219 r[i].origin.x += leftoverrun;
3220 r[i].size.width -= leftoverrun;
3221 }
3222
3223 /* XXX: Try to work between problem where a stretch glyph on
3224 a partially-visible bottom row will clear part of the
3225 modeline, and another where list-buffers headers and similar
3226 rows erroneously have visible_height set to 0. Not sure
3227 where this is coming from as other terms seem not to show. */
3228 r[i].size.height = min (s->height, s->row->visible_height);
3229 }
3230
3231 [bgCol set];
3232
3233 /* NOTE: under NS this is NOT used to draw cursors, but we must avoid
3234 overwriting cursor (usually when cursor on a tab) */
3235 if (s->hl == DRAW_CURSOR)
3236 {
3237 CGFloat x, width;
3238
3239 x = r[i].origin.x;
3240 width = s->w->phys_cursor_width;
3241 r[i].size.width -= width;
3242 r[i].origin.x += width;
3243
3244 NSRectFill (r[i]);
3245
3246 /* Draw overlining, etc. on the cursor. */
3247 if (s->w->phys_cursor_type == FILLED_BOX_CURSOR)
3248 ns_draw_text_decoration (s, face, bgCol, width, x);
3249 else
3250 ns_draw_text_decoration (s, face, fgCol, width, x);
3251 }
3252 else
3253 {
3254 NSRectFill (r[i]);
3255 }
3256
3257 /* Draw overlining, etc. on the stretch glyph (or the part
3258 of the stretch glyph after the cursor). */
3259 ns_draw_text_decoration (s, face, fgCol, r[i].size.width,
3260 r[i].origin.x);
3261 }
3262 ns_unfocus (s->f);
3263 s->background_filled_p = 1;
3264 }
3265 }
3266
3267
3268 static void
3269 ns_draw_glyph_string (struct glyph_string *s)
3270 /* --------------------------------------------------------------------------
3271 External (RIF): Main draw-text call.
3272 -------------------------------------------------------------------------- */
3273 {
3274 /* TODO (optimize): focus for box and contents draw */
3275 NSRect r[2];
3276 int n, flags;
3277 char box_drawn_p = 0;
3278 struct font *font = s->face->font;
3279 if (! font) font = FRAME_FONT (s->f);
3280
3281 NSTRACE (ns_draw_glyph_string);
3282
3283 if (s->next && s->right_overhang && !s->for_overlaps/*&&s->hl!=DRAW_CURSOR*/)
3284 {
3285 int width;
3286 struct glyph_string *next;
3287
3288 for (width = 0, next = s->next;
3289 next && width < s->right_overhang;
3290 width += next->width, next = next->next)
3291 if (next->first_glyph->type != IMAGE_GLYPH)
3292 {
3293 if (next->first_glyph->type != STRETCH_GLYPH)
3294 {
3295 n = ns_get_glyph_string_clip_rect (s->next, r);
3296 ns_focus (s->f, r, n);
3297 ns_maybe_dumpglyphs_background (s->next, 1);
3298 ns_unfocus (s->f);
3299 }
3300 else
3301 {
3302 ns_dumpglyphs_stretch (s->next);
3303 }
3304 next->num_clips = 0;
3305 }
3306 }
3307
3308 if (!s->for_overlaps && s->face->box != FACE_NO_BOX
3309 && (s->first_glyph->type == CHAR_GLYPH
3310 || s->first_glyph->type == COMPOSITE_GLYPH))
3311 {
3312 n = ns_get_glyph_string_clip_rect (s, r);
3313 ns_focus (s->f, r, n);
3314 ns_maybe_dumpglyphs_background (s, 1);
3315 ns_dumpglyphs_box_or_relief (s);
3316 ns_unfocus (s->f);
3317 box_drawn_p = 1;
3318 }
3319
3320 switch (s->first_glyph->type)
3321 {
3322
3323 case IMAGE_GLYPH:
3324 n = ns_get_glyph_string_clip_rect (s, r);
3325 ns_focus (s->f, r, n);
3326 ns_dumpglyphs_image (s, r[0]);
3327 ns_unfocus (s->f);
3328 break;
3329
3330 case STRETCH_GLYPH:
3331 ns_dumpglyphs_stretch (s);
3332 break;
3333
3334 case CHAR_GLYPH:
3335 case COMPOSITE_GLYPH:
3336 n = ns_get_glyph_string_clip_rect (s, r);
3337 ns_focus (s->f, r, n);
3338
3339 if (s->for_overlaps || (s->cmp_from > 0
3340 && ! s->first_glyph->u.cmp.automatic))
3341 s->background_filled_p = 1;
3342 else
3343 ns_maybe_dumpglyphs_background
3344 (s, s->first_glyph->type == COMPOSITE_GLYPH);
3345
3346 flags = s->hl == DRAW_CURSOR ? NS_DUMPGLYPH_CURSOR :
3347 (s->hl == DRAW_MOUSE_FACE ? NS_DUMPGLYPH_MOUSEFACE :
3348 (s->for_overlaps ? NS_DUMPGLYPH_FOREGROUND :
3349 NS_DUMPGLYPH_NORMAL));
3350
3351 if (s->hl == DRAW_CURSOR && s->w->phys_cursor_type == FILLED_BOX_CURSOR)
3352 {
3353 unsigned long tmp = NS_FACE_BACKGROUND (s->face);
3354 NS_FACE_BACKGROUND (s->face) = NS_FACE_FOREGROUND (s->face);
3355 NS_FACE_FOREGROUND (s->face) = tmp;
3356 }
3357
3358 {
3359 BOOL isComposite = s->first_glyph->type == COMPOSITE_GLYPH;
3360 int end = isComposite ? s->cmp_to : s->nchars;
3361
3362 font->driver->draw
3363 (s, s->cmp_from, end, s->x, s->ybase,
3364 (flags == NS_DUMPGLYPH_NORMAL && !s->background_filled_p)
3365 || flags == NS_DUMPGLYPH_MOUSEFACE);
3366
3367 }
3368
3369 {
3370 NSColor *col = (NS_FACE_FOREGROUND (s->face) != 0
3371 ? ns_lookup_indexed_color (NS_FACE_FOREGROUND (s->face),
3372 s->f)
3373 : FRAME_FOREGROUND_COLOR (s->f));
3374 [col set];
3375
3376 /* Draw underline, overline, strike-through. */
3377 ns_draw_text_decoration (s, s->face, col, s->width, s->x);
3378 }
3379
3380 if (s->hl == DRAW_CURSOR && s->w->phys_cursor_type == FILLED_BOX_CURSOR)
3381 {
3382 unsigned long tmp = NS_FACE_BACKGROUND (s->face);
3383 NS_FACE_BACKGROUND (s->face) = NS_FACE_FOREGROUND (s->face);
3384 NS_FACE_FOREGROUND (s->face) = tmp;
3385 }
3386
3387 ns_unfocus (s->f);
3388 break;
3389
3390 case GLYPHLESS_GLYPH:
3391 n = ns_get_glyph_string_clip_rect (s, r);
3392 ns_focus (s->f, r, n);
3393
3394 if (s->for_overlaps || (s->cmp_from > 0
3395 && ! s->first_glyph->u.cmp.automatic))
3396 s->background_filled_p = 1;
3397 else
3398 ns_maybe_dumpglyphs_background
3399 (s, s->first_glyph->type == COMPOSITE_GLYPH);
3400 /* ... */
3401 /* Not yet implemented. */
3402 /* ... */
3403 ns_unfocus (s->f);
3404 break;
3405
3406 default:
3407 emacs_abort ();
3408 }
3409
3410 /* Draw box if not done already. */
3411 if (!s->for_overlaps && !box_drawn_p && s->face->box != FACE_NO_BOX)
3412 {
3413 n = ns_get_glyph_string_clip_rect (s, r);
3414 ns_focus (s->f, r, n);
3415 ns_dumpglyphs_box_or_relief (s);
3416 ns_unfocus (s->f);
3417 }
3418
3419 s->num_clips = 0;
3420 }
3421
3422
3423
3424 /* ==========================================================================
3425
3426 Event loop
3427
3428 ========================================================================== */
3429
3430
3431 static void
3432 ns_send_appdefined (int value)
3433 /* --------------------------------------------------------------------------
3434 Internal: post an appdefined event which EmacsApp-sendEvent will
3435 recognize and take as a command to halt the event loop.
3436 -------------------------------------------------------------------------- */
3437 {
3438 /*NSTRACE (ns_send_appdefined); */
3439
3440 #ifdef NS_IMPL_GNUSTEP
3441 // GNUstep needs postEvent to happen on the main thread.
3442 if (! [[NSThread currentThread] isMainThread])
3443 {
3444 EmacsApp *app = (EmacsApp *)NSApp;
3445 app->nextappdefined = value;
3446 [app performSelectorOnMainThread:@selector (sendFromMainThread:)
3447 withObject:nil
3448 waitUntilDone:YES];
3449 return;
3450 }
3451 #endif
3452
3453 /* Only post this event if we haven't already posted one. This will end
3454 the [NXApp run] main loop after having processed all events queued at
3455 this moment. */
3456 if (send_appdefined)
3457 {
3458 NSEvent *nxev;
3459
3460 /* We only need one NX_APPDEFINED event to stop NXApp from running. */
3461 send_appdefined = NO;
3462
3463 /* Don't need wakeup timer any more */
3464 if (timed_entry)
3465 {
3466 [timed_entry invalidate];
3467 [timed_entry release];
3468 timed_entry = nil;
3469 }
3470
3471 nxev = [NSEvent otherEventWithType: NSApplicationDefined
3472 location: NSMakePoint (0, 0)
3473 modifierFlags: 0
3474 timestamp: 0
3475 windowNumber: [[NSApp mainWindow] windowNumber]
3476 context: [NSApp context]
3477 subtype: 0
3478 data1: value
3479 data2: 0];
3480
3481 /* Post an application defined event on the event queue. When this is
3482 received the [NXApp run] will return, thus having processed all
3483 events which are currently queued. */
3484 [NSApp postEvent: nxev atStart: NO];
3485 }
3486 }
3487
3488 #ifdef HAVE_NATIVE_FS
3489 static void
3490 check_native_fs ()
3491 {
3492 Lisp_Object frame, tail;
3493
3494 if (ns_last_use_native_fullscreen == ns_use_native_fullscreen)
3495 return;
3496
3497 ns_last_use_native_fullscreen = ns_use_native_fullscreen;
3498
3499 FOR_EACH_FRAME (tail, frame)
3500 {
3501 struct frame *f = XFRAME (frame);
3502 if (FRAME_NS_P (f))
3503 {
3504 EmacsView *view = FRAME_NS_VIEW (f);
3505 [view updateCollectionBehavior];
3506 }
3507 }
3508 }
3509 #endif
3510
3511 /* GNUstep and OSX <= 10.4 does not have cancelTracking. */
3512 #if defined (NS_IMPL_COCOA) && \
3513 MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5
3514 /* Check if menu open should be canceled or continued as normal. */
3515 void
3516 ns_check_menu_open (NSMenu *menu)
3517 {
3518 /* Click in menu bar? */
3519 NSArray *a = [[NSApp mainMenu] itemArray];
3520 int i;
3521 BOOL found = NO;
3522
3523 if (menu == nil) // Menu tracking ended.
3524 {
3525 if (menu_will_open_state == MENU_OPENING)
3526 menu_will_open_state = MENU_NONE;
3527 return;
3528 }
3529
3530 for (i = 0; ! found && i < [a count]; i++)
3531 found = menu == [[a objectAtIndex:i] submenu];
3532 if (found)
3533 {
3534 if (menu_will_open_state == MENU_NONE && emacs_event)
3535 {
3536 NSEvent *theEvent = [NSApp currentEvent];
3537 struct frame *emacsframe = SELECTED_FRAME ();
3538
3539 [menu cancelTracking];
3540 menu_will_open_state = MENU_PENDING;
3541 emacs_event->kind = MENU_BAR_ACTIVATE_EVENT;
3542 EV_TRAILER (theEvent);
3543
3544 CGEventRef ourEvent = CGEventCreate (NULL);
3545 menu_mouse_point = CGEventGetLocation (ourEvent);
3546 CFRelease (ourEvent);
3547 }
3548 else if (menu_will_open_state == MENU_OPENING)
3549 {
3550 menu_will_open_state = MENU_NONE;
3551 }
3552 }
3553 }
3554
3555 /* Redo saved menu click if state is MENU_PENDING. */
3556 void
3557 ns_check_pending_open_menu ()
3558 {
3559 if (menu_will_open_state == MENU_PENDING)
3560 {
3561 CGEventSourceRef source
3562 = CGEventSourceCreate (kCGEventSourceStateHIDSystemState);
3563
3564 CGEventRef event = CGEventCreateMouseEvent (source,
3565 kCGEventLeftMouseDown,
3566 menu_mouse_point,
3567 kCGMouseButtonLeft);
3568 CGEventSetType (event, kCGEventLeftMouseDown);
3569 CGEventPost (kCGHIDEventTap, event);
3570 CFRelease (event);
3571 CFRelease (source);
3572
3573 menu_will_open_state = MENU_OPENING;
3574 }
3575 }
3576 #endif /* NS_IMPL_COCOA) && >= MAC_OS_X_VERSION_10_5 */
3577
3578 static int
3579 ns_read_socket (struct terminal *terminal, struct input_event *hold_quit)
3580 /* --------------------------------------------------------------------------
3581 External (hook): Post an event to ourself and keep reading events until
3582 we read it back again. In effect process all events which were waiting.
3583 From 21+ we have to manage the event buffer ourselves.
3584 -------------------------------------------------------------------------- */
3585 {
3586 struct input_event ev;
3587 int nevents;
3588
3589 /* NSTRACE (ns_read_socket); */
3590
3591 #ifdef HAVE_NATIVE_FS
3592 check_native_fs ();
3593 #endif
3594
3595 if ([NSApp modalWindow] != nil)
3596 return -1;
3597
3598 if (hold_event_q.nr > 0)
3599 {
3600 int i;
3601 for (i = 0; i < hold_event_q.nr; ++i)
3602 kbd_buffer_store_event_hold (&hold_event_q.q[i], hold_quit);
3603 hold_event_q.nr = 0;
3604 return i;
3605 }
3606
3607 block_input ();
3608 n_emacs_events_pending = 0;
3609 EVENT_INIT (ev);
3610 emacs_event = &ev;
3611 q_event_ptr = hold_quit;
3612
3613 /* we manage autorelease pools by allocate/reallocate each time around
3614 the loop; strict nesting is occasionally violated but seems not to
3615 matter.. earlier methods using full nesting caused major memory leaks */
3616 [outerpool release];
3617 outerpool = [[NSAutoreleasePool alloc] init];
3618
3619 /* If have pending open-file requests, attend to the next one of those. */
3620 if (ns_pending_files && [ns_pending_files count] != 0
3621 && [(EmacsApp *)NSApp openFile: [ns_pending_files objectAtIndex: 0]])
3622 {
3623 [ns_pending_files removeObjectAtIndex: 0];
3624 }
3625 /* Deal with pending service requests. */
3626 else if (ns_pending_service_names && [ns_pending_service_names count] != 0
3627 && [(EmacsApp *)
3628 NSApp fulfillService: [ns_pending_service_names objectAtIndex: 0]
3629 withArg: [ns_pending_service_args objectAtIndex: 0]])
3630 {
3631 [ns_pending_service_names removeObjectAtIndex: 0];
3632 [ns_pending_service_args removeObjectAtIndex: 0];
3633 }
3634 else
3635 {
3636 /* Run and wait for events. We must always send one NX_APPDEFINED event
3637 to ourself, otherwise [NXApp run] will never exit. */
3638 send_appdefined = YES;
3639 ns_send_appdefined (-1);
3640
3641 if (++apploopnr != 1)
3642 {
3643 emacs_abort ();
3644 }
3645 [NSApp run];
3646 --apploopnr;
3647 }
3648
3649 nevents = n_emacs_events_pending;
3650 n_emacs_events_pending = 0;
3651 emacs_event = q_event_ptr = NULL;
3652 unblock_input ();
3653
3654 return nevents;
3655 }
3656
3657
3658 int
3659 ns_select (int nfds, fd_set *readfds, fd_set *writefds,
3660 fd_set *exceptfds, struct timespec const *timeout,
3661 sigset_t const *sigmask)
3662 /* --------------------------------------------------------------------------
3663 Replacement for select, checking for events
3664 -------------------------------------------------------------------------- */
3665 {
3666 int result;
3667 int t, k, nr = 0;
3668 struct input_event event;
3669 char c;
3670
3671 /* NSTRACE (ns_select); */
3672
3673 #ifdef HAVE_NATIVE_FS
3674 check_native_fs ();
3675 #endif
3676
3677 if (hold_event_q.nr > 0)
3678 {
3679 /* We already have events pending. */
3680 raise (SIGIO);
3681 errno = EINTR;
3682 return -1;
3683 }
3684
3685 for (k = 0; k < nfds+1; k++)
3686 {
3687 if (readfds && FD_ISSET(k, readfds)) ++nr;
3688 if (writefds && FD_ISSET(k, writefds)) ++nr;
3689 }
3690
3691 if (NSApp == nil
3692 || (timeout && timeout->tv_sec == 0 && timeout->tv_nsec == 0))
3693 return pselect (nfds, readfds, writefds, exceptfds, timeout, sigmask);
3694
3695 [outerpool release];
3696 outerpool = [[NSAutoreleasePool alloc] init];
3697
3698
3699 send_appdefined = YES;
3700 if (nr > 0)
3701 {
3702 pthread_mutex_lock (&select_mutex);
3703 select_nfds = nfds;
3704 select_valid = 0;
3705 if (readfds)
3706 {
3707 select_readfds = *readfds;
3708 select_valid += SELECT_HAVE_READ;
3709 }
3710 if (writefds)
3711 {
3712 select_writefds = *writefds;
3713 select_valid += SELECT_HAVE_WRITE;
3714 }
3715
3716 if (timeout)
3717 {
3718 select_timeout = *timeout;
3719 select_valid += SELECT_HAVE_TMO;
3720 }
3721
3722 pthread_mutex_unlock (&select_mutex);
3723
3724 /* Inform fd_handler that select should be called */
3725 c = 'g';
3726 emacs_write_sig (selfds[1], &c, 1);
3727 }
3728 else if (nr == 0 && timeout)
3729 {
3730 /* No file descriptor, just a timeout, no need to wake fd_handler */
3731 double time = timespectod (*timeout);
3732 timed_entry = [[NSTimer scheduledTimerWithTimeInterval: time
3733 target: NSApp
3734 selector:
3735 @selector (timeout_handler:)
3736 userInfo: 0
3737 repeats: NO]
3738 retain];
3739 }
3740 else /* No timeout and no file descriptors, can this happen? */
3741 {
3742 /* Send appdefined so we exit from the loop */
3743 ns_send_appdefined (-1);
3744 }
3745
3746 EVENT_INIT (event);
3747 block_input ();
3748 emacs_event = &event;
3749 if (++apploopnr != 1)
3750 {
3751 emacs_abort ();
3752 }
3753 [NSApp run];
3754 --apploopnr;
3755 emacs_event = NULL;
3756 if (nr > 0 && readfds)
3757 {
3758 c = 's';
3759 emacs_write_sig (selfds[1], &c, 1);
3760 }
3761 unblock_input ();
3762
3763 t = last_appdefined_event_data;
3764
3765 if (t != NO_APPDEFINED_DATA)
3766 {
3767 last_appdefined_event_data = NO_APPDEFINED_DATA;
3768
3769 if (t == -2)
3770 {
3771 /* The NX_APPDEFINED event we received was a timeout. */
3772 result = 0;
3773 }
3774 else if (t == -1)
3775 {
3776 /* The NX_APPDEFINED event we received was the result of
3777 at least one real input event arriving. */
3778 errno = EINTR;
3779 result = -1;
3780 }
3781 else
3782 {
3783 /* Received back from select () in fd_handler; copy the results */
3784 pthread_mutex_lock (&select_mutex);
3785 if (readfds) *readfds = select_readfds;
3786 if (writefds) *writefds = select_writefds;
3787 pthread_mutex_unlock (&select_mutex);
3788 result = t;
3789 }
3790 }
3791 else
3792 {
3793 errno = EINTR;
3794 result = -1;
3795 }
3796
3797 return result;
3798 }
3799
3800
3801
3802 /* ==========================================================================
3803
3804 Scrollbar handling
3805
3806 ========================================================================== */
3807
3808
3809 static void
3810 ns_set_vertical_scroll_bar (struct window *window,
3811 int portion, int whole, int position)
3812 /* --------------------------------------------------------------------------
3813 External (hook): Update or add scrollbar
3814 -------------------------------------------------------------------------- */
3815 {
3816 Lisp_Object win;
3817 NSRect r, v;
3818 struct frame *f = XFRAME (WINDOW_FRAME (window));
3819 EmacsView *view = FRAME_NS_VIEW (f);
3820 int window_y, window_height;
3821 int top, left, height, width, sb_width, sb_left;
3822 EmacsScroller *bar;
3823 BOOL fringe_extended_p;
3824
3825 /* optimization; display engine sends WAY too many of these.. */
3826 if (!NILP (window->vertical_scroll_bar))
3827 {
3828 bar = XNS_SCROLL_BAR (window->vertical_scroll_bar);
3829 if ([bar checkSamePosition: position portion: portion whole: whole])
3830 {
3831 if (view->scrollbarsNeedingUpdate == 0)
3832 {
3833 if (!windows_or_buffers_changed)
3834 return;
3835 }
3836 else
3837 view->scrollbarsNeedingUpdate--;
3838 }
3839 }
3840
3841 NSTRACE (ns_set_vertical_scroll_bar);
3842
3843 /* Get dimensions. */
3844 window_box (window, ANY_AREA, 0, &window_y, 0, &window_height);
3845 top = window_y;
3846 height = window_height;
3847 width = WINDOW_CONFIG_SCROLL_BAR_COLS (window) * FRAME_COLUMN_WIDTH (f);
3848 left = WINDOW_SCROLL_BAR_AREA_X (window);
3849
3850 /* allow for displaying a skinnier scrollbar than char area allotted */
3851 sb_width = (WINDOW_CONFIG_SCROLL_BAR_WIDTH (window) > 0) ?
3852 WINDOW_CONFIG_SCROLL_BAR_WIDTH (window) : width;
3853 sb_left = left;
3854
3855 r = NSMakeRect (sb_left, top, sb_width, height);
3856 /* the parent view is flipped, so we need to flip y value */
3857 v = [view frame];
3858 r.origin.y = (v.size.height - r.size.height - r.origin.y);
3859
3860 fringe_extended_p = WINDOW_FRINGE_EXTENDED_P (window);
3861
3862 XSETWINDOW (win, window);
3863 block_input ();
3864
3865 /* we want at least 5 lines to display a scrollbar */
3866 if (WINDOW_TOTAL_LINES (window) < 5)
3867 {
3868 if (!NILP (window->vertical_scroll_bar))
3869 {
3870 bar = XNS_SCROLL_BAR (window->vertical_scroll_bar);
3871 [bar removeFromSuperview];
3872 wset_vertical_scroll_bar (window, Qnil);
3873 }
3874 ns_clear_frame_area (f, sb_left, top, width, height);
3875 unblock_input ();
3876 return;
3877 }
3878
3879 if (NILP (window->vertical_scroll_bar))
3880 {
3881 if (width > 0 && height > 0)
3882 {
3883 if (fringe_extended_p)
3884 ns_clear_frame_area (f, sb_left, top, sb_width, height);
3885 else
3886 ns_clear_frame_area (f, left, top, width, height);
3887 }
3888
3889 bar = [[EmacsScroller alloc] initFrame: r window: win];
3890 wset_vertical_scroll_bar (window, make_save_ptr (bar));
3891 }
3892 else
3893 {
3894 NSRect oldRect;
3895 bar = XNS_SCROLL_BAR (window->vertical_scroll_bar);
3896 oldRect = [bar frame];
3897 r.size.width = oldRect.size.width;
3898 if (FRAME_LIVE_P (f) && !NSEqualRects (oldRect, r))
3899 {
3900 if (oldRect.origin.x != r.origin.x)
3901 ns_clear_frame_area (f, sb_left, top, width, height);
3902 [bar setFrame: r];
3903 }
3904 }
3905
3906 [bar setPosition: position portion: portion whole: whole];
3907 unblock_input ();
3908 }
3909
3910
3911 static void
3912 ns_condemn_scroll_bars (struct frame *f)
3913 /* --------------------------------------------------------------------------
3914 External (hook): arrange for all frame's scrollbars to be removed
3915 at next call to judge_scroll_bars, except for those redeemed.
3916 -------------------------------------------------------------------------- */
3917 {
3918 int i;
3919 id view;
3920 NSArray *subviews = [[FRAME_NS_VIEW (f) superview] subviews];
3921
3922 NSTRACE (ns_condemn_scroll_bars);
3923
3924 for (i =[subviews count]-1; i >= 0; i--)
3925 {
3926 view = [subviews objectAtIndex: i];
3927 if ([view isKindOfClass: [EmacsScroller class]])
3928 [view condemn];
3929 }
3930 }
3931
3932
3933 static void
3934 ns_redeem_scroll_bar (struct window *window)
3935 /* --------------------------------------------------------------------------
3936 External (hook): arrange to spare this window's scrollbar
3937 at next call to judge_scroll_bars.
3938 -------------------------------------------------------------------------- */
3939 {
3940 id bar;
3941 NSTRACE (ns_redeem_scroll_bar);
3942 if (!NILP (window->vertical_scroll_bar))
3943 {
3944 bar = XNS_SCROLL_BAR (window->vertical_scroll_bar);
3945 [bar reprieve];
3946 }
3947 }
3948
3949
3950 static void
3951 ns_judge_scroll_bars (struct frame *f)
3952 /* --------------------------------------------------------------------------
3953 External (hook): destroy all scrollbars on frame that weren't
3954 redeemed after call to condemn_scroll_bars.
3955 -------------------------------------------------------------------------- */
3956 {
3957 int i;
3958 id view;
3959 EmacsView *eview = FRAME_NS_VIEW (f);
3960 NSArray *subviews = [[eview superview] subviews];
3961 BOOL removed = NO;
3962
3963 NSTRACE (ns_judge_scroll_bars);
3964 for (i = [subviews count]-1; i >= 0; --i)
3965 {
3966 view = [subviews objectAtIndex: i];
3967 if (![view isKindOfClass: [EmacsScroller class]]) continue;
3968 [view judge];
3969 removed = YES;
3970 }
3971
3972 if (removed)
3973 [eview updateFrameSize: NO];
3974 }
3975
3976 /* ==========================================================================
3977
3978 Initialization
3979
3980 ========================================================================== */
3981
3982 int
3983 x_display_pixel_height (struct ns_display_info *dpyinfo)
3984 {
3985 NSArray *screens = [NSScreen screens];
3986 NSEnumerator *enumerator = [screens objectEnumerator];
3987 NSScreen *screen;
3988 NSRect frame;
3989
3990 frame = NSZeroRect;
3991 while ((screen = [enumerator nextObject]) != nil)
3992 frame = NSUnionRect (frame, [screen frame]);
3993
3994 return NSHeight (frame);
3995 }
3996
3997 int
3998 x_display_pixel_width (struct ns_display_info *dpyinfo)
3999 {
4000 NSArray *screens = [NSScreen screens];
4001 NSEnumerator *enumerator = [screens objectEnumerator];
4002 NSScreen *screen;
4003 NSRect frame;
4004
4005 frame = NSZeroRect;
4006 while ((screen = [enumerator nextObject]) != nil)
4007 frame = NSUnionRect (frame, [screen frame]);
4008
4009 return NSWidth (frame);
4010 }
4011
4012
4013 static Lisp_Object ns_string_to_lispmod (const char *s)
4014 /* --------------------------------------------------------------------------
4015 Convert modifier name to lisp symbol
4016 -------------------------------------------------------------------------- */
4017 {
4018 if (!strncmp (SSDATA (SYMBOL_NAME (Qmeta)), s, 10))
4019 return Qmeta;
4020 else if (!strncmp (SSDATA (SYMBOL_NAME (Qsuper)), s, 10))
4021 return Qsuper;
4022 else if (!strncmp (SSDATA (SYMBOL_NAME (Qcontrol)), s, 10))
4023 return Qcontrol;
4024 else if (!strncmp (SSDATA (SYMBOL_NAME (Qalt)), s, 10))
4025 return Qalt;
4026 else if (!strncmp (SSDATA (SYMBOL_NAME (Qhyper)), s, 10))
4027 return Qhyper;
4028 else if (!strncmp (SSDATA (SYMBOL_NAME (Qnone)), s, 10))
4029 return Qnone;
4030 else
4031 return Qnil;
4032 }
4033
4034
4035 static void
4036 ns_default (const char *parameter, Lisp_Object *result,
4037 Lisp_Object yesval, Lisp_Object noval,
4038 BOOL is_float, BOOL is_modstring)
4039 /* --------------------------------------------------------------------------
4040 Check a parameter value in user's preferences
4041 -------------------------------------------------------------------------- */
4042 {
4043 const char *value = ns_get_defaults_value (parameter);
4044
4045 if (value)
4046 {
4047 double f;
4048 char *pos;
4049 if (c_strcasecmp (value, "YES") == 0)
4050 *result = yesval;
4051 else if (c_strcasecmp (value, "NO") == 0)
4052 *result = noval;
4053 else if (is_float && (f = strtod (value, &pos), pos != value))
4054 *result = make_float (f);
4055 else if (is_modstring && value)
4056 *result = ns_string_to_lispmod (value);
4057 else fprintf (stderr,
4058 "Bad value for default \"%s\": \"%s\"\n", parameter, value);
4059 }
4060 }
4061
4062
4063 static void
4064 ns_initialize_display_info (struct ns_display_info *dpyinfo)
4065 /* --------------------------------------------------------------------------
4066 Initialize global info and storage for display.
4067 -------------------------------------------------------------------------- */
4068 {
4069 NSScreen *screen = [NSScreen mainScreen];
4070 NSWindowDepth depth = [screen depth];
4071
4072 dpyinfo->resx = 72.27; /* used 75.0, but this makes pt == pixel, expected */
4073 dpyinfo->resy = 72.27;
4074 dpyinfo->color_p = ![NSDeviceWhiteColorSpace isEqualToString:
4075 NSColorSpaceFromDepth (depth)]
4076 && ![NSCalibratedWhiteColorSpace isEqualToString:
4077 NSColorSpaceFromDepth (depth)];
4078 dpyinfo->n_planes = NSBitsPerPixelFromDepth (depth);
4079 dpyinfo->color_table = xmalloc (sizeof *dpyinfo->color_table);
4080 dpyinfo->color_table->colors = NULL;
4081 dpyinfo->root_window = 42; /* a placeholder.. */
4082 dpyinfo->x_highlight_frame = dpyinfo->x_focus_frame = NULL;
4083 dpyinfo->n_fonts = 0;
4084 dpyinfo->smallest_font_height = 1;
4085 dpyinfo->smallest_char_width = 1;
4086
4087 reset_mouse_highlight (&dpyinfo->mouse_highlight);
4088 }
4089
4090
4091 /* This and next define (many of the) public functions in this file. */
4092 /* x_... are generic versions in xdisp.c that we, and other terms, get away
4093 with using despite presence in the "system dependent" redisplay
4094 interface. In addition, many of the ns_ methods have code that is
4095 shared with all terms, indicating need for further refactoring. */
4096 extern frame_parm_handler ns_frame_parm_handlers[];
4097 static struct redisplay_interface ns_redisplay_interface =
4098 {
4099 ns_frame_parm_handlers,
4100 x_produce_glyphs,
4101 x_write_glyphs,
4102 x_insert_glyphs,
4103 x_clear_end_of_line,
4104 ns_scroll_run,
4105 ns_after_update_window_line,
4106 ns_update_window_begin,
4107 ns_update_window_end,
4108 0, /* flush_display */
4109 x_clear_window_mouse_face,
4110 x_get_glyph_overhangs,
4111 x_fix_overlapping_area,
4112 ns_draw_fringe_bitmap,
4113 0, /* define_fringe_bitmap */ /* FIXME: simplify ns_draw_fringe_bitmap */
4114 0, /* destroy_fringe_bitmap */
4115 ns_compute_glyph_string_overhangs,
4116 ns_draw_glyph_string,
4117 ns_define_frame_cursor,
4118 ns_clear_frame_area,
4119 ns_draw_window_cursor,
4120 ns_draw_vertical_window_border,
4121 ns_draw_window_divider,
4122 ns_shift_glyphs_for_insert
4123 };
4124
4125
4126 static void
4127 ns_delete_display (struct ns_display_info *dpyinfo)
4128 {
4129 /* TODO... */
4130 }
4131
4132
4133 /* This function is called when the last frame on a display is deleted. */
4134 static void
4135 ns_delete_terminal (struct terminal *terminal)
4136 {
4137 struct ns_display_info *dpyinfo = terminal->display_info.ns;
4138
4139 /* Protect against recursive calls. delete_frame in
4140 delete_terminal calls us back when it deletes our last frame. */
4141 if (!terminal->name)
4142 return;
4143
4144 block_input ();
4145
4146 x_destroy_all_bitmaps (dpyinfo);
4147 ns_delete_display (dpyinfo);
4148 unblock_input ();
4149 }
4150
4151
4152 static struct terminal *
4153 ns_create_terminal (struct ns_display_info *dpyinfo)
4154 /* --------------------------------------------------------------------------
4155 Set up use of NS before we make the first connection.
4156 -------------------------------------------------------------------------- */
4157 {
4158 struct terminal *terminal;
4159
4160 NSTRACE (ns_create_terminal);
4161
4162 terminal = create_terminal (output_ns, &ns_redisplay_interface);
4163
4164 terminal->display_info.ns = dpyinfo;
4165 dpyinfo->terminal = terminal;
4166
4167 terminal->clear_frame_hook = ns_clear_frame;
4168 terminal->ring_bell_hook = ns_ring_bell;
4169 terminal->update_begin_hook = ns_update_begin;
4170 terminal->update_end_hook = ns_update_end;
4171 terminal->read_socket_hook = ns_read_socket;
4172 terminal->frame_up_to_date_hook = ns_frame_up_to_date;
4173 terminal->mouse_position_hook = ns_mouse_position;
4174 terminal->frame_rehighlight_hook = ns_frame_rehighlight;
4175 terminal->frame_raise_lower_hook = ns_frame_raise_lower;
4176 terminal->fullscreen_hook = ns_fullscreen_hook;
4177 terminal->set_vertical_scroll_bar_hook = ns_set_vertical_scroll_bar;
4178 terminal->condemn_scroll_bars_hook = ns_condemn_scroll_bars;
4179 terminal->redeem_scroll_bar_hook = ns_redeem_scroll_bar;
4180 terminal->judge_scroll_bars_hook = ns_judge_scroll_bars;
4181 terminal->delete_frame_hook = x_destroy_window;
4182 terminal->delete_terminal_hook = ns_delete_terminal;
4183 /* Other hooks are NULL by default. */
4184
4185 return terminal;
4186 }
4187
4188
4189 struct ns_display_info *
4190 ns_term_init (Lisp_Object display_name)
4191 /* --------------------------------------------------------------------------
4192 Start the Application and get things rolling.
4193 -------------------------------------------------------------------------- */
4194 {
4195 struct terminal *terminal;
4196 struct ns_display_info *dpyinfo;
4197 static int ns_initialized = 0;
4198 Lisp_Object tmp;
4199
4200 if (ns_initialized) return x_display_list;
4201 ns_initialized = 1;
4202
4203 NSTRACE (ns_term_init);
4204
4205 [outerpool release];
4206 outerpool = [[NSAutoreleasePool alloc] init];
4207
4208 /* count object allocs (About, click icon); on OS X use ObjectAlloc tool */
4209 /*GSDebugAllocationActive (YES); */
4210 block_input ();
4211
4212 baud_rate = 38400;
4213 Fset_input_interrupt_mode (Qnil);
4214
4215 if (selfds[0] == -1)
4216 {
4217 if (emacs_pipe (selfds) != 0)
4218 {
4219 fprintf (stderr, "Failed to create pipe: %s\n",
4220 emacs_strerror (errno));
4221 emacs_abort ();
4222 }
4223
4224 fcntl (selfds[0], F_SETFL, O_NONBLOCK|fcntl (selfds[0], F_GETFL));
4225 FD_ZERO (&select_readfds);
4226 FD_ZERO (&select_writefds);
4227 pthread_mutex_init (&select_mutex, NULL);
4228 }
4229
4230 ns_pending_files = [[NSMutableArray alloc] init];
4231 ns_pending_service_names = [[NSMutableArray alloc] init];
4232 ns_pending_service_args = [[NSMutableArray alloc] init];
4233
4234 /* Start app and create the main menu, window, view.
4235 Needs to be here because ns_initialize_display_info () uses AppKit classes.
4236 The view will then ask the NSApp to stop and return to Emacs. */
4237 [EmacsApp sharedApplication];
4238 if (NSApp == nil)
4239 return NULL;
4240 [NSApp setDelegate: NSApp];
4241
4242 /* Start the select thread. */
4243 [NSThread detachNewThreadSelector:@selector (fd_handler:)
4244 toTarget:NSApp
4245 withObject:nil];
4246
4247 /* debugging: log all notifications */
4248 /* [[NSNotificationCenter defaultCenter] addObserver: NSApp
4249 selector: @selector (logNotification:)
4250 name: nil object: nil]; */
4251
4252 dpyinfo = xzalloc (sizeof *dpyinfo);
4253
4254 ns_initialize_display_info (dpyinfo);
4255 terminal = ns_create_terminal (dpyinfo);
4256
4257 terminal->kboard = allocate_kboard (Qns);
4258 /* Don't let the initial kboard remain current longer than necessary.
4259 That would cause problems if a file loaded on startup tries to
4260 prompt in the mini-buffer. */
4261 if (current_kboard == initial_kboard)
4262 current_kboard = terminal->kboard;
4263 terminal->kboard->reference_count++;
4264
4265 dpyinfo->next = x_display_list;
4266 x_display_list = dpyinfo;
4267
4268 dpyinfo->name_list_element = Fcons (display_name, Qnil);
4269
4270 terminal->name = xstrdup (SSDATA (display_name));
4271
4272 unblock_input ();
4273
4274 if (!inhibit_x_resources)
4275 {
4276 ns_default ("GSFontAntiAlias", &ns_antialias_text,
4277 Qt, Qnil, NO, NO);
4278 tmp = Qnil;
4279 /* this is a standard variable */
4280 ns_default ("AppleAntiAliasingThreshold", &tmp,
4281 make_float (10.0), make_float (6.0), YES, NO);
4282 ns_antialias_threshold = NILP (tmp) ? 10.0 : XFLOATINT (tmp);
4283 }
4284
4285 {
4286 NSColorList *cl = [NSColorList colorListNamed: @"Emacs"];
4287
4288 if ( cl == nil )
4289 {
4290 Lisp_Object color_file, color_map, color;
4291 unsigned long c;
4292 char *name;
4293
4294 color_file = Fexpand_file_name (build_string ("rgb.txt"),
4295 Fsymbol_value (intern ("data-directory")));
4296
4297 color_map = Fx_load_color_file (color_file);
4298 if (NILP (color_map))
4299 fatal ("Could not read %s.\n", SDATA (color_file));
4300
4301 cl = [[NSColorList alloc] initWithName: @"Emacs"];
4302 for ( ; CONSP (color_map); color_map = XCDR (color_map))
4303 {
4304 color = XCAR (color_map);
4305 name = SSDATA (XCAR (color));
4306 c = XINT (XCDR (color));
4307 [cl setColor:
4308 [NSColor colorForEmacsRed: RED_FROM_ULONG (c) / 255.0
4309 green: GREEN_FROM_ULONG (c) / 255.0
4310 blue: BLUE_FROM_ULONG (c) / 255.0
4311 alpha: 1.0]
4312 forKey: [NSString stringWithUTF8String: name]];
4313 }
4314 [cl writeToFile: nil];
4315 }
4316 }
4317
4318 {
4319 #ifdef NS_IMPL_GNUSTEP
4320 Vwindow_system_version = build_string (gnustep_base_version);
4321 #else
4322 /*PSnextrelease (128, c); */
4323 char c[DBL_BUFSIZE_BOUND];
4324 int len = dtoastr (c, sizeof c, 0, 0, NSAppKitVersionNumber);
4325 Vwindow_system_version = make_unibyte_string (c, len);
4326 #endif
4327 }
4328
4329 delete_keyboard_wait_descriptor (0);
4330
4331 ns_app_name = [[NSProcessInfo processInfo] processName];
4332
4333 /* Set up OS X app menu */
4334 #ifdef NS_IMPL_COCOA
4335 {
4336 NSMenu *appMenu;
4337 NSMenuItem *item;
4338 /* set up the application menu */
4339 svcsMenu = [[EmacsMenu alloc] initWithTitle: @"Services"];
4340 [svcsMenu setAutoenablesItems: NO];
4341 appMenu = [[EmacsMenu alloc] initWithTitle: @"Emacs"];
4342 [appMenu setAutoenablesItems: NO];
4343 mainMenu = [[EmacsMenu alloc] initWithTitle: @""];
4344 dockMenu = [[EmacsMenu alloc] initWithTitle: @""];
4345
4346 [appMenu insertItemWithTitle: @"About Emacs"
4347 action: @selector (orderFrontStandardAboutPanel:)
4348 keyEquivalent: @""
4349 atIndex: 0];
4350 [appMenu insertItem: [NSMenuItem separatorItem] atIndex: 1];
4351 [appMenu insertItemWithTitle: @"Preferences..."
4352 action: @selector (showPreferencesWindow:)
4353 keyEquivalent: @","
4354 atIndex: 2];
4355 [appMenu insertItem: [NSMenuItem separatorItem] atIndex: 3];
4356 item = [appMenu insertItemWithTitle: @"Services"
4357 action: @selector (menuDown:)
4358 keyEquivalent: @""
4359 atIndex: 4];
4360 [appMenu setSubmenu: svcsMenu forItem: item];
4361 [appMenu insertItem: [NSMenuItem separatorItem] atIndex: 5];
4362 [appMenu insertItemWithTitle: @"Hide Emacs"
4363 action: @selector (hide:)
4364 keyEquivalent: @"h"
4365 atIndex: 6];
4366 item = [appMenu insertItemWithTitle: @"Hide Others"
4367 action: @selector (hideOtherApplications:)
4368 keyEquivalent: @"h"
4369 atIndex: 7];
4370 [item setKeyEquivalentModifierMask: NSCommandKeyMask | NSAlternateKeyMask];
4371 [appMenu insertItem: [NSMenuItem separatorItem] atIndex: 8];
4372 [appMenu insertItemWithTitle: @"Quit Emacs"
4373 action: @selector (terminate:)
4374 keyEquivalent: @"q"
4375 atIndex: 9];
4376
4377 item = [mainMenu insertItemWithTitle: ns_app_name
4378 action: @selector (menuDown:)
4379 keyEquivalent: @""
4380 atIndex: 0];
4381 [mainMenu setSubmenu: appMenu forItem: item];
4382 [dockMenu insertItemWithTitle: @"New Frame"
4383 action: @selector (newFrame:)
4384 keyEquivalent: @""
4385 atIndex: 0];
4386
4387 [NSApp setMainMenu: mainMenu];
4388 [NSApp setAppleMenu: appMenu];
4389 [NSApp setServicesMenu: svcsMenu];
4390 /* Needed at least on Cocoa, to get dock menu to show windows */
4391 [NSApp setWindowsMenu: [[NSMenu alloc] init]];
4392
4393 [[NSNotificationCenter defaultCenter]
4394 addObserver: mainMenu
4395 selector: @selector (trackingNotification:)
4396 name: NSMenuDidBeginTrackingNotification object: mainMenu];
4397 [[NSNotificationCenter defaultCenter]
4398 addObserver: mainMenu
4399 selector: @selector (trackingNotification:)
4400 name: NSMenuDidEndTrackingNotification object: mainMenu];
4401 }
4402 #endif /* MAC OS X menu setup */
4403
4404 /* Register our external input/output types, used for determining
4405 applicable services and also drag/drop eligibility. */
4406 ns_send_types = [[NSArray arrayWithObjects: NSStringPboardType, nil] retain];
4407 ns_return_types = [[NSArray arrayWithObjects: NSStringPboardType, nil]
4408 retain];
4409 ns_drag_types = [[NSArray arrayWithObjects:
4410 NSStringPboardType,
4411 NSTabularTextPboardType,
4412 NSFilenamesPboardType,
4413 NSURLPboardType, nil] retain];
4414
4415 /* If fullscreen is in init/default-frame-alist, focus isn't set
4416 right for fullscreen windows, so set this. */
4417 [NSApp activateIgnoringOtherApps:YES];
4418
4419 [NSApp run];
4420 ns_do_open_file = YES;
4421
4422 #ifdef NS_IMPL_GNUSTEP
4423 /* GNUstep steals SIGCHLD for use in NSTask, but we don't use NSTask.
4424 We must re-catch it so subprocess works. */
4425 catch_child_signal ();
4426 #endif
4427 return dpyinfo;
4428 }
4429
4430
4431 void
4432 ns_term_shutdown (int sig)
4433 {
4434 [[NSUserDefaults standardUserDefaults] synchronize];
4435
4436 /* code not reached in emacs.c after this is called by shut_down_emacs: */
4437 if (STRINGP (Vauto_save_list_file_name))
4438 unlink (SSDATA (Vauto_save_list_file_name));
4439
4440 if (sig == 0 || sig == SIGTERM)
4441 {
4442 [NSApp terminate: NSApp];
4443 }
4444 else // force a stack trace to happen
4445 {
4446 emacs_abort ();
4447 }
4448 }
4449
4450
4451 /* ==========================================================================
4452
4453 EmacsApp implementation
4454
4455 ========================================================================== */
4456
4457
4458 @implementation EmacsApp
4459
4460 - (id)init
4461 {
4462 if (self = [super init])
4463 {
4464 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_9
4465 self->isFirst = YES;
4466 #endif
4467 #ifdef NS_IMPL_GNUSTEP
4468 self->applicationDidFinishLaunchingCalled = NO;
4469 #endif
4470 }
4471
4472 return self;
4473 }
4474
4475 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_9
4476 - (void)run
4477 {
4478 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
4479
4480 if (isFirst) [self finishLaunching];
4481 isFirst = NO;
4482
4483 shouldKeepRunning = YES;
4484 do
4485 {
4486 [pool release];
4487 pool = [[NSAutoreleasePool alloc] init];
4488
4489 NSEvent *event =
4490 [self nextEventMatchingMask:NSAnyEventMask
4491 untilDate:[NSDate distantFuture]
4492 inMode:NSDefaultRunLoopMode
4493 dequeue:YES];
4494 [self sendEvent:event];
4495 [self updateWindows];
4496 } while (shouldKeepRunning);
4497
4498 [pool release];
4499 }
4500
4501 - (void)stop: (id)sender
4502 {
4503 shouldKeepRunning = NO;
4504 // Stop possible dialog also. Noop if no dialog present.
4505 // The file dialog still leaks 7k - 10k on 10.9 though.
4506 [super stop:sender];
4507 }
4508 #endif
4509
4510 - (void)logNotification: (NSNotification *)notification
4511 {
4512 const char *name = [[notification name] UTF8String];
4513 if (!strstr (name, "Update") && !strstr (name, "NSMenu")
4514 && !strstr (name, "WindowNumber"))
4515 NSLog (@"notification: '%@'", [notification name]);
4516 }
4517
4518
4519 - (void)sendEvent: (NSEvent *)theEvent
4520 /* --------------------------------------------------------------------------
4521 Called when NSApp is running for each event received. Used to stop
4522 the loop when we choose, since there's no way to just run one iteration.
4523 -------------------------------------------------------------------------- */
4524 {
4525 int type = [theEvent type];
4526 NSWindow *window = [theEvent window];
4527
4528 /* NSTRACE (sendEvent); */
4529 /*fprintf (stderr, "received event of type %d\t%d\n", type);*/
4530
4531 #ifdef NS_IMPL_GNUSTEP
4532 // Keyboard events aren't propagated to file dialogs for some reason.
4533 if ([NSApp modalWindow] != nil &&
4534 (type == NSKeyDown || type == NSKeyUp || type == NSFlagsChanged))
4535 {
4536 [[NSApp modalWindow] sendEvent: theEvent];
4537 return;
4538 }
4539 #endif
4540
4541 if (type == NSApplicationDefined)
4542 {
4543 switch ([theEvent data2])
4544 {
4545 #ifdef NS_IMPL_COCOA
4546 case NSAPP_DATA2_RUNASSCRIPT:
4547 ns_run_ascript ();
4548 [self stop: self];
4549 return;
4550 #endif
4551 case NSAPP_DATA2_RUNFILEDIALOG:
4552 ns_run_file_dialog ();
4553 [self stop: self];
4554 return;
4555 }
4556 }
4557
4558 if (type == NSCursorUpdate && window == nil)
4559 {
4560 fprintf (stderr, "Dropping external cursor update event.\n");
4561 return;
4562 }
4563
4564 if (type == NSApplicationDefined)
4565 {
4566 /* Events posted by ns_send_appdefined interrupt the run loop here.
4567 But, if a modal window is up, an appdefined can still come through,
4568 (e.g., from a makeKeyWindow event) but stopping self also stops the
4569 modal loop. Just defer it until later. */
4570 if ([NSApp modalWindow] == nil)
4571 {
4572 last_appdefined_event_data = [theEvent data1];
4573 [self stop: self];
4574 }
4575 else
4576 {
4577 send_appdefined = YES;
4578 }
4579 }
4580
4581
4582 #ifdef NS_IMPL_COCOA
4583 /* If no dialog and none of our frames have focus and it is a move, skip it.
4584 It is a mouse move in an auxiliary menu, i.e. on the top right on OSX,
4585 such as Wifi, sound, date or similar.
4586 This prevents "spooky" highlighting in the frame under the menu. */
4587 if (type == NSMouseMoved && [NSApp modalWindow] == nil)
4588 {
4589 struct ns_display_info *di;
4590 BOOL has_focus = NO;
4591 for (di = x_display_list; ! has_focus && di; di = di->next)
4592 has_focus = di->x_focus_frame != 0;
4593 if (! has_focus)
4594 return;
4595 }
4596 #endif
4597
4598 [super sendEvent: theEvent];
4599 }
4600
4601
4602 - (void)showPreferencesWindow: (id)sender
4603 {
4604 struct frame *emacsframe = SELECTED_FRAME ();
4605 NSEvent *theEvent = [NSApp currentEvent];
4606
4607 if (!emacs_event)
4608 return;
4609 emacs_event->kind = NS_NONKEY_EVENT;
4610 emacs_event->code = KEY_NS_SHOW_PREFS;
4611 emacs_event->modifiers = 0;
4612 EV_TRAILER (theEvent);
4613 }
4614
4615
4616 - (void)newFrame: (id)sender
4617 {
4618 struct frame *emacsframe = SELECTED_FRAME ();
4619 NSEvent *theEvent = [NSApp currentEvent];
4620
4621 if (!emacs_event)
4622 return;
4623 emacs_event->kind = NS_NONKEY_EVENT;
4624 emacs_event->code = KEY_NS_NEW_FRAME;
4625 emacs_event->modifiers = 0;
4626 EV_TRAILER (theEvent);
4627 }
4628
4629
4630 /* Open a file (used by below, after going into queue read by ns_read_socket) */
4631 - (BOOL) openFile: (NSString *)fileName
4632 {
4633 struct frame *emacsframe = SELECTED_FRAME ();
4634 NSEvent *theEvent = [NSApp currentEvent];
4635
4636 if (!emacs_event)
4637 return NO;
4638
4639 emacs_event->kind = NS_NONKEY_EVENT;
4640 emacs_event->code = KEY_NS_OPEN_FILE_LINE;
4641 ns_input_file = append2 (ns_input_file, build_string ([fileName UTF8String]));
4642 ns_input_line = Qnil; /* can be start or cons start,end */
4643 emacs_event->modifiers =0;
4644 EV_TRAILER (theEvent);
4645
4646 return YES;
4647 }
4648
4649
4650 /* **************************************************************************
4651
4652 EmacsApp delegate implementation
4653
4654 ************************************************************************** */
4655
4656 - (void)applicationDidFinishLaunching: (NSNotification *)notification
4657 /* --------------------------------------------------------------------------
4658 When application is loaded, terminate event loop in ns_term_init
4659 -------------------------------------------------------------------------- */
4660 {
4661 NSTRACE (applicationDidFinishLaunching);
4662 #ifdef NS_IMPL_GNUSTEP
4663 ((EmacsApp *)self)->applicationDidFinishLaunchingCalled = YES;
4664 #endif
4665 [NSApp setServicesProvider: NSApp];
4666 ns_send_appdefined (-2);
4667 }
4668
4669
4670 /* Termination sequences:
4671 C-x C-c:
4672 Cmd-Q:
4673 MenuBar | File | Exit:
4674 Select Quit from App menubar:
4675 -terminate
4676 KEY_NS_POWER_OFF, (save-buffers-kill-emacs)
4677 ns_term_shutdown()
4678
4679 Select Quit from Dock menu:
4680 Logout attempt:
4681 -appShouldTerminate
4682 Cancel -> Nothing else
4683 Accept ->
4684
4685 -terminate
4686 KEY_NS_POWER_OFF, (save-buffers-kill-emacs)
4687 ns_term_shutdown()
4688
4689 */
4690
4691 - (void) terminate: (id)sender
4692 {
4693 struct frame *emacsframe = SELECTED_FRAME ();
4694
4695 if (!emacs_event)
4696 return;
4697
4698 emacs_event->kind = NS_NONKEY_EVENT;
4699 emacs_event->code = KEY_NS_POWER_OFF;
4700 emacs_event->arg = Qt; /* mark as non-key event */
4701 EV_TRAILER ((id)nil);
4702 }
4703
4704
4705 - (NSApplicationTerminateReply)applicationShouldTerminate: (id)sender
4706 {
4707 int ret;
4708
4709 if (NILP (ns_confirm_quit)) // || ns_shutdown_properly --> TO DO
4710 return NSTerminateNow;
4711
4712 ret = NSRunAlertPanel(ns_app_name,
4713 @"Exit requested. Would you like to Save Buffers and Exit, or Cancel the request?",
4714 @"Save Buffers and Exit", @"Cancel", nil);
4715
4716 if (ret == NSAlertDefaultReturn)
4717 return NSTerminateNow;
4718 else if (ret == NSAlertAlternateReturn)
4719 return NSTerminateCancel;
4720 return NSTerminateNow; /* just in case */
4721 }
4722
4723 static int
4724 not_in_argv (NSString *arg)
4725 {
4726 int k;
4727 const char *a = [arg UTF8String];
4728 for (k = 1; k < initial_argc; ++k)
4729 if (strcmp (a, initial_argv[k]) == 0) return 0;
4730 return 1;
4731 }
4732
4733 /* Notification from the Workspace to open a file */
4734 - (BOOL)application: sender openFile: (NSString *)file
4735 {
4736 if (ns_do_open_file || not_in_argv (file))
4737 [ns_pending_files addObject: file];
4738 return YES;
4739 }
4740
4741
4742 /* Open a file as a temporary file */
4743 - (BOOL)application: sender openTempFile: (NSString *)file
4744 {
4745 if (ns_do_open_file || not_in_argv (file))
4746 [ns_pending_files addObject: file];
4747 return YES;
4748 }
4749
4750
4751 /* Notification from the Workspace to open a file noninteractively (?) */
4752 - (BOOL)application: sender openFileWithoutUI: (NSString *)file
4753 {
4754 if (ns_do_open_file || not_in_argv (file))
4755 [ns_pending_files addObject: file];
4756 return YES;
4757 }
4758
4759 /* Notification from the Workspace to open multiple files */
4760 - (void)application: sender openFiles: (NSArray *)fileList
4761 {
4762 NSEnumerator *files = [fileList objectEnumerator];
4763 NSString *file;
4764 /* Don't open files from the command line unconditionally,
4765 Cocoa parses the command line wrong, --option value tries to open value
4766 if --option is the last option. */
4767 while ((file = [files nextObject]) != nil)
4768 if (ns_do_open_file || not_in_argv (file))
4769 [ns_pending_files addObject: file];
4770
4771 [self replyToOpenOrPrint: NSApplicationDelegateReplySuccess];
4772
4773 }
4774
4775
4776 /* Handle dock menu requests. */
4777 - (NSMenu *)applicationDockMenu: (NSApplication *) sender
4778 {
4779 return dockMenu;
4780 }
4781
4782
4783 /* TODO: these may help w/IO switching btwn terminal and NSApp */
4784 - (void)applicationWillBecomeActive: (NSNotification *)notification
4785 {
4786 //ns_app_active=YES;
4787 }
4788 - (void)applicationDidBecomeActive: (NSNotification *)notification
4789 {
4790 NSTRACE (applicationDidBecomeActive);
4791
4792 #ifdef NS_IMPL_GNUSTEP
4793 if (! applicationDidFinishLaunchingCalled)
4794 [self applicationDidFinishLaunching:notification];
4795 #endif
4796 //ns_app_active=YES;
4797
4798 ns_update_auto_hide_menu_bar ();
4799 // No constraining takes place when the application is not active.
4800 ns_constrain_all_frames ();
4801 }
4802 - (void)applicationDidResignActive: (NSNotification *)notification
4803 {
4804 //ns_app_active=NO;
4805 ns_send_appdefined (-1);
4806 }
4807
4808
4809
4810 /* ==========================================================================
4811
4812 EmacsApp aux handlers for managing event loop
4813
4814 ========================================================================== */
4815
4816
4817 - (void)timeout_handler: (NSTimer *)timedEntry
4818 /* --------------------------------------------------------------------------
4819 The timeout specified to ns_select has passed.
4820 -------------------------------------------------------------------------- */
4821 {
4822 /*NSTRACE (timeout_handler); */
4823 ns_send_appdefined (-2);
4824 }
4825
4826 #ifdef NS_IMPL_GNUSTEP
4827 - (void)sendFromMainThread:(id)unused
4828 {
4829 ns_send_appdefined (nextappdefined);
4830 }
4831 #endif
4832
4833 - (void)fd_handler:(id)unused
4834 /* --------------------------------------------------------------------------
4835 Check data waiting on file descriptors and terminate if so
4836 -------------------------------------------------------------------------- */
4837 {
4838 int result;
4839 int waiting = 1, nfds;
4840 char c;
4841
4842 fd_set readfds, writefds, *wfds;
4843 struct timespec timeout, *tmo;
4844 NSAutoreleasePool *pool = nil;
4845
4846 /* NSTRACE (fd_handler); */
4847
4848 for (;;)
4849 {
4850 [pool release];
4851 pool = [[NSAutoreleasePool alloc] init];
4852
4853 if (waiting)
4854 {
4855 fd_set fds;
4856 FD_ZERO (&fds);
4857 FD_SET (selfds[0], &fds);
4858 result = select (selfds[0]+1, &fds, NULL, NULL, NULL);
4859 if (result > 0 && read (selfds[0], &c, 1) == 1 && c == 'g')
4860 waiting = 0;
4861 }
4862 else
4863 {
4864 pthread_mutex_lock (&select_mutex);
4865 nfds = select_nfds;
4866
4867 if (select_valid & SELECT_HAVE_READ)
4868 readfds = select_readfds;
4869 else
4870 FD_ZERO (&readfds);
4871
4872 if (select_valid & SELECT_HAVE_WRITE)
4873 {
4874 writefds = select_writefds;
4875 wfds = &writefds;
4876 }
4877 else
4878 wfds = NULL;
4879 if (select_valid & SELECT_HAVE_TMO)
4880 {
4881 timeout = select_timeout;
4882 tmo = &timeout;
4883 }
4884 else
4885 tmo = NULL;
4886
4887 pthread_mutex_unlock (&select_mutex);
4888
4889 FD_SET (selfds[0], &readfds);
4890 if (selfds[0] >= nfds) nfds = selfds[0]+1;
4891
4892 result = pselect (nfds, &readfds, wfds, NULL, tmo, NULL);
4893
4894 if (result == 0)
4895 ns_send_appdefined (-2);
4896 else if (result > 0)
4897 {
4898 if (FD_ISSET (selfds[0], &readfds))
4899 {
4900 if (read (selfds[0], &c, 1) == 1 && c == 's')
4901 waiting = 1;
4902 }
4903 else
4904 {
4905 pthread_mutex_lock (&select_mutex);
4906 if (select_valid & SELECT_HAVE_READ)
4907 select_readfds = readfds;
4908 if (select_valid & SELECT_HAVE_WRITE)
4909 select_writefds = writefds;
4910 if (select_valid & SELECT_HAVE_TMO)
4911 select_timeout = timeout;
4912 pthread_mutex_unlock (&select_mutex);
4913
4914 ns_send_appdefined (result);
4915 }
4916 }
4917 waiting = 1;
4918 }
4919 }
4920 }
4921
4922
4923
4924 /* ==========================================================================
4925
4926 Service provision
4927
4928 ========================================================================== */
4929
4930 /* called from system: queue for next pass through event loop */
4931 - (void)requestService: (NSPasteboard *)pboard
4932 userData: (NSString *)userData
4933 error: (NSString **)error
4934 {
4935 [ns_pending_service_names addObject: userData];
4936 [ns_pending_service_args addObject: [NSString stringWithUTF8String:
4937 SSDATA (ns_string_from_pasteboard (pboard))]];
4938 }
4939
4940
4941 /* called from ns_read_socket to clear queue */
4942 - (BOOL)fulfillService: (NSString *)name withArg: (NSString *)arg
4943 {
4944 struct frame *emacsframe = SELECTED_FRAME ();
4945 NSEvent *theEvent = [NSApp currentEvent];
4946
4947 if (!emacs_event)
4948 return NO;
4949
4950 emacs_event->kind = NS_NONKEY_EVENT;
4951 emacs_event->code = KEY_NS_SPI_SERVICE_CALL;
4952 ns_input_spi_name = build_string ([name UTF8String]);
4953 ns_input_spi_arg = build_string ([arg UTF8String]);
4954 emacs_event->modifiers = EV_MODIFIERS (theEvent);
4955 EV_TRAILER (theEvent);
4956
4957 return YES;
4958 }
4959
4960
4961 @end /* EmacsApp */
4962
4963
4964
4965 /* ==========================================================================
4966
4967 EmacsView implementation
4968
4969 ========================================================================== */
4970
4971
4972 @implementation EmacsView
4973
4974 /* needed to inform when window closed from LISP */
4975 - (void) setWindowClosing: (BOOL)closing
4976 {
4977 windowClosing = closing;
4978 }
4979
4980
4981 - (void)dealloc
4982 {
4983 NSTRACE (EmacsView_dealloc);
4984 [toolbar release];
4985 if (fs_state == FULLSCREEN_BOTH)
4986 [nonfs_window release];
4987 [super dealloc];
4988 }
4989
4990
4991 /* called on font panel selection */
4992 - (void)changeFont: (id)sender
4993 {
4994 NSEvent *e = [[self window] currentEvent];
4995 struct face *face = FRAME_DEFAULT_FACE (emacsframe);
4996 struct font *font = face->font;
4997 id newFont;
4998 CGFloat size;
4999 NSFont *nsfont;
5000
5001 NSTRACE (changeFont);
5002
5003 if (!emacs_event)
5004 return;
5005
5006 if (EQ (font->driver->type, Qns))
5007 nsfont = ((struct nsfont_info *)font)->nsfont;
5008 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5
5009 else
5010 nsfont = (NSFont *) macfont_get_nsctfont (font);
5011 #endif
5012
5013 if ((newFont = [sender convertFont: nsfont]))
5014 {
5015 SET_FRAME_GARBAGED (emacsframe); /* now needed as of 2008/10 */
5016
5017 emacs_event->kind = NS_NONKEY_EVENT;
5018 emacs_event->modifiers = 0;
5019 emacs_event->code = KEY_NS_CHANGE_FONT;
5020
5021 size = [newFont pointSize];
5022 ns_input_fontsize = make_number (lrint (size));
5023 ns_input_font = build_string ([[newFont familyName] UTF8String]);
5024 EV_TRAILER (e);
5025 }
5026 }
5027
5028
5029 - (BOOL)acceptsFirstResponder
5030 {
5031 NSTRACE (acceptsFirstResponder);
5032 return YES;
5033 }
5034
5035
5036 - (void)resetCursorRects
5037 {
5038 NSRect visible = [self visibleRect];
5039 NSCursor *currentCursor = FRAME_POINTER_TYPE (emacsframe);
5040 NSTRACE (resetCursorRects);
5041
5042 if (currentCursor == nil)
5043 currentCursor = [NSCursor arrowCursor];
5044
5045 if (!NSIsEmptyRect (visible))
5046 [self addCursorRect: visible cursor: currentCursor];
5047 [currentCursor setOnMouseEntered: YES];
5048 }
5049
5050
5051
5052 /*****************************************************************************/
5053 /* Keyboard handling. */
5054 #define NS_KEYLOG 0
5055
5056 - (void)keyDown: (NSEvent *)theEvent
5057 {
5058 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (emacsframe);
5059 int code;
5060 unsigned fnKeysym = 0;
5061 static NSMutableArray *nsEvArray;
5062 #if !defined (NS_IMPL_COCOA) || MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_6
5063 static BOOL firstTime = YES;
5064 #endif
5065 int left_is_none;
5066 unsigned int flags = [theEvent modifierFlags];
5067
5068 NSTRACE (keyDown);
5069
5070 /* Rhapsody and OS X give up and down events for the arrow keys */
5071 if (ns_fake_keydown == YES)
5072 ns_fake_keydown = NO;
5073 else if ([theEvent type] != NSKeyDown)
5074 return;
5075
5076 if (!emacs_event)
5077 return;
5078
5079 if (![[self window] isKeyWindow]
5080 && [[theEvent window] isKindOfClass: [EmacsWindow class]]
5081 /* we must avoid an infinite loop here. */
5082 && (EmacsView *)[[theEvent window] delegate] != self)
5083 {
5084 /* XXX: There is an occasional condition in which, when Emacs display
5085 updates a different frame from the current one, and temporarily
5086 selects it, then processes some interrupt-driven input
5087 (dispnew.c:3878), OS will send the event to the correct NSWindow, but
5088 for some reason that window has its first responder set to the NSView
5089 most recently updated (I guess), which is not the correct one. */
5090 [(EmacsView *)[[theEvent window] delegate] keyDown: theEvent];
5091 return;
5092 }
5093
5094 if (nsEvArray == nil)
5095 nsEvArray = [[NSMutableArray alloc] initWithCapacity: 1];
5096
5097 [NSCursor setHiddenUntilMouseMoves: YES];
5098
5099 if (hlinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight))
5100 {
5101 clear_mouse_face (hlinfo);
5102 hlinfo->mouse_face_hidden = 1;
5103 }
5104
5105 if (!processingCompose)
5106 {
5107 /* When using screen sharing, no left or right information is sent,
5108 so use Left key in those cases. */
5109 int is_left_key, is_right_key;
5110
5111 code = ([[theEvent charactersIgnoringModifiers] length] == 0) ?
5112 0 : [[theEvent charactersIgnoringModifiers] characterAtIndex: 0];
5113
5114 /* (Carbon way: [theEvent keyCode]) */
5115
5116 /* is it a "function key"? */
5117 /* Note: Sometimes a plain key will have the NSNumericPadKeyMask
5118 flag set (this is probably a bug in the OS).
5119 */
5120 if (code < 0x00ff && (flags&NSNumericPadKeyMask))
5121 {
5122 fnKeysym = ns_convert_key ([theEvent keyCode] | NSNumericPadKeyMask);
5123 }
5124 if (fnKeysym == 0)
5125 {
5126 fnKeysym = ns_convert_key (code);
5127 }
5128
5129 if (fnKeysym)
5130 {
5131 /* COUNTERHACK: map 'Delete' on upper-right main KB to 'Backspace',
5132 because Emacs treats Delete and KP-Delete same (in simple.el). */
5133 if ((fnKeysym == 0xFFFF && [theEvent keyCode] == 0x33)
5134 #ifdef NS_IMPL_GNUSTEP
5135 /* GNUstep uses incompatible keycodes, even for those that are
5136 supposed to be hardware independent. Just check for delete.
5137 Keypad delete does not have keysym 0xFFFF.
5138 See http://savannah.gnu.org/bugs/?25395
5139 */
5140 || (fnKeysym == 0xFFFF && code == 127)
5141 #endif
5142 )
5143 code = 0xFF08; /* backspace */
5144 else
5145 code = fnKeysym;
5146 }
5147
5148 /* are there modifiers? */
5149 emacs_event->modifiers = 0;
5150
5151 if (flags & NSHelpKeyMask)
5152 emacs_event->modifiers |= hyper_modifier;
5153
5154 if (flags & NSShiftKeyMask)
5155 emacs_event->modifiers |= shift_modifier;
5156
5157 is_right_key = (flags & NSRightCommandKeyMask) == NSRightCommandKeyMask;
5158 is_left_key = (flags & NSLeftCommandKeyMask) == NSLeftCommandKeyMask
5159 || (! is_right_key && (flags & NSCommandKeyMask) == NSCommandKeyMask);
5160
5161 if (is_right_key)
5162 emacs_event->modifiers |= parse_solitary_modifier
5163 (EQ (ns_right_command_modifier, Qleft)
5164 ? ns_command_modifier
5165 : ns_right_command_modifier);
5166
5167 if (is_left_key)
5168 {
5169 emacs_event->modifiers |= parse_solitary_modifier
5170 (ns_command_modifier);
5171
5172 /* if super (default), take input manager's word so things like
5173 dvorak / qwerty layout work */
5174 if (EQ (ns_command_modifier, Qsuper)
5175 && !fnKeysym
5176 && [[theEvent characters] length] != 0)
5177 {
5178 /* XXX: the code we get will be unshifted, so if we have
5179 a shift modifier, must convert ourselves */
5180 if (!(flags & NSShiftKeyMask))
5181 code = [[theEvent characters] characterAtIndex: 0];
5182 #if 0
5183 /* this is ugly and also requires linking w/Carbon framework
5184 (for LMGetKbdType) so for now leave this rare (?) case
5185 undealt with.. in future look into CGEvent methods */
5186 else
5187 {
5188 long smv = GetScriptManagerVariable (smKeyScript);
5189 Handle uchrHandle = GetResource
5190 ('uchr', GetScriptVariable (smv, smScriptKeys));
5191 UInt32 dummy = 0;
5192 UCKeyTranslate ((UCKeyboardLayout*)*uchrHandle,
5193 [[theEvent characters] characterAtIndex: 0],
5194 kUCKeyActionDisplay,
5195 (flags & ~NSCommandKeyMask) >> 8,
5196 LMGetKbdType (), kUCKeyTranslateNoDeadKeysMask,
5197 &dummy, 1, &dummy, &code);
5198 code &= 0xFF;
5199 }
5200 #endif
5201 }
5202 }
5203
5204 is_right_key = (flags & NSRightControlKeyMask) == NSRightControlKeyMask;
5205 is_left_key = (flags & NSLeftControlKeyMask) == NSLeftControlKeyMask
5206 || (! is_right_key && (flags & NSControlKeyMask) == NSControlKeyMask);
5207
5208 if (is_right_key)
5209 emacs_event->modifiers |= parse_solitary_modifier
5210 (EQ (ns_right_control_modifier, Qleft)
5211 ? ns_control_modifier
5212 : ns_right_control_modifier);
5213
5214 if (is_left_key)
5215 emacs_event->modifiers |= parse_solitary_modifier
5216 (ns_control_modifier);
5217
5218 if (flags & NS_FUNCTION_KEY_MASK && !fnKeysym)
5219 emacs_event->modifiers |=
5220 parse_solitary_modifier (ns_function_modifier);
5221
5222 left_is_none = NILP (ns_alternate_modifier)
5223 || EQ (ns_alternate_modifier, Qnone);
5224
5225 is_right_key = (flags & NSRightAlternateKeyMask)
5226 == NSRightAlternateKeyMask;
5227 is_left_key = (flags & NSLeftAlternateKeyMask) == NSLeftAlternateKeyMask
5228 || (! is_right_key
5229 && (flags & NSAlternateKeyMask) == NSAlternateKeyMask);
5230
5231 if (is_right_key)
5232 {
5233 if ((NILP (ns_right_alternate_modifier)
5234 || EQ (ns_right_alternate_modifier, Qnone)
5235 || (EQ (ns_right_alternate_modifier, Qleft) && left_is_none))
5236 && !fnKeysym)
5237 { /* accept pre-interp alt comb */
5238 if ([[theEvent characters] length] > 0)
5239 code = [[theEvent characters] characterAtIndex: 0];
5240 /*HACK: clear lone shift modifier to stop next if from firing */
5241 if (emacs_event->modifiers == shift_modifier)
5242 emacs_event->modifiers = 0;
5243 }
5244 else
5245 emacs_event->modifiers |= parse_solitary_modifier
5246 (EQ (ns_right_alternate_modifier, Qleft)
5247 ? ns_alternate_modifier
5248 : ns_right_alternate_modifier);
5249 }
5250
5251 if (is_left_key) /* default = meta */
5252 {
5253 if (left_is_none && !fnKeysym)
5254 { /* accept pre-interp alt comb */
5255 if ([[theEvent characters] length] > 0)
5256 code = [[theEvent characters] characterAtIndex: 0];
5257 /*HACK: clear lone shift modifier to stop next if from firing */
5258 if (emacs_event->modifiers == shift_modifier)
5259 emacs_event->modifiers = 0;
5260 }
5261 else
5262 emacs_event->modifiers |=
5263 parse_solitary_modifier (ns_alternate_modifier);
5264 }
5265
5266 if (NS_KEYLOG)
5267 fprintf (stderr, "keyDown: code =%x\tfnKey =%x\tflags = %x\tmods = %x\n",
5268 code, fnKeysym, flags, emacs_event->modifiers);
5269
5270 /* if it was a function key or had modifiers, pass it directly to emacs */
5271 if (fnKeysym || (emacs_event->modifiers
5272 && (emacs_event->modifiers != shift_modifier)
5273 && [[theEvent charactersIgnoringModifiers] length] > 0))
5274 /*[[theEvent characters] length] */
5275 {
5276 emacs_event->kind = NON_ASCII_KEYSTROKE_EVENT;
5277 if (code < 0x20)
5278 code |= (1<<28)|(3<<16);
5279 else if (code == 0x7f)
5280 code |= (1<<28)|(3<<16);
5281 else if (!fnKeysym)
5282 emacs_event->kind = code > 0xFF
5283 ? MULTIBYTE_CHAR_KEYSTROKE_EVENT : ASCII_KEYSTROKE_EVENT;
5284
5285 emacs_event->code = code;
5286 EV_TRAILER (theEvent);
5287 processingCompose = NO;
5288 return;
5289 }
5290 }
5291
5292
5293 #if !defined (NS_IMPL_COCOA) || MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_6
5294 /* if we get here we should send the key for input manager processing */
5295 /* Disable warning, there is nothing a user can do about it anyway, and
5296 it does not seem to matter. */
5297 #if 0
5298 if (firstTime && [[NSInputManager currentInputManager]
5299 wantsToDelayTextChangeNotifications] == NO)
5300 fprintf (stderr,
5301 "Emacs: WARNING: TextInput mgr wants marked text to be permanent!\n");
5302 #endif
5303 firstTime = NO;
5304 #endif
5305 if (NS_KEYLOG && !processingCompose)
5306 fprintf (stderr, "keyDown: Begin compose sequence.\n");
5307
5308 processingCompose = YES;
5309 [nsEvArray addObject: theEvent];
5310 [self interpretKeyEvents: nsEvArray];
5311 [nsEvArray removeObject: theEvent];
5312 }
5313
5314
5315 #ifdef NS_IMPL_COCOA
5316 /* Needed to pick up Ctrl-tab and possibly other events that OS X has
5317 decided not to send key-down for.
5318 See http://osdir.com/ml/editors.vim.mac/2007-10/msg00141.html
5319 This only applies on Tiger and earlier.
5320 If it matches one of these, send it on to keyDown. */
5321 -(void)keyUp: (NSEvent *)theEvent
5322 {
5323 int flags = [theEvent modifierFlags];
5324 int code = [theEvent keyCode];
5325 if (floor (NSAppKitVersionNumber) <= 824 /*NSAppKitVersionNumber10_4*/ &&
5326 code == 0x30 && (flags & NSControlKeyMask) && !(flags & NSCommandKeyMask))
5327 {
5328 if (NS_KEYLOG)
5329 fprintf (stderr, "keyUp: passed test");
5330 ns_fake_keydown = YES;
5331 [self keyDown: theEvent];
5332 }
5333 }
5334 #endif
5335
5336
5337 /* <NSTextInput> implementation (called through super interpretKeyEvents:]). */
5338
5339
5340 /* <NSTextInput>: called when done composing;
5341 NOTE: also called when we delete over working text, followed immed.
5342 by doCommandBySelector: deleteBackward: */
5343 - (void)insertText: (id)aString
5344 {
5345 int code;
5346 int len = [(NSString *)aString length];
5347 int i;
5348
5349 if (NS_KEYLOG)
5350 NSLog (@"insertText '%@'\tlen = %d", aString, len);
5351 processingCompose = NO;
5352
5353 if (!emacs_event)
5354 return;
5355
5356 /* first, clear any working text */
5357 if (workingText != nil)
5358 [self deleteWorkingText];
5359
5360 /* now insert the string as keystrokes */
5361 for (i =0; i<len; i++)
5362 {
5363 code = [aString characterAtIndex: i];
5364 /* TODO: still need this? */
5365 if (code == 0x2DC)
5366 code = '~'; /* 0x7E */
5367 if (code != 32) /* Space */
5368 emacs_event->modifiers = 0;
5369 emacs_event->kind
5370 = code > 0xFF ? MULTIBYTE_CHAR_KEYSTROKE_EVENT : ASCII_KEYSTROKE_EVENT;
5371 emacs_event->code = code;
5372 EV_TRAILER ((id)nil);
5373 }
5374 }
5375
5376
5377 /* <NSTextInput>: inserts display of composing characters */
5378 - (void)setMarkedText: (id)aString selectedRange: (NSRange)selRange
5379 {
5380 NSString *str = [aString respondsToSelector: @selector (string)] ?
5381 [aString string] : aString;
5382 if (NS_KEYLOG)
5383 NSLog (@"setMarkedText '%@' len =%lu range %lu from %lu",
5384 str, (unsigned long)[str length],
5385 (unsigned long)selRange.length,
5386 (unsigned long)selRange.location);
5387
5388 if (workingText != nil)
5389 [self deleteWorkingText];
5390 if ([str length] == 0)
5391 return;
5392
5393 if (!emacs_event)
5394 return;
5395
5396 processingCompose = YES;
5397 workingText = [str copy];
5398 ns_working_text = build_string ([workingText UTF8String]);
5399
5400 emacs_event->kind = NS_TEXT_EVENT;
5401 emacs_event->code = KEY_NS_PUT_WORKING_TEXT;
5402 EV_TRAILER ((id)nil);
5403 }
5404
5405
5406 /* delete display of composing characters [not in <NSTextInput>] */
5407 - (void)deleteWorkingText
5408 {
5409 if (workingText == nil)
5410 return;
5411 if (NS_KEYLOG)
5412 NSLog(@"deleteWorkingText len =%lu\n", (unsigned long)[workingText length]);
5413 [workingText release];
5414 workingText = nil;
5415 processingCompose = NO;
5416
5417 if (!emacs_event)
5418 return;
5419
5420 emacs_event->kind = NS_TEXT_EVENT;
5421 emacs_event->code = KEY_NS_UNPUT_WORKING_TEXT;
5422 EV_TRAILER ((id)nil);
5423 }
5424
5425
5426 - (BOOL)hasMarkedText
5427 {
5428 return workingText != nil;
5429 }
5430
5431
5432 - (NSRange)markedRange
5433 {
5434 NSRange rng = workingText != nil
5435 ? NSMakeRange (0, [workingText length]) : NSMakeRange (NSNotFound, 0);
5436 if (NS_KEYLOG)
5437 NSLog (@"markedRange request");
5438 return rng;
5439 }
5440
5441
5442 - (void)unmarkText
5443 {
5444 if (NS_KEYLOG)
5445 NSLog (@"unmark (accept) text");
5446 [self deleteWorkingText];
5447 processingCompose = NO;
5448 }
5449
5450
5451 /* used to position char selection windows, etc. */
5452 - (NSRect)firstRectForCharacterRange: (NSRange)theRange
5453 {
5454 NSRect rect;
5455 NSPoint pt;
5456 struct window *win = XWINDOW (FRAME_SELECTED_WINDOW (emacsframe));
5457 if (NS_KEYLOG)
5458 NSLog (@"firstRectForCharRange request");
5459
5460 rect.size.width = theRange.length * FRAME_COLUMN_WIDTH (emacsframe);
5461 rect.size.height = FRAME_LINE_HEIGHT (emacsframe);
5462 pt.x = WINDOW_TEXT_TO_FRAME_PIXEL_X (win, win->phys_cursor.x);
5463 pt.y = WINDOW_TO_FRAME_PIXEL_Y (win, win->phys_cursor.y
5464 +FRAME_LINE_HEIGHT (emacsframe));
5465
5466 pt = [self convertPoint: pt toView: nil];
5467 pt = [[self window] convertBaseToScreen: pt];
5468 rect.origin = pt;
5469 return rect;
5470 }
5471
5472
5473 - (NSInteger)conversationIdentifier
5474 {
5475 return (NSInteger)self;
5476 }
5477
5478
5479 - (void)doCommandBySelector: (SEL)aSelector
5480 {
5481 if (NS_KEYLOG)
5482 NSLog (@"doCommandBySelector: %@", NSStringFromSelector (aSelector));
5483
5484 processingCompose = NO;
5485 if (aSelector == @selector (deleteBackward:))
5486 {
5487 /* happens when user backspaces over an ongoing composition:
5488 throw a 'delete' into the event queue */
5489 if (!emacs_event)
5490 return;
5491 emacs_event->kind = NON_ASCII_KEYSTROKE_EVENT;
5492 emacs_event->code = 0xFF08;
5493 EV_TRAILER ((id)nil);
5494 }
5495 }
5496
5497 - (NSArray *)validAttributesForMarkedText
5498 {
5499 static NSArray *arr = nil;
5500 if (arr == nil) arr = [NSArray new];
5501 /* [[NSArray arrayWithObject: NSUnderlineStyleAttributeName] retain]; */
5502 return arr;
5503 }
5504
5505 - (NSRange)selectedRange
5506 {
5507 if (NS_KEYLOG)
5508 NSLog (@"selectedRange request");
5509 return NSMakeRange (NSNotFound, 0);
5510 }
5511
5512 #if defined (NS_IMPL_COCOA) || GNUSTEP_GUI_MAJOR_VERSION > 0 || \
5513 GNUSTEP_GUI_MINOR_VERSION > 22
5514 - (NSUInteger)characterIndexForPoint: (NSPoint)thePoint
5515 #else
5516 - (unsigned int)characterIndexForPoint: (NSPoint)thePoint
5517 #endif
5518 {
5519 if (NS_KEYLOG)
5520 NSLog (@"characterIndexForPoint request");
5521 return 0;
5522 }
5523
5524 - (NSAttributedString *)attributedSubstringFromRange: (NSRange)theRange
5525 {
5526 static NSAttributedString *str = nil;
5527 if (str == nil) str = [NSAttributedString new];
5528 if (NS_KEYLOG)
5529 NSLog (@"attributedSubstringFromRange request");
5530 return str;
5531 }
5532
5533 /* End <NSTextInput> impl. */
5534 /*****************************************************************************/
5535
5536
5537 /* This is what happens when the user presses a mouse button. */
5538 - (void)mouseDown: (NSEvent *)theEvent
5539 {
5540 struct ns_display_info *dpyinfo = FRAME_DISPLAY_INFO (emacsframe);
5541 NSPoint p = [self convertPoint: [theEvent locationInWindow] fromView: nil];
5542
5543 NSTRACE (mouseDown);
5544
5545 [self deleteWorkingText];
5546
5547 if (!emacs_event)
5548 return;
5549
5550 dpyinfo->last_mouse_frame = emacsframe;
5551 /* appears to be needed to prevent spurious movement events generated on
5552 button clicks */
5553 emacsframe->mouse_moved = 0;
5554
5555 if ([theEvent type] == NSScrollWheel)
5556 {
5557 CGFloat delta = [theEvent deltaY];
5558 /* Mac notebooks send wheel events w/delta =0 when trackpad scrolling */
5559 if (delta == 0)
5560 {
5561 delta = [theEvent deltaX];
5562 if (delta == 0)
5563 {
5564 NSTRACE (deltaIsZero);
5565 return;
5566 }
5567 emacs_event->kind = HORIZ_WHEEL_EVENT;
5568 }
5569 else
5570 emacs_event->kind = WHEEL_EVENT;
5571
5572 emacs_event->code = 0;
5573 emacs_event->modifiers = EV_MODIFIERS (theEvent) |
5574 ((delta > 0) ? up_modifier : down_modifier);
5575 }
5576 else
5577 {
5578 emacs_event->kind = MOUSE_CLICK_EVENT;
5579 emacs_event->code = EV_BUTTON (theEvent);
5580 emacs_event->modifiers = EV_MODIFIERS (theEvent)
5581 | EV_UDMODIFIERS (theEvent);
5582 }
5583 XSETINT (emacs_event->x, lrint (p.x));
5584 XSETINT (emacs_event->y, lrint (p.y));
5585 EV_TRAILER (theEvent);
5586 }
5587
5588
5589 - (void)rightMouseDown: (NSEvent *)theEvent
5590 {
5591 NSTRACE (rightMouseDown);
5592 [self mouseDown: theEvent];
5593 }
5594
5595
5596 - (void)otherMouseDown: (NSEvent *)theEvent
5597 {
5598 NSTRACE (otherMouseDown);
5599 [self mouseDown: theEvent];
5600 }
5601
5602
5603 - (void)mouseUp: (NSEvent *)theEvent
5604 {
5605 NSTRACE (mouseUp);
5606 [self mouseDown: theEvent];
5607 }
5608
5609
5610 - (void)rightMouseUp: (NSEvent *)theEvent
5611 {
5612 NSTRACE (rightMouseUp);
5613 [self mouseDown: theEvent];
5614 }
5615
5616
5617 - (void)otherMouseUp: (NSEvent *)theEvent
5618 {
5619 NSTRACE (otherMouseUp);
5620 [self mouseDown: theEvent];
5621 }
5622
5623
5624 - (void) scrollWheel: (NSEvent *)theEvent
5625 {
5626 NSTRACE (scrollWheel);
5627 [self mouseDown: theEvent];
5628 }
5629
5630
5631 /* Tell emacs the mouse has moved. */
5632 - (void)mouseMoved: (NSEvent *)e
5633 {
5634 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (emacsframe);
5635 struct ns_display_info *dpyinfo = FRAME_DISPLAY_INFO (emacsframe);
5636 Lisp_Object frame;
5637 NSPoint pt;
5638
5639 // NSTRACE (mouseMoved);
5640
5641 dpyinfo->last_mouse_movement_time = EV_TIMESTAMP (e);
5642 pt = [self convertPoint: [e locationInWindow] fromView: nil];
5643 dpyinfo->last_mouse_motion_x = pt.x;
5644 dpyinfo->last_mouse_motion_y = pt.y;
5645
5646 /* update any mouse face */
5647 if (hlinfo->mouse_face_hidden)
5648 {
5649 hlinfo->mouse_face_hidden = 0;
5650 clear_mouse_face (hlinfo);
5651 }
5652
5653 /* tooltip handling */
5654 previous_help_echo_string = help_echo_string;
5655 help_echo_string = Qnil;
5656
5657 if (!NILP (Vmouse_autoselect_window))
5658 {
5659 NSTRACE (mouse_autoselect_window);
5660 static Lisp_Object last_mouse_window;
5661 Lisp_Object window
5662 = window_from_coordinates (emacsframe, pt.x, pt.y, 0, 0);
5663
5664 if (WINDOWP (window)
5665 && !EQ (window, last_mouse_window)
5666 && !EQ (window, selected_window)
5667 && (focus_follows_mouse
5668 || (EQ (XWINDOW (window)->frame,
5669 XWINDOW (selected_window)->frame))))
5670 {
5671 NSTRACE (in_window);
5672 emacs_event->kind = SELECT_WINDOW_EVENT;
5673 emacs_event->frame_or_window = window;
5674 EV_TRAILER2 (e);
5675 }
5676 /* Remember the last window where we saw the mouse. */
5677 last_mouse_window = window;
5678 }
5679
5680 if (!note_mouse_movement (emacsframe, pt.x, pt.y))
5681 help_echo_string = previous_help_echo_string;
5682
5683 XSETFRAME (frame, emacsframe);
5684 if (!NILP (help_echo_string) || !NILP (previous_help_echo_string))
5685 {
5686 /* NOTE: help_echo_{window,pos,object} are set in xdisp.c
5687 (note_mouse_highlight), which is called through the
5688 note_mouse_movement () call above */
5689 gen_help_event (help_echo_string, frame, help_echo_window,
5690 help_echo_object, help_echo_pos);
5691 }
5692 else
5693 {
5694 help_echo_string = Qnil;
5695 gen_help_event (Qnil, frame, Qnil, Qnil, 0);
5696 }
5697
5698 if (emacsframe->mouse_moved && send_appdefined)
5699 ns_send_appdefined (-1);
5700 }
5701
5702
5703 - (void)mouseDragged: (NSEvent *)e
5704 {
5705 NSTRACE (mouseDragged);
5706 [self mouseMoved: e];
5707 }
5708
5709
5710 - (void)rightMouseDragged: (NSEvent *)e
5711 {
5712 NSTRACE (rightMouseDragged);
5713 [self mouseMoved: e];
5714 }
5715
5716
5717 - (void)otherMouseDragged: (NSEvent *)e
5718 {
5719 NSTRACE (otherMouseDragged);
5720 [self mouseMoved: e];
5721 }
5722
5723
5724 - (BOOL)windowShouldClose: (id)sender
5725 {
5726 NSEvent *e =[[self window] currentEvent];
5727
5728 NSTRACE (windowShouldClose);
5729 windowClosing = YES;
5730 if (!emacs_event)
5731 return NO;
5732 emacs_event->kind = DELETE_WINDOW_EVENT;
5733 emacs_event->modifiers = 0;
5734 emacs_event->code = 0;
5735 EV_TRAILER (e);
5736 /* Don't close this window, let this be done from lisp code. */
5737 return NO;
5738 }
5739
5740 - (void) updateFrameSize: (BOOL) delay;
5741 {
5742 NSWindow *window = [self window];
5743 NSRect wr = [window frame];
5744 int extra = 0;
5745 int oldc = cols, oldr = rows;
5746 int oldw = FRAME_PIXEL_WIDTH (emacsframe);
5747 int oldh = FRAME_PIXEL_HEIGHT (emacsframe);
5748 int neww, newh;
5749
5750 NSTRACE (updateFrameSize);
5751 NSTRACE_SIZE ("Original size", NSMakeSize (oldw, oldh));
5752
5753 if (! [self isFullscreen])
5754 {
5755 #ifdef NS_IMPL_GNUSTEP
5756 // GNUstep does not always update the tool bar height. Force it.
5757 if (toolbar) update_frame_tool_bar (emacsframe);
5758 #endif
5759
5760 extra = FRAME_NS_TITLEBAR_HEIGHT (emacsframe)
5761 + FRAME_TOOLBAR_HEIGHT (emacsframe);
5762 }
5763
5764 if (wait_for_tool_bar)
5765 {
5766 if (FRAME_TOOLBAR_HEIGHT (emacsframe) == 0)
5767 return;
5768 wait_for_tool_bar = NO;
5769 }
5770
5771 neww = (int)wr.size.width - emacsframe->border_width;
5772 newh = (int)wr.size.height - extra;
5773
5774 cols = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (emacsframe, neww);
5775 rows = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (emacsframe, newh);
5776
5777 if (cols < MINWIDTH)
5778 cols = MINWIDTH;
5779
5780 if (rows < MINHEIGHT)
5781 rows = MINHEIGHT;
5782
5783 if (oldr != rows || oldc != cols || neww != oldw || newh != oldh)
5784 {
5785 NSView *view = FRAME_NS_VIEW (emacsframe);
5786 NSWindow *win = [view window];
5787 NSSize sz = [win resizeIncrements];
5788
5789 change_frame_size (emacsframe,
5790 FRAME_PIXEL_TO_TEXT_WIDTH (emacsframe, neww),
5791 FRAME_PIXEL_TO_TEXT_HEIGHT (emacsframe, newh),
5792 0, delay, 0, 1);
5793 SET_FRAME_GARBAGED (emacsframe);
5794 cancel_mouse_face (emacsframe);
5795
5796 // Did resize increments change because of a font change?
5797 if (sz.width != FRAME_COLUMN_WIDTH (emacsframe) ||
5798 sz.height != FRAME_LINE_HEIGHT (emacsframe))
5799 {
5800 sz.width = FRAME_COLUMN_WIDTH (emacsframe);
5801 sz.height = FRAME_LINE_HEIGHT (emacsframe);
5802 [win setResizeIncrements: sz];
5803
5804 NSTRACE_SIZE ("New size", NSMakeSize (neww, newh));
5805 }
5806
5807 [view setFrame: NSMakeRect (0, 0, neww, newh)];
5808 [self windowDidMove:nil]; // Update top/left.
5809 }
5810 }
5811
5812 - (NSSize)windowWillResize: (NSWindow *)sender toSize: (NSSize)frameSize
5813 /* normalize frame to gridded text size */
5814 {
5815 int extra = 0;
5816
5817 NSTRACE (windowWillResize);
5818 NSTRACE_SIZE ("Original size", frameSize);
5819 /*fprintf (stderr,"Window will resize: %.0f x %.0f\n",frameSize.width,frameSize.height); */
5820
5821 if (fs_state == FULLSCREEN_MAXIMIZED
5822 && (maximized_width != (int)frameSize.width
5823 || maximized_height != (int)frameSize.height))
5824 [self setFSValue: FULLSCREEN_NONE];
5825 else if (fs_state == FULLSCREEN_WIDTH
5826 && maximized_width != (int)frameSize.width)
5827 [self setFSValue: FULLSCREEN_NONE];
5828 else if (fs_state == FULLSCREEN_HEIGHT
5829 && maximized_height != (int)frameSize.height)
5830 [self setFSValue: FULLSCREEN_NONE];
5831 if (fs_state == FULLSCREEN_NONE)
5832 maximized_width = maximized_height = -1;
5833
5834 if (! [self isFullscreen])
5835 {
5836 extra = FRAME_NS_TITLEBAR_HEIGHT (emacsframe)
5837 + FRAME_TOOLBAR_HEIGHT (emacsframe);
5838 }
5839
5840 cols = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (emacsframe, frameSize.width);
5841 if (cols < MINWIDTH)
5842 cols = MINWIDTH;
5843
5844 rows = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (emacsframe,
5845 frameSize.height - extra);
5846 if (rows < MINHEIGHT)
5847 rows = MINHEIGHT;
5848 #ifdef NS_IMPL_COCOA
5849 {
5850 /* this sets window title to have size in it; the wm does this under GS */
5851 NSRect r = [[self window] frame];
5852 if (r.size.height == frameSize.height && r.size.width == frameSize.width)
5853 {
5854 if (old_title != 0)
5855 {
5856 xfree (old_title);
5857 old_title = 0;
5858 }
5859 }
5860 else if (fs_state == FULLSCREEN_NONE && ! maximizing_resize)
5861 {
5862 char *size_title;
5863 NSWindow *window = [self window];
5864 if (old_title == 0)
5865 {
5866 char *t = strdup ([[[self window] title] UTF8String]);
5867 char *pos = strstr (t, " — ");
5868 if (pos)
5869 *pos = '\0';
5870 old_title = t;
5871 }
5872 size_title = xmalloc (strlen (old_title) + 40);
5873 esprintf (size_title, "%s — (%d x %d)", old_title, cols, rows);
5874 [window setTitle: [NSString stringWithUTF8String: size_title]];
5875 [window display];
5876 xfree (size_title);
5877 }
5878 }
5879 #endif /* NS_IMPL_COCOA */
5880 /*fprintf (stderr," ...size became %.0f x %.0f (%d x %d)\n",frameSize.width,frameSize.height,cols,rows); */
5881
5882 return frameSize;
5883 }
5884
5885
5886 - (void)windowDidResize: (NSNotification *)notification
5887 {
5888 if (! [self fsIsNative])
5889 {
5890 NSWindow *theWindow = [notification object];
5891 /* We can get notification on the non-FS window when in
5892 fullscreen mode. */
5893 if ([self window] != theWindow) return;
5894 }
5895
5896 #ifdef NS_IMPL_GNUSTEP
5897 NSWindow *theWindow = [notification object];
5898
5899 /* In GNUstep, at least currently, it's possible to get a didResize
5900 without getting a willResize.. therefore we need to act as if we got
5901 the willResize now */
5902 NSSize sz = [theWindow frame].size;
5903 sz = [self windowWillResize: theWindow toSize: sz];
5904 #endif /* NS_IMPL_GNUSTEP */
5905
5906 NSTRACE (windowDidResize);
5907 /*fprintf (stderr,"windowDidResize: %.0f\n",[theWindow frame].size.height); */
5908
5909 if (cols > 0 && rows > 0)
5910 {
5911 [self updateFrameSize: YES];
5912 }
5913
5914 ns_send_appdefined (-1);
5915 }
5916
5917 #ifdef NS_IMPL_COCOA
5918 - (void)viewDidEndLiveResize
5919 {
5920 [super viewDidEndLiveResize];
5921 if (old_title != 0)
5922 {
5923 [[self window] setTitle: [NSString stringWithUTF8String: old_title]];
5924 xfree (old_title);
5925 old_title = 0;
5926 }
5927 maximizing_resize = NO;
5928 }
5929 #endif /* NS_IMPL_COCOA */
5930
5931
5932 - (void)windowDidBecomeKey: (NSNotification *)notification
5933 /* cf. x_detect_focus_change(), x_focus_changed(), x_new_focus_frame() */
5934 {
5935 struct ns_display_info *dpyinfo = FRAME_DISPLAY_INFO (emacsframe);
5936 struct frame *old_focus = dpyinfo->x_focus_frame;
5937
5938 NSTRACE (windowDidBecomeKey);
5939
5940 if (emacsframe != old_focus)
5941 dpyinfo->x_focus_frame = emacsframe;
5942
5943 ns_frame_rehighlight (emacsframe);
5944
5945 if (emacs_event)
5946 {
5947 emacs_event->kind = FOCUS_IN_EVENT;
5948 EV_TRAILER ((id)nil);
5949 }
5950 }
5951
5952
5953 - (void)windowDidResignKey: (NSNotification *)notification
5954 /* cf. x_detect_focus_change(), x_focus_changed(), x_new_focus_frame() */
5955 {
5956 struct ns_display_info *dpyinfo = FRAME_DISPLAY_INFO (emacsframe);
5957 BOOL is_focus_frame = dpyinfo->x_focus_frame == emacsframe;
5958 NSTRACE (windowDidResignKey);
5959
5960 if (is_focus_frame)
5961 dpyinfo->x_focus_frame = 0;
5962
5963 emacsframe->mouse_moved = 0;
5964 ns_frame_rehighlight (emacsframe);
5965
5966 /* FIXME: for some reason needed on second and subsequent clicks away
5967 from sole-frame Emacs to get hollow box to show */
5968 if (!windowClosing && [[self window] isVisible] == YES)
5969 {
5970 x_update_cursor (emacsframe, 1);
5971 x_set_frame_alpha (emacsframe);
5972 }
5973
5974 if (emacs_event && is_focus_frame)
5975 {
5976 [self deleteWorkingText];
5977 emacs_event->kind = FOCUS_OUT_EVENT;
5978 EV_TRAILER ((id)nil);
5979 }
5980 }
5981
5982
5983 - (void)windowWillMiniaturize: sender
5984 {
5985 NSTRACE (windowWillMiniaturize);
5986 }
5987
5988
5989 - (BOOL)isFlipped
5990 {
5991 return YES;
5992 }
5993
5994
5995 - (BOOL)isOpaque
5996 {
5997 return NO;
5998 }
5999
6000
6001 - initFrameFromEmacs: (struct frame *)f
6002 {
6003 NSRect r, wr;
6004 Lisp_Object tem;
6005 NSWindow *win;
6006 NSSize sz;
6007 NSColor *col;
6008 NSString *name;
6009
6010 NSTRACE (initFrameFromEmacs);
6011
6012 windowClosing = NO;
6013 processingCompose = NO;
6014 scrollbarsNeedingUpdate = 0;
6015 fs_state = FULLSCREEN_NONE;
6016 fs_before_fs = next_maximized = -1;
6017 #ifdef HAVE_NATIVE_FS
6018 fs_is_native = ns_use_native_fullscreen;
6019 #else
6020 fs_is_native = NO;
6021 #endif
6022 maximized_width = maximized_height = -1;
6023 nonfs_window = nil;
6024
6025 /*fprintf (stderr,"init with %d, %d\n",f->text_cols, f->text_lines); */
6026
6027 ns_userRect = NSMakeRect (0, 0, 0, 0);
6028 r = NSMakeRect (0, 0, FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, f->text_cols),
6029 FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, f->text_lines));
6030 [self initWithFrame: r];
6031 [self setAutoresizingMask: NSViewWidthSizable | NSViewHeightSizable];
6032
6033 FRAME_NS_VIEW (f) = self;
6034 emacsframe = f;
6035 #ifdef NS_IMPL_COCOA
6036 old_title = 0;
6037 maximizing_resize = NO;
6038 #endif
6039
6040 win = [[EmacsWindow alloc]
6041 initWithContentRect: r
6042 styleMask: (NSResizableWindowMask |
6043 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_7
6044 NSTitledWindowMask |
6045 #endif
6046 NSMiniaturizableWindowMask |
6047 NSClosableWindowMask)
6048 backing: NSBackingStoreBuffered
6049 defer: YES];
6050
6051 #ifdef HAVE_NATIVE_FS
6052 [win setCollectionBehavior:NSWindowCollectionBehaviorFullScreenPrimary];
6053 #endif
6054
6055 wr = [win frame];
6056 bwidth = f->border_width = wr.size.width - r.size.width;
6057 tibar_height = FRAME_NS_TITLEBAR_HEIGHT (f) = wr.size.height - r.size.height;
6058
6059 [win setAcceptsMouseMovedEvents: YES];
6060 [win setDelegate: self];
6061 [win useOptimizedDrawing: YES];
6062
6063 sz.width = FRAME_COLUMN_WIDTH (f);
6064 sz.height = FRAME_LINE_HEIGHT (f);
6065 [win setResizeIncrements: sz];
6066
6067 [[win contentView] addSubview: self];
6068
6069 if (ns_drag_types)
6070 [self registerForDraggedTypes: ns_drag_types];
6071
6072 tem = f->name;
6073 name = [NSString stringWithUTF8String:
6074 NILP (tem) ? "Emacs" : SSDATA (tem)];
6075 [win setTitle: name];
6076
6077 /* toolbar support */
6078 toolbar = [[EmacsToolbar alloc] initForView: self withIdentifier:
6079 [NSString stringWithFormat: @"Emacs Frame %d",
6080 ns_window_num]];
6081 [win setToolbar: toolbar];
6082 [toolbar setVisible: NO];
6083
6084 /* Don't set frame garbaged until tool bar is up to date?
6085 This avoids an extra clear and redraw (flicker) at frame creation. */
6086 if (FRAME_EXTERNAL_TOOL_BAR (f)) wait_for_tool_bar = YES;
6087 else wait_for_tool_bar = NO;
6088
6089
6090 #ifdef NS_IMPL_COCOA
6091 {
6092 NSButton *toggleButton;
6093 toggleButton = [win standardWindowButton: NSWindowToolbarButton];
6094 [toggleButton setTarget: self];
6095 [toggleButton setAction: @selector (toggleToolbar: )];
6096 }
6097 #endif
6098 FRAME_TOOLBAR_HEIGHT (f) = 0;
6099
6100 tem = f->icon_name;
6101 if (!NILP (tem))
6102 [win setMiniwindowTitle:
6103 [NSString stringWithUTF8String: SSDATA (tem)]];
6104
6105 {
6106 NSScreen *screen = [win screen];
6107
6108 if (screen != 0)
6109 [win setFrameTopLeftPoint: NSMakePoint
6110 (IN_BOUND (-SCREENMAX, f->left_pos, SCREENMAX),
6111 IN_BOUND (-SCREENMAX,
6112 [screen frame].size.height - NS_TOP_POS (f), SCREENMAX))];
6113 }
6114
6115 [win makeFirstResponder: self];
6116
6117 col = ns_lookup_indexed_color (NS_FACE_BACKGROUND
6118 (FRAME_DEFAULT_FACE (emacsframe)), emacsframe);
6119 [win setBackgroundColor: col];
6120 if ([col alphaComponent] != (EmacsCGFloat) 1.0)
6121 [win setOpaque: NO];
6122
6123 [self allocateGState];
6124
6125 [NSApp registerServicesMenuSendTypes: ns_send_types
6126 returnTypes: nil];
6127
6128 ns_window_num++;
6129 return self;
6130 }
6131
6132
6133 - (void)windowDidMove: sender
6134 {
6135 NSWindow *win = [self window];
6136 NSRect r = [win frame];
6137 NSArray *screens = [NSScreen screens];
6138 NSScreen *screen = [screens objectAtIndex: 0];
6139
6140 NSTRACE (windowDidMove);
6141
6142 if (!emacsframe->output_data.ns)
6143 return;
6144 if (screen != nil)
6145 {
6146 emacsframe->left_pos = r.origin.x;
6147 emacsframe->top_pos =
6148 [screen frame].size.height - (r.origin.y + r.size.height);
6149 }
6150 }
6151
6152
6153 /* Called AFTER method below, but before our windowWillResize call there leads
6154 to windowDidResize -> x_set_window_size. Update emacs' notion of frame
6155 location so set_window_size moves the frame. */
6156 - (BOOL)windowShouldZoom: (NSWindow *)sender toFrame: (NSRect)newFrame
6157 {
6158 emacsframe->output_data.ns->zooming = 1;
6159 return YES;
6160 }
6161
6162
6163 /* Override to do something slightly nonstandard, but nice. First click on
6164 zoom button will zoom vertically. Second will zoom completely. Third
6165 returns to original. */
6166 - (NSRect)windowWillUseStandardFrame:(NSWindow *)sender
6167 defaultFrame:(NSRect)defaultFrame
6168 {
6169 NSRect result = [sender frame];
6170
6171 NSTRACE (windowWillUseStandardFrame);
6172
6173 if (fs_before_fs != -1) /* Entering fullscreen */
6174 {
6175 result = defaultFrame;
6176 }
6177 else if (next_maximized == FULLSCREEN_HEIGHT
6178 || (next_maximized == -1
6179 && abs (defaultFrame.size.height - result.size.height)
6180 > FRAME_LINE_HEIGHT (emacsframe)))
6181 {
6182 /* first click */
6183 ns_userRect = result;
6184 maximized_height = result.size.height = defaultFrame.size.height;
6185 maximized_width = -1;
6186 result.origin.y = defaultFrame.origin.y;
6187 [self setFSValue: FULLSCREEN_HEIGHT];
6188 #ifdef NS_IMPL_COCOA
6189 maximizing_resize = YES;
6190 #endif
6191 }
6192 else if (next_maximized == FULLSCREEN_WIDTH)
6193 {
6194 ns_userRect = result;
6195 maximized_width = result.size.width = defaultFrame.size.width;
6196 maximized_height = -1;
6197 result.origin.x = defaultFrame.origin.x;
6198 [self setFSValue: FULLSCREEN_WIDTH];
6199 }
6200 else if (next_maximized == FULLSCREEN_MAXIMIZED
6201 || (next_maximized == -1
6202 && abs (defaultFrame.size.width - result.size.width)
6203 > FRAME_COLUMN_WIDTH (emacsframe)))
6204 {
6205 result = defaultFrame; /* second click */
6206 maximized_width = result.size.width;
6207 maximized_height = result.size.height;
6208 [self setFSValue: FULLSCREEN_MAXIMIZED];
6209 #ifdef NS_IMPL_COCOA
6210 maximizing_resize = YES;
6211 #endif
6212 }
6213 else
6214 {
6215 /* restore */
6216 result = ns_userRect.size.height ? ns_userRect : result;
6217 ns_userRect = NSMakeRect (0, 0, 0, 0);
6218 #ifdef NS_IMPL_COCOA
6219 maximizing_resize = fs_state != FULLSCREEN_NONE;
6220 #endif
6221 [self setFSValue: FULLSCREEN_NONE];
6222 maximized_width = maximized_height = -1;
6223 }
6224
6225 if (fs_before_fs == -1) next_maximized = -1;
6226 [self windowWillResize: sender toSize: result.size];
6227 return result;
6228 }
6229
6230
6231 - (void)windowDidDeminiaturize: sender
6232 {
6233 NSTRACE (windowDidDeminiaturize);
6234 if (!emacsframe->output_data.ns)
6235 return;
6236
6237 SET_FRAME_ICONIFIED (emacsframe, 0);
6238 SET_FRAME_VISIBLE (emacsframe, 1);
6239 windows_or_buffers_changed = 63;
6240
6241 if (emacs_event)
6242 {
6243 emacs_event->kind = DEICONIFY_EVENT;
6244 EV_TRAILER ((id)nil);
6245 }
6246 }
6247
6248
6249 - (void)windowDidExpose: sender
6250 {
6251 NSTRACE (windowDidExpose);
6252 if (!emacsframe->output_data.ns)
6253 return;
6254
6255 SET_FRAME_VISIBLE (emacsframe, 1);
6256 SET_FRAME_GARBAGED (emacsframe);
6257
6258 if (send_appdefined)
6259 ns_send_appdefined (-1);
6260 }
6261
6262
6263 - (void)windowDidMiniaturize: sender
6264 {
6265 NSTRACE (windowDidMiniaturize);
6266 if (!emacsframe->output_data.ns)
6267 return;
6268
6269 SET_FRAME_ICONIFIED (emacsframe, 1);
6270 SET_FRAME_VISIBLE (emacsframe, 0);
6271
6272 if (emacs_event)
6273 {
6274 emacs_event->kind = ICONIFY_EVENT;
6275 EV_TRAILER ((id)nil);
6276 }
6277 }
6278
6279 #ifdef HAVE_NATIVE_FS
6280 - (NSApplicationPresentationOptions)window:(NSWindow *)window
6281 willUseFullScreenPresentationOptions:
6282 (NSApplicationPresentationOptions)proposedOptions
6283 {
6284 return proposedOptions|NSApplicationPresentationAutoHideToolbar;
6285 }
6286 #endif
6287
6288 - (void)windowWillEnterFullScreen:(NSNotification *)notification
6289 {
6290 fs_before_fs = fs_state;
6291 }
6292
6293 - (void)windowDidEnterFullScreen:(NSNotification *)notification
6294 {
6295 [self setFSValue: FULLSCREEN_BOTH];
6296 if (! [self fsIsNative])
6297 {
6298 [self windowDidBecomeKey:notification];
6299 [nonfs_window orderOut:self];
6300 }
6301 else
6302 {
6303 BOOL tbar_visible = FRAME_EXTERNAL_TOOL_BAR (emacsframe) ? YES : NO;
6304 #ifdef NS_IMPL_COCOA
6305 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_7
6306 unsigned val = (unsigned)[NSApp presentationOptions];
6307
6308 // OSX 10.7 bug fix, the menu won't appear without this.
6309 // val is non-zero on other OSX versions.
6310 if (val == 0)
6311 {
6312 NSApplicationPresentationOptions options
6313 = NSApplicationPresentationAutoHideDock
6314 | NSApplicationPresentationAutoHideMenuBar
6315 | NSApplicationPresentationFullScreen
6316 | NSApplicationPresentationAutoHideToolbar;
6317
6318 [NSApp setPresentationOptions: options];
6319 }
6320 #endif
6321 #endif
6322 [toolbar setVisible:tbar_visible];
6323 }
6324 }
6325
6326 - (void)windowWillExitFullScreen:(NSNotification *)notification
6327 {
6328 if (next_maximized != -1)
6329 fs_before_fs = next_maximized;
6330 }
6331
6332 - (void)windowDidExitFullScreen:(NSNotification *)notification
6333 {
6334 [self setFSValue: fs_before_fs];
6335 fs_before_fs = -1;
6336 #ifdef HAVE_NATIVE_FS
6337 [self updateCollectionBehavior];
6338 #endif
6339 if (FRAME_EXTERNAL_TOOL_BAR (emacsframe))
6340 {
6341 [toolbar setVisible:YES];
6342 update_frame_tool_bar (emacsframe);
6343 [self updateFrameSize:YES];
6344 [[self window] display];
6345 }
6346 else
6347 [toolbar setVisible:NO];
6348
6349 if (next_maximized != -1)
6350 [[self window] performZoom:self];
6351 }
6352
6353 - (BOOL)fsIsNative
6354 {
6355 return fs_is_native;
6356 }
6357
6358 - (BOOL)isFullscreen
6359 {
6360 if (! fs_is_native) return nonfs_window != nil;
6361 #ifdef HAVE_NATIVE_FS
6362 return ([[self window] styleMask] & NSFullScreenWindowMask) != 0;
6363 #else
6364 return NO;
6365 #endif
6366 }
6367
6368 #ifdef HAVE_NATIVE_FS
6369 - (void)updateCollectionBehavior
6370 {
6371 if (! [self isFullscreen])
6372 {
6373 NSWindow *win = [self window];
6374 NSWindowCollectionBehavior b = [win collectionBehavior];
6375 if (ns_use_native_fullscreen)
6376 b |= NSWindowCollectionBehaviorFullScreenPrimary;
6377 else
6378 b &= ~NSWindowCollectionBehaviorFullScreenPrimary;
6379
6380 [win setCollectionBehavior: b];
6381 fs_is_native = ns_use_native_fullscreen;
6382 }
6383 }
6384 #endif
6385
6386 - (void)toggleFullScreen: (id)sender
6387 {
6388 NSWindow *w, *fw;
6389 BOOL onFirstScreen;
6390 struct frame *f;
6391 NSSize sz;
6392 NSRect r, wr;
6393 NSColor *col;
6394
6395 if (fs_is_native)
6396 {
6397 #ifdef HAVE_NATIVE_FS
6398 [[self window] toggleFullScreen:sender];
6399 #endif
6400 return;
6401 }
6402
6403 w = [self window];
6404 onFirstScreen = [[w screen] isEqual:[[NSScreen screens] objectAtIndex:0]];
6405 f = emacsframe;
6406 wr = [w frame];
6407 col = ns_lookup_indexed_color (NS_FACE_BACKGROUND
6408 (FRAME_DEFAULT_FACE (f)),
6409 f);
6410
6411 sz.width = FRAME_COLUMN_WIDTH (f);
6412 sz.height = FRAME_LINE_HEIGHT (f);
6413
6414 if (fs_state != FULLSCREEN_BOTH)
6415 {
6416 NSScreen *screen = [w screen];
6417
6418 #if defined (NS_IMPL_COCOA) && \
6419 MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_9
6420 /* Hide ghost menu bar on secondary monitor? */
6421 if (! onFirstScreen)
6422 onFirstScreen = [NSScreen screensHaveSeparateSpaces];
6423 #endif
6424 /* Hide dock and menubar if we are on the primary screen. */
6425 if (onFirstScreen)
6426 {
6427 #if defined (NS_IMPL_COCOA) && \
6428 MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
6429 NSApplicationPresentationOptions options
6430 = NSApplicationPresentationAutoHideDock
6431 | NSApplicationPresentationAutoHideMenuBar;
6432
6433 [NSApp setPresentationOptions: options];
6434 #else
6435 [NSMenu setMenuBarVisible:NO];
6436 #endif
6437 }
6438
6439 fw = [[EmacsFSWindow alloc]
6440 initWithContentRect:[w contentRectForFrameRect:wr]
6441 styleMask:NSBorderlessWindowMask
6442 backing:NSBackingStoreBuffered
6443 defer:YES
6444 screen:screen];
6445
6446 [fw setContentView:[w contentView]];
6447 [fw setTitle:[w title]];
6448 [fw setDelegate:self];
6449 [fw setAcceptsMouseMovedEvents: YES];
6450 [fw useOptimizedDrawing: YES];
6451 [fw setResizeIncrements: sz];
6452 [fw setBackgroundColor: col];
6453 if ([col alphaComponent] != (EmacsCGFloat) 1.0)
6454 [fw setOpaque: NO];
6455
6456 f->border_width = 0;
6457 FRAME_NS_TITLEBAR_HEIGHT (f) = 0;
6458 tobar_height = FRAME_TOOLBAR_HEIGHT (f);
6459 FRAME_TOOLBAR_HEIGHT (f) = 0;
6460
6461 nonfs_window = w;
6462
6463 [self windowWillEnterFullScreen:nil];
6464 [fw makeKeyAndOrderFront:NSApp];
6465 [fw makeFirstResponder:self];
6466 [w orderOut:self];
6467 r = [fw frameRectForContentRect:[screen frame]];
6468 [fw setFrame: r display:YES animate:YES];
6469 [self windowDidEnterFullScreen:nil];
6470 [fw display];
6471 }
6472 else
6473 {
6474 fw = w;
6475 w = nonfs_window;
6476 nonfs_window = nil;
6477
6478 if (onFirstScreen)
6479 {
6480 #if defined (NS_IMPL_COCOA) && \
6481 MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
6482 [NSApp setPresentationOptions: NSApplicationPresentationDefault];
6483 #else
6484 [NSMenu setMenuBarVisible:YES];
6485 #endif
6486 }
6487
6488 [w setContentView:[fw contentView]];
6489 [w setResizeIncrements: sz];
6490 [w setBackgroundColor: col];
6491 if ([col alphaComponent] != (EmacsCGFloat) 1.0)
6492 [w setOpaque: NO];
6493
6494 f->border_width = bwidth;
6495 FRAME_NS_TITLEBAR_HEIGHT (f) = tibar_height;
6496 if (FRAME_EXTERNAL_TOOL_BAR (f))
6497 FRAME_TOOLBAR_HEIGHT (f) = tobar_height;
6498
6499 [self windowWillExitFullScreen:nil];
6500 [fw setFrame: [w frame] display:YES animate:YES];
6501 [fw close];
6502 [w makeKeyAndOrderFront:NSApp];
6503 [self windowDidExitFullScreen:nil];
6504 [self updateFrameSize:YES];
6505 }
6506 }
6507
6508 - (void)handleFS
6509 {
6510 if (fs_state != emacsframe->want_fullscreen)
6511 {
6512 if (fs_state == FULLSCREEN_BOTH)
6513 {
6514 [self toggleFullScreen:self];
6515 }
6516
6517 switch (emacsframe->want_fullscreen)
6518 {
6519 case FULLSCREEN_BOTH:
6520 [self toggleFullScreen:self];
6521 break;
6522 case FULLSCREEN_WIDTH:
6523 next_maximized = FULLSCREEN_WIDTH;
6524 if (fs_state != FULLSCREEN_BOTH)
6525 [[self window] performZoom:self];
6526 break;
6527 case FULLSCREEN_HEIGHT:
6528 next_maximized = FULLSCREEN_HEIGHT;
6529 if (fs_state != FULLSCREEN_BOTH)
6530 [[self window] performZoom:self];
6531 break;
6532 case FULLSCREEN_MAXIMIZED:
6533 next_maximized = FULLSCREEN_MAXIMIZED;
6534 if (fs_state != FULLSCREEN_BOTH)
6535 [[self window] performZoom:self];
6536 break;
6537 case FULLSCREEN_NONE:
6538 if (fs_state != FULLSCREEN_BOTH)
6539 {
6540 next_maximized = FULLSCREEN_NONE;
6541 [[self window] performZoom:self];
6542 }
6543 break;
6544 }
6545
6546 emacsframe->want_fullscreen = FULLSCREEN_NONE;
6547 }
6548
6549 }
6550
6551 - (void) setFSValue: (int)value
6552 {
6553 Lisp_Object lval = Qnil;
6554 switch (value)
6555 {
6556 case FULLSCREEN_BOTH:
6557 lval = Qfullboth;
6558 break;
6559 case FULLSCREEN_WIDTH:
6560 lval = Qfullwidth;
6561 break;
6562 case FULLSCREEN_HEIGHT:
6563 lval = Qfullheight;
6564 break;
6565 case FULLSCREEN_MAXIMIZED:
6566 lval = Qmaximized;
6567 break;
6568 }
6569 store_frame_param (emacsframe, Qfullscreen, lval);
6570 fs_state = value;
6571 }
6572
6573 - (void)mouseEntered: (NSEvent *)theEvent
6574 {
6575 NSTRACE (mouseEntered);
6576 if (emacsframe)
6577 FRAME_DISPLAY_INFO (emacsframe)->last_mouse_movement_time
6578 = EV_TIMESTAMP (theEvent);
6579 }
6580
6581
6582 - (void)mouseExited: (NSEvent *)theEvent
6583 {
6584 Mouse_HLInfo *hlinfo = emacsframe ? MOUSE_HL_INFO (emacsframe) : NULL;
6585
6586 NSTRACE (mouseExited);
6587
6588 if (!hlinfo)
6589 return;
6590
6591 FRAME_DISPLAY_INFO (emacsframe)->last_mouse_movement_time
6592 = EV_TIMESTAMP (theEvent);
6593
6594 if (emacsframe == hlinfo->mouse_face_mouse_frame)
6595 {
6596 clear_mouse_face (hlinfo);
6597 hlinfo->mouse_face_mouse_frame = 0;
6598 }
6599 }
6600
6601
6602 - menuDown: sender
6603 {
6604 NSTRACE (menuDown);
6605 if (context_menu_value == -1)
6606 context_menu_value = [sender tag];
6607 else
6608 {
6609 NSInteger tag = [sender tag];
6610 find_and_call_menu_selection (emacsframe, emacsframe->menu_bar_items_used,
6611 emacsframe->menu_bar_vector,
6612 (void *)tag);
6613 }
6614
6615 ns_send_appdefined (-1);
6616 return self;
6617 }
6618
6619
6620 - (EmacsToolbar *)toolbar
6621 {
6622 return toolbar;
6623 }
6624
6625
6626 /* this gets called on toolbar button click */
6627 - toolbarClicked: (id)item
6628 {
6629 NSEvent *theEvent;
6630 int idx = [item tag] * TOOL_BAR_ITEM_NSLOTS;
6631
6632 NSTRACE (toolbarClicked);
6633
6634 if (!emacs_event)
6635 return self;
6636
6637 /* send first event (for some reason two needed) */
6638 theEvent = [[self window] currentEvent];
6639 emacs_event->kind = TOOL_BAR_EVENT;
6640 XSETFRAME (emacs_event->arg, emacsframe);
6641 EV_TRAILER (theEvent);
6642
6643 emacs_event->kind = TOOL_BAR_EVENT;
6644 /* XSETINT (emacs_event->code, 0); */
6645 emacs_event->arg = AREF (emacsframe->tool_bar_items,
6646 idx + TOOL_BAR_ITEM_KEY);
6647 emacs_event->modifiers = EV_MODIFIERS (theEvent);
6648 EV_TRAILER (theEvent);
6649 return self;
6650 }
6651
6652
6653 - toggleToolbar: (id)sender
6654 {
6655 if (!emacs_event)
6656 return self;
6657
6658 emacs_event->kind = NS_NONKEY_EVENT;
6659 emacs_event->code = KEY_NS_TOGGLE_TOOLBAR;
6660 EV_TRAILER ((id)nil);
6661 return self;
6662 }
6663
6664
6665 - (void)drawRect: (NSRect)rect
6666 {
6667 int x = NSMinX (rect), y = NSMinY (rect);
6668 int width = NSWidth (rect), height = NSHeight (rect);
6669
6670 NSTRACE (drawRect);
6671
6672 if (!emacsframe || !emacsframe->output_data.ns)
6673 return;
6674
6675 ns_clear_frame_area (emacsframe, x, y, width, height);
6676 expose_frame (emacsframe, x, y, width, height);
6677
6678 /*
6679 drawRect: may be called (at least in OS X 10.5) for invisible
6680 views as well for some reason. Thus, do not infer visibility
6681 here.
6682
6683 emacsframe->async_visible = 1;
6684 emacsframe->async_iconified = 0;
6685 */
6686 }
6687
6688
6689 /* NSDraggingDestination protocol methods. Actually this is not really a
6690 protocol, but a category of Object. O well... */
6691
6692 -(NSUInteger) draggingEntered: (id <NSDraggingInfo>) sender
6693 {
6694 NSTRACE (draggingEntered);
6695 return NSDragOperationGeneric;
6696 }
6697
6698
6699 -(BOOL)prepareForDragOperation: (id <NSDraggingInfo>) sender
6700 {
6701 return YES;
6702 }
6703
6704
6705 -(BOOL)performDragOperation: (id <NSDraggingInfo>) sender
6706 {
6707 id pb;
6708 int x, y;
6709 NSString *type;
6710 NSEvent *theEvent = [[self window] currentEvent];
6711 NSPoint position;
6712 NSDragOperation op = [sender draggingSourceOperationMask];
6713 int modifiers = 0;
6714
6715 NSTRACE (performDragOperation);
6716
6717 if (!emacs_event)
6718 return NO;
6719
6720 position = [self convertPoint: [sender draggingLocation] fromView: nil];
6721 x = lrint (position.x); y = lrint (position.y);
6722
6723 pb = [sender draggingPasteboard];
6724 type = [pb availableTypeFromArray: ns_drag_types];
6725
6726 if (! (op & (NSDragOperationMove|NSDragOperationDelete)) &&
6727 // URL drags contain all operations (0xf), don't allow all to be set.
6728 (op & 0xf) != 0xf)
6729 {
6730 if (op & NSDragOperationLink)
6731 modifiers |= NSControlKeyMask;
6732 if (op & NSDragOperationCopy)
6733 modifiers |= NSAlternateKeyMask;
6734 if (op & NSDragOperationGeneric)
6735 modifiers |= NSCommandKeyMask;
6736 }
6737
6738 modifiers = EV_MODIFIERS2 (modifiers);
6739 if (type == 0)
6740 {
6741 return NO;
6742 }
6743 else if ([type isEqualToString: NSFilenamesPboardType])
6744 {
6745 NSArray *files;
6746 NSEnumerator *fenum;
6747 NSString *file;
6748
6749 if (!(files = [pb propertyListForType: type]))
6750 return NO;
6751
6752 fenum = [files objectEnumerator];
6753 while ( (file = [fenum nextObject]) )
6754 {
6755 emacs_event->kind = DRAG_N_DROP_EVENT;
6756 XSETINT (emacs_event->x, x);
6757 XSETINT (emacs_event->y, y);
6758 ns_input_file = append2 (ns_input_file,
6759 build_string ([file UTF8String]));
6760 emacs_event->modifiers = modifiers;
6761 emacs_event->arg = list2 (Qfile, build_string ([file UTF8String]));
6762 EV_TRAILER (theEvent);
6763 }
6764 return YES;
6765 }
6766 else if ([type isEqualToString: NSURLPboardType])
6767 {
6768 NSURL *url = [NSURL URLFromPasteboard: pb];
6769 if (url == nil) return NO;
6770
6771 emacs_event->kind = DRAG_N_DROP_EVENT;
6772 XSETINT (emacs_event->x, x);
6773 XSETINT (emacs_event->y, y);
6774 emacs_event->modifiers = modifiers;
6775 emacs_event->arg = list2 (Qurl,
6776 build_string ([[url absoluteString]
6777 UTF8String]));
6778 EV_TRAILER (theEvent);
6779
6780 if ([url isFileURL] != NO)
6781 {
6782 NSString *file = [url path];
6783 ns_input_file = append2 (ns_input_file,
6784 build_string ([file UTF8String]));
6785 }
6786 return YES;
6787 }
6788 else if ([type isEqualToString: NSStringPboardType]
6789 || [type isEqualToString: NSTabularTextPboardType])
6790 {
6791 NSString *data;
6792
6793 if (! (data = [pb stringForType: type]))
6794 return NO;
6795
6796 emacs_event->kind = DRAG_N_DROP_EVENT;
6797 XSETINT (emacs_event->x, x);
6798 XSETINT (emacs_event->y, y);
6799 emacs_event->modifiers = modifiers;
6800 emacs_event->arg = list2 (Qnil, build_string ([data UTF8String]));
6801 EV_TRAILER (theEvent);
6802 return YES;
6803 }
6804 else
6805 {
6806 error ("Invalid data type in dragging pasteboard");
6807 return NO;
6808 }
6809 }
6810
6811
6812 - (id) validRequestorForSendType: (NSString *)typeSent
6813 returnType: (NSString *)typeReturned
6814 {
6815 NSTRACE (validRequestorForSendType);
6816 if (typeSent != nil && [ns_send_types indexOfObject: typeSent] != NSNotFound
6817 && typeReturned == nil)
6818 {
6819 if (! NILP (ns_get_local_selection (QPRIMARY, QUTF8_STRING)))
6820 return self;
6821 }
6822
6823 return [super validRequestorForSendType: typeSent
6824 returnType: typeReturned];
6825 }
6826
6827
6828 /* The next two methods are part of NSServicesRequests informal protocol,
6829 supposedly called when a services menu item is chosen from this app.
6830 But this should not happen because we override the services menu with our
6831 own entries which call ns-perform-service.
6832 Nonetheless, it appeared to happen (under strange circumstances): bug#1435.
6833 So let's at least stub them out until further investigation can be done. */
6834
6835 - (BOOL) readSelectionFromPasteboard: (NSPasteboard *)pb
6836 {
6837 /* we could call ns_string_from_pasteboard(pboard) here but then it should
6838 be written into the buffer in place of the existing selection..
6839 ordinary service calls go through functions defined in ns-win.el */
6840 return NO;
6841 }
6842
6843 - (BOOL) writeSelectionToPasteboard: (NSPasteboard *)pb types: (NSArray *)types
6844 {
6845 NSArray *typesDeclared;
6846 Lisp_Object val;
6847
6848 /* We only support NSStringPboardType */
6849 if ([types containsObject:NSStringPboardType] == NO) {
6850 return NO;
6851 }
6852
6853 val = ns_get_local_selection (QPRIMARY, QUTF8_STRING);
6854 if (CONSP (val) && SYMBOLP (XCAR (val)))
6855 {
6856 val = XCDR (val);
6857 if (CONSP (val) && NILP (XCDR (val)))
6858 val = XCAR (val);
6859 }
6860 if (! STRINGP (val))
6861 return NO;
6862
6863 typesDeclared = [NSArray arrayWithObject:NSStringPboardType];
6864 [pb declareTypes:typesDeclared owner:nil];
6865 ns_string_to_pasteboard (pb, val);
6866 return YES;
6867 }
6868
6869
6870 /* setMini =YES means set from internal (gives a finder icon), NO means set nil
6871 (gives a miniaturized version of the window); currently we use the latter for
6872 frames whose active buffer doesn't correspond to any file
6873 (e.g., '*scratch*') */
6874 - setMiniwindowImage: (BOOL) setMini
6875 {
6876 id image = [[self window] miniwindowImage];
6877 NSTRACE (setMiniwindowImage);
6878
6879 /* NOTE: under Cocoa miniwindowImage always returns nil, documentation
6880 about "AppleDockIconEnabled" notwithstanding, however the set message
6881 below has its effect nonetheless. */
6882 if (image != emacsframe->output_data.ns->miniimage)
6883 {
6884 if (image && [image isKindOfClass: [EmacsImage class]])
6885 [image release];
6886 [[self window] setMiniwindowImage:
6887 setMini ? emacsframe->output_data.ns->miniimage : nil];
6888 }
6889
6890 return self;
6891 }
6892
6893
6894 - (void) setRows: (int) r andColumns: (int) c
6895 {
6896 rows = r;
6897 cols = c;
6898 }
6899
6900 @end /* EmacsView */
6901
6902
6903
6904 /* ==========================================================================
6905
6906 EmacsWindow implementation
6907
6908 ========================================================================== */
6909
6910 @implementation EmacsWindow
6911
6912 #ifdef NS_IMPL_COCOA
6913 - (id)accessibilityAttributeValue:(NSString *)attribute
6914 {
6915 Lisp_Object str = Qnil;
6916 struct frame *f = SELECTED_FRAME ();
6917 struct buffer *curbuf = XBUFFER (XWINDOW (f->selected_window)->contents);
6918
6919 if ([attribute isEqualToString:NSAccessibilityRoleAttribute])
6920 return NSAccessibilityTextFieldRole;
6921
6922 if ([attribute isEqualToString:NSAccessibilitySelectedTextAttribute]
6923 && curbuf && ! NILP (BVAR (curbuf, mark_active)))
6924 {
6925 str = ns_get_local_selection (QPRIMARY, QUTF8_STRING);
6926 }
6927 else if (curbuf && [attribute isEqualToString:NSAccessibilityValueAttribute])
6928 {
6929 if (! NILP (BVAR (curbuf, mark_active)))
6930 str = ns_get_local_selection (QPRIMARY, QUTF8_STRING);
6931
6932 if (NILP (str))
6933 {
6934 ptrdiff_t start_byte = BUF_BEGV_BYTE (curbuf);
6935 ptrdiff_t byte_range = BUF_ZV_BYTE (curbuf) - start_byte;
6936 ptrdiff_t range = BUF_ZV (curbuf) - BUF_BEGV (curbuf);
6937
6938 if (! NILP (BVAR (curbuf, enable_multibyte_characters)))
6939 str = make_uninit_multibyte_string (range, byte_range);
6940 else
6941 str = make_uninit_string (range);
6942 /* To check: This returns emacs-utf-8, which is a superset of utf-8.
6943 Is this a problem? */
6944 memcpy (SDATA (str), BYTE_POS_ADDR (start_byte), byte_range);
6945 }
6946 }
6947
6948
6949 if (! NILP (str))
6950 {
6951 if (CONSP (str) && SYMBOLP (XCAR (str)))
6952 {
6953 str = XCDR (str);
6954 if (CONSP (str) && NILP (XCDR (str)))
6955 str = XCAR (str);
6956 }
6957 if (STRINGP (str))
6958 {
6959 const char *utfStr = SSDATA (str);
6960 NSString *nsStr = [NSString stringWithUTF8String: utfStr];
6961 return nsStr;
6962 }
6963 }
6964
6965 return [super accessibilityAttributeValue:attribute];
6966 }
6967 #endif /* NS_IMPL_COCOA */
6968
6969 /* If we have multiple monitors, one above the other, we don't want to
6970 restrict the height to just one monitor. So we override this. */
6971 - (NSRect)constrainFrameRect:(NSRect)frameRect toScreen:(NSScreen *)screen
6972 {
6973 /* When making the frame visible for the first time or if there is just
6974 one screen, we want to constrain. Other times not. */
6975 NSArray *screens = [NSScreen screens];
6976 NSUInteger nr_screens = [screens count], nr_eff_screens = 0, i;
6977 struct frame *f = ((EmacsView *)[self delegate])->emacsframe;
6978 NSTRACE (constrainFrameRect);
6979 NSTRACE_RECT ("input", frameRect);
6980
6981 if (ns_menu_bar_should_be_hidden ())
6982 return frameRect;
6983
6984 if (nr_screens == 1)
6985 return [super constrainFrameRect:frameRect toScreen:screen];
6986
6987 #ifdef NS_IMPL_COCOA
6988 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_9
6989 // If separate spaces is on, it is like each screen is independent. There is
6990 // no spanning of frames across screens.
6991 if ([NSScreen screensHaveSeparateSpaces])
6992 return [super constrainFrameRect:frameRect toScreen:screen];
6993 #endif
6994 #endif
6995
6996 for (i = 0; i < nr_screens; ++i)
6997 {
6998 NSScreen *s = [screens objectAtIndex: i];
6999 NSRect scrrect = [s frame];
7000 NSRect intersect = NSIntersectionRect (frameRect, scrrect);
7001
7002 if (intersect.size.width > 0 || intersect.size.height > 0)
7003 ++nr_eff_screens;
7004 }
7005
7006 if (nr_eff_screens == 1)
7007 return [super constrainFrameRect:frameRect toScreen:screen];
7008
7009 /* The default implementation does two things 1) ensure that the top
7010 of the rectangle is below the menu bar (or below the top of the
7011 screen) and 2) resizes windows larger than the screen. As we
7012 don't want the latter, a smaller rectangle is used. */
7013 #define FAKE_HEIGHT 64
7014 float old_top = frameRect.origin.y + frameRect.size.height;
7015 NSRect r;
7016 r.size.height = FAKE_HEIGHT;
7017 r.size.width = frameRect.size.width;
7018 r.origin.x = frameRect.origin.x;
7019 r.origin.y = old_top - FAKE_HEIGHT;
7020
7021 NSTRACE_RECT ("input to super", r);
7022
7023 r = [super constrainFrameRect:r toScreen:screen];
7024
7025 NSTRACE_RECT ("output from super", r);
7026
7027 float new_top = r.origin.y + FAKE_HEIGHT;
7028 if (new_top < old_top)
7029 {
7030 frameRect.origin.y = new_top - frameRect.size.height;
7031 }
7032
7033 NSTRACE_RECT ("output", frameRect);
7034
7035 return frameRect;
7036 #undef FAKE_HEIGHT
7037 }
7038
7039 @end /* EmacsWindow */
7040
7041
7042 @implementation EmacsFSWindow
7043
7044 - (BOOL)canBecomeKeyWindow
7045 {
7046 return YES;
7047 }
7048
7049 - (BOOL)canBecomeMainWindow
7050 {
7051 return YES;
7052 }
7053
7054 @end
7055
7056 /* ==========================================================================
7057
7058 EmacsScroller implementation
7059
7060 ========================================================================== */
7061
7062
7063 @implementation EmacsScroller
7064
7065 /* for repeat button push */
7066 #define SCROLL_BAR_FIRST_DELAY 0.5
7067 #define SCROLL_BAR_CONTINUOUS_DELAY (1.0 / 15)
7068
7069 + (CGFloat) scrollerWidth
7070 {
7071 /* TODO: if we want to allow variable widths, this is the place to do it,
7072 however neither GNUstep nor Cocoa support it very well */
7073 return [NSScroller scrollerWidth];
7074 }
7075
7076
7077 - initFrame: (NSRect )r window: (Lisp_Object)nwin
7078 {
7079 NSTRACE (EmacsScroller_initFrame);
7080
7081 r.size.width = [EmacsScroller scrollerWidth];
7082 [super initWithFrame: r/*NSMakeRect (0, 0, 0, 0)*/];
7083 [self setContinuous: YES];
7084 [self setEnabled: YES];
7085
7086 /* Ensure auto resizing of scrollbars occurs within the emacs frame's view
7087 locked against the top and bottom edges, and right edge on OS X, where
7088 scrollers are on right. */
7089 #ifdef NS_IMPL_GNUSTEP
7090 [self setAutoresizingMask: NSViewMaxXMargin | NSViewHeightSizable];
7091 #else
7092 [self setAutoresizingMask: NSViewMinXMargin | NSViewHeightSizable];
7093 #endif
7094
7095 win = nwin;
7096 condemned = NO;
7097 pixel_height = NSHeight (r);
7098 if (pixel_height == 0) pixel_height = 1;
7099 min_portion = 20 / pixel_height;
7100
7101 frame = XFRAME (XWINDOW (win)->frame);
7102 if (FRAME_LIVE_P (frame))
7103 {
7104 int i;
7105 EmacsView *view = FRAME_NS_VIEW (frame);
7106 NSView *sview = [[view window] contentView];
7107 NSArray *subs = [sview subviews];
7108
7109 /* disable optimization stopping redraw of other scrollbars */
7110 view->scrollbarsNeedingUpdate = 0;
7111 for (i =[subs count]-1; i >= 0; i--)
7112 if ([[subs objectAtIndex: i] isKindOfClass: [EmacsScroller class]])
7113 view->scrollbarsNeedingUpdate++;
7114 [sview addSubview: self];
7115 }
7116
7117 /* [self setFrame: r]; */
7118
7119 return self;
7120 }
7121
7122
7123 - (void)setFrame: (NSRect)newRect
7124 {
7125 NSTRACE (EmacsScroller_setFrame);
7126 /* block_input (); */
7127 pixel_height = NSHeight (newRect);
7128 if (pixel_height == 0) pixel_height = 1;
7129 min_portion = 20 / pixel_height;
7130 [super setFrame: newRect];
7131 [self display];
7132 /* unblock_input (); */
7133 }
7134
7135
7136 - (void)dealloc
7137 {
7138 NSTRACE (EmacsScroller_dealloc);
7139 if (!NILP (win))
7140 wset_vertical_scroll_bar (XWINDOW (win), Qnil);
7141 [super dealloc];
7142 }
7143
7144
7145 - condemn
7146 {
7147 NSTRACE (condemn);
7148 condemned =YES;
7149 return self;
7150 }
7151
7152
7153 - reprieve
7154 {
7155 NSTRACE (reprieve);
7156 condemned =NO;
7157 return self;
7158 }
7159
7160
7161 - judge
7162 {
7163 NSTRACE (judge);
7164 if (condemned)
7165 {
7166 EmacsView *view;
7167 block_input ();
7168 /* ensure other scrollbar updates after deletion */
7169 view = (EmacsView *)FRAME_NS_VIEW (frame);
7170 if (view != nil)
7171 view->scrollbarsNeedingUpdate++;
7172 [self removeFromSuperview];
7173 [self release];
7174 unblock_input ();
7175 }
7176 return self;
7177 }
7178
7179
7180 - (void)resetCursorRects
7181 {
7182 NSRect visible = [self visibleRect];
7183 NSTRACE (resetCursorRects);
7184
7185 if (!NSIsEmptyRect (visible))
7186 [self addCursorRect: visible cursor: [NSCursor arrowCursor]];
7187 [[NSCursor arrowCursor] setOnMouseEntered: YES];
7188 }
7189
7190
7191 - (int) checkSamePosition: (int) position portion: (int) portion
7192 whole: (int) whole
7193 {
7194 return em_position ==position && em_portion ==portion && em_whole ==whole
7195 && portion != whole; /* needed for resize empty buf */
7196 }
7197
7198
7199 - setPosition: (int)position portion: (int)portion whole: (int)whole
7200 {
7201 NSTRACE (setPosition);
7202
7203 em_position = position;
7204 em_portion = portion;
7205 em_whole = whole;
7206
7207 if (portion >= whole)
7208 {
7209 #if defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MAX_ALLOWED > MAC_OS_X_VERSION_10_5
7210 [self setKnobProportion: 1.0];
7211 [self setDoubleValue: 1.0];
7212 #else
7213 [self setFloatValue: 0.0 knobProportion: 1.0];
7214 #endif
7215 }
7216 else
7217 {
7218 float pos;
7219 CGFloat por;
7220 portion = max ((float)whole*min_portion/pixel_height, portion);
7221 pos = (float)position / (whole - portion);
7222 por = (CGFloat)portion/whole;
7223 #if defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MAX_ALLOWED > MAC_OS_X_VERSION_10_5
7224 [self setKnobProportion: por];
7225 [self setDoubleValue: pos];
7226 #else
7227 [self setFloatValue: pos knobProportion: por];
7228 #endif
7229 }
7230
7231 /* Events may come here even if the event loop is not running.
7232 If we don't enter the event loop, the scroll bar will not update.
7233 So send SIGIO to ourselves. */
7234 if (apploopnr == 0) raise (SIGIO);
7235
7236 return self;
7237 }
7238
7239 /* FIXME: unused at moment (see ns_mouse_position) at the moment because
7240 drag events will go directly to the EmacsScroller. Leaving in for now. */
7241 -(void)getMouseMotionPart: (int *)part window: (Lisp_Object *)window
7242 x: (Lisp_Object *)x y: ( Lisp_Object *)y
7243 {
7244 *part = last_hit_part;
7245 *window = win;
7246 XSETINT (*y, pixel_height);
7247 if ([self floatValue] > 0.999F)
7248 XSETINT (*x, pixel_height);
7249 else
7250 XSETINT (*x, pixel_height * [self floatValue]);
7251 }
7252
7253
7254 /* set up emacs_event */
7255 - (void) sendScrollEventAtLoc: (float)loc fromEvent: (NSEvent *)e
7256 {
7257 if (!emacs_event)
7258 return;
7259
7260 emacs_event->part = last_hit_part;
7261 emacs_event->code = 0;
7262 emacs_event->modifiers = EV_MODIFIERS (e) | down_modifier;
7263 emacs_event->frame_or_window = win;
7264 emacs_event->timestamp = EV_TIMESTAMP (e);
7265 emacs_event->kind = SCROLL_BAR_CLICK_EVENT;
7266 emacs_event->arg = Qnil;
7267 XSETINT (emacs_event->x, loc * pixel_height);
7268 XSETINT (emacs_event->y, pixel_height-20);
7269
7270 if (q_event_ptr)
7271 {
7272 n_emacs_events_pending++;
7273 kbd_buffer_store_event_hold (emacs_event, q_event_ptr);
7274 }
7275 else
7276 hold_event (emacs_event);
7277 EVENT_INIT (*emacs_event);
7278 ns_send_appdefined (-1);
7279 }
7280
7281
7282 /* called manually thru timer to implement repeated button action w/hold-down */
7283 - repeatScroll: (NSTimer *)scrollEntry
7284 {
7285 NSEvent *e = [[self window] currentEvent];
7286 NSPoint p = [[self window] mouseLocationOutsideOfEventStream];
7287 BOOL inKnob = [self testPart: p] == NSScrollerKnob;
7288
7289 /* clear timer if need be */
7290 if (inKnob || [scroll_repeat_entry timeInterval] == SCROLL_BAR_FIRST_DELAY)
7291 {
7292 [scroll_repeat_entry invalidate];
7293 [scroll_repeat_entry release];
7294 scroll_repeat_entry = nil;
7295
7296 if (inKnob)
7297 return self;
7298
7299 scroll_repeat_entry
7300 = [[NSTimer scheduledTimerWithTimeInterval:
7301 SCROLL_BAR_CONTINUOUS_DELAY
7302 target: self
7303 selector: @selector (repeatScroll:)
7304 userInfo: 0
7305 repeats: YES]
7306 retain];
7307 }
7308
7309 [self sendScrollEventAtLoc: 0 fromEvent: e];
7310 return self;
7311 }
7312
7313
7314 /* Asynchronous mouse tracking for scroller. This allows us to dispatch
7315 mouseDragged events without going into a modal loop. */
7316 - (void)mouseDown: (NSEvent *)e
7317 {
7318 NSRect sr, kr;
7319 /* hitPart is only updated AFTER event is passed on */
7320 NSScrollerPart part = [self testPart: [e locationInWindow]];
7321 CGFloat inc = 0.0, loc, kloc, pos;
7322 int edge = 0;
7323
7324 NSTRACE (EmacsScroller_mouseDown);
7325
7326 switch (part)
7327 {
7328 case NSScrollerDecrementPage:
7329 last_hit_part = scroll_bar_above_handle; inc = -1.0; break;
7330 case NSScrollerIncrementPage:
7331 last_hit_part = scroll_bar_below_handle; inc = 1.0; break;
7332 case NSScrollerDecrementLine:
7333 last_hit_part = scroll_bar_up_arrow; inc = -0.1; break;
7334 case NSScrollerIncrementLine:
7335 last_hit_part = scroll_bar_down_arrow; inc = 0.1; break;
7336 case NSScrollerKnob:
7337 last_hit_part = scroll_bar_handle; break;
7338 case NSScrollerKnobSlot: /* GNUstep-only */
7339 last_hit_part = scroll_bar_move_ratio; break;
7340 default: /* NSScrollerNoPart? */
7341 fprintf (stderr, "EmacsScoller-mouseDown: unexpected part %ld\n",
7342 (long) part);
7343 return;
7344 }
7345
7346 if (inc != 0.0)
7347 {
7348 pos = 0; /* ignored */
7349
7350 /* set a timer to repeat, as we can't let superclass do this modally */
7351 scroll_repeat_entry
7352 = [[NSTimer scheduledTimerWithTimeInterval: SCROLL_BAR_FIRST_DELAY
7353 target: self
7354 selector: @selector (repeatScroll:)
7355 userInfo: 0
7356 repeats: YES]
7357 retain];
7358 }
7359 else
7360 {
7361 /* handle, or on GNUstep possibly slot */
7362 NSEvent *fake_event;
7363
7364 /* compute float loc in slot and mouse offset on knob */
7365 sr = [self convertRect: [self rectForPart: NSScrollerKnobSlot]
7366 toView: nil];
7367 loc = NSHeight (sr) - ([e locationInWindow].y - NSMinY (sr));
7368 if (loc <= 0.0)
7369 {
7370 loc = 0.0;
7371 edge = -1;
7372 }
7373 else if (loc >= NSHeight (sr))
7374 {
7375 loc = NSHeight (sr);
7376 edge = 1;
7377 }
7378
7379 if (edge)
7380 kloc = 0.5 * edge;
7381 else
7382 {
7383 kr = [self convertRect: [self rectForPart: NSScrollerKnob]
7384 toView: nil];
7385 kloc = NSHeight (kr) - ([e locationInWindow].y - NSMinY (kr));
7386 }
7387 last_mouse_offset = kloc;
7388
7389 /* if knob, tell emacs a location offset by knob pos
7390 (to indicate top of handle) */
7391 if (part == NSScrollerKnob)
7392 pos = (loc - last_mouse_offset) / NSHeight (sr);
7393 else
7394 /* else this is a slot click on GNUstep: go straight there */
7395 pos = loc / NSHeight (sr);
7396
7397 /* send a fake mouse-up to super to preempt modal -trackKnob: mode */
7398 fake_event = [NSEvent mouseEventWithType: NSLeftMouseUp
7399 location: [e locationInWindow]
7400 modifierFlags: [e modifierFlags]
7401 timestamp: [e timestamp]
7402 windowNumber: [e windowNumber]
7403 context: [e context]
7404 eventNumber: [e eventNumber]
7405 clickCount: [e clickCount]
7406 pressure: [e pressure]];
7407 [super mouseUp: fake_event];
7408 }
7409
7410 if (part != NSScrollerKnob)
7411 [self sendScrollEventAtLoc: pos fromEvent: e];
7412 }
7413
7414
7415 /* Called as we manually track scroller drags, rather than superclass. */
7416 - (void)mouseDragged: (NSEvent *)e
7417 {
7418 NSRect sr;
7419 double loc, pos;
7420
7421 NSTRACE (EmacsScroller_mouseDragged);
7422
7423 sr = [self convertRect: [self rectForPart: NSScrollerKnobSlot]
7424 toView: nil];
7425 loc = NSHeight (sr) - ([e locationInWindow].y - NSMinY (sr));
7426
7427 if (loc <= 0.0)
7428 {
7429 loc = 0.0;
7430 }
7431 else if (loc >= NSHeight (sr) + last_mouse_offset)
7432 {
7433 loc = NSHeight (sr) + last_mouse_offset;
7434 }
7435
7436 pos = (loc - last_mouse_offset) / NSHeight (sr);
7437 [self sendScrollEventAtLoc: pos fromEvent: e];
7438 }
7439
7440
7441 - (void)mouseUp: (NSEvent *)e
7442 {
7443 if (scroll_repeat_entry)
7444 {
7445 [scroll_repeat_entry invalidate];
7446 [scroll_repeat_entry release];
7447 scroll_repeat_entry = nil;
7448 }
7449 last_hit_part = 0;
7450 }
7451
7452
7453 /* treat scrollwheel events in the bar as though they were in the main window */
7454 - (void) scrollWheel: (NSEvent *)theEvent
7455 {
7456 EmacsView *view = (EmacsView *)FRAME_NS_VIEW (frame);
7457 [view mouseDown: theEvent];
7458 }
7459
7460 @end /* EmacsScroller */
7461
7462
7463 #ifdef NS_IMPL_GNUSTEP
7464 /* Dummy class to get rid of startup warnings. */
7465 @implementation EmacsDocument
7466
7467 @end
7468 #endif
7469
7470
7471 /* ==========================================================================
7472
7473 Font-related functions; these used to be in nsfaces.m
7474
7475 ========================================================================== */
7476
7477
7478 Lisp_Object
7479 x_new_font (struct frame *f, Lisp_Object font_object, int fontset)
7480 {
7481 struct font *font = XFONT_OBJECT (font_object);
7482 EmacsView *view = FRAME_NS_VIEW (f);
7483
7484 if (fontset < 0)
7485 fontset = fontset_from_font (font_object);
7486 FRAME_FONTSET (f) = fontset;
7487
7488 if (FRAME_FONT (f) == font)
7489 /* This font is already set in frame F. There's nothing more to
7490 do. */
7491 return font_object;
7492
7493 FRAME_FONT (f) = font;
7494
7495 FRAME_BASELINE_OFFSET (f) = font->baseline_offset;
7496 FRAME_COLUMN_WIDTH (f) = font->average_width;
7497 FRAME_LINE_HEIGHT (f) = font->height;
7498
7499 compute_fringe_widths (f, 1);
7500
7501 /* Compute the scroll bar width in character columns. */
7502 if (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0)
7503 {
7504 int wid = FRAME_COLUMN_WIDTH (f);
7505 FRAME_CONFIG_SCROLL_BAR_COLS (f)
7506 = (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) + wid - 1) / wid;
7507 }
7508 else
7509 {
7510 int wid = FRAME_COLUMN_WIDTH (f);
7511 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (14 + wid - 1) / wid;
7512 }
7513
7514 /* Now make the frame display the given font. */
7515 if (FRAME_NS_WINDOW (f) != 0 && ! [view isFullscreen])
7516 x_set_window_size (f, 0, FRAME_COLS (f) * FRAME_COLUMN_WIDTH (f),
7517 FRAME_LINES (f) * FRAME_LINE_HEIGHT (f), 1);
7518
7519 return font_object;
7520 }
7521
7522
7523 /* XLFD: -foundry-family-weight-slant-swidth-adstyle-pxlsz-ptSz-resx-resy-spc-avgWidth-rgstry-encoding */
7524 /* Note: ns_font_to_xlfd and ns_fontname_to_xlfd no longer needed, removed
7525 in 1.43. */
7526
7527 const char *
7528 ns_xlfd_to_fontname (const char *xlfd)
7529 /* --------------------------------------------------------------------------
7530 Convert an X font name (XLFD) to an NS font name.
7531 Only family is used.
7532 The string returned is temporarily allocated.
7533 -------------------------------------------------------------------------- */
7534 {
7535 char *name = xmalloc (180);
7536 int i, len;
7537 const char *ret;
7538
7539 if (!strncmp (xlfd, "--", 2))
7540 sscanf (xlfd, "--%*[^-]-%[^-]179-", name);
7541 else
7542 sscanf (xlfd, "-%*[^-]-%[^-]179-", name);
7543
7544 /* stopgap for malformed XLFD input */
7545 if (strlen (name) == 0)
7546 strcpy (name, "Monaco");
7547
7548 /* undo hack in ns_fontname_to_xlfd, converting '$' to '-', '_' to ' '
7549 also uppercase after '-' or ' ' */
7550 name[0] = c_toupper (name[0]);
7551 for (len =strlen (name), i =0; i<len; i++)
7552 {
7553 if (name[i] == '$')
7554 {
7555 name[i] = '-';
7556 if (i+1<len)
7557 name[i+1] = c_toupper (name[i+1]);
7558 }
7559 else if (name[i] == '_')
7560 {
7561 name[i] = ' ';
7562 if (i+1<len)
7563 name[i+1] = c_toupper (name[i+1]);
7564 }
7565 }
7566 /*fprintf (stderr, "converted '%s' to '%s'\n",xlfd,name); */
7567 ret = [[NSString stringWithUTF8String: name] UTF8String];
7568 xfree (name);
7569 return ret;
7570 }
7571
7572
7573 void
7574 syms_of_nsterm (void)
7575 {
7576 NSTRACE (syms_of_nsterm);
7577
7578 ns_antialias_threshold = 10.0;
7579
7580 /* from 23+ we need to tell emacs what modifiers there are.. */
7581 DEFSYM (Qmodifier_value, "modifier-value");
7582 DEFSYM (Qalt, "alt");
7583 DEFSYM (Qhyper, "hyper");
7584 DEFSYM (Qmeta, "meta");
7585 DEFSYM (Qsuper, "super");
7586 DEFSYM (Qcontrol, "control");
7587 DEFSYM (QUTF8_STRING, "UTF8_STRING");
7588
7589 DEFSYM (Qfile, "file");
7590 DEFSYM (Qurl, "url");
7591
7592 Fput (Qalt, Qmodifier_value, make_number (alt_modifier));
7593 Fput (Qhyper, Qmodifier_value, make_number (hyper_modifier));
7594 Fput (Qmeta, Qmodifier_value, make_number (meta_modifier));
7595 Fput (Qsuper, Qmodifier_value, make_number (super_modifier));
7596 Fput (Qcontrol, Qmodifier_value, make_number (ctrl_modifier));
7597
7598 DEFVAR_LISP ("ns-input-file", ns_input_file,
7599 "The file specified in the last NS event.");
7600 ns_input_file =Qnil;
7601
7602 DEFVAR_LISP ("ns-working-text", ns_working_text,
7603 "String for visualizing working composition sequence.");
7604 ns_working_text =Qnil;
7605
7606 DEFVAR_LISP ("ns-input-font", ns_input_font,
7607 "The font specified in the last NS event.");
7608 ns_input_font =Qnil;
7609
7610 DEFVAR_LISP ("ns-input-fontsize", ns_input_fontsize,
7611 "The fontsize specified in the last NS event.");
7612 ns_input_fontsize =Qnil;
7613
7614 DEFVAR_LISP ("ns-input-line", ns_input_line,
7615 "The line specified in the last NS event.");
7616 ns_input_line =Qnil;
7617
7618 DEFVAR_LISP ("ns-input-spi-name", ns_input_spi_name,
7619 "The service name specified in the last NS event.");
7620 ns_input_spi_name =Qnil;
7621
7622 DEFVAR_LISP ("ns-input-spi-arg", ns_input_spi_arg,
7623 "The service argument specified in the last NS event.");
7624 ns_input_spi_arg =Qnil;
7625
7626 DEFVAR_LISP ("ns-alternate-modifier", ns_alternate_modifier,
7627 "This variable describes the behavior of the alternate or option key.\n\
7628 Set to control, meta, alt, super, or hyper means it is taken to be that key.\n\
7629 Set to none means that the alternate / option key is not interpreted by Emacs\n\
7630 at all, allowing it to be used at a lower level for accented character entry.");
7631 ns_alternate_modifier = Qmeta;
7632
7633 DEFVAR_LISP ("ns-right-alternate-modifier", ns_right_alternate_modifier,
7634 "This variable describes the behavior of the right alternate or option key.\n\
7635 Set to control, meta, alt, super, or hyper means it is taken to be that key.\n\
7636 Set to left means be the same key as `ns-alternate-modifier'.\n\
7637 Set to none means that the alternate / option key is not interpreted by Emacs\n\
7638 at all, allowing it to be used at a lower level for accented character entry.");
7639 ns_right_alternate_modifier = Qleft;
7640
7641 DEFVAR_LISP ("ns-command-modifier", ns_command_modifier,
7642 "This variable describes the behavior of the command key.\n\
7643 Set to control, meta, alt, super, or hyper means it is taken to be that key.");
7644 ns_command_modifier = Qsuper;
7645
7646 DEFVAR_LISP ("ns-right-command-modifier", ns_right_command_modifier,
7647 "This variable describes the behavior of the right command key.\n\
7648 Set to control, meta, alt, super, or hyper means it is taken to be that key.\n\
7649 Set to left means be the same key as `ns-command-modifier'.\n\
7650 Set to none means that the command / option key is not interpreted by Emacs\n\
7651 at all, allowing it to be used at a lower level for accented character entry.");
7652 ns_right_command_modifier = Qleft;
7653
7654 DEFVAR_LISP ("ns-control-modifier", ns_control_modifier,
7655 "This variable describes the behavior of the control key.\n\
7656 Set to control, meta, alt, super, or hyper means it is taken to be that key.");
7657 ns_control_modifier = Qcontrol;
7658
7659 DEFVAR_LISP ("ns-right-control-modifier", ns_right_control_modifier,
7660 "This variable describes the behavior of the right control key.\n\
7661 Set to control, meta, alt, super, or hyper means it is taken to be that key.\n\
7662 Set to left means be the same key as `ns-control-modifier'.\n\
7663 Set to none means that the control / option key is not interpreted by Emacs\n\
7664 at all, allowing it to be used at a lower level for accented character entry.");
7665 ns_right_control_modifier = Qleft;
7666
7667 DEFVAR_LISP ("ns-function-modifier", ns_function_modifier,
7668 "This variable describes the behavior of the function key (on laptops).\n\
7669 Set to control, meta, alt, super, or hyper means it is taken to be that key.\n\
7670 Set to none means that the function key is not interpreted by Emacs at all,\n\
7671 allowing it to be used at a lower level for accented character entry.");
7672 ns_function_modifier = Qnone;
7673
7674 DEFVAR_LISP ("ns-antialias-text", ns_antialias_text,
7675 "Non-nil (the default) means to render text antialiased.");
7676 ns_antialias_text = Qt;
7677
7678 DEFVAR_LISP ("ns-confirm-quit", ns_confirm_quit,
7679 "Whether to confirm application quit using dialog.");
7680 ns_confirm_quit = Qnil;
7681
7682 DEFVAR_LISP ("ns-auto-hide-menu-bar", ns_auto_hide_menu_bar,
7683 doc: /* Non-nil means that the menu bar is hidden, but appears when the mouse is near.
7684 Only works on OSX 10.6 or later. */);
7685 ns_auto_hide_menu_bar = Qnil;
7686
7687 DEFVAR_BOOL ("ns-use-native-fullscreen", ns_use_native_fullscreen,
7688 doc: /*Non-nil means to use native fullscreen on OSX >= 10.7.
7689 Nil means use fullscreen the old (< 10.7) way. The old way works better with
7690 multiple monitors, but lacks tool bar. This variable is ignored on OSX < 10.7.
7691 Default is t for OSX >= 10.7, nil otherwise. */);
7692 #ifdef HAVE_NATIVE_FS
7693 ns_use_native_fullscreen = YES;
7694 #else
7695 ns_use_native_fullscreen = NO;
7696 #endif
7697 ns_last_use_native_fullscreen = ns_use_native_fullscreen;
7698
7699 DEFVAR_BOOL ("ns-use-srgb-colorspace", ns_use_srgb_colorspace,
7700 doc: /*Non-nil means to use sRGB colorspace on OSX >= 10.7.
7701 Note that this does not apply to images.
7702 This variable is ignored on OSX < 10.7 and GNUstep. */);
7703 ns_use_srgb_colorspace = YES;
7704
7705 /* TODO: move to common code */
7706 DEFVAR_LISP ("x-toolkit-scroll-bars", Vx_toolkit_scroll_bars,
7707 doc: /* Which toolkit scroll bars Emacs uses, if any.
7708 A value of nil means Emacs doesn't use toolkit scroll bars.
7709 With the X Window system, the value is a symbol describing the
7710 X toolkit. Possible values are: gtk, motif, xaw, or xaw3d.
7711 With MS Windows or Nextstep, the value is t. */);
7712 Vx_toolkit_scroll_bars = Qt;
7713
7714 DEFVAR_BOOL ("x-use-underline-position-properties",
7715 x_use_underline_position_properties,
7716 doc: /*Non-nil means make use of UNDERLINE_POSITION font properties.
7717 A value of nil means ignore them. If you encounter fonts with bogus
7718 UNDERLINE_POSITION font properties, for example 7x13 on XFree prior
7719 to 4.1, set this to nil. */);
7720 x_use_underline_position_properties = 0;
7721
7722 DEFVAR_BOOL ("x-underline-at-descent-line",
7723 x_underline_at_descent_line,
7724 doc: /* Non-nil means to draw the underline at the same place as the descent line.
7725 A value of nil means to draw the underline according to the value of the
7726 variable `x-use-underline-position-properties', which is usually at the
7727 baseline level. The default value is nil. */);
7728 x_underline_at_descent_line = 0;
7729
7730 /* Tell Emacs about this window system. */
7731 Fprovide (Qns, Qnil);
7732
7733 DEFSYM (Qcocoa, "cocoa");
7734 DEFSYM (Qgnustep, "gnustep");
7735
7736 syms_of_nsfont ();
7737 #ifdef NS_IMPL_COCOA
7738 Fprovide (Qcocoa, Qnil);
7739 #if MAC_OS_X_VERSION_MAX_ALLOWED >= 1050
7740 syms_of_macfont ();
7741 #endif
7742 #else
7743 Fprovide (Qgnustep, Qnil);
7744 #endif
7745
7746 }