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