/* Graphical user interface functions for Mac OS. Copyright (C) 2000 Free Software Foundation, Inc. This file is part of GNU Emacs. GNU Emacs is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. GNU Emacs is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU Emacs; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* Contributed by Andrew Choi (akochoi@users.sourceforge.net). */ #include #include #include #include #include #include #include "lisp.h" #include "charset.h" #include "macterm.h" #include "frame.h" #include "window.h" #include "buffer.h" #include "dispextern.h" #include "fontset.h" #include "intervals.h" #include "keyboard.h" #include "blockinput.h" #include "epaths.h" #include "termhooks.h" #include "coding.h" #include "ccl.h" #include "systime.h" /* #include "bitmaps/gray.xbm" */ #define gray_width 2 #define gray_height 2 static unsigned char gray_bits[] = { 0x01, 0x02}; /*#include #include */ #include #include #include #include #if 0 #include #endif #include #include #include #ifndef min #define min(a,b) ((a) < (b) ? (a) : (b)) #endif #ifndef max #define max(a,b) ((a) > (b) ? (a) : (b)) #endif /*extern void free_frame_menubar (); extern double atof (); extern int w32_console_toggle_lock_key (int vk_code, Lisp_Object new_state); extern int quit_char;*/ /* A definition of XColor for non-X frames. */ #ifndef HAVE_X_WINDOWS typedef struct { unsigned long pixel; unsigned short red, green, blue; char flags; char pad; } XColor; #endif extern char *lispy_function_keys[]; /* The gray bitmap `bitmaps/gray'. This is done because macterm.c uses it, and including `bitmaps/gray' more than once is a problem when config.h defines `static' as an empty replacement string. */ int gray_bitmap_width = gray_width; int gray_bitmap_height = gray_height; unsigned char *gray_bitmap_bits = gray_bits; /* The name we're using in resource queries. */ Lisp_Object Vx_resource_name; /* Non-zero means we're allowed to display an hourglass cursor. */ int display_hourglass_p; /* The background and shape of the mouse pointer, and shape when not over text or in the modeline. */ Lisp_Object Vx_pointer_shape, Vx_nontext_pointer_shape, Vx_mode_pointer_shape; Lisp_Object Vx_hourglass_pointer_shape; /* The shape when over mouse-sensitive text. */ Lisp_Object Vx_sensitive_text_pointer_shape; /* If non-nil, the pointer shape to indicate that windows can be dragged horizontally. */ Lisp_Object Vx_window_horizontal_drag_shape; /* Color of chars displayed in cursor box. */ Lisp_Object Vx_cursor_fore_pixel; /* Nonzero if using Windows. */ static int mac_in_use; /* Non nil if no window manager is in use. */ Lisp_Object Vx_no_window_manager; /* Search path for bitmap files. */ Lisp_Object Vx_bitmap_file_path; /* Regexp matching a font name whose width is the same as `PIXEL_SIZE'. */ Lisp_Object Vx_pixel_size_width_font_regexp; /* Evaluate this expression to rebuild the section of syms_of_macfns that initializes and staticpros the symbols declared below. Note that Emacs 18 has a bug that keeps C-x C-e from being able to evaluate this expression. (progn ;; Accumulate a list of the symbols we want to initialize from the ;; declarations at the top of the file. (goto-char (point-min)) (search-forward "/\*&&& symbols declared here &&&*\/\n") (let (symbol-list) (while (looking-at "Lisp_Object \\(Q[a-z_]+\\)") (setq symbol-list (cons (buffer-substring (match-beginning 1) (match-end 1)) symbol-list)) (forward-line 1)) (setq symbol-list (nreverse symbol-list)) ;; Delete the section of syms_of_... where we initialize the symbols. (search-forward "\n /\*&&& init symbols here &&&*\/\n") (let ((start (point))) (while (looking-at "^ Q") (forward-line 2)) (kill-region start (point))) ;; Write a new symbol initialization section. (while symbol-list (insert (format " %s = intern (\"" (car symbol-list))) (let ((start (point))) (insert (substring (car symbol-list) 1)) (subst-char-in-region start (point) ?_ ?-)) (insert (format "\");\n staticpro (&%s);\n" (car symbol-list))) (setq symbol-list (cdr symbol-list))))) */ /*&&& symbols declared here &&&*/ Lisp_Object Qauto_raise; Lisp_Object Qauto_lower; Lisp_Object Qbar; Lisp_Object Qborder_color; Lisp_Object Qborder_width; Lisp_Object Qbox; Lisp_Object Qcursor_color; Lisp_Object Qcursor_type; Lisp_Object Qgeometry; Lisp_Object Qicon_left; Lisp_Object Qicon_top; Lisp_Object Qicon_type; Lisp_Object Qicon_name; Lisp_Object Qinternal_border_width; Lisp_Object Qleft; Lisp_Object Qright; Lisp_Object Qmouse_color; Lisp_Object Qnone; Lisp_Object Qparent_id; Lisp_Object Qscroll_bar_width; Lisp_Object Qsuppress_icon; Lisp_Object Qundefined_color; Lisp_Object Qvertical_scroll_bars; Lisp_Object Qvisibility; Lisp_Object Qwindow_id; Lisp_Object Qx_frame_parameter; Lisp_Object Qx_resource_name; Lisp_Object Quser_position; Lisp_Object Quser_size; Lisp_Object Qscreen_gamma; Lisp_Object Qline_spacing; Lisp_Object Qcenter; Lisp_Object Qcancel_timer; Lisp_Object Qhyper; Lisp_Object Qsuper; Lisp_Object Qmeta; Lisp_Object Qalt; Lisp_Object Qctrl; Lisp_Object Qcontrol; Lisp_Object Qshift; extern Lisp_Object Qtop; extern Lisp_Object Qdisplay; Lisp_Object Qscroll_bar_foreground, Qscroll_bar_background; extern Lisp_Object Qtool_bar_lines; /* These are defined in frame.c. */ extern Lisp_Object Qheight, Qminibuffer, Qname, Qonly, Qwidth; extern Lisp_Object Qunsplittable, Qmenu_bar_lines, Qbuffer_predicate, Qtitle; extern Lisp_Object Qtool_bar_lines; extern Lisp_Object Vwindow_system_version; Lisp_Object Qface_set_after_frame_default; /* Functions in macterm.c. */ extern void x_set_offset (struct frame *, int, int, int); extern void x_wm_set_icon_position (struct frame *, int, int); extern void x_display_cursor (struct window *, int, int, int, int, int); extern void x_set_window_size (struct frame *, int, int, int); extern void x_make_frame_visible (struct frame *); extern struct mac_display_info *x_term_init (Lisp_Object, char *, char *); extern struct font_info *x_get_font_info (FRAME_PTR, int); extern struct font_info *x_load_font (struct frame *, char *, int); extern void x_find_ccl_program (struct font_info *); extern struct font_info *x_query_font (struct frame *, char *); /* compare two strings ignoring case */ static int stricmp (const char *s, const char *t) { for ( ; tolower (*s) == tolower (*t); s++, t++) if (*s == '\0') return 0; return tolower (*s) - tolower (*t); } /* compare two strings up to n characters, ignoring case */ static int strnicmp (const char *s, const char *t, unsigned int n) { for ( ; n-- > 0 && tolower (*s) == tolower (*t); s++, t++) if (*s == '\0') return 0; return n == 0 ? 0 : tolower (*s) - tolower (*t); } /* Error if we are not running on Mac OS. */ void check_mac () { if (! mac_in_use) error ("Mac OS not in use or not initialized"); } /* Nonzero if we can use mouse menus. You should not call this unless HAVE_MENUS is defined. */ int have_menus_p () { return mac_in_use; } /* Extract a frame as a FRAME_PTR, defaulting to the selected frame and checking validity for Mac. */ FRAME_PTR check_x_frame (frame) Lisp_Object frame; { FRAME_PTR f; if (NILP (frame)) frame = selected_frame; CHECK_LIVE_FRAME (frame, 0); f = XFRAME (frame); if (! FRAME_MAC_P (f)) error ("non-mac frame used"); return f; } /* Let the user specify an display with a frame. nil stands for the selected frame--or, if that is not a mac frame, the first display on the list. */ static struct mac_display_info * check_x_display_info (frame) Lisp_Object frame; { if (NILP (frame)) { struct frame *sf = XFRAME (selected_frame); if (FRAME_MAC_P (sf) && FRAME_LIVE_P (sf)) return FRAME_MAC_DISPLAY_INFO (sf); else return &one_mac_display_info; } else if (STRINGP (frame)) return x_display_info_for_name (frame); else { FRAME_PTR f; CHECK_LIVE_FRAME (frame, 0); f = XFRAME (frame); if (! FRAME_MAC_P (f)) error ("non-mac frame used"); return FRAME_MAC_DISPLAY_INFO (f); } } /* Return the Emacs frame-object corresponding to an mac window. It could be the frame's main window or an icon window. */ /* This function can be called during GC, so use GC_xxx type test macros. */ struct frame * x_window_to_frame (dpyinfo, wdesc) struct mac_display_info *dpyinfo; WindowPtr wdesc; { Lisp_Object tail, frame; struct frame *f; for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail)) { frame = XCAR (tail); if (!GC_FRAMEP (frame)) continue; f = XFRAME (frame); if (!FRAME_W32_P (f) || FRAME_MAC_DISPLAY_INFO (f) != dpyinfo) continue; /*if (f->output_data.w32->busy_window == wdesc) return f;*/ /* MAC_TODO: Check tooltips when supported. */ if (FRAME_MAC_WINDOW (f) == wdesc) return f; } return 0; } /* Code to deal with bitmaps. Bitmaps are referenced by their bitmap id, which is just an int that this section returns. Bitmaps are reference counted so they can be shared among frames. Bitmap indices are guaranteed to be > 0, so a negative number can be used to indicate no bitmap. If you use x_create_bitmap_from_data, then you must keep track of the bitmaps yourself. That is, creating a bitmap from the same data more than once will not be caught. */ /* Functions to access the contents of a bitmap, given an id. */ int x_bitmap_height (f, id) FRAME_PTR f; int id; { return FRAME_MAC_DISPLAY_INFO (f)->bitmaps[id - 1].height; } int x_bitmap_width (f, id) FRAME_PTR f; int id; { return FRAME_MAC_DISPLAY_INFO (f)->bitmaps[id - 1].width; } #if 0 /* MAC_TODO : not used anywhere (?) */ int x_bitmap_pixmap (f, id) FRAME_PTR f; int id; { return (int) FRAME_MAC_DISPLAY_INFO (f)->bitmaps[id - 1].pixmap; } #endif /* Allocate a new bitmap record. Returns index of new record. */ static int x_allocate_bitmap_record (f) FRAME_PTR f; { struct mac_display_info *dpyinfo = FRAME_MAC_DISPLAY_INFO (f); int i; if (dpyinfo->bitmaps == NULL) { dpyinfo->bitmaps_size = 10; dpyinfo->bitmaps = (struct mac_bitmap_record *) xmalloc (dpyinfo->bitmaps_size * sizeof (struct mac_bitmap_record)); dpyinfo->bitmaps_last = 1; return 1; } if (dpyinfo->bitmaps_last < dpyinfo->bitmaps_size) return ++dpyinfo->bitmaps_last; for (i = 0; i < dpyinfo->bitmaps_size; ++i) if (dpyinfo->bitmaps[i].refcount == 0) return i + 1; dpyinfo->bitmaps_size *= 2; dpyinfo->bitmaps = (struct mac_bitmap_record *) xrealloc (dpyinfo->bitmaps, dpyinfo->bitmaps_size * sizeof (struct mac_bitmap_record)); return ++dpyinfo->bitmaps_last; } /* Add one reference to the reference count of the bitmap with id ID. */ void x_reference_bitmap (f, id) FRAME_PTR f; int id; { ++FRAME_MAC_DISPLAY_INFO (f)->bitmaps[id - 1].refcount; } /* Create a bitmap for frame F from a HEIGHT x WIDTH array of bits at BITS. */ int x_create_bitmap_from_data (f, bits, width, height) struct frame *f; char *bits; unsigned int width, height; { struct x_display_info *dpyinfo = FRAME_MAC_DISPLAY_INFO (f); int id; /* MAC_TODO: for now fail if width is not mod 16 (toolbox requires it) */ id = x_allocate_bitmap_record (f); if (width % 16 != 0) return -1; dpyinfo->bitmaps[id - 1].bitmap_data = (char *) xmalloc (height * width); if (! dpyinfo->bitmaps[id - 1].bitmap_data) return -1; bcopy (bits, dpyinfo->bitmaps[id - 1].bitmap_data, height * width); dpyinfo->bitmaps[id - 1].refcount = 1; dpyinfo->bitmaps[id - 1].height = height; dpyinfo->bitmaps[id - 1].width = width; return id; } /* Create bitmap from file FILE for frame F. */ int x_create_bitmap_from_file (f, file) struct frame *f; Lisp_Object file; { return -1; #if 0 /* MAC_TODO : bitmap support */ struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f); unsigned int width, height; HBITMAP bitmap; int xhot, yhot, result, id; Lisp_Object found; int fd; char *filename; HINSTANCE hinst; /* Look for an existing bitmap with the same name. */ for (id = 0; id < dpyinfo->bitmaps_last; ++id) { if (dpyinfo->bitmaps[id].refcount && dpyinfo->bitmaps[id].file && !strcmp (dpyinfo->bitmaps[id].file, (char *) XSTRING (file)->data)) { ++dpyinfo->bitmaps[id].refcount; return id + 1; } } /* Search bitmap-file-path for the file, if appropriate. */ fd = openp (Vx_bitmap_file_path, file, "", &found, 0); if (fd < 0) return -1; /* LoadLibraryEx won't handle special files handled by Emacs handler. */ if (fd == 0) return -1; emacs_close (fd); filename = (char *) XSTRING (found)->data; hinst = LoadLibraryEx (filename, NULL, LOAD_LIBRARY_AS_DATAFILE); if (hinst == NULL) return -1; result = XReadBitmapFile (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f), filename, &width, &height, &bitmap, &xhot, &yhot); if (result != BitmapSuccess) return -1; id = x_allocate_bitmap_record (f); dpyinfo->bitmaps[id - 1].pixmap = bitmap; dpyinfo->bitmaps[id - 1].refcount = 1; dpyinfo->bitmaps[id - 1].file = (char *) xmalloc (XSTRING (file)->size + 1); dpyinfo->bitmaps[id - 1].depth = 1; dpyinfo->bitmaps[id - 1].height = height; dpyinfo->bitmaps[id - 1].width = width; strcpy (dpyinfo->bitmaps[id - 1].file, XSTRING (file)->data); return id; #endif /* MAC_TODO */ } /* Remove reference to bitmap with id number ID. */ void x_destroy_bitmap (f, id) FRAME_PTR f; int id; { struct mac_display_info *dpyinfo = FRAME_MAC_DISPLAY_INFO (f); if (id > 0) { --dpyinfo->bitmaps[id - 1].refcount; if (dpyinfo->bitmaps[id - 1].refcount == 0) { BLOCK_INPUT; dpyinfo->bitmaps[id - 1].bitmap_data = NULL; UNBLOCK_INPUT; } } } /* Free all the bitmaps for the display specified by DPYINFO. */ static void x_destroy_all_bitmaps (dpyinfo) struct mac_display_info *dpyinfo; { int i; for (i = 0; i < dpyinfo->bitmaps_last; i++) if (dpyinfo->bitmaps[i].refcount > 0) xfree (dpyinfo->bitmaps[i].bitmap_data); dpyinfo->bitmaps_last = 0; } /* Connect the frame-parameter names for W32 frames to the ways of passing the parameter values to the window system. The name of a parameter, as a Lisp symbol, has an `x-frame-parameter' property which is an integer in Lisp but can be interpreted as an `enum x_frame_parm' in C. */ struct x_frame_parm_table { char *name; void (*setter) P_ ((struct frame *, Lisp_Object, Lisp_Object)); }; void x_set_foreground_color P_ ((struct frame *, Lisp_Object, Lisp_Object)); static void x_set_line_spacing P_ ((struct frame *, Lisp_Object, Lisp_Object)); void x_set_background_color P_ ((struct frame *, Lisp_Object, Lisp_Object)); void x_set_mouse_color P_ ((struct frame *, Lisp_Object, Lisp_Object)); void x_set_cursor_color P_ ((struct frame *, Lisp_Object, Lisp_Object)); void x_set_border_color P_ ((struct frame *, Lisp_Object, Lisp_Object)); void x_set_cursor_type P_ ((struct frame *, Lisp_Object, Lisp_Object)); void x_set_icon_type P_ ((struct frame *, Lisp_Object, Lisp_Object)); void x_set_icon_name P_ ((struct frame *, Lisp_Object, Lisp_Object)); void x_set_font P_ ((struct frame *, Lisp_Object, Lisp_Object)); void x_set_border_width P_ ((struct frame *, Lisp_Object, Lisp_Object)); void x_set_internal_border_width P_ ((struct frame *, Lisp_Object, Lisp_Object)); void x_explicitly_set_name P_ ((struct frame *, Lisp_Object, Lisp_Object)); void x_set_autoraise P_ ((struct frame *, Lisp_Object, Lisp_Object)); void x_set_autolower P_ ((struct frame *, Lisp_Object, Lisp_Object)); void x_set_vertical_scroll_bars P_ ((struct frame *, Lisp_Object, Lisp_Object)); void x_set_visibility P_ ((struct frame *, Lisp_Object, Lisp_Object)); void x_set_menu_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object)); void x_set_scroll_bar_width P_ ((struct frame *, Lisp_Object, Lisp_Object)); void x_set_title P_ ((struct frame *, Lisp_Object, Lisp_Object)); void x_set_unsplittable P_ ((struct frame *, Lisp_Object, Lisp_Object)); void x_set_tool_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object)); void x_set_scroll_bar_foreground P_ ((struct frame *, Lisp_Object, Lisp_Object)); void x_set_scroll_bar_background P_ ((struct frame *, Lisp_Object, Lisp_Object)); static Lisp_Object x_default_scroll_bar_color_parameter P_ ((struct frame *, Lisp_Object, Lisp_Object, char *, char *, int)); static void x_set_screen_gamma P_ ((struct frame *, Lisp_Object, Lisp_Object)); static struct x_frame_parm_table x_frame_parms[] = { "auto-raise", x_set_autoraise, "auto-lower", x_set_autolower, "background-color", x_set_background_color, "border-color", x_set_border_color, "border-width", x_set_border_width, "cursor-color", x_set_cursor_color, "cursor-type", x_set_cursor_type, "font", x_set_font, "foreground-color", x_set_foreground_color, "icon-name", x_set_icon_name, #if 0 /* MAC_TODO: no icons for Mac */ "icon-type", x_set_icon_type, #endif "internal-border-width", x_set_internal_border_width, "menu-bar-lines", x_set_menu_bar_lines, "mouse-color", x_set_mouse_color, "name", x_explicitly_set_name, "scroll-bar-width", x_set_scroll_bar_width, "title", x_set_title, "unsplittable", x_set_unsplittable, "vertical-scroll-bars", x_set_vertical_scroll_bars, "visibility", x_set_visibility, "tool-bar-lines", x_set_tool_bar_lines, #if 0 /* MAC_TODO: cannot set color of scroll bar on the Mac? */ "scroll-bar-foreground", x_set_scroll_bar_foreground, "scroll-bar-background", x_set_scroll_bar_background, #endif "screen-gamma", x_set_screen_gamma, "line-spacing", x_set_line_spacing }; /* Attach the `x-frame-parameter' properties to the Lisp symbol names of parameters relevant to Mac. */ void init_x_parm_symbols () { int i; for (i = 0; i < sizeof (x_frame_parms) / sizeof (x_frame_parms[0]); i++) Fput (intern (x_frame_parms[i].name), Qx_frame_parameter, make_number (i)); } /* Change the parameters of frame F as specified by ALIST. If a parameter is not specially recognized, do nothing; otherwise call the `x_set_...' function for that parameter. */ void x_set_frame_parameters (f, alist) FRAME_PTR f; Lisp_Object alist; { Lisp_Object tail; /* If both of these parameters are present, it's more efficient to set them both at once. So we wait until we've looked at the entire list before we set them. */ int width, height; /* Same here. */ Lisp_Object left, top; /* Same with these. */ Lisp_Object icon_left, icon_top; /* Record in these vectors all the parms specified. */ Lisp_Object *parms; Lisp_Object *values; int i, p; int left_no_change = 0, top_no_change = 0; int icon_left_no_change = 0, icon_top_no_change = 0; struct gcpro gcpro1, gcpro2; i = 0; for (tail = alist; CONSP (tail); tail = Fcdr (tail)) i++; parms = (Lisp_Object *) alloca (i * sizeof (Lisp_Object)); values = (Lisp_Object *) alloca (i * sizeof (Lisp_Object)); /* Extract parm names and values into those vectors. */ i = 0; for (tail = alist; CONSP (tail); tail = Fcdr (tail)) { Lisp_Object elt; elt = Fcar (tail); parms[i] = Fcar (elt); values[i] = Fcdr (elt); i++; } /* TAIL and ALIST are not used again below here. */ alist = tail = Qnil; GCPRO2 (*parms, *values); gcpro1.nvars = i; gcpro2.nvars = i; /* There is no need to gcpro LEFT, TOP, ICON_LEFT, or ICON_TOP, because their values appear in VALUES and strings are not valid. */ top = left = Qunbound; icon_left = icon_top = Qunbound; /* Provide default values for HEIGHT and WIDTH. */ if (FRAME_NEW_WIDTH (f)) width = FRAME_NEW_WIDTH (f); else width = FRAME_WIDTH (f); if (FRAME_NEW_HEIGHT (f)) height = FRAME_NEW_HEIGHT (f); else height = FRAME_HEIGHT (f); /* Process foreground_color and background_color before anything else. They are independent of other properties, but other properties (e.g., cursor_color) are dependent upon them. */ for (p = 0; p < i; p++) { Lisp_Object prop, val; prop = parms[p]; val = values[p]; if (EQ (prop, Qforeground_color) || EQ (prop, Qbackground_color)) { register Lisp_Object param_index, old_value; param_index = Fget (prop, Qx_frame_parameter); old_value = get_frame_param (f, prop); store_frame_param (f, prop, val); if (NATNUMP (param_index) && (XFASTINT (param_index) < sizeof (x_frame_parms)/sizeof (x_frame_parms[0]))) (*x_frame_parms[XINT (param_index)].setter)(f, val, old_value); } } /* Now process them in reverse of specified order. */ for (i--; i >= 0; i--) { Lisp_Object prop, val; prop = parms[i]; val = values[i]; if (EQ (prop, Qwidth) && NUMBERP (val)) width = XFASTINT (val); else if (EQ (prop, Qheight) && NUMBERP (val)) height = XFASTINT (val); else if (EQ (prop, Qtop)) top = val; else if (EQ (prop, Qleft)) left = val; else if (EQ (prop, Qicon_top)) icon_top = val; else if (EQ (prop, Qicon_left)) icon_left = val; else if (EQ (prop, Qforeground_color) || EQ (prop, Qbackground_color)) /* Processed above. */ continue; else { register Lisp_Object param_index, old_value; param_index = Fget (prop, Qx_frame_parameter); old_value = get_frame_param (f, prop); store_frame_param (f, prop, val); if (NATNUMP (param_index) && (XFASTINT (param_index) < sizeof (x_frame_parms)/sizeof (x_frame_parms[0]))) (*x_frame_parms[XINT (param_index)].setter)(f, val, old_value); } } /* Don't die if just one of these was set. */ if (EQ (left, Qunbound)) { left_no_change = 1; if (f->output_data.mac->left_pos < 0) left = Fcons (Qplus, Fcons (make_number (f->output_data.mac->left_pos), Qnil)); else XSETINT (left, f->output_data.mac->left_pos); } if (EQ (top, Qunbound)) { top_no_change = 1; if (f->output_data.mac->top_pos < 0) top = Fcons (Qplus, Fcons (make_number (f->output_data.mac->top_pos), Qnil)); else XSETINT (top, f->output_data.mac->top_pos); } /* If one of the icon positions was not set, preserve or default it. */ if (EQ (icon_left, Qunbound) || ! INTEGERP (icon_left)) { icon_left_no_change = 1; icon_left = Fcdr (Fassq (Qicon_left, f->param_alist)); if (NILP (icon_left)) XSETINT (icon_left, 0); } if (EQ (icon_top, Qunbound) || ! INTEGERP (icon_top)) { icon_top_no_change = 1; icon_top = Fcdr (Fassq (Qicon_top, f->param_alist)); if (NILP (icon_top)) XSETINT (icon_top, 0); } /* Don't set these parameters unless they've been explicitly specified. The window might be mapped or resized while we're in this function, and we don't want to override that unless the lisp code has asked for it. Don't set these parameters unless they actually differ from the window's current parameters; the window may not actually exist yet. */ { Lisp_Object frame; check_frame_size (f, &height, &width); XSETFRAME (frame, f); if (width != FRAME_WIDTH (f) || height != FRAME_HEIGHT (f) || FRAME_NEW_HEIGHT (f) || FRAME_NEW_WIDTH (f)) Fset_frame_size (frame, make_number (width), make_number (height)); if ((!NILP (left) || !NILP (top)) && ! (left_no_change && top_no_change) && ! (NUMBERP (left) && XINT (left) == f->output_data.mac->left_pos && NUMBERP (top) && XINT (top) == f->output_data.mac->top_pos)) { int leftpos = 0; int toppos = 0; /* Record the signs. */ f->output_data.mac->size_hint_flags &= ~ (XNegative | YNegative); if (EQ (left, Qminus)) f->output_data.mac->size_hint_flags |= XNegative; else if (INTEGERP (left)) { leftpos = XINT (left); if (leftpos < 0) f->output_data.mac->size_hint_flags |= XNegative; } else if (CONSP (left) && EQ (XCAR (left), Qminus) && CONSP (XCDR (left)) && INTEGERP (XCAR (XCDR (left)))) { leftpos = - XINT (XCAR (XCDR (left))); f->output_data.mac->size_hint_flags |= XNegative; } else if (CONSP (left) && EQ (XCAR (left), Qplus) && CONSP (XCDR (left)) && INTEGERP (XCAR (XCDR (left)))) { leftpos = XINT (XCAR (XCDR (left))); } if (EQ (top, Qminus)) f->output_data.mac->size_hint_flags |= YNegative; else if (INTEGERP (top)) { toppos = XINT (top); if (toppos < 0) f->output_data.mac->size_hint_flags |= YNegative; } else if (CONSP (top) && EQ (XCAR (top), Qminus) && CONSP (XCDR (top)) && INTEGERP (XCAR (XCDR (top)))) { toppos = - XINT (XCAR (XCDR (top))); f->output_data.mac->size_hint_flags |= YNegative; } else if (CONSP (top) && EQ (XCAR (top), Qplus) && CONSP (XCDR (top)) && INTEGERP (XCAR (XCDR (top)))) { toppos = XINT (XCAR (XCDR (top))); } /* Store the numeric value of the position. */ f->output_data.mac->top_pos = toppos; f->output_data.mac->left_pos = leftpos; f->output_data.mac->win_gravity = NorthWestGravity; /* Actually set that position, and convert to absolute. */ x_set_offset (f, leftpos, toppos, -1); } if ((!NILP (icon_left) || !NILP (icon_top)) && ! (icon_left_no_change && icon_top_no_change)) x_wm_set_icon_position (f, XINT (icon_left), XINT (icon_top)); } UNGCPRO; } /* Store the screen positions of frame F into XPTR and YPTR. These are the positions of the containing window manager window, not Emacs's own window. */ void x_real_positions (f, xptr, yptr) FRAME_PTR f; int *xptr, *yptr; { Point pt; GrafPtr oldport; SetPt (&pt, f->output_data.mac->mWP->portRect.left, f->output_data.mac->mWP->portRect.top); GetPort (&oldport); LocalToGlobal (&pt); SetPort (oldport); *xptr = pt.h; *yptr = pt.v; } /* Insert a description of internally-recorded parameters of frame X into the parameter alist *ALISTPTR that is to be given to the user. Only parameters that are specific to Mac and whose values are not correctly recorded in the frame's param_alist need to be considered here. */ void x_report_frame_params (f, alistptr) struct frame *f; Lisp_Object *alistptr; { char buf[16]; Lisp_Object tem; /* Represent negative positions (off the top or left screen edge) in a way that Fmodify_frame_parameters will understand correctly. */ XSETINT (tem, f->output_data.mac->left_pos); if (f->output_data.mac->left_pos >= 0) store_in_alist (alistptr, Qleft, tem); else store_in_alist (alistptr, Qleft, Fcons (Qplus, Fcons (tem, Qnil))); XSETINT (tem, f->output_data.mac->top_pos); if (f->output_data.mac->top_pos >= 0) store_in_alist (alistptr, Qtop, tem); else store_in_alist (alistptr, Qtop, Fcons (Qplus, Fcons (tem, Qnil))); store_in_alist (alistptr, Qborder_width, make_number (f->output_data.mac->border_width)); store_in_alist (alistptr, Qinternal_border_width, make_number (f->output_data.mac->internal_border_width)); sprintf (buf, "%ld", (long) FRAME_MAC_WINDOW (f)); store_in_alist (alistptr, Qwindow_id, build_string (buf)); store_in_alist (alistptr, Qicon_name, f->icon_name); FRAME_SAMPLE_VISIBILITY (f); store_in_alist (alistptr, Qvisibility, (FRAME_VISIBLE_P (f) ? Qt : FRAME_ICONIFIED_P (f) ? Qicon : Qnil)); store_in_alist (alistptr, Qdisplay, XCAR (FRAME_MAC_DISPLAY_INFO (f)->name_list_element)); } /* The default colors for the Mac color map */ typedef struct colormap_t { unsigned long color; char *name; } colormap_t; colormap_t mac_color_map[] = { { RGB_TO_ULONG(255, 250, 250), "snow" }, { RGB_TO_ULONG(248, 248, 255), "ghost white" }, { RGB_TO_ULONG(248, 248, 255), "GhostWhite" }, { RGB_TO_ULONG(245, 245, 245), "white smoke" }, { RGB_TO_ULONG(245, 245, 245), "WhiteSmoke" }, { RGB_TO_ULONG(220, 220, 220), "gainsboro" }, { RGB_TO_ULONG(255, 250, 240), "floral white" }, { RGB_TO_ULONG(255, 250, 240), "FloralWhite" }, { RGB_TO_ULONG(253, 245, 230), "old lace" }, { RGB_TO_ULONG(253, 245, 230), "OldLace" }, { RGB_TO_ULONG(250, 240, 230), "linen" }, { RGB_TO_ULONG(250, 235, 215), "antique white" }, { RGB_TO_ULONG(250, 235, 215), "AntiqueWhite" }, { RGB_TO_ULONG(255, 239, 213), "papaya whip" }, { RGB_TO_ULONG(255, 239, 213), "PapayaWhip" }, { RGB_TO_ULONG(255, 235, 205), "blanched almond" }, { RGB_TO_ULONG(255, 235, 205), "BlanchedAlmond" }, { RGB_TO_ULONG(255, 228, 196), "bisque" }, { RGB_TO_ULONG(255, 218, 185), "peach puff" }, { RGB_TO_ULONG(255, 218, 185), "PeachPuff" }, { RGB_TO_ULONG(255, 222, 173), "navajo white" }, { RGB_TO_ULONG(255, 222, 173), "NavajoWhite" }, { RGB_TO_ULONG(255, 228, 181), "moccasin" }, { RGB_TO_ULONG(255, 248, 220), "cornsilk" }, { RGB_TO_ULONG(255, 255, 240), "ivory" }, { RGB_TO_ULONG(255, 250, 205), "lemon chiffon" }, { RGB_TO_ULONG(255, 250, 205), "LemonChiffon" }, { RGB_TO_ULONG(255, 245, 238), "seashell" }, { RGB_TO_ULONG(240, 255, 240), "honeydew" }, { RGB_TO_ULONG(245, 255, 250), "mint cream" }, { RGB_TO_ULONG(245, 255, 250), "MintCream" }, { RGB_TO_ULONG(240, 255, 255), "azure" }, { RGB_TO_ULONG(240, 248, 255), "alice blue" }, { RGB_TO_ULONG(240, 248, 255), "AliceBlue" }, { RGB_TO_ULONG(230, 230, 250), "lavender" }, { RGB_TO_ULONG(255, 240, 245), "lavender blush" }, { RGB_TO_ULONG(255, 240, 245), "LavenderBlush" }, { RGB_TO_ULONG(255, 228, 225), "misty rose" }, { RGB_TO_ULONG(255, 228, 225), "MistyRose" }, { RGB_TO_ULONG(255, 255, 255), "white" }, { RGB_TO_ULONG(0 , 0 , 0 ), "black" }, { RGB_TO_ULONG(47 , 79 , 79 ), "dark slate gray" }, { RGB_TO_ULONG(47 , 79 , 79 ), "DarkSlateGray" }, { RGB_TO_ULONG(47 , 79 , 79 ), "dark slate grey" }, { RGB_TO_ULONG(47 , 79 , 79 ), "DarkSlateGrey" }, { RGB_TO_ULONG(105, 105, 105), "dim gray" }, { RGB_TO_ULONG(105, 105, 105), "DimGray" }, { RGB_TO_ULONG(105, 105, 105), "dim grey" }, { RGB_TO_ULONG(105, 105, 105), "DimGrey" }, { RGB_TO_ULONG(112, 128, 144), "slate gray" }, { RGB_TO_ULONG(112, 128, 144), "SlateGray" }, { RGB_TO_ULONG(112, 128, 144), "slate grey" }, { RGB_TO_ULONG(112, 128, 144), "SlateGrey" }, { RGB_TO_ULONG(119, 136, 153), "light slate gray" }, { RGB_TO_ULONG(119, 136, 153), "LightSlateGray" }, { RGB_TO_ULONG(119, 136, 153), "light slate grey" }, { RGB_TO_ULONG(119, 136, 153), "LightSlateGrey" }, { RGB_TO_ULONG(190, 190, 190), "gray" }, { RGB_TO_ULONG(190, 190, 190), "grey" }, { RGB_TO_ULONG(211, 211, 211), "light grey" }, { RGB_TO_ULONG(211, 211, 211), "LightGrey" }, { RGB_TO_ULONG(211, 211, 211), "light gray" }, { RGB_TO_ULONG(211, 211, 211), "LightGray" }, { RGB_TO_ULONG(25 , 25 , 112), "midnight blue" }, { RGB_TO_ULONG(25 , 25 , 112), "MidnightBlue" }, { RGB_TO_ULONG(0 , 0 , 128), "navy" }, { RGB_TO_ULONG(0 , 0 , 128), "navy blue" }, { RGB_TO_ULONG(0 , 0 , 128), "NavyBlue" }, { RGB_TO_ULONG(100, 149, 237), "cornflower blue" }, { RGB_TO_ULONG(100, 149, 237), "CornflowerBlue" }, { RGB_TO_ULONG(72 , 61 , 139), "dark slate blue" }, { RGB_TO_ULONG(72 , 61 , 139), "DarkSlateBlue" }, { RGB_TO_ULONG(106, 90 , 205), "slate blue" }, { RGB_TO_ULONG(106, 90 , 205), "SlateBlue" }, { RGB_TO_ULONG(123, 104, 238), "medium slate blue" }, { RGB_TO_ULONG(123, 104, 238), "MediumSlateBlue" }, { RGB_TO_ULONG(132, 112, 255), "light slate blue" }, { RGB_TO_ULONG(132, 112, 255), "LightSlateBlue" }, { RGB_TO_ULONG(0 , 0 , 205), "medium blue" }, { RGB_TO_ULONG(0 , 0 , 205), "MediumBlue" }, { RGB_TO_ULONG(65 , 105, 225), "royal blue" }, { RGB_TO_ULONG(65 , 105, 225), "RoyalBlue" }, { RGB_TO_ULONG(0 , 0 , 255), "blue" }, { RGB_TO_ULONG(30 , 144, 255), "dodger blue" }, { RGB_TO_ULONG(30 , 144, 255), "DodgerBlue" }, { RGB_TO_ULONG(0 , 191, 255), "deep sky blue" }, { RGB_TO_ULONG(0 , 191, 255), "DeepSkyBlue" }, { RGB_TO_ULONG(135, 206, 235), "sky blue" }, { RGB_TO_ULONG(135, 206, 235), "SkyBlue" }, { RGB_TO_ULONG(135, 206, 250), "light sky blue" }, { RGB_TO_ULONG(135, 206, 250), "LightSkyBlue" }, { RGB_TO_ULONG(70 , 130, 180), "steel blue" }, { RGB_TO_ULONG(70 , 130, 180), "SteelBlue" }, { RGB_TO_ULONG(176, 196, 222), "light steel blue" }, { RGB_TO_ULONG(176, 196, 222), "LightSteelBlue" }, { RGB_TO_ULONG(173, 216, 230), "light blue" }, { RGB_TO_ULONG(173, 216, 230), "LightBlue" }, { RGB_TO_ULONG(176, 224, 230), "powder blue" }, { RGB_TO_ULONG(176, 224, 230), "PowderBlue" }, { RGB_TO_ULONG(175, 238, 238), "pale turquoise" }, { RGB_TO_ULONG(175, 238, 238), "PaleTurquoise" }, { RGB_TO_ULONG(0 , 206, 209), "dark turquoise" }, { RGB_TO_ULONG(0 , 206, 209), "DarkTurquoise" }, { RGB_TO_ULONG(72 , 209, 204), "medium turquoise" }, { RGB_TO_ULONG(72 , 209, 204), "MediumTurquoise" }, { RGB_TO_ULONG(64 , 224, 208), "turquoise" }, { RGB_TO_ULONG(0 , 255, 255), "cyan" }, { RGB_TO_ULONG(224, 255, 255), "light cyan" }, { RGB_TO_ULONG(224, 255, 255), "LightCyan" }, { RGB_TO_ULONG(95 , 158, 160), "cadet blue" }, { RGB_TO_ULONG(95 , 158, 160), "CadetBlue" }, { RGB_TO_ULONG(102, 205, 170), "medium aquamarine" }, { RGB_TO_ULONG(102, 205, 170), "MediumAquamarine" }, { RGB_TO_ULONG(127, 255, 212), "aquamarine" }, { RGB_TO_ULONG(0 , 100, 0 ), "dark green" }, { RGB_TO_ULONG(0 , 100, 0 ), "DarkGreen" }, { RGB_TO_ULONG(85 , 107, 47 ), "dark olive green" }, { RGB_TO_ULONG(85 , 107, 47 ), "DarkOliveGreen" }, { RGB_TO_ULONG(143, 188, 143), "dark sea green" }, { RGB_TO_ULONG(143, 188, 143), "DarkSeaGreen" }, { RGB_TO_ULONG(46 , 139, 87 ), "sea green" }, { RGB_TO_ULONG(46 , 139, 87 ), "SeaGreen" }, { RGB_TO_ULONG(60 , 179, 113), "medium sea green" }, { RGB_TO_ULONG(60 , 179, 113), "MediumSeaGreen" }, { RGB_TO_ULONG(32 , 178, 170), "light sea green" }, { RGB_TO_ULONG(32 , 178, 170), "LightSeaGreen" }, { RGB_TO_ULONG(152, 251, 152), "pale green" }, { RGB_TO_ULONG(152, 251, 152), "PaleGreen" }, { RGB_TO_ULONG(0 , 255, 127), "spring green" }, { RGB_TO_ULONG(0 , 255, 127), "SpringGreen" }, { RGB_TO_ULONG(124, 252, 0 ), "lawn green" }, { RGB_TO_ULONG(124, 252, 0 ), "LawnGreen" }, { RGB_TO_ULONG(0 , 255, 0 ), "green" }, { RGB_TO_ULONG(127, 255, 0 ), "chartreuse" }, { RGB_TO_ULONG(0 , 250, 154), "medium spring green" }, { RGB_TO_ULONG(0 , 250, 154), "MediumSpringGreen" }, { RGB_TO_ULONG(173, 255, 47 ), "green yellow" }, { RGB_TO_ULONG(173, 255, 47 ), "GreenYellow" }, { RGB_TO_ULONG(50 , 205, 50 ), "lime green" }, { RGB_TO_ULONG(50 , 205, 50 ), "LimeGreen" }, { RGB_TO_ULONG(154, 205, 50 ), "yellow green" }, { RGB_TO_ULONG(154, 205, 50 ), "YellowGreen" }, { RGB_TO_ULONG(34 , 139, 34 ), "forest green" }, { RGB_TO_ULONG(34 , 139, 34 ), "ForestGreen" }, { RGB_TO_ULONG(107, 142, 35 ), "olive drab" }, { RGB_TO_ULONG(107, 142, 35 ), "OliveDrab" }, { RGB_TO_ULONG(189, 183, 107), "dark khaki" }, { RGB_TO_ULONG(189, 183, 107), "DarkKhaki" }, { RGB_TO_ULONG(240, 230, 140), "khaki" }, { RGB_TO_ULONG(238, 232, 170), "pale goldenrod" }, { RGB_TO_ULONG(238, 232, 170), "PaleGoldenrod" }, { RGB_TO_ULONG(250, 250, 210), "light goldenrod yellow" }, { RGB_TO_ULONG(250, 250, 210), "LightGoldenrodYellow" }, { RGB_TO_ULONG(255, 255, 224), "light yellow" }, { RGB_TO_ULONG(255, 255, 224), "LightYellow" }, { RGB_TO_ULONG(255, 255, 0 ), "yellow" }, { RGB_TO_ULONG(255, 215, 0 ), "gold" }, { RGB_TO_ULONG(238, 221, 130), "light goldenrod" }, { RGB_TO_ULONG(238, 221, 130), "LightGoldenrod" }, { RGB_TO_ULONG(218, 165, 32 ), "goldenrod" }, { RGB_TO_ULONG(184, 134, 11 ), "dark goldenrod" }, { RGB_TO_ULONG(184, 134, 11 ), "DarkGoldenrod" }, { RGB_TO_ULONG(188, 143, 143), "rosy brown" }, { RGB_TO_ULONG(188, 143, 143), "RosyBrown" }, { RGB_TO_ULONG(205, 92 , 92 ), "indian red" }, { RGB_TO_ULONG(205, 92 , 92 ), "IndianRed" }, { RGB_TO_ULONG(139, 69 , 19 ), "saddle brown" }, { RGB_TO_ULONG(139, 69 , 19 ), "SaddleBrown" }, { RGB_TO_ULONG(160, 82 , 45 ), "sienna" }, { RGB_TO_ULONG(205, 133, 63 ), "peru" }, { RGB_TO_ULONG(222, 184, 135), "burlywood" }, { RGB_TO_ULONG(245, 245, 220), "beige" }, { RGB_TO_ULONG(245, 222, 179), "wheat" }, { RGB_TO_ULONG(244, 164, 96 ), "sandy brown" }, { RGB_TO_ULONG(244, 164, 96 ), "SandyBrown" }, { RGB_TO_ULONG(210, 180, 140), "tan" }, { RGB_TO_ULONG(210, 105, 30 ), "chocolate" }, { RGB_TO_ULONG(178, 34 , 34 ), "firebrick" }, { RGB_TO_ULONG(165, 42 , 42 ), "brown" }, { RGB_TO_ULONG(233, 150, 122), "dark salmon" }, { RGB_TO_ULONG(233, 150, 122), "DarkSalmon" }, { RGB_TO_ULONG(250, 128, 114), "salmon" }, { RGB_TO_ULONG(255, 160, 122), "light salmon" }, { RGB_TO_ULONG(255, 160, 122), "LightSalmon" }, { RGB_TO_ULONG(255, 165, 0 ), "orange" }, { RGB_TO_ULONG(255, 140, 0 ), "dark orange" }, { RGB_TO_ULONG(255, 140, 0 ), "DarkOrange" }, { RGB_TO_ULONG(255, 127, 80 ), "coral" }, { RGB_TO_ULONG(240, 128, 128), "light coral" }, { RGB_TO_ULONG(240, 128, 128), "LightCoral" }, { RGB_TO_ULONG(255, 99 , 71 ), "tomato" }, { RGB_TO_ULONG(255, 69 , 0 ), "orange red" }, { RGB_TO_ULONG(255, 69 , 0 ), "OrangeRed" }, { RGB_TO_ULONG(255, 0 , 0 ), "red" }, { RGB_TO_ULONG(255, 105, 180), "hot pink" }, { RGB_TO_ULONG(255, 105, 180), "HotPink" }, { RGB_TO_ULONG(255, 20 , 147), "deep pink" }, { RGB_TO_ULONG(255, 20 , 147), "DeepPink" }, { RGB_TO_ULONG(255, 192, 203), "pink" }, { RGB_TO_ULONG(255, 182, 193), "light pink" }, { RGB_TO_ULONG(255, 182, 193), "LightPink" }, { RGB_TO_ULONG(219, 112, 147), "pale violet red" }, { RGB_TO_ULONG(219, 112, 147), "PaleVioletRed" }, { RGB_TO_ULONG(176, 48 , 96 ), "maroon" }, { RGB_TO_ULONG(199, 21 , 133), "medium violet red" }, { RGB_TO_ULONG(199, 21 , 133), "MediumVioletRed" }, { RGB_TO_ULONG(208, 32 , 144), "violet red" }, { RGB_TO_ULONG(208, 32 , 144), "VioletRed" }, { RGB_TO_ULONG(255, 0 , 255), "magenta" }, { RGB_TO_ULONG(238, 130, 238), "violet" }, { RGB_TO_ULONG(221, 160, 221), "plum" }, { RGB_TO_ULONG(218, 112, 214), "orchid" }, { RGB_TO_ULONG(186, 85 , 211), "medium orchid" }, { RGB_TO_ULONG(186, 85 , 211), "MediumOrchid" }, { RGB_TO_ULONG(153, 50 , 204), "dark orchid" }, { RGB_TO_ULONG(153, 50 , 204), "DarkOrchid" }, { RGB_TO_ULONG(148, 0 , 211), "dark violet" }, { RGB_TO_ULONG(148, 0 , 211), "DarkViolet" }, { RGB_TO_ULONG(138, 43 , 226), "blue violet" }, { RGB_TO_ULONG(138, 43 , 226), "BlueViolet" }, { RGB_TO_ULONG(160, 32 , 240), "purple" }, { RGB_TO_ULONG(147, 112, 219), "medium purple" }, { RGB_TO_ULONG(147, 112, 219), "MediumPurple" }, { RGB_TO_ULONG(216, 191, 216), "thistle" }, { RGB_TO_ULONG(255, 250, 250), "snow1" }, { RGB_TO_ULONG(238, 233, 233), "snow2" }, { RGB_TO_ULONG(205, 201, 201), "snow3" }, { RGB_TO_ULONG(139, 137, 137), "snow4" }, { RGB_TO_ULONG(255, 245, 238), "seashell1" }, { RGB_TO_ULONG(238, 229, 222), "seashell2" }, { RGB_TO_ULONG(205, 197, 191), "seashell3" }, { RGB_TO_ULONG(139, 134, 130), "seashell4" }, { RGB_TO_ULONG(255, 239, 219), "AntiqueWhite1" }, { RGB_TO_ULONG(238, 223, 204), "AntiqueWhite2" }, { RGB_TO_ULONG(205, 192, 176), "AntiqueWhite3" }, { RGB_TO_ULONG(139, 131, 120), "AntiqueWhite4" }, { RGB_TO_ULONG(255, 228, 196), "bisque1" }, { RGB_TO_ULONG(238, 213, 183), "bisque2" }, { RGB_TO_ULONG(205, 183, 158), "bisque3" }, { RGB_TO_ULONG(139, 125, 107), "bisque4" }, { RGB_TO_ULONG(255, 218, 185), "PeachPuff1" }, { RGB_TO_ULONG(238, 203, 173), "PeachPuff2" }, { RGB_TO_ULONG(205, 175, 149), "PeachPuff3" }, { RGB_TO_ULONG(139, 119, 101), "PeachPuff4" }, { RGB_TO_ULONG(255, 222, 173), "NavajoWhite1" }, { RGB_TO_ULONG(238, 207, 161), "NavajoWhite2" }, { RGB_TO_ULONG(205, 179, 139), "NavajoWhite3" }, { RGB_TO_ULONG(139, 121, 94), "NavajoWhite4" }, { RGB_TO_ULONG(255, 250, 205), "LemonChiffon1" }, { RGB_TO_ULONG(238, 233, 191), "LemonChiffon2" }, { RGB_TO_ULONG(205, 201, 165), "LemonChiffon3" }, { RGB_TO_ULONG(139, 137, 112), "LemonChiffon4" }, { RGB_TO_ULONG(255, 248, 220), "cornsilk1" }, { RGB_TO_ULONG(238, 232, 205), "cornsilk2" }, { RGB_TO_ULONG(205, 200, 177), "cornsilk3" }, { RGB_TO_ULONG(139, 136, 120), "cornsilk4" }, { RGB_TO_ULONG(255, 255, 240), "ivory1" }, { RGB_TO_ULONG(238, 238, 224), "ivory2" }, { RGB_TO_ULONG(205, 205, 193), "ivory3" }, { RGB_TO_ULONG(139, 139, 131), "ivory4" }, { RGB_TO_ULONG(240, 255, 240), "honeydew1" }, { RGB_TO_ULONG(224, 238, 224), "honeydew2" }, { RGB_TO_ULONG(193, 205, 193), "honeydew3" }, { RGB_TO_ULONG(131, 139, 131), "honeydew4" }, { RGB_TO_ULONG(255, 240, 245), "LavenderBlush1" }, { RGB_TO_ULONG(238, 224, 229), "LavenderBlush2" }, { RGB_TO_ULONG(205, 193, 197), "LavenderBlush3" }, { RGB_TO_ULONG(139, 131, 134), "LavenderBlush4" }, { RGB_TO_ULONG(255, 228, 225), "MistyRose1" }, { RGB_TO_ULONG(238, 213, 210), "MistyRose2" }, { RGB_TO_ULONG(205, 183, 181), "MistyRose3" }, { RGB_TO_ULONG(139, 125, 123), "MistyRose4" }, { RGB_TO_ULONG(240, 255, 255), "azure1" }, { RGB_TO_ULONG(224, 238, 238), "azure2" }, { RGB_TO_ULONG(193, 205, 205), "azure3" }, { RGB_TO_ULONG(131, 139, 139), "azure4" }, { RGB_TO_ULONG(131, 111, 255), "SlateBlue1" }, { RGB_TO_ULONG(122, 103, 238), "SlateBlue2" }, { RGB_TO_ULONG(105, 89 , 205), "SlateBlue3" }, { RGB_TO_ULONG(71 , 60 , 139), "SlateBlue4" }, { RGB_TO_ULONG(72 , 118, 255), "RoyalBlue1" }, { RGB_TO_ULONG(67 , 110, 238), "RoyalBlue2" }, { RGB_TO_ULONG(58 , 95 , 205), "RoyalBlue3" }, { RGB_TO_ULONG(39 , 64 , 139), "RoyalBlue4" }, { RGB_TO_ULONG(0 , 0 , 255), "blue1" }, { RGB_TO_ULONG(0 , 0 , 238), "blue2" }, { RGB_TO_ULONG(0 , 0 , 205), "blue3" }, { RGB_TO_ULONG(0 , 0 , 139), "blue4" }, { RGB_TO_ULONG(30 , 144, 255), "DodgerBlue1" }, { RGB_TO_ULONG(28 , 134, 238), "DodgerBlue2" }, { RGB_TO_ULONG(24 , 116, 205), "DodgerBlue3" }, { RGB_TO_ULONG(16 , 78 , 139), "DodgerBlue4" }, { RGB_TO_ULONG(99 , 184, 255), "SteelBlue1" }, { RGB_TO_ULONG(92 , 172, 238), "SteelBlue2" }, { RGB_TO_ULONG(79 , 148, 205), "SteelBlue3" }, { RGB_TO_ULONG(54 , 100, 139), "SteelBlue4" }, { RGB_TO_ULONG(0 , 191, 255), "DeepSkyBlue1" }, { RGB_TO_ULONG(0 , 178, 238), "DeepSkyBlue2" }, { RGB_TO_ULONG(0 , 154, 205), "DeepSkyBlue3" }, { RGB_TO_ULONG(0 , 104, 139), "DeepSkyBlue4" }, { RGB_TO_ULONG(135, 206, 255), "SkyBlue1" }, { RGB_TO_ULONG(126, 192, 238), "SkyBlue2" }, { RGB_TO_ULONG(108, 166, 205), "SkyBlue3" }, { RGB_TO_ULONG(74 , 112, 139), "SkyBlue4" }, { RGB_TO_ULONG(176, 226, 255), "LightSkyBlue1" }, { RGB_TO_ULONG(164, 211, 238), "LightSkyBlue2" }, { RGB_TO_ULONG(141, 182, 205), "LightSkyBlue3" }, { RGB_TO_ULONG(96 , 123, 139), "LightSkyBlue4" }, { RGB_TO_ULONG(198, 226, 255), "SlateGray1" }, { RGB_TO_ULONG(185, 211, 238), "SlateGray2" }, { RGB_TO_ULONG(159, 182, 205), "SlateGray3" }, { RGB_TO_ULONG(108, 123, 139), "SlateGray4" }, { RGB_TO_ULONG(202, 225, 255), "LightSteelBlue1" }, { RGB_TO_ULONG(188, 210, 238), "LightSteelBlue2" }, { RGB_TO_ULONG(162, 181, 205), "LightSteelBlue3" }, { RGB_TO_ULONG(110, 123, 139), "LightSteelBlue4" }, { RGB_TO_ULONG(191, 239, 255), "LightBlue1" }, { RGB_TO_ULONG(178, 223, 238), "LightBlue2" }, { RGB_TO_ULONG(154, 192, 205), "LightBlue3" }, { RGB_TO_ULONG(104, 131, 139), "LightBlue4" }, { RGB_TO_ULONG(224, 255, 255), "LightCyan1" }, { RGB_TO_ULONG(209, 238, 238), "LightCyan2" }, { RGB_TO_ULONG(180, 205, 205), "LightCyan3" }, { RGB_TO_ULONG(122, 139, 139), "LightCyan4" }, { RGB_TO_ULONG(187, 255, 255), "PaleTurquoise1" }, { RGB_TO_ULONG(174, 238, 238), "PaleTurquoise2" }, { RGB_TO_ULONG(150, 205, 205), "PaleTurquoise3" }, { RGB_TO_ULONG(102, 139, 139), "PaleTurquoise4" }, { RGB_TO_ULONG(152, 245, 255), "CadetBlue1" }, { RGB_TO_ULONG(142, 229, 238), "CadetBlue2" }, { RGB_TO_ULONG(122, 197, 205), "CadetBlue3" }, { RGB_TO_ULONG(83 , 134, 139), "CadetBlue4" }, { RGB_TO_ULONG(0 , 245, 255), "turquoise1" }, { RGB_TO_ULONG(0 , 229, 238), "turquoise2" }, { RGB_TO_ULONG(0 , 197, 205), "turquoise3" }, { RGB_TO_ULONG(0 , 134, 139), "turquoise4" }, { RGB_TO_ULONG(0 , 255, 255), "cyan1" }, { RGB_TO_ULONG(0 , 238, 238), "cyan2" }, { RGB_TO_ULONG(0 , 205, 205), "cyan3" }, { RGB_TO_ULONG(0 , 139, 139), "cyan4" }, { RGB_TO_ULONG(151, 255, 255), "DarkSlateGray1" }, { RGB_TO_ULONG(141, 238, 238), "DarkSlateGray2" }, { RGB_TO_ULONG(121, 205, 205), "DarkSlateGray3" }, { RGB_TO_ULONG(82 , 139, 139), "DarkSlateGray4" }, { RGB_TO_ULONG(127, 255, 212), "aquamarine1" }, { RGB_TO_ULONG(118, 238, 198), "aquamarine2" }, { RGB_TO_ULONG(102, 205, 170), "aquamarine3" }, { RGB_TO_ULONG(69 , 139, 116), "aquamarine4" }, { RGB_TO_ULONG(193, 255, 193), "DarkSeaGreen1" }, { RGB_TO_ULONG(180, 238, 180), "DarkSeaGreen2" }, { RGB_TO_ULONG(155, 205, 155), "DarkSeaGreen3" }, { RGB_TO_ULONG(105, 139, 105), "DarkSeaGreen4" }, { RGB_TO_ULONG(84 , 255, 159), "SeaGreen1" }, { RGB_TO_ULONG(78 , 238, 148), "SeaGreen2" }, { RGB_TO_ULONG(67 , 205, 128), "SeaGreen3" }, { RGB_TO_ULONG(46 , 139, 87 ), "SeaGreen4" }, { RGB_TO_ULONG(154, 255, 154), "PaleGreen1" }, { RGB_TO_ULONG(144, 238, 144), "PaleGreen2" }, { RGB_TO_ULONG(124, 205, 124), "PaleGreen3" }, { RGB_TO_ULONG(84 , 139, 84 ), "PaleGreen4" }, { RGB_TO_ULONG(0 , 255, 127), "SpringGreen1" }, { RGB_TO_ULONG(0 , 238, 118), "SpringGreen2" }, { RGB_TO_ULONG(0 , 205, 102), "SpringGreen3" }, { RGB_TO_ULONG(0 , 139, 69 ), "SpringGreen4" }, { RGB_TO_ULONG(0 , 255, 0 ), "green1" }, { RGB_TO_ULONG(0 , 238, 0 ), "green2" }, { RGB_TO_ULONG(0 , 205, 0 ), "green3" }, { RGB_TO_ULONG(0 , 139, 0 ), "green4" }, { RGB_TO_ULONG(127, 255, 0 ), "chartreuse1" }, { RGB_TO_ULONG(118, 238, 0 ), "chartreuse2" }, { RGB_TO_ULONG(102, 205, 0 ), "chartreuse3" }, { RGB_TO_ULONG(69 , 139, 0 ), "chartreuse4" }, { RGB_TO_ULONG(192, 255, 62 ), "OliveDrab1" }, { RGB_TO_ULONG(179, 238, 58 ), "OliveDrab2" }, { RGB_TO_ULONG(154, 205, 50 ), "OliveDrab3" }, { RGB_TO_ULONG(105, 139, 34 ), "OliveDrab4" }, { RGB_TO_ULONG(202, 255, 112), "DarkOliveGreen1" }, { RGB_TO_ULONG(188, 238, 104), "DarkOliveGreen2" }, { RGB_TO_ULONG(162, 205, 90 ), "DarkOliveGreen3" }, { RGB_TO_ULONG(110, 139, 61 ), "DarkOliveGreen4" }, { RGB_TO_ULONG(255, 246, 143), "khaki1" }, { RGB_TO_ULONG(238, 230, 133), "khaki2" }, { RGB_TO_ULONG(205, 198, 115), "khaki3" }, { RGB_TO_ULONG(139, 134, 78 ), "khaki4" }, { RGB_TO_ULONG(255, 236, 139), "LightGoldenrod1" }, { RGB_TO_ULONG(238, 220, 130), "LightGoldenrod2" }, { RGB_TO_ULONG(205, 190, 112), "LightGoldenrod3" }, { RGB_TO_ULONG(139, 129, 76 ), "LightGoldenrod4" }, { RGB_TO_ULONG(255, 255, 224), "LightYellow1" }, { RGB_TO_ULONG(238, 238, 209), "LightYellow2" }, { RGB_TO_ULONG(205, 205, 180), "LightYellow3" }, { RGB_TO_ULONG(139, 139, 122), "LightYellow4" }, { RGB_TO_ULONG(255, 255, 0 ), "yellow1" }, { RGB_TO_ULONG(238, 238, 0 ), "yellow2" }, { RGB_TO_ULONG(205, 205, 0 ), "yellow3" }, { RGB_TO_ULONG(139, 139, 0 ), "yellow4" }, { RGB_TO_ULONG(255, 215, 0 ), "gold1" }, { RGB_TO_ULONG(238, 201, 0 ), "gold2" }, { RGB_TO_ULONG(205, 173, 0 ), "gold3" }, { RGB_TO_ULONG(139, 117, 0 ), "gold4" }, { RGB_TO_ULONG(255, 193, 37 ), "goldenrod1" }, { RGB_TO_ULONG(238, 180, 34 ), "goldenrod2" }, { RGB_TO_ULONG(205, 155, 29 ), "goldenrod3" }, { RGB_TO_ULONG(139, 105, 20 ), "goldenrod4" }, { RGB_TO_ULONG(255, 185, 15 ), "DarkGoldenrod1" }, { RGB_TO_ULONG(238, 173, 14 ), "DarkGoldenrod2" }, { RGB_TO_ULONG(205, 149, 12 ), "DarkGoldenrod3" }, { RGB_TO_ULONG(139, 101, 8 ), "DarkGoldenrod4" }, { RGB_TO_ULONG(255, 193, 193), "RosyBrown1" }, { RGB_TO_ULONG(238, 180, 180), "RosyBrown2" }, { RGB_TO_ULONG(205, 155, 155), "RosyBrown3" }, { RGB_TO_ULONG(139, 105, 105), "RosyBrown4" }, { RGB_TO_ULONG(255, 106, 106), "IndianRed1" }, { RGB_TO_ULONG(238, 99 , 99 ), "IndianRed2" }, { RGB_TO_ULONG(205, 85 , 85 ), "IndianRed3" }, { RGB_TO_ULONG(139, 58 , 58 ), "IndianRed4" }, { RGB_TO_ULONG(255, 130, 71 ), "sienna1" }, { RGB_TO_ULONG(238, 121, 66 ), "sienna2" }, { RGB_TO_ULONG(205, 104, 57 ), "sienna3" }, { RGB_TO_ULONG(139, 71 , 38 ), "sienna4" }, { RGB_TO_ULONG(255, 211, 155), "burlywood1" }, { RGB_TO_ULONG(238, 197, 145), "burlywood2" }, { RGB_TO_ULONG(205, 170, 125), "burlywood3" }, { RGB_TO_ULONG(139, 115, 85 ), "burlywood4" }, { RGB_TO_ULONG(255, 231, 186), "wheat1" }, { RGB_TO_ULONG(238, 216, 174), "wheat2" }, { RGB_TO_ULONG(205, 186, 150), "wheat3" }, { RGB_TO_ULONG(139, 126, 102), "wheat4" }, { RGB_TO_ULONG(255, 165, 79 ), "tan1" }, { RGB_TO_ULONG(238, 154, 73 ), "tan2" }, { RGB_TO_ULONG(205, 133, 63 ), "tan3" }, { RGB_TO_ULONG(139, 90 , 43 ), "tan4" }, { RGB_TO_ULONG(255, 127, 36 ), "chocolate1" }, { RGB_TO_ULONG(238, 118, 33 ), "chocolate2" }, { RGB_TO_ULONG(205, 102, 29 ), "chocolate3" }, { RGB_TO_ULONG(139, 69 , 19 ), "chocolate4" }, { RGB_TO_ULONG(255, 48 , 48 ), "firebrick1" }, { RGB_TO_ULONG(238, 44 , 44 ), "firebrick2" }, { RGB_TO_ULONG(205, 38 , 38 ), "firebrick3" }, { RGB_TO_ULONG(139, 26 , 26 ), "firebrick4" }, { RGB_TO_ULONG(255, 64 , 64 ), "brown1" }, { RGB_TO_ULONG(238, 59 , 59 ), "brown2" }, { RGB_TO_ULONG(205, 51 , 51 ), "brown3" }, { RGB_TO_ULONG(139, 35 , 35 ), "brown4" }, { RGB_TO_ULONG(255, 140, 105), "salmon1" }, { RGB_TO_ULONG(238, 130, 98 ), "salmon2" }, { RGB_TO_ULONG(205, 112, 84 ), "salmon3" }, { RGB_TO_ULONG(139, 76 , 57 ), "salmon4" }, { RGB_TO_ULONG(255, 160, 122), "LightSalmon1" }, { RGB_TO_ULONG(238, 149, 114), "LightSalmon2" }, { RGB_TO_ULONG(205, 129, 98 ), "LightSalmon3" }, { RGB_TO_ULONG(139, 87 , 66 ), "LightSalmon4" }, { RGB_TO_ULONG(255, 165, 0 ), "orange1" }, { RGB_TO_ULONG(238, 154, 0 ), "orange2" }, { RGB_TO_ULONG(205, 133, 0 ), "orange3" }, { RGB_TO_ULONG(139, 90 , 0 ), "orange4" }, { RGB_TO_ULONG(255, 127, 0 ), "DarkOrange1" }, { RGB_TO_ULONG(238, 118, 0 ), "DarkOrange2" }, { RGB_TO_ULONG(205, 102, 0 ), "DarkOrange3" }, { RGB_TO_ULONG(139, 69 , 0 ), "DarkOrange4" }, { RGB_TO_ULONG(255, 114, 86 ), "coral1" }, { RGB_TO_ULONG(238, 106, 80 ), "coral2" }, { RGB_TO_ULONG(205, 91 , 69 ), "coral3" }, { RGB_TO_ULONG(139, 62 , 47 ), "coral4" }, { RGB_TO_ULONG(255, 99 , 71 ), "tomato1" }, { RGB_TO_ULONG(238, 92 , 66 ), "tomato2" }, { RGB_TO_ULONG(205, 79 , 57 ), "tomato3" }, { RGB_TO_ULONG(139, 54 , 38 ), "tomato4" }, { RGB_TO_ULONG(255, 69 , 0 ), "OrangeRed1" }, { RGB_TO_ULONG(238, 64 , 0 ), "OrangeRed2" }, { RGB_TO_ULONG(205, 55 , 0 ), "OrangeRed3" }, { RGB_TO_ULONG(139, 37 , 0 ), "OrangeRed4" }, { RGB_TO_ULONG(255, 0 , 0 ), "red1" }, { RGB_TO_ULONG(238, 0 , 0 ), "red2" }, { RGB_TO_ULONG(205, 0 , 0 ), "red3" }, { RGB_TO_ULONG(139, 0 , 0 ), "red4" }, { RGB_TO_ULONG(255, 20 , 147), "DeepPink1" }, { RGB_TO_ULONG(238, 18 , 137), "DeepPink2" }, { RGB_TO_ULONG(205, 16 , 118), "DeepPink3" }, { RGB_TO_ULONG(139, 10 , 80 ), "DeepPink4" }, { RGB_TO_ULONG(255, 110, 180), "HotPink1" }, { RGB_TO_ULONG(238, 106, 167), "HotPink2" }, { RGB_TO_ULONG(205, 96 , 144), "HotPink3" }, { RGB_TO_ULONG(139, 58 , 98 ), "HotPink4" }, { RGB_TO_ULONG(255, 181, 197), "pink1" }, { RGB_TO_ULONG(238, 169, 184), "pink2" }, { RGB_TO_ULONG(205, 145, 158), "pink3" }, { RGB_TO_ULONG(139, 99 , 108), "pink4" }, { RGB_TO_ULONG(255, 174, 185), "LightPink1" }, { RGB_TO_ULONG(238, 162, 173), "LightPink2" }, { RGB_TO_ULONG(205, 140, 149), "LightPink3" }, { RGB_TO_ULONG(139, 95 , 101), "LightPink4" }, { RGB_TO_ULONG(255, 130, 171), "PaleVioletRed1" }, { RGB_TO_ULONG(238, 121, 159), "PaleVioletRed2" }, { RGB_TO_ULONG(205, 104, 137), "PaleVioletRed3" }, { RGB_TO_ULONG(139, 71 , 93 ), "PaleVioletRed4" }, { RGB_TO_ULONG(255, 52 , 179), "maroon1" }, { RGB_TO_ULONG(238, 48 , 167), "maroon2" }, { RGB_TO_ULONG(205, 41 , 144), "maroon3" }, { RGB_TO_ULONG(139, 28 , 98 ), "maroon4" }, { RGB_TO_ULONG(255, 62 , 150), "VioletRed1" }, { RGB_TO_ULONG(238, 58 , 140), "VioletRed2" }, { RGB_TO_ULONG(205, 50 , 120), "VioletRed3" }, { RGB_TO_ULONG(139, 34 , 82 ), "VioletRed4" }, { RGB_TO_ULONG(255, 0 , 255), "magenta1" }, { RGB_TO_ULONG(238, 0 , 238), "magenta2" }, { RGB_TO_ULONG(205, 0 , 205), "magenta3" }, { RGB_TO_ULONG(139, 0 , 139), "magenta4" }, { RGB_TO_ULONG(255, 131, 250), "orchid1" }, { RGB_TO_ULONG(238, 122, 233), "orchid2" }, { RGB_TO_ULONG(205, 105, 201), "orchid3" }, { RGB_TO_ULONG(139, 71 , 137), "orchid4" }, { RGB_TO_ULONG(255, 187, 255), "plum1" }, { RGB_TO_ULONG(238, 174, 238), "plum2" }, { RGB_TO_ULONG(205, 150, 205), "plum3" }, { RGB_TO_ULONG(139, 102, 139), "plum4" }, { RGB_TO_ULONG(224, 102, 255), "MediumOrchid1" }, { RGB_TO_ULONG(209, 95 , 238), "MediumOrchid2" }, { RGB_TO_ULONG(180, 82 , 205), "MediumOrchid3" }, { RGB_TO_ULONG(122, 55 , 139), "MediumOrchid4" }, { RGB_TO_ULONG(191, 62 , 255), "DarkOrchid1" }, { RGB_TO_ULONG(178, 58 , 238), "DarkOrchid2" }, { RGB_TO_ULONG(154, 50 , 205), "DarkOrchid3" }, { RGB_TO_ULONG(104, 34 , 139), "DarkOrchid4" }, { RGB_TO_ULONG(155, 48 , 255), "purple1" }, { RGB_TO_ULONG(145, 44 , 238), "purple2" }, { RGB_TO_ULONG(125, 38 , 205), "purple3" }, { RGB_TO_ULONG(85 , 26 , 139), "purple4" }, { RGB_TO_ULONG(171, 130, 255), "MediumPurple1" }, { RGB_TO_ULONG(159, 121, 238), "MediumPurple2" }, { RGB_TO_ULONG(137, 104, 205), "MediumPurple3" }, { RGB_TO_ULONG(93 , 71 , 139), "MediumPurple4" }, { RGB_TO_ULONG(255, 225, 255), "thistle1" }, { RGB_TO_ULONG(238, 210, 238), "thistle2" }, { RGB_TO_ULONG(205, 181, 205), "thistle3" }, { RGB_TO_ULONG(139, 123, 139), "thistle4" }, { RGB_TO_ULONG(0 , 0 , 0 ), "gray0" }, { RGB_TO_ULONG(0 , 0 , 0 ), "grey0" }, { RGB_TO_ULONG(3 , 3 , 3 ), "gray1" }, { RGB_TO_ULONG(3 , 3 , 3 ), "grey1" }, { RGB_TO_ULONG(5 , 5 , 5 ), "gray2" }, { RGB_TO_ULONG(5 , 5 , 5 ), "grey2" }, { RGB_TO_ULONG(8 , 8 , 8 ), "gray3" }, { RGB_TO_ULONG(8 , 8 , 8 ), "grey3" }, { RGB_TO_ULONG(10 , 10 , 10 ), "gray4" }, { RGB_TO_ULONG(10 , 10 , 10 ), "grey4" }, { RGB_TO_ULONG(13 , 13 , 13 ), "gray5" }, { RGB_TO_ULONG(13 , 13 , 13 ), "grey5" }, { RGB_TO_ULONG(15 , 15 , 15 ), "gray6" }, { RGB_TO_ULONG(15 , 15 , 15 ), "grey6" }, { RGB_TO_ULONG(18 , 18 , 18 ), "gray7" }, { RGB_TO_ULONG(18 , 18 , 18 ), "grey7" }, { RGB_TO_ULONG(20 , 20 , 20 ), "gray8" }, { RGB_TO_ULONG(20 , 20 , 20 ), "grey8" }, { RGB_TO_ULONG(23 , 23 , 23 ), "gray9" }, { RGB_TO_ULONG(23 , 23 , 23 ), "grey9" }, { RGB_TO_ULONG(26 , 26 , 26 ), "gray10" }, { RGB_TO_ULONG(26 , 26 , 26 ), "grey10" }, { RGB_TO_ULONG(28 , 28 , 28 ), "gray11" }, { RGB_TO_ULONG(28 , 28 , 28 ), "grey11" }, { RGB_TO_ULONG(31 , 31 , 31 ), "gray12" }, { RGB_TO_ULONG(31 , 31 , 31 ), "grey12" }, { RGB_TO_ULONG(33 , 33 , 33 ), "gray13" }, { RGB_TO_ULONG(33 , 33 , 33 ), "grey13" }, { RGB_TO_ULONG(36 , 36 , 36 ), "gray14" }, { RGB_TO_ULONG(36 , 36 , 36 ), "grey14" }, { RGB_TO_ULONG(38 , 38 , 38 ), "gray15" }, { RGB_TO_ULONG(38 , 38 , 38 ), "grey15" }, { RGB_TO_ULONG(41 , 41 , 41 ), "gray16" }, { RGB_TO_ULONG(41 , 41 , 41 ), "grey16" }, { RGB_TO_ULONG(43 , 43 , 43 ), "gray17" }, { RGB_TO_ULONG(43 , 43 , 43 ), "grey17" }, { RGB_TO_ULONG(46 , 46 , 46 ), "gray18" }, { RGB_TO_ULONG(46 , 46 , 46 ), "grey18" }, { RGB_TO_ULONG(48 , 48 , 48 ), "gray19" }, { RGB_TO_ULONG(48 , 48 , 48 ), "grey19" }, { RGB_TO_ULONG(51 , 51 , 51 ), "gray20" }, { RGB_TO_ULONG(51 , 51 , 51 ), "grey20" }, { RGB_TO_ULONG(54 , 54 , 54 ), "gray21" }, { RGB_TO_ULONG(54 , 54 , 54 ), "grey21" }, { RGB_TO_ULONG(56 , 56 , 56 ), "gray22" }, { RGB_TO_ULONG(56 , 56 , 56 ), "grey22" }, { RGB_TO_ULONG(59 , 59 , 59 ), "gray23" }, { RGB_TO_ULONG(59 , 59 , 59 ), "grey23" }, { RGB_TO_ULONG(61 , 61 , 61 ), "gray24" }, { RGB_TO_ULONG(61 , 61 , 61 ), "grey24" }, { RGB_TO_ULONG(64 , 64 , 64 ), "gray25" }, { RGB_TO_ULONG(64 , 64 , 64 ), "grey25" }, { RGB_TO_ULONG(66 , 66 , 66 ), "gray26" }, { RGB_TO_ULONG(66 , 66 , 66 ), "grey26" }, { RGB_TO_ULONG(69 , 69 , 69 ), "gray27" }, { RGB_TO_ULONG(69 , 69 , 69 ), "grey27" }, { RGB_TO_ULONG(71 , 71 , 71 ), "gray28" }, { RGB_TO_ULONG(71 , 71 , 71 ), "grey28" }, { RGB_TO_ULONG(74 , 74 , 74 ), "gray29" }, { RGB_TO_ULONG(74 , 74 , 74 ), "grey29" }, { RGB_TO_ULONG(77 , 77 , 77 ), "gray30" }, { RGB_TO_ULONG(77 , 77 , 77 ), "grey30" }, { RGB_TO_ULONG(79 , 79 , 79 ), "gray31" }, { RGB_TO_ULONG(79 , 79 , 79 ), "grey31" }, { RGB_TO_ULONG(82 , 82 , 82 ), "gray32" }, { RGB_TO_ULONG(82 , 82 , 82 ), "grey32" }, { RGB_TO_ULONG(84 , 84 , 84 ), "gray33" }, { RGB_TO_ULONG(84 , 84 , 84 ), "grey33" }, { RGB_TO_ULONG(87 , 87 , 87 ), "gray34" }, { RGB_TO_ULONG(87 , 87 , 87 ), "grey34" }, { RGB_TO_ULONG(89 , 89 , 89 ), "gray35" }, { RGB_TO_ULONG(89 , 89 , 89 ), "grey35" }, { RGB_TO_ULONG(92 , 92 , 92 ), "gray36" }, { RGB_TO_ULONG(92 , 92 , 92 ), "grey36" }, { RGB_TO_ULONG(94 , 94 , 94 ), "gray37" }, { RGB_TO_ULONG(94 , 94 , 94 ), "grey37" }, { RGB_TO_ULONG(97 , 97 , 97 ), "gray38" }, { RGB_TO_ULONG(97 , 97 , 97 ), "grey38" }, { RGB_TO_ULONG(99 , 99 , 99 ), "gray39" }, { RGB_TO_ULONG(99 , 99 , 99 ), "grey39" }, { RGB_TO_ULONG(102, 102, 102), "gray40" }, { RGB_TO_ULONG(102, 102, 102), "grey40" }, { RGB_TO_ULONG(105, 105, 105), "gray41" }, { RGB_TO_ULONG(105, 105, 105), "grey41" }, { RGB_TO_ULONG(107, 107, 107), "gray42" }, { RGB_TO_ULONG(107, 107, 107), "grey42" }, { RGB_TO_ULONG(110, 110, 110), "gray43" }, { RGB_TO_ULONG(110, 110, 110), "grey43" }, { RGB_TO_ULONG(112, 112, 112), "gray44" }, { RGB_TO_ULONG(112, 112, 112), "grey44" }, { RGB_TO_ULONG(115, 115, 115), "gray45" }, { RGB_TO_ULONG(115, 115, 115), "grey45" }, { RGB_TO_ULONG(117, 117, 117), "gray46" }, { RGB_TO_ULONG(117, 117, 117), "grey46" }, { RGB_TO_ULONG(120, 120, 120), "gray47" }, { RGB_TO_ULONG(120, 120, 120), "grey47" }, { RGB_TO_ULONG(122, 122, 122), "gray48" }, { RGB_TO_ULONG(122, 122, 122), "grey48" }, { RGB_TO_ULONG(125, 125, 125), "gray49" }, { RGB_TO_ULONG(125, 125, 125), "grey49" }, { RGB_TO_ULONG(127, 127, 127), "gray50" }, { RGB_TO_ULONG(127, 127, 127), "grey50" }, { RGB_TO_ULONG(130, 130, 130), "gray51" }, { RGB_TO_ULONG(130, 130, 130), "grey51" }, { RGB_TO_ULONG(133, 133, 133), "gray52" }, { RGB_TO_ULONG(133, 133, 133), "grey52" }, { RGB_TO_ULONG(135, 135, 135), "gray53" }, { RGB_TO_ULONG(135, 135, 135), "grey53" }, { RGB_TO_ULONG(138, 138, 138), "gray54" }, { RGB_TO_ULONG(138, 138, 138), "grey54" }, { RGB_TO_ULONG(140, 140, 140), "gray55" }, { RGB_TO_ULONG(140, 140, 140), "grey55" }, { RGB_TO_ULONG(143, 143, 143), "gray56" }, { RGB_TO_ULONG(143, 143, 143), "grey56" }, { RGB_TO_ULONG(145, 145, 145), "gray57" }, { RGB_TO_ULONG(145, 145, 145), "grey57" }, { RGB_TO_ULONG(148, 148, 148), "gray58" }, { RGB_TO_ULONG(148, 148, 148), "grey58" }, { RGB_TO_ULONG(150, 150, 150), "gray59" }, { RGB_TO_ULONG(150, 150, 150), "grey59" }, { RGB_TO_ULONG(153, 153, 153), "gray60" }, { RGB_TO_ULONG(153, 153, 153), "grey60" }, { RGB_TO_ULONG(156, 156, 156), "gray61" }, { RGB_TO_ULONG(156, 156, 156), "grey61" }, { RGB_TO_ULONG(158, 158, 158), "gray62" }, { RGB_TO_ULONG(158, 158, 158), "grey62" }, { RGB_TO_ULONG(161, 161, 161), "gray63" }, { RGB_TO_ULONG(161, 161, 161), "grey63" }, { RGB_TO_ULONG(163, 163, 163), "gray64" }, { RGB_TO_ULONG(163, 163, 163), "grey64" }, { RGB_TO_ULONG(166, 166, 166), "gray65" }, { RGB_TO_ULONG(166, 166, 166), "grey65" }, { RGB_TO_ULONG(168, 168, 168), "gray66" }, { RGB_TO_ULONG(168, 168, 168), "grey66" }, { RGB_TO_ULONG(171, 171, 171), "gray67" }, { RGB_TO_ULONG(171, 171, 171), "grey67" }, { RGB_TO_ULONG(173, 173, 173), "gray68" }, { RGB_TO_ULONG(173, 173, 173), "grey68" }, { RGB_TO_ULONG(176, 176, 176), "gray69" }, { RGB_TO_ULONG(176, 176, 176), "grey69" }, { RGB_TO_ULONG(179, 179, 179), "gray70" }, { RGB_TO_ULONG(179, 179, 179), "grey70" }, { RGB_TO_ULONG(181, 181, 181), "gray71" }, { RGB_TO_ULONG(181, 181, 181), "grey71" }, { RGB_TO_ULONG(184, 184, 184), "gray72" }, { RGB_TO_ULONG(184, 184, 184), "grey72" }, { RGB_TO_ULONG(186, 186, 186), "gray73" }, { RGB_TO_ULONG(186, 186, 186), "grey73" }, { RGB_TO_ULONG(189, 189, 189), "gray74" }, { RGB_TO_ULONG(189, 189, 189), "grey74" }, { RGB_TO_ULONG(191, 191, 191), "gray75" }, { RGB_TO_ULONG(191, 191, 191), "grey75" }, { RGB_TO_ULONG(194, 194, 194), "gray76" }, { RGB_TO_ULONG(194, 194, 194), "grey76" }, { RGB_TO_ULONG(196, 196, 196), "gray77" }, { RGB_TO_ULONG(196, 196, 196), "grey77" }, { RGB_TO_ULONG(199, 199, 199), "gray78" }, { RGB_TO_ULONG(199, 199, 199), "grey78" }, { RGB_TO_ULONG(201, 201, 201), "gray79" }, { RGB_TO_ULONG(201, 201, 201), "grey79" }, { RGB_TO_ULONG(204, 204, 204), "gray80" }, { RGB_TO_ULONG(204, 204, 204), "grey80" }, { RGB_TO_ULONG(207, 207, 207), "gray81" }, { RGB_TO_ULONG(207, 207, 207), "grey81" }, { RGB_TO_ULONG(209, 209, 209), "gray82" }, { RGB_TO_ULONG(209, 209, 209), "grey82" }, { RGB_TO_ULONG(212, 212, 212), "gray83" }, { RGB_TO_ULONG(212, 212, 212), "grey83" }, { RGB_TO_ULONG(214, 214, 214), "gray84" }, { RGB_TO_ULONG(214, 214, 214), "grey84" }, { RGB_TO_ULONG(217, 217, 217), "gray85" }, { RGB_TO_ULONG(217, 217, 217), "grey85" }, { RGB_TO_ULONG(219, 219, 219), "gray86" }, { RGB_TO_ULONG(219, 219, 219), "grey86" }, { RGB_TO_ULONG(222, 222, 222), "gray87" }, { RGB_TO_ULONG(222, 222, 222), "grey87" }, { RGB_TO_ULONG(224, 224, 224), "gray88" }, { RGB_TO_ULONG(224, 224, 224), "grey88" }, { RGB_TO_ULONG(227, 227, 227), "gray89" }, { RGB_TO_ULONG(227, 227, 227), "grey89" }, { RGB_TO_ULONG(229, 229, 229), "gray90" }, { RGB_TO_ULONG(229, 229, 229), "grey90" }, { RGB_TO_ULONG(232, 232, 232), "gray91" }, { RGB_TO_ULONG(232, 232, 232), "grey91" }, { RGB_TO_ULONG(235, 235, 235), "gray92" }, { RGB_TO_ULONG(235, 235, 235), "grey92" }, { RGB_TO_ULONG(237, 237, 237), "gray93" }, { RGB_TO_ULONG(237, 237, 237), "grey93" }, { RGB_TO_ULONG(240, 240, 240), "gray94" }, { RGB_TO_ULONG(240, 240, 240), "grey94" }, { RGB_TO_ULONG(242, 242, 242), "gray95" }, { RGB_TO_ULONG(242, 242, 242), "grey95" }, { RGB_TO_ULONG(245, 245, 245), "gray96" }, { RGB_TO_ULONG(245, 245, 245), "grey96" }, { RGB_TO_ULONG(247, 247, 247), "gray97" }, { RGB_TO_ULONG(247, 247, 247), "grey97" }, { RGB_TO_ULONG(250, 250, 250), "gray98" }, { RGB_TO_ULONG(250, 250, 250), "grey98" }, { RGB_TO_ULONG(252, 252, 252), "gray99" }, { RGB_TO_ULONG(252, 252, 252), "grey99" }, { RGB_TO_ULONG(255, 255, 255), "gray100" }, { RGB_TO_ULONG(255, 255, 255), "grey100" }, { RGB_TO_ULONG(169, 169, 169), "dark grey" }, { RGB_TO_ULONG(169, 169, 169), "DarkGrey" }, { RGB_TO_ULONG(169, 169, 169), "dark gray" }, { RGB_TO_ULONG(169, 169, 169), "DarkGray" }, { RGB_TO_ULONG(0 , 0 , 139), "dark blue" }, { RGB_TO_ULONG(0 , 0 , 139), "DarkBlue" }, { RGB_TO_ULONG(0 , 139, 139), "dark cyan" }, { RGB_TO_ULONG(0 , 139, 139), "DarkCyan" }, { RGB_TO_ULONG(139, 0 , 139), "dark magenta" }, { RGB_TO_ULONG(139, 0 , 139), "DarkMagenta" }, { RGB_TO_ULONG(139, 0 , 0 ), "dark red" }, { RGB_TO_ULONG(139, 0 , 0 ), "DarkRed" }, { RGB_TO_ULONG(144, 238, 144), "light green" }, { RGB_TO_ULONG(144, 238, 144), "LightGreen" } }; unsigned long mac_color_map_lookup (colorname) char *colorname; { Lisp_Object ret = Qnil; int i; BLOCK_INPUT; for (i = 0; i < sizeof (mac_color_map) / sizeof (mac_color_map[0]); i++) if (stricmp (colorname, mac_color_map[i].name) == 0) { ret = mac_color_map[i].color; break; } UNBLOCK_INPUT; return ret; } Lisp_Object x_to_mac_color (colorname) char * colorname; { register Lisp_Object tail, ret = Qnil; BLOCK_INPUT; if (colorname[0] == '#') { /* Could be an old-style RGB Device specification. */ char *color; int size; color = colorname + 1; size = strlen(color); if (size == 3 || size == 6 || size == 9 || size == 12) { unsigned long colorval; int i, pos; pos = 0; size /= 3; colorval = 0; for (i = 0; i < 3; i++) { char *end; char t; unsigned long value; /* The check for 'x' in the following conditional takes into account the fact that strtol allows a "0x" in front of our numbers, and we don't. */ if (!isxdigit(color[0]) || color[1] == 'x') break; t = color[size]; color[size] = '\0'; value = strtoul(color, &end, 16); color[size] = t; if (errno == ERANGE || end - color != size) break; switch (size) { case 1: value = value * 0x10; break; case 2: break; case 3: value /= 0x10; break; case 4: value /= 0x100; break; } colorval |= (value << pos); pos += 0x8; if (i == 2) { UNBLOCK_INPUT; return (colorval); } color = end; } } } else if (strnicmp(colorname, "rgb:", 4) == 0) { char *color; unsigned long colorval; int i, pos; pos = 0; colorval = 0; color = colorname + 4; for (i = 0; i < 3; i++) { char *end; unsigned long value; /* The check for 'x' in the following conditional takes into account the fact that strtol allows a "0x" in front of our numbers, and we don't. */ if (!isxdigit(color[0]) || color[1] == 'x') break; value = strtoul(color, &end, 16); if (errno == ERANGE) break; switch (end - color) { case 1: value = value * 0x10 + value; break; case 2: break; case 3: value /= 0x10; break; case 4: value /= 0x100; break; default: value = ULONG_MAX; } if (value == ULONG_MAX) break; colorval |= (value << pos); pos += 0x8; if (i == 2) { if (*end != '\0') break; UNBLOCK_INPUT; return (colorval); } if (*end != '/') break; color = end + 1; } } else if (strnicmp(colorname, "rgbi:", 5) == 0) { /* This is an RGB Intensity specification. */ char *color; unsigned long colorval; int i, pos; pos = 0; colorval = 0; color = colorname + 5; for (i = 0; i < 3; i++) { char *end; double value; unsigned long val; value = strtod(color, &end); if (errno == ERANGE) break; if (value < 0.0 || value > 1.0) break; val = (unsigned long)(0x100 * value); /* We used 0x100 instead of 0xFF to give an continuous range between 0.0 and 1.0 inclusive. The next statement fixes the 1.0 case. */ if (val == 0x100) val = 0xFF; colorval |= (val << pos); pos += 0x8; if (i == 2) { if (*end != '\0') break; UNBLOCK_INPUT; return (colorval); } if (*end != '/') break; color = end + 1; } } ret = mac_color_map_lookup (colorname); UNBLOCK_INPUT; return ret; } /* Gamma-correct COLOR on frame F. */ void gamma_correct (f, color) struct frame *f; unsigned long *color; { if (f->gamma) { unsigned long red, green, blue; red = pow (RED_FROM_ULONG (*color) / 255.0, f->gamma) * 255.0 + 0.5; green = pow (GREEN_FROM_ULONG (*color) / 255.0, f->gamma) * 255.0 + 0.5; blue = pow (BLUE_FROM_ULONG (*color) / 255.0, f->gamma) * 255.0 + 0.5; *color = RGB_TO_ULONG (red, green, blue); } } /* Decide if color named COLOR is valid for the display associated with the selected frame; if so, return the rgb values in COLOR_DEF. If ALLOC is nonzero, allocate a new colormap cell. */ int mac_defined_color (f, color, color_def, alloc) FRAME_PTR f; char *color; XColor *color_def; int alloc; { register Lisp_Object tem; unsigned long mac_color_ref; tem = x_to_mac_color (color); if (!NILP (tem)) { if (f) { /* Apply gamma correction. */ mac_color_ref = XUINT (tem); gamma_correct (f, &mac_color_ref); XSETINT (tem, mac_color_ref); } color_def->pixel = mac_color_ref; color_def->red = RED_FROM_ULONG (mac_color_ref); color_def->green = GREEN_FROM_ULONG (mac_color_ref); color_def->blue = BLUE_FROM_ULONG (mac_color_ref); return 1; } else { return 0; } } /* Given a string ARG naming a color, compute a pixel value from it suitable for screen F. If F is not a color screen, return DEF (default) regardless of what ARG says. */ int x_decode_color (f, arg, def) FRAME_PTR f; Lisp_Object arg; int def; { XColor cdef; CHECK_STRING (arg, 0); if (strcmp (XSTRING (arg)->data, "black") == 0) return BLACK_PIX_DEFAULT (f); else if (strcmp (XSTRING (arg)->data, "white") == 0) return WHITE_PIX_DEFAULT (f); #if 0 if ((FRAME_MAC_DISPLAY_INFO (f)->n_planes * FRAME_MAC_DISPLAY_INFO (f)->n_cbits) == 1) return def; #endif if (mac_defined_color (f, XSTRING (arg)->data, &cdef, 1)) return cdef.pixel; /* defined_color failed; return an ultimate default. */ return def; } /* Change the `line-spacing' frame parameter of frame F. OLD_VALUE is the previous value of that parameter, NEW_VALUE is the new value. */ static void x_set_line_spacing (f, new_value, old_value) struct frame *f; Lisp_Object new_value, old_value; { if (NILP (new_value)) f->extra_line_spacing = 0; else if (NATNUMP (new_value)) f->extra_line_spacing = XFASTINT (new_value); else Fsignal (Qerror, Fcons (build_string ("Illegal line-spacing"), Fcons (new_value, Qnil))); if (FRAME_VISIBLE_P (f)) redraw_frame (f); } /* Change the `screen-gamma' frame parameter of frame F. OLD_VALUE is the previous value of that parameter, NEW_VALUE is the new value. */ static void x_set_screen_gamma (f, new_value, old_value) struct frame *f; Lisp_Object new_value, old_value; { if (NILP (new_value)) f->gamma = 0; else if (NUMBERP (new_value) && XFLOATINT (new_value) > 0) /* The value 0.4545 is the normal viewing gamma. */ f->gamma = 1.0 / (0.4545 * XFLOATINT (new_value)); else Fsignal (Qerror, Fcons (build_string ("Illegal screen-gamma"), Fcons (new_value, Qnil))); clear_face_cache (0); } /* Functions called only from `x_set_frame_param' to set individual parameters. If FRAME_MAC_WINDOW (f) is 0, the frame is being created and its window does not exist yet. In that case, just record the parameter's new value in the standard place; do not attempt to change the window. */ void x_set_foreground_color (f, arg, oldval) struct frame *f; Lisp_Object arg, oldval; { FRAME_FOREGROUND_PIXEL (f) = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f)); if (FRAME_MAC_WINDOW (f) != 0) { update_face_from_frame_parameter (f, Qforeground_color, arg); if (FRAME_VISIBLE_P (f)) redraw_frame (f); } } void x_set_background_color (f, arg, oldval) struct frame *f; Lisp_Object arg, oldval; { FRAME_BACKGROUND_PIXEL (f) = x_decode_color (f, arg, WHITE_PIX_DEFAULT (f)); if (FRAME_MAC_WINDOW (f) != 0) { update_face_from_frame_parameter (f, Qbackground_color, arg); if (FRAME_VISIBLE_P (f)) redraw_frame (f); } } void x_set_mouse_color (f, arg, oldval) struct frame *f; Lisp_Object arg, oldval; { Cursor cursor, nontext_cursor, mode_cursor, cross_cursor; int count; int mask_color; if (!EQ (Qnil, arg)) f->output_data.mac->mouse_pixel = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f)); mask_color = FRAME_BACKGROUND_PIXEL (f); /* Don't let pointers be invisible. */ if (mask_color == f->output_data.mac->mouse_pixel && mask_color == FRAME_BACKGROUND_PIXEL (f)) f->output_data.mac->mouse_pixel = FRAME_FOREGROUND_PIXEL (f); #if 0 /* MAC_TODO : cursor changes */ BLOCK_INPUT; /* It's not okay to crash if the user selects a screwy cursor. */ count = x_catch_errors (FRAME_W32_DISPLAY (f)); if (!EQ (Qnil, Vx_pointer_shape)) { CHECK_NUMBER (Vx_pointer_shape, 0); cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XINT (Vx_pointer_shape)); } else cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XC_xterm); x_check_errors (FRAME_W32_DISPLAY (f), "bad text pointer cursor: %s"); if (!EQ (Qnil, Vx_nontext_pointer_shape)) { CHECK_NUMBER (Vx_nontext_pointer_shape, 0); nontext_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XINT (Vx_nontext_pointer_shape)); } else nontext_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XC_left_ptr); x_check_errors (FRAME_W32_DISPLAY (f), "bad nontext pointer cursor: %s"); if (!EQ (Qnil, Vx_hourglass_pointer_shape)) { CHECK_NUMBER (Vx_hourglass_pointer_shape, 0); hourglass_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XINT (Vx_hourglass_pointer_shape)); } else hourglass_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XC_watch); x_check_errors (FRAME_W32_DISPLAY (f), "bad busy pointer cursor: %s"); x_check_errors (FRAME_W32_DISPLAY (f), "bad nontext pointer cursor: %s"); if (!EQ (Qnil, Vx_mode_pointer_shape)) { CHECK_NUMBER (Vx_mode_pointer_shape, 0); mode_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XINT (Vx_mode_pointer_shape)); } else mode_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XC_xterm); x_check_errors (FRAME_W32_DISPLAY (f), "bad modeline pointer cursor: %s"); if (!EQ (Qnil, Vx_sensitive_text_pointer_shape)) { CHECK_NUMBER (Vx_sensitive_text_pointer_shape, 0); cross_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XINT (Vx_sensitive_text_pointer_shape)); } else cross_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XC_crosshair); if (!NILP (Vx_window_horizontal_drag_shape)) { CHECK_NUMBER (Vx_window_horizontal_drag_shape, 0); horizontal_drag_cursor = XCreateFontCursor (FRAME_X_DISPLAY (f), XINT (Vx_window_horizontal_drag_shape)); } else horizontal_drag_cursor = XCreateFontCursor (FRAME_X_DISPLAY (f), XC_sb_h_double_arrow); /* Check and report errors with the above calls. */ x_check_errors (FRAME_W32_DISPLAY (f), "can't set cursor shape: %s"); x_uncatch_errors (FRAME_W32_DISPLAY (f), count); { XColor fore_color, back_color; fore_color.pixel = f->output_data.w32->mouse_pixel; back_color.pixel = mask_color; XQueryColor (FRAME_W32_DISPLAY (f), DefaultColormap (FRAME_W32_DISPLAY (f), DefaultScreen (FRAME_W32_DISPLAY (f))), &fore_color); XQueryColor (FRAME_W32_DISPLAY (f), DefaultColormap (FRAME_W32_DISPLAY (f), DefaultScreen (FRAME_W32_DISPLAY (f))), &back_color); XRecolorCursor (FRAME_W32_DISPLAY (f), cursor, &fore_color, &back_color); XRecolorCursor (FRAME_W32_DISPLAY (f), nontext_cursor, &fore_color, &back_color); XRecolorCursor (FRAME_W32_DISPLAY (f), mode_cursor, &fore_color, &back_color); XRecolorCursor (FRAME_W32_DISPLAY (f), cross_cursor, &fore_color, &back_color); XRecolorCursor (FRAME_W32_DISPLAY (f), hourglass_cursor, &fore_color, &back_color); } if (FRAME_W32_WINDOW (f) != 0) XDefineCursor (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f), cursor); if (cursor != f->output_data.w32->text_cursor && f->output_data.w32->text_cursor != 0) XFreeCursor (FRAME_W32_DISPLAY (f), f->output_data.w32->text_cursor); f->output_data.w32->text_cursor = cursor; if (nontext_cursor != f->output_data.w32->nontext_cursor && f->output_data.w32->nontext_cursor != 0) XFreeCursor (FRAME_W32_DISPLAY (f), f->output_data.w32->nontext_cursor); f->output_data.w32->nontext_cursor = nontext_cursor; if (hourglass_cursor != f->output_data.w32->hourglass_cursor && f->output_data.w32->hourglass_cursor != 0) XFreeCursor (FRAME_W32_DISPLAY (f), f->output_data.w32->hourglass_cursor); f->output_data.w32->hourglass_cursor = hourglass_cursor; if (mode_cursor != f->output_data.w32->modeline_cursor && f->output_data.w32->modeline_cursor != 0) XFreeCursor (FRAME_W32_DISPLAY (f), f->output_data.w32->modeline_cursor); f->output_data.w32->modeline_cursor = mode_cursor; if (cross_cursor != f->output_data.w32->cross_cursor && f->output_data.w32->cross_cursor != 0) XFreeCursor (FRAME_W32_DISPLAY (f), f->output_data.w32->cross_cursor); f->output_data.w32->cross_cursor = cross_cursor; XFlush (FRAME_W32_DISPLAY (f)); UNBLOCK_INPUT; update_face_from_frame_parameter (f, Qmouse_color, arg); #endif /* MAC_TODO */ } void x_set_cursor_color (f, arg, oldval) struct frame *f; Lisp_Object arg, oldval; { unsigned long fore_pixel; if (!NILP (Vx_cursor_fore_pixel)) fore_pixel = x_decode_color (f, Vx_cursor_fore_pixel, WHITE_PIX_DEFAULT (f)); else fore_pixel = FRAME_BACKGROUND_PIXEL (f); f->output_data.mac->cursor_pixel = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f)); /* Make sure that the cursor color differs from the background color. */ if (f->output_data.mac->cursor_pixel == FRAME_BACKGROUND_PIXEL (f)) { f->output_data.mac->cursor_pixel = f->output_data.mac->mouse_pixel; if (f->output_data.mac->cursor_pixel == fore_pixel) fore_pixel = FRAME_BACKGROUND_PIXEL (f); } FRAME_FOREGROUND_PIXEL (f) = fore_pixel; #if 0 /* MAC_TODO: cannot figure out what to do (wrong number of params) */ if (FRAME_MAC_WINDOW (f) != 0) { if (FRAME_VISIBLE_P (f)) { x_display_cursor (f, 0); x_display_cursor (f, 1); } } #endif update_face_from_frame_parameter (f, Qcursor_color, arg); } /* Set the border-color of frame F to pixel value PIX. Note that this does not fully take effect if done before F has an window. */ void x_set_border_pixel (f, pix) struct frame *f; int pix; { f->output_data.mac->border_pixel = pix; if (FRAME_MAC_WINDOW (f) != 0 && f->output_data.mac->border_width > 0) { if (FRAME_VISIBLE_P (f)) redraw_frame (f); } } /* Set the border-color of frame F to value described by ARG. ARG can be a string naming a color. The border-color is used for the border that is drawn by the server. Note that this does not fully take effect if done before F has a window; it must be redone when the window is created. */ void x_set_border_color (f, arg, oldval) struct frame *f; Lisp_Object arg, oldval; { int pix; CHECK_STRING (arg, 0); pix = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f)); x_set_border_pixel (f, pix); update_face_from_frame_parameter (f, Qborder_color, arg); } /* Value is the internal representation of the specified cursor type ARG. If type is BAR_CURSOR, return in *WIDTH the specified width of the bar cursor. */ enum text_cursor_kinds x_specified_cursor_type (arg, width) Lisp_Object arg; int *width; { enum text_cursor_kinds type; if (EQ (arg, Qbar)) { type = BAR_CURSOR; *width = 2; } else if (CONSP (arg) && EQ (XCAR (arg), Qbar) && INTEGERP (XCDR (arg)) && XINT (XCDR (arg)) >= 0) { type = BAR_CURSOR; *width = XINT (XCDR (arg)); } else if (NILP (arg)) type = NO_CURSOR; else /* Treat anything unknown as "box cursor". It was bad to signal an error; people have trouble fixing .Xdefaults with Emacs, when it has something bad in it. */ type = FILLED_BOX_CURSOR; return type; } void x_set_cursor_type (f, arg, oldval) FRAME_PTR f; Lisp_Object arg, oldval; { int width; FRAME_DESIRED_CURSOR (f) = x_specified_cursor_type (arg, &width); f->output_data.mac->cursor_width = width; /* Make sure the cursor gets redrawn. This is overkill, but how often do people change cursor types? */ update_mode_lines++; } #if 0 /* MAC_TODO: really no icon for Mac */ void x_set_icon_type (f, arg, oldval) struct frame *f; Lisp_Object arg, oldval; { int result; if (NILP (arg) && NILP (oldval)) return; if (STRINGP (arg) && STRINGP (oldval) && EQ (Fstring_equal (oldval, arg), Qt)) return; if (SYMBOLP (arg) && SYMBOLP (oldval) && EQ (arg, oldval)) return; BLOCK_INPUT; result = x_bitmap_icon (f, arg); if (result) { UNBLOCK_INPUT; error ("No icon window available"); } UNBLOCK_INPUT; } #endif /* Return non-nil if frame F wants a bitmap icon. */ Lisp_Object x_icon_type (f) FRAME_PTR f; { Lisp_Object tem; tem = assq_no_quit (Qicon_type, f->param_alist); if (CONSP (tem)) return XCDR (tem); else return Qnil; } void x_set_icon_name (f, arg, oldval) struct frame *f; Lisp_Object arg, oldval; { int result; if (STRINGP (arg)) { if (STRINGP (oldval) && EQ (Fstring_equal (oldval, arg), Qt)) return; } else if (!STRINGP (oldval) && EQ (oldval, Qnil) == EQ (arg, Qnil)) return; f->icon_name = arg; #if 0 if (f->output_data.w32->icon_bitmap != 0) return; BLOCK_INPUT; result = x_text_icon (f, (char *) XSTRING ((!NILP (f->icon_name) ? f->icon_name : !NILP (f->title) ? f->title : f->name))->data); if (result) { UNBLOCK_INPUT; error ("No icon window available"); } /* If the window was unmapped (and its icon was mapped), the new icon is not mapped, so map the window in its stead. */ if (FRAME_VISIBLE_P (f)) { #ifdef USE_X_TOOLKIT XtPopup (f->output_data.w32->widget, XtGrabNone); #endif XMapWindow (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f)); } XFlush (FRAME_W32_DISPLAY (f)); UNBLOCK_INPUT; #endif } extern Lisp_Object x_new_font (); extern Lisp_Object x_new_fontset(); void x_set_font (f, arg, oldval) struct frame *f; Lisp_Object arg, oldval; { Lisp_Object result; Lisp_Object fontset_name; Lisp_Object frame; CHECK_STRING (arg, 1); fontset_name = Fquery_fontset (arg, Qnil); BLOCK_INPUT; result = (STRINGP (fontset_name) ? x_new_fontset (f, XSTRING (fontset_name)->data) : x_new_font (f, XSTRING (arg)->data)); UNBLOCK_INPUT; if (EQ (result, Qnil)) error ("Font `%s' is not defined", XSTRING (arg)->data); else if (EQ (result, Qt)) error ("The characters of the given font have varying widths"); else if (STRINGP (result)) { if (!NILP (Fequal (result, oldval))) return; store_frame_param (f, Qfont, result); recompute_basic_faces (f); } else abort (); do_pending_window_change (0); /* Don't call `face-set-after-frame-default' when faces haven't been initialized yet. This is the case when called from Fx_create_frame. In that case, the X widget or window doesn't exist either, and we can end up in x_report_frame_params with a null widget which gives a segfault. */ if (FRAME_FACE_CACHE (f)) { XSETFRAME (frame, f); call1 (Qface_set_after_frame_default, frame); } } void x_set_border_width (f, arg, oldval) struct frame *f; Lisp_Object arg, oldval; { CHECK_NUMBER (arg, 0); if (XINT (arg) == f->output_data.mac->border_width) return; #if 0 if (FRAME_MAC_WINDOW (f) != 0) error ("Cannot change the border width of a window"); #endif f->output_data.mac->border_width = XINT (arg); } void x_set_internal_border_width (f, arg, oldval) struct frame *f; Lisp_Object arg, oldval; { int old = f->output_data.mac->internal_border_width; CHECK_NUMBER (arg, 0); f->output_data.mac->internal_border_width = XINT (arg); if (f->output_data.mac->internal_border_width < 0) f->output_data.mac->internal_border_width = 0; if (f->output_data.mac->internal_border_width == old) return; if (FRAME_MAC_WINDOW (f) != 0) { x_set_window_size (f, 0, f->width, f->height); SET_FRAME_GARBAGED (f); do_pending_window_change (0); } } void x_set_visibility (f, value, oldval) struct frame *f; Lisp_Object value, oldval; { Lisp_Object frame; XSETFRAME (frame, f); if (NILP (value)) Fmake_frame_invisible (frame, Qt); else if (EQ (value, Qicon)) Ficonify_frame (frame); else Fmake_frame_visible (frame); } /* Change window heights in windows rooted in WINDOW by N lines. */ static void x_change_window_heights (window, n) Lisp_Object window; int n; { struct window *w = XWINDOW (window); XSETFASTINT (w->top, XFASTINT (w->top) + n); XSETFASTINT (w->height, XFASTINT (w->height) - n); if (INTEGERP (w->orig_top)) XSETFASTINT (w->orig_top, XFASTINT (w->orig_top) + n); if (INTEGERP (w->orig_height)) XSETFASTINT (w->orig_height, XFASTINT (w->orig_height) - n); /* Handle just the top child in a vertical split. */ if (!NILP (w->vchild)) x_change_window_heights (w->vchild, n); /* Adjust all children in a horizontal split. */ for (window = w->hchild; !NILP (window); window = w->next) { w = XWINDOW (window); x_change_window_heights (window, n); } } void x_set_menu_bar_lines (f, value, oldval) struct frame *f; Lisp_Object value, oldval; { int nlines; int olines = FRAME_MENU_BAR_LINES (f); /* Right now, menu bars don't work properly in minibuf-only frames; most of the commands try to apply themselves to the minibuffer frame itself, and get an error because you can't switch buffers in or split the minibuffer window. */ if (FRAME_MINIBUF_ONLY_P (f)) return; if (INTEGERP (value)) nlines = XINT (value); else nlines = 0; FRAME_MENU_BAR_LINES (f) = 0; if (nlines) FRAME_EXTERNAL_MENU_BAR (f) = 1; else { if (FRAME_EXTERNAL_MENU_BAR (f) == 1) free_frame_menubar (f); FRAME_EXTERNAL_MENU_BAR (f) = 0; /* Adjust the frame size so that the client (text) dimensions remain the same. This depends on FRAME_EXTERNAL_MENU_BAR being set correctly. */ x_set_window_size (f, 0, FRAME_WIDTH (f), FRAME_HEIGHT (f)); do_pending_window_change (0); } adjust_glyphs (f); } /* Set the number of lines used for the tool bar of frame F to VALUE. VALUE not an integer, or < 0 means set the lines to zero. OLDVAL is the old number of tool bar lines. This function changes the height of all windows on frame F to match the new tool bar height. The frame's height doesn't change. */ void x_set_tool_bar_lines (f, value, oldval) struct frame *f; Lisp_Object value, oldval; { int delta, nlines, root_height; Lisp_Object root_window; /* Treat tool bars like menu bars. */ if (FRAME_MINIBUF_ONLY_P (f)) return; /* Use VALUE only if an integer >= 0. */ if (INTEGERP (value) && XINT (value) >= 0) nlines = XFASTINT (value); else nlines = 0; /* Make sure we redisplay all windows in this frame. */ ++windows_or_buffers_changed; delta = nlines - FRAME_TOOL_BAR_LINES (f); /* Don't resize the tool-bar to more than we have room for. */ root_window = FRAME_ROOT_WINDOW (f); root_height = XINT (XWINDOW (root_window)->height); if (root_height - delta < 1) { delta = root_height - 1; nlines = FRAME_TOOL_BAR_LINES (f) + delta; } FRAME_TOOL_BAR_LINES (f) = nlines; x_change_window_heights (root_window, delta); adjust_glyphs (f); /* We also have to make sure that the internal border at the top of the frame, below the menu bar or tool bar, is redrawn when the tool bar disappears. This is so because the internal border is below the tool bar if one is displayed, but is below the menu bar if there isn't a tool bar. The tool bar draws into the area below the menu bar. */ if (FRAME_MAC_WINDOW (f) && FRAME_TOOL_BAR_LINES (f) == 0) { updating_frame = f; clear_frame (); clear_current_matrices (f); updating_frame = NULL; } /* If the tool bar gets smaller, the internal border below it has to be cleared. It was formerly part of the display of the larger tool bar, and updating windows won't clear it. */ if (delta < 0) { int height = FRAME_INTERNAL_BORDER_WIDTH (f); int width = PIXEL_WIDTH (f); int y = nlines * CANON_Y_UNIT (f); BLOCK_INPUT; XClearArea (FRAME_MAC_DISPLAY (f), FRAME_MAC_WINDOW (f), 0, y, width, height, 0); UNBLOCK_INPUT; } } /* Change the name of frame F to NAME. If NAME is nil, set F's name to w32_id_name. If EXPLICIT is non-zero, that indicates that lisp code is setting the name; if NAME is a string, set F's name to NAME and set F->explicit_name; if NAME is Qnil, then clear F->explicit_name. If EXPLICIT is zero, that indicates that Emacs redisplay code is suggesting a new name, which lisp code should override; if F->explicit_name is set, ignore the new name; otherwise, set it. */ void x_set_name (f, name, explicit) struct frame *f; Lisp_Object name; int explicit; { /* Make sure that requests from lisp code override requests from Emacs redisplay code. */ if (explicit) { /* If we're switching from explicit to implicit, we had better update the mode lines and thereby update the title. */ if (f->explicit_name && NILP (name)) update_mode_lines = 1; f->explicit_name = ! NILP (name); } else if (f->explicit_name) return; /* If NAME is nil, set the name to the w32_id_name. */ if (NILP (name)) { /* Check for no change needed in this very common case before we do any consing. */ if (!strcmp (FRAME_MAC_DISPLAY_INFO (f)->mac_id_name, XSTRING (f->name)->data)) return; name = build_string (FRAME_MAC_DISPLAY_INFO (f)->mac_id_name); } else CHECK_STRING (name, 0); /* Don't change the name if it's already NAME. */ if (! NILP (Fstring_equal (name, f->name))) return; f->name = name; /* For setting the frame title, the title parameter should override the name parameter. */ if (! NILP (f->title)) name = f->title; if (FRAME_MAC_WINDOW (f)) { if (STRING_MULTIBYTE (name)) #if 0 /* MAC_TODO: encoding title string */ name = ENCODE_SYSTEM (name); #else return; #endif BLOCK_INPUT; { Str255 windowTitle; if (strlen (XSTRING (name)->data) < 255) { strcpy (windowTitle, XSTRING (name)->data); c2pstr (windowTitle); SetWTitle (FRAME_MAC_WINDOW (f), windowTitle); } } UNBLOCK_INPUT; } } /* This function should be called when the user's lisp code has specified a name for the frame; the name will override any set by the redisplay code. */ void x_explicitly_set_name (f, arg, oldval) FRAME_PTR f; Lisp_Object arg, oldval; { x_set_name (f, arg, 1); } /* This function should be called by Emacs redisplay code to set the name; names set this way will never override names set by the user's lisp code. */ void x_implicitly_set_name (f, arg, oldval) FRAME_PTR f; Lisp_Object arg, oldval; { x_set_name (f, arg, 0); } /* Change the title of frame F to NAME. If NAME is nil, use the frame name as the title. If EXPLICIT is non-zero, that indicates that lisp code is setting the name; if NAME is a string, set F's name to NAME and set F->explicit_name; if NAME is Qnil, then clear F->explicit_name. If EXPLICIT is zero, that indicates that Emacs redisplay code is suggesting a new name, which lisp code should override; if F->explicit_name is set, ignore the new name; otherwise, set it. */ void x_set_title (f, name, old_name) struct frame *f; Lisp_Object name, old_name; { /* Don't change the title if it's already NAME. */ if (EQ (name, f->title)) return; update_mode_lines = 1; f->title = name; if (NILP (name)) name = f->name; if (FRAME_MAC_WINDOW (f)) { if (STRING_MULTIBYTE (name)) #if 0 /* MAC_TODO: encoding title string */ name = ENCODE_SYSTEM (name); #else return; #endif BLOCK_INPUT; { Str255 windowTitle; if (strlen (XSTRING (name)->data) < 255) { strcpy (windowTitle, XSTRING (name)->data); c2pstr (windowTitle); SetWTitle (FRAME_MAC_WINDOW (f), windowTitle); } } UNBLOCK_INPUT; } } void x_set_autoraise (f, arg, oldval) struct frame *f; Lisp_Object arg, oldval; { f->auto_raise = !EQ (Qnil, arg); } void x_set_autolower (f, arg, oldval) struct frame *f; Lisp_Object arg, oldval; { f->auto_lower = !EQ (Qnil, arg); } void x_set_unsplittable (f, arg, oldval) struct frame *f; Lisp_Object arg, oldval; { f->no_split = !NILP (arg); } void x_set_vertical_scroll_bars (f, arg, oldval) struct frame *f; Lisp_Object arg, oldval; { if ((EQ (arg, Qleft) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f)) || (EQ (arg, Qright) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f)) || (NILP (arg) && FRAME_HAS_VERTICAL_SCROLL_BARS (f)) || (!NILP (arg) && ! FRAME_HAS_VERTICAL_SCROLL_BARS (f))) { FRAME_VERTICAL_SCROLL_BAR_TYPE (f) = (NILP (arg) ? vertical_scroll_bar_none : EQ (Qright, arg) ? vertical_scroll_bar_right : vertical_scroll_bar_left); /* We set this parameter before creating the window for the frame, so we can get the geometry right from the start. However, if the window hasn't been created yet, we shouldn't call x_set_window_size. */ if (FRAME_MAC_WINDOW (f)) x_set_window_size (f, 0, FRAME_WIDTH (f), FRAME_HEIGHT (f)); do_pending_window_change (0); } } void x_set_scroll_bar_width (f, arg, oldval) struct frame *f; Lisp_Object arg, oldval; { /* Imitate X without X Toolkit */ int wid = FONT_WIDTH (f->output_data.mac->font); if (NILP (arg)) { /* Make the actual width at least 14 pixels and a multiple of a character width. */ FRAME_SCROLL_BAR_COLS (f) = (14 + wid - 1) / wid; /* Use all of that space (aside from required margins) for the scroll bar. */ FRAME_SCROLL_BAR_PIXEL_WIDTH (f) = 0; if (FRAME_MAC_WINDOW (f)) x_set_window_size (f, 0, FRAME_WIDTH (f), FRAME_HEIGHT (f)); do_pending_window_change (0); } else if (INTEGERP (arg) && XINT (arg) > 0 && XFASTINT (arg) != FRAME_SCROLL_BAR_PIXEL_WIDTH (f)) { if (XFASTINT (arg) <= 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM) XSETINT (arg, 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM + 1); FRAME_SCROLL_BAR_PIXEL_WIDTH (f) = XFASTINT (arg); FRAME_SCROLL_BAR_COLS (f) = (XFASTINT (arg) + wid-1) / wid; if (FRAME_MAC_WINDOW (f)) x_set_window_size (f, 0, FRAME_WIDTH (f), FRAME_HEIGHT (f)); do_pending_window_change (0); } change_frame_size (f, 0, FRAME_WIDTH (f), 0, 0, 0); XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.hpos = 0; XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.x = 0; } /* Subroutines of creating an frame. */ /* Make sure that Vx_resource_name is set to a reasonable value. Fix it up, or set it to `emacs' if it is too hopeless. */ static void validate_x_resource_name () { int len = 0; /* Number of valid characters in the resource name. */ int good_count = 0; /* Number of invalid characters in the resource name. */ int bad_count = 0; Lisp_Object new; int i; if (STRINGP (Vx_resource_name)) { unsigned char *p = XSTRING (Vx_resource_name)->data; int i; len = STRING_BYTES (XSTRING (Vx_resource_name)); /* Only letters, digits, - and _ are valid in resource names. Count the valid characters and count the invalid ones. */ for (i = 0; i < len; i++) { int c = p[i]; if (! ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9') || c == '-' || c == '_')) bad_count++; else good_count++; } } else /* Not a string => completely invalid. */ bad_count = 5, good_count = 0; /* If name is valid already, return. */ if (bad_count == 0) return; /* If name is entirely invalid, or nearly so, use `emacs'. */ if (good_count == 0 || (good_count == 1 && bad_count > 0)) { Vx_resource_name = build_string ("emacs"); return; } /* Name is partly valid. Copy it and replace the invalid characters with underscores. */ Vx_resource_name = new = Fcopy_sequence (Vx_resource_name); for (i = 0; i < len; i++) { int c = XSTRING (new)->data[i]; if (! ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9') || c == '-' || c == '_')) XSTRING (new)->data[i] = '_'; } } #if 0 /* MAC_TODO: implement resource strings */ extern char *x_get_string_resource (); DEFUN ("x-get-resource", Fx_get_resource, Sx_get_resource, 2, 4, 0, "Return the value of ATTRIBUTE, of class CLASS, from the X defaults database.\n\ This uses `INSTANCE.ATTRIBUTE' as the key and `Emacs.CLASS' as the\n\ class, where INSTANCE is the name under which Emacs was invoked, or\n\ the name specified by the `-name' or `-rn' command-line arguments.\n\ \n\ The optional arguments COMPONENT and SUBCLASS add to the key and the\n\ class, respectively. You must specify both of them or neither.\n\ If you specify them, the key is `INSTANCE.COMPONENT.ATTRIBUTE'\n\ and the class is `Emacs.CLASS.SUBCLASS'.") (attribute, class, component, subclass) Lisp_Object attribute, class, component, subclass; { register char *value; char *name_key; char *class_key; CHECK_STRING (attribute, 0); CHECK_STRING (class, 0); if (!NILP (component)) CHECK_STRING (component, 1); if (!NILP (subclass)) CHECK_STRING (subclass, 2); if (NILP (component) != NILP (subclass)) error ("x-get-resource: must specify both COMPONENT and SUBCLASS or neither"); validate_x_resource_name (); /* Allocate space for the components, the dots which separate them, and the final '\0'. Make them big enough for the worst case. */ name_key = (char *) alloca (STRING_BYTES (XSTRING (Vx_resource_name)) + (STRINGP (component) ? STRING_BYTES (XSTRING (component)) : 0) + STRING_BYTES (XSTRING (attribute)) + 3); class_key = (char *) alloca ((sizeof (EMACS_CLASS) - 1) + STRING_BYTES (XSTRING (class)) + (STRINGP (subclass) ? STRING_BYTES (XSTRING (subclass)) : 0) + 3); /* Start with emacs.FRAMENAME for the name (the specific one) and with `Emacs' for the class key (the general one). */ strcpy (name_key, XSTRING (Vx_resource_name)->data); strcpy (class_key, EMACS_CLASS); strcat (class_key, "."); strcat (class_key, XSTRING (class)->data); if (!NILP (component)) { strcat (class_key, "."); strcat (class_key, XSTRING (subclass)->data); strcat (name_key, "."); strcat (name_key, XSTRING (component)->data); } strcat (name_key, "."); strcat (name_key, XSTRING (attribute)->data); value = x_get_string_resource (Qnil, name_key, class_key); if (value != (char *) 0) return build_string (value); else return Qnil; } /* Used when C code wants a resource value. */ char * x_get_resource_string (attribute, class) char *attribute, *class; { char *name_key; char *class_key; struct frame *sf = SELECTED_FRAME (); /* Allocate space for the components, the dots which separate them, and the final '\0'. */ name_key = (char *) alloca (STRING_BYTES (XSTRING (Vinvocation_name)) + strlen (attribute) + 2); class_key = (char *) alloca ((sizeof (EMACS_CLASS) - 1) + strlen (class) + 2); sprintf (name_key, "%s.%s", XSTRING (Vinvocation_name)->data, attribute); sprintf (class_key, "%s.%s", EMACS_CLASS, class); return x_get_string_resource (sf, name_key, class_key); } #endif /* Types we might convert a resource string into. */ enum resource_types { RES_TYPE_NUMBER, RES_TYPE_FLOAT, RES_TYPE_BOOLEAN, RES_TYPE_STRING, RES_TYPE_SYMBOL }; /* Return the value of parameter PARAM. First search ALIST, then Vdefault_frame_alist, then the X defaults database, using ATTRIBUTE as the attribute name and CLASS as its class. Convert the resource to the type specified by desired_type. If no default is specified, return Qunbound. If you call w32_get_arg, make sure you deal with Qunbound in a reasonable way, and don't let it get stored in any Lisp-visible variables! */ static Lisp_Object mac_get_arg (alist, param, attribute, class, type) Lisp_Object alist, param; char *attribute; char *class; enum resource_types type; { register Lisp_Object tem; tem = Fassq (param, alist); if (EQ (tem, Qnil)) tem = Fassq (param, Vdefault_frame_alist); if (EQ (tem, Qnil)) { #if 0 /* MAC_TODO: search resource also */ if (attribute) { tem = Fx_get_resource (build_string (attribute), build_string (class), Qnil, Qnil); if (NILP (tem)) return Qunbound; switch (type) { case RES_TYPE_NUMBER: return make_number (atoi (XSTRING (tem)->data)); case RES_TYPE_FLOAT: return make_float (atof (XSTRING (tem)->data)); case RES_TYPE_BOOLEAN: tem = Fdowncase (tem); if (!strcmp (XSTRING (tem)->data, "on") || !strcmp (XSTRING (tem)->data, "true")) return Qt; else return Qnil; case RES_TYPE_STRING: return tem; case RES_TYPE_SYMBOL: /* As a special case, we map the values `true' and `on' to Qt, and `false' and `off' to Qnil. */ { Lisp_Object lower; lower = Fdowncase (tem); if (!strcmp (XSTRING (lower)->data, "on") || !strcmp (XSTRING (lower)->data, "true")) return Qt; else if (!strcmp (XSTRING (lower)->data, "off") || !strcmp (XSTRING (lower)->data, "false")) return Qnil; else return Fintern (tem, Qnil); } default: abort (); } } else #endif return Qunbound; } return Fcdr (tem); } /* Record in frame F the specified or default value according to ALIST of the parameter named PROP (a Lisp symbol). If no value is specified for PROP, look for an X default for XPROP on the frame named NAME. If that is not found either, use the value DEFLT. */ static Lisp_Object x_default_parameter (f, alist, prop, deflt, xprop, xclass, type) struct frame *f; Lisp_Object alist; Lisp_Object prop; Lisp_Object deflt; char *xprop; char *xclass; enum resource_types type; { Lisp_Object tem; tem = mac_get_arg (alist, prop, xprop, xclass, type); if (EQ (tem, Qunbound)) tem = deflt; x_set_frame_parameters (f, Fcons (Fcons (prop, tem), Qnil)); return tem; } DEFUN ("x-parse-geometry", Fx_parse_geometry, Sx_parse_geometry, 1, 1, 0, "Parse an X-style geometry string STRING.\n\ Returns an alist of the form ((top . TOP), (left . LEFT) ... ).\n\ The properties returned may include `top', `left', `height', and `width'.\n\ The value of `left' or `top' may be an integer,\n\ or a list (+ N) meaning N pixels relative to top/left corner,\n\ or a list (- N) meaning -N pixels relative to bottom/right corner.") (string) Lisp_Object string; { int geometry, x, y; unsigned int width, height; Lisp_Object result; CHECK_STRING (string, 0); geometry = XParseGeometry ((char *) XSTRING (string)->data, &x, &y, &width, &height); result = Qnil; if (geometry & XValue) { Lisp_Object element; if (x >= 0 && (geometry & XNegative)) element = Fcons (Qleft, Fcons (Qminus, Fcons (make_number (-x), Qnil))); else if (x < 0 && ! (geometry & XNegative)) element = Fcons (Qleft, Fcons (Qplus, Fcons (make_number (x), Qnil))); else element = Fcons (Qleft, make_number (x)); result = Fcons (element, result); } if (geometry & YValue) { Lisp_Object element; if (y >= 0 && (geometry & YNegative)) element = Fcons (Qtop, Fcons (Qminus, Fcons (make_number (-y), Qnil))); else if (y < 0 && ! (geometry & YNegative)) element = Fcons (Qtop, Fcons (Qplus, Fcons (make_number (y), Qnil))); else element = Fcons (Qtop, make_number (y)); result = Fcons (element, result); } if (geometry & WidthValue) result = Fcons (Fcons (Qwidth, make_number (width)), result); if (geometry & HeightValue) result = Fcons (Fcons (Qheight, make_number (height)), result); return result; } /* Calculate the desired size and position of this window, and return the flags saying which aspects were specified. This function does not make the coordinates positive. */ #define DEFAULT_ROWS 40 #define DEFAULT_COLS 80 static int x_figure_window_size (f, parms) struct frame *f; Lisp_Object parms; { register Lisp_Object tem0, tem1, tem2; long window_prompting = 0; /* Default values if we fall through. Actually, if that happens we should get window manager prompting. */ SET_FRAME_WIDTH (f, DEFAULT_COLS); f->height = DEFAULT_ROWS; /* Window managers expect that if program-specified positions are not (0,0), they're intentional, not defaults. */ f->output_data.mac->top_pos = 0; f->output_data.mac->left_pos = 0; tem0 = mac_get_arg (parms, Qheight, 0, 0, RES_TYPE_NUMBER); tem1 = mac_get_arg (parms, Qwidth, 0, 0, RES_TYPE_NUMBER); tem2 = mac_get_arg (parms, Quser_size, 0, 0, RES_TYPE_NUMBER); if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound)) { if (!EQ (tem0, Qunbound)) { CHECK_NUMBER (tem0, 0); f->height = XINT (tem0); } if (!EQ (tem1, Qunbound)) { CHECK_NUMBER (tem1, 0); SET_FRAME_WIDTH (f, XINT (tem1)); } if (!NILP (tem2) && !EQ (tem2, Qunbound)) window_prompting |= USSize; else window_prompting |= PSize; } f->output_data.mac->vertical_scroll_bar_extra = (!FRAME_HAS_VERTICAL_SCROLL_BARS (f) ? 0 : FRAME_SCROLL_BAR_PIXEL_WIDTH (f) > 0 ? FRAME_SCROLL_BAR_PIXEL_WIDTH (f) : (FRAME_SCROLL_BAR_COLS (f) * FONT_WIDTH (f->output_data.mac->font))); f->output_data.mac->flags_areas_extra = FRAME_FLAGS_AREA_WIDTH (f); f->output_data.mac->pixel_width = CHAR_TO_PIXEL_WIDTH (f, f->width); f->output_data.mac->pixel_height = CHAR_TO_PIXEL_HEIGHT (f, f->height); tem0 = mac_get_arg (parms, Qtop, 0, 0, RES_TYPE_NUMBER); tem1 = mac_get_arg (parms, Qleft, 0, 0, RES_TYPE_NUMBER); tem2 = mac_get_arg (parms, Quser_position, 0, 0, RES_TYPE_NUMBER); if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound)) { if (EQ (tem0, Qminus)) { f->output_data.mac->top_pos = 0; window_prompting |= YNegative; } else if (CONSP (tem0) && EQ (XCAR (tem0), Qminus) && CONSP (XCDR (tem0)) && INTEGERP (XCAR (XCDR (tem0)))) { f->output_data.mac->top_pos = - XINT (XCAR (XCDR (tem0))); window_prompting |= YNegative; } else if (CONSP (tem0) && EQ (XCAR (tem0), Qplus) && CONSP (XCDR (tem0)) && INTEGERP (XCAR (XCDR (tem0)))) { f->output_data.mac->top_pos = XINT (XCAR (XCDR (tem0))); } else if (EQ (tem0, Qunbound)) f->output_data.mac->top_pos = 0; else { CHECK_NUMBER (tem0, 0); f->output_data.mac->top_pos = XINT (tem0); if (f->output_data.mac->top_pos < 0) window_prompting |= YNegative; } if (EQ (tem1, Qminus)) { f->output_data.mac->left_pos = 0; window_prompting |= XNegative; } else if (CONSP (tem1) && EQ (XCAR (tem1), Qminus) && CONSP (XCDR (tem1)) && INTEGERP (XCAR (XCDR (tem1)))) { f->output_data.mac->left_pos = - XINT (XCAR (XCDR (tem1))); window_prompting |= XNegative; } else if (CONSP (tem1) && EQ (XCAR (tem1), Qplus) && CONSP (XCDR (tem1)) && INTEGERP (XCAR (XCDR (tem1)))) { f->output_data.mac->left_pos = XINT (XCAR (XCDR (tem1))); } else if (EQ (tem1, Qunbound)) f->output_data.mac->left_pos = 0; else { CHECK_NUMBER (tem1, 0); f->output_data.mac->left_pos = XINT (tem1); if (f->output_data.mac->left_pos < 0) window_prompting |= XNegative; } if (!NILP (tem2) && ! EQ (tem2, Qunbound)) window_prompting |= USPosition; else window_prompting |= PPosition; } return window_prompting; } #if 0 /* Create and set up the Mac window for frame F. */ static void mac_window (f, window_prompting, minibuffer_only) struct frame *f; long window_prompting; int minibuffer_only; { Rect r; BLOCK_INPUT; /* Use the resource name as the top-level window name for looking up resources. Make a non-Lisp copy for the window manager, so GC relocation won't bother it. Elsewhere we specify the window name for the window manager. */ { char *str = (char *) XSTRING (Vx_resource_name)->data; f->namebuf = (char *) xmalloc (strlen (str) + 1); strcpy (f->namebuf, str); } SetRect (&r, f->output_data.mac->left_pos, f->output_data.mac->top_pos, f->output_data.mac->left_pos + PIXEL_WIDTH (f), f->output_data.mac->top_pos + PIXEL_HEIGHT (f)); FRAME_MAC_WINDOW (f) = NewCWindow (NULL, &r, "\p", 1, zoomDocProc, (WindowPtr) -1, 1, (long) f->output_data.mac); validate_x_resource_name (); /* x_set_name normally ignores requests to set the name if the requested name is the same as the current name. This is the one place where that assumption isn't correct; f->name is set, but the server hasn't been told. */ { Lisp_Object name; int explicit = f->explicit_name; f->explicit_name = 0; name = f->name; f->name = Qnil; x_set_name (f, name, explicit); } ShowWindow (FRAME_MAC_WINDOW (f)); UNBLOCK_INPUT; if (!minibuffer_only && FRAME_EXTERNAL_MENU_BAR (f)) initialize_frame_menubar (f); if (FRAME_MAC_WINDOW (f) == 0) error ("Unable to create window"); } #endif /* Handle the icon stuff for this window. Perhaps later we might want an x_set_icon_position which can be called interactively as well. */ static void x_icon (f, parms) struct frame *f; Lisp_Object parms; { Lisp_Object icon_x, icon_y; /* Set the position of the icon. Note that Windows 95 groups all icons in the tray. */ icon_x = mac_get_arg (parms, Qicon_left, 0, 0, RES_TYPE_NUMBER); icon_y = mac_get_arg (parms, Qicon_top, 0, 0, RES_TYPE_NUMBER); if (!EQ (icon_x, Qunbound) && !EQ (icon_y, Qunbound)) { CHECK_NUMBER (icon_x, 0); CHECK_NUMBER (icon_y, 0); } else if (!EQ (icon_x, Qunbound) || !EQ (icon_y, Qunbound)) error ("Both left and top icon corners of icon must be specified"); BLOCK_INPUT; if (! EQ (icon_x, Qunbound)) x_wm_set_icon_position (f, XINT (icon_x), XINT (icon_y)); #if 0 /* TODO */ /* Start up iconic or window? */ x_wm_set_window_state (f, (EQ (w32_get_arg (parms, Qvisibility, 0, 0, RES_TYPE_SYMBOL), Qicon) ? IconicState : NormalState)); x_text_icon (f, (char *) XSTRING ((!NILP (f->icon_name) ? f->icon_name : f->name))->data); #endif UNBLOCK_INPUT; } static void x_make_gc (f) struct frame *f; { XGCValues gc_values; BLOCK_INPUT; /* Create the GC's of this frame. Note that many default values are used. */ /* Normal video */ gc_values.font = f->output_data.mac->font; gc_values.foreground = f->output_data.mac->foreground_pixel; gc_values.background = f->output_data.mac->background_pixel; f->output_data.mac->normal_gc = XCreateGC (FRAME_MAC_DISPLAY (f), FRAME_MAC_WINDOW (f), GCFont | GCForeground | GCBackground, &gc_values); /* Reverse video style. */ gc_values.foreground = f->output_data.mac->background_pixel; gc_values.background = f->output_data.mac->foreground_pixel; f->output_data.mac->reverse_gc = XCreateGC (FRAME_MAC_DISPLAY (f), FRAME_MAC_WINDOW (f), GCFont | GCForeground | GCBackground, &gc_values); /* Cursor has cursor-color background, background-color foreground. */ gc_values.foreground = f->output_data.mac->background_pixel; gc_values.background = f->output_data.mac->cursor_pixel; f->output_data.mac->cursor_gc = XCreateGC (FRAME_MAC_DISPLAY (f), FRAME_MAC_WINDOW (f), GCFont | GCForeground | GCBackground, &gc_values); /* Reliefs. */ f->output_data.mac->white_relief.gc = 0; f->output_data.mac->black_relief.gc = 0; UNBLOCK_INPUT; } DEFUN ("x-create-frame", Fx_create_frame, Sx_create_frame, 1, 1, 0, "Make a new window, which is called a \"frame\" in Emacs terms.\n\ Returns an Emacs frame object.\n\ ALIST is an alist of frame parameters.\n\ If the parameters specify that the frame should not have a minibuffer,\n\ and do not specify a specific minibuffer window to use,\n\ then `default-minibuffer-frame' must be a frame whose minibuffer can\n\ be shared by the new frame.\n\ \n\ This function is an internal primitive--use `make-frame' instead.") (parms) Lisp_Object parms; { struct frame *f; Lisp_Object frame, tem; Lisp_Object name; int minibuffer_only = 0; long window_prompting = 0; int width, height; int count = BINDING_STACK_SIZE (); struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; Lisp_Object display; struct mac_display_info *dpyinfo = NULL; Lisp_Object parent; struct kboard *kb; char x_frame_name[10]; static int x_frame_count = 2; /* starts from 2 because terminal frame is F1 */ check_mac (); /* Use this general default value to start with until we know if this frame has a specified name. */ Vx_resource_name = Vinvocation_name; display = mac_get_arg (parms, Qdisplay, 0, 0, RES_TYPE_STRING); if (EQ (display, Qunbound)) display = Qnil; dpyinfo = check_x_display_info (display); #ifdef MULTI_KBOARD kb = dpyinfo->kboard; #else kb = &the_only_kboard; #endif name = mac_get_arg (parms, Qname, "name", "Name", RES_TYPE_STRING); if (!STRINGP (name) && ! EQ (name, Qunbound) && ! NILP (name)) error ("Invalid frame name--not a string or nil"); if (STRINGP (name)) Vx_resource_name = name; /* See if parent window is specified. */ parent = mac_get_arg (parms, Qparent_id, NULL, NULL, RES_TYPE_NUMBER); if (EQ (parent, Qunbound)) parent = Qnil; if (! NILP (parent)) CHECK_NUMBER (parent, 0); /* make_frame_without_minibuffer can run Lisp code and garbage collect. */ /* No need to protect DISPLAY because that's not used after passing it to make_frame_without_minibuffer. */ frame = Qnil; GCPRO4 (parms, parent, name, frame); tem = mac_get_arg (parms, Qminibuffer, 0, 0, RES_TYPE_SYMBOL); if (EQ (tem, Qnone) || NILP (tem)) f = make_frame_without_minibuffer (Qnil, kb, display); else if (EQ (tem, Qonly)) { f = make_minibuffer_frame (); minibuffer_only = 1; } else if (WINDOWP (tem)) f = make_frame_without_minibuffer (tem, kb, display); else f = make_frame (1); if (EQ (name, Qunbound) || NILP (name)) { sprintf (x_frame_name, "F%d", x_frame_count++); f->name = build_string (x_frame_name); f->explicit_name = 0; } else { f->name = name; f->explicit_name = 1; } XSETFRAME (frame, f); /* Note that X Windows does support scroll bars. */ FRAME_CAN_HAVE_SCROLL_BARS (f) = 1; f->output_method = output_mac; f->output_data.mac = (struct mac_output *) xmalloc (sizeof (struct mac_output)); bzero (f->output_data.mac, sizeof (struct mac_output)); f->output_data.mac->fontset = -1; f->output_data.mac->scroll_bar_foreground_pixel = -1; f->output_data.mac->scroll_bar_background_pixel = -1; #if 0 FRAME_FONTSET (f) = -1; #endif f->icon_name = mac_get_arg (parms, Qicon_name, "iconName", "Title", RES_TYPE_STRING); if (! STRINGP (f->icon_name)) f->icon_name = Qnil; /* FRAME_W32_DISPLAY_INFO (f) = dpyinfo; */ #ifdef MULTI_KBOARD FRAME_KBOARD (f) = kb; #endif /* Specify the parent under which to make this window. */ if (!NILP (parent)) { f->output_data.mac->parent_desc = (Window) parent; f->output_data.mac->explicit_parent = 1; } else { f->output_data.mac->parent_desc = FRAME_MAC_DISPLAY_INFO (f)->root_window; f->output_data.mac->explicit_parent = 0; } /* Set the name; the functions to which we pass f expect the name to be set. */ if (EQ (name, Qunbound) || NILP (name)) { f->name = build_string (dpyinfo->mac_id_name); f->explicit_name = 0; } else { f->name = name; f->explicit_name = 1; /* use the frame's title when getting resources for this frame. */ specbind (Qx_resource_name, name); } /* Extract the window parameters from the supplied values that are needed to determine window geometry. */ { Lisp_Object font; font = mac_get_arg (parms, Qfont, "font", "Font", RES_TYPE_STRING); BLOCK_INPUT; /* First, try whatever font the caller has specified. */ if (STRINGP (font)) { tem = Fquery_fontset (font, Qnil); if (STRINGP (tem)) font = x_new_fontset (f, XSTRING (tem)->data); else font = x_new_font (f, XSTRING (font)->data); } /* Try out a font which we hope has bold and italic variations. */ if (! STRINGP (font)) font = x_new_font (f, "-ETL-fixed-medium-r-*--*-160-*-*-*-*-iso8859-1"); /* If those didn't work, look for something which will at least work. */ if (!STRINGP (font)) font = x_new_font (f, "-*-monaco-*-12-*-mac-roman"); if (! STRINGP (font)) font = x_new_font (f, "-*-courier-*-10-*-mac-roman"); if (! STRINGP (font)) error ("Cannot find any usable font"); UNBLOCK_INPUT; x_default_parameter (f, parms, Qfont, font, "font", "Font", RES_TYPE_STRING); } x_default_parameter (f, parms, Qborder_width, make_number (0), "borderwidth", "BorderWidth", RES_TYPE_NUMBER); /* This defaults to 2 in order to match xterm. We recognize either internalBorderWidth or internalBorder (which is what xterm calls it). */ if (NILP (Fassq (Qinternal_border_width, parms))) { Lisp_Object value; value = mac_get_arg (parms, Qinternal_border_width, "internalBorder", "BorderWidth", RES_TYPE_NUMBER); if (! EQ (value, Qunbound)) parms = Fcons (Fcons (Qinternal_border_width, value), parms); } /* Default internalBorderWidth to 0 on Windows to match other programs. */ x_default_parameter (f, parms, Qinternal_border_width, make_number (0), "internalBorderWidth", "BorderWidth", RES_TYPE_NUMBER); x_default_parameter (f, parms, Qvertical_scroll_bars, Qt, "verticalScrollBars", "ScrollBars", RES_TYPE_BOOLEAN); /* Also do the stuff which must be set before the window exists. */ x_default_parameter (f, parms, Qforeground_color, build_string ("black"), "foreground", "Foreground", RES_TYPE_STRING); x_default_parameter (f, parms, Qbackground_color, build_string ("white"), "background", "Background", RES_TYPE_STRING); x_default_parameter (f, parms, Qmouse_color, build_string ("black"), "pointerColor", "Foreground", RES_TYPE_STRING); x_default_parameter (f, parms, Qcursor_color, build_string ("black"), "cursorColor", "Foreground", RES_TYPE_STRING); x_default_parameter (f, parms, Qborder_color, build_string ("black"), "borderColor", "BorderColor", RES_TYPE_STRING); x_default_parameter (f, parms, Qscreen_gamma, Qnil, "screenGamma", "ScreenGamma", RES_TYPE_FLOAT); x_default_parameter (f, parms, Qline_spacing, Qnil, "lineSpacing", "LineSpacing", RES_TYPE_NUMBER); /* Init faces before x_default_parameter is called for scroll-bar parameters because that function calls x_set_scroll_bar_width, which calls change_frame_size, which calls Fset_window_buffer, which runs hooks, which call Fvertical_motion. At the end, we end up in init_iterator with a null face cache, which should not happen. */ init_frame_faces (f); x_default_parameter (f, parms, Qmenu_bar_lines, make_number (1), "menuBar", "MenuBar", RES_TYPE_NUMBER); x_default_parameter (f, parms, Qtool_bar_lines, make_number (0), "toolBar", "ToolBar", RES_TYPE_NUMBER); #if 0 x_default_parameter (f, parms, Qbuffer_predicate, Qnil, "bufferPredicate", "BufferPredicate", RES_TYPE_SYMBOL); #endif x_default_parameter (f, parms, Qtitle, Qnil, "title", "Title", RES_TYPE_STRING); f->output_data.mac->parent_desc = FRAME_MAC_DISPLAY_INFO (f)->root_window; window_prompting = x_figure_window_size (f, parms); if (window_prompting & XNegative) { if (window_prompting & YNegative) f->output_data.mac->win_gravity = SouthEastGravity; else f->output_data.mac->win_gravity = NorthEastGravity; } else { if (window_prompting & YNegative) f->output_data.mac->win_gravity = SouthWestGravity; else f->output_data.mac->win_gravity = NorthWestGravity; } f->output_data.mac->size_hint_flags = window_prompting; tem = mac_get_arg (parms, Qunsplittable, 0, 0, RES_TYPE_BOOLEAN); f->no_split = minibuffer_only || EQ (tem, Qt); /* Create the window. Add the tool-bar height to the initial frame height so that the user gets a text display area of the size he specified with -g or via the registry. Later changes of the tool-bar height don't change the frame size. This is done so that users can create tall Emacs frames without having to guess how tall the tool-bar will get. */ f->height += FRAME_TOOL_BAR_LINES (f); /* mac_window (f, window_prompting, minibuffer_only); */ make_mac_frame (f); x_icon (f, parms); x_make_gc (f); /* Now consider the frame official. */ FRAME_MAC_DISPLAY_INFO (f)->reference_count++; Vframe_list = Fcons (frame, Vframe_list); /* We need to do this after creating the window, so that the icon-creation functions can say whose icon they're describing. */ x_default_parameter (f, parms, Qicon_type, Qnil, "bitmapIcon", "BitmapIcon", RES_TYPE_SYMBOL); x_default_parameter (f, parms, Qauto_raise, Qnil, "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN); x_default_parameter (f, parms, Qauto_lower, Qnil, "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN); x_default_parameter (f, parms, Qcursor_type, Qbox, "cursorType", "CursorType", RES_TYPE_SYMBOL); x_default_parameter (f, parms, Qscroll_bar_width, Qnil, "scrollBarWidth", "ScrollBarWidth", RES_TYPE_NUMBER); /* Dimensions, especially f->height, must be done via change_frame_size. Change will not be effected unless different from the current f->height. */ width = f->width; height = f->height; f->height = 0; SET_FRAME_WIDTH (f, 0); change_frame_size (f, height, width, 1, 0, 0); /* Set up faces after all frame parameters are known. */ call1 (Qface_set_after_frame_default, frame); #if 0 /* MAC_TODO: when we have window manager hints */ /* Tell the server what size and position, etc, we want, and how badly we want them. This should be done after we have the menu bar so that its size can be taken into account. */ BLOCK_INPUT; x_wm_set_size_hint (f, window_prompting, 0); UNBLOCK_INPUT; #endif /* Make the window appear on the frame and enable display, unless the caller says not to. However, with explicit parent, Emacs cannot control visibility, so don't try. */ if (! f->output_data.mac->explicit_parent) { Lisp_Object visibility; visibility = mac_get_arg (parms, Qvisibility, 0, 0, RES_TYPE_SYMBOL); if (EQ (visibility, Qunbound)) visibility = Qt; #if 0 /* MAC_TODO: really no iconify on Mac */ if (EQ (visibility, Qicon)) x_iconify_frame (f); else #endif if (! NILP (visibility)) x_make_frame_visible (f); else /* Must have been Qnil. */ ; } UNGCPRO; return unbind_to (count, frame); } /* FRAME is used only to get a handle on the X display. We don't pass the display info directly because we're called from frame.c, which doesn't know about that structure. */ Lisp_Object x_get_focus_frame (frame) struct frame *frame; { struct mac_display_info *dpyinfo = FRAME_MAC_DISPLAY_INFO (frame); Lisp_Object xfocus; if (! dpyinfo->x_focus_frame) return Qnil; XSETFRAME (xfocus, dpyinfo->x_focus_frame); return xfocus; } DEFUN ("xw-color-defined-p", Fxw_color_defined_p, Sxw_color_defined_p, 1, 2, 0, "Internal function called by `color-defined-p', which see.") (color, frame) Lisp_Object color, frame; { XColor foo; FRAME_PTR f = check_x_frame (frame); CHECK_STRING (color, 1); if (mac_defined_color (f, XSTRING (color)->data, &foo, 0)) return Qt; else return Qnil; } DEFUN ("xw-color-values", Fxw_color_values, Sxw_color_values, 1, 2, 0, "Internal function called by `color-values', which see.") (color, frame) Lisp_Object color, frame; { XColor foo; FRAME_PTR f = check_x_frame (frame); CHECK_STRING (color, 1); if (mac_defined_color (f, XSTRING (color)->data, &foo, 0)) { Lisp_Object rgb[3]; rgb[0] = make_number ((RED_FROM_ULONG (foo.pixel) << 8) | RED_FROM_ULONG (foo.pixel)); rgb[1] = make_number ((GREEN_FROM_ULONG (foo.pixel) << 8) | GREEN_FROM_ULONG (foo.pixel)); rgb[2] = make_number ((BLUE_FROM_ULONG (foo.pixel) << 8) | BLUE_FROM_ULONG (foo.pixel)); return Flist (3, rgb); } else return Qnil; } DEFUN ("xw-display-color-p", Fxw_display_color_p, Sxw_display_color_p, 0, 1, 0, "Internal function called by `display-color-p', which see.") (display) Lisp_Object display; { struct mac_display_info *dpyinfo = check_x_display_info (display); if ((dpyinfo->n_planes * dpyinfo->n_cbits) <= 2) return Qnil; return Qt; } DEFUN ("x-display-grayscale-p", Fx_display_grayscale_p, Sx_display_grayscale_p, 0, 1, 0, "Return t if the X display supports shades of gray.\n\ Note that color displays do support shades of gray.\n\ The optional argument DISPLAY specifies which display to ask about.\n\ DISPLAY should be either a frame or a display name (a string).\n\ If omitted or nil, that stands for the selected frame's display.") (display) Lisp_Object display; { struct mac_display_info *dpyinfo = check_x_display_info (display); if ((dpyinfo->n_planes * dpyinfo->n_cbits) <= 1) return Qnil; return Qt; } DEFUN ("x-display-pixel-width", Fx_display_pixel_width, Sx_display_pixel_width, 0, 1, 0, "Returns the width in pixels of the X display DISPLAY.\n\ The optional argument DISPLAY specifies which display to ask about.\n\ DISPLAY should be either a frame or a display name (a string).\n\ If omitted or nil, that stands for the selected frame's display.") (display) Lisp_Object display; { struct mac_display_info *dpyinfo = check_x_display_info (display); return make_number (dpyinfo->width); } DEFUN ("x-display-pixel-height", Fx_display_pixel_height, Sx_display_pixel_height, 0, 1, 0, "Returns the height in pixels of the X display DISPLAY.\n\ The optional argument DISPLAY specifies which display to ask about.\n\ DISPLAY should be either a frame or a display name (a string).\n\ If omitted or nil, that stands for the selected frame's display.") (display) Lisp_Object display; { struct mac_display_info *dpyinfo = check_x_display_info (display); return make_number (dpyinfo->height); } DEFUN ("x-display-planes", Fx_display_planes, Sx_display_planes, 0, 1, 0, "Returns the number of bitplanes of the display DISPLAY.\n\ The optional argument DISPLAY specifies which display to ask about.\n\ DISPLAY should be either a frame or a display name (a string).\n\ If omitted or nil, that stands for the selected frame's display.") (display) Lisp_Object display; { struct mac_display_info *dpyinfo = check_x_display_info (display); return make_number (dpyinfo->n_planes * dpyinfo->n_cbits); } DEFUN ("x-display-color-cells", Fx_display_color_cells, Sx_display_color_cells, 0, 1, 0, "Returns the number of color cells of the display DISPLAY.\n\ The optional argument DISPLAY specifies which display to ask about.\n\ DISPLAY should be either a frame or a display name (a string).\n\ If omitted or nil, that stands for the selected frame's display.") (display) Lisp_Object display; { struct mac_display_info *dpyinfo = check_x_display_info (display); /* MAC_TODO: check whether this is right */ return make_number ((unsigned long) (pow (2, dpyinfo->n_cbits))); } DEFUN ("x-server-max-request-size", Fx_server_max_request_size, Sx_server_max_request_size, 0, 1, 0, "Returns the maximum request size of the server of display DISPLAY.\n\ The optional argument DISPLAY specifies which display to ask about.\n\ DISPLAY should be either a frame or a display name (a string).\n\ If omitted or nil, that stands for the selected frame's display.") (display) Lisp_Object display; { struct mac_display_info *dpyinfo = check_x_display_info (display); return make_number (1); } DEFUN ("x-server-vendor", Fx_server_vendor, Sx_server_vendor, 0, 1, 0, "Returns the vendor ID string of the W32 system (Microsoft).\n\ The optional argument DISPLAY specifies which display to ask about.\n\ DISPLAY should be either a frame or a display name (a string).\n\ If omitted or nil, that stands for the selected f