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