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