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