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