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