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