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