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