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