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