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