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