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