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