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