* simple.el (completion-list-mode-finish): Don't use toggle-read-only.
[bpt/emacs.git] / src / xfaces.c
CommitLineData
82641697 1/* xfaces.c -- "Face" primitives.
e9bffc61 2
acaf905b 3Copyright (C) 1993-1994, 1998-2012 Free Software Foundation, Inc.
7b7739b1 4
c115973b
JB
5This file is part of GNU Emacs.
6
9ec0b715 7GNU Emacs is free software: you can redistribute it and/or modify
c115973b 8it under the terms of the GNU General Public License as published by
9ec0b715
GM
9the Free Software Foundation, either version 3 of the License, or
10(at your option) any later version.
c115973b
JB
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
9ec0b715 18along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
c115973b 19
82641697
GM
20/* New face implementation by Gerd Moellmann <gerd@gnu.org>. */
21
22/* Faces.
23
24 When using Emacs with X, the display style of characters can be
25 changed by defining `faces'. Each face can specify the following
26 display attributes:
27
39506348 28 1. Font family name.
178c5d9c 29
40a8bdf6 30 2. Font foundry name.
53aaf1e2
KH
31
32 3. Relative proportionate width, aka character set width or set
82641697 33 width (swidth), e.g. `semi-compressed'.
178c5d9c 34
53aaf1e2 35 4. Font height in 1/10pt.
178c5d9c 36
53aaf1e2 37 5. Font weight, e.g. `bold'.
178c5d9c 38
53aaf1e2 39 6. Font slant, e.g. `italic'.
178c5d9c 40
53aaf1e2 41 7. Foreground color.
178c5d9c 42
53aaf1e2 43 8. Background color.
82641697 44
53aaf1e2 45 9. Whether or not characters should be underlined, and in what color.
82641697 46
53aaf1e2 47 10. Whether or not characters should be displayed in inverse video.
82641697 48
53aaf1e2 49 11. A background stipple, a bitmap.
82641697 50
53aaf1e2 51 12. Whether or not characters should be overlined, and in what color.
82641697 52
53aaf1e2 53 13. Whether or not characters should be strike-through, and in what
82641697
GM
54 color.
55
53aaf1e2 56 14. Whether or not a box should be drawn around characters, the box
82641697
GM
57 type, and, for simple boxes, in what color.
58
53aaf1e2 59 15. Font-spec, or nil. This is a special attribute.
2dee4c0b
KH
60
61 A font-spec is a collection of font attributes (specs).
62
63 When this attribute is specified, the face uses a font matching
64 with the specs as is except for what overwritten by the specs in
65 the fontset (see below). In addition, the other font-related
66 attributes (1st thru 5th) are updated from the spec.
67
39506348 68 On the other hand, if one of the other font-related attributes are
e4769531 69 specified, the corresponding specs in this attribute is set to nil.
39506348 70
2c20458f
MB
71 15. A face name or list of face names from which to inherit attributes.
72
a08332c0
GM
73 16. A specified average font width, which is invisible from Lisp,
74 and is used to ensure that a font specified on the command line,
75 for example, can be matched exactly.
76
2dee4c0b
KH
77 17. A fontset name. This is another special attribute.
78
79 A fontset is a mappings from characters to font-specs, and the
80 specs overwrite the font-spec in the 14th attribute.
81
763bc839 82
82641697
GM
83 Faces are frame-local by nature because Emacs allows to define the
84 same named face (face names are symbols) differently for different
85 frames. Each frame has an alist of face definitions for all named
86 faces. The value of a named face in such an alist is a Lisp vector
39506348
KH
87 with the symbol `face' in slot 0, and a slot for each of the face
88 attributes mentioned above.
82641697
GM
89
90 There is also a global face alist `Vface_new_frame_defaults'. Face
91 definitions from this list are used to initialize faces of newly
92 created frames.
178c5d9c 93
82641697 94 A face doesn't have to specify all attributes. Those not specified
39506348
KH
95 have a value of `unspecified'. Faces specifying all attributes but
96 the 14th are called `fully-specified'.
82641697
GM
97
98
99 Face merging.
100
101 The display style of a given character in the text is determined by
102 combining several faces. This process is called `face merging'.
103 Any aspect of the display style that isn't specified by overlays or
104 text properties is taken from the `default' face. Since it is made
105 sure that the default face is always fully-specified, face merging
106 always results in a fully-specified face.
107
108
109 Face realization.
178c5d9c 110
82641697
GM
111 After all face attributes for a character have been determined by
112 merging faces of that character, that face is `realized'. The
113 realization process maps face attributes to what is physically
114 available on the system where Emacs runs. The result is a
115 `realized face' in form of a struct face which is stored in the
116 face cache of the frame on which it was realized.
117
39506348
KH
118 Face realization is done in the context of the character to display
119 because different fonts may be used for different characters. In
120 other words, for characters that have different font
121 specifications, different realized faces are needed to display
82641697
GM
122 them.
123
39506348
KH
124 Font specification is done by fontsets. See the comment in
125 fontset.c for the details. In the current implementation, all ASCII
126 characters share the same font in a fontset.
127
128 Faces are at first realized for ASCII characters, and, at that
129 time, assigned a specific realized fontset. Hereafter, we call
130 such a face as `ASCII face'. When a face for a multibyte character
131 is realized, it inherits (thus shares) a fontset of an ASCII face
132 that has the same attributes other than font-related ones.
133
763bc839 134 Thus, all realized faces have a realized fontset.
82641697
GM
135
136
137 Unibyte text.
138
39506348
KH
139 Unibyte text (i.e. raw 8-bit characters) is displayed with the same
140 font as ASCII characters. That is because it is expected that
141 unibyte text users specify a font that is suitable both for ASCII
142 and raw 8-bit characters.
143
82641697
GM
144
145 Font selection.
146
147 Font selection tries to find the best available matching font for a
39506348 148 given (character, face) combination.
82641697 149
39506348
KH
150 If the face specifies a fontset name, that fontset determines a
151 pattern for fonts of the given character. If the face specifies a
152 font name or the other font-related attributes, a fontset is
153 realized from the default fontset. In that case, that
154 specification determines a pattern for ASCII characters and the
155 default fontset determines a pattern for multibyte characters.
82641697
GM
156
157 Available fonts on the system on which Emacs runs are then matched
158 against the font pattern. The result of font selection is the best
159 match for the given face attributes in this font list.
160
161 Font selection can be influenced by the user.
162
163 1. The user can specify the relative importance he gives the face
164 attributes width, height, weight, and slant by setting
165 face-font-selection-order (faces.el) to a list of face attribute
166 names. The default is '(:width :height :weight :slant), and means
167 that font selection first tries to find a good match for the font
168 width specified by a face, then---within fonts with that
169 width---tries to find a best match for the specified font height,
170 etc.
171
c824bfbc 172 2. Setting face-font-family-alternatives allows the user to
82641697
GM
173 specify alternative font families to try if a family specified by a
174 face doesn't exist.
175
c824bfbc
KH
176 3. Setting face-font-registry-alternatives allows the user to
177 specify all alternative font registries to try for a face
178 specifying a registry.
179
180 4. Setting face-ignored-fonts allows the user to ignore specific
181 fonts.
182
82641697 183
ec7a10e3 184 Character composition.
39506348
KH
185
186 Usually, the realization process is already finished when Emacs
187 actually reflects the desired glyph matrix on the screen. However,
188 on displaying a composition (sequence of characters to be composed
189 on the screen), a suitable font for the components of the
190 composition is selected and realized while drawing them on the
191 screen, i.e. the realization process is delayed but in principle
192 the same.
82641697 193
178c5d9c 194
82641697
GM
195 Initialization of basic faces.
196
197 The faces `default', `modeline' are considered `basic faces'.
198 When redisplay happens the first time for a newly created frame,
199 basic faces are realized for CHARSET_ASCII. Frame parameters are
200 used to fill in unspecified attributes of the default face. */
201
68c45bf0 202#include <config.h>
6b61353c 203#include <stdio.h>
c115973b
JB
204#include <sys/types.h>
205#include <sys/stat.h>
4d553a13 206#include <stdio.h> /* This needs to be before termchar.h */
d7306fe6 207#include <setjmp.h>
7ee72033 208
c115973b 209#include "lisp.h"
81b39386 210#include "character.h"
a8517066 211#include "charset.h"
9763806e 212#include "keyboard.h"
b5c53576 213#include "frame.h"
428a555e 214#include "termhooks.h"
b5c53576 215
87485d6f 216#ifdef HAVE_X_WINDOWS
c115973b 217#include "xterm.h"
c7ae3284
GM
218#ifdef USE_MOTIF
219#include <Xm/Xm.h>
220#include <Xm/XmStrDefs.h>
221#endif /* USE_MOTIF */
d12d0a9b 222#endif /* HAVE_X_WINDOWS */
82641697 223
87485d6f
MW
224#ifdef MSDOS
225#include "dosfns.h"
226#endif
82641697 227
c3cee013
JR
228#ifdef WINDOWSNT
229#include "w32term.h"
230#include "fontset.h"
231/* Redefine X specifics to W32 equivalents to avoid cluttering the
232 code with #ifdef blocks. */
9763806e 233#undef FRAME_X_DISPLAY_INFO
c3cee013
JR
234#define FRAME_X_DISPLAY_INFO FRAME_W32_DISPLAY_INFO
235#define x_display_info w32_display_info
236#define FRAME_X_FONT_TABLE FRAME_W32_FONT_TABLE
237#define check_x check_w32
c3cee013 238#define GCGraphicsExposures 0
d12d0a9b 239#endif /* WINDOWSNT */
c3cee013 240
edfda783
AR
241#ifdef HAVE_NS
242#include "nsterm.h"
243#undef FRAME_X_DISPLAY_INFO
244#define FRAME_X_DISPLAY_INFO FRAME_NS_DISPLAY_INFO
245#define x_display_info ns_display_info
246#define FRAME_X_FONT_TABLE FRAME_NS_FONT_TABLE
247#define check_x check_ns
edfda783
AR
248#define GCGraphicsExposures 0
249#endif /* HAVE_NS */
250
c115973b 251#include "buffer.h"
f211082d 252#include "dispextern.h"
357f32fc 253#include "blockinput.h"
b6d40e46 254#include "window.h"
bde7c500 255#include "intervals.h"
28d440ab 256#include "termchar.h"
c115973b 257
426b2119 258#include "font.h"
ad00e1a3 259#ifdef HAVE_WINDOW_SYSTEM
2dee4c0b
KH
260#include "fontset.h"
261#endif /* HAVE_WINDOW_SYSTEM */
426b2119 262
87485d6f 263#ifdef HAVE_X_WINDOWS
82641697
GM
264
265/* Compensate for a bug in Xos.h on some systems, on which it requires
657070ac
JB
266 time.h. On some such systems, Xos.h tries to redefine struct
267 timeval and struct timezone if USG is #defined while it is
268 #included. */
657070ac 269
82641697 270#ifdef XOS_NEEDS_TIME_H
e11d186d 271#include <time.h>
657070ac
JB
272#undef USG
273#include <X11/Xos.h>
274#define USG
e11d186d 275#define __TIMEVAL__
875975e9
PE
276#if defined USG || defined __TIMEVAL__ /* Don't warn about unused macros. */
277#endif
82641697
GM
278#else /* not XOS_NEEDS_TIME_H */
279#include <X11/Xos.h>
280#endif /* not XOS_NEEDS_TIME_H */
e11d186d 281
82641697 282#endif /* HAVE_X_WINDOWS */
7a4d2269 283
82641697 284#include <ctype.h>
c115973b 285
c660ce4e
GM
286/* Number of pt per inch (from the TeXbook). */
287
288#define PT_PER_INCH 72.27
289
82641697
GM
290/* Non-zero if face attribute ATTR is unspecified. */
291
292#define UNSPECIFIEDP(ATTR) EQ ((ATTR), Qunspecified)
293
2ff10663
CY
294/* Non-zero if face attribute ATTR is `ignore-defface'. */
295
a3720aa2 296#define IGNORE_DEFFACE_P(ATTR) EQ ((ATTR), QCignore_defface)
2ff10663 297
82641697
GM
298/* Value is the number of elements of VECTOR. */
299
300#define DIM(VECTOR) (sizeof (VECTOR) / sizeof *(VECTOR))
301
178c5d9c 302/* Size of hash table of realized faces in face caches (should be a
82641697
GM
303 prime number). */
304
305#define FACE_CACHE_BUCKETS_SIZE 1001
306
307/* Keyword symbols used for face attribute names. */
308
955cbe7b
PE
309Lisp_Object QCfamily, QCheight, QCweight, QCslant;
310static Lisp_Object QCunderline;
311static Lisp_Object QCinverse_video, QCstipple;
312Lisp_Object QCforeground, QCbackground;
313Lisp_Object QCwidth;
314static Lisp_Object QCfont, QCbold, QCitalic;
315static Lisp_Object QCreverse_video;
316static Lisp_Object QCoverline, QCstrike_through, QCbox, QCinherit;
317static Lisp_Object QCfontset;
82641697
GM
318
319/* Symbols used for attribute values. */
320
955cbe7b 321Lisp_Object Qnormal;
cc39a9db 322Lisp_Object Qbold;
9b0e3eba 323static Lisp_Object Qline, Qwave;
cc39a9db 324static Lisp_Object Qultra_light, Qextra_light, Qlight;
955cbe7b 325static Lisp_Object Qsemi_light, Qsemi_bold, Qextra_bold, Qultra_bold;
cc39a9db
BK
326static Lisp_Object Qoblique, Qreverse_oblique, Qreverse_italic;
327Lisp_Object Qitalic;
328static Lisp_Object Qultra_condensed, Qextra_condensed;
329Lisp_Object Qcondensed;
330static Lisp_Object Qsemi_condensed, Qsemi_expanded, Qextra_expanded;
331Lisp_Object Qexpanded;
955cbe7b
PE
332static Lisp_Object Qultra_expanded;
333static Lisp_Object Qreleased_button, Qpressed_button;
334static Lisp_Object QCstyle, QCcolor, QCline_width;
1b2de274 335Lisp_Object Qunspecified; /* used in dosfns.c */
a3720aa2 336static Lisp_Object QCignore_defface;
ef917393
EZ
337
338char unspecified_fg[] = "unspecified-fg", unspecified_bg[] = "unspecified-bg";
82641697 339
92610620 340/* The name of the function to call when the background of the frame
c20577bc 341 has changed, frame_set_background_mode. */
92610620 342
19d5c50c 343static Lisp_Object Qframe_set_background_mode;
92610620 344
82641697
GM
345/* Names of basic faces. */
346
955cbe7b
PE
347Lisp_Object Qdefault, Qtool_bar, Qfringe;
348static Lisp_Object Qregion;
349Lisp_Object Qheader_line, Qscroll_bar, Qcursor;
350static Lisp_Object Qborder, Qmouse, Qmenu;
351Lisp_Object Qmode_line_inactive;
352static Lisp_Object Qvertical_border;
8bd201d6 353
92610620
GM
354/* The symbol `face-alias'. A symbols having that property is an
355 alias for another face. Value of the property is the name of
356 the aliased face. */
357
955cbe7b 358static Lisp_Object Qface_alias;
92610620 359
82641697
GM
360/* Alist of alternative font families. Each element is of the form
361 (FAMILY FAMILY1 FAMILY2 ...). If fonts of FAMILY can't be loaded,
362 try FAMILY1, then FAMILY2, ... */
363
364Lisp_Object Vface_alternative_font_family_alist;
365
32fcc231
GM
366/* Alist of alternative font registries. Each element is of the form
367 (REGISTRY REGISTRY1 REGISTRY2...). If fonts of REGISTRY can't be
368 loaded, try REGISTRY1, then REGISTRY2, ... */
369
370Lisp_Object Vface_alternative_font_registry_alist;
371
82641697
GM
372/* Allowed scalable fonts. A value of nil means don't allow any
373 scalable fonts. A value of t means allow the use of any scalable
374 font. Otherwise, value must be a list of regular expressions. A
375 font may be scaled if its name matches a regular expression in the
376 list. */
377
955cbe7b 378static Lisp_Object Qscalable_fonts_allowed;
c824bfbc 379
057df17c
GM
380#define DEFAULT_FONT_LIST_LIMIT 100
381
82641697
GM
382/* The symbols `foreground-color' and `background-color' which can be
383 used as part of a `face' property. This is for compatibility with
384 Emacs 20.2. */
385
386Lisp_Object Qforeground_color, Qbackground_color;
387
388/* The symbols `face' and `mouse-face' used as text properties. */
7b7739b1 389
ff83dbb1 390Lisp_Object Qface;
82641697 391
46b00436
KS
392/* Property for basic faces which other faces cannot inherit. */
393
955cbe7b 394static Lisp_Object Qface_no_inherit;
46b00436 395
82641697
GM
396/* Error symbol for wrong_type_argument in load_pixmap. */
397
955cbe7b 398static Lisp_Object Qbitmap_spec_p;
f211082d 399
82641697 400/* The next ID to assign to Lisp faces. */
cb637678 401
82641697 402static int next_lface_id;
c115973b 403
82641697 404/* A vector mapping Lisp face Id's to face names. */
c115973b 405
82641697 406static Lisp_Object *lface_id_to_name;
0065d054 407static ptrdiff_t lface_id_to_name_size;
c115973b 408
ae4b4ba5
GM
409/* TTY color-related functions (defined in tty-colors.el). */
410
955cbe7b 411static Lisp_Object Qtty_color_desc, Qtty_color_by_index, Qtty_color_standard_values;
82641697 412
ae4b4ba5
GM
413/* The name of the function used to compute colors on TTYs. */
414
955cbe7b 415static Lisp_Object Qtty_color_alist;
ae4b4ba5 416
82641697
GM
417/* Counter for calls to clear_face_cache. If this counter reaches
418 CLEAR_FONT_TABLE_COUNT, and a frame has more than
419 CLEAR_FONT_TABLE_NFONTS load, unused fonts are freed. */
420
421static int clear_font_table_count;
422#define CLEAR_FONT_TABLE_COUNT 100
423#define CLEAR_FONT_TABLE_NFONTS 10
424
425/* Non-zero means face attributes have been changed since the last
426 redisplay. Used in redisplay_internal. */
427
428int face_change_count;
429
a4a76b61
GM
430/* Non-zero means don't display bold text if a face's foreground
431 and background colors are the inverse of the default colors of the
432 display. This is a kluge to suppress `bold black' foreground text
433 which is hard to read on an LCD monitor. */
434
435f4c28 435static int tty_suppress_bold_inverse_default_colors_p;
a4a76b61 436
dbc968b8
GM
437/* A list of the form `((x . y))' used to avoid consing in
438 Finternal_set_lisp_face_attribute. */
439
440static Lisp_Object Vparam_value_alist;
441
82641697
GM
442/* The total number of colors currently allocated. */
443
444#if GLYPH_DEBUG
445static int ncolors_allocated;
446static int npixmaps_allocated;
447static int ngcs;
448#endif
449
ceeda019
GM
450/* Non-zero means the definition of the `menu' face for new frames has
451 been changed. */
452
435f4c28 453static int menu_face_changed_default;
82641697
GM
454
455\f
456/* Function prototypes. */
457
82641697 458struct table_entry;
a0a23346 459struct named_merge_point;
82641697 460
f57e2426 461static void map_tty_color (struct frame *, struct face *,
b5f03016 462 enum lface_attribute_index, int *);
f57e2426 463static Lisp_Object resolve_face_name (Lisp_Object, int);
f57e2426
J
464static void set_font_frame_param (Lisp_Object, Lisp_Object);
465static int get_lface_attributes (struct frame *, Lisp_Object, Lisp_Object *,
b5f03016 466 int, struct named_merge_point *);
0766b489
PE
467static ptrdiff_t load_pixmap (struct frame *, Lisp_Object,
468 unsigned *, unsigned *);
f57e2426
J
469static struct frame *frame_or_selected_frame (Lisp_Object, int);
470static void load_face_colors (struct frame *, struct face *, Lisp_Object *);
471static void free_face_colors (struct frame *, struct face *);
eec47d6b 472static int face_color_gray_p (struct frame *, const char *);
f57e2426 473static struct face *realize_face (struct face_cache *, Lisp_Object *,
b5f03016 474 int);
f57e2426 475static struct face *realize_non_ascii_face (struct frame *, Lisp_Object,
b5f03016 476 struct face *);
f57e2426
J
477static struct face *realize_x_face (struct face_cache *, Lisp_Object *);
478static struct face *realize_tty_face (struct face_cache *, Lisp_Object *);
479static int realize_basic_faces (struct frame *);
480static int realize_default_face (struct frame *);
481static void realize_named_face (struct frame *, Lisp_Object, int);
482static int lface_fully_specified_p (Lisp_Object *);
483static int lface_equal_p (Lisp_Object *, Lisp_Object *);
484static unsigned hash_string_case_insensitive (Lisp_Object);
485static unsigned lface_hash (Lisp_Object *);
486static int lface_same_font_attributes_p (Lisp_Object *, Lisp_Object *);
487static struct face_cache *make_face_cache (struct frame *);
488static void clear_face_gcs (struct face_cache *);
489static void free_face_cache (struct face_cache *);
490static int face_fontset (Lisp_Object *);
491static void merge_face_vectors (struct frame *, Lisp_Object *, Lisp_Object*,
b5f03016 492 struct named_merge_point *);
f57e2426 493static int merge_face_ref (struct frame *, Lisp_Object, Lisp_Object *,
b5f03016 494 int, struct named_merge_point *);
f57e2426 495static int set_lface_from_font (struct frame *, Lisp_Object, Lisp_Object,
b5f03016 496 int);
f57e2426
J
497static Lisp_Object lface_from_face_name (struct frame *, Lisp_Object, int);
498static struct face *make_realized_face (Lisp_Object *);
499static void cache_face (struct face_cache *, struct face *, unsigned);
500static void uncache_face (struct face_cache *, struct face *);
82641697 501
c3cee013 502#ifdef HAVE_WINDOW_SYSTEM
82641697 503
f57e2426
J
504static GC x_create_gc (struct frame *, unsigned long, XGCValues *);
505static void x_free_gc (struct frame *, GC);
82641697 506
bce72079 507#ifdef USE_X_TOOLKIT
f57e2426 508static void x_update_menu_appearance (struct frame *);
9180dc8c 509
f57e2426 510extern void free_frame_menubar (struct frame *);
bce72079
GM
511#endif /* USE_X_TOOLKIT */
512
c3cee013 513#endif /* HAVE_WINDOW_SYSTEM */
c115973b 514
cb637678 515\f
82641697
GM
516/***********************************************************************
517 Utilities
518 ***********************************************************************/
c115973b 519
87485d6f 520#ifdef HAVE_X_WINDOWS
cb637678 521
a435fc2a
GM
522#ifdef DEBUG_X_COLORS
523
524/* The following is a poor mans infrastructure for debugging X color
525 allocation problems on displays with PseudoColor-8. Some X servers
526 like 3.3.5 XF86_SVGA with Matrox cards apparently don't implement
527 color reference counts completely so that they don't signal an
528 error when a color is freed whose reference count is already 0.
529 Other X servers do. To help me debug this, the following code
530 implements a simple reference counting schema of its own, for a
531 single display/screen. --gerd. */
532
533/* Reference counts for pixel colors. */
534
535int color_count[256];
536
537/* Register color PIXEL as allocated. */
538
539void
1dae0f0a 540register_color (unsigned long pixel)
a435fc2a
GM
541{
542 xassert (pixel < 256);
543 ++color_count[pixel];
544}
545
546
547/* Register color PIXEL as deallocated. */
548
549void
1dae0f0a 550unregister_color (unsigned long pixel)
a435fc2a
GM
551{
552 xassert (pixel < 256);
553 if (color_count[pixel] > 0)
554 --color_count[pixel];
555 else
556 abort ();
557}
558
559
560/* Register N colors from PIXELS as deallocated. */
561
562void
1dae0f0a 563unregister_colors (unsigned long *pixels, int n)
a435fc2a
GM
564{
565 int i;
566 for (i = 0; i < n; ++i)
567 unregister_color (pixels[i]);
568}
569
08dc08dc 570
a7ca3326 571DEFUN ("dump-colors", Fdump_colors, Sdump_colors, 0, 0, 0,
7ee72033 572 doc: /* Dump currently allocated colors to stderr. */)
5842a27b 573 (void)
08dc08dc
GM
574{
575 int i, n;
576
577 fputc ('\n', stderr);
178c5d9c 578
08dc08dc
GM
579 for (i = n = 0; i < sizeof color_count / sizeof color_count[0]; ++i)
580 if (color_count[i])
581 {
582 fprintf (stderr, "%3d: %5d", i, color_count[i]);
583 ++n;
584 if (n % 5 == 0)
585 fputc ('\n', stderr);
586 else
587 fputc ('\t', stderr);
588 }
589
590 if (n % 5 != 0)
591 fputc ('\n', stderr);
592 return Qnil;
593}
594
a435fc2a
GM
595#endif /* DEBUG_X_COLORS */
596
d12d0a9b 597
1f847cf8
GM
598/* Free colors used on frame F. PIXELS is an array of NPIXELS pixel
599 color values. Interrupt input must be blocked when this function
600 is called. */
601
602void
971de7fb 603x_free_colors (struct frame *f, long unsigned int *pixels, int npixels)
1f847cf8
GM
604{
605 int class = FRAME_X_DISPLAY_INFO (f)->visual->class;
606
607 /* If display has an immutable color map, freeing colors is not
608 necessary and some servers don't allow it. So don't do it. */
609 if (class != StaticColor && class != StaticGray && class != TrueColor)
610 {
a435fc2a 611#ifdef DEBUG_X_COLORS
08dc08dc 612 unregister_colors (pixels, npixels);
a435fc2a 613#endif
513c5806
GM
614 XFreeColors (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f),
615 pixels, npixels, 0);
08dc08dc
GM
616 }
617}
618
619
435f4c28
PE
620#ifdef USE_X_TOOLKIT
621
08dc08dc
GM
622/* Free colors used on frame F. PIXELS is an array of NPIXELS pixel
623 color values. Interrupt input must be blocked when this function
624 is called. */
625
626void
b5f03016
AS
627x_free_dpy_colors (Display *dpy, Screen *screen, Colormap cmap,
628 long unsigned int *pixels, int npixels)
08dc08dc
GM
629{
630 struct x_display_info *dpyinfo = x_display_info_for_display (dpy);
631 int class = dpyinfo->visual->class;
632
633 /* If display has an immutable color map, freeing colors is not
634 necessary and some servers don't allow it. So don't do it. */
635 if (class != StaticColor && class != StaticGray && class != TrueColor)
636 {
a435fc2a 637#ifdef DEBUG_X_COLORS
08dc08dc 638 unregister_colors (pixels, npixels);
a435fc2a 639#endif
513c5806 640 XFreeColors (dpy, cmap, pixels, npixels, 0);
1f847cf8
GM
641 }
642}
435f4c28 643#endif /* USE_X_TOOLKIT */
08dc08dc 644
82641697
GM
645/* Create and return a GC for use on frame F. GC values and mask
646 are given by XGCV and MASK. */
647
55d4c1b2 648static inline GC
971de7fb 649x_create_gc (struct frame *f, long unsigned int mask, XGCValues *xgcv)
c115973b
JB
650{
651 GC gc;
82641697
GM
652 BLOCK_INPUT;
653 gc = XCreateGC (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), mask, xgcv);
654 UNBLOCK_INPUT;
655 IF_DEBUG (++ngcs);
656 return gc;
657}
c115973b 658
42120bc7 659
82641697
GM
660/* Free GC which was used on frame F. */
661
55d4c1b2 662static inline void
971de7fb 663x_free_gc (struct frame *f, GC gc)
82641697 664{
ed0c79c6 665 eassert (interrupt_input_blocked);
a6d8ba25 666 IF_DEBUG (xassert (--ngcs >= 0));
82641697 667 XFreeGC (FRAME_X_DISPLAY (f), gc);
82641697 668}
660ed669 669
82641697 670#endif /* HAVE_X_WINDOWS */
660ed669 671
c3cee013
JR
672#ifdef WINDOWSNT
673/* W32 emulation of GCs */
674
55d4c1b2 675static inline GC
7c3320d8 676x_create_gc (struct frame *f, unsigned long mask, XGCValues *xgcv)
c3cee013
JR
677{
678 GC gc;
679 BLOCK_INPUT;
680 gc = XCreateGC (NULL, FRAME_W32_WINDOW (f), mask, xgcv);
681 UNBLOCK_INPUT;
682 IF_DEBUG (++ngcs);
683 return gc;
684}
685
686
687/* Free GC which was used on frame F. */
688
55d4c1b2 689static inline void
7c3320d8 690x_free_gc (struct frame *f, GC gc)
c3cee013 691{
a6d8ba25 692 IF_DEBUG (xassert (--ngcs >= 0));
c3cee013 693 xfree (gc);
c3cee013
JR
694}
695
696#endif /* WINDOWSNT */
660ed669 697
edfda783
AR
698#ifdef HAVE_NS
699/* NS emulation of GCs */
700
55d4c1b2 701static inline GC
3d608a86 702x_create_gc (struct frame *f,
b5f03016
AS
703 unsigned long mask,
704 XGCValues *xgcv)
edfda783
AR
705{
706 GC gc = xmalloc (sizeof (*gc));
707 if (gc)
72af86bd 708 memcpy (gc, xgcv, sizeof (XGCValues));
edfda783
AR
709 return gc;
710}
711
55d4c1b2 712static inline void
3d608a86 713x_free_gc (struct frame *f, GC gc)
edfda783 714{
5f445726 715 xfree (gc);
edfda783
AR
716}
717#endif /* HAVE_NS */
718
3511c784 719#ifndef HAVE_STRCASECMP
05131107
JR
720/* Like strcasecmp/stricmp. Used to compare parts of font names which
721 are in ISO8859-1. */
82641697
GM
722
723int
25a48bd0 724xstrcasecmp (const char *s1, const char *s2)
82641697
GM
725{
726 while (*s1 && *s2)
95887807 727 {
25a48bd0
PE
728 unsigned char b1 = *s1;
729 unsigned char b2 = *s2;
730 unsigned char c1 = tolower (b1);
731 unsigned char c2 = tolower (b2);
82641697
GM
732 if (c1 != c2)
733 return c1 < c2 ? -1 : 1;
734 ++s1, ++s2;
95887807 735 }
cd0bb842 736
82641697
GM
737 if (*s1 == 0)
738 return *s2 == 0 ? 0 : -1;
739 return 1;
740}
3511c784 741#endif /* HAVE_STRCASECMP */
660ed669 742
c0617987
GM
743/* If FRAME is nil, return a pointer to the selected frame.
744 Otherwise, check that FRAME is a live frame, and return a pointer
745 to it. NPARAM is the parameter number of FRAME, for
746 CHECK_LIVE_FRAME. This is here because it's a frequent pattern in
747 Lisp function definitions. */
82641697 748
55d4c1b2 749static inline struct frame *
971de7fb 750frame_or_selected_frame (Lisp_Object frame, int nparam)
82641697 751{
82641697 752 if (NILP (frame))
c0617987 753 frame = selected_frame;
178c5d9c 754
b7826503 755 CHECK_LIVE_FRAME (frame);
c0617987 756 return XFRAME (frame);
42120bc7 757}
82641697 758
42120bc7 759\f
82641697
GM
760/***********************************************************************
761 Frames and faces
762 ***********************************************************************/
cd0bb842 763
82641697 764/* Initialize face cache and basic faces for frame F. */
cb637678 765
82641697 766void
971de7fb 767init_frame_faces (struct frame *f)
cb637678 768{
82641697
GM
769 /* Make a face cache, if F doesn't have one. */
770 if (FRAME_FACE_CACHE (f) == NULL)
771 FRAME_FACE_CACHE (f) = make_face_cache (f);
178c5d9c 772
c3cee013 773#ifdef HAVE_WINDOW_SYSTEM
82641697 774 /* Make the image cache. */
c3cee013 775 if (FRAME_WINDOW_P (f))
82641697 776 {
91c37b7e
CY
777 /* We initialize the image cache when creating the first frame
778 on a terminal, and not during terminal creation. This way,
779 `x-open-connection' on a tty won't create an image cache. */
354884c4 780 if (FRAME_IMAGE_CACHE (f) == NULL)
354884c4
SM
781 FRAME_IMAGE_CACHE (f) = make_image_cache ();
782 ++FRAME_IMAGE_CACHE (f)->refcount;
82641697 783 }
c3cee013 784#endif /* HAVE_WINDOW_SYSTEM */
cb637678 785
178c5d9c 786 /* Realize basic faces. Must have enough information in frame
82641697
GM
787 parameters to realize basic faces at this point. */
788#ifdef HAVE_X_WINDOWS
789 if (!FRAME_X_P (f) || FRAME_X_WINDOW (f))
c3cee013
JR
790#endif
791#ifdef WINDOWSNT
792 if (!FRAME_WINDOW_P (f) || FRAME_W32_WINDOW (f))
f00691a3 793#endif
edfda783
AR
794#ifdef HAVE_NS
795 if (!FRAME_NS_P (f) || FRAME_NS_WINDOW (f))
82641697
GM
796#endif
797 if (!realize_basic_faces (f))
b5f03016 798 abort ();
82641697 799}
cb637678 800
cb637678 801
e2749141 802/* Free face cache of frame F. Called from delete_frame. */
cb637678 803
82641697 804void
971de7fb 805free_frame_faces (struct frame *f)
cb637678 806{
82641697 807 struct face_cache *face_cache = FRAME_FACE_CACHE (f);
178c5d9c 808
82641697
GM
809 if (face_cache)
810 {
811 free_face_cache (face_cache);
812 FRAME_FACE_CACHE (f) = NULL;
813 }
660ed669 814
c3cee013
JR
815#ifdef HAVE_WINDOW_SYSTEM
816 if (FRAME_WINDOW_P (f))
195f798e 817 {
354884c4 818 struct image_cache *image_cache = FRAME_IMAGE_CACHE (f);
82641697 819 if (image_cache)
195f798e 820 {
82641697
GM
821 --image_cache->refcount;
822 if (image_cache->refcount == 0)
823 free_image_cache (f);
195f798e
RS
824 }
825 }
c3cee013 826#endif /* HAVE_WINDOW_SYSTEM */
cb637678
JB
827}
828
82641697 829
8bd201d6
GM
830/* Clear face caches, and recompute basic faces for frame F. Call
831 this after changing frame parameters on which those faces depend,
832 or when realized faces have been freed due to changing attributes
833 of named faces. */
82641697
GM
834
835void
971de7fb 836recompute_basic_faces (struct frame *f)
cb637678 837{
82641697
GM
838 if (FRAME_FACE_CACHE (f))
839 {
8bd201d6 840 clear_face_cache (0);
18df9369
GM
841 if (!realize_basic_faces (f))
842 abort ();
82641697
GM
843 }
844}
cb637678 845
cb637678 846
82641697
GM
847/* Clear the face caches of all frames. CLEAR_FONTS_P non-zero means
848 try to free unused fonts, too. */
cb637678 849
adfea139 850void
971de7fb 851clear_face_cache (int clear_fonts_p)
cb637678 852{
c3cee013 853#ifdef HAVE_WINDOW_SYSTEM
82641697 854 Lisp_Object tail, frame;
828e66d1 855
82641697
GM
856 if (clear_fonts_p
857 || ++clear_font_table_count == CLEAR_FONT_TABLE_COUNT)
828e66d1 858 {
2dee4c0b
KH
859#if 0
860 /* Not yet implemented. */
861 clear_font_cache (frame);
862#endif
863
82641697
GM
864 /* From time to time see if we can unload some fonts. This also
865 frees all realized faces on all frames. Fonts needed by
866 faces will be loaded again when faces are realized again. */
867 clear_font_table_count = 0;
195f798e 868
82641697 869 FOR_EACH_FRAME (tail, frame)
195f798e 870 {
d5641fc5 871 struct frame *f = XFRAME (frame);
c3cee013 872 if (FRAME_WINDOW_P (f)
82641697 873 && FRAME_X_DISPLAY_INFO (f)->n_fonts > CLEAR_FONT_TABLE_NFONTS)
d5641fc5 874 free_all_realized_faces (frame);
82641697
GM
875 }
876 }
877 else
878 {
879 /* Clear GCs of realized faces. */
880 FOR_EACH_FRAME (tail, frame)
881 {
071048a3 882 struct frame *f = XFRAME (frame);
c3cee013 883 if (FRAME_WINDOW_P (f))
82641697 884 clear_face_gcs (FRAME_FACE_CACHE (f));
195f798e 885 }
a2bc5bdd 886 clear_image_caches (Qnil);
828e66d1 887 }
c3cee013 888#endif /* HAVE_WINDOW_SYSTEM */
cd0bb842
RS
889}
890
82641697 891
a7ca3326 892DEFUN ("clear-face-cache", Fclear_face_cache, Sclear_face_cache, 0, 1, 0,
7ee72033
MB
893 doc: /* Clear face caches on all frames.
894Optional THOROUGHLY non-nil means try to free unused fonts, too. */)
5842a27b 895 (Lisp_Object thoroughly)
cd0bb842 896{
6a3f48c7 897 clear_face_cache (!NILP (thoroughly));
ae4b4ba5
GM
898 ++face_change_count;
899 ++windows_or_buffers_changed;
82641697
GM
900 return Qnil;
901}
902
82641697
GM
903\f
904/***********************************************************************
905 X Pixmaps
906 ***********************************************************************/
907
c3cee013 908#ifdef HAVE_WINDOW_SYSTEM
82641697 909
fef04523 910DEFUN ("bitmap-spec-p", Fbitmap_spec_p, Sbitmap_spec_p, 1, 1, 0,
7ee72033 911 doc: /* Value is non-nil if OBJECT is a valid bitmap specification.
228299fa
GM
912A bitmap specification is either a string, a file name, or a list
913\(WIDTH HEIGHT DATA) where WIDTH is the pixel width of the bitmap,
914HEIGHT is its height, and DATA is a string containing the bits of
915the pixmap. Bits are stored row by row, each row occupies
7ee72033 916\(WIDTH + 7)/8 bytes. */)
5842a27b 917 (Lisp_Object object)
82641697 918{
c7ae3284 919 int pixmap_p = 0;
178c5d9c 920
c7ae3284
GM
921 if (STRINGP (object))
922 /* If OBJECT is a string, it's a file name. */
923 pixmap_p = 1;
924 else if (CONSP (object))
925 {
926 /* Otherwise OBJECT must be (WIDTH HEIGHT DATA), WIDTH and
d311d28c 927 HEIGHT must be ints > 0, and DATA must be string large
c7ae3284
GM
928 enough to hold a bitmap of the specified size. */
929 Lisp_Object width, height, data;
930
931 height = width = data = Qnil;
178c5d9c 932
c7ae3284
GM
933 if (CONSP (object))
934 {
935 width = XCAR (object);
936 object = XCDR (object);
937 if (CONSP (object))
938 {
939 height = XCAR (object);
940 object = XCDR (object);
941 if (CONSP (object))
942 data = XCAR (object);
943 }
944 }
cd0bb842 945
c8907a93 946 if (STRINGP (data)
d311d28c
PE
947 && RANGED_INTEGERP (1, width, INT_MAX)
948 && RANGED_INTEGERP (1, height, INT_MAX))
c7ae3284 949 {
d311d28c
PE
950 int bytes_per_row = ((XINT (width) + BITS_PER_CHAR - 1)
951 / BITS_PER_CHAR);
c8907a93 952 if (XINT (height) <= SBYTES (data) / bytes_per_row)
c7ae3284
GM
953 pixmap_p = 1;
954 }
955 }
956
957 return pixmap_p ? Qt : Qnil;
cd0bb842
RS
958}
959
cd0bb842 960
82641697
GM
961/* Load a bitmap according to NAME (which is either a file name or a
962 pixmap spec) for use on frame F. Value is the bitmap_id (see
963 xfns.c). If NAME is nil, return with a bitmap id of zero. If
964 bitmap cannot be loaded, display a message saying so, and return
965 zero. Store the bitmap width in *W_PTR and its height in *H_PTR,
966 if these pointers are not null. */
cd0bb842 967
0766b489 968static ptrdiff_t
b5f03016
AS
969load_pixmap (FRAME_PTR f, Lisp_Object name, unsigned int *w_ptr,
970 unsigned int *h_ptr)
cd0bb842 971{
0766b489 972 ptrdiff_t bitmap_id;
cd0bb842
RS
973
974 if (NILP (name))
82641697 975 return 0;
cd0bb842 976
d5ddd1a3 977 CHECK_TYPE (!NILP (Fbitmap_spec_p (name)), Qbitmap_spec_p, name);
cd0bb842
RS
978
979 BLOCK_INPUT;
cd0bb842
RS
980 if (CONSP (name))
981 {
982 /* Decode a bitmap spec into a bitmap. */
983
984 int h, w;
985 Lisp_Object bits;
986
987 w = XINT (Fcar (name));
988 h = XINT (Fcar (Fcdr (name)));
989 bits = Fcar (Fcdr (Fcdr (name)));
990
42a5b22f 991 bitmap_id = x_create_bitmap_from_data (f, SSDATA (bits),
cd0bb842
RS
992 w, h);
993 }
994 else
995 {
996 /* It must be a string -- a file name. */
997 bitmap_id = x_create_bitmap_from_file (f, name);
998 }
999 UNBLOCK_INPUT;
1000
7812a96f 1001 if (bitmap_id < 0)
82641697 1002 {
2eb582ae 1003 add_to_log ("Invalid or undefined bitmap `%s'", name, Qnil);
82641697 1004 bitmap_id = 0;
cd0bb842 1005
82641697
GM
1006 if (w_ptr)
1007 *w_ptr = 0;
1008 if (h_ptr)
1009 *h_ptr = 0;
1010 }
1011 else
1012 {
1013#if GLYPH_DEBUG
1014 ++npixmaps_allocated;
1015#endif
1016 if (w_ptr)
1017 *w_ptr = x_bitmap_width (f, bitmap_id);
1018
1019 if (h_ptr)
1020 *h_ptr = x_bitmap_height (f, bitmap_id);
1021 }
cd0bb842
RS
1022
1023 return bitmap_id;
cb637678 1024}
87485d6f 1025
c3cee013 1026#endif /* HAVE_WINDOW_SYSTEM */
82641697 1027
87485d6f 1028
82641697 1029\f
82641697
GM
1030/***********************************************************************
1031 X Colors
1032 ***********************************************************************/
1033
b35df831
MB
1034/* Parse RGB_LIST, and fill in the RGB fields of COLOR.
1035 RGB_LIST should contain (at least) 3 lisp integers.
1036 Return 0 if there's a problem with RGB_LIST, otherwise return 1. */
1037
1038static int
971de7fb 1039parse_rgb_list (Lisp_Object rgb_list, XColor *color)
b35df831
MB
1040{
1041#define PARSE_RGB_LIST_FIELD(field) \
1042 if (CONSP (rgb_list) && INTEGERP (XCAR (rgb_list))) \
1043 { \
1044 color->field = XINT (XCAR (rgb_list)); \
1045 rgb_list = XCDR (rgb_list); \
1046 } \
1047 else \
1048 return 0;
1049
1050 PARSE_RGB_LIST_FIELD (red);
1051 PARSE_RGB_LIST_FIELD (green);
1052 PARSE_RGB_LIST_FIELD (blue);
1053
1054 return 1;
1055}
1056
1057
1058/* Lookup on frame F the color described by the lisp string COLOR.
1059 The resulting tty color is returned in TTY_COLOR; if STD_COLOR is
1060 non-zero, then the `standard' definition of the same color is
1061 returned in it. */
1062
1063static int
b5f03016
AS
1064tty_lookup_color (struct frame *f, Lisp_Object color, XColor *tty_color,
1065 XColor *std_color)
b35df831
MB
1066{
1067 Lisp_Object frame, color_desc;
1068
1069 if (!STRINGP (color) || NILP (Ffboundp (Qtty_color_desc)))
1070 return 0;
1071
1072 XSETFRAME (frame, f);
1073
1074 color_desc = call2 (Qtty_color_desc, color, frame);
1075 if (CONSP (color_desc) && CONSP (XCDR (color_desc)))
1076 {
1077 Lisp_Object rgb;
1078
1079 if (! INTEGERP (XCAR (XCDR (color_desc))))
1080 return 0;
1081
1082 tty_color->pixel = XINT (XCAR (XCDR (color_desc)));
1083
1084 rgb = XCDR (XCDR (color_desc));
1085 if (! parse_rgb_list (rgb, tty_color))
1086 return 0;
1087
1088 /* Should we fill in STD_COLOR too? */
1089 if (std_color)
1090 {
1091 /* Default STD_COLOR to the same as TTY_COLOR. */
1092 *std_color = *tty_color;
1093
1094 /* Do a quick check to see if the returned descriptor is
1095 actually _exactly_ equal to COLOR, otherwise we have to
1096 lookup STD_COLOR separately. If it's impossible to lookup
1097 a standard color, we just give up and use TTY_COLOR. */
1098 if ((!STRINGP (XCAR (color_desc))
1099 || NILP (Fstring_equal (color, XCAR (color_desc))))
51f86bfc 1100 && !NILP (Ffboundp (Qtty_color_standard_values)))
b35df831
MB
1101 {
1102 /* Look up STD_COLOR separately. */
1103 rgb = call1 (Qtty_color_standard_values, color);
1104 if (! parse_rgb_list (rgb, std_color))
1105 return 0;
1106 }
1107 }
1108
1109 return 1;
1110 }
1111 else if (NILP (Fsymbol_value (intern ("tty-defined-color-alist"))))
1112 /* We were called early during startup, and the colors are not
1113 yet set up in tty-defined-color-alist. Don't return a failure
1114 indication, since this produces the annoying "Unable to
1115 load color" messages in the *Messages* buffer. */
1116 return 1;
1117 else
1118 /* tty-color-desc seems to have returned a bad value. */
1119 return 0;
1120}
1121
2d764c78 1122/* A version of defined_color for non-X frames. */
08dc08dc 1123
6b463e58 1124static int
eec47d6b
DN
1125tty_defined_color (struct frame *f, const char *color_name,
1126 XColor *color_def, int alloc)
2d764c78 1127{
2d764c78
EZ
1128 int status = 1;
1129
b35df831 1130 /* Defaults. */
177c0ea7 1131 color_def->pixel = FACE_TTY_DEFAULT_COLOR;
b35df831
MB
1132 color_def->red = 0;
1133 color_def->blue = 0;
1134 color_def->green = 0;
a61c12d5 1135
b35df831 1136 if (*color_name)
3062711f 1137 status = tty_lookup_color (f, build_string (color_name), color_def, NULL);
b35df831
MB
1138
1139 if (color_def->pixel == FACE_TTY_DEFAULT_COLOR && *color_name)
f9d2fdc4
EZ
1140 {
1141 if (strcmp (color_name, "unspecified-fg") == 0)
b35df831 1142 color_def->pixel = FACE_TTY_DEFAULT_FG_COLOR;
f9d2fdc4 1143 else if (strcmp (color_name, "unspecified-bg") == 0)
b35df831 1144 color_def->pixel = FACE_TTY_DEFAULT_BG_COLOR;
f9d2fdc4
EZ
1145 }
1146
b35df831 1147 if (color_def->pixel != FACE_TTY_DEFAULT_COLOR)
3b451f74
EZ
1148 status = 1;
1149
2d764c78
EZ
1150 return status;
1151}
1152
08dc08dc
GM
1153
1154/* Decide if color named COLOR_NAME is valid for the display
1155 associated with the frame F; if so, return the rgb values in
1156 COLOR_DEF. If ALLOC is nonzero, allocate a new colormap cell.
2d764c78
EZ
1157
1158 This does the right thing for any type of frame. */
08dc08dc 1159
435f4c28 1160static int
b5f03016
AS
1161defined_color (struct frame *f, const char *color_name, XColor *color_def,
1162 int alloc)
2d764c78
EZ
1163{
1164 if (!FRAME_WINDOW_P (f))
1165 return tty_defined_color (f, color_name, color_def, alloc);
82641697 1166#ifdef HAVE_X_WINDOWS
2d764c78
EZ
1167 else if (FRAME_X_P (f))
1168 return x_defined_color (f, color_name, color_def, alloc);
1169#endif
1170#ifdef WINDOWSNT
1171 else if (FRAME_W32_P (f))
2d764c78
EZ
1172 return w32_defined_color (f, color_name, color_def, alloc);
1173#endif
edfda783
AR
1174#ifdef HAVE_NS
1175 else if (FRAME_NS_P (f))
1176 return ns_defined_color (f, color_name, color_def, alloc, 1);
2d764c78
EZ
1177#endif
1178 else
1179 abort ();
1180}
1181
08dc08dc
GM
1182
1183/* Given the index IDX of a tty color on frame F, return its name, a
1184 Lisp string. */
2d764c78
EZ
1185
1186Lisp_Object
971de7fb 1187tty_color_name (struct frame *f, int idx)
2d764c78 1188{
2d764c78
EZ
1189 if (idx >= 0 && !NILP (Ffboundp (Qtty_color_by_index)))
1190 {
a61c12d5
EZ
1191 Lisp_Object frame;
1192 Lisp_Object coldesc;
1193
1194 XSETFRAME (frame, f);
1195 coldesc = call2 (Qtty_color_by_index, make_number (idx), frame);
2d764c78
EZ
1196
1197 if (!NILP (coldesc))
1198 return XCAR (coldesc);
1199 }
1200#ifdef MSDOS
1201 /* We can have an MSDOG frame under -nw for a short window of
1202 opportunity before internal_terminal_init is called. DTRT. */
1203 if (FRAME_MSDOS_P (f) && !inhibit_window_system)
1204 return msdos_stdcolor_name (idx);
1205#endif
1206
ef917393
EZ
1207 if (idx == FACE_TTY_DEFAULT_FG_COLOR)
1208 return build_string (unspecified_fg);
1209 if (idx == FACE_TTY_DEFAULT_BG_COLOR)
1210 return build_string (unspecified_bg);
c3cee013 1211
ef917393 1212 return Qunspecified;
2d764c78 1213}
82641697 1214
08dc08dc 1215
82641697 1216/* Return non-zero if COLOR_NAME is a shade of gray (or white or
71433d39
RS
1217 black) on frame F.
1218
1219 The criterion implemented here is not a terribly sophisticated one. */
82641697
GM
1220
1221static int
eec47d6b 1222face_color_gray_p (struct frame *f, const char *color_name)
82641697
GM
1223{
1224 XColor color;
1225 int gray_p;
1226
1227 if (defined_color (f, color_name, &color, 0))
e4769531 1228 gray_p = (/* Any color sufficiently close to black counts as gray. */
71433d39
RS
1229 (color.red < 5000 && color.green < 5000 && color.blue < 5000)
1230 ||
1ea40aa2 1231 ((eabs (color.red - color.green)
71433d39 1232 < max (color.red, color.green) / 20)
1ea40aa2 1233 && (eabs (color.green - color.blue)
71433d39 1234 < max (color.green, color.blue) / 20)
1ea40aa2 1235 && (eabs (color.blue - color.red)
71433d39 1236 < max (color.blue, color.red) / 20)));
87485d6f 1237 else
82641697 1238 gray_p = 0;
178c5d9c 1239
82641697 1240 return gray_p;
87485d6f 1241}
87485d6f 1242
cb637678 1243
82641697
GM
1244/* Return non-zero if color COLOR_NAME can be displayed on frame F.
1245 BACKGROUND_P non-zero means the color will be used as background
1246 color. */
1247
1248static int
b5f03016
AS
1249face_color_supported_p (struct frame *f, const char *color_name,
1250 int background_p)
82641697
GM
1251{
1252 Lisp_Object frame;
2d764c78 1253 XColor not_used;
82641697
GM
1254
1255 XSETFRAME (frame, f);
6b61353c 1256 return
6a46b96b 1257#ifdef HAVE_WINDOW_SYSTEM
6b61353c
KH
1258 FRAME_WINDOW_P (f)
1259 ? (!NILP (Fxw_display_color_p (frame))
05131107
JR
1260 || xstrcasecmp (color_name, "black") == 0
1261 || xstrcasecmp (color_name, "white") == 0
6b61353c
KH
1262 || (background_p
1263 && face_color_gray_p (f, color_name))
1264 || (!NILP (Fx_display_grayscale_p (frame))
1265 && face_color_gray_p (f, color_name)))
1266 :
1267#endif
1268 tty_defined_color (f, color_name, &not_used, 0);
2d764c78 1269}
82641697
GM
1270
1271
da47150d 1272DEFUN ("color-gray-p", Fcolor_gray_p, Scolor_gray_p, 1, 2, 0,
7ee72033 1273 doc: /* Return non-nil if COLOR is a shade of gray (or white or black).
228299fa 1274FRAME specifies the frame and thus the display for interpreting COLOR.
7ee72033 1275If FRAME is nil or omitted, use the selected frame. */)
5842a27b 1276 (Lisp_Object color, Lisp_Object frame)
cb637678 1277{
2d764c78
EZ
1278 struct frame *f;
1279
b7826503 1280 CHECK_STRING (color);
6b61353c
KH
1281 if (NILP (frame))
1282 frame = selected_frame;
1283 else
1284 CHECK_FRAME (frame);
2d764c78 1285 f = XFRAME (frame);
42a5b22f 1286 return face_color_gray_p (f, SSDATA (color)) ? Qt : Qnil;
82641697 1287}
660ed669 1288
fffc2367 1289
da47150d 1290DEFUN ("color-supported-p", Fcolor_supported_p,
2e1bb1c3 1291 Scolor_supported_p, 1, 3, 0,
7ee72033 1292 doc: /* Return non-nil if COLOR can be displayed on FRAME.
228299fa 1293BACKGROUND-P non-nil means COLOR is used as a background.
fc820cc5 1294Otherwise, this function tells whether it can be used as a foreground.
228299fa 1295If FRAME is nil or omitted, use the selected frame.
7ee72033 1296COLOR must be a valid color name. */)
5842a27b 1297 (Lisp_Object color, Lisp_Object frame, Lisp_Object background_p)
82641697 1298{
2d764c78
EZ
1299 struct frame *f;
1300
b7826503 1301 CHECK_STRING (color);
6b61353c
KH
1302 if (NILP (frame))
1303 frame = selected_frame;
1304 else
1305 CHECK_FRAME (frame);
2d764c78 1306 f = XFRAME (frame);
42a5b22f 1307 if (face_color_supported_p (f, SSDATA (color), !NILP (background_p)))
82641697
GM
1308 return Qt;
1309 return Qnil;
1310}
7b37f67b 1311
08dc08dc 1312
82641697
GM
1313/* Load color with name NAME for use by face FACE on frame F.
1314 TARGET_INDEX must be one of LFACE_FOREGROUND_INDEX,
1315 LFACE_BACKGROUND_INDEX, LFACE_UNDERLINE_INDEX, LFACE_OVERLINE_INDEX,
1316 LFACE_STRIKE_THROUGH_INDEX, or LFACE_BOX_INDEX. Value is the
1317 pixel color. If color cannot be loaded, display a message, and
1318 return the foreground, background or underline color of F, but
1319 record that fact in flags of the face so that we don't try to free
1320 these colors. */
1321
44747bd0 1322unsigned long
b5f03016
AS
1323load_color (struct frame *f, struct face *face, Lisp_Object name,
1324 enum lface_attribute_index target_index)
82641697
GM
1325{
1326 XColor color;
178c5d9c 1327
82641697
GM
1328 xassert (STRINGP (name));
1329 xassert (target_index == LFACE_FOREGROUND_INDEX
1330 || target_index == LFACE_BACKGROUND_INDEX
1331 || target_index == LFACE_UNDERLINE_INDEX
1332 || target_index == LFACE_OVERLINE_INDEX
1333 || target_index == LFACE_STRIKE_THROUGH_INDEX
1334 || target_index == LFACE_BOX_INDEX);
178c5d9c 1335
82641697
GM
1336 /* if the color map is full, defined_color will return a best match
1337 to the values in an existing cell. */
42a5b22f 1338 if (!defined_color (f, SSDATA (name), &color, 1))
82641697 1339 {
2d764c78 1340 add_to_log ("Unable to load color \"%s\"", name, Qnil);
178c5d9c 1341
82641697 1342 switch (target_index)
1120eb5e 1343 {
82641697
GM
1344 case LFACE_FOREGROUND_INDEX:
1345 face->foreground_defaulted_p = 1;
1346 color.pixel = FRAME_FOREGROUND_PIXEL (f);
1347 break;
178c5d9c 1348
82641697
GM
1349 case LFACE_BACKGROUND_INDEX:
1350 face->background_defaulted_p = 1;
1351 color.pixel = FRAME_BACKGROUND_PIXEL (f);
1352 break;
178c5d9c 1353
82641697
GM
1354 case LFACE_UNDERLINE_INDEX:
1355 face->underline_defaulted_p = 1;
1356 color.pixel = FRAME_FOREGROUND_PIXEL (f);
1357 break;
178c5d9c 1358
82641697
GM
1359 case LFACE_OVERLINE_INDEX:
1360 face->overline_color_defaulted_p = 1;
1361 color.pixel = FRAME_FOREGROUND_PIXEL (f);
1120eb5e 1362 break;
178c5d9c 1363
82641697
GM
1364 case LFACE_STRIKE_THROUGH_INDEX:
1365 face->strike_through_color_defaulted_p = 1;
1366 color.pixel = FRAME_FOREGROUND_PIXEL (f);
1367 break;
178c5d9c 1368
82641697
GM
1369 case LFACE_BOX_INDEX:
1370 face->box_color_defaulted_p = 1;
1371 color.pixel = FRAME_FOREGROUND_PIXEL (f);
1372 break;
1373
1374 default:
1375 abort ();
1120eb5e 1376 }
82641697
GM
1377 }
1378#if GLYPH_DEBUG
1379 else
1380 ++ncolors_allocated;
1381#endif
178c5d9c 1382
82641697
GM
1383 return color.pixel;
1384}
1120eb5e 1385
08dc08dc 1386
c3cee013 1387#ifdef HAVE_WINDOW_SYSTEM
1120eb5e 1388
82641697
GM
1389/* Load colors for face FACE which is used on frame F. Colors are
1390 specified by slots LFACE_BACKGROUND_INDEX and LFACE_FOREGROUND_INDEX
1391 of ATTRS. If the background color specified is not supported on F,
1392 try to emulate gray colors with a stipple from Vface_default_stipple. */
1393
1394static void
971de7fb 1395load_face_colors (struct frame *f, struct face *face, Lisp_Object *attrs)
82641697
GM
1396{
1397 Lisp_Object fg, bg;
1398
1399 bg = attrs[LFACE_BACKGROUND_INDEX];
1400 fg = attrs[LFACE_FOREGROUND_INDEX];
1401
1402 /* Swap colors if face is inverse-video. */
1403 if (EQ (attrs[LFACE_INVERSE_INDEX], Qt))
1404 {
1405 Lisp_Object tmp;
1406 tmp = fg;
1407 fg = bg;
1408 bg = tmp;
1409 }
1410
1411 /* Check for support for foreground, not for background because
1412 face_color_supported_p is smart enough to know that grays are
1413 "supported" as background because we are supposed to use stipple
1414 for them. */
42a5b22f 1415 if (!face_color_supported_p (f, SSDATA (bg), 0)
fef04523 1416 && !NILP (Fbitmap_spec_p (Vface_default_stipple)))
82641697
GM
1417 {
1418 x_destroy_bitmap (f, face->stipple);
1419 face->stipple = load_pixmap (f, Vface_default_stipple,
1420 &face->pixmap_w, &face->pixmap_h);
1421 }
82641697 1422
be8a72f4 1423 face->background = load_color (f, face, bg, LFACE_BACKGROUND_INDEX);
82641697 1424 face->foreground = load_color (f, face, fg, LFACE_FOREGROUND_INDEX);
cb637678
JB
1425}
1426
660ed669 1427
82641697 1428/* Free color PIXEL on frame F. */
cd0bb842 1429
cb637678 1430void
971de7fb 1431unload_color (struct frame *f, long unsigned int pixel)
cb637678 1432{
c3cee013 1433#ifdef HAVE_X_WINDOWS
30a7ac22
GM
1434 if (pixel != -1)
1435 {
1436 BLOCK_INPUT;
1437 x_free_colors (f, &pixel, 1);
1438 UNBLOCK_INPUT;
1439 }
c3cee013 1440#endif
82641697
GM
1441}
1442
1443
1444/* Free colors allocated for FACE. */
1445
1446static void
971de7fb 1447free_face_colors (struct frame *f, struct face *face)
82641697 1448{
edfda783 1449/* PENDING(NS): need to do something here? */
c3cee013 1450#ifdef HAVE_X_WINDOWS
28a072fe
GM
1451 if (face->colors_copied_bitwise_p)
1452 return;
1453
08dc08dc 1454 BLOCK_INPUT;
178c5d9c 1455
08dc08dc
GM
1456 if (!face->foreground_defaulted_p)
1457 {
1458 x_free_colors (f, &face->foreground, 1);
1459 IF_DEBUG (--ncolors_allocated);
1460 }
178c5d9c 1461
08dc08dc
GM
1462 if (!face->background_defaulted_p)
1463 {
1464 x_free_colors (f, &face->background, 1);
1465 IF_DEBUG (--ncolors_allocated);
1466 }
82641697 1467
08dc08dc
GM
1468 if (face->underline_p
1469 && !face->underline_defaulted_p)
1470 {
1471 x_free_colors (f, &face->underline_color, 1);
1472 IF_DEBUG (--ncolors_allocated);
1473 }
82641697 1474
08dc08dc
GM
1475 if (face->overline_p
1476 && !face->overline_color_defaulted_p)
1477 {
1478 x_free_colors (f, &face->overline_color, 1);
1479 IF_DEBUG (--ncolors_allocated);
1480 }
82641697 1481
08dc08dc
GM
1482 if (face->strike_through_p
1483 && !face->strike_through_color_defaulted_p)
1484 {
1485 x_free_colors (f, &face->strike_through_color, 1);
1486 IF_DEBUG (--ncolors_allocated);
1487 }
82641697 1488
08dc08dc
GM
1489 if (face->box != FACE_NO_BOX
1490 && !face->box_color_defaulted_p)
1491 {
1492 x_free_colors (f, &face->box_color, 1);
1493 IF_DEBUG (--ncolors_allocated);
82641697 1494 }
08dc08dc
GM
1495
1496 UNBLOCK_INPUT;
2d764c78 1497#endif /* HAVE_X_WINDOWS */
c3cee013 1498}
08dc08dc 1499
c3cee013 1500#endif /* HAVE_WINDOW_SYSTEM */
82641697
GM
1501
1502
1503\f
1504/***********************************************************************
1505 XLFD Font Names
1506 ***********************************************************************/
1507
1508/* An enumerator for each field of an XLFD font name. */
1509
1510enum xlfd_field
1511{
1512 XLFD_FOUNDRY,
1513 XLFD_FAMILY,
1514 XLFD_WEIGHT,
1515 XLFD_SLANT,
1516 XLFD_SWIDTH,
1517 XLFD_ADSTYLE,
1518 XLFD_PIXEL_SIZE,
1519 XLFD_POINT_SIZE,
1520 XLFD_RESX,
1521 XLFD_RESY,
1522 XLFD_SPACING,
1523 XLFD_AVGWIDTH,
1524 XLFD_REGISTRY,
1525 XLFD_ENCODING,
1526 XLFD_LAST
1527};
1528
178c5d9c 1529/* An enumerator for each possible slant value of a font. Taken from
82641697
GM
1530 the XLFD specification. */
1531
1532enum xlfd_slant
1533{
1534 XLFD_SLANT_UNKNOWN,
1535 XLFD_SLANT_ROMAN,
1536 XLFD_SLANT_ITALIC,
1537 XLFD_SLANT_OBLIQUE,
1538 XLFD_SLANT_REVERSE_ITALIC,
1539 XLFD_SLANT_REVERSE_OBLIQUE,
1540 XLFD_SLANT_OTHER
1541};
1542
1543/* Relative font weight according to XLFD documentation. */
1544
1545enum xlfd_weight
1546{
1547 XLFD_WEIGHT_UNKNOWN,
1548 XLFD_WEIGHT_ULTRA_LIGHT, /* 10 */
1549 XLFD_WEIGHT_EXTRA_LIGHT, /* 20 */
1550 XLFD_WEIGHT_LIGHT, /* 30 */
1551 XLFD_WEIGHT_SEMI_LIGHT, /* 40: SemiLight, Book, ... */
1552 XLFD_WEIGHT_MEDIUM, /* 50: Medium, Normal, Regular, ... */
1553 XLFD_WEIGHT_SEMI_BOLD, /* 60: SemiBold, DemiBold, ... */
1554 XLFD_WEIGHT_BOLD, /* 70: Bold, ... */
1555 XLFD_WEIGHT_EXTRA_BOLD, /* 80: ExtraBold, Heavy, ... */
1556 XLFD_WEIGHT_ULTRA_BOLD /* 90: UltraBold, Black, ... */
1557};
1558
1559/* Relative proportionate width. */
1560
1561enum xlfd_swidth
1562{
1563 XLFD_SWIDTH_UNKNOWN,
1564 XLFD_SWIDTH_ULTRA_CONDENSED, /* 10 */
1565 XLFD_SWIDTH_EXTRA_CONDENSED, /* 20 */
1566 XLFD_SWIDTH_CONDENSED, /* 30: Condensed, Narrow, Compressed, ... */
1567 XLFD_SWIDTH_SEMI_CONDENSED, /* 40: semicondensed */
1568 XLFD_SWIDTH_MEDIUM, /* 50: Medium, Normal, Regular, ... */
1569 XLFD_SWIDTH_SEMI_EXPANDED, /* 60: SemiExpanded, DemiExpanded, ... */
1570 XLFD_SWIDTH_EXPANDED, /* 70: Expanded... */
1571 XLFD_SWIDTH_EXTRA_EXPANDED, /* 80: ExtraExpanded, Wide... */
1572 XLFD_SWIDTH_ULTRA_EXPANDED /* 90: UltraExpanded... */
1573};
1574
82641697
GM
1575/* Order by which font selection chooses fonts. The default values
1576 mean `first, find a best match for the font width, then for the
1577 font height, then for weight, then for slant.' This variable can be
1578 set via set-face-font-sort-order. */
1579
1580static int font_sort_order[4];
82641697 1581
2dee4c0b
KH
1582#ifdef HAVE_WINDOW_SYSTEM
1583
2dee4c0b 1584static enum font_property_index font_props_for_sorting[FONT_SIZE_INDEX];
82641697 1585
2dee4c0b 1586static int
971de7fb 1587compare_fonts_by_sort_order (const void *v1, const void *v2)
2dee4c0b
KH
1588{
1589 Lisp_Object font1 = *(Lisp_Object *) v1;
1590 Lisp_Object font2 = *(Lisp_Object *) v2;
1591 int i;
d5ab09cd 1592
2dee4c0b
KH
1593 for (i = 0; i < FONT_SIZE_INDEX; i++)
1594 {
1595 enum font_property_index idx = font_props_for_sorting[i];
1596 Lisp_Object val1 = AREF (font1, idx), val2 = AREF (font2, idx);
1597 int result;
82641697 1598
2dee4c0b
KH
1599 if (idx <= FONT_REGISTRY_INDEX)
1600 {
1601 if (STRINGP (val1))
42a5b22f 1602 result = STRINGP (val2) ? strcmp (SSDATA (val1), SSDATA (val2)) : -1;
2dee4c0b
KH
1603 else
1604 result = STRINGP (val2) ? 1 : 0;
1605 }
1606 else
1607 {
1608 if (INTEGERP (val1))
d311d28c
PE
1609 result = (INTEGERP (val2) && XINT (val1) >= XINT (val2)
1610 ? XINT (val1) > XINT (val2)
1611 : -1);
2dee4c0b
KH
1612 else
1613 result = INTEGERP (val2) ? 1 : 0;
1614 }
1615 if (result)
1616 return result;
1617 }
1618 return 0;
82641697
GM
1619}
1620
2dee4c0b
KH
1621DEFUN ("x-family-fonts", Fx_family_fonts, Sx_family_fonts, 0, 2, 0,
1622 doc: /* Return a list of available fonts of family FAMILY on FRAME.
1623If FAMILY is omitted or nil, list all families.
1624Otherwise, FAMILY must be a string, possibly containing wildcards
1625`?' and `*'.
1626If FRAME is omitted or nil, use the selected frame.
1627Each element of the result is a vector [FAMILY WIDTH POINT-SIZE WEIGHT
1628SLANT FIXED-P FULL REGISTRY-AND-ENCODING].
1629FAMILY is the font family name. POINT-SIZE is the size of the
1630font in 1/10 pt. WIDTH, WEIGHT, and SLANT are symbols describing the
1631width, weight and slant of the font. These symbols are the same as for
1632face attributes. FIXED-P is non-nil if the font is fixed-pitch.
1633FULL is the full name of the font, and REGISTRY-AND-ENCODING is a string
1634giving the registry and encoding of the font.
1635The result list is sorted according to the current setting of
1636the face font sort order. */)
5842a27b 1637 (Lisp_Object family, Lisp_Object frame)
2dee4c0b 1638{
022eef62 1639 Lisp_Object font_spec, list, *drivers, vec;
d311d28c
PE
1640 ptrdiff_t i, nfonts;
1641 EMACS_INT ndrivers;
2dee4c0b 1642 Lisp_Object result;
d311d28c 1643 USE_SAFE_ALLOCA;
82641697 1644
62057df6
KH
1645 if (NILP (frame))
1646 frame = selected_frame;
1647 CHECK_LIVE_FRAME (frame);
1648
1649 font_spec = Ffont_spec (0, NULL);
2dee4c0b
KH
1650 if (!NILP (family))
1651 {
1652 CHECK_STRING (family);
6b1f69f1 1653 font_parse_family_registry (family, Qnil, font_spec);
2dee4c0b 1654 }
022eef62
CY
1655
1656 list = font_list_entities (frame, font_spec);
1657 if (NILP (list))
2dee4c0b 1658 return Qnil;
022eef62
CY
1659
1660 /* Sort the font entities. */
1661 for (i = 0; i < 4; i++)
1662 switch (font_sort_order[i])
1663 {
1664 case XLFD_SWIDTH:
1665 font_props_for_sorting[i] = FONT_WIDTH_INDEX; break;
1666 case XLFD_POINT_SIZE:
1667 font_props_for_sorting[i] = FONT_SIZE_INDEX; break;
1668 case XLFD_WEIGHT:
1669 font_props_for_sorting[i] = FONT_WEIGHT_INDEX; break;
1670 default:
1671 font_props_for_sorting[i] = FONT_SLANT_INDEX; break;
1672 }
1673 font_props_for_sorting[i++] = FONT_FAMILY_INDEX;
1674 font_props_for_sorting[i++] = FONT_FOUNDRY_INDEX;
1675 font_props_for_sorting[i++] = FONT_ADSTYLE_INDEX;
1676 font_props_for_sorting[i++] = FONT_REGISTRY_INDEX;
1677
1678 ndrivers = XINT (Flength (list));
d311d28c 1679 SAFE_ALLOCA_LISP (drivers, ndrivers);
022eef62
CY
1680 for (i = 0; i < ndrivers; i++, list = XCDR (list))
1681 drivers[i] = XCAR (list);
1682 vec = Fvconcat (ndrivers, drivers);
1683 nfonts = ASIZE (vec);
1684
1685 qsort (XVECTOR (vec)->contents, nfonts, sizeof (Lisp_Object),
1686 compare_fonts_by_sort_order);
82641697 1687
2dee4c0b
KH
1688 result = Qnil;
1689 for (i = nfonts - 1; i >= 0; --i)
1690 {
1691 Lisp_Object font = AREF (vec, i);
1692 Lisp_Object v = Fmake_vector (make_number (8), Qnil);
1693 int point;
1694 Lisp_Object spacing;
1695
1696 ASET (v, 0, AREF (font, FONT_FAMILY_INDEX));
1697 ASET (v, 1, FONT_WIDTH_SYMBOLIC (font));
1698 point = PIXEL_TO_POINT (XINT (AREF (font, FONT_SIZE_INDEX)) * 10,
62057df6 1699 XFRAME (frame)->resy);
2dee4c0b
KH
1700 ASET (v, 2, make_number (point));
1701 ASET (v, 3, FONT_WEIGHT_SYMBOLIC (font));
1702 ASET (v, 4, FONT_SLANT_SYMBOLIC (font));
1703 spacing = Ffont_get (font, QCspacing);
1704 ASET (v, 5, (NILP (spacing) || EQ (spacing, Qp)) ? Qnil : Qt);
62057df6 1705 ASET (v, 6, Ffont_xlfd_name (font, Qnil));
2dee4c0b 1706 ASET (v, 7, AREF (font, FONT_REGISTRY_INDEX));
82641697 1707
2dee4c0b
KH
1708 result = Fcons (v, result);
1709 }
82641697 1710
d311d28c 1711 SAFE_FREE ();
2dee4c0b 1712 return result;
82641697
GM
1713}
1714
2dee4c0b
KH
1715DEFUN ("x-list-fonts", Fx_list_fonts, Sx_list_fonts, 1, 5, 0,
1716 doc: /* Return a list of the names of available fonts matching PATTERN.
1717If optional arguments FACE and FRAME are specified, return only fonts
1718the same size as FACE on FRAME.
21bdb81a
CY
1719
1720PATTERN should be a string containing a font name in the XLFD,
1721Fontconfig, or GTK format. A font name given in the XLFD format may
1722contain wildcard characters:
2dee4c0b
KH
1723 the * character matches any substring, and
1724 the ? character matches any single character.
1725 PATTERN is case-insensitive.
2dee4c0b
KH
1726
1727The return value is a list of strings, suitable as arguments to
d5ab09cd 1728`set-face-font'.
82641697 1729
2dee4c0b
KH
1730Fonts Emacs can't use may or may not be excluded
1731even if they match PATTERN and FACE.
1732The optional fourth argument MAXIMUM sets a limit on how many
1733fonts to match. The first MAXIMUM fonts are reported.
1734The optional fifth argument WIDTH, if specified, is a number of columns
1735occupied by a character of a font. In that case, return only fonts
1736the WIDTH times as wide as FACE on FRAME. */)
b5f03016
AS
1737 (Lisp_Object pattern, Lisp_Object face, Lisp_Object frame,
1738 Lisp_Object maximum, Lisp_Object width)
82641697 1739{
2dee4c0b 1740 struct frame *f;
1e9966ea 1741 int size, avgwidth IF_LINT (= 0);
82641697 1742
2dee4c0b
KH
1743 check_x ();
1744 CHECK_STRING (pattern);
82641697 1745
2dee4c0b
KH
1746 if (! NILP (maximum))
1747 CHECK_NATNUM (maximum);
82641697 1748
2dee4c0b
KH
1749 if (!NILP (width))
1750 CHECK_NUMBER (width);
82641697 1751
2dee4c0b
KH
1752 /* We can't simply call check_x_frame because this function may be
1753 called before any frame is created. */
1754 if (NILP (frame))
1755 frame = selected_frame;
1756 f = frame_or_selected_frame (frame, 2);
1757 if (! FRAME_WINDOW_P (f))
1758 {
1759 /* Perhaps we have not yet created any frame. */
1760 f = NULL;
1761 frame = Qnil;
1762 face = Qnil;
1763 }
82641697 1764
2dee4c0b 1765 /* Determine the width standard for comparison with the fonts we find. */
82641697 1766
2dee4c0b
KH
1767 if (NILP (face))
1768 size = 0;
1769 else
1770 {
1771 /* This is of limited utility since it works with character
1772 widths. Keep it for compatibility. --gerd. */
1773 int face_id = lookup_named_face (f, face, 0);
071048a3
PE
1774 struct face *width_face = (face_id < 0
1775 ? NULL
1776 : FACE_FROM_ID (f, face_id));
82641697 1777
071048a3 1778 if (width_face && width_face->font)
2dee4c0b 1779 {
071048a3
PE
1780 size = width_face->font->pixel_size;
1781 avgwidth = width_face->font->average_width;
2dee4c0b
KH
1782 }
1783 else
1784 {
1785 size = FRAME_FONT (f)->pixel_size;
1786 avgwidth = FRAME_FONT (f)->average_width;
1787 }
1788 if (!NILP (width))
1789 avgwidth *= XINT (width);
1790 }
82641697 1791
2dee4c0b
KH
1792 {
1793 Lisp_Object font_spec;
a4eec626 1794 Lisp_Object args[2], tail;
82641697 1795
2dee4c0b 1796 font_spec = font_spec_from_name (pattern);
21bdb81a
CY
1797 if (!FONTP (font_spec))
1798 signal_error ("Invalid font name", pattern);
1799
2dee4c0b
KH
1800 if (size)
1801 {
1802 Ffont_put (font_spec, QCsize, make_number (size));
1803 Ffont_put (font_spec, QCavgwidth, make_number (avgwidth));
1804 }
34e97272 1805 args[0] = Flist_fonts (font_spec, frame, maximum, font_spec);
a4eec626 1806 for (tail = args[0]; CONSP (tail); tail = XCDR (tail))
493dcf2c
KH
1807 {
1808 Lisp_Object font_entity;
1809
1810 font_entity = XCAR (tail);
1811 if ((NILP (AREF (font_entity, FONT_SIZE_INDEX))
1812 || XINT (AREF (font_entity, FONT_SIZE_INDEX)) == 0)
1813 && ! NILP (AREF (font_spec, FONT_SIZE_INDEX)))
1814 {
1815 /* This is a scalable font. For backward compatibility,
1816 we set the specified size. */
92470028 1817 font_entity = copy_font_spec (font_entity);
493dcf2c
KH
1818 ASET (font_entity, FONT_SIZE_INDEX,
1819 AREF (font_spec, FONT_SIZE_INDEX));
1820 }
1821 XSETCAR (tail, Ffont_xlfd_name (font_entity, Qnil));
1822 }
2dee4c0b
KH
1823 if (NILP (frame))
1824 /* We don't have to check fontsets. */
1825 return args[0];
1826 args[1] = list_fontsets (f, pattern, size);
1827 return Fnconc (2, args);
1828 }
82641697 1829}
178c5d9c 1830
2dee4c0b 1831#endif /* HAVE_WINDOW_SYSTEM */
82641697 1832
82641697
GM
1833\f
1834/***********************************************************************
1835 Lisp Faces
1836 ***********************************************************************/
1837
a08332c0
GM
1838/* Access face attributes of face LFACE, a Lisp vector. */
1839
1840#define LFACE_FAMILY(LFACE) AREF ((LFACE), LFACE_FAMILY_INDEX)
53aaf1e2 1841#define LFACE_FOUNDRY(LFACE) AREF ((LFACE), LFACE_FOUNDRY_INDEX)
a08332c0
GM
1842#define LFACE_HEIGHT(LFACE) AREF ((LFACE), LFACE_HEIGHT_INDEX)
1843#define LFACE_WEIGHT(LFACE) AREF ((LFACE), LFACE_WEIGHT_INDEX)
1844#define LFACE_SLANT(LFACE) AREF ((LFACE), LFACE_SLANT_INDEX)
1845#define LFACE_UNDERLINE(LFACE) AREF ((LFACE), LFACE_UNDERLINE_INDEX)
1846#define LFACE_INVERSE(LFACE) AREF ((LFACE), LFACE_INVERSE_INDEX)
1847#define LFACE_FOREGROUND(LFACE) AREF ((LFACE), LFACE_FOREGROUND_INDEX)
1848#define LFACE_BACKGROUND(LFACE) AREF ((LFACE), LFACE_BACKGROUND_INDEX)
1849#define LFACE_STIPPLE(LFACE) AREF ((LFACE), LFACE_STIPPLE_INDEX)
1850#define LFACE_SWIDTH(LFACE) AREF ((LFACE), LFACE_SWIDTH_INDEX)
1851#define LFACE_OVERLINE(LFACE) AREF ((LFACE), LFACE_OVERLINE_INDEX)
1852#define LFACE_STRIKE_THROUGH(LFACE) AREF ((LFACE), LFACE_STRIKE_THROUGH_INDEX)
1853#define LFACE_BOX(LFACE) AREF ((LFACE), LFACE_BOX_INDEX)
1854#define LFACE_FONT(LFACE) AREF ((LFACE), LFACE_FONT_INDEX)
1855#define LFACE_INHERIT(LFACE) AREF ((LFACE), LFACE_INHERIT_INDEX)
763bc839 1856#define LFACE_FONTSET(LFACE) AREF ((LFACE), LFACE_FONTSET_INDEX)
82641697 1857
73719eba 1858#if XASSERTS
82641697
GM
1859/* Non-zero if LFACE is a Lisp face. A Lisp face is a vector of size
1860 LFACE_VECTOR_SIZE which has the symbol `face' in slot 0. */
1861
1862#define LFACEP(LFACE) \
1863 (VECTORP (LFACE) \
77b37c05 1864 && ASIZE (LFACE) == LFACE_VECTOR_SIZE \
a08332c0 1865 && EQ (AREF (LFACE, 0), Qface))
73719eba 1866#endif
82641697 1867
178c5d9c 1868
82641697
GM
1869#if GLYPH_DEBUG
1870
1871/* Check consistency of Lisp face attribute vector ATTRS. */
1872
1873static void
7d7d0045 1874check_lface_attrs (Lisp_Object *attrs)
82641697
GM
1875{
1876 xassert (UNSPECIFIEDP (attrs[LFACE_FAMILY_INDEX])
2ff10663 1877 || IGNORE_DEFFACE_P (attrs[LFACE_FAMILY_INDEX])
82641697 1878 || STRINGP (attrs[LFACE_FAMILY_INDEX]));
53aaf1e2
KH
1879 xassert (UNSPECIFIEDP (attrs[LFACE_FOUNDRY_INDEX])
1880 || IGNORE_DEFFACE_P (attrs[LFACE_FOUNDRY_INDEX])
1881 || STRINGP (attrs[LFACE_FOUNDRY_INDEX]));
82641697 1882 xassert (UNSPECIFIEDP (attrs[LFACE_SWIDTH_INDEX])
2ff10663 1883 || IGNORE_DEFFACE_P (attrs[LFACE_SWIDTH_INDEX])
82641697
GM
1884 || SYMBOLP (attrs[LFACE_SWIDTH_INDEX]));
1885 xassert (UNSPECIFIEDP (attrs[LFACE_HEIGHT_INDEX])
2ff10663 1886 || IGNORE_DEFFACE_P (attrs[LFACE_HEIGHT_INDEX])
2c20458f
MB
1887 || INTEGERP (attrs[LFACE_HEIGHT_INDEX])
1888 || FLOATP (attrs[LFACE_HEIGHT_INDEX])
1889 || FUNCTIONP (attrs[LFACE_HEIGHT_INDEX]));
82641697 1890 xassert (UNSPECIFIEDP (attrs[LFACE_WEIGHT_INDEX])
2ff10663 1891 || IGNORE_DEFFACE_P (attrs[LFACE_WEIGHT_INDEX])
82641697
GM
1892 || SYMBOLP (attrs[LFACE_WEIGHT_INDEX]));
1893 xassert (UNSPECIFIEDP (attrs[LFACE_SLANT_INDEX])
2ff10663 1894 || IGNORE_DEFFACE_P (attrs[LFACE_SLANT_INDEX])
82641697
GM
1895 || SYMBOLP (attrs[LFACE_SLANT_INDEX]));
1896 xassert (UNSPECIFIEDP (attrs[LFACE_UNDERLINE_INDEX])
2ff10663 1897 || IGNORE_DEFFACE_P (attrs[LFACE_UNDERLINE_INDEX])
82641697 1898 || SYMBOLP (attrs[LFACE_UNDERLINE_INDEX])
9b0e3eba
AA
1899 || STRINGP (attrs[LFACE_UNDERLINE_INDEX])
1900 || CONSP (attrs[LFACE_UNDERLINE_INDEX]));
82641697 1901 xassert (UNSPECIFIEDP (attrs[LFACE_OVERLINE_INDEX])
2ff10663 1902 || IGNORE_DEFFACE_P (attrs[LFACE_OVERLINE_INDEX])
82641697
GM
1903 || SYMBOLP (attrs[LFACE_OVERLINE_INDEX])
1904 || STRINGP (attrs[LFACE_OVERLINE_INDEX]));
1905 xassert (UNSPECIFIEDP (attrs[LFACE_STRIKE_THROUGH_INDEX])
2ff10663 1906 || IGNORE_DEFFACE_P (attrs[LFACE_STRIKE_THROUGH_INDEX])
82641697
GM
1907 || SYMBOLP (attrs[LFACE_STRIKE_THROUGH_INDEX])
1908 || STRINGP (attrs[LFACE_STRIKE_THROUGH_INDEX]));
1909 xassert (UNSPECIFIEDP (attrs[LFACE_BOX_INDEX])
2ff10663 1910 || IGNORE_DEFFACE_P (attrs[LFACE_BOX_INDEX])
82641697
GM
1911 || SYMBOLP (attrs[LFACE_BOX_INDEX])
1912 || STRINGP (attrs[LFACE_BOX_INDEX])
1913 || INTEGERP (attrs[LFACE_BOX_INDEX])
1914 || CONSP (attrs[LFACE_BOX_INDEX]));
1915 xassert (UNSPECIFIEDP (attrs[LFACE_INVERSE_INDEX])
2ff10663 1916 || IGNORE_DEFFACE_P (attrs[LFACE_INVERSE_INDEX])
82641697
GM
1917 || SYMBOLP (attrs[LFACE_INVERSE_INDEX]));
1918 xassert (UNSPECIFIEDP (attrs[LFACE_FOREGROUND_INDEX])
2ff10663 1919 || IGNORE_DEFFACE_P (attrs[LFACE_FOREGROUND_INDEX])
82641697
GM
1920 || STRINGP (attrs[LFACE_FOREGROUND_INDEX]));
1921 xassert (UNSPECIFIEDP (attrs[LFACE_BACKGROUND_INDEX])
2ff10663 1922 || IGNORE_DEFFACE_P (attrs[LFACE_BACKGROUND_INDEX])
82641697 1923 || STRINGP (attrs[LFACE_BACKGROUND_INDEX]));
2c20458f 1924 xassert (UNSPECIFIEDP (attrs[LFACE_INHERIT_INDEX])
2ff10663 1925 || IGNORE_DEFFACE_P (attrs[LFACE_INHERIT_INDEX])
2c20458f
MB
1926 || NILP (attrs[LFACE_INHERIT_INDEX])
1927 || SYMBOLP (attrs[LFACE_INHERIT_INDEX])
1928 || CONSP (attrs[LFACE_INHERIT_INDEX]));
82641697
GM
1929#ifdef HAVE_WINDOW_SYSTEM
1930 xassert (UNSPECIFIEDP (attrs[LFACE_STIPPLE_INDEX])
2ff10663 1931 || IGNORE_DEFFACE_P (attrs[LFACE_STIPPLE_INDEX])
82641697 1932 || SYMBOLP (attrs[LFACE_STIPPLE_INDEX])
fef04523 1933 || !NILP (Fbitmap_spec_p (attrs[LFACE_STIPPLE_INDEX])));
39506348 1934 xassert (UNSPECIFIEDP (attrs[LFACE_FONT_INDEX])
2ff10663 1935 || IGNORE_DEFFACE_P (attrs[LFACE_FONT_INDEX])
2dee4c0b 1936 || FONTP (attrs[LFACE_FONT_INDEX]));
763bc839 1937 xassert (UNSPECIFIEDP (attrs[LFACE_FONTSET_INDEX])
f25e39b4
EZ
1938 || STRINGP (attrs[LFACE_FONTSET_INDEX])
1939 || NILP (attrs[LFACE_FONTSET_INDEX]));
82641697
GM
1940#endif
1941}
1942
1943
1944/* Check consistency of attributes of Lisp face LFACE (a Lisp vector). */
1945
1946static void
7d7d0045 1947check_lface (Lisp_Object lface)
82641697
GM
1948{
1949 if (!NILP (lface))
1950 {
1951 xassert (LFACEP (lface));
1952 check_lface_attrs (XVECTOR (lface)->contents);
1953 }
1954}
1955
1956#else /* GLYPH_DEBUG == 0 */
1957
1958#define check_lface_attrs(attrs) (void) 0
1959#define check_lface(lface) (void) 0
1960
1961#endif /* GLYPH_DEBUG == 0 */
1962
1963
a0a23346
MB
1964\f
1965/* Face-merge cycle checking. */
1966
f2cec7a9
MB
1967enum named_merge_point_kind
1968{
1969 NAMED_MERGE_POINT_NORMAL,
1970 NAMED_MERGE_POINT_REMAP
1971};
1972
a0a23346
MB
1973/* A `named merge point' is simply a point during face-merging where we
1974 look up a face by name. We keep a stack of which named lookups we're
1975 currently processing so that we can easily detect cycles, using a
1976 linked- list of struct named_merge_point structures, typically
1977 allocated on the stack frame of the named lookup functions which are
1978 active (so no consing is required). */
1979struct named_merge_point
1980{
1981 Lisp_Object face_name;
f2cec7a9 1982 enum named_merge_point_kind named_merge_point_kind;
a0a23346
MB
1983 struct named_merge_point *prev;
1984};
1985
1986
1987/* If a face merging cycle is detected for FACE_NAME, return 0,
1988 otherwise add NEW_NAMED_MERGE_POINT, which is initialized using
f2cec7a9
MB
1989 FACE_NAME and NAMED_MERGE_POINT_KIND, as the head of the linked list
1990 pointed to by NAMED_MERGE_POINTS, and return 1. */
a0a23346 1991
55d4c1b2 1992static inline int
a0a23346
MB
1993push_named_merge_point (struct named_merge_point *new_named_merge_point,
1994 Lisp_Object face_name,
f2cec7a9 1995 enum named_merge_point_kind named_merge_point_kind,
a0a23346
MB
1996 struct named_merge_point **named_merge_points)
1997{
1998 struct named_merge_point *prev;
1999
2000 for (prev = *named_merge_points; prev; prev = prev->prev)
2001 if (EQ (face_name, prev->face_name))
f2cec7a9
MB
2002 {
2003 if (prev->named_merge_point_kind == named_merge_point_kind)
2004 /* A cycle, so fail. */
2005 return 0;
2006 else if (prev->named_merge_point_kind == NAMED_MERGE_POINT_REMAP)
2007 /* A remap `hides ' any previous normal merge points
2008 (because the remap means that it's actually different face),
2009 so as we know the current merge point must be normal, we
2010 can just assume it's OK. */
2011 break;
2012 }
a0a23346
MB
2013
2014 new_named_merge_point->face_name = face_name;
f2cec7a9 2015 new_named_merge_point->named_merge_point_kind = named_merge_point_kind;
a0a23346
MB
2016 new_named_merge_point->prev = *named_merge_points;
2017
2018 *named_merge_points = new_named_merge_point;
2019
2020 return 1;
2021}
2022
2023\f
39506348 2024/* Resolve face name FACE_NAME. If FACE_NAME is a string, intern it
d1bf13b3
KS
2025 to make it a symbol. If FACE_NAME is an alias for another face,
2026 return that face's name.
2027
2028 Return default face in case of errors. */
c7ae3284
GM
2029
2030static Lisp_Object
971de7fb 2031resolve_face_name (Lisp_Object face_name, int signal_p)
c7ae3284 2032{
d1bf13b3
KS
2033 Lisp_Object orig_face;
2034 Lisp_Object tortoise, hare;
178c5d9c 2035
c7ae3284 2036 if (STRINGP (face_name))
42a5b22f 2037 face_name = intern (SSDATA (face_name));
c7ae3284 2038
d1bf13b3
KS
2039 if (NILP (face_name) || !SYMBOLP (face_name))
2040 return face_name;
2041
2042 orig_face = face_name;
2043 tortoise = hare = face_name;
2044
2045 while (1)
c7ae3284 2046 {
d1bf13b3
KS
2047 face_name = hare;
2048 hare = Fget (hare, Qface_alias);
2049 if (NILP (hare) || !SYMBOLP (hare))
c7ae3284 2050 break;
d1bf13b3
KS
2051
2052 face_name = hare;
2053 hare = Fget (hare, Qface_alias);
2054 if (NILP (hare) || !SYMBOLP (hare))
f3745204 2055 break;
d1bf13b3
KS
2056
2057 tortoise = Fget (tortoise, Qface_alias);
2058 if (EQ (hare, tortoise))
2059 {
2060 if (signal_p)
8009eb44 2061 xsignal1 (Qcircular_list, orig_face);
d1bf13b3
KS
2062 return Qdefault;
2063 }
c7ae3284
GM
2064 }
2065
2066 return face_name;
2067}
2068
2069
82641697 2070/* Return the face definition of FACE_NAME on frame F. F null means
45d9f1ef
GM
2071 return the definition for new frames. FACE_NAME may be a string or
2072 a symbol (apparently Emacs 20.2 allowed strings as face names in
f2cec7a9
MB
2073 face text properties; Ediff uses that). If SIGNAL_P is non-zero,
2074 signal an error if FACE_NAME is not a valid face name. If SIGNAL_P
2075 is zero, value is nil if FACE_NAME is not a valid face name. */
55d4c1b2 2076static inline Lisp_Object
b5f03016
AS
2077lface_from_face_name_no_resolve (struct frame *f, Lisp_Object face_name,
2078 int signal_p)
82641697 2079{
c7ae3284 2080 Lisp_Object lface;
82641697
GM
2081
2082 if (f)
2083 lface = assq_no_quit (face_name, f->face_alist);
2084 else
2085 lface = assq_no_quit (face_name, Vface_new_frame_defaults);
2086
2087 if (CONSP (lface))
2088 lface = XCDR (lface);
2089 else if (signal_p)
2090 signal_error ("Invalid face", face_name);
2091
2092 check_lface (lface);
f2cec7a9 2093
82641697
GM
2094 return lface;
2095}
2096
f2cec7a9
MB
2097/* Return the face definition of FACE_NAME on frame F. F null means
2098 return the definition for new frames. FACE_NAME may be a string or
2099 a symbol (apparently Emacs 20.2 allowed strings as face names in
2100 face text properties; Ediff uses that). If FACE_NAME is an alias
2101 for another face, return that face's definition. If SIGNAL_P is
2102 non-zero, signal an error if FACE_NAME is not a valid face name.
2103 If SIGNAL_P is zero, value is nil if FACE_NAME is not a valid face
2104 name. */
55d4c1b2 2105static inline Lisp_Object
971de7fb 2106lface_from_face_name (struct frame *f, Lisp_Object face_name, int signal_p)
f2cec7a9
MB
2107{
2108 face_name = resolve_face_name (face_name, signal_p);
2109 return lface_from_face_name_no_resolve (f, face_name, signal_p);
2110}
2111
82641697 2112
e7d7fd8c
MB
2113/* Get face attributes of face FACE_NAME from frame-local faces on
2114 frame F. Store the resulting attributes in ATTRS which must point
2115 to a vector of Lisp_Objects of size LFACE_VECTOR_SIZE. If SIGNAL_P
2116 is non-zero, signal an error if FACE_NAME does not name a face.
2117 Otherwise, value is zero if FACE_NAME is not a face. */
2118
55d4c1b2 2119static inline int
b5f03016
AS
2120get_lface_attributes_no_remap (struct frame *f, Lisp_Object face_name,
2121 Lisp_Object *attrs, int signal_p)
e7d7fd8c
MB
2122{
2123 Lisp_Object lface;
e7d7fd8c 2124
f2cec7a9
MB
2125 lface = lface_from_face_name_no_resolve (f, face_name, signal_p);
2126
2127 if (! NILP (lface))
72af86bd
AS
2128 memcpy (attrs, XVECTOR (lface)->contents,
2129 LFACE_VECTOR_SIZE * sizeof *attrs);
f2cec7a9
MB
2130
2131 return !NILP (lface);
2132}
2133
2134/* Get face attributes of face FACE_NAME from frame-local faces on frame
2135 F. Store the resulting attributes in ATTRS which must point to a
2136 vector of Lisp_Objects of size LFACE_VECTOR_SIZE. If FACE_NAME is an
2137 alias for another face, use that face's definition. If SIGNAL_P is
2138 non-zero, signal an error if FACE_NAME does not name a face.
2139 Otherwise, value is zero if FACE_NAME is not a face. */
2140
55d4c1b2 2141static inline int
b5f03016
AS
2142get_lface_attributes (struct frame *f, Lisp_Object face_name,
2143 Lisp_Object *attrs, int signal_p,
2144 struct named_merge_point *named_merge_points)
f2cec7a9
MB
2145{
2146 Lisp_Object face_remapping;
2147
2148 face_name = resolve_face_name (face_name, signal_p);
2149
2150 /* See if SYMBOL has been remapped to some other face (usually this
2151 is done buffer-locally). */
2152 face_remapping = assq_no_quit (face_name, Vface_remapping_alist);
2153 if (CONSP (face_remapping))
e7d7fd8c 2154 {
f2cec7a9
MB
2155 struct named_merge_point named_merge_point;
2156
2157 if (push_named_merge_point (&named_merge_point,
2158 face_name, NAMED_MERGE_POINT_REMAP,
2159 &named_merge_points))
2160 {
2161 int i;
2162
2163 for (i = 1; i < LFACE_VECTOR_SIZE; ++i)
2164 attrs[i] = Qunspecified;
2165
2166 return merge_face_ref (f, XCDR (face_remapping), attrs,
2167 signal_p, named_merge_points);
2168 }
e7d7fd8c 2169 }
e7d7fd8c 2170
f2cec7a9
MB
2171 /* Default case, no remapping. */
2172 return get_lface_attributes_no_remap (f, face_name, attrs, signal_p);
e7d7fd8c
MB
2173}
2174
2175
82641697
GM
2176/* Non-zero if all attributes in face attribute vector ATTRS are
2177 specified, i.e. are non-nil. */
2178
2179static int
971de7fb 2180lface_fully_specified_p (Lisp_Object *attrs)
82641697
GM
2181{
2182 int i;
2183
2184 for (i = 1; i < LFACE_VECTOR_SIZE; ++i)
2dee4c0b 2185 if (i != LFACE_FONT_INDEX && i != LFACE_INHERIT_INDEX)
9e2a2647 2186 if ((UNSPECIFIEDP (attrs[i]) || IGNORE_DEFFACE_P (attrs[i])))
b5f03016 2187 break;
82641697
GM
2188
2189 return i == LFACE_VECTOR_SIZE;
2190}
2191
c3cee013 2192#ifdef HAVE_WINDOW_SYSTEM
82641697 2193
2dee4c0b
KH
2194/* Set font-related attributes of Lisp face LFACE from FONT-OBJECT.
2195 If FORCE_P is zero, set only unspecified attributes of LFACE. The
2196 exception is `font' attribute. It is set to FONT_OBJECT regardless
2197 of FORCE_P. */
178c5d9c 2198
82641697 2199static int
b5f03016
AS
2200set_lface_from_font (struct frame *f, Lisp_Object lface,
2201 Lisp_Object font_object, int force_p)
f4d3bea3 2202{
f4d3bea3 2203 Lisp_Object val;
2dee4c0b 2204 struct font *font = XFONT_OBJECT (font_object);
f4d3bea3
KH
2205
2206 /* Set attributes only if unspecified, otherwise face defaults for
2207 new frames would never take effect. If the font doesn't have a
2208 specific property, set a normal value for that. */
2209
2210 if (force_p || UNSPECIFIEDP (LFACE_FAMILY (lface)))
2211 {
2dee4c0b 2212 Lisp_Object family = AREF (font_object, FONT_FAMILY_INDEX);
f4d3bea3 2213
53aaf1e2
KH
2214 LFACE_FAMILY (lface) = SYMBOL_NAME (family);
2215 }
2216
2217 if (force_p || UNSPECIFIEDP (LFACE_FOUNDRY (lface)))
2218 {
2219 Lisp_Object foundry = AREF (font_object, FONT_FOUNDRY_INDEX);
2220
2221 LFACE_FOUNDRY (lface) = SYMBOL_NAME (foundry);
f4d3bea3
KH
2222 }
2223
2224 if (force_p || UNSPECIFIEDP (LFACE_HEIGHT (lface)))
2225 {
2dee4c0b 2226 int pt = PIXEL_TO_POINT (font->pixel_size * 10, f->resy);
f4d3bea3
KH
2227
2228 xassert (pt > 0);
2229 LFACE_HEIGHT (lface) = make_number (pt);
2230 }
2231
f4d3bea3
KH
2232 if (force_p || UNSPECIFIEDP (LFACE_WEIGHT (lface)))
2233 {
2dee4c0b
KH
2234 val = FONT_WEIGHT_FOR_FACE (font_object);
2235 LFACE_WEIGHT (lface) = ! NILP (val) ? val :Qnormal;
f4d3bea3
KH
2236 }
2237 if (force_p || UNSPECIFIEDP (LFACE_SLANT (lface)))
2238 {
2dee4c0b
KH
2239 val = FONT_SLANT_FOR_FACE (font_object);
2240 LFACE_SLANT (lface) = ! NILP (val) ? val : Qnormal;
f4d3bea3
KH
2241 }
2242 if (force_p || UNSPECIFIEDP (LFACE_SWIDTH (lface)))
2243 {
2dee4c0b
KH
2244 val = FONT_WIDTH_FOR_FACE (font_object);
2245 LFACE_SWIDTH (lface) = ! NILP (val) ? val : Qnormal;
f4d3bea3
KH
2246 }
2247
2dee4c0b
KH
2248 LFACE_FONT (lface) = font_object;
2249 return 1;
f4d3bea3 2250}
f4d3bea3 2251
c3cee013 2252#endif /* HAVE_WINDOW_SYSTEM */
82641697
GM
2253
2254
2c20458f
MB
2255/* Merges the face height FROM with the face height TO, and returns the
2256 merged height. If FROM is an invalid height, then INVALID is
cdfaafa9
MB
2257 returned instead. FROM and TO may be either absolute face heights or
2258 `relative' heights; the returned value is always an absolute height
fe69cf00 2259 unless both FROM and TO are relative. */
2c20458f 2260
6b463e58 2261static Lisp_Object
971de7fb 2262merge_face_heights (Lisp_Object from, Lisp_Object to, Lisp_Object invalid)
2c20458f 2263{
cdfaafa9 2264 Lisp_Object result = invalid;
2c20458f
MB
2265
2266 if (INTEGERP (from))
cdfaafa9
MB
2267 /* FROM is absolute, just use it as is. */
2268 result = from;
2269 else if (FLOATP (from))
2270 /* FROM is a scale, use it to adjust TO. */
2271 {
2272 if (INTEGERP (to))
2273 /* relative X absolute => absolute */
d311d28c 2274 result = make_number (XFLOAT_DATA (from) * XINT (to));
cdfaafa9
MB
2275 else if (FLOATP (to))
2276 /* relative X relative => relative */
2277 result = make_float (XFLOAT_DATA (from) * XFLOAT_DATA (to));
a0a23346
MB
2278 else if (UNSPECIFIEDP (to))
2279 result = from;
2c20458f 2280 }
2c20458f 2281 else if (FUNCTIONP (from))
cdfaafa9 2282 /* FROM is a function, which use to adjust TO. */
2c20458f
MB
2283 {
2284 /* Call function with current height as argument.
2285 From is the new height. */
cdfaafa9 2286 Lisp_Object args[2];
2c20458f
MB
2287
2288 args[0] = from;
2289 args[1] = to;
cdfaafa9 2290 result = safe_call (2, args);
2c20458f 2291
cdfaafa9
MB
2292 /* Ensure that if TO was absolute, so is the result. */
2293 if (INTEGERP (to) && !INTEGERP (result))
2294 result = invalid;
2c20458f
MB
2295 }
2296
cdfaafa9 2297 return result;
2c20458f
MB
2298}
2299
2300
2301/* Merge two Lisp face attribute vectors on frame F, FROM and TO, and
613fa7f2 2302 store the resulting attributes in TO, which must be already be
e7d7fd8c
MB
2303 completely specified and contain only absolute attributes. Every
2304 specified attribute of FROM overrides the corresponding attribute of
2305 TO; relative attributes in FROM are merged with the absolute value in
2306 TO and replace it. NAMED_MERGE_POINTS is used internally to detect
f2cec7a9
MB
2307 loops in face inheritance/remapping; it should be 0 when called from
2308 other places. */
82641697 2309
55d4c1b2 2310static inline void
b5f03016
AS
2311merge_face_vectors (struct frame *f, Lisp_Object *from, Lisp_Object *to,
2312 struct named_merge_point *named_merge_points)
82641697
GM
2313{
2314 int i;
2c20458f
MB
2315
2316 /* If FROM inherits from some other faces, merge their attributes into
2317 TO before merging FROM's direct attributes. Note that an :inherit
2318 attribute of `unspecified' is the same as one of nil; we never
2319 merge :inherit attributes, so nil is more correct, but lots of
2320 other code uses `unspecified' as a generic value for face attributes. */
2321 if (!UNSPECIFIEDP (from[LFACE_INHERIT_INDEX])
2322 && !NILP (from[LFACE_INHERIT_INDEX]))
a0a23346 2323 merge_face_ref (f, from[LFACE_INHERIT_INDEX], to, 0, named_merge_points);
2c20458f 2324
2dee4c0b
KH
2325 i = LFACE_FONT_INDEX;
2326 if (!UNSPECIFIEDP (from[i]))
2327 {
2328 if (!UNSPECIFIEDP (to[i]))
92470028 2329 to[i] = merge_font_spec (from[i], to[i]);
2dee4c0b 2330 else
92470028 2331 to[i] = copy_font_spec (from[i]);
89dc9a8e
KH
2332 if (! NILP (AREF (to[i], FONT_FOUNDRY_INDEX)))
2333 to[LFACE_FOUNDRY_INDEX] = SYMBOL_NAME (AREF (to[i], FONT_FOUNDRY_INDEX));
2334 if (! NILP (AREF (to[i], FONT_FAMILY_INDEX)))
2335 to[LFACE_FAMILY_INDEX] = SYMBOL_NAME (AREF (to[i], FONT_FAMILY_INDEX));
2336 if (! NILP (AREF (to[i], FONT_WEIGHT_INDEX)))
2337 to[LFACE_WEIGHT_INDEX] = FONT_WEIGHT_FOR_FACE (to[i]);
2338 if (! NILP (AREF (to[i], FONT_SLANT_INDEX)))
2339 to[LFACE_SLANT_INDEX] = FONT_SLANT_FOR_FACE (to[i]);
2340 if (! NILP (AREF (to[i], FONT_WIDTH_INDEX)))
2341 to[LFACE_SWIDTH_INDEX] = FONT_WIDTH_FOR_FACE (to[i]);
2dee4c0b
KH
2342 ASET (to[i], FONT_SIZE_INDEX, Qnil);
2343 }
87188200 2344
82641697
GM
2345 for (i = 1; i < LFACE_VECTOR_SIZE; ++i)
2346 if (!UNSPECIFIEDP (from[i]))
ab8469eb
PJ
2347 {
2348 if (i == LFACE_HEIGHT_INDEX && !INTEGERP (from[i]))
2dee4c0b
KH
2349 {
2350 to[i] = merge_face_heights (from[i], to[i], to[i]);
2351 font_clear_prop (to, FONT_SIZE_INDEX);
2352 }
89dc9a8e
KH
2353 else if (i != LFACE_FONT_INDEX
2354 && ! EQ (to[i], from[i]))
2dee4c0b
KH
2355 {
2356 to[i] = from[i];
2357 if (i >= LFACE_FAMILY_INDEX && i <=LFACE_SLANT_INDEX)
2358 font_clear_prop (to,
2359 (i == LFACE_FAMILY_INDEX ? FONT_FAMILY_INDEX
53aaf1e2 2360 : i == LFACE_FOUNDRY_INDEX ? FONT_FOUNDRY_INDEX
2dee4c0b
KH
2361 : i == LFACE_SWIDTH_INDEX ? FONT_WIDTH_INDEX
2362 : i == LFACE_HEIGHT_INDEX ? FONT_SIZE_INDEX
2363 : i == LFACE_WEIGHT_INDEX ? FONT_WEIGHT_INDEX
2364 : FONT_SLANT_INDEX));
2365 }
ab8469eb 2366 }
2c20458f
MB
2367
2368 /* TO is always an absolute face, which should inherit from nothing.
2369 We blindly copy the :inherit attribute above and fix it up here. */
2370 to[LFACE_INHERIT_INDEX] = Qnil;
2371}
2372
a0a23346
MB
2373/* Merge the named face FACE_NAME on frame F, into the vector of face
2374 attributes TO. NAMED_MERGE_POINTS is used to detect loops in face
2375 inheritance. Returns true if FACE_NAME is a valid face name and
2376 merging succeeded. */
6288c62f 2377
a0a23346 2378static int
b5f03016
AS
2379merge_named_face (struct frame *f, Lisp_Object face_name, Lisp_Object *to,
2380 struct named_merge_point *named_merge_points)
2c20458f 2381{
a0a23346 2382 struct named_merge_point named_merge_point;
2c20458f 2383
a0a23346 2384 if (push_named_merge_point (&named_merge_point,
f2cec7a9
MB
2385 face_name, NAMED_MERGE_POINT_NORMAL,
2386 &named_merge_points))
2c20458f 2387 {
e1e419ec 2388 struct gcpro gcpro1;
e7d7fd8c 2389 Lisp_Object from[LFACE_VECTOR_SIZE];
f2cec7a9 2390 int ok = get_lface_attributes (f, face_name, from, 0, named_merge_points);
2c20458f 2391
e7d7fd8c
MB
2392 if (ok)
2393 {
2394 GCPRO1 (named_merge_point.face_name);
2395 merge_face_vectors (f, from, to, named_merge_points);
2396 UNGCPRO;
2397 }
2398
2399 return ok;
2c20458f 2400 }
a0a23346
MB
2401 else
2402 return 0;
82641697
GM
2403}
2404
2405
a0a23346
MB
2406/* Merge face attributes from the lisp `face reference' FACE_REF on
2407 frame F into the face attribute vector TO. If ERR_MSGS is non-zero,
2408 problems with FACE_REF cause an error message to be shown. Return
2409 non-zero if no errors occurred (regardless of the value of ERR_MSGS).
2410 NAMED_MERGE_POINTS is used to detect loops in face inheritance or
2411 list structure; it may be 0 for most callers.
2412
2413 FACE_REF may be a single face specification or a list of such
2414 specifications. Each face specification can be:
82641697
GM
2415
2416 1. A symbol or string naming a Lisp face.
2417
2418 2. A property list of the form (KEYWORD VALUE ...) where each
2419 KEYWORD is a face attribute name, and value is an appropriate value
2420 for that attribute.
2421
2422 3. Conses or the form (FOREGROUND-COLOR . COLOR) or
2423 (BACKGROUND-COLOR . COLOR) where COLOR is a color name. This is
2424 for compatibility with 20.2.
2425
2426 Face specifications earlier in lists take precedence over later
2427 specifications. */
178c5d9c 2428
a0a23346 2429static int
b5f03016
AS
2430merge_face_ref (struct frame *f, Lisp_Object face_ref, Lisp_Object *to,
2431 int err_msgs, struct named_merge_point *named_merge_points)
82641697 2432{
a0a23346
MB
2433 int ok = 1; /* Succeed without an error? */
2434
2435 if (CONSP (face_ref))
82641697 2436 {
a0a23346 2437 Lisp_Object first = XCAR (face_ref);
178c5d9c 2438
82641697
GM
2439 if (EQ (first, Qforeground_color)
2440 || EQ (first, Qbackground_color))
2441 {
2442 /* One of (FOREGROUND-COLOR . COLOR) or (BACKGROUND-COLOR
2443 . COLOR). COLOR must be a string. */
a0a23346 2444 Lisp_Object color_name = XCDR (face_ref);
82641697
GM
2445 Lisp_Object color = first;
2446
2447 if (STRINGP (color_name))
2448 {
2449 if (EQ (color, Qforeground_color))
2450 to[LFACE_FOREGROUND_INDEX] = color_name;
2451 else
2452 to[LFACE_BACKGROUND_INDEX] = color_name;
2453 }
2454 else
a0a23346
MB
2455 {
2456 if (err_msgs)
2457 add_to_log ("Invalid face color", color_name, Qnil);
2458 ok = 0;
2459 }
82641697
GM
2460 }
2461 else if (SYMBOLP (first)
d5db4077 2462 && *SDATA (SYMBOL_NAME (first)) == ':')
82641697
GM
2463 {
2464 /* Assume this is the property list form. */
a0a23346 2465 while (CONSP (face_ref) && CONSP (XCDR (face_ref)))
82641697 2466 {
a0a23346
MB
2467 Lisp_Object keyword = XCAR (face_ref);
2468 Lisp_Object value = XCAR (XCDR (face_ref));
2469 int err = 0;
82641697 2470
d9639b25
RS
2471 /* Specifying `unspecified' is a no-op. */
2472 if (EQ (value, Qunspecified))
2473 ;
2474 else if (EQ (keyword, QCfamily))
82641697
GM
2475 {
2476 if (STRINGP (value))
2dee4c0b
KH
2477 {
2478 to[LFACE_FAMILY_INDEX] = value;
2479 font_clear_prop (to, FONT_FAMILY_INDEX);
2480 }
82641697 2481 else
a0a23346 2482 err = 1;
82641697 2483 }
53aaf1e2
KH
2484 else if (EQ (keyword, QCfoundry))
2485 {
2486 if (STRINGP (value))
2487 {
2488 to[LFACE_FOUNDRY_INDEX] = value;
2489 font_clear_prop (to, FONT_FOUNDRY_INDEX);
2490 }
2491 else
2492 err = 1;
2493 }
82641697
GM
2494 else if (EQ (keyword, QCheight))
2495 {
2c20458f 2496 Lisp_Object new_height =
e1e419ec 2497 merge_face_heights (value, to[LFACE_HEIGHT_INDEX], Qnil);
2c20458f 2498
a0a23346 2499 if (! NILP (new_height))
2dee4c0b
KH
2500 {
2501 to[LFACE_HEIGHT_INDEX] = new_height;
2502 font_clear_prop (to, FONT_SIZE_INDEX);
2503 }
a0a23346
MB
2504 else
2505 err = 1;
82641697
GM
2506 }
2507 else if (EQ (keyword, QCweight))
2508 {
2dee4c0b
KH
2509 if (SYMBOLP (value) && FONT_WEIGHT_NAME_NUMERIC (value) >= 0)
2510 {
2511 to[LFACE_WEIGHT_INDEX] = value;
2512 font_clear_prop (to, FONT_WEIGHT_INDEX);
2513 }
82641697 2514 else
a0a23346 2515 err = 1;
82641697
GM
2516 }
2517 else if (EQ (keyword, QCslant))
2518 {
2dee4c0b
KH
2519 if (SYMBOLP (value) && FONT_SLANT_NAME_NUMERIC (value) >= 0)
2520 {
2521 to[LFACE_SLANT_INDEX] = value;
2522 font_clear_prop (to, FONT_SLANT_INDEX);
2523 }
82641697 2524 else
a0a23346 2525 err = 1;
82641697
GM
2526 }
2527 else if (EQ (keyword, QCunderline))
2528 {
2529 if (EQ (value, Qt)
2530 || NILP (value)
9b0e3eba
AA
2531 || STRINGP (value)
2532 || CONSP (value))
82641697
GM
2533 to[LFACE_UNDERLINE_INDEX] = value;
2534 else
a0a23346 2535 err = 1;
82641697
GM
2536 }
2537 else if (EQ (keyword, QCoverline))
2538 {
2539 if (EQ (value, Qt)
2540 || NILP (value)
2541 || STRINGP (value))
2542 to[LFACE_OVERLINE_INDEX] = value;
2543 else
a0a23346 2544 err = 1;
82641697
GM
2545 }
2546 else if (EQ (keyword, QCstrike_through))
2547 {
2548 if (EQ (value, Qt)
2549 || NILP (value)
2550 || STRINGP (value))
2551 to[LFACE_STRIKE_THROUGH_INDEX] = value;
2552 else
a0a23346 2553 err = 1;
82641697
GM
2554 }
2555 else if (EQ (keyword, QCbox))
2556 {
2557 if (EQ (value, Qt))
2558 value = make_number (1);
2559 if (INTEGERP (value)
2560 || STRINGP (value)
2561 || CONSP (value)
2562 || NILP (value))
2563 to[LFACE_BOX_INDEX] = value;
2564 else
a0a23346 2565 err = 1;
82641697
GM
2566 }
2567 else if (EQ (keyword, QCinverse_video)
2568 || EQ (keyword, QCreverse_video))
2569 {
2570 if (EQ (value, Qt) || NILP (value))
2571 to[LFACE_INVERSE_INDEX] = value;
2572 else
a0a23346 2573 err = 1;
82641697
GM
2574 }
2575 else if (EQ (keyword, QCforeground))
2576 {
2577 if (STRINGP (value))
2578 to[LFACE_FOREGROUND_INDEX] = value;
2579 else
a0a23346 2580 err = 1;
82641697
GM
2581 }
2582 else if (EQ (keyword, QCbackground))
2583 {
2584 if (STRINGP (value))
2585 to[LFACE_BACKGROUND_INDEX] = value;
2586 else
a0a23346 2587 err = 1;
82641697
GM
2588 }
2589 else if (EQ (keyword, QCstipple))
2590 {
5e617bc2 2591#if defined (HAVE_X_WINDOWS) || defined (HAVE_NS)
fef04523 2592 Lisp_Object pixmap_p = Fbitmap_spec_p (value);
82641697
GM
2593 if (!NILP (pixmap_p))
2594 to[LFACE_STIPPLE_INDEX] = value;
2595 else
a0a23346 2596 err = 1;
82641697
GM
2597#endif
2598 }
2599 else if (EQ (keyword, QCwidth))
2600 {
2dee4c0b
KH
2601 if (SYMBOLP (value) && FONT_WIDTH_NAME_NUMERIC (value) >= 0)
2602 {
2603 to[LFACE_SWIDTH_INDEX] = value;
2604 font_clear_prop (to, FONT_WIDTH_INDEX);
2605 }
82641697 2606 else
a0a23346 2607 err = 1;
82641697 2608 }
2c20458f
MB
2609 else if (EQ (keyword, QCinherit))
2610 {
a0a23346
MB
2611 /* This is not really very useful; it's just like a
2612 normal face reference. */
2613 if (! merge_face_ref (f, value, to,
2614 err_msgs, named_merge_points))
2615 err = 1;
2c20458f 2616 }
82641697 2617 else
a0a23346 2618 err = 1;
82641697 2619
a0a23346
MB
2620 if (err)
2621 {
2622 add_to_log ("Invalid face attribute %S %S", keyword, value);
2623 ok = 0;
2624 }
82641697 2625
a0a23346 2626 face_ref = XCDR (XCDR (face_ref));
82641697
GM
2627 }
2628 }
2629 else
2630 {
a0a23346
MB
2631 /* This is a list of face refs. Those at the beginning of the
2632 list take precedence over what follows, so we have to merge
2633 from the end backwards. */
2634 Lisp_Object next = XCDR (face_ref);
2635
2636 if (! NILP (next))
2637 ok = merge_face_ref (f, next, to, err_msgs, named_merge_points);
2638
2639 if (! merge_face_ref (f, first, to, err_msgs, named_merge_points))
2640 ok = 0;
82641697
GM
2641 }
2642 }
2643 else
2644 {
a0a23346
MB
2645 /* FACE_REF ought to be a face name. */
2646 ok = merge_named_face (f, face_ref, to, named_merge_points);
2647 if (!ok && err_msgs)
2648 add_to_log ("Invalid face reference: %s", face_ref, Qnil);
82641697 2649 }
a0a23346
MB
2650
2651 return ok;
82641697
GM
2652}
2653
2654
2655DEFUN ("internal-make-lisp-face", Finternal_make_lisp_face,
2656 Sinternal_make_lisp_face, 1, 2, 0,
7ee72033 2657 doc: /* Make FACE, a symbol, a Lisp face with all attributes nil.
228299fa
GM
2658If FACE was not known as a face before, create a new one.
2659If optional argument FRAME is specified, make a frame-local face
2660for that frame. Otherwise operate on the global face definition.
7ee72033 2661Value is a vector of face attributes. */)
5842a27b 2662 (Lisp_Object face, Lisp_Object frame)
82641697
GM
2663{
2664 Lisp_Object global_lface, lface;
2665 struct frame *f;
2666 int i;
2667
b7826503 2668 CHECK_SYMBOL (face);
82641697 2669 global_lface = lface_from_face_name (NULL, face, 0);
178c5d9c 2670
82641697
GM
2671 if (!NILP (frame))
2672 {
b7826503 2673 CHECK_LIVE_FRAME (frame);
82641697
GM
2674 f = XFRAME (frame);
2675 lface = lface_from_face_name (f, face, 0);
2676 }
2677 else
2678 f = NULL, lface = Qnil;
2679
2680 /* Add a global definition if there is none. */
2681 if (NILP (global_lface))
2682 {
2683 global_lface = Fmake_vector (make_number (LFACE_VECTOR_SIZE),
2684 Qunspecified);
dfae5f9a 2685 ASET (global_lface, 0, Qface);
178c5d9c 2686 Vface_new_frame_defaults = Fcons (Fcons (face, global_lface),
82641697 2687 Vface_new_frame_defaults);
178c5d9c 2688
82641697
GM
2689 /* Assign the new Lisp face a unique ID. The mapping from Lisp
2690 face id to Lisp face is given by the vector lface_id_to_name.
2691 The mapping from Lisp face to Lisp face id is given by the
2692 property `face' of the Lisp face name. */
2693 if (next_lface_id == lface_id_to_name_size)
0065d054 2694 lface_id_to_name =
d311d28c 2695 xpalloc (lface_id_to_name, &lface_id_to_name_size, 1, MAX_FACE_ID,
0065d054 2696 sizeof *lface_id_to_name);
178c5d9c 2697
82641697
GM
2698 lface_id_to_name[next_lface_id] = face;
2699 Fput (face, Qface, make_number (next_lface_id));
2700 ++next_lface_id;
2701 }
2702 else if (f == NULL)
2703 for (i = 1; i < LFACE_VECTOR_SIZE; ++i)
dfae5f9a 2704 ASET (global_lface, i, Qunspecified);
178c5d9c 2705
82641697
GM
2706 /* Add a frame-local definition. */
2707 if (f)
2708 {
2709 if (NILP (lface))
2710 {
2711 lface = Fmake_vector (make_number (LFACE_VECTOR_SIZE),
2712 Qunspecified);
dfae5f9a 2713 ASET (lface, 0, Qface);
82641697
GM
2714 f->face_alist = Fcons (Fcons (face, lface), f->face_alist);
2715 }
2716 else
2717 for (i = 1; i < LFACE_VECTOR_SIZE; ++i)
dfae5f9a 2718 ASET (lface, i, Qunspecified);
82641697
GM
2719 }
2720 else
2721 lface = global_lface;
2722
33565969
RS
2723 /* Changing a named face means that all realized faces depending on
2724 that face are invalid. Since we cannot tell which realized faces
2725 depend on the face, make sure they are all removed. This is done
2726 by incrementing face_change_count. The next call to
2727 init_iterator will then free realized faces. */
46b00436
KS
2728 if (NILP (Fget (face, Qface_no_inherit)))
2729 {
2730 ++face_change_count;
2731 ++windows_or_buffers_changed;
2732 }
33565969 2733
82641697
GM
2734 xassert (LFACEP (lface));
2735 check_lface (lface);
2736 return lface;
2737}
2738
2739
2740DEFUN ("internal-lisp-face-p", Finternal_lisp_face_p,
2741 Sinternal_lisp_face_p, 1, 2, 0,
7ee72033 2742 doc: /* Return non-nil if FACE names a face.
b84ce3c5 2743FACE should be a symbol or string.
1d256714 2744If optional second argument FRAME is non-nil, check for the
228299fa 2745existence of a frame-local face with name FACE on that frame.
7ee72033 2746Otherwise check for the existence of a global face. */)
5842a27b 2747 (Lisp_Object face, Lisp_Object frame)
82641697
GM
2748{
2749 Lisp_Object lface;
178c5d9c 2750
65fddb74
JB
2751 face = resolve_face_name (face, 1);
2752
82641697
GM
2753 if (!NILP (frame))
2754 {
b7826503 2755 CHECK_LIVE_FRAME (frame);
82641697
GM
2756 lface = lface_from_face_name (XFRAME (frame), face, 0);
2757 }
2758 else
2759 lface = lface_from_face_name (NULL, face, 0);
2760
2761 return lface;
2762}
2763
2764
2765DEFUN ("internal-copy-lisp-face", Finternal_copy_lisp_face,
2766 Sinternal_copy_lisp_face, 4, 4, 0,
7ee72033 2767 doc: /* Copy face FROM to TO.
5e9bab6f
RS
2768If FRAME is t, copy the global face definition of FROM.
2769Otherwise, copy the frame-local definition of FROM on FRAME.
2770If NEW-FRAME is a frame, copy that data into the frame-local
d5ab09cd 2771definition of TO on NEW-FRAME. If NEW-FRAME is nil,
5e9bab6f 2772FRAME controls where the data is copied to.
228299fa 2773
5e9bab6f 2774The value is TO. */)
5842a27b 2775 (Lisp_Object from, Lisp_Object to, Lisp_Object frame, Lisp_Object new_frame)
82641697
GM
2776{
2777 Lisp_Object lface, copy;
178c5d9c 2778
b7826503
PJ
2779 CHECK_SYMBOL (from);
2780 CHECK_SYMBOL (to);
82641697
GM
2781
2782 if (EQ (frame, Qt))
2783 {
2784 /* Copy global definition of FROM. We don't make copies of
2785 strings etc. because 20.2 didn't do it either. */
2786 lface = lface_from_face_name (NULL, from, 1);
2787 copy = Finternal_make_lisp_face (to, Qnil);
2788 }
2789 else
2790 {
2791 /* Copy frame-local definition of FROM. */
5e9bab6f
RS
2792 if (NILP (new_frame))
2793 new_frame = frame;
b7826503
PJ
2794 CHECK_LIVE_FRAME (frame);
2795 CHECK_LIVE_FRAME (new_frame);
82641697
GM
2796 lface = lface_from_face_name (XFRAME (frame), from, 1);
2797 copy = Finternal_make_lisp_face (to, new_frame);
2798 }
178c5d9c 2799
72af86bd
AS
2800 memcpy (XVECTOR (copy)->contents, XVECTOR (lface)->contents,
2801 LFACE_VECTOR_SIZE * sizeof (Lisp_Object));
178c5d9c 2802
33565969
RS
2803 /* Changing a named face means that all realized faces depending on
2804 that face are invalid. Since we cannot tell which realized faces
2805 depend on the face, make sure they are all removed. This is done
2806 by incrementing face_change_count. The next call to
2807 init_iterator will then free realized faces. */
46b00436
KS
2808 if (NILP (Fget (to, Qface_no_inherit)))
2809 {
2810 ++face_change_count;
2811 ++windows_or_buffers_changed;
2812 }
33565969 2813
82641697
GM
2814 return to;
2815}
2816
2817
2818DEFUN ("internal-set-lisp-face-attribute", Finternal_set_lisp_face_attribute,
2819 Sinternal_set_lisp_face_attribute, 3, 4, 0,
7ee72033 2820 doc: /* Set attribute ATTR of FACE to VALUE.
228299fa
GM
2821FRAME being a frame means change the face on that frame.
2822FRAME nil means change the face of the selected frame.
2823FRAME t means change the default for new frames.
2824FRAME 0 means change the face on all frames, and change the default
7ee72033 2825 for new frames. */)
5842a27b 2826 (Lisp_Object face, Lisp_Object attr, Lisp_Object value, Lisp_Object frame)
82641697
GM
2827{
2828 Lisp_Object lface;
2829 Lisp_Object old_value = Qnil;
2dee4c0b
KH
2830 /* Set one of enum font_property_index (> 0) if ATTR is one of
2831 font-related attributes other than QCfont and QCfontset. */
2832 enum font_property_index prop_index = 0;
178c5d9c 2833
b7826503
PJ
2834 CHECK_SYMBOL (face);
2835 CHECK_SYMBOL (attr);
82641697 2836
d1bf13b3 2837 face = resolve_face_name (face, 1);
c7ae3284 2838
628436fb
GM
2839 /* If FRAME is 0, change face on all frames, and change the
2840 default for new frames. */
2841 if (INTEGERP (frame) && XINT (frame) == 0)
2842 {
2843 Lisp_Object tail;
d12d0a9b 2844 Finternal_set_lisp_face_attribute (face, attr, value, Qt);
628436fb
GM
2845 FOR_EACH_FRAME (tail, frame)
2846 Finternal_set_lisp_face_attribute (face, attr, value, frame);
d12d0a9b 2847 return face;
628436fb
GM
2848 }
2849
82641697
GM
2850 /* Set lface to the Lisp attribute vector of FACE. */
2851 if (EQ (frame, Qt))
0268cef3
CY
2852 {
2853 lface = lface_from_face_name (NULL, face, 1);
67d23e01
CY
2854
2855 /* When updating face-new-frame-defaults, we put :ignore-defface
2856 where the caller wants `unspecified'. This forces the frame
2857 defaults to ignore the defface value. Otherwise, the defface
2858 will take effect, which is generally not what is intended.
2859 The value of that attribute will be inherited from some other
2860 face during face merging. See internal_merge_in_global_face. */
0268cef3 2861 if (UNSPECIFIEDP (value))
a3720aa2 2862 value = QCignore_defface;
0268cef3 2863 }
82641697
GM
2864 else
2865 {
2866 if (NILP (frame))
c0617987 2867 frame = selected_frame;
178c5d9c 2868
b7826503 2869 CHECK_LIVE_FRAME (frame);
82641697 2870 lface = lface_from_face_name (XFRAME (frame), face, 0);
178c5d9c 2871
82641697
GM
2872 /* If a frame-local face doesn't exist yet, create one. */
2873 if (NILP (lface))
2874 lface = Finternal_make_lisp_face (face, frame);
2875 }
2876
2877 if (EQ (attr, QCfamily))
2878 {
2ff10663 2879 if (!UNSPECIFIEDP (value) && !IGNORE_DEFFACE_P (value))
82641697 2880 {
b7826503 2881 CHECK_STRING (value);
d5db4077 2882 if (SCHARS (value) == 0)
82641697
GM
2883 signal_error ("Invalid face family", value);
2884 }
2885 old_value = LFACE_FAMILY (lface);
2886 LFACE_FAMILY (lface) = value;
2dee4c0b 2887 prop_index = FONT_FAMILY_INDEX;
82641697 2888 }
53aaf1e2
KH
2889 else if (EQ (attr, QCfoundry))
2890 {
2891 if (!UNSPECIFIEDP (value) && !IGNORE_DEFFACE_P (value))
2892 {
2893 CHECK_STRING (value);
2894 if (SCHARS (value) == 0)
2895 signal_error ("Invalid face foundry", value);
2896 }
2897 old_value = LFACE_FOUNDRY (lface);
2898 LFACE_FOUNDRY (lface) = value;
2899 prop_index = FONT_FOUNDRY_INDEX;
2900 }
82641697
GM
2901 else if (EQ (attr, QCheight))
2902 {
2ff10663 2903 if (!UNSPECIFIEDP (value) && !IGNORE_DEFFACE_P (value))
82641697 2904 {
e66d5363
CY
2905 if (EQ (face, Qdefault))
2906 {
2907 /* The default face must have an absolute size. */
2908 if (!INTEGERP (value) || XINT (value) <= 0)
b5f03016
AS
2909 signal_error ("Default face height not absolute and positive",
2910 value);
e66d5363
CY
2911 }
2912 else
2913 {
2914 /* For non-default faces, do a test merge with a random
2915 height to see if VALUE's ok. */
2916 Lisp_Object test = merge_face_heights (value,
2917 make_number (10),
2918 Qnil);
2919 if (!INTEGERP (test) || XINT (test) <= 0)
b5f03016
AS
2920 signal_error ("Face height does not produce a positive integer",
2921 value);
e66d5363 2922 }
82641697 2923 }
2c20458f 2924
82641697
GM
2925 old_value = LFACE_HEIGHT (lface);
2926 LFACE_HEIGHT (lface) = value;
2dee4c0b 2927 prop_index = FONT_SIZE_INDEX;
82641697
GM
2928 }
2929 else if (EQ (attr, QCweight))
2930 {
2ff10663 2931 if (!UNSPECIFIEDP (value) && !IGNORE_DEFFACE_P (value))
82641697 2932 {
b7826503 2933 CHECK_SYMBOL (value);
2dee4c0b 2934 if (FONT_WEIGHT_NAME_NUMERIC (value) < 0)
82641697
GM
2935 signal_error ("Invalid face weight", value);
2936 }
2937 old_value = LFACE_WEIGHT (lface);
2938 LFACE_WEIGHT (lface) = value;
2dee4c0b 2939 prop_index = FONT_WEIGHT_INDEX;
82641697
GM
2940 }
2941 else if (EQ (attr, QCslant))
2942 {
2ff10663 2943 if (!UNSPECIFIEDP (value) && !IGNORE_DEFFACE_P (value))
82641697 2944 {
b7826503 2945 CHECK_SYMBOL (value);
2dee4c0b 2946 if (FONT_SLANT_NAME_NUMERIC (value) < 0)
82641697
GM
2947 signal_error ("Invalid face slant", value);
2948 }
2949 old_value = LFACE_SLANT (lface);
2950 LFACE_SLANT (lface) = value;
2dee4c0b 2951 prop_index = FONT_SLANT_INDEX;
82641697
GM
2952 }
2953 else if (EQ (attr, QCunderline))
2954 {
9b0e3eba
AA
2955 int valid_p = 0;
2956
2957 if (UNSPECIFIEDP (value) || IGNORE_DEFFACE_P (value))
2958 valid_p = 1;
2959 else if (NILP (value) || EQ (value, Qt))
2960 valid_p = 1;
2961 else if (STRINGP (value) && SCHARS (value) > 0)
2962 valid_p = 1;
2963 else if (CONSP (value))
2964 {
2965 Lisp_Object key, val, list;
2966
2967 list = value;
2968 valid_p = 1;
2969
2970 while (!NILP (CAR_SAFE(list)))
2971 {
2972 key = CAR_SAFE (list);
2973 list = CDR_SAFE (list);
2974 val = CAR_SAFE (list);
2975 list = CDR_SAFE (list);
2976
2977 if(NILP (key) || NILP (val))
2978 {
2979 valid_p = 0;
2980 break;
2981 }
2982
2983 else if (EQ (key, QCcolor)
2984 && !(EQ (val, Qforeground_color)
2985 || (STRINGP (val) && SCHARS (val) > 0)))
2986 {
2987 valid_p = 0;
2988 break;
2989 }
2990
2991 else if (EQ (key, QCstyle)
2992 && !(EQ (val, Qline) || EQ (val, Qwave)))
2993 {
2994 valid_p = 0;
2995 break;
2996 }
2997 }
2998 }
2999
3000 if (!valid_p)
3001 signal_error ("Invalid face underline", value);
3002
82641697
GM
3003 old_value = LFACE_UNDERLINE (lface);
3004 LFACE_UNDERLINE (lface) = value;
3005 }
3006 else if (EQ (attr, QCoverline))
3007 {
2ff10663 3008 if (!UNSPECIFIEDP (value) && !IGNORE_DEFFACE_P (value))
82641697
GM
3009 if ((SYMBOLP (value)
3010 && !EQ (value, Qt)
3011 && !EQ (value, Qnil))
3012 /* Overline color. */
3013 || (STRINGP (value)
d5db4077 3014 && SCHARS (value) == 0))
82641697 3015 signal_error ("Invalid face overline", value);
178c5d9c 3016
82641697
GM
3017 old_value = LFACE_OVERLINE (lface);
3018 LFACE_OVERLINE (lface) = value;
3019 }
3020 else if (EQ (attr, QCstrike_through))
3021 {
2ff10663 3022 if (!UNSPECIFIEDP (value) && !IGNORE_DEFFACE_P (value))
82641697
GM
3023 if ((SYMBOLP (value)
3024 && !EQ (value, Qt)
3025 && !EQ (value, Qnil))
3026 /* Strike-through color. */
3027 || (STRINGP (value)
d5db4077 3028 && SCHARS (value) == 0))
82641697 3029 signal_error ("Invalid face strike-through", value);
178c5d9c 3030
82641697
GM
3031 old_value = LFACE_STRIKE_THROUGH (lface);
3032 LFACE_STRIKE_THROUGH (lface) = value;
3033 }
3034 else if (EQ (attr, QCbox))
3035 {
3036 int valid_p;
178c5d9c 3037
82641697 3038 /* Allow t meaning a simple box of width 1 in foreground color
b5f03016 3039 of the face. */
82641697
GM
3040 if (EQ (value, Qt))
3041 value = make_number (1);
3042
2ff10663 3043 if (UNSPECIFIEDP (value) || IGNORE_DEFFACE_P (value))
82641697
GM
3044 valid_p = 1;
3045 else if (NILP (value))
3046 valid_p = 1;
3047 else if (INTEGERP (value))
89624b8b 3048 valid_p = XINT (value) != 0;
82641697 3049 else if (STRINGP (value))
d5db4077 3050 valid_p = SCHARS (value) > 0;
82641697
GM
3051 else if (CONSP (value))
3052 {
3053 Lisp_Object tem;
178c5d9c 3054
82641697
GM
3055 tem = value;
3056 while (CONSP (tem))
3057 {
3058 Lisp_Object k, v;
3059
3060 k = XCAR (tem);
3061 tem = XCDR (tem);
3062 if (!CONSP (tem))
3063 break;
3064 v = XCAR (tem);
3065 tem = XCDR (tem);
178c5d9c 3066
82641697
GM
3067 if (EQ (k, QCline_width))
3068 {
89624b8b 3069 if (!INTEGERP (v) || XINT (v) == 0)
82641697
GM
3070 break;
3071 }
3072 else if (EQ (k, QCcolor))
3073 {
91c212f1 3074 if (!NILP (v) && (!STRINGP (v) || SCHARS (v) == 0))
82641697
GM
3075 break;
3076 }
3077 else if (EQ (k, QCstyle))
3078 {
3079 if (!EQ (v, Qpressed_button) && !EQ (v, Qreleased_button))
3080 break;
3081 }
3082 else
3083 break;
3084 }
3085
3086 valid_p = NILP (tem);
3087 }
3088 else
3089 valid_p = 0;
3090
3091 if (!valid_p)
3092 signal_error ("Invalid face box", value);
178c5d9c 3093
82641697
GM
3094 old_value = LFACE_BOX (lface);
3095 LFACE_BOX (lface) = value;
3096 }
3097 else if (EQ (attr, QCinverse_video)
3098 || EQ (attr, QCreverse_video))
3099 {
2ff10663 3100 if (!UNSPECIFIEDP (value) && !IGNORE_DEFFACE_P (value))
82641697 3101 {
b7826503 3102 CHECK_SYMBOL (value);
82641697
GM
3103 if (!EQ (value, Qt) && !NILP (value))
3104 signal_error ("Invalid inverse-video face attribute value", value);
3105 }
3106 old_value = LFACE_INVERSE (lface);
3107 LFACE_INVERSE (lface) = value;
3108 }
3109 else if (EQ (attr, QCforeground))
3110 {
ca6888b6
CY
3111 /* Compatibility with 20.x. */
3112 if (NILP (value))
3113 value = Qunspecified;
2ff10663 3114 if (!UNSPECIFIEDP (value) && !IGNORE_DEFFACE_P (value))
82641697
GM
3115 {
3116 /* Don't check for valid color names here because it depends
3117 on the frame (display) whether the color will be valid
3118 when the face is realized. */
b7826503 3119 CHECK_STRING (value);
d5db4077 3120 if (SCHARS (value) == 0)
82641697
GM
3121 signal_error ("Empty foreground color value", value);
3122 }
3123 old_value = LFACE_FOREGROUND (lface);
3124 LFACE_FOREGROUND (lface) = value;
3125 }
3126 else if (EQ (attr, QCbackground))
3127 {
ca6888b6
CY
3128 /* Compatibility with 20.x. */
3129 if (NILP (value))
3130 value = Qunspecified;
2ff10663 3131 if (!UNSPECIFIEDP (value) && !IGNORE_DEFFACE_P (value))
82641697
GM
3132 {
3133 /* Don't check for valid color names here because it depends
3134 on the frame (display) whether the color will be valid
3135 when the face is realized. */
b7826503 3136 CHECK_STRING (value);
d5db4077 3137 if (SCHARS (value) == 0)
82641697
GM
3138 signal_error ("Empty background color value", value);
3139 }
3140 old_value = LFACE_BACKGROUND (lface);
3141 LFACE_BACKGROUND (lface) = value;
3142 }
3143 else if (EQ (attr, QCstipple))
3144 {
5e617bc2 3145#if defined (HAVE_X_WINDOWS) || defined (HAVE_NS)
2ff10663 3146 if (!UNSPECIFIEDP (value) && !IGNORE_DEFFACE_P (value)
82641697 3147 && !NILP (value)
fef04523 3148 && NILP (Fbitmap_spec_p (value)))
82641697
GM
3149 signal_error ("Invalid stipple attribute", value);
3150 old_value = LFACE_STIPPLE (lface);
3151 LFACE_STIPPLE (lface) = value;
edfda783 3152#endif /* HAVE_X_WINDOWS || HAVE_NS */
82641697
GM
3153 }
3154 else if (EQ (attr, QCwidth))
3155 {
2ff10663 3156 if (!UNSPECIFIEDP (value) && !IGNORE_DEFFACE_P (value))
82641697 3157 {
b7826503 3158 CHECK_SYMBOL (value);
2dee4c0b 3159 if (FONT_WIDTH_NAME_NUMERIC (value) < 0)
82641697
GM
3160 signal_error ("Invalid face width", value);
3161 }
3162 old_value = LFACE_SWIDTH (lface);
3163 LFACE_SWIDTH (lface) = value;
2dee4c0b 3164 prop_index = FONT_WIDTH_INDEX;
82641697 3165 }
2dee4c0b 3166 else if (EQ (attr, QCfont))
82641697 3167 {
c3cee013 3168#ifdef HAVE_WINDOW_SYSTEM
3d90c96c 3169 if (EQ (frame, Qt) || FRAME_WINDOW_P (XFRAME (frame)))
96fbd2c6 3170 {
2dee4c0b 3171 if (!UNSPECIFIEDP (value) && !IGNORE_DEFFACE_P (value))
f4d3bea3 3172 {
2dee4c0b
KH
3173 FRAME_PTR f;
3174
3175 old_value = LFACE_FONT (lface);
3176 if (! FONTP (value))
f4d3bea3 3177 {
2dee4c0b
KH
3178 if (STRINGP (value))
3179 {
21bdb81a
CY
3180 Lisp_Object name = value;
3181 int fontset = fs_query_fontset (name, 0);
2dee4c0b
KH
3182
3183 if (fontset >= 0)
21bdb81a
CY
3184 name = fontset_ascii (fontset);
3185 value = font_spec_from_name (name);
3186 if (!FONTP (value))
3187 signal_error ("Invalid font name", name);
2dee4c0b
KH
3188 }
3189 else
3190 signal_error ("Invalid font or font-spec", value);
f4d3bea3 3191 }
2dee4c0b
KH
3192 if (EQ (frame, Qt))
3193 f = XFRAME (selected_frame);
f4d3bea3 3194 else
2dee4c0b
KH
3195 f = XFRAME (frame);
3196 if (! FONT_OBJECT_P (value))
f4d3bea3 3197 {
2dee4c0b 3198 Lisp_Object *attrs = XVECTOR (lface)->contents;
f4d3bea3
KH
3199 Lisp_Object font_object;
3200
2dee4c0b 3201 font_object = font_load_for_lface (f, attrs, value);
db1c10a2 3202 if (NILP (font_object))
2dee4c0b
KH
3203 signal_error ("Font not available", value);
3204 value = font_object;
f4d3bea3 3205 }
2dee4c0b 3206 set_lface_from_font (f, lface, value, 1);
f4d3bea3
KH
3207 }
3208 else
2dee4c0b
KH
3209 LFACE_FONT (lface) = value;
3210 }
3211#endif /* HAVE_WINDOW_SYSTEM */
3212 }
3213 else if (EQ (attr, QCfontset))
3214 {
3215#ifdef HAVE_WINDOW_SYSTEM
3216 if (EQ (frame, Qt) || FRAME_WINDOW_P (XFRAME (frame)))
3217 {
3218 Lisp_Object tmp;
39506348 3219
2dee4c0b
KH
3220 old_value = LFACE_FONTSET (lface);
3221 tmp = Fquery_fontset (value, Qnil);
3222 if (NILP (tmp))
3223 signal_error ("Invalid fontset name", value);
3224 LFACE_FONTSET (lface) = value = tmp;
96fbd2c6 3225 }
c3cee013 3226#endif /* HAVE_WINDOW_SYSTEM */
82641697 3227 }
2c20458f
MB
3228 else if (EQ (attr, QCinherit))
3229 {
3230 Lisp_Object tail;
3231 if (SYMBOLP (value))
3232 tail = Qnil;
3233 else
3234 for (tail = value; CONSP (tail); tail = XCDR (tail))
3235 if (!SYMBOLP (XCAR (tail)))
3236 break;
3237 if (NILP (tail))
3238 LFACE_INHERIT (lface) = value;
3239 else
6288c62f 3240 signal_error ("Invalid face inheritance", value);
2c20458f 3241 }
82641697
GM
3242 else if (EQ (attr, QCbold))
3243 {
3244 old_value = LFACE_WEIGHT (lface);
3245 LFACE_WEIGHT (lface) = NILP (value) ? Qnormal : Qbold;
2dee4c0b 3246 prop_index = FONT_WEIGHT_INDEX;
82641697
GM
3247 }
3248 else if (EQ (attr, QCitalic))
3249 {
2dee4c0b 3250 attr = QCslant;
82641697
GM
3251 old_value = LFACE_SLANT (lface);
3252 LFACE_SLANT (lface) = NILP (value) ? Qnormal : Qitalic;
2dee4c0b 3253 prop_index = FONT_SLANT_INDEX;
82641697
GM
3254 }
3255 else
3256 signal_error ("Invalid face attribute name", attr);
3257
2dee4c0b 3258 if (prop_index)
e69a00b7
CY
3259 {
3260 /* If a font-related attribute other than QCfont and QCfontset
3261 is specified, and if the original QCfont attribute has a font
3262 (font-spec or font-object), set the corresponding property in
3263 the font to nil so that the font selector doesn't think that
3264 the attribute is mandatory. Also, clear the average
3265 width. */
3266 font_clear_prop (XVECTOR (lface)->contents, prop_index);
e69a00b7 3267 }
39506348 3268
82641697
GM
3269 /* Changing a named face means that all realized faces depending on
3270 that face are invalid. Since we cannot tell which realized faces
3271 depend on the face, make sure they are all removed. This is done
3272 by incrementing face_change_count. The next call to
3273 init_iterator will then free realized faces. */
3274 if (!EQ (frame, Qt)
46b00436 3275 && NILP (Fget (face, Qface_no_inherit))
2dee4c0b 3276 && NILP (Fequal (old_value, value)))
82641697
GM
3277 {
3278 ++face_change_count;
3279 ++windows_or_buffers_changed;
3280 }
3281
2ff10663 3282 if (!UNSPECIFIEDP (value) && !IGNORE_DEFFACE_P (value)
82641697 3283 && NILP (Fequal (old_value, value)))
8bd201d6
GM
3284 {
3285 Lisp_Object param;
3286
3287 param = Qnil;
178c5d9c 3288
8bd201d6
GM
3289 if (EQ (face, Qdefault))
3290 {
b9c769f8 3291#ifdef HAVE_WINDOW_SYSTEM
8bd201d6
GM
3292 /* Changed font-related attributes of the `default' face are
3293 reflected in changed `font' frame parameters. */
ceeda019 3294 if (FRAMEP (frame)
2dee4c0b 3295 && (prop_index || EQ (attr, QCfont))
8bd201d6
GM
3296 && lface_fully_specified_p (XVECTOR (lface)->contents))
3297 set_font_frame_param (frame, lface);
b9c769f8
EZ
3298 else
3299#endif /* HAVE_WINDOW_SYSTEM */
3300
3301 if (EQ (attr, QCforeground))
8bd201d6
GM
3302 param = Qforeground_color;
3303 else if (EQ (attr, QCbackground))
3304 param = Qbackground_color;
3305 }
b9c769f8 3306#ifdef HAVE_WINDOW_SYSTEM
c3cee013 3307#ifndef WINDOWSNT
8bd201d6
GM
3308 else if (EQ (face, Qscroll_bar))
3309 {
3310 /* Changing the colors of `scroll-bar' sets frame parameters
3311 `scroll-bar-foreground' and `scroll-bar-background'. */
3312 if (EQ (attr, QCforeground))
3313 param = Qscroll_bar_foreground;
3314 else if (EQ (attr, QCbackground))
3315 param = Qscroll_bar_background;
3316 }
d12d0a9b 3317#endif /* not WINDOWSNT */
8bd201d6
GM
3318 else if (EQ (face, Qborder))
3319 {
3320 /* Changing background color of `border' sets frame parameter
3321 `border-color'. */
3322 if (EQ (attr, QCbackground))
3323 param = Qborder_color;
3324 }
3325 else if (EQ (face, Qcursor))
3326 {
3327 /* Changing background color of `cursor' sets frame parameter
3328 `cursor-color'. */
3329 if (EQ (attr, QCbackground))
3330 param = Qcursor_color;
3331 }
3332 else if (EQ (face, Qmouse))
3333 {
3334 /* Changing background color of `mouse' sets frame parameter
3335 `mouse-color'. */
3336 if (EQ (attr, QCbackground))
3337 param = Qmouse_color;
3338 }
b9c769f8 3339#endif /* HAVE_WINDOW_SYSTEM */
563f68f1 3340 else if (EQ (face, Qmenu))
ceeda019
GM
3341 {
3342 /* Indicate that we have to update the menu bar when
3343 realizing faces on FRAME. FRAME t change the
3344 default for new frames. We do this by setting
3345 setting the flag in new face caches */
3346 if (FRAMEP (frame))
3347 {
3348 struct frame *f = XFRAME (frame);
3349 if (FRAME_FACE_CACHE (f) == NULL)
3350 FRAME_FACE_CACHE (f) = make_face_cache (f);
3351 FRAME_FACE_CACHE (f)->menu_face_changed_p = 1;
3352 }
3353 else
3354 menu_face_changed_default = 1;
3355 }
8bd201d6 3356
39506348 3357 if (!NILP (param))
ab8469eb
PJ
3358 {
3359 if (EQ (frame, Qt))
3360 /* Update `default-frame-alist', which is used for new frames. */
3361 {
3362 store_in_alist (&Vdefault_frame_alist, param, value);
3363 }
3364 else
3365 /* Update the current frame's parameters. */
3366 {
3367 Lisp_Object cons;
3368 cons = XCAR (Vparam_value_alist);
3369 XSETCAR (cons, param);
3370 XSETCDR (cons, value);
3371 Fmodify_frame_parameters (frame, Vparam_value_alist);
3372 }
3373 }
8bd201d6 3374 }
82641697 3375
82641697
GM
3376 return face;
3377}
3378
3379
8bd201d6
GM
3380/* Update the corresponding face when frame parameter PARAM on frame F
3381 has been assigned the value NEW_VALUE. */
3382
3383void
b5f03016
AS
3384update_face_from_frame_parameter (struct frame *f, Lisp_Object param,
3385 Lisp_Object new_value)
8bd201d6 3386{
46b00436 3387 Lisp_Object face = Qnil;
8bd201d6
GM
3388 Lisp_Object lface;
3389
3390 /* If there are no faces yet, give up. This is the case when called
3391 from Fx_create_frame, and we do the necessary things later in
92610620 3392 face-set-after-frame-defaults. */
8bd201d6
GM
3393 if (NILP (f->face_alist))
3394 return;
178c5d9c 3395
8bd201d6
GM
3396 if (EQ (param, Qforeground_color))
3397 {
46b00436
KS
3398 face = Qdefault;
3399 lface = lface_from_face_name (f, face, 1);
8bd201d6
GM
3400 LFACE_FOREGROUND (lface) = (STRINGP (new_value)
3401 ? new_value : Qunspecified);
3402 realize_basic_faces (f);
3403 }
3404 else if (EQ (param, Qbackground_color))
3405 {
92610620
GM
3406 Lisp_Object frame;
3407
3408 /* Changing the background color might change the background
c20577bc 3409 mode, so that we have to load new defface specs.
64677d90 3410 Call frame-set-background-mode to do that. */
92610620 3411 XSETFRAME (frame, f);
c20577bc 3412 call1 (Qframe_set_background_mode, frame);
178c5d9c 3413
46b00436
KS
3414 face = Qdefault;
3415 lface = lface_from_face_name (f, face, 1);
8bd201d6
GM
3416 LFACE_BACKGROUND (lface) = (STRINGP (new_value)
3417 ? new_value : Qunspecified);
3418 realize_basic_faces (f);
3419 }
76ea4cc9 3420#ifdef HAVE_WINDOW_SYSTEM
46b00436 3421 else if (EQ (param, Qborder_color))
8bd201d6 3422 {
46b00436
KS
3423 face = Qborder;
3424 lface = lface_from_face_name (f, face, 1);
8bd201d6
GM
3425 LFACE_BACKGROUND (lface) = (STRINGP (new_value)
3426 ? new_value : Qunspecified);
3427 }
3428 else if (EQ (param, Qcursor_color))
3429 {
46b00436
KS
3430 face = Qcursor;
3431 lface = lface_from_face_name (f, face, 1);
8bd201d6
GM
3432 LFACE_BACKGROUND (lface) = (STRINGP (new_value)
3433 ? new_value : Qunspecified);
3434 }
3435 else if (EQ (param, Qmouse_color))
3436 {
46b00436
KS
3437 face = Qmouse;
3438 lface = lface_from_face_name (f, face, 1);
8bd201d6
GM
3439 LFACE_BACKGROUND (lface) = (STRINGP (new_value)
3440 ? new_value : Qunspecified);
3441 }
76ea4cc9 3442#endif
46b00436
KS
3443
3444 /* Changing a named face means that all realized faces depending on
3445 that face are invalid. Since we cannot tell which realized faces
3446 depend on the face, make sure they are all removed. This is done
3447 by incrementing face_change_count. The next call to
3448 init_iterator will then free realized faces. */
3449 if (!NILP (face)
3450 && NILP (Fget (face, Qface_no_inherit)))
3451 {
3452 ++face_change_count;
3453 ++windows_or_buffers_changed;
3454 }
8bd201d6
GM
3455}
3456
3457
76ea4cc9
EZ
3458#ifdef HAVE_WINDOW_SYSTEM
3459
3460/* Set the `font' frame parameter of FRAME determined from the
3461 font-object set in `default' face attributes LFACE. */
3462
3463static void
971de7fb 3464set_font_frame_param (Lisp_Object frame, Lisp_Object lface)
76ea4cc9
EZ
3465{
3466 struct frame *f = XFRAME (frame);
3467 Lisp_Object font;
3468
3469 if (FRAME_WINDOW_P (f)
3470 /* Don't do anything if the font is `unspecified'. This can
3471 happen during frame creation. */
3472 && (font = LFACE_FONT (lface),
3473 ! UNSPECIFIEDP (font)))
3474 {
3475 if (FONT_SPEC_P (font))
3476 {
3477 font = font_load_for_lface (f, XVECTOR (lface)->contents, font);
3478 if (NILP (font))
3479 return;
3480 LFACE_FONT (lface) = font;
3481 }
3482 f->default_face_done_p = 0;
3483 Fmodify_frame_parameters (frame, Fcons (Fcons (Qfont, font), Qnil));
3484 }
3485}
3486
3487
82641697
GM
3488/* Get the value of X resource RESOURCE, class CLASS for the display
3489 of frame FRAME. This is here because ordinary `x-get-resource'
3490 doesn't take a frame argument. */
3491
3492DEFUN ("internal-face-x-get-resource", Finternal_face_x_get_resource,
7ee72033 3493 Sinternal_face_x_get_resource, 3, 3, 0, doc: /* */)
5842a27b 3494 (Lisp_Object resource, Lisp_Object class, Lisp_Object frame)
82641697 3495{
c3cee013 3496 Lisp_Object value = Qnil;
b7826503
PJ
3497 CHECK_STRING (resource);
3498 CHECK_STRING (class);
3499 CHECK_LIVE_FRAME (frame);
82641697
GM
3500 BLOCK_INPUT;
3501 value = display_x_get_resource (FRAME_X_DISPLAY_INFO (XFRAME (frame)),
3502 resource, class, Qnil, Qnil);
3503 UNBLOCK_INPUT;
3504 return value;
3505}
3506
3507
3508/* Return resource string VALUE as a boolean value, i.e. nil, or t.
3509 If VALUE is "on" or "true", return t. If VALUE is "off" or
3510 "false", return nil. Otherwise, if SIGNAL_P is non-zero, signal an
3511 error; if SIGNAL_P is zero, return 0. */
178c5d9c 3512
82641697 3513static Lisp_Object
971de7fb 3514face_boolean_x_resource_value (Lisp_Object value, int signal_p)
82641697
GM
3515{
3516 Lisp_Object result = make_number (0);
3517
3518 xassert (STRINGP (value));
178c5d9c 3519
25a48bd0
PE
3520 if (xstrcasecmp (SSDATA (value), "on") == 0
3521 || xstrcasecmp (SSDATA (value), "true") == 0)
82641697 3522 result = Qt;
25a48bd0
PE
3523 else if (xstrcasecmp (SSDATA (value), "off") == 0
3524 || xstrcasecmp (SSDATA (value), "false") == 0)
82641697 3525 result = Qnil;
25a48bd0 3526 else if (xstrcasecmp (SSDATA (value), "unspecified") == 0)
82641697
GM
3527 result = Qunspecified;
3528 else if (signal_p)
3529 signal_error ("Invalid face attribute value from X resource", value);
3530
3531 return result;
3532}
3533
3534
3535DEFUN ("internal-set-lisp-face-attribute-from-resource",
3536 Finternal_set_lisp_face_attribute_from_resource,
3537 Sinternal_set_lisp_face_attribute_from_resource,
7ee72033 3538 3, 4, 0, doc: /* */)
5842a27b 3539 (Lisp_Object face, Lisp_Object attr, Lisp_Object value, Lisp_Object frame)
82641697 3540{
b7826503
PJ
3541 CHECK_SYMBOL (face);
3542 CHECK_SYMBOL (attr);
3543 CHECK_STRING (value);
82641697 3544
25a48bd0 3545 if (xstrcasecmp (SSDATA (value), "unspecified") == 0)
82641697
GM
3546 value = Qunspecified;
3547 else if (EQ (attr, QCheight))
3548 {
3549 value = Fstring_to_number (value, make_number (10));
3550 if (XINT (value) <= 0)
3551 signal_error ("Invalid face height from X resource", value);
3552 }
3553 else if (EQ (attr, QCbold) || EQ (attr, QCitalic))
3554 value = face_boolean_x_resource_value (value, 1);
3555 else if (EQ (attr, QCweight) || EQ (attr, QCslant) || EQ (attr, QCwidth))
42a5b22f 3556 value = intern (SSDATA (value));
82641697
GM
3557 else if (EQ (attr, QCreverse_video) || EQ (attr, QCinverse_video))
3558 value = face_boolean_x_resource_value (value, 1);
3559 else if (EQ (attr, QCunderline)
3560 || EQ (attr, QCoverline)
27188d11 3561 || EQ (attr, QCstrike_through))
82641697
GM
3562 {
3563 Lisp_Object boolean_value;
3564
3565 /* If the result of face_boolean_x_resource_value is t or nil,
3566 VALUE does NOT specify a color. */
3567 boolean_value = face_boolean_x_resource_value (value, 0);
3568 if (SYMBOLP (boolean_value))
3569 value = boolean_value;
3570 }
0ad040ff 3571 else if (EQ (attr, QCbox) || EQ (attr, QCinherit))
27188d11 3572 value = Fcar (Fread_from_string (value, Qnil, Qnil));
82641697
GM
3573
3574 return Finternal_set_lisp_face_attribute (face, attr, value, frame);
3575}
3576
c3cee013 3577#endif /* HAVE_WINDOW_SYSTEM */
82641697 3578
c7ae3284
GM
3579\f
3580/***********************************************************************
3581 Menu face
3582 ***********************************************************************/
3583
bce72079 3584#if defined HAVE_X_WINDOWS && defined USE_X_TOOLKIT
c7ae3284 3585
bce72079
GM
3586/* Make menus on frame F appear as specified by the `menu' face. */
3587
3588static void
ebd15611 3589x_update_menu_appearance (struct frame *f)
c7ae3284 3590{
a03ad468 3591 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
bce72079 3592 XrmDatabase rdb;
178c5d9c 3593
bce72079
GM
3594 if (dpyinfo
3595 && (rdb = XrmGetDatabase (FRAME_X_DISPLAY (f)),
3596 rdb != NULL))
c7ae3284 3597 {
bce72079 3598 char line[512];
670741ab
PE
3599 char *buf = line;
3600 ptrdiff_t bufsize = sizeof line;
bce72079
GM
3601 Lisp_Object lface = lface_from_face_name (f, Qmenu, 1);
3602 struct face *face = FACE_FROM_ID (f, MENU_FACE_ID);
42a5b22f 3603 const char *myname = SSDATA (Vx_resource_name);
bce72079 3604 int changed_p = 0;
8ad582ac
GM
3605#ifdef USE_MOTIF
3606 const char *popup_path = "popup_menu";
3607#else
3608 const char *popup_path = "menu.popup";
3609#endif
177c0ea7 3610
bce72079
GM
3611 if (STRINGP (LFACE_FOREGROUND (lface)))
3612 {
670741ab
PE
3613 exprintf (&buf, &bufsize, line, -1, "%s.%s*foreground: %s",
3614 myname, popup_path,
3615 SDATA (LFACE_FOREGROUND (lface)));
bce72079 3616 XrmPutLineResource (&rdb, line);
670741ab
PE
3617 exprintf (&buf, &bufsize, line, -1, "%s.pane.menubar*foreground: %s",
3618 myname, SDATA (LFACE_FOREGROUND (lface)));
bce72079
GM
3619 XrmPutLineResource (&rdb, line);
3620 changed_p = 1;
3621 }
178c5d9c 3622
bce72079
GM
3623 if (STRINGP (LFACE_BACKGROUND (lface)))
3624 {
670741ab
PE
3625 exprintf (&buf, &bufsize, line, -1, "%s.%s*background: %s",
3626 myname, popup_path,
3627 SDATA (LFACE_BACKGROUND (lface)));
bce72079 3628 XrmPutLineResource (&rdb, line);
670741ab
PE
3629
3630 exprintf (&buf, &bufsize, line, -1, "%s.pane.menubar*background: %s",
3631 myname, SDATA (LFACE_BACKGROUND (lface)));
bce72079
GM
3632 XrmPutLineResource (&rdb, line);
3633 changed_p = 1;
3634 }
177c0ea7 3635
2dee4c0b 3636 if (face->font
23888717
CY
3637 /* On Solaris 5.8, it's been reported that the `menu' face
3638 can be unspecified here, during startup. Why this
3639 happens remains unknown. -- cyd */
3640 && FONTP (LFACE_FONT (lface))
bce72079 3641 && (!UNSPECIFIEDP (LFACE_FAMILY (lface))
53aaf1e2 3642 || !UNSPECIFIEDP (LFACE_FOUNDRY (lface))
bce72079 3643 || !UNSPECIFIEDP (LFACE_SWIDTH (lface))
bce72079
GM
3644 || !UNSPECIFIEDP (LFACE_WEIGHT (lface))
3645 || !UNSPECIFIEDP (LFACE_SLANT (lface))
3646 || !UNSPECIFIEDP (LFACE_HEIGHT (lface))))
3647 {
47ae3723 3648 Lisp_Object xlfd = Ffont_xlfd_name (LFACE_FONT (lface), Qnil);
a03ad468 3649#ifdef USE_MOTIF
bce72079 3650 const char *suffix = "List";
211f2210 3651 Bool motif = True;
a2d7e722
JD
3652#else
3653#if defined HAVE_X_I18N
3654
3655 const char *suffix = "Set";
a03ad468 3656#else
bce72079 3657 const char *suffix = "";
a2d7e722 3658#endif
211f2210 3659 Bool motif = False;
2defe37f 3660#endif
2dee4c0b
KH
3661
3662 if (! NILP (xlfd))
3663 {
211f2210 3664#if defined HAVE_X_I18N
42a5b22f 3665 char *fontsetname = xic_create_fontsetname (SSDATA (xlfd), motif);
2defe37f 3666#else
51b59d79 3667 char *fontsetname = SSDATA (xlfd);
bce72079 3668#endif
670741ab
PE
3669 exprintf (&buf, &bufsize, line, -1, "%s.pane.menubar*font%s: %s",
3670 myname, suffix, fontsetname);
2dee4c0b 3671 XrmPutLineResource (&rdb, line);
670741ab
PE
3672
3673 exprintf (&buf, &bufsize, line, -1, "%s.%s*font%s: %s",
3674 myname, popup_path, suffix, fontsetname);
2dee4c0b
KH
3675 XrmPutLineResource (&rdb, line);
3676 changed_p = 1;
51b59d79 3677 if (fontsetname != SSDATA (xlfd))
2dee4c0b
KH
3678 xfree (fontsetname);
3679 }
bce72079 3680 }
c7ae3284 3681
bce72079 3682 if (changed_p && f->output_data.x->menubar_widget)
ac17f0bf 3683 free_frame_menubar (f);
670741ab
PE
3684
3685 if (buf != line)
3686 xfree (buf);
c7ae3284
GM
3687 }
3688}
3689
bce72079 3690#endif /* HAVE_X_WINDOWS && USE_X_TOOLKIT */
82641697
GM
3691
3692
177c0ea7 3693DEFUN ("face-attribute-relative-p", Fface_attribute_relative_p,
cdfaafa9
MB
3694 Sface_attribute_relative_p,
3695 2, 2, 0,
2d6228e7
RS
3696 doc: /* Check whether a face attribute value is relative.
3697Specifically, this function returns t if the attribute ATTRIBUTE
3698with the value VALUE is relative.
3699
3700A relative value is one that doesn't entirely override whatever is
3701inherited from another face. For most possible attributes,
3702the only relative value that users see is `unspecified'.
3703However, for :height, floating point values are also relative. */)
5842a27b 3704 (Lisp_Object attribute, Lisp_Object value)
cdfaafa9 3705{
a3720aa2 3706 if (EQ (value, Qunspecified) || (EQ (value, QCignore_defface)))
cdfaafa9
MB
3707 return Qt;
3708 else if (EQ (attribute, QCheight))
3709 return INTEGERP (value) ? Qnil : Qt;
3710 else
3711 return Qnil;
3712}
3713
3714DEFUN ("merge-face-attribute", Fmerge_face_attribute, Smerge_face_attribute,
3715 3, 3, 0,
3716 doc: /* Return face ATTRIBUTE VALUE1 merged with VALUE2.
3717If VALUE1 or VALUE2 are absolute (see `face-attribute-relative-p'), then
3718the result will be absolute, otherwise it will be relative. */)
5842a27b 3719 (Lisp_Object attribute, Lisp_Object value1, Lisp_Object value2)
cdfaafa9 3720{
a3720aa2 3721 if (EQ (value1, Qunspecified) || EQ (value1, QCignore_defface))
cdfaafa9
MB
3722 return value2;
3723 else if (EQ (attribute, QCheight))
e1e419ec 3724 return merge_face_heights (value1, value2, value1);
cdfaafa9
MB
3725 else
3726 return value1;
3727}
3728
82641697
GM
3729
3730DEFUN ("internal-get-lisp-face-attribute", Finternal_get_lisp_face_attribute,
3731 Sinternal_get_lisp_face_attribute,
3732 2, 3, 0,
7ee72033 3733 doc: /* Return face attribute KEYWORD of face SYMBOL.
228299fa
GM
3734If SYMBOL does not name a valid Lisp face or KEYWORD isn't a valid
3735face attribute name, signal an error.
7fc92635
JB
3736If the optional argument FRAME is given, report on face SYMBOL in that
3737frame. If FRAME is t, report on the defaults for face SYMBOL (for new
7ee72033 3738frames). If FRAME is omitted or nil, use the selected frame. */)
5842a27b 3739 (Lisp_Object symbol, Lisp_Object keyword, Lisp_Object frame)
82641697
GM
3740{
3741 Lisp_Object lface, value = Qnil;
178c5d9c 3742
b7826503
PJ
3743 CHECK_SYMBOL (symbol);
3744 CHECK_SYMBOL (keyword);
82641697
GM
3745
3746 if (EQ (frame, Qt))
3747 lface = lface_from_face_name (NULL, symbol, 1);
3748 else
3749 {
3750 if (NILP (frame))
c0617987 3751 frame = selected_frame;
b7826503 3752 CHECK_LIVE_FRAME (frame);
82641697
GM
3753 lface = lface_from_face_name (XFRAME (frame), symbol, 1);
3754 }
3755
3756 if (EQ (keyword, QCfamily))
3757 value = LFACE_FAMILY (lface);
53aaf1e2
KH
3758 else if (EQ (keyword, QCfoundry))
3759 value = LFACE_FOUNDRY (lface);
82641697
GM
3760 else if (EQ (keyword, QCheight))
3761 value = LFACE_HEIGHT (lface);
3762 else if (EQ (keyword, QCweight))
3763 value = LFACE_WEIGHT (lface);
3764 else if (EQ (keyword, QCslant))
3765 value = LFACE_SLANT (lface);
3766 else if (EQ (keyword, QCunderline))
3767 value = LFACE_UNDERLINE (lface);
3768 else if (EQ (keyword, QCoverline))
3769 value = LFACE_OVERLINE (lface);
3770 else if (EQ (keyword, QCstrike_through))
3771 value = LFACE_STRIKE_THROUGH (lface);
3772 else if (EQ (keyword, QCbox))
3773 value = LFACE_BOX (lface);
3774 else if (EQ (keyword, QCinverse_video)
3775 || EQ (keyword, QCreverse_video))
3776 value = LFACE_INVERSE (lface);
3777 else if (EQ (keyword, QCforeground))
3778 value = LFACE_FOREGROUND (lface);
3779 else if (EQ (keyword, QCbackground))
3780 value = LFACE_BACKGROUND (lface);
3781 else if (EQ (keyword, QCstipple))
3782 value = LFACE_STIPPLE (lface);
3783 else if (EQ (keyword, QCwidth))
3784 value = LFACE_SWIDTH (lface);
2c20458f
MB
3785 else if (EQ (keyword, QCinherit))
3786 value = LFACE_INHERIT (lface);
39506348
KH
3787 else if (EQ (keyword, QCfont))
3788 value = LFACE_FONT (lface);
763bc839
KH
3789 else if (EQ (keyword, QCfontset))
3790 value = LFACE_FONTSET (lface);
82641697
GM
3791 else
3792 signal_error ("Invalid face attribute name", keyword);
3793
0268cef3
CY
3794 if (IGNORE_DEFFACE_P (value))
3795 return Qunspecified;
3796
82641697
GM
3797 return value;
3798}
3799
3800
3801DEFUN ("internal-lisp-face-attribute-values",
3802 Finternal_lisp_face_attribute_values,
3803 Sinternal_lisp_face_attribute_values, 1, 1, 0,
7ee72033
MB
3804 doc: /* Return a list of valid discrete values for face attribute ATTR.
3805Value is nil if ATTR doesn't have a discrete set of valid values. */)
5842a27b 3806 (Lisp_Object attr)
82641697
GM
3807{
3808 Lisp_Object result = Qnil;
178c5d9c 3809
b7826503 3810 CHECK_SYMBOL (attr);
178c5d9c 3811
2dee4c0b 3812 if (EQ (attr, QCunderline))
82641697
GM
3813 result = Fcons (Qt, Fcons (Qnil, Qnil));
3814 else if (EQ (attr, QCoverline))
3815 result = Fcons (Qt, Fcons (Qnil, Qnil));
3816 else if (EQ (attr, QCstrike_through))
3817 result = Fcons (Qt, Fcons (Qnil, Qnil));
3818 else if (EQ (attr, QCinverse_video) || EQ (attr, QCreverse_video))
3819 result = Fcons (Qt, Fcons (Qnil, Qnil));
3820
3821 return result;
3822}
178c5d9c 3823
82641697
GM
3824
3825DEFUN ("internal-merge-in-global-face", Finternal_merge_in_global_face,
178c5d9c 3826 Sinternal_merge_in_global_face, 2, 2, 0,
e3cd9e7f 3827 doc: /* Add attributes from frame-default definition of FACE to FACE on FRAME.
7ee72033 3828Default face attributes override any local face attributes. */)
5842a27b 3829 (Lisp_Object face, Lisp_Object frame)
82641697 3830{
aad40737
MB
3831 int i;
3832 Lisp_Object global_lface, local_lface, *gvec, *lvec;
8d3810fd 3833 struct frame *f = XFRAME (frame);
aad40737 3834
b7826503 3835 CHECK_LIVE_FRAME (frame);
82641697 3836 global_lface = lface_from_face_name (NULL, face, 1);
8d3810fd 3837 local_lface = lface_from_face_name (f, face, 0);
82641697
GM
3838 if (NILP (local_lface))
3839 local_lface = Finternal_make_lisp_face (face, frame);
aad40737 3840
cec33c90
SM
3841 /* Make every specified global attribute override the local one.
3842 BEWARE!! This is only used from `face-set-after-frame-default' where
3843 the local frame is defined from default specs in `face-defface-spec'
3844 and those should be overridden by global settings. Hence the strange
3845 "global before local" priority. */
aad40737
MB
3846 lvec = XVECTOR (local_lface)->contents;
3847 gvec = XVECTOR (global_lface)->contents;
3848 for (i = 1; i < LFACE_VECTOR_SIZE; ++i)
8d3810fd
CY
3849 if (IGNORE_DEFFACE_P (gvec[i]))
3850 lvec[i] = Qunspecified;
3851 else if (! UNSPECIFIEDP (gvec[i]))
3852 lvec[i] = gvec[i];
3853
fa9fa316 3854 /* If the default face was changed, update the face cache and the
811029d3 3855 `font' frame parameter. */
8d3810fd
CY
3856 if (EQ (face, Qdefault))
3857 {
3858 struct face_cache *c = FRAME_FACE_CACHE (f);
3859 struct face *newface, *oldface = FACE_FROM_ID (f, DEFAULT_FACE_ID);
3860 Lisp_Object attrs[LFACE_VECTOR_SIZE];
3861
0421a7a7
CY
3862 /* This can be NULL (e.g., in batch mode). */
3863 if (oldface)
8d3810fd 3864 {
fa9fa316
CY
3865 /* Ensure that the face vector is fully specified by merging
3866 the previously-cached vector. */
72af86bd 3867 memcpy (attrs, oldface->lface, sizeof attrs);
0421a7a7 3868 merge_face_vectors (f, lvec, attrs, 0);
72af86bd 3869 memcpy (lvec, attrs, sizeof attrs);
fa9fa316 3870 newface = realize_face (c, lvec, DEFAULT_FACE_ID);
0421a7a7
CY
3871
3872 if ((! UNSPECIFIEDP (gvec[LFACE_FAMILY_INDEX])
3873 || ! UNSPECIFIEDP (gvec[LFACE_FOUNDRY_INDEX])
3874 || ! UNSPECIFIEDP (gvec[LFACE_HEIGHT_INDEX])
3875 || ! UNSPECIFIEDP (gvec[LFACE_WEIGHT_INDEX])
3876 || ! UNSPECIFIEDP (gvec[LFACE_SLANT_INDEX])
3877 || ! UNSPECIFIEDP (gvec[LFACE_SWIDTH_INDEX])
3878 || ! UNSPECIFIEDP (gvec[LFACE_FONT_INDEX]))
3879 && newface->font)
3880 {
3881 Lisp_Object name = newface->font->props[FONT_NAME_INDEX];
3882 Fmodify_frame_parameters (frame, Fcons (Fcons (Qfont, name),
3883 Qnil));
3884 }
1485f4c0
CY
3885
3886 if (STRINGP (gvec[LFACE_FOREGROUND_INDEX]))
3887 Fmodify_frame_parameters (frame,
3888 Fcons (Fcons (Qforeground_color,
3889 gvec[LFACE_FOREGROUND_INDEX]),
3890 Qnil));
3891
3892 if (STRINGP (gvec[LFACE_BACKGROUND_INDEX]))
3893 Fmodify_frame_parameters (frame,
3894 Fcons (Fcons (Qbackground_color,
3895 gvec[LFACE_BACKGROUND_INDEX]),
3896 Qnil));
8d3810fd
CY
3897 }
3898 }
334a2e2a
GM
3899
3900 return Qnil;
82641697
GM
3901}
3902
3903
3904/* The following function is implemented for compatibility with 20.2.
3905 The function is used in x-resolve-fonts when it is asked to
3906 return fonts with the same size as the font of a face. This is
3907 done in fontset.el. */
3908
2db4bfe5 3909DEFUN ("face-font", Fface_font, Sface_font, 1, 3, 0,
e3cd9e7f 3910 doc: /* Return the font name of face FACE, or nil if it is unspecified.
2db4bfe5 3911The font name is, by default, for ASCII characters.
228299fa
GM
3912If the optional argument FRAME is given, report on face FACE in that frame.
3913If FRAME is t, report on the defaults for face FACE (for new frames).
3914 The font default for a face is either nil, or a list
3915 of the form (bold), (italic) or (bold italic).
2db4bfe5
KH
3916If FRAME is omitted or nil, use the selected frame. And, in this case,
3917if the optional third argument CHARACTER is given,
3918return the font name used for CHARACTER. */)
5842a27b 3919 (Lisp_Object face, Lisp_Object frame, Lisp_Object character)
82641697
GM
3920{
3921 if (EQ (frame, Qt))
3922 {
3923 Lisp_Object result = Qnil;
3924 Lisp_Object lface = lface_from_face_name (NULL, face, 1);
3925
3926 if (!UNSPECIFIEDP (LFACE_WEIGHT (lface))
3927 && !EQ (LFACE_WEIGHT (lface), Qnormal))
3928 result = Fcons (Qbold, result);
178c5d9c 3929
0f2c6573 3930 if (!UNSPECIFIEDP (LFACE_SLANT (lface))
82641697
GM
3931 && !EQ (LFACE_SLANT (lface), Qnormal))
3932 result = Fcons (Qitalic, result);
178c5d9c 3933
82641697
GM
3934 return result;
3935 }
3936 else
3937 {
3938 struct frame *f = frame_or_selected_frame (frame, 1);
000fc2b1 3939 int face_id = lookup_named_face (f, face, 1);
071048a3 3940 struct face *fface = FACE_FROM_ID (f, face_id);
2db4bfe5 3941
071048a3 3942 if (! fface)
2db4bfe5 3943 return Qnil;
a1a552b3 3944#ifdef HAVE_WINDOW_SYSTEM
75dad34a 3945 if (FRAME_WINDOW_P (f) && !NILP (character))
a1a552b3
KH
3946 {
3947 CHECK_CHARACTER (character);
071048a3
PE
3948 face_id = FACE_FOR_CHAR (f, fface, XINT (character), -1, Qnil);
3949 fface = FACE_FROM_ID (f, face_id);
a1a552b3 3950 }
071048a3
PE
3951 return (fface->font
3952 ? fface->font->props[FONT_NAME_INDEX]
2dee4c0b 3953 : Qnil);
1ccdfd33
EZ
3954#else /* !HAVE_WINDOW_SYSTEM */
3955 return build_string (FRAME_MSDOS_P (f)
3956 ? "ms-dos"
3957 : FRAME_W32_P (f) ? "w32term"
3958 :"tty");
3959#endif
82641697
GM
3960 }
3961}
3962
3963
9717e36c 3964/* Compare face-attribute values v1 and v2 for equality. Value is non-zero if
82641697
GM
3965 all attributes are `equal'. Tries to be fast because this function
3966 is called quite often. */
3967
55d4c1b2 3968static inline int
971de7fb 3969face_attr_equal_p (Lisp_Object v1, Lisp_Object v2)
82641697 3970{
9717e36c
MB
3971 /* Type can differ, e.g. when one attribute is unspecified, i.e. nil,
3972 and the other is specified. */
3973 if (XTYPE (v1) != XTYPE (v2))
3974 return 0;
82641697 3975
9717e36c
MB
3976 if (EQ (v1, v2))
3977 return 1;
82641697 3978
9717e36c
MB
3979 switch (XTYPE (v1))
3980 {
3981 case Lisp_String:
3982 if (SBYTES (v1) != SBYTES (v2))
3983 return 0;
82641697 3984
72af86bd 3985 return memcmp (SDATA (v1), SDATA (v2), SBYTES (v1)) == 0;
178c5d9c 3986
2de9f71c 3987 case_Lisp_Int:
9717e36c
MB
3988 case Lisp_Symbol:
3989 return 0;
178c5d9c 3990
9717e36c
MB
3991 default:
3992 return !NILP (Fequal (v1, v2));
82641697 3993 }
9717e36c
MB
3994}
3995
3996
3997/* Compare face vectors V1 and V2 for equality. Value is non-zero if
3998 all attributes are `equal'. Tries to be fast because this function
3999 is called quite often. */
4000
55d4c1b2 4001static inline int
971de7fb 4002lface_equal_p (Lisp_Object *v1, Lisp_Object *v2)
9717e36c
MB
4003{
4004 int i, equal_p = 1;
4005
4006 for (i = 1; i < LFACE_VECTOR_SIZE && equal_p; ++i)
4007 equal_p = face_attr_equal_p (v1[i], v2[i]);
178c5d9c 4008
82641697
GM
4009 return equal_p;
4010}
4011
4012
4013DEFUN ("internal-lisp-face-equal-p", Finternal_lisp_face_equal_p,
4014 Sinternal_lisp_face_equal_p, 2, 3, 0,
7ee72033 4015 doc: /* True if FACE1 and FACE2 are equal.
03f11322
JB
4016If the optional argument FRAME is given, report on FACE1 and FACE2 in that frame.
4017If FRAME is t, report on the defaults for FACE1 and FACE2 (for new frames).
7ee72033 4018If FRAME is omitted or nil, use the selected frame. */)
5842a27b 4019 (Lisp_Object face1, Lisp_Object face2, Lisp_Object frame)
82641697
GM
4020{
4021 int equal_p;
7b953c9c 4022 struct frame *f;
82641697 4023 Lisp_Object lface1, lface2;
178c5d9c 4024
7b953c9c
MB
4025 if (EQ (frame, Qt))
4026 f = NULL;
4027 else
4028 /* Don't use check_x_frame here because this function is called
4029 before X frames exist. At that time, if FRAME is nil,
4030 selected_frame will be used which is the frame dumped with
4031 Emacs. That frame is not an X frame. */
4032 f = frame_or_selected_frame (frame, 2);
4033
03f11322
JB
4034 lface1 = lface_from_face_name (f, face1, 1);
4035 lface2 = lface_from_face_name (f, face2, 1);
82641697
GM
4036 equal_p = lface_equal_p (XVECTOR (lface1)->contents,
4037 XVECTOR (lface2)->contents);
4038 return equal_p ? Qt : Qnil;
4039}
4040
178c5d9c 4041
82641697
GM
4042DEFUN ("internal-lisp-face-empty-p", Finternal_lisp_face_empty_p,
4043 Sinternal_lisp_face_empty_p, 1, 2, 0,
7ee72033 4044 doc: /* True if FACE has no attribute specified.
228299fa
GM
4045If the optional argument FRAME is given, report on face FACE in that frame.
4046If FRAME is t, report on the defaults for face FACE (for new frames).
7ee72033 4047If FRAME is omitted or nil, use the selected frame. */)
5842a27b 4048 (Lisp_Object face, Lisp_Object frame)
82641697
GM
4049{
4050 struct frame *f;
4051 Lisp_Object lface;
4052 int i;
4053
4054 if (NILP (frame))
c0617987 4055 frame = selected_frame;
b7826503 4056 CHECK_LIVE_FRAME (frame);
c0617987 4057 f = XFRAME (frame);
178c5d9c 4058
82641697
GM
4059 if (EQ (frame, Qt))
4060 lface = lface_from_face_name (NULL, face, 1);
4061 else
4062 lface = lface_from_face_name (f, face, 1);
4063
4064 for (i = 1; i < LFACE_VECTOR_SIZE; ++i)
a08332c0 4065 if (!UNSPECIFIEDP (AREF (lface, i)))
82641697 4066 break;
178c5d9c 4067
82641697
GM
4068 return i == LFACE_VECTOR_SIZE ? Qt : Qnil;
4069}
4070
4071
4072DEFUN ("frame-face-alist", Fframe_face_alist, Sframe_face_alist,
178c5d9c 4073 0, 1, 0,
7ee72033
MB
4074 doc: /* Return an alist of frame-local faces defined on FRAME.
4075For internal use only. */)
5842a27b 4076 (Lisp_Object frame)
82641697
GM
4077{
4078 struct frame *f = frame_or_selected_frame (frame, 0);
4079 return f->face_alist;
4080}
4081
4082
4083/* Return a hash code for Lisp string STRING with case ignored. Used
4084 below in computing a hash value for a Lisp face. */
4085
55d4c1b2 4086static inline unsigned
971de7fb 4087hash_string_case_insensitive (Lisp_Object string)
82641697 4088{
53c208f6 4089 const unsigned char *s;
82641697
GM
4090 unsigned hash = 0;
4091 xassert (STRINGP (string));
d5db4077 4092 for (s = SDATA (string); *s; ++s)
82641697
GM
4093 hash = (hash << 1) ^ tolower (*s);
4094 return hash;
4095}
4096
4097
4098/* Return a hash code for face attribute vector V. */
4099
55d4c1b2 4100static inline unsigned
971de7fb 4101lface_hash (Lisp_Object *v)
82641697
GM
4102{
4103 return (hash_string_case_insensitive (v[LFACE_FAMILY_INDEX])
53aaf1e2 4104 ^ hash_string_case_insensitive (v[LFACE_FOUNDRY_INDEX])
82641697
GM
4105 ^ hash_string_case_insensitive (v[LFACE_FOREGROUND_INDEX])
4106 ^ hash_string_case_insensitive (v[LFACE_BACKGROUND_INDEX])
a2bc5bdd
SM
4107 ^ XHASH (v[LFACE_WEIGHT_INDEX])
4108 ^ XHASH (v[LFACE_SLANT_INDEX])
4109 ^ XHASH (v[LFACE_SWIDTH_INDEX])
4110 ^ XHASH (v[LFACE_HEIGHT_INDEX]));
82641697
GM
4111}
4112
4113
4114/* Return non-zero if LFACE1 and LFACE2 specify the same font (without
4115 considering charsets/registries). They do if they specify the same
2dee4c0b 4116 family, point size, weight, width, slant, and font. Both
763bc839 4117 LFACE1 and LFACE2 must be fully-specified. */
82641697 4118
55d4c1b2 4119static inline int
971de7fb 4120lface_same_font_attributes_p (Lisp_Object *lface1, Lisp_Object *lface2)
82641697
GM
4121{
4122 xassert (lface_fully_specified_p (lface1)
4123 && lface_fully_specified_p (lface2));
25a48bd0 4124 return (xstrcasecmp (SSDATA (lface1[LFACE_FAMILY_INDEX]),
b5f03016 4125 SSDATA (lface2[LFACE_FAMILY_INDEX])) == 0
25a48bd0
PE
4126 && xstrcasecmp (SSDATA (lface1[LFACE_FOUNDRY_INDEX]),
4127 SSDATA (lface2[LFACE_FOUNDRY_INDEX])) == 0
2c20458f 4128 && EQ (lface1[LFACE_HEIGHT_INDEX], lface2[LFACE_HEIGHT_INDEX])
82641697
GM
4129 && EQ (lface1[LFACE_SWIDTH_INDEX], lface2[LFACE_SWIDTH_INDEX])
4130 && EQ (lface1[LFACE_WEIGHT_INDEX], lface2[LFACE_WEIGHT_INDEX])
39506348 4131 && EQ (lface1[LFACE_SLANT_INDEX], lface2[LFACE_SLANT_INDEX])
2dee4c0b 4132 && EQ (lface1[LFACE_FONT_INDEX], lface2[LFACE_FONT_INDEX])
763bc839
KH
4133 && (EQ (lface1[LFACE_FONTSET_INDEX], lface2[LFACE_FONTSET_INDEX])
4134 || (STRINGP (lface1[LFACE_FONTSET_INDEX])
4135 && STRINGP (lface2[LFACE_FONTSET_INDEX])
25a48bd0 4136 && ! xstrcasecmp (SSDATA (lface1[LFACE_FONTSET_INDEX]),
b5f03016 4137 SSDATA (lface2[LFACE_FONTSET_INDEX]))))
763bc839 4138 );
82641697
GM
4139}
4140
4141
4142\f
4143/***********************************************************************
4144 Realized Faces
4145 ***********************************************************************/
4146
4147/* Allocate and return a new realized face for Lisp face attribute
39506348 4148 vector ATTR. */
82641697
GM
4149
4150static struct face *
971de7fb 4151make_realized_face (Lisp_Object *attr)
82641697
GM
4152{
4153 struct face *face = (struct face *) xmalloc (sizeof *face);
72af86bd 4154 memset (face, 0, sizeof *face);
39506348 4155 face->ascii_face = face;
72af86bd 4156 memcpy (face->lface, attr, sizeof face->lface);
82641697
GM
4157 return face;
4158}
4159
4160
4161/* Free realized face FACE, including its X resources. FACE may
4162 be null. */
4163
435f4c28 4164static void
971de7fb 4165free_realized_face (struct frame *f, struct face *face)
82641697
GM
4166{
4167 if (face)
4168 {
c3cee013
JR
4169#ifdef HAVE_WINDOW_SYSTEM
4170 if (FRAME_WINDOW_P (f))
82641697 4171 {
39506348
KH
4172 /* Free fontset of FACE if it is ASCII face. */
4173 if (face->fontset >= 0 && face == face->ascii_face)
4174 free_face_fontset (f, face);
82641697
GM
4175 if (face->gc)
4176 {
985773c9 4177 BLOCK_INPUT;
2dee4c0b 4178 if (face->font)
426b2119 4179 font_done_for_face (f, face);
82641697
GM
4180 x_free_gc (f, face->gc);
4181 face->gc = 0;
ed0c79c6 4182 UNBLOCK_INPUT;
82641697 4183 }
178c5d9c 4184
82641697
GM
4185 free_face_colors (f, face);
4186 x_destroy_bitmap (f, face->stipple);
4187 }
c3cee013 4188#endif /* HAVE_WINDOW_SYSTEM */
82641697
GM
4189
4190 xfree (face);
4191 }
4192}
4193
4194
4195/* Prepare face FACE for subsequent display on frame F. This
4196 allocated GCs if they haven't been allocated yet or have been freed
4197 by clearing the face cache. */
4198
4199void
971de7fb 4200prepare_face_for_display (struct frame *f, struct face *face)
82641697 4201{
c3cee013
JR
4202#ifdef HAVE_WINDOW_SYSTEM
4203 xassert (FRAME_WINDOW_P (f));
178c5d9c 4204
82641697
GM
4205 if (face->gc == 0)
4206 {
4207 XGCValues xgcv;
4208 unsigned long mask = GCForeground | GCBackground | GCGraphicsExposures;
4209
4210 xgcv.foreground = face->foreground;
4211 xgcv.background = face->background;
c3cee013 4212#ifdef HAVE_X_WINDOWS
82641697 4213 xgcv.graphics_exposures = False;
c3cee013 4214#endif
82641697
GM
4215
4216 BLOCK_INPUT;
c3cee013 4217#ifdef HAVE_X_WINDOWS
82641697
GM
4218 if (face->stipple)
4219 {
be8a72f4 4220 xgcv.fill_style = FillOpaqueStippled;
82641697
GM
4221 xgcv.stipple = x_bitmap_pixmap (f, face->stipple);
4222 mask |= GCFillStyle | GCStipple;
4223 }
c3cee013 4224#endif
82641697 4225 face->gc = x_create_gc (f, mask, &xgcv);
2dee4c0b 4226 if (face->font)
426b2119 4227 font_prepare_for_face (f, face);
82641697
GM
4228 UNBLOCK_INPUT;
4229 }
c3cee013 4230#endif /* HAVE_WINDOW_SYSTEM */
82641697
GM
4231}
4232
82641697 4233\f
b35df831
MB
4234/* Returns the `distance' between the colors X and Y. */
4235
4236static int
971de7fb 4237color_distance (XColor *x, XColor *y)
b35df831 4238{
da6062e6 4239 /* This formula is from a paper titled `Colour metric' by Thiadmer Riemersma.
b35df831
MB
4240 Quoting from that paper:
4241
b5f03016
AS
4242 This formula has results that are very close to L*u*v* (with the
4243 modified lightness curve) and, more importantly, it is a more even
da6062e6 4244 algorithm: it does not have a range of colors where it suddenly
b5f03016 4245 gives far from optimal results.
b35df831
MB
4246
4247 See <http://www.compuphase.com/cmetric.htm> for more info. */
4248
4249 long r = (x->red - y->red) >> 8;
4250 long g = (x->green - y->green) >> 8;
4251 long b = (x->blue - y->blue) >> 8;
4252 long r_mean = (x->red + y->red) >> 9;
4253
4254 return
4255 (((512 + r_mean) * r * r) >> 8)
4256 + 4 * g * g
4257 + (((767 - r_mean) * b * b) >> 8);
4258}
4259
4260
4261DEFUN ("color-distance", Fcolor_distance, Scolor_distance, 2, 3, 0,
4262 doc: /* Return an integer distance between COLOR1 and COLOR2 on FRAME.
4263COLOR1 and COLOR2 may be either strings containing the color name,
4264or lists of the form (RED GREEN BLUE).
4265If FRAME is unspecified or nil, the current frame is used. */)
5842a27b 4266 (Lisp_Object color1, Lisp_Object color2, Lisp_Object frame)
b35df831
MB
4267{
4268 struct frame *f;
4269 XColor cdef1, cdef2;
4270
4271 if (NILP (frame))
4272 frame = selected_frame;
4273 CHECK_LIVE_FRAME (frame);
4274 f = XFRAME (frame);
4275
6c8e1d62 4276 if (!(CONSP (color1) && parse_rgb_list (color1, &cdef1))
42a5b22f 4277 && !(STRINGP (color1) && defined_color (f, SSDATA (color1), &cdef1, 0)))
b35df831 4278 signal_error ("Invalid color", color1);
6c8e1d62 4279 if (!(CONSP (color2) && parse_rgb_list (color2, &cdef2))
42a5b22f 4280 && !(STRINGP (color2) && defined_color (f, SSDATA (color2), &cdef2, 0)))
b35df831
MB
4281 signal_error ("Invalid color", color2);
4282
4283 return make_number (color_distance (&cdef1, &cdef2));
4284}
4285
4286\f
82641697
GM
4287/***********************************************************************
4288 Face Cache
4289 ***********************************************************************/
4290
4291/* Return a new face cache for frame F. */
4292
4293static struct face_cache *
971de7fb 4294make_face_cache (struct frame *f)
82641697
GM
4295{
4296 struct face_cache *c;
4297 int size;
4298
4299 c = (struct face_cache *) xmalloc (sizeof *c);
72af86bd 4300 memset (c, 0, sizeof *c);
82641697
GM
4301 size = FACE_CACHE_BUCKETS_SIZE * sizeof *c->buckets;
4302 c->buckets = (struct face **) xmalloc (size);
72af86bd 4303 memset (c->buckets, 0, size);
82641697
GM
4304 c->size = 50;
4305 c->faces_by_id = (struct face **) xmalloc (c->size * sizeof *c->faces_by_id);
4306 c->f = f;
ceeda019 4307 c->menu_face_changed_p = menu_face_changed_default;
82641697
GM
4308 return c;
4309}
4310
4311
4312/* Clear out all graphics contexts for all realized faces, except for
4313 the basic faces. This should be done from time to time just to avoid
4314 keeping too many graphics contexts that are no longer needed. */
4315
4316static void
971de7fb 4317clear_face_gcs (struct face_cache *c)
82641697 4318{
c3cee013 4319 if (c && FRAME_WINDOW_P (c->f))
82641697 4320 {
c3cee013 4321#ifdef HAVE_WINDOW_SYSTEM
82641697
GM
4322 int i;
4323 for (i = BASIC_FACE_ID_SENTINEL; i < c->used; ++i)
4324 {
4325 struct face *face = c->faces_by_id[i];
4326 if (face && face->gc)
4327 {
985773c9 4328 BLOCK_INPUT;
2dee4c0b 4329 if (face->font)
426b2119 4330 font_done_for_face (c->f, face);
82641697
GM
4331 x_free_gc (c->f, face->gc);
4332 face->gc = 0;
ed0c79c6 4333 UNBLOCK_INPUT;
82641697
GM
4334 }
4335 }
c3cee013 4336#endif /* HAVE_WINDOW_SYSTEM */
82641697
GM
4337 }
4338}
4339
4340
7fc92635
JB
4341/* Free all realized faces in face cache C, including basic faces.
4342 C may be null. If faces are freed, make sure the frame's current
82641697
GM
4343 matrix is marked invalid, so that a display caused by an expose
4344 event doesn't try to use faces we destroyed. */
4345
4346static void
971de7fb 4347free_realized_faces (struct face_cache *c)
82641697
GM
4348{
4349 if (c && c->used)
4350 {
4351 int i, size;
4352 struct frame *f = c->f;
4353
84ec3b4b
GM
4354 /* We must block input here because we can't process X events
4355 safely while only some faces are freed, or when the frame's
4356 current matrix still references freed faces. */
4357 BLOCK_INPUT;
4358
82641697
GM
4359 for (i = 0; i < c->used; ++i)
4360 {
4361 free_realized_face (f, c->faces_by_id[i]);
4362 c->faces_by_id[i] = NULL;
4363 }
178c5d9c 4364
82641697
GM
4365 c->used = 0;
4366 size = FACE_CACHE_BUCKETS_SIZE * sizeof *c->buckets;
72af86bd 4367 memset (c->buckets, 0, size);
82641697
GM
4368
4369 /* Must do a thorough redisplay the next time. Mark current
4370 matrices as invalid because they will reference faces freed
4371 above. This function is also called when a frame is
4372 destroyed. In this case, the root window of F is nil. */
4373 if (WINDOWP (f->root_window))
4374 {
4375 clear_current_matrices (f);
4376 ++windows_or_buffers_changed;
4377 }
84ec3b4b
GM
4378
4379 UNBLOCK_INPUT;
82641697
GM
4380 }
4381}
4382
4383
4384/* Free all realized faces on FRAME or on all frames if FRAME is nil.
4385 This is done after attributes of a named face have been changed,
4386 because we can't tell which realized faces depend on that face. */
4387
4388void
971de7fb 4389free_all_realized_faces (Lisp_Object frame)
82641697
GM
4390{
4391 if (NILP (frame))
4392 {
4393 Lisp_Object rest;
4394 FOR_EACH_FRAME (rest, frame)
4395 free_realized_faces (FRAME_FACE_CACHE (XFRAME (frame)));
4396 }
4397 else
4398 free_realized_faces (FRAME_FACE_CACHE (XFRAME (frame)));
4399}
4400
4401
4402/* Free face cache C and faces in it, including their X resources. */
4403
4404static void
971de7fb 4405free_face_cache (struct face_cache *c)
82641697
GM
4406{
4407 if (c)
4408 {
4409 free_realized_faces (c);
4410 xfree (c->buckets);
4411 xfree (c->faces_by_id);
4412 xfree (c);
4413 }
4414}
4415
4416
4417/* Cache realized face FACE in face cache C. HASH is the hash value
af53b43c
KH
4418 of FACE. If FACE is for ASCII characters (i.e. FACE->ascii_face ==
4419 FACE), insert the new face to the beginning of the collision list
4420 of the face hash table of C. Otherwise, add the new face to the
4421 end of the collision list. This way, lookup_face can quickly find
4422 that a requested face is not cached. */
82641697
GM
4423
4424static void
971de7fb 4425cache_face (struct face_cache *c, struct face *face, unsigned int hash)
82641697
GM
4426{
4427 int i = hash % FACE_CACHE_BUCKETS_SIZE;
4428
4429 face->hash = hash;
4430
af53b43c 4431 if (face->ascii_face != face)
82641697
GM
4432 {
4433 struct face *last = c->buckets[i];
4434 if (last)
4435 {
4436 while (last->next)
4437 last = last->next;
4438 last->next = face;
4439 face->prev = last;
4440 face->next = NULL;
4441 }
4442 else
4443 {
4444 c->buckets[i] = face;
4445 face->prev = face->next = NULL;
4446 }
4447 }
4448 else
4449 {
4450 face->prev = NULL;
4451 face->next = c->buckets[i];
4452 if (face->next)
4453 face->next->prev = face;
4454 c->buckets[i] = face;
4455 }
4456
4457 /* Find a free slot in C->faces_by_id and use the index of the free
4458 slot as FACE->id. */
4459 for (i = 0; i < c->used; ++i)
4460 if (c->faces_by_id[i] == NULL)
4461 break;
4462 face->id = i;
178c5d9c 4463
85fece3e
PE
4464#if GLYPH_DEBUG
4465 /* Check that FACE got a unique id. */
4466 {
4467 int j, n;
4468 struct face *face1;
4469
4470 for (j = n = 0; j < FACE_CACHE_BUCKETS_SIZE; ++j)
4471 for (face1 = c->buckets[j]; face1; face1 = face1->next)
4472 if (face1->id == i)
4473 ++n;
4474
4475 xassert (n == 1);
4476 }
4477#endif /* GLYPH_DEBUG */
4478
82641697 4479 /* Maybe enlarge C->faces_by_id. */
6b61353c 4480 if (i == c->used)
82641697 4481 {
6b61353c 4482 if (c->used == c->size)
0065d054
PE
4483 c->faces_by_id = xpalloc (c->faces_by_id, &c->size, 1, MAX_FACE_ID,
4484 sizeof *c->faces_by_id);
6b61353c 4485 c->used++;
82641697
GM
4486 }
4487
82641697 4488 c->faces_by_id[i] = face;
82641697
GM
4489}
4490
4491
4492/* Remove face FACE from cache C. */
4493
4494static void
971de7fb 4495uncache_face (struct face_cache *c, struct face *face)
82641697
GM
4496{
4497 int i = face->hash % FACE_CACHE_BUCKETS_SIZE;
178c5d9c 4498
82641697
GM
4499 if (face->prev)
4500 face->prev->next = face->next;
4501 else
4502 c->buckets[i] = face->next;
178c5d9c 4503
82641697
GM
4504 if (face->next)
4505 face->next->prev = face->prev;
178c5d9c 4506
82641697
GM
4507 c->faces_by_id[face->id] = NULL;
4508 if (face->id == c->used)
4509 --c->used;
4510}
4511
4512
4513/* Look up a realized face with face attributes ATTR in the face cache
af53b43c
KH
4514 of frame F. The face will be used to display ASCII characters.
4515 Value is the ID of the face found. If no suitable face is found,
4516 realize a new one. */
82641697 4517
55d4c1b2 4518static inline int
971de7fb 4519lookup_face (struct frame *f, Lisp_Object *attr)
82641697 4520{
39506348 4521 struct face_cache *cache = FRAME_FACE_CACHE (f);
82641697
GM
4522 unsigned hash;
4523 int i;
4524 struct face *face;
4525
39506348 4526 xassert (cache != NULL);
82641697
GM
4527 check_lface_attrs (attr);
4528
4529 /* Look up ATTR in the face cache. */
4530 hash = lface_hash (attr);
4531 i = hash % FACE_CACHE_BUCKETS_SIZE;
178c5d9c 4532
39506348 4533 for (face = cache->buckets[i]; face; face = face->next)
af53b43c
KH
4534 {
4535 if (face->ascii_face != face)
4536 {
4537 /* There's no more ASCII face. */
4538 face = NULL;
4539 break;
4540 }
4541 if (face->hash == hash
4542 && lface_equal_p (face->lface, attr))
4543 break;
4544 }
82641697
GM
4545
4546 /* If not found, realize a new face. */
4547 if (face == NULL)
af53b43c 4548 face = realize_face (cache, attr, -1);
82641697
GM
4549
4550#if GLYPH_DEBUG
4551 xassert (face == FACE_FROM_ID (f, face->id));
82641697 4552#endif /* GLYPH_DEBUG */
178c5d9c 4553
82641697
GM
4554 return face->id;
4555}
4556
2dee4c0b
KH
4557#ifdef HAVE_WINDOW_SYSTEM
4558/* Look up a realized face that has the same attributes as BASE_FACE
4559 except for the font in the face cache of frame F. If FONT-OBJECT
4560 is not nil, it is an already opened font. If FONT-OBJECT is nil,
4561 the face has no font. Value is the ID of the face found. If no
4562 suitable face is found, realize a new one. */
426b2119 4563
426b2119 4564int
971de7fb 4565face_for_font (struct frame *f, Lisp_Object font_object, struct face *base_face)
426b2119
KH
4566{
4567 struct face_cache *cache = FRAME_FACE_CACHE (f);
4568 unsigned hash;
4569 int i;
4570 struct face *face;
4571
4572 xassert (cache != NULL);
4573 base_face = base_face->ascii_face;
4574 hash = lface_hash (base_face->lface);
4575 i = hash % FACE_CACHE_BUCKETS_SIZE;
4576
4577 for (face = cache->buckets[i]; face; face = face->next)
4578 {
4579 if (face->ascii_face == face)
4580 continue;
4581 if (face->ascii_face == base_face
2dee4c0b
KH
4582 && face->font == (NILP (font_object) ? NULL
4583 : XFONT_OBJECT (font_object))
4584 && lface_equal_p (face->lface, base_face->lface))
426b2119
KH
4585 return face->id;
4586 }
4587
4588 /* If not found, realize a new face. */
2dee4c0b 4589 face = realize_non_ascii_face (f, font_object, base_face);
426b2119
KH
4590 return face->id;
4591}
8c6204de 4592#endif /* HAVE_WINDOW_SYSTEM */
82641697 4593
82641697 4594/* Return the face id of the realized face for named face SYMBOL on
af53b43c
KH
4595 frame F suitable for displaying ASCII characters. Value is -1 if
4596 the face couldn't be determined, which might happen if the default
4597 face isn't realized and cannot be realized. */
82641697
GM
4598
4599int
971de7fb 4600lookup_named_face (struct frame *f, Lisp_Object symbol, int signal_p)
82641697 4601{
e7d7fd8c
MB
4602 Lisp_Object attrs[LFACE_VECTOR_SIZE];
4603 Lisp_Object symbol_attrs[LFACE_VECTOR_SIZE];
82641697
GM
4604 struct face *default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
4605
b5de343d
GM
4606 if (default_face == NULL)
4607 {
4608 if (!realize_basic_faces (f))
4609 return -1;
4610 default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
418ca4d2
RS
4611 if (default_face == NULL)
4612 abort (); /* realize_basic_faces must have set it up */
b5de343d
GM
4613 }
4614
f2cec7a9 4615 if (! get_lface_attributes (f, symbol, symbol_attrs, signal_p, 0))
2272e967
KS
4616 return -1;
4617
72af86bd 4618 memcpy (attrs, default_face->lface, sizeof attrs);
e7d7fd8c 4619 merge_face_vectors (f, symbol_attrs, attrs, 0);
a0a23346 4620
af53b43c 4621 return lookup_face (f, attrs);
82641697
GM
4622}
4623
4624
1682701f 4625/* Return the display face-id of the basic face whose canonical face-id
f2cec7a9
MB
4626 is FACE_ID. The return value will usually simply be FACE_ID, unless that
4627 basic face has bee remapped via Vface_remapping_alist. This function is
4628 conservative: if something goes wrong, it will simply return FACE_ID
4629 rather than signal an error. */
4630
4631int
971de7fb 4632lookup_basic_face (struct frame *f, int face_id)
f2cec7a9
MB
4633{
4634 Lisp_Object name, mapping;
4635 int remapped_face_id;
4636
4637 if (NILP (Vface_remapping_alist))
4638 return face_id; /* Nothing to do. */
4639
4640 switch (face_id)
4641 {
4642 case DEFAULT_FACE_ID: name = Qdefault; break;
4643 case MODE_LINE_FACE_ID: name = Qmode_line; break;
4644 case MODE_LINE_INACTIVE_FACE_ID: name = Qmode_line_inactive; break;
4645 case HEADER_LINE_FACE_ID: name = Qheader_line; break;
4646 case TOOL_BAR_FACE_ID: name = Qtool_bar; break;
4647 case FRINGE_FACE_ID: name = Qfringe; break;
4648 case SCROLL_BAR_FACE_ID: name = Qscroll_bar; break;
4649 case BORDER_FACE_ID: name = Qborder; break;
4650 case CURSOR_FACE_ID: name = Qcursor; break;
4651 case MOUSE_FACE_ID: name = Qmouse; break;
4652 case MENU_FACE_ID: name = Qmenu; break;
4653
4654 default:
4655 abort (); /* the caller is supposed to pass us a basic face id */
4656 }
4657
4658 /* Do a quick scan through Vface_remapping_alist, and return immediately
4659 if there is no remapping for face NAME. This is just an optimization
4660 for the very common no-remapping case. */
4661 mapping = assq_no_quit (name, Vface_remapping_alist);
4662 if (NILP (mapping))
4663 return face_id; /* Give up. */
4664
4665 /* If there is a remapping entry, lookup the face using NAME, which will
4666 handle the remapping too. */
4667 remapped_face_id = lookup_named_face (f, name, 0);
4668 if (remapped_face_id < 0)
4669 return face_id; /* Give up. */
4670
4671 return remapped_face_id;
4672}
4673
4674
82641697
GM
4675/* Return a face for charset ASCII that is like the face with id
4676 FACE_ID on frame F, but has a font that is STEPS steps smaller.
4677 STEPS < 0 means larger. Value is the id of the face. */
4678
4679int
971de7fb 4680smaller_face (struct frame *f, int face_id, int steps)
39506348 4681{
c3cee013 4682#ifdef HAVE_WINDOW_SYSTEM
82641697
GM
4683 struct face *face;
4684 Lisp_Object attrs[LFACE_VECTOR_SIZE];
4685 int pt, last_pt, last_height;
4686 int delta;
4687 int new_face_id;
4688 struct face *new_face;
4689
4690 /* If not called for an X frame, just return the original face. */
4691 if (FRAME_TERMCAP_P (f))
4692 return face_id;
4693
4694 /* Try in increments of 1/2 pt. */
4695 delta = steps < 0 ? 5 : -5;
1ea40aa2 4696 steps = eabs (steps);
178c5d9c 4697
82641697 4698 face = FACE_FROM_ID (f, face_id);
72af86bd 4699 memcpy (attrs, face->lface, sizeof attrs);
82641697
GM
4700 pt = last_pt = XFASTINT (attrs[LFACE_HEIGHT_INDEX]);
4701 new_face_id = face_id;
4702 last_height = FONT_HEIGHT (face->font);
4703
4704 while (steps
4705 && pt + delta > 0
4706 /* Give up if we cannot find a font within 10pt. */
1ea40aa2 4707 && eabs (last_pt - pt) < 100)
82641697
GM
4708 {
4709 /* Look up a face for a slightly smaller/larger font. */
4710 pt += delta;
4711 attrs[LFACE_HEIGHT_INDEX] = make_number (pt);
af53b43c 4712 new_face_id = lookup_face (f, attrs);
82641697
GM
4713 new_face = FACE_FROM_ID (f, new_face_id);
4714
4715 /* If height changes, count that as one step. */
b4c3ca09
GM
4716 if ((delta < 0 && FONT_HEIGHT (new_face->font) < last_height)
4717 || (delta > 0 && FONT_HEIGHT (new_face->font) > last_height))
82641697
GM
4718 {
4719 --steps;
4720 last_height = FONT_HEIGHT (new_face->font);
4721 last_pt = pt;
4722 }
4723 }
4724
4725 return new_face_id;
4726
c3cee013 4727#else /* not HAVE_WINDOW_SYSTEM */
82641697
GM
4728
4729 return face_id;
178c5d9c 4730
c3cee013 4731#endif /* not HAVE_WINDOW_SYSTEM */
82641697
GM
4732}
4733
4734
4735/* Return a face for charset ASCII that is like the face with id
4736 FACE_ID on frame F, but has height HEIGHT. */
4737
4738int
971de7fb 4739face_with_height (struct frame *f, int face_id, int height)
82641697 4740{
c3cee013 4741#ifdef HAVE_WINDOW_SYSTEM
82641697
GM
4742 struct face *face;
4743 Lisp_Object attrs[LFACE_VECTOR_SIZE];
4744
4745 if (FRAME_TERMCAP_P (f)
4746 || height <= 0)
4747 return face_id;
4748
4749 face = FACE_FROM_ID (f, face_id);
72af86bd 4750 memcpy (attrs, face->lface, sizeof attrs);
82641697 4751 attrs[LFACE_HEIGHT_INDEX] = make_number (height);
a8c0cc18 4752 font_clear_prop (attrs, FONT_SIZE_INDEX);
af53b43c 4753 face_id = lookup_face (f, attrs);
c3cee013 4754#endif /* HAVE_WINDOW_SYSTEM */
178c5d9c 4755
82641697
GM
4756 return face_id;
4757}
4758
b5de343d 4759
44747bd0 4760/* Return the face id of the realized face for named face SYMBOL on
af53b43c
KH
4761 frame F suitable for displaying ASCII characters, and use
4762 attributes of the face FACE_ID for attributes that aren't
4763 completely specified by SYMBOL. This is like lookup_named_face,
4764 except that the default attributes come from FACE_ID, not from the
4765 default face. FACE_ID is assumed to be already realized. */
44747bd0
EZ
4766
4767int
b5f03016
AS
4768lookup_derived_face (struct frame *f, Lisp_Object symbol, int face_id,
4769 int signal_p)
44747bd0 4770{
e7d7fd8c 4771 Lisp_Object attrs[LFACE_VECTOR_SIZE];
44747bd0
EZ
4772 Lisp_Object symbol_attrs[LFACE_VECTOR_SIZE];
4773 struct face *default_face = FACE_FROM_ID (f, face_id);
4774
4775 if (!default_face)
4776 abort ();
4777
d8453278
CY
4778 if (!get_lface_attributes (f, symbol, symbol_attrs, signal_p, 0))
4779 return -1;
4780
72af86bd 4781 memcpy (attrs, default_face->lface, sizeof attrs);
e7d7fd8c 4782 merge_face_vectors (f, symbol_attrs, attrs, 0);
af53b43c 4783 return lookup_face (f, attrs);
44747bd0
EZ
4784}
4785
f6608d5c
RS
4786DEFUN ("face-attributes-as-vector", Fface_attributes_as_vector,
4787 Sface_attributes_as_vector, 1, 1, 0,
4bb962be 4788 doc: /* Return a vector of face attributes corresponding to PLIST. */)
5842a27b 4789 (Lisp_Object plist)
f6608d5c
RS
4790{
4791 Lisp_Object lface;
4792 lface = Fmake_vector (make_number (LFACE_VECTOR_SIZE),
4793 Qunspecified);
a0a23346
MB
4794 merge_face_ref (XFRAME (selected_frame), plist, XVECTOR (lface)->contents,
4795 1, 0);
f6608d5c
RS
4796 return lface;
4797}
4798
82641697
GM
4799
4800\f
9717e36c
MB
4801/***********************************************************************
4802 Face capability testing
4803 ***********************************************************************/
4804
4805
4806/* If the distance (as returned by color_distance) between two colors is
4807 less than this, then they are considered the same, for determining
4808 whether a color is supported or not. The range of values is 0-65535. */
4809
4810#define TTY_SAME_COLOR_THRESHOLD 10000
4811
ccda4e3c 4812#ifdef HAVE_WINDOW_SYSTEM
9717e36c
MB
4813
4814/* Return non-zero if all the face attributes in ATTRS are supported
4815 on the window-system frame F.
4816
4817 The definition of `supported' is somewhat heuristic, but basically means
4818 that a face containing all the attributes in ATTRS, when merged with the
4819 default face for display, can be represented in a way that's
4820
4821 \(1) different in appearance than the default face, and
8e330b22 4822 \(2) `close in spirit' to what the attributes specify, if not exact. */
9717e36c
MB
4823
4824static int
b5f03016
AS
4825x_supports_face_attributes_p (struct frame *f, Lisp_Object *attrs,
4826 struct face *def_face)
9717e36c 4827{
8e330b22 4828 Lisp_Object *def_attrs = def_face->lface;
9717e36c
MB
4829
4830 /* Check that other specified attributes are different that the default
4831 face. */
4832 if ((!UNSPECIFIEDP (attrs[LFACE_UNDERLINE_INDEX])
4833 && face_attr_equal_p (attrs[LFACE_UNDERLINE_INDEX],
4834 def_attrs[LFACE_UNDERLINE_INDEX]))
4835 || (!UNSPECIFIEDP (attrs[LFACE_INVERSE_INDEX])
4836 && face_attr_equal_p (attrs[LFACE_INVERSE_INDEX],
4837 def_attrs[LFACE_INVERSE_INDEX]))
4838 || (!UNSPECIFIEDP (attrs[LFACE_FOREGROUND_INDEX])
4839 && face_attr_equal_p (attrs[LFACE_FOREGROUND_INDEX],
4840 def_attrs[LFACE_FOREGROUND_INDEX]))
4841 || (!UNSPECIFIEDP (attrs[LFACE_BACKGROUND_INDEX])
4842 && face_attr_equal_p (attrs[LFACE_BACKGROUND_INDEX],
4843 def_attrs[LFACE_BACKGROUND_INDEX]))
4844 || (!UNSPECIFIEDP (attrs[LFACE_STIPPLE_INDEX])
4845 && face_attr_equal_p (attrs[LFACE_STIPPLE_INDEX],
4846 def_attrs[LFACE_STIPPLE_INDEX]))
4847 || (!UNSPECIFIEDP (attrs[LFACE_OVERLINE_INDEX])
4848 && face_attr_equal_p (attrs[LFACE_OVERLINE_INDEX],
4849 def_attrs[LFACE_OVERLINE_INDEX]))
4850 || (!UNSPECIFIEDP (attrs[LFACE_STRIKE_THROUGH_INDEX])
4851 && face_attr_equal_p (attrs[LFACE_STRIKE_THROUGH_INDEX],
4852 def_attrs[LFACE_STRIKE_THROUGH_INDEX]))
4853 || (!UNSPECIFIEDP (attrs[LFACE_BOX_INDEX])
4854 && face_attr_equal_p (attrs[LFACE_BOX_INDEX],
4855 def_attrs[LFACE_BOX_INDEX])))
4856 return 0;
4857
4858 /* Check font-related attributes, as those are the most commonly
4859 "unsupported" on a window-system (because of missing fonts). */
4860 if (!UNSPECIFIEDP (attrs[LFACE_FAMILY_INDEX])
53aaf1e2 4861 || !UNSPECIFIEDP (attrs[LFACE_FOUNDRY_INDEX])
9717e36c
MB
4862 || !UNSPECIFIEDP (attrs[LFACE_HEIGHT_INDEX])
4863 || !UNSPECIFIEDP (attrs[LFACE_WEIGHT_INDEX])
4864 || !UNSPECIFIEDP (attrs[LFACE_SLANT_INDEX])
2dee4c0b 4865 || !UNSPECIFIEDP (attrs[LFACE_SWIDTH_INDEX]))
9717e36c 4866 {
327719ee 4867 int face_id;
9717e36c
MB
4868 struct face *face;
4869 Lisp_Object merged_attrs[LFACE_VECTOR_SIZE];
2dee4c0b 4870 int i;
9717e36c 4871
72af86bd 4872 memcpy (merged_attrs, def_attrs, sizeof merged_attrs);
9717e36c 4873
a0a23346 4874 merge_face_vectors (f, attrs, merged_attrs, 0);
9717e36c 4875
327719ee
MB
4876 face_id = lookup_face (f, merged_attrs);
4877 face = FACE_FROM_ID (f, face_id);
9717e36c
MB
4878
4879 if (! face)
2010ba8c 4880 error ("Cannot make face");
9717e36c 4881
4fc1984a
KH
4882 /* If the font is the same, or no font is found, then not
4883 supported. */
4884 if (face->font == def_face->font
4885 || ! face->font)
9717e36c 4886 return 0;
2dee4c0b
KH
4887 for (i = FONT_TYPE_INDEX; i <= FONT_SIZE_INDEX; i++)
4888 if (! EQ (face->font->props[i], def_face->font->props[i]))
4889 {
4890 Lisp_Object s1, s2;
4891
4892 if (i < FONT_FOUNDRY_INDEX || i > FONT_REGISTRY_INDEX
4893 || face->font->driver->case_sensitive)
4894 return 1;
4895 s1 = SYMBOL_NAME (face->font->props[i]);
4896 s2 = SYMBOL_NAME (def_face->font->props[i]);
4897 if (! EQ (Fcompare_strings (s1, make_number (0), Qnil,
4898 s2, make_number (0), Qnil, Qt), Qt))
4899 return 1;
4900 }
4901 return 0;
9717e36c
MB
4902 }
4903
4904 /* Everything checks out, this face is supported. */
4905 return 1;
4906}
4907
ccda4e3c 4908#endif /* HAVE_WINDOW_SYSTEM */
9717e36c
MB
4909
4910/* Return non-zero if all the face attributes in ATTRS are supported
4911 on the tty frame F.
4912
4913 The definition of `supported' is somewhat heuristic, but basically means
4914 that a face containing all the attributes in ATTRS, when merged
4915 with the default face for display, can be represented in a way that's
4916
4917 \(1) different in appearance than the default face, and
4918 \(2) `close in spirit' to what the attributes specify, if not exact.
4919
4920 Point (2) implies that a `:weight black' attribute will be satisfied
4921 by any terminal that can display bold, and a `:foreground "yellow"' as
4922 long as the terminal can display a yellowish color, but `:slant italic'
4923 will _not_ be satisfied by the tty display code's automatic
4924 substitution of a `dim' face for italic. */
4925
4926static int
b5f03016
AS
4927tty_supports_face_attributes_p (struct frame *f, Lisp_Object *attrs,
4928 struct face *def_face)
9717e36c 4929{
cd4eb164 4930 int weight, slant;
9717e36c
MB
4931 Lisp_Object val, fg, bg;
4932 XColor fg_tty_color, fg_std_color;
4933 XColor bg_tty_color, bg_std_color;
4934 unsigned test_caps = 0;
8e330b22 4935 Lisp_Object *def_attrs = def_face->lface;
9717e36c 4936
8e330b22
MB
4937 /* First check some easy-to-check stuff; ttys support none of the
4938 following attributes, so we can just return false if any are requested
4939 (even if `nominal' values are specified, we should still return false,
4940 as that will be the same value that the default face uses). We
4941 consider :slant unsupportable on ttys, even though the face code
4942 actually `fakes' them using a dim attribute if possible. This is
4943 because the faked result is too different from what the face
4944 specifies. */
4945 if (!UNSPECIFIEDP (attrs[LFACE_FAMILY_INDEX])
53aaf1e2 4946 || !UNSPECIFIEDP (attrs[LFACE_FOUNDRY_INDEX])
8e330b22
MB
4947 || !UNSPECIFIEDP (attrs[LFACE_STIPPLE_INDEX])
4948 || !UNSPECIFIEDP (attrs[LFACE_HEIGHT_INDEX])
4949 || !UNSPECIFIEDP (attrs[LFACE_SWIDTH_INDEX])
4950 || !UNSPECIFIEDP (attrs[LFACE_OVERLINE_INDEX])
4951 || !UNSPECIFIEDP (attrs[LFACE_STRIKE_THROUGH_INDEX])
cd4eb164 4952 || !UNSPECIFIEDP (attrs[LFACE_BOX_INDEX]))
9717e36c
MB
4953 return 0;
4954
9717e36c
MB
4955 /* Test for terminal `capabilities' (non-color character attributes). */
4956
4957 /* font weight (bold/dim) */
337fbd17
CY
4958 val = attrs[LFACE_WEIGHT_INDEX];
4959 if (!UNSPECIFIEDP (val)
4960 && (weight = FONT_WEIGHT_NAME_NUMERIC (val), weight >= 0))
9717e36c 4961 {
2dee4c0b 4962 int def_weight = FONT_WEIGHT_NAME_NUMERIC (def_attrs[LFACE_WEIGHT_INDEX]);
8e330b22 4963
2dee4c0b 4964 if (weight > 100)
8e330b22 4965 {
2dee4c0b 4966 if (def_weight > 100)
8e330b22
MB
4967 return 0; /* same as default */
4968 test_caps = TTY_CAP_BOLD;
4969 }
2dee4c0b 4970 else if (weight < 100)
8e330b22 4971 {
2dee4c0b 4972 if (def_weight < 100)
8e330b22
MB
4973 return 0; /* same as default */
4974 test_caps = TTY_CAP_DIM;
4975 }
2dee4c0b 4976 else if (def_weight == 100)
8e330b22 4977 return 0; /* same as default */
9717e36c
MB
4978 }
4979
cd4eb164
CY
4980 /* font slant */
4981 val = attrs[LFACE_SLANT_INDEX];
4982 if (!UNSPECIFIEDP (val)
4983 && (slant = FONT_SLANT_NAME_NUMERIC (val), slant >= 0))
4984 {
4985 int def_slant = FONT_SLANT_NAME_NUMERIC (def_attrs[LFACE_SLANT_INDEX]);
4986 if (slant == 100 || slant == def_slant)
4987 return 0; /* same as default */
4988 else
4989 test_caps |= TTY_CAP_ITALIC;
4990 }
4991
9717e36c
MB
4992 /* underlining */
4993 val = attrs[LFACE_UNDERLINE_INDEX];
8e330b22 4994 if (!UNSPECIFIEDP (val))
9717e36c
MB
4995 {
4996 if (STRINGP (val))
8e330b22
MB
4997 return 0; /* ttys can't use colored underlines */
4998 else if (face_attr_equal_p (val, def_attrs[LFACE_UNDERLINE_INDEX]))
4999 return 0; /* same as default */
9717e36c
MB
5000 else
5001 test_caps |= TTY_CAP_UNDERLINE;
5002 }
5003
5004 /* inverse video */
5005 val = attrs[LFACE_INVERSE_INDEX];
8e330b22
MB
5006 if (!UNSPECIFIEDP (val))
5007 {
a13ab63f 5008 if (face_attr_equal_p (val, def_attrs[LFACE_INVERSE_INDEX]))
8e330b22
MB
5009 return 0; /* same as default */
5010 else
5011 test_caps |= TTY_CAP_INVERSE;
5012 }
9717e36c
MB
5013
5014
5015 /* Color testing. */
5016
5017 /* Default the color indices in FG_TTY_COLOR and BG_TTY_COLOR, since
5018 we use them when calling `tty_capable_p' below, even if the face
5019 specifies no colors. */
5020 fg_tty_color.pixel = FACE_TTY_DEFAULT_FG_COLOR;
5021 bg_tty_color.pixel = FACE_TTY_DEFAULT_BG_COLOR;
5022
5023 /* Check if foreground color is close enough. */
5024 fg = attrs[LFACE_FOREGROUND_INDEX];
5025 if (STRINGP (fg))
5026 {
8e330b22
MB
5027 Lisp_Object def_fg = def_attrs[LFACE_FOREGROUND_INDEX];
5028
5029 if (face_attr_equal_p (fg, def_fg))
5030 return 0; /* same as default */
5031 else if (! tty_lookup_color (f, fg, &fg_tty_color, &fg_std_color))
5032 return 0; /* not a valid color */
9717e36c
MB
5033 else if (color_distance (&fg_tty_color, &fg_std_color)
5034 > TTY_SAME_COLOR_THRESHOLD)
8e330b22
MB
5035 return 0; /* displayed color is too different */
5036 else
5037 /* Make sure the color is really different than the default. */
5038 {
5039 XColor def_fg_color;
5040 if (tty_lookup_color (f, def_fg, &def_fg_color, 0)
5041 && (color_distance (&fg_tty_color, &def_fg_color)
5042 <= TTY_SAME_COLOR_THRESHOLD))
5043 return 0;
5044 }
9717e36c
MB
5045 }
5046
5047 /* Check if background color is close enough. */
5048 bg = attrs[LFACE_BACKGROUND_INDEX];
5049 if (STRINGP (bg))
5050 {
a13ab63f 5051 Lisp_Object def_bg = def_attrs[LFACE_BACKGROUND_INDEX];
8e330b22
MB
5052
5053 if (face_attr_equal_p (bg, def_bg))
5054 return 0; /* same as default */
5055 else if (! tty_lookup_color (f, bg, &bg_tty_color, &bg_std_color))
5056 return 0; /* not a valid color */
9717e36c
MB
5057 else if (color_distance (&bg_tty_color, &bg_std_color)
5058 > TTY_SAME_COLOR_THRESHOLD)
8e330b22
MB
5059 return 0; /* displayed color is too different */
5060 else
5061 /* Make sure the color is really different than the default. */
5062 {
5063 XColor def_bg_color;
5064 if (tty_lookup_color (f, def_bg, &def_bg_color, 0)
5065 && (color_distance (&bg_tty_color, &def_bg_color)
5066 <= TTY_SAME_COLOR_THRESHOLD))
5067 return 0;
5068 }
9717e36c
MB
5069 }
5070
5071 /* If both foreground and background are requested, see if the
5072 distance between them is OK. We just check to see if the distance
5073 between the tty's foreground and background is close enough to the
5074 distance between the standard foreground and background. */
5075 if (STRINGP (fg) && STRINGP (bg))
5076 {
5077 int delta_delta
5078 = (color_distance (&fg_std_color, &bg_std_color)
5079 - color_distance (&fg_tty_color, &bg_tty_color));
5080 if (delta_delta > TTY_SAME_COLOR_THRESHOLD
5081 || delta_delta < -TTY_SAME_COLOR_THRESHOLD)
5082 return 0;
5083 }
5084
5085
5086 /* See if the capabilities we selected above are supported, with the
5087 given colors. */
5088 if (test_caps != 0 &&
b5f03016
AS
5089 ! tty_capable_p (FRAME_TTY (f), test_caps, fg_tty_color.pixel,
5090 bg_tty_color.pixel))
9717e36c
MB
5091 return 0;
5092
5093
5094 /* Hmmm, everything checks out, this terminal must support this face. */
5095 return 1;
5096}
5097
5098
5099DEFUN ("display-supports-face-attributes-p",
5100 Fdisplay_supports_face_attributes_p, Sdisplay_supports_face_attributes_p,
5101 1, 2, 0,
5102 doc: /* Return non-nil if all the face attributes in ATTRIBUTES are supported.
5103The optional argument DISPLAY can be a display name, a frame, or
9fed2905 5104nil (meaning the selected frame's display).
9717e36c
MB
5105
5106The definition of `supported' is somewhat heuristic, but basically means
5107that a face containing all the attributes in ATTRIBUTES, when merged
5108with the default face for display, can be represented in a way that's
5109
5110 \(1) different in appearance than the default face, and
5111 \(2) `close in spirit' to what the attributes specify, if not exact.
5112
5113Point (2) implies that a `:weight black' attribute will be satisfied by
5114any display that can display bold, and a `:foreground \"yellow\"' as long
5115as it can display a yellowish color, but `:slant italic' will _not_ be
5116satisfied by the tty display code's automatic substitution of a `dim'
9fed2905 5117face for italic. */)
5842a27b 5118 (Lisp_Object attributes, Lisp_Object display)
9717e36c 5119{
221439a0 5120 int supports = 0, i;
9717e36c
MB
5121 Lisp_Object frame;
5122 struct frame *f;
8e330b22 5123 struct face *def_face;
9717e36c
MB
5124 Lisp_Object attrs[LFACE_VECTOR_SIZE];
5125
0722292b
MB
5126 if (noninteractive || !initialized)
5127 /* We may not be able to access low-level face information in batch
5128 mode, or before being dumped, and this function is not going to
5129 be very useful in those cases anyway, so just give up. */
5130 return Qnil;
5131
9717e36c
MB
5132 if (NILP (display))
5133 frame = selected_frame;
5134 else if (FRAMEP (display))
5135 frame = display;
5136 else
5137 {
5138 /* Find any frame on DISPLAY. */
5139 Lisp_Object fl_tail;
5140
5141 frame = Qnil;
5142 for (fl_tail = Vframe_list; CONSP (fl_tail); fl_tail = XCDR (fl_tail))
5143 {
5144 frame = XCAR (fl_tail);
5145 if (!NILP (Fequal (Fcdr (Fassq (Qdisplay,
5146 XFRAME (frame)->param_alist)),
5147 display)))
5148 break;
5149 }
5150 }
5151
5152 CHECK_LIVE_FRAME (frame);
5153 f = XFRAME (frame);
5154
5155 for (i = 0; i < LFACE_VECTOR_SIZE; i++)
5156 attrs[i] = Qunspecified;
a0a23346 5157 merge_face_ref (f, attributes, attrs, 1, 0);
9717e36c 5158
8e330b22
MB
5159 def_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
5160 if (def_face == NULL)
5161 {
5162 if (! realize_basic_faces (f))
734e9514 5163 error ("Cannot realize default face");
8e330b22 5164 def_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
418ca4d2
RS
5165 if (def_face == NULL)
5166 abort (); /* realize_basic_faces must have set it up */
8e330b22
MB
5167 }
5168
9717e36c
MB
5169 /* Dispatch to the appropriate handler. */
5170 if (FRAME_TERMCAP_P (f) || FRAME_MSDOS_P (f))
8e330b22 5171 supports = tty_supports_face_attributes_p (f, attrs, def_face);
ccda4e3c 5172#ifdef HAVE_WINDOW_SYSTEM
9717e36c 5173 else
8e330b22
MB
5174 supports = x_supports_face_attributes_p (f, attrs, def_face);
5175#endif
9717e36c
MB
5176
5177 return supports ? Qt : Qnil;
5178}
5179
5180\f
82641697
GM
5181/***********************************************************************
5182 Font selection
5183 ***********************************************************************/
5184
2c7d1565 5185DEFUN ("internal-set-font-selection-order",
82641697
GM
5186 Finternal_set_font_selection_order,
5187 Sinternal_set_font_selection_order, 1, 1, 0,
7ee72033 5188 doc: /* Set font selection order for face font selection to ORDER.
228299fa
GM
5189ORDER must be a list of length 4 containing the symbols `:width',
5190`:height', `:weight', and `:slant'. Face attributes appearing
5191first in ORDER are matched first, e.g. if `:height' appears before
5192`:weight' in ORDER, font selection first tries to find a font with
5193a suitable height, and then tries to match the font weight.
7ee72033 5194Value is ORDER. */)
5842a27b 5195 (Lisp_Object order)
82641697
GM
5196{
5197 Lisp_Object list;
5198 int i;
a08332c0 5199 int indices[DIM (font_sort_order)];
178c5d9c 5200
b7826503 5201 CHECK_LIST (order);
72af86bd 5202 memset (indices, 0, sizeof indices);
82641697
GM
5203 i = 0;
5204
5205 for (list = order;
5206 CONSP (list) && i < DIM (indices);
5207 list = XCDR (list), ++i)
5208 {
5209 Lisp_Object attr = XCAR (list);
5210 int xlfd;
5211
5212 if (EQ (attr, QCwidth))
5213 xlfd = XLFD_SWIDTH;
5214 else if (EQ (attr, QCheight))
5215 xlfd = XLFD_POINT_SIZE;
5216 else if (EQ (attr, QCweight))
5217 xlfd = XLFD_WEIGHT;
5218 else if (EQ (attr, QCslant))
5219 xlfd = XLFD_SLANT;
5220 else
5221 break;
5222
5223 if (indices[i] != 0)
5224 break;
5225 indices[i] = xlfd;
5226 }
5227
a08332c0 5228 if (!NILP (list) || i != DIM (indices))
82641697 5229 signal_error ("Invalid font sort order", order);
a08332c0
GM
5230 for (i = 0; i < DIM (font_sort_order); ++i)
5231 if (indices[i] == 0)
5232 signal_error ("Invalid font sort order", order);
82641697 5233
72af86bd 5234 if (memcmp (indices, font_sort_order, sizeof indices) != 0)
82641697 5235 {
72af86bd 5236 memcpy (font_sort_order, indices, sizeof font_sort_order);
82641697
GM
5237 free_all_realized_faces (Qnil);
5238 }
178c5d9c 5239
2dee4c0b 5240 font_update_sort_order (font_sort_order);
426b2119 5241
82641697
GM
5242 return Qnil;
5243}
5244
5245
5246DEFUN ("internal-set-alternative-font-family-alist",
5247 Finternal_set_alternative_font_family_alist,
5248 Sinternal_set_alternative_font_family_alist, 1, 1, 0,
c71f3632 5249 doc: /* Define alternative font families to try in face font selection.
228299fa
GM
5250ALIST is an alist of (FAMILY ALTERNATIVE1 ALTERNATIVE2 ...) entries.
5251Each ALTERNATIVE is tried in order if no fonts of font family FAMILY can
7ee72033 5252be found. Value is ALIST. */)
5842a27b 5253 (Lisp_Object alist)
82641697 5254{
a77d5bb2 5255 Lisp_Object entry, tail, tail2;
53aaf1e2 5256
b7826503 5257 CHECK_LIST (alist);
53aaf1e2
KH
5258 alist = Fcopy_sequence (alist);
5259 for (tail = alist; CONSP (tail); tail = XCDR (tail))
a77d5bb2
CY
5260 {
5261 entry = XCAR (tail);
5262 CHECK_LIST (entry);
5263 entry = Fcopy_sequence (entry);
5264 XSETCAR (tail, entry);
5265 for (tail2 = entry; CONSP (tail2); tail2 = XCDR (tail2))
5266 XSETCAR (tail2, Fintern (XCAR (tail2), Qnil));
5267 }
5268
82641697
GM
5269 Vface_alternative_font_family_alist = alist;
5270 free_all_realized_faces (Qnil);
5271 return alist;
5272}
5273
5274
32fcc231
GM
5275DEFUN ("internal-set-alternative-font-registry-alist",
5276 Finternal_set_alternative_font_registry_alist,
5277 Sinternal_set_alternative_font_registry_alist, 1, 1, 0,
e3cd9e7f 5278 doc: /* Define alternative font registries to try in face font selection.
228299fa
GM
5279ALIST is an alist of (REGISTRY ALTERNATIVE1 ALTERNATIVE2 ...) entries.
5280Each ALTERNATIVE is tried in order if no fonts of font registry REGISTRY can
7ee72033 5281be found. Value is ALIST. */)
5842a27b 5282 (Lisp_Object alist)
32fcc231 5283{
a77d5bb2 5284 Lisp_Object entry, tail, tail2;
53aaf1e2 5285
b7826503 5286 CHECK_LIST (alist);
53aaf1e2
KH
5287 alist = Fcopy_sequence (alist);
5288 for (tail = alist; CONSP (tail); tail = XCDR (tail))
a77d5bb2
CY
5289 {
5290 entry = XCAR (tail);
5291 CHECK_LIST (entry);
5292 entry = Fcopy_sequence (entry);
5293 XSETCAR (tail, entry);
5294 for (tail2 = entry; CONSP (tail2); tail2 = XCDR (tail2))
5295 XSETCAR (tail2, Fdowncase (XCAR (tail2)));
5296 }
32fcc231
GM
5297 Vface_alternative_font_registry_alist = alist;
5298 free_all_realized_faces (Qnil);
5299 return alist;
5300}
5301
5302
c3cee013 5303#ifdef HAVE_WINDOW_SYSTEM
82641697 5304
39506348
KH
5305/* Return the fontset id of the base fontset name or alias name given
5306 by the fontset attribute of ATTRS. Value is -1 if the fontset
5307 attribute of ATTRS doesn't name a fontset. */
82641697
GM
5308
5309static int
971de7fb 5310face_fontset (Lisp_Object *attrs)
82641697 5311{
39506348 5312 Lisp_Object name;
178c5d9c 5313
763bc839 5314 name = attrs[LFACE_FONTSET_INDEX];
39506348
KH
5315 if (!STRINGP (name))
5316 return -1;
5317 return fs_query_fontset (name, 0);
82641697
GM
5318}
5319
c3cee013 5320#endif /* HAVE_WINDOW_SYSTEM */
82641697
GM
5321
5322
5323\f
5324/***********************************************************************
5325 Face Realization
5326 ***********************************************************************/
5327
5328/* Realize basic faces on frame F. Value is zero if frame parameters
5329 of F don't contain enough information needed to realize the default
5330 face. */
5331
5332static int
971de7fb 5333realize_basic_faces (struct frame *f)
82641697
GM
5334{
5335 int success_p = 0;
d311d28c 5336 ptrdiff_t count = SPECPDL_INDEX ();
17e8204b 5337
04386463
GM
5338 /* Block input here so that we won't be surprised by an X expose
5339 event, for instance, without having the faces set up. */
17e8204b 5340 BLOCK_INPUT;
eeffb293 5341 specbind (Qscalable_fonts_allowed, Qt);
178c5d9c 5342
82641697
GM
5343 if (realize_default_face (f))
5344 {
92610620 5345 realize_named_face (f, Qmode_line, MODE_LINE_FACE_ID);
039b6394 5346 realize_named_face (f, Qmode_line_inactive, MODE_LINE_INACTIVE_FACE_ID);
9ea173e8 5347 realize_named_face (f, Qtool_bar, TOOL_BAR_FACE_ID);
4e50fa8b 5348 realize_named_face (f, Qfringe, FRINGE_FACE_ID);
045dee35 5349 realize_named_face (f, Qheader_line, HEADER_LINE_FACE_ID);
8bd201d6
GM
5350 realize_named_face (f, Qscroll_bar, SCROLL_BAR_FACE_ID);
5351 realize_named_face (f, Qborder, BORDER_FACE_ID);
5352 realize_named_face (f, Qcursor, CURSOR_FACE_ID);
5353 realize_named_face (f, Qmouse, MOUSE_FACE_ID);
c7ae3284 5354 realize_named_face (f, Qmenu, MENU_FACE_ID);
53abc3bf 5355 realize_named_face (f, Qvertical_border, VERTICAL_BORDER_FACE_ID);
563f68f1 5356
b5de343d 5357 /* Reflect changes in the `menu' face in menu bars. */
ceeda019 5358 if (FRAME_FACE_CACHE (f)->menu_face_changed_p)
563f68f1 5359 {
ceeda019 5360 FRAME_FACE_CACHE (f)->menu_face_changed_p = 0;
563f68f1 5361#ifdef USE_X_TOOLKIT
b5f03016
AS
5362 if (FRAME_WINDOW_P (f))
5363 x_update_menu_appearance (f);
a03ad468 5364#endif
563f68f1 5365 }
177c0ea7 5366
82641697
GM
5367 success_p = 1;
5368 }
5369
eeffb293 5370 unbind_to (count, Qnil);
17e8204b 5371 UNBLOCK_INPUT;
82641697
GM
5372 return success_p;
5373}
5374
5375
5376/* Realize the default face on frame F. If the face is not fully
5377 specified, make it fully-specified. Attributes of the default face
5378 that are not explicitly specified are taken from frame parameters. */
5379
5380static int
971de7fb 5381realize_default_face (struct frame *f)
82641697
GM
5382{
5383 struct face_cache *c = FRAME_FACE_CACHE (f);
5384 Lisp_Object lface;
5385 Lisp_Object attrs[LFACE_VECTOR_SIZE];
82641697 5386 struct face *face;
82641697
GM
5387
5388 /* If the `default' face is not yet known, create it. */
5389 lface = lface_from_face_name (f, Qdefault, 0);
5390 if (NILP (lface))
1682701f 5391 {
07446869
GM
5392 Lisp_Object frame;
5393 XSETFRAME (frame, f);
5394 lface = Finternal_make_lisp_face (Qdefault, frame);
1682701f 5395 }
07446869 5396
c3cee013
JR
5397#ifdef HAVE_WINDOW_SYSTEM
5398 if (FRAME_WINDOW_P (f))
82641697 5399 {
2dee4c0b
KH
5400 Lisp_Object font_object;
5401
5402 XSETFONT (font_object, FRAME_FONT (f));
5403 set_lface_from_font (f, lface, font_object, f->default_face_done_p);
5404 LFACE_FONTSET (lface) = fontset_name (FRAME_FONTSET (f));
a5f696ac 5405 f->default_face_done_p = 1;
82641697 5406 }
c3cee013 5407#endif /* HAVE_WINDOW_SYSTEM */
82641697 5408
44747bd0 5409 if (!FRAME_WINDOW_P (f))
82641697
GM
5410 {
5411 LFACE_FAMILY (lface) = build_string ("default");
53aaf1e2 5412 LFACE_FOUNDRY (lface) = LFACE_FAMILY (lface);
82641697
GM
5413 LFACE_SWIDTH (lface) = Qnormal;
5414 LFACE_HEIGHT (lface) = make_number (1);
c1e7532d
EZ
5415 if (UNSPECIFIEDP (LFACE_WEIGHT (lface)))
5416 LFACE_WEIGHT (lface) = Qnormal;
5417 if (UNSPECIFIEDP (LFACE_SLANT (lface)))
5418 LFACE_SLANT (lface) = Qnormal;
70d6ecc6
KH
5419 if (UNSPECIFIEDP (LFACE_FONTSET (lface)))
5420 LFACE_FONTSET (lface) = Qnil;
82641697 5421 }
178c5d9c 5422
82641697
GM
5423 if (UNSPECIFIEDP (LFACE_UNDERLINE (lface)))
5424 LFACE_UNDERLINE (lface) = Qnil;
178c5d9c 5425
82641697
GM
5426 if (UNSPECIFIEDP (LFACE_OVERLINE (lface)))
5427 LFACE_OVERLINE (lface) = Qnil;
178c5d9c 5428
82641697
GM
5429 if (UNSPECIFIEDP (LFACE_STRIKE_THROUGH (lface)))
5430 LFACE_STRIKE_THROUGH (lface) = Qnil;
178c5d9c 5431
82641697
GM
5432 if (UNSPECIFIEDP (LFACE_BOX (lface)))
5433 LFACE_BOX (lface) = Qnil;
178c5d9c 5434
82641697
GM
5435 if (UNSPECIFIEDP (LFACE_INVERSE (lface)))
5436 LFACE_INVERSE (lface) = Qnil;
178c5d9c 5437
82641697
GM
5438 if (UNSPECIFIEDP (LFACE_FOREGROUND (lface)))
5439 {
5440 /* This function is called so early that colors are not yet
5441 set in the frame parameter list. */
5442 Lisp_Object color = Fassq (Qforeground_color, f->param_alist);
178c5d9c 5443
82641697
GM
5444 if (CONSP (color) && STRINGP (XCDR (color)))
5445 LFACE_FOREGROUND (lface) = XCDR (color);
c3cee013 5446 else if (FRAME_WINDOW_P (f))
82641697 5447 return 0;
3224dac1 5448 else if (FRAME_INITIAL_P (f) || FRAME_TERMCAP_P (f) || FRAME_MSDOS_P (f))
ef917393 5449 LFACE_FOREGROUND (lface) = build_string (unspecified_fg);
f9d2fdc4 5450 else
82641697
GM
5451 abort ();
5452 }
178c5d9c 5453
82641697
GM
5454 if (UNSPECIFIEDP (LFACE_BACKGROUND (lface)))
5455 {
5456 /* This function is called so early that colors are not yet
5457 set in the frame parameter list. */
5458 Lisp_Object color = Fassq (Qbackground_color, f->param_alist);
5459 if (CONSP (color) && STRINGP (XCDR (color)))
5460 LFACE_BACKGROUND (lface) = XCDR (color);
c3cee013 5461 else if (FRAME_WINDOW_P (f))
82641697 5462 return 0;
3224dac1 5463 else if (FRAME_INITIAL_P (f) || FRAME_TERMCAP_P (f) || FRAME_MSDOS_P (f))
ef917393 5464 LFACE_BACKGROUND (lface) = build_string (unspecified_bg);
f9d2fdc4 5465 else
82641697
GM
5466 abort ();
5467 }
178c5d9c 5468
82641697
GM
5469 if (UNSPECIFIEDP (LFACE_STIPPLE (lface)))
5470 LFACE_STIPPLE (lface) = Qnil;
5471
5472 /* Realize the face; it must be fully-specified now. */
5473 xassert (lface_fully_specified_p (XVECTOR (lface)->contents));
5474 check_lface (lface);
72af86bd 5475 memcpy (attrs, XVECTOR (lface)->contents, sizeof attrs);
af53b43c 5476 face = realize_face (c, attrs, DEFAULT_FACE_ID);
4da9c136
KH
5477
5478#ifdef HAVE_WINDOW_SYSTEM
41a9b76e 5479#ifdef HAVE_X_WINDOWS
361c0d6e 5480 if (FRAME_X_P (f) && face->font != FRAME_FONT (f))
73158a39
CY
5481 {
5482 /* This can happen when making a frame on a display that does
b5f03016 5483 not support the default font. */
73158a39 5484 if (!face->font)
b5f03016 5485 return 0;
d5ab09cd 5486
73158a39 5487 /* Otherwise, the font specified for the frame was not
b5f03016
AS
5488 acceptable as a font for the default face (perhaps because
5489 auto-scaled fonts are rejected), so we must adjust the frame
5490 font. */
2dee4c0b 5491 x_set_font (f, LFACE_FONT (lface), Qnil);
73158a39 5492 }
4da9c136
KH
5493#endif /* HAVE_X_WINDOWS */
5494#endif /* HAVE_WINDOW_SYSTEM */
82641697
GM
5495 return 1;
5496}
5497
5498
5499/* Realize basic faces other than the default face in face cache C.
5500 SYMBOL is the face name, ID is the face id the realized face must
5501 have. The default face must have been realized already. */
5502
5503static void
971de7fb 5504realize_named_face (struct frame *f, Lisp_Object symbol, int id)
82641697 5505{
e7d7fd8c 5506 struct face_cache *c = FRAME_FACE_CACHE (f);
82641697
GM
5507 Lisp_Object lface = lface_from_face_name (f, symbol, 0);
5508 Lisp_Object attrs[LFACE_VECTOR_SIZE];
e7d7fd8c 5509 Lisp_Object symbol_attrs[LFACE_VECTOR_SIZE];
82641697
GM
5510
5511 /* The default face must exist and be fully specified. */
f2cec7a9 5512 get_lface_attributes_no_remap (f, Qdefault, attrs, 1);
82641697
GM
5513 check_lface_attrs (attrs);
5514 xassert (lface_fully_specified_p (attrs));
5515
e7d7fd8c 5516 /* If SYMBOL isn't know as a face, create it. */
82641697
GM
5517 if (NILP (lface))
5518 {
5519 Lisp_Object frame;
5520 XSETFRAME (frame, f);
5521 lface = Finternal_make_lisp_face (symbol, frame);
5522 }
5523
5524 /* Merge SYMBOL's face with the default face. */
f2cec7a9 5525 get_lface_attributes_no_remap (f, symbol, symbol_attrs, 1);
e7d7fd8c
MB
5526 merge_face_vectors (f, symbol_attrs, attrs, 0);
5527
5528 /* Realize the face. */
a5a62657 5529 realize_face (c, attrs, id);
82641697
GM
5530}
5531
5532
5533/* Realize the fully-specified face with attributes ATTRS in face
af53b43c
KH
5534 cache CACHE for ASCII characters. If FORMER_FACE_ID is
5535 non-negative, it is an ID of face to remove before caching the new
5536 face. Value is a pointer to the newly created realized face. */
82641697
GM
5537
5538static struct face *
971de7fb 5539realize_face (struct face_cache *cache, Lisp_Object *attrs, int former_face_id)
82641697
GM
5540{
5541 struct face *face;
178c5d9c 5542
82641697 5543 /* LFACE must be fully specified. */
39506348 5544 xassert (cache != NULL);
82641697
GM
5545 check_lface_attrs (attrs);
5546
39506348
KH
5547 if (former_face_id >= 0 && cache->used > former_face_id)
5548 {
5549 /* Remove the former face. */
5550 struct face *former_face = cache->faces_by_id[former_face_id];
5551 uncache_face (cache, former_face);
5552 free_realized_face (cache->f, former_face);
7c33a057 5553 SET_FRAME_GARBAGED (cache->f);
39506348
KH
5554 }
5555
5556 if (FRAME_WINDOW_P (cache->f))
af53b43c 5557 face = realize_x_face (cache, attrs);
e689ec06 5558 else if (FRAME_TERMCAP_P (cache->f) || FRAME_MSDOS_P (cache->f))
af53b43c 5559 face = realize_tty_face (cache, attrs);
d448e982
KL
5560 else if (FRAME_INITIAL_P (cache->f))
5561 {
5562 /* Create a dummy face. */
5563 face = make_realized_face (attrs);
5564 }
82641697
GM
5565 else
5566 abort ();
5567
39506348
KH
5568 /* Insert the new face. */
5569 cache_face (cache, face, lface_hash (attrs));
af53b43c
KH
5570 return face;
5571}
5572
5573
8c6204de 5574#ifdef HAVE_WINDOW_SYSTEM
2dee4c0b
KH
5575/* Realize the fully-specified face that uses FONT-OBJECT and has the
5576 same attributes as BASE_FACE except for the font on frame F.
5577 FONT-OBJECT may be nil, in which case, realized a face of
5578 no-font. */
af53b43c
KH
5579
5580static struct face *
b5f03016
AS
5581realize_non_ascii_face (struct frame *f, Lisp_Object font_object,
5582 struct face *base_face)
af53b43c
KH
5583{
5584 struct face_cache *cache = FRAME_FACE_CACHE (f);
8f924df7 5585 struct face *face;
af53b43c
KH
5586
5587 face = (struct face *) xmalloc (sizeof *face);
5588 *face = *base_face;
5589 face->gc = 0;
bdd10de6 5590 face->extra = NULL;
2dee4c0b
KH
5591 face->overstrike
5592 = (! NILP (font_object)
5593 && FONT_WEIGHT_NAME_NUMERIC (face->lface[LFACE_WEIGHT_INDEX]) > 100
5594 && FONT_WEIGHT_NUMERIC (font_object) <= 100);
af53b43c
KH
5595
5596 /* Don't try to free the colors copied bitwise from BASE_FACE. */
5597 face->colors_copied_bitwise_p = 1;
2dee4c0b 5598 face->font = NILP (font_object) ? NULL : XFONT_OBJECT (font_object);
af53b43c
KH
5599 face->gc = 0;
5600
5601 cache_face (cache, face, face->hash);
5602
82641697
GM
5603 return face;
5604}
8c6204de 5605#endif /* HAVE_WINDOW_SYSTEM */
82641697
GM
5606
5607
5608/* Realize the fully-specified face with attributes ATTRS in face
af53b43c
KH
5609 cache CACHE for ASCII characters. Do it for X frame CACHE->f. If
5610 the new face doesn't share font with the default face, a fontname
5611 is allocated from the heap and set in `font_name' of the new face,
5612 but it is not yet loaded here. Value is a pointer to the newly
5613 created realized face. */
82641697
GM
5614
5615static struct face *
971de7fb 5616realize_x_face (struct face_cache *cache, Lisp_Object *attrs)
82641697 5617{
7d603e3f 5618 struct face *face = NULL;
c3cee013 5619#ifdef HAVE_WINDOW_SYSTEM
7d603e3f 5620 struct face *default_face;
78d2079c 5621 struct frame *f;
9b0e3eba 5622 Lisp_Object stipple, underline, overline, strike_through, box;
82641697 5623
39506348 5624 xassert (FRAME_WINDOW_P (cache->f));
82641697
GM
5625
5626 /* Allocate a new realized face. */
39506348 5627 face = make_realized_face (attrs);
af53b43c 5628 face->ascii_face = face;
39506348
KH
5629
5630 f = cache->f;
5631
82641697
GM
5632 /* Determine the font to use. Most of the time, the font will be
5633 the same as the font of the default face, so try that first. */
5634 default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
5635 if (default_face
82641697
GM
5636 && lface_same_font_attributes_p (default_face->lface, attrs))
5637 {
5638 face->font = default_face->font;
76f54ecc
KH
5639 face->fontset
5640 = make_fontset_for_ascii_face (f, default_face->fontset, face);
82641697
GM
5641 }
5642 else
5643 {
39506348 5644 /* If the face attribute ATTRS specifies a fontset, use it as
fc8c4797
KH
5645 the base of a new realized fontset. Otherwise, use the same
5646 base fontset as of the default face. The base determines
5647 registry and encoding of a font. It may also determine
5648 foundry and family. The other fields of font name pattern
5649 are constructed from ATTRS. */
5650 int fontset = face_fontset (attrs);
5651
af53b43c
KH
5652 /* If we are realizing the default face, ATTRS should specify a
5653 fontset. In other words, if FONTSET is -1, we are not
5654 realizing the default face, thus the default face should have
5655 already been realized. */
5656 if (fontset == -1)
d78494f9
CY
5657 {
5658 if (default_face)
5659 fontset = default_face->fontset;
5660 if (fontset == -1)
5661 abort ();
5662 }
2dee4c0b
KH
5663 if (! FONT_OBJECT_P (attrs[LFACE_FONT_INDEX]))
5664 attrs[LFACE_FONT_INDEX]
5665 = font_load_for_lface (f, attrs, attrs[LFACE_FONT_INDEX]);
5666 if (FONT_OBJECT_P (attrs[LFACE_FONT_INDEX]))
5667 {
5668 face->font = XFONT_OBJECT (attrs[LFACE_FONT_INDEX]);
5669 face->fontset = make_fontset_for_ascii_face (f, fontset, face);
5670 }
426b2119 5671 else
2dee4c0b
KH
5672 {
5673 face->font = NULL;
5674 face->fontset = -1;
5675 }
82641697
GM
5676 }
5677
2dee4c0b
KH
5678 if (face->font
5679 && FONT_WEIGHT_NAME_NUMERIC (attrs[LFACE_WEIGHT_INDEX]) > 100
5680 && FONT_WEIGHT_NUMERIC (attrs[LFACE_FONT_INDEX]) <= 100)
5681 face->overstrike = 1;
5682
82641697 5683 /* Load colors, and set remaining attributes. */
178c5d9c 5684
82641697 5685 load_face_colors (f, face, attrs);
660ed669 5686
82641697
GM
5687 /* Set up box. */
5688 box = attrs[LFACE_BOX_INDEX];
5689 if (STRINGP (box))
cb637678 5690 {
82641697
GM
5691 /* A simple box of line width 1 drawn in color given by
5692 the string. */
5693 face->box_color = load_color (f, face, attrs[LFACE_BOX_INDEX],
5694 LFACE_BOX_INDEX);
5695 face->box = FACE_SIMPLE_BOX;
5696 face->box_line_width = 1;
cb637678 5697 }
82641697 5698 else if (INTEGERP (box))
42120bc7 5699 {
82641697 5700 /* Simple box of specified line width in foreground color of the
b5f03016 5701 face. */
89624b8b 5702 xassert (XINT (box) != 0);
82641697 5703 face->box = FACE_SIMPLE_BOX;
89624b8b 5704 face->box_line_width = XINT (box);
82641697
GM
5705 face->box_color = face->foreground;
5706 face->box_color_defaulted_p = 1;
5707 }
5708 else if (CONSP (box))
5709 {
5710 /* `(:width WIDTH :color COLOR :shadow SHADOW)'. SHADOW
5711 being one of `raised' or `sunken'. */
5712 face->box = FACE_SIMPLE_BOX;
5713 face->box_color = face->foreground;
5714 face->box_color_defaulted_p = 1;
5715 face->box_line_width = 1;
5716
5717 while (CONSP (box))
42120bc7 5718 {
82641697
GM
5719 Lisp_Object keyword, value;
5720
5721 keyword = XCAR (box);
5722 box = XCDR (box);
5723
5724 if (!CONSP (box))
5725 break;
5726 value = XCAR (box);
5727 box = XCDR (box);
5728
5729 if (EQ (keyword, QCline_width))
5730 {
89624b8b
KH
5731 if (INTEGERP (value) && XINT (value) != 0)
5732 face->box_line_width = XINT (value);
82641697
GM
5733 }
5734 else if (EQ (keyword, QCcolor))
5735 {
5736 if (STRINGP (value))
5737 {
5738 face->box_color = load_color (f, face, value,
5739 LFACE_BOX_INDEX);
5740 face->use_box_color_for_shadows_p = 1;
5741 }
5742 }
5743 else if (EQ (keyword, QCstyle))
a8517066 5744 {
82641697
GM
5745 if (EQ (value, Qreleased_button))
5746 face->box = FACE_RAISED_BOX;
5747 else if (EQ (value, Qpressed_button))
5748 face->box = FACE_SUNKEN_BOX;
a8517066 5749 }
42120bc7
RS
5750 }
5751 }
195f798e 5752
82641697 5753 /* Text underline, overline, strike-through. */
178c5d9c 5754
9b0e3eba
AA
5755 underline = attrs[LFACE_UNDERLINE_INDEX];
5756 if (EQ (underline, Qt))
178c5d9c 5757 {
82641697
GM
5758 /* Use default color (same as foreground color). */
5759 face->underline_p = 1;
9b0e3eba 5760 face->underline_type = FACE_UNDER_LINE;
82641697
GM
5761 face->underline_defaulted_p = 1;
5762 face->underline_color = 0;
5763 }
9b0e3eba 5764 else if (STRINGP (underline))
195f798e 5765 {
82641697
GM
5766 /* Use specified color. */
5767 face->underline_p = 1;
9b0e3eba 5768 face->underline_type = FACE_UNDER_LINE;
82641697
GM
5769 face->underline_defaulted_p = 0;
5770 face->underline_color
9b0e3eba 5771 = load_color (f, face, underline,
82641697 5772 LFACE_UNDERLINE_INDEX);
195f798e 5773 }
9b0e3eba 5774 else if (NILP (underline))
7b00de84 5775 {
82641697
GM
5776 face->underline_p = 0;
5777 face->underline_defaulted_p = 0;
5778 face->underline_color = 0;
7b00de84 5779 }
9b0e3eba
AA
5780 else if (CONSP (underline))
5781 {
5782 /* `(:color COLOR :style STYLE)'.
5783 STYLE being one of `line' or `wave'. */
5784 face->underline_p = 1;
5785 face->underline_color = 0;
5786 face->underline_defaulted_p = 1;
5787 face->underline_type = FACE_UNDER_LINE;
5788
5789 while (CONSP (underline))
5790 {
5791 Lisp_Object keyword, value;
5792
5793 keyword = XCAR (underline);
5794 underline = XCDR (underline);
5795
5796 if (!CONSP (underline))
5797 break;
5798 value = XCAR (underline);
5799 underline = XCDR (underline);
5800
5801 if (EQ (keyword, QCcolor))
5802 {
5803 if (EQ (value, Qforeground_color))
5804 {
5805 face->underline_defaulted_p = 1;
5806 face->underline_color = 0;
5807 }
5808 else if (STRINGP (value))
5809 {
5810 face->underline_defaulted_p = 0;
5811 face->underline_color = load_color (f, face, value,
5812 LFACE_UNDERLINE_INDEX);
5813 }
5814 }
5815 else if (EQ (keyword, QCstyle))
5816 {
5817 if (EQ (value, Qline))
5818 face->underline_type = FACE_UNDER_LINE;
5819 else if (EQ (value, Qwave))
5820 face->underline_type = FACE_UNDER_WAVE;
5821 }
5822 }
5823 }
5824
82641697
GM
5825 overline = attrs[LFACE_OVERLINE_INDEX];
5826 if (STRINGP (overline))
cb637678 5827 {
82641697
GM
5828 face->overline_color
5829 = load_color (f, face, attrs[LFACE_OVERLINE_INDEX],
5830 LFACE_OVERLINE_INDEX);
5831 face->overline_p = 1;
cb637678 5832 }
82641697 5833 else if (EQ (overline, Qt))
cb637678 5834 {
82641697
GM
5835 face->overline_color = face->foreground;
5836 face->overline_color_defaulted_p = 1;
5837 face->overline_p = 1;
cb637678
JB
5838 }
5839
82641697
GM
5840 strike_through = attrs[LFACE_STRIKE_THROUGH_INDEX];
5841 if (STRINGP (strike_through))
5842 {
5843 face->strike_through_color
5844 = load_color (f, face, attrs[LFACE_STRIKE_THROUGH_INDEX],
5845 LFACE_STRIKE_THROUGH_INDEX);
5846 face->strike_through_p = 1;
5847 }
5848 else if (EQ (strike_through, Qt))
5849 {
5850 face->strike_through_color = face->foreground;
5851 face->strike_through_color_defaulted_p = 1;
5852 face->strike_through_p = 1;
5853 }
867dd159 5854
82641697
GM
5855 stipple = attrs[LFACE_STIPPLE_INDEX];
5856 if (!NILP (stipple))
5857 face->stipple = load_pixmap (f, stipple, &face->pixmap_w, &face->pixmap_h);
c3cee013 5858#endif /* HAVE_WINDOW_SYSTEM */
660ed669 5859
82641697 5860 return face;
660ed669
JB
5861}
5862
729425b1 5863
ae4b4ba5
GM
5864/* Map a specified color of face FACE on frame F to a tty color index.
5865 IDX is either LFACE_FOREGROUND_INDEX or LFACE_BACKGROUND_INDEX, and
5866 specifies which color to map. Set *DEFAULTED to 1 if mapping to the
5867 default foreground/background colors. */
5868
5869static void
b5f03016
AS
5870map_tty_color (struct frame *f, struct face *face,
5871 enum lface_attribute_index idx, int *defaulted)
ae4b4ba5
GM
5872{
5873 Lisp_Object frame, color, def;
5874 int foreground_p = idx == LFACE_FOREGROUND_INDEX;
a5a62657
PE
5875 unsigned long default_pixel =
5876 foreground_p ? FACE_TTY_DEFAULT_FG_COLOR : FACE_TTY_DEFAULT_BG_COLOR;
5877 unsigned long pixel = default_pixel;
5878#ifdef MSDOS
5879 unsigned long default_other_pixel =
5880 foreground_p ? FACE_TTY_DEFAULT_BG_COLOR : FACE_TTY_DEFAULT_FG_COLOR;
5881#endif
ae4b4ba5
GM
5882
5883 xassert (idx == LFACE_FOREGROUND_INDEX || idx == LFACE_BACKGROUND_INDEX);
5884
ae4b4ba5
GM
5885 XSETFRAME (frame, f);
5886 color = face->lface[idx];
177c0ea7 5887
ae4b4ba5 5888 if (STRINGP (color)
d5db4077 5889 && SCHARS (color)
ae4b4ba5
GM
5890 && CONSP (Vtty_defined_color_alist)
5891 && (def = assq_no_quit (color, call1 (Qtty_color_alist, frame)),
5892 CONSP (def)))
5893 {
5894 /* Associations in tty-defined-color-alist are of the form
5895 (NAME INDEX R G B). We need the INDEX part. */
5896 pixel = XINT (XCAR (XCDR (def)));
5897 }
5898
5899 if (pixel == default_pixel && STRINGP (color))
5900 {
5901 pixel = load_color (f, face, color, idx);
5902
8d05ec51 5903#ifdef MSDOS
ae4b4ba5
GM
5904 /* If the foreground of the default face is the default color,
5905 use the foreground color defined by the frame. */
ae4b4ba5
GM
5906 if (FRAME_MSDOS_P (f))
5907 {
ae4b4ba5
GM
5908 if (pixel == default_pixel
5909 || pixel == FACE_TTY_DEFAULT_COLOR)
5910 {
5911 if (foreground_p)
5912 pixel = FRAME_FOREGROUND_PIXEL (f);
5913 else
5914 pixel = FRAME_BACKGROUND_PIXEL (f);
5915 face->lface[idx] = tty_color_name (f, pixel);
5916 *defaulted = 1;
5917 }
5918 else if (pixel == default_other_pixel)
5919 {
5920 if (foreground_p)
5921 pixel = FRAME_BACKGROUND_PIXEL (f);
5922 else
5923 pixel = FRAME_FOREGROUND_PIXEL (f);
5924 face->lface[idx] = tty_color_name (f, pixel);
5925 *defaulted = 1;
5926 }
b5f03016 5927 }
8d05ec51 5928#endif /* MSDOS */
ae4b4ba5
GM
5929 }
5930
5931 if (foreground_p)
5932 face->foreground = pixel;
5933 else
5934 face->background = pixel;
5935}
5936
5937
82641697 5938/* Realize the fully-specified face with attributes ATTRS in face
af53b43c
KH
5939 cache CACHE for ASCII characters. Do it for TTY frame CACHE->f.
5940 Value is a pointer to the newly created realized face. */
a8517066 5941
82641697 5942static struct face *
971de7fb 5943realize_tty_face (struct face_cache *cache, Lisp_Object *attrs)
82641697
GM
5944{
5945 struct face *face;
5946 int weight, slant;
2d764c78 5947 int face_colors_defaulted = 0;
ae4b4ba5 5948 struct frame *f = cache->f;
729425b1 5949
82641697 5950 /* Frame must be a termcap frame. */
e689ec06 5951 xassert (FRAME_TERMCAP_P (cache->f) || FRAME_MSDOS_P (cache->f));
178c5d9c 5952
82641697 5953 /* Allocate a new realized face. */
39506348 5954 face = make_realized_face (attrs);
2dee4c0b 5955#if 0
e689ec06 5956 face->font_name = FRAME_MSDOS_P (cache->f) ? "ms-dos" : "tty";
2dee4c0b 5957#endif
82641697 5958
cd4eb164 5959 /* Map face attributes to TTY appearances. */
2dee4c0b
KH
5960 weight = FONT_WEIGHT_NAME_NUMERIC (attrs[LFACE_WEIGHT_INDEX]);
5961 slant = FONT_SLANT_NAME_NUMERIC (attrs[LFACE_SLANT_INDEX]);
5962 if (weight > 100)
82641697 5963 face->tty_bold_p = 1;
cd4eb164
CY
5964 if (slant != 100)
5965 face->tty_italic_p = 1;
82641697
GM
5966 if (!NILP (attrs[LFACE_UNDERLINE_INDEX]))
5967 face->tty_underline_p = 1;
5968 if (!NILP (attrs[LFACE_INVERSE_INDEX]))
5969 face->tty_reverse_p = 1;
5970
5971 /* Map color names to color indices. */
ae4b4ba5
GM
5972 map_tty_color (f, face, LFACE_FOREGROUND_INDEX, &face_colors_defaulted);
5973 map_tty_color (f, face, LFACE_BACKGROUND_INDEX, &face_colors_defaulted);
177c0ea7 5974
2d764c78
EZ
5975 /* Swap colors if face is inverse-video. If the colors are taken
5976 from the frame colors, they are already inverted, since the
5977 frame-creation function calls x-handle-reverse-video. */
5978 if (face->tty_reverse_p && !face_colors_defaulted)
44747bd0
EZ
5979 {
5980 unsigned long tem = face->foreground;
44747bd0
EZ
5981 face->foreground = face->background;
5982 face->background = tem;
5983 }
44747bd0 5984
a4a76b61
GM
5985 if (tty_suppress_bold_inverse_default_colors_p
5986 && face->tty_bold_p
5987 && face->background == FACE_TTY_DEFAULT_FG_COLOR
5988 && face->foreground == FACE_TTY_DEFAULT_BG_COLOR)
5989 face->tty_bold_p = 0;
5990
82641697 5991 return face;
729425b1 5992}
867dd159 5993
82641697 5994
a4a76b61
GM
5995DEFUN ("tty-suppress-bold-inverse-default-colors",
5996 Ftty_suppress_bold_inverse_default_colors,
5997 Stty_suppress_bold_inverse_default_colors, 1, 1, 0,
e3cd9e7f 5998 doc: /* Suppress/allow boldness of faces with inverse default colors.
228299fa
GM
5999SUPPRESS non-nil means suppress it.
6000This affects bold faces on TTYs whose foreground is the default background
6001color of the display and whose background is the default foreground color.
6002For such faces, the bold face attribute is ignored if this variable
7ee72033 6003is non-nil. */)
5842a27b 6004 (Lisp_Object suppress)
a4a76b61
GM
6005{
6006 tty_suppress_bold_inverse_default_colors_p = !NILP (suppress);
6007 ++face_change_count;
6008 return suppress;
6009}
6010
6011
82641697
GM
6012\f
6013/***********************************************************************
6014 Computing Faces
6015 ***********************************************************************/
6016
6017/* Return the ID of the face to use to display character CH with face
6018 property PROP on frame F in current_buffer. */
2e16580f
RS
6019
6020int
971de7fb 6021compute_char_face (struct frame *f, int ch, Lisp_Object prop)
2e16580f 6022{
82641697 6023 int face_id;
39506348 6024
4b4deea2 6025 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
522d42f7 6026 ch = 0;
178c5d9c 6027
82641697 6028 if (NILP (prop))
39506348
KH
6029 {
6030 struct face *face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
779c6fb6 6031 face_id = FACE_FOR_CHAR (f, face, ch, -1, Qnil);
39506348 6032 }
82641697 6033 else
2e16580f 6034 {
82641697
GM
6035 Lisp_Object attrs[LFACE_VECTOR_SIZE];
6036 struct face *default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
72af86bd 6037 memcpy (attrs, default_face->lface, sizeof attrs);
a0a23346 6038 merge_face_ref (f, prop, attrs, 1, 0);
af53b43c 6039 face_id = lookup_face (f, attrs);
2e16580f
RS
6040 }
6041
82641697 6042 return face_id;
2e16580f 6043}
bc0db68d 6044
82641697
GM
6045/* Return the face ID associated with buffer position POS for
6046 displaying ASCII characters. Return in *ENDPTR the position at
6047 which a different face is needed, as far as text properties and
6048 overlays are concerned. W is a window displaying current_buffer.
6049
6050 REGION_BEG, REGION_END delimit the region, so it can be
6051 highlighted.
6f134486 6052
82641697
GM
6053 LIMIT is a position not to scan beyond. That is to limit the time
6054 this function can take.
6055
6056 If MOUSE is non-zero, use the character's mouse-face, not its face.
6057
6970f632
CY
6058 BASE_FACE_ID, if non-negative, specifies a base face id to use
6059 instead of DEFAULT_FACE_ID.
6060
39506348 6061 The face returned is suitable for displaying ASCII characters. */
bc0db68d 6062
cb637678 6063int
d311d28c
PE
6064face_at_buffer_position (struct window *w, ptrdiff_t pos,
6065 ptrdiff_t region_beg, ptrdiff_t region_end,
6066 ptrdiff_t *endptr, ptrdiff_t limit,
d5a3eaaf 6067 int mouse, int base_face_id)
7b7739b1 6068{
82641697
GM
6069 struct frame *f = XFRAME (w->frame);
6070 Lisp_Object attrs[LFACE_VECTOR_SIZE];
b6d40e46 6071 Lisp_Object prop, position;
b081724f 6072 ptrdiff_t i, noverlays;
7b7739b1 6073 Lisp_Object *overlay_vec;
f211082d 6074 Lisp_Object frame;
d311d28c 6075 ptrdiff_t endpos;
82641697
GM
6076 Lisp_Object propname = mouse ? Qmouse_face : Qface;
6077 Lisp_Object limit1, end;
6078 struct face *default_face;
f6b98e0b
JB
6079
6080 /* W must display the current buffer. We could write this function
6081 to use the frame and buffer of W, but right now it doesn't. */
060fb5c1 6082 /* xassert (XBUFFER (w->buffer) == current_buffer); */
f211082d 6083
ac22a6c4 6084 XSETFRAME (frame, f);
82641697 6085 XSETFASTINT (position, pos);
7b7739b1 6086
f6b98e0b 6087 endpos = ZV;
bc0db68d
RS
6088 if (pos < region_beg && region_beg < endpos)
6089 endpos = region_beg;
f6b98e0b 6090
82641697
GM
6091 /* Get the `face' or `mouse_face' text property at POS, and
6092 determine the next position at which the property changes. */
6f134486 6093 prop = Fget_text_property (position, propname, w->buffer);
82641697
GM
6094 XSETFASTINT (limit1, (limit < endpos ? limit : endpos));
6095 end = Fnext_single_property_change (position, propname, w->buffer, limit1);
6096 if (INTEGERP (end))
6097 endpos = XINT (end);
6f134486 6098
82641697 6099 /* Look at properties from overlays. */
b6d40e46 6100 {
d311d28c 6101 ptrdiff_t next_overlay;
b6d40e46 6102
0bc90bba 6103 GET_OVERLAYS_AT (pos, overlay_vec, noverlays, &next_overlay, 0);
f6b98e0b
JB
6104 if (next_overlay < endpos)
6105 endpos = next_overlay;
b6d40e46
JB
6106 }
6107
6108 *endptr = endpos;
7b7739b1 6109
823564e5
EZ
6110 {
6111 int face_id;
6112
6113 if (base_face_id >= 0)
6114 face_id = base_face_id;
6115 else if (NILP (Vface_remapping_alist))
6116 face_id = DEFAULT_FACE_ID;
6117 else
6118 face_id = lookup_basic_face (f, DEFAULT_FACE_ID);
6119
6120 default_face = FACE_FROM_ID (f, face_id);
6121 }
178c5d9c 6122
82641697
GM
6123 /* Optimize common cases where we can use the default face. */
6124 if (noverlays == 0
6125 && NILP (prop)
39506348 6126 && !(pos >= region_beg && pos < region_end))
f2cec7a9 6127 return default_face->id;
82641697
GM
6128
6129 /* Begin with attributes from the default face. */
72af86bd 6130 memcpy (attrs, default_face->lface, sizeof attrs);
82641697
GM
6131
6132 /* Merge in attributes specified via text properties. */
6133 if (!NILP (prop))
a0a23346 6134 merge_face_ref (f, prop, attrs, 1, 0);
82641697
GM
6135
6136 /* Now merge the overlay data. */
18195655 6137 noverlays = sort_overlays (overlay_vec, noverlays, w);
18195655 6138 for (i = 0; i < noverlays; i++)
4699e6d2 6139 {
18195655
RS
6140 Lisp_Object oend;
6141 int oendpos;
6142
6143 prop = Foverlay_get (overlay_vec[i], propname);
82641697 6144 if (!NILP (prop))
a0a23346 6145 merge_face_ref (f, prop, attrs, 1, 0);
18195655
RS
6146
6147 oend = OVERLAY_END (overlay_vec[i]);
6148 oendpos = OVERLAY_POSITION (oend);
6149 if (oendpos < endpos)
6150 endpos = oendpos;
6151 }
6152
82641697 6153 /* If in the region, merge in the region face. */
18195655
RS
6154 if (pos >= region_beg && pos < region_end)
6155 {
a0a23346 6156 merge_named_face (f, Qregion, attrs, 0);
178c5d9c 6157
18195655
RS
6158 if (region_end < endpos)
6159 endpos = region_end;
18195655
RS
6160 }
6161
6162 *endptr = endpos;
6163
82641697 6164 /* Look up a realized face with the given face attributes,
39506348 6165 or realize a new one for ASCII characters. */
af53b43c 6166 return lookup_face (f, attrs);
18195655
RS
6167}
6168
a193ecf1
RS
6169/* Return the face ID at buffer position POS for displaying ASCII
6170 characters associated with overlay strings for overlay OVERLAY.
6171
6172 Like face_at_buffer_position except for OVERLAY. Currently it
6173 simply disregards the `face' properties of all overlays. */
03e1d617
RS
6174
6175int
d311d28c
PE
6176face_for_overlay_string (struct window *w, ptrdiff_t pos,
6177 ptrdiff_t region_beg, ptrdiff_t region_end,
6178 ptrdiff_t *endptr, ptrdiff_t limit,
d5a3eaaf 6179 int mouse, Lisp_Object overlay)
03e1d617
RS
6180{
6181 struct frame *f = XFRAME (w->frame);
6182 Lisp_Object attrs[LFACE_VECTOR_SIZE];
6183 Lisp_Object prop, position;
03e1d617
RS
6184 Lisp_Object frame;
6185 int endpos;
6186 Lisp_Object propname = mouse ? Qmouse_face : Qface;
6187 Lisp_Object limit1, end;
6188 struct face *default_face;
6189
6190 /* W must display the current buffer. We could write this function
6191 to use the frame and buffer of W, but right now it doesn't. */
6192 /* xassert (XBUFFER (w->buffer) == current_buffer); */
6193
6194 XSETFRAME (frame, f);
6195 XSETFASTINT (position, pos);
6196
6197 endpos = ZV;
6198 if (pos < region_beg && region_beg < endpos)
6199 endpos = region_beg;
6200
6201 /* Get the `face' or `mouse_face' text property at POS, and
6202 determine the next position at which the property changes. */
6203 prop = Fget_text_property (position, propname, w->buffer);
6204 XSETFASTINT (limit1, (limit < endpos ? limit : endpos));
6205 end = Fnext_single_property_change (position, propname, w->buffer, limit1);
6206 if (INTEGERP (end))
6207 endpos = XINT (end);
6208
6209 *endptr = endpos;
6210
1682701f 6211 /* Optimize common case where we can use the default face. */
03e1d617 6212 if (NILP (prop)
1682701f
CY
6213 && !(pos >= region_beg && pos < region_end)
6214 && NILP (Vface_remapping_alist))
03e1d617
RS
6215 return DEFAULT_FACE_ID;
6216
6217 /* Begin with attributes from the default face. */
1682701f 6218 default_face = FACE_FROM_ID (f, lookup_basic_face (f, DEFAULT_FACE_ID));
72af86bd 6219 memcpy (attrs, default_face->lface, sizeof attrs);
03e1d617
RS
6220
6221 /* Merge in attributes specified via text properties. */
6222 if (!NILP (prop))
6223 merge_face_ref (f, prop, attrs, 1, 0);
6224
6225 /* If in the region, merge in the region face. */
6226 if (pos >= region_beg && pos < region_end)
6227 {
6228 merge_named_face (f, Qregion, attrs, 0);
6229
6230 if (region_end < endpos)
6231 endpos = region_end;
6232 }
6233
6234 *endptr = endpos;
6235
6236 /* Look up a realized face with the given face attributes,
6237 or realize a new one for ASCII characters. */
ce9c2e7b 6238 return lookup_face (f, attrs);
03e1d617
RS
6239}
6240
60573a90 6241
82641697 6242/* Compute the face at character position POS in Lisp string STRING on
39506348 6243 window W, for ASCII characters.
7b7739b1 6244
82641697
GM
6245 If STRING is an overlay string, it comes from position BUFPOS in
6246 current_buffer, otherwise BUFPOS is zero to indicate that STRING is
6247 not an overlay string. W must display the current buffer.
6248 REGION_BEG and REGION_END give the start and end positions of the
8714a182
GM
6249 region; both are -1 if no region is visible.
6250
6251 BASE_FACE_ID is the id of a face to merge with. For strings coming
6252 from overlays or the `display' property it is the face at BUFPOS.
178c5d9c 6253
48a4ca99
GM
6254 If MOUSE_P is non-zero, use the character's mouse-face, not its face.
6255
82641697
GM
6256 Set *ENDPTR to the next position where to check for faces in
6257 STRING; -1 if the face is constant from POS to the end of the
6258 string.
18195655 6259
82641697 6260 Value is the id of the face to use. The face returned is suitable
39506348 6261 for displaying ASCII characters. */
fffc2367 6262
82641697 6263int
d5a3eaaf 6264face_at_string_position (struct window *w, Lisp_Object string,
d311d28c
PE
6265 ptrdiff_t pos, ptrdiff_t bufpos,
6266 ptrdiff_t region_beg, ptrdiff_t region_end,
6267 ptrdiff_t *endptr, enum face_id base_face_id,
d5a3eaaf 6268 int mouse_p)
660ed669 6269{
82641697
GM
6270 Lisp_Object prop, position, end, limit;
6271 struct frame *f = XFRAME (WINDOW_FRAME (w));
6272 Lisp_Object attrs[LFACE_VECTOR_SIZE];
6273 struct face *base_face;
6274 int multibyte_p = STRING_MULTIBYTE (string);
48a4ca99 6275 Lisp_Object prop_name = mouse_p ? Qmouse_face : Qface;
82641697
GM
6276
6277 /* Get the value of the face property at the current position within
6278 STRING. Value is nil if there is no face property. */
6279 XSETFASTINT (position, pos);
48a4ca99 6280 prop = Fget_text_property (position, prop_name, string);
82641697
GM
6281
6282 /* Get the next position at which to check for faces. Value of end
6283 is nil if face is constant all the way to the end of the string.
6284 Otherwise it is a string position where to check faces next.
6285 Limit is the maximum position up to which to check for property
6286 changes in Fnext_single_property_change. Strings are usually
6287 short, so set the limit to the end of the string. */
d5db4077 6288 XSETFASTINT (limit, SCHARS (string));
48a4ca99 6289 end = Fnext_single_property_change (position, prop_name, string, limit);
82641697
GM
6290 if (INTEGERP (end))
6291 *endptr = XFASTINT (end);
6292 else
6293 *endptr = -1;
6294
6295 base_face = FACE_FROM_ID (f, base_face_id);
6296 xassert (base_face);
6297
6298 /* Optimize the default case that there is no face property and we
6299 are not in the region. */
6300 if (NILP (prop)
6301 && (base_face_id != DEFAULT_FACE_ID
6302 /* BUFPOS <= 0 means STRING is not an overlay string, so
6303 that the region doesn't have to be taken into account. */
6304 || bufpos <= 0
6305 || bufpos < region_beg
6306 || bufpos >= region_end)
6307 && (multibyte_p
6308 /* We can't realize faces for different charsets differently
6309 if we don't have fonts, so we can stop here if not working
6310 on a window-system frame. */
6311 || !FRAME_WINDOW_P (f)
239f9db9 6312 || FACE_SUITABLE_FOR_ASCII_CHAR_P (base_face, 0)))
82641697
GM
6313 return base_face->id;
6314
6315 /* Begin with attributes from the base face. */
72af86bd 6316 memcpy (attrs, base_face->lface, sizeof attrs);
82641697
GM
6317
6318 /* Merge in attributes specified via text properties. */
6319 if (!NILP (prop))
a0a23346 6320 merge_face_ref (f, prop, attrs, 1, 0);
82641697
GM
6321
6322 /* If in the region, merge in the region face. */
6323 if (bufpos
6324 && bufpos >= region_beg
6325 && bufpos < region_end)
a0a23346 6326 merge_named_face (f, Qregion, attrs, 0);
660ed669 6327
82641697 6328 /* Look up a realized face with the given face attributes,
39506348 6329 or realize a new one for ASCII characters. */
af53b43c 6330 return lookup_face (f, attrs);
660ed669
JB
6331}
6332
6333
fd998c7f
KS
6334/* Merge a face into a realized face.
6335
6336 F is frame where faces are (to be) realized.
6337
dc91a0ed
KS
6338 FACE_NAME is named face to merge.
6339
6340 If FACE_NAME is nil, FACE_ID is face_id of realized face to merge.
6341
6342 If FACE_NAME is t, FACE_ID is lface_id of face to merge.
fd998c7f
KS
6343
6344 BASE_FACE_ID is realized face to merge into.
6345
dc91a0ed 6346 Return new face id.
fd998c7f
KS
6347*/
6348
6349int
d311d28c 6350merge_faces (struct frame *f, Lisp_Object face_name, int face_id,
9910e595 6351 int base_face_id)
fd998c7f
KS
6352{
6353 Lisp_Object attrs[LFACE_VECTOR_SIZE];
6354 struct face *base_face;
6355
6356 base_face = FACE_FROM_ID (f, base_face_id);
6357 if (!base_face)
6358 return base_face_id;
6359
dc91a0ed
KS
6360 if (EQ (face_name, Qt))
6361 {
6362 if (face_id < 0 || face_id >= lface_id_to_name_size)
6363 return base_face_id;
6364 face_name = lface_id_to_name[face_id];
d8453278
CY
6365 /* When called during make-frame, lookup_derived_face may fail
6366 if the faces are uninitialized. Don't signal an error. */
6367 face_id = lookup_derived_face (f, face_name, base_face_id, 0);
6368 return (face_id >= 0 ? face_id : base_face_id);
dc91a0ed
KS
6369 }
6370
fd998c7f 6371 /* Begin with attributes from the base face. */
72af86bd 6372 memcpy (attrs, base_face->lface, sizeof attrs);
fd998c7f
KS
6373
6374 if (!NILP (face_name))
6375 {
6376 if (!merge_named_face (f, face_name, attrs, 0))
6377 return base_face_id;
6378 }
6379 else
6380 {
6381 struct face *face;
dc91a0ed
KS
6382 if (face_id < 0)
6383 return base_face_id;
fd998c7f
KS
6384 face = FACE_FROM_ID (f, face_id);
6385 if (!face)
6386 return base_face_id;
6387 merge_face_vectors (f, face->lface, attrs, 0);
6388 }
6389
6390 /* Look up a realized face with the given face attributes,
6391 or realize a new one for ASCII characters. */
0e3ae538 6392 return lookup_face (f, attrs);
fd998c7f
KS
6393}
6394
c115973b 6395\f
7ded3383
AR
6396
6397#ifndef HAVE_X_WINDOWS
6398DEFUN ("x-load-color-file", Fx_load_color_file,
6399 Sx_load_color_file, 1, 1, 0,
6400 doc: /* Create an alist of color entries from an external file.
6401
6402The file should define one named RGB color per line like so:
6403 R G B name
6404where R,G,B are numbers between 0 and 255 and name is an arbitrary string. */)
5842a27b 6405 (Lisp_Object filename)
7ded3383
AR
6406{
6407 FILE *fp;
6408 Lisp_Object cmap = Qnil;
6409 Lisp_Object abspath;
6410
6411 CHECK_STRING (filename);
6412 abspath = Fexpand_file_name (filename, Qnil);
6413
45763476 6414 fp = fopen (SDATA (abspath), "rt");
7ded3383
AR
6415 if (fp)
6416 {
6417 char buf[512];
6418 int red, green, blue;
6419 int num;
6420
6421 BLOCK_INPUT;
6422
6423 while (fgets (buf, sizeof (buf), fp) != NULL) {
6424 if (sscanf (buf, "%u %u %u %n", &red, &green, &blue, &num) == 3)
6425 {
6426 char *name = buf + num;
6427 num = strlen (name) - 1;
40aa3f13 6428 if (num >= 0 && name[num] == '\n')
7ded3383
AR
6429 name[num] = 0;
6430 cmap = Fcons (Fcons (build_string (name),
dee8cd43
JB
6431#ifdef WINDOWSNT
6432 make_number (RGB (red, green, blue))),
ebadbfa6 6433#else
dee8cd43 6434 make_number ((red << 16) | (green << 8) | blue)),
ebadbfa6 6435#endif
7ded3383
AR
6436 cmap);
6437 }
6438 }
6439 fclose (fp);
6440
6441 UNBLOCK_INPUT;
6442 }
6443
6444 return cmap;
6445}
6446#endif
6447
6448\f
82641697
GM
6449/***********************************************************************
6450 Tests
6451 ***********************************************************************/
c115973b 6452
82641697 6453#if GLYPH_DEBUG
c115973b 6454
82641697 6455/* Print the contents of the realized face FACE to stderr. */
c115973b 6456
82641697 6457static void
7d7d0045 6458dump_realized_face (struct face *face)
82641697
GM
6459{
6460 fprintf (stderr, "ID: %d\n", face->id);
6461#ifdef HAVE_X_WINDOWS
2defe37f 6462 fprintf (stderr, "gc: %ld\n", (long) face->gc);
82641697
GM
6463#endif
6464 fprintf (stderr, "foreground: 0x%lx (%s)\n",
6465 face->foreground,
d5db4077 6466 SDATA (face->lface[LFACE_FOREGROUND_INDEX]));
82641697
GM
6467 fprintf (stderr, "background: 0x%lx (%s)\n",
6468 face->background,
d5db4077 6469 SDATA (face->lface[LFACE_BACKGROUND_INDEX]));
2dee4c0b
KH
6470 if (face->font)
6471 fprintf (stderr, "font_name: %s (%s)\n",
6472 SDATA (face->font->props[FONT_NAME_INDEX]),
6473 SDATA (face->lface[LFACE_FAMILY_INDEX]));
82641697
GM
6474#ifdef HAVE_X_WINDOWS
6475 fprintf (stderr, "font = %p\n", face->font);
6476#endif
82641697
GM
6477 fprintf (stderr, "fontset: %d\n", face->fontset);
6478 fprintf (stderr, "underline: %d (%s)\n",
6479 face->underline_p,
d5db4077 6480 SDATA (Fsymbol_name (face->lface[LFACE_UNDERLINE_INDEX])));
82641697 6481 fprintf (stderr, "hash: %d\n", face->hash);
c115973b
JB
6482}
6483
6484
a7ca3326 6485DEFUN ("dump-face", Fdump_face, Sdump_face, 0, 1, 0, doc: /* */)
5842a27b 6486 (Lisp_Object n)
c115973b 6487{
82641697 6488 if (NILP (n))
c115973b 6489 {
82641697 6490 int i;
178c5d9c 6491
82641697
GM
6492 fprintf (stderr, "font selection order: ");
6493 for (i = 0; i < DIM (font_sort_order); ++i)
6494 fprintf (stderr, "%d ", font_sort_order[i]);
6495 fprintf (stderr, "\n");
6496
6497 fprintf (stderr, "alternative fonts: ");
6498 debug_print (Vface_alternative_font_family_alist);
6499 fprintf (stderr, "\n");
178c5d9c 6500
c0617987 6501 for (i = 0; i < FRAME_FACE_CACHE (SELECTED_FRAME ())->used; ++i)
82641697 6502 Fdump_face (make_number (i));
c115973b
JB
6503 }
6504 else
f5e278c7 6505 {
82641697 6506 struct face *face;
b7826503 6507 CHECK_NUMBER (n);
c0617987 6508 face = FACE_FROM_ID (SELECTED_FRAME (), XINT (n));
82641697
GM
6509 if (face == NULL)
6510 error ("Not a valid face");
6511 dump_realized_face (face);
f5e278c7 6512 }
178c5d9c 6513
c115973b
JB
6514 return Qnil;
6515}
b5c53576 6516
b5c53576 6517
a7ca3326 6518DEFUN ("show-face-resources", Fshow_face_resources, Sshow_face_resources,
7ee72033 6519 0, 0, 0, doc: /* */)
5842a27b 6520 (void)
b5c53576 6521{
82641697
GM
6522 fprintf (stderr, "number of colors = %d\n", ncolors_allocated);
6523 fprintf (stderr, "number of pixmaps = %d\n", npixmaps_allocated);
6524 fprintf (stderr, "number of GCs = %d\n", ngcs);
6525 return Qnil;
b5c53576
RS
6526}
6527
82641697
GM
6528#endif /* GLYPH_DEBUG != 0 */
6529
b5c53576 6530
c115973b 6531\f
82641697
GM
6532/***********************************************************************
6533 Initialization
6534 ***********************************************************************/
cb637678 6535
c115973b 6536void
971de7fb 6537syms_of_xfaces (void)
c115973b 6538{
cd3520a4
JB
6539 DEFSYM (Qface, "face");
6540 DEFSYM (Qface_no_inherit, "face-no-inherit");
6541 DEFSYM (Qbitmap_spec_p, "bitmap-spec-p");
6542 DEFSYM (Qframe_set_background_mode, "frame-set-background-mode");
178c5d9c 6543
82641697 6544 /* Lisp face attribute keywords. */
cd3520a4
JB
6545 DEFSYM (QCfamily, ":family");
6546 DEFSYM (QCheight, ":height");
6547 DEFSYM (QCweight, ":weight");
6548 DEFSYM (QCslant, ":slant");
6549 DEFSYM (QCunderline, ":underline");
6550 DEFSYM (QCinverse_video, ":inverse-video");
6551 DEFSYM (QCreverse_video, ":reverse-video");
6552 DEFSYM (QCforeground, ":foreground");
6553 DEFSYM (QCbackground, ":background");
6554 DEFSYM (QCstipple, ":stipple");
6555 DEFSYM (QCwidth, ":width");
6556 DEFSYM (QCfont, ":font");
6557 DEFSYM (QCfontset, ":fontset");
6558 DEFSYM (QCbold, ":bold");
6559 DEFSYM (QCitalic, ":italic");
6560 DEFSYM (QCoverline, ":overline");
6561 DEFSYM (QCstrike_through, ":strike-through");
6562 DEFSYM (QCbox, ":box");
6563 DEFSYM (QCinherit, ":inherit");
82641697
GM
6564
6565 /* Symbols used for Lisp face attribute values. */
cd3520a4
JB
6566 DEFSYM (QCcolor, ":color");
6567 DEFSYM (QCline_width, ":line-width");
6568 DEFSYM (QCstyle, ":style");
9b0e3eba
AA
6569 DEFSYM (Qline, "line");
6570 DEFSYM (Qwave, "wave");
cd3520a4
JB
6571 DEFSYM (Qreleased_button, "released-button");
6572 DEFSYM (Qpressed_button, "pressed-button");
6573 DEFSYM (Qnormal, "normal");
6574 DEFSYM (Qultra_light, "ultra-light");
6575 DEFSYM (Qextra_light, "extra-light");
6576 DEFSYM (Qlight, "light");
6577 DEFSYM (Qsemi_light, "semi-light");
6578 DEFSYM (Qsemi_bold, "semi-bold");
6579 DEFSYM (Qbold, "bold");
6580 DEFSYM (Qextra_bold, "extra-bold");
6581 DEFSYM (Qultra_bold, "ultra-bold");
6582 DEFSYM (Qoblique, "oblique");
6583 DEFSYM (Qitalic, "italic");
6584 DEFSYM (Qreverse_oblique, "reverse-oblique");
6585 DEFSYM (Qreverse_italic, "reverse-italic");
6586 DEFSYM (Qultra_condensed, "ultra-condensed");
6587 DEFSYM (Qextra_condensed, "extra-condensed");
6588 DEFSYM (Qcondensed, "condensed");
6589 DEFSYM (Qsemi_condensed, "semi-condensed");
6590 DEFSYM (Qsemi_expanded, "semi-expanded");
6591 DEFSYM (Qexpanded, "expanded");
6592 DEFSYM (Qextra_expanded, "extra-expanded");
6593 DEFSYM (Qultra_expanded, "ultra-expanded");
6594 DEFSYM (Qbackground_color, "background-color");
6595 DEFSYM (Qforeground_color, "foreground-color");
6596 DEFSYM (Qunspecified, "unspecified");
a3720aa2 6597 DEFSYM (QCignore_defface, ":ignore-defface");
cd3520a4
JB
6598
6599 DEFSYM (Qface_alias, "face-alias");
6600 DEFSYM (Qdefault, "default");
6601 DEFSYM (Qtool_bar, "tool-bar");
6602 DEFSYM (Qregion, "region");
6603 DEFSYM (Qfringe, "fringe");
6604 DEFSYM (Qheader_line, "header-line");
6605 DEFSYM (Qscroll_bar, "scroll-bar");
6606 DEFSYM (Qmenu, "menu");
6607 DEFSYM (Qcursor, "cursor");
6608 DEFSYM (Qborder, "border");
6609 DEFSYM (Qmouse, "mouse");
6610 DEFSYM (Qmode_line_inactive, "mode-line-inactive");
6611 DEFSYM (Qvertical_border, "vertical-border");
6612 DEFSYM (Qtty_color_desc, "tty-color-desc");
6613 DEFSYM (Qtty_color_standard_values, "tty-color-standard-values");
6614 DEFSYM (Qtty_color_by_index, "tty-color-by-index");
6615 DEFSYM (Qtty_color_alist, "tty-color-alist");
6616 DEFSYM (Qscalable_fonts_allowed, "scalable-fonts-allowed");
82641697 6617
dbc968b8
GM
6618 Vparam_value_alist = Fcons (Fcons (Qnil, Qnil), Qnil);
6619 staticpro (&Vparam_value_alist);
434b9cc5
GM
6620 Vface_alternative_font_family_alist = Qnil;
6621 staticpro (&Vface_alternative_font_family_alist);
32fcc231
GM
6622 Vface_alternative_font_registry_alist = Qnil;
6623 staticpro (&Vface_alternative_font_registry_alist);
434b9cc5 6624
82641697
GM
6625 defsubr (&Sinternal_make_lisp_face);
6626 defsubr (&Sinternal_lisp_face_p);
6627 defsubr (&Sinternal_set_lisp_face_attribute);
c3cee013 6628#ifdef HAVE_WINDOW_SYSTEM
82641697 6629 defsubr (&Sinternal_set_lisp_face_attribute_from_resource);
42608ba8 6630#endif
ea4fa0af
GM
6631 defsubr (&Scolor_gray_p);
6632 defsubr (&Scolor_supported_p);
7ded3383
AR
6633#ifndef HAVE_X_WINDOWS
6634 defsubr (&Sx_load_color_file);
6635#endif
cdfaafa9
MB
6636 defsubr (&Sface_attribute_relative_p);
6637 defsubr (&Smerge_face_attribute);
82641697
GM
6638 defsubr (&Sinternal_get_lisp_face_attribute);
6639 defsubr (&Sinternal_lisp_face_attribute_values);
6640 defsubr (&Sinternal_lisp_face_equal_p);
6641 defsubr (&Sinternal_lisp_face_empty_p);
6642 defsubr (&Sinternal_copy_lisp_face);
6643 defsubr (&Sinternal_merge_in_global_face);
6644 defsubr (&Sface_font);
6645 defsubr (&Sframe_face_alist);
9717e36c 6646 defsubr (&Sdisplay_supports_face_attributes_p);
b35df831 6647 defsubr (&Scolor_distance);
82641697
GM
6648 defsubr (&Sinternal_set_font_selection_order);
6649 defsubr (&Sinternal_set_alternative_font_family_alist);
32fcc231 6650 defsubr (&Sinternal_set_alternative_font_registry_alist);
f6608d5c 6651 defsubr (&Sface_attributes_as_vector);
82641697
GM
6652#if GLYPH_DEBUG
6653 defsubr (&Sdump_face);
6654 defsubr (&Sshow_face_resources);
6655#endif /* GLYPH_DEBUG */
6656 defsubr (&Sclear_face_cache);
a4a76b61 6657 defsubr (&Stty_suppress_bold_inverse_default_colors);
82641697 6658
38426dee 6659#if defined DEBUG_X_COLORS && defined HAVE_X_WINDOWS
08dc08dc
GM
6660 defsubr (&Sdump_colors);
6661#endif
6662
29208e82 6663 DEFVAR_LISP ("font-list-limit", Vfont_list_limit,
fb7ada5f 6664 doc: /* Limit for font matching.
228299fa
GM
6665If an integer > 0, font matching functions won't load more than
6666that number of fonts when searching for a matching font. */);
057df17c
GM
6667 Vfont_list_limit = make_number (DEFAULT_FONT_LIST_LIMIT);
6668
29208e82 6669 DEFVAR_LISP ("face-new-frame-defaults", Vface_new_frame_defaults,
7ee72033 6670 doc: /* List of global face definitions (for internal use only.) */);
82641697 6671 Vface_new_frame_defaults = Qnil;
178c5d9c 6672
29208e82 6673 DEFVAR_LISP ("face-default-stipple", Vface_default_stipple,
fb7ada5f 6674 doc: /* Default stipple pattern used on monochrome displays.
228299fa
GM
6675This stipple pattern is used on monochrome displays
6676instead of shades of gray for a face background color.
6677See `set-face-stipple' for possible values for this variable. */);
a4ada374 6678 Vface_default_stipple = make_pure_c_string ("gray3");
82641697 6679
29208e82 6680 DEFVAR_LISP ("tty-defined-color-alist", Vtty_defined_color_alist,
46710489
GM
6681 doc: /* An alist of defined terminal colors and their RGB values.
6682See the docstring of `tty-color-alist' for the details. */);
ae4b4ba5
GM
6683 Vtty_defined_color_alist = Qnil;
6684
29208e82 6685 DEFVAR_LISP ("scalable-fonts-allowed", Vscalable_fonts_allowed,
7ee72033 6686 doc: /* Allowed scalable fonts.
228299fa
GM
6687A value of nil means don't allow any scalable fonts.
6688A value of t means allow any scalable font.
6689Otherwise, value must be a list of regular expressions. A font may be
6690scaled if its name matches a regular expression in the list.
6691Note that if value is nil, a scalable font might still be used, if no
6692other font of the appropriate family and registry is available. */);
3cf80731 6693 Vscalable_fonts_allowed = Qnil;
b5c53576 6694
29208e82 6695 DEFVAR_LISP ("face-ignored-fonts", Vface_ignored_fonts,
7ee72033 6696 doc: /* List of ignored fonts.
228299fa
GM
6697Each element is a regular expression that matches names of fonts to
6698ignore. */);
c824bfbc
KH
6699 Vface_ignored_fonts = Qnil;
6700
29208e82 6701 DEFVAR_LISP ("face-remapping-alist", Vface_remapping_alist,
f2cec7a9
MB
6702 doc: /* Alist of face remappings.
6703Each element is of the form:
6704
fb5b8aca 6705 (FACE . REPLACEMENT),
f2cec7a9 6706
fb5b8aca
CY
6707which causes display of the face FACE to use REPLACEMENT instead.
6708REPLACEMENT is a face specification, i.e. one of the following:
f2cec7a9 6709
fb5b8aca
CY
6710 (1) a face name
6711 (2) a property list of attribute/value pairs, or
6712 (3) a list in which each element has the form of (1) or (2).
f2cec7a9 6713
fb5b8aca
CY
6714List values for REPLACEMENT are merged to form the final face
6715specification, with earlier entries taking precedence, in the same as
6716as in the `face' text property.
6717
6718Face-name remapping cycles are suppressed; recursive references use
6719the underlying face instead of the remapped face. So a remapping of
6720the form:
f2cec7a9
MB
6721
6722 (FACE EXTRA-FACE... FACE)
6723
6724or:
6725
6726 (FACE (FACE-ATTR VAL ...) FACE)
6727
fb5b8aca
CY
6728causes EXTRA-FACE... or (FACE-ATTR VAL ...) to be _merged_ with the
6729existing definition of FACE. Note that this isn't necessary for the
6730default face, since every face inherits from the default face.
f2cec7a9 6731
fb5b8aca
CY
6732If this variable is made buffer-local, the face remapping takes effect
6733only in that buffer. For instance, the mode my-mode could define a
6734face `my-mode-default', and then in the mode setup function, do:
f2cec7a9
MB
6735
6736 (set (make-local-variable 'face-remapping-alist)
b5f03016 6737 '((default my-mode-default)))).
635c0aa1
CY
6738
6739Because Emacs normally only redraws screen areas when the underlying
6740buffer contents change, you may need to call `redraw-display' after
6741changing this variable for it to take effect. */);
f2cec7a9
MB
6742 Vface_remapping_alist = Qnil;
6743
29208e82 6744 DEFVAR_LISP ("face-font-rescale-alist", Vface_font_rescale_alist,
f70400f2 6745 doc: /* Alist of fonts vs the rescaling factors.
96f9306b
KH
6746Each element is a cons (FONT-PATTERN . RESCALE-RATIO), where
6747FONT-PATTERN is a font-spec or a regular expression matching a font name, and
f70400f2
KH
6748RESCALE-RATIO is a floating point number to specify how much larger
6749\(or smaller) font we should use. For instance, if a face requests
6750a font of 10 point, we actually use a font of 10 * RESCALE-RATIO point. */);
6751 Vface_font_rescale_alist = Qnil;
6752
c3cee013 6753#ifdef HAVE_WINDOW_SYSTEM
fef04523 6754 defsubr (&Sbitmap_spec_p);
82641697
GM
6755 defsubr (&Sx_list_fonts);
6756 defsubr (&Sinternal_face_x_get_resource);
92610620 6757 defsubr (&Sx_family_fonts);
32247e3d 6758#endif
c115973b 6759}