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