Improve API of recently-added bool vector functions.
[bpt/emacs.git] / src / nsfns.m
1 /* Functions for the NeXT/Open/GNUstep and MacOSX window system.
2
3 Copyright (C) 1989, 1992-1994, 2005-2006, 2008-2013 Free Software
4 Foundation, Inc.
5
6 This file is part of GNU Emacs.
7
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
12
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20
21 /*
22 Originally by Carl Edman
23 Updated by Christian Limpach (chris@nice.ch)
24 OpenStep/Rhapsody port by Scott Bender (sbender@harmony-ds.com)
25 MacOSX/Aqua port by Christophe de Dinechin (descubes@earthlink.net)
26 GNUstep port and post-20 update by Adrian Robert (arobert@cogsci.ucsd.edu)
27 */
28
29 /* This should be the first include, as it may set up #defines affecting
30 interpretation of even the system includes. */
31 #include <config.h>
32
33 #include <math.h>
34 #include <c-strcase.h>
35
36 #include "lisp.h"
37 #include "blockinput.h"
38 #include "nsterm.h"
39 #include "window.h"
40 #include "character.h"
41 #include "buffer.h"
42 #include "keyboard.h"
43 #include "termhooks.h"
44 #include "fontset.h"
45 #include "font.h"
46
47 #ifdef NS_IMPL_COCOA
48 #include <IOKit/graphics/IOGraphicsLib.h>
49 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5
50 #include "macfont.h"
51 #endif
52 #endif
53
54 #if 0
55 int fns_trace_num = 1;
56 #define NSTRACE(x) fprintf (stderr, "%s:%d: [%d] " #x "\n", \
57 __FILE__, __LINE__, ++fns_trace_num)
58 #else
59 #define NSTRACE(x)
60 #endif
61
62 #ifdef HAVE_NS
63
64 extern NSArray *ns_send_types, *ns_return_types, *ns_drag_types;
65
66 extern Lisp_Object Qforeground_color;
67 extern Lisp_Object Qbackground_color;
68 extern Lisp_Object Qcursor_color;
69 extern Lisp_Object Qinternal_border_width;
70 extern Lisp_Object Qvisibility;
71 extern Lisp_Object Qcursor_type;
72 extern Lisp_Object Qicon_type;
73 extern Lisp_Object Qicon_name;
74 extern Lisp_Object Qicon_left;
75 extern Lisp_Object Qicon_top;
76 extern Lisp_Object Qleft;
77 extern Lisp_Object Qright;
78 extern Lisp_Object Qtop;
79 extern Lisp_Object Qdisplay;
80 extern Lisp_Object Qvertical_scroll_bars;
81 extern Lisp_Object Qauto_raise;
82 extern Lisp_Object Qauto_lower;
83 extern Lisp_Object Qbox;
84 extern Lisp_Object Qscroll_bar_width;
85 extern Lisp_Object Qx_resource_name;
86 extern Lisp_Object Qface_set_after_frame_default;
87 extern Lisp_Object Qunderline, Qundefined;
88 extern Lisp_Object Qheight, Qminibuffer, Qname, Qonly, Qwidth;
89 extern Lisp_Object Qunsplittable, Qmenu_bar_lines, Qbuffer_predicate, Qtitle;
90
91
92 Lisp_Object Qbuffered;
93 Lisp_Object Qfontsize;
94
95 EmacsTooltip *ns_tooltip = nil;
96
97 /* Need forward declaration here to preserve organizational integrity of file */
98 Lisp_Object Fx_open_connection (Lisp_Object, Lisp_Object, Lisp_Object);
99
100 /* Static variables to handle applescript execution. */
101 static Lisp_Object as_script, *as_result;
102 static int as_status;
103
104 #ifdef GLYPH_DEBUG
105 static ptrdiff_t image_cache_refcount;
106 #endif
107
108
109 /* ==========================================================================
110
111 Internal utility functions
112
113 ========================================================================== */
114
115 /* Let the user specify a Nextstep display with a Lisp object.
116 OBJECT may be nil, a frame or a terminal object.
117 nil stands for the selected frame--or, if that is not a Nextstep frame,
118 the first Nextstep display on the list. */
119
120 static struct ns_display_info *
121 check_ns_display_info (Lisp_Object object)
122 {
123 struct ns_display_info *dpyinfo = NULL;
124
125 if (NILP (object))
126 {
127 struct frame *sf = XFRAME (selected_frame);
128
129 if (FRAME_NS_P (sf) && FRAME_LIVE_P (sf))
130 dpyinfo = FRAME_DISPLAY_INFO (sf);
131 else if (x_display_list != 0)
132 dpyinfo = x_display_list;
133 else
134 error ("Nextstep windows are not in use or not initialized");
135 }
136 else if (TERMINALP (object))
137 {
138 struct terminal *t = get_terminal (object, 1);
139
140 if (t->type != output_ns)
141 error ("Terminal %d is not a Nextstep display", t->id);
142
143 dpyinfo = t->display_info.ns;
144 }
145 else if (STRINGP (object))
146 dpyinfo = ns_display_info_for_name (object);
147 else
148 {
149 struct frame *f = decode_window_system_frame (object);
150 dpyinfo = FRAME_DISPLAY_INFO (f);
151 }
152
153 return dpyinfo;
154 }
155
156
157 static id
158 ns_get_window (Lisp_Object maybeFrame)
159 {
160 id view =nil, window =nil;
161
162 if (!FRAMEP (maybeFrame) || !FRAME_NS_P (XFRAME (maybeFrame)))
163 maybeFrame = selected_frame;/*wrong_type_argument (Qframep, maybeFrame); */
164
165 if (!NILP (maybeFrame))
166 view = FRAME_NS_VIEW (XFRAME (maybeFrame));
167 if (view) window =[view window];
168
169 return window;
170 }
171
172
173 /* Return the X display structure for the display named NAME.
174 Open a new connection if necessary. */
175 struct ns_display_info *
176 ns_display_info_for_name (Lisp_Object name)
177 {
178 struct ns_display_info *dpyinfo;
179
180 CHECK_STRING (name);
181
182 for (dpyinfo = x_display_list; dpyinfo; dpyinfo = dpyinfo->next)
183 if (!NILP (Fstring_equal (XCAR (dpyinfo->name_list_element), name)))
184 return dpyinfo;
185
186 error ("Emacs for OpenStep does not yet support multi-display.");
187
188 Fx_open_connection (name, Qnil, Qnil);
189 dpyinfo = x_display_list;
190
191 if (dpyinfo == 0)
192 error ("OpenStep on %s not responding.\n", SDATA (name));
193
194 return dpyinfo;
195 }
196
197 static NSString *
198 ns_filename_from_panel (NSSavePanel *panel)
199 {
200 #if defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
201 NSURL *url = [panel URL];
202 NSString *str = [url path];
203 return str;
204 #else
205 return [panel filename];
206 #endif
207 }
208
209 static NSString *
210 ns_directory_from_panel (NSSavePanel *panel)
211 {
212 #if defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
213 NSURL *url = [panel directoryURL];
214 NSString *str = [url path];
215 return str;
216 #else
217 return [panel directory];
218 #endif
219 }
220
221 static Lisp_Object
222 interpret_services_menu (NSMenu *menu, Lisp_Object prefix, Lisp_Object old)
223 /* --------------------------------------------------------------------------
224 Turn the input menu (an NSMenu) into a lisp list for tracking on lisp side
225 -------------------------------------------------------------------------- */
226 {
227 int i, count;
228 NSMenuItem *item;
229 const char *name;
230 Lisp_Object nameStr;
231 unsigned short key;
232 NSString *keys;
233 Lisp_Object res;
234
235 count = [menu numberOfItems];
236 for (i = 0; i<count; i++)
237 {
238 item = [menu itemAtIndex: i];
239 name = [[item title] UTF8String];
240 if (!name) continue;
241
242 nameStr = build_string (name);
243
244 if ([item hasSubmenu])
245 {
246 old = interpret_services_menu ([item submenu],
247 Fcons (nameStr, prefix), old);
248 }
249 else
250 {
251 keys = [item keyEquivalent];
252 if (keys && [keys length] )
253 {
254 key = [keys characterAtIndex: 0];
255 res = make_number (key|super_modifier);
256 }
257 else
258 {
259 res = Qundefined;
260 }
261 old = Fcons (Fcons (res,
262 Freverse (Fcons (nameStr,
263 prefix))),
264 old);
265 }
266 }
267 return old;
268 }
269
270
271
272 /* ==========================================================================
273
274 Frame parameter setters
275
276 ========================================================================== */
277
278
279 static void
280 x_set_foreground_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
281 {
282 NSColor *col;
283 EmacsCGFloat r, g, b, alpha;
284
285 if (ns_lisp_to_color (arg, &col))
286 {
287 store_frame_param (f, Qforeground_color, oldval);
288 error ("Unknown color");
289 }
290
291 [col retain];
292 [f->output_data.ns->foreground_color release];
293 f->output_data.ns->foreground_color = col;
294
295 [col getRed: &r green: &g blue: &b alpha: &alpha];
296 FRAME_FOREGROUND_PIXEL (f) =
297 ARGB_TO_ULONG ((int)(alpha*0xff), (int)(r*0xff), (int)(g*0xff), (int)(b*0xff));
298
299 if (FRAME_NS_VIEW (f))
300 {
301 update_face_from_frame_parameter (f, Qforeground_color, arg);
302 /*recompute_basic_faces (f); */
303 if (FRAME_VISIBLE_P (f))
304 redraw_frame (f);
305 }
306 }
307
308
309 static void
310 x_set_background_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
311 {
312 struct face *face;
313 NSColor *col;
314 NSView *view = FRAME_NS_VIEW (f);
315 EmacsCGFloat r, g, b, alpha;
316
317 if (ns_lisp_to_color (arg, &col))
318 {
319 store_frame_param (f, Qbackground_color, oldval);
320 error ("Unknown color");
321 }
322
323 /* clear the frame; in some instances the NS-internal GC appears not to
324 update, or it does update and cannot clear old text properly */
325 if (FRAME_VISIBLE_P (f))
326 ns_clear_frame (f);
327
328 [col retain];
329 [f->output_data.ns->background_color release];
330 f->output_data.ns->background_color = col;
331
332 [col getRed: &r green: &g blue: &b alpha: &alpha];
333 FRAME_BACKGROUND_PIXEL (f) =
334 ARGB_TO_ULONG ((int)(alpha*0xff), (int)(r*0xff), (int)(g*0xff), (int)(b*0xff));
335
336 if (view != nil)
337 {
338 [[view window] setBackgroundColor: col];
339
340 if (alpha != (EmacsCGFloat) 1.0)
341 [[view window] setOpaque: NO];
342 else
343 [[view window] setOpaque: YES];
344
345 face = FRAME_DEFAULT_FACE (f);
346 if (face)
347 {
348 col = ns_lookup_indexed_color (NS_FACE_BACKGROUND (face), f);
349 face->background = ns_index_color
350 ([col colorWithAlphaComponent: alpha], f);
351
352 update_face_from_frame_parameter (f, Qbackground_color, arg);
353 }
354
355 if (FRAME_VISIBLE_P (f))
356 redraw_frame (f);
357 }
358 }
359
360
361 static void
362 x_set_cursor_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
363 {
364 NSColor *col;
365
366 if (ns_lisp_to_color (arg, &col))
367 {
368 store_frame_param (f, Qcursor_color, oldval);
369 error ("Unknown color");
370 }
371
372 [FRAME_CURSOR_COLOR (f) release];
373 FRAME_CURSOR_COLOR (f) = [col retain];
374
375 if (FRAME_VISIBLE_P (f))
376 {
377 x_update_cursor (f, 0);
378 x_update_cursor (f, 1);
379 }
380 update_face_from_frame_parameter (f, Qcursor_color, arg);
381 }
382
383
384 static void
385 x_set_icon_name (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
386 {
387 NSView *view = FRAME_NS_VIEW (f);
388 NSTRACE (x_set_icon_name);
389
390 /* see if it's changed */
391 if (STRINGP (arg))
392 {
393 if (STRINGP (oldval) && EQ (Fstring_equal (oldval, arg), Qt))
394 return;
395 }
396 else if (!STRINGP (oldval) && EQ (oldval, Qnil) == EQ (arg, Qnil))
397 return;
398
399 fset_icon_name (f, arg);
400
401 if (NILP (arg))
402 {
403 if (!NILP (f->title))
404 arg = f->title;
405 else
406 /* Explicit name and no icon-name -> explicit_name. */
407 if (f->explicit_name)
408 arg = f->name;
409 else
410 {
411 /* No explicit name and no icon-name ->
412 name has to be rebuild from icon_title_format. */
413 windows_or_buffers_changed = 62;
414 return;
415 }
416 }
417
418 /* Don't change the name if it's already NAME. */
419 if ([[view window] miniwindowTitle]
420 && ([[[view window] miniwindowTitle]
421 isEqualToString: [NSString stringWithUTF8String:
422 SSDATA (arg)]]))
423 return;
424
425 [[view window] setMiniwindowTitle:
426 [NSString stringWithUTF8String: SSDATA (arg)]];
427 }
428
429 static void
430 ns_set_name_internal (struct frame *f, Lisp_Object name)
431 {
432 struct gcpro gcpro1;
433 Lisp_Object encoded_name, encoded_icon_name;
434 NSString *str;
435 NSView *view = FRAME_NS_VIEW (f);
436
437 GCPRO1 (name);
438 encoded_name = ENCODE_UTF_8 (name);
439 UNGCPRO;
440
441 str = [NSString stringWithUTF8String: SSDATA (encoded_name)];
442
443 /* Don't change the name if it's already NAME. */
444 if (! [[[view window] title] isEqualToString: str])
445 [[view window] setTitle: str];
446
447 if (!STRINGP (f->icon_name))
448 encoded_icon_name = encoded_name;
449 else
450 encoded_icon_name = ENCODE_UTF_8 (f->icon_name);
451
452 str = [NSString stringWithUTF8String: SSDATA (encoded_icon_name)];
453
454 if ([[view window] miniwindowTitle]
455 && ! [[[view window] miniwindowTitle] isEqualToString: str])
456 [[view window] setMiniwindowTitle: str];
457
458 }
459
460 static void
461 ns_set_name (struct frame *f, Lisp_Object name, int explicit)
462 {
463 NSTRACE (ns_set_name);
464
465 /* Make sure that requests from lisp code override requests from
466 Emacs redisplay code. */
467 if (explicit)
468 {
469 /* If we're switching from explicit to implicit, we had better
470 update the mode lines and thereby update the title. */
471 if (f->explicit_name && NILP (name))
472 update_mode_lines = 21;
473
474 f->explicit_name = ! NILP (name);
475 }
476 else if (f->explicit_name)
477 return;
478
479 if (NILP (name))
480 name = build_string ([ns_app_name UTF8String]);
481 else
482 CHECK_STRING (name);
483
484 /* Don't change the name if it's already NAME. */
485 if (! NILP (Fstring_equal (name, f->name)))
486 return;
487
488 fset_name (f, name);
489
490 /* Title overrides explicit name. */
491 if (! NILP (f->title))
492 name = f->title;
493
494 ns_set_name_internal (f, name);
495 }
496
497
498 /* This function should be called when the user's lisp code has
499 specified a name for the frame; the name will override any set by the
500 redisplay code. */
501 static void
502 x_explicitly_set_name (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
503 {
504 NSTRACE (x_explicitly_set_name);
505 ns_set_name (f, arg, 1);
506 }
507
508
509 /* This function should be called by Emacs redisplay code to set the
510 name; names set this way will never override names set by the user's
511 lisp code. */
512 void
513 x_implicitly_set_name (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
514 {
515 NSTRACE (x_implicitly_set_name);
516
517 /* Deal with NS specific format t. */
518 if (FRAME_NS_P (f) && ((FRAME_ICONIFIED_P (f) && EQ (Vicon_title_format, Qt))
519 || EQ (Vframe_title_format, Qt)))
520 ns_set_name_as_filename (f);
521 else
522 ns_set_name (f, arg, 0);
523 }
524
525
526 /* Change the title of frame F to NAME.
527 If NAME is nil, use the frame name as the title. */
528
529 static void
530 x_set_title (struct frame *f, Lisp_Object name, Lisp_Object old_name)
531 {
532 NSTRACE (x_set_title);
533 /* Don't change the title if it's already NAME. */
534 if (EQ (name, f->title))
535 return;
536
537 update_mode_lines = 22;
538
539 fset_title (f, name);
540
541 if (NILP (name))
542 name = f->name;
543 else
544 CHECK_STRING (name);
545
546 ns_set_name_internal (f, name);
547 }
548
549
550 void
551 ns_set_name_as_filename (struct frame *f)
552 {
553 NSView *view;
554 Lisp_Object name, filename;
555 Lisp_Object buf = XWINDOW (f->selected_window)->contents;
556 const char *title;
557 NSAutoreleasePool *pool;
558 struct gcpro gcpro1;
559 Lisp_Object encoded_name, encoded_filename;
560 NSString *str;
561 NSTRACE (ns_set_name_as_filename);
562
563 if (f->explicit_name || ! NILP (f->title))
564 return;
565
566 block_input ();
567 pool = [[NSAutoreleasePool alloc] init];
568 filename = BVAR (XBUFFER (buf), filename);
569 name = BVAR (XBUFFER (buf), name);
570
571 if (NILP (name))
572 {
573 if (! NILP (filename))
574 name = Ffile_name_nondirectory (filename);
575 else
576 name = build_string ([ns_app_name UTF8String]);
577 }
578
579 GCPRO1 (name);
580 encoded_name = ENCODE_UTF_8 (name);
581 UNGCPRO;
582
583 view = FRAME_NS_VIEW (f);
584
585 title = FRAME_ICONIFIED_P (f) ? [[[view window] miniwindowTitle] UTF8String]
586 : [[[view window] title] UTF8String];
587
588 if (title && (! strcmp (title, SSDATA (encoded_name))))
589 {
590 [pool release];
591 unblock_input ();
592 return;
593 }
594
595 str = [NSString stringWithUTF8String: SSDATA (encoded_name)];
596 if (str == nil) str = @"Bad coding";
597
598 if (FRAME_ICONIFIED_P (f))
599 [[view window] setMiniwindowTitle: str];
600 else
601 {
602 NSString *fstr;
603
604 if (! NILP (filename))
605 {
606 GCPRO1 (filename);
607 encoded_filename = ENCODE_UTF_8 (filename);
608 UNGCPRO;
609
610 fstr = [NSString stringWithUTF8String: SSDATA (encoded_filename)];
611 if (fstr == nil) fstr = @"";
612 #ifdef NS_IMPL_COCOA
613 /* work around a bug observed on 10.3 and later where
614 setTitleWithRepresentedFilename does not clear out previous state
615 if given filename does not exist */
616 if (! [[NSFileManager defaultManager] fileExistsAtPath: fstr])
617 [[view window] setRepresentedFilename: @""];
618 #endif
619 }
620 else
621 fstr = @"";
622
623 [[view window] setRepresentedFilename: fstr];
624 [[view window] setTitle: str];
625 fset_name (f, name);
626 }
627
628 [pool release];
629 unblock_input ();
630 }
631
632
633 void
634 ns_set_doc_edited (struct frame *f, Lisp_Object arg)
635 {
636 NSView *view = FRAME_NS_VIEW (f);
637 NSAutoreleasePool *pool;
638 if (!MINI_WINDOW_P (XWINDOW (f->selected_window)))
639 {
640 block_input ();
641 pool = [[NSAutoreleasePool alloc] init];
642 [[view window] setDocumentEdited: !NILP (arg)];
643 [pool release];
644 unblock_input ();
645 }
646 }
647
648
649 void
650 x_set_menu_bar_lines (struct frame *f, Lisp_Object value, Lisp_Object oldval)
651 {
652 int nlines;
653 if (FRAME_MINIBUF_ONLY_P (f))
654 return;
655
656 if (TYPE_RANGED_INTEGERP (int, value))
657 nlines = XINT (value);
658 else
659 nlines = 0;
660
661 FRAME_MENU_BAR_LINES (f) = 0;
662 if (nlines)
663 {
664 FRAME_EXTERNAL_MENU_BAR (f) = 1;
665 /* does for all frames, whereas we just want for one frame
666 [NSMenu setMenuBarVisible: YES]; */
667 }
668 else
669 {
670 if (FRAME_EXTERNAL_MENU_BAR (f) == 1)
671 free_frame_menubar (f);
672 /* [NSMenu setMenuBarVisible: NO]; */
673 FRAME_EXTERNAL_MENU_BAR (f) = 0;
674 }
675 }
676
677
678 /* toolbar support */
679 void
680 x_set_tool_bar_lines (struct frame *f, Lisp_Object value, Lisp_Object oldval)
681 {
682 int nlines;
683
684 if (FRAME_MINIBUF_ONLY_P (f))
685 return;
686
687 if (RANGED_INTEGERP (0, value, INT_MAX))
688 nlines = XFASTINT (value);
689 else
690 nlines = 0;
691
692 if (nlines)
693 {
694 FRAME_EXTERNAL_TOOL_BAR (f) = 1;
695 update_frame_tool_bar (f);
696 }
697 else
698 {
699 if (FRAME_EXTERNAL_TOOL_BAR (f))
700 {
701 free_frame_tool_bar (f);
702 FRAME_EXTERNAL_TOOL_BAR (f) = 0;
703 }
704 }
705
706 x_set_window_size (f, 0, f->text_cols, f->text_lines);
707 }
708
709
710 static void
711 ns_implicitly_set_icon_type (struct frame *f)
712 {
713 Lisp_Object tem;
714 EmacsView *view = FRAME_NS_VIEW (f);
715 id image = nil;
716 Lisp_Object chain, elt;
717 NSAutoreleasePool *pool;
718 BOOL setMini = YES;
719
720 NSTRACE (ns_implicitly_set_icon_type);
721
722 block_input ();
723 pool = [[NSAutoreleasePool alloc] init];
724 if (f->output_data.ns->miniimage
725 && [[NSString stringWithUTF8String: SSDATA (f->name)]
726 isEqualToString: [(NSImage *)f->output_data.ns->miniimage name]])
727 {
728 [pool release];
729 unblock_input ();
730 return;
731 }
732
733 tem = assq_no_quit (Qicon_type, f->param_alist);
734 if (CONSP (tem) && ! NILP (XCDR (tem)))
735 {
736 [pool release];
737 unblock_input ();
738 return;
739 }
740
741 for (chain = Vns_icon_type_alist;
742 image == nil && CONSP (chain);
743 chain = XCDR (chain))
744 {
745 elt = XCAR (chain);
746 /* special case: 't' means go by file type */
747 if (SYMBOLP (elt) && EQ (elt, Qt) && SSDATA (f->name)[0] == '/')
748 {
749 NSString *str
750 = [NSString stringWithUTF8String: SSDATA (f->name)];
751 if ([[NSFileManager defaultManager] fileExistsAtPath: str])
752 image = [[[NSWorkspace sharedWorkspace] iconForFile: str] retain];
753 }
754 else if (CONSP (elt) &&
755 STRINGP (XCAR (elt)) &&
756 STRINGP (XCDR (elt)) &&
757 fast_string_match (XCAR (elt), f->name) >= 0)
758 {
759 image = [EmacsImage allocInitFromFile: XCDR (elt)];
760 if (image == nil)
761 image = [[NSImage imageNamed:
762 [NSString stringWithUTF8String:
763 SSDATA (XCDR (elt))]] retain];
764 }
765 }
766
767 if (image == nil)
768 {
769 image = [[[NSWorkspace sharedWorkspace] iconForFileType: @"text"] retain];
770 setMini = NO;
771 }
772
773 [f->output_data.ns->miniimage release];
774 f->output_data.ns->miniimage = image;
775 [view setMiniwindowImage: setMini];
776 [pool release];
777 unblock_input ();
778 }
779
780
781 static void
782 x_set_icon_type (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
783 {
784 EmacsView *view = FRAME_NS_VIEW (f);
785 id image = nil;
786 BOOL setMini = YES;
787
788 NSTRACE (x_set_icon_type);
789
790 if (!NILP (arg) && SYMBOLP (arg))
791 {
792 arg =build_string (SSDATA (SYMBOL_NAME (arg)));
793 store_frame_param (f, Qicon_type, arg);
794 }
795
796 /* do it the implicit way */
797 if (NILP (arg))
798 {
799 ns_implicitly_set_icon_type (f);
800 return;
801 }
802
803 CHECK_STRING (arg);
804
805 image = [EmacsImage allocInitFromFile: arg];
806 if (image == nil)
807 image =[NSImage imageNamed: [NSString stringWithUTF8String:
808 SSDATA (arg)]];
809
810 if (image == nil)
811 {
812 image = [NSImage imageNamed: @"text"];
813 setMini = NO;
814 }
815
816 f->output_data.ns->miniimage = image;
817 [view setMiniwindowImage: setMini];
818 }
819
820
821 /* TODO: move to nsterm? */
822 int
823 ns_lisp_to_cursor_type (Lisp_Object arg)
824 {
825 char *str;
826 if (XTYPE (arg) == Lisp_String)
827 str = SSDATA (arg);
828 else if (XTYPE (arg) == Lisp_Symbol)
829 str = SSDATA (SYMBOL_NAME (arg));
830 else return -1;
831 if (!strcmp (str, "box")) return FILLED_BOX_CURSOR;
832 if (!strcmp (str, "hollow")) return HOLLOW_BOX_CURSOR;
833 if (!strcmp (str, "hbar")) return HBAR_CURSOR;
834 if (!strcmp (str, "bar")) return BAR_CURSOR;
835 if (!strcmp (str, "no")) return NO_CURSOR;
836 return -1;
837 }
838
839
840 Lisp_Object
841 ns_cursor_type_to_lisp (int arg)
842 {
843 switch (arg)
844 {
845 case FILLED_BOX_CURSOR: return Qbox;
846 case HOLLOW_BOX_CURSOR: return intern ("hollow");
847 case HBAR_CURSOR: return intern ("hbar");
848 case BAR_CURSOR: return intern ("bar");
849 case NO_CURSOR:
850 default: return intern ("no");
851 }
852 }
853
854 /* This is the same as the xfns.c definition. */
855 static void
856 x_set_cursor_type (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
857 {
858 set_frame_cursor_types (f, arg);
859 }
860
861 /* called to set mouse pointer color, but all other terms use it to
862 initialize pointer types (and don't set the color ;) */
863 static void
864 x_set_mouse_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
865 {
866 /* don't think we can do this on Nextstep */
867 }
868
869
870 #define Str(x) #x
871 #define Xstr(x) Str(x)
872
873 static Lisp_Object
874 ns_appkit_version_str (void)
875 {
876 char tmp[80];
877
878 #ifdef NS_IMPL_GNUSTEP
879 sprintf(tmp, "gnustep-gui-%s", Xstr(GNUSTEP_GUI_VERSION));
880 #elif defined (NS_IMPL_COCOA)
881 sprintf(tmp, "apple-appkit-%.2f", NSAppKitVersionNumber);
882 #else
883 tmp = "ns-unknown";
884 #endif
885 return build_string (tmp);
886 }
887
888
889 /* This is for use by x-server-version and collapses all version info we
890 have into a single int. For a better picture of the implementation
891 running, use ns_appkit_version_str.*/
892 static int
893 ns_appkit_version_int (void)
894 {
895 #ifdef NS_IMPL_GNUSTEP
896 return GNUSTEP_GUI_MAJOR_VERSION * 100 + GNUSTEP_GUI_MINOR_VERSION;
897 #elif defined (NS_IMPL_COCOA)
898 return (int)NSAppKitVersionNumber;
899 #endif
900 return 0;
901 }
902
903
904 static void
905 x_icon (struct frame *f, Lisp_Object parms)
906 /* --------------------------------------------------------------------------
907 Strangely-named function to set icon position parameters in frame.
908 This is irrelevant under OS X, but might be needed under GNUstep,
909 depending on the window manager used. Note, this is not a standard
910 frame parameter-setter; it is called directly from x-create-frame.
911 -------------------------------------------------------------------------- */
912 {
913 Lisp_Object icon_x, icon_y;
914 struct ns_display_info *dpyinfo = check_ns_display_info (Qnil);
915
916 f->output_data.ns->icon_top = Qnil;
917 f->output_data.ns->icon_left = Qnil;
918
919 /* Set the position of the icon. */
920 icon_x = x_get_arg (dpyinfo, parms, Qicon_left, 0, 0, RES_TYPE_NUMBER);
921 icon_y = x_get_arg (dpyinfo, parms, Qicon_top, 0, 0, RES_TYPE_NUMBER);
922 if (!EQ (icon_x, Qunbound) && !EQ (icon_y, Qunbound))
923 {
924 CHECK_NUMBER (icon_x);
925 CHECK_NUMBER (icon_y);
926 f->output_data.ns->icon_top = icon_y;
927 f->output_data.ns->icon_left = icon_x;
928 }
929 else if (!EQ (icon_x, Qunbound) || !EQ (icon_y, Qunbound))
930 error ("Both left and top icon corners of icon must be specified");
931 }
932
933
934 /* Note: see frame.c for template, also where generic functions are impl */
935 frame_parm_handler ns_frame_parm_handlers[] =
936 {
937 x_set_autoraise, /* generic OK */
938 x_set_autolower, /* generic OK */
939 x_set_background_color,
940 0, /* x_set_border_color, may be impossible under Nextstep */
941 0, /* x_set_border_width, may be impossible under Nextstep */
942 x_set_cursor_color,
943 x_set_cursor_type,
944 x_set_font, /* generic OK */
945 x_set_foreground_color,
946 x_set_icon_name,
947 x_set_icon_type,
948 x_set_internal_border_width, /* generic OK */
949 x_set_menu_bar_lines,
950 x_set_mouse_color,
951 x_explicitly_set_name,
952 x_set_scroll_bar_width, /* generic OK */
953 x_set_title,
954 x_set_unsplittable, /* generic OK */
955 x_set_vertical_scroll_bars, /* generic OK */
956 x_set_visibility, /* generic OK */
957 x_set_tool_bar_lines,
958 0, /* x_set_scroll_bar_foreground, will ignore (not possible on NS) */
959 0, /* x_set_scroll_bar_background, will ignore (not possible on NS) */
960 x_set_screen_gamma, /* generic OK */
961 x_set_line_spacing, /* generic OK, sets f->extra_line_spacing to int */
962 x_set_fringe_width, /* generic OK */
963 x_set_fringe_width, /* generic OK */
964 0, /* x_set_wait_for_wm, will ignore */
965 x_set_fullscreen, /* generic OK */
966 x_set_font_backend, /* generic OK */
967 x_set_alpha,
968 0, /* x_set_sticky */
969 0, /* x_set_tool_bar_position */
970 };
971
972
973 /* Handler for signals raised during x_create_frame.
974 FRAME is the frame which is partially constructed. */
975
976 static void
977 unwind_create_frame (Lisp_Object frame)
978 {
979 struct frame *f = XFRAME (frame);
980
981 /* If frame is already dead, nothing to do. This can happen if the
982 display is disconnected after the frame has become official, but
983 before x_create_frame removes the unwind protect. */
984 if (!FRAME_LIVE_P (f))
985 return;
986
987 /* If frame is ``official'', nothing to do. */
988 if (NILP (Fmemq (frame, Vframe_list)))
989 {
990 #if defined GLYPH_DEBUG && defined ENABLE_CHECKING
991 struct ns_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
992 #endif
993
994 x_free_frame_resources (f);
995 free_glyphs (f);
996
997 #ifdef GLYPH_DEBUG
998 /* Check that reference counts are indeed correct. */
999 eassert (dpyinfo->terminal->image_cache->refcount == image_cache_refcount);
1000 #endif
1001 }
1002 }
1003
1004 /*
1005 * Read geometry related parameters from preferences if not in PARMS.
1006 * Returns the union of parms and any preferences read.
1007 */
1008
1009 static Lisp_Object
1010 get_geometry_from_preferences (struct ns_display_info *dpyinfo,
1011 Lisp_Object parms)
1012 {
1013 struct {
1014 const char *val;
1015 const char *cls;
1016 Lisp_Object tem;
1017 } r[] = {
1018 { "width", "Width", Qwidth },
1019 { "height", "Height", Qheight },
1020 { "left", "Left", Qleft },
1021 { "top", "Top", Qtop },
1022 };
1023
1024 int i;
1025 for (i = 0; i < sizeof (r)/sizeof (r[0]); ++i)
1026 {
1027 if (NILP (Fassq (r[i].tem, parms)))
1028 {
1029 Lisp_Object value
1030 = x_get_arg (dpyinfo, parms, r[i].tem, r[i].val, r[i].cls,
1031 RES_TYPE_NUMBER);
1032 if (! EQ (value, Qunbound))
1033 parms = Fcons (Fcons (r[i].tem, value), parms);
1034 }
1035 }
1036
1037 return parms;
1038 }
1039
1040 /* ==========================================================================
1041
1042 Lisp definitions
1043
1044 ========================================================================== */
1045
1046 DEFUN ("x-create-frame", Fx_create_frame, Sx_create_frame,
1047 1, 1, 0,
1048 doc: /* Make a new Nextstep window, called a "frame" in Emacs terms.
1049 Return an Emacs frame object.
1050 PARMS is an alist of frame parameters.
1051 If the parameters specify that the frame should not have a minibuffer,
1052 and do not specify a specific minibuffer window to use,
1053 then `default-minibuffer-frame' must be a frame whose minibuffer can
1054 be shared by the new frame.
1055
1056 This function is an internal primitive--use `make-frame' instead. */)
1057 (Lisp_Object parms)
1058 {
1059 struct frame *f;
1060 Lisp_Object frame, tem;
1061 Lisp_Object name;
1062 int minibuffer_only = 0;
1063 long window_prompting = 0;
1064 int width, height;
1065 ptrdiff_t count = specpdl_ptr - specpdl;
1066 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
1067 Lisp_Object display;
1068 struct ns_display_info *dpyinfo = NULL;
1069 Lisp_Object parent;
1070 struct kboard *kb;
1071 static int desc_ctr = 1;
1072
1073 /* x_get_arg modifies parms. */
1074 parms = Fcopy_alist (parms);
1075
1076 /* Use this general default value to start with
1077 until we know if this frame has a specified name. */
1078 Vx_resource_name = Vinvocation_name;
1079
1080 display = x_get_arg (dpyinfo, parms, Qterminal, 0, 0, RES_TYPE_STRING);
1081 if (EQ (display, Qunbound))
1082 display = Qnil;
1083 dpyinfo = check_ns_display_info (display);
1084 kb = dpyinfo->terminal->kboard;
1085
1086 if (!dpyinfo->terminal->name)
1087 error ("Terminal is not live, can't create new frames on it");
1088
1089 name = x_get_arg (dpyinfo, parms, Qname, 0, 0, RES_TYPE_STRING);
1090 if (!STRINGP (name)
1091 && ! EQ (name, Qunbound)
1092 && ! NILP (name))
1093 error ("Invalid frame name--not a string or nil");
1094
1095 if (STRINGP (name))
1096 Vx_resource_name = name;
1097
1098 parent = x_get_arg (dpyinfo, parms, Qparent_id, 0, 0, RES_TYPE_NUMBER);
1099 if (EQ (parent, Qunbound))
1100 parent = Qnil;
1101 if (! NILP (parent))
1102 CHECK_NUMBER (parent);
1103
1104 /* make_frame_without_minibuffer can run Lisp code and garbage collect. */
1105 /* No need to protect DISPLAY because that's not used after passing
1106 it to make_frame_without_minibuffer. */
1107 frame = Qnil;
1108 GCPRO4 (parms, parent, name, frame);
1109 tem = x_get_arg (dpyinfo, parms, Qminibuffer, "minibuffer", "Minibuffer",
1110 RES_TYPE_SYMBOL);
1111 if (EQ (tem, Qnone) || NILP (tem))
1112 f = make_frame_without_minibuffer (Qnil, kb, display);
1113 else if (EQ (tem, Qonly))
1114 {
1115 f = make_minibuffer_frame ();
1116 minibuffer_only = 1;
1117 }
1118 else if (WINDOWP (tem))
1119 f = make_frame_without_minibuffer (tem, kb, display);
1120 else
1121 f = make_frame (1);
1122
1123 XSETFRAME (frame, f);
1124
1125 f->terminal = dpyinfo->terminal;
1126
1127 f->output_method = output_ns;
1128 f->output_data.ns = xzalloc (sizeof *f->output_data.ns);
1129
1130 FRAME_FONTSET (f) = -1;
1131
1132 fset_icon_name (f, x_get_arg (dpyinfo, parms, Qicon_name,
1133 "iconName", "Title",
1134 RES_TYPE_STRING));
1135 if (! STRINGP (f->icon_name))
1136 fset_icon_name (f, Qnil);
1137
1138 FRAME_DISPLAY_INFO (f) = dpyinfo;
1139
1140 /* With FRAME_DISPLAY_INFO set up, this unwind-protect is safe. */
1141 record_unwind_protect (unwind_create_frame, frame);
1142
1143 f->output_data.ns->window_desc = desc_ctr++;
1144 if (TYPE_RANGED_INTEGERP (Window, parent))
1145 {
1146 f->output_data.ns->parent_desc = XFASTINT (parent);
1147 f->output_data.ns->explicit_parent = 1;
1148 }
1149 else
1150 {
1151 f->output_data.ns->parent_desc = FRAME_DISPLAY_INFO (f)->root_window;
1152 f->output_data.ns->explicit_parent = 0;
1153 }
1154
1155 /* Set the name; the functions to which we pass f expect the name to
1156 be set. */
1157 if (EQ (name, Qunbound) || NILP (name) || ! STRINGP (name))
1158 {
1159 fset_name (f, build_string ([ns_app_name UTF8String]));
1160 f->explicit_name = 0;
1161 }
1162 else
1163 {
1164 fset_name (f, name);
1165 f->explicit_name = 1;
1166 specbind (Qx_resource_name, name);
1167 }
1168
1169 block_input ();
1170
1171 #ifdef NS_IMPL_COCOA
1172 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5
1173 if (CTGetCoreTextVersion != NULL
1174 && CTGetCoreTextVersion () >= kCTVersionNumber10_5)
1175 mac_register_font_driver (f);
1176 #endif
1177 #endif
1178 register_font_driver (&nsfont_driver, f);
1179
1180 x_default_parameter (f, parms, Qfont_backend, Qnil,
1181 "fontBackend", "FontBackend", RES_TYPE_STRING);
1182
1183 {
1184 /* use for default font name */
1185 id font = [NSFont userFixedPitchFontOfSize: -1.0]; /* default */
1186 x_default_parameter (f, parms, Qfontsize,
1187 make_number (0 /*(int)[font pointSize]*/),
1188 "fontSize", "FontSize", RES_TYPE_NUMBER);
1189 // Remove ' Regular', not handled by backends.
1190 char *fontname = xstrdup ([[font displayName] UTF8String]);
1191 int len = strlen (fontname);
1192 if (len > 8 && strcmp (fontname + len - 8, " Regular") == 0)
1193 fontname[len-8] = '\0';
1194 x_default_parameter (f, parms, Qfont,
1195 build_string (fontname),
1196 "font", "Font", RES_TYPE_STRING);
1197 xfree (fontname);
1198 }
1199 unblock_input ();
1200
1201 x_default_parameter (f, parms, Qborder_width, make_number (0),
1202 "borderwidth", "BorderWidth", RES_TYPE_NUMBER);
1203 x_default_parameter (f, parms, Qinternal_border_width, make_number (2),
1204 "internalBorderWidth", "InternalBorderWidth",
1205 RES_TYPE_NUMBER);
1206
1207 /* default scrollbars on right on Mac */
1208 {
1209 Lisp_Object spos
1210 #ifdef NS_IMPL_GNUSTEP
1211 = Qt;
1212 #else
1213 = Qright;
1214 #endif
1215 x_default_parameter (f, parms, Qvertical_scroll_bars, spos,
1216 "verticalScrollBars", "VerticalScrollBars",
1217 RES_TYPE_SYMBOL);
1218 }
1219 x_default_parameter (f, parms, Qforeground_color, build_string ("Black"),
1220 "foreground", "Foreground", RES_TYPE_STRING);
1221 x_default_parameter (f, parms, Qbackground_color, build_string ("White"),
1222 "background", "Background", RES_TYPE_STRING);
1223 /* FIXME: not supported yet in Nextstep */
1224 x_default_parameter (f, parms, Qline_spacing, Qnil,
1225 "lineSpacing", "LineSpacing", RES_TYPE_NUMBER);
1226 x_default_parameter (f, parms, Qleft_fringe, Qnil,
1227 "leftFringe", "LeftFringe", RES_TYPE_NUMBER);
1228 x_default_parameter (f, parms, Qright_fringe, Qnil,
1229 "rightFringe", "RightFringe", RES_TYPE_NUMBER);
1230
1231 #ifdef GLYPH_DEBUG
1232 image_cache_refcount =
1233 FRAME_IMAGE_CACHE (f) ? FRAME_IMAGE_CACHE (f)->refcount : 0;
1234 #endif
1235
1236 init_frame_faces (f);
1237
1238 /* The 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 parms = get_geometry_from_preferences (dpyinfo, parms);
1256 window_prompting = x_figure_window_size (f, parms, 1);
1257
1258 tem = x_get_arg (dpyinfo, parms, Qunsplittable, 0, 0, RES_TYPE_BOOLEAN);
1259 f->no_split = minibuffer_only || (!EQ (tem, Qunbound) && !EQ (tem, Qnil));
1260
1261 /* NOTE: on other terms, this is done in set_mouse_color, however this
1262 was not getting called under Nextstep */
1263 f->output_data.ns->text_cursor = [NSCursor IBeamCursor];
1264 f->output_data.ns->nontext_cursor = [NSCursor arrowCursor];
1265 f->output_data.ns->modeline_cursor = [NSCursor pointingHandCursor];
1266 f->output_data.ns->hand_cursor = [NSCursor pointingHandCursor];
1267 f->output_data.ns->hourglass_cursor = [NSCursor disappearingItemCursor];
1268 f->output_data.ns->horizontal_drag_cursor = [NSCursor resizeLeftRightCursor];
1269 FRAME_DISPLAY_INFO (f)->vertical_scroll_bar_cursor
1270 = [NSCursor arrowCursor];
1271 f->output_data.ns->current_pointer = f->output_data.ns->text_cursor;
1272
1273 [[EmacsView alloc] initFrameFromEmacs: f];
1274
1275 x_icon (f, parms);
1276
1277 /* ns_display_info does not have a reference_count. */
1278 f->terminal->reference_count++;
1279
1280 /* It is now ok to make the frame official even if we get an error below.
1281 The frame needs to be on Vframe_list or making it visible won't work. */
1282 Vframe_list = Fcons (frame, Vframe_list);
1283
1284 x_default_parameter (f, parms, Qicon_type, Qnil,
1285 "bitmapIcon", "BitmapIcon", RES_TYPE_SYMBOL);
1286
1287 x_default_parameter (f, parms, Qauto_raise, Qnil,
1288 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN);
1289 x_default_parameter (f, parms, Qauto_lower, Qnil,
1290 "autoLower", "AutoLower", RES_TYPE_BOOLEAN);
1291 x_default_parameter (f, parms, Qcursor_type, Qbox,
1292 "cursorType", "CursorType", RES_TYPE_SYMBOL);
1293 x_default_parameter (f, parms, Qscroll_bar_width, Qnil,
1294 "scrollBarWidth", "ScrollBarWidth",
1295 RES_TYPE_NUMBER);
1296 x_default_parameter (f, parms, Qalpha, Qnil,
1297 "alpha", "Alpha", RES_TYPE_NUMBER);
1298 x_default_parameter (f, parms, Qfullscreen, Qnil,
1299 "fullscreen", "Fullscreen", RES_TYPE_SYMBOL);
1300
1301 width = FRAME_COLS (f);
1302 height = FRAME_LINES (f);
1303
1304 SET_FRAME_COLS (f, 0);
1305 FRAME_LINES (f) = 0;
1306 change_frame_size (f, height, width, 1, 0, 0);
1307
1308 if (! f->output_data.ns->explicit_parent)
1309 {
1310 Lisp_Object visibility;
1311
1312 visibility = x_get_arg (dpyinfo, parms, Qvisibility, 0, 0,
1313 RES_TYPE_SYMBOL);
1314 if (EQ (visibility, Qunbound))
1315 visibility = Qt;
1316
1317 if (EQ (visibility, Qicon))
1318 x_iconify_frame (f);
1319 else if (! NILP (visibility))
1320 {
1321 x_make_frame_visible (f);
1322 [[FRAME_NS_VIEW (f) window] makeKeyWindow];
1323 }
1324 else
1325 {
1326 /* Must have been Qnil. */
1327 }
1328 }
1329
1330 if (FRAME_HAS_MINIBUF_P (f)
1331 && (!FRAMEP (KVAR (kb, Vdefault_minibuffer_frame))
1332 || !FRAME_LIVE_P (XFRAME (KVAR (kb, Vdefault_minibuffer_frame)))))
1333 kset_default_minibuffer_frame (kb, frame);
1334
1335 /* All remaining specified parameters, which have not been "used"
1336 by x_get_arg and friends, now go in the misc. alist of the frame. */
1337 for (tem = parms; CONSP (tem); tem = XCDR (tem))
1338 if (CONSP (XCAR (tem)) && !NILP (XCAR (XCAR (tem))))
1339 fset_param_alist (f, Fcons (XCAR (tem), f->param_alist));
1340
1341 UNGCPRO;
1342
1343 if (window_prompting & USPosition)
1344 x_set_offset (f, f->left_pos, f->top_pos, 1);
1345
1346 /* Make sure windows on this frame appear in calls to next-window
1347 and similar functions. */
1348 Vwindow_list = Qnil;
1349
1350 return unbind_to (count, frame);
1351 }
1352
1353 void
1354 x_focus_frame (struct frame *f)
1355 {
1356 struct ns_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
1357
1358 if (dpyinfo->x_focus_frame != f)
1359 {
1360 EmacsView *view = FRAME_NS_VIEW (f);
1361 block_input ();
1362 [NSApp activateIgnoringOtherApps: YES];
1363 [[view window] makeKeyAndOrderFront: view];
1364 unblock_input ();
1365 }
1366 }
1367
1368
1369 DEFUN ("ns-popup-font-panel", Fns_popup_font_panel, Sns_popup_font_panel,
1370 0, 1, "",
1371 doc: /* Pop up the font panel. */)
1372 (Lisp_Object frame)
1373 {
1374 struct frame *f = decode_window_system_frame (frame);
1375 id fm = [NSFontManager sharedFontManager];
1376 struct font *font = f->output_data.ns->font;
1377 NSFont *nsfont;
1378 if (EQ (font->driver->type, Qns))
1379 nsfont = ((struct nsfont_info *)font)->nsfont;
1380 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5
1381 else
1382 nsfont = (NSFont *) macfont_get_nsctfont (font);
1383 #endif
1384 [fm setSelectedFont: nsfont isMultiple: NO];
1385 [fm orderFrontFontPanel: NSApp];
1386 return Qnil;
1387 }
1388
1389
1390 DEFUN ("ns-popup-color-panel", Fns_popup_color_panel, Sns_popup_color_panel,
1391 0, 1, "",
1392 doc: /* Pop up the color panel. */)
1393 (Lisp_Object frame)
1394 {
1395 check_window_system (NULL);
1396 [NSApp orderFrontColorPanel: NSApp];
1397 return Qnil;
1398 }
1399
1400 static struct
1401 {
1402 id panel;
1403 BOOL ret;
1404 #if ! defined (NS_IMPL_COCOA) || \
1405 MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_6
1406 NSString *dirS, *initS;
1407 BOOL no_types;
1408 #endif
1409 } ns_fd_data;
1410
1411 void
1412 ns_run_file_dialog (void)
1413 {
1414 if (ns_fd_data.panel == nil) return;
1415 #if defined (NS_IMPL_COCOA) && \
1416 MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
1417 ns_fd_data.ret = [ns_fd_data.panel runModal];
1418 #else
1419 if (ns_fd_data.no_types)
1420 {
1421 ns_fd_data.ret = [ns_fd_data.panel
1422 runModalForDirectory: ns_fd_data.dirS
1423 file: ns_fd_data.initS];
1424 }
1425 else
1426 {
1427 ns_fd_data.ret = [ns_fd_data.panel
1428 runModalForDirectory: ns_fd_data.dirS
1429 file: ns_fd_data.initS
1430 types: nil];
1431 }
1432 #endif
1433 ns_fd_data.panel = nil;
1434 }
1435
1436 DEFUN ("ns-read-file-name", Fns_read_file_name, Sns_read_file_name, 1, 5, 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 MUSTMATCH, if non-nil, means the returned file or
1440 directory must exist.
1441 Optional arg INIT, if non-nil, provides a default file name to use.
1442 Optional arg DIR_ONLY_P, if non-nil, means choose only directories. */)
1443 (Lisp_Object prompt, Lisp_Object dir, Lisp_Object mustmatch,
1444 Lisp_Object init, Lisp_Object dir_only_p)
1445 {
1446 static id fileDelegate = nil;
1447 BOOL ret;
1448 BOOL isSave = NILP (mustmatch) && NILP (dir_only_p);
1449 id panel;
1450 Lisp_Object fname;
1451
1452 NSString *promptS = NILP (prompt) || !STRINGP (prompt) ? nil :
1453 [NSString stringWithUTF8String: SSDATA (prompt)];
1454 NSString *dirS = NILP (dir) || !STRINGP (dir) ?
1455 [NSString stringWithUTF8String: SSDATA (BVAR (current_buffer, directory))] :
1456 [NSString stringWithUTF8String: SSDATA (dir)];
1457 NSString *initS = NILP (init) || !STRINGP (init) ? nil :
1458 [NSString stringWithUTF8String: SSDATA (init)];
1459 NSEvent *nxev;
1460
1461 check_window_system (NULL);
1462
1463 if (fileDelegate == nil)
1464 fileDelegate = [EmacsFileDelegate new];
1465
1466 [NSCursor setHiddenUntilMouseMoves: NO];
1467
1468 if ([dirS characterAtIndex: 0] == '~')
1469 dirS = [dirS stringByExpandingTildeInPath];
1470
1471 panel = isSave ?
1472 (id)[EmacsSavePanel savePanel] : (id)[EmacsOpenPanel openPanel];
1473
1474 [panel setTitle: promptS];
1475
1476 [panel setAllowsOtherFileTypes: YES];
1477 [panel setTreatsFilePackagesAsDirectories: YES];
1478 [panel setDelegate: fileDelegate];
1479
1480 if (! NILP (dir_only_p))
1481 {
1482 [panel setCanChooseDirectories: YES];
1483 [panel setCanChooseFiles: NO];
1484 }
1485 else if (! isSave)
1486 {
1487 /* This is not quite what the documentation says, but it is compatible
1488 with the Gtk+ code. Also, the menu entry says "Open File...". */
1489 [panel setCanChooseDirectories: NO];
1490 [panel setCanChooseFiles: YES];
1491 }
1492
1493 block_input ();
1494 ns_fd_data.panel = panel;
1495 ns_fd_data.ret = NO;
1496 #if defined (NS_IMPL_COCOA) && \
1497 MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
1498 if (! NILP (mustmatch) || ! NILP (dir_only_p))
1499 [panel setAllowedFileTypes: nil];
1500 if (dirS) [panel setDirectoryURL: [NSURL fileURLWithPath: dirS]];
1501 if (initS && NILP (Ffile_directory_p (init)))
1502 [panel setNameFieldStringValue: [initS lastPathComponent]];
1503 else
1504 [panel setNameFieldStringValue: @""];
1505
1506 #else
1507 ns_fd_data.no_types = NILP (mustmatch) && NILP (dir_only_p);
1508 ns_fd_data.dirS = dirS;
1509 ns_fd_data.initS = initS;
1510 #endif
1511
1512 /* runModalForDirectory/runModal restarts the main event loop when done,
1513 so we must start an event loop and then pop up the file dialog.
1514 The file dialog may pop up a confirm dialog after Ok has been pressed,
1515 so we can not simply pop down on the Ok/Cancel press.
1516 */
1517 nxev = [NSEvent otherEventWithType: NSApplicationDefined
1518 location: NSMakePoint (0, 0)
1519 modifierFlags: 0
1520 timestamp: 0
1521 windowNumber: [[NSApp mainWindow] windowNumber]
1522 context: [NSApp context]
1523 subtype: 0
1524 data1: 0
1525 data2: NSAPP_DATA2_RUNFILEDIALOG];
1526
1527 [NSApp postEvent: nxev atStart: NO];
1528 while (ns_fd_data.panel != nil)
1529 [NSApp run];
1530
1531 ret = (ns_fd_data.ret == NSOKButton);
1532
1533 if (ret)
1534 {
1535 NSString *str = ns_filename_from_panel (panel);
1536 if (! str) str = ns_directory_from_panel (panel);
1537 if (! str) ret = NO;
1538 else fname = build_string ([str UTF8String]);
1539 }
1540
1541 [[FRAME_NS_VIEW (SELECTED_FRAME ()) window] makeKeyWindow];
1542 unblock_input ();
1543
1544 return ret ? fname : Qnil;
1545 }
1546
1547 const char *
1548 ns_get_defaults_value (const char *key)
1549 {
1550 NSObject *obj = [[NSUserDefaults standardUserDefaults]
1551 objectForKey: [NSString stringWithUTF8String: key]];
1552
1553 if (!obj) return NULL;
1554
1555 return [[NSString stringWithFormat: @"%@", obj] UTF8String];
1556 }
1557
1558
1559 DEFUN ("ns-get-resource", Fns_get_resource, Sns_get_resource, 2, 2, 0,
1560 doc: /* Return the value of the property NAME of OWNER from the defaults database.
1561 If OWNER is nil, Emacs is assumed. */)
1562 (Lisp_Object owner, Lisp_Object name)
1563 {
1564 const char *value;
1565
1566 check_window_system (NULL);
1567 if (NILP (owner))
1568 owner = build_string([ns_app_name UTF8String]);
1569 CHECK_STRING (name);
1570
1571 value = ns_get_defaults_value (SSDATA (name));
1572
1573 if (value)
1574 return build_string (value);
1575 return Qnil;
1576 }
1577
1578
1579 DEFUN ("ns-set-resource", Fns_set_resource, Sns_set_resource, 3, 3, 0,
1580 doc: /* Set property NAME of OWNER to VALUE, from the defaults database.
1581 If OWNER is nil, Emacs is assumed.
1582 If VALUE is nil, the default is removed. */)
1583 (Lisp_Object owner, Lisp_Object name, Lisp_Object value)
1584 {
1585 check_window_system (NULL);
1586 if (NILP (owner))
1587 owner = build_string ([ns_app_name UTF8String]);
1588 CHECK_STRING (name);
1589 if (NILP (value))
1590 {
1591 [[NSUserDefaults standardUserDefaults] removeObjectForKey:
1592 [NSString stringWithUTF8String: SSDATA (name)]];
1593 }
1594 else
1595 {
1596 CHECK_STRING (value);
1597 [[NSUserDefaults standardUserDefaults] setObject:
1598 [NSString stringWithUTF8String: SSDATA (value)]
1599 forKey: [NSString stringWithUTF8String:
1600 SSDATA (name)]];
1601 }
1602
1603 return Qnil;
1604 }
1605
1606
1607 DEFUN ("x-server-max-request-size", Fx_server_max_request_size,
1608 Sx_server_max_request_size,
1609 0, 1, 0,
1610 doc: /* This function is a no-op. It is only present for completeness. */)
1611 (Lisp_Object terminal)
1612 {
1613 check_ns_display_info (terminal);
1614 /* This function has no real equivalent under NeXTstep. Return nil to
1615 indicate this. */
1616 return Qnil;
1617 }
1618
1619
1620 DEFUN ("x-server-vendor", Fx_server_vendor, Sx_server_vendor, 0, 1, 0,
1621 doc: /* Return the "vendor ID" string of Nextstep display server TERMINAL.
1622 \(Labeling every distributor as a "vendor" embodies the false assumption
1623 that operating systems cannot be developed and distributed noncommercially.)
1624 The optional argument TERMINAL specifies which display to ask about.
1625 TERMINAL should be a terminal object, a frame or a display name (a string).
1626 If omitted or nil, that stands for the selected frame's display. */)
1627 (Lisp_Object terminal)
1628 {
1629 check_ns_display_info (terminal);
1630 #ifdef NS_IMPL_GNUSTEP
1631 return build_string ("GNU");
1632 #else
1633 return build_string ("Apple");
1634 #endif
1635 }
1636
1637
1638 DEFUN ("x-server-version", Fx_server_version, Sx_server_version, 0, 1, 0,
1639 doc: /* Return the version numbers of the server of display TERMINAL.
1640 The value is a list of three integers: the major and minor
1641 version numbers of the X Protocol in use, and the distributor-specific release
1642 number. See also the function `x-server-vendor'.
1643
1644 The optional argument TERMINAL specifies which display to ask about.
1645 TERMINAL should be a terminal object, a frame or a display name (a string).
1646 If omitted or nil, that stands for the selected frame's display. */)
1647 (Lisp_Object terminal)
1648 {
1649 check_ns_display_info (terminal);
1650 /*NOTE: it is unclear what would best correspond with "protocol";
1651 we return 10.3, meaning Panther, since this is roughly the
1652 level that GNUstep's APIs correspond to.
1653 The last number is where we distinguish between the Apple
1654 and GNUstep implementations ("distributor-specific release
1655 number") and give int'ized versions of major.minor. */
1656 return list3i (10, 3, ns_appkit_version_int ());
1657 }
1658
1659
1660 DEFUN ("x-display-screens", Fx_display_screens, Sx_display_screens, 0, 1, 0,
1661 doc: /* Return the number of screens on Nextstep display server TERMINAL.
1662 The optional argument TERMINAL specifies which display to ask about.
1663 TERMINAL should be a terminal object, a frame or a display name (a string).
1664 If omitted or nil, that stands for the selected frame's display.
1665
1666 Note: "screen" here is not in Nextstep terminology but in X11's. For
1667 the number of physical monitors, use `(length
1668 (display-monitor-attributes-list TERMINAL))' instead. */)
1669 (Lisp_Object terminal)
1670 {
1671 check_ns_display_info (terminal);
1672 return make_number (1);
1673 }
1674
1675
1676 DEFUN ("x-display-mm-height", Fx_display_mm_height, Sx_display_mm_height, 0, 1, 0,
1677 doc: /* Return the height in millimeters of the Nextstep display TERMINAL.
1678 The optional argument TERMINAL specifies which display to ask about.
1679 TERMINAL should be a terminal object, a frame or a display name (a string).
1680 If omitted or nil, that stands for the selected frame's display.
1681
1682 On \"multi-monitor\" setups this refers to the height in millimeters for
1683 all physical monitors associated with TERMINAL. To get information
1684 for each physical monitor, use `display-monitor-attributes-list'. */)
1685 (Lisp_Object terminal)
1686 {
1687 struct ns_display_info *dpyinfo = check_ns_display_info (terminal);
1688
1689 return make_number (x_display_pixel_height (dpyinfo) / (92.0/25.4));
1690 }
1691
1692
1693 DEFUN ("x-display-mm-width", Fx_display_mm_width, Sx_display_mm_width, 0, 1, 0,
1694 doc: /* Return the width in millimeters of the Nextstep display TERMINAL.
1695 The optional argument TERMINAL specifies which display to ask about.
1696 TERMINAL should be a terminal object, a frame or a display name (a string).
1697 If omitted or nil, that stands for the selected frame's display.
1698
1699 On \"multi-monitor\" setups this refers to the width in millimeters for
1700 all physical monitors associated with TERMINAL. To get information
1701 for each physical monitor, use `display-monitor-attributes-list'. */)
1702 (Lisp_Object terminal)
1703 {
1704 struct ns_display_info *dpyinfo = check_ns_display_info (terminal);
1705
1706 return make_number (x_display_pixel_width (dpyinfo) / (92.0/25.4));
1707 }
1708
1709
1710 DEFUN ("x-display-backing-store", Fx_display_backing_store,
1711 Sx_display_backing_store, 0, 1, 0,
1712 doc: /* Return an indication of whether the Nextstep display TERMINAL does backing store.
1713 The value may be `buffered', `retained', or `non-retained'.
1714 The optional argument TERMINAL specifies which display to ask about.
1715 TERMINAL should be a terminal object, a frame or a display name (a string).
1716 If omitted or nil, that stands for the selected frame's display. */)
1717 (Lisp_Object terminal)
1718 {
1719 check_ns_display_info (terminal);
1720 switch ([ns_get_window (terminal) backingType])
1721 {
1722 case NSBackingStoreBuffered:
1723 return intern ("buffered");
1724 case NSBackingStoreRetained:
1725 return intern ("retained");
1726 case NSBackingStoreNonretained:
1727 return intern ("non-retained");
1728 default:
1729 error ("Strange value for backingType parameter of frame");
1730 }
1731 return Qnil; /* not reached, shut compiler up */
1732 }
1733
1734
1735 DEFUN ("x-display-visual-class", Fx_display_visual_class,
1736 Sx_display_visual_class, 0, 1, 0,
1737 doc: /* Return the visual class of the Nextstep display TERMINAL.
1738 The value is one of the symbols `static-gray', `gray-scale',
1739 `static-color', `pseudo-color', `true-color', or `direct-color'.
1740
1741 The optional argument TERMINAL specifies which display to ask about.
1742 TERMINAL should a terminal object, a frame or a display name (a string).
1743 If omitted or nil, that stands for the selected frame's display. */)
1744 (Lisp_Object terminal)
1745 {
1746 NSWindowDepth depth;
1747
1748 check_ns_display_info (terminal);
1749 depth = [[[NSScreen screens] objectAtIndex:0] depth];
1750
1751 if ( depth == NSBestDepth (NSCalibratedWhiteColorSpace, 2, 2, YES, NULL))
1752 return intern ("static-gray");
1753 else if (depth == NSBestDepth (NSCalibratedWhiteColorSpace, 8, 8, YES, NULL))
1754 return intern ("gray-scale");
1755 else if ( depth == NSBestDepth (NSCalibratedRGBColorSpace, 8, 8, YES, NULL))
1756 return intern ("pseudo-color");
1757 else if ( depth == NSBestDepth (NSCalibratedRGBColorSpace, 4, 12, NO, NULL))
1758 return intern ("true-color");
1759 else if ( depth == NSBestDepth (NSCalibratedRGBColorSpace, 8, 24, NO, NULL))
1760 return intern ("direct-color");
1761 else
1762 /* color mgmt as far as we do it is really handled by Nextstep itself anyway */
1763 return intern ("direct-color");
1764 }
1765
1766
1767 DEFUN ("x-display-save-under", Fx_display_save_under,
1768 Sx_display_save_under, 0, 1, 0,
1769 doc: /* Return t if TERMINAL supports the save-under feature.
1770 The optional argument TERMINAL specifies which display to ask about.
1771 TERMINAL should be a terminal object, a frame or a display name (a string).
1772 If omitted or nil, that stands for the selected frame's display. */)
1773 (Lisp_Object terminal)
1774 {
1775 check_ns_display_info (terminal);
1776 switch ([ns_get_window (terminal) backingType])
1777 {
1778 case NSBackingStoreBuffered:
1779 return Qt;
1780
1781 case NSBackingStoreRetained:
1782 case NSBackingStoreNonretained:
1783 return Qnil;
1784
1785 default:
1786 error ("Strange value for backingType parameter of frame");
1787 }
1788 return Qnil; /* not reached, shut compiler up */
1789 }
1790
1791
1792 DEFUN ("x-open-connection", Fx_open_connection, Sx_open_connection,
1793 1, 3, 0,
1794 doc: /* Open a connection to a display server.
1795 DISPLAY is the name of the display to connect to.
1796 Optional second arg XRM-STRING is a string of resources in xrdb format.
1797 If the optional third arg MUST-SUCCEED is non-nil,
1798 terminate Emacs if we can't open the connection.
1799 \(In the Nextstep version, the last two arguments are currently ignored.) */)
1800 (Lisp_Object display, Lisp_Object resource_string, Lisp_Object must_succeed)
1801 {
1802 struct ns_display_info *dpyinfo;
1803
1804 CHECK_STRING (display);
1805
1806 nxatoms_of_nsselect ();
1807 dpyinfo = ns_term_init (display);
1808 if (dpyinfo == 0)
1809 {
1810 if (!NILP (must_succeed))
1811 fatal ("OpenStep on %s not responding.\n",
1812 SSDATA (display));
1813 else
1814 error ("OpenStep on %s not responding.\n",
1815 SSDATA (display));
1816 }
1817
1818 return Qnil;
1819 }
1820
1821
1822 DEFUN ("x-close-connection", Fx_close_connection, Sx_close_connection,
1823 1, 1, 0,
1824 doc: /* Close the connection to TERMINAL's Nextstep display server.
1825 For TERMINAL, specify a terminal object, a frame or a display name (a
1826 string). If TERMINAL is nil, that stands for the selected frame's
1827 terminal. */)
1828 (Lisp_Object terminal)
1829 {
1830 check_ns_display_info (terminal);
1831 [NSApp terminate: NSApp];
1832 return Qnil;
1833 }
1834
1835
1836 DEFUN ("x-display-list", Fx_display_list, Sx_display_list, 0, 0, 0,
1837 doc: /* Return the list of display names that Emacs has connections to. */)
1838 (void)
1839 {
1840 Lisp_Object result = Qnil;
1841 struct ns_display_info *ndi;
1842
1843 for (ndi = x_display_list; ndi; ndi = ndi->next)
1844 result = Fcons (XCAR (ndi->name_list_element), result);
1845
1846 return result;
1847 }
1848
1849
1850 DEFUN ("ns-hide-others", Fns_hide_others, Sns_hide_others,
1851 0, 0, 0,
1852 doc: /* Hides all applications other than Emacs. */)
1853 (void)
1854 {
1855 check_window_system (NULL);
1856 [NSApp hideOtherApplications: NSApp];
1857 return Qnil;
1858 }
1859
1860 DEFUN ("ns-hide-emacs", Fns_hide_emacs, Sns_hide_emacs,
1861 1, 1, 0,
1862 doc: /* If ON is non-nil, the entire Emacs application is hidden.
1863 Otherwise if Emacs is hidden, it is unhidden.
1864 If ON is equal to `activate', Emacs is unhidden and becomes
1865 the active application. */)
1866 (Lisp_Object on)
1867 {
1868 check_window_system (NULL);
1869 if (EQ (on, intern ("activate")))
1870 {
1871 [NSApp unhide: NSApp];
1872 [NSApp activateIgnoringOtherApps: YES];
1873 }
1874 else if (NILP (on))
1875 [NSApp unhide: NSApp];
1876 else
1877 [NSApp hide: NSApp];
1878 return Qnil;
1879 }
1880
1881
1882 DEFUN ("ns-emacs-info-panel", Fns_emacs_info_panel, Sns_emacs_info_panel,
1883 0, 0, 0,
1884 doc: /* Shows the 'Info' or 'About' panel for Emacs. */)
1885 (void)
1886 {
1887 check_window_system (NULL);
1888 [NSApp orderFrontStandardAboutPanel: nil];
1889 return Qnil;
1890 }
1891
1892
1893 DEFUN ("ns-font-name", Fns_font_name, Sns_font_name, 1, 1, 0,
1894 doc: /* Determine font PostScript or family name for font NAME.
1895 NAME should be a string containing either the font name or an XLFD
1896 font descriptor. If string contains `fontset' and not
1897 `fontset-startup', it is left alone. */)
1898 (Lisp_Object name)
1899 {
1900 char *nm;
1901 CHECK_STRING (name);
1902 nm = SSDATA (name);
1903
1904 if (nm[0] != '-')
1905 return name;
1906 if (strstr (nm, "fontset") && !strstr (nm, "fontset-startup"))
1907 return name;
1908
1909 return build_string (ns_xlfd_to_fontname (SSDATA (name)));
1910 }
1911
1912
1913 DEFUN ("ns-list-colors", Fns_list_colors, Sns_list_colors, 0, 1, 0,
1914 doc: /* Return a list of all available colors.
1915 The optional argument FRAME is currently ignored. */)
1916 (Lisp_Object frame)
1917 {
1918 Lisp_Object list = Qnil;
1919 NSEnumerator *colorlists;
1920 NSColorList *clist;
1921
1922 if (!NILP (frame))
1923 {
1924 CHECK_FRAME (frame);
1925 if (! FRAME_NS_P (XFRAME (frame)))
1926 error ("non-Nextstep frame used in `ns-list-colors'");
1927 }
1928
1929 block_input ();
1930
1931 colorlists = [[NSColorList availableColorLists] objectEnumerator];
1932 while ((clist = [colorlists nextObject]))
1933 {
1934 if ([[clist name] length] < 7 ||
1935 [[clist name] rangeOfString: @"PANTONE"].location == 0)
1936 {
1937 NSEnumerator *cnames = [[clist allKeys] reverseObjectEnumerator];
1938 NSString *cname;
1939 while ((cname = [cnames nextObject]))
1940 list = Fcons (build_string ([cname UTF8String]), list);
1941 /* for (i = [[clist allKeys] count] - 1; i >= 0; i--)
1942 list = Fcons (build_string ([[[clist allKeys] objectAtIndex: i]
1943 UTF8String]), list); */
1944 }
1945 }
1946
1947 unblock_input ();
1948
1949 return list;
1950 }
1951
1952
1953 DEFUN ("ns-list-services", Fns_list_services, Sns_list_services, 0, 0, 0,
1954 doc: /* List available Nextstep services by querying NSApp. */)
1955 (void)
1956 {
1957 #if defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
1958 /* You can't get services like this in 10.6+. */
1959 return Qnil;
1960 #else
1961 Lisp_Object ret = Qnil;
1962 NSMenu *svcs;
1963 #ifdef NS_IMPL_COCOA
1964 id delegate;
1965 #endif
1966
1967 check_window_system (NULL);
1968 svcs = [[NSMenu alloc] initWithTitle: @"Services"];
1969 [NSApp setServicesMenu: svcs];
1970 [NSApp registerServicesMenuSendTypes: ns_send_types
1971 returnTypes: ns_return_types];
1972
1973 /* On Tiger, services menu updating was made lazier (waits for user to
1974 actually click on the menu), so we have to force things along: */
1975 #ifdef NS_IMPL_COCOA
1976 delegate = [svcs delegate];
1977 if (delegate != nil)
1978 {
1979 if ([delegate respondsToSelector: @selector (menuNeedsUpdate:)])
1980 [delegate menuNeedsUpdate: svcs];
1981 if ([delegate respondsToSelector:
1982 @selector (menu:updateItem:atIndex:shouldCancel:)])
1983 {
1984 int i, len = [delegate numberOfItemsInMenu: svcs];
1985 for (i =0; i<len; i++)
1986 [svcs addItemWithTitle: @"" action: NULL keyEquivalent: @""];
1987 for (i =0; i<len; i++)
1988 if (![delegate menu: svcs
1989 updateItem: (NSMenuItem *)[svcs itemAtIndex: i]
1990 atIndex: i shouldCancel: NO])
1991 break;
1992 }
1993 }
1994 #endif
1995
1996 [svcs setAutoenablesItems: NO];
1997 #ifdef NS_IMPL_COCOA
1998 [svcs update]; /* on OS X, converts from '/' structure */
1999 #endif
2000
2001 ret = interpret_services_menu (svcs, Qnil, ret);
2002 return ret;
2003 #endif
2004 }
2005
2006
2007 DEFUN ("ns-perform-service", Fns_perform_service, Sns_perform_service,
2008 2, 2, 0,
2009 doc: /* Perform Nextstep SERVICE on SEND.
2010 SEND should be either a string or nil.
2011 The return value is the result of the service, as string, or nil if
2012 there was no result. */)
2013 (Lisp_Object service, Lisp_Object send)
2014 {
2015 id pb;
2016 NSString *svcName;
2017 char *utfStr;
2018
2019 CHECK_STRING (service);
2020 check_window_system (NULL);
2021
2022 utfStr = SSDATA (service);
2023 svcName = [NSString stringWithUTF8String: utfStr];
2024
2025 pb =[NSPasteboard pasteboardWithUniqueName];
2026 ns_string_to_pasteboard (pb, send);
2027
2028 if (NSPerformService (svcName, pb) == NO)
2029 Fsignal (Qquit, list1 (build_string ("service not available")));
2030
2031 if ([[pb types] count] == 0)
2032 return build_string ("");
2033 return ns_string_from_pasteboard (pb);
2034 }
2035
2036
2037 DEFUN ("ns-convert-utf8-nfd-to-nfc", Fns_convert_utf8_nfd_to_nfc,
2038 Sns_convert_utf8_nfd_to_nfc, 1, 1, 0,
2039 doc: /* Return an NFC string that matches the UTF-8 NFD string STR. */)
2040 (Lisp_Object str)
2041 {
2042 /* TODO: If GNUstep ever implements precomposedStringWithCanonicalMapping,
2043 remove this. */
2044 NSString *utfStr;
2045 Lisp_Object ret = Qnil;
2046 NSAutoreleasePool *pool;
2047
2048 CHECK_STRING (str);
2049 pool = [[NSAutoreleasePool alloc] init];
2050 utfStr = [NSString stringWithUTF8String: SSDATA (str)];
2051 #ifdef NS_IMPL_COCOA
2052 if (utfStr)
2053 utfStr = [utfStr precomposedStringWithCanonicalMapping];
2054 #endif
2055 if (utfStr)
2056 {
2057 const char *cstr = [utfStr UTF8String];
2058 if (cstr)
2059 ret = build_string (cstr);
2060 }
2061
2062 [pool release];
2063 if (NILP (ret))
2064 error ("Invalid UTF-8");
2065
2066 return ret;
2067 }
2068
2069
2070 #ifdef NS_IMPL_COCOA
2071
2072 /* Compile and execute the AppleScript SCRIPT and return the error
2073 status as function value. A zero is returned if compilation and
2074 execution is successful, in which case *RESULT is set to a Lisp
2075 string or a number containing the resulting script value. Otherwise,
2076 1 is returned. */
2077 static int
2078 ns_do_applescript (Lisp_Object script, Lisp_Object *result)
2079 {
2080 NSAppleEventDescriptor *desc;
2081 NSDictionary* errorDict;
2082 NSAppleEventDescriptor* returnDescriptor = NULL;
2083
2084 NSAppleScript* scriptObject =
2085 [[NSAppleScript alloc] initWithSource:
2086 [NSString stringWithUTF8String: SSDATA (script)]];
2087
2088 returnDescriptor = [scriptObject executeAndReturnError: &errorDict];
2089 [scriptObject release];
2090
2091 *result = Qnil;
2092
2093 if (returnDescriptor != NULL)
2094 {
2095 // successful execution
2096 if (kAENullEvent != [returnDescriptor descriptorType])
2097 {
2098 *result = Qt;
2099 // script returned an AppleScript result
2100 if ((typeUnicodeText == [returnDescriptor descriptorType]) ||
2101 #if defined (NS_IMPL_COCOA)
2102 (typeUTF16ExternalRepresentation
2103 == [returnDescriptor descriptorType]) ||
2104 #endif
2105 (typeUTF8Text == [returnDescriptor descriptorType]) ||
2106 (typeCString == [returnDescriptor descriptorType]))
2107 {
2108 desc = [returnDescriptor coerceToDescriptorType: typeUTF8Text];
2109 if (desc)
2110 *result = build_string([[desc stringValue] UTF8String]);
2111 }
2112 else
2113 {
2114 /* use typeUTF16ExternalRepresentation? */
2115 // coerce the result to the appropriate ObjC type
2116 desc = [returnDescriptor coerceToDescriptorType: typeUTF8Text];
2117 if (desc)
2118 *result = make_number([desc int32Value]);
2119 }
2120 }
2121 }
2122 else
2123 {
2124 // no script result, return error
2125 return 1;
2126 }
2127 return 0;
2128 }
2129
2130 /* Helper function called from sendEvent to run applescript
2131 from within the main event loop. */
2132
2133 void
2134 ns_run_ascript (void)
2135 {
2136 if (! NILP (as_script))
2137 as_status = ns_do_applescript (as_script, as_result);
2138 as_script = Qnil;
2139 }
2140
2141 DEFUN ("ns-do-applescript", Fns_do_applescript, Sns_do_applescript, 1, 1, 0,
2142 doc: /* Execute AppleScript SCRIPT and return the result.
2143 If compilation and execution are successful, the resulting script value
2144 is returned as a string, a number or, in the case of other constructs, t.
2145 In case the execution fails, an error is signaled. */)
2146 (Lisp_Object script)
2147 {
2148 Lisp_Object result;
2149 int status;
2150 NSEvent *nxev;
2151
2152 CHECK_STRING (script);
2153 check_window_system (NULL);
2154
2155 block_input ();
2156
2157 as_script = script;
2158 as_result = &result;
2159
2160 /* executing apple script requires the event loop to run, otherwise
2161 errors aren't returned and executeAndReturnError hangs forever.
2162 Post an event that runs applescript and then start the event loop.
2163 The event loop is exited when the script is done. */
2164 nxev = [NSEvent otherEventWithType: NSApplicationDefined
2165 location: NSMakePoint (0, 0)
2166 modifierFlags: 0
2167 timestamp: 0
2168 windowNumber: [[NSApp mainWindow] windowNumber]
2169 context: [NSApp context]
2170 subtype: 0
2171 data1: 0
2172 data2: NSAPP_DATA2_RUNASSCRIPT];
2173
2174 [NSApp postEvent: nxev atStart: NO];
2175
2176 // If there are other events, the event loop may exit. Keep running
2177 // until the script has been handled. */
2178 while (! NILP (as_script))
2179 [NSApp run];
2180
2181 status = as_status;
2182 as_status = 0;
2183 as_result = 0;
2184 unblock_input ();
2185 if (status == 0)
2186 return result;
2187 else if (!STRINGP (result))
2188 error ("AppleScript error %d", status);
2189 else
2190 error ("%s", SSDATA (result));
2191 }
2192 #endif
2193
2194
2195
2196 /* ==========================================================================
2197
2198 Miscellaneous functions not called through hooks
2199
2200 ========================================================================== */
2201
2202 /* called from frame.c */
2203 struct ns_display_info *
2204 check_x_display_info (Lisp_Object frame)
2205 {
2206 return check_ns_display_info (frame);
2207 }
2208
2209
2210 void
2211 x_set_scroll_bar_default_width (struct frame *f)
2212 {
2213 int wid = FRAME_COLUMN_WIDTH (f);
2214 FRAME_CONFIG_SCROLL_BAR_WIDTH (f) = NS_SCROLL_BAR_WIDTH_DEFAULT;
2215 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) +
2216 wid - 1) / wid;
2217 }
2218
2219 /* terms impl this instead of x-get-resource directly */
2220 char *
2221 x_get_string_resource (XrmDatabase rdb, const char *name, const char *class)
2222 {
2223 /* remove appname prefix; TODO: allow for !="Emacs" */
2224 const char *res, *toCheck = class + (!strncmp (class, "Emacs.", 6) ? 6 : 0);
2225
2226 check_window_system (NULL);
2227
2228 if (inhibit_x_resources)
2229 /* --quick was passed, so this is a no-op. */
2230 return NULL;
2231
2232 res = ns_get_defaults_value (toCheck);
2233 return (!res ? NULL :
2234 (!c_strncasecmp (res, "YES", 3) ? "true" :
2235 (!c_strncasecmp (res, "NO", 2) ? "false" : (char *) res)));
2236 }
2237
2238
2239 Lisp_Object
2240 x_get_focus_frame (struct frame *frame)
2241 {
2242 struct ns_display_info *dpyinfo = FRAME_DISPLAY_INFO (frame);
2243 Lisp_Object nsfocus;
2244
2245 if (!dpyinfo->x_focus_frame)
2246 return Qnil;
2247
2248 XSETFRAME (nsfocus, dpyinfo->x_focus_frame);
2249 return nsfocus;
2250 }
2251
2252 /* ==========================================================================
2253
2254 Lisp definitions that, for whatever reason, we can't alias as 'ns-XXX'.
2255
2256 ========================================================================== */
2257
2258
2259 DEFUN ("xw-color-defined-p", Fxw_color_defined_p, Sxw_color_defined_p, 1, 2, 0,
2260 doc: /* Internal function called by `color-defined-p', which see.
2261 \(Note that the Nextstep version of this function ignores FRAME.) */)
2262 (Lisp_Object color, Lisp_Object frame)
2263 {
2264 NSColor * col;
2265 check_window_system (NULL);
2266 return ns_lisp_to_color (color, &col) ? Qnil : Qt;
2267 }
2268
2269
2270 DEFUN ("xw-color-values", Fxw_color_values, Sxw_color_values, 1, 2, 0,
2271 doc: /* Internal function called by `color-values', which see. */)
2272 (Lisp_Object color, Lisp_Object frame)
2273 {
2274 NSColor * col;
2275 EmacsCGFloat red, green, blue, alpha;
2276
2277 check_window_system (NULL);
2278 CHECK_STRING (color);
2279
2280 if (ns_lisp_to_color (color, &col))
2281 return Qnil;
2282
2283 [[col colorUsingColorSpaceName: NSCalibratedRGBColorSpace]
2284 getRed: &red green: &green blue: &blue alpha: &alpha];
2285 return list3i (lrint (red * 65280), lrint (green * 65280),
2286 lrint (blue * 65280));
2287 }
2288
2289
2290 DEFUN ("xw-display-color-p", Fxw_display_color_p, Sxw_display_color_p, 0, 1, 0,
2291 doc: /* Internal function called by `display-color-p', which see. */)
2292 (Lisp_Object terminal)
2293 {
2294 NSWindowDepth depth;
2295 NSString *colorSpace;
2296
2297 check_ns_display_info (terminal);
2298 depth = [[[NSScreen screens] objectAtIndex:0] depth];
2299 colorSpace = NSColorSpaceFromDepth (depth);
2300
2301 return [colorSpace isEqualToString: NSDeviceWhiteColorSpace]
2302 || [colorSpace isEqualToString: NSCalibratedWhiteColorSpace]
2303 ? Qnil : Qt;
2304 }
2305
2306
2307 DEFUN ("x-display-grayscale-p", Fx_display_grayscale_p, Sx_display_grayscale_p,
2308 0, 1, 0,
2309 doc: /* Return t if the Nextstep display supports shades of gray.
2310 Note that color displays do support shades of gray.
2311 The optional argument TERMINAL specifies which display to ask about.
2312 TERMINAL should be a terminal object, a frame or a display name (a string).
2313 If omitted or nil, that stands for the selected frame's display. */)
2314 (Lisp_Object terminal)
2315 {
2316 NSWindowDepth depth;
2317
2318 check_ns_display_info (terminal);
2319 depth = [[[NSScreen screens] objectAtIndex:0] depth];
2320
2321 return NSBitsPerPixelFromDepth (depth) > 1 ? Qt : Qnil;
2322 }
2323
2324
2325 DEFUN ("x-display-pixel-width", Fx_display_pixel_width, Sx_display_pixel_width,
2326 0, 1, 0,
2327 doc: /* Return the width in pixels of the Nextstep display TERMINAL.
2328 The optional argument TERMINAL specifies which display to ask about.
2329 TERMINAL should be a terminal object, a frame or a display name (a string).
2330 If omitted or nil, that stands for the selected frame's display.
2331
2332 On \"multi-monitor\" setups this refers to the pixel width for all
2333 physical monitors associated with TERMINAL. To get information for
2334 each physical monitor, use `display-monitor-attributes-list'. */)
2335 (Lisp_Object terminal)
2336 {
2337 struct ns_display_info *dpyinfo = check_ns_display_info (terminal);
2338
2339 return make_number (x_display_pixel_width (dpyinfo));
2340 }
2341
2342
2343 DEFUN ("x-display-pixel-height", Fx_display_pixel_height,
2344 Sx_display_pixel_height, 0, 1, 0,
2345 doc: /* Return the height in pixels of the Nextstep display TERMINAL.
2346 The optional argument TERMINAL specifies which display to ask about.
2347 TERMINAL should be a terminal object, a frame or a display name (a string).
2348 If omitted or nil, that stands for the selected frame's display.
2349
2350 On \"multi-monitor\" setups this refers to the pixel height for all
2351 physical monitors associated with TERMINAL. To get information for
2352 each physical monitor, use `display-monitor-attributes-list'. */)
2353 (Lisp_Object terminal)
2354 {
2355 struct ns_display_info *dpyinfo = check_ns_display_info (terminal);
2356
2357 return make_number (x_display_pixel_height (dpyinfo));
2358 }
2359
2360 #ifdef NS_IMPL_COCOA
2361
2362 /* Returns the name for the screen that OBJ represents, or NULL.
2363 Caller must free return value.
2364 */
2365
2366 static char *
2367 ns_get_name_from_ioreg (io_object_t obj)
2368 {
2369 char *name = NULL;
2370
2371 NSDictionary *info = (NSDictionary *)
2372 IODisplayCreateInfoDictionary (obj, kIODisplayOnlyPreferredName);
2373 NSDictionary *names = [info objectForKey:
2374 [NSString stringWithUTF8String:
2375 kDisplayProductName]];
2376
2377 if ([names count] > 0)
2378 {
2379 NSString *n = [names objectForKey: [[names allKeys]
2380 objectAtIndex:0]];
2381 if (n != nil) name = xstrdup ([n UTF8String]);
2382 }
2383
2384 [info release];
2385
2386 return name;
2387 }
2388
2389 /* Returns the name for the screen that DID came from, or NULL.
2390 Caller must free return value.
2391 */
2392
2393 static char *
2394 ns_screen_name (CGDirectDisplayID did)
2395 {
2396 char *name = NULL;
2397
2398 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_9
2399 mach_port_t masterPort;
2400 io_iterator_t it;
2401 io_object_t obj;
2402
2403 // CGDisplayIOServicePort is deprecated. Do it another (harder) way.
2404
2405 if (IOMasterPort (MACH_PORT_NULL, &masterPort) != kIOReturnSuccess
2406 || IOServiceGetMatchingServices (masterPort,
2407 IOServiceMatching ("IONDRVDevice"),
2408 &it) != kIOReturnSuccess)
2409 return name;
2410
2411 /* Must loop until we find a name. Many devices can have the same unit
2412 number (represents different GPU parts), but only one has a name. */
2413 while (! name && (obj = IOIteratorNext (it)))
2414 {
2415 CFMutableDictionaryRef props;
2416 const void *val;
2417
2418 if (IORegistryEntryCreateCFProperties (obj,
2419 &props,
2420 kCFAllocatorDefault,
2421 kNilOptions) == kIOReturnSuccess
2422 && props != nil
2423 && (val = CFDictionaryGetValue(props, @"IOFBDependentIndex")))
2424 {
2425 unsigned nr = [(NSNumber *)val unsignedIntegerValue];
2426 if (nr == CGDisplayUnitNumber (did))
2427 name = ns_get_name_from_ioreg (obj);
2428 }
2429
2430 CFRelease (props);
2431 IOObjectRelease (obj);
2432 }
2433
2434 IOObjectRelease (it);
2435
2436 #else
2437
2438 name = ns_get_name_from_ioreg (CGDisplayIOServicePort (did));
2439
2440 #endif
2441 return name;
2442 }
2443 #endif
2444
2445 static Lisp_Object
2446 ns_make_monitor_attribute_list (struct MonitorInfo *monitors,
2447 int n_monitors,
2448 int primary_monitor,
2449 const char *source)
2450 {
2451 Lisp_Object monitor_frames = Fmake_vector (make_number (n_monitors), Qnil);
2452 Lisp_Object frame, rest;
2453 NSArray *screens = [NSScreen screens];
2454 int i;
2455
2456 FOR_EACH_FRAME (rest, frame)
2457 {
2458 struct frame *f = XFRAME (frame);
2459
2460 if (FRAME_NS_P (f))
2461 {
2462 NSView *view = FRAME_NS_VIEW (f);
2463 NSScreen *screen = [[view window] screen];
2464 NSUInteger k;
2465
2466 i = -1;
2467 for (k = 0; i == -1 && k < [screens count]; ++k)
2468 {
2469 if ([screens objectAtIndex: k] == screen)
2470 i = (int)k;
2471 }
2472
2473 if (i > -1)
2474 ASET (monitor_frames, i, Fcons (frame, AREF (monitor_frames, i)));
2475 }
2476 }
2477
2478 return make_monitor_attribute_list (monitors, n_monitors, primary_monitor,
2479 monitor_frames, source);
2480 }
2481
2482 DEFUN ("ns-display-monitor-attributes-list",
2483 Fns_display_monitor_attributes_list,
2484 Sns_display_monitor_attributes_list,
2485 0, 1, 0,
2486 doc: /* Return a list of physical monitor attributes on the X display TERMINAL.
2487
2488 The optional argument TERMINAL specifies which display to ask about.
2489 TERMINAL should be a terminal object, a frame or a display name (a string).
2490 If omitted or nil, that stands for the selected frame's display.
2491
2492 In addition to the standard attribute keys listed in
2493 `display-monitor-attributes-list', the following keys are contained in
2494 the attributes:
2495
2496 source -- String describing the source from which multi-monitor
2497 information is obtained, \"NS\" is always the source."
2498
2499 Internal use only, use `display-monitor-attributes-list' instead. */)
2500 (Lisp_Object terminal)
2501 {
2502 struct terminal *term = get_terminal (terminal, 1);
2503 NSArray *screens;
2504 NSUInteger i, n_monitors;
2505 struct MonitorInfo *monitors;
2506 Lisp_Object attributes_list = Qnil;
2507 CGFloat primary_display_height = 0;
2508
2509 if (term->type != output_ns)
2510 return Qnil;
2511
2512 screens = [NSScreen screens];
2513 n_monitors = [screens count];
2514 if (n_monitors == 0)
2515 return Qnil;
2516
2517 monitors = xzalloc (n_monitors * sizeof *monitors);
2518
2519 for (i = 0; i < [screens count]; ++i)
2520 {
2521 NSScreen *s = [screens objectAtIndex:i];
2522 struct MonitorInfo *m = &monitors[i];
2523 NSRect fr = [s frame];
2524 NSRect vfr = [s visibleFrame];
2525 short y, vy;
2526
2527 #ifdef NS_IMPL_COCOA
2528 NSDictionary *dict = [s deviceDescription];
2529 NSNumber *nid = [dict objectForKey:@"NSScreenNumber"];
2530 CGDirectDisplayID did = [nid unsignedIntValue];
2531 #endif
2532 if (i == 0)
2533 {
2534 primary_display_height = fr.size.height;
2535 y = (short) fr.origin.y;
2536 vy = (short) vfr.origin.y;
2537 }
2538 else
2539 {
2540 // Flip y coordinate as NS has y starting from the bottom.
2541 y = (short) (primary_display_height - fr.size.height - fr.origin.y);
2542 vy = (short) (primary_display_height -
2543 vfr.size.height - vfr.origin.y);
2544 }
2545
2546 m->geom.x = (short) fr.origin.x;
2547 m->geom.y = y;
2548 m->geom.width = (unsigned short) fr.size.width;
2549 m->geom.height = (unsigned short) fr.size.height;
2550
2551 m->work.x = (short) vfr.origin.x;
2552 // y is flipped on NS, so vy - y are pixels missing at the bottom,
2553 // and fr.size.height - vfr.size.height are pixels missing in total.
2554 // Pixels missing at top are
2555 // fr.size.height - vfr.size.height - vy + y.
2556 // work.y is then pixels missing at top + y.
2557 m->work.y = (short) (fr.size.height - vfr.size.height) - vy + y + y;
2558 m->work.width = (unsigned short) vfr.size.width;
2559 m->work.height = (unsigned short) vfr.size.height;
2560
2561 #ifdef NS_IMPL_COCOA
2562 m->name = ns_screen_name (did);
2563
2564 {
2565 CGSize mms = CGDisplayScreenSize (did);
2566 m->mm_width = (int) mms.width;
2567 m->mm_height = (int) mms.height;
2568 }
2569
2570 #else
2571 // Assume 92 dpi as x-display-mm-height/x-display-mm-width does.
2572 m->mm_width = (int) (25.4 * fr.size.width / 92.0);
2573 m->mm_height = (int) (25.4 * fr.size.height / 92.0);
2574 #endif
2575 }
2576
2577 // Primary monitor is always first for NS.
2578 attributes_list = ns_make_monitor_attribute_list (monitors, n_monitors,
2579 0, "NS");
2580
2581 free_monitors (monitors, n_monitors);
2582 return attributes_list;
2583 }
2584
2585
2586 DEFUN ("x-display-planes", Fx_display_planes, Sx_display_planes,
2587 0, 1, 0,
2588 doc: /* Return the number of bitplanes of the Nextstep display TERMINAL.
2589 The optional argument TERMINAL specifies which display to ask about.
2590 TERMINAL should be a terminal object, a frame or a display name (a string).
2591 If omitted or nil, that stands for the selected frame's display. */)
2592 (Lisp_Object terminal)
2593 {
2594 check_ns_display_info (terminal);
2595 return make_number
2596 (NSBitsPerPixelFromDepth ([[[NSScreen screens] objectAtIndex:0] depth]));
2597 }
2598
2599
2600 DEFUN ("x-display-color-cells", Fx_display_color_cells, Sx_display_color_cells,
2601 0, 1, 0,
2602 doc: /* Returns the number of color cells of the Nextstep display TERMINAL.
2603 The optional argument TERMINAL specifies which display to ask about.
2604 TERMINAL should be a terminal object, a frame or a display name (a string).
2605 If omitted or nil, that stands for the selected frame's display. */)
2606 (Lisp_Object terminal)
2607 {
2608 struct ns_display_info *dpyinfo = check_ns_display_info (terminal);
2609 /* We force 24+ bit depths to 24-bit to prevent an overflow. */
2610 return make_number (1 << min (dpyinfo->n_planes, 24));
2611 }
2612
2613
2614 /* Unused dummy def needed for compatibility. */
2615 Lisp_Object tip_frame;
2616
2617 /* TODO: move to xdisp or similar */
2618 static void
2619 compute_tip_xy (struct frame *f,
2620 Lisp_Object parms,
2621 Lisp_Object dx,
2622 Lisp_Object dy,
2623 int width,
2624 int height,
2625 int *root_x,
2626 int *root_y)
2627 {
2628 Lisp_Object left, top;
2629 EmacsView *view = FRAME_NS_VIEW (f);
2630 struct ns_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
2631 NSPoint pt;
2632
2633 /* Start with user-specified or mouse position. */
2634 left = Fcdr (Fassq (Qleft, parms));
2635 top = Fcdr (Fassq (Qtop, parms));
2636
2637 if (!INTEGERP (left) || !INTEGERP (top))
2638 {
2639 pt.x = dpyinfo->last_mouse_motion_x;
2640 pt.y = dpyinfo->last_mouse_motion_y;
2641 /* Convert to screen coordinates */
2642 pt = [view convertPoint: pt toView: nil];
2643 pt = [[view window] convertBaseToScreen: pt];
2644 }
2645 else
2646 {
2647 /* Absolute coordinates. */
2648 pt.x = XINT (left);
2649 pt.y = x_display_pixel_height (FRAME_DISPLAY_INFO (f)) - XINT (top)
2650 - height;
2651 }
2652
2653 /* Ensure in bounds. (Note, screen origin = lower left.) */
2654 if (INTEGERP (left))
2655 *root_x = pt.x;
2656 else if (pt.x + XINT (dx) <= 0)
2657 *root_x = 0; /* Can happen for negative dx */
2658 else if (pt.x + XINT (dx) + width
2659 <= x_display_pixel_width (FRAME_DISPLAY_INFO (f)))
2660 /* It fits to the right of the pointer. */
2661 *root_x = pt.x + XINT (dx);
2662 else if (width + XINT (dx) <= pt.x)
2663 /* It fits to the left of the pointer. */
2664 *root_x = pt.x - width - XINT (dx);
2665 else
2666 /* Put it left justified on the screen -- it ought to fit that way. */
2667 *root_x = 0;
2668
2669 if (INTEGERP (top))
2670 *root_y = pt.y;
2671 else if (pt.y - XINT (dy) - height >= 0)
2672 /* It fits below the pointer. */
2673 *root_y = pt.y - height - XINT (dy);
2674 else if (pt.y + XINT (dy) + height
2675 <= x_display_pixel_height (FRAME_DISPLAY_INFO (f)))
2676 /* It fits above the pointer */
2677 *root_y = pt.y + XINT (dy);
2678 else
2679 /* Put it on the top. */
2680 *root_y = x_display_pixel_height (FRAME_DISPLAY_INFO (f)) - height;
2681 }
2682
2683
2684 DEFUN ("x-show-tip", Fx_show_tip, Sx_show_tip, 1, 6, 0,
2685 doc: /* Show STRING in a \"tooltip\" window on frame FRAME.
2686 A tooltip window is a small window displaying a string.
2687
2688 This is an internal function; Lisp code should call `tooltip-show'.
2689
2690 FRAME nil or omitted means use the selected frame.
2691
2692 PARMS is an optional list of frame parameters which can be used to
2693 change the tooltip's appearance.
2694
2695 Automatically hide the tooltip after TIMEOUT seconds. TIMEOUT nil
2696 means use the default timeout of 5 seconds.
2697
2698 If the list of frame parameters PARMS contains a `left' parameter,
2699 the tooltip is displayed at that x-position. Otherwise it is
2700 displayed at the mouse position, with offset DX added (default is 5 if
2701 DX isn't specified). Likewise for the y-position; if a `top' frame
2702 parameter is specified, it determines the y-position of the tooltip
2703 window, otherwise it is displayed at the mouse position, with offset
2704 DY added (default is -10).
2705
2706 A tooltip's maximum size is specified by `x-max-tooltip-size'.
2707 Text larger than the specified size is clipped. */)
2708 (Lisp_Object string, Lisp_Object frame, Lisp_Object parms, Lisp_Object timeout, Lisp_Object dx, Lisp_Object dy)
2709 {
2710 int root_x, root_y;
2711 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
2712 ptrdiff_t count = SPECPDL_INDEX ();
2713 struct frame *f;
2714 char *str;
2715 NSSize size;
2716
2717 specbind (Qinhibit_redisplay, Qt);
2718
2719 GCPRO4 (string, parms, frame, timeout);
2720
2721 CHECK_STRING (string);
2722 str = SSDATA (string);
2723 f = decode_window_system_frame (frame);
2724 if (NILP (timeout))
2725 timeout = make_number (5);
2726 else
2727 CHECK_NATNUM (timeout);
2728
2729 if (NILP (dx))
2730 dx = make_number (5);
2731 else
2732 CHECK_NUMBER (dx);
2733
2734 if (NILP (dy))
2735 dy = make_number (-10);
2736 else
2737 CHECK_NUMBER (dy);
2738
2739 block_input ();
2740 if (ns_tooltip == nil)
2741 ns_tooltip = [[EmacsTooltip alloc] init];
2742 else
2743 Fx_hide_tip ();
2744
2745 [ns_tooltip setText: str];
2746 size = [ns_tooltip frame].size;
2747
2748 /* Move the tooltip window where the mouse pointer is. Resize and
2749 show it. */
2750 compute_tip_xy (f, parms, dx, dy, (int)size.width, (int)size.height,
2751 &root_x, &root_y);
2752
2753 [ns_tooltip showAtX: root_x Y: root_y for: XINT (timeout)];
2754 unblock_input ();
2755
2756 UNGCPRO;
2757 return unbind_to (count, Qnil);
2758 }
2759
2760
2761 DEFUN ("x-hide-tip", Fx_hide_tip, Sx_hide_tip, 0, 0, 0,
2762 doc: /* Hide the current tooltip window, if there is any.
2763 Value is t if tooltip was open, nil otherwise. */)
2764 (void)
2765 {
2766 if (ns_tooltip == nil || ![ns_tooltip isActive])
2767 return Qnil;
2768 [ns_tooltip hide];
2769 return Qt;
2770 }
2771
2772
2773 /* ==========================================================================
2774
2775 Class implementations
2776
2777 ========================================================================== */
2778
2779 /*
2780 Handle arrow/function/control keys and copy/paste/cut in file dialogs.
2781 Return YES if handled, NO if not.
2782 */
2783 static BOOL
2784 handlePanelKeys (NSSavePanel *panel, NSEvent *theEvent)
2785 {
2786 NSString *s;
2787 int i;
2788 BOOL ret = NO;
2789
2790 if ([theEvent type] != NSKeyDown) return NO;
2791 s = [theEvent characters];
2792
2793 for (i = 0; i < [s length]; ++i)
2794 {
2795 int ch = (int) [s characterAtIndex: i];
2796 switch (ch)
2797 {
2798 case NSHomeFunctionKey:
2799 case NSDownArrowFunctionKey:
2800 case NSUpArrowFunctionKey:
2801 case NSLeftArrowFunctionKey:
2802 case NSRightArrowFunctionKey:
2803 case NSPageUpFunctionKey:
2804 case NSPageDownFunctionKey:
2805 case NSEndFunctionKey:
2806 /* Don't send command modified keys, as those are handled in the
2807 performKeyEquivalent method of the super class.
2808 */
2809 if (! ([theEvent modifierFlags] & NSCommandKeyMask))
2810 {
2811 [panel sendEvent: theEvent];
2812 ret = YES;
2813 }
2814 break;
2815 /* As we don't have the standard key commands for
2816 copy/paste/cut/select-all in our edit menu, we must handle
2817 them here. TODO: handle Emacs key bindings for copy/cut/select-all
2818 here, paste works, because we have that in our Edit menu.
2819 I.e. refactor out code in nsterm.m, keyDown: to figure out the
2820 correct modifier.
2821 */
2822 case 'x': // Cut
2823 case 'c': // Copy
2824 case 'v': // Paste
2825 case 'a': // Select all
2826 if ([theEvent modifierFlags] & NSCommandKeyMask)
2827 {
2828 [NSApp sendAction:
2829 (ch == 'x'
2830 ? @selector(cut:)
2831 : (ch == 'c'
2832 ? @selector(copy:)
2833 : (ch == 'v'
2834 ? @selector(paste:)
2835 : @selector(selectAll:))))
2836 to:nil from:panel];
2837 ret = YES;
2838 }
2839 default:
2840 // Send all control keys, as the text field supports C-a, C-f, C-e
2841 // C-b and more.
2842 if ([theEvent modifierFlags] & NSControlKeyMask)
2843 {
2844 [panel sendEvent: theEvent];
2845 ret = YES;
2846 }
2847 break;
2848 }
2849 }
2850
2851
2852 return ret;
2853 }
2854
2855 @implementation EmacsSavePanel
2856 - (BOOL)performKeyEquivalent:(NSEvent *)theEvent
2857 {
2858 BOOL ret = handlePanelKeys (self, theEvent);
2859 if (! ret)
2860 ret = [super performKeyEquivalent:theEvent];
2861 return ret;
2862 }
2863 @end
2864
2865
2866 @implementation EmacsOpenPanel
2867 - (BOOL)performKeyEquivalent:(NSEvent *)theEvent
2868 {
2869 // NSOpenPanel inherits NSSavePanel, so passing self is OK.
2870 BOOL ret = handlePanelKeys (self, theEvent);
2871 if (! ret)
2872 ret = [super performKeyEquivalent:theEvent];
2873 return ret;
2874 }
2875 @end
2876
2877
2878 @implementation EmacsFileDelegate
2879 /* --------------------------------------------------------------------------
2880 Delegate methods for Open/Save panels
2881 -------------------------------------------------------------------------- */
2882 - (BOOL)panel: (id)sender isValidFilename: (NSString *)filename
2883 {
2884 return YES;
2885 }
2886 - (BOOL)panel: (id)sender shouldShowFilename: (NSString *)filename
2887 {
2888 return YES;
2889 }
2890 - (NSString *)panel: (id)sender userEnteredFilename: (NSString *)filename
2891 confirmed: (BOOL)okFlag
2892 {
2893 return filename;
2894 }
2895 @end
2896
2897 #endif
2898
2899
2900 /* ==========================================================================
2901
2902 Lisp interface declaration
2903
2904 ========================================================================== */
2905
2906
2907 void
2908 syms_of_nsfns (void)
2909 {
2910 Qfontsize = intern_c_string ("fontsize");
2911 staticpro (&Qfontsize);
2912
2913 DEFVAR_LISP ("ns-icon-type-alist", Vns_icon_type_alist,
2914 doc: /* Alist of elements (REGEXP . IMAGE) for images of icons associated to frames.
2915 If the title of a frame matches REGEXP, then IMAGE.tiff is
2916 selected as the image of the icon representing the frame when it's
2917 miniaturized. If an element is t, then Emacs tries to select an icon
2918 based on the filetype of the visited file.
2919
2920 The images have to be installed in a folder called English.lproj in the
2921 Emacs folder. You have to restart Emacs after installing new icons.
2922
2923 Example: Install an icon Gnus.tiff and execute the following code
2924
2925 (setq ns-icon-type-alist
2926 (append ns-icon-type-alist
2927 '((\"^\\\\*\\\\(Group\\\\*$\\\\|Summary \\\\|Article\\\\*$\\\\)\"
2928 . \"Gnus\"))))
2929
2930 When you miniaturize a Group, Summary or Article frame, Gnus.tiff will
2931 be used as the image of the icon representing the frame. */);
2932 Vns_icon_type_alist = list1 (Qt);
2933
2934 DEFVAR_LISP ("ns-version-string", Vns_version_string,
2935 doc: /* Toolkit version for NS Windowing. */);
2936 Vns_version_string = ns_appkit_version_str ();
2937
2938 defsubr (&Sns_read_file_name);
2939 defsubr (&Sns_get_resource);
2940 defsubr (&Sns_set_resource);
2941 defsubr (&Sxw_display_color_p); /* this and next called directly by C code */
2942 defsubr (&Sx_display_grayscale_p);
2943 defsubr (&Sns_font_name);
2944 defsubr (&Sns_list_colors);
2945 #ifdef NS_IMPL_COCOA
2946 defsubr (&Sns_do_applescript);
2947 #endif
2948 defsubr (&Sxw_color_defined_p);
2949 defsubr (&Sxw_color_values);
2950 defsubr (&Sx_server_max_request_size);
2951 defsubr (&Sx_server_vendor);
2952 defsubr (&Sx_server_version);
2953 defsubr (&Sx_display_pixel_width);
2954 defsubr (&Sx_display_pixel_height);
2955 defsubr (&Sns_display_monitor_attributes_list);
2956 defsubr (&Sx_display_mm_width);
2957 defsubr (&Sx_display_mm_height);
2958 defsubr (&Sx_display_screens);
2959 defsubr (&Sx_display_planes);
2960 defsubr (&Sx_display_color_cells);
2961 defsubr (&Sx_display_visual_class);
2962 defsubr (&Sx_display_backing_store);
2963 defsubr (&Sx_display_save_under);
2964 defsubr (&Sx_create_frame);
2965 defsubr (&Sx_open_connection);
2966 defsubr (&Sx_close_connection);
2967 defsubr (&Sx_display_list);
2968
2969 defsubr (&Sns_hide_others);
2970 defsubr (&Sns_hide_emacs);
2971 defsubr (&Sns_emacs_info_panel);
2972 defsubr (&Sns_list_services);
2973 defsubr (&Sns_perform_service);
2974 defsubr (&Sns_convert_utf8_nfd_to_nfc);
2975 defsubr (&Sns_popup_font_panel);
2976 defsubr (&Sns_popup_color_panel);
2977
2978 defsubr (&Sx_show_tip);
2979 defsubr (&Sx_hide_tip);
2980
2981 as_status = 0;
2982 as_script = Qnil;
2983 as_result = 0;
2984 }