1 /* Functions for the NeXT/Open/GNUstep and MacOSX window system.
3 Copyright (C) 1989, 1992-1994, 2005-2006, 2008-2013 Free Software
6 This file is part of GNU Emacs.
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.
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.
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/>. */
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)
29 /* This should be the first include, as it may set up #defines affecting
30 interpretation of even the system includes. */
34 #include <c-strcase.h>
37 #include "blockinput.h"
40 #include "character.h"
43 #include "termhooks.h"
48 #include <IOKit/graphics/IOGraphicsLib.h>
52 int fns_trace_num = 1;
53 #define NSTRACE(x) fprintf (stderr, "%s:%d: [%d] " #x "\n", \
54 __FILE__, __LINE__, ++fns_trace_num)
61 extern NSArray *ns_send_types, *ns_return_types, *ns_drag_types;
63 extern Lisp_Object Qforeground_color;
64 extern Lisp_Object Qbackground_color;
65 extern Lisp_Object Qcursor_color;
66 extern Lisp_Object Qinternal_border_width;
67 extern Lisp_Object Qvisibility;
68 extern Lisp_Object Qcursor_type;
69 extern Lisp_Object Qicon_type;
70 extern Lisp_Object Qicon_name;
71 extern Lisp_Object Qicon_left;
72 extern Lisp_Object Qicon_top;
73 extern Lisp_Object Qleft;
74 extern Lisp_Object Qright;
75 extern Lisp_Object Qtop;
76 extern Lisp_Object Qdisplay;
77 extern Lisp_Object Qvertical_scroll_bars;
78 extern Lisp_Object Qauto_raise;
79 extern Lisp_Object Qauto_lower;
80 extern Lisp_Object Qbox;
81 extern Lisp_Object Qscroll_bar_width;
82 extern Lisp_Object Qx_resource_name;
83 extern Lisp_Object Qface_set_after_frame_default;
84 extern Lisp_Object Qunderline, Qundefined;
85 extern Lisp_Object Qheight, Qminibuffer, Qname, Qonly, Qwidth;
86 extern Lisp_Object Qunsplittable, Qmenu_bar_lines, Qbuffer_predicate, Qtitle;
89 Lisp_Object Qbuffered;
90 Lisp_Object Qfontsize;
92 EmacsTooltip *ns_tooltip = nil;
94 /* Need forward declaration here to preserve organizational integrity of file */
95 Lisp_Object Fx_open_connection (Lisp_Object, Lisp_Object, Lisp_Object);
97 /* Static variables to handle applescript execution. */
98 static Lisp_Object as_script, *as_result;
102 static ptrdiff_t image_cache_refcount;
106 /* ==========================================================================
108 Internal utility functions
110 ========================================================================== */
112 /* Let the user specify a Nextstep display with a Lisp object.
113 OBJECT may be nil, a frame or a terminal object.
114 nil stands for the selected frame--or, if that is not a Nextstep frame,
115 the first Nextstep display on the list. */
117 static struct ns_display_info *
118 check_ns_display_info (Lisp_Object object)
120 struct ns_display_info *dpyinfo = NULL;
124 struct frame *sf = XFRAME (selected_frame);
126 if (FRAME_NS_P (sf) && FRAME_LIVE_P (sf))
127 dpyinfo = FRAME_NS_DISPLAY_INFO (sf);
128 else if (x_display_list != 0)
129 dpyinfo = x_display_list;
131 error ("Nextstep windows are not in use or not initialized");
133 else if (TERMINALP (object))
135 struct terminal *t = get_terminal (object, 1);
137 if (t->type != output_ns)
138 error ("Terminal %d is not a Nextstep display", t->id);
140 dpyinfo = t->display_info.ns;
142 else if (STRINGP (object))
143 dpyinfo = ns_display_info_for_name (object);
146 FRAME_PTR f = decode_window_system_frame (object);
147 dpyinfo = FRAME_NS_DISPLAY_INFO (f);
155 ns_get_window (Lisp_Object maybeFrame)
157 id view =nil, window =nil;
159 if (!FRAMEP (maybeFrame) || !FRAME_NS_P (XFRAME (maybeFrame)))
160 maybeFrame = selected_frame;/*wrong_type_argument (Qframep, maybeFrame); */
162 if (!NILP (maybeFrame))
163 view = FRAME_NS_VIEW (XFRAME (maybeFrame));
164 if (view) window =[view window];
170 /* Return the X display structure for the display named NAME.
171 Open a new connection if necessary. */
172 struct ns_display_info *
173 ns_display_info_for_name (Lisp_Object name)
176 struct ns_display_info *dpyinfo;
180 for (dpyinfo = x_display_list, names = ns_display_name_list;
182 dpyinfo = dpyinfo->next, names = XCDR (names))
185 tem = Fstring_equal (XCAR (XCAR (names)), name);
190 error ("Emacs for OpenStep does not yet support multi-display.");
192 Fx_open_connection (name, Qnil, Qnil);
193 dpyinfo = x_display_list;
196 error ("OpenStep on %s not responding.\n", SDATA (name));
202 ns_filename_from_panel (NSSavePanel *panel)
204 #if defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
205 NSURL *url = [panel URL];
206 NSString *str = [url path];
209 return [panel filename];
214 ns_directory_from_panel (NSSavePanel *panel)
216 #if defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
217 NSURL *url = [panel directoryURL];
218 NSString *str = [url path];
221 return [panel directory];
226 interpret_services_menu (NSMenu *menu, Lisp_Object prefix, Lisp_Object old)
227 /* --------------------------------------------------------------------------
228 Turn the input menu (an NSMenu) into a lisp list for tracking on lisp side
229 -------------------------------------------------------------------------- */
239 count = [menu numberOfItems];
240 for (i = 0; i<count; i++)
242 item = [menu itemAtIndex: i];
243 name = [[item title] UTF8String];
246 nameStr = build_string (name);
248 if ([item hasSubmenu])
250 old = interpret_services_menu ([item submenu],
251 Fcons (nameStr, prefix), old);
255 keys = [item keyEquivalent];
256 if (keys && [keys length] )
258 key = [keys characterAtIndex: 0];
259 res = make_number (key|super_modifier);
265 old = Fcons (Fcons (res,
266 Freverse (Fcons (nameStr,
276 /* ==========================================================================
278 Frame parameter setters
280 ========================================================================== */
284 x_set_foreground_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
287 EmacsCGFloat r, g, b, alpha;
289 if (ns_lisp_to_color (arg, &col))
291 store_frame_param (f, Qforeground_color, oldval);
292 error ("Unknown color");
296 [f->output_data.ns->foreground_color release];
297 f->output_data.ns->foreground_color = col;
299 [col getRed: &r green: &g blue: &b alpha: &alpha];
300 FRAME_FOREGROUND_PIXEL (f) =
301 ARGB_TO_ULONG ((int)(alpha*0xff), (int)(r*0xff), (int)(g*0xff), (int)(b*0xff));
303 if (FRAME_NS_VIEW (f))
305 update_face_from_frame_parameter (f, Qforeground_color, arg);
306 /*recompute_basic_faces (f); */
307 if (FRAME_VISIBLE_P (f))
314 x_set_background_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
318 NSView *view = FRAME_NS_VIEW (f);
319 EmacsCGFloat r, g, b, alpha;
321 if (ns_lisp_to_color (arg, &col))
323 store_frame_param (f, Qbackground_color, oldval);
324 error ("Unknown color");
327 /* clear the frame; in some instances the NS-internal GC appears not to
328 update, or it does update and cannot clear old text properly */
329 if (FRAME_VISIBLE_P (f))
333 [f->output_data.ns->background_color release];
334 f->output_data.ns->background_color = col;
336 [col getRed: &r green: &g blue: &b alpha: &alpha];
337 FRAME_BACKGROUND_PIXEL (f) =
338 ARGB_TO_ULONG ((int)(alpha*0xff), (int)(r*0xff), (int)(g*0xff), (int)(b*0xff));
342 [[view window] setBackgroundColor: col];
344 if (alpha != (EmacsCGFloat) 1.0)
345 [[view window] setOpaque: NO];
347 [[view window] setOpaque: YES];
349 face = FRAME_DEFAULT_FACE (f);
352 col = ns_lookup_indexed_color (NS_FACE_BACKGROUND (face), f);
353 face->background = ns_index_color
354 ([col colorWithAlphaComponent: alpha], f);
356 update_face_from_frame_parameter (f, Qbackground_color, arg);
359 if (FRAME_VISIBLE_P (f))
366 x_set_cursor_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
370 if (ns_lisp_to_color (arg, &col))
372 store_frame_param (f, Qcursor_color, oldval);
373 error ("Unknown color");
376 [FRAME_CURSOR_COLOR (f) release];
377 FRAME_CURSOR_COLOR (f) = [col retain];
379 if (FRAME_VISIBLE_P (f))
381 x_update_cursor (f, 0);
382 x_update_cursor (f, 1);
384 update_face_from_frame_parameter (f, Qcursor_color, arg);
389 x_set_icon_name (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
391 NSView *view = FRAME_NS_VIEW (f);
392 NSTRACE (x_set_icon_name);
394 /* see if it's changed */
397 if (STRINGP (oldval) && EQ (Fstring_equal (oldval, arg), Qt))
400 else if (!STRINGP (oldval) && EQ (oldval, Qnil) == EQ (arg, Qnil))
403 fset_icon_name (f, arg);
407 if (!NILP (f->title))
410 /* explicit name and no icon-name -> explicit_name */
411 if (f->explicit_name)
415 /* no explicit name and no icon-name ->
416 name has to be rebuild from icon_title_format */
417 windows_or_buffers_changed++;
422 /* Don't change the name if it's already NAME. */
423 if ([[view window] miniwindowTitle] &&
424 ([[[view window] miniwindowTitle]
425 isEqualToString: [NSString stringWithUTF8String:
429 [[view window] setMiniwindowTitle:
430 [NSString stringWithUTF8String: SSDATA (arg)]];
434 ns_set_name_internal (FRAME_PTR f, Lisp_Object name)
437 Lisp_Object encoded_name, encoded_icon_name;
439 NSView *view = FRAME_NS_VIEW (f);
442 encoded_name = ENCODE_UTF_8 (name);
445 str = [NSString stringWithUTF8String: SSDATA (encoded_name)];
447 /* Don't change the name if it's already NAME. */
448 if (! [[[view window] title] isEqualToString: str])
449 [[view window] setTitle: str];
451 if (!STRINGP (f->icon_name))
452 encoded_icon_name = encoded_name;
454 encoded_icon_name = ENCODE_UTF_8 (f->icon_name);
456 str = [NSString stringWithUTF8String: SSDATA (encoded_icon_name)];
458 if ([[view window] miniwindowTitle] &&
459 ! [[[view window] miniwindowTitle] isEqualToString: str])
460 [[view window] setMiniwindowTitle: str];
465 ns_set_name (struct frame *f, Lisp_Object name, int explicit)
467 NSTRACE (ns_set_name);
469 /* Make sure that requests from lisp code override requests from
470 Emacs redisplay code. */
473 /* If we're switching from explicit to implicit, we had better
474 update the mode lines and thereby update the title. */
475 if (f->explicit_name && NILP (name))
476 update_mode_lines = 1;
478 f->explicit_name = ! NILP (name);
480 else if (f->explicit_name)
484 name = build_string([ns_app_name UTF8String]);
488 /* Don't change the name if it's already NAME. */
489 if (! NILP (Fstring_equal (name, f->name)))
494 /* title overrides explicit name */
495 if (! NILP (f->title))
498 ns_set_name_internal (f, name);
502 /* This function should be called when the user's lisp code has
503 specified a name for the frame; the name will override any set by the
506 x_explicitly_set_name (FRAME_PTR f, Lisp_Object arg, Lisp_Object oldval)
508 NSTRACE (x_explicitly_set_name);
509 ns_set_name (f, arg, 1);
513 /* This function should be called by Emacs redisplay code to set the
514 name; names set this way will never override names set by the user's
517 x_implicitly_set_name (FRAME_PTR f, Lisp_Object arg, Lisp_Object oldval)
519 NSTRACE (x_implicitly_set_name);
521 /* Deal with NS specific format t. */
522 if (FRAME_NS_P (f) && ((FRAME_ICONIFIED_P (f) && EQ (Vicon_title_format, Qt))
523 || EQ (Vframe_title_format, Qt)))
524 ns_set_name_as_filename (f);
526 ns_set_name (f, arg, 0);
530 /* Change the title of frame F to NAME.
531 If NAME is nil, use the frame name as the title. */
534 x_set_title (struct frame *f, Lisp_Object name, Lisp_Object old_name)
536 NSTRACE (x_set_title);
537 /* Don't change the title if it's already NAME. */
538 if (EQ (name, f->title))
541 update_mode_lines = 1;
543 fset_title (f, name);
550 ns_set_name_internal (f, name);
555 ns_set_name_as_filename (struct frame *f)
558 Lisp_Object name, filename;
559 Lisp_Object buf = XWINDOW (f->selected_window)->contents;
561 NSAutoreleasePool *pool;
563 Lisp_Object encoded_name, encoded_filename;
565 NSTRACE (ns_set_name_as_filename);
567 if (f->explicit_name || ! NILP (f->title))
571 pool = [[NSAutoreleasePool alloc] init];
572 filename = BVAR (XBUFFER (buf), filename);
573 name = BVAR (XBUFFER (buf), name);
577 if (! NILP (filename))
578 name = Ffile_name_nondirectory (filename);
580 name = build_string ([ns_app_name UTF8String]);
584 encoded_name = ENCODE_UTF_8 (name);
587 view = FRAME_NS_VIEW (f);
589 title = FRAME_ICONIFIED_P (f) ? [[[view window] miniwindowTitle] UTF8String]
590 : [[[view window] title] UTF8String];
592 if (title && (! strcmp (title, SSDATA (encoded_name))))
599 str = [NSString stringWithUTF8String: SSDATA (encoded_name)];
600 if (str == nil) str = @"Bad coding";
602 if (FRAME_ICONIFIED_P (f))
603 [[view window] setMiniwindowTitle: str];
608 if (! NILP (filename))
611 encoded_filename = ENCODE_UTF_8 (filename);
614 fstr = [NSString stringWithUTF8String: SSDATA (encoded_filename)];
615 if (fstr == nil) fstr = @"";
617 /* work around a bug observed on 10.3 and later where
618 setTitleWithRepresentedFilename does not clear out previous state
619 if given filename does not exist */
620 if (! [[NSFileManager defaultManager] fileExistsAtPath: fstr])
621 [[view window] setRepresentedFilename: @""];
627 [[view window] setRepresentedFilename: fstr];
628 [[view window] setTitle: str];
638 ns_set_doc_edited (struct frame *f, Lisp_Object arg)
640 NSView *view = FRAME_NS_VIEW (f);
641 NSAutoreleasePool *pool;
642 if (!MINI_WINDOW_P (XWINDOW (f->selected_window)))
645 pool = [[NSAutoreleasePool alloc] init];
646 [[view window] setDocumentEdited: !NILP (arg)];
654 x_set_menu_bar_lines (struct frame *f, Lisp_Object value, Lisp_Object oldval)
657 if (FRAME_MINIBUF_ONLY_P (f))
660 if (TYPE_RANGED_INTEGERP (int, value))
661 nlines = XINT (value);
665 FRAME_MENU_BAR_LINES (f) = 0;
668 FRAME_EXTERNAL_MENU_BAR (f) = 1;
669 /* does for all frames, whereas we just want for one frame
670 [NSMenu setMenuBarVisible: YES]; */
674 if (FRAME_EXTERNAL_MENU_BAR (f) == 1)
675 free_frame_menubar (f);
676 /* [NSMenu setMenuBarVisible: NO]; */
677 FRAME_EXTERNAL_MENU_BAR (f) = 0;
682 /* toolbar support */
684 x_set_tool_bar_lines (struct frame *f, Lisp_Object value, Lisp_Object oldval)
688 if (FRAME_MINIBUF_ONLY_P (f))
691 if (RANGED_INTEGERP (0, value, INT_MAX))
692 nlines = XFASTINT (value);
698 FRAME_EXTERNAL_TOOL_BAR (f) = 1;
699 update_frame_tool_bar (f);
703 if (FRAME_EXTERNAL_TOOL_BAR (f))
705 free_frame_tool_bar (f);
706 FRAME_EXTERNAL_TOOL_BAR (f) = 0;
710 x_set_window_size (f, 0, f->text_cols, f->text_lines);
715 ns_implicitly_set_icon_type (struct frame *f)
718 EmacsView *view = FRAME_NS_VIEW (f);
720 Lisp_Object chain, elt;
721 NSAutoreleasePool *pool;
724 NSTRACE (ns_implicitly_set_icon_type);
727 pool = [[NSAutoreleasePool alloc] init];
728 if (f->output_data.ns->miniimage
729 && [[NSString stringWithUTF8String: SSDATA (f->name)]
730 isEqualToString: [(NSImage *)f->output_data.ns->miniimage name]])
737 tem = assq_no_quit (Qicon_type, f->param_alist);
738 if (CONSP (tem) && ! NILP (XCDR (tem)))
745 for (chain = Vns_icon_type_alist;
746 image == nil && CONSP (chain);
747 chain = XCDR (chain))
750 /* special case: 't' means go by file type */
751 if (SYMBOLP (elt) && EQ (elt, Qt) && SSDATA (f->name)[0] == '/')
754 = [NSString stringWithUTF8String: SSDATA (f->name)];
755 if ([[NSFileManager defaultManager] fileExistsAtPath: str])
756 image = [[[NSWorkspace sharedWorkspace] iconForFile: str] retain];
758 else if (CONSP (elt) &&
759 STRINGP (XCAR (elt)) &&
760 STRINGP (XCDR (elt)) &&
761 fast_string_match (XCAR (elt), f->name) >= 0)
763 image = [EmacsImage allocInitFromFile: XCDR (elt)];
765 image = [[NSImage imageNamed:
766 [NSString stringWithUTF8String:
767 SSDATA (XCDR (elt))]] retain];
773 image = [[[NSWorkspace sharedWorkspace] iconForFileType: @"text"] retain];
777 [f->output_data.ns->miniimage release];
778 f->output_data.ns->miniimage = image;
779 [view setMiniwindowImage: setMini];
786 x_set_icon_type (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
788 EmacsView *view = FRAME_NS_VIEW (f);
792 NSTRACE (x_set_icon_type);
794 if (!NILP (arg) && SYMBOLP (arg))
796 arg =build_string (SSDATA (SYMBOL_NAME (arg)));
797 store_frame_param (f, Qicon_type, arg);
800 /* do it the implicit way */
803 ns_implicitly_set_icon_type (f);
809 image = [EmacsImage allocInitFromFile: arg];
811 image =[NSImage imageNamed: [NSString stringWithUTF8String:
816 image = [NSImage imageNamed: @"text"];
820 f->output_data.ns->miniimage = image;
821 [view setMiniwindowImage: setMini];
825 /* TODO: move to nsterm? */
827 ns_lisp_to_cursor_type (Lisp_Object arg)
830 if (XTYPE (arg) == Lisp_String)
832 else if (XTYPE (arg) == Lisp_Symbol)
833 str = SSDATA (SYMBOL_NAME (arg));
835 if (!strcmp (str, "box")) return FILLED_BOX_CURSOR;
836 if (!strcmp (str, "hollow")) return HOLLOW_BOX_CURSOR;
837 if (!strcmp (str, "hbar")) return HBAR_CURSOR;
838 if (!strcmp (str, "bar")) return BAR_CURSOR;
839 if (!strcmp (str, "no")) return NO_CURSOR;
845 ns_cursor_type_to_lisp (int arg)
849 case FILLED_BOX_CURSOR: return Qbox;
850 case HOLLOW_BOX_CURSOR: return intern ("hollow");
851 case HBAR_CURSOR: return intern ("hbar");
852 case BAR_CURSOR: return intern ("bar");
854 default: return intern ("no");
858 /* This is the same as the xfns.c definition. */
860 x_set_cursor_type (FRAME_PTR f, Lisp_Object arg, Lisp_Object oldval)
862 set_frame_cursor_types (f, arg);
864 /* Make sure the cursor gets redrawn. */
865 cursor_type_changed = 1;
869 /* called to set mouse pointer color, but all other terms use it to
870 initialize pointer types (and don't set the color ;) */
872 x_set_mouse_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
874 /* don't think we can do this on Nextstep */
879 #define Xstr(x) Str(x)
882 ns_appkit_version_str (void)
886 #ifdef NS_IMPL_GNUSTEP
887 sprintf(tmp, "gnustep-gui-%s", Xstr(GNUSTEP_GUI_VERSION));
888 #elif defined (NS_IMPL_COCOA)
889 sprintf(tmp, "apple-appkit-%.2f", NSAppKitVersionNumber);
893 return build_string (tmp);
897 /* This is for use by x-server-version and collapses all version info we
898 have into a single int. For a better picture of the implementation
899 running, use ns_appkit_version_str.*/
901 ns_appkit_version_int (void)
903 #ifdef NS_IMPL_GNUSTEP
904 return GNUSTEP_GUI_MAJOR_VERSION * 100 + GNUSTEP_GUI_MINOR_VERSION;
905 #elif defined (NS_IMPL_COCOA)
906 return (int)NSAppKitVersionNumber;
913 x_icon (struct frame *f, Lisp_Object parms)
914 /* --------------------------------------------------------------------------
915 Strangely-named function to set icon position parameters in frame.
916 This is irrelevant under OS X, but might be needed under GNUstep,
917 depending on the window manager used. Note, this is not a standard
918 frame parameter-setter; it is called directly from x-create-frame.
919 -------------------------------------------------------------------------- */
921 Lisp_Object icon_x, icon_y;
922 struct ns_display_info *dpyinfo = check_ns_display_info (Qnil);
924 f->output_data.ns->icon_top = Qnil;
925 f->output_data.ns->icon_left = Qnil;
927 /* Set the position of the icon. */
928 icon_x = x_get_arg (dpyinfo, parms, Qicon_left, 0, 0, RES_TYPE_NUMBER);
929 icon_y = x_get_arg (dpyinfo, parms, Qicon_top, 0, 0, RES_TYPE_NUMBER);
930 if (!EQ (icon_x, Qunbound) && !EQ (icon_y, Qunbound))
932 CHECK_NUMBER (icon_x);
933 CHECK_NUMBER (icon_y);
934 f->output_data.ns->icon_top = icon_y;
935 f->output_data.ns->icon_left = icon_x;
937 else if (!EQ (icon_x, Qunbound) || !EQ (icon_y, Qunbound))
938 error ("Both left and top icon corners of icon must be specified");
942 /* Note: see frame.c for template, also where generic functions are impl */
943 frame_parm_handler ns_frame_parm_handlers[] =
945 x_set_autoraise, /* generic OK */
946 x_set_autolower, /* generic OK */
947 x_set_background_color,
948 0, /* x_set_border_color, may be impossible under Nextstep */
949 0, /* x_set_border_width, may be impossible under Nextstep */
952 x_set_font, /* generic OK */
953 x_set_foreground_color,
956 x_set_internal_border_width, /* generic OK */
957 x_set_menu_bar_lines,
959 x_explicitly_set_name,
960 x_set_scroll_bar_width, /* generic OK */
962 x_set_unsplittable, /* generic OK */
963 x_set_vertical_scroll_bars, /* generic OK */
964 x_set_visibility, /* generic OK */
965 x_set_tool_bar_lines,
966 0, /* x_set_scroll_bar_foreground, will ignore (not possible on NS) */
967 0, /* x_set_scroll_bar_background, will ignore (not possible on NS) */
968 x_set_screen_gamma, /* generic OK */
969 x_set_line_spacing, /* generic OK, sets f->extra_line_spacing to int */
970 x_set_fringe_width, /* generic OK */
971 x_set_fringe_width, /* generic OK */
972 0, /* x_set_wait_for_wm, will ignore */
973 x_set_fullscreen, /* generic OK */
974 x_set_font_backend, /* generic OK */
976 0, /* x_set_sticky */
977 0, /* x_set_tool_bar_position */
981 /* Handler for signals raised during x_create_frame.
982 FRAME is the frame which is partially constructed. */
985 unwind_create_frame (Lisp_Object frame)
987 struct frame *f = XFRAME (frame);
989 /* If frame is already dead, nothing to do. This can happen if the
990 display is disconnected after the frame has become official, but
991 before x_create_frame removes the unwind protect. */
992 if (!FRAME_LIVE_P (f))
995 /* If frame is ``official'', nothing to do. */
996 if (NILP (Fmemq (frame, Vframe_list)))
998 #if defined GLYPH_DEBUG && defined ENABLE_CHECKING
999 struct ns_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
1002 x_free_frame_resources (f);
1006 /* Check that reference counts are indeed correct. */
1007 eassert (dpyinfo->terminal->image_cache->refcount == image_cache_refcount);
1016 * Read geometry related parameters from preferences if not in PARMS.
1017 * Returns the union of parms and any preferences read.
1021 get_geometry_from_preferences (struct ns_display_info *dpyinfo,
1029 { "width", "Width", Qwidth },
1030 { "height", "Height", Qheight },
1031 { "left", "Left", Qleft },
1032 { "top", "Top", Qtop },
1036 for (i = 0; i < sizeof (r)/sizeof (r[0]); ++i)
1038 if (NILP (Fassq (r[i].tem, parms)))
1041 = x_get_arg (dpyinfo, parms, r[i].tem, r[i].val, r[i].cls,
1043 if (! EQ (value, Qunbound))
1044 parms = Fcons (Fcons (r[i].tem, value), parms);
1051 /* ==========================================================================
1055 ========================================================================== */
1057 DEFUN ("x-create-frame", Fx_create_frame, Sx_create_frame,
1059 doc: /* Make a new Nextstep window, called a "frame" in Emacs terms.
1060 Return an Emacs frame object.
1061 PARMS is an alist of frame parameters.
1062 If the parameters specify that the frame should not have a minibuffer,
1063 and do not specify a specific minibuffer window to use,
1064 then `default-minibuffer-frame' must be a frame whose minibuffer can
1065 be shared by the new frame.
1067 This function is an internal primitive--use `make-frame' instead. */)
1071 Lisp_Object frame, tem;
1073 int minibuffer_only = 0;
1074 int window_prompting = 0;
1076 ptrdiff_t count = specpdl_ptr - specpdl;
1077 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
1078 Lisp_Object display;
1079 struct ns_display_info *dpyinfo = NULL;
1082 static int desc_ctr = 1;
1084 /* x_get_arg modifies parms. */
1085 parms = Fcopy_alist (parms);
1087 /* Use this general default value to start with
1088 until we know if this frame has a specified name. */
1089 Vx_resource_name = Vinvocation_name;
1091 display = x_get_arg (dpyinfo, parms, Qterminal, 0, 0, RES_TYPE_STRING);
1092 if (EQ (display, Qunbound))
1094 dpyinfo = check_ns_display_info (display);
1095 kb = dpyinfo->terminal->kboard;
1097 if (!dpyinfo->terminal->name)
1098 error ("Terminal is not live, can't create new frames on it");
1100 name = x_get_arg (dpyinfo, parms, Qname, 0, 0, RES_TYPE_STRING);
1102 && ! EQ (name, Qunbound)
1104 error ("Invalid frame name--not a string or nil");
1107 Vx_resource_name = name;
1109 parent = x_get_arg (dpyinfo, parms, Qparent_id, 0, 0, RES_TYPE_NUMBER);
1110 if (EQ (parent, Qunbound))
1112 if (! NILP (parent))
1113 CHECK_NUMBER (parent);
1115 /* make_frame_without_minibuffer can run Lisp code and garbage collect. */
1116 /* No need to protect DISPLAY because that's not used after passing
1117 it to make_frame_without_minibuffer. */
1119 GCPRO4 (parms, parent, name, frame);
1120 tem = x_get_arg (dpyinfo, parms, Qminibuffer, "minibuffer", "Minibuffer",
1122 if (EQ (tem, Qnone) || NILP (tem))
1123 f = make_frame_without_minibuffer (Qnil, kb, display);
1124 else if (EQ (tem, Qonly))
1126 f = make_minibuffer_frame ();
1127 minibuffer_only = 1;
1129 else if (WINDOWP (tem))
1130 f = make_frame_without_minibuffer (tem, kb, display);
1134 XSETFRAME (frame, f);
1136 f->terminal = dpyinfo->terminal;
1138 f->output_method = output_ns;
1139 f->output_data.ns = xzalloc (sizeof *f->output_data.ns);
1141 FRAME_FONTSET (f) = -1;
1143 fset_icon_name (f, x_get_arg (dpyinfo, parms, Qicon_name,
1144 "iconName", "Title",
1146 if (! STRINGP (f->icon_name))
1147 fset_icon_name (f, Qnil);
1149 FRAME_NS_DISPLAY_INFO (f) = dpyinfo;
1151 /* With FRAME_NS_DISPLAY_INFO set up, this unwind-protect is safe. */
1152 record_unwind_protect (unwind_create_frame, frame);
1154 f->output_data.ns->window_desc = desc_ctr++;
1155 if (TYPE_RANGED_INTEGERP (Window, parent))
1157 f->output_data.ns->parent_desc = XFASTINT (parent);
1158 f->output_data.ns->explicit_parent = 1;
1162 f->output_data.ns->parent_desc = FRAME_NS_DISPLAY_INFO (f)->root_window;
1163 f->output_data.ns->explicit_parent = 0;
1166 /* Set the name; the functions to which we pass f expect the name to
1168 if (EQ (name, Qunbound) || NILP (name) || ! STRINGP (name))
1170 fset_name (f, build_string ([ns_app_name UTF8String]));
1171 f->explicit_name = 0;
1175 fset_name (f, name);
1176 f->explicit_name = 1;
1177 specbind (Qx_resource_name, name);
1181 register_font_driver (&nsfont_driver, f);
1182 x_default_parameter (f, parms, Qfont_backend, Qnil,
1183 "fontBackend", "FontBackend", RES_TYPE_STRING);
1186 /* use for default font name */
1187 id font = [NSFont userFixedPitchFontOfSize: -1.0]; /* default */
1188 x_default_parameter (f, parms, Qfontsize,
1189 make_number (0 /*(int)[font pointSize]*/),
1190 "fontSize", "FontSize", RES_TYPE_NUMBER);
1191 x_default_parameter (f, parms, Qfont,
1192 build_string ([[font fontName] UTF8String]),
1193 "font", "Font", RES_TYPE_STRING);
1197 x_default_parameter (f, parms, Qborder_width, make_number (0),
1198 "borderwidth", "BorderWidth", RES_TYPE_NUMBER);
1199 x_default_parameter (f, parms, Qinternal_border_width, make_number (2),
1200 "internalBorderWidth", "InternalBorderWidth",
1203 /* default scrollbars on right on Mac */
1206 #ifdef NS_IMPL_GNUSTEP
1211 x_default_parameter (f, parms, Qvertical_scroll_bars, spos,
1212 "verticalScrollBars", "VerticalScrollBars",
1215 x_default_parameter (f, parms, Qforeground_color, build_string ("Black"),
1216 "foreground", "Foreground", RES_TYPE_STRING);
1217 x_default_parameter (f, parms, Qbackground_color, build_string ("White"),
1218 "background", "Background", RES_TYPE_STRING);
1219 /* FIXME: not supported yet in Nextstep */
1220 x_default_parameter (f, parms, Qline_spacing, Qnil,
1221 "lineSpacing", "LineSpacing", RES_TYPE_NUMBER);
1222 x_default_parameter (f, parms, Qleft_fringe, Qnil,
1223 "leftFringe", "LeftFringe", RES_TYPE_NUMBER);
1224 x_default_parameter (f, parms, Qright_fringe, Qnil,
1225 "rightFringe", "RightFringe", RES_TYPE_NUMBER);
1228 image_cache_refcount =
1229 FRAME_IMAGE_CACHE (f) ? FRAME_IMAGE_CACHE (f)->refcount : 0;
1232 init_frame_faces (f);
1234 /* The resources controlling the menu-bar and tool-bar are
1235 processed specially at startup, and reflected in the mode
1236 variables; ignore them here. */
1237 x_default_parameter (f, parms, Qmenu_bar_lines,
1238 NILP (Vmenu_bar_mode)
1239 ? make_number (0) : make_number (1),
1240 NULL, NULL, RES_TYPE_NUMBER);
1241 x_default_parameter (f, parms, Qtool_bar_lines,
1242 NILP (Vtool_bar_mode)
1243 ? make_number (0) : make_number (1),
1244 NULL, NULL, RES_TYPE_NUMBER);
1246 x_default_parameter (f, parms, Qbuffer_predicate, Qnil, "bufferPredicate",
1247 "BufferPredicate", RES_TYPE_SYMBOL);
1248 x_default_parameter (f, parms, Qtitle, Qnil, "title", "Title",
1251 parms = get_geometry_from_preferences (dpyinfo, parms);
1252 window_prompting = x_figure_window_size (f, parms, 1);
1254 tem = x_get_arg (dpyinfo, parms, Qunsplittable, 0, 0, RES_TYPE_BOOLEAN);
1255 f->no_split = minibuffer_only || (!EQ (tem, Qunbound) && !EQ (tem, Qnil));
1257 /* NOTE: on other terms, this is done in set_mouse_color, however this
1258 was not getting called under Nextstep */
1259 f->output_data.ns->text_cursor = [NSCursor IBeamCursor];
1260 f->output_data.ns->nontext_cursor = [NSCursor arrowCursor];
1261 f->output_data.ns->modeline_cursor = [NSCursor pointingHandCursor];
1262 f->output_data.ns->hand_cursor = [NSCursor pointingHandCursor];
1263 f->output_data.ns->hourglass_cursor = [NSCursor disappearingItemCursor];
1264 f->output_data.ns->horizontal_drag_cursor = [NSCursor resizeLeftRightCursor];
1265 FRAME_NS_DISPLAY_INFO (f)->vertical_scroll_bar_cursor
1266 = [NSCursor arrowCursor];
1267 f->output_data.ns->current_pointer = f->output_data.ns->text_cursor;
1269 [[EmacsView alloc] initFrameFromEmacs: f];
1273 /* ns_display_info does not have a reference_count. */
1274 f->terminal->reference_count++;
1276 /* It is now ok to make the frame official even if we get an error below.
1277 The frame needs to be on Vframe_list or making it visible won't work. */
1278 Vframe_list = Fcons (frame, Vframe_list);
1280 x_default_parameter (f, parms, Qicon_type, Qnil,
1281 "bitmapIcon", "BitmapIcon", RES_TYPE_SYMBOL);
1283 x_default_parameter (f, parms, Qauto_raise, Qnil,
1284 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN);
1285 x_default_parameter (f, parms, Qauto_lower, Qnil,
1286 "autoLower", "AutoLower", RES_TYPE_BOOLEAN);
1287 x_default_parameter (f, parms, Qcursor_type, Qbox,
1288 "cursorType", "CursorType", RES_TYPE_SYMBOL);
1289 x_default_parameter (f, parms, Qscroll_bar_width, Qnil,
1290 "scrollBarWidth", "ScrollBarWidth",
1292 x_default_parameter (f, parms, Qalpha, Qnil,
1293 "alpha", "Alpha", RES_TYPE_NUMBER);
1294 x_default_parameter (f, parms, Qfullscreen, Qnil,
1295 "fullscreen", "Fullscreen", RES_TYPE_SYMBOL);
1297 width = FRAME_COLS (f);
1298 height = FRAME_LINES (f);
1300 SET_FRAME_COLS (f, 0);
1301 FRAME_LINES (f) = 0;
1302 change_frame_size (f, height, width, 1, 0, 0);
1304 if (! f->output_data.ns->explicit_parent)
1306 Lisp_Object visibility;
1308 visibility = x_get_arg (dpyinfo, parms, Qvisibility, 0, 0,
1310 if (EQ (visibility, Qunbound))
1313 if (EQ (visibility, Qicon))
1314 x_iconify_frame (f);
1315 else if (! NILP (visibility))
1317 x_make_frame_visible (f);
1318 [[FRAME_NS_VIEW (f) window] makeKeyWindow];
1322 /* Must have been Qnil. */
1326 if (FRAME_HAS_MINIBUF_P (f)
1327 && (!FRAMEP (KVAR (kb, Vdefault_minibuffer_frame))
1328 || !FRAME_LIVE_P (XFRAME (KVAR (kb, Vdefault_minibuffer_frame)))))
1329 kset_default_minibuffer_frame (kb, frame);
1331 /* All remaining specified parameters, which have not been "used"
1332 by x_get_arg and friends, now go in the misc. alist of the frame. */
1333 for (tem = parms; CONSP (tem); tem = XCDR (tem))
1334 if (CONSP (XCAR (tem)) && !NILP (XCAR (XCAR (tem))))
1335 fset_param_alist (f, Fcons (XCAR (tem), f->param_alist));
1339 if (window_prompting & USPosition)
1340 x_set_offset (f, f->left_pos, f->top_pos, 1);
1342 /* Make sure windows on this frame appear in calls to next-window
1343 and similar functions. */
1344 Vwindow_list = Qnil;
1346 return unbind_to (count, frame);
1350 DEFUN ("x-focus-frame", Fx_focus_frame, Sx_focus_frame, 1, 1, 0,
1351 doc: /* Set the input focus to FRAME.
1352 FRAME nil means use the selected frame. */)
1355 struct frame *f = decode_window_system_frame (frame);
1356 struct ns_display_info *dpyinfo = FRAME_NS_DISPLAY_INFO (f);
1358 if (dpyinfo->x_focus_frame != f)
1360 EmacsView *view = FRAME_NS_VIEW (f);
1362 [NSApp activateIgnoringOtherApps: YES];
1363 [[view window] makeKeyAndOrderFront: view];
1371 DEFUN ("ns-popup-font-panel", Fns_popup_font_panel, Sns_popup_font_panel,
1373 doc: /* Pop up the font panel. */)
1376 struct frame *f = decode_window_system_frame (frame);
1377 id fm = [NSFontManager sharedFontManager];
1379 [fm setSelectedFont: ((struct nsfont_info *)f->output_data.ns->font)->nsfont
1381 [fm orderFrontFontPanel: NSApp];
1386 DEFUN ("ns-popup-color-panel", Fns_popup_color_panel, Sns_popup_color_panel,
1388 doc: /* Pop up the color panel. */)
1391 check_window_system (NULL);
1392 [NSApp orderFrontColorPanel: NSApp];
1400 #if ! defined (NS_IMPL_COCOA) || \
1401 MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_6
1402 NSString *dirS, *initS;
1408 ns_run_file_dialog (void)
1410 if (ns_fd_data.panel == nil) return;
1411 #if defined (NS_IMPL_COCOA) && \
1412 MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
1413 ns_fd_data.ret = [ns_fd_data.panel runModal];
1415 if (ns_fd_data.no_types)
1417 ns_fd_data.ret = [ns_fd_data.panel
1418 runModalForDirectory: ns_fd_data.dirS
1419 file: ns_fd_data.initS];
1423 ns_fd_data.ret = [ns_fd_data.panel
1424 runModalForDirectory: ns_fd_data.dirS
1425 file: ns_fd_data.initS
1429 ns_fd_data.panel = nil;
1432 DEFUN ("ns-read-file-name", Fns_read_file_name, Sns_read_file_name, 1, 5, 0,
1433 doc: /* Use a graphical panel to read a file name, using prompt PROMPT.
1434 Optional arg DIR, if non-nil, supplies a default directory.
1435 Optional arg MUSTMATCH, if non-nil, means the returned file or
1436 directory must exist.
1437 Optional arg INIT, if non-nil, provides a default file name to use.
1438 Optional arg DIR_ONLY_P, if non-nil, means choose only directories. */)
1439 (Lisp_Object prompt, Lisp_Object dir, Lisp_Object mustmatch,
1440 Lisp_Object init, Lisp_Object dir_only_p)
1442 static id fileDelegate = nil;
1444 BOOL isSave = NILP (mustmatch) && NILP (dir_only_p);
1448 NSString *promptS = NILP (prompt) || !STRINGP (prompt) ? nil :
1449 [NSString stringWithUTF8String: SSDATA (prompt)];
1450 NSString *dirS = NILP (dir) || !STRINGP (dir) ?
1451 [NSString stringWithUTF8String: SSDATA (BVAR (current_buffer, directory))] :
1452 [NSString stringWithUTF8String: SSDATA (dir)];
1453 NSString *initS = NILP (init) || !STRINGP (init) ? nil :
1454 [NSString stringWithUTF8String: SSDATA (init)];
1457 check_window_system (NULL);
1459 if (fileDelegate == nil)
1460 fileDelegate = [EmacsFileDelegate new];
1462 [NSCursor setHiddenUntilMouseMoves: NO];
1464 if ([dirS characterAtIndex: 0] == '~')
1465 dirS = [dirS stringByExpandingTildeInPath];
1468 (id)[EmacsSavePanel savePanel] : (id)[EmacsOpenPanel openPanel];
1470 [panel setTitle: promptS];
1472 [panel setAllowsOtherFileTypes: YES];
1473 [panel setTreatsFilePackagesAsDirectories: YES];
1474 [panel setDelegate: fileDelegate];
1476 if (! NILP (dir_only_p))
1478 [panel setCanChooseDirectories: YES];
1479 [panel setCanChooseFiles: NO];
1483 /* This is not quite what the documentation says, but it is compatible
1484 with the Gtk+ code. Also, the menu entry says "Open File...". */
1485 [panel setCanChooseDirectories: NO];
1486 [panel setCanChooseFiles: YES];
1490 ns_fd_data.panel = panel;
1491 ns_fd_data.ret = NO;
1492 #if defined (NS_IMPL_COCOA) && \
1493 MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
1494 if (! NILP (mustmatch) || ! NILP (dir_only_p))
1495 [panel setAllowedFileTypes: nil];
1496 if (dirS) [panel setDirectoryURL: [NSURL fileURLWithPath: dirS]];
1497 if (initS && NILP (Ffile_directory_p (init)))
1498 [panel setNameFieldStringValue: [initS lastPathComponent]];
1500 [panel setNameFieldStringValue: @""];
1503 ns_fd_data.no_types = NILP (mustmatch) && NILP (dir_only_p);
1504 ns_fd_data.dirS = dirS;
1505 ns_fd_data.initS = initS;
1508 /* runModalForDirectory/runModal restarts the main event loop when done,
1509 so we must start an event loop and then pop up the file dialog.
1510 The file dialog may pop up a confirm dialog after Ok has been pressed,
1511 so we can not simply pop down on the Ok/Cancel press.
1513 nxev = [NSEvent otherEventWithType: NSApplicationDefined
1514 location: NSMakePoint (0, 0)
1517 windowNumber: [[NSApp mainWindow] windowNumber]
1518 context: [NSApp context]
1521 data2: NSAPP_DATA2_RUNFILEDIALOG];
1523 [NSApp postEvent: nxev atStart: NO];
1524 while (ns_fd_data.panel != nil)
1527 ret = (ns_fd_data.ret == NSOKButton);
1531 NSString *str = ns_filename_from_panel (panel);
1532 if (! str) str = ns_directory_from_panel (panel);
1533 if (! str) ret = NO;
1534 else fname = build_string ([str UTF8String]);
1537 [[FRAME_NS_VIEW (SELECTED_FRAME ()) window] makeKeyWindow];
1540 return ret ? fname : Qnil;
1544 ns_get_defaults_value (const char *key)
1546 NSObject *obj = [[NSUserDefaults standardUserDefaults]
1547 objectForKey: [NSString stringWithUTF8String: key]];
1549 if (!obj) return NULL;
1551 return [[NSString stringWithFormat: @"%@", obj] UTF8String];
1555 DEFUN ("ns-get-resource", Fns_get_resource, Sns_get_resource, 2, 2, 0,
1556 doc: /* Return the value of the property NAME of OWNER from the defaults database.
1557 If OWNER is nil, Emacs is assumed. */)
1558 (Lisp_Object owner, Lisp_Object name)
1562 check_window_system (NULL);
1564 owner = build_string([ns_app_name UTF8String]);
1565 CHECK_STRING (name);
1567 value = ns_get_defaults_value (SSDATA (name));
1570 return build_string (value);
1575 DEFUN ("ns-set-resource", Fns_set_resource, Sns_set_resource, 3, 3, 0,
1576 doc: /* Set property NAME of OWNER to VALUE, from the defaults database.
1577 If OWNER is nil, Emacs is assumed.
1578 If VALUE is nil, the default is removed. */)
1579 (Lisp_Object owner, Lisp_Object name, Lisp_Object value)
1581 check_window_system (NULL);
1583 owner = build_string ([ns_app_name UTF8String]);
1584 CHECK_STRING (name);
1587 [[NSUserDefaults standardUserDefaults] removeObjectForKey:
1588 [NSString stringWithUTF8String: SSDATA (name)]];
1592 CHECK_STRING (value);
1593 [[NSUserDefaults standardUserDefaults] setObject:
1594 [NSString stringWithUTF8String: SSDATA (value)]
1595 forKey: [NSString stringWithUTF8String:
1603 DEFUN ("x-server-max-request-size", Fx_server_max_request_size,
1604 Sx_server_max_request_size,
1606 doc: /* This function is a no-op. It is only present for completeness. */)
1607 (Lisp_Object terminal)
1609 check_ns_display_info (terminal);
1610 /* This function has no real equivalent under NeXTstep. Return nil to
1616 DEFUN ("x-server-vendor", Fx_server_vendor, Sx_server_vendor, 0, 1, 0,
1617 doc: /* Return the "vendor ID" string of Nextstep display server TERMINAL.
1618 \(Labeling every distributor as a "vendor" embodies the false assumption
1619 that operating systems cannot be developed and distributed noncommercially.)
1620 The optional argument TERMINAL specifies which display to ask about.
1621 TERMINAL should be a terminal object, a frame or a display name (a string).
1622 If omitted or nil, that stands for the selected frame's display. */)
1623 (Lisp_Object terminal)
1625 check_ns_display_info (terminal);
1626 #ifdef NS_IMPL_GNUSTEP
1627 return build_string ("GNU");
1629 return build_string ("Apple");
1634 DEFUN ("x-server-version", Fx_server_version, Sx_server_version, 0, 1, 0,
1635 doc: /* Return the version numbers of the server of display TERMINAL.
1636 The value is a list of three integers: the major and minor
1637 version numbers of the X Protocol in use, and the distributor-specific release
1638 number. See also the function `x-server-vendor'.
1640 The optional argument TERMINAL specifies which display to ask about.
1641 TERMINAL should be a terminal object, a frame or a display name (a string).
1642 If omitted or nil, that stands for the selected frame's display. */)
1643 (Lisp_Object terminal)
1645 check_ns_display_info (terminal);
1646 /*NOTE: it is unclear what would best correspond with "protocol";
1647 we return 10.3, meaning Panther, since this is roughly the
1648 level that GNUstep's APIs correspond to.
1649 The last number is where we distinguish between the Apple
1650 and GNUstep implementations ("distributor-specific release
1651 number") and give int'ized versions of major.minor. */
1652 return list3i (10, 3, ns_appkit_version_int ());
1656 DEFUN ("x-display-screens", Fx_display_screens, Sx_display_screens, 0, 1, 0,
1657 doc: /* Return the number of screens on Nextstep display server TERMINAL.
1658 The optional argument TERMINAL specifies which display to ask about.
1659 TERMINAL should be a terminal object, a frame or a display name (a string).
1660 If omitted or nil, that stands for the selected frame's display.
1662 Note: "screen" here is not in Nextstep terminology but in X11's. For
1663 the number of physical monitors, use `(length
1664 (display-monitor-attributes-list TERMINAL))' instead. */)
1665 (Lisp_Object terminal)
1667 check_ns_display_info (terminal);
1668 return make_number (1);
1672 DEFUN ("x-display-mm-height", Fx_display_mm_height, Sx_display_mm_height, 0, 1, 0,
1673 doc: /* Return the height in millimeters of the Nextstep display TERMINAL.
1674 The optional argument TERMINAL specifies which display to ask about.
1675 TERMINAL should be a terminal object, a frame or a display name (a string).
1676 If omitted or nil, that stands for the selected frame's display.
1678 On \"multi-monitor\" setups this refers to the height in millimeters for
1679 all physical monitors associated with TERMINAL. To get information
1680 for each physical monitor, use `display-monitor-attributes-list'. */)
1681 (Lisp_Object terminal)
1683 struct ns_display_info *dpyinfo = check_ns_display_info (terminal);
1685 return make_number (x_display_pixel_height (dpyinfo) / (92.0/25.4));
1689 DEFUN ("x-display-mm-width", Fx_display_mm_width, Sx_display_mm_width, 0, 1, 0,
1690 doc: /* Return the width in millimeters of the Nextstep display TERMINAL.
1691 The optional argument TERMINAL specifies which display to ask about.
1692 TERMINAL should be a terminal object, a frame or a display name (a string).
1693 If omitted or nil, that stands for the selected frame's display.
1695 On \"multi-monitor\" setups this refers to the width in millimeters for
1696 all physical monitors associated with TERMINAL. To get information
1697 for each physical monitor, use `display-monitor-attributes-list'. */)
1698 (Lisp_Object terminal)
1700 struct ns_display_info *dpyinfo = check_ns_display_info (terminal);
1702 return make_number (x_display_pixel_width (dpyinfo) / (92.0/25.4));
1706 DEFUN ("x-display-backing-store", Fx_display_backing_store,
1707 Sx_display_backing_store, 0, 1, 0,
1708 doc: /* Return an indication of whether the Nextstep display TERMINAL does backing store.
1709 The value may be `buffered', `retained', or `non-retained'.
1710 The optional argument TERMINAL specifies which display to ask about.
1711 TERMINAL should be a terminal object, a frame or a display name (a string).
1712 If omitted or nil, that stands for the selected frame's display. */)
1713 (Lisp_Object terminal)
1715 check_ns_display_info (terminal);
1716 switch ([ns_get_window (terminal) backingType])
1718 case NSBackingStoreBuffered:
1719 return intern ("buffered");
1720 case NSBackingStoreRetained:
1721 return intern ("retained");
1722 case NSBackingStoreNonretained:
1723 return intern ("non-retained");
1725 error ("Strange value for backingType parameter of frame");
1727 return Qnil; /* not reached, shut compiler up */
1731 DEFUN ("x-display-visual-class", Fx_display_visual_class,
1732 Sx_display_visual_class, 0, 1, 0,
1733 doc: /* Return the visual class of the Nextstep display TERMINAL.
1734 The value is one of the symbols `static-gray', `gray-scale',
1735 `static-color', `pseudo-color', `true-color', or `direct-color'.
1737 The optional argument TERMINAL specifies which display to ask about.
1738 TERMINAL should a terminal object, a frame or a display name (a string).
1739 If omitted or nil, that stands for the selected frame's display. */)
1740 (Lisp_Object terminal)
1742 NSWindowDepth depth;
1744 check_ns_display_info (terminal);
1745 depth = [[[NSScreen screens] objectAtIndex:0] depth];
1747 if ( depth == NSBestDepth (NSCalibratedWhiteColorSpace, 2, 2, YES, NULL))
1748 return intern ("static-gray");
1749 else if (depth == NSBestDepth (NSCalibratedWhiteColorSpace, 8, 8, YES, NULL))
1750 return intern ("gray-scale");
1751 else if ( depth == NSBestDepth (NSCalibratedRGBColorSpace, 8, 8, YES, NULL))
1752 return intern ("pseudo-color");
1753 else if ( depth == NSBestDepth (NSCalibratedRGBColorSpace, 4, 12, NO, NULL))
1754 return intern ("true-color");
1755 else if ( depth == NSBestDepth (NSCalibratedRGBColorSpace, 8, 24, NO, NULL))
1756 return intern ("direct-color");
1758 /* color mgmt as far as we do it is really handled by Nextstep itself anyway */
1759 return intern ("direct-color");
1763 DEFUN ("x-display-save-under", Fx_display_save_under,
1764 Sx_display_save_under, 0, 1, 0,
1765 doc: /* Return t if TERMINAL supports the save-under feature.
1766 The optional argument TERMINAL specifies which display to ask about.
1767 TERMINAL should be a terminal object, a frame or a display name (a string).
1768 If omitted or nil, that stands for the selected frame's display. */)
1769 (Lisp_Object terminal)
1771 check_ns_display_info (terminal);
1772 switch ([ns_get_window (terminal) backingType])
1774 case NSBackingStoreBuffered:
1777 case NSBackingStoreRetained:
1778 case NSBackingStoreNonretained:
1782 error ("Strange value for backingType parameter of frame");
1784 return Qnil; /* not reached, shut compiler up */
1788 DEFUN ("x-open-connection", Fx_open_connection, Sx_open_connection,
1790 doc: /* Open a connection to a display server.
1791 DISPLAY is the name of the display to connect to.
1792 Optional second arg XRM-STRING is a string of resources in xrdb format.
1793 If the optional third arg MUST-SUCCEED is non-nil,
1794 terminate Emacs if we can't open the connection.
1795 \(In the Nextstep version, the last two arguments are currently ignored.) */)
1796 (Lisp_Object display, Lisp_Object resource_string, Lisp_Object must_succeed)
1798 struct ns_display_info *dpyinfo;
1800 CHECK_STRING (display);
1802 nxatoms_of_nsselect ();
1803 dpyinfo = ns_term_init (display);
1806 if (!NILP (must_succeed))
1807 fatal ("OpenStep on %s not responding.\n",
1810 error ("OpenStep on %s not responding.\n",
1818 DEFUN ("x-close-connection", Fx_close_connection, Sx_close_connection,
1820 doc: /* Close the connection to TERMINAL's Nextstep display server.
1821 For TERMINAL, specify a terminal object, a frame or a display name (a
1822 string). If TERMINAL is nil, that stands for the selected frame's
1824 (Lisp_Object terminal)
1826 check_ns_display_info (terminal);
1827 [NSApp terminate: NSApp];
1832 DEFUN ("x-display-list", Fx_display_list, Sx_display_list, 0, 0, 0,
1833 doc: /* Return the list of display names that Emacs has connections to. */)
1836 Lisp_Object tail, result;
1839 for (tail = ns_display_name_list; CONSP (tail); tail = XCDR (tail))
1840 result = Fcons (XCAR (XCAR (tail)), result);
1846 DEFUN ("ns-hide-others", Fns_hide_others, Sns_hide_others,
1848 doc: /* Hides all applications other than Emacs. */)
1851 check_window_system (NULL);
1852 [NSApp hideOtherApplications: NSApp];
1856 DEFUN ("ns-hide-emacs", Fns_hide_emacs, Sns_hide_emacs,
1858 doc: /* If ON is non-nil, the entire Emacs application is hidden.
1859 Otherwise if Emacs is hidden, it is unhidden.
1860 If ON is equal to `activate', Emacs is unhidden and becomes
1861 the active application. */)
1864 check_window_system (NULL);
1865 if (EQ (on, intern ("activate")))
1867 [NSApp unhide: NSApp];
1868 [NSApp activateIgnoringOtherApps: YES];
1871 [NSApp unhide: NSApp];
1873 [NSApp hide: NSApp];
1878 DEFUN ("ns-emacs-info-panel", Fns_emacs_info_panel, Sns_emacs_info_panel,
1880 doc: /* Shows the 'Info' or 'About' panel for Emacs. */)
1883 check_window_system (NULL);
1884 [NSApp orderFrontStandardAboutPanel: nil];
1889 DEFUN ("ns-font-name", Fns_font_name, Sns_font_name, 1, 1, 0,
1890 doc: /* Determine font PostScript or family name for font NAME.
1891 NAME should be a string containing either the font name or an XLFD
1892 font descriptor. If string contains `fontset' and not
1893 `fontset-startup', it is left alone. */)
1897 CHECK_STRING (name);
1902 if (strstr (nm, "fontset") && !strstr (nm, "fontset-startup"))
1905 return build_string (ns_xlfd_to_fontname (SSDATA (name)));
1909 DEFUN ("ns-list-colors", Fns_list_colors, Sns_list_colors, 0, 1, 0,
1910 doc: /* Return a list of all available colors.
1911 The optional argument FRAME is currently ignored. */)
1914 Lisp_Object list = Qnil;
1915 NSEnumerator *colorlists;
1920 CHECK_FRAME (frame);
1921 if (! FRAME_NS_P (XFRAME (frame)))
1922 error ("non-Nextstep frame used in `ns-list-colors'");
1927 colorlists = [[NSColorList availableColorLists] objectEnumerator];
1928 while ((clist = [colorlists nextObject]))
1930 if ([[clist name] length] < 7 ||
1931 [[clist name] rangeOfString: @"PANTONE"].location == 0)
1933 NSEnumerator *cnames = [[clist allKeys] reverseObjectEnumerator];
1935 while ((cname = [cnames nextObject]))
1936 list = Fcons (build_string ([cname UTF8String]), list);
1937 /* for (i = [[clist allKeys] count] - 1; i >= 0; i--)
1938 list = Fcons (build_string ([[[clist allKeys] objectAtIndex: i]
1939 UTF8String]), list); */
1949 DEFUN ("ns-list-services", Fns_list_services, Sns_list_services, 0, 0, 0,
1950 doc: /* List available Nextstep services by querying NSApp. */)
1953 #if defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
1954 /* You can't get services like this in 10.6+. */
1957 Lisp_Object ret = Qnil;
1959 #ifdef NS_IMPL_COCOA
1963 check_window_system (NULL);
1964 svcs = [[NSMenu alloc] initWithTitle: @"Services"];
1965 [NSApp setServicesMenu: svcs];
1966 [NSApp registerServicesMenuSendTypes: ns_send_types
1967 returnTypes: ns_return_types];
1969 /* On Tiger, services menu updating was made lazier (waits for user to
1970 actually click on the menu), so we have to force things along: */
1971 #ifdef NS_IMPL_COCOA
1972 delegate = [svcs delegate];
1973 if (delegate != nil)
1975 if ([delegate respondsToSelector: @selector (menuNeedsUpdate:)])
1976 [delegate menuNeedsUpdate: svcs];
1977 if ([delegate respondsToSelector:
1978 @selector (menu:updateItem:atIndex:shouldCancel:)])
1980 int i, len = [delegate numberOfItemsInMenu: svcs];
1981 for (i =0; i<len; i++)
1982 [svcs addItemWithTitle: @"" action: NULL keyEquivalent: @""];
1983 for (i =0; i<len; i++)
1984 if (![delegate menu: svcs
1985 updateItem: (NSMenuItem *)[svcs itemAtIndex: i]
1986 atIndex: i shouldCancel: NO])
1992 [svcs setAutoenablesItems: NO];
1993 #ifdef NS_IMPL_COCOA
1994 [svcs update]; /* on OS X, converts from '/' structure */
1997 ret = interpret_services_menu (svcs, Qnil, ret);
2003 DEFUN ("ns-perform-service", Fns_perform_service, Sns_perform_service,
2005 doc: /* Perform Nextstep SERVICE on SEND.
2006 SEND should be either a string or nil.
2007 The return value is the result of the service, as string, or nil if
2008 there was no result. */)
2009 (Lisp_Object service, Lisp_Object send)
2015 CHECK_STRING (service);
2016 check_window_system (NULL);
2018 utfStr = SSDATA (service);
2019 svcName = [NSString stringWithUTF8String: utfStr];
2021 pb =[NSPasteboard pasteboardWithUniqueName];
2022 ns_string_to_pasteboard (pb, send);
2024 if (NSPerformService (svcName, pb) == NO)
2025 Fsignal (Qquit, Fcons (build_string ("service not available"), Qnil));
2027 if ([[pb types] count] == 0)
2028 return build_string ("");
2029 return ns_string_from_pasteboard (pb);
2033 DEFUN ("ns-convert-utf8-nfd-to-nfc", Fns_convert_utf8_nfd_to_nfc,
2034 Sns_convert_utf8_nfd_to_nfc, 1, 1, 0,
2035 doc: /* Return an NFC string that matches the UTF-8 NFD string STR. */)
2038 /* TODO: If GNUstep ever implements precomposedStringWithCanonicalMapping,
2043 utfStr = [NSString stringWithUTF8String: SSDATA (str)];
2044 #ifdef NS_IMPL_COCOA
2045 utfStr = [utfStr precomposedStringWithCanonicalMapping];
2047 return build_string ([utfStr UTF8String]);
2051 #ifdef NS_IMPL_COCOA
2053 /* Compile and execute the AppleScript SCRIPT and return the error
2054 status as function value. A zero is returned if compilation and
2055 execution is successful, in which case *RESULT is set to a Lisp
2056 string or a number containing the resulting script value. Otherwise,
2059 ns_do_applescript (Lisp_Object script, Lisp_Object *result)
2061 NSAppleEventDescriptor *desc;
2062 NSDictionary* errorDict;
2063 NSAppleEventDescriptor* returnDescriptor = NULL;
2065 NSAppleScript* scriptObject =
2066 [[NSAppleScript alloc] initWithSource:
2067 [NSString stringWithUTF8String: SSDATA (script)]];
2069 returnDescriptor = [scriptObject executeAndReturnError: &errorDict];
2070 [scriptObject release];
2074 if (returnDescriptor != NULL)
2076 // successful execution
2077 if (kAENullEvent != [returnDescriptor descriptorType])
2080 // script returned an AppleScript result
2081 if ((typeUnicodeText == [returnDescriptor descriptorType]) ||
2082 #if defined (NS_IMPL_COCOA)
2083 (typeUTF16ExternalRepresentation
2084 == [returnDescriptor descriptorType]) ||
2086 (typeUTF8Text == [returnDescriptor descriptorType]) ||
2087 (typeCString == [returnDescriptor descriptorType]))
2089 desc = [returnDescriptor coerceToDescriptorType: typeUTF8Text];
2091 *result = build_string([[desc stringValue] UTF8String]);
2095 /* use typeUTF16ExternalRepresentation? */
2096 // coerce the result to the appropriate ObjC type
2097 desc = [returnDescriptor coerceToDescriptorType: typeUTF8Text];
2099 *result = make_number([desc int32Value]);
2105 // no script result, return error
2111 /* Helper function called from sendEvent to run applescript
2112 from within the main event loop. */
2115 ns_run_ascript (void)
2117 if (! NILP (as_script))
2118 as_status = ns_do_applescript (as_script, as_result);
2122 DEFUN ("ns-do-applescript", Fns_do_applescript, Sns_do_applescript, 1, 1, 0,
2123 doc: /* Execute AppleScript SCRIPT and return the result.
2124 If compilation and execution are successful, the resulting script value
2125 is returned as a string, a number or, in the case of other constructs, t.
2126 In case the execution fails, an error is signaled. */)
2127 (Lisp_Object script)
2133 CHECK_STRING (script);
2134 check_window_system (NULL);
2139 as_result = &result;
2141 /* executing apple script requires the event loop to run, otherwise
2142 errors aren't returned and executeAndReturnError hangs forever.
2143 Post an event that runs applescript and then start the event loop.
2144 The event loop is exited when the script is done. */
2145 nxev = [NSEvent otherEventWithType: NSApplicationDefined
2146 location: NSMakePoint (0, 0)
2149 windowNumber: [[NSApp mainWindow] windowNumber]
2150 context: [NSApp context]
2153 data2: NSAPP_DATA2_RUNASSCRIPT];
2155 [NSApp postEvent: nxev atStart: NO];
2157 // If there are other events, the event loop may exit. Keep running
2158 // until the script has been handled. */
2159 while (! NILP (as_script))
2168 else if (!STRINGP (result))
2169 error ("AppleScript error %d", status);
2171 error ("%s", SSDATA (result));
2177 /* ==========================================================================
2179 Miscellaneous functions not called through hooks
2181 ========================================================================== */
2183 /* called from frame.c */
2184 struct ns_display_info *
2185 check_x_display_info (Lisp_Object frame)
2187 return check_ns_display_info (frame);
2192 x_set_scroll_bar_default_width (struct frame *f)
2194 int wid = FRAME_COLUMN_WIDTH (f);
2195 FRAME_CONFIG_SCROLL_BAR_WIDTH (f) = NS_SCROLL_BAR_WIDTH_DEFAULT;
2196 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) +
2201 extern const char *x_get_string_resource (XrmDatabase, char *, char *);
2204 /* terms impl this instead of x-get-resource directly */
2206 x_get_string_resource (XrmDatabase rdb, char *name, char *class)
2208 /* remove appname prefix; TODO: allow for !="Emacs" */
2209 char *toCheck = class + (!strncmp (class, "Emacs.", 6) ? 6 : 0);
2211 check_window_system (NULL);
2213 if (inhibit_x_resources)
2214 /* --quick was passed, so this is a no-op. */
2217 res = ns_get_defaults_value (toCheck);
2218 return !res ? NULL :
2219 (!c_strncasecmp (res, "YES", 3) ? "true" :
2220 (!c_strncasecmp (res, "NO", 2) ? "false" : res));
2225 x_get_focus_frame (struct frame *frame)
2227 struct ns_display_info *dpyinfo = FRAME_NS_DISPLAY_INFO (frame);
2228 Lisp_Object nsfocus;
2230 if (!dpyinfo->x_focus_frame)
2233 XSETFRAME (nsfocus, dpyinfo->x_focus_frame);
2239 x_pixel_width (struct frame *f)
2241 return FRAME_PIXEL_WIDTH (f);
2246 x_pixel_height (struct frame *f)
2248 return FRAME_PIXEL_HEIGHT (f);
2253 x_sync (struct frame *f)
2255 /* XXX Not implemented XXX */
2261 /* ==========================================================================
2263 Lisp definitions that, for whatever reason, we can't alias as 'ns-XXX'.
2265 ========================================================================== */
2268 DEFUN ("xw-color-defined-p", Fxw_color_defined_p, Sxw_color_defined_p, 1, 2, 0,
2269 doc: /* Internal function called by `color-defined-p', which see.
2270 \(Note that the Nextstep version of this function ignores FRAME.) */)
2271 (Lisp_Object color, Lisp_Object frame)
2274 check_window_system (NULL);
2275 return ns_lisp_to_color (color, &col) ? Qnil : Qt;
2279 DEFUN ("xw-color-values", Fxw_color_values, Sxw_color_values, 1, 2, 0,
2280 doc: /* Internal function called by `color-values', which see. */)
2281 (Lisp_Object color, Lisp_Object frame)
2284 EmacsCGFloat red, green, blue, alpha;
2286 check_window_system (NULL);
2287 CHECK_STRING (color);
2289 if (ns_lisp_to_color (color, &col))
2292 [[col colorUsingColorSpaceName: NSCalibratedRGBColorSpace]
2293 getRed: &red green: &green blue: &blue alpha: &alpha];
2294 return list3i (lrint (red * 65280), lrint (green * 65280),
2295 lrint (blue * 65280));
2299 DEFUN ("xw-display-color-p", Fxw_display_color_p, Sxw_display_color_p, 0, 1, 0,
2300 doc: /* Internal function called by `display-color-p', which see. */)
2301 (Lisp_Object terminal)
2303 NSWindowDepth depth;
2304 NSString *colorSpace;
2306 check_ns_display_info (terminal);
2307 depth = [[[NSScreen screens] objectAtIndex:0] depth];
2308 colorSpace = NSColorSpaceFromDepth (depth);
2310 return [colorSpace isEqualToString: NSDeviceWhiteColorSpace]
2311 || [colorSpace isEqualToString: NSCalibratedWhiteColorSpace]
2316 DEFUN ("x-display-grayscale-p", Fx_display_grayscale_p, Sx_display_grayscale_p,
2318 doc: /* Return t if the Nextstep display supports shades of gray.
2319 Note that color displays do support shades of gray.
2320 The optional argument TERMINAL specifies which display to ask about.
2321 TERMINAL should be a terminal object, a frame or a display name (a string).
2322 If omitted or nil, that stands for the selected frame's display. */)
2323 (Lisp_Object terminal)
2325 NSWindowDepth depth;
2327 check_ns_display_info (terminal);
2328 depth = [[[NSScreen screens] objectAtIndex:0] depth];
2330 return NSBitsPerPixelFromDepth (depth) > 1 ? Qt : Qnil;
2334 DEFUN ("x-display-pixel-width", Fx_display_pixel_width, Sx_display_pixel_width,
2336 doc: /* Return the width in pixels of the Nextstep display TERMINAL.
2337 The optional argument TERMINAL specifies which display to ask about.
2338 TERMINAL should be a terminal object, a frame or a display name (a string).
2339 If omitted or nil, that stands for the selected frame's display.
2341 On \"multi-monitor\" setups this refers to the pixel width for all
2342 physical monitors associated with TERMINAL. To get information for
2343 each physical monitor, use `display-monitor-attributes-list'. */)
2344 (Lisp_Object terminal)
2346 struct ns_display_info *dpyinfo = check_ns_display_info (terminal);
2348 return make_number (x_display_pixel_width (dpyinfo));
2352 DEFUN ("x-display-pixel-height", Fx_display_pixel_height,
2353 Sx_display_pixel_height, 0, 1, 0,
2354 doc: /* Return the height in pixels of the Nextstep display TERMINAL.
2355 The optional argument TERMINAL specifies which display to ask about.
2356 TERMINAL should be a terminal object, a frame or a display name (a string).
2357 If omitted or nil, that stands for the selected frame's display.
2359 On \"multi-monitor\" setups this refers to the pixel height for all
2360 physical monitors associated with TERMINAL. To get information for
2361 each physical monitor, use `display-monitor-attributes-list'. */)
2362 (Lisp_Object terminal)
2364 struct ns_display_info *dpyinfo = check_ns_display_info (terminal);
2366 return make_number (x_display_pixel_height (dpyinfo));
2369 #ifdef NS_IMPL_COCOA
2370 /* Returns the name for the screen that DICT came from, or NULL.
2371 Caller must free return value.
2375 ns_screen_name (CGDirectDisplayID did)
2378 NSDictionary *info = (NSDictionary *)
2379 IODisplayCreateInfoDictionary (CGDisplayIOServicePort (did),
2380 kIODisplayOnlyPreferredName);
2382 = [info objectForKey:
2383 [NSString stringWithUTF8String:kDisplayProductName]];
2385 if ([names count] > 0) {
2386 NSString *n = [names objectForKey: [[names allKeys] objectAtIndex:0]];
2388 name = xstrdup ([n UTF8String]);
2397 ns_make_monitor_attribute_list (struct MonitorInfo *monitors,
2399 int primary_monitor,
2402 Lisp_Object monitor_frames = Fmake_vector (make_number (n_monitors), Qnil);
2403 Lisp_Object frame, rest;
2404 NSArray *screens = [NSScreen screens];
2407 FOR_EACH_FRAME (rest, frame)
2409 struct frame *f = XFRAME (frame);
2413 NSView *view = FRAME_NS_VIEW (f);
2414 NSScreen *screen = [[view window] screen];
2418 for (k = 0; i == -1 && k < [screens count]; ++k)
2420 if ([screens objectAtIndex: k] == screen)
2425 ASET (monitor_frames, i, Fcons (frame, AREF (monitor_frames, i)));
2429 return make_monitor_attribute_list (monitors, n_monitors, primary_monitor,
2430 monitor_frames, source);
2433 DEFUN ("ns-display-monitor-attributes-list",
2434 Fns_display_monitor_attributes_list,
2435 Sns_display_monitor_attributes_list,
2437 doc: /* Return a list of physical monitor attributes on the X display TERMINAL.
2439 The optional argument TERMINAL specifies which display to ask about.
2440 TERMINAL should be a terminal object, a frame or a display name (a string).
2441 If omitted or nil, that stands for the selected frame's display.
2443 In addition to the standard attribute keys listed in
2444 `display-monitor-attributes-list', the following keys are contained in
2447 source -- String describing the source from which multi-monitor
2448 information is obtained, \"NS\" is always the source."
2450 Internal use only, use `display-monitor-attributes-list' instead. */)
2451 (Lisp_Object terminal)
2453 struct terminal *term = get_terminal (terminal, 1);
2455 NSUInteger i, n_monitors;
2456 struct MonitorInfo *monitors;
2457 Lisp_Object attributes_list = Qnil;
2458 CGFloat primary_display_height = 0;
2460 if (term->type != output_ns)
2463 screens = [NSScreen screens];
2464 n_monitors = [screens count];
2465 if (n_monitors == 0)
2468 monitors = (struct MonitorInfo *) xzalloc (n_monitors * sizeof (*monitors));
2470 for (i = 0; i < [screens count]; ++i)
2472 NSScreen *s = [screens objectAtIndex:i];
2473 struct MonitorInfo *m = &monitors[i];
2474 NSRect fr = [s frame];
2475 NSRect vfr = [s visibleFrame];
2478 #ifdef NS_IMPL_COCOA
2479 NSDictionary *dict = [s deviceDescription];
2480 NSNumber *nid = [dict objectForKey:@"NSScreenNumber"];
2481 CGDirectDisplayID did = [nid unsignedIntValue];
2485 primary_display_height = fr.size.height;
2486 y = (short) fr.origin.y;
2487 vy = (short) vfr.origin.y;
2491 // Flip y coordinate as NS has y starting from the bottom.
2492 y = (short) (primary_display_height - fr.size.height - fr.origin.y);
2493 vy = (short) (primary_display_height -
2494 vfr.size.height - vfr.origin.y);
2497 m->geom.x = (short) fr.origin.x;
2499 m->geom.width = (unsigned short) fr.size.width;
2500 m->geom.height = (unsigned short) fr.size.height;
2502 m->work.x = (short) vfr.origin.x;
2503 // y is flipped on NS, so vy - y are pixels missing at the bottom,
2504 // and fr.size.height - vfr.size.height are pixels missing in total.
2505 // Pixels missing at top are
2506 // fr.size.height - vfr.size.height - vy + y.
2507 // work.y is then pixels missing at top + y.
2508 m->work.y = (short) (fr.size.height - vfr.size.height) - vy + y + y;
2509 m->work.width = (unsigned short) vfr.size.width;
2510 m->work.height = (unsigned short) vfr.size.height;
2512 #ifdef NS_IMPL_COCOA
2513 m->name = ns_screen_name (did);
2516 CGSize mms = CGDisplayScreenSize (did);
2517 m->mm_width = (int) mms.width;
2518 m->mm_height = (int) mms.height;
2522 // Assume 92 dpi as x-display-mm-height/x-display-mm-width does.
2523 m->mm_width = (int) (25.4 * fr.size.width / 92.0);
2524 m->mm_height = (int) (25.4 * fr.size.height / 92.0);
2528 // Primary monitor is always first for NS.
2529 attributes_list = ns_make_monitor_attribute_list (monitors, n_monitors,
2532 free_monitors (monitors, n_monitors);
2533 return attributes_list;
2537 DEFUN ("x-display-planes", Fx_display_planes, Sx_display_planes,
2539 doc: /* Return the number of bitplanes of the Nextstep display TERMINAL.
2540 The optional argument TERMINAL specifies which display to ask about.
2541 TERMINAL should be a terminal object, a frame or a display name (a string).
2542 If omitted or nil, that stands for the selected frame's display. */)
2543 (Lisp_Object terminal)
2545 check_ns_display_info (terminal);
2547 (NSBitsPerPixelFromDepth ([[[NSScreen screens] objectAtIndex:0] depth]));
2551 DEFUN ("x-display-color-cells", Fx_display_color_cells, Sx_display_color_cells,
2553 doc: /* Returns the number of color cells of the Nextstep display TERMINAL.
2554 The optional argument TERMINAL specifies which display to ask about.
2555 TERMINAL should be a terminal object, a frame or a display name (a string).
2556 If omitted or nil, that stands for the selected frame's display. */)
2557 (Lisp_Object terminal)
2559 struct ns_display_info *dpyinfo = check_ns_display_info (terminal);
2560 /* We force 24+ bit depths to 24-bit to prevent an overflow. */
2561 return make_number (1 << min (dpyinfo->n_planes, 24));
2565 /* Unused dummy def needed for compatibility. */
2566 Lisp_Object tip_frame;
2568 /* TODO: move to xdisp or similar */
2570 compute_tip_xy (struct frame *f,
2579 Lisp_Object left, top;
2580 EmacsView *view = FRAME_NS_VIEW (f);
2583 /* Start with user-specified or mouse position. */
2584 left = Fcdr (Fassq (Qleft, parms));
2585 top = Fcdr (Fassq (Qtop, parms));
2587 if (!INTEGERP (left) || !INTEGERP (top))
2589 pt = last_mouse_motion_position;
2590 /* Convert to screen coordinates */
2591 pt = [view convertPoint: pt toView: nil];
2592 pt = [[view window] convertBaseToScreen: pt];
2596 /* Absolute coordinates. */
2598 pt.y = x_display_pixel_height (FRAME_NS_DISPLAY_INFO (f)) - XINT (top)
2602 /* Ensure in bounds. (Note, screen origin = lower left.) */
2603 if (INTEGERP (left))
2605 else if (pt.x + XINT (dx) <= 0)
2606 *root_x = 0; /* Can happen for negative dx */
2607 else if (pt.x + XINT (dx) + width
2608 <= x_display_pixel_width (FRAME_NS_DISPLAY_INFO (f)))
2609 /* It fits to the right of the pointer. */
2610 *root_x = pt.x + XINT (dx);
2611 else if (width + XINT (dx) <= pt.x)
2612 /* It fits to the left of the pointer. */
2613 *root_x = pt.x - width - XINT (dx);
2615 /* Put it left justified on the screen -- it ought to fit that way. */
2620 else if (pt.y - XINT (dy) - height >= 0)
2621 /* It fits below the pointer. */
2622 *root_y = pt.y - height - XINT (dy);
2623 else if (pt.y + XINT (dy) + height
2624 <= x_display_pixel_height (FRAME_NS_DISPLAY_INFO (f)))
2625 /* It fits above the pointer */
2626 *root_y = pt.y + XINT (dy);
2628 /* Put it on the top. */
2629 *root_y = x_display_pixel_height (FRAME_NS_DISPLAY_INFO (f)) - height;
2633 DEFUN ("x-show-tip", Fx_show_tip, Sx_show_tip, 1, 6, 0,
2634 doc: /* Show STRING in a \"tooltip\" window on frame FRAME.
2635 A tooltip window is a small window displaying a string.
2637 This is an internal function; Lisp code should call `tooltip-show'.
2639 FRAME nil or omitted means use the selected frame.
2641 PARMS is an optional list of frame parameters which can be used to
2642 change the tooltip's appearance.
2644 Automatically hide the tooltip after TIMEOUT seconds. TIMEOUT nil
2645 means use the default timeout of 5 seconds.
2647 If the list of frame parameters PARMS contains a `left' parameter,
2648 the tooltip is displayed at that x-position. Otherwise it is
2649 displayed at the mouse position, with offset DX added (default is 5 if
2650 DX isn't specified). Likewise for the y-position; if a `top' frame
2651 parameter is specified, it determines the y-position of the tooltip
2652 window, otherwise it is displayed at the mouse position, with offset
2653 DY added (default is -10).
2655 A tooltip's maximum size is specified by `x-max-tooltip-size'.
2656 Text larger than the specified size is clipped. */)
2657 (Lisp_Object string, Lisp_Object frame, Lisp_Object parms, Lisp_Object timeout, Lisp_Object dx, Lisp_Object dy)
2660 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
2661 ptrdiff_t count = SPECPDL_INDEX ();
2666 specbind (Qinhibit_redisplay, Qt);
2668 GCPRO4 (string, parms, frame, timeout);
2670 CHECK_STRING (string);
2671 str = SSDATA (string);
2672 f = decode_window_system_frame (frame);
2674 timeout = make_number (5);
2676 CHECK_NATNUM (timeout);
2679 dx = make_number (5);
2684 dy = make_number (-10);
2689 if (ns_tooltip == nil)
2690 ns_tooltip = [[EmacsTooltip alloc] init];
2694 [ns_tooltip setText: str];
2695 size = [ns_tooltip frame].size;
2697 /* Move the tooltip window where the mouse pointer is. Resize and
2699 compute_tip_xy (f, parms, dx, dy, (int)size.width, (int)size.height,
2702 [ns_tooltip showAtX: root_x Y: root_y for: XINT (timeout)];
2706 return unbind_to (count, Qnil);
2710 DEFUN ("x-hide-tip", Fx_hide_tip, Sx_hide_tip, 0, 0, 0,
2711 doc: /* Hide the current tooltip window, if there is any.
2712 Value is t if tooltip was open, nil otherwise. */)
2715 if (ns_tooltip == nil || ![ns_tooltip isActive])
2722 /* ==========================================================================
2724 Class implementations
2726 ========================================================================== */
2729 Handle arrow/function/control keys and copy/paste/cut in file dialogs.
2730 Return YES if handled, NO if not.
2733 handlePanelKeys (NSSavePanel *panel, NSEvent *theEvent)
2739 if ([theEvent type] != NSKeyDown) return NO;
2740 s = [theEvent characters];
2742 for (i = 0; i < [s length]; ++i)
2744 int ch = (int) [s characterAtIndex: i];
2747 case NSHomeFunctionKey:
2748 case NSDownArrowFunctionKey:
2749 case NSUpArrowFunctionKey:
2750 case NSLeftArrowFunctionKey:
2751 case NSRightArrowFunctionKey:
2752 case NSPageUpFunctionKey:
2753 case NSPageDownFunctionKey:
2754 case NSEndFunctionKey:
2755 /* Don't send command modified keys, as those are handled in the
2756 performKeyEquivalent method of the super class.
2758 if (! ([theEvent modifierFlags] & NSCommandKeyMask))
2760 [panel sendEvent: theEvent];
2764 /* As we don't have the standard key commands for
2765 copy/paste/cut/select-all in our edit menu, we must handle
2766 them here. TODO: handle Emacs key bindings for copy/cut/select-all
2767 here, paste works, because we have that in our Edit menu.
2768 I.e. refactor out code in nsterm.m, keyDown: to figure out the
2774 case 'a': // Select all
2775 if ([theEvent modifierFlags] & NSCommandKeyMask)
2784 : @selector(selectAll:))))
2789 // Send all control keys, as the text field supports C-a, C-f, C-e
2791 if ([theEvent modifierFlags] & NSControlKeyMask)
2793 [panel sendEvent: theEvent];
2804 @implementation EmacsSavePanel
2805 - (BOOL)performKeyEquivalent:(NSEvent *)theEvent
2807 BOOL ret = handlePanelKeys (self, theEvent);
2809 ret = [super performKeyEquivalent:theEvent];
2815 @implementation EmacsOpenPanel
2816 - (BOOL)performKeyEquivalent:(NSEvent *)theEvent
2818 // NSOpenPanel inherits NSSavePanel, so passing self is OK.
2819 BOOL ret = handlePanelKeys (self, theEvent);
2821 ret = [super performKeyEquivalent:theEvent];
2827 @implementation EmacsFileDelegate
2828 /* --------------------------------------------------------------------------
2829 Delegate methods for Open/Save panels
2830 -------------------------------------------------------------------------- */
2831 - (BOOL)panel: (id)sender isValidFilename: (NSString *)filename
2835 - (BOOL)panel: (id)sender shouldShowFilename: (NSString *)filename
2839 - (NSString *)panel: (id)sender userEnteredFilename: (NSString *)filename
2840 confirmed: (BOOL)okFlag
2849 /* ==========================================================================
2851 Lisp interface declaration
2853 ========================================================================== */
2857 syms_of_nsfns (void)
2859 Qfontsize = intern_c_string ("fontsize");
2860 staticpro (&Qfontsize);
2862 DEFVAR_LISP ("ns-icon-type-alist", Vns_icon_type_alist,
2863 doc: /* Alist of elements (REGEXP . IMAGE) for images of icons associated to frames.
2864 If the title of a frame matches REGEXP, then IMAGE.tiff is
2865 selected as the image of the icon representing the frame when it's
2866 miniaturized. If an element is t, then Emacs tries to select an icon
2867 based on the filetype of the visited file.
2869 The images have to be installed in a folder called English.lproj in the
2870 Emacs folder. You have to restart Emacs after installing new icons.
2872 Example: Install an icon Gnus.tiff and execute the following code
2874 (setq ns-icon-type-alist
2875 (append ns-icon-type-alist
2876 '((\"^\\\\*\\\\(Group\\\\*$\\\\|Summary \\\\|Article\\\\*$\\\\)\"
2879 When you miniaturize a Group, Summary or Article frame, Gnus.tiff will
2880 be used as the image of the icon representing the frame. */);
2881 Vns_icon_type_alist = Fcons (Qt, Qnil);
2883 DEFVAR_LISP ("ns-version-string", Vns_version_string,
2884 doc: /* Toolkit version for NS Windowing. */);
2885 Vns_version_string = ns_appkit_version_str ();
2887 defsubr (&Sns_read_file_name);
2888 defsubr (&Sns_get_resource);
2889 defsubr (&Sns_set_resource);
2890 defsubr (&Sxw_display_color_p); /* this and next called directly by C code */
2891 defsubr (&Sx_display_grayscale_p);
2892 defsubr (&Sns_font_name);
2893 defsubr (&Sns_list_colors);
2894 #ifdef NS_IMPL_COCOA
2895 defsubr (&Sns_do_applescript);
2897 defsubr (&Sxw_color_defined_p);
2898 defsubr (&Sxw_color_values);
2899 defsubr (&Sx_server_max_request_size);
2900 defsubr (&Sx_server_vendor);
2901 defsubr (&Sx_server_version);
2902 defsubr (&Sx_display_pixel_width);
2903 defsubr (&Sx_display_pixel_height);
2904 defsubr (&Sns_display_monitor_attributes_list);
2905 defsubr (&Sx_display_mm_width);
2906 defsubr (&Sx_display_mm_height);
2907 defsubr (&Sx_display_screens);
2908 defsubr (&Sx_display_planes);
2909 defsubr (&Sx_display_color_cells);
2910 defsubr (&Sx_display_visual_class);
2911 defsubr (&Sx_display_backing_store);
2912 defsubr (&Sx_display_save_under);
2913 defsubr (&Sx_create_frame);
2914 defsubr (&Sx_open_connection);
2915 defsubr (&Sx_close_connection);
2916 defsubr (&Sx_display_list);
2918 defsubr (&Sns_hide_others);
2919 defsubr (&Sns_hide_emacs);
2920 defsubr (&Sns_emacs_info_panel);
2921 defsubr (&Sns_list_services);
2922 defsubr (&Sns_perform_service);
2923 defsubr (&Sns_convert_utf8_nfd_to_nfc);
2924 defsubr (&Sx_focus_frame);
2925 defsubr (&Sns_popup_font_panel);
2926 defsubr (&Sns_popup_color_panel);
2928 defsubr (&Sx_show_tip);
2929 defsubr (&Sx_hide_tip);