Add 2012 to FSF copyright years for Emacs files (do not merge to trunk)
[bpt/emacs.git] / src / nsfns.m
CommitLineData
edfda783 1/* Functions for the NeXT/Open/GNUstep and MacOSX window system.
49f70d46 2 Copyright (C) 1989, 1992, 1993, 1994, 2005, 2006, 2008, 2009, 2010, 2011, 2012
32d235f8 3 Free Software Foundation, Inc.
edfda783
AR
4
5This file is part of GNU Emacs.
6
32d235f8 7GNU Emacs is free software: you can redistribute it and/or modify
edfda783 8it under the terms of the GNU General Public License as published by
32d235f8
GM
9the Free Software Foundation, either version 3 of the License, or
10(at your option) any later version.
edfda783
AR
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
32d235f8 18along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
edfda783 19
32d235f8 20/*
edfda783
AR
21Originally by Carl Edman
22Updated by Christian Limpach (chris@nice.ch)
23OpenStep/Rhapsody port by Scott Bender (sbender@harmony-ds.com)
24MacOSX/Aqua port by Christophe de Dinechin (descubes@earthlink.net)
25GNUstep port and post-20 update by Adrian Robert (arobert@cogsci.ucsd.edu)
edfda783
AR
26*/
27
5a06864f
AR
28/* This should be the first include, as it may set up #defines affecting
29 interpretation of even the system includes. */
30#include "config.h"
31
edfda783
AR
32#include <signal.h>
33#include <math.h>
b024548b 34#include <setjmp.h>
5a06864f 35
edfda783
AR
36#include "lisp.h"
37#include "blockinput.h"
38#include "nsterm.h"
39#include "window.h"
40#include "buffer.h"
41#include "keyboard.h"
42#include "termhooks.h"
43#include "fontset.h"
edfda783
AR
44#include "character.h"
45#include "font.h"
46
47#if 0
48int fns_trace_num = 1;
49#define NSTRACE(x) fprintf (stderr, "%s:%d: [%d] " #x "\n", \
50 __FILE__, __LINE__, ++fns_trace_num)
51#else
52#define NSTRACE(x)
53#endif
54
55#ifdef HAVE_NS
56
57extern NSArray *ns_send_types, *ns_return_types, *ns_drag_types;
58
59extern Lisp_Object Qforeground_color;
60extern Lisp_Object Qbackground_color;
61extern Lisp_Object Qcursor_color;
62extern Lisp_Object Qinternal_border_width;
63extern Lisp_Object Qvisibility;
64extern Lisp_Object Qcursor_type;
65extern Lisp_Object Qicon_type;
66extern Lisp_Object Qicon_name;
67extern Lisp_Object Qicon_left;
68extern Lisp_Object Qicon_top;
69extern Lisp_Object Qleft;
70extern Lisp_Object Qright;
71extern Lisp_Object Qtop;
72extern Lisp_Object Qdisplay;
73extern Lisp_Object Qvertical_scroll_bars;
74extern Lisp_Object Qauto_raise;
75extern Lisp_Object Qauto_lower;
76extern Lisp_Object Qbox;
77extern Lisp_Object Qscroll_bar_width;
78extern Lisp_Object Qx_resource_name;
79extern Lisp_Object Qface_set_after_frame_default;
80extern Lisp_Object Qunderline, Qundefined;
81extern Lisp_Object Qheight, Qminibuffer, Qname, Qonly, Qwidth;
82extern Lisp_Object Qunsplittable, Qmenu_bar_lines, Qbuffer_predicate, Qtitle;
7ffdf101 83extern Lisp_Object Qnone;
0ad25444 84extern Lisp_Object Vframe_title_format, Vicon_title_format;
edfda783 85
edfda783
AR
86Lisp_Object Qbuffered;
87Lisp_Object Qfontsize;
88
89/* hack for OS X file panels */
90char panelOK = 0;
91
92/* Alist of elements (REGEXP . IMAGE) for images of icons associated
93 to frames.*/
cb83c00b
AR
94static Lisp_Object Vns_icon_type_alist;
95
96/* Toolkit version support. */
97static Lisp_Object Vns_version_string;
edfda783
AR
98
99EmacsTooltip *ns_tooltip;
100
101/* Need forward declaration here to preserve organizational integrity of file */
9e50ff0c 102Lisp_Object Fx_open_connection (Lisp_Object, Lisp_Object, Lisp_Object);
edfda783
AR
103
104extern BOOL ns_in_resize;
105
106
107/* ==========================================================================
108
109 Internal utility functions
110
111 ========================================================================== */
112
113
114void
115check_ns (void)
116{
117 if (NSApp == nil)
118 error ("OpenStep is not in use or not initialized");
119}
120
121
122/* Nonzero if we can use mouse menus. */
123int
124have_menus_p ()
125{
126 return NSApp != nil;
127}
128
129
130/* Extract a frame as a FRAME_PTR, defaulting to the selected frame
131 and checking validity for NS. */
132static FRAME_PTR
133check_ns_frame (Lisp_Object frame)
134{
135 FRAME_PTR f;
136
137 if (NILP (frame))
138 f = SELECTED_FRAME ();
139 else
140 {
141 CHECK_LIVE_FRAME (frame);
142 f = XFRAME (frame);
143 }
144 if (! FRAME_NS_P (f))
d26fbe1a 145 error ("non-Nextstep frame used");
edfda783
AR
146 return f;
147}
148
149
d26fbe1a
CY
150/* Let the user specify an Nextstep display with a frame.
151 nil stands for the selected frame--or, if that is not an Nextstep frame,
152 the first Nextstep display on the list. */
edfda783
AR
153static struct ns_display_info *
154check_ns_display_info (Lisp_Object frame)
155{
156 if (NILP (frame))
157 {
158 struct frame *f = SELECTED_FRAME ();
159 if (FRAME_NS_P (f) && FRAME_LIVE_P (f) )
160 return FRAME_NS_DISPLAY_INFO (f);
9e50ff0c
DN
161 else if (x_display_list != 0)
162 return x_display_list;
edfda783 163 else
d26fbe1a 164 error ("Nextstep windows are not in use or not initialized");
edfda783
AR
165 }
166 else if (INTEGERP (frame))
167 {
168 struct terminal *t = get_terminal (frame, 1);
169
170 if (t->type != output_ns)
d26fbe1a 171 error ("Terminal %d is not a Nextstep display", XINT (frame));
edfda783
AR
172
173 return t->display_info.ns;
174 }
175 else if (STRINGP (frame))
176 return ns_display_info_for_name (frame);
177 else
178 {
179 FRAME_PTR f;
180
181 CHECK_LIVE_FRAME (frame);
182 f = XFRAME (frame);
183 if (! FRAME_NS_P (f))
d26fbe1a 184 error ("non-Nextstep frame used");
edfda783
AR
185 return FRAME_NS_DISPLAY_INFO (f);
186 }
187 return NULL; /* shut compiler up */
188}
189
190
191static id
192ns_get_window (Lisp_Object maybeFrame)
193{
194 id view =nil, window =nil;
195
196 if (!FRAMEP (maybeFrame) || !FRAME_NS_P (XFRAME (maybeFrame)))
197 maybeFrame = selected_frame;/*wrong_type_argument (Qframep, maybeFrame); */
198
199 if (!NILP (maybeFrame))
200 view = FRAME_NS_VIEW (XFRAME (maybeFrame));
201 if (view) window =[view window];
202
203 return window;
204}
205
206
207static NSScreen *
5996e1b7 208ns_get_screen (Lisp_Object screen)
edfda783 209{
474217c8
CY
210 struct frame *f;
211 struct terminal *terminal;
212
213 if (EQ (Qt, screen)) /* not documented */
214 return [NSScreen mainScreen];
215
216 terminal = get_terminal (screen, 1);
5996e1b7 217 if (terminal->type != output_ns)
474217c8
CY
218 return NULL;
219
220 if (NILP (screen))
221 f = SELECTED_FRAME ();
222 else if (FRAMEP (screen))
223 f = XFRAME (screen);
5996e1b7 224 else
edfda783 225 {
5996e1b7 226 struct ns_display_info *dpyinfo = terminal->display_info.ns;
0ad25444
JD
227 f = dpyinfo->x_focus_frame
228 ? dpyinfo->x_focus_frame : dpyinfo->x_highlight_frame;
edfda783 229 }
474217c8
CY
230
231 return ((f && FRAME_NS_P (f)) ? [[FRAME_NS_VIEW (f) window] screen]
232 : NULL);
edfda783
AR
233}
234
235
236/* Return the X display structure for the display named NAME.
237 Open a new connection if necessary. */
238struct ns_display_info *
239ns_display_info_for_name (name)
240 Lisp_Object name;
241{
242 Lisp_Object names;
243 struct ns_display_info *dpyinfo;
244
245 CHECK_STRING (name);
246
9e50ff0c 247 for (dpyinfo = x_display_list, names = ns_display_name_list;
edfda783
AR
248 dpyinfo;
249 dpyinfo = dpyinfo->next, names = XCDR (names))
250 {
251 Lisp_Object tem;
252 tem = Fstring_equal (XCAR (XCAR (names)), name);
253 if (!NILP (tem))
254 return dpyinfo;
255 }
256
257 error ("Emacs for OpenStep does not yet support multi-display.");
258
9e50ff0c
DN
259 Fx_open_connection (name, Qnil, Qnil);
260 dpyinfo = x_display_list;
edfda783
AR
261
262 if (dpyinfo == 0)
facfbbbd 263 error ("OpenStep on %s not responding.\n", SDATA (name));
edfda783
AR
264
265 return dpyinfo;
266}
267
268
269static Lisp_Object
270interpret_services_menu (NSMenu *menu, Lisp_Object prefix, Lisp_Object old)
271/* --------------------------------------------------------------------------
272 Turn the input menu (an NSMenu) into a lisp list for tracking on lisp side
273 -------------------------------------------------------------------------- */
274{
275 int i, count;
15034960 276 NSMenuItem *item;
edfda783
AR
277 const char *name;
278 Lisp_Object nameStr;
279 unsigned short key;
280 NSString *keys;
281 Lisp_Object res;
282
283 count = [menu numberOfItems];
284 for (i = 0; i<count; i++)
285 {
286 item = [menu itemAtIndex: i];
287 name = [[item title] UTF8String];
288 if (!name) continue;
289
290 nameStr = build_string (name);
291
292 if ([item hasSubmenu])
293 {
294 old = interpret_services_menu ([item submenu],
295 Fcons (nameStr, prefix), old);
296 }
297 else
298 {
299 keys = [item keyEquivalent];
300 if (keys && [keys length] )
301 {
302 key = [keys characterAtIndex: 0];
303 res = make_number (key|super_modifier);
304 }
305 else
306 {
307 res = Qundefined;
308 }
309 old = Fcons (Fcons (res,
310 Freverse (Fcons (nameStr,
311 prefix))),
312 old);
313 }
314 }
315 return old;
316}
317
318
319
320/* ==========================================================================
321
322 Frame parameter setters
323
324 ========================================================================== */
325
326
327static void
89e2438a 328x_set_foreground_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
edfda783
AR
329{
330 NSColor *col;
331
332 if (ns_lisp_to_color (arg, &col))
333 {
334 store_frame_param (f, Qforeground_color, oldval);
335 error ("Unknown color");
336 }
337
338 [col retain];
339 [f->output_data.ns->foreground_color release];
340 f->output_data.ns->foreground_color = col;
341
342 if (FRAME_NS_VIEW (f))
343 {
344 update_face_from_frame_parameter (f, Qforeground_color, arg);
345 /*recompute_basic_faces (f); */
346 if (FRAME_VISIBLE_P (f))
347 redraw_frame (f);
348 }
349}
350
351
352static void
89e2438a 353x_set_background_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
edfda783
AR
354{
355 struct face *face;
356 NSColor *col;
357 NSView *view = FRAME_NS_VIEW (f);
358 float alpha;
359
360 if (ns_lisp_to_color (arg, &col))
361 {
362 store_frame_param (f, Qbackground_color, oldval);
363 error ("Unknown color");
364 }
365
366 /* clear the frame; in some instances the NS-internal GC appears not to
367 update, or it does update and cannot clear old text properly */
368 if (FRAME_VISIBLE_P (f))
369 ns_clear_frame (f);
370
371 [col retain];
372 [f->output_data.ns->background_color release];
373 f->output_data.ns->background_color = col;
374 if (view != nil)
375 {
376 [[view window] setBackgroundColor: col];
377 alpha = [col alphaComponent];
378
edfda783
AR
379 if (alpha != 1.0)
380 [[view window] setOpaque: NO];
381 else
382 [[view window] setOpaque: YES];
383
384 face = FRAME_DEFAULT_FACE (f);
385 if (face)
386 {
45d325c4 387 col = ns_lookup_indexed_color (NS_FACE_BACKGROUND (face), f);
facfbbbd
SM
388 face->background
389 = (EMACS_UINT) [[col colorWithAlphaComponent: alpha] retain];
edfda783
AR
390 [col release];
391
392 update_face_from_frame_parameter (f, Qbackground_color, arg);
393 }
394
395 if (FRAME_VISIBLE_P (f))
396 redraw_frame (f);
397 }
398}
399
400
401static void
89e2438a 402x_set_cursor_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
edfda783
AR
403{
404 NSColor *col;
405
406 if (ns_lisp_to_color (arg, &col))
407 {
408 store_frame_param (f, Qcursor_color, oldval);
409 error ("Unknown color");
410 }
411
c8c057de
AR
412 [FRAME_CURSOR_COLOR (f) release];
413 FRAME_CURSOR_COLOR (f) = [col retain];
edfda783
AR
414
415 if (FRAME_VISIBLE_P (f))
416 {
417 x_update_cursor (f, 0);
418 x_update_cursor (f, 1);
419 }
420 update_face_from_frame_parameter (f, Qcursor_color, arg);
421}
422
c8c057de 423
edfda783 424static void
89e2438a 425x_set_icon_name (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
edfda783
AR
426{
427 NSView *view = FRAME_NS_VIEW (f);
89e2438a 428 NSTRACE (x_set_icon_name);
edfda783
AR
429
430 if (ns_in_resize)
431 return;
432
433 /* see if it's changed */
434 if (STRINGP (arg))
435 {
436 if (STRINGP (oldval) && EQ (Fstring_equal (oldval, arg), Qt))
437 return;
438 }
439 else if (!STRINGP (oldval) && EQ (oldval, Qnil) == EQ (arg, Qnil))
440 return;
441
442 f->icon_name = arg;
443
444 if (NILP (arg))
445 {
446 if (!NILP (f->title))
447 arg = f->title;
448 else
449 /* explicit name and no icon-name -> explicit_name */
450 if (f->explicit_name)
451 arg = f->name;
452 else
453 {
454 /* no explicit name and no icon-name ->
455 name has to be rebuild from icon_title_format */
456 windows_or_buffers_changed++;
457 return;
458 }
459 }
460
461 /* Don't change the name if it's already NAME. */
462 if ([[view window] miniwindowTitle] &&
463 ([[[view window] miniwindowTitle]
464 isEqualToString: [NSString stringWithUTF8String:
facfbbbd 465 SDATA (arg)]]))
edfda783
AR
466 return;
467
468 [[view window] setMiniwindowTitle:
facfbbbd 469 [NSString stringWithUTF8String: SDATA (arg)]];
edfda783
AR
470}
471
edfda783 472static void
0ad25444 473ns_set_name_internal (FRAME_PTR f, Lisp_Object name)
edfda783 474{
0ad25444
JD
475 struct gcpro gcpro1;
476 Lisp_Object encoded_name, encoded_icon_name;
477 NSString *str;
edfda783 478 NSView *view = FRAME_NS_VIEW (f);
edfda783 479
0ad25444
JD
480 GCPRO1 (name);
481 encoded_name = ENCODE_UTF_8 (name);
482 UNGCPRO;
edfda783 483
0ad25444 484 str = [NSString stringWithUTF8String: SDATA (encoded_name)];
edfda783 485
0ad25444
JD
486 /* Don't change the name if it's already NAME. */
487 if (! [[[view window] title] isEqualToString: str])
488 [[view window] setTitle: str];
edfda783 489
0ad25444
JD
490 if (!STRINGP (f->icon_name))
491 encoded_icon_name = encoded_name;
edfda783 492 else
0ad25444
JD
493 encoded_icon_name = ENCODE_UTF_8 (f->icon_name);
494
495 str = [NSString stringWithUTF8String: SDATA (encoded_icon_name)];
edfda783 496
edfda783 497 if ([[view window] miniwindowTitle] &&
0ad25444
JD
498 ! [[[view window] miniwindowTitle] isEqualToString: str])
499 [[view window] setMiniwindowTitle: str];
edfda783 500
edfda783
AR
501}
502
edfda783
AR
503static void
504ns_set_name (struct frame *f, Lisp_Object name, int explicit)
505{
fec8f0fe 506 NSView *view;
edfda783
AR
507 NSTRACE (ns_set_name);
508
509 if (ns_in_resize)
510 return;
511
512 /* Make sure that requests from lisp code override requests from
513 Emacs redisplay code. */
514 if (explicit)
515 {
516 /* If we're switching from explicit to implicit, we had better
517 update the mode lines and thereby update the title. */
518 if (f->explicit_name && NILP (name))
519 update_mode_lines = 1;
520
521 f->explicit_name = ! NILP (name);
522 }
523 else if (f->explicit_name)
524 return;
525
526 if (NILP (name))
56d513e6 527 name = build_string([ns_app_name UTF8String]);
0ad25444
JD
528 else
529 CHECK_STRING (name);
530
531 /* Don't change the name if it's already NAME. */
532 if (! NILP (Fstring_equal (name, f->name)))
533 return;
edfda783
AR
534
535 f->name = name;
536
537 /* title overrides explicit name */
538 if (! NILP (f->title))
539 name = f->title;
540
0ad25444 541 ns_set_name_internal (f, name);
edfda783
AR
542}
543
544
545/* This function should be called when the user's lisp code has
546 specified a name for the frame; the name will override any set by the
547 redisplay code. */
548static void
89e2438a 549x_explicitly_set_name (FRAME_PTR f, Lisp_Object arg, Lisp_Object oldval)
edfda783 550{
89e2438a 551 NSTRACE (x_explicitly_set_name);
edfda783
AR
552 ns_set_name (f, arg, 1);
553}
554
555
556/* This function should be called by Emacs redisplay code to set the
557 name; names set this way will never override names set by the user's
558 lisp code. */
559void
560x_implicitly_set_name (FRAME_PTR f, Lisp_Object arg, Lisp_Object oldval)
561{
562 NSTRACE (x_implicitly_set_name);
0ad25444
JD
563
564 /* Deal with NS specific format t. */
565 if (FRAME_NS_P (f) && ((FRAME_ICONIFIED_P (f) && EQ (Vicon_title_format, Qt))
566 || EQ (Vframe_title_format, Qt)))
9ae6e189 567 ns_set_name_as_filename (f);
edfda783
AR
568 else
569 ns_set_name (f, arg, 0);
570}
571
572
573/* Change the title of frame F to NAME.
0ad25444 574 If NAME is nil, use the frame name as the title. */
edfda783 575
edfda783 576static void
89e2438a 577x_set_title (struct frame *f, Lisp_Object name, Lisp_Object old_name)
edfda783 578{
89e2438a 579 NSTRACE (x_set_title);
edfda783
AR
580 /* Don't change the title if it's already NAME. */
581 if (EQ (name, f->title))
582 return;
583
584 update_mode_lines = 1;
585
586 f->title = name;
0ad25444
JD
587
588 if (NILP (name))
589 name = f->name;
590 else
591 CHECK_STRING (name);
592
593 ns_set_name_internal (f, name);
edfda783
AR
594}
595
596
597void
598ns_set_name_as_filename (struct frame *f)
599{
fec8f0fe 600 NSView *view;
0ad25444 601 Lisp_Object name, filename;
edfda783
AR
602 Lisp_Object buf = XWINDOW (f->selected_window)->buffer;
603 const char *title;
604 NSAutoreleasePool *pool;
0ad25444
JD
605 struct gcpro gcpro1;
606 Lisp_Object encoded_name, encoded_filename;
607 NSString *str;
edfda783
AR
608 NSTRACE (ns_set_name_as_filename);
609
610 if (f->explicit_name || ! NILP (f->title) || ns_in_resize)
611 return;
612
613 BLOCK_INPUT;
614 pool = [[NSAutoreleasePool alloc] init];
0ad25444
JD
615 filename = XBUFFER (buf)->filename;
616 name = XBUFFER (buf)->name;
edfda783
AR
617
618 if (NILP (name))
0ad25444
JD
619 {
620 if (! NILP (filename))
621 name = Ffile_name_nondirectory (filename);
622 else
623 name = build_string ([ns_app_name UTF8String]);
624 }
625
626 GCPRO1 (name);
627 encoded_name = ENCODE_UTF_8 (name);
628 UNGCPRO;
edfda783 629
fec8f0fe
CY
630 view = FRAME_NS_VIEW (f);
631
edfda783
AR
632 title = FRAME_ICONIFIED_P (f) ? [[[view window] miniwindowTitle] UTF8String]
633 : [[[view window] title] UTF8String];
634
0ad25444 635 if (title && (! strcmp (title, SDATA (encoded_name))))
edfda783
AR
636 {
637 [pool release];
638 UNBLOCK_INPUT;
639 return;
640 }
641
0ad25444
JD
642 str = [NSString stringWithUTF8String: SDATA (encoded_name)];
643 if (str == nil) str = @"Bad coding";
644
645 if (FRAME_ICONIFIED_P (f))
646 [[view window] setMiniwindowTitle: str];
647 else
edfda783 648 {
0ad25444
JD
649 NSString *fstr;
650
651 if (! NILP (filename))
edfda783 652 {
0ad25444
JD
653 GCPRO1 (filename);
654 encoded_filename = ENCODE_UTF_8 (filename);
655 UNGCPRO;
656
657 fstr = [NSString stringWithUTF8String: SDATA (encoded_filename)];
658 if (fstr == nil) fstr = @"";
659#ifdef NS_IMPL_COCOA
660 /* work around a bug observed on 10.3 and later where
661 setTitleWithRepresentedFilename does not clear out previous state
662 if given filename does not exist */
663 if (! [[NSFileManager defaultManager] fileExistsAtPath: fstr])
664 [[view window] setRepresentedFilename: @""];
665#endif
edfda783
AR
666 }
667 else
0ad25444
JD
668 fstr = @"";
669
670 [[view window] setRepresentedFilename: fstr];
671 [[view window] setTitle: str];
edfda783
AR
672 f->name = name;
673 }
0ad25444 674
edfda783
AR
675 [pool release];
676 UNBLOCK_INPUT;
677}
678
679
680void
95b1abcf 681ns_set_doc_edited (struct frame *f, Lisp_Object arg)
edfda783
AR
682{
683 NSView *view = FRAME_NS_VIEW (f);
684 NSAutoreleasePool *pool;
9ae6e189
CY
685 if (!MINI_WINDOW_P (XWINDOW (f->selected_window)))
686 {
687 BLOCK_INPUT;
688 pool = [[NSAutoreleasePool alloc] init];
689 [[view window] setDocumentEdited: !NILP (arg)];
690 [pool release];
691 UNBLOCK_INPUT;
692 }
edfda783
AR
693}
694
695
cc98b6a0
DN
696void
697x_set_menu_bar_lines (struct frame *f, Lisp_Object value, Lisp_Object oldval)
edfda783
AR
698{
699 int nlines;
700 int olines = FRAME_MENU_BAR_LINES (f);
701 if (FRAME_MINIBUF_ONLY_P (f))
702 return;
703
704 if (INTEGERP (value))
705 nlines = XINT (value);
706 else
707 nlines = 0;
708
709 FRAME_MENU_BAR_LINES (f) = 0;
710 if (nlines)
711 {
712 FRAME_EXTERNAL_MENU_BAR (f) = 1;
cc98b6a0
DN
713 /* does for all frames, whereas we just want for one frame
714 [NSMenu setMenuBarVisible: YES]; */
edfda783
AR
715 }
716 else
717 {
718 if (FRAME_EXTERNAL_MENU_BAR (f) == 1)
719 free_frame_menubar (f);
cc98b6a0 720 /* [NSMenu setMenuBarVisible: NO]; */
edfda783
AR
721 FRAME_EXTERNAL_MENU_BAR (f) = 0;
722 }
723}
724
725
3fe53a83 726/* toolbar support */
cc98b6a0
DN
727void
728x_set_tool_bar_lines (struct frame *f, Lisp_Object value, Lisp_Object oldval)
edfda783
AR
729{
730 int nlines;
731 Lisp_Object root_window;
732
733 if (FRAME_MINIBUF_ONLY_P (f))
734 return;
735
736 if (INTEGERP (value) && XINT (value) >= 0)
737 nlines = XFASTINT (value);
738 else
739 nlines = 0;
740
741 if (nlines)
742 {
743 FRAME_EXTERNAL_TOOL_BAR (f) = 1;
744 update_frame_tool_bar (f);
745 }
746 else
747 {
748 if (FRAME_EXTERNAL_TOOL_BAR (f))
749 {
750 free_frame_tool_bar (f);
751 FRAME_EXTERNAL_TOOL_BAR (f) = 0;
752 }
753 }
754
755 x_set_window_size (f, 0, f->text_cols, f->text_lines);
756}
757
758
edfda783
AR
759void
760ns_implicitly_set_icon_type (struct frame *f)
761{
762 Lisp_Object tem;
763 EmacsView *view = FRAME_NS_VIEW (f);
764 id image =nil;
765 Lisp_Object chain, elt;
766 NSAutoreleasePool *pool;
767 BOOL setMini = YES;
768
769 NSTRACE (ns_implicitly_set_icon_type);
770
771 BLOCK_INPUT;
772 pool = [[NSAutoreleasePool alloc] init];
773 if (f->output_data.ns->miniimage
facfbbbd 774 && [[NSString stringWithUTF8String: SDATA (f->name)]
edfda783
AR
775 isEqualToString: [(NSImage *)f->output_data.ns->miniimage name]])
776 {
777 [pool release];
778 UNBLOCK_INPUT;
779 return;
780 }
781
782 tem = assq_no_quit (Qicon_type, f->param_alist);
783 if (CONSP (tem) && ! NILP (XCDR (tem)))
784 {
785 [pool release];
786 UNBLOCK_INPUT;
787 return;
788 }
789
790 for (chain = Vns_icon_type_alist;
791 (image = nil) && CONSP (chain);
792 chain = XCDR (chain))
793 {
794 elt = XCAR (chain);
795 /* special case: 't' means go by file type */
facfbbbd 796 if (SYMBOLP (elt) && EQ (elt, Qt) && SDATA (f->name)[0] == '/')
edfda783 797 {
facfbbbd
SM
798 NSString *str
799 = [NSString stringWithUTF8String: SDATA (f->name)];
edfda783
AR
800 if ([[NSFileManager defaultManager] fileExistsAtPath: str])
801 image = [[[NSWorkspace sharedWorkspace] iconForFile: str] retain];
802 }
803 else if (CONSP (elt) &&
804 STRINGP (XCAR (elt)) &&
805 STRINGP (XCDR (elt)) &&
806 fast_string_match (XCAR (elt), f->name) >= 0)
807 {
808 image = [EmacsImage allocInitFromFile: XCDR (elt)];
809 if (image == nil)
810 image = [[NSImage imageNamed:
811 [NSString stringWithUTF8String:
facfbbbd 812 SDATA (XCDR (elt))]] retain];
edfda783
AR
813 }
814 }
815
816 if (image == nil)
817 {
818 image = [[[NSWorkspace sharedWorkspace] iconForFileType: @"text"] retain];
819 setMini = NO;
820 }
821
822 [f->output_data.ns->miniimage release];
823 f->output_data.ns->miniimage = image;
824 [view setMiniwindowImage: setMini];
825 [pool release];
826 UNBLOCK_INPUT;
827}
828
829
830static void
89e2438a 831x_set_icon_type (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
edfda783
AR
832{
833 EmacsView *view = FRAME_NS_VIEW (f);
834 id image = nil;
835 BOOL setMini = YES;
836
89e2438a 837 NSTRACE (x_set_icon_type);
edfda783
AR
838
839 if (!NILP (arg) && SYMBOLP (arg))
840 {
facfbbbd 841 arg =build_string (SDATA (SYMBOL_NAME (arg)));
edfda783
AR
842 store_frame_param (f, Qicon_type, arg);
843 }
844
845 /* do it the implicit way */
846 if (NILP (arg))
847 {
848 ns_implicitly_set_icon_type (f);
849 return;
850 }
851
852 CHECK_STRING (arg);
853
854 image = [EmacsImage allocInitFromFile: arg];
855 if (image == nil)
856 image =[NSImage imageNamed: [NSString stringWithUTF8String:
facfbbbd 857 SDATA (arg)]];
edfda783
AR
858
859 if (image == nil)
860 {
861 image = [NSImage imageNamed: @"text"];
862 setMini = NO;
863 }
864
865 f->output_data.ns->miniimage = image;
866 [view setMiniwindowImage: setMini];
867}
868
869
3fe53a83 870/* Xism; we stub out (we do implement this in ns-win.el) */
edfda783
AR
871int
872XParseGeometry (char *string, int *x, int *y,
873 unsigned int *width, unsigned int *height)
874{
875 message1 ("Warning: XParseGeometry not supported under NS.\n");
876 return 0;
877}
878
879
6fb5f7da 880/* TODO: move to nsterm? */
edfda783
AR
881int
882ns_lisp_to_cursor_type (Lisp_Object arg)
883{
884 char *str;
885 if (XTYPE (arg) == Lisp_String)
facfbbbd 886 str = SDATA (arg);
edfda783 887 else if (XTYPE (arg) == Lisp_Symbol)
facfbbbd 888 str = SDATA (SYMBOL_NAME (arg));
edfda783 889 else return -1;
c8c057de
AR
890 if (!strcmp (str, "box")) return FILLED_BOX_CURSOR;
891 if (!strcmp (str, "hollow")) return HOLLOW_BOX_CURSOR;
892 if (!strcmp (str, "hbar")) return HBAR_CURSOR;
893 if (!strcmp (str, "bar")) return BAR_CURSOR;
894 if (!strcmp (str, "no")) return NO_CURSOR;
edfda783
AR
895 return -1;
896}
897
898
899Lisp_Object
900ns_cursor_type_to_lisp (int arg)
901{
902 switch (arg)
903 {
c8c057de
AR
904 case FILLED_BOX_CURSOR: return Qbox;
905 case HOLLOW_BOX_CURSOR: return intern ("hollow");
906 case HBAR_CURSOR: return intern ("hbar");
907 case BAR_CURSOR: return intern ("bar");
908 case NO_CURSOR:
909 default: return intern ("no");
edfda783
AR
910 }
911}
912
89e2438a 913/* This is the same as the xfns.c definition. */
06197b17 914void
89e2438a 915x_set_cursor_type (f, arg, oldval)
06197b17
DR
916 FRAME_PTR f;
917 Lisp_Object arg, oldval;
edfda783 918{
06197b17 919 set_frame_cursor_types (f, arg);
edfda783 920
06197b17
DR
921 /* Make sure the cursor gets redrawn. */
922 cursor_type_changed = 1;
edfda783 923}
06197b17 924\f
edfda783 925
3fe53a83
AR
926/* called to set mouse pointer color, but all other terms use it to
927 initialize pointer types (and don't set the color ;) */
edfda783 928static void
89e2438a 929x_set_mouse_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
edfda783 930{
d26fbe1a 931 /* don't think we can do this on Nextstep */
edfda783
AR
932}
933
934
cb83c00b
AR
935#define Str(x) #x
936#define Xstr(x) Str(x)
937
938static Lisp_Object
f5497e45 939ns_appkit_version_str ()
cb83c00b
AR
940{
941 char tmp[80];
942
943#ifdef NS_IMPL_GNUSTEP
944 sprintf(tmp, "gnustep-gui-%s", Xstr(GNUSTEP_GUI_VERSION));
945#elif defined(NS_IMPL_COCOA)
946 sprintf(tmp, "apple-appkit-%.2f", NSAppKitVersionNumber);
947#else
948 tmp = "ns-unknown";
949#endif
950 return build_string (tmp);
951}
952
953
f5497e45
AR
954/* This is for use by x-server-version and collapses all version info we
955 have into a single int. For a better picture of the implementation
956 running, use ns_appkit_version_str.*/
957static int
958ns_appkit_version_int ()
959{
960#ifdef NS_IMPL_GNUSTEP
13cd8a29 961 return GNUSTEP_GUI_MAJOR_VERSION * 100 + GNUSTEP_GUI_MINOR_VERSION;
f5497e45
AR
962#elif defined(NS_IMPL_COCOA)
963 return (int)NSAppKitVersionNumber;
964#endif
965 return 0;
966}
967
968
edfda783 969static void
952913d4 970x_icon (struct frame *f, Lisp_Object parms)
edfda783
AR
971/* --------------------------------------------------------------------------
972 Strangely-named function to set icon position parameters in frame.
973 This is irrelevant under OS X, but might be needed under GNUstep,
974 depending on the window manager used. Note, this is not a standard
975 frame parameter-setter; it is called directly from x-create-frame.
976 -------------------------------------------------------------------------- */
977{
978 Lisp_Object icon_x, icon_y;
979 struct ns_display_info *dpyinfo = check_ns_display_info (Qnil);
980
981 f->output_data.ns->icon_top = Qnil;
982 f->output_data.ns->icon_left = Qnil;
983
984 /* Set the position of the icon. */
985 icon_x = x_get_arg (dpyinfo, parms, Qicon_left, 0, 0, RES_TYPE_NUMBER);
986 icon_y = x_get_arg (dpyinfo, parms, Qicon_top, 0, 0, RES_TYPE_NUMBER);
987 if (!EQ (icon_x, Qunbound) && !EQ (icon_y, Qunbound))
988 {
989 CHECK_NUMBER (icon_x);
990 CHECK_NUMBER (icon_y);
991 f->output_data.ns->icon_top = icon_y;
992 f->output_data.ns->icon_left = icon_x;
993 }
994 else if (!EQ (icon_x, Qunbound) || !EQ (icon_y, Qunbound))
995 error ("Both left and top icon corners of icon must be specified");
996}
997
998
3fe53a83 999/* Note: see frame.c for template, also where generic functions are impl */
edfda783
AR
1000frame_parm_handler ns_frame_parm_handlers[] =
1001{
1002 x_set_autoraise, /* generic OK */
1003 x_set_autolower, /* generic OK */
89e2438a 1004 x_set_background_color,
d26fbe1a
CY
1005 0, /* x_set_border_color, may be impossible under Nextstep */
1006 0, /* x_set_border_width, may be impossible under Nextstep */
89e2438a
DN
1007 x_set_cursor_color,
1008 x_set_cursor_type,
edfda783 1009 x_set_font, /* generic OK */
89e2438a
DN
1010 x_set_foreground_color,
1011 x_set_icon_name,
1012 x_set_icon_type,
edfda783 1013 x_set_internal_border_width, /* generic OK */
cc98b6a0 1014 x_set_menu_bar_lines,
89e2438a
DN
1015 x_set_mouse_color,
1016 x_explicitly_set_name,
edfda783 1017 x_set_scroll_bar_width, /* generic OK */
89e2438a 1018 x_set_title,
edfda783
AR
1019 x_set_unsplittable, /* generic OK */
1020 x_set_vertical_scroll_bars, /* generic OK */
1021 x_set_visibility, /* generic OK */
cc98b6a0 1022 x_set_tool_bar_lines,
edfda783
AR
1023 0, /* x_set_scroll_bar_foreground, will ignore (not possible on NS) */
1024 0, /* x_set_scroll_bar_background, will ignore (not possible on NS) */
1025 x_set_screen_gamma, /* generic OK */
1026 x_set_line_spacing, /* generic OK, sets f->extra_line_spacing to int */
1027 x_set_fringe_width, /* generic OK */
1028 x_set_fringe_width, /* generic OK */
1029 0, /* x_set_wait_for_wm, will ignore */
1030 0, /* x_set_fullscreen will ignore */
dee721c0 1031 x_set_font_backend, /* generic OK */
cad9ef74
JD
1032 x_set_alpha,
1033 0, /* x_set_sticky */
edfda783
AR
1034};
1035
1036
cb83c00b
AR
1037
1038/* ==========================================================================
1039
1040 Lisp definitions
1041
1042 ========================================================================== */
1043
9e50ff0c 1044DEFUN ("x-create-frame", Fx_create_frame, Sx_create_frame,
edfda783 1045 1, 1, 0,
51d5ef9f 1046 doc: /* Make a new Nextstep window, called a \"frame\" in Emacs terms.
d26fbe1a
CY
1047Return an Emacs frame object.
1048PARMS is an alist of frame parameters.
1049If the parameters specify that the frame should not have a minibuffer,
1050and do not specify a specific minibuffer window to use,
1051then `default-minibuffer-frame' must be a frame whose minibuffer can
51d5ef9f 1052be shared by the new frame. */)
edfda783
AR
1053 (parms)
1054 Lisp_Object parms;
1055{
1056 static int desc_ctr = 1;
1057 struct frame *f;
1058 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
1059 Lisp_Object frame, tem;
1060 Lisp_Object name;
1061 int minibuffer_only = 0;
1062 int count = specpdl_ptr - specpdl;
1063 Lisp_Object display;
1064 struct ns_display_info *dpyinfo = NULL;
1065 Lisp_Object parent;
1066 struct kboard *kb;
1067 Lisp_Object tfont, tfontsize;
1068 int window_prompting = 0;
1069 int width, height;
1070
1071 check_ns ();
1072
bd6ce2ba
AR
1073 /* Seems a little strange, but other terms do it. Perhaps the code below
1074 is modifying something? */
1075 parms = Fcopy_alist (parms);
1076
edfda783
AR
1077 display = x_get_arg (dpyinfo, parms, Qterminal, 0, 0, RES_TYPE_STRING);
1078 if (EQ (display, Qunbound))
1079 display = Qnil;
1080 dpyinfo = check_ns_display_info (display);
1081
1082 if (!dpyinfo->terminal->name)
1083 error ("Terminal is not live, can't create new frames on it");
1084
1085 kb = dpyinfo->terminal->kboard;
1086
1087 name = x_get_arg (dpyinfo, parms, Qname, 0, 0, RES_TYPE_STRING);
1088 if (!STRINGP (name)
1089 && ! EQ (name, Qunbound)
1090 && ! NILP (name))
1091 error ("Invalid frame name--not a string or nil");
1092
1093 if (STRINGP (name))
1094 Vx_resource_name = name;
bd6ce2ba
AR
1095 else
1096 Vx_resource_name = Vinvocation_name;
edfda783
AR
1097
1098 parent = x_get_arg (dpyinfo, parms, Qparent_id, 0, 0, RES_TYPE_NUMBER);
1099 if (EQ (parent, Qunbound))
1100 parent = Qnil;
1101 if (! NILP (parent))
1102 CHECK_NUMBER (parent);
1103
1104 frame = Qnil;
1105 GCPRO4 (parms, parent, name, frame);
1106
1107 tem = x_get_arg (dpyinfo, parms, Qminibuffer, "minibuffer", "Minibuffer",
1108 RES_TYPE_SYMBOL);
1109 if (EQ (tem, Qnone) || NILP (tem))
1110 {
1111 f = make_frame_without_minibuffer (Qnil, kb, display);
1112 }
1113 else if (EQ (tem, Qonly))
1114 {
1115 f = make_minibuffer_frame ();
1116 minibuffer_only = 1;
1117 }
1118 else if (WINDOWP (tem))
1119 {
1120 f = make_frame_without_minibuffer (tem, kb, display);
1121 }
1122 else
1123 {
1124 f = make_frame (1);
1125 }
1126
1127 /* Set the name; the functions to which we pass f expect the name to
1128 be set. */
1129 if (EQ (name, Qunbound) || NILP (name) || (XTYPE (name) != Lisp_String))
1130 {
56d513e6 1131 f->name = build_string ([ns_app_name UTF8String]);
edfda783
AR
1132 f->explicit_name =0;
1133 }
1134 else
1135 {
1136 f->name = name;
1137 f->explicit_name = 1;
1138 specbind (Qx_resource_name, name);
1139 }
1140
1141 XSETFRAME (frame, f);
1142 FRAME_CAN_HAVE_SCROLL_BARS (f) = 1;
1143
1144 f->terminal = dpyinfo->terminal;
1145 f->terminal->reference_count++;
1146
1147 f->output_method = output_ns;
1148 f->output_data.ns = (struct ns_output *)xmalloc (sizeof *(f->output_data.ns));
1149 bzero (f->output_data.ns, sizeof (*(f->output_data.ns)));
1150
1151 FRAME_FONTSET (f) = -1;
1152
1153 /* record_unwind_protect (unwind_create_frame, frame); safety; maybe later? */
1154
1155 f->icon_name = x_get_arg (dpyinfo, parms, Qicon_name, "iconName", "Title",
1156 RES_TYPE_STRING);
bd6ce2ba 1157 if (! STRINGP (f->icon_name))
edfda783
AR
1158 f->icon_name = Qnil;
1159
1160 FRAME_NS_DISPLAY_INFO (f) = dpyinfo;
1161
1162 f->output_data.ns->window_desc = desc_ctr++;
1163 if (!NILP (parent))
1164 {
1165 f->output_data.ns->parent_desc = (Window) XFASTINT (parent);
1166 f->output_data.ns->explicit_parent = 1;
1167 }
1168 else
1169 {
1170 f->output_data.ns->parent_desc = FRAME_NS_DISPLAY_INFO (f)->root_window;
1171 f->output_data.ns->explicit_parent = 0;
1172 }
1173
1174 f->resx = dpyinfo->resx;
1175 f->resy = dpyinfo->resy;
1176
1177 BLOCK_INPUT;
1178 register_font_driver (&nsfont_driver, f);
1179 x_default_parameter (f, parms, Qfont_backend, Qnil,
1180 "fontBackend", "FontBackend", RES_TYPE_STRING);
1181
1182 {
1183 /* use for default font name */
1184 id font = [NSFont userFixedPitchFontOfSize: -1.0]; /* default */
1185 tfontsize = x_default_parameter (f, parms, Qfontsize,
1186 make_number (0 /*(int)[font pointSize]*/),
1187 "fontSize", "FontSize", RES_TYPE_NUMBER);
1188 tfont = x_default_parameter (f, parms, Qfont,
1189 build_string ([[font fontName] UTF8String]),
1190 "font", "Font", RES_TYPE_STRING);
1191 }
1192 UNBLOCK_INPUT;
1193
1194 x_default_parameter (f, parms, Qborder_width, make_number (0),
1195 "borderwidth", "BorderWidth", RES_TYPE_NUMBER);
1196 x_default_parameter (f, parms, Qinternal_border_width, make_number (2),
1197 "internalBorderWidth", "InternalBorderWidth",
1198 RES_TYPE_NUMBER);
1199
1200 /* default scrollbars on right on Mac */
1201 {
facfbbbd 1202 Lisp_Object spos
edfda783 1203#ifdef NS_IMPL_GNUSTEP
facfbbbd 1204 = Qt;
edfda783 1205#else
facfbbbd 1206 = Qright;
edfda783 1207#endif
facfbbbd
SM
1208 x_default_parameter (f, parms, Qvertical_scroll_bars, spos,
1209 "verticalScrollBars", "VerticalScrollBars",
1210 RES_TYPE_SYMBOL);
edfda783
AR
1211 }
1212 x_default_parameter (f, parms, Qforeground_color, build_string ("Black"),
1213 "foreground", "Foreground", RES_TYPE_STRING);
1214 x_default_parameter (f, parms, Qbackground_color, build_string ("White"),
1215 "background", "Background", RES_TYPE_STRING);
1216 x_default_parameter (f, parms, Qcursor_color, build_string ("grey"),
1217 "cursorColor", "CursorColor", RES_TYPE_STRING);
d26fbe1a 1218 /* FIXME: not suppported yet in Nextstep */
edfda783
AR
1219 x_default_parameter (f, parms, Qline_spacing, Qnil,
1220 "lineSpacing", "LineSpacing", RES_TYPE_NUMBER);
1221 x_default_parameter (f, parms, Qleft_fringe, Qnil,
1222 "leftFringe", "LeftFringe", RES_TYPE_NUMBER);
1223 x_default_parameter (f, parms, Qright_fringe, Qnil,
1224 "rightFringe", "RightFringe", RES_TYPE_NUMBER);
1225 /* end PENDING */
1226
1227 init_frame_faces (f);
1228
1229 x_default_parameter (f, parms, Qmenu_bar_lines, make_number (0), "menuBar",
1230 "menuBar", RES_TYPE_NUMBER);
1231 x_default_parameter (f, parms, Qtool_bar_lines, make_number (0), "toolBar",
1232 "toolBar", RES_TYPE_NUMBER);
1233 x_default_parameter (f, parms, Qbuffer_predicate, Qnil, "bufferPredicate",
1234 "BufferPredicate", RES_TYPE_SYMBOL);
1235 x_default_parameter (f, parms, Qtitle, Qnil, "title", "Title",
1236 RES_TYPE_STRING);
1237
6fb5f7da 1238/* TODO: other terms seem to get away w/o this complexity.. */
edfda783
AR
1239 if (NILP (Fassq (Qwidth, parms)))
1240 {
facfbbbd
SM
1241 Lisp_Object value
1242 = x_get_arg (dpyinfo, parms, Qwidth, "width", "Width",
1243 RES_TYPE_NUMBER);
edfda783
AR
1244 if (! EQ (value, Qunbound))
1245 parms = Fcons (Fcons (Qwidth, value), parms);
1246 }
1247 if (NILP (Fassq (Qheight, parms)))
1248 {
facfbbbd
SM
1249 Lisp_Object value
1250 = x_get_arg (dpyinfo, parms, Qheight, "height", "Height",
1251 RES_TYPE_NUMBER);
edfda783
AR
1252 if (! EQ (value, Qunbound))
1253 parms = Fcons (Fcons (Qheight, value), parms);
1254 }
1255 if (NILP (Fassq (Qleft, parms)))
1256 {
facfbbbd
SM
1257 Lisp_Object value
1258 = x_get_arg (dpyinfo, parms, Qleft, "left", "Left", RES_TYPE_NUMBER);
edfda783
AR
1259 if (! EQ (value, Qunbound))
1260 parms = Fcons (Fcons (Qleft, value), parms);
1261 }
1262 if (NILP (Fassq (Qtop, parms)))
1263 {
facfbbbd
SM
1264 Lisp_Object value
1265 = x_get_arg (dpyinfo, parms, Qtop, "top", "Top", RES_TYPE_NUMBER);
edfda783
AR
1266 if (! EQ (value, Qunbound))
1267 parms = Fcons (Fcons (Qtop, value), parms);
1268 }
1269
1270 window_prompting = x_figure_window_size (f, parms, 1);
1271
1272 tem = x_get_arg (dpyinfo, parms, Qunsplittable, 0, 0, RES_TYPE_BOOLEAN);
1273 f->no_split = minibuffer_only || (!EQ (tem, Qunbound) && !EQ (tem, Qnil));
1274
1275 /* NOTE: on other terms, this is done in set_mouse_color, however this
d26fbe1a 1276 was not getting called under Nextstep */
edfda783
AR
1277 f->output_data.ns->text_cursor = [NSCursor IBeamCursor];
1278 f->output_data.ns->nontext_cursor = [NSCursor arrowCursor];
1279 f->output_data.ns->modeline_cursor = [NSCursor pointingHandCursor];
1280 f->output_data.ns->hand_cursor = [NSCursor pointingHandCursor];
1281 f->output_data.ns->hourglass_cursor = [NSCursor disappearingItemCursor];
1282 f->output_data.ns->horizontal_drag_cursor = [NSCursor resizeLeftRightCursor];
facfbbbd
SM
1283 FRAME_NS_DISPLAY_INFO (f)->vertical_scroll_bar_cursor
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
AR
1290
1291 /* It is now ok to make the frame official even if we get an error below.
1292 The frame needs to be on Vframe_list or making it visible won't work. */
1293 Vframe_list = Fcons (frame, Vframe_list);
1294 /*FRAME_NS_DISPLAY_INFO (f)->reference_count++; */
1295
edfda783
AR
1296 x_default_parameter (f, parms, Qicon_type, Qnil, "bitmapIcon", "BitmapIcon",
1297 RES_TYPE_SYMBOL);
bd6ce2ba 1298 x_default_parameter (f, parms, Qauto_raise, Qnil, "autoRaise", "AutoRaiseLower",
edfda783
AR
1299 RES_TYPE_BOOLEAN);
1300 x_default_parameter (f, parms, Qauto_lower, Qnil, "autoLower", "AutoLower",
1301 RES_TYPE_BOOLEAN);
bd6ce2ba
AR
1302 x_default_parameter (f, parms, Qcursor_type, Qbox, "cursorType", "CursorType",
1303 RES_TYPE_SYMBOL);
1304 x_default_parameter (f, parms, Qscroll_bar_width, Qnil, "scrollBarWidth",
1305 "ScrollBarWidth", RES_TYPE_NUMBER);
78ff4c61 1306 x_default_parameter (f, parms, Qalpha, Qnil, "alpha", "Alpha",
bd6ce2ba 1307 RES_TYPE_NUMBER);
edfda783
AR
1308
1309 width = FRAME_COLS (f);
1310 height = FRAME_LINES (f);
1311
1312 SET_FRAME_COLS (f, 0);
1313 FRAME_LINES (f) = 0;
1314 change_frame_size (f, height, width, 1, 0, 0);
1315
1316 if (! f->output_data.ns->explicit_parent)
1317 {
15891144
DR
1318 tem = x_get_arg (dpyinfo, parms, Qvisibility, 0, 0, RES_TYPE_SYMBOL);
1319 if (EQ (tem, Qunbound))
1320 tem = Qt;
1321 x_set_visibility (f, tem, Qnil);
1322 if (EQ (tem, Qicon))
1323 x_iconify_frame (f);
1324 else if (! NILP (tem))
1325 {
1326 x_make_frame_visible (f);
1327 f->async_visible = 1;
1328 [[FRAME_NS_VIEW (f) window] makeKeyWindow];
1329 }
1330 else
1331 f->async_visible = 0;
edfda783
AR
1332 }
1333
1334 if (FRAME_HAS_MINIBUF_P (f)
1335 && (!FRAMEP (kb->Vdefault_minibuffer_frame)
1336 || !FRAME_LIVE_P (XFRAME (kb->Vdefault_minibuffer_frame))))
1337 kb->Vdefault_minibuffer_frame = frame;
1338
1339 /* All remaining specified parameters, which have not been "used"
1340 by x_get_arg and friends, now go in the misc. alist of the frame. */
1341 for (tem = parms; CONSP (tem); tem = XCDR (tem))
1342 if (CONSP (XCAR (tem)) && !NILP (XCAR (XCAR (tem))))
1343 f->param_alist = Fcons (XCAR (tem), f->param_alist);
1344
1345 UNGCPRO;
1346 Vwindow_list = Qnil;
1347
1348 return unbind_to (count, frame);
1349}
1350
1351
9e50ff0c 1352DEFUN ("x-focus-frame", Fx_focus_frame, Sx_focus_frame, 1, 1, 0,
edfda783
AR
1353 doc: /* Set the input focus to FRAME.
1354FRAME nil means use the selected frame. */)
1355 (frame)
1356 Lisp_Object frame;
1357{
1358 struct frame *f = check_ns_frame (frame);
1359 struct ns_display_info *dpyinfo = FRAME_NS_DISPLAY_INFO (f);
1360
9e50ff0c 1361 if (dpyinfo->x_focus_frame != f)
edfda783
AR
1362 {
1363 EmacsView *view = FRAME_NS_VIEW (f);
1364 BLOCK_INPUT;
4acaaa2b 1365 [NSApp activateIgnoringOtherApps: YES];
edfda783
AR
1366 [[view window] makeKeyAndOrderFront: view];
1367 UNBLOCK_INPUT;
1368 }
1369
1370 return Qnil;
1371}
1372
1373
edfda783 1374DEFUN ("ns-popup-font-panel", Fns_popup_font_panel, Sns_popup_font_panel,
51d5ef9f
AR
1375 0, 1, "",
1376 doc: /* Pop up the font panel. */)
edfda783
AR
1377 (frame)
1378 Lisp_Object frame;
1379{
1380 id fm;
1381 struct frame *f;
1382
1383 check_ns ();
320e80c0 1384 fm = [NSFontManager sharedFontManager];
edfda783
AR
1385 if (NILP (frame))
1386 f = SELECTED_FRAME ();
1387 else
1388 {
1389 CHECK_FRAME (frame);
1390 f = XFRAME (frame);
1391 }
1392
1393 [fm setSelectedFont: ((struct nsfont_info *)f->output_data.ns->font)->nsfont
1394 isMultiple: NO];
1395 [fm orderFrontFontPanel: NSApp];
1396 return Qnil;
1397}
1398
1399
b066e6b6 1400DEFUN ("ns-popup-color-panel", Fns_popup_color_panel, Sns_popup_color_panel,
51d5ef9f
AR
1401 0, 1, "",
1402 doc: /* Pop up the color panel. */)
edfda783
AR
1403 (frame)
1404 Lisp_Object frame;
1405{
1406 struct frame *f;
1407
1408 check_ns ();
1409 if (NILP (frame))
1410 f = SELECTED_FRAME ();
1411 else
1412 {
1413 CHECK_FRAME (frame);
1414 f = XFRAME (frame);
1415 }
1416
1417 [NSApp orderFrontColorPanel: NSApp];
1418 return Qnil;
1419}
1420
1421
1422DEFUN ("ns-read-file-name", Fns_read_file_name, Sns_read_file_name, 1, 4, 0,
51d5ef9f 1423 doc: /* Use a graphical panel to read a file name, using prompt PROMPT.
d26fbe1a 1424Optional arg DIR, if non-nil, supplies a default directory.
45cb8994
CY
1425Optional arg MUSTMATCH, if non-nil, means the returned file or
1426directory must exist.
51d5ef9f 1427Optional arg INIT, if non-nil, provides a default file name to use. */)
45cb8994
CY
1428 (prompt, dir, mustmatch, init)
1429 Lisp_Object prompt, dir, mustmatch, init;
edfda783
AR
1430{
1431 static id fileDelegate = nil;
1432 int ret;
1433 id panel;
ba301db3 1434 Lisp_Object fname;
edfda783
AR
1435
1436 NSString *promptS = NILP (prompt) || !STRINGP (prompt) ? nil :
facfbbbd 1437 [NSString stringWithUTF8String: SDATA (prompt)];
edfda783 1438 NSString *dirS = NILP (dir) || !STRINGP (dir) ?
facfbbbd
SM
1439 [NSString stringWithUTF8String: SDATA (current_buffer->directory)] :
1440 [NSString stringWithUTF8String: SDATA (dir)];
edfda783 1441 NSString *initS = NILP (init) || !STRINGP (init) ? nil :
facfbbbd 1442 [NSString stringWithUTF8String: SDATA (init)];
edfda783
AR
1443
1444 check_ns ();
1445
1446 if (fileDelegate == nil)
1447 fileDelegate = [EmacsFileDelegate new];
1448
1449 [NSCursor setHiddenUntilMouseMoves: NO];
1450
1451 if ([dirS characterAtIndex: 0] == '~')
1452 dirS = [dirS stringByExpandingTildeInPath];
1453
45cb8994 1454 panel = NILP (mustmatch) ?
f2f7f42c 1455 (id)[EmacsSavePanel savePanel] : (id)[EmacsOpenPanel openPanel];
edfda783
AR
1456
1457 [panel setTitle: promptS];
1458
1459 /* Puma (10.1) does not have */
1460 if ([panel respondsToSelector: @selector (setAllowsOtherFileTypes:)])
1461 [panel setAllowsOtherFileTypes: YES];
1462
1463 [panel setTreatsFilePackagesAsDirectories: YES];
1464 [panel setDelegate: fileDelegate];
1465
1466 panelOK = 0;
ba301db3 1467 BLOCK_INPUT;
45cb8994 1468 if (NILP (mustmatch))
edfda783
AR
1469 {
1470 ret = [panel runModalForDirectory: dirS file: initS];
1471 }
1472 else
1473 {
1474 [panel setCanChooseDirectories: YES];
1475 ret = [panel runModalForDirectory: dirS file: initS types: nil];
1476 }
1477
575fb8bd 1478 ret = (ret == NSOKButton) || panelOK;
edfda783 1479
ba301db3
AR
1480 if (ret)
1481 fname = build_string ([[panel filename] UTF8String]);
b066e6b6 1482
edfda783 1483 [[FRAME_NS_VIEW (SELECTED_FRAME ()) window] makeKeyWindow];
ba301db3 1484 UNBLOCK_INPUT;
edfda783 1485
ba301db3 1486 return ret ? fname : Qnil;
edfda783
AR
1487}
1488
1489
1490DEFUN ("ns-get-resource", Fns_get_resource, Sns_get_resource, 2, 2, 0,
51d5ef9f
AR
1491 doc: /* Return the value of the property NAME of OWNER from the defaults database.
1492If OWNER is nil, Emacs is assumed. */)
edfda783
AR
1493 (owner, name)
1494 Lisp_Object owner, name;
1495{
1496 const char *value;
1497
1498 check_ns ();
1499 if (NILP (owner))
56d513e6 1500 owner = build_string([ns_app_name UTF8String]);
edfda783
AR
1501 CHECK_STRING (name);
1502/*fprintf (stderr, "ns-get-resource checking resource '%s'\n", SDATA (name)); */
1503
1504 value =[[[NSUserDefaults standardUserDefaults]
facfbbbd 1505 objectForKey: [NSString stringWithUTF8String: SDATA (name)]]
edfda783
AR
1506 UTF8String];
1507
1508 if (value)
1509 return build_string (value);
edfda783
AR
1510 return Qnil;
1511}
1512
1513
1514DEFUN ("ns-set-resource", Fns_set_resource, Sns_set_resource, 3, 3, 0,
51d5ef9f 1515 doc: /* Set property NAME of OWNER to VALUE, from the defaults database.
d26fbe1a 1516If OWNER is nil, Emacs is assumed.
51d5ef9f 1517If VALUE is nil, the default is removed. */)
edfda783
AR
1518 (owner, name, value)
1519 Lisp_Object owner, name, value;
1520{
1521 check_ns ();
1522 if (NILP (owner))
56d513e6 1523 owner = build_string ([ns_app_name UTF8String]);
edfda783
AR
1524 CHECK_STRING (name);
1525 if (NILP (value))
1526 {
1527 [[NSUserDefaults standardUserDefaults] removeObjectForKey:
facfbbbd 1528 [NSString stringWithUTF8String: SDATA (name)]];
edfda783
AR
1529 }
1530 else
1531 {
1532 CHECK_STRING (value);
1533 [[NSUserDefaults standardUserDefaults] setObject:
facfbbbd 1534 [NSString stringWithUTF8String: SDATA (value)]
edfda783 1535 forKey: [NSString stringWithUTF8String:
facfbbbd 1536 SDATA (name)]];
edfda783
AR
1537 }
1538
1539 return Qnil;
1540}
1541
1542
952913d4
DN
1543DEFUN ("x-server-max-request-size", Fx_server_max_request_size,
1544 Sx_server_max_request_size,
edfda783 1545 0, 1, 0,
51d5ef9f 1546 doc: /* This function is a no-op. It is only present for completeness. */)
edfda783
AR
1547 (display)
1548 Lisp_Object display;
1549{
1550 check_ns ();
1551 /* This function has no real equivalent under NeXTstep. Return nil to
1552 indicate this. */
1553 return Qnil;
1554}
1555
1556
9e50ff0c 1557DEFUN ("x-server-vendor", Fx_server_vendor, Sx_server_vendor, 0, 1, 0,
51d5ef9f 1558 doc: /* Return the vendor ID string of Nextstep display server DISPLAY.
d26fbe1a 1559DISPLAY should be either a frame or a display name (a string).
51d5ef9f 1560If omitted or nil, the selected frame's display is used. */)
edfda783
AR
1561 (display)
1562 Lisp_Object display;
1563{
edfda783
AR
1564#ifdef NS_IMPL_GNUSTEP
1565 return build_string ("GNU");
1566#else
1567 return build_string ("Apple");
1568#endif
1569}
1570
1571
9e50ff0c 1572DEFUN ("x-server-version", Fx_server_version, Sx_server_version, 0, 1, 0,
f5497e45
AR
1573 doc: /* Return the version numbers of the server of DISPLAY.
1574The value is a list of three integers: the major and minor
1575version numbers of the X Protocol in use, and the distributor-specific
1576release number. See also the function `x-server-vendor'.
1577
1578The optional argument DISPLAY specifies which display to ask about.
d26fbe1a 1579DISPLAY should be either a frame or a display name (a string).
f5497e45 1580If omitted or nil, that stands for the selected frame's display. */)
edfda783
AR
1581 (display)
1582 Lisp_Object display;
1583{
f5497e45
AR
1584 /*NOTE: it is unclear what would best correspond with "protocol";
1585 we return 10.3, meaning Panther, since this is roughly the
1586 level that GNUstep's APIs correspond to.
1587 The last number is where we distinguish between the Apple
1588 and GNUstep implementations ("distributor-specific release
1589 number") and give int'ized versions of major.minor. */
1590 return Fcons (make_number (10),
1591 Fcons (make_number (3),
1592 Fcons (make_number (ns_appkit_version_int()), Qnil)));
edfda783
AR
1593}
1594
1595
9e50ff0c 1596DEFUN ("x-display-screens", Fx_display_screens, Sx_display_screens, 0, 1, 0,
51d5ef9f 1597 doc: /* Return the number of screens on Nextstep display server DISPLAY.
d26fbe1a 1598DISPLAY should be a frame, the display name as a string, or a terminal ID.
51d5ef9f 1599If omitted or nil, the selected frame's display is used. */)
edfda783
AR
1600 (display)
1601 Lisp_Object display;
1602{
1603 int num;
1604
1605 check_ns ();
1606 num = [[NSScreen screens] count];
1607
1608 return (num != 0) ? make_number (num) : Qnil;
1609}
1610
1611
9e50ff0c 1612DEFUN ("x-display-mm-height", Fx_display_mm_height, Sx_display_mm_height,
edfda783 1613 0, 1, 0,
51d5ef9f 1614 doc: /* Return the height of Nextstep display server DISPLAY, in millimeters.
d26fbe1a 1615DISPLAY should be a frame, the display name as a string, or a terminal ID.
51d5ef9f 1616If omitted or nil, the selected frame's display is used. */)
edfda783
AR
1617 (display)
1618 Lisp_Object display;
1619{
1620 check_ns ();
1621 return make_number ((int)
1622 ([ns_get_screen (display) frame].size.height/(92.0/25.4)));
1623}
1624
1625
9e50ff0c 1626DEFUN ("x-display-mm-width", Fx_display_mm_width, Sx_display_mm_width,
edfda783 1627 0, 1, 0,
51d5ef9f 1628 doc: /* Return the width of Nextstep display server DISPLAY, in millimeters.
d26fbe1a 1629DISPLAY should be a frame, the display name as a string, or a terminal ID.
51d5ef9f 1630If omitted or nil, the selected frame's display is used. */)
edfda783
AR
1631 (display)
1632 Lisp_Object display;
1633{
1634 check_ns ();
1635 return make_number ((int)
1636 ([ns_get_screen (display) frame].size.width/(92.0/25.4)));
1637}
1638
1639
9e50ff0c 1640DEFUN ("x-display-backing-store", Fx_display_backing_store,
51d5ef9f
AR
1641 Sx_display_backing_store, 0, 1, 0,
1642 doc: /* Return whether the Nexstep display DISPLAY supports backing store.
d26fbe1a
CY
1643The value may be `buffered', `retained', or `non-retained'.
1644DISPLAY should be a frame, the display name as a string, or a terminal ID.
51d5ef9f 1645If omitted or nil, the selected frame's display is used. */)
edfda783
AR
1646 (display)
1647 Lisp_Object display;
1648{
1649 check_ns ();
1650 switch ([ns_get_window (display) backingType])
1651 {
1652 case NSBackingStoreBuffered:
1653 return intern ("buffered");
1654 case NSBackingStoreRetained:
1655 return intern ("retained");
1656 case NSBackingStoreNonretained:
1657 return intern ("non-retained");
1658 default:
1659 error ("Strange value for backingType parameter of frame");
1660 }
1661 return Qnil; /* not reached, shut compiler up */
1662}
1663
1664
9e50ff0c 1665DEFUN ("x-display-visual-class", Fx_display_visual_class,
51d5ef9f
AR
1666 Sx_display_visual_class, 0, 1, 0,
1667 doc: /* Return the visual class of the Nextstep display server DISPLAY.
d26fbe1a
CY
1668The value is one of the symbols `static-gray', `gray-scale',
1669`static-color', `pseudo-color', `true-color', or `direct-color'.
1670DISPLAY should be a frame, the display name as a string, or a terminal ID.
51d5ef9f 1671If omitted or nil, the selected frame's display is used. */)
edfda783
AR
1672 (display)
1673 Lisp_Object display;
1674{
1675 NSWindowDepth depth;
1676 check_ns ();
1677 depth = [ns_get_screen (display) depth];
1678
1679 if ( depth == NSBestDepth (NSCalibratedWhiteColorSpace, 2, 2, YES, NULL))
1680 return intern ("static-gray");
1681 else if (depth == NSBestDepth (NSCalibratedWhiteColorSpace, 8, 8, YES, NULL))
1682 return intern ("gray-scale");
1683 else if ( depth == NSBestDepth (NSCalibratedRGBColorSpace, 8, 8, YES, NULL))
1684 return intern ("pseudo-color");
1685 else if ( depth == NSBestDepth (NSCalibratedRGBColorSpace, 4, 12, NO, NULL))
1686 return intern ("true-color");
1687 else if ( depth == NSBestDepth (NSCalibratedRGBColorSpace, 8, 24, NO, NULL))
1688 return intern ("direct-color");
1689 else
d26fbe1a 1690 /* color mgmt as far as we do it is really handled by Nextstep itself anyway */
edfda783
AR
1691 return intern ("direct-color");
1692}
1693
1694
9e50ff0c 1695DEFUN ("x-display-save-under", Fx_display_save_under,
51d5ef9f
AR
1696 Sx_display_save_under, 0, 1, 0,
1697 doc: /* Non-nil if the Nextstep display server supports the save-under feature.
d26fbe1a
CY
1698The optional argument DISPLAY specifies which display to ask about.
1699DISPLAY should be a frame, the display name as a string, or a terminal ID.
51d5ef9f 1700If omitted or nil, the selected frame's display is used. */)
edfda783
AR
1701 (display)
1702 Lisp_Object display;
1703{
1704 check_ns ();
1705 switch ([ns_get_window (display) backingType])
1706 {
1707 case NSBackingStoreBuffered:
1708 return Qt;
1709
1710 case NSBackingStoreRetained:
1711 case NSBackingStoreNonretained:
1712 return Qnil;
1713
1714 default:
1715 error ("Strange value for backingType parameter of frame");
1716 }
1717 return Qnil; /* not reached, shut compiler up */
1718}
1719
1720
9e50ff0c 1721DEFUN ("x-open-connection", Fx_open_connection, Sx_open_connection,
51d5ef9f
AR
1722 1, 3, 0,
1723 doc: /* Open a connection to a Nextstep display server.
d26fbe1a 1724DISPLAY is the name of the display to connect to.
51d5ef9f 1725Optional arguments XRM-STRING and MUST-SUCCEED are currently ignored. */)
edfda783
AR
1726 (display, resource_string, must_succeed)
1727 Lisp_Object display, resource_string, must_succeed;
1728{
1729 struct ns_display_info *dpyinfo;
1730
1731 CHECK_STRING (display);
1732
1733 nxatoms_of_nsselect ();
1734 dpyinfo = ns_term_init (display);
1735 if (dpyinfo == 0)
1736 {
1737 if (!NILP (must_succeed))
1738 fatal ("OpenStep on %s not responding.\n",
facfbbbd 1739 SDATA (display));
edfda783
AR
1740 else
1741 error ("OpenStep on %s not responding.\n",
facfbbbd 1742 SDATA (display));
edfda783
AR
1743 }
1744
1745 /* Register our external input/output types, used for determining
1746 applicable services and also drag/drop eligibility. */
1747 ns_send_types = [[NSArray arrayWithObject: NSStringPboardType] retain];
1748 ns_return_types = [[NSArray arrayWithObject: NSStringPboardType] retain];
1749 ns_drag_types = [[NSArray arrayWithObjects:
1750 NSStringPboardType,
1751 NSTabularTextPboardType,
1752 NSFilenamesPboardType,
1753 NSURLPboardType,
1754 NSColorPboardType,
1755 NSFontPboardType, nil] retain];
1756
1757 return Qnil;
1758}
1759
1760
9e50ff0c 1761DEFUN ("x-close-connection", Fx_close_connection, Sx_close_connection,
51d5ef9f
AR
1762 1, 1, 0,
1763 doc: /* Close the connection to the current Nextstep display server.
b066e6b6 1764The argument DISPLAY is currently ignored. */)
edfda783
AR
1765 (display)
1766 Lisp_Object display;
1767{
1768 check_ns ();
edfda783
AR
1769 /*ns_delete_terminal (dpyinfo->terminal); */
1770 [NSApp terminate: NSApp];
1771 return Qnil;
1772}
1773
1774
9e50ff0c 1775DEFUN ("x-display-list", Fx_display_list, Sx_display_list, 0, 0, 0,
51d5ef9f 1776 doc: /* Return the list of display names that Emacs has connections to. */)
edfda783
AR
1777 ()
1778{
1779 Lisp_Object tail, result;
1780
1781 result = Qnil;
1782 for (tail = ns_display_name_list; CONSP (tail); tail = XCDR (tail))
1783 result = Fcons (XCAR (XCAR (tail)), result);
1784
1785 return result;
1786}
1787
1788
1789DEFUN ("ns-hide-others", Fns_hide_others, Sns_hide_others,
51d5ef9f 1790 0, 0, 0,
b066e6b6 1791 doc: /* Hides all applications other than Emacs. */)
edfda783
AR
1792 ()
1793{
1794 check_ns ();
1795 [NSApp hideOtherApplications: NSApp];
1796 return Qnil;
1797}
1798
1799DEFUN ("ns-hide-emacs", Fns_hide_emacs, Sns_hide_emacs,
51d5ef9f 1800 1, 1, 0,
b066e6b6
JB
1801 doc: /* If ON is non-nil, the entire Emacs application is hidden.
1802Otherwise if Emacs is hidden, it is unhidden.
1803If ON is equal to `activate', Emacs is unhidden and becomes
51d5ef9f 1804the active application. */)
edfda783
AR
1805 (on)
1806 Lisp_Object on;
1807{
1808 check_ns ();
1809 if (EQ (on, intern ("activate")))
1810 {
1811 [NSApp unhide: NSApp];
1812 [NSApp activateIgnoringOtherApps: YES];
1813 }
1814 else if (NILP (on))
1815 [NSApp unhide: NSApp];
1816 else
1817 [NSApp hide: NSApp];
1818 return Qnil;
1819}
1820
1821
1822DEFUN ("ns-emacs-info-panel", Fns_emacs_info_panel, Sns_emacs_info_panel,
51d5ef9f
AR
1823 0, 0, 0,
1824 doc: /* Shows the 'Info' or 'About' panel for Emacs. */)
edfda783
AR
1825 ()
1826{
1827 check_ns ();
1828 [NSApp orderFrontStandardAboutPanel: nil];
1829 return Qnil;
1830}
1831
1832
edfda783 1833DEFUN ("ns-font-name", Fns_font_name, Sns_font_name, 1, 1, 0,
51d5ef9f 1834 doc: /* Determine font postscript or family name for font NAME.
d26fbe1a
CY
1835NAME should be a string containing either the font name or an XLFD
1836font descriptor. If string contains `fontset' and not
51d5ef9f 1837`fontset-startup', it is left alone. */)
edfda783
AR
1838 (name)
1839 Lisp_Object name;
1840{
1841 char *nm;
1842 CHECK_STRING (name);
1843 nm = SDATA (name);
1844
1845 if (nm[0] != '-')
1846 return name;
1847 if (strstr (nm, "fontset") && !strstr (nm, "fontset-startup"))
1848 return name;
1849
1850 return build_string (ns_xlfd_to_fontname (SDATA (name)));
1851}
1852
1853
1854DEFUN ("ns-list-colors", Fns_list_colors, Sns_list_colors, 0, 1, 0,
51d5ef9f
AR
1855 doc: /* Return a list of all available colors.
1856The optional argument FRAME is currently ignored. */)
edfda783
AR
1857 (frame)
1858 Lisp_Object frame;
1859{
1860 Lisp_Object list = Qnil;
1861 NSEnumerator *colorlists;
1862 NSColorList *clist;
1863
1864 if (!NILP (frame))
1865 {
1866 CHECK_FRAME (frame);
1867 if (! FRAME_NS_P (XFRAME (frame)))
d26fbe1a 1868 error ("non-Nextstep frame used in `ns-list-colors'");
edfda783
AR
1869 }
1870
1871 BLOCK_INPUT;
1872
1873 colorlists = [[NSColorList availableColorLists] objectEnumerator];
1874 while (clist = [colorlists nextObject])
1875 {
1876 if ([[clist name] length] < 7 ||
1877 [[clist name] rangeOfString: @"PANTONE"].location == 0)
1878 {
1879 NSEnumerator *cnames = [[clist allKeys] reverseObjectEnumerator];
1880 NSString *cname;
1881 while (cname = [cnames nextObject])
1882 list = Fcons (build_string ([cname UTF8String]), list);
1883/* for (i = [[clist allKeys] count] - 1; i >= 0; i--)
1884 list = Fcons (build_string ([[[clist allKeys] objectAtIndex: i]
1885 UTF8String]), list); */
1886 }
1887 }
1888
1889 UNBLOCK_INPUT;
1890
1891 return list;
1892}
1893
1894
1895DEFUN ("ns-list-services", Fns_list_services, Sns_list_services, 0, 0, 0,
51d5ef9f 1896 doc: /* List available Nextstep services by querying NSApp. */)
edfda783
AR
1897 ()
1898{
1899 Lisp_Object ret = Qnil;
1900 NSMenu *svcs;
1901 id delegate;
1902
1903 check_ns ();
1904 svcs = [[NSMenu alloc] initWithTitle: @"Services"];
1905 [NSApp setServicesMenu: svcs]; /* this and next rebuild on <10.4 */
1906 [NSApp registerServicesMenuSendTypes: ns_send_types
1907 returnTypes: ns_return_types];
1908
1909/* On Tiger, services menu updating was made lazier (waits for user to
1910 actually click on the menu), so we have to force things along: */
1911#ifdef NS_IMPL_COCOA
1912 if (NSAppKitVersionNumber >= 744.0)
1913 {
1914 delegate = [svcs delegate];
1915 if (delegate != nil)
1916 {
1917 if ([delegate respondsToSelector: @selector (menuNeedsUpdate:)])
1918 [delegate menuNeedsUpdate: svcs];
1919 if ([delegate respondsToSelector:
1920 @selector (menu:updateItem:atIndex:shouldCancel:)])
1921 {
1922 int i, len = [delegate numberOfItemsInMenu: svcs];
1923 for (i =0; i<len; i++)
1924 [svcs addItemWithTitle: @"" action: NULL keyEquivalent: @""];
1925 for (i =0; i<len; i++)
1926 if (![delegate menu: svcs
1927 updateItem: (NSMenuItem *)[svcs itemAtIndex: i]
1928 atIndex: i shouldCancel: NO])
1929 break;
1930 }
1931 }
1932 }
1933#endif
1934
1935 [svcs setAutoenablesItems: NO];
1936#ifdef NS_IMPL_COCOA
1937 [svcs update]; /* on OS X, converts from '/' structure */
1938#endif
1939
1940 ret = interpret_services_menu (svcs, Qnil, ret);
1941 return ret;
1942}
1943
1944
1945DEFUN ("ns-perform-service", Fns_perform_service, Sns_perform_service,
51d5ef9f
AR
1946 2, 2, 0,
1947 doc: /* Perform Nextstep SERVICE on SEND.
d26fbe1a
CY
1948SEND should be either a string or nil.
1949The return value is the result of the service, as string, or nil if
51d5ef9f 1950there was no result. */)
edfda783
AR
1951 (service, send)
1952 Lisp_Object service, send;
1953{
1954 id pb;
1955 NSString *svcName;
1956 char *utfStr;
1957 int len;
1958
1959 CHECK_STRING (service);
1960 check_ns ();
1961
facfbbbd 1962 utfStr = SDATA (service);
edfda783
AR
1963 svcName = [NSString stringWithUTF8String: utfStr];
1964
1965 pb =[NSPasteboard pasteboardWithUniqueName];
1966 ns_string_to_pasteboard (pb, send);
1967
1968 if (NSPerformService (svcName, pb) == NO)
1969 Fsignal (Qquit, Fcons (build_string ("service not available"), Qnil));
1970
1971 if ([[pb types] count] == 0)
1972 return build_string ("");
1973 return ns_string_from_pasteboard (pb);
1974}
1975
1976
1977DEFUN ("ns-convert-utf8-nfd-to-nfc", Fns_convert_utf8_nfd_to_nfc,
1978 Sns_convert_utf8_nfd_to_nfc, 1, 1, 0,
b066e6b6 1979 doc: /* Return an NFC string that matches the UTF-8 NFD string STR. */)
edfda783
AR
1980 (str)
1981 Lisp_Object str;
1982{
f2f7f42c
AR
1983/* TODO: If GNUstep ever implements precomposedStringWithCanonicalMapping,
1984 remove this. */
edfda783
AR
1985 NSString *utfStr;
1986
1987 CHECK_STRING (str);
f2f7f42c
AR
1988 utfStr = [NSString stringWithUTF8String: SDATA (str)];
1989 if (![utfStr respondsToSelector:
1990 @selector (precomposedStringWithCanonicalMapping)])
1991 {
1992 message1
1993 ("Warning: ns-convert-utf8-nfd-to-nfc unsupported under GNUstep.\n");
1994 return Qnil;
1995 }
1996 else
1997 utfStr = [utfStr precomposedStringWithCanonicalMapping];
edfda783
AR
1998 return build_string ([utfStr UTF8String]);
1999}
2000
2001
583ff3c3
AR
2002#ifdef NS_IMPL_COCOA
2003
2004/* Compile and execute the AppleScript SCRIPT and return the error
2005 status as function value. A zero is returned if compilation and
2006 execution is successful, in which case *RESULT is set to a Lisp
2007 string or a number containing the resulting script value. Otherwise,
2008 1 is returned. */
2009static int
2010ns_do_applescript (script, result)
2011 Lisp_Object script, *result;
2012{
2013 NSAppleEventDescriptor *desc;
2014 NSDictionary* errorDict;
2015 NSAppleEventDescriptor* returnDescriptor = NULL;
2016
2017 NSAppleScript* scriptObject =
2018 [[NSAppleScript alloc] initWithSource:
2019 [NSString stringWithUTF8String: SDATA (script)]];
2020
2021 returnDescriptor = [scriptObject executeAndReturnError: &errorDict];
2022 [scriptObject release];
b066e6b6 2023
583ff3c3 2024 *result = Qnil;
b066e6b6 2025
583ff3c3
AR
2026 if (returnDescriptor != NULL)
2027 {
2028 // successful execution
2029 if (kAENullEvent != [returnDescriptor descriptorType])
2030 {
2031 *result = Qt;
2032 // script returned an AppleScript result
2033 if ((typeUnicodeText == [returnDescriptor descriptorType]) ||
a39e2539 2034#if defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_4
b066e6b6 2035 (typeUTF16ExternalRepresentation
583ff3c3 2036 == [returnDescriptor descriptorType]) ||
a39e2539 2037#endif
583ff3c3
AR
2038 (typeUTF8Text == [returnDescriptor descriptorType]) ||
2039 (typeCString == [returnDescriptor descriptorType]))
2040 {
2041 desc = [returnDescriptor coerceToDescriptorType: typeUTF8Text];
2042 if (desc)
2043 *result = build_string([[desc stringValue] UTF8String]);
2044 }
2045 else
2046 {
2047 /* use typeUTF16ExternalRepresentation? */
2048 // coerce the result to the appropriate ObjC type
2049 desc = [returnDescriptor coerceToDescriptorType: typeUTF8Text];
2050 if (desc)
2051 *result = make_number([desc int32Value]);
2052 }
2053 }
2054 }
2055 else
2056 {
2057 // no script result, return error
2058 return 1;
2059 }
2060 return 0;
2061}
2062
2063DEFUN ("ns-do-applescript", Fns_do_applescript, Sns_do_applescript, 1, 1, 0,
b066e6b6
JB
2064 doc: /* Execute AppleScript SCRIPT and return the result.
2065If compilation and execution are successful, the resulting script value
2066is returned as a string, a number or, in the case of other constructs, t.
2067In case the execution fails, an error is signaled. */)
583ff3c3
AR
2068 (script)
2069 Lisp_Object script;
2070{
2071 Lisp_Object result;
2072 long status;
2073
2074 CHECK_STRING (script);
2075 check_ns ();
2076
2077 BLOCK_INPUT;
2078 status = ns_do_applescript (script, &result);
2079 UNBLOCK_INPUT;
2080 if (status == 0)
2081 return result;
2082 else if (!STRINGP (result))
2083 error ("AppleScript error %d", status);
2084 else
2085 error ("%s", SDATA (result));
2086}
2087#endif
2088
2089
2090
edfda783
AR
2091/* ==========================================================================
2092
2093 Miscellaneous functions not called through hooks
2094
2095 ========================================================================== */
2096
2097
3fe53a83 2098/* called from image.c */
edfda783
AR
2099FRAME_PTR
2100check_x_frame (Lisp_Object frame)
2101{
2102 return check_ns_frame (frame);
2103}
2104
3fe53a83
AR
2105
2106/* called from frame.c */
edfda783
AR
2107struct ns_display_info *
2108check_x_display_info (Lisp_Object frame)
2109{
2110 return check_ns_display_info (frame);
2111}
2112
2113
edfda783
AR
2114void
2115x_set_scroll_bar_default_width (f)
2116 struct frame *f;
2117{
2118 int wid = FRAME_COLUMN_WIDTH (f);
2119 FRAME_CONFIG_SCROLL_BAR_WIDTH (f) = NS_SCROLL_BAR_WIDTH_DEFAULT;
2120 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) +
2121 wid - 1) / wid;
2122}
2123
2124
3fe53a83 2125/* terms impl this instead of x-get-resource directly */
edfda783
AR
2126const char *
2127x_get_string_resource (XrmDatabase rdb, char *name, char *class)
2128{
6fb5f7da 2129 /* remove appname prefix; TODO: allow for !="Emacs" */
edfda783
AR
2130 char *toCheck = class + (!strncmp (class, "Emacs.", 6) ? 6 : 0);
2131 const char *res;
2132 check_ns ();
2133
386a49d3
AR
2134 if (inhibit_x_resources)
2135 /* --quick was passed, so this is a no-op. */
2136 return NULL;
edfda783 2137
386a49d3
AR
2138 res = [[[NSUserDefaults standardUserDefaults] objectForKey:
2139 [NSString stringWithUTF8String: toCheck]] UTF8String];
edfda783
AR
2140 return !res ? NULL :
2141 (!strncasecmp (res, "YES", 3) ? "true" :
2142 (!strncasecmp (res, "NO", 2) ? "false" : res));
2143}
2144
2145
2146Lisp_Object
2147x_get_focus_frame (struct frame *frame)
2148{
2149 struct ns_display_info *dpyinfo = FRAME_NS_DISPLAY_INFO (frame);
2150 Lisp_Object nsfocus;
2151
9e50ff0c 2152 if (!dpyinfo->x_focus_frame)
edfda783
AR
2153 return Qnil;
2154
9e50ff0c 2155 XSETFRAME (nsfocus, dpyinfo->x_focus_frame);
edfda783
AR
2156 return nsfocus;
2157}
2158
2159
2160int
2161x_pixel_width (struct frame *f)
2162{
2163 return FRAME_PIXEL_WIDTH (f);
2164}
2165
2166
2167int
2168x_pixel_height (struct frame *f)
2169{
2170 return FRAME_PIXEL_HEIGHT (f);
2171}
2172
2173
2174int
2175x_char_width (struct frame *f)
2176{
2177 return FRAME_COLUMN_WIDTH (f);
2178}
2179
2180
2181int
2182x_char_height (struct frame *f)
2183{
2184 return FRAME_LINE_HEIGHT (f);
2185}
2186
2187
2188int
2189x_screen_planes (struct frame *f)
2190{
2191 return FRAME_NS_DISPLAY_INFO (f)->n_planes;
2192}
2193
2194
2195void
2196x_sync (Lisp_Object frame)
2197{
2198 /* XXX Not implemented XXX */
2199 return;
2200}
2201
2202
2203
2204/* ==========================================================================
2205
2206 Lisp definitions that, for whatever reason, we can't alias as 'ns-XXX'.
2207
2208 ========================================================================== */
2209
2210
952913d4 2211DEFUN ("xw-color-defined-p", Fxw_color_defined_p, Sxw_color_defined_p, 1, 2, 0,
51d5ef9f
AR
2212 doc: /* Return t if the current Nextstep display supports the color COLOR.
2213The optional argument FRAME is currently ignored. */)
edfda783
AR
2214 (color, frame)
2215 Lisp_Object color, frame;
2216{
2217 NSColor * col;
2218 check_ns ();
2219 return ns_lisp_to_color (color, &col) ? Qnil : Qt;
2220}
2221
2222
952913d4 2223DEFUN ("xw-color-values", Fxw_color_values, Sxw_color_values, 1, 2, 0,
fb67c21b 2224 doc: /* Internal function called by `color-values', which see. */)
edfda783
AR
2225 (color, frame)
2226 Lisp_Object color, frame;
2227{
2228 NSColor * col;
09b1339d 2229 CGFloat red, green, blue, alpha;
edfda783
AR
2230
2231 check_ns ();
2232 CHECK_STRING (color);
2233
2234 if (ns_lisp_to_color (color, &col))
2235 return Qnil;
2236
2237 [[col colorUsingColorSpaceName: NSCalibratedRGBColorSpace]
2238 getRed: &red green: &green blue: &blue alpha: &alpha];
fb67c21b
YM
2239 return list3 (make_number (lrint (red*65280)),
2240 make_number (lrint (green*65280)),
2241 make_number (lrint (blue*65280)));
edfda783
AR
2242}
2243
2244
2245DEFUN ("xw-display-color-p", Fxw_display_color_p, Sxw_display_color_p, 0, 1, 0,
51d5ef9f 2246 doc: /* Return t if the Nextstep display supports color.
d26fbe1a
CY
2247The optional argument DISPLAY specifies which display to ask about.
2248DISPLAY should be either a frame, a display name (a string), or terminal ID.
51d5ef9f 2249If omitted or nil, that stands for the selected frame's display. */)
edfda783
AR
2250 (display)
2251 Lisp_Object display;
2252{
2253 NSWindowDepth depth;
2254 NSString *colorSpace;
2255 check_ns ();
2256 depth = [ns_get_screen (display) depth];
2257 colorSpace = NSColorSpaceFromDepth (depth);
2258
2259 return [colorSpace isEqualToString: NSDeviceWhiteColorSpace]
2260 || [colorSpace isEqualToString: NSCalibratedWhiteColorSpace]
2261 ? Qnil : Qt;
2262}
2263
2264
2265DEFUN ("x-display-grayscale-p", Fx_display_grayscale_p,
2266 Sx_display_grayscale_p, 0, 1, 0,
51d5ef9f 2267 doc: /* Return t if the Nextstep display supports shades of gray.
d26fbe1a
CY
2268Note that color displays do support shades of gray.
2269The optional argument DISPLAY specifies which display to ask about.
2270DISPLAY should be either a frame, a display name (a string), or terminal ID.
51d5ef9f 2271If omitted or nil, that stands for the selected frame's display. */)
edfda783
AR
2272 (display)
2273 Lisp_Object display;
2274{
2275 NSWindowDepth depth;
2276 check_ns ();
2277 depth = [ns_get_screen (display) depth];
2278
2279 return NSBitsPerPixelFromDepth (depth) > 1 ? Qt : Qnil;
2280}
2281
2282
952913d4 2283DEFUN ("x-display-pixel-width", Fx_display_pixel_width, Sx_display_pixel_width,
edfda783 2284 0, 1, 0,
b066e6b6 2285 doc: /* Return the width in pixels of the Nextstep display DISPLAY.
d26fbe1a
CY
2286The optional argument DISPLAY specifies which display to ask about.
2287DISPLAY should be either a frame, a display name (a string), or terminal ID.
51d5ef9f 2288If omitted or nil, that stands for the selected frame's display. */)
edfda783
AR
2289 (display)
2290 Lisp_Object display;
2291{
2292 check_ns ();
2293 return make_number ((int) [ns_get_screen (display) frame].size.width);
2294}
2295
2296
952913d4
DN
2297DEFUN ("x-display-pixel-height", Fx_display_pixel_height,
2298 Sx_display_pixel_height, 0, 1, 0,
b066e6b6 2299 doc: /* Return the height in pixels of the Nextstep display DISPLAY.
d26fbe1a
CY
2300The optional argument DISPLAY specifies which display to ask about.
2301DISPLAY should be either a frame, a display name (a string), or terminal ID.
51d5ef9f 2302If omitted or nil, that stands for the selected frame's display. */)
edfda783
AR
2303 (display)
2304 Lisp_Object display;
2305{
2306 check_ns ();
2307 return make_number ((int) [ns_get_screen (display) frame].size.height);
2308}
2309
583ff3c3 2310
edfda783
AR
2311DEFUN ("display-usable-bounds", Fns_display_usable_bounds,
2312 Sns_display_usable_bounds, 0, 1, 0,
b066e6b6 2313 doc: /* Return the bounds of the usable part of the screen.
d26fbe1a
CY
2314The return value is a list of integers (LEFT TOP WIDTH HEIGHT), which
2315are the boundaries of the usable part of the screen, excluding areas
2316reserved for the Mac menu, dock, and so forth.
2317
2318The screen queried corresponds to DISPLAY, which should be either a
2319frame, a display name (a string), or terminal ID. If omitted or nil,
51d5ef9f 2320that stands for the selected frame's display. */)
edfda783
AR
2321 (display)
2322 Lisp_Object display;
2323{
2324 int top;
474217c8 2325 NSScreen *screen;
edfda783
AR
2326 NSRect vScreen;
2327
2328 check_ns ();
474217c8
CY
2329 screen = ns_get_screen (display);
2330 if (!screen)
2331 return Qnil;
2332
2333 vScreen = [screen visibleFrame];
edfda783 2334
474217c8
CY
2335 /* NS coordinate system is upside-down.
2336 Transform to screen-specific coordinates. */
edfda783 2337 return list4 (make_number ((int) vScreen.origin.x),
474217c8
CY
2338 make_number ((int) [screen frame].size.height
2339 - vScreen.size.height - vScreen.origin.y),
edfda783
AR
2340 make_number ((int) vScreen.size.width),
2341 make_number ((int) vScreen.size.height));
2342}
2343
2344
952913d4 2345DEFUN ("x-display-planes", Fx_display_planes, Sx_display_planes,
edfda783 2346 0, 1, 0,
b066e6b6 2347 doc: /* Return the number of bitplanes of the Nextstep display DISPLAY.
d26fbe1a
CY
2348The optional argument DISPLAY specifies which display to ask about.
2349DISPLAY should be either a frame, a display name (a string), or terminal ID.
51d5ef9f 2350If omitted or nil, that stands for the selected frame's display. */)
edfda783
AR
2351 (display)
2352 Lisp_Object display;
2353{
2354 check_ns ();
2355 return make_number
b9126609 2356 (NSBitsPerPixelFromDepth ([ns_get_screen (display) depth]));
edfda783
AR
2357}
2358
2359
952913d4
DN
2360DEFUN ("x-display-color-cells", Fx_display_color_cells,
2361 Sx_display_color_cells, 0, 1, 0,
51d5ef9f 2362 doc: /* Returns the number of color cells of the Nextstep display DISPLAY.
d26fbe1a
CY
2363The optional argument DISPLAY specifies which display to ask about.
2364DISPLAY should be either a frame, a display name (a string), or terminal ID.
51d5ef9f 2365If omitted or nil, that stands for the selected frame's display. */)
edfda783
AR
2366 (display)
2367 Lisp_Object display;
2368{
2369 check_ns ();
2370 struct ns_display_info *dpyinfo = check_ns_display_info (display);
2371
2372 /* We force 24+ bit depths to 24-bit to prevent an overflow. */
2373 return make_number (1 << min (dpyinfo->n_planes, 24));
2374}
2375
2376
2377/* Unused dummy def needed for compatibility. */
2378Lisp_Object tip_frame;
2379
6fb5f7da 2380/* TODO: move to xdisp or similar */
edfda783
AR
2381static void
2382compute_tip_xy (f, parms, dx, dy, width, height, root_x, root_y)
2383 struct frame *f;
2384 Lisp_Object parms, dx, dy;
2385 int width, height;
2386 int *root_x, *root_y;
2387{
2388 Lisp_Object left, top;
2389 EmacsView *view = FRAME_NS_VIEW (f);
2390 NSPoint pt;
b066e6b6 2391
edfda783
AR
2392 /* Start with user-specified or mouse position. */
2393 left = Fcdr (Fassq (Qleft, parms));
2394 if (INTEGERP (left))
2395 pt.x = XINT (left);
2396 else
2397 pt.x = last_mouse_motion_position.x;
2398 top = Fcdr (Fassq (Qtop, parms));
2399 if (INTEGERP (top))
2400 pt.y = XINT (top);
2401 else
2402 pt.y = last_mouse_motion_position.y;
2403
2404 /* Convert to screen coordinates */
2405 pt = [view convertPoint: pt toView: nil];
2406 pt = [[view window] convertBaseToScreen: pt];
2407
2408 /* Ensure in bounds. (Note, screen origin = lower left.) */
2409 if (pt.x + XINT (dx) <= 0)
2410 *root_x = 0; /* Can happen for negative dx */
889bd438
CY
2411 else if (pt.x + XINT (dx) + width
2412 <= x_display_pixel_width (FRAME_NS_DISPLAY_INFO (f)))
edfda783
AR
2413 /* It fits to the right of the pointer. */
2414 *root_x = pt.x + XINT (dx);
2415 else if (width + XINT (dx) <= pt.x)
2416 /* It fits to the left of the pointer. */
2417 *root_x = pt.x - width - XINT (dx);
2418 else
2419 /* Put it left justified on the screen -- it ought to fit that way. */
2420 *root_x = 0;
2421
2422 if (pt.y - XINT (dy) - height >= 0)
2423 /* It fits below the pointer. */
2424 *root_y = pt.y - height - XINT (dy);
889bd438
CY
2425 else if (pt.y + XINT (dy) + height
2426 <= x_display_pixel_height (FRAME_NS_DISPLAY_INFO (f)))
edfda783
AR
2427 /* It fits above the pointer */
2428 *root_y = pt.y + XINT (dy);
2429 else
2430 /* Put it on the top. */
889bd438 2431 *root_y = x_display_pixel_height (FRAME_NS_DISPLAY_INFO (f)) - height;
edfda783
AR
2432}
2433
2434
2435DEFUN ("x-show-tip", Fx_show_tip, Sx_show_tip, 1, 6, 0,
b066e6b6 2436 doc: /* Show STRING in a \"tooltip\" window on frame FRAME.
edfda783
AR
2437A tooltip window is a small window displaying a string.
2438
2439FRAME nil or omitted means use the selected frame.
2440
2441PARMS is an optional list of frame parameters which can be used to
2442change the tooltip's appearance.
2443
2444Automatically hide the tooltip after TIMEOUT seconds. TIMEOUT nil
2445means use the default timeout of 5 seconds.
2446
2447If the list of frame parameters PARMS contains a `left' parameter,
2448the tooltip is displayed at that x-position. Otherwise it is
2449displayed at the mouse position, with offset DX added (default is 5 if
2450DX isn't specified). Likewise for the y-position; if a `top' frame
2451parameter is specified, it determines the y-position of the tooltip
2452window, otherwise it is displayed at the mouse position, with offset
2453DY added (default is -10).
2454
2455A tooltip's maximum size is specified by `x-max-tooltip-size'.
2456Text larger than the specified size is clipped. */)
2457 (string, frame, parms, timeout, dx, dy)
2458 Lisp_Object string, frame, parms, timeout, dx, dy;
2459{
2460 int root_x, root_y;
2461 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
2462 int count = SPECPDL_INDEX ();
2463 struct frame *f;
2464 char *str;
2465 NSSize size;
2466
2467 specbind (Qinhibit_redisplay, Qt);
2468
2469 GCPRO4 (string, parms, frame, timeout);
2470
2471 CHECK_STRING (string);
facfbbbd 2472 str = SDATA (string);
edfda783
AR
2473 f = check_x_frame (frame);
2474 if (NILP (timeout))
2475 timeout = make_number (5);
2476 else
2477 CHECK_NATNUM (timeout);
2478
2479 if (NILP (dx))
2480 dx = make_number (5);
2481 else
2482 CHECK_NUMBER (dx);
2483
2484 if (NILP (dy))
2485 dy = make_number (-10);
2486 else
2487 CHECK_NUMBER (dy);
2488
2489 BLOCK_INPUT;
2490 if (ns_tooltip == nil)
2491 ns_tooltip = [[EmacsTooltip alloc] init];
2492 else
2493 Fx_hide_tip ();
2494
2495 [ns_tooltip setText: str];
2496 size = [ns_tooltip frame].size;
2497
2498 /* Move the tooltip window where the mouse pointer is. Resize and
2499 show it. */
2500 compute_tip_xy (f, parms, dx, dy, (int)size.width, (int)size.height,
2501 &root_x, &root_y);
2502
2503 [ns_tooltip showAtX: root_x Y: root_y for: XINT (timeout)];
2504 UNBLOCK_INPUT;
2505
2506 UNGCPRO;
2507 return unbind_to (count, Qnil);
2508}
2509
2510
2511DEFUN ("x-hide-tip", Fx_hide_tip, Sx_hide_tip, 0, 0, 0,
2512 doc: /* Hide the current tooltip window, if there is any.
2513Value is t if tooltip was open, nil otherwise. */)
2514 ()
2515{
2516 if (ns_tooltip == nil || ![ns_tooltip isActive])
2517 return Qnil;
2518 [ns_tooltip hide];
2519 return Qt;
2520}
2521
2522
cc98b6a0
DN
2523/* ==========================================================================
2524
2525 Class implementations
2526
2527 ========================================================================== */
2528
2529
2530@implementation EmacsSavePanel
2531#ifdef NS_IMPL_COCOA
2532/* --------------------------------------------------------------------------
2533 These are overridden to intercept on OS X: ending panel restarts NSApp
2534 event loop if it is stopped. Not sure if this is correct behavior,
2535 perhaps should check if running and if so send an appdefined.
2536 -------------------------------------------------------------------------- */
2537- (void) ok: (id)sender
2538{
2539 [super ok: sender];
2540 panelOK = 1;
2541 [NSApp stop: self];
2542}
2543- (void) cancel: (id)sender
2544{
2545 [super cancel: sender];
2546 [NSApp stop: self];
2547}
2548#endif
2549@end
2550
2551
2552@implementation EmacsOpenPanel
2553#ifdef NS_IMPL_COCOA
2554/* --------------------------------------------------------------------------
2555 These are overridden to intercept on OS X: ending panel restarts NSApp
2556 event loop if it is stopped. Not sure if this is correct behavior,
2557 perhaps should check if running and if so send an appdefined.
2558 -------------------------------------------------------------------------- */
2559- (void) ok: (id)sender
2560{
2561 [super ok: sender];
2562 panelOK = 1;
2563 [NSApp stop: self];
2564}
2565- (void) cancel: (id)sender
2566{
2567 [super cancel: sender];
2568 [NSApp stop: self];
2569}
2570#endif
2571@end
2572
2573
2574@implementation EmacsFileDelegate
2575/* --------------------------------------------------------------------------
2576 Delegate methods for Open/Save panels
2577 -------------------------------------------------------------------------- */
2578- (BOOL)panel: (id)sender isValidFilename: (NSString *)filename
2579{
2580 return YES;
2581}
2582- (BOOL)panel: (id)sender shouldShowFilename: (NSString *)filename
2583{
2584 return YES;
2585}
2586- (NSString *)panel: (id)sender userEnteredFilename: (NSString *)filename
2587 confirmed: (BOOL)okFlag
2588{
2589 return filename;
2590}
2591@end
2592
2593#endif
2594
ba301db3 2595
edfda783
AR
2596/* ==========================================================================
2597
2598 Lisp interface declaration
2599
2600 ========================================================================== */
2601
2602
2603void
2604syms_of_nsfns ()
2605{
2606 int i;
2607
edfda783
AR
2608 Qfontsize = intern ("fontsize");
2609 staticpro (&Qfontsize);
2610
2611 DEFVAR_LISP ("ns-icon-type-alist", &Vns_icon_type_alist,
51d5ef9f 2612 doc: /* Alist of elements (REGEXP . IMAGE) for images of icons associated to frames.
d26fbe1a
CY
2613If the title of a frame matches REGEXP, then IMAGE.tiff is
2614selected as the image of the icon representing the frame when it's
2615miniaturized. If an element is t, then Emacs tries to select an icon
2616based on the filetype of the visited file.
2617
2618The images have to be installed in a folder called English.lproj in the
2619Emacs folder. You have to restart Emacs after installing new icons.
2620
2621Example: Install an icon Gnus.tiff and execute the following code
2622
2623 (setq ns-icon-type-alist
2624 (append ns-icon-type-alist
2625 '((\"^\\\\*\\\\(Group\\\\*$\\\\|Summary \\\\|Article\\\\*$\\\\)\"
2626 . \"Gnus\"))))
2627
2628When you miniaturize a Group, Summary or Article frame, Gnus.tiff will
51d5ef9f 2629be used as the image of the icon representing the frame. */);
edfda783
AR
2630 Vns_icon_type_alist = Fcons (Qt, Qnil);
2631
cb83c00b
AR
2632 DEFVAR_LISP ("ns-version-string", &Vns_version_string,
2633 doc: /* Toolkit version for NS Windowing. */);
f5497e45 2634 Vns_version_string = ns_appkit_version_str ();
cb83c00b 2635
edfda783
AR
2636 defsubr (&Sns_read_file_name);
2637 defsubr (&Sns_get_resource);
2638 defsubr (&Sns_set_resource);
2639 defsubr (&Sxw_display_color_p); /* this and next called directly by C code */
2640 defsubr (&Sx_display_grayscale_p);
edfda783
AR
2641 defsubr (&Sns_font_name);
2642 defsubr (&Sns_list_colors);
74876614 2643#ifdef NS_IMPL_COCOA
583ff3c3 2644 defsubr (&Sns_do_applescript);
74876614 2645#endif
952913d4
DN
2646 defsubr (&Sxw_color_defined_p);
2647 defsubr (&Sxw_color_values);
2648 defsubr (&Sx_server_max_request_size);
9e50ff0c
DN
2649 defsubr (&Sx_server_vendor);
2650 defsubr (&Sx_server_version);
952913d4
DN
2651 defsubr (&Sx_display_pixel_width);
2652 defsubr (&Sx_display_pixel_height);
edfda783 2653 defsubr (&Sns_display_usable_bounds);
9e50ff0c
DN
2654 defsubr (&Sx_display_mm_width);
2655 defsubr (&Sx_display_mm_height);
2656 defsubr (&Sx_display_screens);
952913d4
DN
2657 defsubr (&Sx_display_planes);
2658 defsubr (&Sx_display_color_cells);
9e50ff0c
DN
2659 defsubr (&Sx_display_visual_class);
2660 defsubr (&Sx_display_backing_store);
2661 defsubr (&Sx_display_save_under);
2662 defsubr (&Sx_create_frame);
9e50ff0c
DN
2663 defsubr (&Sx_open_connection);
2664 defsubr (&Sx_close_connection);
2665 defsubr (&Sx_display_list);
edfda783
AR
2666
2667 defsubr (&Sns_hide_others);
2668 defsubr (&Sns_hide_emacs);
2669 defsubr (&Sns_emacs_info_panel);
2670 defsubr (&Sns_list_services);
2671 defsubr (&Sns_perform_service);
2672 defsubr (&Sns_convert_utf8_nfd_to_nfc);
9e50ff0c 2673 defsubr (&Sx_focus_frame);
edfda783
AR
2674 defsubr (&Sns_popup_font_panel);
2675 defsubr (&Sns_popup_color_panel);
2676
2677 defsubr (&Sx_show_tip);
2678 defsubr (&Sx_hide_tip);
2679
2680 /* used only in fontset.c */
2681 check_window_system_func = check_ns;
2682
2683}
2684
2f8e74bb 2685// arch-tag: dc2a3f74-1123-4daa-8eed-fb78db6a5642