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