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