Mercurial > emacs
changeset 8675:1fe413b0a916
(defined_color): New arg ALLOC--optionally don't allocate the color.
(x_decode_color, Fx_color_defined_p): Pass new arg.
(Fx_color_values): New function.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 31 Aug 1994 20:45:41 +0000 |
parents | bcfd4c7eecb0 |
children | ddbf6eaedf22 |
files | src/xfns.c |
diffstat | 1 files changed, 34 insertions(+), 11 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xfns.c Wed Aug 31 14:31:25 1994 +0000 +++ b/src/xfns.c Wed Aug 31 20:45:41 1994 +0000 @@ -666,12 +666,15 @@ : FRAME_ICONIFIED_P (f) ? Qicon : Qnil)); } -/* Decide if color named COLOR is valid for the display - associated with the selected frame. */ +/* 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 -defined_color (color, color_def) +defined_color (color, color_def, alloc) char *color; Color *color_def; + int alloc; { register int foo; Colormap screen_colormap; @@ -681,11 +684,13 @@ screen_colormap = DefaultColormap (x_current_display, XDefaultScreen (x_current_display)); - foo = XParseColor (x_current_display, screen_colormap, - color, color_def) - && XAllocColor (x_current_display, screen_colormap, color_def); + foo = XParseColor (x_current_display, screen_colormap, color, color_def); + if (foo && alloc) + foo = XAllocColor (x_current_display, screen_colormap, color_def); #else - foo = XParseColor (color, color_def) && XGetHardwareColor (color_def); + foo = XParseColor (color, color_def); + if (foo && alloc) + foo = XGetHardwareColor (color_def); #endif /* not HAVE_X11 */ UNBLOCK_INPUT; @@ -722,7 +727,7 @@ return def; #endif - if (defined_color (XSTRING (arg)->data, &cdef)) + if (defined_color (XSTRING (arg)->data, &cdef, 1)) return cdef.pixel; else Fsignal (Qundefined_color, Fcons (arg, Qnil)); @@ -2944,8 +2949,7 @@ DEFUN ("x-color-defined-p", Fx_color_defined_p, Sx_color_defined_p, 1, 1, 0, - "Return non-nil if the X display supports the color named COLOR.\n\ -The value is actually a list of integer RGB values--(RED GREEN BLUE).") + "Return non-nil if the X display supports the color named COLOR.") (color) Lisp_Object color; { @@ -2954,7 +2958,25 @@ check_x (); CHECK_STRING (color, 0); - if (defined_color (XSTRING (color)->data, &foo)) + if (defined_color (XSTRING (color)->data, &foo, 0)) + return Qt; + else + return Qnil; +} + +DEFUN ("x-color-values", Fx_color_values, Sx_color_values, 1, 1, 0, + "Return a description of the color named COLOR.\n\ +The value is a list of integer RGB values--(RED GREEN BLUE).\n\ +These values appear to range from 0 to 65280; white is (65280 65280 65280).") + (color) + Lisp_Object color; +{ + Color foo; + + check_x (); + CHECK_STRING (color, 0); + + if (defined_color (XSTRING (color)->data, &foo, 0)) { Lisp_Object rgb[3]; @@ -4467,6 +4489,7 @@ defsubr (&Sx_display_color_p); defsubr (&Sx_list_fonts); defsubr (&Sx_color_defined_p); + defsubr (&Sx_color_values); defsubr (&Sx_server_max_request_size); defsubr (&Sx_server_vendor); defsubr (&Sx_server_version);