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