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