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