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