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