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