(Finternal_merge_in_global_face): Save merged attributes for the
[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 Lisp_Object font;
3505
3506 if (FRAME_WINDOW_P (f)
3507 /* Don't do anything if the font is `unspecified'. This can
3508 happen during frame creation. */
3509 && (font = LFACE_FONT (lface),
3510 ! UNSPECIFIEDP (font)))
3511 {
3512 if (FONT_SPEC_P (font))
3513 {
3514 font = font_load_for_lface (f, XVECTOR (lface)->contents, font);
3515 if (NILP (font))
3516 return;
3517 LFACE_FONT (lface) = font;
3518 }
3519 f->default_face_done_p = 0;
3520 Fmodify_frame_parameters (frame, Fcons (Fcons (Qfont, font), Qnil));
3521 }
3522 }
3523
3524
3525 /* Update the corresponding face when frame parameter PARAM on frame F
3526 has been assigned the value NEW_VALUE. */
3527
3528 void
3529 update_face_from_frame_parameter (f, param, new_value)
3530 struct frame *f;
3531 Lisp_Object param, new_value;
3532 {
3533 Lisp_Object face = Qnil;
3534 Lisp_Object lface;
3535
3536 /* If there are no faces yet, give up. This is the case when called
3537 from Fx_create_frame, and we do the necessary things later in
3538 face-set-after-frame-defaults. */
3539 if (NILP (f->face_alist))
3540 return;
3541
3542 if (EQ (param, Qforeground_color))
3543 {
3544 face = Qdefault;
3545 lface = lface_from_face_name (f, face, 1);
3546 LFACE_FOREGROUND (lface) = (STRINGP (new_value)
3547 ? new_value : Qunspecified);
3548 realize_basic_faces (f);
3549 }
3550 else if (EQ (param, Qbackground_color))
3551 {
3552 Lisp_Object frame;
3553
3554 /* Changing the background color might change the background
3555 mode, so that we have to load new defface specs.
3556 Call frame-update-face-colors to do that. */
3557 XSETFRAME (frame, f);
3558 call1 (Qframe_set_background_mode, frame);
3559
3560 face = Qdefault;
3561 lface = lface_from_face_name (f, face, 1);
3562 LFACE_BACKGROUND (lface) = (STRINGP (new_value)
3563 ? new_value : Qunspecified);
3564 realize_basic_faces (f);
3565 }
3566 else if (EQ (param, Qborder_color))
3567 {
3568 face = Qborder;
3569 lface = lface_from_face_name (f, face, 1);
3570 LFACE_BACKGROUND (lface) = (STRINGP (new_value)
3571 ? new_value : Qunspecified);
3572 }
3573 else if (EQ (param, Qcursor_color))
3574 {
3575 face = Qcursor;
3576 lface = lface_from_face_name (f, face, 1);
3577 LFACE_BACKGROUND (lface) = (STRINGP (new_value)
3578 ? new_value : Qunspecified);
3579 }
3580 else if (EQ (param, Qmouse_color))
3581 {
3582 face = Qmouse;
3583 lface = lface_from_face_name (f, face, 1);
3584 LFACE_BACKGROUND (lface) = (STRINGP (new_value)
3585 ? new_value : Qunspecified);
3586 }
3587
3588 /* Changing a named face means that all realized faces depending on
3589 that face are invalid. Since we cannot tell which realized faces
3590 depend on the face, make sure they are all removed. This is done
3591 by incrementing face_change_count. The next call to
3592 init_iterator will then free realized faces. */
3593 if (!NILP (face)
3594 && NILP (Fget (face, Qface_no_inherit)))
3595 {
3596 ++face_change_count;
3597 ++windows_or_buffers_changed;
3598 }
3599 }
3600
3601
3602 /* Get the value of X resource RESOURCE, class CLASS for the display
3603 of frame FRAME. This is here because ordinary `x-get-resource'
3604 doesn't take a frame argument. */
3605
3606 DEFUN ("internal-face-x-get-resource", Finternal_face_x_get_resource,
3607 Sinternal_face_x_get_resource, 3, 3, 0, doc: /* */)
3608 (resource, class, frame)
3609 Lisp_Object resource, class, frame;
3610 {
3611 Lisp_Object value = Qnil;
3612 CHECK_STRING (resource);
3613 CHECK_STRING (class);
3614 CHECK_LIVE_FRAME (frame);
3615 BLOCK_INPUT;
3616 value = display_x_get_resource (FRAME_X_DISPLAY_INFO (XFRAME (frame)),
3617 resource, class, Qnil, Qnil);
3618 UNBLOCK_INPUT;
3619 return value;
3620 }
3621
3622
3623 /* Return resource string VALUE as a boolean value, i.e. nil, or t.
3624 If VALUE is "on" or "true", return t. If VALUE is "off" or
3625 "false", return nil. Otherwise, if SIGNAL_P is non-zero, signal an
3626 error; if SIGNAL_P is zero, return 0. */
3627
3628 static Lisp_Object
3629 face_boolean_x_resource_value (value, signal_p)
3630 Lisp_Object value;
3631 int signal_p;
3632 {
3633 Lisp_Object result = make_number (0);
3634
3635 xassert (STRINGP (value));
3636
3637 if (xstrcasecmp (SDATA (value), "on") == 0
3638 || xstrcasecmp (SDATA (value), "true") == 0)
3639 result = Qt;
3640 else if (xstrcasecmp (SDATA (value), "off") == 0
3641 || xstrcasecmp (SDATA (value), "false") == 0)
3642 result = Qnil;
3643 else if (xstrcasecmp (SDATA (value), "unspecified") == 0)
3644 result = Qunspecified;
3645 else if (signal_p)
3646 signal_error ("Invalid face attribute value from X resource", value);
3647
3648 return result;
3649 }
3650
3651
3652 DEFUN ("internal-set-lisp-face-attribute-from-resource",
3653 Finternal_set_lisp_face_attribute_from_resource,
3654 Sinternal_set_lisp_face_attribute_from_resource,
3655 3, 4, 0, doc: /* */)
3656 (face, attr, value, frame)
3657 Lisp_Object face, attr, value, frame;
3658 {
3659 CHECK_SYMBOL (face);
3660 CHECK_SYMBOL (attr);
3661 CHECK_STRING (value);
3662
3663 if (xstrcasecmp (SDATA (value), "unspecified") == 0)
3664 value = Qunspecified;
3665 else if (EQ (attr, QCheight))
3666 {
3667 value = Fstring_to_number (value, make_number (10));
3668 if (XINT (value) <= 0)
3669 signal_error ("Invalid face height from X resource", value);
3670 }
3671 else if (EQ (attr, QCbold) || EQ (attr, QCitalic))
3672 value = face_boolean_x_resource_value (value, 1);
3673 else if (EQ (attr, QCweight) || EQ (attr, QCslant) || EQ (attr, QCwidth))
3674 value = intern (SDATA (value));
3675 else if (EQ (attr, QCreverse_video) || EQ (attr, QCinverse_video))
3676 value = face_boolean_x_resource_value (value, 1);
3677 else if (EQ (attr, QCunderline)
3678 || EQ (attr, QCoverline)
3679 || EQ (attr, QCstrike_through))
3680 {
3681 Lisp_Object boolean_value;
3682
3683 /* If the result of face_boolean_x_resource_value is t or nil,
3684 VALUE does NOT specify a color. */
3685 boolean_value = face_boolean_x_resource_value (value, 0);
3686 if (SYMBOLP (boolean_value))
3687 value = boolean_value;
3688 }
3689 else if (EQ (attr, QCbox) || EQ (attr, QCinherit))
3690 value = Fcar (Fread_from_string (value, Qnil, Qnil));
3691
3692 return Finternal_set_lisp_face_attribute (face, attr, value, frame);
3693 }
3694
3695 #endif /* HAVE_WINDOW_SYSTEM */
3696
3697 \f
3698 /***********************************************************************
3699 Menu face
3700 ***********************************************************************/
3701
3702 #if defined HAVE_X_WINDOWS && defined USE_X_TOOLKIT
3703
3704 /* Make menus on frame F appear as specified by the `menu' face. */
3705
3706 static void
3707 x_update_menu_appearance (f)
3708 struct frame *f;
3709 {
3710 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
3711 XrmDatabase rdb;
3712
3713 if (dpyinfo
3714 && (rdb = XrmGetDatabase (FRAME_X_DISPLAY (f)),
3715 rdb != NULL))
3716 {
3717 char line[512];
3718 Lisp_Object lface = lface_from_face_name (f, Qmenu, 1);
3719 struct face *face = FACE_FROM_ID (f, MENU_FACE_ID);
3720 const char *myname = SDATA (Vx_resource_name);
3721 int changed_p = 0;
3722 #ifdef USE_MOTIF
3723 const char *popup_path = "popup_menu";
3724 #else
3725 const char *popup_path = "menu.popup";
3726 #endif
3727
3728 if (STRINGP (LFACE_FOREGROUND (lface)))
3729 {
3730 sprintf (line, "%s.%s*foreground: %s",
3731 myname, popup_path,
3732 SDATA (LFACE_FOREGROUND (lface)));
3733 XrmPutLineResource (&rdb, line);
3734 sprintf (line, "%s.pane.menubar*foreground: %s",
3735 myname, SDATA (LFACE_FOREGROUND (lface)));
3736 XrmPutLineResource (&rdb, line);
3737 changed_p = 1;
3738 }
3739
3740 if (STRINGP (LFACE_BACKGROUND (lface)))
3741 {
3742 sprintf (line, "%s.%s*background: %s",
3743 myname, popup_path,
3744 SDATA (LFACE_BACKGROUND (lface)));
3745 XrmPutLineResource (&rdb, line);
3746 sprintf (line, "%s.pane.menubar*background: %s",
3747 myname, SDATA (LFACE_BACKGROUND (lface)));
3748 XrmPutLineResource (&rdb, line);
3749 changed_p = 1;
3750 }
3751
3752 if (face->font
3753 && (!UNSPECIFIEDP (LFACE_FAMILY (lface))
3754 || !UNSPECIFIEDP (LFACE_FOUNDRY (lface))
3755 || !UNSPECIFIEDP (LFACE_SWIDTH (lface))
3756 || !UNSPECIFIEDP (LFACE_WEIGHT (lface))
3757 || !UNSPECIFIEDP (LFACE_SLANT (lface))
3758 || !UNSPECIFIEDP (LFACE_HEIGHT (lface))))
3759 {
3760 Lisp_Object xlfd = Ffont_xlfd_name (LFACE_FONT (lface), Qnil);
3761 #ifdef USE_MOTIF
3762 const char *suffix = "List";
3763 Bool motif = True;
3764 #else
3765 #if defined HAVE_X_I18N
3766
3767 const char *suffix = "Set";
3768 #else
3769 const char *suffix = "";
3770 #endif
3771 Bool motif = False;
3772 #endif
3773
3774 if (! NILP (xlfd))
3775 {
3776 #if defined HAVE_X_I18N
3777 extern char *xic_create_fontsetname
3778 P_ ((char *base_fontname, Bool motif));
3779 char *fontsetname = xic_create_fontsetname (SDATA (xlfd), motif);
3780 #else
3781 char *fontsetname = (char *) SDATA (xlfd);
3782 #endif
3783 sprintf (line, "%s.pane.menubar*font%s: %s",
3784 myname, suffix, fontsetname);
3785 XrmPutLineResource (&rdb, line);
3786 sprintf (line, "%s.%s*font%s: %s",
3787 myname, popup_path, suffix, fontsetname);
3788 XrmPutLineResource (&rdb, line);
3789 changed_p = 1;
3790 if (fontsetname != (char *) SDATA (xlfd))
3791 xfree (fontsetname);
3792 }
3793 }
3794
3795 if (changed_p && f->output_data.x->menubar_widget)
3796 free_frame_menubar (f);
3797 }
3798 }
3799
3800 #endif /* HAVE_X_WINDOWS && USE_X_TOOLKIT */
3801
3802
3803 DEFUN ("face-attribute-relative-p", Fface_attribute_relative_p,
3804 Sface_attribute_relative_p,
3805 2, 2, 0,
3806 doc: /* Check whether a face attribute value is relative.
3807 Specifically, this function returns t if the attribute ATTRIBUTE
3808 with the value VALUE is relative.
3809
3810 A relative value is one that doesn't entirely override whatever is
3811 inherited from another face. For most possible attributes,
3812 the only relative value that users see is `unspecified'.
3813 However, for :height, floating point values are also relative. */)
3814 (attribute, value)
3815 Lisp_Object attribute, value;
3816 {
3817 if (EQ (value, Qunspecified) || (EQ (value, Qignore_defface)))
3818 return Qt;
3819 else if (EQ (attribute, QCheight))
3820 return INTEGERP (value) ? Qnil : Qt;
3821 else
3822 return Qnil;
3823 }
3824
3825 DEFUN ("merge-face-attribute", Fmerge_face_attribute, Smerge_face_attribute,
3826 3, 3, 0,
3827 doc: /* Return face ATTRIBUTE VALUE1 merged with VALUE2.
3828 If VALUE1 or VALUE2 are absolute (see `face-attribute-relative-p'), then
3829 the result will be absolute, otherwise it will be relative. */)
3830 (attribute, value1, value2)
3831 Lisp_Object attribute, value1, value2;
3832 {
3833 if (EQ (value1, Qunspecified) || EQ (value1, Qignore_defface))
3834 return value2;
3835 else if (EQ (attribute, QCheight))
3836 return merge_face_heights (value1, value2, value1);
3837 else
3838 return value1;
3839 }
3840
3841
3842 DEFUN ("internal-get-lisp-face-attribute", Finternal_get_lisp_face_attribute,
3843 Sinternal_get_lisp_face_attribute,
3844 2, 3, 0,
3845 doc: /* Return face attribute KEYWORD of face SYMBOL.
3846 If SYMBOL does not name a valid Lisp face or KEYWORD isn't a valid
3847 face attribute name, signal an error.
3848 If the optional argument FRAME is given, report on face SYMBOL in that
3849 frame. If FRAME is t, report on the defaults for face SYMBOL (for new
3850 frames). If FRAME is omitted or nil, use the selected frame. */)
3851 (symbol, keyword, frame)
3852 Lisp_Object symbol, keyword, frame;
3853 {
3854 Lisp_Object lface, value = Qnil;
3855
3856 CHECK_SYMBOL (symbol);
3857 CHECK_SYMBOL (keyword);
3858
3859 if (EQ (frame, Qt))
3860 lface = lface_from_face_name (NULL, symbol, 1);
3861 else
3862 {
3863 if (NILP (frame))
3864 frame = selected_frame;
3865 CHECK_LIVE_FRAME (frame);
3866 lface = lface_from_face_name (XFRAME (frame), symbol, 1);
3867 }
3868
3869 if (EQ (keyword, QCfamily))
3870 value = LFACE_FAMILY (lface);
3871 else if (EQ (keyword, QCfoundry))
3872 value = LFACE_FOUNDRY (lface);
3873 else if (EQ (keyword, QCheight))
3874 value = LFACE_HEIGHT (lface);
3875 else if (EQ (keyword, QCweight))
3876 value = LFACE_WEIGHT (lface);
3877 else if (EQ (keyword, QCslant))
3878 value = LFACE_SLANT (lface);
3879 else if (EQ (keyword, QCunderline))
3880 value = LFACE_UNDERLINE (lface);
3881 else if (EQ (keyword, QCoverline))
3882 value = LFACE_OVERLINE (lface);
3883 else if (EQ (keyword, QCstrike_through))
3884 value = LFACE_STRIKE_THROUGH (lface);
3885 else if (EQ (keyword, QCbox))
3886 value = LFACE_BOX (lface);
3887 else if (EQ (keyword, QCinverse_video)
3888 || EQ (keyword, QCreverse_video))
3889 value = LFACE_INVERSE (lface);
3890 else if (EQ (keyword, QCforeground))
3891 value = LFACE_FOREGROUND (lface);
3892 else if (EQ (keyword, QCbackground))
3893 value = LFACE_BACKGROUND (lface);
3894 else if (EQ (keyword, QCstipple))
3895 value = LFACE_STIPPLE (lface);
3896 else if (EQ (keyword, QCwidth))
3897 value = LFACE_SWIDTH (lface);
3898 else if (EQ (keyword, QCinherit))
3899 value = LFACE_INHERIT (lface);
3900 else if (EQ (keyword, QCfont))
3901 value = LFACE_FONT (lface);
3902 else if (EQ (keyword, QCfontset))
3903 value = LFACE_FONTSET (lface);
3904 else
3905 signal_error ("Invalid face attribute name", keyword);
3906
3907 if (IGNORE_DEFFACE_P (value))
3908 return Qunspecified;
3909
3910 return value;
3911 }
3912
3913
3914 DEFUN ("internal-lisp-face-attribute-values",
3915 Finternal_lisp_face_attribute_values,
3916 Sinternal_lisp_face_attribute_values, 1, 1, 0,
3917 doc: /* Return a list of valid discrete values for face attribute ATTR.
3918 Value is nil if ATTR doesn't have a discrete set of valid values. */)
3919 (attr)
3920 Lisp_Object attr;
3921 {
3922 Lisp_Object result = Qnil;
3923
3924 CHECK_SYMBOL (attr);
3925
3926 if (EQ (attr, QCunderline))
3927 result = Fcons (Qt, Fcons (Qnil, Qnil));
3928 else if (EQ (attr, QCoverline))
3929 result = Fcons (Qt, Fcons (Qnil, Qnil));
3930 else if (EQ (attr, QCstrike_through))
3931 result = Fcons (Qt, Fcons (Qnil, Qnil));
3932 else if (EQ (attr, QCinverse_video) || EQ (attr, QCreverse_video))
3933 result = Fcons (Qt, Fcons (Qnil, Qnil));
3934
3935 return result;
3936 }
3937
3938
3939 DEFUN ("internal-merge-in-global-face", Finternal_merge_in_global_face,
3940 Sinternal_merge_in_global_face, 2, 2, 0,
3941 doc: /* Add attributes from frame-default definition of FACE to FACE on FRAME.
3942 Default face attributes override any local face attributes. */)
3943 (face, frame)
3944 Lisp_Object face, frame;
3945 {
3946 int i;
3947 Lisp_Object global_lface, local_lface, *gvec, *lvec;
3948 struct frame *f = XFRAME (frame);
3949
3950 CHECK_LIVE_FRAME (frame);
3951 global_lface = lface_from_face_name (NULL, face, 1);
3952 local_lface = lface_from_face_name (f, face, 0);
3953 if (NILP (local_lface))
3954 local_lface = Finternal_make_lisp_face (face, frame);
3955
3956 /* Make every specified global attribute override the local one.
3957 BEWARE!! This is only used from `face-set-after-frame-default' where
3958 the local frame is defined from default specs in `face-defface-spec'
3959 and those should be overridden by global settings. Hence the strange
3960 "global before local" priority. */
3961 lvec = XVECTOR (local_lface)->contents;
3962 gvec = XVECTOR (global_lface)->contents;
3963 for (i = 1; i < LFACE_VECTOR_SIZE; ++i)
3964 if (IGNORE_DEFFACE_P (gvec[i]))
3965 lvec[i] = Qunspecified;
3966 else if (! UNSPECIFIEDP (gvec[i]))
3967 lvec[i] = gvec[i];
3968
3969 /* If the default face was changed, update the face cache and the
3970 `font' frame parameter. */
3971 if (EQ (face, Qdefault))
3972 {
3973 struct face_cache *c = FRAME_FACE_CACHE (f);
3974 struct face *newface, *oldface = FACE_FROM_ID (f, DEFAULT_FACE_ID);
3975 Lisp_Object attrs[LFACE_VECTOR_SIZE];
3976
3977 /* This can be NULL (e.g., in batch mode). */
3978 if (oldface)
3979 {
3980 /* Ensure that the face vector is fully specified by merging
3981 the previously-cached vector. */
3982 bcopy (oldface->lface, attrs, sizeof attrs);
3983 merge_face_vectors (f, lvec, attrs, 0);
3984 bcopy (attrs, lvec, sizeof attrs);
3985 newface = realize_face (c, lvec, DEFAULT_FACE_ID);
3986
3987 if ((! UNSPECIFIEDP (gvec[LFACE_FAMILY_INDEX])
3988 || ! UNSPECIFIEDP (gvec[LFACE_FOUNDRY_INDEX])
3989 || ! UNSPECIFIEDP (gvec[LFACE_HEIGHT_INDEX])
3990 || ! UNSPECIFIEDP (gvec[LFACE_WEIGHT_INDEX])
3991 || ! UNSPECIFIEDP (gvec[LFACE_SLANT_INDEX])
3992 || ! UNSPECIFIEDP (gvec[LFACE_SWIDTH_INDEX])
3993 || ! UNSPECIFIEDP (gvec[LFACE_FONT_INDEX]))
3994 && newface->font)
3995 {
3996 Lisp_Object name = newface->font->props[FONT_NAME_INDEX];
3997 Fmodify_frame_parameters (frame, Fcons (Fcons (Qfont, name),
3998 Qnil));
3999 }
4000 }
4001 }
4002
4003 return Qnil;
4004 }
4005
4006
4007 /* The following function is implemented for compatibility with 20.2.
4008 The function is used in x-resolve-fonts when it is asked to
4009 return fonts with the same size as the font of a face. This is
4010 done in fontset.el. */
4011
4012 DEFUN ("face-font", Fface_font, Sface_font, 1, 3, 0,
4013 doc: /* Return the font name of face FACE, or nil if it is unspecified.
4014 The font name is, by default, for ASCII characters.
4015 If the optional argument FRAME is given, report on face FACE in that frame.
4016 If FRAME is t, report on the defaults for face FACE (for new frames).
4017 The font default for a face is either nil, or a list
4018 of the form (bold), (italic) or (bold italic).
4019 If FRAME is omitted or nil, use the selected frame. And, in this case,
4020 if the optional third argument CHARACTER is given,
4021 return the font name used for CHARACTER. */)
4022 (face, frame, character)
4023 Lisp_Object face, frame, character;
4024 {
4025 if (EQ (frame, Qt))
4026 {
4027 Lisp_Object result = Qnil;
4028 Lisp_Object lface = lface_from_face_name (NULL, face, 1);
4029
4030 if (!UNSPECIFIEDP (LFACE_WEIGHT (lface))
4031 && !EQ (LFACE_WEIGHT (lface), Qnormal))
4032 result = Fcons (Qbold, result);
4033
4034 if (!UNSPECIFIEDP (LFACE_SLANT (lface))
4035 && !EQ (LFACE_SLANT (lface), Qnormal))
4036 result = Fcons (Qitalic, result);
4037
4038 return result;
4039 }
4040 else
4041 {
4042 struct frame *f = frame_or_selected_frame (frame, 1);
4043 int face_id = lookup_named_face (f, face, 1);
4044 struct face *face = FACE_FROM_ID (f, face_id);
4045
4046 if (! face)
4047 return Qnil;
4048 #ifdef HAVE_WINDOW_SYSTEM
4049 if (FRAME_WINDOW_P (f) && !NILP (character))
4050 {
4051 CHECK_CHARACTER (character);
4052 face_id = FACE_FOR_CHAR (f, face, XINT (character), -1, Qnil);
4053 face = FACE_FROM_ID (f, face_id);
4054 }
4055 return (face->font
4056 ? face->font->props[FONT_NAME_INDEX]
4057 : Qnil);
4058 #else /* !HAVE_WINDOW_SYSTEM */
4059 return build_string (FRAME_MSDOS_P (f)
4060 ? "ms-dos"
4061 : FRAME_W32_P (f) ? "w32term"
4062 :"tty");
4063 #endif
4064 }
4065 }
4066
4067
4068 /* Compare face-attribute values v1 and v2 for equality. Value is non-zero if
4069 all attributes are `equal'. Tries to be fast because this function
4070 is called quite often. */
4071
4072 static INLINE int
4073 face_attr_equal_p (v1, v2)
4074 Lisp_Object v1, v2;
4075 {
4076 /* Type can differ, e.g. when one attribute is unspecified, i.e. nil,
4077 and the other is specified. */
4078 if (XTYPE (v1) != XTYPE (v2))
4079 return 0;
4080
4081 if (EQ (v1, v2))
4082 return 1;
4083
4084 switch (XTYPE (v1))
4085 {
4086 case Lisp_String:
4087 if (SBYTES (v1) != SBYTES (v2))
4088 return 0;
4089
4090 return bcmp (SDATA (v1), SDATA (v2), SBYTES (v1)) == 0;
4091
4092 case Lisp_Int:
4093 case Lisp_Symbol:
4094 return 0;
4095
4096 default:
4097 return !NILP (Fequal (v1, v2));
4098 }
4099 }
4100
4101
4102 /* Compare face vectors V1 and V2 for equality. Value is non-zero if
4103 all attributes are `equal'. Tries to be fast because this function
4104 is called quite often. */
4105
4106 static INLINE int
4107 lface_equal_p (v1, v2)
4108 Lisp_Object *v1, *v2;
4109 {
4110 int i, equal_p = 1;
4111
4112 for (i = 1; i < LFACE_VECTOR_SIZE && equal_p; ++i)
4113 equal_p = face_attr_equal_p (v1[i], v2[i]);
4114
4115 return equal_p;
4116 }
4117
4118
4119 DEFUN ("internal-lisp-face-equal-p", Finternal_lisp_face_equal_p,
4120 Sinternal_lisp_face_equal_p, 2, 3, 0,
4121 doc: /* True if FACE1 and FACE2 are equal.
4122 If the optional argument FRAME is given, report on FACE1 and FACE2 in that frame.
4123 If FRAME is t, report on the defaults for FACE1 and FACE2 (for new frames).
4124 If FRAME is omitted or nil, use the selected frame. */)
4125 (face1, face2, frame)
4126 Lisp_Object face1, face2, frame;
4127 {
4128 int equal_p;
4129 struct frame *f;
4130 Lisp_Object lface1, lface2;
4131
4132 if (EQ (frame, Qt))
4133 f = NULL;
4134 else
4135 /* Don't use check_x_frame here because this function is called
4136 before X frames exist. At that time, if FRAME is nil,
4137 selected_frame will be used which is the frame dumped with
4138 Emacs. That frame is not an X frame. */
4139 f = frame_or_selected_frame (frame, 2);
4140
4141 lface1 = lface_from_face_name (f, face1, 1);
4142 lface2 = lface_from_face_name (f, face2, 1);
4143 equal_p = lface_equal_p (XVECTOR (lface1)->contents,
4144 XVECTOR (lface2)->contents);
4145 return equal_p ? Qt : Qnil;
4146 }
4147
4148
4149 DEFUN ("internal-lisp-face-empty-p", Finternal_lisp_face_empty_p,
4150 Sinternal_lisp_face_empty_p, 1, 2, 0,
4151 doc: /* True if FACE has no attribute specified.
4152 If the optional argument FRAME is given, report on face FACE in that frame.
4153 If FRAME is t, report on the defaults for face FACE (for new frames).
4154 If FRAME is omitted or nil, use the selected frame. */)
4155 (face, frame)
4156 Lisp_Object face, frame;
4157 {
4158 struct frame *f;
4159 Lisp_Object lface;
4160 int i;
4161
4162 if (NILP (frame))
4163 frame = selected_frame;
4164 CHECK_LIVE_FRAME (frame);
4165 f = XFRAME (frame);
4166
4167 if (EQ (frame, Qt))
4168 lface = lface_from_face_name (NULL, face, 1);
4169 else
4170 lface = lface_from_face_name (f, face, 1);
4171
4172 for (i = 1; i < LFACE_VECTOR_SIZE; ++i)
4173 if (!UNSPECIFIEDP (AREF (lface, i)))
4174 break;
4175
4176 return i == LFACE_VECTOR_SIZE ? Qt : Qnil;
4177 }
4178
4179
4180 DEFUN ("frame-face-alist", Fframe_face_alist, Sframe_face_alist,
4181 0, 1, 0,
4182 doc: /* Return an alist of frame-local faces defined on FRAME.
4183 For internal use only. */)
4184 (frame)
4185 Lisp_Object frame;
4186 {
4187 struct frame *f = frame_or_selected_frame (frame, 0);
4188 return f->face_alist;
4189 }
4190
4191
4192 /* Return a hash code for Lisp string STRING with case ignored. Used
4193 below in computing a hash value for a Lisp face. */
4194
4195 static INLINE unsigned
4196 hash_string_case_insensitive (string)
4197 Lisp_Object string;
4198 {
4199 const unsigned char *s;
4200 unsigned hash = 0;
4201 xassert (STRINGP (string));
4202 for (s = SDATA (string); *s; ++s)
4203 hash = (hash << 1) ^ tolower (*s);
4204 return hash;
4205 }
4206
4207
4208 /* Return a hash code for face attribute vector V. */
4209
4210 static INLINE unsigned
4211 lface_hash (v)
4212 Lisp_Object *v;
4213 {
4214 return (hash_string_case_insensitive (v[LFACE_FAMILY_INDEX])
4215 ^ hash_string_case_insensitive (v[LFACE_FOUNDRY_INDEX])
4216 ^ hash_string_case_insensitive (v[LFACE_FOREGROUND_INDEX])
4217 ^ hash_string_case_insensitive (v[LFACE_BACKGROUND_INDEX])
4218 ^ XHASH (v[LFACE_WEIGHT_INDEX])
4219 ^ XHASH (v[LFACE_SLANT_INDEX])
4220 ^ XHASH (v[LFACE_SWIDTH_INDEX])
4221 ^ XHASH (v[LFACE_HEIGHT_INDEX]));
4222 }
4223
4224
4225 /* Return non-zero if LFACE1 and LFACE2 specify the same font (without
4226 considering charsets/registries). They do if they specify the same
4227 family, point size, weight, width, slant, and font. Both
4228 LFACE1 and LFACE2 must be fully-specified. */
4229
4230 static INLINE int
4231 lface_same_font_attributes_p (lface1, lface2)
4232 Lisp_Object *lface1, *lface2;
4233 {
4234 xassert (lface_fully_specified_p (lface1)
4235 && lface_fully_specified_p (lface2));
4236 return (xstrcasecmp (SDATA (lface1[LFACE_FAMILY_INDEX]),
4237 SDATA (lface2[LFACE_FAMILY_INDEX])) == 0
4238 && xstrcasecmp (SDATA (lface1[LFACE_FOUNDRY_INDEX]),
4239 SDATA (lface2[LFACE_FOUNDRY_INDEX])) == 0
4240 && EQ (lface1[LFACE_HEIGHT_INDEX], lface2[LFACE_HEIGHT_INDEX])
4241 && EQ (lface1[LFACE_SWIDTH_INDEX], lface2[LFACE_SWIDTH_INDEX])
4242 && EQ (lface1[LFACE_WEIGHT_INDEX], lface2[LFACE_WEIGHT_INDEX])
4243 && EQ (lface1[LFACE_SLANT_INDEX], lface2[LFACE_SLANT_INDEX])
4244 && EQ (lface1[LFACE_FONT_INDEX], lface2[LFACE_FONT_INDEX])
4245 && (EQ (lface1[LFACE_FONTSET_INDEX], lface2[LFACE_FONTSET_INDEX])
4246 || (STRINGP (lface1[LFACE_FONTSET_INDEX])
4247 && STRINGP (lface2[LFACE_FONTSET_INDEX])
4248 && ! xstrcasecmp (SDATA (lface1[LFACE_FONTSET_INDEX]),
4249 SDATA (lface2[LFACE_FONTSET_INDEX]))))
4250 );
4251 }
4252
4253
4254 \f
4255 /***********************************************************************
4256 Realized Faces
4257 ***********************************************************************/
4258
4259 /* Allocate and return a new realized face for Lisp face attribute
4260 vector ATTR. */
4261
4262 static struct face *
4263 make_realized_face (attr)
4264 Lisp_Object *attr;
4265 {
4266 struct face *face = (struct face *) xmalloc (sizeof *face);
4267 bzero (face, sizeof *face);
4268 face->ascii_face = face;
4269 bcopy (attr, face->lface, sizeof face->lface);
4270 return face;
4271 }
4272
4273
4274 /* Free realized face FACE, including its X resources. FACE may
4275 be null. */
4276
4277 void
4278 free_realized_face (f, face)
4279 struct frame *f;
4280 struct face *face;
4281 {
4282 if (face)
4283 {
4284 #ifdef HAVE_WINDOW_SYSTEM
4285 if (FRAME_WINDOW_P (f))
4286 {
4287 /* Free fontset of FACE if it is ASCII face. */
4288 if (face->fontset >= 0 && face == face->ascii_face)
4289 free_face_fontset (f, face);
4290 if (face->gc)
4291 {
4292 BLOCK_INPUT;
4293 if (face->font)
4294 font_done_for_face (f, face);
4295 x_free_gc (f, face->gc);
4296 face->gc = 0;
4297 UNBLOCK_INPUT;
4298 }
4299
4300 free_face_colors (f, face);
4301 x_destroy_bitmap (f, face->stipple);
4302 }
4303 #endif /* HAVE_WINDOW_SYSTEM */
4304
4305 xfree (face);
4306 }
4307 }
4308
4309
4310 /* Prepare face FACE for subsequent display on frame F. This
4311 allocated GCs if they haven't been allocated yet or have been freed
4312 by clearing the face cache. */
4313
4314 void
4315 prepare_face_for_display (f, face)
4316 struct frame *f;
4317 struct face *face;
4318 {
4319 #ifdef HAVE_WINDOW_SYSTEM
4320 xassert (FRAME_WINDOW_P (f));
4321
4322 if (face->gc == 0)
4323 {
4324 XGCValues xgcv;
4325 unsigned long mask = GCForeground | GCBackground | GCGraphicsExposures;
4326
4327 xgcv.foreground = face->foreground;
4328 xgcv.background = face->background;
4329 #ifdef HAVE_X_WINDOWS
4330 xgcv.graphics_exposures = False;
4331 #endif
4332
4333 BLOCK_INPUT;
4334 #ifdef HAVE_X_WINDOWS
4335 if (face->stipple)
4336 {
4337 xgcv.fill_style = FillOpaqueStippled;
4338 xgcv.stipple = x_bitmap_pixmap (f, face->stipple);
4339 mask |= GCFillStyle | GCStipple;
4340 }
4341 #endif
4342 face->gc = x_create_gc (f, mask, &xgcv);
4343 if (face->font)
4344 font_prepare_for_face (f, face);
4345 UNBLOCK_INPUT;
4346 }
4347 #endif /* HAVE_WINDOW_SYSTEM */
4348 }
4349
4350 \f
4351 /* Returns the `distance' between the colors X and Y. */
4352
4353 static int
4354 color_distance (x, y)
4355 XColor *x, *y;
4356 {
4357 /* This formula is from a paper title `Colour metric' by Thiadmer Riemersma.
4358 Quoting from that paper:
4359
4360 This formula has results that are very close to L*u*v* (with the
4361 modified lightness curve) and, more importantly, it is a more even
4362 algorithm: it does not have a range of colours where it suddenly
4363 gives far from optimal results.
4364
4365 See <http://www.compuphase.com/cmetric.htm> for more info. */
4366
4367 long r = (x->red - y->red) >> 8;
4368 long g = (x->green - y->green) >> 8;
4369 long b = (x->blue - y->blue) >> 8;
4370 long r_mean = (x->red + y->red) >> 9;
4371
4372 return
4373 (((512 + r_mean) * r * r) >> 8)
4374 + 4 * g * g
4375 + (((767 - r_mean) * b * b) >> 8);
4376 }
4377
4378
4379 DEFUN ("color-distance", Fcolor_distance, Scolor_distance, 2, 3, 0,
4380 doc: /* Return an integer distance between COLOR1 and COLOR2 on FRAME.
4381 COLOR1 and COLOR2 may be either strings containing the color name,
4382 or lists of the form (RED GREEN BLUE).
4383 If FRAME is unspecified or nil, the current frame is used. */)
4384 (color1, color2, frame)
4385 Lisp_Object color1, color2, frame;
4386 {
4387 struct frame *f;
4388 XColor cdef1, cdef2;
4389
4390 if (NILP (frame))
4391 frame = selected_frame;
4392 CHECK_LIVE_FRAME (frame);
4393 f = XFRAME (frame);
4394
4395 if (!(CONSP (color1) && parse_rgb_list (color1, &cdef1))
4396 && !(STRINGP (color1) && defined_color (f, SDATA (color1), &cdef1, 0)))
4397 signal_error ("Invalid color", color1);
4398 if (!(CONSP (color2) && parse_rgb_list (color2, &cdef2))
4399 && !(STRINGP (color2) && defined_color (f, SDATA (color2), &cdef2, 0)))
4400 signal_error ("Invalid color", color2);
4401
4402 return make_number (color_distance (&cdef1, &cdef2));
4403 }
4404
4405 \f
4406 /***********************************************************************
4407 Face Cache
4408 ***********************************************************************/
4409
4410 /* Return a new face cache for frame F. */
4411
4412 static struct face_cache *
4413 make_face_cache (f)
4414 struct frame *f;
4415 {
4416 struct face_cache *c;
4417 int size;
4418
4419 c = (struct face_cache *) xmalloc (sizeof *c);
4420 bzero (c, sizeof *c);
4421 size = FACE_CACHE_BUCKETS_SIZE * sizeof *c->buckets;
4422 c->buckets = (struct face **) xmalloc (size);
4423 bzero (c->buckets, size);
4424 c->size = 50;
4425 c->faces_by_id = (struct face **) xmalloc (c->size * sizeof *c->faces_by_id);
4426 c->f = f;
4427 c->menu_face_changed_p = menu_face_changed_default;
4428 return c;
4429 }
4430
4431
4432 /* Clear out all graphics contexts for all realized faces, except for
4433 the basic faces. This should be done from time to time just to avoid
4434 keeping too many graphics contexts that are no longer needed. */
4435
4436 static void
4437 clear_face_gcs (c)
4438 struct face_cache *c;
4439 {
4440 if (c && FRAME_WINDOW_P (c->f))
4441 {
4442 #ifdef HAVE_WINDOW_SYSTEM
4443 int i;
4444 for (i = BASIC_FACE_ID_SENTINEL; i < c->used; ++i)
4445 {
4446 struct face *face = c->faces_by_id[i];
4447 if (face && face->gc)
4448 {
4449 BLOCK_INPUT;
4450 if (face->font)
4451 font_done_for_face (c->f, face);
4452 x_free_gc (c->f, face->gc);
4453 face->gc = 0;
4454 UNBLOCK_INPUT;
4455 }
4456 }
4457 #endif /* HAVE_WINDOW_SYSTEM */
4458 }
4459 }
4460
4461
4462 /* Free all realized faces in face cache C, including basic faces.
4463 C may be null. If faces are freed, make sure the frame's current
4464 matrix is marked invalid, so that a display caused by an expose
4465 event doesn't try to use faces we destroyed. */
4466
4467 static void
4468 free_realized_faces (c)
4469 struct face_cache *c;
4470 {
4471 if (c && c->used)
4472 {
4473 int i, size;
4474 struct frame *f = c->f;
4475
4476 /* We must block input here because we can't process X events
4477 safely while only some faces are freed, or when the frame's
4478 current matrix still references freed faces. */
4479 BLOCK_INPUT;
4480
4481 for (i = 0; i < c->used; ++i)
4482 {
4483 free_realized_face (f, c->faces_by_id[i]);
4484 c->faces_by_id[i] = NULL;
4485 }
4486
4487 c->used = 0;
4488 size = FACE_CACHE_BUCKETS_SIZE * sizeof *c->buckets;
4489 bzero (c->buckets, size);
4490
4491 /* Must do a thorough redisplay the next time. Mark current
4492 matrices as invalid because they will reference faces freed
4493 above. This function is also called when a frame is
4494 destroyed. In this case, the root window of F is nil. */
4495 if (WINDOWP (f->root_window))
4496 {
4497 clear_current_matrices (f);
4498 ++windows_or_buffers_changed;
4499 }
4500
4501 UNBLOCK_INPUT;
4502 }
4503 }
4504
4505
4506 /* Free all realized faces that are using FONTSET on frame F. */
4507
4508 void
4509 free_realized_faces_for_fontset (f, fontset)
4510 struct frame *f;
4511 int fontset;
4512 {
4513 struct face_cache *cache = FRAME_FACE_CACHE (f);
4514 struct face *face;
4515 int i;
4516
4517 /* We must block input here because we can't process X events safely
4518 while only some faces are freed, or when the frame's current
4519 matrix still references freed faces. */
4520 BLOCK_INPUT;
4521
4522 for (i = 0; i < cache->used; i++)
4523 {
4524 face = cache->faces_by_id[i];
4525 if (face
4526 && face->fontset == fontset)
4527 {
4528 uncache_face (cache, face);
4529 free_realized_face (f, face);
4530 }
4531 }
4532
4533 /* Must do a thorough redisplay the next time. Mark current
4534 matrices as invalid because they will reference faces freed
4535 above. This function is also called when a frame is destroyed.
4536 In this case, the root window of F is nil. */
4537 if (WINDOWP (f->root_window))
4538 {
4539 clear_current_matrices (f);
4540 ++windows_or_buffers_changed;
4541 }
4542
4543 UNBLOCK_INPUT;
4544 }
4545
4546
4547 /* Free all realized faces on FRAME or on all frames if FRAME is nil.
4548 This is done after attributes of a named face have been changed,
4549 because we can't tell which realized faces depend on that face. */
4550
4551 void
4552 free_all_realized_faces (frame)
4553 Lisp_Object frame;
4554 {
4555 if (NILP (frame))
4556 {
4557 Lisp_Object rest;
4558 FOR_EACH_FRAME (rest, frame)
4559 free_realized_faces (FRAME_FACE_CACHE (XFRAME (frame)));
4560 }
4561 else
4562 free_realized_faces (FRAME_FACE_CACHE (XFRAME (frame)));
4563 }
4564
4565
4566 /* Free face cache C and faces in it, including their X resources. */
4567
4568 static void
4569 free_face_cache (c)
4570 struct face_cache *c;
4571 {
4572 if (c)
4573 {
4574 free_realized_faces (c);
4575 xfree (c->buckets);
4576 xfree (c->faces_by_id);
4577 xfree (c);
4578 }
4579 }
4580
4581
4582 /* Cache realized face FACE in face cache C. HASH is the hash value
4583 of FACE. If FACE is for ASCII characters (i.e. FACE->ascii_face ==
4584 FACE), insert the new face to the beginning of the collision list
4585 of the face hash table of C. Otherwise, add the new face to the
4586 end of the collision list. This way, lookup_face can quickly find
4587 that a requested face is not cached. */
4588
4589 static void
4590 cache_face (c, face, hash)
4591 struct face_cache *c;
4592 struct face *face;
4593 unsigned hash;
4594 {
4595 int i = hash % FACE_CACHE_BUCKETS_SIZE;
4596
4597 face->hash = hash;
4598
4599 if (face->ascii_face != face)
4600 {
4601 struct face *last = c->buckets[i];
4602 if (last)
4603 {
4604 while (last->next)
4605 last = last->next;
4606 last->next = face;
4607 face->prev = last;
4608 face->next = NULL;
4609 }
4610 else
4611 {
4612 c->buckets[i] = face;
4613 face->prev = face->next = NULL;
4614 }
4615 }
4616 else
4617 {
4618 face->prev = NULL;
4619 face->next = c->buckets[i];
4620 if (face->next)
4621 face->next->prev = face;
4622 c->buckets[i] = face;
4623 }
4624
4625 /* Find a free slot in C->faces_by_id and use the index of the free
4626 slot as FACE->id. */
4627 for (i = 0; i < c->used; ++i)
4628 if (c->faces_by_id[i] == NULL)
4629 break;
4630 face->id = i;
4631
4632 /* Maybe enlarge C->faces_by_id. */
4633 if (i == c->used)
4634 {
4635 if (c->used == c->size)
4636 {
4637 int new_size, sz;
4638 new_size = min (2 * c->size, MAX_FACE_ID);
4639 if (new_size == c->size)
4640 abort (); /* Alternatives? ++kfs */
4641 sz = new_size * sizeof *c->faces_by_id;
4642 c->faces_by_id = (struct face **) xrealloc (c->faces_by_id, sz);
4643 c->size = new_size;
4644 }
4645 c->used++;
4646 }
4647
4648 #if GLYPH_DEBUG
4649 /* Check that FACE got a unique id. */
4650 {
4651 int j, n;
4652 struct face *face;
4653
4654 for (j = n = 0; j < FACE_CACHE_BUCKETS_SIZE; ++j)
4655 for (face = c->buckets[j]; face; face = face->next)
4656 if (face->id == i)
4657 ++n;
4658
4659 xassert (n == 1);
4660 }
4661 #endif /* GLYPH_DEBUG */
4662
4663 c->faces_by_id[i] = face;
4664 }
4665
4666
4667 /* Remove face FACE from cache C. */
4668
4669 static void
4670 uncache_face (c, face)
4671 struct face_cache *c;
4672 struct face *face;
4673 {
4674 int i = face->hash % FACE_CACHE_BUCKETS_SIZE;
4675
4676 if (face->prev)
4677 face->prev->next = face->next;
4678 else
4679 c->buckets[i] = face->next;
4680
4681 if (face->next)
4682 face->next->prev = face->prev;
4683
4684 c->faces_by_id[face->id] = NULL;
4685 if (face->id == c->used)
4686 --c->used;
4687 }
4688
4689
4690 /* Look up a realized face with face attributes ATTR in the face cache
4691 of frame F. The face will be used to display ASCII characters.
4692 Value is the ID of the face found. If no suitable face is found,
4693 realize a new one. */
4694
4695 INLINE int
4696 lookup_face (f, attr)
4697 struct frame *f;
4698 Lisp_Object *attr;
4699 {
4700 struct face_cache *cache = FRAME_FACE_CACHE (f);
4701 unsigned hash;
4702 int i;
4703 struct face *face;
4704
4705 xassert (cache != NULL);
4706 check_lface_attrs (attr);
4707
4708 /* Look up ATTR in the face cache. */
4709 hash = lface_hash (attr);
4710 i = hash % FACE_CACHE_BUCKETS_SIZE;
4711
4712 for (face = cache->buckets[i]; face; face = face->next)
4713 {
4714 if (face->ascii_face != face)
4715 {
4716 /* There's no more ASCII face. */
4717 face = NULL;
4718 break;
4719 }
4720 if (face->hash == hash
4721 && lface_equal_p (face->lface, attr))
4722 break;
4723 }
4724
4725 /* If not found, realize a new face. */
4726 if (face == NULL)
4727 face = realize_face (cache, attr, -1);
4728
4729 #if GLYPH_DEBUG
4730 xassert (face == FACE_FROM_ID (f, face->id));
4731 #endif /* GLYPH_DEBUG */
4732
4733 return face->id;
4734 }
4735
4736 #ifdef HAVE_WINDOW_SYSTEM
4737 /* Look up a realized face that has the same attributes as BASE_FACE
4738 except for the font in the face cache of frame F. If FONT-OBJECT
4739 is not nil, it is an already opened font. If FONT-OBJECT is nil,
4740 the face has no font. Value is the ID of the face found. If no
4741 suitable face is found, realize a new one. */
4742
4743 int
4744 face_for_font (f, font_object, base_face)
4745 struct frame *f;
4746 Lisp_Object font_object;
4747 struct face *base_face;
4748 {
4749 struct face_cache *cache = FRAME_FACE_CACHE (f);
4750 unsigned hash;
4751 int i;
4752 struct face *face;
4753
4754 xassert (cache != NULL);
4755 base_face = base_face->ascii_face;
4756 hash = lface_hash (base_face->lface);
4757 i = hash % FACE_CACHE_BUCKETS_SIZE;
4758
4759 for (face = cache->buckets[i]; face; face = face->next)
4760 {
4761 if (face->ascii_face == face)
4762 continue;
4763 if (face->ascii_face == base_face
4764 && face->font == (NILP (font_object) ? NULL
4765 : XFONT_OBJECT (font_object))
4766 && lface_equal_p (face->lface, base_face->lface))
4767 return face->id;
4768 }
4769
4770 /* If not found, realize a new face. */
4771 face = realize_non_ascii_face (f, font_object, base_face);
4772 return face->id;
4773 }
4774 #endif /* HAVE_WINDOW_SYSTEM */
4775
4776 /* Return the face id of the realized face for named face SYMBOL on
4777 frame F suitable for displaying ASCII characters. Value is -1 if
4778 the face couldn't be determined, which might happen if the default
4779 face isn't realized and cannot be realized. */
4780
4781 int
4782 lookup_named_face (f, symbol, signal_p)
4783 struct frame *f;
4784 Lisp_Object symbol;
4785 int signal_p;
4786 {
4787 Lisp_Object attrs[LFACE_VECTOR_SIZE];
4788 Lisp_Object symbol_attrs[LFACE_VECTOR_SIZE];
4789 struct face *default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
4790
4791 if (default_face == NULL)
4792 {
4793 if (!realize_basic_faces (f))
4794 return -1;
4795 default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
4796 if (default_face == NULL)
4797 abort (); /* realize_basic_faces must have set it up */
4798 }
4799
4800 if (! get_lface_attributes (f, symbol, symbol_attrs, signal_p, 0))
4801 return -1;
4802
4803 bcopy (default_face->lface, attrs, sizeof attrs);
4804 merge_face_vectors (f, symbol_attrs, attrs, 0);
4805
4806 return lookup_face (f, attrs);
4807 }
4808
4809
4810 /* Return the display face-id of the basic face who's canonical face-id
4811 is FACE_ID. The return value will usually simply be FACE_ID, unless that
4812 basic face has bee remapped via Vface_remapping_alist. This function is
4813 conservative: if something goes wrong, it will simply return FACE_ID
4814 rather than signal an error. */
4815
4816 int
4817 lookup_basic_face (f, face_id)
4818 struct frame *f;
4819 int face_id;
4820 {
4821 Lisp_Object name, mapping;
4822 int remapped_face_id;
4823
4824 if (NILP (Vface_remapping_alist))
4825 return face_id; /* Nothing to do. */
4826
4827 switch (face_id)
4828 {
4829 case DEFAULT_FACE_ID: name = Qdefault; break;
4830 case MODE_LINE_FACE_ID: name = Qmode_line; break;
4831 case MODE_LINE_INACTIVE_FACE_ID: name = Qmode_line_inactive; break;
4832 case HEADER_LINE_FACE_ID: name = Qheader_line; break;
4833 case TOOL_BAR_FACE_ID: name = Qtool_bar; break;
4834 case FRINGE_FACE_ID: name = Qfringe; break;
4835 case SCROLL_BAR_FACE_ID: name = Qscroll_bar; break;
4836 case BORDER_FACE_ID: name = Qborder; break;
4837 case CURSOR_FACE_ID: name = Qcursor; break;
4838 case MOUSE_FACE_ID: name = Qmouse; break;
4839 case MENU_FACE_ID: name = Qmenu; break;
4840
4841 default:
4842 abort (); /* the caller is supposed to pass us a basic face id */
4843 }
4844
4845 /* Do a quick scan through Vface_remapping_alist, and return immediately
4846 if there is no remapping for face NAME. This is just an optimization
4847 for the very common no-remapping case. */
4848 mapping = assq_no_quit (name, Vface_remapping_alist);
4849 if (NILP (mapping))
4850 return face_id; /* Give up. */
4851
4852 /* If there is a remapping entry, lookup the face using NAME, which will
4853 handle the remapping too. */
4854 remapped_face_id = lookup_named_face (f, name, 0);
4855 if (remapped_face_id < 0)
4856 return face_id; /* Give up. */
4857
4858 return remapped_face_id;
4859 }
4860
4861
4862 /* Return the ID of the realized ASCII face of Lisp face with ID
4863 LFACE_ID on frame F. Value is -1 if LFACE_ID isn't valid. */
4864
4865 int
4866 ascii_face_of_lisp_face (f, lface_id)
4867 struct frame *f;
4868 int lface_id;
4869 {
4870 int face_id;
4871
4872 if (lface_id >= 0 && lface_id < lface_id_to_name_size)
4873 {
4874 Lisp_Object face_name = lface_id_to_name[lface_id];
4875 face_id = lookup_named_face (f, face_name, 1);
4876 }
4877 else
4878 face_id = -1;
4879
4880 return face_id;
4881 }
4882
4883
4884 /* Return a face for charset ASCII that is like the face with id
4885 FACE_ID on frame F, but has a font that is STEPS steps smaller.
4886 STEPS < 0 means larger. Value is the id of the face. */
4887
4888 int
4889 smaller_face (f, face_id, steps)
4890 struct frame *f;
4891 int face_id, steps;
4892 {
4893 #ifdef HAVE_WINDOW_SYSTEM
4894 struct face *face;
4895 Lisp_Object attrs[LFACE_VECTOR_SIZE];
4896 int pt, last_pt, last_height;
4897 int delta;
4898 int new_face_id;
4899 struct face *new_face;
4900
4901 /* If not called for an X frame, just return the original face. */
4902 if (FRAME_TERMCAP_P (f))
4903 return face_id;
4904
4905 /* Try in increments of 1/2 pt. */
4906 delta = steps < 0 ? 5 : -5;
4907 steps = eabs (steps);
4908
4909 face = FACE_FROM_ID (f, face_id);
4910 bcopy (face->lface, attrs, sizeof attrs);
4911 pt = last_pt = XFASTINT (attrs[LFACE_HEIGHT_INDEX]);
4912 new_face_id = face_id;
4913 last_height = FONT_HEIGHT (face->font);
4914
4915 while (steps
4916 && pt + delta > 0
4917 /* Give up if we cannot find a font within 10pt. */
4918 && eabs (last_pt - pt) < 100)
4919 {
4920 /* Look up a face for a slightly smaller/larger font. */
4921 pt += delta;
4922 attrs[LFACE_HEIGHT_INDEX] = make_number (pt);
4923 new_face_id = lookup_face (f, attrs);
4924 new_face = FACE_FROM_ID (f, new_face_id);
4925
4926 /* If height changes, count that as one step. */
4927 if ((delta < 0 && FONT_HEIGHT (new_face->font) < last_height)
4928 || (delta > 0 && FONT_HEIGHT (new_face->font) > last_height))
4929 {
4930 --steps;
4931 last_height = FONT_HEIGHT (new_face->font);
4932 last_pt = pt;
4933 }
4934 }
4935
4936 return new_face_id;
4937
4938 #else /* not HAVE_WINDOW_SYSTEM */
4939
4940 return face_id;
4941
4942 #endif /* not HAVE_WINDOW_SYSTEM */
4943 }
4944
4945
4946 /* Return a face for charset ASCII that is like the face with id
4947 FACE_ID on frame F, but has height HEIGHT. */
4948
4949 int
4950 face_with_height (f, face_id, height)
4951 struct frame *f;
4952 int face_id;
4953 int height;
4954 {
4955 #ifdef HAVE_WINDOW_SYSTEM
4956 struct face *face;
4957 Lisp_Object attrs[LFACE_VECTOR_SIZE];
4958
4959 if (FRAME_TERMCAP_P (f)
4960 || height <= 0)
4961 return face_id;
4962
4963 face = FACE_FROM_ID (f, face_id);
4964 bcopy (face->lface, attrs, sizeof attrs);
4965 attrs[LFACE_HEIGHT_INDEX] = make_number (height);
4966 face_id = lookup_face (f, attrs);
4967 #endif /* HAVE_WINDOW_SYSTEM */
4968
4969 return face_id;
4970 }
4971
4972
4973 /* Return the face id of the realized face for named face SYMBOL on
4974 frame F suitable for displaying ASCII characters, and use
4975 attributes of the face FACE_ID for attributes that aren't
4976 completely specified by SYMBOL. This is like lookup_named_face,
4977 except that the default attributes come from FACE_ID, not from the
4978 default face. FACE_ID is assumed to be already realized. */
4979
4980 int
4981 lookup_derived_face (f, symbol, face_id, signal_p)
4982 struct frame *f;
4983 Lisp_Object symbol;
4984 int face_id;
4985 int signal_p;
4986 {
4987 Lisp_Object attrs[LFACE_VECTOR_SIZE];
4988 Lisp_Object symbol_attrs[LFACE_VECTOR_SIZE];
4989 struct face *default_face = FACE_FROM_ID (f, face_id);
4990
4991 if (!default_face)
4992 abort ();
4993
4994 get_lface_attributes (f, symbol, symbol_attrs, signal_p, 0);
4995 bcopy (default_face->lface, attrs, sizeof attrs);
4996 merge_face_vectors (f, symbol_attrs, attrs, 0);
4997 return lookup_face (f, attrs);
4998 }
4999
5000 DEFUN ("face-attributes-as-vector", Fface_attributes_as_vector,
5001 Sface_attributes_as_vector, 1, 1, 0,
5002 doc: /* Return a vector of face attributes corresponding to PLIST. */)
5003 (plist)
5004 Lisp_Object plist;
5005 {
5006 Lisp_Object lface;
5007 lface = Fmake_vector (make_number (LFACE_VECTOR_SIZE),
5008 Qunspecified);
5009 merge_face_ref (XFRAME (selected_frame), plist, XVECTOR (lface)->contents,
5010 1, 0);
5011 return lface;
5012 }
5013
5014
5015 \f
5016 /***********************************************************************
5017 Face capability testing
5018 ***********************************************************************/
5019
5020
5021 /* If the distance (as returned by color_distance) between two colors is
5022 less than this, then they are considered the same, for determining
5023 whether a color is supported or not. The range of values is 0-65535. */
5024
5025 #define TTY_SAME_COLOR_THRESHOLD 10000
5026
5027 #ifdef HAVE_WINDOW_SYSTEM
5028
5029 /* Return non-zero if all the face attributes in ATTRS are supported
5030 on the window-system frame F.
5031
5032 The definition of `supported' is somewhat heuristic, but basically means
5033 that a face containing all the attributes in ATTRS, when merged with the
5034 default face for display, can be represented in a way that's
5035
5036 \(1) different in appearance than the default face, and
5037 \(2) `close in spirit' to what the attributes specify, if not exact. */
5038
5039 static int
5040 x_supports_face_attributes_p (f, attrs, def_face)
5041 struct frame *f;
5042 Lisp_Object *attrs;
5043 struct face *def_face;
5044 {
5045 Lisp_Object *def_attrs = def_face->lface;
5046
5047 /* Check that other specified attributes are different that the default
5048 face. */
5049 if ((!UNSPECIFIEDP (attrs[LFACE_UNDERLINE_INDEX])
5050 && face_attr_equal_p (attrs[LFACE_UNDERLINE_INDEX],
5051 def_attrs[LFACE_UNDERLINE_INDEX]))
5052 || (!UNSPECIFIEDP (attrs[LFACE_INVERSE_INDEX])
5053 && face_attr_equal_p (attrs[LFACE_INVERSE_INDEX],
5054 def_attrs[LFACE_INVERSE_INDEX]))
5055 || (!UNSPECIFIEDP (attrs[LFACE_FOREGROUND_INDEX])
5056 && face_attr_equal_p (attrs[LFACE_FOREGROUND_INDEX],
5057 def_attrs[LFACE_FOREGROUND_INDEX]))
5058 || (!UNSPECIFIEDP (attrs[LFACE_BACKGROUND_INDEX])
5059 && face_attr_equal_p (attrs[LFACE_BACKGROUND_INDEX],
5060 def_attrs[LFACE_BACKGROUND_INDEX]))
5061 || (!UNSPECIFIEDP (attrs[LFACE_STIPPLE_INDEX])
5062 && face_attr_equal_p (attrs[LFACE_STIPPLE_INDEX],
5063 def_attrs[LFACE_STIPPLE_INDEX]))
5064 || (!UNSPECIFIEDP (attrs[LFACE_OVERLINE_INDEX])
5065 && face_attr_equal_p (attrs[LFACE_OVERLINE_INDEX],
5066 def_attrs[LFACE_OVERLINE_INDEX]))
5067 || (!UNSPECIFIEDP (attrs[LFACE_STRIKE_THROUGH_INDEX])
5068 && face_attr_equal_p (attrs[LFACE_STRIKE_THROUGH_INDEX],
5069 def_attrs[LFACE_STRIKE_THROUGH_INDEX]))
5070 || (!UNSPECIFIEDP (attrs[LFACE_BOX_INDEX])
5071 && face_attr_equal_p (attrs[LFACE_BOX_INDEX],
5072 def_attrs[LFACE_BOX_INDEX])))
5073 return 0;
5074
5075 /* Check font-related attributes, as those are the most commonly
5076 "unsupported" on a window-system (because of missing fonts). */
5077 if (!UNSPECIFIEDP (attrs[LFACE_FAMILY_INDEX])
5078 || !UNSPECIFIEDP (attrs[LFACE_FOUNDRY_INDEX])
5079 || !UNSPECIFIEDP (attrs[LFACE_HEIGHT_INDEX])
5080 || !UNSPECIFIEDP (attrs[LFACE_WEIGHT_INDEX])
5081 || !UNSPECIFIEDP (attrs[LFACE_SLANT_INDEX])
5082 || !UNSPECIFIEDP (attrs[LFACE_SWIDTH_INDEX]))
5083 {
5084 int face_id;
5085 struct face *face;
5086 Lisp_Object merged_attrs[LFACE_VECTOR_SIZE];
5087 int i;
5088
5089 bcopy (def_attrs, merged_attrs, sizeof merged_attrs);
5090
5091 merge_face_vectors (f, attrs, merged_attrs, 0);
5092
5093 face_id = lookup_face (f, merged_attrs);
5094 face = FACE_FROM_ID (f, face_id);
5095
5096 if (! face)
5097 error ("Cannot make face");
5098
5099 /* If the font is the same, or no font is found, then not
5100 supported. */
5101 if (face->font == def_face->font
5102 || ! face->font)
5103 return 0;
5104 for (i = FONT_TYPE_INDEX; i <= FONT_SIZE_INDEX; i++)
5105 if (! EQ (face->font->props[i], def_face->font->props[i]))
5106 {
5107 Lisp_Object s1, s2;
5108
5109 if (i < FONT_FOUNDRY_INDEX || i > FONT_REGISTRY_INDEX
5110 || face->font->driver->case_sensitive)
5111 return 1;
5112 s1 = SYMBOL_NAME (face->font->props[i]);
5113 s2 = SYMBOL_NAME (def_face->font->props[i]);
5114 if (! EQ (Fcompare_strings (s1, make_number (0), Qnil,
5115 s2, make_number (0), Qnil, Qt), Qt))
5116 return 1;
5117 }
5118 return 0;
5119 }
5120
5121 /* Everything checks out, this face is supported. */
5122 return 1;
5123 }
5124
5125 #endif /* HAVE_WINDOW_SYSTEM */
5126
5127 /* Return non-zero if all the face attributes in ATTRS are supported
5128 on the tty frame F.
5129
5130 The definition of `supported' is somewhat heuristic, but basically means
5131 that a face containing all the attributes in ATTRS, when merged
5132 with the default face for display, can be represented in a way that's
5133
5134 \(1) different in appearance than the default face, and
5135 \(2) `close in spirit' to what the attributes specify, if not exact.
5136
5137 Point (2) implies that a `:weight black' attribute will be satisfied
5138 by any terminal that can display bold, and a `:foreground "yellow"' as
5139 long as the terminal can display a yellowish color, but `:slant italic'
5140 will _not_ be satisfied by the tty display code's automatic
5141 substitution of a `dim' face for italic. */
5142
5143 static int
5144 tty_supports_face_attributes_p (f, attrs, def_face)
5145 struct frame *f;
5146 Lisp_Object *attrs;
5147 struct face *def_face;
5148 {
5149 int weight;
5150 Lisp_Object val, fg, bg;
5151 XColor fg_tty_color, fg_std_color;
5152 XColor bg_tty_color, bg_std_color;
5153 unsigned test_caps = 0;
5154 Lisp_Object *def_attrs = def_face->lface;
5155
5156
5157 /* First check some easy-to-check stuff; ttys support none of the
5158 following attributes, so we can just return false if any are requested
5159 (even if `nominal' values are specified, we should still return false,
5160 as that will be the same value that the default face uses). We
5161 consider :slant unsupportable on ttys, even though the face code
5162 actually `fakes' them using a dim attribute if possible. This is
5163 because the faked result is too different from what the face
5164 specifies. */
5165 if (!UNSPECIFIEDP (attrs[LFACE_FAMILY_INDEX])
5166 || !UNSPECIFIEDP (attrs[LFACE_FOUNDRY_INDEX])
5167 || !UNSPECIFIEDP (attrs[LFACE_STIPPLE_INDEX])
5168 || !UNSPECIFIEDP (attrs[LFACE_HEIGHT_INDEX])
5169 || !UNSPECIFIEDP (attrs[LFACE_SWIDTH_INDEX])
5170 || !UNSPECIFIEDP (attrs[LFACE_OVERLINE_INDEX])
5171 || !UNSPECIFIEDP (attrs[LFACE_STRIKE_THROUGH_INDEX])
5172 || !UNSPECIFIEDP (attrs[LFACE_BOX_INDEX])
5173 || !UNSPECIFIEDP (attrs[LFACE_SLANT_INDEX]))
5174 return 0;
5175
5176
5177 /* Test for terminal `capabilities' (non-color character attributes). */
5178
5179 /* font weight (bold/dim) */
5180 weight = FONT_WEIGHT_NAME_NUMERIC (attrs[LFACE_WEIGHT_INDEX]);
5181 if (weight >= 0)
5182 {
5183 int def_weight = FONT_WEIGHT_NAME_NUMERIC (def_attrs[LFACE_WEIGHT_INDEX]);
5184
5185 if (weight > 100)
5186 {
5187 if (def_weight > 100)
5188 return 0; /* same as default */
5189 test_caps = TTY_CAP_BOLD;
5190 }
5191 else if (weight < 100)
5192 {
5193 if (def_weight < 100)
5194 return 0; /* same as default */
5195 test_caps = TTY_CAP_DIM;
5196 }
5197 else if (def_weight == 100)
5198 return 0; /* same as default */
5199 }
5200
5201 /* underlining */
5202 val = attrs[LFACE_UNDERLINE_INDEX];
5203 if (!UNSPECIFIEDP (val))
5204 {
5205 if (STRINGP (val))
5206 return 0; /* ttys can't use colored underlines */
5207 else if (face_attr_equal_p (val, def_attrs[LFACE_UNDERLINE_INDEX]))
5208 return 0; /* same as default */
5209 else
5210 test_caps |= TTY_CAP_UNDERLINE;
5211 }
5212
5213 /* inverse video */
5214 val = attrs[LFACE_INVERSE_INDEX];
5215 if (!UNSPECIFIEDP (val))
5216 {
5217 if (face_attr_equal_p (val, def_attrs[LFACE_INVERSE_INDEX]))
5218 return 0; /* same as default */
5219 else
5220 test_caps |= TTY_CAP_INVERSE;
5221 }
5222
5223
5224 /* Color testing. */
5225
5226 /* Default the color indices in FG_TTY_COLOR and BG_TTY_COLOR, since
5227 we use them when calling `tty_capable_p' below, even if the face
5228 specifies no colors. */
5229 fg_tty_color.pixel = FACE_TTY_DEFAULT_FG_COLOR;
5230 bg_tty_color.pixel = FACE_TTY_DEFAULT_BG_COLOR;
5231
5232 /* Check if foreground color is close enough. */
5233 fg = attrs[LFACE_FOREGROUND_INDEX];
5234 if (STRINGP (fg))
5235 {
5236 Lisp_Object def_fg = def_attrs[LFACE_FOREGROUND_INDEX];
5237
5238 if (face_attr_equal_p (fg, def_fg))
5239 return 0; /* same as default */
5240 else if (! tty_lookup_color (f, fg, &fg_tty_color, &fg_std_color))
5241 return 0; /* not a valid color */
5242 else if (color_distance (&fg_tty_color, &fg_std_color)
5243 > TTY_SAME_COLOR_THRESHOLD)
5244 return 0; /* displayed color is too different */
5245 else
5246 /* Make sure the color is really different than the default. */
5247 {
5248 XColor def_fg_color;
5249 if (tty_lookup_color (f, def_fg, &def_fg_color, 0)
5250 && (color_distance (&fg_tty_color, &def_fg_color)
5251 <= TTY_SAME_COLOR_THRESHOLD))
5252 return 0;
5253 }
5254 }
5255
5256 /* Check if background color is close enough. */
5257 bg = attrs[LFACE_BACKGROUND_INDEX];
5258 if (STRINGP (bg))
5259 {
5260 Lisp_Object def_bg = def_attrs[LFACE_BACKGROUND_INDEX];
5261
5262 if (face_attr_equal_p (bg, def_bg))
5263 return 0; /* same as default */
5264 else if (! tty_lookup_color (f, bg, &bg_tty_color, &bg_std_color))
5265 return 0; /* not a valid color */
5266 else if (color_distance (&bg_tty_color, &bg_std_color)
5267 > TTY_SAME_COLOR_THRESHOLD)
5268 return 0; /* displayed color is too different */
5269 else
5270 /* Make sure the color is really different than the default. */
5271 {
5272 XColor def_bg_color;
5273 if (tty_lookup_color (f, def_bg, &def_bg_color, 0)
5274 && (color_distance (&bg_tty_color, &def_bg_color)
5275 <= TTY_SAME_COLOR_THRESHOLD))
5276 return 0;
5277 }
5278 }
5279
5280 /* If both foreground and background are requested, see if the
5281 distance between them is OK. We just check to see if the distance
5282 between the tty's foreground and background is close enough to the
5283 distance between the standard foreground and background. */
5284 if (STRINGP (fg) && STRINGP (bg))
5285 {
5286 int delta_delta
5287 = (color_distance (&fg_std_color, &bg_std_color)
5288 - color_distance (&fg_tty_color, &bg_tty_color));
5289 if (delta_delta > TTY_SAME_COLOR_THRESHOLD
5290 || delta_delta < -TTY_SAME_COLOR_THRESHOLD)
5291 return 0;
5292 }
5293
5294
5295 /* See if the capabilities we selected above are supported, with the
5296 given colors. */
5297 if (test_caps != 0 &&
5298 ! tty_capable_p (FRAME_TTY (f), test_caps, fg_tty_color.pixel, bg_tty_color.pixel))
5299 return 0;
5300
5301
5302 /* Hmmm, everything checks out, this terminal must support this face. */
5303 return 1;
5304 }
5305
5306
5307 DEFUN ("display-supports-face-attributes-p",
5308 Fdisplay_supports_face_attributes_p, Sdisplay_supports_face_attributes_p,
5309 1, 2, 0,
5310 doc: /* Return non-nil if all the face attributes in ATTRIBUTES are supported.
5311 The optional argument DISPLAY can be a display name, a frame, or
5312 nil (meaning the selected frame's display).
5313
5314 The definition of `supported' is somewhat heuristic, but basically means
5315 that a face containing all the attributes in ATTRIBUTES, when merged
5316 with the default face for display, can be represented in a way that's
5317
5318 \(1) different in appearance than the default face, and
5319 \(2) `close in spirit' to what the attributes specify, if not exact.
5320
5321 Point (2) implies that a `:weight black' attribute will be satisfied by
5322 any display that can display bold, and a `:foreground \"yellow\"' as long
5323 as it can display a yellowish color, but `:slant italic' will _not_ be
5324 satisfied by the tty display code's automatic substitution of a `dim'
5325 face for italic. */)
5326 (attributes, display)
5327 Lisp_Object attributes, display;
5328 {
5329 int supports = 0, i;
5330 Lisp_Object frame;
5331 struct frame *f;
5332 struct face *def_face;
5333 Lisp_Object attrs[LFACE_VECTOR_SIZE];
5334
5335 if (noninteractive || !initialized)
5336 /* We may not be able to access low-level face information in batch
5337 mode, or before being dumped, and this function is not going to
5338 be very useful in those cases anyway, so just give up. */
5339 return Qnil;
5340
5341 if (NILP (display))
5342 frame = selected_frame;
5343 else if (FRAMEP (display))
5344 frame = display;
5345 else
5346 {
5347 /* Find any frame on DISPLAY. */
5348 Lisp_Object fl_tail;
5349
5350 frame = Qnil;
5351 for (fl_tail = Vframe_list; CONSP (fl_tail); fl_tail = XCDR (fl_tail))
5352 {
5353 frame = XCAR (fl_tail);
5354 if (!NILP (Fequal (Fcdr (Fassq (Qdisplay,
5355 XFRAME (frame)->param_alist)),
5356 display)))
5357 break;
5358 }
5359 }
5360
5361 CHECK_LIVE_FRAME (frame);
5362 f = XFRAME (frame);
5363
5364 for (i = 0; i < LFACE_VECTOR_SIZE; i++)
5365 attrs[i] = Qunspecified;
5366 merge_face_ref (f, attributes, attrs, 1, 0);
5367
5368 def_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
5369 if (def_face == NULL)
5370 {
5371 if (! realize_basic_faces (f))
5372 error ("Cannot realize default face");
5373 def_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
5374 if (def_face == NULL)
5375 abort (); /* realize_basic_faces must have set it up */
5376 }
5377
5378 /* Dispatch to the appropriate handler. */
5379 if (FRAME_TERMCAP_P (f) || FRAME_MSDOS_P (f))
5380 supports = tty_supports_face_attributes_p (f, attrs, def_face);
5381 #ifdef HAVE_WINDOW_SYSTEM
5382 else
5383 supports = x_supports_face_attributes_p (f, attrs, def_face);
5384 #endif
5385
5386 return supports ? Qt : Qnil;
5387 }
5388
5389 \f
5390 /***********************************************************************
5391 Font selection
5392 ***********************************************************************/
5393
5394 DEFUN ("internal-set-font-selection-order",
5395 Finternal_set_font_selection_order,
5396 Sinternal_set_font_selection_order, 1, 1, 0,
5397 doc: /* Set font selection order for face font selection to ORDER.
5398 ORDER must be a list of length 4 containing the symbols `:width',
5399 `:height', `:weight', and `:slant'. Face attributes appearing
5400 first in ORDER are matched first, e.g. if `:height' appears before
5401 `:weight' in ORDER, font selection first tries to find a font with
5402 a suitable height, and then tries to match the font weight.
5403 Value is ORDER. */)
5404 (order)
5405 Lisp_Object order;
5406 {
5407 Lisp_Object list;
5408 int i;
5409 int indices[DIM (font_sort_order)];
5410
5411 CHECK_LIST (order);
5412 bzero (indices, sizeof indices);
5413 i = 0;
5414
5415 for (list = order;
5416 CONSP (list) && i < DIM (indices);
5417 list = XCDR (list), ++i)
5418 {
5419 Lisp_Object attr = XCAR (list);
5420 int xlfd;
5421
5422 if (EQ (attr, QCwidth))
5423 xlfd = XLFD_SWIDTH;
5424 else if (EQ (attr, QCheight))
5425 xlfd = XLFD_POINT_SIZE;
5426 else if (EQ (attr, QCweight))
5427 xlfd = XLFD_WEIGHT;
5428 else if (EQ (attr, QCslant))
5429 xlfd = XLFD_SLANT;
5430 else
5431 break;
5432
5433 if (indices[i] != 0)
5434 break;
5435 indices[i] = xlfd;
5436 }
5437
5438 if (!NILP (list) || i != DIM (indices))
5439 signal_error ("Invalid font sort order", order);
5440 for (i = 0; i < DIM (font_sort_order); ++i)
5441 if (indices[i] == 0)
5442 signal_error ("Invalid font sort order", order);
5443
5444 if (bcmp (indices, font_sort_order, sizeof indices) != 0)
5445 {
5446 bcopy (indices, font_sort_order, sizeof font_sort_order);
5447 free_all_realized_faces (Qnil);
5448 }
5449
5450 font_update_sort_order (font_sort_order);
5451
5452 return Qnil;
5453 }
5454
5455
5456 DEFUN ("internal-set-alternative-font-family-alist",
5457 Finternal_set_alternative_font_family_alist,
5458 Sinternal_set_alternative_font_family_alist, 1, 1, 0,
5459 doc: /* Define alternative font families to try in face font selection.
5460 ALIST is an alist of (FAMILY ALTERNATIVE1 ALTERNATIVE2 ...) entries.
5461 Each ALTERNATIVE is tried in order if no fonts of font family FAMILY can
5462 be found. Value is ALIST. */)
5463 (alist)
5464 Lisp_Object alist;
5465 {
5466 Lisp_Object tail, tail2;
5467
5468 CHECK_LIST (alist);
5469 alist = Fcopy_sequence (alist);
5470 for (tail = alist; CONSP (tail); tail = XCDR (tail))
5471 for (tail2 = XCAR (tail); CONSP (tail2); tail2 = XCDR (tail2))
5472 XSETCAR (tail2, Fintern (XCAR (tail2), Qnil));
5473 Vface_alternative_font_family_alist = alist;
5474 free_all_realized_faces (Qnil);
5475 return alist;
5476 }
5477
5478
5479 DEFUN ("internal-set-alternative-font-registry-alist",
5480 Finternal_set_alternative_font_registry_alist,
5481 Sinternal_set_alternative_font_registry_alist, 1, 1, 0,
5482 doc: /* Define alternative font registries to try in face font selection.
5483 ALIST is an alist of (REGISTRY ALTERNATIVE1 ALTERNATIVE2 ...) entries.
5484 Each ALTERNATIVE is tried in order if no fonts of font registry REGISTRY can
5485 be found. Value is ALIST. */)
5486 (alist)
5487 Lisp_Object alist;
5488 {
5489 Lisp_Object tail, tail2;
5490
5491 CHECK_LIST (alist);
5492 alist = Fcopy_sequence (alist);
5493 for (tail = alist; CONSP (tail); tail = XCDR (tail))
5494 for (tail2 = XCAR (tail); CONSP (tail2); tail2 = XCDR (tail2))
5495 XSETCAR (tail2, Fdowncase (XCAR (tail2)));
5496 Vface_alternative_font_registry_alist = alist;
5497 free_all_realized_faces (Qnil);
5498 return alist;
5499 }
5500
5501
5502 #ifdef HAVE_WINDOW_SYSTEM
5503
5504 /* Ignore the difference of font point size less than this value. */
5505
5506 #define FONT_POINT_SIZE_QUANTUM 5
5507
5508 /* Return the fontset id of the base fontset name or alias name given
5509 by the fontset attribute of ATTRS. Value is -1 if the fontset
5510 attribute of ATTRS doesn't name a fontset. */
5511
5512 static int
5513 face_fontset (attrs)
5514 Lisp_Object *attrs;
5515 {
5516 Lisp_Object name;
5517
5518 name = attrs[LFACE_FONTSET_INDEX];
5519 if (!STRINGP (name))
5520 return -1;
5521 return fs_query_fontset (name, 0);
5522 }
5523
5524 #endif /* HAVE_WINDOW_SYSTEM */
5525
5526
5527 \f
5528 /***********************************************************************
5529 Face Realization
5530 ***********************************************************************/
5531
5532 /* Realize basic faces on frame F. Value is zero if frame parameters
5533 of F don't contain enough information needed to realize the default
5534 face. */
5535
5536 static int
5537 realize_basic_faces (f)
5538 struct frame *f;
5539 {
5540 int success_p = 0;
5541 int count = SPECPDL_INDEX ();
5542
5543 /* Block input here so that we won't be surprised by an X expose
5544 event, for instance, without having the faces set up. */
5545 BLOCK_INPUT;
5546 specbind (Qscalable_fonts_allowed, Qt);
5547
5548 if (realize_default_face (f))
5549 {
5550 realize_named_face (f, Qmode_line, MODE_LINE_FACE_ID);
5551 realize_named_face (f, Qmode_line_inactive, MODE_LINE_INACTIVE_FACE_ID);
5552 realize_named_face (f, Qtool_bar, TOOL_BAR_FACE_ID);
5553 realize_named_face (f, Qfringe, FRINGE_FACE_ID);
5554 realize_named_face (f, Qheader_line, HEADER_LINE_FACE_ID);
5555 realize_named_face (f, Qscroll_bar, SCROLL_BAR_FACE_ID);
5556 realize_named_face (f, Qborder, BORDER_FACE_ID);
5557 realize_named_face (f, Qcursor, CURSOR_FACE_ID);
5558 realize_named_face (f, Qmouse, MOUSE_FACE_ID);
5559 realize_named_face (f, Qmenu, MENU_FACE_ID);
5560 realize_named_face (f, Qvertical_border, VERTICAL_BORDER_FACE_ID);
5561
5562 /* Reflect changes in the `menu' face in menu bars. */
5563 if (FRAME_FACE_CACHE (f)->menu_face_changed_p)
5564 {
5565 FRAME_FACE_CACHE (f)->menu_face_changed_p = 0;
5566 #ifdef USE_X_TOOLKIT
5567 if (FRAME_WINDOW_P (f))
5568 x_update_menu_appearance (f);
5569 #endif
5570 }
5571
5572 success_p = 1;
5573 }
5574
5575 unbind_to (count, Qnil);
5576 UNBLOCK_INPUT;
5577 return success_p;
5578 }
5579
5580
5581 /* Realize the default face on frame F. If the face is not fully
5582 specified, make it fully-specified. Attributes of the default face
5583 that are not explicitly specified are taken from frame parameters. */
5584
5585 static int
5586 realize_default_face (f)
5587 struct frame *f;
5588 {
5589 struct face_cache *c = FRAME_FACE_CACHE (f);
5590 Lisp_Object lface;
5591 Lisp_Object attrs[LFACE_VECTOR_SIZE];
5592 struct face *face;
5593
5594 /* If the `default' face is not yet known, create it. */
5595 lface = lface_from_face_name (f, Qdefault, 0);
5596 if (NILP (lface))
5597 {
5598 Lisp_Object frame;
5599 XSETFRAME (frame, f);
5600 lface = Finternal_make_lisp_face (Qdefault, frame);
5601 }
5602
5603 #ifdef HAVE_WINDOW_SYSTEM
5604 if (FRAME_WINDOW_P (f))
5605 {
5606 Lisp_Object font_object;
5607
5608 XSETFONT (font_object, FRAME_FONT (f));
5609 set_lface_from_font (f, lface, font_object, f->default_face_done_p);
5610 LFACE_FONTSET (lface) = fontset_name (FRAME_FONTSET (f));
5611 f->default_face_done_p = 1;
5612 }
5613 #endif /* HAVE_WINDOW_SYSTEM */
5614
5615 if (!FRAME_WINDOW_P (f))
5616 {
5617 LFACE_FAMILY (lface) = build_string ("default");
5618 LFACE_FOUNDRY (lface) = LFACE_FAMILY (lface);
5619 LFACE_SWIDTH (lface) = Qnormal;
5620 LFACE_HEIGHT (lface) = make_number (1);
5621 if (UNSPECIFIEDP (LFACE_WEIGHT (lface)))
5622 LFACE_WEIGHT (lface) = Qnormal;
5623 if (UNSPECIFIEDP (LFACE_SLANT (lface)))
5624 LFACE_SLANT (lface) = Qnormal;
5625 if (UNSPECIFIEDP (LFACE_FONTSET (lface)))
5626 LFACE_FONTSET (lface) = Qnil;
5627 }
5628
5629 if (UNSPECIFIEDP (LFACE_UNDERLINE (lface)))
5630 LFACE_UNDERLINE (lface) = Qnil;
5631
5632 if (UNSPECIFIEDP (LFACE_OVERLINE (lface)))
5633 LFACE_OVERLINE (lface) = Qnil;
5634
5635 if (UNSPECIFIEDP (LFACE_STRIKE_THROUGH (lface)))
5636 LFACE_STRIKE_THROUGH (lface) = Qnil;
5637
5638 if (UNSPECIFIEDP (LFACE_BOX (lface)))
5639 LFACE_BOX (lface) = Qnil;
5640
5641 if (UNSPECIFIEDP (LFACE_INVERSE (lface)))
5642 LFACE_INVERSE (lface) = Qnil;
5643
5644 if (UNSPECIFIEDP (LFACE_FOREGROUND (lface)))
5645 {
5646 /* This function is called so early that colors are not yet
5647 set in the frame parameter list. */
5648 Lisp_Object color = Fassq (Qforeground_color, f->param_alist);
5649
5650 if (CONSP (color) && STRINGP (XCDR (color)))
5651 LFACE_FOREGROUND (lface) = XCDR (color);
5652 else if (FRAME_WINDOW_P (f))
5653 return 0;
5654 else if (FRAME_INITIAL_P (f) || FRAME_TERMCAP_P (f) || FRAME_MSDOS_P (f))
5655 LFACE_FOREGROUND (lface) = build_string (unspecified_fg);
5656 else
5657 abort ();
5658 }
5659
5660 if (UNSPECIFIEDP (LFACE_BACKGROUND (lface)))
5661 {
5662 /* This function is called so early that colors are not yet
5663 set in the frame parameter list. */
5664 Lisp_Object color = Fassq (Qbackground_color, f->param_alist);
5665 if (CONSP (color) && STRINGP (XCDR (color)))
5666 LFACE_BACKGROUND (lface) = XCDR (color);
5667 else if (FRAME_WINDOW_P (f))
5668 return 0;
5669 else if (FRAME_INITIAL_P (f) || FRAME_TERMCAP_P (f) || FRAME_MSDOS_P (f))
5670 LFACE_BACKGROUND (lface) = build_string (unspecified_bg);
5671 else
5672 abort ();
5673 }
5674
5675 if (UNSPECIFIEDP (LFACE_STIPPLE (lface)))
5676 LFACE_STIPPLE (lface) = Qnil;
5677
5678 /* Realize the face; it must be fully-specified now. */
5679 xassert (lface_fully_specified_p (XVECTOR (lface)->contents));
5680 check_lface (lface);
5681 bcopy (XVECTOR (lface)->contents, attrs, sizeof attrs);
5682 face = realize_face (c, attrs, DEFAULT_FACE_ID);
5683
5684 #ifdef HAVE_WINDOW_SYSTEM
5685 #ifdef HAVE_X_WINDOWS
5686 if (FRAME_X_P (f) && face->font != FRAME_FONT (f))
5687 {
5688 /* This can happen when making a frame on a display that does
5689 not support the default font. */
5690 if (!face->font)
5691 return 0;
5692
5693 /* Otherwise, the font specified for the frame was not
5694 acceptable as a font for the default face (perhaps because
5695 auto-scaled fonts are rejected), so we must adjust the frame
5696 font. */
5697 x_set_font (f, LFACE_FONT (lface), Qnil);
5698 }
5699 #endif /* HAVE_X_WINDOWS */
5700 #endif /* HAVE_WINDOW_SYSTEM */
5701 return 1;
5702 }
5703
5704
5705 /* Realize basic faces other than the default face in face cache C.
5706 SYMBOL is the face name, ID is the face id the realized face must
5707 have. The default face must have been realized already. */
5708
5709 static void
5710 realize_named_face (f, symbol, id)
5711 struct frame *f;
5712 Lisp_Object symbol;
5713 int id;
5714 {
5715 struct face_cache *c = FRAME_FACE_CACHE (f);
5716 Lisp_Object lface = lface_from_face_name (f, symbol, 0);
5717 Lisp_Object attrs[LFACE_VECTOR_SIZE];
5718 Lisp_Object symbol_attrs[LFACE_VECTOR_SIZE];
5719 struct face *new_face;
5720
5721 /* The default face must exist and be fully specified. */
5722 get_lface_attributes_no_remap (f, Qdefault, attrs, 1);
5723 check_lface_attrs (attrs);
5724 xassert (lface_fully_specified_p (attrs));
5725
5726 /* If SYMBOL isn't know as a face, create it. */
5727 if (NILP (lface))
5728 {
5729 Lisp_Object frame;
5730 XSETFRAME (frame, f);
5731 lface = Finternal_make_lisp_face (symbol, frame);
5732 }
5733
5734 /* Merge SYMBOL's face with the default face. */
5735 get_lface_attributes_no_remap (f, symbol, symbol_attrs, 1);
5736 merge_face_vectors (f, symbol_attrs, attrs, 0);
5737
5738 /* Realize the face. */
5739 new_face = realize_face (c, attrs, id);
5740 }
5741
5742
5743 /* Realize the fully-specified face with attributes ATTRS in face
5744 cache CACHE for ASCII characters. If FORMER_FACE_ID is
5745 non-negative, it is an ID of face to remove before caching the new
5746 face. Value is a pointer to the newly created realized face. */
5747
5748 static struct face *
5749 realize_face (cache, attrs, former_face_id)
5750 struct face_cache *cache;
5751 Lisp_Object *attrs;
5752 int former_face_id;
5753 {
5754 struct face *face;
5755
5756 /* LFACE must be fully specified. */
5757 xassert (cache != NULL);
5758 check_lface_attrs (attrs);
5759
5760 if (former_face_id >= 0 && cache->used > former_face_id)
5761 {
5762 /* Remove the former face. */
5763 struct face *former_face = cache->faces_by_id[former_face_id];
5764 uncache_face (cache, former_face);
5765 free_realized_face (cache->f, former_face);
5766 }
5767
5768 if (FRAME_WINDOW_P (cache->f))
5769 face = realize_x_face (cache, attrs);
5770 else if (FRAME_TERMCAP_P (cache->f) || FRAME_MSDOS_P (cache->f))
5771 face = realize_tty_face (cache, attrs);
5772 else if (FRAME_INITIAL_P (cache->f))
5773 {
5774 /* Create a dummy face. */
5775 face = make_realized_face (attrs);
5776 }
5777 else
5778 abort ();
5779
5780 /* Insert the new face. */
5781 cache_face (cache, face, lface_hash (attrs));
5782 return face;
5783 }
5784
5785
5786 #ifdef HAVE_WINDOW_SYSTEM
5787 /* Realize the fully-specified face that uses FONT-OBJECT and has the
5788 same attributes as BASE_FACE except for the font on frame F.
5789 FONT-OBJECT may be nil, in which case, realized a face of
5790 no-font. */
5791
5792 static struct face *
5793 realize_non_ascii_face (f, font_object, base_face)
5794 struct frame *f;
5795 Lisp_Object font_object;
5796 struct face *base_face;
5797 {
5798 struct face_cache *cache = FRAME_FACE_CACHE (f);
5799 struct face *face;
5800
5801 face = (struct face *) xmalloc (sizeof *face);
5802 *face = *base_face;
5803 face->gc = 0;
5804 face->extra = NULL;
5805 face->overstrike
5806 = (! NILP (font_object)
5807 && FONT_WEIGHT_NAME_NUMERIC (face->lface[LFACE_WEIGHT_INDEX]) > 100
5808 && FONT_WEIGHT_NUMERIC (font_object) <= 100);
5809
5810 /* Don't try to free the colors copied bitwise from BASE_FACE. */
5811 face->colors_copied_bitwise_p = 1;
5812 face->font = NILP (font_object) ? NULL : XFONT_OBJECT (font_object);
5813 face->gc = 0;
5814
5815 cache_face (cache, face, face->hash);
5816
5817 return face;
5818 }
5819 #endif /* HAVE_WINDOW_SYSTEM */
5820
5821
5822 /* Realize the fully-specified face with attributes ATTRS in face
5823 cache CACHE for ASCII characters. Do it for X frame CACHE->f. If
5824 the new face doesn't share font with the default face, a fontname
5825 is allocated from the heap and set in `font_name' of the new face,
5826 but it is not yet loaded here. Value is a pointer to the newly
5827 created realized face. */
5828
5829 static struct face *
5830 realize_x_face (cache, attrs)
5831 struct face_cache *cache;
5832 Lisp_Object *attrs;
5833 {
5834 struct face *face = NULL;
5835 #ifdef HAVE_WINDOW_SYSTEM
5836 struct face *default_face;
5837 struct frame *f;
5838 Lisp_Object stipple, overline, strike_through, box;
5839
5840 xassert (FRAME_WINDOW_P (cache->f));
5841
5842 /* Allocate a new realized face. */
5843 face = make_realized_face (attrs);
5844 face->ascii_face = face;
5845
5846 f = cache->f;
5847
5848 /* Determine the font to use. Most of the time, the font will be
5849 the same as the font of the default face, so try that first. */
5850 default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
5851 if (default_face
5852 && lface_same_font_attributes_p (default_face->lface, attrs))
5853 {
5854 face->font = default_face->font;
5855 face->fontset
5856 = make_fontset_for_ascii_face (f, default_face->fontset, face);
5857 }
5858 else
5859 {
5860 /* If the face attribute ATTRS specifies a fontset, use it as
5861 the base of a new realized fontset. Otherwise, use the same
5862 base fontset as of the default face. The base determines
5863 registry and encoding of a font. It may also determine
5864 foundry and family. The other fields of font name pattern
5865 are constructed from ATTRS. */
5866 int fontset = face_fontset (attrs);
5867
5868 /* If we are realizing the default face, ATTRS should specify a
5869 fontset. In other words, if FONTSET is -1, we are not
5870 realizing the default face, thus the default face should have
5871 already been realized. */
5872 if (fontset == -1)
5873 fontset = default_face->fontset;
5874 if (fontset == -1)
5875 abort ();
5876 if (! FONT_OBJECT_P (attrs[LFACE_FONT_INDEX]))
5877 attrs[LFACE_FONT_INDEX]
5878 = font_load_for_lface (f, attrs, attrs[LFACE_FONT_INDEX]);
5879 if (FONT_OBJECT_P (attrs[LFACE_FONT_INDEX]))
5880 {
5881 face->font = XFONT_OBJECT (attrs[LFACE_FONT_INDEX]);
5882 face->fontset = make_fontset_for_ascii_face (f, fontset, face);
5883 }
5884 else
5885 {
5886 face->font = NULL;
5887 face->fontset = -1;
5888 }
5889 }
5890
5891 if (face->font
5892 && FONT_WEIGHT_NAME_NUMERIC (attrs[LFACE_WEIGHT_INDEX]) > 100
5893 && FONT_WEIGHT_NUMERIC (attrs[LFACE_FONT_INDEX]) <= 100)
5894 face->overstrike = 1;
5895
5896 /* Load colors, and set remaining attributes. */
5897
5898 load_face_colors (f, face, attrs);
5899
5900 /* Set up box. */
5901 box = attrs[LFACE_BOX_INDEX];
5902 if (STRINGP (box))
5903 {
5904 /* A simple box of line width 1 drawn in color given by
5905 the string. */
5906 face->box_color = load_color (f, face, attrs[LFACE_BOX_INDEX],
5907 LFACE_BOX_INDEX);
5908 face->box = FACE_SIMPLE_BOX;
5909 face->box_line_width = 1;
5910 }
5911 else if (INTEGERP (box))
5912 {
5913 /* Simple box of specified line width in foreground color of the
5914 face. */
5915 xassert (XINT (box) != 0);
5916 face->box = FACE_SIMPLE_BOX;
5917 face->box_line_width = XINT (box);
5918 face->box_color = face->foreground;
5919 face->box_color_defaulted_p = 1;
5920 }
5921 else if (CONSP (box))
5922 {
5923 /* `(:width WIDTH :color COLOR :shadow SHADOW)'. SHADOW
5924 being one of `raised' or `sunken'. */
5925 face->box = FACE_SIMPLE_BOX;
5926 face->box_color = face->foreground;
5927 face->box_color_defaulted_p = 1;
5928 face->box_line_width = 1;
5929
5930 while (CONSP (box))
5931 {
5932 Lisp_Object keyword, value;
5933
5934 keyword = XCAR (box);
5935 box = XCDR (box);
5936
5937 if (!CONSP (box))
5938 break;
5939 value = XCAR (box);
5940 box = XCDR (box);
5941
5942 if (EQ (keyword, QCline_width))
5943 {
5944 if (INTEGERP (value) && XINT (value) != 0)
5945 face->box_line_width = XINT (value);
5946 }
5947 else if (EQ (keyword, QCcolor))
5948 {
5949 if (STRINGP (value))
5950 {
5951 face->box_color = load_color (f, face, value,
5952 LFACE_BOX_INDEX);
5953 face->use_box_color_for_shadows_p = 1;
5954 }
5955 }
5956 else if (EQ (keyword, QCstyle))
5957 {
5958 if (EQ (value, Qreleased_button))
5959 face->box = FACE_RAISED_BOX;
5960 else if (EQ (value, Qpressed_button))
5961 face->box = FACE_SUNKEN_BOX;
5962 }
5963 }
5964 }
5965
5966 /* Text underline, overline, strike-through. */
5967
5968 if (EQ (attrs[LFACE_UNDERLINE_INDEX], Qt))
5969 {
5970 /* Use default color (same as foreground color). */
5971 face->underline_p = 1;
5972 face->underline_defaulted_p = 1;
5973 face->underline_color = 0;
5974 }
5975 else if (STRINGP (attrs[LFACE_UNDERLINE_INDEX]))
5976 {
5977 /* Use specified color. */
5978 face->underline_p = 1;
5979 face->underline_defaulted_p = 0;
5980 face->underline_color
5981 = load_color (f, face, attrs[LFACE_UNDERLINE_INDEX],
5982 LFACE_UNDERLINE_INDEX);
5983 }
5984 else if (NILP (attrs[LFACE_UNDERLINE_INDEX]))
5985 {
5986 face->underline_p = 0;
5987 face->underline_defaulted_p = 0;
5988 face->underline_color = 0;
5989 }
5990
5991 overline = attrs[LFACE_OVERLINE_INDEX];
5992 if (STRINGP (overline))
5993 {
5994 face->overline_color
5995 = load_color (f, face, attrs[LFACE_OVERLINE_INDEX],
5996 LFACE_OVERLINE_INDEX);
5997 face->overline_p = 1;
5998 }
5999 else if (EQ (overline, Qt))
6000 {
6001 face->overline_color = face->foreground;
6002 face->overline_color_defaulted_p = 1;
6003 face->overline_p = 1;
6004 }
6005
6006 strike_through = attrs[LFACE_STRIKE_THROUGH_INDEX];
6007 if (STRINGP (strike_through))
6008 {
6009 face->strike_through_color
6010 = load_color (f, face, attrs[LFACE_STRIKE_THROUGH_INDEX],
6011 LFACE_STRIKE_THROUGH_INDEX);
6012 face->strike_through_p = 1;
6013 }
6014 else if (EQ (strike_through, Qt))
6015 {
6016 face->strike_through_color = face->foreground;
6017 face->strike_through_color_defaulted_p = 1;
6018 face->strike_through_p = 1;
6019 }
6020
6021 stipple = attrs[LFACE_STIPPLE_INDEX];
6022 if (!NILP (stipple))
6023 face->stipple = load_pixmap (f, stipple, &face->pixmap_w, &face->pixmap_h);
6024 #endif /* HAVE_WINDOW_SYSTEM */
6025
6026 return face;
6027 }
6028
6029
6030 /* Map a specified color of face FACE on frame F to a tty color index.
6031 IDX is either LFACE_FOREGROUND_INDEX or LFACE_BACKGROUND_INDEX, and
6032 specifies which color to map. Set *DEFAULTED to 1 if mapping to the
6033 default foreground/background colors. */
6034
6035 static void
6036 map_tty_color (f, face, idx, defaulted)
6037 struct frame *f;
6038 struct face *face;
6039 enum lface_attribute_index idx;
6040 int *defaulted;
6041 {
6042 Lisp_Object frame, color, def;
6043 int foreground_p = idx == LFACE_FOREGROUND_INDEX;
6044 unsigned long default_pixel, default_other_pixel, pixel;
6045
6046 xassert (idx == LFACE_FOREGROUND_INDEX || idx == LFACE_BACKGROUND_INDEX);
6047
6048 if (foreground_p)
6049 {
6050 pixel = default_pixel = FACE_TTY_DEFAULT_FG_COLOR;
6051 default_other_pixel = FACE_TTY_DEFAULT_BG_COLOR;
6052 }
6053 else
6054 {
6055 pixel = default_pixel = FACE_TTY_DEFAULT_BG_COLOR;
6056 default_other_pixel = FACE_TTY_DEFAULT_FG_COLOR;
6057 }
6058
6059 XSETFRAME (frame, f);
6060 color = face->lface[idx];
6061
6062 if (STRINGP (color)
6063 && SCHARS (color)
6064 && CONSP (Vtty_defined_color_alist)
6065 && (def = assq_no_quit (color, call1 (Qtty_color_alist, frame)),
6066 CONSP (def)))
6067 {
6068 /* Associations in tty-defined-color-alist are of the form
6069 (NAME INDEX R G B). We need the INDEX part. */
6070 pixel = XINT (XCAR (XCDR (def)));
6071 }
6072
6073 if (pixel == default_pixel && STRINGP (color))
6074 {
6075 pixel = load_color (f, face, color, idx);
6076
6077 #ifdef MSDOS
6078 /* If the foreground of the default face is the default color,
6079 use the foreground color defined by the frame. */
6080 if (FRAME_MSDOS_P (f))
6081 {
6082 if (pixel == default_pixel
6083 || pixel == FACE_TTY_DEFAULT_COLOR)
6084 {
6085 if (foreground_p)
6086 pixel = FRAME_FOREGROUND_PIXEL (f);
6087 else
6088 pixel = FRAME_BACKGROUND_PIXEL (f);
6089 face->lface[idx] = tty_color_name (f, pixel);
6090 *defaulted = 1;
6091 }
6092 else if (pixel == default_other_pixel)
6093 {
6094 if (foreground_p)
6095 pixel = FRAME_BACKGROUND_PIXEL (f);
6096 else
6097 pixel = FRAME_FOREGROUND_PIXEL (f);
6098 face->lface[idx] = tty_color_name (f, pixel);
6099 *defaulted = 1;
6100 }
6101 }
6102 #endif /* MSDOS */
6103 }
6104
6105 if (foreground_p)
6106 face->foreground = pixel;
6107 else
6108 face->background = pixel;
6109 }
6110
6111
6112 /* Realize the fully-specified face with attributes ATTRS in face
6113 cache CACHE for ASCII characters. Do it for TTY frame CACHE->f.
6114 Value is a pointer to the newly created realized face. */
6115
6116 static struct face *
6117 realize_tty_face (cache, attrs)
6118 struct face_cache *cache;
6119 Lisp_Object *attrs;
6120 {
6121 struct face *face;
6122 int weight, slant;
6123 int face_colors_defaulted = 0;
6124 struct frame *f = cache->f;
6125
6126 /* Frame must be a termcap frame. */
6127 xassert (FRAME_TERMCAP_P (cache->f) || FRAME_MSDOS_P (cache->f));
6128
6129 /* Allocate a new realized face. */
6130 face = make_realized_face (attrs);
6131 #if 0
6132 face->font_name = FRAME_MSDOS_P (cache->f) ? "ms-dos" : "tty";
6133 #endif
6134
6135 /* Map face attributes to TTY appearances. We map slant to
6136 dimmed text because we want italic text to appear differently
6137 and because dimmed text is probably used infrequently. */
6138 weight = FONT_WEIGHT_NAME_NUMERIC (attrs[LFACE_WEIGHT_INDEX]);
6139 slant = FONT_SLANT_NAME_NUMERIC (attrs[LFACE_SLANT_INDEX]);
6140 if (weight > 100)
6141 face->tty_bold_p = 1;
6142 if (weight < 100 || slant != 100)
6143 face->tty_dim_p = 1;
6144 if (!NILP (attrs[LFACE_UNDERLINE_INDEX]))
6145 face->tty_underline_p = 1;
6146 if (!NILP (attrs[LFACE_INVERSE_INDEX]))
6147 face->tty_reverse_p = 1;
6148
6149 /* Map color names to color indices. */
6150 map_tty_color (f, face, LFACE_FOREGROUND_INDEX, &face_colors_defaulted);
6151 map_tty_color (f, face, LFACE_BACKGROUND_INDEX, &face_colors_defaulted);
6152
6153 /* Swap colors if face is inverse-video. If the colors are taken
6154 from the frame colors, they are already inverted, since the
6155 frame-creation function calls x-handle-reverse-video. */
6156 if (face->tty_reverse_p && !face_colors_defaulted)
6157 {
6158 unsigned long tem = face->foreground;
6159 face->foreground = face->background;
6160 face->background = tem;
6161 }
6162
6163 if (tty_suppress_bold_inverse_default_colors_p
6164 && face->tty_bold_p
6165 && face->background == FACE_TTY_DEFAULT_FG_COLOR
6166 && face->foreground == FACE_TTY_DEFAULT_BG_COLOR)
6167 face->tty_bold_p = 0;
6168
6169 return face;
6170 }
6171
6172
6173 DEFUN ("tty-suppress-bold-inverse-default-colors",
6174 Ftty_suppress_bold_inverse_default_colors,
6175 Stty_suppress_bold_inverse_default_colors, 1, 1, 0,
6176 doc: /* Suppress/allow boldness of faces with inverse default colors.
6177 SUPPRESS non-nil means suppress it.
6178 This affects bold faces on TTYs whose foreground is the default background
6179 color of the display and whose background is the default foreground color.
6180 For such faces, the bold face attribute is ignored if this variable
6181 is non-nil. */)
6182 (suppress)
6183 Lisp_Object suppress;
6184 {
6185 tty_suppress_bold_inverse_default_colors_p = !NILP (suppress);
6186 ++face_change_count;
6187 return suppress;
6188 }
6189
6190
6191 \f
6192 /***********************************************************************
6193 Computing Faces
6194 ***********************************************************************/
6195
6196 /* Return the ID of the face to use to display character CH with face
6197 property PROP on frame F in current_buffer. */
6198
6199 int
6200 compute_char_face (f, ch, prop)
6201 struct frame *f;
6202 int ch;
6203 Lisp_Object prop;
6204 {
6205 int face_id;
6206
6207 if (NILP (current_buffer->enable_multibyte_characters))
6208 ch = 0;
6209
6210 if (NILP (prop))
6211 {
6212 struct face *face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
6213 face_id = FACE_FOR_CHAR (f, face, ch, -1, Qnil);
6214 }
6215 else
6216 {
6217 Lisp_Object attrs[LFACE_VECTOR_SIZE];
6218 struct face *default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
6219 bcopy (default_face->lface, attrs, sizeof attrs);
6220 merge_face_ref (f, prop, attrs, 1, 0);
6221 face_id = lookup_face (f, attrs);
6222 }
6223
6224 return face_id;
6225 }
6226
6227 /* Return the face ID associated with buffer position POS for
6228 displaying ASCII characters. Return in *ENDPTR the position at
6229 which a different face is needed, as far as text properties and
6230 overlays are concerned. W is a window displaying current_buffer.
6231
6232 REGION_BEG, REGION_END delimit the region, so it can be
6233 highlighted.
6234
6235 LIMIT is a position not to scan beyond. That is to limit the time
6236 this function can take.
6237
6238 If MOUSE is non-zero, use the character's mouse-face, not its face.
6239
6240 The face returned is suitable for displaying ASCII characters. */
6241
6242 int
6243 face_at_buffer_position (w, pos, region_beg, region_end,
6244 endptr, limit, mouse)
6245 struct window *w;
6246 EMACS_INT pos;
6247 EMACS_INT region_beg, region_end;
6248 EMACS_INT *endptr;
6249 EMACS_INT limit;
6250 int mouse;
6251 {
6252 struct frame *f = XFRAME (w->frame);
6253 Lisp_Object attrs[LFACE_VECTOR_SIZE];
6254 Lisp_Object prop, position;
6255 int i, noverlays;
6256 Lisp_Object *overlay_vec;
6257 Lisp_Object frame;
6258 EMACS_INT endpos;
6259 Lisp_Object propname = mouse ? Qmouse_face : Qface;
6260 Lisp_Object limit1, end;
6261 struct face *default_face;
6262
6263 /* W must display the current buffer. We could write this function
6264 to use the frame and buffer of W, but right now it doesn't. */
6265 /* xassert (XBUFFER (w->buffer) == current_buffer); */
6266
6267 XSETFRAME (frame, f);
6268 XSETFASTINT (position, pos);
6269
6270 endpos = ZV;
6271 if (pos < region_beg && region_beg < endpos)
6272 endpos = region_beg;
6273
6274 /* Get the `face' or `mouse_face' text property at POS, and
6275 determine the next position at which the property changes. */
6276 prop = Fget_text_property (position, propname, w->buffer);
6277 XSETFASTINT (limit1, (limit < endpos ? limit : endpos));
6278 end = Fnext_single_property_change (position, propname, w->buffer, limit1);
6279 if (INTEGERP (end))
6280 endpos = XINT (end);
6281
6282 /* Look at properties from overlays. */
6283 {
6284 EMACS_INT next_overlay;
6285
6286 GET_OVERLAYS_AT (pos, overlay_vec, noverlays, &next_overlay, 0);
6287 if (next_overlay < endpos)
6288 endpos = next_overlay;
6289 }
6290
6291 *endptr = endpos;
6292
6293
6294 /* Perhaps remap BASE_FACE_ID to a user-specified alternative. */
6295 if (NILP (Vface_remapping_alist))
6296 default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
6297 else
6298 default_face = FACE_FROM_ID (f, lookup_basic_face (f, DEFAULT_FACE_ID));
6299
6300 /* Optimize common cases where we can use the default face. */
6301 if (noverlays == 0
6302 && NILP (prop)
6303 && !(pos >= region_beg && pos < region_end))
6304 return default_face->id;
6305
6306 /* Begin with attributes from the default face. */
6307 bcopy (default_face->lface, attrs, sizeof attrs);
6308
6309 /* Merge in attributes specified via text properties. */
6310 if (!NILP (prop))
6311 merge_face_ref (f, prop, attrs, 1, 0);
6312
6313 /* Now merge the overlay data. */
6314 noverlays = sort_overlays (overlay_vec, noverlays, w);
6315 for (i = 0; i < noverlays; i++)
6316 {
6317 Lisp_Object oend;
6318 int oendpos;
6319
6320 prop = Foverlay_get (overlay_vec[i], propname);
6321 if (!NILP (prop))
6322 merge_face_ref (f, prop, attrs, 1, 0);
6323
6324 oend = OVERLAY_END (overlay_vec[i]);
6325 oendpos = OVERLAY_POSITION (oend);
6326 if (oendpos < endpos)
6327 endpos = oendpos;
6328 }
6329
6330 /* If in the region, merge in the region face. */
6331 if (pos >= region_beg && pos < region_end)
6332 {
6333 merge_named_face (f, Qregion, attrs, 0);
6334
6335 if (region_end < endpos)
6336 endpos = region_end;
6337 }
6338
6339 *endptr = endpos;
6340
6341 /* Look up a realized face with the given face attributes,
6342 or realize a new one for ASCII characters. */
6343 return lookup_face (f, attrs);
6344 }
6345
6346 /* Return the face ID at buffer position POS for displaying ASCII
6347 characters associated with overlay strings for overlay OVERLAY.
6348
6349 Like face_at_buffer_position except for OVERLAY. Currently it
6350 simply disregards the `face' properties of all overlays. */
6351
6352 int
6353 face_for_overlay_string (w, pos, region_beg, region_end,
6354 endptr, limit, mouse, overlay)
6355 struct window *w;
6356 EMACS_INT pos;
6357 EMACS_INT region_beg, region_end;
6358 EMACS_INT *endptr;
6359 EMACS_INT limit;
6360 int mouse;
6361 Lisp_Object overlay;
6362 {
6363 struct frame *f = XFRAME (w->frame);
6364 Lisp_Object attrs[LFACE_VECTOR_SIZE];
6365 Lisp_Object prop, position;
6366 Lisp_Object frame;
6367 int endpos;
6368 Lisp_Object propname = mouse ? Qmouse_face : Qface;
6369 Lisp_Object limit1, end;
6370 struct face *default_face;
6371
6372 /* W must display the current buffer. We could write this function
6373 to use the frame and buffer of W, but right now it doesn't. */
6374 /* xassert (XBUFFER (w->buffer) == current_buffer); */
6375
6376 XSETFRAME (frame, f);
6377 XSETFASTINT (position, pos);
6378
6379 endpos = ZV;
6380 if (pos < region_beg && region_beg < endpos)
6381 endpos = region_beg;
6382
6383 /* Get the `face' or `mouse_face' text property at POS, and
6384 determine the next position at which the property changes. */
6385 prop = Fget_text_property (position, propname, w->buffer);
6386 XSETFASTINT (limit1, (limit < endpos ? limit : endpos));
6387 end = Fnext_single_property_change (position, propname, w->buffer, limit1);
6388 if (INTEGERP (end))
6389 endpos = XINT (end);
6390
6391 *endptr = endpos;
6392
6393 default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
6394
6395 /* Optimize common cases where we can use the default face. */
6396 if (NILP (prop)
6397 && !(pos >= region_beg && pos < region_end))
6398 return DEFAULT_FACE_ID;
6399
6400 /* Begin with attributes from the default face. */
6401 bcopy (default_face->lface, attrs, sizeof attrs);
6402
6403 /* Merge in attributes specified via text properties. */
6404 if (!NILP (prop))
6405 merge_face_ref (f, prop, attrs, 1, 0);
6406
6407 /* If in the region, merge in the region face. */
6408 if (pos >= region_beg && pos < region_end)
6409 {
6410 merge_named_face (f, Qregion, attrs, 0);
6411
6412 if (region_end < endpos)
6413 endpos = region_end;
6414 }
6415
6416 *endptr = endpos;
6417
6418 /* Look up a realized face with the given face attributes,
6419 or realize a new one for ASCII characters. */
6420 return lookup_face (f, attrs);
6421 }
6422
6423
6424 /* Compute the face at character position POS in Lisp string STRING on
6425 window W, for ASCII characters.
6426
6427 If STRING is an overlay string, it comes from position BUFPOS in
6428 current_buffer, otherwise BUFPOS is zero to indicate that STRING is
6429 not an overlay string. W must display the current buffer.
6430 REGION_BEG and REGION_END give the start and end positions of the
6431 region; both are -1 if no region is visible.
6432
6433 BASE_FACE_ID is the id of a face to merge with. For strings coming
6434 from overlays or the `display' property it is the face at BUFPOS.
6435
6436 If MOUSE_P is non-zero, use the character's mouse-face, not its face.
6437
6438 Set *ENDPTR to the next position where to check for faces in
6439 STRING; -1 if the face is constant from POS to the end of the
6440 string.
6441
6442 Value is the id of the face to use. The face returned is suitable
6443 for displaying ASCII characters. */
6444
6445 int
6446 face_at_string_position (w, string, pos, bufpos, region_beg,
6447 region_end, endptr, base_face_id, mouse_p)
6448 struct window *w;
6449 Lisp_Object string;
6450 EMACS_INT pos, bufpos;
6451 EMACS_INT region_beg, region_end;
6452 EMACS_INT *endptr;
6453 enum face_id base_face_id;
6454 int mouse_p;
6455 {
6456 Lisp_Object prop, position, end, limit;
6457 struct frame *f = XFRAME (WINDOW_FRAME (w));
6458 Lisp_Object attrs[LFACE_VECTOR_SIZE];
6459 struct face *base_face;
6460 int multibyte_p = STRING_MULTIBYTE (string);
6461 Lisp_Object prop_name = mouse_p ? Qmouse_face : Qface;
6462
6463 /* Get the value of the face property at the current position within
6464 STRING. Value is nil if there is no face property. */
6465 XSETFASTINT (position, pos);
6466 prop = Fget_text_property (position, prop_name, string);
6467
6468 /* Get the next position at which to check for faces. Value of end
6469 is nil if face is constant all the way to the end of the string.
6470 Otherwise it is a string position where to check faces next.
6471 Limit is the maximum position up to which to check for property
6472 changes in Fnext_single_property_change. Strings are usually
6473 short, so set the limit to the end of the string. */
6474 XSETFASTINT (limit, SCHARS (string));
6475 end = Fnext_single_property_change (position, prop_name, string, limit);
6476 if (INTEGERP (end))
6477 *endptr = XFASTINT (end);
6478 else
6479 *endptr = -1;
6480
6481 base_face = FACE_FROM_ID (f, base_face_id);
6482 xassert (base_face);
6483
6484 /* Optimize the default case that there is no face property and we
6485 are not in the region. */
6486 if (NILP (prop)
6487 && (base_face_id != DEFAULT_FACE_ID
6488 /* BUFPOS <= 0 means STRING is not an overlay string, so
6489 that the region doesn't have to be taken into account. */
6490 || bufpos <= 0
6491 || bufpos < region_beg
6492 || bufpos >= region_end)
6493 && (multibyte_p
6494 /* We can't realize faces for different charsets differently
6495 if we don't have fonts, so we can stop here if not working
6496 on a window-system frame. */
6497 || !FRAME_WINDOW_P (f)
6498 || FACE_SUITABLE_FOR_CHAR_P (base_face, 0)))
6499 return base_face->id;
6500
6501 /* Begin with attributes from the base face. */
6502 bcopy (base_face->lface, attrs, sizeof attrs);
6503
6504 /* Merge in attributes specified via text properties. */
6505 if (!NILP (prop))
6506 merge_face_ref (f, prop, attrs, 1, 0);
6507
6508 /* If in the region, merge in the region face. */
6509 if (bufpos
6510 && bufpos >= region_beg
6511 && bufpos < region_end)
6512 merge_named_face (f, Qregion, attrs, 0);
6513
6514 /* Look up a realized face with the given face attributes,
6515 or realize a new one for ASCII characters. */
6516 return lookup_face (f, attrs);
6517 }
6518
6519
6520 /* Merge a face into a realized face.
6521
6522 F is frame where faces are (to be) realized.
6523
6524 FACE_NAME is named face to merge.
6525
6526 If FACE_NAME is nil, FACE_ID is face_id of realized face to merge.
6527
6528 If FACE_NAME is t, FACE_ID is lface_id of face to merge.
6529
6530 BASE_FACE_ID is realized face to merge into.
6531
6532 Return new face id.
6533 */
6534
6535 int
6536 merge_faces (f, face_name, face_id, base_face_id)
6537 struct frame *f;
6538 Lisp_Object face_name;
6539 int face_id, base_face_id;
6540 {
6541 Lisp_Object attrs[LFACE_VECTOR_SIZE];
6542 struct face *base_face;
6543
6544 base_face = FACE_FROM_ID (f, base_face_id);
6545 if (!base_face)
6546 return base_face_id;
6547
6548 if (EQ (face_name, Qt))
6549 {
6550 if (face_id < 0 || face_id >= lface_id_to_name_size)
6551 return base_face_id;
6552 face_name = lface_id_to_name[face_id];
6553 face_id = lookup_derived_face (f, face_name, base_face_id, 1);
6554 if (face_id >= 0)
6555 return face_id;
6556 return base_face_id;
6557 }
6558
6559 /* Begin with attributes from the base face. */
6560 bcopy (base_face->lface, attrs, sizeof attrs);
6561
6562 if (!NILP (face_name))
6563 {
6564 if (!merge_named_face (f, face_name, attrs, 0))
6565 return base_face_id;
6566 }
6567 else
6568 {
6569 struct face *face;
6570 if (face_id < 0)
6571 return base_face_id;
6572 face = FACE_FROM_ID (f, face_id);
6573 if (!face)
6574 return base_face_id;
6575 merge_face_vectors (f, face->lface, attrs, 0);
6576 }
6577
6578 /* Look up a realized face with the given face attributes,
6579 or realize a new one for ASCII characters. */
6580 return lookup_face (f, attrs);
6581 }
6582
6583 \f
6584 /***********************************************************************
6585 Tests
6586 ***********************************************************************/
6587
6588 #if GLYPH_DEBUG
6589
6590 /* Print the contents of the realized face FACE to stderr. */
6591
6592 static void
6593 dump_realized_face (face)
6594 struct face *face;
6595 {
6596 fprintf (stderr, "ID: %d\n", face->id);
6597 #ifdef HAVE_X_WINDOWS
6598 fprintf (stderr, "gc: %ld\n", (long) face->gc);
6599 #endif
6600 fprintf (stderr, "foreground: 0x%lx (%s)\n",
6601 face->foreground,
6602 SDATA (face->lface[LFACE_FOREGROUND_INDEX]));
6603 fprintf (stderr, "background: 0x%lx (%s)\n",
6604 face->background,
6605 SDATA (face->lface[LFACE_BACKGROUND_INDEX]));
6606 if (face->font)
6607 fprintf (stderr, "font_name: %s (%s)\n",
6608 SDATA (face->font->props[FONT_NAME_INDEX]),
6609 SDATA (face->lface[LFACE_FAMILY_INDEX]));
6610 #ifdef HAVE_X_WINDOWS
6611 fprintf (stderr, "font = %p\n", face->font);
6612 #endif
6613 fprintf (stderr, "fontset: %d\n", face->fontset);
6614 fprintf (stderr, "underline: %d (%s)\n",
6615 face->underline_p,
6616 SDATA (Fsymbol_name (face->lface[LFACE_UNDERLINE_INDEX])));
6617 fprintf (stderr, "hash: %d\n", face->hash);
6618 }
6619
6620
6621 DEFUN ("dump-face", Fdump_face, Sdump_face, 0, 1, 0, doc: /* */)
6622 (n)
6623 Lisp_Object n;
6624 {
6625 if (NILP (n))
6626 {
6627 int i;
6628
6629 fprintf (stderr, "font selection order: ");
6630 for (i = 0; i < DIM (font_sort_order); ++i)
6631 fprintf (stderr, "%d ", font_sort_order[i]);
6632 fprintf (stderr, "\n");
6633
6634 fprintf (stderr, "alternative fonts: ");
6635 debug_print (Vface_alternative_font_family_alist);
6636 fprintf (stderr, "\n");
6637
6638 for (i = 0; i < FRAME_FACE_CACHE (SELECTED_FRAME ())->used; ++i)
6639 Fdump_face (make_number (i));
6640 }
6641 else
6642 {
6643 struct face *face;
6644 CHECK_NUMBER (n);
6645 face = FACE_FROM_ID (SELECTED_FRAME (), XINT (n));
6646 if (face == NULL)
6647 error ("Not a valid face");
6648 dump_realized_face (face);
6649 }
6650
6651 return Qnil;
6652 }
6653
6654
6655 DEFUN ("show-face-resources", Fshow_face_resources, Sshow_face_resources,
6656 0, 0, 0, doc: /* */)
6657 ()
6658 {
6659 fprintf (stderr, "number of colors = %d\n", ncolors_allocated);
6660 fprintf (stderr, "number of pixmaps = %d\n", npixmaps_allocated);
6661 fprintf (stderr, "number of GCs = %d\n", ngcs);
6662 return Qnil;
6663 }
6664
6665 #endif /* GLYPH_DEBUG != 0 */
6666
6667
6668 \f
6669 /***********************************************************************
6670 Initialization
6671 ***********************************************************************/
6672
6673 void
6674 syms_of_xfaces ()
6675 {
6676 Qface = intern ("face");
6677 staticpro (&Qface);
6678 Qface_no_inherit = intern ("face-no-inherit");
6679 staticpro (&Qface_no_inherit);
6680 Qbitmap_spec_p = intern ("bitmap-spec-p");
6681 staticpro (&Qbitmap_spec_p);
6682 Qframe_set_background_mode = intern ("frame-set-background-mode");
6683 staticpro (&Qframe_set_background_mode);
6684
6685 /* Lisp face attribute keywords. */
6686 QCfamily = intern (":family");
6687 staticpro (&QCfamily);
6688 QCheight = intern (":height");
6689 staticpro (&QCheight);
6690 QCweight = intern (":weight");
6691 staticpro (&QCweight);
6692 QCslant = intern (":slant");
6693 staticpro (&QCslant);
6694 QCunderline = intern (":underline");
6695 staticpro (&QCunderline);
6696 QCinverse_video = intern (":inverse-video");
6697 staticpro (&QCinverse_video);
6698 QCreverse_video = intern (":reverse-video");
6699 staticpro (&QCreverse_video);
6700 QCforeground = intern (":foreground");
6701 staticpro (&QCforeground);
6702 QCbackground = intern (":background");
6703 staticpro (&QCbackground);
6704 QCstipple = intern (":stipple");
6705 staticpro (&QCstipple);
6706 QCwidth = intern (":width");
6707 staticpro (&QCwidth);
6708 QCfont = intern (":font");
6709 staticpro (&QCfont);
6710 QCfontset = intern (":fontset");
6711 staticpro (&QCfontset);
6712 QCbold = intern (":bold");
6713 staticpro (&QCbold);
6714 QCitalic = intern (":italic");
6715 staticpro (&QCitalic);
6716 QCoverline = intern (":overline");
6717 staticpro (&QCoverline);
6718 QCstrike_through = intern (":strike-through");
6719 staticpro (&QCstrike_through);
6720 QCbox = intern (":box");
6721 staticpro (&QCbox);
6722 QCinherit = intern (":inherit");
6723 staticpro (&QCinherit);
6724
6725 /* Symbols used for Lisp face attribute values. */
6726 QCcolor = intern (":color");
6727 staticpro (&QCcolor);
6728 QCline_width = intern (":line-width");
6729 staticpro (&QCline_width);
6730 QCstyle = intern (":style");
6731 staticpro (&QCstyle);
6732 Qreleased_button = intern ("released-button");
6733 staticpro (&Qreleased_button);
6734 Qpressed_button = intern ("pressed-button");
6735 staticpro (&Qpressed_button);
6736 Qnormal = intern ("normal");
6737 staticpro (&Qnormal);
6738 Qultra_light = intern ("ultra-light");
6739 staticpro (&Qultra_light);
6740 Qextra_light = intern ("extra-light");
6741 staticpro (&Qextra_light);
6742 Qlight = intern ("light");
6743 staticpro (&Qlight);
6744 Qsemi_light = intern ("semi-light");
6745 staticpro (&Qsemi_light);
6746 Qsemi_bold = intern ("semi-bold");
6747 staticpro (&Qsemi_bold);
6748 Qbold = intern ("bold");
6749 staticpro (&Qbold);
6750 Qextra_bold = intern ("extra-bold");
6751 staticpro (&Qextra_bold);
6752 Qultra_bold = intern ("ultra-bold");
6753 staticpro (&Qultra_bold);
6754 Qoblique = intern ("oblique");
6755 staticpro (&Qoblique);
6756 Qitalic = intern ("italic");
6757 staticpro (&Qitalic);
6758 Qreverse_oblique = intern ("reverse-oblique");
6759 staticpro (&Qreverse_oblique);
6760 Qreverse_italic = intern ("reverse-italic");
6761 staticpro (&Qreverse_italic);
6762 Qultra_condensed = intern ("ultra-condensed");
6763 staticpro (&Qultra_condensed);
6764 Qextra_condensed = intern ("extra-condensed");
6765 staticpro (&Qextra_condensed);
6766 Qcondensed = intern ("condensed");
6767 staticpro (&Qcondensed);
6768 Qsemi_condensed = intern ("semi-condensed");
6769 staticpro (&Qsemi_condensed);
6770 Qsemi_expanded = intern ("semi-expanded");
6771 staticpro (&Qsemi_expanded);
6772 Qexpanded = intern ("expanded");
6773 staticpro (&Qexpanded);
6774 Qextra_expanded = intern ("extra-expanded");
6775 staticpro (&Qextra_expanded);
6776 Qultra_expanded = intern ("ultra-expanded");
6777 staticpro (&Qultra_expanded);
6778 Qbackground_color = intern ("background-color");
6779 staticpro (&Qbackground_color);
6780 Qforeground_color = intern ("foreground-color");
6781 staticpro (&Qforeground_color);
6782 Qunspecified = intern ("unspecified");
6783 staticpro (&Qunspecified);
6784 Qignore_defface = intern (":ignore-defface");
6785 staticpro (&Qignore_defface);
6786
6787 Qface_alias = intern ("face-alias");
6788 staticpro (&Qface_alias);
6789 Qdefault = intern ("default");
6790 staticpro (&Qdefault);
6791 Qtool_bar = intern ("tool-bar");
6792 staticpro (&Qtool_bar);
6793 Qregion = intern ("region");
6794 staticpro (&Qregion);
6795 Qfringe = intern ("fringe");
6796 staticpro (&Qfringe);
6797 Qheader_line = intern ("header-line");
6798 staticpro (&Qheader_line);
6799 Qscroll_bar = intern ("scroll-bar");
6800 staticpro (&Qscroll_bar);
6801 Qmenu = intern ("menu");
6802 staticpro (&Qmenu);
6803 Qcursor = intern ("cursor");
6804 staticpro (&Qcursor);
6805 Qborder = intern ("border");
6806 staticpro (&Qborder);
6807 Qmouse = intern ("mouse");
6808 staticpro (&Qmouse);
6809 Qmode_line_inactive = intern ("mode-line-inactive");
6810 staticpro (&Qmode_line_inactive);
6811 Qvertical_border = intern ("vertical-border");
6812 staticpro (&Qvertical_border);
6813 Qtty_color_desc = intern ("tty-color-desc");
6814 staticpro (&Qtty_color_desc);
6815 Qtty_color_standard_values = intern ("tty-color-standard-values");
6816 staticpro (&Qtty_color_standard_values);
6817 Qtty_color_by_index = intern ("tty-color-by-index");
6818 staticpro (&Qtty_color_by_index);
6819 Qtty_color_alist = intern ("tty-color-alist");
6820 staticpro (&Qtty_color_alist);
6821 Qscalable_fonts_allowed = intern ("scalable-fonts-allowed");
6822 staticpro (&Qscalable_fonts_allowed);
6823
6824 Vparam_value_alist = Fcons (Fcons (Qnil, Qnil), Qnil);
6825 staticpro (&Vparam_value_alist);
6826 Vface_alternative_font_family_alist = Qnil;
6827 staticpro (&Vface_alternative_font_family_alist);
6828 Vface_alternative_font_registry_alist = Qnil;
6829 staticpro (&Vface_alternative_font_registry_alist);
6830
6831 defsubr (&Sinternal_make_lisp_face);
6832 defsubr (&Sinternal_lisp_face_p);
6833 defsubr (&Sinternal_set_lisp_face_attribute);
6834 #ifdef HAVE_WINDOW_SYSTEM
6835 defsubr (&Sinternal_set_lisp_face_attribute_from_resource);
6836 #endif
6837 defsubr (&Scolor_gray_p);
6838 defsubr (&Scolor_supported_p);
6839 defsubr (&Sface_attribute_relative_p);
6840 defsubr (&Smerge_face_attribute);
6841 defsubr (&Sinternal_get_lisp_face_attribute);
6842 defsubr (&Sinternal_lisp_face_attribute_values);
6843 defsubr (&Sinternal_lisp_face_equal_p);
6844 defsubr (&Sinternal_lisp_face_empty_p);
6845 defsubr (&Sinternal_copy_lisp_face);
6846 defsubr (&Sinternal_merge_in_global_face);
6847 defsubr (&Sface_font);
6848 defsubr (&Sframe_face_alist);
6849 defsubr (&Sdisplay_supports_face_attributes_p);
6850 defsubr (&Scolor_distance);
6851 defsubr (&Sinternal_set_font_selection_order);
6852 defsubr (&Sinternal_set_alternative_font_family_alist);
6853 defsubr (&Sinternal_set_alternative_font_registry_alist);
6854 defsubr (&Sface_attributes_as_vector);
6855 #if GLYPH_DEBUG
6856 defsubr (&Sdump_face);
6857 defsubr (&Sshow_face_resources);
6858 #endif /* GLYPH_DEBUG */
6859 defsubr (&Sclear_face_cache);
6860 defsubr (&Stty_suppress_bold_inverse_default_colors);
6861
6862 #if defined DEBUG_X_COLORS && defined HAVE_X_WINDOWS
6863 defsubr (&Sdump_colors);
6864 #endif
6865
6866 DEFVAR_LISP ("font-list-limit", &Vfont_list_limit,
6867 doc: /* *Limit for font matching.
6868 If an integer > 0, font matching functions won't load more than
6869 that number of fonts when searching for a matching font. */);
6870 Vfont_list_limit = make_number (DEFAULT_FONT_LIST_LIMIT);
6871
6872 DEFVAR_LISP ("face-new-frame-defaults", &Vface_new_frame_defaults,
6873 doc: /* List of global face definitions (for internal use only.) */);
6874 Vface_new_frame_defaults = Qnil;
6875
6876 DEFVAR_LISP ("face-default-stipple", &Vface_default_stipple,
6877 doc: /* *Default stipple pattern used on monochrome displays.
6878 This stipple pattern is used on monochrome displays
6879 instead of shades of gray for a face background color.
6880 See `set-face-stipple' for possible values for this variable. */);
6881 Vface_default_stipple = build_string ("gray3");
6882
6883 DEFVAR_LISP ("tty-defined-color-alist", &Vtty_defined_color_alist,
6884 doc: /* An alist of defined terminal colors and their RGB values. */);
6885 Vtty_defined_color_alist = Qnil;
6886
6887 DEFVAR_LISP ("scalable-fonts-allowed", &Vscalable_fonts_allowed,
6888 doc: /* Allowed scalable fonts.
6889 A value of nil means don't allow any scalable fonts.
6890 A value of t means allow any scalable font.
6891 Otherwise, value must be a list of regular expressions. A font may be
6892 scaled if its name matches a regular expression in the list.
6893 Note that if value is nil, a scalable font might still be used, if no
6894 other font of the appropriate family and registry is available. */);
6895 Vscalable_fonts_allowed = Qnil;
6896
6897 DEFVAR_LISP ("face-ignored-fonts", &Vface_ignored_fonts,
6898 doc: /* List of ignored fonts.
6899 Each element is a regular expression that matches names of fonts to
6900 ignore. */);
6901 Vface_ignored_fonts = Qnil;
6902
6903 DEFVAR_LISP ("face-remapping-alist", &Vface_remapping_alist,
6904 doc: /* Alist of face remappings.
6905 Each element is of the form:
6906
6907 (FACE REPLACEMENT...),
6908
6909 which causes display of the face FACE to use REPLACEMENT... instead.
6910 REPLACEMENT... is interpreted the same way the value of a `face' text
6911 property is: it may be (1) A face name, (2) A list of face names, (3) A
6912 property-list of face attribute/value pairs, or (4) A list of face names
6913 intermixed with lists containing face attribute/value pairs.
6914
6915 Multiple entries in REPLACEMENT... are merged together to form the final
6916 result, with faces or attributes earlier in the list taking precedence
6917 over those that are later.
6918
6919 Face-name remapping cycles are suppressed; recursive references use the
6920 underlying face instead of the remapped face. So a remapping of the form:
6921
6922 (FACE EXTRA-FACE... FACE)
6923
6924 or:
6925
6926 (FACE (FACE-ATTR VAL ...) FACE)
6927
6928 will cause EXTRA-FACE... or (FACE-ATTR VAL ...) to be _merged_ with the
6929 existing definition of FACE. Note that for the default face, this isn't
6930 necessary, as every face inherits from the default face.
6931
6932 Making this variable buffer-local is a good way to allow buffer-specific
6933 face definitions. For instance, the mode my-mode could define a face
6934 `my-mode-default', and then in the mode setup function, do:
6935
6936 (set (make-local-variable 'face-remapping-alist)
6937 '((default my-mode-default)))). */);
6938 Vface_remapping_alist = Qnil;
6939
6940 DEFVAR_LISP ("face-font-rescale-alist", &Vface_font_rescale_alist,
6941 doc: /* Alist of fonts vs the rescaling factors.
6942 Each element is a cons (FONT-NAME-PATTERN . RESCALE-RATIO), where
6943 FONT-NAME-PATTERN is a regular expression matching a font name, and
6944 RESCALE-RATIO is a floating point number to specify how much larger
6945 \(or smaller) font we should use. For instance, if a face requests
6946 a font of 10 point, we actually use a font of 10 * RESCALE-RATIO point. */);
6947 Vface_font_rescale_alist = Qnil;
6948
6949 #ifdef HAVE_WINDOW_SYSTEM
6950 defsubr (&Sbitmap_spec_p);
6951 defsubr (&Sx_list_fonts);
6952 defsubr (&Sinternal_face_x_get_resource);
6953 defsubr (&Sx_family_fonts);
6954 defsubr (&Sx_font_family_list);
6955 #endif /* HAVE_WINDOW_SYSTEM */
6956 }
6957
6958 /* arch-tag: 8a0f7598-5517-408d-9ab3-1da6fcd4c749
6959 (do not change this comment) */