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