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