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