]> code.delx.au - gnu-emacs/blob - src/nsterm.m
Fix use of deallocated memory.
[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, Qleft;
233
234 static Lisp_Object QUTF8_STRING;
235 static Lisp_Object Qcocoa, Qgnustep;
236 static Lisp_Object Qfile, Qurl;
237
238 /* On OS X picks up the default NSGlobalDomain AppleAntiAliasingThreshold,
239 the maximum font size to NOT antialias. On GNUstep there is currently
240 no way to control this behavior. */
241 float ns_antialias_threshold;
242
243 NSArray *ns_send_types =0, *ns_return_types =0, *ns_drag_types =0;
244 NSString *ns_app_name = @"Emacs"; /* default changed later */
245
246 /* Display variables */
247 struct ns_display_info *x_display_list; /* Chain of existing displays */
248 long context_menu_value = 0;
249
250 /* display update */
251 static struct frame *ns_updating_frame;
252 static NSView *focus_view = NULL;
253 static int ns_window_num = 0;
254 #ifdef NS_IMPL_GNUSTEP
255 static NSRect uRect;
256 #endif
257 static BOOL gsaved = NO;
258 static BOOL ns_fake_keydown = NO;
259 #ifdef NS_IMPL_COCOA
260 static BOOL ns_menu_bar_is_hidden = NO;
261 #endif
262 /*static int debug_lock = 0; */
263
264 /* event loop */
265 static BOOL send_appdefined = YES;
266 #define NO_APPDEFINED_DATA (-8)
267 static int last_appdefined_event_data = NO_APPDEFINED_DATA;
268 static NSTimer *timed_entry = 0;
269 static NSTimer *scroll_repeat_entry = nil;
270 static fd_set select_readfds, select_writefds;
271 enum { SELECT_HAVE_READ = 1, SELECT_HAVE_WRITE = 2, SELECT_HAVE_TMO = 4 };
272 static int select_nfds = 0, select_valid = 0;
273 static struct timespec select_timeout = { 0, 0 };
274 static int selfds[2] = { -1, -1 };
275 static pthread_mutex_t select_mutex;
276 static int apploopnr = 0;
277 static NSAutoreleasePool *outerpool;
278 static struct input_event *emacs_event = NULL;
279 static struct input_event *q_event_ptr = NULL;
280 static int n_emacs_events_pending = 0;
281 static NSMutableArray *ns_pending_files, *ns_pending_service_names,
282 *ns_pending_service_args;
283 static BOOL ns_do_open_file = NO;
284 static BOOL ns_last_use_native_fullscreen;
285
286 /* 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 ns_send_appdefined (-2);
4674 }
4675
4676
4677 /* Termination sequences:
4678 C-x C-c:
4679 Cmd-Q:
4680 MenuBar | File | Exit:
4681 Select Quit from App menubar:
4682 -terminate
4683 KEY_NS_POWER_OFF, (save-buffers-kill-emacs)
4684 ns_term_shutdown()
4685
4686 Select Quit from Dock menu:
4687 Logout attempt:
4688 -appShouldTerminate
4689 Cancel -> Nothing else
4690 Accept ->
4691
4692 -terminate
4693 KEY_NS_POWER_OFF, (save-buffers-kill-emacs)
4694 ns_term_shutdown()
4695
4696 */
4697
4698 - (void) terminate: (id)sender
4699 {
4700 struct frame *emacsframe = SELECTED_FRAME ();
4701
4702 if (!emacs_event)
4703 return;
4704
4705 emacs_event->kind = NS_NONKEY_EVENT;
4706 emacs_event->code = KEY_NS_POWER_OFF;
4707 emacs_event->arg = Qt; /* mark as non-key event */
4708 EV_TRAILER ((id)nil);
4709 }
4710
4711
4712 - (NSApplicationTerminateReply)applicationShouldTerminate: (id)sender
4713 {
4714 int ret;
4715
4716 if (NILP (ns_confirm_quit)) // || ns_shutdown_properly --> TO DO
4717 return NSTerminateNow;
4718
4719 ret = NSRunAlertPanel(ns_app_name,
4720 @"Exit requested. Would you like to Save Buffers and Exit, or Cancel the request?",
4721 @"Save Buffers and Exit", @"Cancel", nil);
4722
4723 if (ret == NSAlertDefaultReturn)
4724 return NSTerminateNow;
4725 else if (ret == NSAlertAlternateReturn)
4726 return NSTerminateCancel;
4727 return NSTerminateNow; /* just in case */
4728 }
4729
4730 static int
4731 not_in_argv (NSString *arg)
4732 {
4733 int k;
4734 const char *a = [arg UTF8String];
4735 for (k = 1; k < initial_argc; ++k)
4736 if (strcmp (a, initial_argv[k]) == 0) return 0;
4737 return 1;
4738 }
4739
4740 /* Notification from the Workspace to open a file */
4741 - (BOOL)application: sender openFile: (NSString *)file
4742 {
4743 if (ns_do_open_file || not_in_argv (file))
4744 [ns_pending_files addObject: file];
4745 return YES;
4746 }
4747
4748
4749 /* Open a file as a temporary file */
4750 - (BOOL)application: sender openTempFile: (NSString *)file
4751 {
4752 if (ns_do_open_file || not_in_argv (file))
4753 [ns_pending_files addObject: file];
4754 return YES;
4755 }
4756
4757
4758 /* Notification from the Workspace to open a file noninteractively (?) */
4759 - (BOOL)application: sender openFileWithoutUI: (NSString *)file
4760 {
4761 if (ns_do_open_file || not_in_argv (file))
4762 [ns_pending_files addObject: file];
4763 return YES;
4764 }
4765
4766 /* Notification from the Workspace to open multiple files */
4767 - (void)application: sender openFiles: (NSArray *)fileList
4768 {
4769 NSEnumerator *files = [fileList objectEnumerator];
4770 NSString *file;
4771 /* Don't open files from the command line unconditionally,
4772 Cocoa parses the command line wrong, --option value tries to open value
4773 if --option is the last option. */
4774 while ((file = [files nextObject]) != nil)
4775 if (ns_do_open_file || not_in_argv (file))
4776 [ns_pending_files addObject: file];
4777
4778 [self replyToOpenOrPrint: NSApplicationDelegateReplySuccess];
4779
4780 }
4781
4782
4783 /* Handle dock menu requests. */
4784 - (NSMenu *)applicationDockMenu: (NSApplication *) sender
4785 {
4786 return dockMenu;
4787 }
4788
4789
4790 /* TODO: these may help w/IO switching btwn terminal and NSApp */
4791 - (void)applicationWillBecomeActive: (NSNotification *)notification
4792 {
4793 //ns_app_active=YES;
4794 }
4795 - (void)applicationDidBecomeActive: (NSNotification *)notification
4796 {
4797 NSTRACE (applicationDidBecomeActive);
4798
4799 #ifdef NS_IMPL_GNUSTEP
4800 if (! applicationDidFinishLaunchingCalled)
4801 [self applicationDidFinishLaunching:notification];
4802 #endif
4803 //ns_app_active=YES;
4804
4805 ns_update_auto_hide_menu_bar ();
4806 // No constraining takes place when the application is not active.
4807 ns_constrain_all_frames ();
4808 }
4809 - (void)applicationDidResignActive: (NSNotification *)notification
4810 {
4811 //ns_app_active=NO;
4812 ns_send_appdefined (-1);
4813 }
4814
4815
4816
4817 /* ==========================================================================
4818
4819 EmacsApp aux handlers for managing event loop
4820
4821 ========================================================================== */
4822
4823
4824 - (void)timeout_handler: (NSTimer *)timedEntry
4825 /* --------------------------------------------------------------------------
4826 The timeout specified to ns_select has passed.
4827 -------------------------------------------------------------------------- */
4828 {
4829 /*NSTRACE (timeout_handler); */
4830 ns_send_appdefined (-2);
4831 }
4832
4833 #ifdef NS_IMPL_GNUSTEP
4834 - (void)sendFromMainThread:(id)unused
4835 {
4836 ns_send_appdefined (nextappdefined);
4837 }
4838 #endif
4839
4840 - (void)fd_handler:(id)unused
4841 /* --------------------------------------------------------------------------
4842 Check data waiting on file descriptors and terminate if so
4843 -------------------------------------------------------------------------- */
4844 {
4845 int result;
4846 int waiting = 1, nfds;
4847 char c;
4848
4849 fd_set readfds, writefds, *wfds;
4850 struct timespec timeout, *tmo;
4851 NSAutoreleasePool *pool = nil;
4852
4853 /* NSTRACE (fd_handler); */
4854
4855 for (;;)
4856 {
4857 [pool release];
4858 pool = [[NSAutoreleasePool alloc] init];
4859
4860 if (waiting)
4861 {
4862 fd_set fds;
4863 FD_ZERO (&fds);
4864 FD_SET (selfds[0], &fds);
4865 result = select (selfds[0]+1, &fds, NULL, NULL, NULL);
4866 if (result > 0 && read (selfds[0], &c, 1) == 1 && c == 'g')
4867 waiting = 0;
4868 }
4869 else
4870 {
4871 pthread_mutex_lock (&select_mutex);
4872 nfds = select_nfds;
4873
4874 if (select_valid & SELECT_HAVE_READ)
4875 readfds = select_readfds;
4876 else
4877 FD_ZERO (&readfds);
4878
4879 if (select_valid & SELECT_HAVE_WRITE)
4880 {
4881 writefds = select_writefds;
4882 wfds = &writefds;
4883 }
4884 else
4885 wfds = NULL;
4886 if (select_valid & SELECT_HAVE_TMO)
4887 {
4888 timeout = select_timeout;
4889 tmo = &timeout;
4890 }
4891 else
4892 tmo = NULL;
4893
4894 pthread_mutex_unlock (&select_mutex);
4895
4896 FD_SET (selfds[0], &readfds);
4897 if (selfds[0] >= nfds) nfds = selfds[0]+1;
4898
4899 result = pselect (nfds, &readfds, wfds, NULL, tmo, NULL);
4900
4901 if (result == 0)
4902 ns_send_appdefined (-2);
4903 else if (result > 0)
4904 {
4905 if (FD_ISSET (selfds[0], &readfds))
4906 {
4907 if (read (selfds[0], &c, 1) == 1 && c == 's')
4908 waiting = 1;
4909 }
4910 else
4911 {
4912 pthread_mutex_lock (&select_mutex);
4913 if (select_valid & SELECT_HAVE_READ)
4914 select_readfds = readfds;
4915 if (select_valid & SELECT_HAVE_WRITE)
4916 select_writefds = writefds;
4917 if (select_valid & SELECT_HAVE_TMO)
4918 select_timeout = timeout;
4919 pthread_mutex_unlock (&select_mutex);
4920
4921 ns_send_appdefined (result);
4922 }
4923 }
4924 waiting = 1;
4925 }
4926 }
4927 }
4928
4929
4930
4931 /* ==========================================================================
4932
4933 Service provision
4934
4935 ========================================================================== */
4936
4937 /* called from system: queue for next pass through event loop */
4938 - (void)requestService: (NSPasteboard *)pboard
4939 userData: (NSString *)userData
4940 error: (NSString **)error
4941 {
4942 [ns_pending_service_names addObject: userData];
4943 [ns_pending_service_args addObject: [NSString stringWithUTF8String:
4944 SSDATA (ns_string_from_pasteboard (pboard))]];
4945 }
4946
4947
4948 /* called from ns_read_socket to clear queue */
4949 - (BOOL)fulfillService: (NSString *)name withArg: (NSString *)arg
4950 {
4951 struct frame *emacsframe = SELECTED_FRAME ();
4952 NSEvent *theEvent = [NSApp currentEvent];
4953
4954 if (!emacs_event)
4955 return NO;
4956
4957 emacs_event->kind = NS_NONKEY_EVENT;
4958 emacs_event->code = KEY_NS_SPI_SERVICE_CALL;
4959 ns_input_spi_name = build_string ([name UTF8String]);
4960 ns_input_spi_arg = build_string ([arg UTF8String]);
4961 emacs_event->modifiers = EV_MODIFIERS (theEvent);
4962 EV_TRAILER (theEvent);
4963
4964 return YES;
4965 }
4966
4967
4968 @end /* EmacsApp */
4969
4970
4971
4972 /* ==========================================================================
4973
4974 EmacsView implementation
4975
4976 ========================================================================== */
4977
4978
4979 @implementation EmacsView
4980
4981 /* needed to inform when window closed from LISP */
4982 - (void) setWindowClosing: (BOOL)closing
4983 {
4984 windowClosing = closing;
4985 }
4986
4987
4988 - (void)dealloc
4989 {
4990 NSTRACE (EmacsView_dealloc);
4991 [toolbar release];
4992 if (fs_state == FULLSCREEN_BOTH)
4993 [nonfs_window release];
4994 [super dealloc];
4995 }
4996
4997
4998 /* called on font panel selection */
4999 - (void)changeFont: (id)sender
5000 {
5001 NSEvent *e = [[self window] currentEvent];
5002 struct face *face = FRAME_DEFAULT_FACE (emacsframe);
5003 struct font *font = face->font;
5004 id newFont;
5005 CGFloat size;
5006 NSFont *nsfont;
5007
5008 NSTRACE (changeFont);
5009
5010 if (!emacs_event)
5011 return;
5012
5013 if (EQ (font->driver->type, Qns))
5014 nsfont = ((struct nsfont_info *)font)->nsfont;
5015 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5
5016 else
5017 nsfont = (NSFont *) macfont_get_nsctfont (font);
5018 #endif
5019
5020 if ((newFont = [sender convertFont: nsfont]))
5021 {
5022 SET_FRAME_GARBAGED (emacsframe); /* now needed as of 2008/10 */
5023
5024 emacs_event->kind = NS_NONKEY_EVENT;
5025 emacs_event->modifiers = 0;
5026 emacs_event->code = KEY_NS_CHANGE_FONT;
5027
5028 size = [newFont pointSize];
5029 ns_input_fontsize = make_number (lrint (size));
5030 ns_input_font = build_string ([[newFont familyName] UTF8String]);
5031 EV_TRAILER (e);
5032 }
5033 }
5034
5035
5036 - (BOOL)acceptsFirstResponder
5037 {
5038 NSTRACE (acceptsFirstResponder);
5039 return YES;
5040 }
5041
5042
5043 - (void)resetCursorRects
5044 {
5045 NSRect visible = [self visibleRect];
5046 NSCursor *currentCursor = FRAME_POINTER_TYPE (emacsframe);
5047 NSTRACE (resetCursorRects);
5048
5049 if (currentCursor == nil)
5050 currentCursor = [NSCursor arrowCursor];
5051
5052 if (!NSIsEmptyRect (visible))
5053 [self addCursorRect: visible cursor: currentCursor];
5054 [currentCursor setOnMouseEntered: YES];
5055 }
5056
5057
5058
5059 /*****************************************************************************/
5060 /* Keyboard handling. */
5061 #define NS_KEYLOG 0
5062
5063 - (void)keyDown: (NSEvent *)theEvent
5064 {
5065 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (emacsframe);
5066 int code;
5067 unsigned fnKeysym = 0;
5068 static NSMutableArray *nsEvArray;
5069 #if !defined (NS_IMPL_COCOA) || MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_6
5070 static BOOL firstTime = YES;
5071 #endif
5072 int left_is_none;
5073 unsigned int flags = [theEvent modifierFlags];
5074
5075 NSTRACE (keyDown);
5076
5077 /* Rhapsody and OS X give up and down events for the arrow keys */
5078 if (ns_fake_keydown == YES)
5079 ns_fake_keydown = NO;
5080 else if ([theEvent type] != NSKeyDown)
5081 return;
5082
5083 if (!emacs_event)
5084 return;
5085
5086 if (![[self window] isKeyWindow]
5087 && [[theEvent window] isKindOfClass: [EmacsWindow class]]
5088 /* we must avoid an infinite loop here. */
5089 && (EmacsView *)[[theEvent window] delegate] != self)
5090 {
5091 /* XXX: There is an occasional condition in which, when Emacs display
5092 updates a different frame from the current one, and temporarily
5093 selects it, then processes some interrupt-driven input
5094 (dispnew.c:3878), OS will send the event to the correct NSWindow, but
5095 for some reason that window has its first responder set to the NSView
5096 most recently updated (I guess), which is not the correct one. */
5097 [(EmacsView *)[[theEvent window] delegate] keyDown: theEvent];
5098 return;
5099 }
5100
5101 if (nsEvArray == nil)
5102 nsEvArray = [[NSMutableArray alloc] initWithCapacity: 1];
5103
5104 [NSCursor setHiddenUntilMouseMoves: YES];
5105
5106 if (hlinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight))
5107 {
5108 clear_mouse_face (hlinfo);
5109 hlinfo->mouse_face_hidden = 1;
5110 }
5111
5112 if (!processingCompose)
5113 {
5114 /* When using screen sharing, no left or right information is sent,
5115 so use Left key in those cases. */
5116 int is_left_key, is_right_key;
5117
5118 code = ([[theEvent charactersIgnoringModifiers] length] == 0) ?
5119 0 : [[theEvent charactersIgnoringModifiers] characterAtIndex: 0];
5120
5121 /* (Carbon way: [theEvent keyCode]) */
5122
5123 /* is it a "function key"? */
5124 /* Note: Sometimes a plain key will have the NSNumericPadKeyMask
5125 flag set (this is probably a bug in the OS).
5126 */
5127 if (code < 0x00ff && (flags&NSNumericPadKeyMask))
5128 {
5129 fnKeysym = ns_convert_key ([theEvent keyCode] | NSNumericPadKeyMask);
5130 }
5131 if (fnKeysym == 0)
5132 {
5133 fnKeysym = ns_convert_key (code);
5134 }
5135
5136 if (fnKeysym)
5137 {
5138 /* COUNTERHACK: map 'Delete' on upper-right main KB to 'Backspace',
5139 because Emacs treats Delete and KP-Delete same (in simple.el). */
5140 if ((fnKeysym == 0xFFFF && [theEvent keyCode] == 0x33)
5141 #ifdef NS_IMPL_GNUSTEP
5142 /* GNUstep uses incompatible keycodes, even for those that are
5143 supposed to be hardware independent. Just check for delete.
5144 Keypad delete does not have keysym 0xFFFF.
5145 See http://savannah.gnu.org/bugs/?25395
5146 */
5147 || (fnKeysym == 0xFFFF && code == 127)
5148 #endif
5149 )
5150 code = 0xFF08; /* backspace */
5151 else
5152 code = fnKeysym;
5153 }
5154
5155 /* are there modifiers? */
5156 emacs_event->modifiers = 0;
5157
5158 if (flags & NSHelpKeyMask)
5159 emacs_event->modifiers |= hyper_modifier;
5160
5161 if (flags & NSShiftKeyMask)
5162 emacs_event->modifiers |= shift_modifier;
5163
5164 is_right_key = (flags & NSRightCommandKeyMask) == NSRightCommandKeyMask;
5165 is_left_key = (flags & NSLeftCommandKeyMask) == NSLeftCommandKeyMask
5166 || (! is_right_key && (flags & NSCommandKeyMask) == NSCommandKeyMask);
5167
5168 if (is_right_key)
5169 emacs_event->modifiers |= parse_solitary_modifier
5170 (EQ (ns_right_command_modifier, Qleft)
5171 ? ns_command_modifier
5172 : ns_right_command_modifier);
5173
5174 if (is_left_key)
5175 {
5176 emacs_event->modifiers |= parse_solitary_modifier
5177 (ns_command_modifier);
5178
5179 /* if super (default), take input manager's word so things like
5180 dvorak / qwerty layout work */
5181 if (EQ (ns_command_modifier, Qsuper)
5182 && !fnKeysym
5183 && [[theEvent characters] length] != 0)
5184 {
5185 /* XXX: the code we get will be unshifted, so if we have
5186 a shift modifier, must convert ourselves */
5187 if (!(flags & NSShiftKeyMask))
5188 code = [[theEvent characters] characterAtIndex: 0];
5189 #if 0
5190 /* this is ugly and also requires linking w/Carbon framework
5191 (for LMGetKbdType) so for now leave this rare (?) case
5192 undealt with.. in future look into CGEvent methods */
5193 else
5194 {
5195 long smv = GetScriptManagerVariable (smKeyScript);
5196 Handle uchrHandle = GetResource
5197 ('uchr', GetScriptVariable (smv, smScriptKeys));
5198 UInt32 dummy = 0;
5199 UCKeyTranslate ((UCKeyboardLayout*)*uchrHandle,
5200 [[theEvent characters] characterAtIndex: 0],
5201 kUCKeyActionDisplay,
5202 (flags & ~NSCommandKeyMask) >> 8,
5203 LMGetKbdType (), kUCKeyTranslateNoDeadKeysMask,
5204 &dummy, 1, &dummy, &code);
5205 code &= 0xFF;
5206 }
5207 #endif
5208 }
5209 }
5210
5211 is_right_key = (flags & NSRightControlKeyMask) == NSRightControlKeyMask;
5212 is_left_key = (flags & NSLeftControlKeyMask) == NSLeftControlKeyMask
5213 || (! is_right_key && (flags & NSControlKeyMask) == NSControlKeyMask);
5214
5215 if (is_right_key)
5216 emacs_event->modifiers |= parse_solitary_modifier
5217 (EQ (ns_right_control_modifier, Qleft)
5218 ? ns_control_modifier
5219 : ns_right_control_modifier);
5220
5221 if (is_left_key)
5222 emacs_event->modifiers |= parse_solitary_modifier
5223 (ns_control_modifier);
5224
5225 if (flags & NS_FUNCTION_KEY_MASK && !fnKeysym)
5226 emacs_event->modifiers |=
5227 parse_solitary_modifier (ns_function_modifier);
5228
5229 left_is_none = NILP (ns_alternate_modifier)
5230 || EQ (ns_alternate_modifier, Qnone);
5231
5232 is_right_key = (flags & NSRightAlternateKeyMask)
5233 == NSRightAlternateKeyMask;
5234 is_left_key = (flags & NSLeftAlternateKeyMask) == NSLeftAlternateKeyMask
5235 || (! is_right_key
5236 && (flags & NSAlternateKeyMask) == NSAlternateKeyMask);
5237
5238 if (is_right_key)
5239 {
5240 if ((NILP (ns_right_alternate_modifier)
5241 || EQ (ns_right_alternate_modifier, Qnone)
5242 || (EQ (ns_right_alternate_modifier, Qleft) && left_is_none))
5243 && !fnKeysym)
5244 { /* accept pre-interp alt comb */
5245 if ([[theEvent characters] length] > 0)
5246 code = [[theEvent characters] characterAtIndex: 0];
5247 /*HACK: clear lone shift modifier to stop next if from firing */
5248 if (emacs_event->modifiers == shift_modifier)
5249 emacs_event->modifiers = 0;
5250 }
5251 else
5252 emacs_event->modifiers |= parse_solitary_modifier
5253 (EQ (ns_right_alternate_modifier, Qleft)
5254 ? ns_alternate_modifier
5255 : ns_right_alternate_modifier);
5256 }
5257
5258 if (is_left_key) /* default = meta */
5259 {
5260 if (left_is_none && !fnKeysym)
5261 { /* accept pre-interp alt comb */
5262 if ([[theEvent characters] length] > 0)
5263 code = [[theEvent characters] characterAtIndex: 0];
5264 /*HACK: clear lone shift modifier to stop next if from firing */
5265 if (emacs_event->modifiers == shift_modifier)
5266 emacs_event->modifiers = 0;
5267 }
5268 else
5269 emacs_event->modifiers |=
5270 parse_solitary_modifier (ns_alternate_modifier);
5271 }
5272
5273 if (NS_KEYLOG)
5274 fprintf (stderr, "keyDown: code =%x\tfnKey =%x\tflags = %x\tmods = %x\n",
5275 code, fnKeysym, flags, emacs_event->modifiers);
5276
5277 /* if it was a function key or had modifiers, pass it directly to emacs */
5278 if (fnKeysym || (emacs_event->modifiers
5279 && (emacs_event->modifiers != shift_modifier)
5280 && [[theEvent charactersIgnoringModifiers] length] > 0))
5281 /*[[theEvent characters] length] */
5282 {
5283 emacs_event->kind = NON_ASCII_KEYSTROKE_EVENT;
5284 if (code < 0x20)
5285 code |= (1<<28)|(3<<16);
5286 else if (code == 0x7f)
5287 code |= (1<<28)|(3<<16);
5288 else if (!fnKeysym)
5289 emacs_event->kind = code > 0xFF
5290 ? MULTIBYTE_CHAR_KEYSTROKE_EVENT : ASCII_KEYSTROKE_EVENT;
5291
5292 emacs_event->code = code;
5293 EV_TRAILER (theEvent);
5294 processingCompose = NO;
5295 return;
5296 }
5297 }
5298
5299
5300 #if !defined (NS_IMPL_COCOA) || MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_6
5301 /* if we get here we should send the key for input manager processing */
5302 /* Disable warning, there is nothing a user can do about it anyway, and
5303 it does not seem to matter. */
5304 #if 0
5305 if (firstTime && [[NSInputManager currentInputManager]
5306 wantsToDelayTextChangeNotifications] == NO)
5307 fprintf (stderr,
5308 "Emacs: WARNING: TextInput mgr wants marked text to be permanent!\n");
5309 #endif
5310 firstTime = NO;
5311 #endif
5312 if (NS_KEYLOG && !processingCompose)
5313 fprintf (stderr, "keyDown: Begin compose sequence.\n");
5314
5315 processingCompose = YES;
5316 [nsEvArray addObject: theEvent];
5317 [self interpretKeyEvents: nsEvArray];
5318 [nsEvArray removeObject: theEvent];
5319 }
5320
5321
5322 #ifdef NS_IMPL_COCOA
5323 /* Needed to pick up Ctrl-tab and possibly other events that OS X has
5324 decided not to send key-down for.
5325 See http://osdir.com/ml/editors.vim.mac/2007-10/msg00141.html
5326 This only applies on Tiger and earlier.
5327 If it matches one of these, send it on to keyDown. */
5328 -(void)keyUp: (NSEvent *)theEvent
5329 {
5330 int flags = [theEvent modifierFlags];
5331 int code = [theEvent keyCode];
5332 if (floor (NSAppKitVersionNumber) <= 824 /*NSAppKitVersionNumber10_4*/ &&
5333 code == 0x30 && (flags & NSControlKeyMask) && !(flags & NSCommandKeyMask))
5334 {
5335 if (NS_KEYLOG)
5336 fprintf (stderr, "keyUp: passed test");
5337 ns_fake_keydown = YES;
5338 [self keyDown: theEvent];
5339 }
5340 }
5341 #endif
5342
5343
5344 /* <NSTextInput> implementation (called through super interpretKeyEvents:]). */
5345
5346
5347 /* <NSTextInput>: called when done composing;
5348 NOTE: also called when we delete over working text, followed immed.
5349 by doCommandBySelector: deleteBackward: */
5350 - (void)insertText: (id)aString
5351 {
5352 int code;
5353 int len = [(NSString *)aString length];
5354 int i;
5355
5356 if (NS_KEYLOG)
5357 NSLog (@"insertText '%@'\tlen = %d", aString, len);
5358 processingCompose = NO;
5359
5360 if (!emacs_event)
5361 return;
5362
5363 /* first, clear any working text */
5364 if (workingText != nil)
5365 [self deleteWorkingText];
5366
5367 /* now insert the string as keystrokes */
5368 for (i =0; i<len; i++)
5369 {
5370 code = [aString characterAtIndex: i];
5371 /* TODO: still need this? */
5372 if (code == 0x2DC)
5373 code = '~'; /* 0x7E */
5374 if (code != 32) /* Space */
5375 emacs_event->modifiers = 0;
5376 emacs_event->kind
5377 = code > 0xFF ? MULTIBYTE_CHAR_KEYSTROKE_EVENT : ASCII_KEYSTROKE_EVENT;
5378 emacs_event->code = code;
5379 EV_TRAILER ((id)nil);
5380 }
5381 }
5382
5383
5384 /* <NSTextInput>: inserts display of composing characters */
5385 - (void)setMarkedText: (id)aString selectedRange: (NSRange)selRange
5386 {
5387 NSString *str = [aString respondsToSelector: @selector (string)] ?
5388 [aString string] : aString;
5389 if (NS_KEYLOG)
5390 NSLog (@"setMarkedText '%@' len =%lu range %lu from %lu",
5391 str, (unsigned long)[str length],
5392 (unsigned long)selRange.length,
5393 (unsigned long)selRange.location);
5394
5395 if (workingText != nil)
5396 [self deleteWorkingText];
5397 if ([str length] == 0)
5398 return;
5399
5400 if (!emacs_event)
5401 return;
5402
5403 processingCompose = YES;
5404 workingText = [str copy];
5405 ns_working_text = build_string ([workingText UTF8String]);
5406
5407 emacs_event->kind = NS_TEXT_EVENT;
5408 emacs_event->code = KEY_NS_PUT_WORKING_TEXT;
5409 EV_TRAILER ((id)nil);
5410 }
5411
5412
5413 /* delete display of composing characters [not in <NSTextInput>] */
5414 - (void)deleteWorkingText
5415 {
5416 if (workingText == nil)
5417 return;
5418 if (NS_KEYLOG)
5419 NSLog(@"deleteWorkingText len =%lu\n", (unsigned long)[workingText length]);
5420 [workingText release];
5421 workingText = nil;
5422 processingCompose = NO;
5423
5424 if (!emacs_event)
5425 return;
5426
5427 emacs_event->kind = NS_TEXT_EVENT;
5428 emacs_event->code = KEY_NS_UNPUT_WORKING_TEXT;
5429 EV_TRAILER ((id)nil);
5430 }
5431
5432
5433 - (BOOL)hasMarkedText
5434 {
5435 return workingText != nil;
5436 }
5437
5438
5439 - (NSRange)markedRange
5440 {
5441 NSRange rng = workingText != nil
5442 ? NSMakeRange (0, [workingText length]) : NSMakeRange (NSNotFound, 0);
5443 if (NS_KEYLOG)
5444 NSLog (@"markedRange request");
5445 return rng;
5446 }
5447
5448
5449 - (void)unmarkText
5450 {
5451 if (NS_KEYLOG)
5452 NSLog (@"unmark (accept) text");
5453 [self deleteWorkingText];
5454 processingCompose = NO;
5455 }
5456
5457
5458 /* used to position char selection windows, etc. */
5459 - (NSRect)firstRectForCharacterRange: (NSRange)theRange
5460 {
5461 NSRect rect;
5462 NSPoint pt;
5463 struct window *win = XWINDOW (FRAME_SELECTED_WINDOW (emacsframe));
5464 if (NS_KEYLOG)
5465 NSLog (@"firstRectForCharRange request");
5466
5467 rect.size.width = theRange.length * FRAME_COLUMN_WIDTH (emacsframe);
5468 rect.size.height = FRAME_LINE_HEIGHT (emacsframe);
5469 pt.x = WINDOW_TEXT_TO_FRAME_PIXEL_X (win, win->phys_cursor.x);
5470 pt.y = WINDOW_TO_FRAME_PIXEL_Y (win, win->phys_cursor.y
5471 +FRAME_LINE_HEIGHT (emacsframe));
5472
5473 pt = [self convertPoint: pt toView: nil];
5474 pt = [[self window] convertBaseToScreen: pt];
5475 rect.origin = pt;
5476 return rect;
5477 }
5478
5479
5480 - (NSInteger)conversationIdentifier
5481 {
5482 return (NSInteger)self;
5483 }
5484
5485
5486 - (void)doCommandBySelector: (SEL)aSelector
5487 {
5488 if (NS_KEYLOG)
5489 NSLog (@"doCommandBySelector: %@", NSStringFromSelector (aSelector));
5490
5491 processingCompose = NO;
5492 if (aSelector == @selector (deleteBackward:))
5493 {
5494 /* happens when user backspaces over an ongoing composition:
5495 throw a 'delete' into the event queue */
5496 if (!emacs_event)
5497 return;
5498 emacs_event->kind = NON_ASCII_KEYSTROKE_EVENT;
5499 emacs_event->code = 0xFF08;
5500 EV_TRAILER ((id)nil);
5501 }
5502 }
5503
5504 - (NSArray *)validAttributesForMarkedText
5505 {
5506 static NSArray *arr = nil;
5507 if (arr == nil) arr = [NSArray new];
5508 /* [[NSArray arrayWithObject: NSUnderlineStyleAttributeName] retain]; */
5509 return arr;
5510 }
5511
5512 - (NSRange)selectedRange
5513 {
5514 if (NS_KEYLOG)
5515 NSLog (@"selectedRange request");
5516 return NSMakeRange (NSNotFound, 0);
5517 }
5518
5519 #if defined (NS_IMPL_COCOA) || GNUSTEP_GUI_MAJOR_VERSION > 0 || \
5520 GNUSTEP_GUI_MINOR_VERSION > 22
5521 - (NSUInteger)characterIndexForPoint: (NSPoint)thePoint
5522 #else
5523 - (unsigned int)characterIndexForPoint: (NSPoint)thePoint
5524 #endif
5525 {
5526 if (NS_KEYLOG)
5527 NSLog (@"characterIndexForPoint request");
5528 return 0;
5529 }
5530
5531 - (NSAttributedString *)attributedSubstringFromRange: (NSRange)theRange
5532 {
5533 static NSAttributedString *str = nil;
5534 if (str == nil) str = [NSAttributedString new];
5535 if (NS_KEYLOG)
5536 NSLog (@"attributedSubstringFromRange request");
5537 return str;
5538 }
5539
5540 /* End <NSTextInput> impl. */
5541 /*****************************************************************************/
5542
5543
5544 /* This is what happens when the user presses a mouse button. */
5545 - (void)mouseDown: (NSEvent *)theEvent
5546 {
5547 struct ns_display_info *dpyinfo = FRAME_DISPLAY_INFO (emacsframe);
5548 NSPoint p = [self convertPoint: [theEvent locationInWindow] fromView: nil];
5549
5550 NSTRACE (mouseDown);
5551
5552 [self deleteWorkingText];
5553
5554 if (!emacs_event)
5555 return;
5556
5557 dpyinfo->last_mouse_frame = emacsframe;
5558 /* appears to be needed to prevent spurious movement events generated on
5559 button clicks */
5560 emacsframe->mouse_moved = 0;
5561
5562 if ([theEvent type] == NSScrollWheel)
5563 {
5564 CGFloat delta = [theEvent deltaY];
5565 /* Mac notebooks send wheel events w/delta =0 when trackpad scrolling */
5566 if (delta == 0)
5567 {
5568 delta = [theEvent deltaX];
5569 if (delta == 0)
5570 {
5571 NSTRACE (deltaIsZero);
5572 return;
5573 }
5574 emacs_event->kind = HORIZ_WHEEL_EVENT;
5575 }
5576 else
5577 emacs_event->kind = WHEEL_EVENT;
5578
5579 emacs_event->code = 0;
5580 emacs_event->modifiers = EV_MODIFIERS (theEvent) |
5581 ((delta > 0) ? up_modifier : down_modifier);
5582 }
5583 else
5584 {
5585 emacs_event->kind = MOUSE_CLICK_EVENT;
5586 emacs_event->code = EV_BUTTON (theEvent);
5587 emacs_event->modifiers = EV_MODIFIERS (theEvent)
5588 | EV_UDMODIFIERS (theEvent);
5589 }
5590 XSETINT (emacs_event->x, lrint (p.x));
5591 XSETINT (emacs_event->y, lrint (p.y));
5592 EV_TRAILER (theEvent);
5593 }
5594
5595
5596 - (void)rightMouseDown: (NSEvent *)theEvent
5597 {
5598 NSTRACE (rightMouseDown);
5599 [self mouseDown: theEvent];
5600 }
5601
5602
5603 - (void)otherMouseDown: (NSEvent *)theEvent
5604 {
5605 NSTRACE (otherMouseDown);
5606 [self mouseDown: theEvent];
5607 }
5608
5609
5610 - (void)mouseUp: (NSEvent *)theEvent
5611 {
5612 NSTRACE (mouseUp);
5613 [self mouseDown: theEvent];
5614 }
5615
5616
5617 - (void)rightMouseUp: (NSEvent *)theEvent
5618 {
5619 NSTRACE (rightMouseUp);
5620 [self mouseDown: theEvent];
5621 }
5622
5623
5624 - (void)otherMouseUp: (NSEvent *)theEvent
5625 {
5626 NSTRACE (otherMouseUp);
5627 [self mouseDown: theEvent];
5628 }
5629
5630
5631 - (void) scrollWheel: (NSEvent *)theEvent
5632 {
5633 NSTRACE (scrollWheel);
5634 [self mouseDown: theEvent];
5635 }
5636
5637
5638 /* Tell emacs the mouse has moved. */
5639 - (void)mouseMoved: (NSEvent *)e
5640 {
5641 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (emacsframe);
5642 struct ns_display_info *dpyinfo = FRAME_DISPLAY_INFO (emacsframe);
5643 Lisp_Object frame;
5644 NSPoint pt;
5645
5646 // NSTRACE (mouseMoved);
5647
5648 dpyinfo->last_mouse_movement_time = EV_TIMESTAMP (e);
5649 pt = [self convertPoint: [e locationInWindow] fromView: nil];
5650 dpyinfo->last_mouse_motion_x = pt.x;
5651 dpyinfo->last_mouse_motion_y = pt.y;
5652
5653 /* update any mouse face */
5654 if (hlinfo->mouse_face_hidden)
5655 {
5656 hlinfo->mouse_face_hidden = 0;
5657 clear_mouse_face (hlinfo);
5658 }
5659
5660 /* tooltip handling */
5661 previous_help_echo_string = help_echo_string;
5662 help_echo_string = Qnil;
5663
5664 if (!NILP (Vmouse_autoselect_window))
5665 {
5666 NSTRACE (mouse_autoselect_window);
5667 static Lisp_Object last_mouse_window;
5668 Lisp_Object window
5669 = window_from_coordinates (emacsframe, pt.x, pt.y, 0, 0);
5670
5671 if (WINDOWP (window)
5672 && !EQ (window, last_mouse_window)
5673 && !EQ (window, selected_window)
5674 && (focus_follows_mouse
5675 || (EQ (XWINDOW (window)->frame,
5676 XWINDOW (selected_window)->frame))))
5677 {
5678 NSTRACE (in_window);
5679 emacs_event->kind = SELECT_WINDOW_EVENT;
5680 emacs_event->frame_or_window = window;
5681 EV_TRAILER2 (e);
5682 }
5683 /* Remember the last window where we saw the mouse. */
5684 last_mouse_window = window;
5685 }
5686
5687 if (!note_mouse_movement (emacsframe, pt.x, pt.y))
5688 help_echo_string = previous_help_echo_string;
5689
5690 XSETFRAME (frame, emacsframe);
5691 if (!NILP (help_echo_string) || !NILP (previous_help_echo_string))
5692 {
5693 /* NOTE: help_echo_{window,pos,object} are set in xdisp.c
5694 (note_mouse_highlight), which is called through the
5695 note_mouse_movement () call above */
5696 any_help_event_p = YES;
5697 gen_help_event (help_echo_string, frame, help_echo_window,
5698 help_echo_object, help_echo_pos);
5699 }
5700
5701 if (emacsframe->mouse_moved && send_appdefined)
5702 ns_send_appdefined (-1);
5703 }
5704
5705
5706 - (void)mouseDragged: (NSEvent *)e
5707 {
5708 NSTRACE (mouseDragged);
5709 [self mouseMoved: e];
5710 }
5711
5712
5713 - (void)rightMouseDragged: (NSEvent *)e
5714 {
5715 NSTRACE (rightMouseDragged);
5716 [self mouseMoved: e];
5717 }
5718
5719
5720 - (void)otherMouseDragged: (NSEvent *)e
5721 {
5722 NSTRACE (otherMouseDragged);
5723 [self mouseMoved: e];
5724 }
5725
5726
5727 - (BOOL)windowShouldClose: (id)sender
5728 {
5729 NSEvent *e =[[self window] currentEvent];
5730
5731 NSTRACE (windowShouldClose);
5732 windowClosing = YES;
5733 if (!emacs_event)
5734 return NO;
5735 emacs_event->kind = DELETE_WINDOW_EVENT;
5736 emacs_event->modifiers = 0;
5737 emacs_event->code = 0;
5738 EV_TRAILER (e);
5739 /* Don't close this window, let this be done from lisp code. */
5740 return NO;
5741 }
5742
5743 - (void) updateFrameSize: (BOOL) delay;
5744 {
5745 NSWindow *window = [self window];
5746 NSRect wr = [window frame];
5747 int extra = 0;
5748 int oldc = cols, oldr = rows;
5749 int oldw = FRAME_PIXEL_WIDTH (emacsframe);
5750 int oldh = FRAME_PIXEL_HEIGHT (emacsframe);
5751 int neww, newh;
5752
5753 NSTRACE (updateFrameSize);
5754 NSTRACE_SIZE ("Original size", NSMakeSize (oldw, oldh));
5755
5756 if (! [self isFullscreen])
5757 {
5758 #ifdef NS_IMPL_GNUSTEP
5759 // GNUstep does not always update the tool bar height. Force it.
5760 if (toolbar) update_frame_tool_bar (emacsframe);
5761 #endif
5762
5763 extra = FRAME_NS_TITLEBAR_HEIGHT (emacsframe)
5764 + FRAME_TOOLBAR_HEIGHT (emacsframe);
5765 }
5766
5767 if (wait_for_tool_bar)
5768 {
5769 if (FRAME_TOOLBAR_HEIGHT (emacsframe) == 0)
5770 return;
5771 wait_for_tool_bar = NO;
5772 }
5773
5774 neww = (int)wr.size.width - emacsframe->border_width;
5775 newh = (int)wr.size.height - extra;
5776
5777 cols = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (emacsframe, neww);
5778 rows = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (emacsframe, newh);
5779
5780 if (cols < MINWIDTH)
5781 cols = MINWIDTH;
5782
5783 if (rows < MINHEIGHT)
5784 rows = MINHEIGHT;
5785
5786 if (oldr != rows || oldc != cols || neww != oldw || newh != oldh)
5787 {
5788 NSView *view = FRAME_NS_VIEW (emacsframe);
5789 NSWindow *win = [view window];
5790 NSSize sz = [win resizeIncrements];
5791
5792 change_frame_size (emacsframe,
5793 FRAME_PIXEL_TO_TEXT_WIDTH (emacsframe, neww),
5794 FRAME_PIXEL_TO_TEXT_HEIGHT (emacsframe, newh),
5795 0, delay, 0, 1);
5796 SET_FRAME_GARBAGED (emacsframe);
5797 cancel_mouse_face (emacsframe);
5798
5799 // Did resize increments change because of a font change?
5800 if (sz.width != FRAME_COLUMN_WIDTH (emacsframe) ||
5801 sz.height != FRAME_LINE_HEIGHT (emacsframe))
5802 {
5803 sz.width = FRAME_COLUMN_WIDTH (emacsframe);
5804 sz.height = FRAME_LINE_HEIGHT (emacsframe);
5805 [win setResizeIncrements: sz];
5806
5807 NSTRACE_SIZE ("New size", NSMakeSize (neww, newh));
5808 }
5809
5810 [view setFrame: NSMakeRect (0, 0, neww, newh)];
5811 [self windowDidMove:nil]; // Update top/left.
5812 }
5813 }
5814
5815 - (NSSize)windowWillResize: (NSWindow *)sender toSize: (NSSize)frameSize
5816 /* normalize frame to gridded text size */
5817 {
5818 int extra = 0;
5819
5820 NSTRACE (windowWillResize);
5821 NSTRACE_SIZE ("Original size", frameSize);
5822 /*fprintf (stderr,"Window will resize: %.0f x %.0f\n",frameSize.width,frameSize.height); */
5823
5824 if (fs_state == FULLSCREEN_MAXIMIZED
5825 && (maximized_width != (int)frameSize.width
5826 || maximized_height != (int)frameSize.height))
5827 [self setFSValue: FULLSCREEN_NONE];
5828 else if (fs_state == FULLSCREEN_WIDTH
5829 && maximized_width != (int)frameSize.width)
5830 [self setFSValue: FULLSCREEN_NONE];
5831 else if (fs_state == FULLSCREEN_HEIGHT
5832 && maximized_height != (int)frameSize.height)
5833 [self setFSValue: FULLSCREEN_NONE];
5834 if (fs_state == FULLSCREEN_NONE)
5835 maximized_width = maximized_height = -1;
5836
5837 if (! [self isFullscreen])
5838 {
5839 extra = FRAME_NS_TITLEBAR_HEIGHT (emacsframe)
5840 + FRAME_TOOLBAR_HEIGHT (emacsframe);
5841 }
5842
5843 cols = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (emacsframe, frameSize.width);
5844 if (cols < MINWIDTH)
5845 cols = MINWIDTH;
5846
5847 rows = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (emacsframe,
5848 frameSize.height - extra);
5849 if (rows < MINHEIGHT)
5850 rows = MINHEIGHT;
5851 #ifdef NS_IMPL_COCOA
5852 {
5853 /* this sets window title to have size in it; the wm does this under GS */
5854 NSRect r = [[self window] frame];
5855 if (r.size.height == frameSize.height && r.size.width == frameSize.width)
5856 {
5857 if (old_title != 0)
5858 {
5859 xfree (old_title);
5860 old_title = 0;
5861 }
5862 }
5863 else if (fs_state == FULLSCREEN_NONE && ! maximizing_resize)
5864 {
5865 char *size_title;
5866 NSWindow *window = [self window];
5867 if (old_title == 0)
5868 {
5869 char *t = strdup ([[[self window] title] UTF8String]);
5870 char *pos = strstr (t, " — ");
5871 if (pos)
5872 *pos = '\0';
5873 old_title = t;
5874 }
5875 size_title = xmalloc (strlen (old_title) + 40);
5876 esprintf (size_title, "%s — (%d x %d)", old_title, cols, rows);
5877 [window setTitle: [NSString stringWithUTF8String: size_title]];
5878 [window display];
5879 xfree (size_title);
5880 }
5881 }
5882 #endif /* NS_IMPL_COCOA */
5883 /*fprintf (stderr," ...size became %.0f x %.0f (%d x %d)\n",frameSize.width,frameSize.height,cols,rows); */
5884
5885 return frameSize;
5886 }
5887
5888
5889 - (void)windowDidResize: (NSNotification *)notification
5890 {
5891 if (! [self fsIsNative])
5892 {
5893 NSWindow *theWindow = [notification object];
5894 /* We can get notification on the non-FS window when in
5895 fullscreen mode. */
5896 if ([self window] != theWindow) return;
5897 }
5898
5899 #ifdef NS_IMPL_GNUSTEP
5900 NSWindow *theWindow = [notification object];
5901
5902 /* In GNUstep, at least currently, it's possible to get a didResize
5903 without getting a willResize.. therefore we need to act as if we got
5904 the willResize now */
5905 NSSize sz = [theWindow frame].size;
5906 sz = [self windowWillResize: theWindow toSize: sz];
5907 #endif /* NS_IMPL_GNUSTEP */
5908
5909 NSTRACE (windowDidResize);
5910 /*fprintf (stderr,"windowDidResize: %.0f\n",[theWindow frame].size.height); */
5911
5912 if (cols > 0 && rows > 0)
5913 {
5914 [self updateFrameSize: YES];
5915 }
5916
5917 ns_send_appdefined (-1);
5918 }
5919
5920 #ifdef NS_IMPL_COCOA
5921 - (void)viewDidEndLiveResize
5922 {
5923 [super viewDidEndLiveResize];
5924 if (old_title != 0)
5925 {
5926 [[self window] setTitle: [NSString stringWithUTF8String: old_title]];
5927 xfree (old_title);
5928 old_title = 0;
5929 }
5930 maximizing_resize = NO;
5931 }
5932 #endif /* NS_IMPL_COCOA */
5933
5934
5935 - (void)windowDidBecomeKey: (NSNotification *)notification
5936 /* cf. x_detect_focus_change(), x_focus_changed(), x_new_focus_frame() */
5937 {
5938 struct ns_display_info *dpyinfo = FRAME_DISPLAY_INFO (emacsframe);
5939 struct frame *old_focus = dpyinfo->x_focus_frame;
5940
5941 NSTRACE (windowDidBecomeKey);
5942
5943 if (emacsframe != old_focus)
5944 dpyinfo->x_focus_frame = emacsframe;
5945
5946 ns_frame_rehighlight (emacsframe);
5947
5948 if (emacs_event)
5949 {
5950 emacs_event->kind = FOCUS_IN_EVENT;
5951 EV_TRAILER ((id)nil);
5952 }
5953 }
5954
5955
5956 - (void)windowDidResignKey: (NSNotification *)notification
5957 /* cf. x_detect_focus_change(), x_focus_changed(), x_new_focus_frame() */
5958 {
5959 struct ns_display_info *dpyinfo = FRAME_DISPLAY_INFO (emacsframe);
5960 BOOL is_focus_frame = dpyinfo->x_focus_frame == emacsframe;
5961 NSTRACE (windowDidResignKey);
5962
5963 if (is_focus_frame)
5964 dpyinfo->x_focus_frame = 0;
5965
5966 emacsframe->mouse_moved = 0;
5967 ns_frame_rehighlight (emacsframe);
5968
5969 /* FIXME: for some reason needed on second and subsequent clicks away
5970 from sole-frame Emacs to get hollow box to show */
5971 if (!windowClosing && [[self window] isVisible] == YES)
5972 {
5973 x_update_cursor (emacsframe, 1);
5974 x_set_frame_alpha (emacsframe);
5975 }
5976
5977 if (any_help_event_p)
5978 {
5979 Lisp_Object frame;
5980 XSETFRAME (frame, emacsframe);
5981 help_echo_string = Qnil;
5982 gen_help_event (Qnil, frame, Qnil, Qnil, 0);
5983 }
5984
5985 if (emacs_event && is_focus_frame)
5986 {
5987 [self deleteWorkingText];
5988 emacs_event->kind = FOCUS_OUT_EVENT;
5989 EV_TRAILER ((id)nil);
5990 }
5991 }
5992
5993
5994 - (void)windowWillMiniaturize: sender
5995 {
5996 NSTRACE (windowWillMiniaturize);
5997 }
5998
5999
6000 - (BOOL)isFlipped
6001 {
6002 return YES;
6003 }
6004
6005
6006 - (BOOL)isOpaque
6007 {
6008 return NO;
6009 }
6010
6011
6012 - initFrameFromEmacs: (struct frame *)f
6013 {
6014 NSRect r, wr;
6015 Lisp_Object tem;
6016 NSWindow *win;
6017 NSSize sz;
6018 NSColor *col;
6019 NSString *name;
6020
6021 NSTRACE (initFrameFromEmacs);
6022
6023 windowClosing = NO;
6024 processingCompose = NO;
6025 scrollbarsNeedingUpdate = 0;
6026 fs_state = FULLSCREEN_NONE;
6027 fs_before_fs = next_maximized = -1;
6028 #ifdef HAVE_NATIVE_FS
6029 fs_is_native = ns_use_native_fullscreen;
6030 #else
6031 fs_is_native = NO;
6032 #endif
6033 maximized_width = maximized_height = -1;
6034 nonfs_window = nil;
6035
6036 /*fprintf (stderr,"init with %d, %d\n",f->text_cols, f->text_lines); */
6037
6038 ns_userRect = NSMakeRect (0, 0, 0, 0);
6039 r = NSMakeRect (0, 0, FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, f->text_cols),
6040 FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, f->text_lines));
6041 [self initWithFrame: r];
6042 [self setAutoresizingMask: NSViewWidthSizable | NSViewHeightSizable];
6043
6044 FRAME_NS_VIEW (f) = self;
6045 emacsframe = f;
6046 #ifdef NS_IMPL_COCOA
6047 old_title = 0;
6048 maximizing_resize = NO;
6049 #endif
6050
6051 win = [[EmacsWindow alloc]
6052 initWithContentRect: r
6053 styleMask: (NSResizableWindowMask |
6054 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_7
6055 NSTitledWindowMask |
6056 #endif
6057 NSMiniaturizableWindowMask |
6058 NSClosableWindowMask)
6059 backing: NSBackingStoreBuffered
6060 defer: YES];
6061
6062 #ifdef HAVE_NATIVE_FS
6063 [win setCollectionBehavior:NSWindowCollectionBehaviorFullScreenPrimary];
6064 #endif
6065
6066 wr = [win frame];
6067 bwidth = f->border_width = wr.size.width - r.size.width;
6068 tibar_height = FRAME_NS_TITLEBAR_HEIGHT (f) = wr.size.height - r.size.height;
6069
6070 [win setAcceptsMouseMovedEvents: YES];
6071 [win setDelegate: self];
6072 [win useOptimizedDrawing: YES];
6073
6074 sz.width = FRAME_COLUMN_WIDTH (f);
6075 sz.height = FRAME_LINE_HEIGHT (f);
6076 [win setResizeIncrements: sz];
6077
6078 [[win contentView] addSubview: self];
6079
6080 if (ns_drag_types)
6081 [self registerForDraggedTypes: ns_drag_types];
6082
6083 tem = f->name;
6084 name = [NSString stringWithUTF8String:
6085 NILP (tem) ? "Emacs" : SSDATA (tem)];
6086 [win setTitle: name];
6087
6088 /* toolbar support */
6089 toolbar = [[EmacsToolbar alloc] initForView: self withIdentifier:
6090 [NSString stringWithFormat: @"Emacs Frame %d",
6091 ns_window_num]];
6092 [win setToolbar: toolbar];
6093 [toolbar setVisible: NO];
6094
6095 /* Don't set frame garbaged until tool bar is up to date?
6096 This avoids an extra clear and redraw (flicker) at frame creation. */
6097 if (FRAME_EXTERNAL_TOOL_BAR (f)) wait_for_tool_bar = YES;
6098 else wait_for_tool_bar = NO;
6099
6100
6101 #ifdef NS_IMPL_COCOA
6102 {
6103 NSButton *toggleButton;
6104 toggleButton = [win standardWindowButton: NSWindowToolbarButton];
6105 [toggleButton setTarget: self];
6106 [toggleButton setAction: @selector (toggleToolbar: )];
6107 }
6108 #endif
6109 FRAME_TOOLBAR_HEIGHT (f) = 0;
6110
6111 tem = f->icon_name;
6112 if (!NILP (tem))
6113 [win setMiniwindowTitle:
6114 [NSString stringWithUTF8String: SSDATA (tem)]];
6115
6116 {
6117 NSScreen *screen = [win screen];
6118
6119 if (screen != 0)
6120 [win setFrameTopLeftPoint: NSMakePoint
6121 (IN_BOUND (-SCREENMAX, f->left_pos, SCREENMAX),
6122 IN_BOUND (-SCREENMAX,
6123 [screen frame].size.height - NS_TOP_POS (f), SCREENMAX))];
6124 }
6125
6126 [win makeFirstResponder: self];
6127
6128 col = ns_lookup_indexed_color (NS_FACE_BACKGROUND
6129 (FRAME_DEFAULT_FACE (emacsframe)), emacsframe);
6130 [win setBackgroundColor: col];
6131 if ([col alphaComponent] != (EmacsCGFloat) 1.0)
6132 [win setOpaque: NO];
6133
6134 [self allocateGState];
6135
6136 [NSApp registerServicesMenuSendTypes: ns_send_types
6137 returnTypes: nil];
6138
6139 ns_window_num++;
6140 return self;
6141 }
6142
6143
6144 - (void)windowDidMove: sender
6145 {
6146 NSWindow *win = [self window];
6147 NSRect r = [win frame];
6148 NSArray *screens = [NSScreen screens];
6149 NSScreen *screen = [screens objectAtIndex: 0];
6150
6151 NSTRACE (windowDidMove);
6152
6153 if (!emacsframe->output_data.ns)
6154 return;
6155 if (screen != nil)
6156 {
6157 emacsframe->left_pos = r.origin.x;
6158 emacsframe->top_pos =
6159 [screen frame].size.height - (r.origin.y + r.size.height);
6160 }
6161 }
6162
6163
6164 /* Called AFTER method below, but before our windowWillResize call there leads
6165 to windowDidResize -> x_set_window_size. Update emacs' notion of frame
6166 location so set_window_size moves the frame. */
6167 - (BOOL)windowShouldZoom: (NSWindow *)sender toFrame: (NSRect)newFrame
6168 {
6169 emacsframe->output_data.ns->zooming = 1;
6170 return YES;
6171 }
6172
6173
6174 /* Override to do something slightly nonstandard, but nice. First click on
6175 zoom button will zoom vertically. Second will zoom completely. Third
6176 returns to original. */
6177 - (NSRect)windowWillUseStandardFrame:(NSWindow *)sender
6178 defaultFrame:(NSRect)defaultFrame
6179 {
6180 NSRect result = [sender frame];
6181
6182 NSTRACE (windowWillUseStandardFrame);
6183
6184 if (fs_before_fs != -1) /* Entering fullscreen */
6185 {
6186 result = defaultFrame;
6187 }
6188 else if (next_maximized == FULLSCREEN_HEIGHT
6189 || (next_maximized == -1
6190 && abs (defaultFrame.size.height - result.size.height)
6191 > FRAME_LINE_HEIGHT (emacsframe)))
6192 {
6193 /* first click */
6194 ns_userRect = result;
6195 maximized_height = result.size.height = defaultFrame.size.height;
6196 maximized_width = -1;
6197 result.origin.y = defaultFrame.origin.y;
6198 [self setFSValue: FULLSCREEN_HEIGHT];
6199 #ifdef NS_IMPL_COCOA
6200 maximizing_resize = YES;
6201 #endif
6202 }
6203 else if (next_maximized == FULLSCREEN_WIDTH)
6204 {
6205 ns_userRect = result;
6206 maximized_width = result.size.width = defaultFrame.size.width;
6207 maximized_height = -1;
6208 result.origin.x = defaultFrame.origin.x;
6209 [self setFSValue: FULLSCREEN_WIDTH];
6210 }
6211 else if (next_maximized == FULLSCREEN_MAXIMIZED
6212 || (next_maximized == -1
6213 && abs (defaultFrame.size.width - result.size.width)
6214 > FRAME_COLUMN_WIDTH (emacsframe)))
6215 {
6216 result = defaultFrame; /* second click */
6217 maximized_width = result.size.width;
6218 maximized_height = result.size.height;
6219 [self setFSValue: FULLSCREEN_MAXIMIZED];
6220 #ifdef NS_IMPL_COCOA
6221 maximizing_resize = YES;
6222 #endif
6223 }
6224 else
6225 {
6226 /* restore */
6227 result = ns_userRect.size.height ? ns_userRect : result;
6228 ns_userRect = NSMakeRect (0, 0, 0, 0);
6229 #ifdef NS_IMPL_COCOA
6230 maximizing_resize = fs_state != FULLSCREEN_NONE;
6231 #endif
6232 [self setFSValue: FULLSCREEN_NONE];
6233 maximized_width = maximized_height = -1;
6234 }
6235
6236 if (fs_before_fs == -1) next_maximized = -1;
6237 [self windowWillResize: sender toSize: result.size];
6238 return result;
6239 }
6240
6241
6242 - (void)windowDidDeminiaturize: sender
6243 {
6244 NSTRACE (windowDidDeminiaturize);
6245 if (!emacsframe->output_data.ns)
6246 return;
6247
6248 SET_FRAME_ICONIFIED (emacsframe, 0);
6249 SET_FRAME_VISIBLE (emacsframe, 1);
6250 windows_or_buffers_changed = 63;
6251
6252 if (emacs_event)
6253 {
6254 emacs_event->kind = DEICONIFY_EVENT;
6255 EV_TRAILER ((id)nil);
6256 }
6257 }
6258
6259
6260 - (void)windowDidExpose: sender
6261 {
6262 NSTRACE (windowDidExpose);
6263 if (!emacsframe->output_data.ns)
6264 return;
6265
6266 SET_FRAME_VISIBLE (emacsframe, 1);
6267 SET_FRAME_GARBAGED (emacsframe);
6268
6269 if (send_appdefined)
6270 ns_send_appdefined (-1);
6271 }
6272
6273
6274 - (void)windowDidMiniaturize: sender
6275 {
6276 NSTRACE (windowDidMiniaturize);
6277 if (!emacsframe->output_data.ns)
6278 return;
6279
6280 SET_FRAME_ICONIFIED (emacsframe, 1);
6281 SET_FRAME_VISIBLE (emacsframe, 0);
6282
6283 if (emacs_event)
6284 {
6285 emacs_event->kind = ICONIFY_EVENT;
6286 EV_TRAILER ((id)nil);
6287 }
6288 }
6289
6290 #ifdef HAVE_NATIVE_FS
6291 - (NSApplicationPresentationOptions)window:(NSWindow *)window
6292 willUseFullScreenPresentationOptions:
6293 (NSApplicationPresentationOptions)proposedOptions
6294 {
6295 return proposedOptions|NSApplicationPresentationAutoHideToolbar;
6296 }
6297 #endif
6298
6299 - (void)windowWillEnterFullScreen:(NSNotification *)notification
6300 {
6301 fs_before_fs = fs_state;
6302 }
6303
6304 - (void)windowDidEnterFullScreen:(NSNotification *)notification
6305 {
6306 [self setFSValue: FULLSCREEN_BOTH];
6307 if (! [self fsIsNative])
6308 {
6309 [self windowDidBecomeKey:notification];
6310 [nonfs_window orderOut:self];
6311 }
6312 else
6313 {
6314 BOOL tbar_visible = FRAME_EXTERNAL_TOOL_BAR (emacsframe) ? YES : NO;
6315 #ifdef NS_IMPL_COCOA
6316 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_7
6317 unsigned val = (unsigned)[NSApp presentationOptions];
6318
6319 // OSX 10.7 bug fix, the menu won't appear without this.
6320 // val is non-zero on other OSX versions.
6321 if (val == 0)
6322 {
6323 NSApplicationPresentationOptions options
6324 = NSApplicationPresentationAutoHideDock
6325 | NSApplicationPresentationAutoHideMenuBar
6326 | NSApplicationPresentationFullScreen
6327 | NSApplicationPresentationAutoHideToolbar;
6328
6329 [NSApp setPresentationOptions: options];
6330 }
6331 #endif
6332 #endif
6333 [toolbar setVisible:tbar_visible];
6334 }
6335 }
6336
6337 - (void)windowWillExitFullScreen:(NSNotification *)notification
6338 {
6339 if (next_maximized != -1)
6340 fs_before_fs = next_maximized;
6341 }
6342
6343 - (void)windowDidExitFullScreen:(NSNotification *)notification
6344 {
6345 [self setFSValue: fs_before_fs];
6346 fs_before_fs = -1;
6347 #ifdef HAVE_NATIVE_FS
6348 [self updateCollectionBehavior];
6349 #endif
6350 if (FRAME_EXTERNAL_TOOL_BAR (emacsframe))
6351 {
6352 [toolbar setVisible:YES];
6353 update_frame_tool_bar (emacsframe);
6354 [self updateFrameSize:YES];
6355 [[self window] display];
6356 }
6357 else
6358 [toolbar setVisible:NO];
6359
6360 if (next_maximized != -1)
6361 [[self window] performZoom:self];
6362 }
6363
6364 - (BOOL)fsIsNative
6365 {
6366 return fs_is_native;
6367 }
6368
6369 - (BOOL)isFullscreen
6370 {
6371 if (! fs_is_native) return nonfs_window != nil;
6372 #ifdef HAVE_NATIVE_FS
6373 return ([[self window] styleMask] & NSFullScreenWindowMask) != 0;
6374 #else
6375 return NO;
6376 #endif
6377 }
6378
6379 #ifdef HAVE_NATIVE_FS
6380 - (void)updateCollectionBehavior
6381 {
6382 if (! [self isFullscreen])
6383 {
6384 NSWindow *win = [self window];
6385 NSWindowCollectionBehavior b = [win collectionBehavior];
6386 if (ns_use_native_fullscreen)
6387 b |= NSWindowCollectionBehaviorFullScreenPrimary;
6388 else
6389 b &= ~NSWindowCollectionBehaviorFullScreenPrimary;
6390
6391 [win setCollectionBehavior: b];
6392 fs_is_native = ns_use_native_fullscreen;
6393 }
6394 }
6395 #endif
6396
6397 - (void)toggleFullScreen: (id)sender
6398 {
6399 NSWindow *w, *fw;
6400 BOOL onFirstScreen;
6401 struct frame *f;
6402 NSSize sz;
6403 NSRect r, wr;
6404 NSColor *col;
6405
6406 if (fs_is_native)
6407 {
6408 #ifdef HAVE_NATIVE_FS
6409 [[self window] toggleFullScreen:sender];
6410 #endif
6411 return;
6412 }
6413
6414 w = [self window];
6415 onFirstScreen = [[w screen] isEqual:[[NSScreen screens] objectAtIndex:0]];
6416 f = emacsframe;
6417 wr = [w frame];
6418 col = ns_lookup_indexed_color (NS_FACE_BACKGROUND
6419 (FRAME_DEFAULT_FACE (f)),
6420 f);
6421
6422 sz.width = FRAME_COLUMN_WIDTH (f);
6423 sz.height = FRAME_LINE_HEIGHT (f);
6424
6425 if (fs_state != FULLSCREEN_BOTH)
6426 {
6427 NSScreen *screen = [w screen];
6428
6429 #if defined (NS_IMPL_COCOA) && \
6430 MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_9
6431 /* Hide ghost menu bar on secondary monitor? */
6432 if (! onFirstScreen)
6433 onFirstScreen = [NSScreen screensHaveSeparateSpaces];
6434 #endif
6435 /* Hide dock and menubar if we are on the primary screen. */
6436 if (onFirstScreen)
6437 {
6438 #if defined (NS_IMPL_COCOA) && \
6439 MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
6440 NSApplicationPresentationOptions options
6441 = NSApplicationPresentationAutoHideDock
6442 | NSApplicationPresentationAutoHideMenuBar;
6443
6444 [NSApp setPresentationOptions: options];
6445 #else
6446 [NSMenu setMenuBarVisible:NO];
6447 #endif
6448 }
6449
6450 fw = [[EmacsFSWindow alloc]
6451 initWithContentRect:[w contentRectForFrameRect:wr]
6452 styleMask:NSBorderlessWindowMask
6453 backing:NSBackingStoreBuffered
6454 defer:YES
6455 screen:screen];
6456
6457 [fw setContentView:[w contentView]];
6458 [fw setTitle:[w title]];
6459 [fw setDelegate:self];
6460 [fw setAcceptsMouseMovedEvents: YES];
6461 [fw useOptimizedDrawing: YES];
6462 [fw setResizeIncrements: sz];
6463 [fw setBackgroundColor: col];
6464 if ([col alphaComponent] != (EmacsCGFloat) 1.0)
6465 [fw setOpaque: NO];
6466
6467 f->border_width = 0;
6468 FRAME_NS_TITLEBAR_HEIGHT (f) = 0;
6469 tobar_height = FRAME_TOOLBAR_HEIGHT (f);
6470 FRAME_TOOLBAR_HEIGHT (f) = 0;
6471
6472 nonfs_window = w;
6473
6474 [self windowWillEnterFullScreen:nil];
6475 [fw makeKeyAndOrderFront:NSApp];
6476 [fw makeFirstResponder:self];
6477 [w orderOut:self];
6478 r = [fw frameRectForContentRect:[screen frame]];
6479 [fw setFrame: r display:YES animate:YES];
6480 [self windowDidEnterFullScreen:nil];
6481 [fw display];
6482 }
6483 else
6484 {
6485 fw = w;
6486 w = nonfs_window;
6487 nonfs_window = nil;
6488
6489 if (onFirstScreen)
6490 {
6491 #if defined (NS_IMPL_COCOA) && \
6492 MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
6493 [NSApp setPresentationOptions: NSApplicationPresentationDefault];
6494 #else
6495 [NSMenu setMenuBarVisible:YES];
6496 #endif
6497 }
6498
6499 [w setContentView:[fw contentView]];
6500 [w setResizeIncrements: sz];
6501 [w setBackgroundColor: col];
6502 if ([col alphaComponent] != (EmacsCGFloat) 1.0)
6503 [w setOpaque: NO];
6504
6505 f->border_width = bwidth;
6506 FRAME_NS_TITLEBAR_HEIGHT (f) = tibar_height;
6507 if (FRAME_EXTERNAL_TOOL_BAR (f))
6508 FRAME_TOOLBAR_HEIGHT (f) = tobar_height;
6509
6510 [self windowWillExitFullScreen:nil];
6511 [fw setFrame: [w frame] display:YES animate:YES];
6512 [fw close];
6513 [w makeKeyAndOrderFront:NSApp];
6514 [self windowDidExitFullScreen:nil];
6515 [self updateFrameSize:YES];
6516 }
6517 }
6518
6519 - (void)handleFS
6520 {
6521 if (fs_state != emacsframe->want_fullscreen)
6522 {
6523 if (fs_state == FULLSCREEN_BOTH)
6524 {
6525 [self toggleFullScreen:self];
6526 }
6527
6528 switch (emacsframe->want_fullscreen)
6529 {
6530 case FULLSCREEN_BOTH:
6531 [self toggleFullScreen:self];
6532 break;
6533 case FULLSCREEN_WIDTH:
6534 next_maximized = FULLSCREEN_WIDTH;
6535 if (fs_state != FULLSCREEN_BOTH)
6536 [[self window] performZoom:self];
6537 break;
6538 case FULLSCREEN_HEIGHT:
6539 next_maximized = FULLSCREEN_HEIGHT;
6540 if (fs_state != FULLSCREEN_BOTH)
6541 [[self window] performZoom:self];
6542 break;
6543 case FULLSCREEN_MAXIMIZED:
6544 next_maximized = FULLSCREEN_MAXIMIZED;
6545 if (fs_state != FULLSCREEN_BOTH)
6546 [[self window] performZoom:self];
6547 break;
6548 case FULLSCREEN_NONE:
6549 if (fs_state != FULLSCREEN_BOTH)
6550 {
6551 next_maximized = FULLSCREEN_NONE;
6552 [[self window] performZoom:self];
6553 }
6554 break;
6555 }
6556
6557 emacsframe->want_fullscreen = FULLSCREEN_NONE;
6558 }
6559
6560 }
6561
6562 - (void) setFSValue: (int)value
6563 {
6564 Lisp_Object lval = Qnil;
6565 switch (value)
6566 {
6567 case FULLSCREEN_BOTH:
6568 lval = Qfullboth;
6569 break;
6570 case FULLSCREEN_WIDTH:
6571 lval = Qfullwidth;
6572 break;
6573 case FULLSCREEN_HEIGHT:
6574 lval = Qfullheight;
6575 break;
6576 case FULLSCREEN_MAXIMIZED:
6577 lval = Qmaximized;
6578 break;
6579 }
6580 store_frame_param (emacsframe, Qfullscreen, lval);
6581 fs_state = value;
6582 }
6583
6584 - (void)mouseEntered: (NSEvent *)theEvent
6585 {
6586 NSTRACE (mouseEntered);
6587 if (emacsframe)
6588 FRAME_DISPLAY_INFO (emacsframe)->last_mouse_movement_time
6589 = EV_TIMESTAMP (theEvent);
6590 }
6591
6592
6593 - (void)mouseExited: (NSEvent *)theEvent
6594 {
6595 Mouse_HLInfo *hlinfo = emacsframe ? MOUSE_HL_INFO (emacsframe) : NULL;
6596
6597 NSTRACE (mouseExited);
6598
6599 if (!hlinfo)
6600 return;
6601
6602 FRAME_DISPLAY_INFO (emacsframe)->last_mouse_movement_time
6603 = EV_TIMESTAMP (theEvent);
6604
6605 if (emacsframe == hlinfo->mouse_face_mouse_frame)
6606 {
6607 clear_mouse_face (hlinfo);
6608 hlinfo->mouse_face_mouse_frame = 0;
6609 }
6610 }
6611
6612
6613 - menuDown: sender
6614 {
6615 NSTRACE (menuDown);
6616 if (context_menu_value == -1)
6617 context_menu_value = [sender tag];
6618 else
6619 {
6620 NSInteger tag = [sender tag];
6621 find_and_call_menu_selection (emacsframe, emacsframe->menu_bar_items_used,
6622 emacsframe->menu_bar_vector,
6623 (void *)tag);
6624 }
6625
6626 ns_send_appdefined (-1);
6627 return self;
6628 }
6629
6630
6631 - (EmacsToolbar *)toolbar
6632 {
6633 return toolbar;
6634 }
6635
6636
6637 /* this gets called on toolbar button click */
6638 - toolbarClicked: (id)item
6639 {
6640 NSEvent *theEvent;
6641 int idx = [item tag] * TOOL_BAR_ITEM_NSLOTS;
6642
6643 NSTRACE (toolbarClicked);
6644
6645 if (!emacs_event)
6646 return self;
6647
6648 /* send first event (for some reason two needed) */
6649 theEvent = [[self window] currentEvent];
6650 emacs_event->kind = TOOL_BAR_EVENT;
6651 XSETFRAME (emacs_event->arg, emacsframe);
6652 EV_TRAILER (theEvent);
6653
6654 emacs_event->kind = TOOL_BAR_EVENT;
6655 /* XSETINT (emacs_event->code, 0); */
6656 emacs_event->arg = AREF (emacsframe->tool_bar_items,
6657 idx + TOOL_BAR_ITEM_KEY);
6658 emacs_event->modifiers = EV_MODIFIERS (theEvent);
6659 EV_TRAILER (theEvent);
6660 return self;
6661 }
6662
6663
6664 - toggleToolbar: (id)sender
6665 {
6666 if (!emacs_event)
6667 return self;
6668
6669 emacs_event->kind = NS_NONKEY_EVENT;
6670 emacs_event->code = KEY_NS_TOGGLE_TOOLBAR;
6671 EV_TRAILER ((id)nil);
6672 return self;
6673 }
6674
6675
6676 - (void)drawRect: (NSRect)rect
6677 {
6678 int x = NSMinX (rect), y = NSMinY (rect);
6679 int width = NSWidth (rect), height = NSHeight (rect);
6680
6681 NSTRACE (drawRect);
6682
6683 if (!emacsframe || !emacsframe->output_data.ns)
6684 return;
6685
6686 ns_clear_frame_area (emacsframe, x, y, width, height);
6687 expose_frame (emacsframe, x, y, width, height);
6688
6689 /*
6690 drawRect: may be called (at least in OS X 10.5) for invisible
6691 views as well for some reason. Thus, do not infer visibility
6692 here.
6693
6694 emacsframe->async_visible = 1;
6695 emacsframe->async_iconified = 0;
6696 */
6697 }
6698
6699
6700 /* NSDraggingDestination protocol methods. Actually this is not really a
6701 protocol, but a category of Object. O well... */
6702
6703 -(NSUInteger) draggingEntered: (id <NSDraggingInfo>) sender
6704 {
6705 NSTRACE (draggingEntered);
6706 return NSDragOperationGeneric;
6707 }
6708
6709
6710 -(BOOL)prepareForDragOperation: (id <NSDraggingInfo>) sender
6711 {
6712 return YES;
6713 }
6714
6715
6716 -(BOOL)performDragOperation: (id <NSDraggingInfo>) sender
6717 {
6718 id pb;
6719 int x, y;
6720 NSString *type;
6721 NSEvent *theEvent = [[self window] currentEvent];
6722 NSPoint position;
6723 NSDragOperation op = [sender draggingSourceOperationMask];
6724 int modifiers = 0;
6725
6726 NSTRACE (performDragOperation);
6727
6728 if (!emacs_event)
6729 return NO;
6730
6731 position = [self convertPoint: [sender draggingLocation] fromView: nil];
6732 x = lrint (position.x); y = lrint (position.y);
6733
6734 pb = [sender draggingPasteboard];
6735 type = [pb availableTypeFromArray: ns_drag_types];
6736
6737 if (! (op & (NSDragOperationMove|NSDragOperationDelete)) &&
6738 // URL drags contain all operations (0xf), don't allow all to be set.
6739 (op & 0xf) != 0xf)
6740 {
6741 if (op & NSDragOperationLink)
6742 modifiers |= NSControlKeyMask;
6743 if (op & NSDragOperationCopy)
6744 modifiers |= NSAlternateKeyMask;
6745 if (op & NSDragOperationGeneric)
6746 modifiers |= NSCommandKeyMask;
6747 }
6748
6749 modifiers = EV_MODIFIERS2 (modifiers);
6750 if (type == 0)
6751 {
6752 return NO;
6753 }
6754 else if ([type isEqualToString: NSFilenamesPboardType])
6755 {
6756 NSArray *files;
6757 NSEnumerator *fenum;
6758 NSString *file;
6759
6760 if (!(files = [pb propertyListForType: type]))
6761 return NO;
6762
6763 fenum = [files objectEnumerator];
6764 while ( (file = [fenum nextObject]) )
6765 {
6766 emacs_event->kind = DRAG_N_DROP_EVENT;
6767 XSETINT (emacs_event->x, x);
6768 XSETINT (emacs_event->y, y);
6769 ns_input_file = append2 (ns_input_file,
6770 build_string ([file UTF8String]));
6771 emacs_event->modifiers = modifiers;
6772 emacs_event->arg = list2 (Qfile, build_string ([file UTF8String]));
6773 EV_TRAILER (theEvent);
6774 }
6775 return YES;
6776 }
6777 else if ([type isEqualToString: NSURLPboardType])
6778 {
6779 NSURL *url = [NSURL URLFromPasteboard: pb];
6780 if (url == nil) return NO;
6781
6782 emacs_event->kind = DRAG_N_DROP_EVENT;
6783 XSETINT (emacs_event->x, x);
6784 XSETINT (emacs_event->y, y);
6785 emacs_event->modifiers = modifiers;
6786 emacs_event->arg = list2 (Qurl,
6787 build_string ([[url absoluteString]
6788 UTF8String]));
6789 EV_TRAILER (theEvent);
6790
6791 if ([url isFileURL] != NO)
6792 {
6793 NSString *file = [url path];
6794 ns_input_file = append2 (ns_input_file,
6795 build_string ([file UTF8String]));
6796 }
6797 return YES;
6798 }
6799 else if ([type isEqualToString: NSStringPboardType]
6800 || [type isEqualToString: NSTabularTextPboardType])
6801 {
6802 NSString *data;
6803
6804 if (! (data = [pb stringForType: type]))
6805 return NO;
6806
6807 emacs_event->kind = DRAG_N_DROP_EVENT;
6808 XSETINT (emacs_event->x, x);
6809 XSETINT (emacs_event->y, y);
6810 emacs_event->modifiers = modifiers;
6811 emacs_event->arg = list2 (Qnil, build_string ([data UTF8String]));
6812 EV_TRAILER (theEvent);
6813 return YES;
6814 }
6815 else
6816 {
6817 error ("Invalid data type in dragging pasteboard");
6818 return NO;
6819 }
6820 }
6821
6822
6823 - (id) validRequestorForSendType: (NSString *)typeSent
6824 returnType: (NSString *)typeReturned
6825 {
6826 NSTRACE (validRequestorForSendType);
6827 if (typeSent != nil && [ns_send_types indexOfObject: typeSent] != NSNotFound
6828 && typeReturned == nil)
6829 {
6830 if (! NILP (ns_get_local_selection (QPRIMARY, QUTF8_STRING)))
6831 return self;
6832 }
6833
6834 return [super validRequestorForSendType: typeSent
6835 returnType: typeReturned];
6836 }
6837
6838
6839 /* The next two methods are part of NSServicesRequests informal protocol,
6840 supposedly called when a services menu item is chosen from this app.
6841 But this should not happen because we override the services menu with our
6842 own entries which call ns-perform-service.
6843 Nonetheless, it appeared to happen (under strange circumstances): bug#1435.
6844 So let's at least stub them out until further investigation can be done. */
6845
6846 - (BOOL) readSelectionFromPasteboard: (NSPasteboard *)pb
6847 {
6848 /* we could call ns_string_from_pasteboard(pboard) here but then it should
6849 be written into the buffer in place of the existing selection..
6850 ordinary service calls go through functions defined in ns-win.el */
6851 return NO;
6852 }
6853
6854 - (BOOL) writeSelectionToPasteboard: (NSPasteboard *)pb types: (NSArray *)types
6855 {
6856 NSArray *typesDeclared;
6857 Lisp_Object val;
6858
6859 /* We only support NSStringPboardType */
6860 if ([types containsObject:NSStringPboardType] == NO) {
6861 return NO;
6862 }
6863
6864 val = ns_get_local_selection (QPRIMARY, QUTF8_STRING);
6865 if (CONSP (val) && SYMBOLP (XCAR (val)))
6866 {
6867 val = XCDR (val);
6868 if (CONSP (val) && NILP (XCDR (val)))
6869 val = XCAR (val);
6870 }
6871 if (! STRINGP (val))
6872 return NO;
6873
6874 typesDeclared = [NSArray arrayWithObject:NSStringPboardType];
6875 [pb declareTypes:typesDeclared owner:nil];
6876 ns_string_to_pasteboard (pb, val);
6877 return YES;
6878 }
6879
6880
6881 /* setMini =YES means set from internal (gives a finder icon), NO means set nil
6882 (gives a miniaturized version of the window); currently we use the latter for
6883 frames whose active buffer doesn't correspond to any file
6884 (e.g., '*scratch*') */
6885 - setMiniwindowImage: (BOOL) setMini
6886 {
6887 id image = [[self window] miniwindowImage];
6888 NSTRACE (setMiniwindowImage);
6889
6890 /* NOTE: under Cocoa miniwindowImage always returns nil, documentation
6891 about "AppleDockIconEnabled" notwithstanding, however the set message
6892 below has its effect nonetheless. */
6893 if (image != emacsframe->output_data.ns->miniimage)
6894 {
6895 if (image && [image isKindOfClass: [EmacsImage class]])
6896 [image release];
6897 [[self window] setMiniwindowImage:
6898 setMini ? emacsframe->output_data.ns->miniimage : nil];
6899 }
6900
6901 return self;
6902 }
6903
6904
6905 - (void) setRows: (int) r andColumns: (int) c
6906 {
6907 rows = r;
6908 cols = c;
6909 }
6910
6911 @end /* EmacsView */
6912
6913
6914
6915 /* ==========================================================================
6916
6917 EmacsWindow implementation
6918
6919 ========================================================================== */
6920
6921 @implementation EmacsWindow
6922
6923 #ifdef NS_IMPL_COCOA
6924 - (id)accessibilityAttributeValue:(NSString *)attribute
6925 {
6926 Lisp_Object str = Qnil;
6927 struct frame *f = SELECTED_FRAME ();
6928 struct buffer *curbuf = XBUFFER (XWINDOW (f->selected_window)->contents);
6929
6930 if ([attribute isEqualToString:NSAccessibilityRoleAttribute])
6931 return NSAccessibilityTextFieldRole;
6932
6933 if ([attribute isEqualToString:NSAccessibilitySelectedTextAttribute]
6934 && curbuf && ! NILP (BVAR (curbuf, mark_active)))
6935 {
6936 str = ns_get_local_selection (QPRIMARY, QUTF8_STRING);
6937 }
6938 else if (curbuf && [attribute isEqualToString:NSAccessibilityValueAttribute])
6939 {
6940 if (! NILP (BVAR (curbuf, mark_active)))
6941 str = ns_get_local_selection (QPRIMARY, QUTF8_STRING);
6942
6943 if (NILP (str))
6944 {
6945 ptrdiff_t start_byte = BUF_BEGV_BYTE (curbuf);
6946 ptrdiff_t byte_range = BUF_ZV_BYTE (curbuf) - start_byte;
6947 ptrdiff_t range = BUF_ZV (curbuf) - BUF_BEGV (curbuf);
6948
6949 if (! NILP (BVAR (curbuf, enable_multibyte_characters)))
6950 str = make_uninit_multibyte_string (range, byte_range);
6951 else
6952 str = make_uninit_string (range);
6953 /* To check: This returns emacs-utf-8, which is a superset of utf-8.
6954 Is this a problem? */
6955 memcpy (SDATA (str), BYTE_POS_ADDR (start_byte), byte_range);
6956 }
6957 }
6958
6959
6960 if (! NILP (str))
6961 {
6962 if (CONSP (str) && SYMBOLP (XCAR (str)))
6963 {
6964 str = XCDR (str);
6965 if (CONSP (str) && NILP (XCDR (str)))
6966 str = XCAR (str);
6967 }
6968 if (STRINGP (str))
6969 {
6970 const char *utfStr = SSDATA (str);
6971 NSString *nsStr = [NSString stringWithUTF8String: utfStr];
6972 return nsStr;
6973 }
6974 }
6975
6976 return [super accessibilityAttributeValue:attribute];
6977 }
6978 #endif /* NS_IMPL_COCOA */
6979
6980 /* If we have multiple monitors, one above the other, we don't want to
6981 restrict the height to just one monitor. So we override this. */
6982 - (NSRect)constrainFrameRect:(NSRect)frameRect toScreen:(NSScreen *)screen
6983 {
6984 /* When making the frame visible for the first time or if there is just
6985 one screen, we want to constrain. Other times not. */
6986 NSArray *screens = [NSScreen screens];
6987 NSUInteger nr_screens = [screens count], nr_eff_screens = 0, i;
6988 struct frame *f = ((EmacsView *)[self delegate])->emacsframe;
6989 NSTRACE (constrainFrameRect);
6990 NSTRACE_RECT ("input", frameRect);
6991
6992 if (ns_menu_bar_should_be_hidden ())
6993 return frameRect;
6994
6995 if (nr_screens == 1)
6996 return [super constrainFrameRect:frameRect toScreen:screen];
6997
6998 #ifdef NS_IMPL_COCOA
6999 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_9
7000 // If separate spaces is on, it is like each screen is independent. There is
7001 // no spanning of frames across screens.
7002 if ([NSScreen screensHaveSeparateSpaces])
7003 return [super constrainFrameRect:frameRect toScreen:screen];
7004 #endif
7005 #endif
7006
7007 for (i = 0; i < nr_screens; ++i)
7008 {
7009 NSScreen *s = [screens objectAtIndex: i];
7010 NSRect scrrect = [s frame];
7011 NSRect intersect = NSIntersectionRect (frameRect, scrrect);
7012
7013 if (intersect.size.width > 0 || intersect.size.height > 0)
7014 ++nr_eff_screens;
7015 }
7016
7017 if (nr_eff_screens == 1)
7018 return [super constrainFrameRect:frameRect toScreen:screen];
7019
7020 /* The default implementation does two things 1) ensure that the top
7021 of the rectangle is below the menu bar (or below the top of the
7022 screen) and 2) resizes windows larger than the screen. As we
7023 don't want the latter, a smaller rectangle is used. */
7024 #define FAKE_HEIGHT 64
7025 float old_top = frameRect.origin.y + frameRect.size.height;
7026 NSRect r;
7027 r.size.height = FAKE_HEIGHT;
7028 r.size.width = frameRect.size.width;
7029 r.origin.x = frameRect.origin.x;
7030 r.origin.y = old_top - FAKE_HEIGHT;
7031
7032 NSTRACE_RECT ("input to super", r);
7033
7034 r = [super constrainFrameRect:r toScreen:screen];
7035
7036 NSTRACE_RECT ("output from super", r);
7037
7038 float new_top = r.origin.y + FAKE_HEIGHT;
7039 if (new_top < old_top)
7040 {
7041 frameRect.origin.y = new_top - frameRect.size.height;
7042 }
7043
7044 NSTRACE_RECT ("output", frameRect);
7045
7046 return frameRect;
7047 #undef FAKE_HEIGHT
7048 }
7049
7050 @end /* EmacsWindow */
7051
7052
7053 @implementation EmacsFSWindow
7054
7055 - (BOOL)canBecomeKeyWindow
7056 {
7057 return YES;
7058 }
7059
7060 - (BOOL)canBecomeMainWindow
7061 {
7062 return YES;
7063 }
7064
7065 @end
7066
7067 /* ==========================================================================
7068
7069 EmacsScroller implementation
7070
7071 ========================================================================== */
7072
7073
7074 @implementation EmacsScroller
7075
7076 /* for repeat button push */
7077 #define SCROLL_BAR_FIRST_DELAY 0.5
7078 #define SCROLL_BAR_CONTINUOUS_DELAY (1.0 / 15)
7079
7080 + (CGFloat) scrollerWidth
7081 {
7082 /* TODO: if we want to allow variable widths, this is the place to do it,
7083 however neither GNUstep nor Cocoa support it very well */
7084 return [NSScroller scrollerWidth];
7085 }
7086
7087
7088 - initFrame: (NSRect )r window: (Lisp_Object)nwin
7089 {
7090 NSTRACE (EmacsScroller_initFrame);
7091
7092 r.size.width = [EmacsScroller scrollerWidth];
7093 [super initWithFrame: r/*NSMakeRect (0, 0, 0, 0)*/];
7094 [self setContinuous: YES];
7095 [self setEnabled: YES];
7096
7097 /* Ensure auto resizing of scrollbars occurs within the emacs frame's view
7098 locked against the top and bottom edges, and right edge on OS X, where
7099 scrollers are on right. */
7100 #ifdef NS_IMPL_GNUSTEP
7101 [self setAutoresizingMask: NSViewMaxXMargin | NSViewHeightSizable];
7102 #else
7103 [self setAutoresizingMask: NSViewMinXMargin | NSViewHeightSizable];
7104 #endif
7105
7106 win = nwin;
7107 condemned = NO;
7108 pixel_height = NSHeight (r);
7109 if (pixel_height == 0) pixel_height = 1;
7110 min_portion = 20 / pixel_height;
7111
7112 frame = XFRAME (XWINDOW (win)->frame);
7113 if (FRAME_LIVE_P (frame))
7114 {
7115 int i;
7116 EmacsView *view = FRAME_NS_VIEW (frame);
7117 NSView *sview = [[view window] contentView];
7118 NSArray *subs = [sview subviews];
7119
7120 /* disable optimization stopping redraw of other scrollbars */
7121 view->scrollbarsNeedingUpdate = 0;
7122 for (i =[subs count]-1; i >= 0; i--)
7123 if ([[subs objectAtIndex: i] isKindOfClass: [EmacsScroller class]])
7124 view->scrollbarsNeedingUpdate++;
7125 [sview addSubview: self];
7126 }
7127
7128 /* [self setFrame: r]; */
7129
7130 return self;
7131 }
7132
7133
7134 - (void)setFrame: (NSRect)newRect
7135 {
7136 NSTRACE (EmacsScroller_setFrame);
7137 /* block_input (); */
7138 pixel_height = NSHeight (newRect);
7139 if (pixel_height == 0) pixel_height = 1;
7140 min_portion = 20 / pixel_height;
7141 [super setFrame: newRect];
7142 [self display];
7143 /* unblock_input (); */
7144 }
7145
7146
7147 - condemn
7148 {
7149 NSTRACE (condemn);
7150 condemned =YES;
7151 return self;
7152 }
7153
7154
7155 - reprieve
7156 {
7157 NSTRACE (reprieve);
7158 condemned =NO;
7159 return self;
7160 }
7161
7162
7163 - judge
7164 {
7165 NSTRACE (judge);
7166 if (condemned)
7167 {
7168 EmacsView *view;
7169 block_input ();
7170 /* ensure other scrollbar updates after deletion */
7171 view = (EmacsView *)FRAME_NS_VIEW (frame);
7172 if (view != nil)
7173 view->scrollbarsNeedingUpdate++;
7174 if (!NILP (win))
7175 wset_vertical_scroll_bar (XWINDOW (win), Qnil);
7176 win = Qnil;
7177 [self removeFromSuperview];
7178 [self release];
7179 unblock_input ();
7180 }
7181 return self;
7182 }
7183
7184
7185 - (void)resetCursorRects
7186 {
7187 NSRect visible = [self visibleRect];
7188 NSTRACE (resetCursorRects);
7189
7190 if (!NSIsEmptyRect (visible))
7191 [self addCursorRect: visible cursor: [NSCursor arrowCursor]];
7192 [[NSCursor arrowCursor] setOnMouseEntered: YES];
7193 }
7194
7195
7196 - (int) checkSamePosition: (int) position portion: (int) portion
7197 whole: (int) whole
7198 {
7199 return em_position ==position && em_portion ==portion && em_whole ==whole
7200 && portion != whole; /* needed for resize empty buf */
7201 }
7202
7203
7204 - setPosition: (int)position portion: (int)portion whole: (int)whole
7205 {
7206 NSTRACE (setPosition);
7207
7208 em_position = position;
7209 em_portion = portion;
7210 em_whole = whole;
7211
7212 if (portion >= whole)
7213 {
7214 #if defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MAX_ALLOWED > MAC_OS_X_VERSION_10_5
7215 [self setKnobProportion: 1.0];
7216 [self setDoubleValue: 1.0];
7217 #else
7218 [self setFloatValue: 0.0 knobProportion: 1.0];
7219 #endif
7220 }
7221 else
7222 {
7223 float pos;
7224 CGFloat por;
7225 portion = max ((float)whole*min_portion/pixel_height, portion);
7226 pos = (float)position / (whole - portion);
7227 por = (CGFloat)portion/whole;
7228 #if defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MAX_ALLOWED > MAC_OS_X_VERSION_10_5
7229 [self setKnobProportion: por];
7230 [self setDoubleValue: pos];
7231 #else
7232 [self setFloatValue: pos knobProportion: por];
7233 #endif
7234 }
7235
7236 /* Events may come here even if the event loop is not running.
7237 If we don't enter the event loop, the scroll bar will not update.
7238 So send SIGIO to ourselves. */
7239 if (apploopnr == 0) raise (SIGIO);
7240
7241 return self;
7242 }
7243
7244 /* FIXME: unused at moment (see ns_mouse_position) at the moment because
7245 drag events will go directly to the EmacsScroller. Leaving in for now. */
7246 -(void)getMouseMotionPart: (int *)part window: (Lisp_Object *)window
7247 x: (Lisp_Object *)x y: ( Lisp_Object *)y
7248 {
7249 *part = last_hit_part;
7250 *window = win;
7251 XSETINT (*y, pixel_height);
7252 if ([self floatValue] > 0.999F)
7253 XSETINT (*x, pixel_height);
7254 else
7255 XSETINT (*x, pixel_height * [self floatValue]);
7256 }
7257
7258
7259 /* set up emacs_event */
7260 - (void) sendScrollEventAtLoc: (float)loc fromEvent: (NSEvent *)e
7261 {
7262 if (!emacs_event)
7263 return;
7264
7265 emacs_event->part = last_hit_part;
7266 emacs_event->code = 0;
7267 emacs_event->modifiers = EV_MODIFIERS (e) | down_modifier;
7268 emacs_event->frame_or_window = win;
7269 emacs_event->timestamp = EV_TIMESTAMP (e);
7270 emacs_event->kind = SCROLL_BAR_CLICK_EVENT;
7271 emacs_event->arg = Qnil;
7272 XSETINT (emacs_event->x, loc * pixel_height);
7273 XSETINT (emacs_event->y, pixel_height-20);
7274
7275 if (q_event_ptr)
7276 {
7277 n_emacs_events_pending++;
7278 kbd_buffer_store_event_hold (emacs_event, q_event_ptr);
7279 }
7280 else
7281 hold_event (emacs_event);
7282 EVENT_INIT (*emacs_event);
7283 ns_send_appdefined (-1);
7284 }
7285
7286
7287 /* called manually thru timer to implement repeated button action w/hold-down */
7288 - repeatScroll: (NSTimer *)scrollEntry
7289 {
7290 NSEvent *e = [[self window] currentEvent];
7291 NSPoint p = [[self window] mouseLocationOutsideOfEventStream];
7292 BOOL inKnob = [self testPart: p] == NSScrollerKnob;
7293
7294 /* clear timer if need be */
7295 if (inKnob || [scroll_repeat_entry timeInterval] == SCROLL_BAR_FIRST_DELAY)
7296 {
7297 [scroll_repeat_entry invalidate];
7298 [scroll_repeat_entry release];
7299 scroll_repeat_entry = nil;
7300
7301 if (inKnob)
7302 return self;
7303
7304 scroll_repeat_entry
7305 = [[NSTimer scheduledTimerWithTimeInterval:
7306 SCROLL_BAR_CONTINUOUS_DELAY
7307 target: self
7308 selector: @selector (repeatScroll:)
7309 userInfo: 0
7310 repeats: YES]
7311 retain];
7312 }
7313
7314 [self sendScrollEventAtLoc: 0 fromEvent: e];
7315 return self;
7316 }
7317
7318
7319 /* Asynchronous mouse tracking for scroller. This allows us to dispatch
7320 mouseDragged events without going into a modal loop. */
7321 - (void)mouseDown: (NSEvent *)e
7322 {
7323 NSRect sr, kr;
7324 /* hitPart is only updated AFTER event is passed on */
7325 NSScrollerPart part = [self testPart: [e locationInWindow]];
7326 CGFloat inc = 0.0, loc, kloc, pos;
7327 int edge = 0;
7328
7329 NSTRACE (EmacsScroller_mouseDown);
7330
7331 switch (part)
7332 {
7333 case NSScrollerDecrementPage:
7334 last_hit_part = scroll_bar_above_handle; inc = -1.0; break;
7335 case NSScrollerIncrementPage:
7336 last_hit_part = scroll_bar_below_handle; inc = 1.0; break;
7337 case NSScrollerDecrementLine:
7338 last_hit_part = scroll_bar_up_arrow; inc = -0.1; break;
7339 case NSScrollerIncrementLine:
7340 last_hit_part = scroll_bar_down_arrow; inc = 0.1; break;
7341 case NSScrollerKnob:
7342 last_hit_part = scroll_bar_handle; break;
7343 case NSScrollerKnobSlot: /* GNUstep-only */
7344 last_hit_part = scroll_bar_move_ratio; break;
7345 default: /* NSScrollerNoPart? */
7346 fprintf (stderr, "EmacsScoller-mouseDown: unexpected part %ld\n",
7347 (long) part);
7348 return;
7349 }
7350
7351 if (inc != 0.0)
7352 {
7353 pos = 0; /* ignored */
7354
7355 /* set a timer to repeat, as we can't let superclass do this modally */
7356 scroll_repeat_entry
7357 = [[NSTimer scheduledTimerWithTimeInterval: SCROLL_BAR_FIRST_DELAY
7358 target: self
7359 selector: @selector (repeatScroll:)
7360 userInfo: 0
7361 repeats: YES]
7362 retain];
7363 }
7364 else
7365 {
7366 /* handle, or on GNUstep possibly slot */
7367 NSEvent *fake_event;
7368
7369 /* compute float loc in slot and mouse offset on knob */
7370 sr = [self convertRect: [self rectForPart: NSScrollerKnobSlot]
7371 toView: nil];
7372 loc = NSHeight (sr) - ([e locationInWindow].y - NSMinY (sr));
7373 if (loc <= 0.0)
7374 {
7375 loc = 0.0;
7376 edge = -1;
7377 }
7378 else if (loc >= NSHeight (sr))
7379 {
7380 loc = NSHeight (sr);
7381 edge = 1;
7382 }
7383
7384 if (edge)
7385 kloc = 0.5 * edge;
7386 else
7387 {
7388 kr = [self convertRect: [self rectForPart: NSScrollerKnob]
7389 toView: nil];
7390 kloc = NSHeight (kr) - ([e locationInWindow].y - NSMinY (kr));
7391 }
7392 last_mouse_offset = kloc;
7393
7394 /* if knob, tell emacs a location offset by knob pos
7395 (to indicate top of handle) */
7396 if (part == NSScrollerKnob)
7397 pos = (loc - last_mouse_offset) / NSHeight (sr);
7398 else
7399 /* else this is a slot click on GNUstep: go straight there */
7400 pos = loc / NSHeight (sr);
7401
7402 /* send a fake mouse-up to super to preempt modal -trackKnob: mode */
7403 fake_event = [NSEvent mouseEventWithType: NSLeftMouseUp
7404 location: [e locationInWindow]
7405 modifierFlags: [e modifierFlags]
7406 timestamp: [e timestamp]
7407 windowNumber: [e windowNumber]
7408 context: [e context]
7409 eventNumber: [e eventNumber]
7410 clickCount: [e clickCount]
7411 pressure: [e pressure]];
7412 [super mouseUp: fake_event];
7413 }
7414
7415 if (part != NSScrollerKnob)
7416 [self sendScrollEventAtLoc: pos fromEvent: e];
7417 }
7418
7419
7420 /* Called as we manually track scroller drags, rather than superclass. */
7421 - (void)mouseDragged: (NSEvent *)e
7422 {
7423 NSRect sr;
7424 double loc, pos;
7425
7426 NSTRACE (EmacsScroller_mouseDragged);
7427
7428 sr = [self convertRect: [self rectForPart: NSScrollerKnobSlot]
7429 toView: nil];
7430 loc = NSHeight (sr) - ([e locationInWindow].y - NSMinY (sr));
7431
7432 if (loc <= 0.0)
7433 {
7434 loc = 0.0;
7435 }
7436 else if (loc >= NSHeight (sr) + last_mouse_offset)
7437 {
7438 loc = NSHeight (sr) + last_mouse_offset;
7439 }
7440
7441 pos = (loc - last_mouse_offset) / NSHeight (sr);
7442 [self sendScrollEventAtLoc: pos fromEvent: e];
7443 }
7444
7445
7446 - (void)mouseUp: (NSEvent *)e
7447 {
7448 if (scroll_repeat_entry)
7449 {
7450 [scroll_repeat_entry invalidate];
7451 [scroll_repeat_entry release];
7452 scroll_repeat_entry = nil;
7453 }
7454 last_hit_part = 0;
7455 }
7456
7457
7458 /* treat scrollwheel events in the bar as though they were in the main window */
7459 - (void) scrollWheel: (NSEvent *)theEvent
7460 {
7461 EmacsView *view = (EmacsView *)FRAME_NS_VIEW (frame);
7462 [view mouseDown: theEvent];
7463 }
7464
7465 @end /* EmacsScroller */
7466
7467
7468 #ifdef NS_IMPL_GNUSTEP
7469 /* Dummy class to get rid of startup warnings. */
7470 @implementation EmacsDocument
7471
7472 @end
7473 #endif
7474
7475
7476 /* ==========================================================================
7477
7478 Font-related functions; these used to be in nsfaces.m
7479
7480 ========================================================================== */
7481
7482
7483 Lisp_Object
7484 x_new_font (struct frame *f, Lisp_Object font_object, int fontset)
7485 {
7486 struct font *font = XFONT_OBJECT (font_object);
7487 EmacsView *view = FRAME_NS_VIEW (f);
7488
7489 if (fontset < 0)
7490 fontset = fontset_from_font (font_object);
7491 FRAME_FONTSET (f) = fontset;
7492
7493 if (FRAME_FONT (f) == font)
7494 /* This font is already set in frame F. There's nothing more to
7495 do. */
7496 return font_object;
7497
7498 FRAME_FONT (f) = font;
7499
7500 FRAME_BASELINE_OFFSET (f) = font->baseline_offset;
7501 FRAME_COLUMN_WIDTH (f) = font->average_width;
7502 FRAME_LINE_HEIGHT (f) = font->height;
7503
7504 compute_fringe_widths (f, 1);
7505
7506 /* Compute the scroll bar width in character columns. */
7507 if (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0)
7508 {
7509 int wid = FRAME_COLUMN_WIDTH (f);
7510 FRAME_CONFIG_SCROLL_BAR_COLS (f)
7511 = (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) + wid - 1) / wid;
7512 }
7513 else
7514 {
7515 int wid = FRAME_COLUMN_WIDTH (f);
7516 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (14 + wid - 1) / wid;
7517 }
7518
7519 /* Now make the frame display the given font. */
7520 if (FRAME_NS_WINDOW (f) != 0 && ! [view isFullscreen])
7521 x_set_window_size (f, 0, FRAME_COLS (f) * FRAME_COLUMN_WIDTH (f),
7522 FRAME_LINES (f) * FRAME_LINE_HEIGHT (f), 1);
7523
7524 return font_object;
7525 }
7526
7527
7528 /* XLFD: -foundry-family-weight-slant-swidth-adstyle-pxlsz-ptSz-resx-resy-spc-avgWidth-rgstry-encoding */
7529 /* Note: ns_font_to_xlfd and ns_fontname_to_xlfd no longer needed, removed
7530 in 1.43. */
7531
7532 const char *
7533 ns_xlfd_to_fontname (const char *xlfd)
7534 /* --------------------------------------------------------------------------
7535 Convert an X font name (XLFD) to an NS font name.
7536 Only family is used.
7537 The string returned is temporarily allocated.
7538 -------------------------------------------------------------------------- */
7539 {
7540 char *name = xmalloc (180);
7541 int i, len;
7542 const char *ret;
7543
7544 if (!strncmp (xlfd, "--", 2))
7545 sscanf (xlfd, "--%*[^-]-%[^-]179-", name);
7546 else
7547 sscanf (xlfd, "-%*[^-]-%[^-]179-", name);
7548
7549 /* stopgap for malformed XLFD input */
7550 if (strlen (name) == 0)
7551 strcpy (name, "Monaco");
7552
7553 /* undo hack in ns_fontname_to_xlfd, converting '$' to '-', '_' to ' '
7554 also uppercase after '-' or ' ' */
7555 name[0] = c_toupper (name[0]);
7556 for (len =strlen (name), i =0; i<len; i++)
7557 {
7558 if (name[i] == '$')
7559 {
7560 name[i] = '-';
7561 if (i+1<len)
7562 name[i+1] = c_toupper (name[i+1]);
7563 }
7564 else if (name[i] == '_')
7565 {
7566 name[i] = ' ';
7567 if (i+1<len)
7568 name[i+1] = c_toupper (name[i+1]);
7569 }
7570 }
7571 /*fprintf (stderr, "converted '%s' to '%s'\n",xlfd,name); */
7572 ret = [[NSString stringWithUTF8String: name] UTF8String];
7573 xfree (name);
7574 return ret;
7575 }
7576
7577
7578 void
7579 syms_of_nsterm (void)
7580 {
7581 NSTRACE (syms_of_nsterm);
7582
7583 ns_antialias_threshold = 10.0;
7584
7585 /* from 23+ we need to tell emacs what modifiers there are.. */
7586 DEFSYM (Qmodifier_value, "modifier-value");
7587 DEFSYM (Qalt, "alt");
7588 DEFSYM (Qhyper, "hyper");
7589 DEFSYM (Qmeta, "meta");
7590 DEFSYM (Qsuper, "super");
7591 DEFSYM (Qcontrol, "control");
7592 DEFSYM (QUTF8_STRING, "UTF8_STRING");
7593
7594 DEFSYM (Qfile, "file");
7595 DEFSYM (Qurl, "url");
7596
7597 Fput (Qalt, Qmodifier_value, make_number (alt_modifier));
7598 Fput (Qhyper, Qmodifier_value, make_number (hyper_modifier));
7599 Fput (Qmeta, Qmodifier_value, make_number (meta_modifier));
7600 Fput (Qsuper, Qmodifier_value, make_number (super_modifier));
7601 Fput (Qcontrol, Qmodifier_value, make_number (ctrl_modifier));
7602
7603 DEFVAR_LISP ("ns-input-file", ns_input_file,
7604 "The file specified in the last NS event.");
7605 ns_input_file =Qnil;
7606
7607 DEFVAR_LISP ("ns-working-text", ns_working_text,
7608 "String for visualizing working composition sequence.");
7609 ns_working_text =Qnil;
7610
7611 DEFVAR_LISP ("ns-input-font", ns_input_font,
7612 "The font specified in the last NS event.");
7613 ns_input_font =Qnil;
7614
7615 DEFVAR_LISP ("ns-input-fontsize", ns_input_fontsize,
7616 "The fontsize specified in the last NS event.");
7617 ns_input_fontsize =Qnil;
7618
7619 DEFVAR_LISP ("ns-input-line", ns_input_line,
7620 "The line specified in the last NS event.");
7621 ns_input_line =Qnil;
7622
7623 DEFVAR_LISP ("ns-input-spi-name", ns_input_spi_name,
7624 "The service name specified in the last NS event.");
7625 ns_input_spi_name =Qnil;
7626
7627 DEFVAR_LISP ("ns-input-spi-arg", ns_input_spi_arg,
7628 "The service argument specified in the last NS event.");
7629 ns_input_spi_arg =Qnil;
7630
7631 DEFVAR_LISP ("ns-alternate-modifier", ns_alternate_modifier,
7632 "This variable describes the behavior of the alternate or option key.\n\
7633 Set to control, meta, alt, super, or hyper means it is taken to be that key.\n\
7634 Set to none means that the alternate / option key is not interpreted by Emacs\n\
7635 at all, allowing it to be used at a lower level for accented character entry.");
7636 ns_alternate_modifier = Qmeta;
7637
7638 DEFVAR_LISP ("ns-right-alternate-modifier", ns_right_alternate_modifier,
7639 "This variable describes the behavior of the right alternate or option key.\n\
7640 Set to control, meta, alt, super, or hyper means it is taken to be that key.\n\
7641 Set to left means be the same key as `ns-alternate-modifier'.\n\
7642 Set to none means that the alternate / option key is not interpreted by Emacs\n\
7643 at all, allowing it to be used at a lower level for accented character entry.");
7644 ns_right_alternate_modifier = Qleft;
7645
7646 DEFVAR_LISP ("ns-command-modifier", ns_command_modifier,
7647 "This variable describes the behavior of the command key.\n\
7648 Set to control, meta, alt, super, or hyper means it is taken to be that key.");
7649 ns_command_modifier = Qsuper;
7650
7651 DEFVAR_LISP ("ns-right-command-modifier", ns_right_command_modifier,
7652 "This variable describes the behavior of the right command key.\n\
7653 Set to control, meta, alt, super, or hyper means it is taken to be that key.\n\
7654 Set to left means be the same key as `ns-command-modifier'.\n\
7655 Set to none means that the command / option key is not interpreted by Emacs\n\
7656 at all, allowing it to be used at a lower level for accented character entry.");
7657 ns_right_command_modifier = Qleft;
7658
7659 DEFVAR_LISP ("ns-control-modifier", ns_control_modifier,
7660 "This variable describes the behavior of the control key.\n\
7661 Set to control, meta, alt, super, or hyper means it is taken to be that key.");
7662 ns_control_modifier = Qcontrol;
7663
7664 DEFVAR_LISP ("ns-right-control-modifier", ns_right_control_modifier,
7665 "This variable describes the behavior of the right control key.\n\
7666 Set to control, meta, alt, super, or hyper means it is taken to be that key.\n\
7667 Set to left means be the same key as `ns-control-modifier'.\n\
7668 Set to none means that the control / option key is not interpreted by Emacs\n\
7669 at all, allowing it to be used at a lower level for accented character entry.");
7670 ns_right_control_modifier = Qleft;
7671
7672 DEFVAR_LISP ("ns-function-modifier", ns_function_modifier,
7673 "This variable describes the behavior of the function key (on laptops).\n\
7674 Set to control, meta, alt, super, or hyper means it is taken to be that key.\n\
7675 Set to none means that the function key is not interpreted by Emacs at all,\n\
7676 allowing it to be used at a lower level for accented character entry.");
7677 ns_function_modifier = Qnone;
7678
7679 DEFVAR_LISP ("ns-antialias-text", ns_antialias_text,
7680 "Non-nil (the default) means to render text antialiased.");
7681 ns_antialias_text = Qt;
7682
7683 DEFVAR_LISP ("ns-confirm-quit", ns_confirm_quit,
7684 "Whether to confirm application quit using dialog.");
7685 ns_confirm_quit = Qnil;
7686
7687 DEFVAR_LISP ("ns-auto-hide-menu-bar", ns_auto_hide_menu_bar,
7688 doc: /* Non-nil means that the menu bar is hidden, but appears when the mouse is near.
7689 Only works on OSX 10.6 or later. */);
7690 ns_auto_hide_menu_bar = Qnil;
7691
7692 DEFVAR_BOOL ("ns-use-native-fullscreen", ns_use_native_fullscreen,
7693 doc: /*Non-nil means to use native fullscreen on OSX >= 10.7.
7694 Nil means use fullscreen the old (< 10.7) way. The old way works better with
7695 multiple monitors, but lacks tool bar. This variable is ignored on OSX < 10.7.
7696 Default is t for OSX >= 10.7, nil otherwise. */);
7697 #ifdef HAVE_NATIVE_FS
7698 ns_use_native_fullscreen = YES;
7699 #else
7700 ns_use_native_fullscreen = NO;
7701 #endif
7702 ns_last_use_native_fullscreen = ns_use_native_fullscreen;
7703
7704 DEFVAR_BOOL ("ns-use-srgb-colorspace", ns_use_srgb_colorspace,
7705 doc: /*Non-nil means to use sRGB colorspace on OSX >= 10.7.
7706 Note that this does not apply to images.
7707 This variable is ignored on OSX < 10.7 and GNUstep. */);
7708 ns_use_srgb_colorspace = YES;
7709
7710 /* TODO: move to common code */
7711 DEFVAR_LISP ("x-toolkit-scroll-bars", Vx_toolkit_scroll_bars,
7712 doc: /* Which toolkit scroll bars Emacs uses, if any.
7713 A value of nil means Emacs doesn't use toolkit scroll bars.
7714 With the X Window system, the value is a symbol describing the
7715 X toolkit. Possible values are: gtk, motif, xaw, or xaw3d.
7716 With MS Windows or Nextstep, the value is t. */);
7717 Vx_toolkit_scroll_bars = Qt;
7718
7719 DEFVAR_BOOL ("x-use-underline-position-properties",
7720 x_use_underline_position_properties,
7721 doc: /*Non-nil means make use of UNDERLINE_POSITION font properties.
7722 A value of nil means ignore them. If you encounter fonts with bogus
7723 UNDERLINE_POSITION font properties, for example 7x13 on XFree prior
7724 to 4.1, set this to nil. */);
7725 x_use_underline_position_properties = 0;
7726
7727 DEFVAR_BOOL ("x-underline-at-descent-line",
7728 x_underline_at_descent_line,
7729 doc: /* Non-nil means to draw the underline at the same place as the descent line.
7730 A value of nil means to draw the underline according to the value of the
7731 variable `x-use-underline-position-properties', which is usually at the
7732 baseline level. The default value is nil. */);
7733 x_underline_at_descent_line = 0;
7734
7735 /* Tell Emacs about this window system. */
7736 Fprovide (Qns, Qnil);
7737
7738 DEFSYM (Qcocoa, "cocoa");
7739 DEFSYM (Qgnustep, "gnustep");
7740
7741 syms_of_nsfont ();
7742 #ifdef NS_IMPL_COCOA
7743 Fprovide (Qcocoa, Qnil);
7744 #if MAC_OS_X_VERSION_MAX_ALLOWED >= 1050
7745 syms_of_macfont ();
7746 #endif
7747 #else
7748 Fprovide (Qgnustep, Qnil);
7749 #endif
7750
7751 }