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