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