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