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