1 /* Functions for the NeXT/Open/GNUstep and macOS window system.
3 Copyright (C) 1989, 1992-1994, 2005-2006, 2008-2017 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 (at
11 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 macOS/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>
55 static EmacsTooltip *ns_tooltip = nil;
57 /* Static variables to handle applescript execution. */
58 static Lisp_Object as_script, *as_result;
61 static ptrdiff_t image_cache_refcount;
63 static struct ns_display_info *ns_display_info_for_name (Lisp_Object);
64 static void ns_set_name_as_filename (struct frame *);
66 /* ==========================================================================
68 Internal utility functions
70 ========================================================================== */
72 /* Let the user specify a Nextstep display with a Lisp object.
73 OBJECT may be nil, a frame or a terminal object.
74 nil stands for the selected frame--or, if that is not a Nextstep frame,
75 the first Nextstep display on the list. */
77 static struct ns_display_info *
78 check_ns_display_info (Lisp_Object object)
80 struct ns_display_info *dpyinfo = NULL;
84 struct frame *sf = XFRAME (selected_frame);
86 if (FRAME_NS_P (sf) && FRAME_LIVE_P (sf))
87 dpyinfo = FRAME_DISPLAY_INFO (sf);
88 else if (x_display_list != 0)
89 dpyinfo = x_display_list;
91 error ("Nextstep windows are not in use or not initialized");
93 else if (TERMINALP (object))
95 struct terminal *t = decode_live_terminal (object);
97 if (t->type != output_ns)
98 error ("Terminal %d is not a Nextstep display", t->id);
100 dpyinfo = t->display_info.ns;
102 else if (STRINGP (object))
103 dpyinfo = ns_display_info_for_name (object);
106 struct frame *f = decode_window_system_frame (object);
107 dpyinfo = FRAME_DISPLAY_INFO (f);
115 ns_get_window (Lisp_Object maybeFrame)
117 id view =nil, window =nil;
119 if (!FRAMEP (maybeFrame) || !FRAME_NS_P (XFRAME (maybeFrame)))
120 maybeFrame = selected_frame;/*wrong_type_argument (Qframep, maybeFrame); */
122 if (!NILP (maybeFrame))
123 view = FRAME_NS_VIEW (XFRAME (maybeFrame));
124 if (view) window =[view window];
130 /* Return the X display structure for the display named NAME.
131 Open a new connection if necessary. */
132 static struct ns_display_info *
133 ns_display_info_for_name (Lisp_Object name)
135 struct ns_display_info *dpyinfo;
139 for (dpyinfo = x_display_list; dpyinfo; dpyinfo = dpyinfo->next)
140 if (!NILP (Fstring_equal (XCAR (dpyinfo->name_list_element), name)))
143 error ("Emacs for Nextstep does not yet support multi-display");
145 Fx_open_connection (name, Qnil, Qnil);
146 dpyinfo = x_display_list;
149 error ("Display on %s not responding.\n", SDATA (name));
155 ns_filename_from_panel (NSSavePanel *panel)
158 NSURL *url = [panel URL];
159 NSString *str = [url path];
162 return [panel filename];
167 ns_directory_from_panel (NSSavePanel *panel)
170 NSURL *url = [panel directoryURL];
171 NSString *str = [url path];
174 return [panel directory];
178 #ifndef NS_IMPL_COCOA
180 interpret_services_menu (NSMenu *menu, Lisp_Object prefix, Lisp_Object old)
181 /* --------------------------------------------------------------------------
182 Turn the input menu (an NSMenu) into a lisp list for tracking on lisp side
183 -------------------------------------------------------------------------- */
193 count = [menu numberOfItems];
194 for (i = 0; i<count; i++)
196 item = [menu itemAtIndex: i];
197 name = [[item title] UTF8String];
200 nameStr = build_string (name);
202 if ([item hasSubmenu])
204 old = interpret_services_menu ([item submenu],
205 Fcons (nameStr, prefix), old);
209 keys = [item keyEquivalent];
210 if (keys && [keys length] )
212 key = [keys characterAtIndex: 0];
213 res = make_number (key|super_modifier);
219 old = Fcons (Fcons (res,
220 Freverse (Fcons (nameStr,
230 /* ==========================================================================
232 Frame parameter setters
234 ========================================================================== */
238 x_set_foreground_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
241 EmacsCGFloat r, g, b, alpha;
243 /* Must block_input, because ns_lisp_to_color does block/unblock_input
244 which means that col may be deallocated in its unblock_input if there
245 is user input, unless we also block_input. */
247 if (ns_lisp_to_color (arg, &col))
249 store_frame_param (f, Qforeground_color, oldval);
251 error ("Unknown color");
255 [f->output_data.ns->foreground_color release];
256 f->output_data.ns->foreground_color = col;
258 [col getRed: &r green: &g blue: &b alpha: &alpha];
259 FRAME_FOREGROUND_PIXEL (f) =
260 ARGB_TO_ULONG ((int)(alpha*0xff), (int)(r*0xff), (int)(g*0xff), (int)(b*0xff));
262 if (FRAME_NS_VIEW (f))
264 update_face_from_frame_parameter (f, Qforeground_color, arg);
265 /*recompute_basic_faces (f); */
266 if (FRAME_VISIBLE_P (f))
267 SET_FRAME_GARBAGED (f);
274 x_set_background_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
278 NSView *view = FRAME_NS_VIEW (f);
279 EmacsCGFloat r, g, b, alpha;
282 if (ns_lisp_to_color (arg, &col))
284 store_frame_param (f, Qbackground_color, oldval);
286 error ("Unknown color");
289 /* clear the frame; in some instances the NS-internal GC appears not to
290 update, or it does update and cannot clear old text properly */
291 if (FRAME_VISIBLE_P (f))
295 [f->output_data.ns->background_color release];
296 f->output_data.ns->background_color = col;
298 [col getRed: &r green: &g blue: &b alpha: &alpha];
299 FRAME_BACKGROUND_PIXEL (f) =
300 ARGB_TO_ULONG ((int)(alpha*0xff), (int)(r*0xff), (int)(g*0xff), (int)(b*0xff));
304 [[view window] setBackgroundColor: col];
306 if (alpha != (EmacsCGFloat) 1.0)
307 [[view window] setOpaque: NO];
309 [[view window] setOpaque: YES];
311 face = FRAME_DEFAULT_FACE (f);
314 col = ns_lookup_indexed_color (NS_FACE_BACKGROUND (face), f);
315 face->background = ns_index_color
316 ([col colorWithAlphaComponent: alpha], f);
318 update_face_from_frame_parameter (f, Qbackground_color, arg);
321 if (FRAME_VISIBLE_P (f))
322 SET_FRAME_GARBAGED (f);
329 x_set_cursor_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
334 if (ns_lisp_to_color (arg, &col))
336 store_frame_param (f, Qcursor_color, oldval);
338 error ("Unknown color");
341 [FRAME_CURSOR_COLOR (f) release];
342 FRAME_CURSOR_COLOR (f) = [col retain];
344 if (FRAME_VISIBLE_P (f))
346 x_update_cursor (f, 0);
347 x_update_cursor (f, 1);
349 update_face_from_frame_parameter (f, Qcursor_color, arg);
355 x_set_icon_name (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
357 NSView *view = FRAME_NS_VIEW (f);
358 NSTRACE ("x_set_icon_name");
360 /* see if it's changed */
363 if (STRINGP (oldval) && EQ (Fstring_equal (oldval, arg), Qt))
366 else if (!STRINGP (oldval) && EQ (oldval, Qnil) == EQ (arg, Qnil))
369 fset_icon_name (f, arg);
373 if (!NILP (f->title))
376 /* Explicit name and no icon-name -> explicit_name. */
377 if (f->explicit_name)
381 /* No explicit name and no icon-name ->
382 name has to be rebuild from icon_title_format. */
383 windows_or_buffers_changed = 62;
388 /* Don't change the name if it's already NAME. */
389 if ([[view window] miniwindowTitle]
390 && ([[[view window] miniwindowTitle]
391 isEqualToString: [NSString stringWithUTF8String:
395 [[view window] setMiniwindowTitle:
396 [NSString stringWithUTF8String: SSDATA (arg)]];
400 ns_set_name_internal (struct frame *f, Lisp_Object name)
402 Lisp_Object encoded_name, encoded_icon_name;
404 NSView *view = FRAME_NS_VIEW (f);
407 encoded_name = ENCODE_UTF_8 (name);
409 str = [NSString stringWithUTF8String: SSDATA (encoded_name)];
412 /* Don't change the name if it's already NAME. */
413 if (! [[[view window] title] isEqualToString: str])
414 [[view window] setTitle: str];
416 if (!STRINGP (f->icon_name))
417 encoded_icon_name = encoded_name;
419 encoded_icon_name = ENCODE_UTF_8 (f->icon_name);
421 str = [NSString stringWithUTF8String: SSDATA (encoded_icon_name)];
423 if ([[view window] miniwindowTitle]
424 && ! [[[view window] miniwindowTitle] isEqualToString: str])
425 [[view window] setMiniwindowTitle: str];
430 ns_set_name (struct frame *f, Lisp_Object name, int explicit)
432 NSTRACE ("ns_set_name");
434 /* Make sure that requests from lisp code override requests from
435 Emacs redisplay code. */
438 /* If we're switching from explicit to implicit, we had better
439 update the mode lines and thereby update the title. */
440 if (f->explicit_name && NILP (name))
441 update_mode_lines = 21;
443 f->explicit_name = ! NILP (name);
445 else if (f->explicit_name)
449 name = build_string ([ns_app_name UTF8String]);
453 /* Don't change the name if it's already NAME. */
454 if (! NILP (Fstring_equal (name, f->name)))
459 /* Title overrides explicit name. */
460 if (! NILP (f->title))
463 ns_set_name_internal (f, name);
467 /* This function should be called when the user's lisp code has
468 specified a name for the frame; the name will override any set by the
471 x_explicitly_set_name (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
473 NSTRACE ("x_explicitly_set_name");
474 ns_set_name (f, arg, 1);
478 /* This function should be called by Emacs redisplay code to set the
479 name; names set this way will never override names set by the user's
482 x_implicitly_set_name (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
484 NSTRACE ("x_implicitly_set_name");
486 Lisp_Object frame_title = buffer_local_value
487 (Qframe_title_format, XWINDOW (f->selected_window)->contents);
488 Lisp_Object icon_title = buffer_local_value
489 (Qicon_title_format, XWINDOW (f->selected_window)->contents);
491 /* Deal with NS specific format t. */
492 if (FRAME_NS_P (f) && ((FRAME_ICONIFIED_P (f) && EQ (icon_title, Qt))
493 || EQ (frame_title, Qt)))
494 ns_set_name_as_filename (f);
496 ns_set_name (f, arg, 0);
500 /* Change the title of frame F to NAME.
501 If NAME is nil, use the frame name as the title. */
504 x_set_title (struct frame *f, Lisp_Object name, Lisp_Object old_name)
506 NSTRACE ("x_set_title");
507 /* Don't change the title if it's already NAME. */
508 if (EQ (name, f->title))
511 update_mode_lines = 22;
513 fset_title (f, name);
520 ns_set_name_internal (f, name);
525 ns_set_name_as_filename (struct frame *f)
528 Lisp_Object name, filename;
529 Lisp_Object buf = XWINDOW (f->selected_window)->contents;
531 NSAutoreleasePool *pool;
532 Lisp_Object encoded_name, encoded_filename;
534 NSTRACE ("ns_set_name_as_filename");
536 if (f->explicit_name || ! NILP (f->title))
540 pool = [[NSAutoreleasePool alloc] init];
541 filename = BVAR (XBUFFER (buf), filename);
542 name = BVAR (XBUFFER (buf), name);
546 if (! NILP (filename))
547 name = Ffile_name_nondirectory (filename);
549 name = build_string ([ns_app_name UTF8String]);
552 encoded_name = ENCODE_UTF_8 (name);
554 view = FRAME_NS_VIEW (f);
556 title = FRAME_ICONIFIED_P (f) ? [[[view window] miniwindowTitle] UTF8String]
557 : [[[view window] title] UTF8String];
559 if (title && (! strcmp (title, SSDATA (encoded_name))))
566 str = [NSString stringWithUTF8String: SSDATA (encoded_name)];
567 if (str == nil) str = @"Bad coding";
569 if (FRAME_ICONIFIED_P (f))
570 [[view window] setMiniwindowTitle: str];
575 if (! NILP (filename))
577 encoded_filename = ENCODE_UTF_8 (filename);
579 fstr = [NSString stringWithUTF8String: SSDATA (encoded_filename)];
580 if (fstr == nil) fstr = @"";
585 ns_set_represented_filename (fstr, f);
586 [[view window] setTitle: str];
596 ns_set_doc_edited (void)
598 NSAutoreleasePool *pool;
599 Lisp_Object tail, frame;
601 pool = [[NSAutoreleasePool alloc] init];
602 FOR_EACH_FRAME (tail, frame)
605 struct frame *f = XFRAME (frame);
609 if (! FRAME_NS_P (f)) continue;
610 w = XWINDOW (FRAME_SELECTED_WINDOW (f));
611 view = FRAME_NS_VIEW (f);
612 if (!MINI_WINDOW_P (w))
613 edited = ! NILP (Fbuffer_modified_p (w->contents)) &&
614 ! NILP (Fbuffer_file_name (w->contents));
615 [[view window] setDocumentEdited: edited];
624 x_set_menu_bar_lines (struct frame *f, Lisp_Object value, Lisp_Object oldval)
627 if (FRAME_MINIBUF_ONLY_P (f))
630 if (TYPE_RANGED_INTEGERP (int, value))
631 nlines = XINT (value);
635 FRAME_MENU_BAR_LINES (f) = 0;
638 FRAME_EXTERNAL_MENU_BAR (f) = 1;
639 /* does for all frames, whereas we just want for one frame
640 [NSMenu setMenuBarVisible: YES]; */
644 if (FRAME_EXTERNAL_MENU_BAR (f) == 1)
645 free_frame_menubar (f);
646 /* [NSMenu setMenuBarVisible: NO]; */
647 FRAME_EXTERNAL_MENU_BAR (f) = 0;
652 /* toolbar support */
654 x_set_tool_bar_lines (struct frame *f, Lisp_Object value, Lisp_Object oldval)
656 /* Currently, when the tool bar change state, the frame is resized.
658 TODO: It would be better if this didn't occur when 1) the frame
659 is full height or maximized or 2) when specified by
660 `frame-inhibit-implied-resize'. */
663 NSTRACE ("x_set_tool_bar_lines");
665 if (FRAME_MINIBUF_ONLY_P (f))
668 if (RANGED_INTEGERP (0, value, INT_MAX))
669 nlines = XFASTINT (value);
675 FRAME_EXTERNAL_TOOL_BAR (f) = 1;
676 update_frame_tool_bar (f);
680 if (FRAME_EXTERNAL_TOOL_BAR (f))
682 free_frame_tool_bar (f);
683 FRAME_EXTERNAL_TOOL_BAR (f) = 0;
686 EmacsView *view = FRAME_NS_VIEW (f);
687 int fs_state = [view fullscreenState];
689 if (fs_state == FULLSCREEN_MAXIMIZED)
691 [view setFSValue:FULLSCREEN_WIDTH];
693 else if (fs_state == FULLSCREEN_HEIGHT)
695 [view setFSValue:FULLSCREEN_NONE];
703 = ((f->after_make_frame
704 && !f->tool_bar_resized
705 && (EQ (frame_inhibit_implied_resize, Qt)
706 || (CONSP (frame_inhibit_implied_resize)
707 && !NILP (Fmemq (Qtool_bar_lines,
708 frame_inhibit_implied_resize))))
709 && NILP (get_frame_param (f, Qfullscreen)))
713 NSTRACE_MSG ("inhibit:%d", inhibit);
715 frame_size_history_add (f, Qupdate_frame_tool_bar, 0, 0, Qnil);
716 adjust_frame_size (f, -1, -1, inhibit, 0, Qtool_bar_lines);
722 x_set_internal_border_width (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
724 int old_width = FRAME_INTERNAL_BORDER_WIDTH (f);
726 CHECK_TYPE_RANGED_INTEGER (int, arg);
727 f->internal_border_width = XINT (arg);
728 if (FRAME_INTERNAL_BORDER_WIDTH (f) < 0)
729 f->internal_border_width = 0;
731 if (FRAME_INTERNAL_BORDER_WIDTH (f) == old_width)
734 if (FRAME_X_WINDOW (f) != 0)
735 adjust_frame_size (f, -1, -1, 3, 0, Qinternal_border_width);
737 SET_FRAME_GARBAGED (f);
742 ns_implicitly_set_icon_type (struct frame *f)
745 EmacsView *view = FRAME_NS_VIEW (f);
747 Lisp_Object chain, elt;
748 NSAutoreleasePool *pool;
751 NSTRACE ("ns_implicitly_set_icon_type");
754 pool = [[NSAutoreleasePool alloc] init];
755 if (f->output_data.ns->miniimage
756 && [[NSString stringWithUTF8String: SSDATA (f->name)]
757 isEqualToString: [(NSImage *)f->output_data.ns->miniimage name]])
764 tem = assq_no_quit (Qicon_type, f->param_alist);
765 if (CONSP (tem) && ! NILP (XCDR (tem)))
772 for (chain = Vns_icon_type_alist;
773 image == nil && CONSP (chain);
774 chain = XCDR (chain))
777 /* special case: t means go by file type */
778 if (SYMBOLP (elt) && EQ (elt, Qt) && SSDATA (f->name)[0] == '/')
781 = [NSString stringWithUTF8String: SSDATA (f->name)];
782 if ([[NSFileManager defaultManager] fileExistsAtPath: str])
783 image = [[[NSWorkspace sharedWorkspace] iconForFile: str] retain];
785 else if (CONSP (elt) &&
786 STRINGP (XCAR (elt)) &&
787 STRINGP (XCDR (elt)) &&
788 fast_string_match (XCAR (elt), f->name) >= 0)
790 image = [EmacsImage allocInitFromFile: XCDR (elt)];
792 image = [[NSImage imageNamed:
793 [NSString stringWithUTF8String:
794 SSDATA (XCDR (elt))]] retain];
800 image = [[[NSWorkspace sharedWorkspace] iconForFileType: @"text"] retain];
804 [f->output_data.ns->miniimage release];
805 f->output_data.ns->miniimage = image;
806 [view setMiniwindowImage: setMini];
813 x_set_icon_type (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
815 EmacsView *view = FRAME_NS_VIEW (f);
819 NSTRACE ("x_set_icon_type");
821 if (!NILP (arg) && SYMBOLP (arg))
823 arg =build_string (SSDATA (SYMBOL_NAME (arg)));
824 store_frame_param (f, Qicon_type, arg);
827 /* do it the implicit way */
830 ns_implicitly_set_icon_type (f);
836 image = [EmacsImage allocInitFromFile: arg];
838 image =[NSImage imageNamed: [NSString stringWithUTF8String:
843 image = [NSImage imageNamed: @"text"];
847 f->output_data.ns->miniimage = image;
848 [view setMiniwindowImage: setMini];
851 /* This is the same as the xfns.c definition. */
853 x_set_cursor_type (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
855 set_frame_cursor_types (f, arg);
858 /* called to set mouse pointer color, but all other terms use it to
859 initialize pointer types (and don't set the color ;) */
861 x_set_mouse_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
863 /* don't think we can do this on Nextstep */
868 #define Xstr(x) Str(x)
871 ns_appkit_version_str (void)
875 #ifdef NS_IMPL_GNUSTEP
876 sprintf(tmp, "gnustep-gui-%s", Xstr(GNUSTEP_GUI_VERSION));
877 #elif defined (NS_IMPL_COCOA)
879 = [[NSProcessInfo processInfo] operatingSystemVersionString];
880 sprintf(tmp, "appkit-%.2f %s",
881 NSAppKitVersionNumber,
882 [osversion UTF8String]);
886 return build_string (tmp);
890 /* This is for use by x-server-version and collapses all version info we
891 have into a single int. For a better picture of the implementation
892 running, use ns_appkit_version_str.*/
894 ns_appkit_version_int (void)
896 #ifdef NS_IMPL_GNUSTEP
897 return GNUSTEP_GUI_MAJOR_VERSION * 100 + GNUSTEP_GUI_MINOR_VERSION;
898 #elif defined (NS_IMPL_COCOA)
899 return (int)NSAppKitVersionNumber;
906 x_icon (struct frame *f, Lisp_Object parms)
907 /* --------------------------------------------------------------------------
908 Strangely-named function to set icon position parameters in frame.
909 This is irrelevant under macOS, but might be needed under GNUstep,
910 depending on the window manager used. Note, this is not a standard
911 frame parameter-setter; it is called directly from x-create-frame.
912 -------------------------------------------------------------------------- */
914 Lisp_Object icon_x, icon_y;
915 struct ns_display_info *dpyinfo = check_ns_display_info (Qnil);
917 f->output_data.ns->icon_top = -1;
918 f->output_data.ns->icon_left = -1;
920 /* Set the position of the icon. */
921 icon_x = x_get_arg (dpyinfo, parms, Qicon_left, 0, 0, RES_TYPE_NUMBER);
922 icon_y = x_get_arg (dpyinfo, parms, Qicon_top, 0, 0, RES_TYPE_NUMBER);
923 if (!EQ (icon_x, Qunbound) && !EQ (icon_y, Qunbound))
925 CHECK_NUMBER (icon_x);
926 CHECK_NUMBER (icon_y);
927 f->output_data.ns->icon_top = XINT (icon_y);
928 f->output_data.ns->icon_left = XINT (icon_x);
930 else if (!EQ (icon_x, Qunbound) || !EQ (icon_y, Qunbound))
931 error ("Both left and top icon corners of icon must be specified");
935 /* Note: see frame.c for template, also where generic functions are impl */
936 frame_parm_handler ns_frame_parm_handlers[] =
938 x_set_autoraise, /* generic OK */
939 x_set_autolower, /* generic OK */
940 x_set_background_color,
941 0, /* x_set_border_color, may be impossible under Nextstep */
942 0, /* x_set_border_width, may be impossible under Nextstep */
945 x_set_font, /* generic OK */
946 x_set_foreground_color,
949 x_set_internal_border_width, /* generic OK */
950 x_set_right_divider_width,
951 x_set_bottom_divider_width,
952 x_set_menu_bar_lines,
954 x_explicitly_set_name,
955 x_set_scroll_bar_width, /* generic OK */
956 x_set_scroll_bar_height, /* generic OK */
958 x_set_unsplittable, /* generic OK */
959 x_set_vertical_scroll_bars, /* generic OK */
960 x_set_horizontal_scroll_bars, /* generic OK */
961 x_set_visibility, /* generic OK */
962 x_set_tool_bar_lines,
963 0, /* x_set_scroll_bar_foreground, will ignore (not possible on NS) */
964 0, /* x_set_scroll_bar_background, will ignore (not possible on NS) */
965 x_set_screen_gamma, /* generic OK */
966 x_set_line_spacing, /* generic OK, sets f->extra_line_spacing to int */
967 x_set_left_fringe, /* generic OK */
968 x_set_right_fringe, /* generic OK */
969 0, /* x_set_wait_for_wm, will ignore */
970 x_set_fullscreen, /* generic OK */
971 x_set_font_backend, /* generic OK */
973 0, /* x_set_sticky */
974 0, /* x_set_tool_bar_position */
975 0, /* x_set_inhibit_double_buffering */
979 0, /*x_set_undecorated */
982 0, /* x_set_skip_taskbar */
983 x_set_no_focus_on_map,
984 x_set_no_accept_focus,
985 x_set_z_group, /* x_set_z_group */
986 0, /* x_set_override_redirect */
987 x_set_no_special_glyphs,
991 /* Handler for signals raised during x_create_frame.
992 FRAME is the frame which is partially constructed. */
995 unwind_create_frame (Lisp_Object frame)
997 struct frame *f = XFRAME (frame);
999 /* If frame is already dead, nothing to do. This can happen if the
1000 display is disconnected after the frame has become official, but
1001 before x_create_frame removes the unwind protect. */
1002 if (!FRAME_LIVE_P (f))
1005 /* If frame is ``official'', nothing to do. */
1006 if (NILP (Fmemq (frame, Vframe_list)))
1008 #if defined GLYPH_DEBUG && defined ENABLE_CHECKING
1009 struct ns_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
1012 /* If the frame's image cache refcount is still the same as our
1013 private shadow variable, it means we are unwinding a frame
1014 for which we didn't yet call init_frame_faces, where the
1015 refcount is incremented. Therefore, we increment it here, so
1016 that free_frame_faces, called in x_free_frame_resources
1017 below, will not mistakenly decrement the counter that was not
1018 incremented yet to account for this new frame. */
1019 if (FRAME_IMAGE_CACHE (f) != NULL
1020 && FRAME_IMAGE_CACHE (f)->refcount == image_cache_refcount)
1021 FRAME_IMAGE_CACHE (f)->refcount++;
1023 x_free_frame_resources (f);
1026 #if defined GLYPH_DEBUG && defined ENABLE_CHECKING
1027 /* Check that reference counts are indeed correct. */
1028 eassert (dpyinfo->terminal->image_cache->refcount == image_cache_refcount);
1034 * Read geometry related parameters from preferences if not in PARMS.
1035 * Returns the union of parms and any preferences read.
1039 get_geometry_from_preferences (struct ns_display_info *dpyinfo,
1047 { "width", "Width", Qwidth },
1048 { "height", "Height", Qheight },
1049 { "left", "Left", Qleft },
1050 { "top", "Top", Qtop },
1054 for (i = 0; i < ARRAYELTS (r); ++i)
1056 if (NILP (Fassq (r[i].tem, parms)))
1059 = x_get_arg (dpyinfo, parms, r[i].tem, r[i].val, r[i].cls,
1061 if (! EQ (value, Qunbound))
1062 parms = Fcons (Fcons (r[i].tem, value), parms);
1069 /* ==========================================================================
1073 ========================================================================== */
1075 DEFUN ("x-create-frame", Fx_create_frame, Sx_create_frame,
1077 doc: /* Make a new Nextstep window, called a "frame" in Emacs terms.
1078 Return an Emacs frame object.
1079 PARMS is an alist of frame parameters.
1080 If the parameters specify that the frame should not have a minibuffer,
1081 and do not specify a specific minibuffer window to use,
1082 then `default-minibuffer-frame' must be a frame whose minibuffer can
1083 be shared by the new frame.
1085 This function is an internal primitive--use `make-frame' instead. */)
1089 Lisp_Object frame, tem;
1091 int minibuffer_only = 0;
1092 long window_prompting = 0;
1093 ptrdiff_t count = specpdl_ptr - specpdl;
1094 Lisp_Object display;
1095 struct ns_display_info *dpyinfo = NULL;
1096 Lisp_Object parent, parent_frame;
1098 static int desc_ctr = 1;
1099 int x_width = 0, x_height = 0;
1101 /* x_get_arg modifies parms. */
1102 parms = Fcopy_alist (parms);
1104 /* Use this general default value to start with
1105 until we know if this frame has a specified name. */
1106 Vx_resource_name = Vinvocation_name;
1108 display = x_get_arg (dpyinfo, parms, Qterminal, 0, 0, RES_TYPE_STRING);
1109 if (EQ (display, Qunbound))
1111 dpyinfo = check_ns_display_info (display);
1112 kb = dpyinfo->terminal->kboard;
1114 if (!dpyinfo->terminal->name)
1115 error ("Terminal is not live, can't create new frames on it");
1117 name = x_get_arg (dpyinfo, parms, Qname, 0, 0, RES_TYPE_STRING);
1119 && ! EQ (name, Qunbound)
1121 error ("Invalid frame name--not a string or nil");
1124 Vx_resource_name = name;
1126 parent = x_get_arg (dpyinfo, parms, Qparent_id, 0, 0, RES_TYPE_NUMBER);
1127 if (EQ (parent, Qunbound))
1129 if (! NILP (parent))
1130 CHECK_NUMBER (parent);
1132 /* make_frame_without_minibuffer can run Lisp code and garbage collect. */
1133 /* No need to protect DISPLAY because that's not used after passing
1134 it to make_frame_without_minibuffer. */
1136 tem = x_get_arg (dpyinfo, parms, Qminibuffer, "minibuffer", "Minibuffer",
1138 if (EQ (tem, Qnone) || NILP (tem))
1139 f = make_frame_without_minibuffer (Qnil, kb, display);
1140 else if (EQ (tem, Qonly))
1142 f = make_minibuffer_frame ();
1143 minibuffer_only = 1;
1145 else if (WINDOWP (tem))
1146 f = make_frame_without_minibuffer (tem, kb, display);
1150 XSETFRAME (frame, f);
1152 f->terminal = dpyinfo->terminal;
1154 f->output_method = output_ns;
1155 f->output_data.ns = xzalloc (sizeof *f->output_data.ns);
1157 FRAME_FONTSET (f) = -1;
1159 fset_icon_name (f, x_get_arg (dpyinfo, parms, Qicon_name,
1160 "iconName", "Title",
1162 if (! STRINGP (f->icon_name))
1163 fset_icon_name (f, Qnil);
1165 FRAME_DISPLAY_INFO (f) = dpyinfo;
1167 /* With FRAME_DISPLAY_INFO set up, this unwind-protect is safe. */
1168 record_unwind_protect (unwind_create_frame, frame);
1170 f->output_data.ns->window_desc = desc_ctr++;
1171 if (TYPE_RANGED_INTEGERP (Window, parent))
1173 f->output_data.ns->parent_desc = XFASTINT (parent);
1174 f->output_data.ns->explicit_parent = 1;
1178 f->output_data.ns->parent_desc = FRAME_DISPLAY_INFO (f)->root_window;
1179 f->output_data.ns->explicit_parent = 0;
1182 /* Set the name; the functions to which we pass f expect the name to
1184 if (EQ (name, Qunbound) || NILP (name) || ! STRINGP (name))
1186 fset_name (f, build_string ([ns_app_name UTF8String]));
1187 f->explicit_name = 0;
1191 fset_name (f, name);
1192 f->explicit_name = 1;
1193 specbind (Qx_resource_name, name);
1198 #ifdef NS_IMPL_COCOA
1199 mac_register_font_driver (f);
1201 register_font_driver (&nsfont_driver, f);
1204 image_cache_refcount =
1205 FRAME_IMAGE_CACHE (f) ? FRAME_IMAGE_CACHE (f)->refcount : 0;
1207 x_default_parameter (f, parms, Qfont_backend, Qnil,
1208 "fontBackend", "FontBackend", RES_TYPE_STRING);
1211 /* use for default font name */
1212 id font = [NSFont userFixedPitchFontOfSize: -1.0]; /* default */
1213 x_default_parameter (f, parms, Qfontsize,
1214 make_number (0 /*(int)[font pointSize]*/),
1215 "fontSize", "FontSize", RES_TYPE_NUMBER);
1216 // Remove ' Regular', not handled by backends.
1217 char *fontname = xstrdup ([[font displayName] UTF8String]);
1218 int len = strlen (fontname);
1219 if (len > 8 && strcmp (fontname + len - 8, " Regular") == 0)
1220 fontname[len-8] = '\0';
1221 x_default_parameter (f, parms, Qfont,
1222 build_string (fontname),
1223 "font", "Font", RES_TYPE_STRING);
1228 x_default_parameter (f, parms, Qborder_width, make_number (0),
1229 "borderwidth", "BorderWidth", RES_TYPE_NUMBER);
1230 x_default_parameter (f, parms, Qinternal_border_width, make_number (2),
1231 "internalBorderWidth", "InternalBorderWidth",
1234 /* default vertical scrollbars on right on Mac */
1237 #ifdef NS_IMPL_GNUSTEP
1242 x_default_parameter (f, parms, Qvertical_scroll_bars, spos,
1243 "verticalScrollBars", "VerticalScrollBars",
1246 x_default_parameter (f, parms, Qhorizontal_scroll_bars, Qnil,
1247 "horizontalScrollBars", "HorizontalScrollBars",
1249 x_default_parameter (f, parms, Qforeground_color, build_string ("Black"),
1250 "foreground", "Foreground", RES_TYPE_STRING);
1251 x_default_parameter (f, parms, Qbackground_color, build_string ("White"),
1252 "background", "Background", RES_TYPE_STRING);
1253 /* FIXME: not supported yet in Nextstep */
1254 x_default_parameter (f, parms, Qline_spacing, Qnil,
1255 "lineSpacing", "LineSpacing", RES_TYPE_NUMBER);
1256 x_default_parameter (f, parms, Qleft_fringe, Qnil,
1257 "leftFringe", "LeftFringe", RES_TYPE_NUMBER);
1258 x_default_parameter (f, parms, Qright_fringe, Qnil,
1259 "rightFringe", "RightFringe", RES_TYPE_NUMBER);
1260 x_default_parameter (f, parms, Qno_special_glyphs, Qnil,
1261 NULL, NULL, RES_TYPE_BOOLEAN);
1263 init_frame_faces (f);
1265 /* Read comment about this code in corresponding place in xfns.c. */
1266 tem = x_get_arg (dpyinfo, parms, Qmin_width, NULL, NULL, RES_TYPE_NUMBER);
1268 store_frame_param (f, Qmin_width, tem);
1269 tem = x_get_arg (dpyinfo, parms, Qmin_height, NULL, NULL, RES_TYPE_NUMBER);
1271 store_frame_param (f, Qmin_height, tem);
1272 adjust_frame_size (f, FRAME_COLS (f) * FRAME_COLUMN_WIDTH (f),
1273 FRAME_LINES (f) * FRAME_LINE_HEIGHT (f), 5, 1,
1276 tem = x_get_arg (dpyinfo, parms, Qundecorated, NULL, NULL, RES_TYPE_BOOLEAN);
1277 FRAME_UNDECORATED (f) = !NILP (tem) && !EQ (tem, Qunbound);
1278 store_frame_param (f, Qundecorated, FRAME_UNDECORATED (f) ? Qt : Qnil);
1280 parent_frame = x_get_arg (dpyinfo, parms, Qparent_frame, NULL, NULL,
1282 /* Accept parent-frame iff parent-id was not specified. */
1284 || EQ (parent_frame, Qunbound)
1285 || NILP (parent_frame)
1286 || !FRAMEP (parent_frame)
1287 || !FRAME_LIVE_P (XFRAME (parent_frame)))
1288 parent_frame = Qnil;
1290 fset_parent_frame (f, parent_frame);
1291 store_frame_param (f, Qparent_frame, parent_frame);
1293 x_default_parameter (f, parms, Qz_group, Qnil, NULL, NULL, RES_TYPE_SYMBOL);
1294 x_default_parameter (f, parms, Qno_focus_on_map, Qnil,
1295 NULL, NULL, RES_TYPE_BOOLEAN);
1296 x_default_parameter (f, parms, Qno_accept_focus, Qnil,
1297 NULL, NULL, RES_TYPE_BOOLEAN);
1299 /* The resources controlling the menu-bar and tool-bar are
1300 processed specially at startup, and reflected in the mode
1301 variables; ignore them here. */
1302 x_default_parameter (f, parms, Qmenu_bar_lines,
1303 NILP (Vmenu_bar_mode)
1304 ? make_number (0) : make_number (1),
1305 NULL, NULL, RES_TYPE_NUMBER);
1306 x_default_parameter (f, parms, Qtool_bar_lines,
1307 NILP (Vtool_bar_mode)
1308 ? make_number (0) : make_number (1),
1309 NULL, NULL, RES_TYPE_NUMBER);
1311 x_default_parameter (f, parms, Qbuffer_predicate, Qnil, "bufferPredicate",
1312 "BufferPredicate", RES_TYPE_SYMBOL);
1313 x_default_parameter (f, parms, Qtitle, Qnil, "title", "Title",
1316 parms = get_geometry_from_preferences (dpyinfo, parms);
1317 window_prompting = x_figure_window_size (f, parms, true, &x_width, &x_height);
1319 tem = x_get_arg (dpyinfo, parms, Qunsplittable, 0, 0, RES_TYPE_BOOLEAN);
1320 f->no_split = minibuffer_only || (!EQ (tem, Qunbound) && !EQ (tem, Qnil));
1322 /* NOTE: on other terms, this is done in set_mouse_color, however this
1323 was not getting called under Nextstep */
1324 f->output_data.ns->text_cursor = [NSCursor IBeamCursor];
1325 f->output_data.ns->nontext_cursor = [NSCursor arrowCursor];
1326 f->output_data.ns->modeline_cursor = [NSCursor pointingHandCursor];
1327 f->output_data.ns->hand_cursor = [NSCursor pointingHandCursor];
1328 f->output_data.ns->hourglass_cursor = [NSCursor disappearingItemCursor];
1329 f->output_data.ns->horizontal_drag_cursor = [NSCursor resizeLeftRightCursor];
1330 f->output_data.ns->vertical_drag_cursor = [NSCursor resizeUpDownCursor];
1331 f->output_data.ns->left_edge_cursor = [NSCursor resizeLeftRightCursor];
1332 f->output_data.ns->top_left_corner_cursor = [NSCursor arrowCursor];
1333 f->output_data.ns->top_edge_cursor = [NSCursor resizeUpDownCursor];
1334 f->output_data.ns->top_right_corner_cursor = [NSCursor arrowCursor];
1335 f->output_data.ns->right_edge_cursor = [NSCursor resizeLeftRightCursor];
1336 f->output_data.ns->bottom_right_corner_cursor = [NSCursor arrowCursor];
1337 f->output_data.ns->bottom_edge_cursor = [NSCursor resizeUpDownCursor];
1338 f->output_data.ns->bottom_left_corner_cursor = [NSCursor arrowCursor];
1340 FRAME_DISPLAY_INFO (f)->vertical_scroll_bar_cursor
1341 = [NSCursor arrowCursor];
1342 FRAME_DISPLAY_INFO (f)->horizontal_scroll_bar_cursor
1343 = [NSCursor arrowCursor];
1344 f->output_data.ns->current_pointer = f->output_data.ns->text_cursor;
1346 f->output_data.ns->in_animation = NO;
1348 [[EmacsView alloc] initFrameFromEmacs: f];
1352 /* ns_display_info does not have a reference_count. */
1353 f->terminal->reference_count++;
1355 /* It is now ok to make the frame official even if we get an error below.
1356 The frame needs to be on Vframe_list or making it visible won't work. */
1357 Vframe_list = Fcons (frame, Vframe_list);
1359 x_default_parameter (f, parms, Qicon_type, Qnil,
1360 "bitmapIcon", "BitmapIcon", RES_TYPE_SYMBOL);
1362 x_default_parameter (f, parms, Qauto_raise, Qnil,
1363 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN);
1364 x_default_parameter (f, parms, Qauto_lower, Qnil,
1365 "autoLower", "AutoLower", RES_TYPE_BOOLEAN);
1366 x_default_parameter (f, parms, Qcursor_type, Qbox,
1367 "cursorType", "CursorType", RES_TYPE_SYMBOL);
1368 x_default_parameter (f, parms, Qscroll_bar_width, Qnil,
1369 "scrollBarWidth", "ScrollBarWidth",
1371 x_default_parameter (f, parms, Qscroll_bar_height, Qnil,
1372 "scrollBarHeight", "ScrollBarHeight",
1374 x_default_parameter (f, parms, Qalpha, Qnil,
1375 "alpha", "Alpha", RES_TYPE_NUMBER);
1376 x_default_parameter (f, parms, Qfullscreen, Qnil,
1377 "fullscreen", "Fullscreen", RES_TYPE_SYMBOL);
1379 /* Allow x_set_window_size, now. */
1380 f->can_x_set_window_size = true;
1383 SET_FRAME_WIDTH (f, x_width);
1385 SET_FRAME_HEIGHT (f, x_height);
1387 adjust_frame_size (f, FRAME_TEXT_WIDTH (f), FRAME_TEXT_HEIGHT (f), 0, 1,
1390 if (! f->output_data.ns->explicit_parent)
1392 Lisp_Object visibility;
1394 visibility = x_get_arg (dpyinfo, parms, Qvisibility, 0, 0,
1396 if (EQ (visibility, Qunbound))
1399 if (EQ (visibility, Qicon))
1400 x_iconify_frame (f);
1401 else if (! NILP (visibility))
1403 x_make_frame_visible (f);
1404 [[FRAME_NS_VIEW (f) window] makeKeyWindow];
1408 /* Must have been Qnil. */
1412 if (FRAME_HAS_MINIBUF_P (f)
1413 && (!FRAMEP (KVAR (kb, Vdefault_minibuffer_frame))
1414 || !FRAME_LIVE_P (XFRAME (KVAR (kb, Vdefault_minibuffer_frame)))))
1415 kset_default_minibuffer_frame (kb, frame);
1417 /* All remaining specified parameters, which have not been "used"
1418 by x_get_arg and friends, now go in the misc. alist of the frame. */
1419 for (tem = parms; CONSP (tem); tem = XCDR (tem))
1420 if (CONSP (XCAR (tem)) && !NILP (XCAR (XCAR (tem))))
1421 fset_param_alist (f, Fcons (XCAR (tem), f->param_alist));
1423 if (window_prompting & USPosition)
1424 x_set_offset (f, f->left_pos, f->top_pos, 1);
1426 /* Make sure windows on this frame appear in calls to next-window
1427 and similar functions. */
1428 Vwindow_list = Qnil;
1430 return unbind_to (count, frame);
1434 x_focus_frame (struct frame *f, bool noactivate)
1436 struct ns_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
1438 if (dpyinfo->x_focus_frame != f)
1440 EmacsView *view = FRAME_NS_VIEW (f);
1442 [NSApp activateIgnoringOtherApps: YES];
1443 [[view window] makeKeyAndOrderFront: view];
1449 ns_window_is_ancestor (NSWindow *win, NSWindow *candidate)
1450 /* Test whether CANDIDATE is an ancestor window of WIN. */
1452 if (candidate == NULL)
1454 else if (win == candidate)
1457 return ns_window_is_ancestor(win, [candidate parentWindow]);
1460 DEFUN ("ns-frame-list-z-order", Fns_frame_list_z_order,
1461 Sns_frame_list_z_order, 0, 1, 0,
1462 doc: /* Return list of Emacs' frames, in Z (stacking) order.
1463 The optional argument TERMINAL specifies which display to ask about.
1464 TERMINAL should be either a frame or a display name (a string). If
1465 omitted or nil, that stands for the selected frame's display. Return
1466 nil if TERMINAL contains no Emacs frame.
1468 As a special case, if TERMINAL is non-nil and specifies a live frame,
1469 return the child frames of that frame in Z (stacking) order.
1471 Frames are listed from topmost (first) to bottommost (last). */)
1472 (Lisp_Object terminal)
1474 Lisp_Object frames = Qnil;
1475 NSWindow *parent = nil;
1477 if (FRAMEP (terminal) && FRAME_LIVE_P (XFRAME (terminal)))
1478 parent = [FRAME_NS_VIEW (XFRAME (terminal)) window];
1479 else if (!NILP (terminal))
1482 for (NSWindow *win in [[NSApp orderedWindows] reverseObjectEnumerator])
1486 /* Check against [win parentWindow] so that it doesn't match itself. */
1487 if (parent == nil || ns_window_is_ancestor (parent, [win parentWindow]))
1489 XSETFRAME (frame, ((EmacsView *)[win delegate])->emacsframe);
1490 frames = Fcons(frame, frames);
1497 DEFUN ("ns-frame-restack", Fns_frame_restack, Sns_frame_restack, 2, 3, 0,
1498 doc: /* Restack FRAME1 below FRAME2.
1499 This means that if both frames are visible and the display areas of
1500 these frames overlap, FRAME2 (partially) obscures FRAME1. If optional
1501 third argument ABOVE is non-nil, restack FRAME1 above FRAME2. This
1502 means that if both frames are visible and the display areas of these
1503 frames overlap, FRAME1 (partially) obscures FRAME2.
1505 Some window managers may refuse to restack windows. */)
1506 (Lisp_Object frame1, Lisp_Object frame2, Lisp_Object above)
1508 struct frame *f1 = decode_live_frame (frame1);
1509 struct frame *f2 = decode_live_frame (frame2);
1511 if (FRAME_NS_VIEW (f1) && FRAME_NS_VIEW (f2))
1513 NSWindow *window = [FRAME_NS_VIEW (f1) window];
1514 NSInteger window2 = [[FRAME_NS_VIEW (f2) window] windowNumber];
1515 NSWindowOrderingMode flag = NILP (above) ? NSWindowBelow : NSWindowAbove;
1517 [window orderWindow: flag
1518 relativeTo: window2];
1524 error ("Cannot restack frames");
1529 DEFUN ("ns-popup-font-panel", Fns_popup_font_panel, Sns_popup_font_panel,
1531 doc: /* Pop up the font panel. */)
1534 struct frame *f = decode_window_system_frame (frame);
1535 id fm = [NSFontManager sharedFontManager];
1536 struct font *font = f->output_data.ns->font;
1538 #ifdef NS_IMPL_GNUSTEP
1539 nsfont = ((struct nsfont_info *)font)->nsfont;
1541 #ifdef NS_IMPL_COCOA
1542 nsfont = (NSFont *) macfont_get_nsctfont (font);
1544 [fm setSelectedFont: nsfont isMultiple: NO];
1545 [fm orderFrontFontPanel: NSApp];
1550 DEFUN ("ns-popup-color-panel", Fns_popup_color_panel, Sns_popup_color_panel,
1552 doc: /* Pop up the color panel. */)
1555 check_window_system (NULL);
1556 [NSApp orderFrontColorPanel: NSApp];
1564 #ifdef NS_IMPL_GNUSTEP
1565 NSString *dirS, *initS;
1571 ns_run_file_dialog (void)
1573 if (ns_fd_data.panel == nil) return;
1574 #ifdef NS_IMPL_COCOA
1575 ns_fd_data.ret = [ns_fd_data.panel runModal];
1577 if (ns_fd_data.no_types)
1579 ns_fd_data.ret = [ns_fd_data.panel
1580 runModalForDirectory: ns_fd_data.dirS
1581 file: ns_fd_data.initS];
1585 ns_fd_data.ret = [ns_fd_data.panel
1586 runModalForDirectory: ns_fd_data.dirS
1587 file: ns_fd_data.initS
1591 ns_fd_data.panel = nil;
1594 #ifdef NS_IMPL_COCOA
1595 #if MAC_OS_X_VERSION_MAX_ALLOWED > MAC_OS_X_VERSION_10_9
1596 #define MODAL_OK_RESPONSE NSModalResponseOK
1599 #ifndef MODAL_OK_RESPONSE
1600 #define MODAL_OK_RESPONSE NSOKButton
1603 DEFUN ("ns-read-file-name", Fns_read_file_name, Sns_read_file_name, 1, 5, 0,
1604 doc: /* Use a graphical panel to read a file name, using prompt PROMPT.
1605 Optional arg DIR, if non-nil, supplies a default directory.
1606 Optional arg MUSTMATCH, if non-nil, means the returned file or
1607 directory must exist.
1608 Optional arg INIT, if non-nil, provides a default file name to use.
1609 Optional arg DIR_ONLY_P, if non-nil, means choose only directories. */)
1610 (Lisp_Object prompt, Lisp_Object dir, Lisp_Object mustmatch,
1611 Lisp_Object init, Lisp_Object dir_only_p)
1613 static id fileDelegate = nil;
1614 BOOL isSave = NILP (mustmatch) && NILP (dir_only_p);
1616 Lisp_Object fname = Qnil;
1618 NSString *promptS = NILP (prompt) || !STRINGP (prompt) ? nil :
1619 [NSString stringWithUTF8String: SSDATA (prompt)];
1620 NSString *dirS = NILP (dir) || !STRINGP (dir) ?
1621 [NSString stringWithUTF8String: SSDATA (BVAR (current_buffer, directory))] :
1622 [NSString stringWithUTF8String: SSDATA (dir)];
1623 NSString *initS = NILP (init) || !STRINGP (init) ? nil :
1624 [NSString stringWithUTF8String: SSDATA (init)];
1627 check_window_system (NULL);
1629 if (fileDelegate == nil)
1630 fileDelegate = [EmacsFileDelegate new];
1632 [NSCursor setHiddenUntilMouseMoves: NO];
1634 if ([dirS characterAtIndex: 0] == '~')
1635 dirS = [dirS stringByExpandingTildeInPath];
1638 (id)[EmacsSavePanel savePanel] : (id)[EmacsOpenPanel openPanel];
1640 [panel setTitle: promptS];
1642 [panel setAllowsOtherFileTypes: YES];
1643 [panel setTreatsFilePackagesAsDirectories: YES];
1644 [panel setDelegate: fileDelegate];
1646 if (! NILP (dir_only_p))
1648 [panel setCanChooseDirectories: YES];
1649 [panel setCanChooseFiles: NO];
1653 /* This is not quite what the documentation says, but it is compatible
1654 with the Gtk+ code. Also, the menu entry says "Open File...". */
1655 [panel setCanChooseDirectories: NO];
1656 [panel setCanChooseFiles: YES];
1660 ns_fd_data.panel = panel;
1661 ns_fd_data.ret = NO;
1662 #ifdef NS_IMPL_COCOA
1663 if (! NILP (mustmatch) || ! NILP (dir_only_p))
1664 [panel setAllowedFileTypes: nil];
1665 if (dirS) [panel setDirectoryURL: [NSURL fileURLWithPath: dirS]];
1666 if (initS && NILP (Ffile_directory_p (init)))
1667 [panel setNameFieldStringValue: [initS lastPathComponent]];
1669 [panel setNameFieldStringValue: @""];
1672 ns_fd_data.no_types = NILP (mustmatch) && NILP (dir_only_p);
1673 ns_fd_data.dirS = dirS;
1674 ns_fd_data.initS = initS;
1677 /* runModalForDirectory/runModal restarts the main event loop when done,
1678 so we must start an event loop and then pop up the file dialog.
1679 The file dialog may pop up a confirm dialog after Ok has been pressed,
1680 so we can not simply pop down on the Ok/Cancel press.
1682 nxev = [NSEvent otherEventWithType: NSEventTypeApplicationDefined
1683 location: NSMakePoint (0, 0)
1686 windowNumber: [[NSApp mainWindow] windowNumber]
1687 context: [NSApp context]
1690 data2: NSAPP_DATA2_RUNFILEDIALOG];
1692 [NSApp postEvent: nxev atStart: NO];
1693 while (ns_fd_data.panel != nil)
1696 if (ns_fd_data.ret == MODAL_OK_RESPONSE)
1698 NSString *str = ns_filename_from_panel (panel);
1699 if (! str) str = ns_directory_from_panel (panel);
1700 if (str) fname = build_string ([str UTF8String]);
1703 [[FRAME_NS_VIEW (SELECTED_FRAME ()) window] makeKeyWindow];
1710 ns_get_defaults_value (const char *key)
1712 NSObject *obj = [[NSUserDefaults standardUserDefaults]
1713 objectForKey: [NSString stringWithUTF8String: key]];
1715 if (!obj) return NULL;
1717 return [[NSString stringWithFormat: @"%@", obj] UTF8String];
1721 DEFUN ("ns-get-resource", Fns_get_resource, Sns_get_resource, 2, 2, 0,
1722 doc: /* Return the value of the property NAME of OWNER from the defaults database.
1723 If OWNER is nil, Emacs is assumed. */)
1724 (Lisp_Object owner, Lisp_Object name)
1728 check_window_system (NULL);
1730 owner = build_string([ns_app_name UTF8String]);
1731 CHECK_STRING (name);
1733 value = ns_get_defaults_value (SSDATA (name));
1736 return build_string (value);
1741 DEFUN ("ns-set-resource", Fns_set_resource, Sns_set_resource, 3, 3, 0,
1742 doc: /* Set property NAME of OWNER to VALUE, from the defaults database.
1743 If OWNER is nil, Emacs is assumed.
1744 If VALUE is nil, the default is removed. */)
1745 (Lisp_Object owner, Lisp_Object name, Lisp_Object value)
1747 check_window_system (NULL);
1749 owner = build_string ([ns_app_name UTF8String]);
1750 CHECK_STRING (name);
1753 [[NSUserDefaults standardUserDefaults] removeObjectForKey:
1754 [NSString stringWithUTF8String: SSDATA (name)]];
1758 CHECK_STRING (value);
1759 [[NSUserDefaults standardUserDefaults] setObject:
1760 [NSString stringWithUTF8String: SSDATA (value)]
1761 forKey: [NSString stringWithUTF8String:
1769 DEFUN ("x-server-max-request-size", Fx_server_max_request_size,
1770 Sx_server_max_request_size,
1772 doc: /* This function is a no-op. It is only present for completeness. */)
1773 (Lisp_Object terminal)
1775 check_ns_display_info (terminal);
1776 /* This function has no real equivalent under NeXTstep. Return nil to
1782 DEFUN ("x-server-vendor", Fx_server_vendor, Sx_server_vendor, 0, 1, 0,
1783 doc: /* Return the "vendor ID" string of Nextstep display server TERMINAL.
1784 \(Labeling every distributor as a "vendor" embodies the false assumption
1785 that operating systems cannot be developed and distributed noncommercially.)
1786 The optional argument TERMINAL specifies which display to ask about.
1787 TERMINAL should be a terminal object, a frame or a display name (a string).
1788 If omitted or nil, that stands for the selected frame's display. */)
1789 (Lisp_Object terminal)
1791 check_ns_display_info (terminal);
1792 #ifdef NS_IMPL_GNUSTEP
1793 return build_string ("GNU");
1795 return build_string ("Apple");
1800 DEFUN ("x-server-version", Fx_server_version, Sx_server_version, 0, 1, 0,
1801 doc: /* Return the version numbers of the server of display TERMINAL.
1802 The value is a list of three integers: the major and minor
1803 version numbers of the X Protocol in use, and the distributor-specific release
1804 number. See also the function `x-server-vendor'.
1806 The optional argument TERMINAL specifies which display to ask about.
1807 TERMINAL should be a terminal object, a frame or a display name (a string).
1808 If omitted or nil, that stands for the selected frame's display. */)
1809 (Lisp_Object terminal)
1811 check_ns_display_info (terminal);
1812 /*NOTE: it is unclear what would best correspond with "protocol";
1813 we return 10.3, meaning Panther, since this is roughly the
1814 level that GNUstep's APIs correspond to.
1815 The last number is where we distinguish between the Apple
1816 and GNUstep implementations ("distributor-specific release
1817 number") and give int'ized versions of major.minor. */
1818 return list3i (10, 3, ns_appkit_version_int ());
1822 DEFUN ("x-display-screens", Fx_display_screens, Sx_display_screens, 0, 1, 0,
1823 doc: /* Return the number of screens on Nextstep display server TERMINAL.
1824 The optional argument TERMINAL specifies which display to ask about.
1825 TERMINAL should be a terminal object, a frame or a display name (a string).
1826 If omitted or nil, that stands for the selected frame's display.
1828 Note: "screen" here is not in Nextstep terminology but in X11's. For
1829 the number of physical monitors, use `(length
1830 \(display-monitor-attributes-list TERMINAL))' instead. */)
1831 (Lisp_Object terminal)
1833 check_ns_display_info (terminal);
1834 return make_number (1);
1838 DEFUN ("x-display-mm-height", Fx_display_mm_height, Sx_display_mm_height, 0, 1, 0,
1839 doc: /* Return the height in millimeters of the Nextstep display TERMINAL.
1840 The optional argument TERMINAL specifies which display to ask about.
1841 TERMINAL should be a terminal object, a frame or a display name (a string).
1842 If omitted or nil, that stands for the selected frame's display.
1844 On \"multi-monitor\" setups this refers to the height in millimeters for
1845 all physical monitors associated with TERMINAL. To get information
1846 for each physical monitor, use `display-monitor-attributes-list'. */)
1847 (Lisp_Object terminal)
1849 struct ns_display_info *dpyinfo = check_ns_display_info (terminal);
1851 return make_number (x_display_pixel_height (dpyinfo) / (92.0/25.4));
1855 DEFUN ("x-display-mm-width", Fx_display_mm_width, Sx_display_mm_width, 0, 1, 0,
1856 doc: /* Return the width in millimeters of the Nextstep display TERMINAL.
1857 The optional argument TERMINAL specifies which display to ask about.
1858 TERMINAL should be a terminal object, a frame or a display name (a string).
1859 If omitted or nil, that stands for the selected frame's display.
1861 On \"multi-monitor\" setups this refers to the width in millimeters for
1862 all physical monitors associated with TERMINAL. To get information
1863 for each physical monitor, use `display-monitor-attributes-list'. */)
1864 (Lisp_Object terminal)
1866 struct ns_display_info *dpyinfo = check_ns_display_info (terminal);
1868 return make_number (x_display_pixel_width (dpyinfo) / (92.0/25.4));
1872 DEFUN ("x-display-backing-store", Fx_display_backing_store,
1873 Sx_display_backing_store, 0, 1, 0,
1874 doc: /* Return an indication of whether the Nextstep display TERMINAL does backing store.
1875 The value may be `buffered', `retained', or `non-retained'.
1876 The optional argument TERMINAL specifies which display to ask about.
1877 TERMINAL should be a terminal object, a frame or a display name (a string).
1878 If omitted or nil, that stands for the selected frame's display. */)
1879 (Lisp_Object terminal)
1881 check_ns_display_info (terminal);
1882 switch ([ns_get_window (terminal) backingType])
1884 case NSBackingStoreBuffered:
1885 return intern ("buffered");
1886 case NSBackingStoreRetained:
1887 return intern ("retained");
1888 case NSBackingStoreNonretained:
1889 return intern ("non-retained");
1891 error ("Strange value for backingType parameter of frame");
1893 return Qnil; /* not reached, shut compiler up */
1897 DEFUN ("x-display-visual-class", Fx_display_visual_class,
1898 Sx_display_visual_class, 0, 1, 0,
1899 doc: /* Return the visual class of the Nextstep display TERMINAL.
1900 The value is one of the symbols `static-gray', `gray-scale',
1901 `static-color', `pseudo-color', `true-color', or `direct-color'.
1903 The optional argument TERMINAL specifies which display to ask about.
1904 TERMINAL should a terminal object, a frame or a display name (a string).
1905 If omitted or nil, that stands for the selected frame's display. */)
1906 (Lisp_Object terminal)
1908 NSWindowDepth depth;
1910 check_ns_display_info (terminal);
1911 depth = [[[NSScreen screens] objectAtIndex:0] depth];
1913 if ( depth == NSBestDepth (NSCalibratedWhiteColorSpace, 2, 2, YES, NULL))
1914 return intern ("static-gray");
1915 else if (depth == NSBestDepth (NSCalibratedWhiteColorSpace, 8, 8, YES, NULL))
1916 return intern ("gray-scale");
1917 else if ( depth == NSBestDepth (NSCalibratedRGBColorSpace, 8, 8, YES, NULL))
1918 return intern ("pseudo-color");
1919 else if ( depth == NSBestDepth (NSCalibratedRGBColorSpace, 4, 12, NO, NULL))
1920 return intern ("true-color");
1921 else if ( depth == NSBestDepth (NSCalibratedRGBColorSpace, 8, 24, NO, NULL))
1922 return intern ("direct-color");
1924 /* color mgmt as far as we do it is really handled by Nextstep itself anyway */
1925 return intern ("direct-color");
1929 DEFUN ("x-display-save-under", Fx_display_save_under,
1930 Sx_display_save_under, 0, 1, 0,
1931 doc: /* Return t if TERMINAL supports the save-under feature.
1932 The optional argument TERMINAL specifies which display to ask about.
1933 TERMINAL should be a terminal object, a frame or a display name (a string).
1934 If omitted or nil, that stands for the selected frame's display. */)
1935 (Lisp_Object terminal)
1937 check_ns_display_info (terminal);
1938 switch ([ns_get_window (terminal) backingType])
1940 case NSBackingStoreBuffered:
1943 case NSBackingStoreRetained:
1944 case NSBackingStoreNonretained:
1948 error ("Strange value for backingType parameter of frame");
1950 return Qnil; /* not reached, shut compiler up */
1954 DEFUN ("x-open-connection", Fx_open_connection, Sx_open_connection,
1956 doc: /* Open a connection to a display server.
1957 DISPLAY is the name of the display to connect to.
1958 Optional second arg XRM-STRING is a string of resources in xrdb format.
1959 If the optional third arg MUST-SUCCEED is non-nil,
1960 terminate Emacs if we can't open the connection.
1961 \(In the Nextstep version, the last two arguments are currently ignored.) */)
1962 (Lisp_Object display, Lisp_Object resource_string, Lisp_Object must_succeed)
1964 struct ns_display_info *dpyinfo;
1966 CHECK_STRING (display);
1968 nxatoms_of_nsselect ();
1969 dpyinfo = ns_term_init (display);
1972 if (!NILP (must_succeed))
1973 fatal ("Display on %s not responding.\n",
1976 error ("Display on %s not responding.\n",
1984 DEFUN ("x-close-connection", Fx_close_connection, Sx_close_connection,
1986 doc: /* Close the connection to TERMINAL's Nextstep display server.
1987 For TERMINAL, specify a terminal object, a frame or a display name (a
1988 string). If TERMINAL is nil, that stands for the selected frame's
1990 (Lisp_Object terminal)
1992 check_ns_display_info (terminal);
1993 [NSApp terminate: NSApp];
1998 DEFUN ("x-display-list", Fx_display_list, Sx_display_list, 0, 0, 0,
1999 doc: /* Return the list of display names that Emacs has connections to. */)
2002 Lisp_Object result = Qnil;
2003 struct ns_display_info *ndi;
2005 for (ndi = x_display_list; ndi; ndi = ndi->next)
2006 result = Fcons (XCAR (ndi->name_list_element), result);
2012 DEFUN ("ns-hide-others", Fns_hide_others, Sns_hide_others,
2014 doc: /* Hides all applications other than Emacs. */)
2017 check_window_system (NULL);
2018 [NSApp hideOtherApplications: NSApp];
2022 DEFUN ("ns-hide-emacs", Fns_hide_emacs, Sns_hide_emacs,
2024 doc: /* If ON is non-nil, the entire Emacs application is hidden.
2025 Otherwise if Emacs is hidden, it is unhidden.
2026 If ON is equal to `activate', Emacs is unhidden and becomes
2027 the active application. */)
2030 check_window_system (NULL);
2031 if (EQ (on, intern ("activate")))
2033 [NSApp unhide: NSApp];
2034 [NSApp activateIgnoringOtherApps: YES];
2037 [NSApp unhide: NSApp];
2039 [NSApp hide: NSApp];
2044 DEFUN ("ns-emacs-info-panel", Fns_emacs_info_panel, Sns_emacs_info_panel,
2046 doc: /* Shows the 'Info' or 'About' panel for Emacs. */)
2049 check_window_system (NULL);
2050 [NSApp orderFrontStandardAboutPanel: nil];
2055 DEFUN ("ns-font-name", Fns_font_name, Sns_font_name, 1, 1, 0,
2056 doc: /* Determine font PostScript or family name for font NAME.
2057 NAME should be a string containing either the font name or an XLFD
2058 font descriptor. If string contains `fontset' and not
2059 `fontset-startup', it is left alone. */)
2063 CHECK_STRING (name);
2068 if (strstr (nm, "fontset") && !strstr (nm, "fontset-startup"))
2071 return build_string (ns_xlfd_to_fontname (SSDATA (name)));
2075 DEFUN ("ns-list-colors", Fns_list_colors, Sns_list_colors, 0, 1, 0,
2076 doc: /* Return a list of all available colors.
2077 The optional argument FRAME is currently ignored. */)
2080 Lisp_Object list = Qnil;
2081 NSEnumerator *colorlists;
2086 CHECK_FRAME (frame);
2087 if (! FRAME_NS_P (XFRAME (frame)))
2088 error ("non-Nextstep frame used in `ns-list-colors'");
2093 colorlists = [[NSColorList availableColorLists] objectEnumerator];
2094 while ((clist = [colorlists nextObject]))
2096 if ([[clist name] length] < 7 ||
2097 [[clist name] rangeOfString: @"PANTONE"].location == 0)
2099 NSEnumerator *cnames = [[clist allKeys] reverseObjectEnumerator];
2101 while ((cname = [cnames nextObject]))
2102 list = Fcons (build_string ([cname UTF8String]), list);
2103 /* for (i = [[clist allKeys] count] - 1; i >= 0; i--)
2104 list = Fcons (build_string ([[[clist allKeys] objectAtIndex: i]
2105 UTF8String]), list); */
2115 DEFUN ("ns-list-services", Fns_list_services, Sns_list_services, 0, 0, 0,
2116 doc: /* List available Nextstep services by querying NSApp. */)
2119 #ifdef NS_IMPL_COCOA
2120 /* You can't get services like this in 10.6+. */
2123 Lisp_Object ret = Qnil;
2126 check_window_system (NULL);
2127 svcs = [[NSMenu alloc] initWithTitle: @"Services"];
2128 [NSApp setServicesMenu: svcs];
2129 [NSApp registerServicesMenuSendTypes: ns_send_types
2130 returnTypes: ns_return_types];
2132 [svcs setAutoenablesItems: NO];
2134 ret = interpret_services_menu (svcs, Qnil, ret);
2140 DEFUN ("ns-perform-service", Fns_perform_service, Sns_perform_service,
2142 doc: /* Perform Nextstep SERVICE on SEND.
2143 SEND should be either a string or nil.
2144 The return value is the result of the service, as string, or nil if
2145 there was no result. */)
2146 (Lisp_Object service, Lisp_Object send)
2152 CHECK_STRING (service);
2153 check_window_system (NULL);
2155 utfStr = SSDATA (service);
2156 svcName = [NSString stringWithUTF8String: utfStr];
2158 pb =[NSPasteboard pasteboardWithUniqueName];
2159 ns_string_to_pasteboard (pb, send);
2161 if (NSPerformService (svcName, pb) == NO)
2162 Fsignal (Qquit, list1 (build_string ("service not available")));
2164 if ([[pb types] count] == 0)
2165 return build_string ("");
2166 return ns_string_from_pasteboard (pb);
2170 #ifdef NS_IMPL_COCOA
2172 /* Compile and execute the AppleScript SCRIPT and return the error
2173 status as function value. A zero is returned if compilation and
2174 execution is successful, in which case *RESULT is set to a Lisp
2175 string or a number containing the resulting script value. Otherwise,
2178 ns_do_applescript (Lisp_Object script, Lisp_Object *result)
2180 NSAppleEventDescriptor *desc;
2181 NSDictionary *errorDict;
2182 NSAppleEventDescriptor *returnDescriptor = NULL;
2184 NSAppleScript *scriptObject =
2185 [[NSAppleScript alloc] initWithSource:
2186 [NSString stringWithUTF8String: SSDATA (script)]];
2188 returnDescriptor = [scriptObject executeAndReturnError: &errorDict];
2189 [scriptObject release];
2192 if (returnDescriptor != NULL)
2194 // successful execution
2195 if (kAENullEvent != [returnDescriptor descriptorType])
2198 // script returned an AppleScript result
2199 if ((typeUnicodeText == [returnDescriptor descriptorType]) ||
2200 #if defined (NS_IMPL_COCOA)
2201 (typeUTF16ExternalRepresentation
2202 == [returnDescriptor descriptorType]) ||
2204 (typeUTF8Text == [returnDescriptor descriptorType]) ||
2205 (typeCString == [returnDescriptor descriptorType]))
2207 desc = [returnDescriptor coerceToDescriptorType: typeUTF8Text];
2209 *result = build_string([[desc stringValue] UTF8String]);
2213 /* use typeUTF16ExternalRepresentation? */
2214 // coerce the result to the appropriate ObjC type
2215 desc = [returnDescriptor coerceToDescriptorType: typeUTF8Text];
2217 *result = make_number([desc int32Value]);
2223 // no script result, return error
2229 /* Helper function called from sendEvent to run applescript
2230 from within the main event loop. */
2233 ns_run_ascript (void)
2235 if (! NILP (as_script))
2236 as_status = ns_do_applescript (as_script, as_result);
2240 DEFUN ("ns-do-applescript", Fns_do_applescript, Sns_do_applescript, 1, 1, 0,
2241 doc: /* Execute AppleScript SCRIPT and return the result.
2242 If compilation and execution are successful, the resulting script value
2243 is returned as a string, a number or, in the case of other constructs, t.
2244 In case the execution fails, an error is signaled. */)
2245 (Lisp_Object script)
2250 struct input_event ev;
2252 CHECK_STRING (script);
2253 check_window_system (NULL);
2258 as_result = &result;
2260 /* executing apple script requires the event loop to run, otherwise
2261 errors aren't returned and executeAndReturnError hangs forever.
2262 Post an event that runs applescript and then start the event loop.
2263 The event loop is exited when the script is done. */
2264 nxev = [NSEvent otherEventWithType: NSEventTypeApplicationDefined
2265 location: NSMakePoint (0, 0)
2268 windowNumber: [[NSApp mainWindow] windowNumber]
2269 context: [NSApp context]
2272 data2: NSAPP_DATA2_RUNASSCRIPT];
2274 [NSApp postEvent: nxev atStart: NO];
2276 // If there are other events, the event loop may exit. Keep running
2277 // until the script has been handled. */
2278 ns_init_events (&ev);
2279 while (! NILP (as_script))
2281 ns_finish_events ();
2289 else if (!STRINGP (result))
2290 error ("AppleScript error %d", status);
2292 error ("%s", SSDATA (result));
2298 /* ==========================================================================
2300 Miscellaneous functions not called through hooks
2302 ========================================================================== */
2304 /* called from frame.c */
2305 struct ns_display_info *
2306 check_x_display_info (Lisp_Object frame)
2308 return check_ns_display_info (frame);
2313 x_set_scroll_bar_default_width (struct frame *f)
2315 int wid = FRAME_COLUMN_WIDTH (f);
2316 FRAME_CONFIG_SCROLL_BAR_WIDTH (f) = NS_SCROLL_BAR_WIDTH_DEFAULT;
2317 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) +
2322 x_set_scroll_bar_default_height (struct frame *f)
2324 int height = FRAME_LINE_HEIGHT (f);
2325 FRAME_CONFIG_SCROLL_BAR_HEIGHT (f) = NS_SCROLL_BAR_WIDTH_DEFAULT;
2326 FRAME_CONFIG_SCROLL_BAR_LINES (f) = (FRAME_CONFIG_SCROLL_BAR_HEIGHT (f) +
2327 height - 1) / height;
2330 /* terms impl this instead of x-get-resource directly */
2332 x_get_string_resource (XrmDatabase rdb, const char *name, const char *class)
2334 /* remove appname prefix; TODO: allow for !="Emacs" */
2335 const char *res, *toCheck = class + (!strncmp (class, "Emacs.", 6) ? 6 : 0);
2337 check_window_system (NULL);
2339 if (inhibit_x_resources)
2340 /* --quick was passed, so this is a no-op. */
2343 res = ns_get_defaults_value (toCheck);
2344 return (char *) (!res ? NULL
2345 : !c_strncasecmp (res, "YES", 3) ? "true"
2346 : !c_strncasecmp (res, "NO", 2) ? "false"
2352 x_get_focus_frame (struct frame *frame)
2354 struct ns_display_info *dpyinfo = FRAME_DISPLAY_INFO (frame);
2355 Lisp_Object nsfocus;
2357 if (!dpyinfo->x_focus_frame)
2360 XSETFRAME (nsfocus, dpyinfo->x_focus_frame);
2364 /* ==========================================================================
2366 Lisp definitions that, for whatever reason, we can't alias as 'ns-XXX'.
2368 ========================================================================== */
2371 DEFUN ("xw-color-defined-p", Fxw_color_defined_p, Sxw_color_defined_p, 1, 2, 0,
2372 doc: /* Internal function called by `color-defined-p', which see.
2373 \(Note that the Nextstep version of this function ignores FRAME.) */)
2374 (Lisp_Object color, Lisp_Object frame)
2377 check_window_system (NULL);
2378 return ns_lisp_to_color (color, &col) ? Qnil : Qt;
2382 DEFUN ("xw-color-values", Fxw_color_values, Sxw_color_values, 1, 2, 0,
2383 doc: /* Internal function called by `color-values', which see. */)
2384 (Lisp_Object color, Lisp_Object frame)
2387 EmacsCGFloat red, green, blue, alpha;
2389 check_window_system (NULL);
2390 CHECK_STRING (color);
2393 if (ns_lisp_to_color (color, &col))
2399 [[col colorUsingDefaultColorSpace]
2400 getRed: &red green: &green blue: &blue alpha: &alpha];
2402 return list3i (lrint (red * 65280), lrint (green * 65280),
2403 lrint (blue * 65280));
2407 DEFUN ("xw-display-color-p", Fxw_display_color_p, Sxw_display_color_p, 0, 1, 0,
2408 doc: /* Internal function called by `display-color-p', which see. */)
2409 (Lisp_Object terminal)
2411 NSWindowDepth depth;
2412 NSString *colorSpace;
2414 check_ns_display_info (terminal);
2415 depth = [[[NSScreen screens] objectAtIndex:0] depth];
2416 colorSpace = NSColorSpaceFromDepth (depth);
2418 return [colorSpace isEqualToString: NSDeviceWhiteColorSpace]
2419 || [colorSpace isEqualToString: NSCalibratedWhiteColorSpace]
2424 DEFUN ("x-display-grayscale-p", Fx_display_grayscale_p, Sx_display_grayscale_p,
2426 doc: /* Return t if the Nextstep display supports shades of gray.
2427 Note that color displays do support shades of gray.
2428 The optional argument TERMINAL specifies which display to ask about.
2429 TERMINAL should be a terminal object, a frame or a display name (a string).
2430 If omitted or nil, that stands for the selected frame's display. */)
2431 (Lisp_Object terminal)
2433 NSWindowDepth depth;
2435 check_ns_display_info (terminal);
2436 depth = [[[NSScreen screens] objectAtIndex:0] depth];
2438 return NSBitsPerPixelFromDepth (depth) > 1 ? Qt : Qnil;
2442 DEFUN ("x-display-pixel-width", Fx_display_pixel_width, Sx_display_pixel_width,
2444 doc: /* Return the width in pixels of the Nextstep display TERMINAL.
2445 The optional argument TERMINAL specifies which display to ask about.
2446 TERMINAL should be a terminal object, a frame or a display name (a string).
2447 If omitted or nil, that stands for the selected frame's display.
2449 On \"multi-monitor\" setups this refers to the pixel width for all
2450 physical monitors associated with TERMINAL. To get information for
2451 each physical monitor, use `display-monitor-attributes-list'. */)
2452 (Lisp_Object terminal)
2454 struct ns_display_info *dpyinfo = check_ns_display_info (terminal);
2456 return make_number (x_display_pixel_width (dpyinfo));
2460 DEFUN ("x-display-pixel-height", Fx_display_pixel_height,
2461 Sx_display_pixel_height, 0, 1, 0,
2462 doc: /* Return the height in pixels of the Nextstep display TERMINAL.
2463 The optional argument TERMINAL specifies which display to ask about.
2464 TERMINAL should be a terminal object, a frame or a display name (a string).
2465 If omitted or nil, that stands for the selected frame's display.
2467 On \"multi-monitor\" setups this refers to the pixel height for all
2468 physical monitors associated with TERMINAL. To get information for
2469 each physical monitor, use `display-monitor-attributes-list'. */)
2470 (Lisp_Object terminal)
2472 struct ns_display_info *dpyinfo = check_ns_display_info (terminal);
2474 return make_number (x_display_pixel_height (dpyinfo));
2477 #ifdef NS_IMPL_COCOA
2479 /* Returns the name for the screen that OBJ represents, or NULL.
2480 Caller must free return value.
2484 ns_get_name_from_ioreg (io_object_t obj)
2488 NSDictionary *info = (NSDictionary *)
2489 IODisplayCreateInfoDictionary (obj, kIODisplayOnlyPreferredName);
2490 NSDictionary *names = [info objectForKey:
2491 [NSString stringWithUTF8String:
2492 kDisplayProductName]];
2494 if ([names count] > 0)
2496 NSString *n = [names objectForKey: [[names allKeys]
2498 if (n != nil) name = xstrdup ([n UTF8String]);
2506 /* Returns the name for the screen that DID came from, or NULL.
2507 Caller must free return value.
2511 ns_screen_name (CGDirectDisplayID did)
2515 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_9
2516 mach_port_t masterPort;
2520 // CGDisplayIOServicePort is deprecated. Do it another (harder) way.
2522 if (IOMasterPort (MACH_PORT_NULL, &masterPort) != kIOReturnSuccess
2523 || IOServiceGetMatchingServices (masterPort,
2524 IOServiceMatching ("IONDRVDevice"),
2525 &it) != kIOReturnSuccess)
2528 /* Must loop until we find a name. Many devices can have the same unit
2529 number (represents different GPU parts), but only one has a name. */
2530 while (! name && (obj = IOIteratorNext (it)))
2532 CFMutableDictionaryRef props;
2535 if (IORegistryEntryCreateCFProperties (obj,
2537 kCFAllocatorDefault,
2538 kNilOptions) == kIOReturnSuccess
2540 && (val = CFDictionaryGetValue(props, @"IOFBDependentIndex")))
2542 unsigned nr = [(NSNumber *)val unsignedIntegerValue];
2543 if (nr == CGDisplayUnitNumber (did))
2544 name = ns_get_name_from_ioreg (obj);
2548 IOObjectRelease (obj);
2551 IOObjectRelease (it);
2555 name = ns_get_name_from_ioreg (CGDisplayIOServicePort (did));
2563 ns_make_monitor_attribute_list (struct MonitorInfo *monitors,
2565 int primary_monitor,
2568 Lisp_Object monitor_frames = Fmake_vector (make_number (n_monitors), Qnil);
2569 Lisp_Object frame, rest;
2570 NSArray *screens = [NSScreen screens];
2573 FOR_EACH_FRAME (rest, frame)
2575 struct frame *f = XFRAME (frame);
2579 NSView *view = FRAME_NS_VIEW (f);
2580 NSScreen *screen = [[view window] screen];
2584 for (k = 0; i == -1 && k < [screens count]; ++k)
2586 if ([screens objectAtIndex: k] == screen)
2591 ASET (monitor_frames, i, Fcons (frame, AREF (monitor_frames, i)));
2595 return make_monitor_attribute_list (monitors, n_monitors, primary_monitor,
2596 monitor_frames, source);
2599 DEFUN ("ns-display-monitor-attributes-list",
2600 Fns_display_monitor_attributes_list,
2601 Sns_display_monitor_attributes_list,
2603 doc: /* Return a list of physical monitor attributes on the X display TERMINAL.
2605 The optional argument TERMINAL specifies which display to ask about.
2606 TERMINAL should be a terminal object, a frame or a display name (a string).
2607 If omitted or nil, that stands for the selected frame's display.
2609 In addition to the standard attribute keys listed in
2610 `display-monitor-attributes-list', the following keys are contained in
2613 source -- String describing the source from which multi-monitor
2614 information is obtained, \"NS\" is always the source."
2616 Internal use only, use `display-monitor-attributes-list' instead. */)
2617 (Lisp_Object terminal)
2619 struct terminal *term = decode_live_terminal (terminal);
2621 NSUInteger i, n_monitors;
2622 struct MonitorInfo *monitors;
2623 Lisp_Object attributes_list = Qnil;
2624 CGFloat primary_display_height = 0;
2626 if (term->type != output_ns)
2629 screens = [NSScreen screens];
2630 n_monitors = [screens count];
2631 if (n_monitors == 0)
2634 monitors = xzalloc (n_monitors * sizeof *monitors);
2636 for (i = 0; i < [screens count]; ++i)
2638 NSScreen *s = [screens objectAtIndex:i];
2639 struct MonitorInfo *m = &monitors[i];
2640 NSRect fr = [s frame];
2641 NSRect vfr = [s visibleFrame];
2644 #ifdef NS_IMPL_COCOA
2645 NSDictionary *dict = [s deviceDescription];
2646 NSNumber *nid = [dict objectForKey:@"NSScreenNumber"];
2647 CGDirectDisplayID did = [nid unsignedIntValue];
2651 primary_display_height = fr.size.height;
2652 y = (short) fr.origin.y;
2653 vy = (short) vfr.origin.y;
2657 // Flip y coordinate as NS has y starting from the bottom.
2658 y = (short) (primary_display_height - fr.size.height - fr.origin.y);
2659 vy = (short) (primary_display_height -
2660 vfr.size.height - vfr.origin.y);
2663 m->geom.x = (short) fr.origin.x;
2665 m->geom.width = (unsigned short) fr.size.width;
2666 m->geom.height = (unsigned short) fr.size.height;
2668 m->work.x = (short) vfr.origin.x;
2669 // y is flipped on NS, so vy - y are pixels missing at the bottom,
2670 // and fr.size.height - vfr.size.height are pixels missing in total.
2671 // Pixels missing at top are
2672 // fr.size.height - vfr.size.height - vy + y.
2673 // work.y is then pixels missing at top + y.
2674 m->work.y = (short) (fr.size.height - vfr.size.height) - vy + y + y;
2675 m->work.width = (unsigned short) vfr.size.width;
2676 m->work.height = (unsigned short) vfr.size.height;
2678 #ifdef NS_IMPL_COCOA
2679 m->name = ns_screen_name (did);
2682 CGSize mms = CGDisplayScreenSize (did);
2683 m->mm_width = (int) mms.width;
2684 m->mm_height = (int) mms.height;
2688 // Assume 92 dpi as x-display-mm-height/x-display-mm-width does.
2689 m->mm_width = (int) (25.4 * fr.size.width / 92.0);
2690 m->mm_height = (int) (25.4 * fr.size.height / 92.0);
2694 // Primary monitor is always first for NS.
2695 attributes_list = ns_make_monitor_attribute_list (monitors, n_monitors,
2698 free_monitors (monitors, n_monitors);
2699 return attributes_list;
2703 DEFUN ("x-display-planes", Fx_display_planes, Sx_display_planes,
2705 doc: /* Return the number of bitplanes of the Nextstep display TERMINAL.
2706 The optional argument TERMINAL specifies which display to ask about.
2707 TERMINAL should be a terminal object, a frame or a display name (a string).
2708 If omitted or nil, that stands for the selected frame's display. */)
2709 (Lisp_Object terminal)
2711 check_ns_display_info (terminal);
2713 (NSBitsPerPixelFromDepth ([[[NSScreen screens] objectAtIndex:0] depth]));
2717 DEFUN ("x-display-color-cells", Fx_display_color_cells, Sx_display_color_cells,
2719 doc: /* Returns the number of color cells of the Nextstep display TERMINAL.
2720 The optional argument TERMINAL specifies which display to ask about.
2721 TERMINAL should be a terminal object, a frame or a display name (a string).
2722 If omitted or nil, that stands for the selected frame's display. */)
2723 (Lisp_Object terminal)
2725 struct ns_display_info *dpyinfo = check_ns_display_info (terminal);
2726 /* We force 24+ bit depths to 24-bit to prevent an overflow. */
2727 return make_number (1 << min (dpyinfo->n_planes, 24));
2731 /* Unused dummy def needed for compatibility. */
2732 Lisp_Object tip_frame;
2734 /* TODO: move to xdisp or similar */
2736 compute_tip_xy (struct frame *f,
2745 Lisp_Object left, top, right, bottom;
2749 /* Start with user-specified or mouse position. */
2750 left = Fcdr (Fassq (Qleft, parms));
2751 top = Fcdr (Fassq (Qtop, parms));
2752 right = Fcdr (Fassq (Qright, parms));
2753 bottom = Fcdr (Fassq (Qbottom, parms));
2755 if ((!INTEGERP (left) && !INTEGERP (right))
2756 || (!INTEGERP (top) && !INTEGERP (bottom)))
2757 pt = [NSEvent mouseLocation];
2760 /* Absolute coordinates. */
2761 pt.x = INTEGERP (left) ? XINT (left) : XINT (right);
2762 pt.y = (x_display_pixel_height (FRAME_DISPLAY_INFO (f))
2763 - (INTEGERP (top) ? XINT (top) : XINT (bottom))
2767 /* Find the screen that pt is on. */
2768 for (screen in [NSScreen screens])
2769 if (pt.x >= screen.frame.origin.x
2770 && pt.x < screen.frame.origin.x + screen.frame.size.width
2771 && pt.y >= screen.frame.origin.y
2772 && pt.y < screen.frame.origin.y + screen.frame.size.height)
2775 /* We could use this instead of the if above:
2777 if (CGRectContainsPoint ([screen frame], pt))
2779 which would be neater, but it causes problems building on old
2780 versions of macOS and in GNUstep. */
2782 /* Ensure in bounds. (Note, screen origin = lower left.) */
2783 if (INTEGERP (left) || INTEGERP (right))
2785 else if (pt.x + XINT (dx) <= screen.frame.origin.x)
2786 *root_x = screen.frame.origin.x; /* Can happen for negative dx */
2787 else if (pt.x + XINT (dx) + width
2788 <= screen.frame.origin.x + screen.frame.size.width)
2789 /* It fits to the right of the pointer. */
2790 *root_x = pt.x + XINT (dx);
2791 else if (width + XINT (dx) <= pt.x)
2792 /* It fits to the left of the pointer. */
2793 *root_x = pt.x - width - XINT (dx);
2795 /* Put it left justified on the screen -- it ought to fit that way. */
2796 *root_x = screen.frame.origin.x;
2798 if (INTEGERP (top) || INTEGERP (bottom))
2800 else if (pt.y - XINT (dy) - height >= screen.frame.origin.y)
2801 /* It fits below the pointer. */
2802 *root_y = pt.y - height - XINT (dy);
2803 else if (pt.y + XINT (dy) + height
2804 <= screen.frame.origin.y + screen.frame.size.height)
2805 /* It fits above the pointer */
2806 *root_y = pt.y + XINT (dy);
2808 /* Put it on the top. */
2809 *root_y = screen.frame.origin.y + screen.frame.size.height - height;
2813 DEFUN ("x-show-tip", Fx_show_tip, Sx_show_tip, 1, 6, 0,
2814 doc: /* Show STRING in a \"tooltip\" window on frame FRAME.
2815 A tooltip window is a small window displaying a string.
2817 This is an internal function; Lisp code should call `tooltip-show'.
2819 FRAME nil or omitted means use the selected frame.
2821 PARMS is an optional list of frame parameters which can be used to
2822 change the tooltip's appearance.
2824 Automatically hide the tooltip after TIMEOUT seconds. TIMEOUT nil
2825 means use the default timeout of 5 seconds.
2827 If the list of frame parameters PARMS contains a `left' parameter,
2828 display the tooltip at that x-position. If the list of frame parameters
2829 PARMS contains no `left' but a `right' parameter, display the tooltip
2830 right-adjusted at that x-position. Otherwise display it at the
2831 x-position of the mouse, with offset DX added (default is 5 if DX isn't
2834 Likewise for the y-position: If a `top' frame parameter is specified, it
2835 determines the position of the upper edge of the tooltip window. If a
2836 `bottom' parameter but no `top' frame parameter is specified, it
2837 determines the position of the lower edge of the tooltip window.
2838 Otherwise display the tooltip window at the y-position of the mouse,
2839 with offset DY added (default is -10).
2841 A tooltip's maximum size is specified by `x-max-tooltip-size'.
2842 Text larger than the specified size is clipped. */)
2843 (Lisp_Object string, Lisp_Object frame, Lisp_Object parms, Lisp_Object timeout, Lisp_Object dx, Lisp_Object dy)
2846 ptrdiff_t count = SPECPDL_INDEX ();
2851 specbind (Qinhibit_redisplay, Qt);
2853 CHECK_STRING (string);
2854 str = SSDATA (string);
2855 f = decode_window_system_frame (frame);
2857 timeout = make_number (5);
2859 CHECK_NATNUM (timeout);
2862 dx = make_number (5);
2867 dy = make_number (-10);
2872 if (ns_tooltip == nil)
2873 ns_tooltip = [[EmacsTooltip alloc] init];
2877 [ns_tooltip setText: str];
2878 size = [ns_tooltip frame].size;
2880 /* Move the tooltip window where the mouse pointer is. Resize and
2882 compute_tip_xy (f, parms, dx, dy, (int)size.width, (int)size.height,
2885 [ns_tooltip showAtX: root_x Y: root_y for: XINT (timeout)];
2888 return unbind_to (count, Qnil);
2892 DEFUN ("x-hide-tip", Fx_hide_tip, Sx_hide_tip, 0, 0, 0,
2893 doc: /* Hide the current tooltip window, if there is any.
2894 Value is t if tooltip was open, nil otherwise. */)
2897 if (ns_tooltip == nil || ![ns_tooltip isActive])
2903 /* Return geometric attributes of FRAME. According to the value of
2904 ATTRIBUTES return the outer edges of FRAME (Qouter_edges), the inner
2905 edges of FRAME, the root window edges of frame (Qroot_edges). Any
2906 other value means to return the geometry as returned by
2907 Fx_frame_geometry. */
2909 frame_geometry (Lisp_Object frame, Lisp_Object attribute)
2911 struct frame *f = decode_live_frame (frame);
2912 Lisp_Object fullscreen_symbol = Fframe_parameter (frame, Qfullscreen);
2913 bool fullscreen = (EQ (fullscreen_symbol, Qfullboth)
2914 || EQ (fullscreen_symbol, Qfullscreen));
2915 int border = fullscreen ? 0 : f->border_width;
2916 int title_height = fullscreen ? 0 : FRAME_NS_TITLEBAR_HEIGHT (f);
2917 int native_width = FRAME_PIXEL_WIDTH (f);
2918 int native_height = FRAME_PIXEL_HEIGHT (f);
2919 int outer_width = native_width + 2 * border;
2920 int outer_height = native_height + 2 * border + title_height;
2921 int native_left = f->left_pos + border;
2922 int native_top = f->top_pos + border + title_height;
2923 int native_right = f->left_pos + outer_width - border;
2924 int native_bottom = f->top_pos + outer_height - border;
2925 int internal_border_width = FRAME_INTERNAL_BORDER_WIDTH (f);
2926 int tool_bar_height = FRAME_TOOLBAR_HEIGHT (f);
2927 int tool_bar_width = (tool_bar_height
2928 ? outer_width - 2 * internal_border_width
2931 /* Construct list. */
2932 if (EQ (attribute, Qouter_edges))
2933 return list4 (make_number (f->left_pos), make_number (f->top_pos),
2934 make_number (f->left_pos + outer_width),
2935 make_number (f->top_pos + outer_height));
2936 else if (EQ (attribute, Qnative_edges))
2937 return list4 (make_number (native_left), make_number (native_top),
2938 make_number (native_right), make_number (native_bottom));
2939 else if (EQ (attribute, Qinner_edges))
2940 return list4 (make_number (native_left + internal_border_width),
2941 make_number (native_top
2943 + internal_border_width),
2944 make_number (native_right - internal_border_width),
2945 make_number (native_bottom - internal_border_width));
2948 listn (CONSTYPE_HEAP, 10,
2949 Fcons (Qouter_position,
2950 Fcons (make_number (f->left_pos),
2951 make_number (f->top_pos))),
2953 Fcons (make_number (outer_width),
2954 make_number (outer_height))),
2955 Fcons (Qexternal_border_size,
2957 ? Fcons (make_number (0), make_number (0))
2958 : Fcons (make_number (border), make_number (border)))),
2959 Fcons (Qtitle_bar_size,
2960 Fcons (make_number (0), make_number (title_height))),
2961 Fcons (Qmenu_bar_external, Qnil),
2962 Fcons (Qmenu_bar_size, Fcons (make_number (0), make_number (0))),
2963 Fcons (Qtool_bar_external,
2964 FRAME_EXTERNAL_TOOL_BAR (f) ? Qt : Qnil),
2965 Fcons (Qtool_bar_position, FRAME_TOOL_BAR_POSITION (f)),
2966 Fcons (Qtool_bar_size,
2967 Fcons (make_number (tool_bar_width),
2968 make_number (tool_bar_height))),
2969 Fcons (Qinternal_border_width,
2970 make_number (internal_border_width)));
2973 DEFUN ("ns-frame-geometry", Fns_frame_geometry, Sns_frame_geometry, 0, 1, 0,
2974 doc: /* Return geometric attributes of FRAME.
2975 FRAME must be a live frame and defaults to the selected one. The return
2976 value is an association list of the attributes listed below. All height
2977 and width values are in pixels.
2979 `outer-position' is a cons of the outer left and top edges of FRAME
2980 relative to the origin - the position (0, 0) - of FRAME's display.
2982 `outer-size' is a cons of the outer width and height of FRAME. The
2983 outer size includes the title bar and the external borders as well as
2984 any menu and/or tool bar of frame.
2986 `external-border-size' is a cons of the horizontal and vertical width of
2987 FRAME's external borders as supplied by the window manager.
2989 `title-bar-size' is a cons of the width and height of the title bar of
2990 FRAME as supplied by the window manager. If both of them are zero,
2991 FRAME has no title bar. If only the width is zero, Emacs was not
2992 able to retrieve the width information.
2994 `menu-bar-external', if non-nil, means the menu bar is external (never
2995 included in the inner edges of FRAME).
2997 `menu-bar-size' is a cons of the width and height of the menu bar of
3000 `tool-bar-external', if non-nil, means the tool bar is external (never
3001 included in the inner edges of FRAME).
3003 `tool-bar-position' tells on which side the tool bar on FRAME is and can
3004 be one of `left', `top', `right' or `bottom'. If this is nil, FRAME
3007 `tool-bar-size' is a cons of the width and height of the tool bar of
3010 `internal-border-width' is the width of the internal border of
3014 return frame_geometry (frame, Qnil);
3017 DEFUN ("ns-frame-edges", Fns_frame_edges, Sns_frame_edges, 0, 2, 0,
3018 doc: /* Return edge coordinates of FRAME.
3019 FRAME must be a live frame and defaults to the selected one. The return
3020 value is a list of the form (LEFT, TOP, RIGHT, BOTTOM). All values are
3021 in pixels relative to the origin - the position (0, 0) - of FRAME's
3024 If optional argument TYPE is the symbol `outer-edges', return the outer
3025 edges of FRAME. The outer edges comprise the decorations of the window
3026 manager (like the title bar or external borders) as well as any external
3027 menu or tool bar of FRAME. If optional argument TYPE is the symbol
3028 `native-edges' or nil, return the native edges of FRAME. The native
3029 edges exclude the decorations of the window manager and any external
3030 menu or tool bar of FRAME. If TYPE is the symbol `inner-edges', return
3031 the inner edges of FRAME. These edges exclude title bar, any borders,
3032 menu bar or tool bar of FRAME. */)
3033 (Lisp_Object frame, Lisp_Object type)
3035 return frame_geometry (frame, ((EQ (type, Qouter_edges)
3036 || EQ (type, Qinner_edges))
3041 DEFUN ("ns-set-mouse-absolute-pixel-position",
3042 Fns_set_mouse_absolute_pixel_position,
3043 Sns_set_mouse_absolute_pixel_position, 2, 2, 0,
3044 doc: /* Move mouse pointer to absolute pixel position (X, Y).
3045 The coordinates X and Y are interpreted in pixels relative to a position
3046 \(0, 0) of the selected frame's display. */)
3047 (Lisp_Object x, Lisp_Object y)
3049 #ifdef NS_IMPL_COCOA
3050 /* GNUstep doesn't support CGWarpMouseCursorPosition, so none of
3052 struct frame *f = SELECTED_FRAME ();
3053 EmacsView *view = FRAME_NS_VIEW (f);
3054 NSScreen *screen = [[view window] screen];
3055 NSRect screen_frame = [screen frame];
3056 int mouse_x, mouse_y;
3058 NSScreen *primary_screen = [[NSScreen screens] objectAtIndex:0];
3059 NSRect primary_screen_frame = [primary_screen frame];
3060 CGFloat primary_screen_height = primary_screen_frame.size.height;
3062 if (FRAME_INITIAL_P (f) || !FRAME_NS_P (f))
3065 CHECK_TYPE_RANGED_INTEGER (int, x);
3066 CHECK_TYPE_RANGED_INTEGER (int, y);
3068 mouse_x = screen_frame.origin.x + XINT (x);
3070 if (screen == primary_screen)
3071 mouse_y = screen_frame.origin.y + XINT (y);
3073 mouse_y = (primary_screen_height - screen_frame.size.height
3074 - screen_frame.origin.y) + XINT (y);
3076 CGPoint mouse_pos = CGPointMake(mouse_x, mouse_y);
3077 CGWarpMouseCursorPosition (mouse_pos);
3078 #endif /* NS_IMPL_COCOA */
3083 DEFUN ("ns-mouse-absolute-pixel-position",
3084 Fns_mouse_absolute_pixel_position,
3085 Sns_mouse_absolute_pixel_position, 0, 0, 0,
3086 doc: /* Return absolute position of mouse cursor in pixels.
3087 The position is returned as a cons cell (X . Y) of the
3088 coordinates of the mouse cursor position in pixels relative to a
3089 position (0, 0) of the selected frame's terminal. */)
3092 struct frame *f = SELECTED_FRAME ();
3093 EmacsView *view = FRAME_NS_VIEW (f);
3094 NSScreen *screen = [[view window] screen];
3095 NSPoint pt = [NSEvent mouseLocation];
3097 return Fcons(make_number(pt.x - screen.frame.origin.x),
3098 make_number(screen.frame.size.height -
3099 (pt.y - screen.frame.origin.y)));
3102 /* ==========================================================================
3104 Class implementations
3106 ========================================================================== */
3109 Handle arrow/function/control keys and copy/paste/cut in file dialogs.
3110 Return YES if handled, NO if not.
3113 handlePanelKeys (NSSavePanel *panel, NSEvent *theEvent)
3119 if ([theEvent type] != NSEventTypeKeyDown) return NO;
3120 s = [theEvent characters];
3122 for (i = 0; i < [s length]; ++i)
3124 int ch = (int) [s characterAtIndex: i];
3127 case NSHomeFunctionKey:
3128 case NSDownArrowFunctionKey:
3129 case NSUpArrowFunctionKey:
3130 case NSLeftArrowFunctionKey:
3131 case NSRightArrowFunctionKey:
3132 case NSPageUpFunctionKey:
3133 case NSPageDownFunctionKey:
3134 case NSEndFunctionKey:
3135 /* Don't send command modified keys, as those are handled in the
3136 performKeyEquivalent method of the super class.
3138 if (! ([theEvent modifierFlags] & NSEventModifierFlagCommand))
3140 [panel sendEvent: theEvent];
3144 /* As we don't have the standard key commands for
3145 copy/paste/cut/select-all in our edit menu, we must handle
3146 them here. TODO: handle Emacs key bindings for copy/cut/select-all
3147 here, paste works, because we have that in our Edit menu.
3148 I.e. refactor out code in nsterm.m, keyDown: to figure out the
3154 case 'a': // Select all
3155 if ([theEvent modifierFlags] & NSEventModifierFlagCommand)
3164 : @selector(selectAll:))))
3169 // Send all control keys, as the text field supports C-a, C-f, C-e
3171 if ([theEvent modifierFlags] & NSEventModifierFlagControl)
3173 [panel sendEvent: theEvent];
3184 @implementation EmacsSavePanel
3185 - (BOOL)performKeyEquivalent:(NSEvent *)theEvent
3187 BOOL ret = handlePanelKeys (self, theEvent);
3189 ret = [super performKeyEquivalent:theEvent];
3195 @implementation EmacsOpenPanel
3196 - (BOOL)performKeyEquivalent:(NSEvent *)theEvent
3198 // NSOpenPanel inherits NSSavePanel, so passing self is OK.
3199 BOOL ret = handlePanelKeys (self, theEvent);
3201 ret = [super performKeyEquivalent:theEvent];
3207 @implementation EmacsFileDelegate
3208 /* --------------------------------------------------------------------------
3209 Delegate methods for Open/Save panels
3210 -------------------------------------------------------------------------- */
3211 - (BOOL)panel: (id)sender isValidFilename: (NSString *)filename
3215 - (BOOL)panel: (id)sender shouldShowFilename: (NSString *)filename
3219 - (NSString *)panel: (id)sender userEnteredFilename: (NSString *)filename
3220 confirmed: (BOOL)okFlag
3229 /* ==========================================================================
3231 Lisp interface declaration
3233 ========================================================================== */
3237 syms_of_nsfns (void)
3239 DEFSYM (Qfontsize, "fontsize");
3240 DEFSYM (Qframe_title_format, "frame-title-format");
3241 DEFSYM (Qicon_title_format, "icon-title-format");
3243 DEFVAR_LISP ("ns-icon-type-alist", Vns_icon_type_alist,
3244 doc: /* Alist of elements (REGEXP . IMAGE) for images of icons associated to frames.
3245 If the title of a frame matches REGEXP, then IMAGE.tiff is
3246 selected as the image of the icon representing the frame when it's
3247 miniaturized. If an element is t, then Emacs tries to select an icon
3248 based on the filetype of the visited file.
3250 The images have to be installed in a folder called English.lproj in the
3251 Emacs folder. You have to restart Emacs after installing new icons.
3253 Example: Install an icon Gnus.tiff and execute the following code
3255 (setq ns-icon-type-alist
3256 (append ns-icon-type-alist
3257 \\='((\"^\\\\*\\\\(Group\\\\*$\\\\|Summary \\\\|Article\\\\*$\\\\)\"
3260 When you miniaturize a Group, Summary or Article frame, Gnus.tiff will
3261 be used as the image of the icon representing the frame. */);
3262 Vns_icon_type_alist = list1 (Qt);
3264 DEFVAR_LISP ("ns-version-string", Vns_version_string,
3265 doc: /* Toolkit version for NS Windowing. */);
3266 Vns_version_string = ns_appkit_version_str ();
3268 defsubr (&Sns_read_file_name);
3269 defsubr (&Sns_get_resource);
3270 defsubr (&Sns_set_resource);
3271 defsubr (&Sxw_display_color_p); /* this and next called directly by C code */
3272 defsubr (&Sx_display_grayscale_p);
3273 defsubr (&Sns_font_name);
3274 defsubr (&Sns_list_colors);
3275 #ifdef NS_IMPL_COCOA
3276 defsubr (&Sns_do_applescript);
3278 defsubr (&Sxw_color_defined_p);
3279 defsubr (&Sxw_color_values);
3280 defsubr (&Sx_server_max_request_size);
3281 defsubr (&Sx_server_vendor);
3282 defsubr (&Sx_server_version);
3283 defsubr (&Sx_display_pixel_width);
3284 defsubr (&Sx_display_pixel_height);
3285 defsubr (&Sns_display_monitor_attributes_list);
3286 defsubr (&Sns_frame_geometry);
3287 defsubr (&Sns_frame_edges);
3288 defsubr (&Sns_frame_list_z_order);
3289 defsubr (&Sns_frame_restack);
3290 defsubr (&Sns_set_mouse_absolute_pixel_position);
3291 defsubr (&Sns_mouse_absolute_pixel_position);
3292 defsubr (&Sx_display_mm_width);
3293 defsubr (&Sx_display_mm_height);
3294 defsubr (&Sx_display_screens);
3295 defsubr (&Sx_display_planes);
3296 defsubr (&Sx_display_color_cells);
3297 defsubr (&Sx_display_visual_class);
3298 defsubr (&Sx_display_backing_store);
3299 defsubr (&Sx_display_save_under);
3300 defsubr (&Sx_create_frame);
3301 defsubr (&Sx_open_connection);
3302 defsubr (&Sx_close_connection);
3303 defsubr (&Sx_display_list);
3305 defsubr (&Sns_hide_others);
3306 defsubr (&Sns_hide_emacs);
3307 defsubr (&Sns_emacs_info_panel);
3308 defsubr (&Sns_list_services);
3309 defsubr (&Sns_perform_service);
3310 defsubr (&Sns_popup_font_panel);
3311 defsubr (&Sns_popup_color_panel);
3313 defsubr (&Sx_show_tip);
3314 defsubr (&Sx_hide_tip);