]> code.delx.au - gnu-emacs/blob - src/nsfns.m
do-applescript: NS version of the Carbon implementation of the same
[gnu-emacs] / src / nsfns.m
1 /* Functions for the NeXT/Open/GNUstep and MacOSX window system.
2 Copyright (C) 1989, 1992, 1993, 1994, 2005, 2006, 2008
3 Free Software Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
11
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
19
20 /*
21 Originally by Carl Edman
22 Updated by Christian Limpach (chris@nice.ch)
23 OpenStep/Rhapsody port by Scott Bender (sbender@harmony-ds.com)
24 MacOSX/Aqua port by Christophe de Dinechin (descubes@earthlink.net)
25 GNUstep port and post-20 update by Adrian Robert (arobert@cogsci.ucsd.edu)
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
44 int 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
53 extern NSArray *ns_send_types, *ns_return_types, *ns_drag_types;
54
55 extern Lisp_Object Qforeground_color;
56 extern Lisp_Object Qbackground_color;
57 extern Lisp_Object Qcursor_color;
58 extern Lisp_Object Qinternal_border_width;
59 extern Lisp_Object Qvisibility;
60 extern Lisp_Object Qcursor_type;
61 extern Lisp_Object Qicon_type;
62 extern Lisp_Object Qicon_name;
63 extern Lisp_Object Qicon_left;
64 extern Lisp_Object Qicon_top;
65 extern Lisp_Object Qleft;
66 extern Lisp_Object Qright;
67 extern Lisp_Object Qtop;
68 extern Lisp_Object Qdisplay;
69 extern Lisp_Object Qvertical_scroll_bars;
70 extern Lisp_Object Qauto_raise;
71 extern Lisp_Object Qauto_lower;
72 extern Lisp_Object Qbox;
73 extern Lisp_Object Qscroll_bar_width;
74 extern Lisp_Object Qx_resource_name;
75 extern Lisp_Object Qface_set_after_frame_default;
76 extern Lisp_Object Qunderline, Qundefined;
77 extern Lisp_Object Qheight, Qminibuffer, Qname, Qonly, Qwidth;
78 extern Lisp_Object Qunsplittable, Qmenu_bar_lines, Qbuffer_predicate, Qtitle;
79
80 Lisp_Object Qnone;
81 Lisp_Object Qns_frame_parameter;
82 Lisp_Object Qbuffered;
83 Lisp_Object Qfontsize;
84
85 /* hack for OS X file panels */
86 char panelOK = 0;
87
88 /* Alist of elements (REGEXP . IMAGE) for images of icons associated
89 to frames.*/
90 Lisp_Object Vns_icon_type_alist;
91
92 EmacsTooltip *ns_tooltip;
93
94 /* Need forward declaration here to preserve organizational integrity of file */
95 Lisp_Object Fx_open_connection (Lisp_Object, Lisp_Object, Lisp_Object);
96
97 extern BOOL ns_in_resize;
98
99
100 /* ==========================================================================
101
102 Internal utility functions
103
104 ========================================================================== */
105
106
107 void
108 check_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. */
116 int
117 have_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. */
125 static FRAME_PTR
126 check_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))
138 error ("non-Nextstep frame used");
139 return f;
140 }
141
142
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. */
146 static struct ns_display_info *
147 check_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);
154 else if (x_display_list != 0)
155 return x_display_list;
156 else
157 error ("Nextstep windows are not in use or not initialized");
158 }
159 else if (INTEGERP (frame))
160 {
161 struct terminal *t = get_terminal (frame, 1);
162
163 if (t->type != output_ns)
164 error ("Terminal %d is not a Nextstep display", XINT (frame));
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))
177 error ("non-Nextstep frame used");
178 return FRAME_NS_DISPLAY_INFO (f);
179 }
180 return NULL; /* shut compiler up */
181 }
182
183
184 static id
185 ns_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
200 static NSScreen *
201 ns_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;
215 f = dpyinfo->x_focus_frame;
216 if (!f)
217 f = dpyinfo->x_highlight_frame;
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. */
246 struct ns_display_info *
247 ns_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
255 for (dpyinfo = x_display_list, names = ns_display_name_list;
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
267 Fx_open_connection (name, Qnil, Qnil);
268 dpyinfo = x_display_list;
269
270 if (dpyinfo == 0)
271 error ("OpenStep on %s not responding.\n", SDATA (name));
272
273 return dpyinfo;
274 }
275
276
277 static Lisp_Object
278 interpret_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
335 static void
336 ns_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
360 static void
361 ns_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 {
403 col = ns_lookup_indexed_color (NS_FACE_BACKGROUND (face), f);
404 face->background
405 = (EMACS_UINT) [[col colorWithAlphaComponent: alpha] retain];
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
417 static void
418 ns_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
440 static void
441 ns_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:
481 SDATA (arg)]]))
482 return;
483
484 [[view window] setMiniwindowTitle:
485 [NSString stringWithUTF8String: SDATA (arg)]];
486 }
487
488
489 static void
490 ns_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:
530 SDATA (name)]]))
531 return;
532
533 [[view window] setMiniwindowTitle:
534 [NSString stringWithUTF8String: SDATA (name)]];
535 }
536
537
538 static void
539 ns_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:
576 SDATA (name)]])
577 return;
578 [[view window] setTitle: [NSString stringWithUTF8String:
579 SDATA (name)]];
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. */
586 static void
587 ns_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. */
598 void
599 x_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. */
619 static void
620 ns_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
633 void
634 ns_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
663 if (title && (! strcmp (title, SDATA (name))))
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 */
676 NSString *str = [NSString stringWithUTF8String: SDATA (name)];
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:
688 [NSString stringWithUTF8String: SDATA (name)]];
689 #endif
690 f->name = name;
691 }
692 else
693 {
694 [[view window] setMiniwindowTitle:
695 [NSString stringWithUTF8String: SDATA (name)]];
696 }
697 [pool release];
698 UNBLOCK_INPUT;
699 }
700
701
702 void
703 ns_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
715 static void
716 ns_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
745 /* 23: XXX: there is an erroneous direct call in window.c to this fn */
746 void
747 x_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 */
754 static void
755 ns_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
786 /* 23: XXX: there is an erroneous direct call in window.c to this fn */
787 void
788 x_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
794 void
795 ns_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
809 && [[NSString stringWithUTF8String: SDATA (f->name)]
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 */
831 if (SYMBOLP (elt) && EQ (elt, Qt) && SDATA (f->name)[0] == '/')
832 {
833 NSString *str
834 = [NSString stringWithUTF8String: SDATA (f->name)];
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:
847 SDATA (XCDR (elt))]] retain];
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
865 static void
866 ns_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 {
876 arg =build_string (SDATA (SYMBOL_NAME (arg)));
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:
892 SDATA (arg)]];
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) */
906 int
907 XParseGeometry (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
915 /* TODO: move to nsterm? */
916 int
917 ns_lisp_to_cursor_type (Lisp_Object arg)
918 {
919 char *str;
920 if (XTYPE (arg) == Lisp_String)
921 str = SDATA (arg);
922 else if (XTYPE (arg) == Lisp_Symbol)
923 str = SDATA (SYMBOL_NAME (arg));
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
934 Lisp_Object
935 ns_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
949 static void
950 ns_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 ;) */
972 static void
973 ns_set_mouse_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
974 {
975 /* don't think we can do this on Nextstep */
976 }
977
978
979 static void
980 ns_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 */
1012 frame_parm_handler ns_frame_parm_handlers[] =
1013 {
1014 x_set_autoraise, /* generic OK */
1015 x_set_autolower, /* generic OK */
1016 ns_set_background_color,
1017 0, /* x_set_border_color, may be impossible under Nextstep */
1018 0, /* x_set_border_width, may be impossible under Nextstep */
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
1047 DEFUN ("x-create-frame", Fx_create_frame, Sx_create_frame,
1048 1, 1, 0,
1049 doc: /* Make a new Nextstep window, called a \"frame\" in Emacs terms.
1050 Return an Emacs frame object.
1051 PARMS is an alist of frame parameters.
1052 If the parameters specify that the frame should not have a minibuffer,
1053 and do not specify a specific minibuffer window to use,
1054 then `default-minibuffer-frame' must be a frame whose minibuffer can
1055 be shared by the new frame. */)
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 {
1128 f->name
1129 = build_string ([[[NSProcessInfo processInfo] processName] UTF8String]);
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 {
1200 Lisp_Object spos
1201 #ifdef NS_IMPL_GNUSTEP
1202 = Qt;
1203 #else
1204 = Qright;
1205 #endif
1206 x_default_parameter (f, parms, Qvertical_scroll_bars, spos,
1207 "verticalScrollBars", "VerticalScrollBars",
1208 RES_TYPE_SYMBOL);
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);
1216 /* FIXME: not suppported yet in Nextstep */
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
1236 /* TODO: other terms seem to get away w/o this complexity.. */
1237 if (NILP (Fassq (Qwidth, parms)))
1238 {
1239 Lisp_Object value
1240 = x_get_arg (dpyinfo, parms, Qwidth, "width", "Width",
1241 RES_TYPE_NUMBER);
1242 if (! EQ (value, Qunbound))
1243 parms = Fcons (Fcons (Qwidth, value), parms);
1244 }
1245 if (NILP (Fassq (Qheight, parms)))
1246 {
1247 Lisp_Object value
1248 = x_get_arg (dpyinfo, parms, Qheight, "height", "Height",
1249 RES_TYPE_NUMBER);
1250 if (! EQ (value, Qunbound))
1251 parms = Fcons (Fcons (Qheight, value), parms);
1252 }
1253 if (NILP (Fassq (Qleft, parms)))
1254 {
1255 Lisp_Object value
1256 = x_get_arg (dpyinfo, parms, Qleft, "left", "Left", RES_TYPE_NUMBER);
1257 if (! EQ (value, Qunbound))
1258 parms = Fcons (Fcons (Qleft, value), parms);
1259 }
1260 if (NILP (Fassq (Qtop, parms)))
1261 {
1262 Lisp_Object value
1263 = x_get_arg (dpyinfo, parms, Qtop, "top", "Top", RES_TYPE_NUMBER);
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
1274 was not getting called under Nextstep */
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];
1281 FRAME_NS_DISPLAY_INFO (f)->vertical_scroll_bar_cursor
1282 = [NSCursor arrowCursor];
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
1349 DEFUN ("x-focus-frame", Fx_focus_frame, Sx_focus_frame, 1, 1, 0,
1350 doc: /* Set the input focus to FRAME.
1351 FRAME 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
1358 if (dpyinfo->x_focus_frame != f)
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
1370 DEFUN ("ns-popup-prefs-panel", Fns_popup_prefs_panel, Sns_popup_prefs_panel,
1371 0, 0, "",
1372 doc: /* Pop up the preferences panel. */)
1373 ()
1374 {
1375 check_ns ();
1376 [(EmacsApp *)NSApp showPreferencesWindow: NSApp];
1377 return Qnil;
1378 }
1379
1380
1381 DEFUN ("ns-popup-font-panel", Fns_popup_font_panel, Sns_popup_font_panel,
1382 0, 1, "",
1383 doc: /* Pop up the font panel. */)
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
1407 DEFUN ("ns-popup-color-panel", Fns_popup_color_panel, Sns_popup_color_panel,
1408 0, 1, "",
1409 doc: /* Pop up the color panel. */)
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
1429 DEFUN ("ns-read-file-name", Fns_read_file_name, Sns_read_file_name, 1, 4, 0,
1430 doc: /* Use a graphical panel to read a file name, using prompt PROMPT.
1431 Optional arg DIR, if non-nil, supplies a default directory.
1432 Optional arg ISLOAD, if non-nil, means read a file name for saving.
1433 Optional arg INIT, if non-nil, provides a default file name to use. */)
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 :
1443 [NSString stringWithUTF8String: SDATA (prompt)];
1444 NSString *dirS = NILP (dir) || !STRINGP (dir) ?
1445 [NSString stringWithUTF8String: SDATA (current_buffer->directory)] :
1446 [NSString stringWithUTF8String: SDATA (dir)];
1447 NSString *initS = NILP (init) || !STRINGP (init) ? nil :
1448 [NSString stringWithUTF8String: SDATA (init)];
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
1493 DEFUN ("ns-get-resource", Fns_get_resource, Sns_get_resource, 2, 2, 0,
1494 doc: /* Return the value of the property NAME of OWNER from the defaults database.
1495 If OWNER is nil, Emacs is assumed. */)
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]
1510 objectForKey: [NSString stringWithUTF8String: SDATA (name)]]
1511 UTF8String];
1512
1513 if (value)
1514 return build_string (value);
1515 return Qnil;
1516 }
1517
1518
1519 DEFUN ("ns-set-resource", Fns_set_resource, Sns_set_resource, 3, 3, 0,
1520 doc: /* Set property NAME of OWNER to VALUE, from the defaults database.
1521 If OWNER is nil, Emacs is assumed.
1522 If VALUE is nil, the default is removed. */)
1523 (owner, name, value)
1524 Lisp_Object owner, name, value;
1525 {
1526 check_ns ();
1527 if (NILP (owner))
1528 owner
1529 = build_string ([[[NSProcessInfo processInfo] processName] UTF8String]);
1530 CHECK_STRING (owner);
1531 CHECK_STRING (name);
1532 if (NILP (value))
1533 {
1534 [[NSUserDefaults standardUserDefaults] removeObjectForKey:
1535 [NSString stringWithUTF8String: SDATA (name)]];
1536 }
1537 else
1538 {
1539 CHECK_STRING (value);
1540 [[NSUserDefaults standardUserDefaults] setObject:
1541 [NSString stringWithUTF8String: SDATA (value)]
1542 forKey: [NSString stringWithUTF8String:
1543 SDATA (name)]];
1544 }
1545
1546 return Qnil;
1547 }
1548
1549
1550 DEFUN ("ns-set-alpha", Fns_set_alpha, Sns_set_alpha, 2, 2, 0,
1551 doc: /* Return a color equivalent to COLOR with alpha setting ALPHA.
1552 The argument ALPHA should be a number between 0 and 1, where 0 is full
1553 transparency and 1 is opaque. */)
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
1576 DEFUN ("ns-server-max-request-size", Fns_server_max_request_size,
1577 Sns_server_max_request_size,
1578 0, 1, 0,
1579 doc: /* This function is a no-op. It is only present for completeness. */)
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
1590 DEFUN ("x-server-vendor", Fx_server_vendor, Sx_server_vendor, 0, 1, 0,
1591 doc: /* Return the vendor ID string of Nextstep display server DISPLAY.
1592 DISPLAY should be either a frame or a display name (a string).
1593 If omitted or nil, the selected frame's display is used. */)
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
1606 DEFUN ("x-server-version", Fx_server_version, Sx_server_version, 0, 1, 0,
1607 doc: /* Return the version number of Nextstep display server DISPLAY.
1608 DISPLAY should be either a frame or a display name (a string).
1609 If omitted or nil, the selected frame's display is used.
1610 See also the function `ns-server-vendor'. */)
1611 (display)
1612 Lisp_Object display;
1613 {
1614 /* FIXME: return GUI version on GNUSTEP, ?? on OS X */
1615 return build_string ("1.0");
1616 }
1617
1618
1619 DEFUN ("x-display-screens", Fx_display_screens, Sx_display_screens, 0, 1, 0,
1620 doc: /* Return the number of screens on Nextstep display server DISPLAY.
1621 DISPLAY should be a frame, the display name as a string, or a terminal ID.
1622 If omitted or nil, the selected frame's display is used. */)
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
1635 DEFUN ("x-display-mm-height", Fx_display_mm_height, Sx_display_mm_height,
1636 0, 1, 0,
1637 doc: /* Return the height of Nextstep display server DISPLAY, in millimeters.
1638 DISPLAY should be a frame, the display name as a string, or a terminal ID.
1639 If omitted or nil, the selected frame's display is used. */)
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
1649 DEFUN ("x-display-mm-width", Fx_display_mm_width, Sx_display_mm_width,
1650 0, 1, 0,
1651 doc: /* Return the width of Nextstep display server DISPLAY, in millimeters.
1652 DISPLAY should be a frame, the display name as a string, or a terminal ID.
1653 If omitted or nil, the selected frame's display is used. */)
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
1663 DEFUN ("x-display-backing-store", Fx_display_backing_store,
1664 Sx_display_backing_store, 0, 1, 0,
1665 doc: /* Return whether the Nexstep display DISPLAY supports backing store.
1666 The value may be `buffered', `retained', or `non-retained'.
1667 DISPLAY should be a frame, the display name as a string, or a terminal ID.
1668 If omitted or nil, the selected frame's display is used. */)
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
1688 DEFUN ("x-display-visual-class", Fx_display_visual_class,
1689 Sx_display_visual_class, 0, 1, 0,
1690 doc: /* Return the visual class of the Nextstep display server DISPLAY.
1691 The value is one of the symbols `static-gray', `gray-scale',
1692 `static-color', `pseudo-color', `true-color', or `direct-color'.
1693 DISPLAY should be a frame, the display name as a string, or a terminal ID.
1694 If omitted or nil, the selected frame's display is used. */)
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
1713 /* color mgmt as far as we do it is really handled by Nextstep itself anyway */
1714 return intern ("direct-color");
1715 }
1716
1717
1718 DEFUN ("x-display-save-under", Fx_display_save_under,
1719 Sx_display_save_under, 0, 1, 0,
1720 doc: /* Non-nil if the Nextstep display server supports the save-under feature.
1721 The optional argument DISPLAY specifies which display to ask about.
1722 DISPLAY should be a frame, the display name as a string, or a terminal ID.
1723 If omitted or nil, the selected frame's display is used. */)
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
1744 DEFUN ("x-open-connection", Fx_open_connection, Sx_open_connection,
1745 1, 3, 0,
1746 doc: /* Open a connection to a Nextstep display server.
1747 DISPLAY is the name of the display to connect to.
1748 Optional arguments XRM-STRING and MUST-SUCCEED are currently ignored. */)
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",
1762 SDATA (display));
1763 else
1764 error ("OpenStep on %s not responding.\n",
1765 SDATA (display));
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
1784 DEFUN ("x-close-connection", Fx_close_connection, Sx_close_connection,
1785 1, 1, 0,
1786 doc: /* Close the connection to the current Nextstep display server.
1787 The second argument DISPLAY is currently ignored. */)
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
1801 DEFUN ("x-display-list", Fx_display_list, Sx_display_list, 0, 0, 0,
1802 doc: /* Return the list of display names that Emacs has connections to. */)
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
1815 DEFUN ("ns-hide-others", Fns_hide_others, Sns_hide_others,
1816 0, 0, 0,
1817 doc: /* Hides all applications other than emacs. */)
1818 ()
1819 {
1820 check_ns ();
1821 [NSApp hideOtherApplications: NSApp];
1822 return Qnil;
1823 }
1824
1825 DEFUN ("ns-hide-emacs", Fns_hide_emacs, Sns_hide_emacs,
1826 1, 1, 0,
1827 doc: /* If ON is non-nil, the entire emacs application is hidden.
1828 Otherwise if emacs is hidden, it is unhidden.
1829 If ON is equal to `activate', emacs is unhidden and becomes
1830 the active application. */)
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
1848 DEFUN ("ns-emacs-info-panel", Fns_emacs_info_panel, Sns_emacs_info_panel,
1849 0, 0, 0,
1850 doc: /* Shows the 'Info' or 'About' panel for Emacs. */)
1851 ()
1852 {
1853 check_ns ();
1854 [NSApp orderFrontStandardAboutPanel: nil];
1855 return Qnil;
1856 }
1857
1858
1859 DEFUN ("x-list-fonts", Fns_list_fonts, Sns_list_fonts, 1, 4, 0,
1860 doc: /* Return a list of the names of available fonts matching PATTERN.
1861 If optional arguments FACE and FRAME are specified, return only fonts
1862 the same size as FACE on FRAME.
1863 If optional argument MAX is specified, return at most MAX matches.
1864
1865 PATTERN is a regular expression; FACE is a face name - a symbol.
1866
1867 The return value is a list of strings, suitable as arguments to
1868 set-face-font.
1869
1870 The font names are _NOT_ X names. */)
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);
1908 olist = Fcons (build_string (ns_xlfd_to_fontname (SDATA (fname))),
1909 olist);
1910 }
1911
1912 return olist;
1913 }
1914
1915
1916 DEFUN ("ns-font-name", Fns_font_name, Sns_font_name, 1, 1, 0,
1917 doc: /* Determine font postscript or family name for font NAME.
1918 NAME should be a string containing either the font name or an XLFD
1919 font descriptor. If string contains `fontset' and not
1920 `fontset-startup', it is left alone. */)
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
1937 DEFUN ("ns-list-colors", Fns_list_colors, Sns_list_colors, 0, 1, 0,
1938 doc: /* Return a list of all available colors.
1939 The optional argument FRAME is currently ignored. */)
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)))
1951 error ("non-Nextstep frame used in `ns-list-colors'");
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
1978 DEFUN ("ns-list-services", Fns_list_services, Sns_list_services, 0, 0, 0,
1979 doc: /* List available Nextstep services by querying NSApp. */)
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
2028 DEFUN ("ns-perform-service", Fns_perform_service, Sns_perform_service,
2029 2, 2, 0,
2030 doc: /* Perform Nextstep SERVICE on SEND.
2031 SEND should be either a string or nil.
2032 The return value is the result of the service, as string, or nil if
2033 there was no result. */)
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
2045 utfStr = SDATA (service);
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
2060 DEFUN ("ns-convert-utf8-nfd-to-nfc", Fns_convert_utf8_nfd_to_nfc,
2061 Sns_convert_utf8_nfd_to_nfc, 1, 1, 0,
2062 doc: /* Return an NFC string that matches the UTF-8 NFD string STR. */)
2063 (str)
2064 Lisp_Object str;
2065 {
2066 NSString *utfStr;
2067
2068 CHECK_STRING (str);
2069 utfStr = [[NSString stringWithUTF8String: SDATA (str)]
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 */
2083 FRAME_PTR
2084 check_x_frame (Lisp_Object frame)
2085 {
2086 return check_ns_frame (frame);
2087 }
2088
2089 /* 23: added, due to call in frame.c */
2090 struct ns_display_info *
2091 check_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 */
2098 void
2099 x_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 */
2110 const char *
2111 x_get_string_resource (XrmDatabase rdb, char *name, char *class)
2112 {
2113 /* remove appname prefix; TODO: allow for !="Emacs" */
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
2132 Lisp_Object
2133 x_get_focus_frame (struct frame *frame)
2134 {
2135 struct ns_display_info *dpyinfo = FRAME_NS_DISPLAY_INFO (frame);
2136 Lisp_Object nsfocus;
2137
2138 if (!dpyinfo->x_focus_frame)
2139 return Qnil;
2140
2141 XSETFRAME (nsfocus, dpyinfo->x_focus_frame);
2142 return nsfocus;
2143 }
2144
2145
2146 int
2147 x_pixel_width (struct frame *f)
2148 {
2149 return FRAME_PIXEL_WIDTH (f);
2150 }
2151
2152
2153 int
2154 x_pixel_height (struct frame *f)
2155 {
2156 return FRAME_PIXEL_HEIGHT (f);
2157 }
2158
2159
2160 int
2161 x_char_width (struct frame *f)
2162 {
2163 return FRAME_COLUMN_WIDTH (f);
2164 }
2165
2166
2167 int
2168 x_char_height (struct frame *f)
2169 {
2170 return FRAME_LINE_HEIGHT (f);
2171 }
2172
2173
2174 int
2175 x_screen_planes (struct frame *f)
2176 {
2177 return FRAME_NS_DISPLAY_INFO (f)->n_planes;
2178 }
2179
2180
2181 void
2182 x_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
2197 #ifdef NS_IMPL_COCOA
2198
2199 /* Compile and execute the AppleScript SCRIPT and return the error
2200 status as function value. A zero is returned if compilation and
2201 execution is successful, in which case *RESULT is set to a Lisp
2202 string or a number containing the resulting script value. Otherwise,
2203 1 is returned. */
2204
2205 static int
2206 do_applescript (script, result)
2207 Lisp_Object script, *result;
2208 {
2209 NSAppleEventDescriptor *desc;
2210 NSDictionary* errorDict;
2211 NSAppleEventDescriptor* returnDescriptor = NULL;
2212
2213 NSAppleScript* scriptObject =
2214 [[NSAppleScript alloc] initWithSource:
2215 [NSString stringWithUTF8String: SDATA (script)]];
2216
2217 returnDescriptor = [scriptObject executeAndReturnError: &errorDict];
2218 [scriptObject release];
2219
2220 *result = Qnil;
2221
2222 if (returnDescriptor != NULL)
2223 {
2224 // successful execution
2225 if (kAENullEvent != [returnDescriptor descriptorType])
2226 {
2227 *result = Qt;
2228 // script returned an AppleScript result
2229 if ((typeUnicodeText == [returnDescriptor descriptorType]) ||
2230 (typeUTF16ExternalRepresentation
2231 == [returnDescriptor descriptorType]) ||
2232 (typeUTF8Text == [returnDescriptor descriptorType]) ||
2233 (typeCString == [returnDescriptor descriptorType]))
2234 {
2235 desc = [returnDescriptor coerceToDescriptorType: typeUTF8Text];
2236 if (desc)
2237 *result = build_string([[desc stringValue] UTF8String]);
2238 }
2239 else
2240 {
2241 /* use typeUTF16ExternalRepresentation? */
2242 // coerce the result to the appropriate ObjC type
2243 desc = [returnDescriptor coerceToDescriptorType: typeUTF8Text];
2244 if (desc)
2245 *result = make_number([desc int32Value]);
2246 }
2247 }
2248 }
2249 else
2250 {
2251 // no script result, return error
2252 return 1;
2253 }
2254 return 0;
2255 }
2256
2257 DEFUN ("do-applescript", Fdo_applescript, Sdo_applescript, 1, 1, 0,
2258 doc: /* Execute AppleScript SCRIPT and return the result. If
2259 compilation and execution are successful, the resulting script value
2260 is returned as a string, a number or, in the case of other constructs,
2261 t. In case the execution fails, an error is signaled. */)
2262 (script)
2263 Lisp_Object script;
2264 {
2265 Lisp_Object result;
2266 long status;
2267
2268 CHECK_STRING (script);
2269 check_ns ();
2270
2271 BLOCK_INPUT;
2272 status = do_applescript (script, &result);
2273 UNBLOCK_INPUT;
2274 if (status == 0)
2275 return result;
2276 else if (!STRINGP (result))
2277 error ("AppleScript error %d", status);
2278 else
2279 error ("%s", SDATA (result));
2280 }
2281 #endif
2282
2283 DEFUN ("xw-color-defined-p", Fns_color_defined_p, Sns_color_defined_p, 1, 2, 0,
2284 doc: /* Return t if the current Nextstep display supports the color COLOR.
2285 The optional argument FRAME is currently ignored. */)
2286 (color, frame)
2287 Lisp_Object color, frame;
2288 {
2289 NSColor * col;
2290 check_ns ();
2291 return ns_lisp_to_color (color, &col) ? Qnil : Qt;
2292 }
2293
2294
2295 DEFUN ("xw-color-values", Fns_color_values, Sns_color_values, 1, 2, 0,
2296 doc: /* Return a description of the color named COLOR.
2297 The value is a list of integer RGBA values--(RED GREEN BLUE ALPHA).
2298 These values appear to range from 0 to 65280; white is (65280 65280 65280 0).
2299 The optional argument FRAME is currently ignored. */)
2300 (color, frame)
2301 Lisp_Object color, frame;
2302 {
2303 NSColor * col;
2304 float red, green, blue, alpha;
2305 Lisp_Object rgba[4];
2306
2307 check_ns ();
2308 CHECK_STRING (color);
2309
2310 if (ns_lisp_to_color (color, &col))
2311 return Qnil;
2312
2313 [[col colorUsingColorSpaceName: NSCalibratedRGBColorSpace]
2314 getRed: &red green: &green blue: &blue alpha: &alpha];
2315 rgba[0] = make_number (lrint (red*65280));
2316 rgba[1] = make_number (lrint (green*65280));
2317 rgba[2] = make_number (lrint (blue*65280));
2318 rgba[3] = make_number (lrint (alpha*65280));
2319
2320 return Flist (4, rgba);
2321 }
2322
2323
2324 DEFUN ("xw-display-color-p", Fxw_display_color_p, Sxw_display_color_p, 0, 1, 0,
2325 doc: /* Return t if the Nextstep display supports color.
2326 The optional argument DISPLAY specifies which display to ask about.
2327 DISPLAY should be either a frame, a display name (a string), or terminal ID.
2328 If omitted or nil, that stands for the selected frame's display. */)
2329 (display)
2330 Lisp_Object display;
2331 {
2332 NSWindowDepth depth;
2333 NSString *colorSpace;
2334 check_ns ();
2335 depth = [ns_get_screen (display) depth];
2336 colorSpace = NSColorSpaceFromDepth (depth);
2337
2338 return [colorSpace isEqualToString: NSDeviceWhiteColorSpace]
2339 || [colorSpace isEqualToString: NSCalibratedWhiteColorSpace]
2340 ? Qnil : Qt;
2341 }
2342
2343
2344 DEFUN ("x-display-grayscale-p", Fx_display_grayscale_p,
2345 Sx_display_grayscale_p, 0, 1, 0,
2346 doc: /* Return t if the Nextstep display supports shades of gray.
2347 Note that color displays do support shades of gray.
2348 The optional argument DISPLAY specifies which display to ask about.
2349 DISPLAY should be either a frame, a display name (a string), or terminal ID.
2350 If omitted or nil, that stands for the selected frame's display. */)
2351 (display)
2352 Lisp_Object display;
2353 {
2354 NSWindowDepth depth;
2355 check_ns ();
2356 depth = [ns_get_screen (display) depth];
2357
2358 return NSBitsPerPixelFromDepth (depth) > 1 ? Qt : Qnil;
2359 }
2360
2361
2362 DEFUN ("x-display-pixel-width", Fns_display_pixel_width, Sns_display_pixel_width,
2363 0, 1, 0,
2364 doc: /* Returns the width in pixels of the Nextstep display DISPLAY.
2365 The optional argument DISPLAY specifies which display to ask about.
2366 DISPLAY should be either a frame, a display name (a string), or terminal ID.
2367 If omitted or nil, that stands for the selected frame's display. */)
2368 (display)
2369 Lisp_Object display;
2370 {
2371 check_ns ();
2372 return make_number ((int) [ns_get_screen (display) frame].size.width);
2373 }
2374
2375
2376 DEFUN ("x-display-pixel-height", Fns_display_pixel_height,
2377 Sns_display_pixel_height, 0, 1, 0,
2378 doc: /* Returns the height in pixels of the Nextstep display DISPLAY.
2379 The optional argument DISPLAY specifies which display to ask about.
2380 DISPLAY should be either a frame, a display name (a string), or terminal ID.
2381 If omitted or nil, that stands for the selected frame's display. */)
2382 (display)
2383 Lisp_Object display;
2384 {
2385 check_ns ();
2386 return make_number ((int) [ns_get_screen (display) frame].size.height);
2387 }
2388
2389 DEFUN ("display-usable-bounds", Fns_display_usable_bounds,
2390 Sns_display_usable_bounds, 0, 1, 0,
2391 doc: /*Return the bounds of the usable part of the screen.
2392 The return value is a list of integers (LEFT TOP WIDTH HEIGHT), which
2393 are the boundaries of the usable part of the screen, excluding areas
2394 reserved for the Mac menu, dock, and so forth.
2395
2396 The screen queried corresponds to DISPLAY, which should be either a
2397 frame, a display name (a string), or terminal ID. If omitted or nil,
2398 that stands for the selected frame's display. */)
2399 (display)
2400 Lisp_Object display;
2401 {
2402 int top;
2403 NSRect vScreen;
2404
2405 check_ns ();
2406 vScreen = [ns_get_screen (display) visibleFrame];
2407 top = vScreen.origin.y == 0.0 ?
2408 (int) [ns_get_screen (display) frame].size.height - vScreen.size.height : 0;
2409
2410 return list4 (make_number ((int) vScreen.origin.x),
2411 make_number (top),
2412 make_number ((int) vScreen.size.width),
2413 make_number ((int) vScreen.size.height));
2414 }
2415
2416
2417 DEFUN ("x-display-planes", Fx_display_planes, Sns_display_planes,
2418 0, 1, 0,
2419 doc: /* Returns the number of bitplanes of the Nextstep display DISPLAY.
2420 The optional argument DISPLAY specifies which display to ask about.
2421 DISPLAY should be either a frame, a display name (a string), or terminal ID.
2422 If omitted or nil, that stands for the selected frame's display. */)
2423 (display)
2424 Lisp_Object display;
2425 {
2426 check_ns ();
2427 return make_number
2428 (NSBitsPerSampleFromDepth ([ns_get_screen (display) depth]));
2429 }
2430
2431
2432 DEFUN ("x-display-color-cells", Fns_display_color_cells,
2433 Sns_display_color_cells, 0, 1, 0,
2434 doc: /* Returns the number of color cells of the Nextstep display DISPLAY.
2435 The optional argument DISPLAY specifies which display to ask about.
2436 DISPLAY should be either a frame, a display name (a string), or terminal ID.
2437 If omitted or nil, that stands for the selected frame's display. */)
2438 (display)
2439 Lisp_Object display;
2440 {
2441 check_ns ();
2442 struct ns_display_info *dpyinfo = check_ns_display_info (display);
2443
2444 /* We force 24+ bit depths to 24-bit to prevent an overflow. */
2445 return make_number (1 << min (dpyinfo->n_planes, 24));
2446 }
2447
2448
2449 /* Unused dummy def needed for compatibility. */
2450 Lisp_Object tip_frame;
2451
2452 /* TODO: move to xdisp or similar */
2453 static void
2454 compute_tip_xy (f, parms, dx, dy, width, height, root_x, root_y)
2455 struct frame *f;
2456 Lisp_Object parms, dx, dy;
2457 int width, height;
2458 int *root_x, *root_y;
2459 {
2460 Lisp_Object left, top;
2461 EmacsView *view = FRAME_NS_VIEW (f);
2462 NSPoint pt;
2463
2464 /* Start with user-specified or mouse position. */
2465 left = Fcdr (Fassq (Qleft, parms));
2466 if (INTEGERP (left))
2467 pt.x = XINT (left);
2468 else
2469 pt.x = last_mouse_motion_position.x;
2470 top = Fcdr (Fassq (Qtop, parms));
2471 if (INTEGERP (top))
2472 pt.y = XINT (top);
2473 else
2474 pt.y = last_mouse_motion_position.y;
2475
2476 /* Convert to screen coordinates */
2477 pt = [view convertPoint: pt toView: nil];
2478 pt = [[view window] convertBaseToScreen: pt];
2479
2480 /* Ensure in bounds. (Note, screen origin = lower left.) */
2481 if (pt.x + XINT (dx) <= 0)
2482 *root_x = 0; /* Can happen for negative dx */
2483 else if (pt.x + XINT (dx) + width <= FRAME_NS_DISPLAY_INFO (f)->width)
2484 /* It fits to the right of the pointer. */
2485 *root_x = pt.x + XINT (dx);
2486 else if (width + XINT (dx) <= pt.x)
2487 /* It fits to the left of the pointer. */
2488 *root_x = pt.x - width - XINT (dx);
2489 else
2490 /* Put it left justified on the screen -- it ought to fit that way. */
2491 *root_x = 0;
2492
2493 if (pt.y - XINT (dy) - height >= 0)
2494 /* It fits below the pointer. */
2495 *root_y = pt.y - height - XINT (dy);
2496 else if (pt.y + XINT (dy) + height <= FRAME_NS_DISPLAY_INFO (f)->height)
2497 /* It fits above the pointer */
2498 *root_y = pt.y + XINT (dy);
2499 else
2500 /* Put it on the top. */
2501 *root_y = FRAME_NS_DISPLAY_INFO (f)->height - height;
2502 }
2503
2504
2505 DEFUN ("x-show-tip", Fx_show_tip, Sx_show_tip, 1, 6, 0,
2506 doc: /* Show STRING in a "tooltip" window on frame FRAME.
2507 A tooltip window is a small window displaying a string.
2508
2509 FRAME nil or omitted means use the selected frame.
2510
2511 PARMS is an optional list of frame parameters which can be used to
2512 change the tooltip's appearance.
2513
2514 Automatically hide the tooltip after TIMEOUT seconds. TIMEOUT nil
2515 means use the default timeout of 5 seconds.
2516
2517 If the list of frame parameters PARMS contains a `left' parameter,
2518 the tooltip is displayed at that x-position. Otherwise it is
2519 displayed at the mouse position, with offset DX added (default is 5 if
2520 DX isn't specified). Likewise for the y-position; if a `top' frame
2521 parameter is specified, it determines the y-position of the tooltip
2522 window, otherwise it is displayed at the mouse position, with offset
2523 DY added (default is -10).
2524
2525 A tooltip's maximum size is specified by `x-max-tooltip-size'.
2526 Text larger than the specified size is clipped. */)
2527 (string, frame, parms, timeout, dx, dy)
2528 Lisp_Object string, frame, parms, timeout, dx, dy;
2529 {
2530 int root_x, root_y;
2531 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
2532 int count = SPECPDL_INDEX ();
2533 struct frame *f;
2534 char *str;
2535 NSSize size;
2536
2537 specbind (Qinhibit_redisplay, Qt);
2538
2539 GCPRO4 (string, parms, frame, timeout);
2540
2541 CHECK_STRING (string);
2542 str = SDATA (string);
2543 f = check_x_frame (frame);
2544 if (NILP (timeout))
2545 timeout = make_number (5);
2546 else
2547 CHECK_NATNUM (timeout);
2548
2549 if (NILP (dx))
2550 dx = make_number (5);
2551 else
2552 CHECK_NUMBER (dx);
2553
2554 if (NILP (dy))
2555 dy = make_number (-10);
2556 else
2557 CHECK_NUMBER (dy);
2558
2559 BLOCK_INPUT;
2560 if (ns_tooltip == nil)
2561 ns_tooltip = [[EmacsTooltip alloc] init];
2562 else
2563 Fx_hide_tip ();
2564
2565 [ns_tooltip setText: str];
2566 size = [ns_tooltip frame].size;
2567
2568 /* Move the tooltip window where the mouse pointer is. Resize and
2569 show it. */
2570 compute_tip_xy (f, parms, dx, dy, (int)size.width, (int)size.height,
2571 &root_x, &root_y);
2572
2573 [ns_tooltip showAtX: root_x Y: root_y for: XINT (timeout)];
2574 UNBLOCK_INPUT;
2575
2576 UNGCPRO;
2577 return unbind_to (count, Qnil);
2578 }
2579
2580
2581 DEFUN ("x-hide-tip", Fx_hide_tip, Sx_hide_tip, 0, 0, 0,
2582 doc: /* Hide the current tooltip window, if there is any.
2583 Value is t if tooltip was open, nil otherwise. */)
2584 ()
2585 {
2586 if (ns_tooltip == nil || ![ns_tooltip isActive])
2587 return Qnil;
2588 [ns_tooltip hide];
2589 return Qt;
2590 }
2591
2592
2593 /* ==========================================================================
2594
2595 Lisp interface declaration
2596
2597 ========================================================================== */
2598
2599
2600 void
2601 syms_of_nsfns ()
2602 {
2603 int i;
2604
2605 Qns_frame_parameter = intern ("ns-frame-parameter");
2606 staticpro (&Qns_frame_parameter);
2607 Qnone = intern ("none");
2608 staticpro (&Qnone);
2609 Qbuffered = intern ("bufferd");
2610 staticpro (&Qbuffered);
2611 Qfontsize = intern ("fontsize");
2612 staticpro (&Qfontsize);
2613
2614 DEFVAR_LISP ("ns-icon-type-alist", &Vns_icon_type_alist,
2615 doc: /* Alist of elements (REGEXP . IMAGE) for images of icons associated to frames.
2616 If the title of a frame matches REGEXP, then IMAGE.tiff is
2617 selected as the image of the icon representing the frame when it's
2618 miniaturized. If an element is t, then Emacs tries to select an icon
2619 based on the filetype of the visited file.
2620
2621 The images have to be installed in a folder called English.lproj in the
2622 Emacs folder. You have to restart Emacs after installing new icons.
2623
2624 Example: Install an icon Gnus.tiff and execute the following code
2625
2626 (setq ns-icon-type-alist
2627 (append ns-icon-type-alist
2628 '((\"^\\\\*\\\\(Group\\\\*$\\\\|Summary \\\\|Article\\\\*$\\\\)\"
2629 . \"Gnus\"))))
2630
2631 When you miniaturize a Group, Summary or Article frame, Gnus.tiff will
2632 be used as the image of the icon representing the frame. */);
2633 Vns_icon_type_alist = Fcons (Qt, Qnil);
2634
2635 defsubr (&Sns_read_file_name);
2636 defsubr (&Sns_get_resource);
2637 defsubr (&Sns_set_resource);
2638 defsubr (&Sxw_display_color_p); /* this and next called directly by C code */
2639 defsubr (&Sx_display_grayscale_p);
2640 defsubr (&Sns_list_fonts);
2641 defsubr (&Sns_font_name);
2642 defsubr (&Sns_list_colors);
2643 #ifdef NS_IMPL_COCOA
2644 defsubr (&Sdo_applescript);
2645 #endif
2646 defsubr (&Sns_color_defined_p);
2647 defsubr (&Sns_color_values);
2648 defsubr (&Sns_server_max_request_size);
2649 defsubr (&Sx_server_vendor);
2650 defsubr (&Sx_server_version);
2651 defsubr (&Sns_display_pixel_width);
2652 defsubr (&Sns_display_pixel_height);
2653 defsubr (&Sns_display_usable_bounds);
2654 defsubr (&Sx_display_mm_width);
2655 defsubr (&Sx_display_mm_height);
2656 defsubr (&Sx_display_screens);
2657 defsubr (&Sns_display_planes);
2658 defsubr (&Sns_display_color_cells);
2659 defsubr (&Sx_display_visual_class);
2660 defsubr (&Sx_display_backing_store);
2661 defsubr (&Sx_display_save_under);
2662 defsubr (&Sx_create_frame);
2663 defsubr (&Sns_set_alpha);
2664 defsubr (&Sx_open_connection);
2665 defsubr (&Sx_close_connection);
2666 defsubr (&Sx_display_list);
2667
2668 defsubr (&Sns_hide_others);
2669 defsubr (&Sns_hide_emacs);
2670 defsubr (&Sns_emacs_info_panel);
2671 defsubr (&Sns_list_services);
2672 defsubr (&Sns_perform_service);
2673 defsubr (&Sns_convert_utf8_nfd_to_nfc);
2674 defsubr (&Sx_focus_frame);
2675 defsubr (&Sns_popup_prefs_panel);
2676 defsubr (&Sns_popup_font_panel);
2677 defsubr (&Sns_popup_color_panel);
2678
2679 defsubr (&Sx_show_tip);
2680 defsubr (&Sx_hide_tip);
2681
2682 /* used only in fontset.c */
2683 check_window_system_func = check_ns;
2684
2685 }
2686
2687
2688
2689 /* ==========================================================================
2690
2691 Class implementations
2692
2693 ========================================================================== */
2694
2695
2696 @implementation EmacsSavePanel
2697 #ifdef NS_IMPL_COCOA
2698 /* --------------------------------------------------------------------------
2699 These are overridden to intercept on OS X: ending panel restarts NSApp
2700 event loop if it is stopped. Not sure if this is correct behavior,
2701 perhaps should check if running and if so send an appdefined.
2702 -------------------------------------------------------------------------- */
2703 - (void) ok: (id)sender
2704 {
2705 [super ok: sender];
2706 panelOK = 1;
2707 [NSApp stop: self];
2708 }
2709 - (void) cancel: (id)sender
2710 {
2711 [super cancel: sender];
2712 [NSApp stop: self];
2713 }
2714 #endif
2715 @end
2716
2717
2718 @implementation EmacsOpenPanel
2719 #ifdef NS_IMPL_COCOA
2720 /* --------------------------------------------------------------------------
2721 These are overridden to intercept on OS X: ending panel restarts NSApp
2722 event loop if it is stopped. Not sure if this is correct behavior,
2723 perhaps should check if running and if so send an appdefined.
2724 -------------------------------------------------------------------------- */
2725 - (void) ok: (id)sender
2726 {
2727 [super ok: sender];
2728 panelOK = 1;
2729 [NSApp stop: self];
2730 }
2731 - (void) cancel: (id)sender
2732 {
2733 [super cancel: sender];
2734 [NSApp stop: self];
2735 }
2736 #endif
2737 @end
2738
2739
2740 @implementation EmacsFileDelegate
2741 /* --------------------------------------------------------------------------
2742 Delegate methods for Open/Save panels
2743 -------------------------------------------------------------------------- */
2744 - (BOOL)panel: (id)sender isValidFilename: (NSString *)filename
2745 {
2746 return YES;
2747 }
2748 - (BOOL)panel: (id)sender shouldShowFilename: (NSString *)filename
2749 {
2750 return YES;
2751 }
2752 - (NSString *)panel: (id)sender userEnteredFilename: (NSString *)filename
2753 confirmed: (BOOL)okFlag
2754 {
2755 return filename;
2756 }
2757 @end
2758
2759 #endif
2760
2761 // arch-tag: dc2a3f74-1123-4daa-8eed-fb78db6a5642