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