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