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