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