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