remove Lisp_Free struct type
[bpt/emacs.git] / src / nsfns.m
CommitLineData
edfda783 1/* Functions for the NeXT/Open/GNUstep and MacOSX window system.
e9bffc61 2
ba318903 3Copyright (C) 1989, 1992-1994, 2005-2006, 2008-2014 Free Software
ab422c4d 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)
edfda783
AR
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
edfda783 33#include <math.h>
fee5959d 34#include <c-strcase.h>
5a06864f 35
edfda783
AR
36#include "lisp.h"
37#include "blockinput.h"
38#include "nsterm.h"
39#include "window.h"
e5560ff7 40#include "character.h"
edfda783
AR
41#include "buffer.h"
42#include "keyboard.h"
43#include "termhooks.h"
44#include "fontset.h"
edfda783
AR
45#include "font.h"
46
4465bfb4
JD
47#ifdef NS_IMPL_COCOA
48#include <IOKit/graphics/IOGraphicsLib.h>
3fa2054e
JD
49#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5
50#include "macfont.h"
51#endif
4465bfb4
JD
52#endif
53
edfda783
AR
54#if 0
55int fns_trace_num = 1;
56#define NSTRACE(x) fprintf (stderr, "%s:%d: [%d] " #x "\n", \
57 __FILE__, __LINE__, ++fns_trace_num)
58#else
59#define NSTRACE(x)
60#endif
61
62#ifdef HAVE_NS
63
64extern NSArray *ns_send_types, *ns_return_types, *ns_drag_types;
65
66extern Lisp_Object Qforeground_color;
67extern Lisp_Object Qbackground_color;
68extern Lisp_Object Qcursor_color;
69extern Lisp_Object Qinternal_border_width;
70extern Lisp_Object Qvisibility;
71extern Lisp_Object Qcursor_type;
72extern Lisp_Object Qicon_type;
73extern Lisp_Object Qicon_name;
74extern Lisp_Object Qicon_left;
75extern Lisp_Object Qicon_top;
76extern Lisp_Object Qleft;
77extern Lisp_Object Qright;
78extern Lisp_Object Qtop;
79extern Lisp_Object Qdisplay;
80extern Lisp_Object Qvertical_scroll_bars;
81extern Lisp_Object Qauto_raise;
82extern Lisp_Object Qauto_lower;
83extern Lisp_Object Qbox;
84extern Lisp_Object Qscroll_bar_width;
85extern Lisp_Object Qx_resource_name;
86extern Lisp_Object Qface_set_after_frame_default;
87extern Lisp_Object Qunderline, Qundefined;
88extern Lisp_Object Qheight, Qminibuffer, Qname, Qonly, Qwidth;
89extern Lisp_Object Qunsplittable, Qmenu_bar_lines, Qbuffer_predicate, Qtitle;
90
5d1d3d04 91
edfda783
AR
92Lisp_Object Qbuffered;
93Lisp_Object Qfontsize;
94
0fb0a4f3 95EmacsTooltip *ns_tooltip = nil;
edfda783
AR
96
97/* Need forward declaration here to preserve organizational integrity of file */
9e50ff0c 98Lisp_Object Fx_open_connection (Lisp_Object, Lisp_Object, Lisp_Object);
edfda783 99
08e3161a
JD
100/* Static variables to handle applescript execution. */
101static Lisp_Object as_script, *as_result;
102static int as_status;
edfda783 103
ef884f23 104#ifdef GLYPH_DEBUG
a97f8f3f
JD
105static ptrdiff_t image_cache_refcount;
106#endif
107
4465bfb4 108
edfda783
AR
109/* ==========================================================================
110
111 Internal utility functions
112
113 ========================================================================== */
114
91e8418b
YM
115/* Let the user specify a Nextstep display with a Lisp object.
116 OBJECT may be nil, a frame or a terminal object.
117 nil stands for the selected frame--or, if that is not a Nextstep frame,
d26fbe1a 118 the first Nextstep display on the list. */
91e8418b 119
edfda783 120static struct ns_display_info *
91e8418b 121check_ns_display_info (Lisp_Object object)
edfda783 122{
91e8418b
YM
123 struct ns_display_info *dpyinfo = NULL;
124
125 if (NILP (object))
edfda783 126 {
91e8418b
YM
127 struct frame *sf = XFRAME (selected_frame);
128
129 if (FRAME_NS_P (sf) && FRAME_LIVE_P (sf))
aad3612f 130 dpyinfo = FRAME_DISPLAY_INFO (sf);
9e50ff0c 131 else if (x_display_list != 0)
91e8418b 132 dpyinfo = x_display_list;
edfda783 133 else
d26fbe1a 134 error ("Nextstep windows are not in use or not initialized");
edfda783 135 }
91e8418b 136 else if (TERMINALP (object))
edfda783 137 {
91e8418b 138 struct terminal *t = get_terminal (object, 1);
edfda783
AR
139
140 if (t->type != output_ns)
91e8418b 141 error ("Terminal %d is not a Nextstep display", t->id);
edfda783 142
91e8418b 143 dpyinfo = t->display_info.ns;
edfda783 144 }
91e8418b
YM
145 else if (STRINGP (object))
146 dpyinfo = ns_display_info_for_name (object);
edfda783
AR
147 else
148 {
a10c8269 149 struct frame *f = decode_window_system_frame (object);
aad3612f 150 dpyinfo = FRAME_DISPLAY_INFO (f);
edfda783 151 }
91e8418b
YM
152
153 return dpyinfo;
edfda783
AR
154}
155
156
157static id
158ns_get_window (Lisp_Object maybeFrame)
159{
160 id view =nil, window =nil;
161
162 if (!FRAMEP (maybeFrame) || !FRAME_NS_P (XFRAME (maybeFrame)))
163 maybeFrame = selected_frame;/*wrong_type_argument (Qframep, maybeFrame); */
164
165 if (!NILP (maybeFrame))
166 view = FRAME_NS_VIEW (XFRAME (maybeFrame));
167 if (view) window =[view window];
168
169 return window;
170}
171
172
edfda783
AR
173/* Return the X display structure for the display named NAME.
174 Open a new connection if necessary. */
175struct ns_display_info *
3d608a86 176ns_display_info_for_name (Lisp_Object name)
edfda783 177{
edfda783
AR
178 struct ns_display_info *dpyinfo;
179
180 CHECK_STRING (name);
181
d141d701
DA
182 for (dpyinfo = x_display_list; dpyinfo; dpyinfo = dpyinfo->next)
183 if (!NILP (Fstring_equal (XCAR (dpyinfo->name_list_element), name)))
184 return dpyinfo;
edfda783 185
20c7a2b4 186 error ("Emacs for Nextstep does not yet support multi-display");
edfda783 187
9e50ff0c
DN
188 Fx_open_connection (name, Qnil, Qnil);
189 dpyinfo = x_display_list;
edfda783
AR
190
191 if (dpyinfo == 0)
9a84bfd6 192 error ("Display on %s not responding.\n", SDATA (name));
edfda783
AR
193
194 return dpyinfo;
195}
196
8f2906f5
JD
197static NSString *
198ns_filename_from_panel (NSSavePanel *panel)
199{
200#if defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
201 NSURL *url = [panel URL];
202 NSString *str = [url path];
203 return str;
204#else
205 return [panel filename];
206#endif
207}
208
209static NSString *
210ns_directory_from_panel (NSSavePanel *panel)
211{
212#if defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
213 NSURL *url = [panel directoryURL];
214 NSString *str = [url path];
215 return str;
216#else
217 return [panel directory];
218#endif
219}
edfda783
AR
220
221static Lisp_Object
222interpret_services_menu (NSMenu *menu, Lisp_Object prefix, Lisp_Object old)
223/* --------------------------------------------------------------------------
224 Turn the input menu (an NSMenu) into a lisp list for tracking on lisp side
225 -------------------------------------------------------------------------- */
226{
227 int i, count;
15034960 228 NSMenuItem *item;
edfda783
AR
229 const char *name;
230 Lisp_Object nameStr;
231 unsigned short key;
232 NSString *keys;
233 Lisp_Object res;
234
235 count = [menu numberOfItems];
236 for (i = 0; i<count; i++)
237 {
238 item = [menu itemAtIndex: i];
239 name = [[item title] UTF8String];
240 if (!name) continue;
241
242 nameStr = build_string (name);
243
244 if ([item hasSubmenu])
245 {
246 old = interpret_services_menu ([item submenu],
247 Fcons (nameStr, prefix), old);
248 }
249 else
250 {
251 keys = [item keyEquivalent];
252 if (keys && [keys length] )
253 {
254 key = [keys characterAtIndex: 0];
255 res = make_number (key|super_modifier);
256 }
257 else
258 {
259 res = Qundefined;
260 }
261 old = Fcons (Fcons (res,
262 Freverse (Fcons (nameStr,
263 prefix))),
264 old);
265 }
266 }
267 return old;
268}
269
270
271
272/* ==========================================================================
273
274 Frame parameter setters
275
276 ========================================================================== */
277
278
279static void
89e2438a 280x_set_foreground_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
edfda783
AR
281{
282 NSColor *col;
c0342369 283 EmacsCGFloat r, g, b, alpha;
edfda783
AR
284
285 if (ns_lisp_to_color (arg, &col))
286 {
287 store_frame_param (f, Qforeground_color, oldval);
288 error ("Unknown color");
289 }
290
291 [col retain];
292 [f->output_data.ns->foreground_color release];
293 f->output_data.ns->foreground_color = col;
294
d8c2fa78
AA
295 [col getRed: &r green: &g blue: &b alpha: &alpha];
296 FRAME_FOREGROUND_PIXEL (f) =
297 ARGB_TO_ULONG ((int)(alpha*0xff), (int)(r*0xff), (int)(g*0xff), (int)(b*0xff));
298
edfda783
AR
299 if (FRAME_NS_VIEW (f))
300 {
301 update_face_from_frame_parameter (f, Qforeground_color, arg);
302 /*recompute_basic_faces (f); */
303 if (FRAME_VISIBLE_P (f))
304 redraw_frame (f);
305 }
306}
307
308
309static void
89e2438a 310x_set_background_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
edfda783
AR
311{
312 struct face *face;
313 NSColor *col;
314 NSView *view = FRAME_NS_VIEW (f);
c0342369 315 EmacsCGFloat r, g, b, alpha;
edfda783
AR
316
317 if (ns_lisp_to_color (arg, &col))
318 {
319 store_frame_param (f, Qbackground_color, oldval);
320 error ("Unknown color");
321 }
322
323 /* clear the frame; in some instances the NS-internal GC appears not to
324 update, or it does update and cannot clear old text properly */
325 if (FRAME_VISIBLE_P (f))
326 ns_clear_frame (f);
327
328 [col retain];
329 [f->output_data.ns->background_color release];
330 f->output_data.ns->background_color = col;
d8c2fa78
AA
331
332 [col getRed: &r green: &g blue: &b alpha: &alpha];
333 FRAME_BACKGROUND_PIXEL (f) =
334 ARGB_TO_ULONG ((int)(alpha*0xff), (int)(r*0xff), (int)(g*0xff), (int)(b*0xff));
335
edfda783
AR
336 if (view != nil)
337 {
338 [[view window] setBackgroundColor: col];
edfda783 339
c0342369 340 if (alpha != (EmacsCGFloat) 1.0)
edfda783
AR
341 [[view window] setOpaque: NO];
342 else
343 [[view window] setOpaque: YES];
344
345 face = FRAME_DEFAULT_FACE (f);
346 if (face)
347 {
45d325c4 348 col = ns_lookup_indexed_color (NS_FACE_BACKGROUND (face), f);
204ee57f
JD
349 face->background = ns_index_color
350 ([col colorWithAlphaComponent: alpha], f);
edfda783
AR
351
352 update_face_from_frame_parameter (f, Qbackground_color, arg);
353 }
354
355 if (FRAME_VISIBLE_P (f))
356 redraw_frame (f);
357 }
358}
359
360
361static void
89e2438a 362x_set_cursor_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
edfda783
AR
363{
364 NSColor *col;
365
366 if (ns_lisp_to_color (arg, &col))
367 {
368 store_frame_param (f, Qcursor_color, oldval);
369 error ("Unknown color");
370 }
371
c8c057de
AR
372 [FRAME_CURSOR_COLOR (f) release];
373 FRAME_CURSOR_COLOR (f) = [col retain];
edfda783
AR
374
375 if (FRAME_VISIBLE_P (f))
376 {
377 x_update_cursor (f, 0);
378 x_update_cursor (f, 1);
379 }
380 update_face_from_frame_parameter (f, Qcursor_color, arg);
381}
382
c8c057de 383
edfda783 384static void
89e2438a 385x_set_icon_name (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
edfda783
AR
386{
387 NSView *view = FRAME_NS_VIEW (f);
89e2438a 388 NSTRACE (x_set_icon_name);
edfda783 389
edfda783
AR
390 /* see if it's changed */
391 if (STRINGP (arg))
392 {
393 if (STRINGP (oldval) && EQ (Fstring_equal (oldval, arg), Qt))
394 return;
395 }
396 else if (!STRINGP (oldval) && EQ (oldval, Qnil) == EQ (arg, Qnil))
397 return;
398
f00af5b1 399 fset_icon_name (f, arg);
edfda783
AR
400
401 if (NILP (arg))
402 {
e69b0960
DA
403 if (!NILP (f->title))
404 arg = f->title;
edfda783 405 else
94ae2ad4 406 /* Explicit name and no icon-name -> explicit_name. */
edfda783 407 if (f->explicit_name)
e69b0960 408 arg = f->name;
edfda783
AR
409 else
410 {
94ae2ad4
SM
411 /* No explicit name and no icon-name ->
412 name has to be rebuild from icon_title_format. */
413 windows_or_buffers_changed = 62;
edfda783
AR
414 return;
415 }
416 }
417
418 /* Don't change the name if it's already NAME. */
94ae2ad4
SM
419 if ([[view window] miniwindowTitle]
420 && ([[[view window] miniwindowTitle]
edfda783 421 isEqualToString: [NSString stringWithUTF8String:
94ae2ad4 422 SSDATA (arg)]]))
edfda783
AR
423 return;
424
425 [[view window] setMiniwindowTitle:
0dc8cf50 426 [NSString stringWithUTF8String: SSDATA (arg)]];
edfda783
AR
427}
428
edfda783 429static void
a10c8269 430ns_set_name_internal (struct frame *f, Lisp_Object name)
edfda783 431{
5bbb4727
JD
432 struct gcpro gcpro1;
433 Lisp_Object encoded_name, encoded_icon_name;
434 NSString *str;
edfda783 435 NSView *view = FRAME_NS_VIEW (f);
edfda783 436
5bbb4727
JD
437 GCPRO1 (name);
438 encoded_name = ENCODE_UTF_8 (name);
439 UNGCPRO;
edfda783 440
0dc8cf50 441 str = [NSString stringWithUTF8String: SSDATA (encoded_name)];
edfda783 442
5bbb4727
JD
443 /* Don't change the name if it's already NAME. */
444 if (! [[[view window] title] isEqualToString: str])
445 [[view window] setTitle: str];
edfda783 446
e69b0960 447 if (!STRINGP (f->icon_name))
5bbb4727 448 encoded_icon_name = encoded_name;
edfda783 449 else
e69b0960 450 encoded_icon_name = ENCODE_UTF_8 (f->icon_name);
5bbb4727 451
0dc8cf50 452 str = [NSString stringWithUTF8String: SSDATA (encoded_icon_name)];
edfda783 453
2ec9db5d
SM
454 if ([[view window] miniwindowTitle]
455 && ! [[[view window] miniwindowTitle] isEqualToString: str])
5bbb4727 456 [[view window] setMiniwindowTitle: str];
edfda783 457
edfda783
AR
458}
459
edfda783
AR
460static void
461ns_set_name (struct frame *f, Lisp_Object name, int explicit)
462{
edfda783
AR
463 NSTRACE (ns_set_name);
464
edfda783
AR
465 /* Make sure that requests from lisp code override requests from
466 Emacs redisplay code. */
467 if (explicit)
468 {
469 /* If we're switching from explicit to implicit, we had better
470 update the mode lines and thereby update the title. */
471 if (f->explicit_name && NILP (name))
2ec9db5d 472 update_mode_lines = 21;
edfda783
AR
473
474 f->explicit_name = ! NILP (name);
475 }
476 else if (f->explicit_name)
477 return;
478
479 if (NILP (name))
2ec9db5d 480 name = build_string ([ns_app_name UTF8String]);
5bbb4727
JD
481 else
482 CHECK_STRING (name);
483
484 /* Don't change the name if it's already NAME. */
e69b0960 485 if (! NILP (Fstring_equal (name, f->name)))
5bbb4727 486 return;
edfda783 487
f00af5b1 488 fset_name (f, name);
edfda783 489
2ec9db5d 490 /* Title overrides explicit name. */
e69b0960
DA
491 if (! NILP (f->title))
492 name = f->title;
edfda783 493
5bbb4727 494 ns_set_name_internal (f, name);
edfda783
AR
495}
496
497
498/* This function should be called when the user's lisp code has
499 specified a name for the frame; the name will override any set by the
500 redisplay code. */
501static void
a10c8269 502x_explicitly_set_name (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
edfda783 503{
89e2438a 504 NSTRACE (x_explicitly_set_name);
edfda783
AR
505 ns_set_name (f, arg, 1);
506}
507
508
509/* This function should be called by Emacs redisplay code to set the
510 name; names set this way will never override names set by the user's
511 lisp code. */
512void
a10c8269 513x_implicitly_set_name (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
edfda783
AR
514{
515 NSTRACE (x_implicitly_set_name);
5bbb4727
JD
516
517 /* Deal with NS specific format t. */
518 if (FRAME_NS_P (f) && ((FRAME_ICONIFIED_P (f) && EQ (Vicon_title_format, Qt))
519 || EQ (Vframe_title_format, Qt)))
9ae6e189 520 ns_set_name_as_filename (f);
edfda783
AR
521 else
522 ns_set_name (f, arg, 0);
523}
524
525
526/* Change the title of frame F to NAME.
5bbb4727 527 If NAME is nil, use the frame name as the title. */
edfda783 528
edfda783 529static void
89e2438a 530x_set_title (struct frame *f, Lisp_Object name, Lisp_Object old_name)
edfda783 531{
89e2438a 532 NSTRACE (x_set_title);
edfda783 533 /* Don't change the title if it's already NAME. */
e69b0960 534 if (EQ (name, f->title))
edfda783
AR
535 return;
536
2ec9db5d 537 update_mode_lines = 22;
edfda783 538
f00af5b1 539 fset_title (f, name);
5bbb4727
JD
540
541 if (NILP (name))
e69b0960 542 name = f->name;
5bbb4727
JD
543 else
544 CHECK_STRING (name);
545
546 ns_set_name_internal (f, name);
edfda783
AR
547}
548
549
550void
551ns_set_name_as_filename (struct frame *f)
552{
fec8f0fe 553 NSView *view;
aeb7e951 554 Lisp_Object name, filename;
e74aeda8 555 Lisp_Object buf = XWINDOW (f->selected_window)->contents;
edfda783
AR
556 const char *title;
557 NSAutoreleasePool *pool;
5bbb4727 558 struct gcpro gcpro1;
aeb7e951
JD
559 Lisp_Object encoded_name, encoded_filename;
560 NSString *str;
edfda783
AR
561 NSTRACE (ns_set_name_as_filename);
562
3bc0a2f7 563 if (f->explicit_name || ! NILP (f->title))
edfda783
AR
564 return;
565
4d7e6e51 566 block_input ();
edfda783 567 pool = [[NSAutoreleasePool alloc] init];
124c9ff0
JD
568 filename = BVAR (XBUFFER (buf), filename);
569 name = BVAR (XBUFFER (buf), name);
edfda783
AR
570
571 if (NILP (name))
aeb7e951
JD
572 {
573 if (! NILP (filename))
574 name = Ffile_name_nondirectory (filename);
575 else
576 name = build_string ([ns_app_name UTF8String]);
577 }
edfda783 578
5bbb4727
JD
579 GCPRO1 (name);
580 encoded_name = ENCODE_UTF_8 (name);
581 UNGCPRO;
582
fec8f0fe
CY
583 view = FRAME_NS_VIEW (f);
584
edfda783
AR
585 title = FRAME_ICONIFIED_P (f) ? [[[view window] miniwindowTitle] UTF8String]
586 : [[[view window] title] UTF8String];
587
0dc8cf50 588 if (title && (! strcmp (title, SSDATA (encoded_name))))
edfda783
AR
589 {
590 [pool release];
4d7e6e51 591 unblock_input ();
edfda783
AR
592 return;
593 }
594
0dc8cf50 595 str = [NSString stringWithUTF8String: SSDATA (encoded_name)];
aeb7e951
JD
596 if (str == nil) str = @"Bad coding";
597
598 if (FRAME_ICONIFIED_P (f))
599 [[view window] setMiniwindowTitle: str];
5fdb398c 600 else
edfda783 601 {
aeb7e951
JD
602 NSString *fstr;
603
604 if (! NILP (filename))
edfda783 605 {
aeb7e951
JD
606 GCPRO1 (filename);
607 encoded_filename = ENCODE_UTF_8 (filename);
608 UNGCPRO;
609
0dc8cf50 610 fstr = [NSString stringWithUTF8String: SSDATA (encoded_filename)];
aeb7e951
JD
611 if (fstr == nil) fstr = @"";
612#ifdef NS_IMPL_COCOA
613 /* work around a bug observed on 10.3 and later where
614 setTitleWithRepresentedFilename does not clear out previous state
615 if given filename does not exist */
616 if (! [[NSFileManager defaultManager] fileExistsAtPath: fstr])
617 [[view window] setRepresentedFilename: @""];
618#endif
edfda783
AR
619 }
620 else
aeb7e951
JD
621 fstr = @"";
622
623 [[view window] setRepresentedFilename: fstr];
624 [[view window] setTitle: str];
f00af5b1 625 fset_name (f, name);
edfda783 626 }
aeb7e951 627
edfda783 628 [pool release];
4d7e6e51 629 unblock_input ();
edfda783
AR
630}
631
632
633void
6521c534 634ns_set_doc_edited (struct frame *f, Lisp_Object arg)
edfda783
AR
635{
636 NSView *view = FRAME_NS_VIEW (f);
637 NSAutoreleasePool *pool;
e69b0960 638 if (!MINI_WINDOW_P (XWINDOW (f->selected_window)))
9ae6e189 639 {
4d7e6e51 640 block_input ();
9ae6e189
CY
641 pool = [[NSAutoreleasePool alloc] init];
642 [[view window] setDocumentEdited: !NILP (arg)];
643 [pool release];
4d7e6e51 644 unblock_input ();
9ae6e189 645 }
edfda783
AR
646}
647
648
cc98b6a0
DN
649void
650x_set_menu_bar_lines (struct frame *f, Lisp_Object value, Lisp_Object oldval)
edfda783
AR
651{
652 int nlines;
edfda783
AR
653 if (FRAME_MINIBUF_ONLY_P (f))
654 return;
655
d311d28c 656 if (TYPE_RANGED_INTEGERP (int, value))
edfda783
AR
657 nlines = XINT (value);
658 else
659 nlines = 0;
660
661 FRAME_MENU_BAR_LINES (f) = 0;
662 if (nlines)
663 {
664 FRAME_EXTERNAL_MENU_BAR (f) = 1;
cc98b6a0
DN
665 /* does for all frames, whereas we just want for one frame
666 [NSMenu setMenuBarVisible: YES]; */
edfda783
AR
667 }
668 else
669 {
670 if (FRAME_EXTERNAL_MENU_BAR (f) == 1)
671 free_frame_menubar (f);
cc98b6a0 672 /* [NSMenu setMenuBarVisible: NO]; */
edfda783
AR
673 FRAME_EXTERNAL_MENU_BAR (f) = 0;
674 }
675}
676
677
3fe53a83 678/* toolbar support */
cc98b6a0
DN
679void
680x_set_tool_bar_lines (struct frame *f, Lisp_Object value, Lisp_Object oldval)
edfda783
AR
681{
682 int nlines;
edfda783
AR
683
684 if (FRAME_MINIBUF_ONLY_P (f))
685 return;
686
d311d28c 687 if (RANGED_INTEGERP (0, value, INT_MAX))
edfda783
AR
688 nlines = XFASTINT (value);
689 else
690 nlines = 0;
691
692 if (nlines)
693 {
694 FRAME_EXTERNAL_TOOL_BAR (f) = 1;
695 update_frame_tool_bar (f);
696 }
697 else
698 {
699 if (FRAME_EXTERNAL_TOOL_BAR (f))
700 {
701 free_frame_tool_bar (f);
702 FRAME_EXTERNAL_TOOL_BAR (f) = 0;
703 }
704 }
705
880e6158 706 x_set_window_size (f, 0, f->text_cols, f->text_lines, 0);
edfda783
AR
707}
708
709
c0342369 710static void
edfda783
AR
711ns_implicitly_set_icon_type (struct frame *f)
712{
713 Lisp_Object tem;
714 EmacsView *view = FRAME_NS_VIEW (f);
204ee57f 715 id image = nil;
edfda783
AR
716 Lisp_Object chain, elt;
717 NSAutoreleasePool *pool;
718 BOOL setMini = YES;
719
720 NSTRACE (ns_implicitly_set_icon_type);
721
4d7e6e51 722 block_input ();
edfda783
AR
723 pool = [[NSAutoreleasePool alloc] init];
724 if (f->output_data.ns->miniimage
e69b0960 725 && [[NSString stringWithUTF8String: SSDATA (f->name)]
edfda783
AR
726 isEqualToString: [(NSImage *)f->output_data.ns->miniimage name]])
727 {
728 [pool release];
4d7e6e51 729 unblock_input ();
edfda783
AR
730 return;
731 }
732
e69b0960 733 tem = assq_no_quit (Qicon_type, f->param_alist);
edfda783
AR
734 if (CONSP (tem) && ! NILP (XCDR (tem)))
735 {
736 [pool release];
4d7e6e51 737 unblock_input ();
edfda783
AR
738 return;
739 }
740
741 for (chain = Vns_icon_type_alist;
204ee57f 742 image == nil && CONSP (chain);
edfda783
AR
743 chain = XCDR (chain))
744 {
745 elt = XCAR (chain);
746 /* special case: 't' means go by file type */
e69b0960 747 if (SYMBOLP (elt) && EQ (elt, Qt) && SSDATA (f->name)[0] == '/')
edfda783 748 {
facfbbbd 749 NSString *str
e69b0960 750 = [NSString stringWithUTF8String: SSDATA (f->name)];
edfda783
AR
751 if ([[NSFileManager defaultManager] fileExistsAtPath: str])
752 image = [[[NSWorkspace sharedWorkspace] iconForFile: str] retain];
753 }
754 else if (CONSP (elt) &&
755 STRINGP (XCAR (elt)) &&
756 STRINGP (XCDR (elt)) &&
e69b0960 757 fast_string_match (XCAR (elt), f->name) >= 0)
edfda783
AR
758 {
759 image = [EmacsImage allocInitFromFile: XCDR (elt)];
760 if (image == nil)
761 image = [[NSImage imageNamed:
762 [NSString stringWithUTF8String:
0dc8cf50 763 SSDATA (XCDR (elt))]] retain];
edfda783
AR
764 }
765 }
766
767 if (image == nil)
768 {
769 image = [[[NSWorkspace sharedWorkspace] iconForFileType: @"text"] retain];
770 setMini = NO;
771 }
772
773 [f->output_data.ns->miniimage release];
774 f->output_data.ns->miniimage = image;
775 [view setMiniwindowImage: setMini];
776 [pool release];
4d7e6e51 777 unblock_input ();
edfda783
AR
778}
779
780
781static void
89e2438a 782x_set_icon_type (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
edfda783
AR
783{
784 EmacsView *view = FRAME_NS_VIEW (f);
785 id image = nil;
786 BOOL setMini = YES;
787
89e2438a 788 NSTRACE (x_set_icon_type);
edfda783
AR
789
790 if (!NILP (arg) && SYMBOLP (arg))
791 {
0dc8cf50 792 arg =build_string (SSDATA (SYMBOL_NAME (arg)));
edfda783
AR
793 store_frame_param (f, Qicon_type, arg);
794 }
795
796 /* do it the implicit way */
797 if (NILP (arg))
798 {
799 ns_implicitly_set_icon_type (f);
800 return;
801 }
802
803 CHECK_STRING (arg);
804
805 image = [EmacsImage allocInitFromFile: arg];
806 if (image == nil)
807 image =[NSImage imageNamed: [NSString stringWithUTF8String:
0dc8cf50 808 SSDATA (arg)]];
edfda783
AR
809
810 if (image == nil)
811 {
812 image = [NSImage imageNamed: @"text"];
813 setMini = NO;
814 }
815
816 f->output_data.ns->miniimage = image;
817 [view setMiniwindowImage: setMini];
818}
819
820
6fb5f7da 821/* TODO: move to nsterm? */
edfda783
AR
822int
823ns_lisp_to_cursor_type (Lisp_Object arg)
824{
825 char *str;
826 if (XTYPE (arg) == Lisp_String)
0dc8cf50 827 str = SSDATA (arg);
edfda783 828 else if (XTYPE (arg) == Lisp_Symbol)
0dc8cf50 829 str = SSDATA (SYMBOL_NAME (arg));
edfda783 830 else return -1;
c8c057de
AR
831 if (!strcmp (str, "box")) return FILLED_BOX_CURSOR;
832 if (!strcmp (str, "hollow")) return HOLLOW_BOX_CURSOR;
833 if (!strcmp (str, "hbar")) return HBAR_CURSOR;
834 if (!strcmp (str, "bar")) return BAR_CURSOR;
835 if (!strcmp (str, "no")) return NO_CURSOR;
edfda783
AR
836 return -1;
837}
838
839
840Lisp_Object
841ns_cursor_type_to_lisp (int arg)
842{
843 switch (arg)
844 {
c8c057de
AR
845 case FILLED_BOX_CURSOR: return Qbox;
846 case HOLLOW_BOX_CURSOR: return intern ("hollow");
847 case HBAR_CURSOR: return intern ("hbar");
848 case BAR_CURSOR: return intern ("bar");
849 case NO_CURSOR:
850 default: return intern ("no");
edfda783
AR
851 }
852}
853
89e2438a 854/* This is the same as the xfns.c definition. */
c0342369 855static void
a10c8269 856x_set_cursor_type (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
edfda783 857{
06197b17 858 set_frame_cursor_types (f, arg);
edfda783 859}
edfda783 860
3fe53a83
AR
861/* called to set mouse pointer color, but all other terms use it to
862 initialize pointer types (and don't set the color ;) */
edfda783 863static void
89e2438a 864x_set_mouse_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
edfda783 865{
d26fbe1a 866 /* don't think we can do this on Nextstep */
edfda783
AR
867}
868
869
cb83c00b
AR
870#define Str(x) #x
871#define Xstr(x) Str(x)
872
873static Lisp_Object
3d608a86 874ns_appkit_version_str (void)
cb83c00b 875{
a2130fb7 876 char tmp[256];
cb83c00b
AR
877
878#ifdef NS_IMPL_GNUSTEP
879 sprintf(tmp, "gnustep-gui-%s", Xstr(GNUSTEP_GUI_VERSION));
cf7a0de6 880#elif defined (NS_IMPL_COCOA)
a2130fb7
JD
881 NSString *osversion
882 = [[NSProcessInfo processInfo] operatingSystemVersionString];
883 sprintf(tmp, "appkit-%.2f %s",
884 NSAppKitVersionNumber,
885 [osversion UTF8String]);
cb83c00b
AR
886#else
887 tmp = "ns-unknown";
888#endif
889 return build_string (tmp);
890}
891
892
f5497e45
AR
893/* This is for use by x-server-version and collapses all version info we
894 have into a single int. For a better picture of the implementation
895 running, use ns_appkit_version_str.*/
896static int
3d608a86 897ns_appkit_version_int (void)
f5497e45
AR
898{
899#ifdef NS_IMPL_GNUSTEP
13cd8a29 900 return GNUSTEP_GUI_MAJOR_VERSION * 100 + GNUSTEP_GUI_MINOR_VERSION;
cf7a0de6 901#elif defined (NS_IMPL_COCOA)
f5497e45
AR
902 return (int)NSAppKitVersionNumber;
903#endif
904 return 0;
905}
906
907
edfda783 908static void
952913d4 909x_icon (struct frame *f, Lisp_Object parms)
edfda783
AR
910/* --------------------------------------------------------------------------
911 Strangely-named function to set icon position parameters in frame.
912 This is irrelevant under OS X, but might be needed under GNUstep,
913 depending on the window manager used. Note, this is not a standard
914 frame parameter-setter; it is called directly from x-create-frame.
915 -------------------------------------------------------------------------- */
916{
917 Lisp_Object icon_x, icon_y;
918 struct ns_display_info *dpyinfo = check_ns_display_info (Qnil);
919
920 f->output_data.ns->icon_top = Qnil;
921 f->output_data.ns->icon_left = Qnil;
922
923 /* Set the position of the icon. */
924 icon_x = x_get_arg (dpyinfo, parms, Qicon_left, 0, 0, RES_TYPE_NUMBER);
925 icon_y = x_get_arg (dpyinfo, parms, Qicon_top, 0, 0, RES_TYPE_NUMBER);
926 if (!EQ (icon_x, Qunbound) && !EQ (icon_y, Qunbound))
927 {
928 CHECK_NUMBER (icon_x);
929 CHECK_NUMBER (icon_y);
930 f->output_data.ns->icon_top = icon_y;
931 f->output_data.ns->icon_left = icon_x;
932 }
933 else if (!EQ (icon_x, Qunbound) || !EQ (icon_y, Qunbound))
934 error ("Both left and top icon corners of icon must be specified");
935}
936
937
3fe53a83 938/* Note: see frame.c for template, also where generic functions are impl */
edfda783
AR
939frame_parm_handler ns_frame_parm_handlers[] =
940{
941 x_set_autoraise, /* generic OK */
942 x_set_autolower, /* generic OK */
89e2438a 943 x_set_background_color,
d26fbe1a
CY
944 0, /* x_set_border_color, may be impossible under Nextstep */
945 0, /* x_set_border_width, may be impossible under Nextstep */
89e2438a
DN
946 x_set_cursor_color,
947 x_set_cursor_type,
edfda783 948 x_set_font, /* generic OK */
89e2438a
DN
949 x_set_foreground_color,
950 x_set_icon_name,
951 x_set_icon_type,
edfda783 952 x_set_internal_border_width, /* generic OK */
c619527c
JD
953 0, /* x_set_right_divider_width */
954 0, /* x_set_bottom_divider_width */
cc98b6a0 955 x_set_menu_bar_lines,
89e2438a
DN
956 x_set_mouse_color,
957 x_explicitly_set_name,
edfda783 958 x_set_scroll_bar_width, /* generic OK */
89e2438a 959 x_set_title,
edfda783
AR
960 x_set_unsplittable, /* generic OK */
961 x_set_vertical_scroll_bars, /* generic OK */
962 x_set_visibility, /* generic OK */
cc98b6a0 963 x_set_tool_bar_lines,
edfda783
AR
964 0, /* x_set_scroll_bar_foreground, will ignore (not possible on NS) */
965 0, /* x_set_scroll_bar_background, will ignore (not possible on NS) */
966 x_set_screen_gamma, /* generic OK */
967 x_set_line_spacing, /* generic OK, sets f->extra_line_spacing to int */
968 x_set_fringe_width, /* generic OK */
969 x_set_fringe_width, /* generic OK */
970 0, /* x_set_wait_for_wm, will ignore */
dd946752 971 x_set_fullscreen, /* generic OK */
dee721c0 972 x_set_font_backend, /* generic OK */
cad9ef74 973 x_set_alpha,
5fdb398c
PE
974 0, /* x_set_sticky */
975 0, /* x_set_tool_bar_position */
edfda783
AR
976};
977
978
a97f8f3f
JD
979/* Handler for signals raised during x_create_frame.
980 FRAME is the frame which is partially constructed. */
981
27e498e6 982static void
a97f8f3f
JD
983unwind_create_frame (Lisp_Object frame)
984{
985 struct frame *f = XFRAME (frame);
986
987 /* If frame is already dead, nothing to do. This can happen if the
988 display is disconnected after the frame has become official, but
989 before x_create_frame removes the unwind protect. */
990 if (!FRAME_LIVE_P (f))
27e498e6 991 return;
a97f8f3f
JD
992
993 /* If frame is ``official'', nothing to do. */
97f18cc8 994 if (NILP (Fmemq (frame, Vframe_list)))
a97f8f3f 995 {
ef884f23 996#if defined GLYPH_DEBUG && defined ENABLE_CHECKING
aad3612f 997 struct ns_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
a97f8f3f
JD
998#endif
999
1000 x_free_frame_resources (f);
1001 free_glyphs (f);
1002
ef884f23 1003#ifdef GLYPH_DEBUG
a97f8f3f 1004 /* Check that reference counts are indeed correct. */
ef884f23 1005 eassert (dpyinfo->terminal->image_cache->refcount == image_cache_refcount);
a97f8f3f 1006#endif
a97f8f3f 1007 }
a97f8f3f
JD
1008}
1009
a0c3fad0
JD
1010/*
1011 * Read geometry related parameters from preferences if not in PARMS.
1012 * Returns the union of parms and any preferences read.
1013 */
a97f8f3f 1014
a0c3fad0
JD
1015static Lisp_Object
1016get_geometry_from_preferences (struct ns_display_info *dpyinfo,
1017 Lisp_Object parms)
1018{
1019 struct {
1020 const char *val;
1021 const char *cls;
1022 Lisp_Object tem;
1023 } r[] = {
1024 { "width", "Width", Qwidth },
1025 { "height", "Height", Qheight },
1026 { "left", "Left", Qleft },
1027 { "top", "Top", Qtop },
1028 };
1029
1030 int i;
c72d972c 1031 for (i = 0; i < ARRAYELTS (r); ++i)
a0c3fad0
JD
1032 {
1033 if (NILP (Fassq (r[i].tem, parms)))
1034 {
1035 Lisp_Object value
1036 = x_get_arg (dpyinfo, parms, r[i].tem, r[i].val, r[i].cls,
1037 RES_TYPE_NUMBER);
1038 if (! EQ (value, Qunbound))
1039 parms = Fcons (Fcons (r[i].tem, value), parms);
1040 }
1041 }
a97f8f3f 1042
a0c3fad0
JD
1043 return parms;
1044}
cb83c00b
AR
1045
1046/* ==========================================================================
1047
1048 Lisp definitions
1049
1050 ========================================================================== */
1051
9e50ff0c 1052DEFUN ("x-create-frame", Fx_create_frame, Sx_create_frame,
edfda783 1053 1, 1, 0,
a97f8f3f 1054 doc: /* Make a new Nextstep window, called a "frame" in Emacs terms.
d26fbe1a
CY
1055Return an Emacs frame object.
1056PARMS is an alist of frame parameters.
1057If the parameters specify that the frame should not have a minibuffer,
1058and do not specify a specific minibuffer window to use,
1059then `default-minibuffer-frame' must be a frame whose minibuffer can
a97f8f3f
JD
1060be shared by the new frame.
1061
1062This function is an internal primitive--use `make-frame' instead. */)
5842a27b 1063 (Lisp_Object parms)
edfda783 1064{
edfda783 1065 struct frame *f;
edfda783
AR
1066 Lisp_Object frame, tem;
1067 Lisp_Object name;
1068 int minibuffer_only = 0;
959067a1 1069 long window_prompting = 0;
a97f8f3f 1070 int width, height;
d311d28c 1071 ptrdiff_t count = specpdl_ptr - specpdl;
a97f8f3f 1072 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
edfda783
AR
1073 Lisp_Object display;
1074 struct ns_display_info *dpyinfo = NULL;
1075 Lisp_Object parent;
1076 struct kboard *kb;
a97f8f3f 1077 static int desc_ctr = 1;
edfda783 1078
a97f8f3f 1079 /* x_get_arg modifies parms. */
bd6ce2ba
AR
1080 parms = Fcopy_alist (parms);
1081
a97f8f3f
JD
1082 /* Use this general default value to start with
1083 until we know if this frame has a specified name. */
1084 Vx_resource_name = Vinvocation_name;
1085
edfda783
AR
1086 display = x_get_arg (dpyinfo, parms, Qterminal, 0, 0, RES_TYPE_STRING);
1087 if (EQ (display, Qunbound))
1088 display = Qnil;
1089 dpyinfo = check_ns_display_info (display);
a97f8f3f 1090 kb = dpyinfo->terminal->kboard;
edfda783
AR
1091
1092 if (!dpyinfo->terminal->name)
1093 error ("Terminal is not live, can't create new frames on it");
1094
edfda783
AR
1095 name = x_get_arg (dpyinfo, parms, Qname, 0, 0, RES_TYPE_STRING);
1096 if (!STRINGP (name)
1097 && ! EQ (name, Qunbound)
1098 && ! NILP (name))
1099 error ("Invalid frame name--not a string or nil");
1100
1101 if (STRINGP (name))
1102 Vx_resource_name = name;
1103
1104 parent = x_get_arg (dpyinfo, parms, Qparent_id, 0, 0, RES_TYPE_NUMBER);
1105 if (EQ (parent, Qunbound))
1106 parent = Qnil;
1107 if (! NILP (parent))
1108 CHECK_NUMBER (parent);
1109
a97f8f3f
JD
1110 /* make_frame_without_minibuffer can run Lisp code and garbage collect. */
1111 /* No need to protect DISPLAY because that's not used after passing
1112 it to make_frame_without_minibuffer. */
edfda783
AR
1113 frame = Qnil;
1114 GCPRO4 (parms, parent, name, frame);
edfda783
AR
1115 tem = x_get_arg (dpyinfo, parms, Qminibuffer, "minibuffer", "Minibuffer",
1116 RES_TYPE_SYMBOL);
1117 if (EQ (tem, Qnone) || NILP (tem))
edfda783 1118 f = make_frame_without_minibuffer (Qnil, kb, display);
edfda783
AR
1119 else if (EQ (tem, Qonly))
1120 {
1121 f = make_minibuffer_frame ();
1122 minibuffer_only = 1;
1123 }
1124 else if (WINDOWP (tem))
edfda783 1125 f = make_frame_without_minibuffer (tem, kb, display);
edfda783 1126 else
edfda783 1127 f = make_frame (1);
edfda783
AR
1128
1129 XSETFRAME (frame, f);
edfda783
AR
1130
1131 f->terminal = dpyinfo->terminal;
edfda783
AR
1132
1133 f->output_method = output_ns;
38182d90 1134 f->output_data.ns = xzalloc (sizeof *f->output_data.ns);
edfda783
AR
1135
1136 FRAME_FONTSET (f) = -1;
1137
f00af5b1
PE
1138 fset_icon_name (f, x_get_arg (dpyinfo, parms, Qicon_name,
1139 "iconName", "Title",
1140 RES_TYPE_STRING));
e69b0960 1141 if (! STRINGP (f->icon_name))
f00af5b1 1142 fset_icon_name (f, Qnil);
edfda783 1143
aad3612f 1144 FRAME_DISPLAY_INFO (f) = dpyinfo;
edfda783 1145
aad3612f 1146 /* With FRAME_DISPLAY_INFO set up, this unwind-protect is safe. */
a97f8f3f
JD
1147 record_unwind_protect (unwind_create_frame, frame);
1148
edfda783 1149 f->output_data.ns->window_desc = desc_ctr++;
d311d28c 1150 if (TYPE_RANGED_INTEGERP (Window, parent))
edfda783 1151 {
d311d28c 1152 f->output_data.ns->parent_desc = XFASTINT (parent);
edfda783
AR
1153 f->output_data.ns->explicit_parent = 1;
1154 }
1155 else
1156 {
aad3612f 1157 f->output_data.ns->parent_desc = FRAME_DISPLAY_INFO (f)->root_window;
edfda783
AR
1158 f->output_data.ns->explicit_parent = 0;
1159 }
1160
a97f8f3f
JD
1161 /* Set the name; the functions to which we pass f expect the name to
1162 be set. */
1163 if (EQ (name, Qunbound) || NILP (name) || ! STRINGP (name))
1164 {
f00af5b1 1165 fset_name (f, build_string ([ns_app_name UTF8String]));
a97f8f3f
JD
1166 f->explicit_name = 0;
1167 }
1168 else
1169 {
f00af5b1 1170 fset_name (f, name);
a97f8f3f
JD
1171 f->explicit_name = 1;
1172 specbind (Qx_resource_name, name);
1173 }
1174
4d7e6e51 1175 block_input ();
3fa2054e 1176
745d3809
JD
1177#ifdef NS_IMPL_COCOA
1178#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5
3fa2054e
JD
1179 if (CTGetCoreTextVersion != NULL
1180 && CTGetCoreTextVersion () >= kCTVersionNumber10_5)
1181 mac_register_font_driver (f);
3fa2054e 1182#endif
745d3809
JD
1183#endif
1184 register_font_driver (&nsfont_driver, f);
3fa2054e 1185
edfda783
AR
1186 x_default_parameter (f, parms, Qfont_backend, Qnil,
1187 "fontBackend", "FontBackend", RES_TYPE_STRING);
1188
1189 {
1190 /* use for default font name */
1191 id font = [NSFont userFixedPitchFontOfSize: -1.0]; /* default */
c0342369 1192 x_default_parameter (f, parms, Qfontsize,
edfda783
AR
1193 make_number (0 /*(int)[font pointSize]*/),
1194 "fontSize", "FontSize", RES_TYPE_NUMBER);
3fa2054e
JD
1195 // Remove ' Regular', not handled by backends.
1196 char *fontname = xstrdup ([[font displayName] UTF8String]);
1197 int len = strlen (fontname);
1198 if (len > 8 && strcmp (fontname + len - 8, " Regular") == 0)
1199 fontname[len-8] = '\0';
c0342369 1200 x_default_parameter (f, parms, Qfont,
3fa2054e 1201 build_string (fontname),
edfda783 1202 "font", "Font", RES_TYPE_STRING);
c8b09927 1203 xfree (fontname);
edfda783 1204 }
4d7e6e51 1205 unblock_input ();
edfda783
AR
1206
1207 x_default_parameter (f, parms, Qborder_width, make_number (0),
1208 "borderwidth", "BorderWidth", RES_TYPE_NUMBER);
1209 x_default_parameter (f, parms, Qinternal_border_width, make_number (2),
1210 "internalBorderWidth", "InternalBorderWidth",
1211 RES_TYPE_NUMBER);
1212
1213 /* default scrollbars on right on Mac */
1214 {
facfbbbd 1215 Lisp_Object spos
edfda783 1216#ifdef NS_IMPL_GNUSTEP
facfbbbd 1217 = Qt;
edfda783 1218#else
facfbbbd 1219 = Qright;
edfda783 1220#endif
facfbbbd
SM
1221 x_default_parameter (f, parms, Qvertical_scroll_bars, spos,
1222 "verticalScrollBars", "VerticalScrollBars",
1223 RES_TYPE_SYMBOL);
edfda783
AR
1224 }
1225 x_default_parameter (f, parms, Qforeground_color, build_string ("Black"),
1226 "foreground", "Foreground", RES_TYPE_STRING);
1227 x_default_parameter (f, parms, Qbackground_color, build_string ("White"),
1228 "background", "Background", RES_TYPE_STRING);
22bcf204 1229 /* FIXME: not supported yet in Nextstep */
edfda783
AR
1230 x_default_parameter (f, parms, Qline_spacing, Qnil,
1231 "lineSpacing", "LineSpacing", RES_TYPE_NUMBER);
1232 x_default_parameter (f, parms, Qleft_fringe, Qnil,
1233 "leftFringe", "LeftFringe", RES_TYPE_NUMBER);
1234 x_default_parameter (f, parms, Qright_fringe, Qnil,
1235 "rightFringe", "RightFringe", RES_TYPE_NUMBER);
edfda783 1236
ef884f23 1237#ifdef GLYPH_DEBUG
a97f8f3f
JD
1238 image_cache_refcount =
1239 FRAME_IMAGE_CACHE (f) ? FRAME_IMAGE_CACHE (f)->refcount : 0;
1240#endif
edfda783
AR
1241
1242 init_frame_faces (f);
1243
7def8cbd
JD
1244 /* Read comment about this code in corresponding place in xfns.c. */
1245 width = FRAME_TEXT_WIDTH (f);
1246 height = FRAME_TEXT_HEIGHT (f);
1247 FRAME_TEXT_HEIGHT (f) = 0;
1248 SET_FRAME_WIDTH (f, 0);
1249 change_frame_size (f, width, height, 1, 0, 0, 1);
1250
a97f8f3f 1251 /* The resources controlling the menu-bar and tool-bar are
6431f2e6
CY
1252 processed specially at startup, and reflected in the mode
1253 variables; ignore them here. */
1254 x_default_parameter (f, parms, Qmenu_bar_lines,
1255 NILP (Vmenu_bar_mode)
1256 ? make_number (0) : make_number (1),
1257 NULL, NULL, RES_TYPE_NUMBER);
1258 x_default_parameter (f, parms, Qtool_bar_lines,
1259 NILP (Vtool_bar_mode)
1260 ? make_number (0) : make_number (1),
1261 NULL, NULL, RES_TYPE_NUMBER);
1262
edfda783
AR
1263 x_default_parameter (f, parms, Qbuffer_predicate, Qnil, "bufferPredicate",
1264 "BufferPredicate", RES_TYPE_SYMBOL);
1265 x_default_parameter (f, parms, Qtitle, Qnil, "title", "Title",
1266 RES_TYPE_STRING);
1267
a0c3fad0 1268 parms = get_geometry_from_preferences (dpyinfo, parms);
edfda783
AR
1269 window_prompting = x_figure_window_size (f, parms, 1);
1270
1271 tem = x_get_arg (dpyinfo, parms, Qunsplittable, 0, 0, RES_TYPE_BOOLEAN);
1272 f->no_split = minibuffer_only || (!EQ (tem, Qunbound) && !EQ (tem, Qnil));
1273
1274 /* NOTE: on other terms, this is done in set_mouse_color, however this
d26fbe1a 1275 was not getting called under Nextstep */
edfda783
AR
1276 f->output_data.ns->text_cursor = [NSCursor IBeamCursor];
1277 f->output_data.ns->nontext_cursor = [NSCursor arrowCursor];
1278 f->output_data.ns->modeline_cursor = [NSCursor pointingHandCursor];
1279 f->output_data.ns->hand_cursor = [NSCursor pointingHandCursor];
1280 f->output_data.ns->hourglass_cursor = [NSCursor disappearingItemCursor];
1281 f->output_data.ns->horizontal_drag_cursor = [NSCursor resizeLeftRightCursor];
880e6158 1282 f->output_data.ns->vertical_drag_cursor = [NSCursor resizeUpDownCursor];
aad3612f 1283 FRAME_DISPLAY_INFO (f)->vertical_scroll_bar_cursor
facfbbbd 1284 = [NSCursor arrowCursor];
edfda783
AR
1285 f->output_data.ns->current_pointer = f->output_data.ns->text_cursor;
1286
1287 [[EmacsView alloc] initFrameFromEmacs: f];
1288
952913d4 1289 x_icon (f, parms);
edfda783 1290
a97f8f3f
JD
1291 /* ns_display_info does not have a reference_count. */
1292 f->terminal->reference_count++;
1293
edfda783
AR
1294 /* It is now ok to make the frame official even if we get an error below.
1295 The frame needs to be on Vframe_list or making it visible won't work. */
1296 Vframe_list = Fcons (frame, Vframe_list);
a97f8f3f
JD
1297
1298 x_default_parameter (f, parms, Qicon_type, Qnil,
1299 "bitmapIcon", "BitmapIcon", RES_TYPE_SYMBOL);
1300
1301 x_default_parameter (f, parms, Qauto_raise, Qnil,
1302 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN);
1303 x_default_parameter (f, parms, Qauto_lower, Qnil,
1304 "autoLower", "AutoLower", RES_TYPE_BOOLEAN);
1305 x_default_parameter (f, parms, Qcursor_type, Qbox,
1306 "cursorType", "CursorType", RES_TYPE_SYMBOL);
1307 x_default_parameter (f, parms, Qscroll_bar_width, Qnil,
1308 "scrollBarWidth", "ScrollBarWidth",
1309 RES_TYPE_NUMBER);
1310 x_default_parameter (f, parms, Qalpha, Qnil,
1311 "alpha", "Alpha", RES_TYPE_NUMBER);
04fafa46
JD
1312 x_default_parameter (f, parms, Qfullscreen, Qnil,
1313 "fullscreen", "Fullscreen", RES_TYPE_SYMBOL);
edfda783 1314
7def8cbd
JD
1315 width = FRAME_TEXT_WIDTH (f);
1316 height = FRAME_TEXT_HEIGHT (f);
1317 FRAME_TEXT_HEIGHT (f) = 0;
1318 SET_FRAME_WIDTH (f, 0);
1319 change_frame_size (f, width, height, 1, 0, 0, 1);
edfda783
AR
1320
1321 if (! f->output_data.ns->explicit_parent)
1322 {
a97f8f3f
JD
1323 Lisp_Object visibility;
1324
1325 visibility = x_get_arg (dpyinfo, parms, Qvisibility, 0, 0,
1326 RES_TYPE_SYMBOL);
1327 if (EQ (visibility, Qunbound))
1328 visibility = Qt;
1329
1330 if (EQ (visibility, Qicon))
15891144 1331 x_iconify_frame (f);
a97f8f3f 1332 else if (! NILP (visibility))
15891144
DR
1333 {
1334 x_make_frame_visible (f);
15891144
DR
1335 [[FRAME_NS_VIEW (f) window] makeKeyWindow];
1336 }
1337 else
a97f8f3f
JD
1338 {
1339 /* Must have been Qnil. */
1340 }
edfda783
AR
1341 }
1342
1343 if (FRAME_HAS_MINIBUF_P (f)
124c9ff0
JD
1344 && (!FRAMEP (KVAR (kb, Vdefault_minibuffer_frame))
1345 || !FRAME_LIVE_P (XFRAME (KVAR (kb, Vdefault_minibuffer_frame)))))
15dbb4d6 1346 kset_default_minibuffer_frame (kb, frame);
edfda783
AR
1347
1348 /* All remaining specified parameters, which have not been "used"
1349 by x_get_arg and friends, now go in the misc. alist of the frame. */
1350 for (tem = parms; CONSP (tem); tem = XCDR (tem))
1351 if (CONSP (XCAR (tem)) && !NILP (XCAR (XCAR (tem))))
f00af5b1 1352 fset_param_alist (f, Fcons (XCAR (tem), f->param_alist));
edfda783
AR
1353
1354 UNGCPRO;
a97f8f3f 1355
e543ae91
JD
1356 if (window_prompting & USPosition)
1357 x_set_offset (f, f->left_pos, f->top_pos, 1);
1358
a97f8f3f
JD
1359 /* Make sure windows on this frame appear in calls to next-window
1360 and similar functions. */
edfda783
AR
1361 Vwindow_list = Qnil;
1362
1363 return unbind_to (count, frame);
1364}
1365
fcd42c11
DA
1366void
1367x_focus_frame (struct frame *f)
edfda783 1368{
aad3612f 1369 struct ns_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
edfda783 1370
9e50ff0c 1371 if (dpyinfo->x_focus_frame != f)
edfda783
AR
1372 {
1373 EmacsView *view = FRAME_NS_VIEW (f);
4d7e6e51 1374 block_input ();
4acaaa2b 1375 [NSApp activateIgnoringOtherApps: YES];
edfda783 1376 [[view window] makeKeyAndOrderFront: view];
4d7e6e51 1377 unblock_input ();
edfda783 1378 }
edfda783
AR
1379}
1380
1381
edfda783 1382DEFUN ("ns-popup-font-panel", Fns_popup_font_panel, Sns_popup_font_panel,
51d5ef9f
AR
1383 0, 1, "",
1384 doc: /* Pop up the font panel. */)
5842a27b 1385 (Lisp_Object frame)
edfda783 1386{
7452b7bd
DA
1387 struct frame *f = decode_window_system_frame (frame);
1388 id fm = [NSFontManager sharedFontManager];
3fa2054e
JD
1389 struct font *font = f->output_data.ns->font;
1390 NSFont *nsfont;
1391 if (EQ (font->driver->type, Qns))
1392 nsfont = ((struct nsfont_info *)font)->nsfont;
1393#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5
1394 else
1395 nsfont = (NSFont *) macfont_get_nsctfont (font);
1396#endif
1397 [fm setSelectedFont: nsfont isMultiple: NO];
edfda783
AR
1398 [fm orderFrontFontPanel: NSApp];
1399 return Qnil;
1400}
1401
1402
b066e6b6 1403DEFUN ("ns-popup-color-panel", Fns_popup_color_panel, Sns_popup_color_panel,
51d5ef9f
AR
1404 0, 1, "",
1405 doc: /* Pop up the color panel. */)
5842a27b 1406 (Lisp_Object frame)
edfda783 1407{
7452b7bd 1408 check_window_system (NULL);
edfda783
AR
1409 [NSApp orderFrontColorPanel: NSApp];
1410 return Qnil;
1411}
1412
1afb1d07
JD
1413static struct
1414{
1415 id panel;
1416 BOOL ret;
1417#if ! defined (NS_IMPL_COCOA) || \
1418 MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_6
1419 NSString *dirS, *initS;
1420 BOOL no_types;
1421#endif
1422} ns_fd_data;
1423
1424void
1425ns_run_file_dialog (void)
1426{
1427 if (ns_fd_data.panel == nil) return;
1428#if defined (NS_IMPL_COCOA) && \
1429 MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
1430 ns_fd_data.ret = [ns_fd_data.panel runModal];
1431#else
1432 if (ns_fd_data.no_types)
1433 {
1434 ns_fd_data.ret = [ns_fd_data.panel
1435 runModalForDirectory: ns_fd_data.dirS
1436 file: ns_fd_data.initS];
1437 }
1438 else
1439 {
1440 ns_fd_data.ret = [ns_fd_data.panel
1441 runModalForDirectory: ns_fd_data.dirS
1442 file: ns_fd_data.initS
1443 types: nil];
1444 }
1445#endif
1446 ns_fd_data.panel = nil;
1447}
edfda783 1448
d7e642cc 1449DEFUN ("ns-read-file-name", Fns_read_file_name, Sns_read_file_name, 1, 5, 0,
51d5ef9f 1450 doc: /* Use a graphical panel to read a file name, using prompt PROMPT.
d26fbe1a 1451Optional arg DIR, if non-nil, supplies a default directory.
45cb8994
CY
1452Optional arg MUSTMATCH, if non-nil, means the returned file or
1453directory must exist.
d7e642cc
JD
1454Optional arg INIT, if non-nil, provides a default file name to use.
1455Optional arg DIR_ONLY_P, if non-nil, means choose only directories. */)
1456 (Lisp_Object prompt, Lisp_Object dir, Lisp_Object mustmatch,
1457 Lisp_Object init, Lisp_Object dir_only_p)
edfda783
AR
1458{
1459 static id fileDelegate = nil;
8f2906f5 1460 BOOL ret;
c0342369 1461 BOOL isSave = NILP (mustmatch) && NILP (dir_only_p);
edfda783 1462 id panel;
ba301db3 1463 Lisp_Object fname;
edfda783
AR
1464
1465 NSString *promptS = NILP (prompt) || !STRINGP (prompt) ? nil :
0dc8cf50 1466 [NSString stringWithUTF8String: SSDATA (prompt)];
edfda783 1467 NSString *dirS = NILP (dir) || !STRINGP (dir) ?
0dc8cf50
JD
1468 [NSString stringWithUTF8String: SSDATA (BVAR (current_buffer, directory))] :
1469 [NSString stringWithUTF8String: SSDATA (dir)];
edfda783 1470 NSString *initS = NILP (init) || !STRINGP (init) ? nil :
0dc8cf50 1471 [NSString stringWithUTF8String: SSDATA (init)];
1afb1d07 1472 NSEvent *nxev;
edfda783 1473
7452b7bd 1474 check_window_system (NULL);
edfda783
AR
1475
1476 if (fileDelegate == nil)
1477 fileDelegate = [EmacsFileDelegate new];
1478
1479 [NSCursor setHiddenUntilMouseMoves: NO];
1480
1481 if ([dirS characterAtIndex: 0] == '~')
1482 dirS = [dirS stringByExpandingTildeInPath];
1483
c0342369 1484 panel = isSave ?
f2f7f42c 1485 (id)[EmacsSavePanel savePanel] : (id)[EmacsOpenPanel openPanel];
edfda783
AR
1486
1487 [panel setTitle: promptS];
1488
d7e642cc 1489 [panel setAllowsOtherFileTypes: YES];
edfda783
AR
1490 [panel setTreatsFilePackagesAsDirectories: YES];
1491 [panel setDelegate: fileDelegate];
1492
677d5c92 1493 if (! NILP (dir_only_p))
d7e642cc
JD
1494 {
1495 [panel setCanChooseDirectories: YES];
1496 [panel setCanChooseFiles: NO];
1497 }
c0342369 1498 else if (! isSave)
8f2906f5
JD
1499 {
1500 /* This is not quite what the documentation says, but it is compatible
1501 with the Gtk+ code. Also, the menu entry says "Open File...". */
1502 [panel setCanChooseDirectories: NO];
1503 [panel setCanChooseFiles: YES];
1504 }
677d5c92 1505
1afb1d07
JD
1506 block_input ();
1507 ns_fd_data.panel = panel;
1508 ns_fd_data.ret = NO;
d7e642cc
JD
1509#if defined (NS_IMPL_COCOA) && \
1510 MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
1511 if (! NILP (mustmatch) || ! NILP (dir_only_p))
1512 [panel setAllowedFileTypes: nil];
1513 if (dirS) [panel setDirectoryURL: [NSURL fileURLWithPath: dirS]];
1514 if (initS && NILP (Ffile_directory_p (init)))
1515 [panel setNameFieldStringValue: [initS lastPathComponent]];
1516 else
1517 [panel setNameFieldStringValue: @""];
677d5c92 1518
d7e642cc 1519#else
1afb1d07
JD
1520 ns_fd_data.no_types = NILP (mustmatch) && NILP (dir_only_p);
1521 ns_fd_data.dirS = dirS;
1522 ns_fd_data.initS = initS;
d7e642cc 1523#endif
edfda783 1524
1afb1d07
JD
1525 /* runModalForDirectory/runModal restarts the main event loop when done,
1526 so we must start an event loop and then pop up the file dialog.
1527 The file dialog may pop up a confirm dialog after Ok has been pressed,
1528 so we can not simply pop down on the Ok/Cancel press.
1529 */
1530 nxev = [NSEvent otherEventWithType: NSApplicationDefined
1531 location: NSMakePoint (0, 0)
1532 modifierFlags: 0
1533 timestamp: 0
1534 windowNumber: [[NSApp mainWindow] windowNumber]
1535 context: [NSApp context]
1536 subtype: 0
1537 data1: 0
1538 data2: NSAPP_DATA2_RUNFILEDIALOG];
1539
1540 [NSApp postEvent: nxev atStart: NO];
1541 while (ns_fd_data.panel != nil)
1542 [NSApp run];
1543
1544 ret = (ns_fd_data.ret == NSOKButton);
edfda783 1545
a37d34f3 1546 if (ret)
8f2906f5 1547 {
c0342369
JD
1548 NSString *str = ns_filename_from_panel (panel);
1549 if (! str) str = ns_directory_from_panel (panel);
8f2906f5
JD
1550 if (! str) ret = NO;
1551 else fname = build_string ([str UTF8String]);
1552 }
b066e6b6 1553
edfda783 1554 [[FRAME_NS_VIEW (SELECTED_FRAME ()) window] makeKeyWindow];
4d7e6e51 1555 unblock_input ();
edfda783 1556
ba301db3 1557 return ret ? fname : Qnil;
edfda783
AR
1558}
1559
f7dfe5d6
JD
1560const char *
1561ns_get_defaults_value (const char *key)
1562{
1563 NSObject *obj = [[NSUserDefaults standardUserDefaults]
1564 objectForKey: [NSString stringWithUTF8String: key]];
1565
1566 if (!obj) return NULL;
1567
1568 return [[NSString stringWithFormat: @"%@", obj] UTF8String];
1569}
1570
edfda783
AR
1571
1572DEFUN ("ns-get-resource", Fns_get_resource, Sns_get_resource, 2, 2, 0,
51d5ef9f
AR
1573 doc: /* Return the value of the property NAME of OWNER from the defaults database.
1574If OWNER is nil, Emacs is assumed. */)
5842a27b 1575 (Lisp_Object owner, Lisp_Object name)
edfda783
AR
1576{
1577 const char *value;
1578
7452b7bd 1579 check_window_system (NULL);
edfda783 1580 if (NILP (owner))
56d513e6 1581 owner = build_string([ns_app_name UTF8String]);
edfda783 1582 CHECK_STRING (name);
edfda783 1583
0dc8cf50 1584 value = ns_get_defaults_value (SSDATA (name));
edfda783
AR
1585
1586 if (value)
1587 return build_string (value);
edfda783
AR
1588 return Qnil;
1589}
1590
1591
1592DEFUN ("ns-set-resource", Fns_set_resource, Sns_set_resource, 3, 3, 0,
51d5ef9f 1593 doc: /* Set property NAME of OWNER to VALUE, from the defaults database.
d26fbe1a 1594If OWNER is nil, Emacs is assumed.
51d5ef9f 1595If VALUE is nil, the default is removed. */)
5842a27b 1596 (Lisp_Object owner, Lisp_Object name, Lisp_Object value)
edfda783 1597{
7452b7bd 1598 check_window_system (NULL);
edfda783 1599 if (NILP (owner))
56d513e6 1600 owner = build_string ([ns_app_name UTF8String]);
edfda783
AR
1601 CHECK_STRING (name);
1602 if (NILP (value))
1603 {
1604 [[NSUserDefaults standardUserDefaults] removeObjectForKey:
0dc8cf50 1605 [NSString stringWithUTF8String: SSDATA (name)]];
edfda783
AR
1606 }
1607 else
1608 {
1609 CHECK_STRING (value);
1610 [[NSUserDefaults standardUserDefaults] setObject:
0dc8cf50 1611 [NSString stringWithUTF8String: SSDATA (value)]
edfda783 1612 forKey: [NSString stringWithUTF8String:
0dc8cf50 1613 SSDATA (name)]];
edfda783
AR
1614 }
1615
1616 return Qnil;
1617}
1618
1619
952913d4
DN
1620DEFUN ("x-server-max-request-size", Fx_server_max_request_size,
1621 Sx_server_max_request_size,
edfda783 1622 0, 1, 0,
51d5ef9f 1623 doc: /* This function is a no-op. It is only present for completeness. */)
91e8418b 1624 (Lisp_Object terminal)
edfda783 1625{
91e8418b 1626 check_ns_display_info (terminal);
edfda783
AR
1627 /* This function has no real equivalent under NeXTstep. Return nil to
1628 indicate this. */
1629 return Qnil;
1630}
1631
1632
9e50ff0c 1633DEFUN ("x-server-vendor", Fx_server_vendor, Sx_server_vendor, 0, 1, 0,
91e8418b
YM
1634 doc: /* Return the "vendor ID" string of Nextstep display server TERMINAL.
1635\(Labeling every distributor as a "vendor" embodies the false assumption
1636that operating systems cannot be developed and distributed noncommercially.)
1637The optional argument TERMINAL specifies which display to ask about.
1638TERMINAL should be a terminal object, a frame or a display name (a string).
1639If omitted or nil, that stands for the selected frame's display. */)
1640 (Lisp_Object terminal)
edfda783 1641{
91e8418b 1642 check_ns_display_info (terminal);
edfda783
AR
1643#ifdef NS_IMPL_GNUSTEP
1644 return build_string ("GNU");
1645#else
1646 return build_string ("Apple");
1647#endif
1648}
1649
1650
9e50ff0c 1651DEFUN ("x-server-version", Fx_server_version, Sx_server_version, 0, 1, 0,
91e8418b 1652 doc: /* Return the version numbers of the server of display TERMINAL.
f5497e45 1653The value is a list of three integers: the major and minor
91e8418b
YM
1654version numbers of the X Protocol in use, and the distributor-specific release
1655number. See also the function `x-server-vendor'.
f5497e45 1656
91e8418b
YM
1657The optional argument TERMINAL specifies which display to ask about.
1658TERMINAL should be a terminal object, a frame or a display name (a string).
f5497e45 1659If omitted or nil, that stands for the selected frame's display. */)
91e8418b 1660 (Lisp_Object terminal)
edfda783 1661{
91e8418b 1662 check_ns_display_info (terminal);
f5497e45
AR
1663 /*NOTE: it is unclear what would best correspond with "protocol";
1664 we return 10.3, meaning Panther, since this is roughly the
1665 level that GNUstep's APIs correspond to.
1666 The last number is where we distinguish between the Apple
1667 and GNUstep implementations ("distributor-specific release
1668 number") and give int'ized versions of major.minor. */
3de717bd 1669 return list3i (10, 3, ns_appkit_version_int ());
edfda783
AR
1670}
1671
1672
9e50ff0c 1673DEFUN ("x-display-screens", Fx_display_screens, Sx_display_screens, 0, 1, 0,
91e8418b
YM
1674 doc: /* Return the number of screens on Nextstep display server TERMINAL.
1675The optional argument TERMINAL specifies which display to ask about.
1676TERMINAL should be a terminal object, a frame or a display name (a string).
1677If omitted or nil, that stands for the selected frame's display.
edfda783 1678
91e8418b
YM
1679Note: "screen" here is not in Nextstep terminology but in X11's. For
1680the number of physical monitors, use `(length
1681(display-monitor-attributes-list TERMINAL))' instead. */)
1682 (Lisp_Object terminal)
1683{
1684 check_ns_display_info (terminal);
1685 return make_number (1);
edfda783
AR
1686}
1687
1688
91e8418b
YM
1689DEFUN ("x-display-mm-height", Fx_display_mm_height, Sx_display_mm_height, 0, 1, 0,
1690 doc: /* Return the height in millimeters of the Nextstep display TERMINAL.
1691The optional argument TERMINAL specifies which display to ask about.
1692TERMINAL should be a terminal object, a frame or a display name (a string).
1693If omitted or nil, that stands for the selected frame's display.
1694
1695On \"multi-monitor\" setups this refers to the height in millimeters for
1696all physical monitors associated with TERMINAL. To get information
1697for each physical monitor, use `display-monitor-attributes-list'. */)
1698 (Lisp_Object terminal)
edfda783 1699{
91e8418b
YM
1700 struct ns_display_info *dpyinfo = check_ns_display_info (terminal);
1701
1702 return make_number (x_display_pixel_height (dpyinfo) / (92.0/25.4));
edfda783
AR
1703}
1704
1705
91e8418b
YM
1706DEFUN ("x-display-mm-width", Fx_display_mm_width, Sx_display_mm_width, 0, 1, 0,
1707 doc: /* Return the width in millimeters of the Nextstep display TERMINAL.
1708The optional argument TERMINAL specifies which display to ask about.
1709TERMINAL should be a terminal object, a frame or a display name (a string).
1710If omitted or nil, that stands for the selected frame's display.
1711
1712On \"multi-monitor\" setups this refers to the width in millimeters for
1713all physical monitors associated with TERMINAL. To get information
1714for each physical monitor, use `display-monitor-attributes-list'. */)
1715 (Lisp_Object terminal)
edfda783 1716{
91e8418b
YM
1717 struct ns_display_info *dpyinfo = check_ns_display_info (terminal);
1718
1719 return make_number (x_display_pixel_width (dpyinfo) / (92.0/25.4));
edfda783
AR
1720}
1721
1722
9e50ff0c 1723DEFUN ("x-display-backing-store", Fx_display_backing_store,
51d5ef9f 1724 Sx_display_backing_store, 0, 1, 0,
91e8418b 1725 doc: /* Return an indication of whether the Nextstep display TERMINAL does backing store.
d26fbe1a 1726The value may be `buffered', `retained', or `non-retained'.
91e8418b
YM
1727The optional argument TERMINAL specifies which display to ask about.
1728TERMINAL should be a terminal object, a frame or a display name (a string).
1729If omitted or nil, that stands for the selected frame's display. */)
1730 (Lisp_Object terminal)
edfda783 1731{
91e8418b
YM
1732 check_ns_display_info (terminal);
1733 switch ([ns_get_window (terminal) backingType])
edfda783
AR
1734 {
1735 case NSBackingStoreBuffered:
1736 return intern ("buffered");
1737 case NSBackingStoreRetained:
1738 return intern ("retained");
1739 case NSBackingStoreNonretained:
1740 return intern ("non-retained");
1741 default:
1742 error ("Strange value for backingType parameter of frame");
1743 }
1744 return Qnil; /* not reached, shut compiler up */
1745}
1746
1747
9e50ff0c 1748DEFUN ("x-display-visual-class", Fx_display_visual_class,
51d5ef9f 1749 Sx_display_visual_class, 0, 1, 0,
91e8418b 1750 doc: /* Return the visual class of the Nextstep display TERMINAL.
d26fbe1a
CY
1751The value is one of the symbols `static-gray', `gray-scale',
1752`static-color', `pseudo-color', `true-color', or `direct-color'.
91e8418b
YM
1753
1754The optional argument TERMINAL specifies which display to ask about.
1755TERMINAL should a terminal object, a frame or a display name (a string).
1756If omitted or nil, that stands for the selected frame's display. */)
1757 (Lisp_Object terminal)
edfda783
AR
1758{
1759 NSWindowDepth depth;
a37d34f3 1760
91e8418b
YM
1761 check_ns_display_info (terminal);
1762 depth = [[[NSScreen screens] objectAtIndex:0] depth];
edfda783
AR
1763
1764 if ( depth == NSBestDepth (NSCalibratedWhiteColorSpace, 2, 2, YES, NULL))
1765 return intern ("static-gray");
1766 else if (depth == NSBestDepth (NSCalibratedWhiteColorSpace, 8, 8, YES, NULL))
1767 return intern ("gray-scale");
1768 else if ( depth == NSBestDepth (NSCalibratedRGBColorSpace, 8, 8, YES, NULL))
1769 return intern ("pseudo-color");
1770 else if ( depth == NSBestDepth (NSCalibratedRGBColorSpace, 4, 12, NO, NULL))
1771 return intern ("true-color");
1772 else if ( depth == NSBestDepth (NSCalibratedRGBColorSpace, 8, 24, NO, NULL))
1773 return intern ("direct-color");
1774 else
d26fbe1a 1775 /* color mgmt as far as we do it is really handled by Nextstep itself anyway */
edfda783
AR
1776 return intern ("direct-color");
1777}
1778
1779
9e50ff0c 1780DEFUN ("x-display-save-under", Fx_display_save_under,
51d5ef9f 1781 Sx_display_save_under, 0, 1, 0,
91e8418b
YM
1782 doc: /* Return t if TERMINAL supports the save-under feature.
1783The optional argument TERMINAL specifies which display to ask about.
1784TERMINAL should be a terminal object, a frame or a display name (a string).
1785If omitted or nil, that stands for the selected frame's display. */)
1786 (Lisp_Object terminal)
1787{
1788 check_ns_display_info (terminal);
1789 switch ([ns_get_window (terminal) backingType])
edfda783
AR
1790 {
1791 case NSBackingStoreBuffered:
1792 return Qt;
1793
1794 case NSBackingStoreRetained:
1795 case NSBackingStoreNonretained:
1796 return Qnil;
1797
1798 default:
1799 error ("Strange value for backingType parameter of frame");
1800 }
1801 return Qnil; /* not reached, shut compiler up */
1802}
1803
1804
9e50ff0c 1805DEFUN ("x-open-connection", Fx_open_connection, Sx_open_connection,
51d5ef9f 1806 1, 3, 0,
4f4f2973 1807 doc: /* Open a connection to a display server.
d26fbe1a 1808DISPLAY is the name of the display to connect to.
4f4f2973
GM
1809Optional second arg XRM-STRING is a string of resources in xrdb format.
1810If the optional third arg MUST-SUCCEED is non-nil,
1811terminate Emacs if we can't open the connection.
1812\(In the Nextstep version, the last two arguments are currently ignored.) */)
5842a27b 1813 (Lisp_Object display, Lisp_Object resource_string, Lisp_Object must_succeed)
edfda783
AR
1814{
1815 struct ns_display_info *dpyinfo;
1816
1817 CHECK_STRING (display);
1818
1819 nxatoms_of_nsselect ();
1820 dpyinfo = ns_term_init (display);
1821 if (dpyinfo == 0)
1822 {
1823 if (!NILP (must_succeed))
9a84bfd6 1824 fatal ("Display on %s not responding.\n",
0dc8cf50 1825 SSDATA (display));
edfda783 1826 else
9a84bfd6 1827 error ("Display on %s not responding.\n",
0dc8cf50 1828 SSDATA (display));
edfda783
AR
1829 }
1830
edfda783
AR
1831 return Qnil;
1832}
1833
1834
9e50ff0c 1835DEFUN ("x-close-connection", Fx_close_connection, Sx_close_connection,
51d5ef9f 1836 1, 1, 0,
91e8418b
YM
1837 doc: /* Close the connection to TERMINAL's Nextstep display server.
1838For TERMINAL, specify a terminal object, a frame or a display name (a
1839string). If TERMINAL is nil, that stands for the selected frame's
1840terminal. */)
1841 (Lisp_Object terminal)
edfda783 1842{
91e8418b 1843 check_ns_display_info (terminal);
edfda783
AR
1844 [NSApp terminate: NSApp];
1845 return Qnil;
1846}
1847
1848
9e50ff0c 1849DEFUN ("x-display-list", Fx_display_list, Sx_display_list, 0, 0, 0,
51d5ef9f 1850 doc: /* Return the list of display names that Emacs has connections to. */)
5842a27b 1851 (void)
edfda783 1852{
d141d701
DA
1853 Lisp_Object result = Qnil;
1854 struct ns_display_info *ndi;
edfda783 1855
d141d701
DA
1856 for (ndi = x_display_list; ndi; ndi = ndi->next)
1857 result = Fcons (XCAR (ndi->name_list_element), result);
edfda783
AR
1858
1859 return result;
1860}
1861
1862
1863DEFUN ("ns-hide-others", Fns_hide_others, Sns_hide_others,
51d5ef9f 1864 0, 0, 0,
b066e6b6 1865 doc: /* Hides all applications other than Emacs. */)
5842a27b 1866 (void)
edfda783 1867{
7452b7bd 1868 check_window_system (NULL);
edfda783
AR
1869 [NSApp hideOtherApplications: NSApp];
1870 return Qnil;
1871}
1872
1873DEFUN ("ns-hide-emacs", Fns_hide_emacs, Sns_hide_emacs,
51d5ef9f 1874 1, 1, 0,
b066e6b6
JB
1875 doc: /* If ON is non-nil, the entire Emacs application is hidden.
1876Otherwise if Emacs is hidden, it is unhidden.
1877If ON is equal to `activate', Emacs is unhidden and becomes
51d5ef9f 1878the active application. */)
5842a27b 1879 (Lisp_Object on)
edfda783 1880{
7452b7bd 1881 check_window_system (NULL);
edfda783
AR
1882 if (EQ (on, intern ("activate")))
1883 {
1884 [NSApp unhide: NSApp];
1885 [NSApp activateIgnoringOtherApps: YES];
1886 }
1887 else if (NILP (on))
1888 [NSApp unhide: NSApp];
1889 else
1890 [NSApp hide: NSApp];
1891 return Qnil;
1892}
1893
1894
1895DEFUN ("ns-emacs-info-panel", Fns_emacs_info_panel, Sns_emacs_info_panel,
51d5ef9f
AR
1896 0, 0, 0,
1897 doc: /* Shows the 'Info' or 'About' panel for Emacs. */)
5842a27b 1898 (void)
edfda783 1899{
7452b7bd 1900 check_window_system (NULL);
edfda783
AR
1901 [NSApp orderFrontStandardAboutPanel: nil];
1902 return Qnil;
1903}
1904
1905
edfda783 1906DEFUN ("ns-font-name", Fns_font_name, Sns_font_name, 1, 1, 0,
7877f373 1907 doc: /* Determine font PostScript or family name for font NAME.
d26fbe1a
CY
1908NAME should be a string containing either the font name or an XLFD
1909font descriptor. If string contains `fontset' and not
51d5ef9f 1910`fontset-startup', it is left alone. */)
5842a27b 1911 (Lisp_Object name)
edfda783
AR
1912{
1913 char *nm;
1914 CHECK_STRING (name);
0dc8cf50 1915 nm = SSDATA (name);
edfda783
AR
1916
1917 if (nm[0] != '-')
1918 return name;
1919 if (strstr (nm, "fontset") && !strstr (nm, "fontset-startup"))
1920 return name;
1921
0dc8cf50 1922 return build_string (ns_xlfd_to_fontname (SSDATA (name)));
edfda783
AR
1923}
1924
1925
1926DEFUN ("ns-list-colors", Fns_list_colors, Sns_list_colors, 0, 1, 0,
51d5ef9f
AR
1927 doc: /* Return a list of all available colors.
1928The optional argument FRAME is currently ignored. */)
5842a27b 1929 (Lisp_Object frame)
edfda783
AR
1930{
1931 Lisp_Object list = Qnil;
1932 NSEnumerator *colorlists;
1933 NSColorList *clist;
1934
1935 if (!NILP (frame))
1936 {
1937 CHECK_FRAME (frame);
1938 if (! FRAME_NS_P (XFRAME (frame)))
d26fbe1a 1939 error ("non-Nextstep frame used in `ns-list-colors'");
edfda783
AR
1940 }
1941
4d7e6e51 1942 block_input ();
edfda783
AR
1943
1944 colorlists = [[NSColorList availableColorLists] objectEnumerator];
0dc8cf50 1945 while ((clist = [colorlists nextObject]))
edfda783
AR
1946 {
1947 if ([[clist name] length] < 7 ||
1948 [[clist name] rangeOfString: @"PANTONE"].location == 0)
1949 {
1950 NSEnumerator *cnames = [[clist allKeys] reverseObjectEnumerator];
1951 NSString *cname;
0dc8cf50 1952 while ((cname = [cnames nextObject]))
edfda783
AR
1953 list = Fcons (build_string ([cname UTF8String]), list);
1954/* for (i = [[clist allKeys] count] - 1; i >= 0; i--)
1955 list = Fcons (build_string ([[[clist allKeys] objectAtIndex: i]
1956 UTF8String]), list); */
1957 }
1958 }
1959
4d7e6e51 1960 unblock_input ();
edfda783
AR
1961
1962 return list;
1963}
1964
1965
1966DEFUN ("ns-list-services", Fns_list_services, Sns_list_services, 0, 0, 0,
51d5ef9f 1967 doc: /* List available Nextstep services by querying NSApp. */)
5842a27b 1968 (void)
edfda783 1969{
699c10bd
JD
1970#if defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
1971 /* You can't get services like this in 10.6+. */
1972 return Qnil;
1973#else
edfda783
AR
1974 Lisp_Object ret = Qnil;
1975 NSMenu *svcs;
c0342369 1976#ifdef NS_IMPL_COCOA
edfda783 1977 id delegate;
c0342369 1978#endif
edfda783 1979
7452b7bd 1980 check_window_system (NULL);
edfda783 1981 svcs = [[NSMenu alloc] initWithTitle: @"Services"];
335f5ae4 1982 [NSApp setServicesMenu: svcs];
edfda783
AR
1983 [NSApp registerServicesMenuSendTypes: ns_send_types
1984 returnTypes: ns_return_types];
1985
1986/* On Tiger, services menu updating was made lazier (waits for user to
1987 actually click on the menu), so we have to force things along: */
1988#ifdef NS_IMPL_COCOA
335f5ae4
JD
1989 delegate = [svcs delegate];
1990 if (delegate != nil)
edfda783 1991 {
335f5ae4
JD
1992 if ([delegate respondsToSelector: @selector (menuNeedsUpdate:)])
1993 [delegate menuNeedsUpdate: svcs];
1994 if ([delegate respondsToSelector:
1995 @selector (menu:updateItem:atIndex:shouldCancel:)])
edfda783 1996 {
335f5ae4
JD
1997 int i, len = [delegate numberOfItemsInMenu: svcs];
1998 for (i =0; i<len; i++)
1999 [svcs addItemWithTitle: @"" action: NULL keyEquivalent: @""];
2000 for (i =0; i<len; i++)
2001 if (![delegate menu: svcs
2002 updateItem: (NSMenuItem *)[svcs itemAtIndex: i]
2003 atIndex: i shouldCancel: NO])
2004 break;
edfda783
AR
2005 }
2006 }
2007#endif
2008
2009 [svcs setAutoenablesItems: NO];
2010#ifdef NS_IMPL_COCOA
2011 [svcs update]; /* on OS X, converts from '/' structure */
2012#endif
2013
2014 ret = interpret_services_menu (svcs, Qnil, ret);
2015 return ret;
699c10bd 2016#endif
edfda783
AR
2017}
2018
2019
2020DEFUN ("ns-perform-service", Fns_perform_service, Sns_perform_service,
51d5ef9f
AR
2021 2, 2, 0,
2022 doc: /* Perform Nextstep SERVICE on SEND.
d26fbe1a
CY
2023SEND should be either a string or nil.
2024The return value is the result of the service, as string, or nil if
51d5ef9f 2025there was no result. */)
5842a27b 2026 (Lisp_Object service, Lisp_Object send)
edfda783
AR
2027{
2028 id pb;
2029 NSString *svcName;
2030 char *utfStr;
edfda783
AR
2031
2032 CHECK_STRING (service);
7452b7bd 2033 check_window_system (NULL);
edfda783 2034
0dc8cf50 2035 utfStr = SSDATA (service);
edfda783
AR
2036 svcName = [NSString stringWithUTF8String: utfStr];
2037
2038 pb =[NSPasteboard pasteboardWithUniqueName];
2039 ns_string_to_pasteboard (pb, send);
2040
2041 if (NSPerformService (svcName, pb) == NO)
6c6f1994 2042 Fsignal (Qquit, list1 (build_string ("service not available")));
edfda783
AR
2043
2044 if ([[pb types] count] == 0)
2045 return build_string ("");
2046 return ns_string_from_pasteboard (pb);
2047}
2048
2049
2050DEFUN ("ns-convert-utf8-nfd-to-nfc", Fns_convert_utf8_nfd_to_nfc,
2051 Sns_convert_utf8_nfd_to_nfc, 1, 1, 0,
b066e6b6 2052 doc: /* Return an NFC string that matches the UTF-8 NFD string STR. */)
5842a27b 2053 (Lisp_Object str)
edfda783 2054{
f2f7f42c
AR
2055/* TODO: If GNUstep ever implements precomposedStringWithCanonicalMapping,
2056 remove this. */
edfda783 2057 NSString *utfStr;
0486beac
JD
2058 Lisp_Object ret = Qnil;
2059 NSAutoreleasePool *pool;
edfda783
AR
2060
2061 CHECK_STRING (str);
0486beac
JD
2062 pool = [[NSAutoreleasePool alloc] init];
2063 utfStr = [NSString stringWithUTF8String: SSDATA (str)];
c0342369 2064#ifdef NS_IMPL_COCOA
0486beac
JD
2065 if (utfStr)
2066 utfStr = [utfStr precomposedStringWithCanonicalMapping];
c0342369 2067#endif
0486beac
JD
2068 if (utfStr)
2069 {
2070 const char *cstr = [utfStr UTF8String];
2071 if (cstr)
2072 ret = build_string (cstr);
2073 }
2074
423d3b3f 2075 [pool release];
0486beac
JD
2076 if (NILP (ret))
2077 error ("Invalid UTF-8");
2078
423d3b3f 2079 return ret;
edfda783
AR
2080}
2081
2082
583ff3c3
AR
2083#ifdef NS_IMPL_COCOA
2084
2085/* Compile and execute the AppleScript SCRIPT and return the error
2086 status as function value. A zero is returned if compilation and
2087 execution is successful, in which case *RESULT is set to a Lisp
2088 string or a number containing the resulting script value. Otherwise,
2089 1 is returned. */
2090static int
3d608a86 2091ns_do_applescript (Lisp_Object script, Lisp_Object *result)
583ff3c3
AR
2092{
2093 NSAppleEventDescriptor *desc;
2094 NSDictionary* errorDict;
2095 NSAppleEventDescriptor* returnDescriptor = NULL;
2096
2097 NSAppleScript* scriptObject =
2098 [[NSAppleScript alloc] initWithSource:
0dc8cf50 2099 [NSString stringWithUTF8String: SSDATA (script)]];
583ff3c3
AR
2100
2101 returnDescriptor = [scriptObject executeAndReturnError: &errorDict];
2102 [scriptObject release];
583ff3c3 2103 *result = Qnil;
b066e6b6 2104
583ff3c3
AR
2105 if (returnDescriptor != NULL)
2106 {
2107 // successful execution
2108 if (kAENullEvent != [returnDescriptor descriptorType])
2109 {
2110 *result = Qt;
2111 // script returned an AppleScript result
2112 if ((typeUnicodeText == [returnDescriptor descriptorType]) ||
335f5ae4 2113#if defined (NS_IMPL_COCOA)
b066e6b6 2114 (typeUTF16ExternalRepresentation
583ff3c3 2115 == [returnDescriptor descriptorType]) ||
a39e2539 2116#endif
583ff3c3
AR
2117 (typeUTF8Text == [returnDescriptor descriptorType]) ||
2118 (typeCString == [returnDescriptor descriptorType]))
2119 {
2120 desc = [returnDescriptor coerceToDescriptorType: typeUTF8Text];
2121 if (desc)
2122 *result = build_string([[desc stringValue] UTF8String]);
2123 }
2124 else
2125 {
2126 /* use typeUTF16ExternalRepresentation? */
2127 // coerce the result to the appropriate ObjC type
2128 desc = [returnDescriptor coerceToDescriptorType: typeUTF8Text];
2129 if (desc)
2130 *result = make_number([desc int32Value]);
2131 }
2132 }
2133 }
2134 else
2135 {
2136 // no script result, return error
2137 return 1;
2138 }
2139 return 0;
2140}
2141
08e3161a
JD
2142/* Helper function called from sendEvent to run applescript
2143 from within the main event loop. */
2144
2145void
2146ns_run_ascript (void)
2147{
cf162aee
JD
2148 if (! NILP (as_script))
2149 as_status = ns_do_applescript (as_script, as_result);
2150 as_script = Qnil;
08e3161a
JD
2151}
2152
583ff3c3 2153DEFUN ("ns-do-applescript", Fns_do_applescript, Sns_do_applescript, 1, 1, 0,
b066e6b6
JB
2154 doc: /* Execute AppleScript SCRIPT and return the result.
2155If compilation and execution are successful, the resulting script value
2156is returned as a string, a number or, in the case of other constructs, t.
2157In case the execution fails, an error is signaled. */)
5842a27b 2158 (Lisp_Object script)
583ff3c3
AR
2159{
2160 Lisp_Object result;
5fdb398c 2161 int status;
08e3161a 2162 NSEvent *nxev;
858e55f4 2163 struct input_event ev;
583ff3c3
AR
2164
2165 CHECK_STRING (script);
7452b7bd 2166 check_window_system (NULL);
583ff3c3 2167
4d7e6e51 2168 block_input ();
08e3161a
JD
2169
2170 as_script = script;
2171 as_result = &result;
2172
2173 /* executing apple script requires the event loop to run, otherwise
2174 errors aren't returned and executeAndReturnError hangs forever.
2175 Post an event that runs applescript and then start the event loop.
2176 The event loop is exited when the script is done. */
2177 nxev = [NSEvent otherEventWithType: NSApplicationDefined
2178 location: NSMakePoint (0, 0)
2179 modifierFlags: 0
2180 timestamp: 0
2181 windowNumber: [[NSApp mainWindow] windowNumber]
2182 context: [NSApp context]
2183 subtype: 0
2184 data1: 0
2185 data2: NSAPP_DATA2_RUNASSCRIPT];
2186
2187 [NSApp postEvent: nxev atStart: NO];
cf162aee
JD
2188
2189 // If there are other events, the event loop may exit. Keep running
677d5c92 2190 // until the script has been handled. */
858e55f4 2191 ns_init_events (&ev);
cf162aee
JD
2192 while (! NILP (as_script))
2193 [NSApp run];
858e55f4 2194 ns_finish_events ();
08e3161a
JD
2195
2196 status = as_status;
2197 as_status = 0;
08e3161a 2198 as_result = 0;
4d7e6e51 2199 unblock_input ();
583ff3c3
AR
2200 if (status == 0)
2201 return result;
2202 else if (!STRINGP (result))
2203 error ("AppleScript error %d", status);
2204 else
0dc8cf50 2205 error ("%s", SSDATA (result));
583ff3c3
AR
2206}
2207#endif
2208
2209
2210
edfda783
AR
2211/* ==========================================================================
2212
2213 Miscellaneous functions not called through hooks
2214
2215 ========================================================================== */
2216
3fe53a83 2217/* called from frame.c */
edfda783
AR
2218struct ns_display_info *
2219check_x_display_info (Lisp_Object frame)
2220{
2221 return check_ns_display_info (frame);
2222}
2223
2224
edfda783 2225void
3d608a86 2226x_set_scroll_bar_default_width (struct frame *f)
edfda783
AR
2227{
2228 int wid = FRAME_COLUMN_WIDTH (f);
2229 FRAME_CONFIG_SCROLL_BAR_WIDTH (f) = NS_SCROLL_BAR_WIDTH_DEFAULT;
2230 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) +
2231 wid - 1) / wid;
2232}
2233
3fe53a83 2234/* terms impl this instead of x-get-resource directly */
a6c2ee1b
DA
2235char *
2236x_get_string_resource (XrmDatabase rdb, const char *name, const char *class)
edfda783 2237{
6fb5f7da 2238 /* remove appname prefix; TODO: allow for !="Emacs" */
a6c2ee1b
DA
2239 const char *res, *toCheck = class + (!strncmp (class, "Emacs.", 6) ? 6 : 0);
2240
7452b7bd 2241 check_window_system (NULL);
edfda783 2242
386a49d3
AR
2243 if (inhibit_x_resources)
2244 /* --quick was passed, so this is a no-op. */
2245 return NULL;
edfda783 2246
f7dfe5d6 2247 res = ns_get_defaults_value (toCheck);
a6c2ee1b
DA
2248 return (!res ? NULL :
2249 (!c_strncasecmp (res, "YES", 3) ? "true" :
2250 (!c_strncasecmp (res, "NO", 2) ? "false" : (char *) res)));
edfda783
AR
2251}
2252
2253
2254Lisp_Object
2255x_get_focus_frame (struct frame *frame)
2256{
aad3612f 2257 struct ns_display_info *dpyinfo = FRAME_DISPLAY_INFO (frame);
edfda783
AR
2258 Lisp_Object nsfocus;
2259
9e50ff0c 2260 if (!dpyinfo->x_focus_frame)
edfda783
AR
2261 return Qnil;
2262
9e50ff0c 2263 XSETFRAME (nsfocus, dpyinfo->x_focus_frame);
edfda783
AR
2264 return nsfocus;
2265}
2266
edfda783
AR
2267/* ==========================================================================
2268
2269 Lisp definitions that, for whatever reason, we can't alias as 'ns-XXX'.
2270
2271 ========================================================================== */
2272
2273
952913d4 2274DEFUN ("xw-color-defined-p", Fxw_color_defined_p, Sxw_color_defined_p, 1, 2, 0,
4f4f2973
GM
2275 doc: /* Internal function called by `color-defined-p', which see.
2276\(Note that the Nextstep version of this function ignores FRAME.) */)
5842a27b 2277 (Lisp_Object color, Lisp_Object frame)
edfda783
AR
2278{
2279 NSColor * col;
7452b7bd 2280 check_window_system (NULL);
edfda783
AR
2281 return ns_lisp_to_color (color, &col) ? Qnil : Qt;
2282}
2283
2284
952913d4 2285DEFUN ("xw-color-values", Fxw_color_values, Sxw_color_values, 1, 2, 0,
fb67c21b 2286 doc: /* Internal function called by `color-values', which see. */)
5842a27b 2287 (Lisp_Object color, Lisp_Object frame)
edfda783
AR
2288{
2289 NSColor * col;
c0342369 2290 EmacsCGFloat red, green, blue, alpha;
edfda783 2291
7452b7bd 2292 check_window_system (NULL);
edfda783
AR
2293 CHECK_STRING (color);
2294
2295 if (ns_lisp_to_color (color, &col))
2296 return Qnil;
2297
41cf3d11 2298 [[col colorUsingDefaultColorSpace]
edfda783 2299 getRed: &red green: &green blue: &blue alpha: &alpha];
3de717bd
DA
2300 return list3i (lrint (red * 65280), lrint (green * 65280),
2301 lrint (blue * 65280));
edfda783
AR
2302}
2303
2304
2305DEFUN ("xw-display-color-p", Fxw_display_color_p, Sxw_display_color_p, 0, 1, 0,
4f4f2973 2306 doc: /* Internal function called by `display-color-p', which see. */)
91e8418b 2307 (Lisp_Object terminal)
edfda783
AR
2308{
2309 NSWindowDepth depth;
2310 NSString *colorSpace;
a37d34f3 2311
91e8418b
YM
2312 check_ns_display_info (terminal);
2313 depth = [[[NSScreen screens] objectAtIndex:0] depth];
edfda783
AR
2314 colorSpace = NSColorSpaceFromDepth (depth);
2315
2316 return [colorSpace isEqualToString: NSDeviceWhiteColorSpace]
2317 || [colorSpace isEqualToString: NSCalibratedWhiteColorSpace]
2318 ? Qnil : Qt;
2319}
2320
2321
91e8418b
YM
2322DEFUN ("x-display-grayscale-p", Fx_display_grayscale_p, Sx_display_grayscale_p,
2323 0, 1, 0,
51d5ef9f 2324 doc: /* Return t if the Nextstep display supports shades of gray.
d26fbe1a 2325Note that color displays do support shades of gray.
91e8418b
YM
2326The optional argument TERMINAL specifies which display to ask about.
2327TERMINAL should be a terminal object, a frame or a display name (a string).
2328If omitted or nil, that stands for the selected frame's display. */)
2329 (Lisp_Object terminal)
edfda783
AR
2330{
2331 NSWindowDepth depth;
7452b7bd 2332
91e8418b
YM
2333 check_ns_display_info (terminal);
2334 depth = [[[NSScreen screens] objectAtIndex:0] depth];
edfda783
AR
2335
2336 return NSBitsPerPixelFromDepth (depth) > 1 ? Qt : Qnil;
2337}
2338
2339
952913d4 2340DEFUN ("x-display-pixel-width", Fx_display_pixel_width, Sx_display_pixel_width,
edfda783 2341 0, 1, 0,
91e8418b
YM
2342 doc: /* Return the width in pixels of the Nextstep display TERMINAL.
2343The optional argument TERMINAL specifies which display to ask about.
2344TERMINAL should be a terminal object, a frame or a display name (a string).
2345If omitted or nil, that stands for the selected frame's display.
2346
2347On \"multi-monitor\" setups this refers to the pixel width for all
2348physical monitors associated with TERMINAL. To get information for
2349each physical monitor, use `display-monitor-attributes-list'. */)
2350 (Lisp_Object terminal)
edfda783 2351{
91e8418b
YM
2352 struct ns_display_info *dpyinfo = check_ns_display_info (terminal);
2353
2354 return make_number (x_display_pixel_width (dpyinfo));
edfda783
AR
2355}
2356
2357
952913d4
DN
2358DEFUN ("x-display-pixel-height", Fx_display_pixel_height,
2359 Sx_display_pixel_height, 0, 1, 0,
91e8418b
YM
2360 doc: /* Return the height in pixels of the Nextstep display TERMINAL.
2361The optional argument TERMINAL specifies which display to ask about.
2362TERMINAL should be a terminal object, a frame or a display name (a string).
2363If omitted or nil, that stands for the selected frame's display.
2364
2365On \"multi-monitor\" setups this refers to the pixel height for all
2366physical monitors associated with TERMINAL. To get information for
2367each physical monitor, use `display-monitor-attributes-list'. */)
2368 (Lisp_Object terminal)
edfda783 2369{
91e8418b
YM
2370 struct ns_display_info *dpyinfo = check_ns_display_info (terminal);
2371
2372 return make_number (x_display_pixel_height (dpyinfo));
edfda783
AR
2373}
2374
4465bfb4 2375#ifdef NS_IMPL_COCOA
ceb486d4
JD
2376
2377/* Returns the name for the screen that OBJ represents, or NULL.
4465bfb4
JD
2378 Caller must free return value.
2379*/
583ff3c3 2380
6799bb26 2381static char *
ceb486d4 2382ns_get_name_from_ioreg (io_object_t obj)
4465bfb4
JD
2383{
2384 char *name = NULL;
ceb486d4 2385
4465bfb4 2386 NSDictionary *info = (NSDictionary *)
ceb486d4
JD
2387 IODisplayCreateInfoDictionary (obj, kIODisplayOnlyPreferredName);
2388 NSDictionary *names = [info objectForKey:
2389 [NSString stringWithUTF8String:
2390 kDisplayProductName]];
2391
2392 if ([names count] > 0)
2393 {
2394 NSString *n = [names objectForKey: [[names allKeys]
2395 objectAtIndex:0]];
2396 if (n != nil) name = xstrdup ([n UTF8String]);
2397 }
d26fbe1a 2398
4465bfb4 2399 [info release];
ceb486d4
JD
2400
2401 return name;
2402}
2403
2404/* Returns the name for the screen that DID came from, or NULL.
2405 Caller must free return value.
2406*/
2407
2408static char *
2409ns_screen_name (CGDirectDisplayID did)
2410{
2411 char *name = NULL;
2412
2413#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_9
2414 mach_port_t masterPort;
2415 io_iterator_t it;
2416 io_object_t obj;
2417
2418 // CGDisplayIOServicePort is deprecated. Do it another (harder) way.
2419
2420 if (IOMasterPort (MACH_PORT_NULL, &masterPort) != kIOReturnSuccess
2421 || IOServiceGetMatchingServices (masterPort,
2422 IOServiceMatching ("IONDRVDevice"),
2423 &it) != kIOReturnSuccess)
2424 return name;
2425
2426 /* Must loop until we find a name. Many devices can have the same unit
2427 number (represents different GPU parts), but only one has a name. */
2428 while (! name && (obj = IOIteratorNext (it)))
2429 {
2430 CFMutableDictionaryRef props;
2431 const void *val;
2432
2433 if (IORegistryEntryCreateCFProperties (obj,
2434 &props,
2435 kCFAllocatorDefault,
2436 kNilOptions) == kIOReturnSuccess
2437 && props != nil
2438 && (val = CFDictionaryGetValue(props, @"IOFBDependentIndex")))
2439 {
2440 unsigned nr = [(NSNumber *)val unsignedIntegerValue];
2441 if (nr == CGDisplayUnitNumber (did))
2442 name = ns_get_name_from_ioreg (obj);
2443 }
2444
2445 CFRelease (props);
2446 IOObjectRelease (obj);
2447 }
2448
2449 IOObjectRelease (it);
2450
2451#else
2452
2453 name = ns_get_name_from_ioreg (CGDisplayIOServicePort (did));
2454
2455#endif
4465bfb4
JD
2456 return name;
2457}
2458#endif
2459
2460static Lisp_Object
2461ns_make_monitor_attribute_list (struct MonitorInfo *monitors,
2462 int n_monitors,
2463 int primary_monitor,
2464 const char *source)
2465{
2466 Lisp_Object monitor_frames = Fmake_vector (make_number (n_monitors), Qnil);
6799bb26 2467 Lisp_Object frame, rest;
4465bfb4
JD
2468 NSArray *screens = [NSScreen screens];
2469 int i;
2470
2471 FOR_EACH_FRAME (rest, frame)
2472 {
2473 struct frame *f = XFRAME (frame);
2474
2475 if (FRAME_NS_P (f))
2476 {
2477 NSView *view = FRAME_NS_VIEW (f);
2478 NSScreen *screen = [[view window] screen];
2479 NSUInteger k;
2480
2481 i = -1;
2482 for (k = 0; i == -1 && k < [screens count]; ++k)
2483 {
2484 if ([screens objectAtIndex: k] == screen)
2485 i = (int)k;
2486 }
2487
2488 if (i > -1)
2489 ASET (monitor_frames, i, Fcons (frame, AREF (monitor_frames, i)));
2490 }
2491 }
2492
6799bb26
JD
2493 return make_monitor_attribute_list (monitors, n_monitors, primary_monitor,
2494 monitor_frames, source);
4465bfb4
JD
2495}
2496
2497DEFUN ("ns-display-monitor-attributes-list",
2498 Fns_display_monitor_attributes_list,
2499 Sns_display_monitor_attributes_list,
2500 0, 1, 0,
2501 doc: /* Return a list of physical monitor attributes on the X display TERMINAL.
2502
2503The optional argument TERMINAL specifies which display to ask about.
2504TERMINAL should be a terminal object, a frame or a display name (a string).
2505If omitted or nil, that stands for the selected frame's display.
2506
2507In addition to the standard attribute keys listed in
2508`display-monitor-attributes-list', the following keys are contained in
2509the attributes:
2510
2511 source -- String describing the source from which multi-monitor
2512 information is obtained, \"NS\" is always the source."
2513
2514Internal use only, use `display-monitor-attributes-list' instead. */)
2515 (Lisp_Object terminal)
edfda783 2516{
4465bfb4
JD
2517 struct terminal *term = get_terminal (terminal, 1);
2518 NSArray *screens;
2519 NSUInteger i, n_monitors;
2520 struct MonitorInfo *monitors;
2521 Lisp_Object attributes_list = Qnil;
2522 CGFloat primary_display_height = 0;
edfda783 2523
4465bfb4
JD
2524 if (term->type != output_ns)
2525 return Qnil;
2526
2527 screens = [NSScreen screens];
2528 n_monitors = [screens count];
2529 if (n_monitors == 0)
474217c8
CY
2530 return Qnil;
2531
7d652d97 2532 monitors = xzalloc (n_monitors * sizeof *monitors);
4465bfb4
JD
2533
2534 for (i = 0; i < [screens count]; ++i)
2535 {
2536 NSScreen *s = [screens objectAtIndex:i];
2537 struct MonitorInfo *m = &monitors[i];
2538 NSRect fr = [s frame];
2539 NSRect vfr = [s visibleFrame];
4465bfb4
JD
2540 short y, vy;
2541
2542#ifdef NS_IMPL_COCOA
c0342369 2543 NSDictionary *dict = [s deviceDescription];
4465bfb4
JD
2544 NSNumber *nid = [dict objectForKey:@"NSScreenNumber"];
2545 CGDirectDisplayID did = [nid unsignedIntValue];
2546#endif
2547 if (i == 0)
2548 {
2549 primary_display_height = fr.size.height;
2550 y = (short) fr.origin.y;
2551 vy = (short) vfr.origin.y;
2552 }
2553 else
2554 {
2555 // Flip y coordinate as NS has y starting from the bottom.
2556 y = (short) (primary_display_height - fr.size.height - fr.origin.y);
2557 vy = (short) (primary_display_height -
2558 vfr.size.height - vfr.origin.y);
2559 }
cf7a0de6 2560
4465bfb4
JD
2561 m->geom.x = (short) fr.origin.x;
2562 m->geom.y = y;
2563 m->geom.width = (unsigned short) fr.size.width;
2564 m->geom.height = (unsigned short) fr.size.height;
2565
2566 m->work.x = (short) vfr.origin.x;
2567 // y is flipped on NS, so vy - y are pixels missing at the bottom,
2568 // and fr.size.height - vfr.size.height are pixels missing in total.
2569 // Pixels missing at top are
2570 // fr.size.height - vfr.size.height - vy + y.
2571 // work.y is then pixels missing at top + y.
2572 m->work.y = (short) (fr.size.height - vfr.size.height) - vy + y + y;
2573 m->work.width = (unsigned short) vfr.size.width;
2574 m->work.height = (unsigned short) vfr.size.height;
2575
2576#ifdef NS_IMPL_COCOA
2577 m->name = ns_screen_name (did);
2578
2579 {
2580 CGSize mms = CGDisplayScreenSize (did);
2581 m->mm_width = (int) mms.width;
2582 m->mm_height = (int) mms.height;
2583 }
2584
2585#else
2586 // Assume 92 dpi as x-display-mm-height/x-display-mm-width does.
2587 m->mm_width = (int) (25.4 * fr.size.width / 92.0);
2588 m->mm_height = (int) (25.4 * fr.size.height / 92.0);
2589#endif
2590 }
2591
2592 // Primary monitor is always first for NS.
2593 attributes_list = ns_make_monitor_attribute_list (monitors, n_monitors,
2594 0, "NS");
edfda783 2595
4465bfb4
JD
2596 free_monitors (monitors, n_monitors);
2597 return attributes_list;
edfda783
AR
2598}
2599
2600
952913d4 2601DEFUN ("x-display-planes", Fx_display_planes, Sx_display_planes,
edfda783 2602 0, 1, 0,
91e8418b
YM
2603 doc: /* Return the number of bitplanes of the Nextstep display TERMINAL.
2604The optional argument TERMINAL specifies which display to ask about.
2605TERMINAL should be a terminal object, a frame or a display name (a string).
51d5ef9f 2606If omitted or nil, that stands for the selected frame's display. */)
91e8418b 2607 (Lisp_Object terminal)
edfda783 2608{
91e8418b 2609 check_ns_display_info (terminal);
edfda783 2610 return make_number
91e8418b 2611 (NSBitsPerPixelFromDepth ([[[NSScreen screens] objectAtIndex:0] depth]));
edfda783
AR
2612}
2613
2614
91e8418b
YM
2615DEFUN ("x-display-color-cells", Fx_display_color_cells, Sx_display_color_cells,
2616 0, 1, 0,
2617 doc: /* Returns the number of color cells of the Nextstep display TERMINAL.
2618The optional argument TERMINAL specifies which display to ask about.
2619TERMINAL should be a terminal object, a frame or a display name (a string).
51d5ef9f 2620If omitted or nil, that stands for the selected frame's display. */)
91e8418b 2621 (Lisp_Object terminal)
edfda783 2622{
91e8418b 2623 struct ns_display_info *dpyinfo = check_ns_display_info (terminal);
edfda783
AR
2624 /* We force 24+ bit depths to 24-bit to prevent an overflow. */
2625 return make_number (1 << min (dpyinfo->n_planes, 24));
2626}
2627
2628
2629/* Unused dummy def needed for compatibility. */
2630Lisp_Object tip_frame;
2631
6fb5f7da 2632/* TODO: move to xdisp or similar */
edfda783 2633static void
3d608a86
J
2634compute_tip_xy (struct frame *f,
2635 Lisp_Object parms,
2636 Lisp_Object dx,
2637 Lisp_Object dy,
2638 int width,
2639 int height,
2640 int *root_x,
2641 int *root_y)
edfda783
AR
2642{
2643 Lisp_Object left, top;
2644 EmacsView *view = FRAME_NS_VIEW (f);
18da0d8a 2645 struct ns_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
edfda783 2646 NSPoint pt;
b066e6b6 2647
edfda783
AR
2648 /* Start with user-specified or mouse position. */
2649 left = Fcdr (Fassq (Qleft, parms));
edfda783 2650 top = Fcdr (Fassq (Qtop, parms));
edfda783 2651
7a18115b
J
2652 if (!INTEGERP (left) || !INTEGERP (top))
2653 {
18da0d8a
DA
2654 pt.x = dpyinfo->last_mouse_motion_x;
2655 pt.y = dpyinfo->last_mouse_motion_y;
7a18115b
J
2656 /* Convert to screen coordinates */
2657 pt = [view convertPoint: pt toView: nil];
2658 pt = [[view window] convertBaseToScreen: pt];
2659 }
2660 else
2661 {
2662 /* Absolute coordinates. */
2663 pt.x = XINT (left);
aad3612f 2664 pt.y = x_display_pixel_height (FRAME_DISPLAY_INFO (f)) - XINT (top)
7a18115b
J
2665 - height;
2666 }
5fdb398c 2667
edfda783 2668 /* Ensure in bounds. (Note, screen origin = lower left.) */
7a18115b
J
2669 if (INTEGERP (left))
2670 *root_x = pt.x;
2671 else if (pt.x + XINT (dx) <= 0)
edfda783 2672 *root_x = 0; /* Can happen for negative dx */
889bd438 2673 else if (pt.x + XINT (dx) + width
aad3612f 2674 <= x_display_pixel_width (FRAME_DISPLAY_INFO (f)))
edfda783
AR
2675 /* It fits to the right of the pointer. */
2676 *root_x = pt.x + XINT (dx);
2677 else if (width + XINT (dx) <= pt.x)
2678 /* It fits to the left of the pointer. */
2679 *root_x = pt.x - width - XINT (dx);
2680 else
2681 /* Put it left justified on the screen -- it ought to fit that way. */
2682 *root_x = 0;
2683
7a18115b
J
2684 if (INTEGERP (top))
2685 *root_y = pt.y;
2686 else if (pt.y - XINT (dy) - height >= 0)
edfda783
AR
2687 /* It fits below the pointer. */
2688 *root_y = pt.y - height - XINT (dy);
889bd438 2689 else if (pt.y + XINT (dy) + height
aad3612f 2690 <= x_display_pixel_height (FRAME_DISPLAY_INFO (f)))
edfda783
AR
2691 /* It fits above the pointer */
2692 *root_y = pt.y + XINT (dy);
2693 else
2694 /* Put it on the top. */
aad3612f 2695 *root_y = x_display_pixel_height (FRAME_DISPLAY_INFO (f)) - height;
edfda783
AR
2696}
2697
2698
2699DEFUN ("x-show-tip", Fx_show_tip, Sx_show_tip, 1, 6, 0,
b066e6b6 2700 doc: /* Show STRING in a \"tooltip\" window on frame FRAME.
edfda783
AR
2701A tooltip window is a small window displaying a string.
2702
4f4f2973
GM
2703This is an internal function; Lisp code should call `tooltip-show'.
2704
edfda783
AR
2705FRAME nil or omitted means use the selected frame.
2706
2707PARMS is an optional list of frame parameters which can be used to
2708change the tooltip's appearance.
2709
2710Automatically hide the tooltip after TIMEOUT seconds. TIMEOUT nil
2711means use the default timeout of 5 seconds.
2712
2713If the list of frame parameters PARMS contains a `left' parameter,
2714the tooltip is displayed at that x-position. Otherwise it is
2715displayed at the mouse position, with offset DX added (default is 5 if
2716DX isn't specified). Likewise for the y-position; if a `top' frame
2717parameter is specified, it determines the y-position of the tooltip
2718window, otherwise it is displayed at the mouse position, with offset
2719DY added (default is -10).
2720
2721A tooltip's maximum size is specified by `x-max-tooltip-size'.
2722Text larger than the specified size is clipped. */)
5842a27b 2723 (Lisp_Object string, Lisp_Object frame, Lisp_Object parms, Lisp_Object timeout, Lisp_Object dx, Lisp_Object dy)
edfda783
AR
2724{
2725 int root_x, root_y;
2726 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
d311d28c 2727 ptrdiff_t count = SPECPDL_INDEX ();
edfda783
AR
2728 struct frame *f;
2729 char *str;
2730 NSSize size;
2731
2732 specbind (Qinhibit_redisplay, Qt);
2733
2734 GCPRO4 (string, parms, frame, timeout);
2735
2736 CHECK_STRING (string);
0dc8cf50 2737 str = SSDATA (string);
7452b7bd 2738 f = decode_window_system_frame (frame);
edfda783
AR
2739 if (NILP (timeout))
2740 timeout = make_number (5);
2741 else
2742 CHECK_NATNUM (timeout);
2743
2744 if (NILP (dx))
2745 dx = make_number (5);
2746 else
2747 CHECK_NUMBER (dx);
2748
2749 if (NILP (dy))
2750 dy = make_number (-10);
2751 else
2752 CHECK_NUMBER (dy);
2753
4d7e6e51 2754 block_input ();
edfda783
AR
2755 if (ns_tooltip == nil)
2756 ns_tooltip = [[EmacsTooltip alloc] init];
2757 else
2758 Fx_hide_tip ();
2759
2760 [ns_tooltip setText: str];
2761 size = [ns_tooltip frame].size;
2762
2763 /* Move the tooltip window where the mouse pointer is. Resize and
2764 show it. */
2765 compute_tip_xy (f, parms, dx, dy, (int)size.width, (int)size.height,
2766 &root_x, &root_y);
2767
2768 [ns_tooltip showAtX: root_x Y: root_y for: XINT (timeout)];
4d7e6e51 2769 unblock_input ();
edfda783
AR
2770
2771 UNGCPRO;
2772 return unbind_to (count, Qnil);
2773}
2774
2775
2776DEFUN ("x-hide-tip", Fx_hide_tip, Sx_hide_tip, 0, 0, 0,
2777 doc: /* Hide the current tooltip window, if there is any.
2778Value is t if tooltip was open, nil otherwise. */)
5842a27b 2779 (void)
edfda783
AR
2780{
2781 if (ns_tooltip == nil || ![ns_tooltip isActive])
2782 return Qnil;
2783 [ns_tooltip hide];
2784 return Qt;
2785}
2786
2787
cc98b6a0
DN
2788/* ==========================================================================
2789
2790 Class implementations
2791
2792 ========================================================================== */
2793
edbdcec0
JD
2794/*
2795 Handle arrow/function/control keys and copy/paste/cut in file dialogs.
a37d34f3 2796 Return YES if handled, NO if not.
edbdcec0
JD
2797 */
2798static BOOL
2799handlePanelKeys (NSSavePanel *panel, NSEvent *theEvent)
2800{
2801 NSString *s;
2802 int i;
2803 BOOL ret = NO;
2804
2805 if ([theEvent type] != NSKeyDown) return NO;
2806 s = [theEvent characters];
2807
2808 for (i = 0; i < [s length]; ++i)
2809 {
2810 int ch = (int) [s characterAtIndex: i];
2811 switch (ch)
2812 {
2813 case NSHomeFunctionKey:
2814 case NSDownArrowFunctionKey:
2815 case NSUpArrowFunctionKey:
2816 case NSLeftArrowFunctionKey:
2817 case NSRightArrowFunctionKey:
2818 case NSPageUpFunctionKey:
2819 case NSPageDownFunctionKey:
2820 case NSEndFunctionKey:
9d3f2fc2
JD
2821 /* Don't send command modified keys, as those are handled in the
2822 performKeyEquivalent method of the super class.
2823 */
2824 if (! ([theEvent modifierFlags] & NSCommandKeyMask))
2825 {
2826 [panel sendEvent: theEvent];
2827 ret = YES;
2828 }
edbdcec0
JD
2829 break;
2830 /* As we don't have the standard key commands for
2831 copy/paste/cut/select-all in our edit menu, we must handle
2832 them here. TODO: handle Emacs key bindings for copy/cut/select-all
2833 here, paste works, because we have that in our Edit menu.
2834 I.e. refactor out code in nsterm.m, keyDown: to figure out the
2835 correct modifier.
2836 */
2837 case 'x': // Cut
2838 case 'c': // Copy
2839 case 'v': // Paste
2840 case 'a': // Select all
2841 if ([theEvent modifierFlags] & NSCommandKeyMask)
2842 {
2843 [NSApp sendAction:
2844 (ch == 'x'
2845 ? @selector(cut:)
2846 : (ch == 'c'
2847 ? @selector(copy:)
2848 : (ch == 'v'
2849 ? @selector(paste:)
2850 : @selector(selectAll:))))
2851 to:nil from:panel];
2852 ret = YES;
2853 }
2854 default:
2855 // Send all control keys, as the text field supports C-a, C-f, C-e
2856 // C-b and more.
2857 if ([theEvent modifierFlags] & NSControlKeyMask)
2858 {
2859 [panel sendEvent: theEvent];
2860 ret = YES;
2861 }
2862 break;
2863 }
2864 }
2865
2866
2867 return ret;
2868}
cc98b6a0
DN
2869
2870@implementation EmacsSavePanel
edbdcec0
JD
2871- (BOOL)performKeyEquivalent:(NSEvent *)theEvent
2872{
2873 BOOL ret = handlePanelKeys (self, theEvent);
2874 if (! ret)
2875 ret = [super performKeyEquivalent:theEvent];
2876 return ret;
2877}
cc98b6a0
DN
2878@end
2879
2880
2881@implementation EmacsOpenPanel
edbdcec0
JD
2882- (BOOL)performKeyEquivalent:(NSEvent *)theEvent
2883{
2884 // NSOpenPanel inherits NSSavePanel, so passing self is OK.
2885 BOOL ret = handlePanelKeys (self, theEvent);
2886 if (! ret)
2887 ret = [super performKeyEquivalent:theEvent];
2888 return ret;
2889}
cc98b6a0
DN
2890@end
2891
2892
2893@implementation EmacsFileDelegate
2894/* --------------------------------------------------------------------------
2895 Delegate methods for Open/Save panels
2896 -------------------------------------------------------------------------- */
2897- (BOOL)panel: (id)sender isValidFilename: (NSString *)filename
2898{
2899 return YES;
2900}
2901- (BOOL)panel: (id)sender shouldShowFilename: (NSString *)filename
2902{
2903 return YES;
2904}
2905- (NSString *)panel: (id)sender userEnteredFilename: (NSString *)filename
2906 confirmed: (BOOL)okFlag
2907{
2908 return filename;
2909}
2910@end
2911
2912#endif
2913
ba301db3 2914
edfda783
AR
2915/* ==========================================================================
2916
2917 Lisp interface declaration
2918
2919 ========================================================================== */
2920
2921
2922void
3d608a86 2923syms_of_nsfns (void)
edfda783 2924{
088dcc3e 2925 Qfontsize = intern_c_string ("fontsize");
edfda783
AR
2926 staticpro (&Qfontsize);
2927
fb9d0f5a 2928 DEFVAR_LISP ("ns-icon-type-alist", Vns_icon_type_alist,
51d5ef9f 2929 doc: /* Alist of elements (REGEXP . IMAGE) for images of icons associated to frames.
d26fbe1a
CY
2930If the title of a frame matches REGEXP, then IMAGE.tiff is
2931selected as the image of the icon representing the frame when it's
2932miniaturized. If an element is t, then Emacs tries to select an icon
2933based on the filetype of the visited file.
2934
2935The images have to be installed in a folder called English.lproj in the
2936Emacs folder. You have to restart Emacs after installing new icons.
2937
2938Example: Install an icon Gnus.tiff and execute the following code
2939
2940 (setq ns-icon-type-alist
2941 (append ns-icon-type-alist
2942 '((\"^\\\\*\\\\(Group\\\\*$\\\\|Summary \\\\|Article\\\\*$\\\\)\"
2943 . \"Gnus\"))))
2944
2945When you miniaturize a Group, Summary or Article frame, Gnus.tiff will
51d5ef9f 2946be used as the image of the icon representing the frame. */);
6c6f1994 2947 Vns_icon_type_alist = list1 (Qt);
edfda783 2948
fb9d0f5a 2949 DEFVAR_LISP ("ns-version-string", Vns_version_string,
cb83c00b 2950 doc: /* Toolkit version for NS Windowing. */);
f5497e45 2951 Vns_version_string = ns_appkit_version_str ();
cb83c00b 2952
edfda783
AR
2953 defsubr (&Sns_read_file_name);
2954 defsubr (&Sns_get_resource);
2955 defsubr (&Sns_set_resource);
2956 defsubr (&Sxw_display_color_p); /* this and next called directly by C code */
2957 defsubr (&Sx_display_grayscale_p);
edfda783
AR
2958 defsubr (&Sns_font_name);
2959 defsubr (&Sns_list_colors);
74876614 2960#ifdef NS_IMPL_COCOA
583ff3c3 2961 defsubr (&Sns_do_applescript);
74876614 2962#endif
952913d4
DN
2963 defsubr (&Sxw_color_defined_p);
2964 defsubr (&Sxw_color_values);
2965 defsubr (&Sx_server_max_request_size);
9e50ff0c
DN
2966 defsubr (&Sx_server_vendor);
2967 defsubr (&Sx_server_version);
952913d4
DN
2968 defsubr (&Sx_display_pixel_width);
2969 defsubr (&Sx_display_pixel_height);
4465bfb4 2970 defsubr (&Sns_display_monitor_attributes_list);
9e50ff0c
DN
2971 defsubr (&Sx_display_mm_width);
2972 defsubr (&Sx_display_mm_height);
2973 defsubr (&Sx_display_screens);
952913d4
DN
2974 defsubr (&Sx_display_planes);
2975 defsubr (&Sx_display_color_cells);
9e50ff0c
DN
2976 defsubr (&Sx_display_visual_class);
2977 defsubr (&Sx_display_backing_store);
2978 defsubr (&Sx_display_save_under);
2979 defsubr (&Sx_create_frame);
9e50ff0c
DN
2980 defsubr (&Sx_open_connection);
2981 defsubr (&Sx_close_connection);
2982 defsubr (&Sx_display_list);
edfda783
AR
2983
2984 defsubr (&Sns_hide_others);
2985 defsubr (&Sns_hide_emacs);
2986 defsubr (&Sns_emacs_info_panel);
2987 defsubr (&Sns_list_services);
2988 defsubr (&Sns_perform_service);
2989 defsubr (&Sns_convert_utf8_nfd_to_nfc);
edfda783
AR
2990 defsubr (&Sns_popup_font_panel);
2991 defsubr (&Sns_popup_color_panel);
2992
2993 defsubr (&Sx_show_tip);
2994 defsubr (&Sx_hide_tip);
2995
08e3161a
JD
2996 as_status = 0;
2997 as_script = Qnil;
2998 as_result = 0;
edfda783 2999}