Mercurial > emacs
changeset 8712:9bc99cd7a6ee
entered into RCS
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 06 Sep 1994 05:29:15 +0000 |
parents | 5554c5e451ae |
children | fad4e60c964d |
files | lispref/frames.texi |
diffstat | 1 files changed, 38 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/lispref/frames.texi Tue Sep 06 02:16:33 1994 +0000 +++ b/lispref/frames.texi Tue Sep 06 05:29:15 1994 +0000 @@ -979,12 +979,45 @@ @end defun @defun x-color-defined-p color -This function reports whether a color name is meaningful and supported -on the X display Emacs is using. It returns @code{t} if the display -supports that color; otherwise, @code{nil}. +This function reports whether a color name is meaningful. It returns +@code{t} if so; otherwise, @code{nil}. + +Note that this does not tell you whether the display you are using +really supports that color. You can ask for any defined color on any +kind of display, and you will get some result---that is how the X server +works. Here's an approximate way to test whether your display supports +the color @var{color}: + +@example +(defun x-color-supported-p (color) + (and (x-color-defined-p color) + (or (x-display-color-p) + (member color '("black" "white")) + (and (> (x-display-planes) 1) + (equal color "gray"))))) +@end example +@end defun -Black-and-white displays support just two colors, @code{"black"} or -@code{"white"}. Color displays support many other colors. +@defun x-color-values color +This function returns a value that describes what @var{color} should +ideally look like. If @var{color} is defined, the value is a list of +three integers, which give the amount of red, the amount of green, and +the amount of blue. Each integer ranges in principle from 0 to 65535, +but in practice no value seems to be above 65280. If @var{color} is not +defined, the value is @code{nil}. + +@example +(x-color-values "black") + @result{} (0 0 0) +(x-color-values "white") + @result{} (65280 65280 65280) +(x-color-values "red") + @result{} (65280 0 0) +(x-color-values "pink") + @result{} (65280 49152 51968) +(x-color-values "hungry") + @result{} nil +@end example @end defun @defun x-synchronize flag