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