1 /* xfaces.c -- "Face" primitives.
3 Copyright (C) 1993-1994, 1998-2011 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
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.
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.
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/>. */
20 /* New face implementation by Gerd Moellmann <gerd@gnu.org>. */
24 When using Emacs with X, the display style of characters can be
25 changed by defining `faces'. Each face can specify the following
30 2. Font foundary name.
32 3. Relative proportionate width, aka character set width or set
33 width (swidth), e.g. `semi-compressed'.
35 4. Font height in 1/10pt.
37 5. Font weight, e.g. `bold'.
39 6. Font slant, e.g. `italic'.
45 9. Whether or not characters should be underlined, and in what color.
47 10. Whether or not characters should be displayed in inverse video.
49 11. A background stipple, a bitmap.
51 12. Whether or not characters should be overlined, and in what color.
53 13. Whether or not characters should be strike-through, and in what
56 14. Whether or not a box should be drawn around characters, the box
57 type, and, for simple boxes, in what color.
59 15. Font-spec, or nil. This is a special attribute.
61 A font-spec is a collection of font attributes (specs).
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.
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.
71 15. A face name or list of face names from which to inherit attributes.
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.
77 17. A fontset name. This is another special attribute.
79 A fontset is a mappings from characters to font-specs, and the
80 specs overwrite the font-spec in the 14th attribute.
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.
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
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'.
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.
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.
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
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.
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.
134 Thus, all realized faces have a realized fontset.
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.
147 Font selection tries to find the best available matching font for a
148 given (character, face) combination.
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.
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.
161 Font selection can be influenced by the user.
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,
172 2. Setting face-font-family-alternatives allows the user to
173 specify alternative font families to try if a family specified by a
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.
180 4. Setting face-ignored-fonts allows the user to ignore specific
184 Character composition.
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
195 Initialization of basic faces.
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. */
204 #include <sys/types.h>
205 #include <sys/stat.h>
206 #include <stdio.h> /* This needs to be before termchar.h */
210 #include "character.h"
212 #include "keyboard.h"
214 #include "termhooks.h"
216 #ifdef HAVE_X_WINDOWS
220 #include <Xm/XmStrDefs.h>
221 #endif /* USE_MOTIF */
222 #endif /* HAVE_X_WINDOWS */
231 /* Redefine X specifics to W32 equivalents to avoid cluttering the
232 code with #ifdef blocks. */
233 #undef FRAME_X_DISPLAY_INFO
234 #define FRAME_X_DISPLAY_INFO FRAME_W32_DISPLAY_INFO
235 #define x_display_info w32_display_info
236 #define FRAME_X_FONT_TABLE FRAME_W32_FONT_TABLE
237 #define check_x check_w32
238 #define GCGraphicsExposures 0
239 #endif /* WINDOWSNT */
243 #undef FRAME_X_DISPLAY_INFO
244 #define FRAME_X_DISPLAY_INFO FRAME_NS_DISPLAY_INFO
245 #define x_display_info ns_display_info
246 #define FRAME_X_FONT_TABLE FRAME_NS_FONT_TABLE
247 #define check_x check_ns
248 #define GCGraphicsExposures 0
252 #include "dispextern.h"
253 #include "blockinput.h"
255 #include "intervals.h"
256 #include "termchar.h"
259 #ifdef HAVE_WINDOW_SYSTEM
261 #endif /* HAVE_WINDOW_SYSTEM */
263 #ifdef HAVE_X_WINDOWS
265 /* Compensate for a bug in Xos.h on some systems, on which it requires
266 time.h. On some such systems, Xos.h tries to redefine struct
267 timeval and struct timezone if USG is #defined while it is
270 #ifdef XOS_NEEDS_TIME_H
276 #else /* not XOS_NEEDS_TIME_H */
278 #endif /* not XOS_NEEDS_TIME_H */
280 #endif /* HAVE_X_WINDOWS */
284 /* Number of pt per inch (from the TeXbook). */
286 #define PT_PER_INCH 72.27
288 /* Non-zero if face attribute ATTR is unspecified. */
290 #define UNSPECIFIEDP(ATTR) EQ ((ATTR), Qunspecified)
292 /* Non-zero if face attribute ATTR is `ignore-defface'. */
294 #define IGNORE_DEFFACE_P(ATTR) EQ ((ATTR), Qignore_defface)
296 /* Value is the number of elements of VECTOR. */
298 #define DIM(VECTOR) (sizeof (VECTOR) / sizeof *(VECTOR))
300 /* Make a copy of string S on the stack using alloca. Value is a pointer
303 #define STRDUPA(S) strcpy ((char *) alloca (strlen ((S)) + 1), (S))
305 /* Make a copy of the contents of Lisp string S on the stack using
306 alloca. Value is a pointer to the copy. */
308 #define LSTRDUPA(S) STRDUPA (SDATA ((S)))
310 /* Size of hash table of realized faces in face caches (should be a
313 #define FACE_CACHE_BUCKETS_SIZE 1001
315 /* Keyword symbols used for face attribute names. */
317 Lisp_Object QCfamily
, QCheight
, QCweight
, QCslant
, QCunderline
;
318 Lisp_Object QCinverse_video
, QCforeground
, QCbackground
, QCstipple
;
319 Lisp_Object QCwidth
, QCfont
, QCbold
, QCitalic
;
320 Lisp_Object QCreverse_video
;
321 Lisp_Object QCoverline
, QCstrike_through
, QCbox
, QCinherit
;
322 Lisp_Object QCfontset
;
324 /* Symbols used for attribute values. */
326 Lisp_Object Qnormal
, Qbold
, Qultra_light
, Qextra_light
, Qlight
;
327 Lisp_Object Qsemi_light
, Qsemi_bold
, Qextra_bold
, Qultra_bold
;
328 Lisp_Object Qoblique
, Qitalic
, Qreverse_oblique
, Qreverse_italic
;
329 Lisp_Object Qultra_condensed
, Qextra_condensed
, Qcondensed
;
330 Lisp_Object Qsemi_condensed
, Qsemi_expanded
, Qexpanded
, Qextra_expanded
;
331 Lisp_Object Qultra_expanded
;
332 Lisp_Object Qreleased_button
, Qpressed_button
;
333 Lisp_Object QCstyle
, QCcolor
, QCline_width
;
334 Lisp_Object Qunspecified
;
335 Lisp_Object Qignore_defface
;
337 char unspecified_fg
[] = "unspecified-fg", unspecified_bg
[] = "unspecified-bg";
339 /* The name of the function to call when the background of the frame
340 has changed, frame_set_background_mode. */
342 Lisp_Object Qframe_set_background_mode
;
344 /* Names of basic faces. */
346 Lisp_Object Qdefault
, Qtool_bar
, Qregion
, Qfringe
;
347 Lisp_Object Qheader_line
, Qscroll_bar
, Qcursor
, Qborder
, Qmouse
, Qmenu
;
348 Lisp_Object Qmode_line_inactive
, Qvertical_border
;
350 /* The symbol `face-alias'. A symbols having that property is an
351 alias for another face. Value of the property is the name of
354 Lisp_Object Qface_alias
;
356 /* Alist of alternative font families. Each element is of the form
357 (FAMILY FAMILY1 FAMILY2 ...). If fonts of FAMILY can't be loaded,
358 try FAMILY1, then FAMILY2, ... */
360 Lisp_Object Vface_alternative_font_family_alist
;
362 /* Alist of alternative font registries. Each element is of the form
363 (REGISTRY REGISTRY1 REGISTRY2...). If fonts of REGISTRY can't be
364 loaded, try REGISTRY1, then REGISTRY2, ... */
366 Lisp_Object Vface_alternative_font_registry_alist
;
368 /* Allowed scalable fonts. A value of nil means don't allow any
369 scalable fonts. A value of t means allow the use of any scalable
370 font. Otherwise, value must be a list of regular expressions. A
371 font may be scaled if its name matches a regular expression in the
374 Lisp_Object Qscalable_fonts_allowed
;
376 #define DEFAULT_FONT_LIST_LIMIT 100
378 /* The symbols `foreground-color' and `background-color' which can be
379 used as part of a `face' property. This is for compatibility with
382 Lisp_Object Qforeground_color
, Qbackground_color
;
384 /* The symbols `face' and `mouse-face' used as text properties. */
388 /* Property for basic faces which other faces cannot inherit. */
390 Lisp_Object Qface_no_inherit
;
392 /* Error symbol for wrong_type_argument in load_pixmap. */
394 Lisp_Object Qbitmap_spec_p
;
396 /* The next ID to assign to Lisp faces. */
398 static int next_lface_id
;
400 /* A vector mapping Lisp face Id's to face names. */
402 static Lisp_Object
*lface_id_to_name
;
403 static int lface_id_to_name_size
;
405 /* TTY color-related functions (defined in tty-colors.el). */
407 Lisp_Object Qtty_color_desc
, Qtty_color_by_index
, Qtty_color_standard_values
;
409 /* The name of the function used to compute colors on TTYs. */
411 Lisp_Object Qtty_color_alist
;
413 /* Counter for calls to clear_face_cache. If this counter reaches
414 CLEAR_FONT_TABLE_COUNT, and a frame has more than
415 CLEAR_FONT_TABLE_NFONTS load, unused fonts are freed. */
417 static int clear_font_table_count
;
418 #define CLEAR_FONT_TABLE_COUNT 100
419 #define CLEAR_FONT_TABLE_NFONTS 10
421 /* Non-zero means face attributes have been changed since the last
422 redisplay. Used in redisplay_internal. */
424 int face_change_count
;
426 /* Non-zero means don't display bold text if a face's foreground
427 and background colors are the inverse of the default colors of the
428 display. This is a kluge to suppress `bold black' foreground text
429 which is hard to read on an LCD monitor. */
431 int tty_suppress_bold_inverse_default_colors_p
;
433 /* A list of the form `((x . y))' used to avoid consing in
434 Finternal_set_lisp_face_attribute. */
436 static Lisp_Object Vparam_value_alist
;
438 /* The total number of colors currently allocated. */
441 static int ncolors_allocated
;
442 static int npixmaps_allocated
;
446 /* Non-zero means the definition of the `menu' face for new frames has
449 int menu_face_changed_default
;
452 /* Function prototypes. */
455 struct named_merge_point
;
457 static void map_tty_color (struct frame
*, struct face
*,
458 enum lface_attribute_index
, int *);
459 static Lisp_Object
resolve_face_name (Lisp_Object
, int);
460 static void set_font_frame_param (Lisp_Object
, Lisp_Object
);
461 static int get_lface_attributes (struct frame
*, Lisp_Object
, Lisp_Object
*,
462 int, struct named_merge_point
*);
463 static int load_pixmap (struct frame
*, Lisp_Object
, unsigned *, unsigned *);
464 static struct frame
*frame_or_selected_frame (Lisp_Object
, int);
465 static void load_face_colors (struct frame
*, struct face
*, Lisp_Object
*);
466 static void free_face_colors (struct frame
*, struct face
*);
467 static int face_color_gray_p (struct frame
*, const char *);
468 static struct face
*realize_face (struct face_cache
*, Lisp_Object
*,
470 static struct face
*realize_non_ascii_face (struct frame
*, Lisp_Object
,
472 static struct face
*realize_x_face (struct face_cache
*, Lisp_Object
*);
473 static struct face
*realize_tty_face (struct face_cache
*, Lisp_Object
*);
474 static int realize_basic_faces (struct frame
*);
475 static int realize_default_face (struct frame
*);
476 static void realize_named_face (struct frame
*, Lisp_Object
, int);
477 static int lface_fully_specified_p (Lisp_Object
*);
478 static int lface_equal_p (Lisp_Object
*, Lisp_Object
*);
479 static unsigned hash_string_case_insensitive (Lisp_Object
);
480 static unsigned lface_hash (Lisp_Object
*);
481 static int lface_same_font_attributes_p (Lisp_Object
*, Lisp_Object
*);
482 static struct face_cache
*make_face_cache (struct frame
*);
483 static void clear_face_gcs (struct face_cache
*);
484 static void free_face_cache (struct face_cache
*);
485 static int face_fontset (Lisp_Object
*);
486 static void merge_face_vectors (struct frame
*, Lisp_Object
*, Lisp_Object
*,
487 struct named_merge_point
*);
488 static int merge_face_ref (struct frame
*, Lisp_Object
, Lisp_Object
*,
489 int, struct named_merge_point
*);
490 static int set_lface_from_font (struct frame
*, Lisp_Object
, Lisp_Object
,
492 static Lisp_Object
lface_from_face_name (struct frame
*, Lisp_Object
, int);
493 static struct face
*make_realized_face (Lisp_Object
*);
494 static void cache_face (struct face_cache
*, struct face
*, unsigned);
495 static void uncache_face (struct face_cache
*, struct face
*);
497 #ifdef HAVE_WINDOW_SYSTEM
499 static GC
x_create_gc (struct frame
*, unsigned long, XGCValues
*);
500 static void x_free_gc (struct frame
*, GC
);
503 static void x_update_menu_appearance (struct frame
*);
505 extern void free_frame_menubar (struct frame
*);
506 #endif /* USE_X_TOOLKIT */
508 #endif /* HAVE_WINDOW_SYSTEM */
511 /***********************************************************************
513 ***********************************************************************/
515 #ifdef HAVE_X_WINDOWS
517 #ifdef DEBUG_X_COLORS
519 /* The following is a poor mans infrastructure for debugging X color
520 allocation problems on displays with PseudoColor-8. Some X servers
521 like 3.3.5 XF86_SVGA with Matrox cards apparently don't implement
522 color reference counts completely so that they don't signal an
523 error when a color is freed whose reference count is already 0.
524 Other X servers do. To help me debug this, the following code
525 implements a simple reference counting schema of its own, for a
526 single display/screen. --gerd. */
528 /* Reference counts for pixel colors. */
530 int color_count
[256];
532 /* Register color PIXEL as allocated. */
535 register_color (pixel
)
538 xassert (pixel
< 256);
539 ++color_count
[pixel
];
543 /* Register color PIXEL as deallocated. */
546 unregister_color (pixel
)
549 xassert (pixel
< 256);
550 if (color_count
[pixel
] > 0)
551 --color_count
[pixel
];
557 /* Register N colors from PIXELS as deallocated. */
560 unregister_colors (pixels
, n
)
561 unsigned long *pixels
;
565 for (i
= 0; i
< n
; ++i
)
566 unregister_color (pixels
[i
]);
570 DEFUN ("dump-colors", Fdump_colors
, Sdump_colors
, 0, 0, 0,
571 doc
: /* Dump currently allocated colors to stderr. */)
576 fputc ('\n', stderr
);
578 for (i
= n
= 0; i
< sizeof color_count
/ sizeof color_count
[0]; ++i
)
581 fprintf (stderr
, "%3d: %5d", i
, color_count
[i
]);
584 fputc ('\n', stderr
);
586 fputc ('\t', stderr
);
590 fputc ('\n', stderr
);
594 #endif /* DEBUG_X_COLORS */
597 /* Free colors used on frame F. PIXELS is an array of NPIXELS pixel
598 color values. Interrupt input must be blocked when this function
602 x_free_colors (struct frame
*f
, long unsigned int *pixels
, int npixels
)
604 int class = FRAME_X_DISPLAY_INFO (f
)->visual
->class;
606 /* If display has an immutable color map, freeing colors is not
607 necessary and some servers don't allow it. So don't do it. */
608 if (class != StaticColor
&& class != StaticGray
&& class != TrueColor
)
610 #ifdef DEBUG_X_COLORS
611 unregister_colors (pixels
, npixels
);
613 XFreeColors (FRAME_X_DISPLAY (f
), FRAME_X_COLORMAP (f
),
619 /* Free colors used on frame F. PIXELS is an array of NPIXELS pixel
620 color values. Interrupt input must be blocked when this function
624 x_free_dpy_colors (Display
*dpy
, Screen
*screen
, Colormap cmap
, long unsigned int *pixels
, int npixels
)
626 struct x_display_info
*dpyinfo
= x_display_info_for_display (dpy
);
627 int class = dpyinfo
->visual
->class;
629 /* If display has an immutable color map, freeing colors is not
630 necessary and some servers don't allow it. So don't do it. */
631 if (class != StaticColor
&& class != StaticGray
&& class != TrueColor
)
633 #ifdef DEBUG_X_COLORS
634 unregister_colors (pixels
, npixels
);
636 XFreeColors (dpy
, cmap
, pixels
, npixels
, 0);
641 /* Create and return a GC for use on frame F. GC values and mask
642 are given by XGCV and MASK. */
645 x_create_gc (struct frame
*f
, long unsigned int mask
, XGCValues
*xgcv
)
649 gc
= XCreateGC (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), mask
, xgcv
);
656 /* Free GC which was used on frame F. */
659 x_free_gc (struct frame
*f
, GC gc
)
661 eassert (interrupt_input_blocked
);
662 IF_DEBUG (xassert (--ngcs
>= 0));
663 XFreeGC (FRAME_X_DISPLAY (f
), gc
);
666 #endif /* HAVE_X_WINDOWS */
669 /* W32 emulation of GCs */
672 x_create_gc (struct frame
*f
, unsigned long mask
, XGCValues
*xgcv
)
676 gc
= XCreateGC (NULL
, FRAME_W32_WINDOW (f
), mask
, xgcv
);
683 /* Free GC which was used on frame F. */
686 x_free_gc (struct frame
*f
, GC gc
)
688 IF_DEBUG (xassert (--ngcs
>= 0));
692 #endif /* WINDOWSNT */
695 /* NS emulation of GCs */
698 x_create_gc (struct frame
*f
,
702 GC gc
= xmalloc (sizeof (*gc
));
704 memcpy (gc
, xgcv
, sizeof (XGCValues
));
709 x_free_gc (struct frame
*f
, GC gc
)
715 /* Like strcasecmp/stricmp. Used to compare parts of font names which
719 xstrcasecmp (const char *s1
, const char *s2
)
723 unsigned char b1
= *s1
;
724 unsigned char b2
= *s2
;
725 unsigned char c1
= tolower (b1
);
726 unsigned char c2
= tolower (b2
);
728 return c1
< c2
? -1 : 1;
733 return *s2
== 0 ? 0 : -1;
738 /* If FRAME is nil, return a pointer to the selected frame.
739 Otherwise, check that FRAME is a live frame, and return a pointer
740 to it. NPARAM is the parameter number of FRAME, for
741 CHECK_LIVE_FRAME. This is here because it's a frequent pattern in
742 Lisp function definitions. */
744 static INLINE
struct frame
*
745 frame_or_selected_frame (Lisp_Object frame
, int nparam
)
748 frame
= selected_frame
;
750 CHECK_LIVE_FRAME (frame
);
751 return XFRAME (frame
);
755 /***********************************************************************
757 ***********************************************************************/
759 /* Initialize face cache and basic faces for frame F. */
762 init_frame_faces (struct frame
*f
)
764 /* Make a face cache, if F doesn't have one. */
765 if (FRAME_FACE_CACHE (f
) == NULL
)
766 FRAME_FACE_CACHE (f
) = make_face_cache (f
);
768 #ifdef HAVE_WINDOW_SYSTEM
769 /* Make the image cache. */
770 if (FRAME_WINDOW_P (f
))
772 /* We initialize the image cache when creating the first frame
773 on a terminal, and not during terminal creation. This way,
774 `x-open-connection' on a tty won't create an image cache. */
775 if (FRAME_IMAGE_CACHE (f
) == NULL
)
776 FRAME_IMAGE_CACHE (f
) = make_image_cache ();
777 ++FRAME_IMAGE_CACHE (f
)->refcount
;
779 #endif /* HAVE_WINDOW_SYSTEM */
781 /* Realize basic faces. Must have enough information in frame
782 parameters to realize basic faces at this point. */
783 #ifdef HAVE_X_WINDOWS
784 if (!FRAME_X_P (f
) || FRAME_X_WINDOW (f
))
787 if (!FRAME_WINDOW_P (f
) || FRAME_W32_WINDOW (f
))
790 if (!FRAME_NS_P (f
) || FRAME_NS_WINDOW (f
))
792 if (!realize_basic_faces (f
))
797 /* Free face cache of frame F. Called from delete_frame. */
800 free_frame_faces (struct frame
*f
)
802 struct face_cache
*face_cache
= FRAME_FACE_CACHE (f
);
806 free_face_cache (face_cache
);
807 FRAME_FACE_CACHE (f
) = NULL
;
810 #ifdef HAVE_WINDOW_SYSTEM
811 if (FRAME_WINDOW_P (f
))
813 struct image_cache
*image_cache
= FRAME_IMAGE_CACHE (f
);
816 --image_cache
->refcount
;
817 if (image_cache
->refcount
== 0)
818 free_image_cache (f
);
821 #endif /* HAVE_WINDOW_SYSTEM */
825 /* Clear face caches, and recompute basic faces for frame F. Call
826 this after changing frame parameters on which those faces depend,
827 or when realized faces have been freed due to changing attributes
831 recompute_basic_faces (struct frame
*f
)
833 if (FRAME_FACE_CACHE (f
))
835 clear_face_cache (0);
836 if (!realize_basic_faces (f
))
842 /* Clear the face caches of all frames. CLEAR_FONTS_P non-zero means
843 try to free unused fonts, too. */
846 clear_face_cache (int clear_fonts_p
)
848 #ifdef HAVE_WINDOW_SYSTEM
849 Lisp_Object tail
, frame
;
853 || ++clear_font_table_count
== CLEAR_FONT_TABLE_COUNT
)
856 /* Not yet implemented. */
857 clear_font_cache (frame
);
860 /* From time to time see if we can unload some fonts. This also
861 frees all realized faces on all frames. Fonts needed by
862 faces will be loaded again when faces are realized again. */
863 clear_font_table_count
= 0;
865 FOR_EACH_FRAME (tail
, frame
)
867 struct frame
*f
= XFRAME (frame
);
868 if (FRAME_WINDOW_P (f
)
869 && FRAME_X_DISPLAY_INFO (f
)->n_fonts
> CLEAR_FONT_TABLE_NFONTS
)
870 free_all_realized_faces (frame
);
875 /* Clear GCs of realized faces. */
876 FOR_EACH_FRAME (tail
, frame
)
879 if (FRAME_WINDOW_P (f
))
880 clear_face_gcs (FRAME_FACE_CACHE (f
));
882 clear_image_caches (Qnil
);
884 #endif /* HAVE_WINDOW_SYSTEM */
888 DEFUN ("clear-face-cache", Fclear_face_cache
, Sclear_face_cache
, 0, 1, 0,
889 doc
: /* Clear face caches on all frames.
890 Optional THOROUGHLY non-nil means try to free unused fonts, too. */)
891 (Lisp_Object thoroughly
)
893 clear_face_cache (!NILP (thoroughly
));
895 ++windows_or_buffers_changed
;
900 /***********************************************************************
902 ***********************************************************************/
904 #ifdef HAVE_WINDOW_SYSTEM
906 DEFUN ("bitmap-spec-p", Fbitmap_spec_p
, Sbitmap_spec_p
, 1, 1, 0,
907 doc
: /* Value is non-nil if OBJECT is a valid bitmap specification.
908 A bitmap specification is either a string, a file name, or a list
909 \(WIDTH HEIGHT DATA) where WIDTH is the pixel width of the bitmap,
910 HEIGHT is its height, and DATA is a string containing the bits of
911 the pixmap. Bits are stored row by row, each row occupies
912 \(WIDTH + 7)/8 bytes. */)
917 if (STRINGP (object
))
918 /* If OBJECT is a string, it's a file name. */
920 else if (CONSP (object
))
922 /* Otherwise OBJECT must be (WIDTH HEIGHT DATA), WIDTH and
923 HEIGHT must be integers > 0, and DATA must be string large
924 enough to hold a bitmap of the specified size. */
925 Lisp_Object width
, height
, data
;
927 height
= width
= data
= Qnil
;
931 width
= XCAR (object
);
932 object
= XCDR (object
);
935 height
= XCAR (object
);
936 object
= XCDR (object
);
938 data
= XCAR (object
);
942 if (NATNUMP (width
) && NATNUMP (height
) && STRINGP (data
))
944 int bytes_per_row
= ((XFASTINT (width
) + BITS_PER_CHAR
- 1)
946 if (SBYTES (data
) >= bytes_per_row
* XINT (height
))
951 return pixmap_p
? Qt
: Qnil
;
955 /* Load a bitmap according to NAME (which is either a file name or a
956 pixmap spec) for use on frame F. Value is the bitmap_id (see
957 xfns.c). If NAME is nil, return with a bitmap id of zero. If
958 bitmap cannot be loaded, display a message saying so, and return
959 zero. Store the bitmap width in *W_PTR and its height in *H_PTR,
960 if these pointers are not null. */
963 load_pixmap (FRAME_PTR f
, Lisp_Object name
, unsigned int *w_ptr
, unsigned int *h_ptr
)
970 CHECK_TYPE (!NILP (Fbitmap_spec_p (name
)), Qbitmap_spec_p
, name
);
975 /* Decode a bitmap spec into a bitmap. */
980 w
= XINT (Fcar (name
));
981 h
= XINT (Fcar (Fcdr (name
)));
982 bits
= Fcar (Fcdr (Fcdr (name
)));
984 bitmap_id
= x_create_bitmap_from_data (f
, SSDATA (bits
),
989 /* It must be a string -- a file name. */
990 bitmap_id
= x_create_bitmap_from_file (f
, name
);
996 add_to_log ("Invalid or undefined bitmap `%s'", name
, Qnil
);
1007 ++npixmaps_allocated
;
1010 *w_ptr
= x_bitmap_width (f
, bitmap_id
);
1013 *h_ptr
= x_bitmap_height (f
, bitmap_id
);
1019 #endif /* HAVE_WINDOW_SYSTEM */
1023 /***********************************************************************
1025 ***********************************************************************/
1027 /* Parse RGB_LIST, and fill in the RGB fields of COLOR.
1028 RGB_LIST should contain (at least) 3 lisp integers.
1029 Return 0 if there's a problem with RGB_LIST, otherwise return 1. */
1032 parse_rgb_list (Lisp_Object rgb_list
, XColor
*color
)
1034 #define PARSE_RGB_LIST_FIELD(field) \
1035 if (CONSP (rgb_list) && INTEGERP (XCAR (rgb_list))) \
1037 color->field = XINT (XCAR (rgb_list)); \
1038 rgb_list = XCDR (rgb_list); \
1043 PARSE_RGB_LIST_FIELD (red
);
1044 PARSE_RGB_LIST_FIELD (green
);
1045 PARSE_RGB_LIST_FIELD (blue
);
1051 /* Lookup on frame F the color described by the lisp string COLOR.
1052 The resulting tty color is returned in TTY_COLOR; if STD_COLOR is
1053 non-zero, then the `standard' definition of the same color is
1057 tty_lookup_color (struct frame
*f
, Lisp_Object color
, XColor
*tty_color
, XColor
*std_color
)
1059 Lisp_Object frame
, color_desc
;
1061 if (!STRINGP (color
) || NILP (Ffboundp (Qtty_color_desc
)))
1064 XSETFRAME (frame
, f
);
1066 color_desc
= call2 (Qtty_color_desc
, color
, frame
);
1067 if (CONSP (color_desc
) && CONSP (XCDR (color_desc
)))
1071 if (! INTEGERP (XCAR (XCDR (color_desc
))))
1074 tty_color
->pixel
= XINT (XCAR (XCDR (color_desc
)));
1076 rgb
= XCDR (XCDR (color_desc
));
1077 if (! parse_rgb_list (rgb
, tty_color
))
1080 /* Should we fill in STD_COLOR too? */
1083 /* Default STD_COLOR to the same as TTY_COLOR. */
1084 *std_color
= *tty_color
;
1086 /* Do a quick check to see if the returned descriptor is
1087 actually _exactly_ equal to COLOR, otherwise we have to
1088 lookup STD_COLOR separately. If it's impossible to lookup
1089 a standard color, we just give up and use TTY_COLOR. */
1090 if ((!STRINGP (XCAR (color_desc
))
1091 || NILP (Fstring_equal (color
, XCAR (color_desc
))))
1092 && !NILP (Ffboundp (Qtty_color_standard_values
)))
1094 /* Look up STD_COLOR separately. */
1095 rgb
= call1 (Qtty_color_standard_values
, color
);
1096 if (! parse_rgb_list (rgb
, std_color
))
1103 else if (NILP (Fsymbol_value (intern ("tty-defined-color-alist"))))
1104 /* We were called early during startup, and the colors are not
1105 yet set up in tty-defined-color-alist. Don't return a failure
1106 indication, since this produces the annoying "Unable to
1107 load color" messages in the *Messages* buffer. */
1110 /* tty-color-desc seems to have returned a bad value. */
1114 /* A version of defined_color for non-X frames. */
1117 tty_defined_color (struct frame
*f
, const char *color_name
,
1118 XColor
*color_def
, int alloc
)
1123 color_def
->pixel
= FACE_TTY_DEFAULT_COLOR
;
1125 color_def
->blue
= 0;
1126 color_def
->green
= 0;
1129 status
= tty_lookup_color (f
, build_string (color_name
), color_def
, NULL
);
1131 if (color_def
->pixel
== FACE_TTY_DEFAULT_COLOR
&& *color_name
)
1133 if (strcmp (color_name
, "unspecified-fg") == 0)
1134 color_def
->pixel
= FACE_TTY_DEFAULT_FG_COLOR
;
1135 else if (strcmp (color_name
, "unspecified-bg") == 0)
1136 color_def
->pixel
= FACE_TTY_DEFAULT_BG_COLOR
;
1139 if (color_def
->pixel
!= FACE_TTY_DEFAULT_COLOR
)
1146 /* Decide if color named COLOR_NAME is valid for the display
1147 associated with the frame F; if so, return the rgb values in
1148 COLOR_DEF. If ALLOC is nonzero, allocate a new colormap cell.
1150 This does the right thing for any type of frame. */
1153 defined_color (struct frame
*f
, const char *color_name
, XColor
*color_def
, int alloc
)
1155 if (!FRAME_WINDOW_P (f
))
1156 return tty_defined_color (f
, color_name
, color_def
, alloc
);
1157 #ifdef HAVE_X_WINDOWS
1158 else if (FRAME_X_P (f
))
1159 return x_defined_color (f
, color_name
, color_def
, alloc
);
1162 else if (FRAME_W32_P (f
))
1163 return w32_defined_color (f
, color_name
, color_def
, alloc
);
1166 else if (FRAME_NS_P (f
))
1167 return ns_defined_color (f
, color_name
, color_def
, alloc
, 1);
1174 /* Given the index IDX of a tty color on frame F, return its name, a
1178 tty_color_name (struct frame
*f
, int idx
)
1180 if (idx
>= 0 && !NILP (Ffboundp (Qtty_color_by_index
)))
1183 Lisp_Object coldesc
;
1185 XSETFRAME (frame
, f
);
1186 coldesc
= call2 (Qtty_color_by_index
, make_number (idx
), frame
);
1188 if (!NILP (coldesc
))
1189 return XCAR (coldesc
);
1192 /* We can have an MSDOG frame under -nw for a short window of
1193 opportunity before internal_terminal_init is called. DTRT. */
1194 if (FRAME_MSDOS_P (f
) && !inhibit_window_system
)
1195 return msdos_stdcolor_name (idx
);
1198 if (idx
== FACE_TTY_DEFAULT_FG_COLOR
)
1199 return build_string (unspecified_fg
);
1200 if (idx
== FACE_TTY_DEFAULT_BG_COLOR
)
1201 return build_string (unspecified_bg
);
1203 return Qunspecified
;
1207 /* Return non-zero if COLOR_NAME is a shade of gray (or white or
1210 The criterion implemented here is not a terribly sophisticated one. */
1213 face_color_gray_p (struct frame
*f
, const char *color_name
)
1218 if (defined_color (f
, color_name
, &color
, 0))
1219 gray_p
= (/* Any color sufficiently close to black counts as grey. */
1220 (color
.red
< 5000 && color
.green
< 5000 && color
.blue
< 5000)
1222 ((eabs (color
.red
- color
.green
)
1223 < max (color
.red
, color
.green
) / 20)
1224 && (eabs (color
.green
- color
.blue
)
1225 < max (color
.green
, color
.blue
) / 20)
1226 && (eabs (color
.blue
- color
.red
)
1227 < max (color
.blue
, color
.red
) / 20)));
1235 /* Return non-zero if color COLOR_NAME can be displayed on frame F.
1236 BACKGROUND_P non-zero means the color will be used as background
1240 face_color_supported_p (struct frame
*f
, const char *color_name
, int background_p
)
1245 XSETFRAME (frame
, f
);
1247 #ifdef HAVE_WINDOW_SYSTEM
1249 ? (!NILP (Fxw_display_color_p (frame
))
1250 || xstrcasecmp (color_name
, "black") == 0
1251 || xstrcasecmp (color_name
, "white") == 0
1253 && face_color_gray_p (f
, color_name
))
1254 || (!NILP (Fx_display_grayscale_p (frame
))
1255 && face_color_gray_p (f
, color_name
)))
1258 tty_defined_color (f
, color_name
, ¬_used
, 0);
1262 DEFUN ("color-gray-p", Fcolor_gray_p
, Scolor_gray_p
, 1, 2, 0,
1263 doc
: /* Return non-nil if COLOR is a shade of gray (or white or black).
1264 FRAME specifies the frame and thus the display for interpreting COLOR.
1265 If FRAME is nil or omitted, use the selected frame. */)
1266 (Lisp_Object color
, Lisp_Object frame
)
1270 CHECK_STRING (color
);
1272 frame
= selected_frame
;
1274 CHECK_FRAME (frame
);
1276 return face_color_gray_p (f
, SSDATA (color
)) ? Qt
: Qnil
;
1280 DEFUN ("color-supported-p", Fcolor_supported_p
,
1281 Scolor_supported_p
, 1, 3, 0,
1282 doc
: /* Return non-nil if COLOR can be displayed on FRAME.
1283 BACKGROUND-P non-nil means COLOR is used as a background.
1284 Otherwise, this function tells whether it can be used as a foreground.
1285 If FRAME is nil or omitted, use the selected frame.
1286 COLOR must be a valid color name. */)
1287 (Lisp_Object color
, Lisp_Object frame
, Lisp_Object background_p
)
1291 CHECK_STRING (color
);
1293 frame
= selected_frame
;
1295 CHECK_FRAME (frame
);
1297 if (face_color_supported_p (f
, SSDATA (color
), !NILP (background_p
)))
1303 /* Load color with name NAME for use by face FACE on frame F.
1304 TARGET_INDEX must be one of LFACE_FOREGROUND_INDEX,
1305 LFACE_BACKGROUND_INDEX, LFACE_UNDERLINE_INDEX, LFACE_OVERLINE_INDEX,
1306 LFACE_STRIKE_THROUGH_INDEX, or LFACE_BOX_INDEX. Value is the
1307 pixel color. If color cannot be loaded, display a message, and
1308 return the foreground, background or underline color of F, but
1309 record that fact in flags of the face so that we don't try to free
1313 load_color (struct frame
*f
, struct face
*face
, Lisp_Object name
, enum lface_attribute_index target_index
)
1317 xassert (STRINGP (name
));
1318 xassert (target_index
== LFACE_FOREGROUND_INDEX
1319 || target_index
== LFACE_BACKGROUND_INDEX
1320 || target_index
== LFACE_UNDERLINE_INDEX
1321 || target_index
== LFACE_OVERLINE_INDEX
1322 || target_index
== LFACE_STRIKE_THROUGH_INDEX
1323 || target_index
== LFACE_BOX_INDEX
);
1325 /* if the color map is full, defined_color will return a best match
1326 to the values in an existing cell. */
1327 if (!defined_color (f
, SSDATA (name
), &color
, 1))
1329 add_to_log ("Unable to load color \"%s\"", name
, Qnil
);
1331 switch (target_index
)
1333 case LFACE_FOREGROUND_INDEX
:
1334 face
->foreground_defaulted_p
= 1;
1335 color
.pixel
= FRAME_FOREGROUND_PIXEL (f
);
1338 case LFACE_BACKGROUND_INDEX
:
1339 face
->background_defaulted_p
= 1;
1340 color
.pixel
= FRAME_BACKGROUND_PIXEL (f
);
1343 case LFACE_UNDERLINE_INDEX
:
1344 face
->underline_defaulted_p
= 1;
1345 color
.pixel
= FRAME_FOREGROUND_PIXEL (f
);
1348 case LFACE_OVERLINE_INDEX
:
1349 face
->overline_color_defaulted_p
= 1;
1350 color
.pixel
= FRAME_FOREGROUND_PIXEL (f
);
1353 case LFACE_STRIKE_THROUGH_INDEX
:
1354 face
->strike_through_color_defaulted_p
= 1;
1355 color
.pixel
= FRAME_FOREGROUND_PIXEL (f
);
1358 case LFACE_BOX_INDEX
:
1359 face
->box_color_defaulted_p
= 1;
1360 color
.pixel
= FRAME_FOREGROUND_PIXEL (f
);
1369 ++ncolors_allocated
;
1376 #ifdef HAVE_WINDOW_SYSTEM
1378 /* Load colors for face FACE which is used on frame F. Colors are
1379 specified by slots LFACE_BACKGROUND_INDEX and LFACE_FOREGROUND_INDEX
1380 of ATTRS. If the background color specified is not supported on F,
1381 try to emulate gray colors with a stipple from Vface_default_stipple. */
1384 load_face_colors (struct frame
*f
, struct face
*face
, Lisp_Object
*attrs
)
1388 bg
= attrs
[LFACE_BACKGROUND_INDEX
];
1389 fg
= attrs
[LFACE_FOREGROUND_INDEX
];
1391 /* Swap colors if face is inverse-video. */
1392 if (EQ (attrs
[LFACE_INVERSE_INDEX
], Qt
))
1400 /* Check for support for foreground, not for background because
1401 face_color_supported_p is smart enough to know that grays are
1402 "supported" as background because we are supposed to use stipple
1404 if (!face_color_supported_p (f
, SSDATA (bg
), 0)
1405 && !NILP (Fbitmap_spec_p (Vface_default_stipple
)))
1407 x_destroy_bitmap (f
, face
->stipple
);
1408 face
->stipple
= load_pixmap (f
, Vface_default_stipple
,
1409 &face
->pixmap_w
, &face
->pixmap_h
);
1412 face
->background
= load_color (f
, face
, bg
, LFACE_BACKGROUND_INDEX
);
1413 face
->foreground
= load_color (f
, face
, fg
, LFACE_FOREGROUND_INDEX
);
1417 /* Free color PIXEL on frame F. */
1420 unload_color (struct frame
*f
, long unsigned int pixel
)
1422 #ifdef HAVE_X_WINDOWS
1426 x_free_colors (f
, &pixel
, 1);
1433 /* Free colors allocated for FACE. */
1436 free_face_colors (struct frame
*f
, struct face
*face
)
1438 /* PENDING(NS): need to do something here? */
1439 #ifdef HAVE_X_WINDOWS
1440 if (face
->colors_copied_bitwise_p
)
1445 if (!face
->foreground_defaulted_p
)
1447 x_free_colors (f
, &face
->foreground
, 1);
1448 IF_DEBUG (--ncolors_allocated
);
1451 if (!face
->background_defaulted_p
)
1453 x_free_colors (f
, &face
->background
, 1);
1454 IF_DEBUG (--ncolors_allocated
);
1457 if (face
->underline_p
1458 && !face
->underline_defaulted_p
)
1460 x_free_colors (f
, &face
->underline_color
, 1);
1461 IF_DEBUG (--ncolors_allocated
);
1464 if (face
->overline_p
1465 && !face
->overline_color_defaulted_p
)
1467 x_free_colors (f
, &face
->overline_color
, 1);
1468 IF_DEBUG (--ncolors_allocated
);
1471 if (face
->strike_through_p
1472 && !face
->strike_through_color_defaulted_p
)
1474 x_free_colors (f
, &face
->strike_through_color
, 1);
1475 IF_DEBUG (--ncolors_allocated
);
1478 if (face
->box
!= FACE_NO_BOX
1479 && !face
->box_color_defaulted_p
)
1481 x_free_colors (f
, &face
->box_color
, 1);
1482 IF_DEBUG (--ncolors_allocated
);
1486 #endif /* HAVE_X_WINDOWS */
1489 #endif /* HAVE_WINDOW_SYSTEM */
1493 /***********************************************************************
1495 ***********************************************************************/
1497 /* An enumerator for each field of an XLFD font name. */
1518 /* An enumerator for each possible slant value of a font. Taken from
1519 the XLFD specification. */
1527 XLFD_SLANT_REVERSE_ITALIC
,
1528 XLFD_SLANT_REVERSE_OBLIQUE
,
1532 /* Relative font weight according to XLFD documentation. */
1536 XLFD_WEIGHT_UNKNOWN
,
1537 XLFD_WEIGHT_ULTRA_LIGHT
, /* 10 */
1538 XLFD_WEIGHT_EXTRA_LIGHT
, /* 20 */
1539 XLFD_WEIGHT_LIGHT
, /* 30 */
1540 XLFD_WEIGHT_SEMI_LIGHT
, /* 40: SemiLight, Book, ... */
1541 XLFD_WEIGHT_MEDIUM
, /* 50: Medium, Normal, Regular, ... */
1542 XLFD_WEIGHT_SEMI_BOLD
, /* 60: SemiBold, DemiBold, ... */
1543 XLFD_WEIGHT_BOLD
, /* 70: Bold, ... */
1544 XLFD_WEIGHT_EXTRA_BOLD
, /* 80: ExtraBold, Heavy, ... */
1545 XLFD_WEIGHT_ULTRA_BOLD
/* 90: UltraBold, Black, ... */
1548 /* Relative proportionate width. */
1552 XLFD_SWIDTH_UNKNOWN
,
1553 XLFD_SWIDTH_ULTRA_CONDENSED
, /* 10 */
1554 XLFD_SWIDTH_EXTRA_CONDENSED
, /* 20 */
1555 XLFD_SWIDTH_CONDENSED
, /* 30: Condensed, Narrow, Compressed, ... */
1556 XLFD_SWIDTH_SEMI_CONDENSED
, /* 40: semicondensed */
1557 XLFD_SWIDTH_MEDIUM
, /* 50: Medium, Normal, Regular, ... */
1558 XLFD_SWIDTH_SEMI_EXPANDED
, /* 60: SemiExpanded, DemiExpanded, ... */
1559 XLFD_SWIDTH_EXPANDED
, /* 70: Expanded... */
1560 XLFD_SWIDTH_EXTRA_EXPANDED
, /* 80: ExtraExpanded, Wide... */
1561 XLFD_SWIDTH_ULTRA_EXPANDED
/* 90: UltraExpanded... */
1564 /* Order by which font selection chooses fonts. The default values
1565 mean `first, find a best match for the font width, then for the
1566 font height, then for weight, then for slant.' This variable can be
1567 set via set-face-font-sort-order. */
1569 static int font_sort_order
[4];
1571 #ifdef HAVE_WINDOW_SYSTEM
1573 static enum font_property_index font_props_for_sorting
[FONT_SIZE_INDEX
];
1576 compare_fonts_by_sort_order (const void *v1
, const void *v2
)
1578 Lisp_Object font1
= *(Lisp_Object
*) v1
;
1579 Lisp_Object font2
= *(Lisp_Object
*) v2
;
1582 for (i
= 0; i
< FONT_SIZE_INDEX
; i
++)
1584 enum font_property_index idx
= font_props_for_sorting
[i
];
1585 Lisp_Object val1
= AREF (font1
, idx
), val2
= AREF (font2
, idx
);
1588 if (idx
<= FONT_REGISTRY_INDEX
)
1591 result
= STRINGP (val2
) ? strcmp (SSDATA (val1
), SSDATA (val2
)) : -1;
1593 result
= STRINGP (val2
) ? 1 : 0;
1597 if (INTEGERP (val1
))
1598 result
= INTEGERP (val2
) ? XINT (val1
) - XINT (val2
) : -1;
1600 result
= INTEGERP (val2
) ? 1 : 0;
1608 DEFUN ("x-family-fonts", Fx_family_fonts
, Sx_family_fonts
, 0, 2, 0,
1609 doc
: /* Return a list of available fonts of family FAMILY on FRAME.
1610 If FAMILY is omitted or nil, list all families.
1611 Otherwise, FAMILY must be a string, possibly containing wildcards
1613 If FRAME is omitted or nil, use the selected frame.
1614 Each element of the result is a vector [FAMILY WIDTH POINT-SIZE WEIGHT
1615 SLANT FIXED-P FULL REGISTRY-AND-ENCODING].
1616 FAMILY is the font family name. POINT-SIZE is the size of the
1617 font in 1/10 pt. WIDTH, WEIGHT, and SLANT are symbols describing the
1618 width, weight and slant of the font. These symbols are the same as for
1619 face attributes. FIXED-P is non-nil if the font is fixed-pitch.
1620 FULL is the full name of the font, and REGISTRY-AND-ENCODING is a string
1621 giving the registry and encoding of the font.
1622 The result list is sorted according to the current setting of
1623 the face font sort order. */)
1624 (Lisp_Object family
, Lisp_Object frame
)
1626 Lisp_Object font_spec
, list
, *drivers
, vec
;
1627 int i
, nfonts
, ndrivers
;
1631 frame
= selected_frame
;
1632 CHECK_LIVE_FRAME (frame
);
1634 font_spec
= Ffont_spec (0, NULL
);
1637 CHECK_STRING (family
);
1638 font_parse_family_registry (family
, Qnil
, font_spec
);
1641 list
= font_list_entities (frame
, font_spec
);
1645 /* Sort the font entities. */
1646 for (i
= 0; i
< 4; i
++)
1647 switch (font_sort_order
[i
])
1650 font_props_for_sorting
[i
] = FONT_WIDTH_INDEX
; break;
1651 case XLFD_POINT_SIZE
:
1652 font_props_for_sorting
[i
] = FONT_SIZE_INDEX
; break;
1654 font_props_for_sorting
[i
] = FONT_WEIGHT_INDEX
; break;
1656 font_props_for_sorting
[i
] = FONT_SLANT_INDEX
; break;
1658 font_props_for_sorting
[i
++] = FONT_FAMILY_INDEX
;
1659 font_props_for_sorting
[i
++] = FONT_FOUNDRY_INDEX
;
1660 font_props_for_sorting
[i
++] = FONT_ADSTYLE_INDEX
;
1661 font_props_for_sorting
[i
++] = FONT_REGISTRY_INDEX
;
1663 ndrivers
= XINT (Flength (list
));
1664 drivers
= alloca (sizeof (Lisp_Object
) * ndrivers
);
1665 for (i
= 0; i
< ndrivers
; i
++, list
= XCDR (list
))
1666 drivers
[i
] = XCAR (list
);
1667 vec
= Fvconcat (ndrivers
, drivers
);
1668 nfonts
= ASIZE (vec
);
1670 qsort (XVECTOR (vec
)->contents
, nfonts
, sizeof (Lisp_Object
),
1671 compare_fonts_by_sort_order
);
1674 for (i
= nfonts
- 1; i
>= 0; --i
)
1676 Lisp_Object font
= AREF (vec
, i
);
1677 Lisp_Object v
= Fmake_vector (make_number (8), Qnil
);
1679 Lisp_Object spacing
;
1681 ASET (v
, 0, AREF (font
, FONT_FAMILY_INDEX
));
1682 ASET (v
, 1, FONT_WIDTH_SYMBOLIC (font
));
1683 point
= PIXEL_TO_POINT (XINT (AREF (font
, FONT_SIZE_INDEX
)) * 10,
1684 XFRAME (frame
)->resy
);
1685 ASET (v
, 2, make_number (point
));
1686 ASET (v
, 3, FONT_WEIGHT_SYMBOLIC (font
));
1687 ASET (v
, 4, FONT_SLANT_SYMBOLIC (font
));
1688 spacing
= Ffont_get (font
, QCspacing
);
1689 ASET (v
, 5, (NILP (spacing
) || EQ (spacing
, Qp
)) ? Qnil
: Qt
);
1690 ASET (v
, 6, Ffont_xlfd_name (font
, Qnil
));
1691 ASET (v
, 7, AREF (font
, FONT_REGISTRY_INDEX
));
1693 result
= Fcons (v
, result
);
1699 DEFUN ("x-list-fonts", Fx_list_fonts
, Sx_list_fonts
, 1, 5, 0,
1700 doc
: /* Return a list of the names of available fonts matching PATTERN.
1701 If optional arguments FACE and FRAME are specified, return only fonts
1702 the same size as FACE on FRAME.
1704 PATTERN should be a string containing a font name in the XLFD,
1705 Fontconfig, or GTK format. A font name given in the XLFD format may
1706 contain wildcard characters:
1707 the * character matches any substring, and
1708 the ? character matches any single character.
1709 PATTERN is case-insensitive.
1711 The return value is a list of strings, suitable as arguments to
1714 Fonts Emacs can't use may or may not be excluded
1715 even if they match PATTERN and FACE.
1716 The optional fourth argument MAXIMUM sets a limit on how many
1717 fonts to match. The first MAXIMUM fonts are reported.
1718 The optional fifth argument WIDTH, if specified, is a number of columns
1719 occupied by a character of a font. In that case, return only fonts
1720 the WIDTH times as wide as FACE on FRAME. */)
1721 (Lisp_Object pattern
, Lisp_Object face
, Lisp_Object frame
, Lisp_Object maximum
, Lisp_Object width
)
1727 CHECK_STRING (pattern
);
1729 if (! NILP (maximum
))
1730 CHECK_NATNUM (maximum
);
1733 CHECK_NUMBER (width
);
1735 /* We can't simply call check_x_frame because this function may be
1736 called before any frame is created. */
1738 frame
= selected_frame
;
1739 f
= frame_or_selected_frame (frame
, 2);
1740 if (! FRAME_WINDOW_P (f
))
1742 /* Perhaps we have not yet created any frame. */
1748 /* Determine the width standard for comparison with the fonts we find. */
1754 /* This is of limited utility since it works with character
1755 widths. Keep it for compatibility. --gerd. */
1756 int face_id
= lookup_named_face (f
, face
, 0);
1757 struct face
*face
= (face_id
< 0
1759 : FACE_FROM_ID (f
, face_id
));
1761 if (face
&& face
->font
)
1763 size
= face
->font
->pixel_size
;
1764 avgwidth
= face
->font
->average_width
;
1768 size
= FRAME_FONT (f
)->pixel_size
;
1769 avgwidth
= FRAME_FONT (f
)->average_width
;
1772 avgwidth
*= XINT (width
);
1776 Lisp_Object font_spec
;
1777 Lisp_Object args
[2], tail
;
1779 font_spec
= font_spec_from_name (pattern
);
1780 if (!FONTP (font_spec
))
1781 signal_error ("Invalid font name", pattern
);
1785 Ffont_put (font_spec
, QCsize
, make_number (size
));
1786 Ffont_put (font_spec
, QCavgwidth
, make_number (avgwidth
));
1788 args
[0] = Flist_fonts (font_spec
, frame
, maximum
, font_spec
);
1789 for (tail
= args
[0]; CONSP (tail
); tail
= XCDR (tail
))
1791 Lisp_Object font_entity
;
1793 font_entity
= XCAR (tail
);
1794 if ((NILP (AREF (font_entity
, FONT_SIZE_INDEX
))
1795 || XINT (AREF (font_entity
, FONT_SIZE_INDEX
)) == 0)
1796 && ! NILP (AREF (font_spec
, FONT_SIZE_INDEX
)))
1798 /* This is a scalable font. For backward compatibility,
1799 we set the specified size. */
1800 font_entity
= Fcopy_font_spec (font_entity
);
1801 ASET (font_entity
, FONT_SIZE_INDEX
,
1802 AREF (font_spec
, FONT_SIZE_INDEX
));
1804 XSETCAR (tail
, Ffont_xlfd_name (font_entity
, Qnil
));
1807 /* We don't have to check fontsets. */
1809 args
[1] = list_fontsets (f
, pattern
, size
);
1810 return Fnconc (2, args
);
1814 #endif /* HAVE_WINDOW_SYSTEM */
1817 /***********************************************************************
1819 ***********************************************************************/
1821 /* Access face attributes of face LFACE, a Lisp vector. */
1823 #define LFACE_FAMILY(LFACE) AREF ((LFACE), LFACE_FAMILY_INDEX)
1824 #define LFACE_FOUNDRY(LFACE) AREF ((LFACE), LFACE_FOUNDRY_INDEX)
1825 #define LFACE_HEIGHT(LFACE) AREF ((LFACE), LFACE_HEIGHT_INDEX)
1826 #define LFACE_WEIGHT(LFACE) AREF ((LFACE), LFACE_WEIGHT_INDEX)
1827 #define LFACE_SLANT(LFACE) AREF ((LFACE), LFACE_SLANT_INDEX)
1828 #define LFACE_UNDERLINE(LFACE) AREF ((LFACE), LFACE_UNDERLINE_INDEX)
1829 #define LFACE_INVERSE(LFACE) AREF ((LFACE), LFACE_INVERSE_INDEX)
1830 #define LFACE_FOREGROUND(LFACE) AREF ((LFACE), LFACE_FOREGROUND_INDEX)
1831 #define LFACE_BACKGROUND(LFACE) AREF ((LFACE), LFACE_BACKGROUND_INDEX)
1832 #define LFACE_STIPPLE(LFACE) AREF ((LFACE), LFACE_STIPPLE_INDEX)
1833 #define LFACE_SWIDTH(LFACE) AREF ((LFACE), LFACE_SWIDTH_INDEX)
1834 #define LFACE_OVERLINE(LFACE) AREF ((LFACE), LFACE_OVERLINE_INDEX)
1835 #define LFACE_STRIKE_THROUGH(LFACE) AREF ((LFACE), LFACE_STRIKE_THROUGH_INDEX)
1836 #define LFACE_BOX(LFACE) AREF ((LFACE), LFACE_BOX_INDEX)
1837 #define LFACE_FONT(LFACE) AREF ((LFACE), LFACE_FONT_INDEX)
1838 #define LFACE_INHERIT(LFACE) AREF ((LFACE), LFACE_INHERIT_INDEX)
1839 #define LFACE_FONTSET(LFACE) AREF ((LFACE), LFACE_FONTSET_INDEX)
1841 /* Non-zero if LFACE is a Lisp face. A Lisp face is a vector of size
1842 LFACE_VECTOR_SIZE which has the symbol `face' in slot 0. */
1844 #define LFACEP(LFACE) \
1846 && XVECTOR (LFACE)->size == LFACE_VECTOR_SIZE \
1847 && EQ (AREF (LFACE, 0), Qface))
1852 /* Check consistency of Lisp face attribute vector ATTRS. */
1855 check_lface_attrs (attrs
)
1858 xassert (UNSPECIFIEDP (attrs
[LFACE_FAMILY_INDEX
])
1859 || IGNORE_DEFFACE_P (attrs
[LFACE_FAMILY_INDEX
])
1860 || STRINGP (attrs
[LFACE_FAMILY_INDEX
]));
1861 xassert (UNSPECIFIEDP (attrs
[LFACE_FOUNDRY_INDEX
])
1862 || IGNORE_DEFFACE_P (attrs
[LFACE_FOUNDRY_INDEX
])
1863 || STRINGP (attrs
[LFACE_FOUNDRY_INDEX
]));
1864 xassert (UNSPECIFIEDP (attrs
[LFACE_SWIDTH_INDEX
])
1865 || IGNORE_DEFFACE_P (attrs
[LFACE_SWIDTH_INDEX
])
1866 || SYMBOLP (attrs
[LFACE_SWIDTH_INDEX
]));
1867 xassert (UNSPECIFIEDP (attrs
[LFACE_HEIGHT_INDEX
])
1868 || IGNORE_DEFFACE_P (attrs
[LFACE_HEIGHT_INDEX
])
1869 || INTEGERP (attrs
[LFACE_HEIGHT_INDEX
])
1870 || FLOATP (attrs
[LFACE_HEIGHT_INDEX
])
1871 || FUNCTIONP (attrs
[LFACE_HEIGHT_INDEX
]));
1872 xassert (UNSPECIFIEDP (attrs
[LFACE_WEIGHT_INDEX
])
1873 || IGNORE_DEFFACE_P (attrs
[LFACE_WEIGHT_INDEX
])
1874 || SYMBOLP (attrs
[LFACE_WEIGHT_INDEX
]));
1875 xassert (UNSPECIFIEDP (attrs
[LFACE_SLANT_INDEX
])
1876 || IGNORE_DEFFACE_P (attrs
[LFACE_SLANT_INDEX
])
1877 || SYMBOLP (attrs
[LFACE_SLANT_INDEX
]));
1878 xassert (UNSPECIFIEDP (attrs
[LFACE_UNDERLINE_INDEX
])
1879 || IGNORE_DEFFACE_P (attrs
[LFACE_UNDERLINE_INDEX
])
1880 || SYMBOLP (attrs
[LFACE_UNDERLINE_INDEX
])
1881 || STRINGP (attrs
[LFACE_UNDERLINE_INDEX
]));
1882 xassert (UNSPECIFIEDP (attrs
[LFACE_OVERLINE_INDEX
])
1883 || IGNORE_DEFFACE_P (attrs
[LFACE_OVERLINE_INDEX
])
1884 || SYMBOLP (attrs
[LFACE_OVERLINE_INDEX
])
1885 || STRINGP (attrs
[LFACE_OVERLINE_INDEX
]));
1886 xassert (UNSPECIFIEDP (attrs
[LFACE_STRIKE_THROUGH_INDEX
])
1887 || IGNORE_DEFFACE_P (attrs
[LFACE_STRIKE_THROUGH_INDEX
])
1888 || SYMBOLP (attrs
[LFACE_STRIKE_THROUGH_INDEX
])
1889 || STRINGP (attrs
[LFACE_STRIKE_THROUGH_INDEX
]));
1890 xassert (UNSPECIFIEDP (attrs
[LFACE_BOX_INDEX
])
1891 || IGNORE_DEFFACE_P (attrs
[LFACE_BOX_INDEX
])
1892 || SYMBOLP (attrs
[LFACE_BOX_INDEX
])
1893 || STRINGP (attrs
[LFACE_BOX_INDEX
])
1894 || INTEGERP (attrs
[LFACE_BOX_INDEX
])
1895 || CONSP (attrs
[LFACE_BOX_INDEX
]));
1896 xassert (UNSPECIFIEDP (attrs
[LFACE_INVERSE_INDEX
])
1897 || IGNORE_DEFFACE_P (attrs
[LFACE_INVERSE_INDEX
])
1898 || SYMBOLP (attrs
[LFACE_INVERSE_INDEX
]));
1899 xassert (UNSPECIFIEDP (attrs
[LFACE_FOREGROUND_INDEX
])
1900 || IGNORE_DEFFACE_P (attrs
[LFACE_FOREGROUND_INDEX
])
1901 || STRINGP (attrs
[LFACE_FOREGROUND_INDEX
]));
1902 xassert (UNSPECIFIEDP (attrs
[LFACE_BACKGROUND_INDEX
])
1903 || IGNORE_DEFFACE_P (attrs
[LFACE_BACKGROUND_INDEX
])
1904 || STRINGP (attrs
[LFACE_BACKGROUND_INDEX
]));
1905 xassert (UNSPECIFIEDP (attrs
[LFACE_INHERIT_INDEX
])
1906 || IGNORE_DEFFACE_P (attrs
[LFACE_INHERIT_INDEX
])
1907 || NILP (attrs
[LFACE_INHERIT_INDEX
])
1908 || SYMBOLP (attrs
[LFACE_INHERIT_INDEX
])
1909 || CONSP (attrs
[LFACE_INHERIT_INDEX
]));
1910 #ifdef HAVE_WINDOW_SYSTEM
1911 xassert (UNSPECIFIEDP (attrs
[LFACE_STIPPLE_INDEX
])
1912 || IGNORE_DEFFACE_P (attrs
[LFACE_STIPPLE_INDEX
])
1913 || SYMBOLP (attrs
[LFACE_STIPPLE_INDEX
])
1914 || !NILP (Fbitmap_spec_p (attrs
[LFACE_STIPPLE_INDEX
])));
1915 xassert (UNSPECIFIEDP (attrs
[LFACE_FONT_INDEX
])
1916 || IGNORE_DEFFACE_P (attrs
[LFACE_FONT_INDEX
])
1917 || FONTP (attrs
[LFACE_FONT_INDEX
]));
1918 xassert (UNSPECIFIEDP (attrs
[LFACE_FONTSET_INDEX
])
1919 || STRINGP (attrs
[LFACE_FONTSET_INDEX
]));
1924 /* Check consistency of attributes of Lisp face LFACE (a Lisp vector). */
1932 xassert (LFACEP (lface
));
1933 check_lface_attrs (XVECTOR (lface
)->contents
);
1937 #else /* GLYPH_DEBUG == 0 */
1939 #define check_lface_attrs(attrs) (void) 0
1940 #define check_lface(lface) (void) 0
1942 #endif /* GLYPH_DEBUG == 0 */
1946 /* Face-merge cycle checking. */
1948 enum named_merge_point_kind
1950 NAMED_MERGE_POINT_NORMAL
,
1951 NAMED_MERGE_POINT_REMAP
1954 /* A `named merge point' is simply a point during face-merging where we
1955 look up a face by name. We keep a stack of which named lookups we're
1956 currently processing so that we can easily detect cycles, using a
1957 linked- list of struct named_merge_point structures, typically
1958 allocated on the stack frame of the named lookup functions which are
1959 active (so no consing is required). */
1960 struct named_merge_point
1962 Lisp_Object face_name
;
1963 enum named_merge_point_kind named_merge_point_kind
;
1964 struct named_merge_point
*prev
;
1968 /* If a face merging cycle is detected for FACE_NAME, return 0,
1969 otherwise add NEW_NAMED_MERGE_POINT, which is initialized using
1970 FACE_NAME and NAMED_MERGE_POINT_KIND, as the head of the linked list
1971 pointed to by NAMED_MERGE_POINTS, and return 1. */
1974 push_named_merge_point (struct named_merge_point
*new_named_merge_point
,
1975 Lisp_Object face_name
,
1976 enum named_merge_point_kind named_merge_point_kind
,
1977 struct named_merge_point
**named_merge_points
)
1979 struct named_merge_point
*prev
;
1981 for (prev
= *named_merge_points
; prev
; prev
= prev
->prev
)
1982 if (EQ (face_name
, prev
->face_name
))
1984 if (prev
->named_merge_point_kind
== named_merge_point_kind
)
1985 /* A cycle, so fail. */
1987 else if (prev
->named_merge_point_kind
== NAMED_MERGE_POINT_REMAP
)
1988 /* A remap `hides ' any previous normal merge points
1989 (because the remap means that it's actually different face),
1990 so as we know the current merge point must be normal, we
1991 can just assume it's OK. */
1995 new_named_merge_point
->face_name
= face_name
;
1996 new_named_merge_point
->named_merge_point_kind
= named_merge_point_kind
;
1997 new_named_merge_point
->prev
= *named_merge_points
;
1999 *named_merge_points
= new_named_merge_point
;
2006 #if 0 /* Seems to be unused. */
2008 internal_resolve_face_name (nargs
, args
)
2012 return Fget (args
[0], args
[1]);
2016 resolve_face_name_error (ignore
)
2023 /* Resolve face name FACE_NAME. If FACE_NAME is a string, intern it
2024 to make it a symbol. If FACE_NAME is an alias for another face,
2025 return that face's name.
2027 Return default face in case of errors. */
2030 resolve_face_name (Lisp_Object face_name
, int signal_p
)
2032 Lisp_Object orig_face
;
2033 Lisp_Object tortoise
, hare
;
2035 if (STRINGP (face_name
))
2036 face_name
= intern (SSDATA (face_name
));
2038 if (NILP (face_name
) || !SYMBOLP (face_name
))
2041 orig_face
= face_name
;
2042 tortoise
= hare
= face_name
;
2047 hare
= Fget (hare
, Qface_alias
);
2048 if (NILP (hare
) || !SYMBOLP (hare
))
2052 hare
= Fget (hare
, Qface_alias
);
2053 if (NILP (hare
) || !SYMBOLP (hare
))
2056 tortoise
= Fget (tortoise
, Qface_alias
);
2057 if (EQ (hare
, tortoise
))
2060 xsignal1 (Qcircular_list
, orig_face
);
2069 /* Return the face definition of FACE_NAME on frame F. F null means
2070 return the definition for new frames. FACE_NAME may be a string or
2071 a symbol (apparently Emacs 20.2 allowed strings as face names in
2072 face text properties; Ediff uses that). If SIGNAL_P is non-zero,
2073 signal an error if FACE_NAME is not a valid face name. If SIGNAL_P
2074 is zero, value is nil if FACE_NAME is not a valid face name. */
2075 static INLINE Lisp_Object
2076 lface_from_face_name_no_resolve (struct frame
*f
, Lisp_Object face_name
, int signal_p
)
2081 lface
= assq_no_quit (face_name
, f
->face_alist
);
2083 lface
= assq_no_quit (face_name
, Vface_new_frame_defaults
);
2086 lface
= XCDR (lface
);
2088 signal_error ("Invalid face", face_name
);
2090 check_lface (lface
);
2095 /* Return the face definition of FACE_NAME on frame F. F null means
2096 return the definition for new frames. FACE_NAME may be a string or
2097 a symbol (apparently Emacs 20.2 allowed strings as face names in
2098 face text properties; Ediff uses that). If FACE_NAME is an alias
2099 for another face, return that face's definition. If SIGNAL_P is
2100 non-zero, signal an error if FACE_NAME is not a valid face name.
2101 If SIGNAL_P is zero, value is nil if FACE_NAME is not a valid face
2103 static INLINE Lisp_Object
2104 lface_from_face_name (struct frame
*f
, Lisp_Object face_name
, int signal_p
)
2106 face_name
= resolve_face_name (face_name
, signal_p
);
2107 return lface_from_face_name_no_resolve (f
, face_name
, signal_p
);
2111 /* Get face attributes of face FACE_NAME from frame-local faces on
2112 frame F. Store the resulting attributes in ATTRS which must point
2113 to a vector of Lisp_Objects of size LFACE_VECTOR_SIZE. If SIGNAL_P
2114 is non-zero, signal an error if FACE_NAME does not name a face.
2115 Otherwise, value is zero if FACE_NAME is not a face. */
2118 get_lface_attributes_no_remap (struct frame
*f
, Lisp_Object face_name
, Lisp_Object
*attrs
, int signal_p
)
2122 lface
= lface_from_face_name_no_resolve (f
, face_name
, signal_p
);
2125 memcpy (attrs
, XVECTOR (lface
)->contents
,
2126 LFACE_VECTOR_SIZE
* sizeof *attrs
);
2128 return !NILP (lface
);
2131 /* Get face attributes of face FACE_NAME from frame-local faces on frame
2132 F. Store the resulting attributes in ATTRS which must point to a
2133 vector of Lisp_Objects of size LFACE_VECTOR_SIZE. If FACE_NAME is an
2134 alias for another face, use that face's definition. If SIGNAL_P is
2135 non-zero, signal an error if FACE_NAME does not name a face.
2136 Otherwise, value is zero if FACE_NAME is not a face. */
2139 get_lface_attributes (struct frame
*f
, Lisp_Object face_name
, Lisp_Object
*attrs
, int signal_p
, struct named_merge_point
*named_merge_points
)
2141 Lisp_Object face_remapping
;
2143 face_name
= resolve_face_name (face_name
, signal_p
);
2145 /* See if SYMBOL has been remapped to some other face (usually this
2146 is done buffer-locally). */
2147 face_remapping
= assq_no_quit (face_name
, Vface_remapping_alist
);
2148 if (CONSP (face_remapping
))
2150 struct named_merge_point named_merge_point
;
2152 if (push_named_merge_point (&named_merge_point
,
2153 face_name
, NAMED_MERGE_POINT_REMAP
,
2154 &named_merge_points
))
2158 for (i
= 1; i
< LFACE_VECTOR_SIZE
; ++i
)
2159 attrs
[i
] = Qunspecified
;
2161 return merge_face_ref (f
, XCDR (face_remapping
), attrs
,
2162 signal_p
, named_merge_points
);
2166 /* Default case, no remapping. */
2167 return get_lface_attributes_no_remap (f
, face_name
, attrs
, signal_p
);
2171 /* Non-zero if all attributes in face attribute vector ATTRS are
2172 specified, i.e. are non-nil. */
2175 lface_fully_specified_p (Lisp_Object
*attrs
)
2179 for (i
= 1; i
< LFACE_VECTOR_SIZE
; ++i
)
2180 if (i
!= LFACE_FONT_INDEX
&& i
!= LFACE_INHERIT_INDEX
)
2181 if ((UNSPECIFIEDP (attrs
[i
]) || IGNORE_DEFFACE_P (attrs
[i
])))
2184 return i
== LFACE_VECTOR_SIZE
;
2187 #ifdef HAVE_WINDOW_SYSTEM
2189 /* Set font-related attributes of Lisp face LFACE from FONT-OBJECT.
2190 If FORCE_P is zero, set only unspecified attributes of LFACE. The
2191 exception is `font' attribute. It is set to FONT_OBJECT regardless
2195 set_lface_from_font (struct frame
*f
, Lisp_Object lface
, Lisp_Object font_object
, int force_p
)
2198 struct font
*font
= XFONT_OBJECT (font_object
);
2200 /* Set attributes only if unspecified, otherwise face defaults for
2201 new frames would never take effect. If the font doesn't have a
2202 specific property, set a normal value for that. */
2204 if (force_p
|| UNSPECIFIEDP (LFACE_FAMILY (lface
)))
2206 Lisp_Object family
= AREF (font_object
, FONT_FAMILY_INDEX
);
2208 LFACE_FAMILY (lface
) = SYMBOL_NAME (family
);
2211 if (force_p
|| UNSPECIFIEDP (LFACE_FOUNDRY (lface
)))
2213 Lisp_Object foundry
= AREF (font_object
, FONT_FOUNDRY_INDEX
);
2215 LFACE_FOUNDRY (lface
) = SYMBOL_NAME (foundry
);
2218 if (force_p
|| UNSPECIFIEDP (LFACE_HEIGHT (lface
)))
2220 int pt
= PIXEL_TO_POINT (font
->pixel_size
* 10, f
->resy
);
2223 LFACE_HEIGHT (lface
) = make_number (pt
);
2226 if (force_p
|| UNSPECIFIEDP (LFACE_WEIGHT (lface
)))
2228 val
= FONT_WEIGHT_FOR_FACE (font_object
);
2229 LFACE_WEIGHT (lface
) = ! NILP (val
) ? val
:Qnormal
;
2231 if (force_p
|| UNSPECIFIEDP (LFACE_SLANT (lface
)))
2233 val
= FONT_SLANT_FOR_FACE (font_object
);
2234 LFACE_SLANT (lface
) = ! NILP (val
) ? val
: Qnormal
;
2236 if (force_p
|| UNSPECIFIEDP (LFACE_SWIDTH (lface
)))
2238 val
= FONT_WIDTH_FOR_FACE (font_object
);
2239 LFACE_SWIDTH (lface
) = ! NILP (val
) ? val
: Qnormal
;
2242 LFACE_FONT (lface
) = font_object
;
2246 #endif /* HAVE_WINDOW_SYSTEM */
2249 /* Merges the face height FROM with the face height TO, and returns the
2250 merged height. If FROM is an invalid height, then INVALID is
2251 returned instead. FROM and TO may be either absolute face heights or
2252 `relative' heights; the returned value is always an absolute height
2253 unless both FROM and TO are relative. */
2256 merge_face_heights (Lisp_Object from
, Lisp_Object to
, Lisp_Object invalid
)
2258 Lisp_Object result
= invalid
;
2260 if (INTEGERP (from
))
2261 /* FROM is absolute, just use it as is. */
2263 else if (FLOATP (from
))
2264 /* FROM is a scale, use it to adjust TO. */
2267 /* relative X absolute => absolute */
2268 result
= make_number ((EMACS_INT
)(XFLOAT_DATA (from
) * XINT (to
)));
2269 else if (FLOATP (to
))
2270 /* relative X relative => relative */
2271 result
= make_float (XFLOAT_DATA (from
) * XFLOAT_DATA (to
));
2272 else if (UNSPECIFIEDP (to
))
2275 else if (FUNCTIONP (from
))
2276 /* FROM is a function, which use to adjust TO. */
2278 /* Call function with current height as argument.
2279 From is the new height. */
2280 Lisp_Object args
[2];
2284 result
= safe_call (2, args
);
2286 /* Ensure that if TO was absolute, so is the result. */
2287 if (INTEGERP (to
) && !INTEGERP (result
))
2295 /* Merge two Lisp face attribute vectors on frame F, FROM and TO, and
2296 store the resulting attributes in TO, which must be already be
2297 completely specified and contain only absolute attributes. Every
2298 specified attribute of FROM overrides the corresponding attribute of
2299 TO; relative attributes in FROM are merged with the absolute value in
2300 TO and replace it. NAMED_MERGE_POINTS is used internally to detect
2301 loops in face inheritance/remapping; it should be 0 when called from
2305 merge_face_vectors (struct frame
*f
, Lisp_Object
*from
, Lisp_Object
*to
, struct named_merge_point
*named_merge_points
)
2309 /* If FROM inherits from some other faces, merge their attributes into
2310 TO before merging FROM's direct attributes. Note that an :inherit
2311 attribute of `unspecified' is the same as one of nil; we never
2312 merge :inherit attributes, so nil is more correct, but lots of
2313 other code uses `unspecified' as a generic value for face attributes. */
2314 if (!UNSPECIFIEDP (from
[LFACE_INHERIT_INDEX
])
2315 && !NILP (from
[LFACE_INHERIT_INDEX
]))
2316 merge_face_ref (f
, from
[LFACE_INHERIT_INDEX
], to
, 0, named_merge_points
);
2318 i
= LFACE_FONT_INDEX
;
2319 if (!UNSPECIFIEDP (from
[i
]))
2321 if (!UNSPECIFIEDP (to
[i
]))
2322 to
[i
] = Fmerge_font_spec (from
[i
], to
[i
]);
2324 to
[i
] = Fcopy_font_spec (from
[i
]);
2325 if (! NILP (AREF (to
[i
], FONT_FOUNDRY_INDEX
)))
2326 to
[LFACE_FOUNDRY_INDEX
] = SYMBOL_NAME (AREF (to
[i
], FONT_FOUNDRY_INDEX
));
2327 if (! NILP (AREF (to
[i
], FONT_FAMILY_INDEX
)))
2328 to
[LFACE_FAMILY_INDEX
] = SYMBOL_NAME (AREF (to
[i
], FONT_FAMILY_INDEX
));
2329 if (! NILP (AREF (to
[i
], FONT_WEIGHT_INDEX
)))
2330 to
[LFACE_WEIGHT_INDEX
] = FONT_WEIGHT_FOR_FACE (to
[i
]);
2331 if (! NILP (AREF (to
[i
], FONT_SLANT_INDEX
)))
2332 to
[LFACE_SLANT_INDEX
] = FONT_SLANT_FOR_FACE (to
[i
]);
2333 if (! NILP (AREF (to
[i
], FONT_WIDTH_INDEX
)))
2334 to
[LFACE_SWIDTH_INDEX
] = FONT_WIDTH_FOR_FACE (to
[i
]);
2335 ASET (to
[i
], FONT_SIZE_INDEX
, Qnil
);
2338 for (i
= 1; i
< LFACE_VECTOR_SIZE
; ++i
)
2339 if (!UNSPECIFIEDP (from
[i
]))
2341 if (i
== LFACE_HEIGHT_INDEX
&& !INTEGERP (from
[i
]))
2343 to
[i
] = merge_face_heights (from
[i
], to
[i
], to
[i
]);
2344 font_clear_prop (to
, FONT_SIZE_INDEX
);
2346 else if (i
!= LFACE_FONT_INDEX
2347 && ! EQ (to
[i
], from
[i
]))
2350 if (i
>= LFACE_FAMILY_INDEX
&& i
<=LFACE_SLANT_INDEX
)
2351 font_clear_prop (to
,
2352 (i
== LFACE_FAMILY_INDEX
? FONT_FAMILY_INDEX
2353 : i
== LFACE_FOUNDRY_INDEX
? FONT_FOUNDRY_INDEX
2354 : i
== LFACE_SWIDTH_INDEX
? FONT_WIDTH_INDEX
2355 : i
== LFACE_HEIGHT_INDEX
? FONT_SIZE_INDEX
2356 : i
== LFACE_WEIGHT_INDEX
? FONT_WEIGHT_INDEX
2357 : FONT_SLANT_INDEX
));
2361 /* TO is always an absolute face, which should inherit from nothing.
2362 We blindly copy the :inherit attribute above and fix it up here. */
2363 to
[LFACE_INHERIT_INDEX
] = Qnil
;
2366 /* Merge the named face FACE_NAME on frame F, into the vector of face
2367 attributes TO. NAMED_MERGE_POINTS is used to detect loops in face
2368 inheritance. Returns true if FACE_NAME is a valid face name and
2369 merging succeeded. */
2372 merge_named_face (struct frame
*f
, Lisp_Object face_name
, Lisp_Object
*to
, struct named_merge_point
*named_merge_points
)
2374 struct named_merge_point named_merge_point
;
2376 if (push_named_merge_point (&named_merge_point
,
2377 face_name
, NAMED_MERGE_POINT_NORMAL
,
2378 &named_merge_points
))
2380 struct gcpro gcpro1
;
2381 Lisp_Object from
[LFACE_VECTOR_SIZE
];
2382 int ok
= get_lface_attributes (f
, face_name
, from
, 0, named_merge_points
);
2386 GCPRO1 (named_merge_point
.face_name
);
2387 merge_face_vectors (f
, from
, to
, named_merge_points
);
2398 /* Merge face attributes from the lisp `face reference' FACE_REF on
2399 frame F into the face attribute vector TO. If ERR_MSGS is non-zero,
2400 problems with FACE_REF cause an error message to be shown. Return
2401 non-zero if no errors occurred (regardless of the value of ERR_MSGS).
2402 NAMED_MERGE_POINTS is used to detect loops in face inheritance or
2403 list structure; it may be 0 for most callers.
2405 FACE_REF may be a single face specification or a list of such
2406 specifications. Each face specification can be:
2408 1. A symbol or string naming a Lisp face.
2410 2. A property list of the form (KEYWORD VALUE ...) where each
2411 KEYWORD is a face attribute name, and value is an appropriate value
2414 3. Conses or the form (FOREGROUND-COLOR . COLOR) or
2415 (BACKGROUND-COLOR . COLOR) where COLOR is a color name. This is
2416 for compatibility with 20.2.
2418 Face specifications earlier in lists take precedence over later
2422 merge_face_ref (struct frame
*f
, Lisp_Object face_ref
, Lisp_Object
*to
, int err_msgs
, struct named_merge_point
*named_merge_points
)
2424 int ok
= 1; /* Succeed without an error? */
2426 if (CONSP (face_ref
))
2428 Lisp_Object first
= XCAR (face_ref
);
2430 if (EQ (first
, Qforeground_color
)
2431 || EQ (first
, Qbackground_color
))
2433 /* One of (FOREGROUND-COLOR . COLOR) or (BACKGROUND-COLOR
2434 . COLOR). COLOR must be a string. */
2435 Lisp_Object color_name
= XCDR (face_ref
);
2436 Lisp_Object color
= first
;
2438 if (STRINGP (color_name
))
2440 if (EQ (color
, Qforeground_color
))
2441 to
[LFACE_FOREGROUND_INDEX
] = color_name
;
2443 to
[LFACE_BACKGROUND_INDEX
] = color_name
;
2448 add_to_log ("Invalid face color", color_name
, Qnil
);
2452 else if (SYMBOLP (first
)
2453 && *SDATA (SYMBOL_NAME (first
)) == ':')
2455 /* Assume this is the property list form. */
2456 while (CONSP (face_ref
) && CONSP (XCDR (face_ref
)))
2458 Lisp_Object keyword
= XCAR (face_ref
);
2459 Lisp_Object value
= XCAR (XCDR (face_ref
));
2462 /* Specifying `unspecified' is a no-op. */
2463 if (EQ (value
, Qunspecified
))
2465 else if (EQ (keyword
, QCfamily
))
2467 if (STRINGP (value
))
2469 to
[LFACE_FAMILY_INDEX
] = value
;
2470 font_clear_prop (to
, FONT_FAMILY_INDEX
);
2475 else if (EQ (keyword
, QCfoundry
))
2477 if (STRINGP (value
))
2479 to
[LFACE_FOUNDRY_INDEX
] = value
;
2480 font_clear_prop (to
, FONT_FOUNDRY_INDEX
);
2485 else if (EQ (keyword
, QCheight
))
2487 Lisp_Object new_height
=
2488 merge_face_heights (value
, to
[LFACE_HEIGHT_INDEX
], Qnil
);
2490 if (! NILP (new_height
))
2492 to
[LFACE_HEIGHT_INDEX
] = new_height
;
2493 font_clear_prop (to
, FONT_SIZE_INDEX
);
2498 else if (EQ (keyword
, QCweight
))
2500 if (SYMBOLP (value
) && FONT_WEIGHT_NAME_NUMERIC (value
) >= 0)
2502 to
[LFACE_WEIGHT_INDEX
] = value
;
2503 font_clear_prop (to
, FONT_WEIGHT_INDEX
);
2508 else if (EQ (keyword
, QCslant
))
2510 if (SYMBOLP (value
) && FONT_SLANT_NAME_NUMERIC (value
) >= 0)
2512 to
[LFACE_SLANT_INDEX
] = value
;
2513 font_clear_prop (to
, FONT_SLANT_INDEX
);
2518 else if (EQ (keyword
, QCunderline
))
2523 to
[LFACE_UNDERLINE_INDEX
] = value
;
2527 else if (EQ (keyword
, QCoverline
))
2532 to
[LFACE_OVERLINE_INDEX
] = value
;
2536 else if (EQ (keyword
, QCstrike_through
))
2541 to
[LFACE_STRIKE_THROUGH_INDEX
] = value
;
2545 else if (EQ (keyword
, QCbox
))
2548 value
= make_number (1);
2549 if (INTEGERP (value
)
2553 to
[LFACE_BOX_INDEX
] = value
;
2557 else if (EQ (keyword
, QCinverse_video
)
2558 || EQ (keyword
, QCreverse_video
))
2560 if (EQ (value
, Qt
) || NILP (value
))
2561 to
[LFACE_INVERSE_INDEX
] = value
;
2565 else if (EQ (keyword
, QCforeground
))
2567 if (STRINGP (value
))
2568 to
[LFACE_FOREGROUND_INDEX
] = value
;
2572 else if (EQ (keyword
, QCbackground
))
2574 if (STRINGP (value
))
2575 to
[LFACE_BACKGROUND_INDEX
] = value
;
2579 else if (EQ (keyword
, QCstipple
))
2581 #if defined(HAVE_X_WINDOWS) || defined(HAVE_NS)
2582 Lisp_Object pixmap_p
= Fbitmap_spec_p (value
);
2583 if (!NILP (pixmap_p
))
2584 to
[LFACE_STIPPLE_INDEX
] = value
;
2589 else if (EQ (keyword
, QCwidth
))
2591 if (SYMBOLP (value
) && FONT_WIDTH_NAME_NUMERIC (value
) >= 0)
2593 to
[LFACE_SWIDTH_INDEX
] = value
;
2594 font_clear_prop (to
, FONT_WIDTH_INDEX
);
2599 else if (EQ (keyword
, QCinherit
))
2601 /* This is not really very useful; it's just like a
2602 normal face reference. */
2603 if (! merge_face_ref (f
, value
, to
,
2604 err_msgs
, named_merge_points
))
2612 add_to_log ("Invalid face attribute %S %S", keyword
, value
);
2616 face_ref
= XCDR (XCDR (face_ref
));
2621 /* This is a list of face refs. Those at the beginning of the
2622 list take precedence over what follows, so we have to merge
2623 from the end backwards. */
2624 Lisp_Object next
= XCDR (face_ref
);
2627 ok
= merge_face_ref (f
, next
, to
, err_msgs
, named_merge_points
);
2629 if (! merge_face_ref (f
, first
, to
, err_msgs
, named_merge_points
))
2635 /* FACE_REF ought to be a face name. */
2636 ok
= merge_named_face (f
, face_ref
, to
, named_merge_points
);
2637 if (!ok
&& err_msgs
)
2638 add_to_log ("Invalid face reference: %s", face_ref
, Qnil
);
2645 DEFUN ("internal-make-lisp-face", Finternal_make_lisp_face
,
2646 Sinternal_make_lisp_face
, 1, 2, 0,
2647 doc
: /* Make FACE, a symbol, a Lisp face with all attributes nil.
2648 If FACE was not known as a face before, create a new one.
2649 If optional argument FRAME is specified, make a frame-local face
2650 for that frame. Otherwise operate on the global face definition.
2651 Value is a vector of face attributes. */)
2652 (Lisp_Object face
, Lisp_Object frame
)
2654 Lisp_Object global_lface
, lface
;
2658 CHECK_SYMBOL (face
);
2659 global_lface
= lface_from_face_name (NULL
, face
, 0);
2663 CHECK_LIVE_FRAME (frame
);
2665 lface
= lface_from_face_name (f
, face
, 0);
2668 f
= NULL
, lface
= Qnil
;
2670 /* Add a global definition if there is none. */
2671 if (NILP (global_lface
))
2673 global_lface
= Fmake_vector (make_number (LFACE_VECTOR_SIZE
),
2675 ASET (global_lface
, 0, Qface
);
2676 Vface_new_frame_defaults
= Fcons (Fcons (face
, global_lface
),
2677 Vface_new_frame_defaults
);
2679 /* Assign the new Lisp face a unique ID. The mapping from Lisp
2680 face id to Lisp face is given by the vector lface_id_to_name.
2681 The mapping from Lisp face to Lisp face id is given by the
2682 property `face' of the Lisp face name. */
2683 if (next_lface_id
== lface_id_to_name_size
)
2685 int new_size
= max (50, 2 * lface_id_to_name_size
);
2686 int sz
= new_size
* sizeof *lface_id_to_name
;
2687 lface_id_to_name
= (Lisp_Object
*) xrealloc (lface_id_to_name
, sz
);
2688 lface_id_to_name_size
= new_size
;
2691 lface_id_to_name
[next_lface_id
] = face
;
2692 Fput (face
, Qface
, make_number (next_lface_id
));
2696 for (i
= 1; i
< LFACE_VECTOR_SIZE
; ++i
)
2697 ASET (global_lface
, i
, Qunspecified
);
2699 /* Add a frame-local definition. */
2704 lface
= Fmake_vector (make_number (LFACE_VECTOR_SIZE
),
2706 ASET (lface
, 0, Qface
);
2707 f
->face_alist
= Fcons (Fcons (face
, lface
), f
->face_alist
);
2710 for (i
= 1; i
< LFACE_VECTOR_SIZE
; ++i
)
2711 ASET (lface
, i
, Qunspecified
);
2714 lface
= global_lface
;
2716 /* Changing a named face means that all realized faces depending on
2717 that face are invalid. Since we cannot tell which realized faces
2718 depend on the face, make sure they are all removed. This is done
2719 by incrementing face_change_count. The next call to
2720 init_iterator will then free realized faces. */
2721 if (NILP (Fget (face
, Qface_no_inherit
)))
2723 ++face_change_count
;
2724 ++windows_or_buffers_changed
;
2727 xassert (LFACEP (lface
));
2728 check_lface (lface
);
2733 DEFUN ("internal-lisp-face-p", Finternal_lisp_face_p
,
2734 Sinternal_lisp_face_p
, 1, 2, 0,
2735 doc
: /* Return non-nil if FACE names a face.
2736 FACE should be a symbol or string.
2737 If optional second argument FRAME is non-nil, check for the
2738 existence of a frame-local face with name FACE on that frame.
2739 Otherwise check for the existence of a global face. */)
2740 (Lisp_Object face
, Lisp_Object frame
)
2744 face
= resolve_face_name (face
, 1);
2748 CHECK_LIVE_FRAME (frame
);
2749 lface
= lface_from_face_name (XFRAME (frame
), face
, 0);
2752 lface
= lface_from_face_name (NULL
, face
, 0);
2758 DEFUN ("internal-copy-lisp-face", Finternal_copy_lisp_face
,
2759 Sinternal_copy_lisp_face
, 4, 4, 0,
2760 doc
: /* Copy face FROM to TO.
2761 If FRAME is t, copy the global face definition of FROM.
2762 Otherwise, copy the frame-local definition of FROM on FRAME.
2763 If NEW-FRAME is a frame, copy that data into the frame-local
2764 definition of TO on NEW-FRAME. If NEW-FRAME is nil,
2765 FRAME controls where the data is copied to.
2767 The value is TO. */)
2768 (Lisp_Object from
, Lisp_Object to
, Lisp_Object frame
, Lisp_Object new_frame
)
2770 Lisp_Object lface
, copy
;
2772 CHECK_SYMBOL (from
);
2777 /* Copy global definition of FROM. We don't make copies of
2778 strings etc. because 20.2 didn't do it either. */
2779 lface
= lface_from_face_name (NULL
, from
, 1);
2780 copy
= Finternal_make_lisp_face (to
, Qnil
);
2784 /* Copy frame-local definition of FROM. */
2785 if (NILP (new_frame
))
2787 CHECK_LIVE_FRAME (frame
);
2788 CHECK_LIVE_FRAME (new_frame
);
2789 lface
= lface_from_face_name (XFRAME (frame
), from
, 1);
2790 copy
= Finternal_make_lisp_face (to
, new_frame
);
2793 memcpy (XVECTOR (copy
)->contents
, XVECTOR (lface
)->contents
,
2794 LFACE_VECTOR_SIZE
* sizeof (Lisp_Object
));
2796 /* Changing a named face means that all realized faces depending on
2797 that face are invalid. Since we cannot tell which realized faces
2798 depend on the face, make sure they are all removed. This is done
2799 by incrementing face_change_count. The next call to
2800 init_iterator will then free realized faces. */
2801 if (NILP (Fget (to
, Qface_no_inherit
)))
2803 ++face_change_count
;
2804 ++windows_or_buffers_changed
;
2811 DEFUN ("internal-set-lisp-face-attribute", Finternal_set_lisp_face_attribute
,
2812 Sinternal_set_lisp_face_attribute
, 3, 4, 0,
2813 doc
: /* Set attribute ATTR of FACE to VALUE.
2814 FRAME being a frame means change the face on that frame.
2815 FRAME nil means change the face of the selected frame.
2816 FRAME t means change the default for new frames.
2817 FRAME 0 means change the face on all frames, and change the default
2819 (Lisp_Object face
, Lisp_Object attr
, Lisp_Object value
, Lisp_Object frame
)
2822 Lisp_Object old_value
= Qnil
;
2823 /* Set one of enum font_property_index (> 0) if ATTR is one of
2824 font-related attributes other than QCfont and QCfontset. */
2825 enum font_property_index prop_index
= 0;
2827 CHECK_SYMBOL (face
);
2828 CHECK_SYMBOL (attr
);
2830 face
= resolve_face_name (face
, 1);
2832 /* If FRAME is 0, change face on all frames, and change the
2833 default for new frames. */
2834 if (INTEGERP (frame
) && XINT (frame
) == 0)
2837 Finternal_set_lisp_face_attribute (face
, attr
, value
, Qt
);
2838 FOR_EACH_FRAME (tail
, frame
)
2839 Finternal_set_lisp_face_attribute (face
, attr
, value
, frame
);
2843 /* Set lface to the Lisp attribute vector of FACE. */
2846 lface
= lface_from_face_name (NULL
, face
, 1);
2848 /* When updating face-new-frame-defaults, we put :ignore-defface
2849 where the caller wants `unspecified'. This forces the frame
2850 defaults to ignore the defface value. Otherwise, the defface
2851 will take effect, which is generally not what is intended.
2852 The value of that attribute will be inherited from some other
2853 face during face merging. See internal_merge_in_global_face. */
2854 if (UNSPECIFIEDP (value
))
2855 value
= Qignore_defface
;
2860 frame
= selected_frame
;
2862 CHECK_LIVE_FRAME (frame
);
2863 lface
= lface_from_face_name (XFRAME (frame
), face
, 0);
2865 /* If a frame-local face doesn't exist yet, create one. */
2867 lface
= Finternal_make_lisp_face (face
, frame
);
2870 if (EQ (attr
, QCfamily
))
2872 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
2874 CHECK_STRING (value
);
2875 if (SCHARS (value
) == 0)
2876 signal_error ("Invalid face family", value
);
2878 old_value
= LFACE_FAMILY (lface
);
2879 LFACE_FAMILY (lface
) = value
;
2880 prop_index
= FONT_FAMILY_INDEX
;
2882 else if (EQ (attr
, QCfoundry
))
2884 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
2886 CHECK_STRING (value
);
2887 if (SCHARS (value
) == 0)
2888 signal_error ("Invalid face foundry", value
);
2890 old_value
= LFACE_FOUNDRY (lface
);
2891 LFACE_FOUNDRY (lface
) = value
;
2892 prop_index
= FONT_FOUNDRY_INDEX
;
2894 else if (EQ (attr
, QCheight
))
2896 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
2898 if (EQ (face
, Qdefault
))
2900 /* The default face must have an absolute size. */
2901 if (!INTEGERP (value
) || XINT (value
) <= 0)
2902 signal_error ("Default face height not absolute and positive", value
);
2906 /* For non-default faces, do a test merge with a random
2907 height to see if VALUE's ok. */
2908 Lisp_Object test
= merge_face_heights (value
,
2911 if (!INTEGERP (test
) || XINT (test
) <= 0)
2912 signal_error ("Face height does not produce a positive integer", value
);
2916 old_value
= LFACE_HEIGHT (lface
);
2917 LFACE_HEIGHT (lface
) = value
;
2918 prop_index
= FONT_SIZE_INDEX
;
2920 else if (EQ (attr
, QCweight
))
2922 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
2924 CHECK_SYMBOL (value
);
2925 if (FONT_WEIGHT_NAME_NUMERIC (value
) < 0)
2926 signal_error ("Invalid face weight", value
);
2928 old_value
= LFACE_WEIGHT (lface
);
2929 LFACE_WEIGHT (lface
) = value
;
2930 prop_index
= FONT_WEIGHT_INDEX
;
2932 else if (EQ (attr
, QCslant
))
2934 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
2936 CHECK_SYMBOL (value
);
2937 if (FONT_SLANT_NAME_NUMERIC (value
) < 0)
2938 signal_error ("Invalid face slant", value
);
2940 old_value
= LFACE_SLANT (lface
);
2941 LFACE_SLANT (lface
) = value
;
2942 prop_index
= FONT_SLANT_INDEX
;
2944 else if (EQ (attr
, QCunderline
))
2946 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
2947 if ((SYMBOLP (value
)
2949 && !EQ (value
, Qnil
))
2950 /* Underline color. */
2952 && SCHARS (value
) == 0))
2953 signal_error ("Invalid face underline", value
);
2955 old_value
= LFACE_UNDERLINE (lface
);
2956 LFACE_UNDERLINE (lface
) = value
;
2958 else if (EQ (attr
, QCoverline
))
2960 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
2961 if ((SYMBOLP (value
)
2963 && !EQ (value
, Qnil
))
2964 /* Overline color. */
2966 && SCHARS (value
) == 0))
2967 signal_error ("Invalid face overline", value
);
2969 old_value
= LFACE_OVERLINE (lface
);
2970 LFACE_OVERLINE (lface
) = value
;
2972 else if (EQ (attr
, QCstrike_through
))
2974 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
2975 if ((SYMBOLP (value
)
2977 && !EQ (value
, Qnil
))
2978 /* Strike-through color. */
2980 && SCHARS (value
) == 0))
2981 signal_error ("Invalid face strike-through", value
);
2983 old_value
= LFACE_STRIKE_THROUGH (lface
);
2984 LFACE_STRIKE_THROUGH (lface
) = value
;
2986 else if (EQ (attr
, QCbox
))
2990 /* Allow t meaning a simple box of width 1 in foreground color
2993 value
= make_number (1);
2995 if (UNSPECIFIEDP (value
) || IGNORE_DEFFACE_P (value
))
2997 else if (NILP (value
))
2999 else if (INTEGERP (value
))
3000 valid_p
= XINT (value
) != 0;
3001 else if (STRINGP (value
))
3002 valid_p
= SCHARS (value
) > 0;
3003 else if (CONSP (value
))
3019 if (EQ (k
, QCline_width
))
3021 if (!INTEGERP (v
) || XINT (v
) == 0)
3024 else if (EQ (k
, QCcolor
))
3026 if (!NILP (v
) && (!STRINGP (v
) || SCHARS (v
) == 0))
3029 else if (EQ (k
, QCstyle
))
3031 if (!EQ (v
, Qpressed_button
) && !EQ (v
, Qreleased_button
))
3038 valid_p
= NILP (tem
);
3044 signal_error ("Invalid face box", value
);
3046 old_value
= LFACE_BOX (lface
);
3047 LFACE_BOX (lface
) = value
;
3049 else if (EQ (attr
, QCinverse_video
)
3050 || EQ (attr
, QCreverse_video
))
3052 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
3054 CHECK_SYMBOL (value
);
3055 if (!EQ (value
, Qt
) && !NILP (value
))
3056 signal_error ("Invalid inverse-video face attribute value", value
);
3058 old_value
= LFACE_INVERSE (lface
);
3059 LFACE_INVERSE (lface
) = value
;
3061 else if (EQ (attr
, QCforeground
))
3063 /* Compatibility with 20.x. */
3065 value
= Qunspecified
;
3066 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
3068 /* Don't check for valid color names here because it depends
3069 on the frame (display) whether the color will be valid
3070 when the face is realized. */
3071 CHECK_STRING (value
);
3072 if (SCHARS (value
) == 0)
3073 signal_error ("Empty foreground color value", value
);
3075 old_value
= LFACE_FOREGROUND (lface
);
3076 LFACE_FOREGROUND (lface
) = value
;
3078 else if (EQ (attr
, QCbackground
))
3080 /* Compatibility with 20.x. */
3082 value
= Qunspecified
;
3083 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
3085 /* Don't check for valid color names here because it depends
3086 on the frame (display) whether the color will be valid
3087 when the face is realized. */
3088 CHECK_STRING (value
);
3089 if (SCHARS (value
) == 0)
3090 signal_error ("Empty background color value", value
);
3092 old_value
= LFACE_BACKGROUND (lface
);
3093 LFACE_BACKGROUND (lface
) = value
;
3095 else if (EQ (attr
, QCstipple
))
3097 #if defined(HAVE_X_WINDOWS) || defined(HAVE_NS)
3098 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
)
3100 && NILP (Fbitmap_spec_p (value
)))
3101 signal_error ("Invalid stipple attribute", value
);
3102 old_value
= LFACE_STIPPLE (lface
);
3103 LFACE_STIPPLE (lface
) = value
;
3104 #endif /* HAVE_X_WINDOWS || HAVE_NS */
3106 else if (EQ (attr
, QCwidth
))
3108 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
3110 CHECK_SYMBOL (value
);
3111 if (FONT_WIDTH_NAME_NUMERIC (value
) < 0)
3112 signal_error ("Invalid face width", value
);
3114 old_value
= LFACE_SWIDTH (lface
);
3115 LFACE_SWIDTH (lface
) = value
;
3116 prop_index
= FONT_WIDTH_INDEX
;
3118 else if (EQ (attr
, QCfont
))
3120 #ifdef HAVE_WINDOW_SYSTEM
3121 if (EQ (frame
, Qt
) || FRAME_WINDOW_P (XFRAME (frame
)))
3123 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
3127 old_value
= LFACE_FONT (lface
);
3128 if (! FONTP (value
))
3130 if (STRINGP (value
))
3132 Lisp_Object name
= value
;
3133 int fontset
= fs_query_fontset (name
, 0);
3136 name
= fontset_ascii (fontset
);
3137 value
= font_spec_from_name (name
);
3139 signal_error ("Invalid font name", name
);
3142 signal_error ("Invalid font or font-spec", value
);
3145 f
= XFRAME (selected_frame
);
3148 if (! FONT_OBJECT_P (value
))
3150 Lisp_Object
*attrs
= XVECTOR (lface
)->contents
;
3151 Lisp_Object font_object
;
3153 font_object
= font_load_for_lface (f
, attrs
, value
);
3154 if (NILP (font_object
))
3155 signal_error ("Font not available", value
);
3156 value
= font_object
;
3158 set_lface_from_font (f
, lface
, value
, 1);
3161 LFACE_FONT (lface
) = value
;
3163 #endif /* HAVE_WINDOW_SYSTEM */
3165 else if (EQ (attr
, QCfontset
))
3167 #ifdef HAVE_WINDOW_SYSTEM
3168 if (EQ (frame
, Qt
) || FRAME_WINDOW_P (XFRAME (frame
)))
3172 old_value
= LFACE_FONTSET (lface
);
3173 tmp
= Fquery_fontset (value
, Qnil
);
3175 signal_error ("Invalid fontset name", value
);
3176 LFACE_FONTSET (lface
) = value
= tmp
;
3178 #endif /* HAVE_WINDOW_SYSTEM */
3180 else if (EQ (attr
, QCinherit
))
3183 if (SYMBOLP (value
))
3186 for (tail
= value
; CONSP (tail
); tail
= XCDR (tail
))
3187 if (!SYMBOLP (XCAR (tail
)))
3190 LFACE_INHERIT (lface
) = value
;
3192 signal_error ("Invalid face inheritance", value
);
3194 else if (EQ (attr
, QCbold
))
3196 old_value
= LFACE_WEIGHT (lface
);
3197 LFACE_WEIGHT (lface
) = NILP (value
) ? Qnormal
: Qbold
;
3198 prop_index
= FONT_WEIGHT_INDEX
;
3200 else if (EQ (attr
, QCitalic
))
3203 old_value
= LFACE_SLANT (lface
);
3204 LFACE_SLANT (lface
) = NILP (value
) ? Qnormal
: Qitalic
;
3205 prop_index
= FONT_SLANT_INDEX
;
3208 signal_error ("Invalid face attribute name", attr
);
3212 /* If a font-related attribute other than QCfont and QCfontset
3213 is specified, and if the original QCfont attribute has a font
3214 (font-spec or font-object), set the corresponding property in
3215 the font to nil so that the font selector doesn't think that
3216 the attribute is mandatory. Also, clear the average
3218 font_clear_prop (XVECTOR (lface
)->contents
, prop_index
);
3221 /* Changing a named face means that all realized faces depending on
3222 that face are invalid. Since we cannot tell which realized faces
3223 depend on the face, make sure they are all removed. This is done
3224 by incrementing face_change_count. The next call to
3225 init_iterator will then free realized faces. */
3227 && NILP (Fget (face
, Qface_no_inherit
))
3228 && NILP (Fequal (old_value
, value
)))
3230 ++face_change_count
;
3231 ++windows_or_buffers_changed
;
3234 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
)
3235 && NILP (Fequal (old_value
, value
)))
3241 if (EQ (face
, Qdefault
))
3243 #ifdef HAVE_WINDOW_SYSTEM
3244 /* Changed font-related attributes of the `default' face are
3245 reflected in changed `font' frame parameters. */
3247 && (prop_index
|| EQ (attr
, QCfont
))
3248 && lface_fully_specified_p (XVECTOR (lface
)->contents
))
3249 set_font_frame_param (frame
, lface
);
3251 #endif /* HAVE_WINDOW_SYSTEM */
3253 if (EQ (attr
, QCforeground
))
3254 param
= Qforeground_color
;
3255 else if (EQ (attr
, QCbackground
))
3256 param
= Qbackground_color
;
3258 #ifdef HAVE_WINDOW_SYSTEM
3260 else if (EQ (face
, Qscroll_bar
))
3262 /* Changing the colors of `scroll-bar' sets frame parameters
3263 `scroll-bar-foreground' and `scroll-bar-background'. */
3264 if (EQ (attr
, QCforeground
))
3265 param
= Qscroll_bar_foreground
;
3266 else if (EQ (attr
, QCbackground
))
3267 param
= Qscroll_bar_background
;
3269 #endif /* not WINDOWSNT */
3270 else if (EQ (face
, Qborder
))
3272 /* Changing background color of `border' sets frame parameter
3274 if (EQ (attr
, QCbackground
))
3275 param
= Qborder_color
;
3277 else if (EQ (face
, Qcursor
))
3279 /* Changing background color of `cursor' sets frame parameter
3281 if (EQ (attr
, QCbackground
))
3282 param
= Qcursor_color
;
3284 else if (EQ (face
, Qmouse
))
3286 /* Changing background color of `mouse' sets frame parameter
3288 if (EQ (attr
, QCbackground
))
3289 param
= Qmouse_color
;
3291 #endif /* HAVE_WINDOW_SYSTEM */
3292 else if (EQ (face
, Qmenu
))
3294 /* Indicate that we have to update the menu bar when
3295 realizing faces on FRAME. FRAME t change the
3296 default for new frames. We do this by setting
3297 setting the flag in new face caches */
3300 struct frame
*f
= XFRAME (frame
);
3301 if (FRAME_FACE_CACHE (f
) == NULL
)
3302 FRAME_FACE_CACHE (f
) = make_face_cache (f
);
3303 FRAME_FACE_CACHE (f
)->menu_face_changed_p
= 1;
3306 menu_face_changed_default
= 1;
3312 /* Update `default-frame-alist', which is used for new frames. */
3314 store_in_alist (&Vdefault_frame_alist
, param
, value
);
3317 /* Update the current frame's parameters. */
3320 cons
= XCAR (Vparam_value_alist
);
3321 XSETCAR (cons
, param
);
3322 XSETCDR (cons
, value
);
3323 Fmodify_frame_parameters (frame
, Vparam_value_alist
);
3332 /* Update the corresponding face when frame parameter PARAM on frame F
3333 has been assigned the value NEW_VALUE. */
3336 update_face_from_frame_parameter (struct frame
*f
, Lisp_Object param
, Lisp_Object new_value
)
3338 Lisp_Object face
= Qnil
;
3341 /* If there are no faces yet, give up. This is the case when called
3342 from Fx_create_frame, and we do the necessary things later in
3343 face-set-after-frame-defaults. */
3344 if (NILP (f
->face_alist
))
3347 if (EQ (param
, Qforeground_color
))
3350 lface
= lface_from_face_name (f
, face
, 1);
3351 LFACE_FOREGROUND (lface
) = (STRINGP (new_value
)
3352 ? new_value
: Qunspecified
);
3353 realize_basic_faces (f
);
3355 else if (EQ (param
, Qbackground_color
))
3359 /* Changing the background color might change the background
3360 mode, so that we have to load new defface specs.
3361 Call frame-update-face-colors to do that. */
3362 XSETFRAME (frame
, f
);
3363 call1 (Qframe_set_background_mode
, frame
);
3366 lface
= lface_from_face_name (f
, face
, 1);
3367 LFACE_BACKGROUND (lface
) = (STRINGP (new_value
)
3368 ? new_value
: Qunspecified
);
3369 realize_basic_faces (f
);
3371 #ifdef HAVE_WINDOW_SYSTEM
3372 else if (EQ (param
, Qborder_color
))
3375 lface
= lface_from_face_name (f
, face
, 1);
3376 LFACE_BACKGROUND (lface
) = (STRINGP (new_value
)
3377 ? new_value
: Qunspecified
);
3379 else if (EQ (param
, Qcursor_color
))
3382 lface
= lface_from_face_name (f
, face
, 1);
3383 LFACE_BACKGROUND (lface
) = (STRINGP (new_value
)
3384 ? new_value
: Qunspecified
);
3386 else if (EQ (param
, Qmouse_color
))
3389 lface
= lface_from_face_name (f
, face
, 1);
3390 LFACE_BACKGROUND (lface
) = (STRINGP (new_value
)
3391 ? new_value
: Qunspecified
);
3395 /* Changing a named face means that all realized faces depending on
3396 that face are invalid. Since we cannot tell which realized faces
3397 depend on the face, make sure they are all removed. This is done
3398 by incrementing face_change_count. The next call to
3399 init_iterator will then free realized faces. */
3401 && NILP (Fget (face
, Qface_no_inherit
)))
3403 ++face_change_count
;
3404 ++windows_or_buffers_changed
;
3409 #ifdef HAVE_WINDOW_SYSTEM
3411 /* Set the `font' frame parameter of FRAME determined from the
3412 font-object set in `default' face attributes LFACE. */
3415 set_font_frame_param (Lisp_Object frame
, Lisp_Object lface
)
3417 struct frame
*f
= XFRAME (frame
);
3420 if (FRAME_WINDOW_P (f
)
3421 /* Don't do anything if the font is `unspecified'. This can
3422 happen during frame creation. */
3423 && (font
= LFACE_FONT (lface
),
3424 ! UNSPECIFIEDP (font
)))
3426 if (FONT_SPEC_P (font
))
3428 font
= font_load_for_lface (f
, XVECTOR (lface
)->contents
, font
);
3431 LFACE_FONT (lface
) = font
;
3433 f
->default_face_done_p
= 0;
3434 Fmodify_frame_parameters (frame
, Fcons (Fcons (Qfont
, font
), Qnil
));
3439 /* Get the value of X resource RESOURCE, class CLASS for the display
3440 of frame FRAME. This is here because ordinary `x-get-resource'
3441 doesn't take a frame argument. */
3443 DEFUN ("internal-face-x-get-resource", Finternal_face_x_get_resource
,
3444 Sinternal_face_x_get_resource
, 3, 3, 0, doc
: /* */)
3445 (Lisp_Object resource
, Lisp_Object
class, Lisp_Object frame
)
3447 Lisp_Object value
= Qnil
;
3448 CHECK_STRING (resource
);
3449 CHECK_STRING (class);
3450 CHECK_LIVE_FRAME (frame
);
3452 value
= display_x_get_resource (FRAME_X_DISPLAY_INFO (XFRAME (frame
)),
3453 resource
, class, Qnil
, Qnil
);
3459 /* Return resource string VALUE as a boolean value, i.e. nil, or t.
3460 If VALUE is "on" or "true", return t. If VALUE is "off" or
3461 "false", return nil. Otherwise, if SIGNAL_P is non-zero, signal an
3462 error; if SIGNAL_P is zero, return 0. */
3465 face_boolean_x_resource_value (Lisp_Object value
, int signal_p
)
3467 Lisp_Object result
= make_number (0);
3469 xassert (STRINGP (value
));
3471 if (xstrcasecmp (SSDATA (value
), "on") == 0
3472 || xstrcasecmp (SSDATA (value
), "true") == 0)
3474 else if (xstrcasecmp (SSDATA (value
), "off") == 0
3475 || xstrcasecmp (SSDATA (value
), "false") == 0)
3477 else if (xstrcasecmp (SSDATA (value
), "unspecified") == 0)
3478 result
= Qunspecified
;
3480 signal_error ("Invalid face attribute value from X resource", value
);
3486 DEFUN ("internal-set-lisp-face-attribute-from-resource",
3487 Finternal_set_lisp_face_attribute_from_resource
,
3488 Sinternal_set_lisp_face_attribute_from_resource
,
3489 3, 4, 0, doc
: /* */)
3490 (Lisp_Object face
, Lisp_Object attr
, Lisp_Object value
, Lisp_Object frame
)
3492 CHECK_SYMBOL (face
);
3493 CHECK_SYMBOL (attr
);
3494 CHECK_STRING (value
);
3496 if (xstrcasecmp (SSDATA (value
), "unspecified") == 0)
3497 value
= Qunspecified
;
3498 else if (EQ (attr
, QCheight
))
3500 value
= Fstring_to_number (value
, make_number (10));
3501 if (XINT (value
) <= 0)
3502 signal_error ("Invalid face height from X resource", value
);
3504 else if (EQ (attr
, QCbold
) || EQ (attr
, QCitalic
))
3505 value
= face_boolean_x_resource_value (value
, 1);
3506 else if (EQ (attr
, QCweight
) || EQ (attr
, QCslant
) || EQ (attr
, QCwidth
))
3507 value
= intern (SSDATA (value
));
3508 else if (EQ (attr
, QCreverse_video
) || EQ (attr
, QCinverse_video
))
3509 value
= face_boolean_x_resource_value (value
, 1);
3510 else if (EQ (attr
, QCunderline
)
3511 || EQ (attr
, QCoverline
)
3512 || EQ (attr
, QCstrike_through
))
3514 Lisp_Object boolean_value
;
3516 /* If the result of face_boolean_x_resource_value is t or nil,
3517 VALUE does NOT specify a color. */
3518 boolean_value
= face_boolean_x_resource_value (value
, 0);
3519 if (SYMBOLP (boolean_value
))
3520 value
= boolean_value
;
3522 else if (EQ (attr
, QCbox
) || EQ (attr
, QCinherit
))
3523 value
= Fcar (Fread_from_string (value
, Qnil
, Qnil
));
3525 return Finternal_set_lisp_face_attribute (face
, attr
, value
, frame
);
3528 #endif /* HAVE_WINDOW_SYSTEM */
3531 /***********************************************************************
3533 ***********************************************************************/
3535 #if defined HAVE_X_WINDOWS && defined USE_X_TOOLKIT
3537 /* Make menus on frame F appear as specified by the `menu' face. */
3540 x_update_menu_appearance (struct frame
*f
)
3542 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
3546 && (rdb
= XrmGetDatabase (FRAME_X_DISPLAY (f
)),
3550 Lisp_Object lface
= lface_from_face_name (f
, Qmenu
, 1);
3551 struct face
*face
= FACE_FROM_ID (f
, MENU_FACE_ID
);
3552 const char *myname
= SSDATA (Vx_resource_name
);
3555 const char *popup_path
= "popup_menu";
3557 const char *popup_path
= "menu.popup";
3560 if (STRINGP (LFACE_FOREGROUND (lface
)))
3562 sprintf (line
, "%s.%s*foreground: %s",
3564 SDATA (LFACE_FOREGROUND (lface
)));
3565 XrmPutLineResource (&rdb
, line
);
3566 sprintf (line
, "%s.pane.menubar*foreground: %s",
3567 myname
, SDATA (LFACE_FOREGROUND (lface
)));
3568 XrmPutLineResource (&rdb
, line
);
3572 if (STRINGP (LFACE_BACKGROUND (lface
)))
3574 sprintf (line
, "%s.%s*background: %s",
3576 SDATA (LFACE_BACKGROUND (lface
)));
3577 XrmPutLineResource (&rdb
, line
);
3578 sprintf (line
, "%s.pane.menubar*background: %s",
3579 myname
, SDATA (LFACE_BACKGROUND (lface
)));
3580 XrmPutLineResource (&rdb
, line
);
3585 /* On Solaris 5.8, it's been reported that the `menu' face
3586 can be unspecified here, during startup. Why this
3587 happens remains unknown. -- cyd */
3588 && FONTP (LFACE_FONT (lface
))
3589 && (!UNSPECIFIEDP (LFACE_FAMILY (lface
))
3590 || !UNSPECIFIEDP (LFACE_FOUNDRY (lface
))
3591 || !UNSPECIFIEDP (LFACE_SWIDTH (lface
))
3592 || !UNSPECIFIEDP (LFACE_WEIGHT (lface
))
3593 || !UNSPECIFIEDP (LFACE_SLANT (lface
))
3594 || !UNSPECIFIEDP (LFACE_HEIGHT (lface
))))
3596 Lisp_Object xlfd
= Ffont_xlfd_name (LFACE_FONT (lface
), Qnil
);
3598 const char *suffix
= "List";
3601 #if defined HAVE_X_I18N
3603 const char *suffix
= "Set";
3605 const char *suffix
= "";
3612 #if defined HAVE_X_I18N
3613 char *fontsetname
= xic_create_fontsetname (SSDATA (xlfd
), motif
);
3615 char *fontsetname
= SSDATA (xlfd
);
3617 sprintf (line
, "%s.pane.menubar*font%s: %s",
3618 myname
, suffix
, fontsetname
);
3619 XrmPutLineResource (&rdb
, line
);
3620 sprintf (line
, "%s.%s*font%s: %s",
3621 myname
, popup_path
, suffix
, fontsetname
);
3622 XrmPutLineResource (&rdb
, line
);
3624 if (fontsetname
!= SSDATA (xlfd
))
3625 xfree (fontsetname
);
3629 if (changed_p
&& f
->output_data
.x
->menubar_widget
)
3630 free_frame_menubar (f
);
3634 #endif /* HAVE_X_WINDOWS && USE_X_TOOLKIT */
3637 DEFUN ("face-attribute-relative-p", Fface_attribute_relative_p
,
3638 Sface_attribute_relative_p
,
3640 doc
: /* Check whether a face attribute value is relative.
3641 Specifically, this function returns t if the attribute ATTRIBUTE
3642 with the value VALUE is relative.
3644 A relative value is one that doesn't entirely override whatever is
3645 inherited from another face. For most possible attributes,
3646 the only relative value that users see is `unspecified'.
3647 However, for :height, floating point values are also relative. */)
3648 (Lisp_Object attribute
, Lisp_Object value
)
3650 if (EQ (value
, Qunspecified
) || (EQ (value
, Qignore_defface
)))
3652 else if (EQ (attribute
, QCheight
))
3653 return INTEGERP (value
) ? Qnil
: Qt
;
3658 DEFUN ("merge-face-attribute", Fmerge_face_attribute
, Smerge_face_attribute
,
3660 doc
: /* Return face ATTRIBUTE VALUE1 merged with VALUE2.
3661 If VALUE1 or VALUE2 are absolute (see `face-attribute-relative-p'), then
3662 the result will be absolute, otherwise it will be relative. */)
3663 (Lisp_Object attribute
, Lisp_Object value1
, Lisp_Object value2
)
3665 if (EQ (value1
, Qunspecified
) || EQ (value1
, Qignore_defface
))
3667 else if (EQ (attribute
, QCheight
))
3668 return merge_face_heights (value1
, value2
, value1
);
3674 DEFUN ("internal-get-lisp-face-attribute", Finternal_get_lisp_face_attribute
,
3675 Sinternal_get_lisp_face_attribute
,
3677 doc
: /* Return face attribute KEYWORD of face SYMBOL.
3678 If SYMBOL does not name a valid Lisp face or KEYWORD isn't a valid
3679 face attribute name, signal an error.
3680 If the optional argument FRAME is given, report on face SYMBOL in that
3681 frame. If FRAME is t, report on the defaults for face SYMBOL (for new
3682 frames). If FRAME is omitted or nil, use the selected frame. */)
3683 (Lisp_Object symbol
, Lisp_Object keyword
, Lisp_Object frame
)
3685 Lisp_Object lface
, value
= Qnil
;
3687 CHECK_SYMBOL (symbol
);
3688 CHECK_SYMBOL (keyword
);
3691 lface
= lface_from_face_name (NULL
, symbol
, 1);
3695 frame
= selected_frame
;
3696 CHECK_LIVE_FRAME (frame
);
3697 lface
= lface_from_face_name (XFRAME (frame
), symbol
, 1);
3700 if (EQ (keyword
, QCfamily
))
3701 value
= LFACE_FAMILY (lface
);
3702 else if (EQ (keyword
, QCfoundry
))
3703 value
= LFACE_FOUNDRY (lface
);
3704 else if (EQ (keyword
, QCheight
))
3705 value
= LFACE_HEIGHT (lface
);
3706 else if (EQ (keyword
, QCweight
))
3707 value
= LFACE_WEIGHT (lface
);
3708 else if (EQ (keyword
, QCslant
))
3709 value
= LFACE_SLANT (lface
);
3710 else if (EQ (keyword
, QCunderline
))
3711 value
= LFACE_UNDERLINE (lface
);
3712 else if (EQ (keyword
, QCoverline
))
3713 value
= LFACE_OVERLINE (lface
);
3714 else if (EQ (keyword
, QCstrike_through
))
3715 value
= LFACE_STRIKE_THROUGH (lface
);
3716 else if (EQ (keyword
, QCbox
))
3717 value
= LFACE_BOX (lface
);
3718 else if (EQ (keyword
, QCinverse_video
)
3719 || EQ (keyword
, QCreverse_video
))
3720 value
= LFACE_INVERSE (lface
);
3721 else if (EQ (keyword
, QCforeground
))
3722 value
= LFACE_FOREGROUND (lface
);
3723 else if (EQ (keyword
, QCbackground
))
3724 value
= LFACE_BACKGROUND (lface
);
3725 else if (EQ (keyword
, QCstipple
))
3726 value
= LFACE_STIPPLE (lface
);
3727 else if (EQ (keyword
, QCwidth
))
3728 value
= LFACE_SWIDTH (lface
);
3729 else if (EQ (keyword
, QCinherit
))
3730 value
= LFACE_INHERIT (lface
);
3731 else if (EQ (keyword
, QCfont
))
3732 value
= LFACE_FONT (lface
);
3733 else if (EQ (keyword
, QCfontset
))
3734 value
= LFACE_FONTSET (lface
);
3736 signal_error ("Invalid face attribute name", keyword
);
3738 if (IGNORE_DEFFACE_P (value
))
3739 return Qunspecified
;
3745 DEFUN ("internal-lisp-face-attribute-values",
3746 Finternal_lisp_face_attribute_values
,
3747 Sinternal_lisp_face_attribute_values
, 1, 1, 0,
3748 doc
: /* Return a list of valid discrete values for face attribute ATTR.
3749 Value is nil if ATTR doesn't have a discrete set of valid values. */)
3752 Lisp_Object result
= Qnil
;
3754 CHECK_SYMBOL (attr
);
3756 if (EQ (attr
, QCunderline
))
3757 result
= Fcons (Qt
, Fcons (Qnil
, Qnil
));
3758 else if (EQ (attr
, QCoverline
))
3759 result
= Fcons (Qt
, Fcons (Qnil
, Qnil
));
3760 else if (EQ (attr
, QCstrike_through
))
3761 result
= Fcons (Qt
, Fcons (Qnil
, Qnil
));
3762 else if (EQ (attr
, QCinverse_video
) || EQ (attr
, QCreverse_video
))
3763 result
= Fcons (Qt
, Fcons (Qnil
, Qnil
));
3769 DEFUN ("internal-merge-in-global-face", Finternal_merge_in_global_face
,
3770 Sinternal_merge_in_global_face
, 2, 2, 0,
3771 doc
: /* Add attributes from frame-default definition of FACE to FACE on FRAME.
3772 Default face attributes override any local face attributes. */)
3773 (Lisp_Object face
, Lisp_Object frame
)
3776 Lisp_Object global_lface
, local_lface
, *gvec
, *lvec
;
3777 struct frame
*f
= XFRAME (frame
);
3779 CHECK_LIVE_FRAME (frame
);
3780 global_lface
= lface_from_face_name (NULL
, face
, 1);
3781 local_lface
= lface_from_face_name (f
, face
, 0);
3782 if (NILP (local_lface
))
3783 local_lface
= Finternal_make_lisp_face (face
, frame
);
3785 /* Make every specified global attribute override the local one.
3786 BEWARE!! This is only used from `face-set-after-frame-default' where
3787 the local frame is defined from default specs in `face-defface-spec'
3788 and those should be overridden by global settings. Hence the strange
3789 "global before local" priority. */
3790 lvec
= XVECTOR (local_lface
)->contents
;
3791 gvec
= XVECTOR (global_lface
)->contents
;
3792 for (i
= 1; i
< LFACE_VECTOR_SIZE
; ++i
)
3793 if (IGNORE_DEFFACE_P (gvec
[i
]))
3794 lvec
[i
] = Qunspecified
;
3795 else if (! UNSPECIFIEDP (gvec
[i
]))
3798 /* If the default face was changed, update the face cache and the
3799 `font' frame parameter. */
3800 if (EQ (face
, Qdefault
))
3802 struct face_cache
*c
= FRAME_FACE_CACHE (f
);
3803 struct face
*newface
, *oldface
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
3804 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
3806 /* This can be NULL (e.g., in batch mode). */
3809 /* Ensure that the face vector is fully specified by merging
3810 the previously-cached vector. */
3811 memcpy (attrs
, oldface
->lface
, sizeof attrs
);
3812 merge_face_vectors (f
, lvec
, attrs
, 0);
3813 memcpy (lvec
, attrs
, sizeof attrs
);
3814 newface
= realize_face (c
, lvec
, DEFAULT_FACE_ID
);
3816 if ((! UNSPECIFIEDP (gvec
[LFACE_FAMILY_INDEX
])
3817 || ! UNSPECIFIEDP (gvec
[LFACE_FOUNDRY_INDEX
])
3818 || ! UNSPECIFIEDP (gvec
[LFACE_HEIGHT_INDEX
])
3819 || ! UNSPECIFIEDP (gvec
[LFACE_WEIGHT_INDEX
])
3820 || ! UNSPECIFIEDP (gvec
[LFACE_SLANT_INDEX
])
3821 || ! UNSPECIFIEDP (gvec
[LFACE_SWIDTH_INDEX
])
3822 || ! UNSPECIFIEDP (gvec
[LFACE_FONT_INDEX
]))
3825 Lisp_Object name
= newface
->font
->props
[FONT_NAME_INDEX
];
3826 Fmodify_frame_parameters (frame
, Fcons (Fcons (Qfont
, name
),
3836 /* The following function is implemented for compatibility with 20.2.
3837 The function is used in x-resolve-fonts when it is asked to
3838 return fonts with the same size as the font of a face. This is
3839 done in fontset.el. */
3841 DEFUN ("face-font", Fface_font
, Sface_font
, 1, 3, 0,
3842 doc
: /* Return the font name of face FACE, or nil if it is unspecified.
3843 The font name is, by default, for ASCII characters.
3844 If the optional argument FRAME is given, report on face FACE in that frame.
3845 If FRAME is t, report on the defaults for face FACE (for new frames).
3846 The font default for a face is either nil, or a list
3847 of the form (bold), (italic) or (bold italic).
3848 If FRAME is omitted or nil, use the selected frame. And, in this case,
3849 if the optional third argument CHARACTER is given,
3850 return the font name used for CHARACTER. */)
3851 (Lisp_Object face
, Lisp_Object frame
, Lisp_Object character
)
3855 Lisp_Object result
= Qnil
;
3856 Lisp_Object lface
= lface_from_face_name (NULL
, face
, 1);
3858 if (!UNSPECIFIEDP (LFACE_WEIGHT (lface
))
3859 && !EQ (LFACE_WEIGHT (lface
), Qnormal
))
3860 result
= Fcons (Qbold
, result
);
3862 if (!UNSPECIFIEDP (LFACE_SLANT (lface
))
3863 && !EQ (LFACE_SLANT (lface
), Qnormal
))
3864 result
= Fcons (Qitalic
, result
);
3870 struct frame
*f
= frame_or_selected_frame (frame
, 1);
3871 int face_id
= lookup_named_face (f
, face
, 1);
3872 struct face
*face
= FACE_FROM_ID (f
, face_id
);
3876 #ifdef HAVE_WINDOW_SYSTEM
3877 if (FRAME_WINDOW_P (f
) && !NILP (character
))
3879 CHECK_CHARACTER (character
);
3880 face_id
= FACE_FOR_CHAR (f
, face
, XINT (character
), -1, Qnil
);
3881 face
= FACE_FROM_ID (f
, face_id
);
3884 ? face
->font
->props
[FONT_NAME_INDEX
]
3886 #else /* !HAVE_WINDOW_SYSTEM */
3887 return build_string (FRAME_MSDOS_P (f
)
3889 : FRAME_W32_P (f
) ? "w32term"
3896 /* Compare face-attribute values v1 and v2 for equality. Value is non-zero if
3897 all attributes are `equal'. Tries to be fast because this function
3898 is called quite often. */
3901 face_attr_equal_p (Lisp_Object v1
, Lisp_Object v2
)
3903 /* Type can differ, e.g. when one attribute is unspecified, i.e. nil,
3904 and the other is specified. */
3905 if (XTYPE (v1
) != XTYPE (v2
))
3914 if (SBYTES (v1
) != SBYTES (v2
))
3917 return memcmp (SDATA (v1
), SDATA (v2
), SBYTES (v1
)) == 0;
3924 return !NILP (Fequal (v1
, v2
));
3929 /* Compare face vectors V1 and V2 for equality. Value is non-zero if
3930 all attributes are `equal'. Tries to be fast because this function
3931 is called quite often. */
3934 lface_equal_p (Lisp_Object
*v1
, Lisp_Object
*v2
)
3938 for (i
= 1; i
< LFACE_VECTOR_SIZE
&& equal_p
; ++i
)
3939 equal_p
= face_attr_equal_p (v1
[i
], v2
[i
]);
3945 DEFUN ("internal-lisp-face-equal-p", Finternal_lisp_face_equal_p
,
3946 Sinternal_lisp_face_equal_p
, 2, 3, 0,
3947 doc
: /* True if FACE1 and FACE2 are equal.
3948 If the optional argument FRAME is given, report on FACE1 and FACE2 in that frame.
3949 If FRAME is t, report on the defaults for FACE1 and FACE2 (for new frames).
3950 If FRAME is omitted or nil, use the selected frame. */)
3951 (Lisp_Object face1
, Lisp_Object face2
, Lisp_Object frame
)
3955 Lisp_Object lface1
, lface2
;
3960 /* Don't use check_x_frame here because this function is called
3961 before X frames exist. At that time, if FRAME is nil,
3962 selected_frame will be used which is the frame dumped with
3963 Emacs. That frame is not an X frame. */
3964 f
= frame_or_selected_frame (frame
, 2);
3966 lface1
= lface_from_face_name (f
, face1
, 1);
3967 lface2
= lface_from_face_name (f
, face2
, 1);
3968 equal_p
= lface_equal_p (XVECTOR (lface1
)->contents
,
3969 XVECTOR (lface2
)->contents
);
3970 return equal_p
? Qt
: Qnil
;
3974 DEFUN ("internal-lisp-face-empty-p", Finternal_lisp_face_empty_p
,
3975 Sinternal_lisp_face_empty_p
, 1, 2, 0,
3976 doc
: /* True if FACE has no attribute specified.
3977 If the optional argument FRAME is given, report on face FACE in that frame.
3978 If FRAME is t, report on the defaults for face FACE (for new frames).
3979 If FRAME is omitted or nil, use the selected frame. */)
3980 (Lisp_Object face
, Lisp_Object frame
)
3987 frame
= selected_frame
;
3988 CHECK_LIVE_FRAME (frame
);
3992 lface
= lface_from_face_name (NULL
, face
, 1);
3994 lface
= lface_from_face_name (f
, face
, 1);
3996 for (i
= 1; i
< LFACE_VECTOR_SIZE
; ++i
)
3997 if (!UNSPECIFIEDP (AREF (lface
, i
)))
4000 return i
== LFACE_VECTOR_SIZE
? Qt
: Qnil
;
4004 DEFUN ("frame-face-alist", Fframe_face_alist
, Sframe_face_alist
,
4006 doc
: /* Return an alist of frame-local faces defined on FRAME.
4007 For internal use only. */)
4010 struct frame
*f
= frame_or_selected_frame (frame
, 0);
4011 return f
->face_alist
;
4015 /* Return a hash code for Lisp string STRING with case ignored. Used
4016 below in computing a hash value for a Lisp face. */
4018 static INLINE
unsigned
4019 hash_string_case_insensitive (Lisp_Object string
)
4021 const unsigned char *s
;
4023 xassert (STRINGP (string
));
4024 for (s
= SDATA (string
); *s
; ++s
)
4025 hash
= (hash
<< 1) ^ tolower (*s
);
4030 /* Return a hash code for face attribute vector V. */
4032 static INLINE
unsigned
4033 lface_hash (Lisp_Object
*v
)
4035 return (hash_string_case_insensitive (v
[LFACE_FAMILY_INDEX
])
4036 ^ hash_string_case_insensitive (v
[LFACE_FOUNDRY_INDEX
])
4037 ^ hash_string_case_insensitive (v
[LFACE_FOREGROUND_INDEX
])
4038 ^ hash_string_case_insensitive (v
[LFACE_BACKGROUND_INDEX
])
4039 ^ XHASH (v
[LFACE_WEIGHT_INDEX
])
4040 ^ XHASH (v
[LFACE_SLANT_INDEX
])
4041 ^ XHASH (v
[LFACE_SWIDTH_INDEX
])
4042 ^ XHASH (v
[LFACE_HEIGHT_INDEX
]));
4046 /* Return non-zero if LFACE1 and LFACE2 specify the same font (without
4047 considering charsets/registries). They do if they specify the same
4048 family, point size, weight, width, slant, and font. Both
4049 LFACE1 and LFACE2 must be fully-specified. */
4052 lface_same_font_attributes_p (Lisp_Object
*lface1
, Lisp_Object
*lface2
)
4054 xassert (lface_fully_specified_p (lface1
)
4055 && lface_fully_specified_p (lface2
));
4056 return (xstrcasecmp (SSDATA (lface1
[LFACE_FAMILY_INDEX
]),
4057 SSDATA (lface2
[LFACE_FAMILY_INDEX
])) == 0
4058 && xstrcasecmp (SSDATA (lface1
[LFACE_FOUNDRY_INDEX
]),
4059 SSDATA (lface2
[LFACE_FOUNDRY_INDEX
])) == 0
4060 && EQ (lface1
[LFACE_HEIGHT_INDEX
], lface2
[LFACE_HEIGHT_INDEX
])
4061 && EQ (lface1
[LFACE_SWIDTH_INDEX
], lface2
[LFACE_SWIDTH_INDEX
])
4062 && EQ (lface1
[LFACE_WEIGHT_INDEX
], lface2
[LFACE_WEIGHT_INDEX
])
4063 && EQ (lface1
[LFACE_SLANT_INDEX
], lface2
[LFACE_SLANT_INDEX
])
4064 && EQ (lface1
[LFACE_FONT_INDEX
], lface2
[LFACE_FONT_INDEX
])
4065 && (EQ (lface1
[LFACE_FONTSET_INDEX
], lface2
[LFACE_FONTSET_INDEX
])
4066 || (STRINGP (lface1
[LFACE_FONTSET_INDEX
])
4067 && STRINGP (lface2
[LFACE_FONTSET_INDEX
])
4068 && ! xstrcasecmp (SSDATA (lface1
[LFACE_FONTSET_INDEX
]),
4069 SSDATA (lface2
[LFACE_FONTSET_INDEX
]))))
4075 /***********************************************************************
4077 ***********************************************************************/
4079 /* Allocate and return a new realized face for Lisp face attribute
4082 static struct face
*
4083 make_realized_face (Lisp_Object
*attr
)
4085 struct face
*face
= (struct face
*) xmalloc (sizeof *face
);
4086 memset (face
, 0, sizeof *face
);
4087 face
->ascii_face
= face
;
4088 memcpy (face
->lface
, attr
, sizeof face
->lface
);
4093 /* Free realized face FACE, including its X resources. FACE may
4097 free_realized_face (struct frame
*f
, struct face
*face
)
4101 #ifdef HAVE_WINDOW_SYSTEM
4102 if (FRAME_WINDOW_P (f
))
4104 /* Free fontset of FACE if it is ASCII face. */
4105 if (face
->fontset
>= 0 && face
== face
->ascii_face
)
4106 free_face_fontset (f
, face
);
4111 font_done_for_face (f
, face
);
4112 x_free_gc (f
, face
->gc
);
4117 free_face_colors (f
, face
);
4118 x_destroy_bitmap (f
, face
->stipple
);
4120 #endif /* HAVE_WINDOW_SYSTEM */
4127 /* Prepare face FACE for subsequent display on frame F. This
4128 allocated GCs if they haven't been allocated yet or have been freed
4129 by clearing the face cache. */
4132 prepare_face_for_display (struct frame
*f
, struct face
*face
)
4134 #ifdef HAVE_WINDOW_SYSTEM
4135 xassert (FRAME_WINDOW_P (f
));
4140 unsigned long mask
= GCForeground
| GCBackground
| GCGraphicsExposures
;
4142 xgcv
.foreground
= face
->foreground
;
4143 xgcv
.background
= face
->background
;
4144 #ifdef HAVE_X_WINDOWS
4145 xgcv
.graphics_exposures
= False
;
4149 #ifdef HAVE_X_WINDOWS
4152 xgcv
.fill_style
= FillOpaqueStippled
;
4153 xgcv
.stipple
= x_bitmap_pixmap (f
, face
->stipple
);
4154 mask
|= GCFillStyle
| GCStipple
;
4157 face
->gc
= x_create_gc (f
, mask
, &xgcv
);
4159 font_prepare_for_face (f
, face
);
4162 #endif /* HAVE_WINDOW_SYSTEM */
4166 /* Returns the `distance' between the colors X and Y. */
4169 color_distance (XColor
*x
, XColor
*y
)
4171 /* This formula is from a paper title `Colour metric' by Thiadmer Riemersma.
4172 Quoting from that paper:
4174 This formula has results that are very close to L*u*v* (with the
4175 modified lightness curve) and, more importantly, it is a more even
4176 algorithm: it does not have a range of colours where it suddenly
4177 gives far from optimal results.
4179 See <http://www.compuphase.com/cmetric.htm> for more info. */
4181 long r
= (x
->red
- y
->red
) >> 8;
4182 long g
= (x
->green
- y
->green
) >> 8;
4183 long b
= (x
->blue
- y
->blue
) >> 8;
4184 long r_mean
= (x
->red
+ y
->red
) >> 9;
4187 (((512 + r_mean
) * r
* r
) >> 8)
4189 + (((767 - r_mean
) * b
* b
) >> 8);
4193 DEFUN ("color-distance", Fcolor_distance
, Scolor_distance
, 2, 3, 0,
4194 doc
: /* Return an integer distance between COLOR1 and COLOR2 on FRAME.
4195 COLOR1 and COLOR2 may be either strings containing the color name,
4196 or lists of the form (RED GREEN BLUE).
4197 If FRAME is unspecified or nil, the current frame is used. */)
4198 (Lisp_Object color1
, Lisp_Object color2
, Lisp_Object frame
)
4201 XColor cdef1
, cdef2
;
4204 frame
= selected_frame
;
4205 CHECK_LIVE_FRAME (frame
);
4208 if (!(CONSP (color1
) && parse_rgb_list (color1
, &cdef1
))
4209 && !(STRINGP (color1
) && defined_color (f
, SSDATA (color1
), &cdef1
, 0)))
4210 signal_error ("Invalid color", color1
);
4211 if (!(CONSP (color2
) && parse_rgb_list (color2
, &cdef2
))
4212 && !(STRINGP (color2
) && defined_color (f
, SSDATA (color2
), &cdef2
, 0)))
4213 signal_error ("Invalid color", color2
);
4215 return make_number (color_distance (&cdef1
, &cdef2
));
4219 /***********************************************************************
4221 ***********************************************************************/
4223 /* Return a new face cache for frame F. */
4225 static struct face_cache
*
4226 make_face_cache (struct frame
*f
)
4228 struct face_cache
*c
;
4231 c
= (struct face_cache
*) xmalloc (sizeof *c
);
4232 memset (c
, 0, sizeof *c
);
4233 size
= FACE_CACHE_BUCKETS_SIZE
* sizeof *c
->buckets
;
4234 c
->buckets
= (struct face
**) xmalloc (size
);
4235 memset (c
->buckets
, 0, size
);
4237 c
->faces_by_id
= (struct face
**) xmalloc (c
->size
* sizeof *c
->faces_by_id
);
4239 c
->menu_face_changed_p
= menu_face_changed_default
;
4244 /* Clear out all graphics contexts for all realized faces, except for
4245 the basic faces. This should be done from time to time just to avoid
4246 keeping too many graphics contexts that are no longer needed. */
4249 clear_face_gcs (struct face_cache
*c
)
4251 if (c
&& FRAME_WINDOW_P (c
->f
))
4253 #ifdef HAVE_WINDOW_SYSTEM
4255 for (i
= BASIC_FACE_ID_SENTINEL
; i
< c
->used
; ++i
)
4257 struct face
*face
= c
->faces_by_id
[i
];
4258 if (face
&& face
->gc
)
4262 font_done_for_face (c
->f
, face
);
4263 x_free_gc (c
->f
, face
->gc
);
4268 #endif /* HAVE_WINDOW_SYSTEM */
4273 /* Free all realized faces in face cache C, including basic faces.
4274 C may be null. If faces are freed, make sure the frame's current
4275 matrix is marked invalid, so that a display caused by an expose
4276 event doesn't try to use faces we destroyed. */
4279 free_realized_faces (struct face_cache
*c
)
4284 struct frame
*f
= c
->f
;
4286 /* We must block input here because we can't process X events
4287 safely while only some faces are freed, or when the frame's
4288 current matrix still references freed faces. */
4291 for (i
= 0; i
< c
->used
; ++i
)
4293 free_realized_face (f
, c
->faces_by_id
[i
]);
4294 c
->faces_by_id
[i
] = NULL
;
4298 size
= FACE_CACHE_BUCKETS_SIZE
* sizeof *c
->buckets
;
4299 memset (c
->buckets
, 0, size
);
4301 /* Must do a thorough redisplay the next time. Mark current
4302 matrices as invalid because they will reference faces freed
4303 above. This function is also called when a frame is
4304 destroyed. In this case, the root window of F is nil. */
4305 if (WINDOWP (f
->root_window
))
4307 clear_current_matrices (f
);
4308 ++windows_or_buffers_changed
;
4316 /* Free all realized faces that are using FONTSET on frame F. */
4319 free_realized_faces_for_fontset (struct frame
*f
, int fontset
)
4321 struct face_cache
*cache
= FRAME_FACE_CACHE (f
);
4325 /* We must block input here because we can't process X events safely
4326 while only some faces are freed, or when the frame's current
4327 matrix still references freed faces. */
4330 for (i
= 0; i
< cache
->used
; i
++)
4332 face
= cache
->faces_by_id
[i
];
4334 && face
->fontset
== fontset
)
4336 uncache_face (cache
, face
);
4337 free_realized_face (f
, face
);
4341 /* Must do a thorough redisplay the next time. Mark current
4342 matrices as invalid because they will reference faces freed
4343 above. This function is also called when a frame is destroyed.
4344 In this case, the root window of F is nil. */
4345 if (WINDOWP (f
->root_window
))
4347 clear_current_matrices (f
);
4348 ++windows_or_buffers_changed
;
4355 /* Free all realized faces on FRAME or on all frames if FRAME is nil.
4356 This is done after attributes of a named face have been changed,
4357 because we can't tell which realized faces depend on that face. */
4360 free_all_realized_faces (Lisp_Object frame
)
4365 FOR_EACH_FRAME (rest
, frame
)
4366 free_realized_faces (FRAME_FACE_CACHE (XFRAME (frame
)));
4369 free_realized_faces (FRAME_FACE_CACHE (XFRAME (frame
)));
4373 /* Free face cache C and faces in it, including their X resources. */
4376 free_face_cache (struct face_cache
*c
)
4380 free_realized_faces (c
);
4382 xfree (c
->faces_by_id
);
4388 /* Cache realized face FACE in face cache C. HASH is the hash value
4389 of FACE. If FACE is for ASCII characters (i.e. FACE->ascii_face ==
4390 FACE), insert the new face to the beginning of the collision list
4391 of the face hash table of C. Otherwise, add the new face to the
4392 end of the collision list. This way, lookup_face can quickly find
4393 that a requested face is not cached. */
4396 cache_face (struct face_cache
*c
, struct face
*face
, unsigned int hash
)
4398 int i
= hash
% FACE_CACHE_BUCKETS_SIZE
;
4402 if (face
->ascii_face
!= face
)
4404 struct face
*last
= c
->buckets
[i
];
4415 c
->buckets
[i
] = face
;
4416 face
->prev
= face
->next
= NULL
;
4422 face
->next
= c
->buckets
[i
];
4424 face
->next
->prev
= face
;
4425 c
->buckets
[i
] = face
;
4428 /* Find a free slot in C->faces_by_id and use the index of the free
4429 slot as FACE->id. */
4430 for (i
= 0; i
< c
->used
; ++i
)
4431 if (c
->faces_by_id
[i
] == NULL
)
4435 /* Maybe enlarge C->faces_by_id. */
4438 if (c
->used
== c
->size
)
4441 new_size
= min (2 * c
->size
, MAX_FACE_ID
);
4442 if (new_size
== c
->size
)
4443 abort (); /* Alternatives? ++kfs */
4444 sz
= new_size
* sizeof *c
->faces_by_id
;
4445 c
->faces_by_id
= (struct face
**) xrealloc (c
->faces_by_id
, sz
);
4452 /* Check that FACE got a unique id. */
4457 for (j
= n
= 0; j
< FACE_CACHE_BUCKETS_SIZE
; ++j
)
4458 for (face
= c
->buckets
[j
]; face
; face
= face
->next
)
4464 #endif /* GLYPH_DEBUG */
4466 c
->faces_by_id
[i
] = face
;
4470 /* Remove face FACE from cache C. */
4473 uncache_face (struct face_cache
*c
, struct face
*face
)
4475 int i
= face
->hash
% FACE_CACHE_BUCKETS_SIZE
;
4478 face
->prev
->next
= face
->next
;
4480 c
->buckets
[i
] = face
->next
;
4483 face
->next
->prev
= face
->prev
;
4485 c
->faces_by_id
[face
->id
] = NULL
;
4486 if (face
->id
== c
->used
)
4491 /* Look up a realized face with face attributes ATTR in the face cache
4492 of frame F. The face will be used to display ASCII characters.
4493 Value is the ID of the face found. If no suitable face is found,
4494 realize a new one. */
4497 lookup_face (struct frame
*f
, Lisp_Object
*attr
)
4499 struct face_cache
*cache
= FRAME_FACE_CACHE (f
);
4504 xassert (cache
!= NULL
);
4505 check_lface_attrs (attr
);
4507 /* Look up ATTR in the face cache. */
4508 hash
= lface_hash (attr
);
4509 i
= hash
% FACE_CACHE_BUCKETS_SIZE
;
4511 for (face
= cache
->buckets
[i
]; face
; face
= face
->next
)
4513 if (face
->ascii_face
!= face
)
4515 /* There's no more ASCII face. */
4519 if (face
->hash
== hash
4520 && lface_equal_p (face
->lface
, attr
))
4524 /* If not found, realize a new face. */
4526 face
= realize_face (cache
, attr
, -1);
4529 xassert (face
== FACE_FROM_ID (f
, face
->id
));
4530 #endif /* GLYPH_DEBUG */
4535 #ifdef HAVE_WINDOW_SYSTEM
4536 /* Look up a realized face that has the same attributes as BASE_FACE
4537 except for the font in the face cache of frame F. If FONT-OBJECT
4538 is not nil, it is an already opened font. If FONT-OBJECT is nil,
4539 the face has no font. Value is the ID of the face found. If no
4540 suitable face is found, realize a new one. */
4543 face_for_font (struct frame
*f
, Lisp_Object font_object
, struct face
*base_face
)
4545 struct face_cache
*cache
= FRAME_FACE_CACHE (f
);
4550 xassert (cache
!= NULL
);
4551 base_face
= base_face
->ascii_face
;
4552 hash
= lface_hash (base_face
->lface
);
4553 i
= hash
% FACE_CACHE_BUCKETS_SIZE
;
4555 for (face
= cache
->buckets
[i
]; face
; face
= face
->next
)
4557 if (face
->ascii_face
== face
)
4559 if (face
->ascii_face
== base_face
4560 && face
->font
== (NILP (font_object
) ? NULL
4561 : XFONT_OBJECT (font_object
))
4562 && lface_equal_p (face
->lface
, base_face
->lface
))
4566 /* If not found, realize a new face. */
4567 face
= realize_non_ascii_face (f
, font_object
, base_face
);
4570 #endif /* HAVE_WINDOW_SYSTEM */
4572 /* Return the face id of the realized face for named face SYMBOL on
4573 frame F suitable for displaying ASCII characters. Value is -1 if
4574 the face couldn't be determined, which might happen if the default
4575 face isn't realized and cannot be realized. */
4578 lookup_named_face (struct frame
*f
, Lisp_Object symbol
, int signal_p
)
4580 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
4581 Lisp_Object symbol_attrs
[LFACE_VECTOR_SIZE
];
4582 struct face
*default_face
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
4584 if (default_face
== NULL
)
4586 if (!realize_basic_faces (f
))
4588 default_face
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
4589 if (default_face
== NULL
)
4590 abort (); /* realize_basic_faces must have set it up */
4593 if (! get_lface_attributes (f
, symbol
, symbol_attrs
, signal_p
, 0))
4596 memcpy (attrs
, default_face
->lface
, sizeof attrs
);
4597 merge_face_vectors (f
, symbol_attrs
, attrs
, 0);
4599 return lookup_face (f
, attrs
);
4603 /* Return the display face-id of the basic face who's canonical face-id
4604 is FACE_ID. The return value will usually simply be FACE_ID, unless that
4605 basic face has bee remapped via Vface_remapping_alist. This function is
4606 conservative: if something goes wrong, it will simply return FACE_ID
4607 rather than signal an error. */
4610 lookup_basic_face (struct frame
*f
, int face_id
)
4612 Lisp_Object name
, mapping
;
4613 int remapped_face_id
;
4615 if (NILP (Vface_remapping_alist
))
4616 return face_id
; /* Nothing to do. */
4620 case DEFAULT_FACE_ID
: name
= Qdefault
; break;
4621 case MODE_LINE_FACE_ID
: name
= Qmode_line
; break;
4622 case MODE_LINE_INACTIVE_FACE_ID
: name
= Qmode_line_inactive
; break;
4623 case HEADER_LINE_FACE_ID
: name
= Qheader_line
; break;
4624 case TOOL_BAR_FACE_ID
: name
= Qtool_bar
; break;
4625 case FRINGE_FACE_ID
: name
= Qfringe
; break;
4626 case SCROLL_BAR_FACE_ID
: name
= Qscroll_bar
; break;
4627 case BORDER_FACE_ID
: name
= Qborder
; break;
4628 case CURSOR_FACE_ID
: name
= Qcursor
; break;
4629 case MOUSE_FACE_ID
: name
= Qmouse
; break;
4630 case MENU_FACE_ID
: name
= Qmenu
; break;
4633 abort (); /* the caller is supposed to pass us a basic face id */
4636 /* Do a quick scan through Vface_remapping_alist, and return immediately
4637 if there is no remapping for face NAME. This is just an optimization
4638 for the very common no-remapping case. */
4639 mapping
= assq_no_quit (name
, Vface_remapping_alist
);
4641 return face_id
; /* Give up. */
4643 /* If there is a remapping entry, lookup the face using NAME, which will
4644 handle the remapping too. */
4645 remapped_face_id
= lookup_named_face (f
, name
, 0);
4646 if (remapped_face_id
< 0)
4647 return face_id
; /* Give up. */
4649 return remapped_face_id
;
4653 /* Return the ID of the realized ASCII face of Lisp face with ID
4654 LFACE_ID on frame F. Value is -1 if LFACE_ID isn't valid. */
4657 ascii_face_of_lisp_face (struct frame
*f
, int lface_id
)
4661 if (lface_id
>= 0 && lface_id
< lface_id_to_name_size
)
4663 Lisp_Object face_name
= lface_id_to_name
[lface_id
];
4664 face_id
= lookup_named_face (f
, face_name
, 1);
4673 /* Return a face for charset ASCII that is like the face with id
4674 FACE_ID on frame F, but has a font that is STEPS steps smaller.
4675 STEPS < 0 means larger. Value is the id of the face. */
4678 smaller_face (struct frame
*f
, int face_id
, int steps
)
4680 #ifdef HAVE_WINDOW_SYSTEM
4682 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
4683 int pt
, last_pt
, last_height
;
4686 struct face
*new_face
;
4688 /* If not called for an X frame, just return the original face. */
4689 if (FRAME_TERMCAP_P (f
))
4692 /* Try in increments of 1/2 pt. */
4693 delta
= steps
< 0 ? 5 : -5;
4694 steps
= eabs (steps
);
4696 face
= FACE_FROM_ID (f
, face_id
);
4697 memcpy (attrs
, face
->lface
, sizeof attrs
);
4698 pt
= last_pt
= XFASTINT (attrs
[LFACE_HEIGHT_INDEX
]);
4699 new_face_id
= face_id
;
4700 last_height
= FONT_HEIGHT (face
->font
);
4704 /* Give up if we cannot find a font within 10pt. */
4705 && eabs (last_pt
- pt
) < 100)
4707 /* Look up a face for a slightly smaller/larger font. */
4709 attrs
[LFACE_HEIGHT_INDEX
] = make_number (pt
);
4710 new_face_id
= lookup_face (f
, attrs
);
4711 new_face
= FACE_FROM_ID (f
, new_face_id
);
4713 /* If height changes, count that as one step. */
4714 if ((delta
< 0 && FONT_HEIGHT (new_face
->font
) < last_height
)
4715 || (delta
> 0 && FONT_HEIGHT (new_face
->font
) > last_height
))
4718 last_height
= FONT_HEIGHT (new_face
->font
);
4725 #else /* not HAVE_WINDOW_SYSTEM */
4729 #endif /* not HAVE_WINDOW_SYSTEM */
4733 /* Return a face for charset ASCII that is like the face with id
4734 FACE_ID on frame F, but has height HEIGHT. */
4737 face_with_height (struct frame
*f
, int face_id
, int height
)
4739 #ifdef HAVE_WINDOW_SYSTEM
4741 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
4743 if (FRAME_TERMCAP_P (f
)
4747 face
= FACE_FROM_ID (f
, face_id
);
4748 memcpy (attrs
, face
->lface
, sizeof attrs
);
4749 attrs
[LFACE_HEIGHT_INDEX
] = make_number (height
);
4750 font_clear_prop (attrs
, FONT_SIZE_INDEX
);
4751 face_id
= lookup_face (f
, attrs
);
4752 #endif /* HAVE_WINDOW_SYSTEM */
4758 /* Return the face id of the realized face for named face SYMBOL on
4759 frame F suitable for displaying ASCII characters, and use
4760 attributes of the face FACE_ID for attributes that aren't
4761 completely specified by SYMBOL. This is like lookup_named_face,
4762 except that the default attributes come from FACE_ID, not from the
4763 default face. FACE_ID is assumed to be already realized. */
4766 lookup_derived_face (struct frame
*f
, Lisp_Object symbol
, int face_id
, int signal_p
)
4768 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
4769 Lisp_Object symbol_attrs
[LFACE_VECTOR_SIZE
];
4770 struct face
*default_face
= FACE_FROM_ID (f
, face_id
);
4775 if (!get_lface_attributes (f
, symbol
, symbol_attrs
, signal_p
, 0))
4778 memcpy (attrs
, default_face
->lface
, sizeof attrs
);
4779 merge_face_vectors (f
, symbol_attrs
, attrs
, 0);
4780 return lookup_face (f
, attrs
);
4783 DEFUN ("face-attributes-as-vector", Fface_attributes_as_vector
,
4784 Sface_attributes_as_vector
, 1, 1, 0,
4785 doc
: /* Return a vector of face attributes corresponding to PLIST. */)
4789 lface
= Fmake_vector (make_number (LFACE_VECTOR_SIZE
),
4791 merge_face_ref (XFRAME (selected_frame
), plist
, XVECTOR (lface
)->contents
,
4798 /***********************************************************************
4799 Face capability testing
4800 ***********************************************************************/
4803 /* If the distance (as returned by color_distance) between two colors is
4804 less than this, then they are considered the same, for determining
4805 whether a color is supported or not. The range of values is 0-65535. */
4807 #define TTY_SAME_COLOR_THRESHOLD 10000
4809 #ifdef HAVE_WINDOW_SYSTEM
4811 /* Return non-zero if all the face attributes in ATTRS are supported
4812 on the window-system frame F.
4814 The definition of `supported' is somewhat heuristic, but basically means
4815 that a face containing all the attributes in ATTRS, when merged with the
4816 default face for display, can be represented in a way that's
4818 \(1) different in appearance than the default face, and
4819 \(2) `close in spirit' to what the attributes specify, if not exact. */
4822 x_supports_face_attributes_p (struct frame
*f
, Lisp_Object
*attrs
, struct face
*def_face
)
4824 Lisp_Object
*def_attrs
= def_face
->lface
;
4826 /* Check that other specified attributes are different that the default
4828 if ((!UNSPECIFIEDP (attrs
[LFACE_UNDERLINE_INDEX
])
4829 && face_attr_equal_p (attrs
[LFACE_UNDERLINE_INDEX
],
4830 def_attrs
[LFACE_UNDERLINE_INDEX
]))
4831 || (!UNSPECIFIEDP (attrs
[LFACE_INVERSE_INDEX
])
4832 && face_attr_equal_p (attrs
[LFACE_INVERSE_INDEX
],
4833 def_attrs
[LFACE_INVERSE_INDEX
]))
4834 || (!UNSPECIFIEDP (attrs
[LFACE_FOREGROUND_INDEX
])
4835 && face_attr_equal_p (attrs
[LFACE_FOREGROUND_INDEX
],
4836 def_attrs
[LFACE_FOREGROUND_INDEX
]))
4837 || (!UNSPECIFIEDP (attrs
[LFACE_BACKGROUND_INDEX
])
4838 && face_attr_equal_p (attrs
[LFACE_BACKGROUND_INDEX
],
4839 def_attrs
[LFACE_BACKGROUND_INDEX
]))
4840 || (!UNSPECIFIEDP (attrs
[LFACE_STIPPLE_INDEX
])
4841 && face_attr_equal_p (attrs
[LFACE_STIPPLE_INDEX
],
4842 def_attrs
[LFACE_STIPPLE_INDEX
]))
4843 || (!UNSPECIFIEDP (attrs
[LFACE_OVERLINE_INDEX
])
4844 && face_attr_equal_p (attrs
[LFACE_OVERLINE_INDEX
],
4845 def_attrs
[LFACE_OVERLINE_INDEX
]))
4846 || (!UNSPECIFIEDP (attrs
[LFACE_STRIKE_THROUGH_INDEX
])
4847 && face_attr_equal_p (attrs
[LFACE_STRIKE_THROUGH_INDEX
],
4848 def_attrs
[LFACE_STRIKE_THROUGH_INDEX
]))
4849 || (!UNSPECIFIEDP (attrs
[LFACE_BOX_INDEX
])
4850 && face_attr_equal_p (attrs
[LFACE_BOX_INDEX
],
4851 def_attrs
[LFACE_BOX_INDEX
])))
4854 /* Check font-related attributes, as those are the most commonly
4855 "unsupported" on a window-system (because of missing fonts). */
4856 if (!UNSPECIFIEDP (attrs
[LFACE_FAMILY_INDEX
])
4857 || !UNSPECIFIEDP (attrs
[LFACE_FOUNDRY_INDEX
])
4858 || !UNSPECIFIEDP (attrs
[LFACE_HEIGHT_INDEX
])
4859 || !UNSPECIFIEDP (attrs
[LFACE_WEIGHT_INDEX
])
4860 || !UNSPECIFIEDP (attrs
[LFACE_SLANT_INDEX
])
4861 || !UNSPECIFIEDP (attrs
[LFACE_SWIDTH_INDEX
]))
4865 Lisp_Object merged_attrs
[LFACE_VECTOR_SIZE
];
4868 memcpy (merged_attrs
, def_attrs
, sizeof merged_attrs
);
4870 merge_face_vectors (f
, attrs
, merged_attrs
, 0);
4872 face_id
= lookup_face (f
, merged_attrs
);
4873 face
= FACE_FROM_ID (f
, face_id
);
4876 error ("Cannot make face");
4878 /* If the font is the same, or no font is found, then not
4880 if (face
->font
== def_face
->font
4883 for (i
= FONT_TYPE_INDEX
; i
<= FONT_SIZE_INDEX
; i
++)
4884 if (! EQ (face
->font
->props
[i
], def_face
->font
->props
[i
]))
4888 if (i
< FONT_FOUNDRY_INDEX
|| i
> FONT_REGISTRY_INDEX
4889 || face
->font
->driver
->case_sensitive
)
4891 s1
= SYMBOL_NAME (face
->font
->props
[i
]);
4892 s2
= SYMBOL_NAME (def_face
->font
->props
[i
]);
4893 if (! EQ (Fcompare_strings (s1
, make_number (0), Qnil
,
4894 s2
, make_number (0), Qnil
, Qt
), Qt
))
4900 /* Everything checks out, this face is supported. */
4904 #endif /* HAVE_WINDOW_SYSTEM */
4906 /* Return non-zero if all the face attributes in ATTRS are supported
4909 The definition of `supported' is somewhat heuristic, but basically means
4910 that a face containing all the attributes in ATTRS, when merged
4911 with the default face for display, can be represented in a way that's
4913 \(1) different in appearance than the default face, and
4914 \(2) `close in spirit' to what the attributes specify, if not exact.
4916 Point (2) implies that a `:weight black' attribute will be satisfied
4917 by any terminal that can display bold, and a `:foreground "yellow"' as
4918 long as the terminal can display a yellowish color, but `:slant italic'
4919 will _not_ be satisfied by the tty display code's automatic
4920 substitution of a `dim' face for italic. */
4923 tty_supports_face_attributes_p (struct frame
*f
, Lisp_Object
*attrs
, struct face
*def_face
)
4926 Lisp_Object val
, fg
, bg
;
4927 XColor fg_tty_color
, fg_std_color
;
4928 XColor bg_tty_color
, bg_std_color
;
4929 unsigned test_caps
= 0;
4930 Lisp_Object
*def_attrs
= def_face
->lface
;
4933 /* First check some easy-to-check stuff; ttys support none of the
4934 following attributes, so we can just return false if any are requested
4935 (even if `nominal' values are specified, we should still return false,
4936 as that will be the same value that the default face uses). We
4937 consider :slant unsupportable on ttys, even though the face code
4938 actually `fakes' them using a dim attribute if possible. This is
4939 because the faked result is too different from what the face
4941 if (!UNSPECIFIEDP (attrs
[LFACE_FAMILY_INDEX
])
4942 || !UNSPECIFIEDP (attrs
[LFACE_FOUNDRY_INDEX
])
4943 || !UNSPECIFIEDP (attrs
[LFACE_STIPPLE_INDEX
])
4944 || !UNSPECIFIEDP (attrs
[LFACE_HEIGHT_INDEX
])
4945 || !UNSPECIFIEDP (attrs
[LFACE_SWIDTH_INDEX
])
4946 || !UNSPECIFIEDP (attrs
[LFACE_OVERLINE_INDEX
])
4947 || !UNSPECIFIEDP (attrs
[LFACE_STRIKE_THROUGH_INDEX
])
4948 || !UNSPECIFIEDP (attrs
[LFACE_BOX_INDEX
])
4949 || !UNSPECIFIEDP (attrs
[LFACE_SLANT_INDEX
]))
4953 /* Test for terminal `capabilities' (non-color character attributes). */
4955 /* font weight (bold/dim) */
4956 val
= attrs
[LFACE_WEIGHT_INDEX
];
4957 if (!UNSPECIFIEDP (val
)
4958 && (weight
= FONT_WEIGHT_NAME_NUMERIC (val
), weight
>= 0))
4960 int def_weight
= FONT_WEIGHT_NAME_NUMERIC (def_attrs
[LFACE_WEIGHT_INDEX
]);
4964 if (def_weight
> 100)
4965 return 0; /* same as default */
4966 test_caps
= TTY_CAP_BOLD
;
4968 else if (weight
< 100)
4970 if (def_weight
< 100)
4971 return 0; /* same as default */
4972 test_caps
= TTY_CAP_DIM
;
4974 else if (def_weight
== 100)
4975 return 0; /* same as default */
4979 val
= attrs
[LFACE_UNDERLINE_INDEX
];
4980 if (!UNSPECIFIEDP (val
))
4983 return 0; /* ttys can't use colored underlines */
4984 else if (face_attr_equal_p (val
, def_attrs
[LFACE_UNDERLINE_INDEX
]))
4985 return 0; /* same as default */
4987 test_caps
|= TTY_CAP_UNDERLINE
;
4991 val
= attrs
[LFACE_INVERSE_INDEX
];
4992 if (!UNSPECIFIEDP (val
))
4994 if (face_attr_equal_p (val
, def_attrs
[LFACE_INVERSE_INDEX
]))
4995 return 0; /* same as default */
4997 test_caps
|= TTY_CAP_INVERSE
;
5001 /* Color testing. */
5003 /* Default the color indices in FG_TTY_COLOR and BG_TTY_COLOR, since
5004 we use them when calling `tty_capable_p' below, even if the face
5005 specifies no colors. */
5006 fg_tty_color
.pixel
= FACE_TTY_DEFAULT_FG_COLOR
;
5007 bg_tty_color
.pixel
= FACE_TTY_DEFAULT_BG_COLOR
;
5009 /* Check if foreground color is close enough. */
5010 fg
= attrs
[LFACE_FOREGROUND_INDEX
];
5013 Lisp_Object def_fg
= def_attrs
[LFACE_FOREGROUND_INDEX
];
5015 if (face_attr_equal_p (fg
, def_fg
))
5016 return 0; /* same as default */
5017 else if (! tty_lookup_color (f
, fg
, &fg_tty_color
, &fg_std_color
))
5018 return 0; /* not a valid color */
5019 else if (color_distance (&fg_tty_color
, &fg_std_color
)
5020 > TTY_SAME_COLOR_THRESHOLD
)
5021 return 0; /* displayed color is too different */
5023 /* Make sure the color is really different than the default. */
5025 XColor def_fg_color
;
5026 if (tty_lookup_color (f
, def_fg
, &def_fg_color
, 0)
5027 && (color_distance (&fg_tty_color
, &def_fg_color
)
5028 <= TTY_SAME_COLOR_THRESHOLD
))
5033 /* Check if background color is close enough. */
5034 bg
= attrs
[LFACE_BACKGROUND_INDEX
];
5037 Lisp_Object def_bg
= def_attrs
[LFACE_BACKGROUND_INDEX
];
5039 if (face_attr_equal_p (bg
, def_bg
))
5040 return 0; /* same as default */
5041 else if (! tty_lookup_color (f
, bg
, &bg_tty_color
, &bg_std_color
))
5042 return 0; /* not a valid color */
5043 else if (color_distance (&bg_tty_color
, &bg_std_color
)
5044 > TTY_SAME_COLOR_THRESHOLD
)
5045 return 0; /* displayed color is too different */
5047 /* Make sure the color is really different than the default. */
5049 XColor def_bg_color
;
5050 if (tty_lookup_color (f
, def_bg
, &def_bg_color
, 0)
5051 && (color_distance (&bg_tty_color
, &def_bg_color
)
5052 <= TTY_SAME_COLOR_THRESHOLD
))
5057 /* If both foreground and background are requested, see if the
5058 distance between them is OK. We just check to see if the distance
5059 between the tty's foreground and background is close enough to the
5060 distance between the standard foreground and background. */
5061 if (STRINGP (fg
) && STRINGP (bg
))
5064 = (color_distance (&fg_std_color
, &bg_std_color
)
5065 - color_distance (&fg_tty_color
, &bg_tty_color
));
5066 if (delta_delta
> TTY_SAME_COLOR_THRESHOLD
5067 || delta_delta
< -TTY_SAME_COLOR_THRESHOLD
)
5072 /* See if the capabilities we selected above are supported, with the
5074 if (test_caps
!= 0 &&
5075 ! tty_capable_p (FRAME_TTY (f
), test_caps
, fg_tty_color
.pixel
, bg_tty_color
.pixel
))
5079 /* Hmmm, everything checks out, this terminal must support this face. */
5084 DEFUN ("display-supports-face-attributes-p",
5085 Fdisplay_supports_face_attributes_p
, Sdisplay_supports_face_attributes_p
,
5087 doc
: /* Return non-nil if all the face attributes in ATTRIBUTES are supported.
5088 The optional argument DISPLAY can be a display name, a frame, or
5089 nil (meaning the selected frame's display).
5091 The definition of `supported' is somewhat heuristic, but basically means
5092 that a face containing all the attributes in ATTRIBUTES, when merged
5093 with the default face for display, can be represented in a way that's
5095 \(1) different in appearance than the default face, and
5096 \(2) `close in spirit' to what the attributes specify, if not exact.
5098 Point (2) implies that a `:weight black' attribute will be satisfied by
5099 any display that can display bold, and a `:foreground \"yellow\"' as long
5100 as it can display a yellowish color, but `:slant italic' will _not_ be
5101 satisfied by the tty display code's automatic substitution of a `dim'
5102 face for italic. */)
5103 (Lisp_Object attributes
, Lisp_Object display
)
5105 int supports
= 0, i
;
5108 struct face
*def_face
;
5109 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
5111 if (noninteractive
|| !initialized
)
5112 /* We may not be able to access low-level face information in batch
5113 mode, or before being dumped, and this function is not going to
5114 be very useful in those cases anyway, so just give up. */
5118 frame
= selected_frame
;
5119 else if (FRAMEP (display
))
5123 /* Find any frame on DISPLAY. */
5124 Lisp_Object fl_tail
;
5127 for (fl_tail
= Vframe_list
; CONSP (fl_tail
); fl_tail
= XCDR (fl_tail
))
5129 frame
= XCAR (fl_tail
);
5130 if (!NILP (Fequal (Fcdr (Fassq (Qdisplay
,
5131 XFRAME (frame
)->param_alist
)),
5137 CHECK_LIVE_FRAME (frame
);
5140 for (i
= 0; i
< LFACE_VECTOR_SIZE
; i
++)
5141 attrs
[i
] = Qunspecified
;
5142 merge_face_ref (f
, attributes
, attrs
, 1, 0);
5144 def_face
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
5145 if (def_face
== NULL
)
5147 if (! realize_basic_faces (f
))
5148 error ("Cannot realize default face");
5149 def_face
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
5150 if (def_face
== NULL
)
5151 abort (); /* realize_basic_faces must have set it up */
5154 /* Dispatch to the appropriate handler. */
5155 if (FRAME_TERMCAP_P (f
) || FRAME_MSDOS_P (f
))
5156 supports
= tty_supports_face_attributes_p (f
, attrs
, def_face
);
5157 #ifdef HAVE_WINDOW_SYSTEM
5159 supports
= x_supports_face_attributes_p (f
, attrs
, def_face
);
5162 return supports
? Qt
: Qnil
;
5166 /***********************************************************************
5168 ***********************************************************************/
5170 DEFUN ("internal-set-font-selection-order",
5171 Finternal_set_font_selection_order
,
5172 Sinternal_set_font_selection_order
, 1, 1, 0,
5173 doc
: /* Set font selection order for face font selection to ORDER.
5174 ORDER must be a list of length 4 containing the symbols `:width',
5175 `:height', `:weight', and `:slant'. Face attributes appearing
5176 first in ORDER are matched first, e.g. if `:height' appears before
5177 `:weight' in ORDER, font selection first tries to find a font with
5178 a suitable height, and then tries to match the font weight.
5184 int indices
[DIM (font_sort_order
)];
5187 memset (indices
, 0, sizeof indices
);
5191 CONSP (list
) && i
< DIM (indices
);
5192 list
= XCDR (list
), ++i
)
5194 Lisp_Object attr
= XCAR (list
);
5197 if (EQ (attr
, QCwidth
))
5199 else if (EQ (attr
, QCheight
))
5200 xlfd
= XLFD_POINT_SIZE
;
5201 else if (EQ (attr
, QCweight
))
5203 else if (EQ (attr
, QCslant
))
5208 if (indices
[i
] != 0)
5213 if (!NILP (list
) || i
!= DIM (indices
))
5214 signal_error ("Invalid font sort order", order
);
5215 for (i
= 0; i
< DIM (font_sort_order
); ++i
)
5216 if (indices
[i
] == 0)
5217 signal_error ("Invalid font sort order", order
);
5219 if (memcmp (indices
, font_sort_order
, sizeof indices
) != 0)
5221 memcpy (font_sort_order
, indices
, sizeof font_sort_order
);
5222 free_all_realized_faces (Qnil
);
5225 font_update_sort_order (font_sort_order
);
5231 DEFUN ("internal-set-alternative-font-family-alist",
5232 Finternal_set_alternative_font_family_alist
,
5233 Sinternal_set_alternative_font_family_alist
, 1, 1, 0,
5234 doc
: /* Define alternative font families to try in face font selection.
5235 ALIST is an alist of (FAMILY ALTERNATIVE1 ALTERNATIVE2 ...) entries.
5236 Each ALTERNATIVE is tried in order if no fonts of font family FAMILY can
5237 be found. Value is ALIST. */)
5240 Lisp_Object entry
, tail
, tail2
;
5243 alist
= Fcopy_sequence (alist
);
5244 for (tail
= alist
; CONSP (tail
); tail
= XCDR (tail
))
5246 entry
= XCAR (tail
);
5248 entry
= Fcopy_sequence (entry
);
5249 XSETCAR (tail
, entry
);
5250 for (tail2
= entry
; CONSP (tail2
); tail2
= XCDR (tail2
))
5251 XSETCAR (tail2
, Fintern (XCAR (tail2
), Qnil
));
5254 Vface_alternative_font_family_alist
= alist
;
5255 free_all_realized_faces (Qnil
);
5260 DEFUN ("internal-set-alternative-font-registry-alist",
5261 Finternal_set_alternative_font_registry_alist
,
5262 Sinternal_set_alternative_font_registry_alist
, 1, 1, 0,
5263 doc
: /* Define alternative font registries to try in face font selection.
5264 ALIST is an alist of (REGISTRY ALTERNATIVE1 ALTERNATIVE2 ...) entries.
5265 Each ALTERNATIVE is tried in order if no fonts of font registry REGISTRY can
5266 be found. Value is ALIST. */)
5269 Lisp_Object entry
, tail
, tail2
;
5272 alist
= Fcopy_sequence (alist
);
5273 for (tail
= alist
; CONSP (tail
); tail
= XCDR (tail
))
5275 entry
= XCAR (tail
);
5277 entry
= Fcopy_sequence (entry
);
5278 XSETCAR (tail
, entry
);
5279 for (tail2
= entry
; CONSP (tail2
); tail2
= XCDR (tail2
))
5280 XSETCAR (tail2
, Fdowncase (XCAR (tail2
)));
5282 Vface_alternative_font_registry_alist
= alist
;
5283 free_all_realized_faces (Qnil
);
5288 #ifdef HAVE_WINDOW_SYSTEM
5290 /* Ignore the difference of font point size less than this value. */
5292 #define FONT_POINT_SIZE_QUANTUM 5
5294 /* Return the fontset id of the base fontset name or alias name given
5295 by the fontset attribute of ATTRS. Value is -1 if the fontset
5296 attribute of ATTRS doesn't name a fontset. */
5299 face_fontset (Lisp_Object
*attrs
)
5303 name
= attrs
[LFACE_FONTSET_INDEX
];
5304 if (!STRINGP (name
))
5306 return fs_query_fontset (name
, 0);
5309 #endif /* HAVE_WINDOW_SYSTEM */
5313 /***********************************************************************
5315 ***********************************************************************/
5317 /* Realize basic faces on frame F. Value is zero if frame parameters
5318 of F don't contain enough information needed to realize the default
5322 realize_basic_faces (struct frame
*f
)
5325 int count
= SPECPDL_INDEX ();
5327 /* Block input here so that we won't be surprised by an X expose
5328 event, for instance, without having the faces set up. */
5330 specbind (Qscalable_fonts_allowed
, Qt
);
5332 if (realize_default_face (f
))
5334 realize_named_face (f
, Qmode_line
, MODE_LINE_FACE_ID
);
5335 realize_named_face (f
, Qmode_line_inactive
, MODE_LINE_INACTIVE_FACE_ID
);
5336 realize_named_face (f
, Qtool_bar
, TOOL_BAR_FACE_ID
);
5337 realize_named_face (f
, Qfringe
, FRINGE_FACE_ID
);
5338 realize_named_face (f
, Qheader_line
, HEADER_LINE_FACE_ID
);
5339 realize_named_face (f
, Qscroll_bar
, SCROLL_BAR_FACE_ID
);
5340 realize_named_face (f
, Qborder
, BORDER_FACE_ID
);
5341 realize_named_face (f
, Qcursor
, CURSOR_FACE_ID
);
5342 realize_named_face (f
, Qmouse
, MOUSE_FACE_ID
);
5343 realize_named_face (f
, Qmenu
, MENU_FACE_ID
);
5344 realize_named_face (f
, Qvertical_border
, VERTICAL_BORDER_FACE_ID
);
5346 /* Reflect changes in the `menu' face in menu bars. */
5347 if (FRAME_FACE_CACHE (f
)->menu_face_changed_p
)
5349 FRAME_FACE_CACHE (f
)->menu_face_changed_p
= 0;
5350 #ifdef USE_X_TOOLKIT
5351 if (FRAME_WINDOW_P (f
))
5352 x_update_menu_appearance (f
);
5359 unbind_to (count
, Qnil
);
5365 /* Realize the default face on frame F. If the face is not fully
5366 specified, make it fully-specified. Attributes of the default face
5367 that are not explicitly specified are taken from frame parameters. */
5370 realize_default_face (struct frame
*f
)
5372 struct face_cache
*c
= FRAME_FACE_CACHE (f
);
5374 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
5377 /* If the `default' face is not yet known, create it. */
5378 lface
= lface_from_face_name (f
, Qdefault
, 0);
5382 XSETFRAME (frame
, f
);
5383 lface
= Finternal_make_lisp_face (Qdefault
, frame
);
5386 #ifdef HAVE_WINDOW_SYSTEM
5387 if (FRAME_WINDOW_P (f
))
5389 Lisp_Object font_object
;
5391 XSETFONT (font_object
, FRAME_FONT (f
));
5392 set_lface_from_font (f
, lface
, font_object
, f
->default_face_done_p
);
5393 LFACE_FONTSET (lface
) = fontset_name (FRAME_FONTSET (f
));
5394 f
->default_face_done_p
= 1;
5396 #endif /* HAVE_WINDOW_SYSTEM */
5398 if (!FRAME_WINDOW_P (f
))
5400 LFACE_FAMILY (lface
) = build_string ("default");
5401 LFACE_FOUNDRY (lface
) = LFACE_FAMILY (lface
);
5402 LFACE_SWIDTH (lface
) = Qnormal
;
5403 LFACE_HEIGHT (lface
) = make_number (1);
5404 if (UNSPECIFIEDP (LFACE_WEIGHT (lface
)))
5405 LFACE_WEIGHT (lface
) = Qnormal
;
5406 if (UNSPECIFIEDP (LFACE_SLANT (lface
)))
5407 LFACE_SLANT (lface
) = Qnormal
;
5408 if (UNSPECIFIEDP (LFACE_FONTSET (lface
)))
5409 LFACE_FONTSET (lface
) = Qnil
;
5412 if (UNSPECIFIEDP (LFACE_UNDERLINE (lface
)))
5413 LFACE_UNDERLINE (lface
) = Qnil
;
5415 if (UNSPECIFIEDP (LFACE_OVERLINE (lface
)))
5416 LFACE_OVERLINE (lface
) = Qnil
;
5418 if (UNSPECIFIEDP (LFACE_STRIKE_THROUGH (lface
)))
5419 LFACE_STRIKE_THROUGH (lface
) = Qnil
;
5421 if (UNSPECIFIEDP (LFACE_BOX (lface
)))
5422 LFACE_BOX (lface
) = Qnil
;
5424 if (UNSPECIFIEDP (LFACE_INVERSE (lface
)))
5425 LFACE_INVERSE (lface
) = Qnil
;
5427 if (UNSPECIFIEDP (LFACE_FOREGROUND (lface
)))
5429 /* This function is called so early that colors are not yet
5430 set in the frame parameter list. */
5431 Lisp_Object color
= Fassq (Qforeground_color
, f
->param_alist
);
5433 if (CONSP (color
) && STRINGP (XCDR (color
)))
5434 LFACE_FOREGROUND (lface
) = XCDR (color
);
5435 else if (FRAME_WINDOW_P (f
))
5437 else if (FRAME_INITIAL_P (f
) || FRAME_TERMCAP_P (f
) || FRAME_MSDOS_P (f
))
5438 LFACE_FOREGROUND (lface
) = build_string (unspecified_fg
);
5443 if (UNSPECIFIEDP (LFACE_BACKGROUND (lface
)))
5445 /* This function is called so early that colors are not yet
5446 set in the frame parameter list. */
5447 Lisp_Object color
= Fassq (Qbackground_color
, f
->param_alist
);
5448 if (CONSP (color
) && STRINGP (XCDR (color
)))
5449 LFACE_BACKGROUND (lface
) = XCDR (color
);
5450 else if (FRAME_WINDOW_P (f
))
5452 else if (FRAME_INITIAL_P (f
) || FRAME_TERMCAP_P (f
) || FRAME_MSDOS_P (f
))
5453 LFACE_BACKGROUND (lface
) = build_string (unspecified_bg
);
5458 if (UNSPECIFIEDP (LFACE_STIPPLE (lface
)))
5459 LFACE_STIPPLE (lface
) = Qnil
;
5461 /* Realize the face; it must be fully-specified now. */
5462 xassert (lface_fully_specified_p (XVECTOR (lface
)->contents
));
5463 check_lface (lface
);
5464 memcpy (attrs
, XVECTOR (lface
)->contents
, sizeof attrs
);
5465 face
= realize_face (c
, attrs
, DEFAULT_FACE_ID
);
5467 #ifdef HAVE_WINDOW_SYSTEM
5468 #ifdef HAVE_X_WINDOWS
5469 if (FRAME_X_P (f
) && face
->font
!= FRAME_FONT (f
))
5471 /* This can happen when making a frame on a display that does
5472 not support the default font. */
5476 /* Otherwise, the font specified for the frame was not
5477 acceptable as a font for the default face (perhaps because
5478 auto-scaled fonts are rejected), so we must adjust the frame
5480 x_set_font (f
, LFACE_FONT (lface
), Qnil
);
5482 #endif /* HAVE_X_WINDOWS */
5483 #endif /* HAVE_WINDOW_SYSTEM */
5488 /* Realize basic faces other than the default face in face cache C.
5489 SYMBOL is the face name, ID is the face id the realized face must
5490 have. The default face must have been realized already. */
5493 realize_named_face (struct frame
*f
, Lisp_Object symbol
, int id
)
5495 struct face_cache
*c
= FRAME_FACE_CACHE (f
);
5496 Lisp_Object lface
= lface_from_face_name (f
, symbol
, 0);
5497 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
5498 Lisp_Object symbol_attrs
[LFACE_VECTOR_SIZE
];
5499 struct face
*new_face
;
5501 /* The default face must exist and be fully specified. */
5502 get_lface_attributes_no_remap (f
, Qdefault
, attrs
, 1);
5503 check_lface_attrs (attrs
);
5504 xassert (lface_fully_specified_p (attrs
));
5506 /* If SYMBOL isn't know as a face, create it. */
5510 XSETFRAME (frame
, f
);
5511 lface
= Finternal_make_lisp_face (symbol
, frame
);
5514 /* Merge SYMBOL's face with the default face. */
5515 get_lface_attributes_no_remap (f
, symbol
, symbol_attrs
, 1);
5516 merge_face_vectors (f
, symbol_attrs
, attrs
, 0);
5518 /* Realize the face. */
5519 new_face
= realize_face (c
, attrs
, id
);
5523 /* Realize the fully-specified face with attributes ATTRS in face
5524 cache CACHE for ASCII characters. If FORMER_FACE_ID is
5525 non-negative, it is an ID of face to remove before caching the new
5526 face. Value is a pointer to the newly created realized face. */
5528 static struct face
*
5529 realize_face (struct face_cache
*cache
, Lisp_Object
*attrs
, int former_face_id
)
5533 /* LFACE must be fully specified. */
5534 xassert (cache
!= NULL
);
5535 check_lface_attrs (attrs
);
5537 if (former_face_id
>= 0 && cache
->used
> former_face_id
)
5539 /* Remove the former face. */
5540 struct face
*former_face
= cache
->faces_by_id
[former_face_id
];
5541 uncache_face (cache
, former_face
);
5542 free_realized_face (cache
->f
, former_face
);
5543 SET_FRAME_GARBAGED (cache
->f
);
5546 if (FRAME_WINDOW_P (cache
->f
))
5547 face
= realize_x_face (cache
, attrs
);
5548 else if (FRAME_TERMCAP_P (cache
->f
) || FRAME_MSDOS_P (cache
->f
))
5549 face
= realize_tty_face (cache
, attrs
);
5550 else if (FRAME_INITIAL_P (cache
->f
))
5552 /* Create a dummy face. */
5553 face
= make_realized_face (attrs
);
5558 /* Insert the new face. */
5559 cache_face (cache
, face
, lface_hash (attrs
));
5564 #ifdef HAVE_WINDOW_SYSTEM
5565 /* Realize the fully-specified face that uses FONT-OBJECT and has the
5566 same attributes as BASE_FACE except for the font on frame F.
5567 FONT-OBJECT may be nil, in which case, realized a face of
5570 static struct face
*
5571 realize_non_ascii_face (struct frame
*f
, Lisp_Object font_object
, struct face
*base_face
)
5573 struct face_cache
*cache
= FRAME_FACE_CACHE (f
);
5576 face
= (struct face
*) xmalloc (sizeof *face
);
5581 = (! NILP (font_object
)
5582 && FONT_WEIGHT_NAME_NUMERIC (face
->lface
[LFACE_WEIGHT_INDEX
]) > 100
5583 && FONT_WEIGHT_NUMERIC (font_object
) <= 100);
5585 /* Don't try to free the colors copied bitwise from BASE_FACE. */
5586 face
->colors_copied_bitwise_p
= 1;
5587 face
->font
= NILP (font_object
) ? NULL
: XFONT_OBJECT (font_object
);
5590 cache_face (cache
, face
, face
->hash
);
5594 #endif /* HAVE_WINDOW_SYSTEM */
5597 /* Realize the fully-specified face with attributes ATTRS in face
5598 cache CACHE for ASCII characters. Do it for X frame CACHE->f. If
5599 the new face doesn't share font with the default face, a fontname
5600 is allocated from the heap and set in `font_name' of the new face,
5601 but it is not yet loaded here. Value is a pointer to the newly
5602 created realized face. */
5604 static struct face
*
5605 realize_x_face (struct face_cache
*cache
, Lisp_Object
*attrs
)
5607 struct face
*face
= NULL
;
5608 #ifdef HAVE_WINDOW_SYSTEM
5609 struct face
*default_face
;
5611 Lisp_Object stipple
, overline
, strike_through
, box
;
5613 xassert (FRAME_WINDOW_P (cache
->f
));
5615 /* Allocate a new realized face. */
5616 face
= make_realized_face (attrs
);
5617 face
->ascii_face
= face
;
5621 /* Determine the font to use. Most of the time, the font will be
5622 the same as the font of the default face, so try that first. */
5623 default_face
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
5625 && lface_same_font_attributes_p (default_face
->lface
, attrs
))
5627 face
->font
= default_face
->font
;
5629 = make_fontset_for_ascii_face (f
, default_face
->fontset
, face
);
5633 /* If the face attribute ATTRS specifies a fontset, use it as
5634 the base of a new realized fontset. Otherwise, use the same
5635 base fontset as of the default face. The base determines
5636 registry and encoding of a font. It may also determine
5637 foundry and family. The other fields of font name pattern
5638 are constructed from ATTRS. */
5639 int fontset
= face_fontset (attrs
);
5641 /* If we are realizing the default face, ATTRS should specify a
5642 fontset. In other words, if FONTSET is -1, we are not
5643 realizing the default face, thus the default face should have
5644 already been realized. */
5648 fontset
= default_face
->fontset
;
5652 if (! FONT_OBJECT_P (attrs
[LFACE_FONT_INDEX
]))
5653 attrs
[LFACE_FONT_INDEX
]
5654 = font_load_for_lface (f
, attrs
, attrs
[LFACE_FONT_INDEX
]);
5655 if (FONT_OBJECT_P (attrs
[LFACE_FONT_INDEX
]))
5657 face
->font
= XFONT_OBJECT (attrs
[LFACE_FONT_INDEX
]);
5658 face
->fontset
= make_fontset_for_ascii_face (f
, fontset
, face
);
5668 && FONT_WEIGHT_NAME_NUMERIC (attrs
[LFACE_WEIGHT_INDEX
]) > 100
5669 && FONT_WEIGHT_NUMERIC (attrs
[LFACE_FONT_INDEX
]) <= 100)
5670 face
->overstrike
= 1;
5672 /* Load colors, and set remaining attributes. */
5674 load_face_colors (f
, face
, attrs
);
5677 box
= attrs
[LFACE_BOX_INDEX
];
5680 /* A simple box of line width 1 drawn in color given by
5682 face
->box_color
= load_color (f
, face
, attrs
[LFACE_BOX_INDEX
],
5684 face
->box
= FACE_SIMPLE_BOX
;
5685 face
->box_line_width
= 1;
5687 else if (INTEGERP (box
))
5689 /* Simple box of specified line width in foreground color of the
5691 xassert (XINT (box
) != 0);
5692 face
->box
= FACE_SIMPLE_BOX
;
5693 face
->box_line_width
= XINT (box
);
5694 face
->box_color
= face
->foreground
;
5695 face
->box_color_defaulted_p
= 1;
5697 else if (CONSP (box
))
5699 /* `(:width WIDTH :color COLOR :shadow SHADOW)'. SHADOW
5700 being one of `raised' or `sunken'. */
5701 face
->box
= FACE_SIMPLE_BOX
;
5702 face
->box_color
= face
->foreground
;
5703 face
->box_color_defaulted_p
= 1;
5704 face
->box_line_width
= 1;
5708 Lisp_Object keyword
, value
;
5710 keyword
= XCAR (box
);
5718 if (EQ (keyword
, QCline_width
))
5720 if (INTEGERP (value
) && XINT (value
) != 0)
5721 face
->box_line_width
= XINT (value
);
5723 else if (EQ (keyword
, QCcolor
))
5725 if (STRINGP (value
))
5727 face
->box_color
= load_color (f
, face
, value
,
5729 face
->use_box_color_for_shadows_p
= 1;
5732 else if (EQ (keyword
, QCstyle
))
5734 if (EQ (value
, Qreleased_button
))
5735 face
->box
= FACE_RAISED_BOX
;
5736 else if (EQ (value
, Qpressed_button
))
5737 face
->box
= FACE_SUNKEN_BOX
;
5742 /* Text underline, overline, strike-through. */
5744 if (EQ (attrs
[LFACE_UNDERLINE_INDEX
], Qt
))
5746 /* Use default color (same as foreground color). */
5747 face
->underline_p
= 1;
5748 face
->underline_defaulted_p
= 1;
5749 face
->underline_color
= 0;
5751 else if (STRINGP (attrs
[LFACE_UNDERLINE_INDEX
]))
5753 /* Use specified color. */
5754 face
->underline_p
= 1;
5755 face
->underline_defaulted_p
= 0;
5756 face
->underline_color
5757 = load_color (f
, face
, attrs
[LFACE_UNDERLINE_INDEX
],
5758 LFACE_UNDERLINE_INDEX
);
5760 else if (NILP (attrs
[LFACE_UNDERLINE_INDEX
]))
5762 face
->underline_p
= 0;
5763 face
->underline_defaulted_p
= 0;
5764 face
->underline_color
= 0;
5767 overline
= attrs
[LFACE_OVERLINE_INDEX
];
5768 if (STRINGP (overline
))
5770 face
->overline_color
5771 = load_color (f
, face
, attrs
[LFACE_OVERLINE_INDEX
],
5772 LFACE_OVERLINE_INDEX
);
5773 face
->overline_p
= 1;
5775 else if (EQ (overline
, Qt
))
5777 face
->overline_color
= face
->foreground
;
5778 face
->overline_color_defaulted_p
= 1;
5779 face
->overline_p
= 1;
5782 strike_through
= attrs
[LFACE_STRIKE_THROUGH_INDEX
];
5783 if (STRINGP (strike_through
))
5785 face
->strike_through_color
5786 = load_color (f
, face
, attrs
[LFACE_STRIKE_THROUGH_INDEX
],
5787 LFACE_STRIKE_THROUGH_INDEX
);
5788 face
->strike_through_p
= 1;
5790 else if (EQ (strike_through
, Qt
))
5792 face
->strike_through_color
= face
->foreground
;
5793 face
->strike_through_color_defaulted_p
= 1;
5794 face
->strike_through_p
= 1;
5797 stipple
= attrs
[LFACE_STIPPLE_INDEX
];
5798 if (!NILP (stipple
))
5799 face
->stipple
= load_pixmap (f
, stipple
, &face
->pixmap_w
, &face
->pixmap_h
);
5800 #endif /* HAVE_WINDOW_SYSTEM */
5806 /* Map a specified color of face FACE on frame F to a tty color index.
5807 IDX is either LFACE_FOREGROUND_INDEX or LFACE_BACKGROUND_INDEX, and
5808 specifies which color to map. Set *DEFAULTED to 1 if mapping to the
5809 default foreground/background colors. */
5812 map_tty_color (struct frame
*f
, struct face
*face
, enum lface_attribute_index idx
, int *defaulted
)
5814 Lisp_Object frame
, color
, def
;
5815 int foreground_p
= idx
== LFACE_FOREGROUND_INDEX
;
5816 unsigned long default_pixel
, default_other_pixel
, pixel
;
5818 xassert (idx
== LFACE_FOREGROUND_INDEX
|| idx
== LFACE_BACKGROUND_INDEX
);
5822 pixel
= default_pixel
= FACE_TTY_DEFAULT_FG_COLOR
;
5823 default_other_pixel
= FACE_TTY_DEFAULT_BG_COLOR
;
5827 pixel
= default_pixel
= FACE_TTY_DEFAULT_BG_COLOR
;
5828 default_other_pixel
= FACE_TTY_DEFAULT_FG_COLOR
;
5831 XSETFRAME (frame
, f
);
5832 color
= face
->lface
[idx
];
5836 && CONSP (Vtty_defined_color_alist
)
5837 && (def
= assq_no_quit (color
, call1 (Qtty_color_alist
, frame
)),
5840 /* Associations in tty-defined-color-alist are of the form
5841 (NAME INDEX R G B). We need the INDEX part. */
5842 pixel
= XINT (XCAR (XCDR (def
)));
5845 if (pixel
== default_pixel
&& STRINGP (color
))
5847 pixel
= load_color (f
, face
, color
, idx
);
5850 /* If the foreground of the default face is the default color,
5851 use the foreground color defined by the frame. */
5852 if (FRAME_MSDOS_P (f
))
5854 if (pixel
== default_pixel
5855 || pixel
== FACE_TTY_DEFAULT_COLOR
)
5858 pixel
= FRAME_FOREGROUND_PIXEL (f
);
5860 pixel
= FRAME_BACKGROUND_PIXEL (f
);
5861 face
->lface
[idx
] = tty_color_name (f
, pixel
);
5864 else if (pixel
== default_other_pixel
)
5867 pixel
= FRAME_BACKGROUND_PIXEL (f
);
5869 pixel
= FRAME_FOREGROUND_PIXEL (f
);
5870 face
->lface
[idx
] = tty_color_name (f
, pixel
);
5878 face
->foreground
= pixel
;
5880 face
->background
= pixel
;
5884 /* Realize the fully-specified face with attributes ATTRS in face
5885 cache CACHE for ASCII characters. Do it for TTY frame CACHE->f.
5886 Value is a pointer to the newly created realized face. */
5888 static struct face
*
5889 realize_tty_face (struct face_cache
*cache
, Lisp_Object
*attrs
)
5893 int face_colors_defaulted
= 0;
5894 struct frame
*f
= cache
->f
;
5896 /* Frame must be a termcap frame. */
5897 xassert (FRAME_TERMCAP_P (cache
->f
) || FRAME_MSDOS_P (cache
->f
));
5899 /* Allocate a new realized face. */
5900 face
= make_realized_face (attrs
);
5902 face
->font_name
= FRAME_MSDOS_P (cache
->f
) ? "ms-dos" : "tty";
5905 /* Map face attributes to TTY appearances. We map slant to
5906 dimmed text because we want italic text to appear differently
5907 and because dimmed text is probably used infrequently. */
5908 weight
= FONT_WEIGHT_NAME_NUMERIC (attrs
[LFACE_WEIGHT_INDEX
]);
5909 slant
= FONT_SLANT_NAME_NUMERIC (attrs
[LFACE_SLANT_INDEX
]);
5911 face
->tty_bold_p
= 1;
5912 if (weight
< 100 || slant
!= 100)
5913 face
->tty_dim_p
= 1;
5914 if (!NILP (attrs
[LFACE_UNDERLINE_INDEX
]))
5915 face
->tty_underline_p
= 1;
5916 if (!NILP (attrs
[LFACE_INVERSE_INDEX
]))
5917 face
->tty_reverse_p
= 1;
5919 /* Map color names to color indices. */
5920 map_tty_color (f
, face
, LFACE_FOREGROUND_INDEX
, &face_colors_defaulted
);
5921 map_tty_color (f
, face
, LFACE_BACKGROUND_INDEX
, &face_colors_defaulted
);
5923 /* Swap colors if face is inverse-video. If the colors are taken
5924 from the frame colors, they are already inverted, since the
5925 frame-creation function calls x-handle-reverse-video. */
5926 if (face
->tty_reverse_p
&& !face_colors_defaulted
)
5928 unsigned long tem
= face
->foreground
;
5929 face
->foreground
= face
->background
;
5930 face
->background
= tem
;
5933 if (tty_suppress_bold_inverse_default_colors_p
5935 && face
->background
== FACE_TTY_DEFAULT_FG_COLOR
5936 && face
->foreground
== FACE_TTY_DEFAULT_BG_COLOR
)
5937 face
->tty_bold_p
= 0;
5943 DEFUN ("tty-suppress-bold-inverse-default-colors",
5944 Ftty_suppress_bold_inverse_default_colors
,
5945 Stty_suppress_bold_inverse_default_colors
, 1, 1, 0,
5946 doc
: /* Suppress/allow boldness of faces with inverse default colors.
5947 SUPPRESS non-nil means suppress it.
5948 This affects bold faces on TTYs whose foreground is the default background
5949 color of the display and whose background is the default foreground color.
5950 For such faces, the bold face attribute is ignored if this variable
5952 (Lisp_Object suppress
)
5954 tty_suppress_bold_inverse_default_colors_p
= !NILP (suppress
);
5955 ++face_change_count
;
5961 /***********************************************************************
5963 ***********************************************************************/
5965 /* Return the ID of the face to use to display character CH with face
5966 property PROP on frame F in current_buffer. */
5969 compute_char_face (struct frame
*f
, int ch
, Lisp_Object prop
)
5973 if (NILP (current_buffer
->enable_multibyte_characters
))
5978 struct face
*face
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
5979 face_id
= FACE_FOR_CHAR (f
, face
, ch
, -1, Qnil
);
5983 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
5984 struct face
*default_face
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
5985 memcpy (attrs
, default_face
->lface
, sizeof attrs
);
5986 merge_face_ref (f
, prop
, attrs
, 1, 0);
5987 face_id
= lookup_face (f
, attrs
);
5993 /* Return the face ID associated with buffer position POS for
5994 displaying ASCII characters. Return in *ENDPTR the position at
5995 which a different face is needed, as far as text properties and
5996 overlays are concerned. W is a window displaying current_buffer.
5998 REGION_BEG, REGION_END delimit the region, so it can be
6001 LIMIT is a position not to scan beyond. That is to limit the time
6002 this function can take.
6004 If MOUSE is non-zero, use the character's mouse-face, not its face.
6006 BASE_FACE_ID, if non-negative, specifies a base face id to use
6007 instead of DEFAULT_FACE_ID.
6009 The face returned is suitable for displaying ASCII characters. */
6012 face_at_buffer_position (struct window
*w
, EMACS_INT pos
,
6013 EMACS_INT region_beg
, EMACS_INT region_end
,
6014 EMACS_INT
*endptr
, EMACS_INT limit
,
6015 int mouse
, int base_face_id
)
6017 struct frame
*f
= XFRAME (w
->frame
);
6018 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
6019 Lisp_Object prop
, position
;
6021 Lisp_Object
*overlay_vec
;
6024 Lisp_Object propname
= mouse
? Qmouse_face
: Qface
;
6025 Lisp_Object limit1
, end
;
6026 struct face
*default_face
;
6028 /* W must display the current buffer. We could write this function
6029 to use the frame and buffer of W, but right now it doesn't. */
6030 /* xassert (XBUFFER (w->buffer) == current_buffer); */
6032 XSETFRAME (frame
, f
);
6033 XSETFASTINT (position
, pos
);
6036 if (pos
< region_beg
&& region_beg
< endpos
)
6037 endpos
= region_beg
;
6039 /* Get the `face' or `mouse_face' text property at POS, and
6040 determine the next position at which the property changes. */
6041 prop
= Fget_text_property (position
, propname
, w
->buffer
);
6042 XSETFASTINT (limit1
, (limit
< endpos
? limit
: endpos
));
6043 end
= Fnext_single_property_change (position
, propname
, w
->buffer
, limit1
);
6045 endpos
= XINT (end
);
6047 /* Look at properties from overlays. */
6049 EMACS_INT next_overlay
;
6051 GET_OVERLAYS_AT (pos
, overlay_vec
, noverlays
, &next_overlay
, 0);
6052 if (next_overlay
< endpos
)
6053 endpos
= next_overlay
;
6058 default_face
= FACE_FROM_ID (f
, base_face_id
>= 0 ? base_face_id
6059 : NILP (Vface_remapping_alist
) ? DEFAULT_FACE_ID
6060 : lookup_basic_face (f
, DEFAULT_FACE_ID
));
6062 /* Optimize common cases where we can use the default face. */
6065 && !(pos
>= region_beg
&& pos
< region_end
))
6066 return default_face
->id
;
6068 /* Begin with attributes from the default face. */
6069 memcpy (attrs
, default_face
->lface
, sizeof attrs
);
6071 /* Merge in attributes specified via text properties. */
6073 merge_face_ref (f
, prop
, attrs
, 1, 0);
6075 /* Now merge the overlay data. */
6076 noverlays
= sort_overlays (overlay_vec
, noverlays
, w
);
6077 for (i
= 0; i
< noverlays
; i
++)
6082 prop
= Foverlay_get (overlay_vec
[i
], propname
);
6084 merge_face_ref (f
, prop
, attrs
, 1, 0);
6086 oend
= OVERLAY_END (overlay_vec
[i
]);
6087 oendpos
= OVERLAY_POSITION (oend
);
6088 if (oendpos
< endpos
)
6092 /* If in the region, merge in the region face. */
6093 if (pos
>= region_beg
&& pos
< region_end
)
6095 merge_named_face (f
, Qregion
, attrs
, 0);
6097 if (region_end
< endpos
)
6098 endpos
= region_end
;
6103 /* Look up a realized face with the given face attributes,
6104 or realize a new one for ASCII characters. */
6105 return lookup_face (f
, attrs
);
6108 /* Return the face ID at buffer position POS for displaying ASCII
6109 characters associated with overlay strings for overlay OVERLAY.
6111 Like face_at_buffer_position except for OVERLAY. Currently it
6112 simply disregards the `face' properties of all overlays. */
6115 face_for_overlay_string (struct window
*w
, EMACS_INT pos
,
6116 EMACS_INT region_beg
, EMACS_INT region_end
,
6117 EMACS_INT
*endptr
, EMACS_INT limit
,
6118 int mouse
, Lisp_Object overlay
)
6120 struct frame
*f
= XFRAME (w
->frame
);
6121 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
6122 Lisp_Object prop
, position
;
6125 Lisp_Object propname
= mouse
? Qmouse_face
: Qface
;
6126 Lisp_Object limit1
, end
;
6127 struct face
*default_face
;
6129 /* W must display the current buffer. We could write this function
6130 to use the frame and buffer of W, but right now it doesn't. */
6131 /* xassert (XBUFFER (w->buffer) == current_buffer); */
6133 XSETFRAME (frame
, f
);
6134 XSETFASTINT (position
, pos
);
6137 if (pos
< region_beg
&& region_beg
< endpos
)
6138 endpos
= region_beg
;
6140 /* Get the `face' or `mouse_face' text property at POS, and
6141 determine the next position at which the property changes. */
6142 prop
= Fget_text_property (position
, propname
, w
->buffer
);
6143 XSETFASTINT (limit1
, (limit
< endpos
? limit
: endpos
));
6144 end
= Fnext_single_property_change (position
, propname
, w
->buffer
, limit1
);
6146 endpos
= XINT (end
);
6150 default_face
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
6152 /* Optimize common cases where we can use the default face. */
6154 && !(pos
>= region_beg
&& pos
< region_end
))
6155 return DEFAULT_FACE_ID
;
6157 /* Begin with attributes from the default face. */
6158 memcpy (attrs
, default_face
->lface
, sizeof attrs
);
6160 /* Merge in attributes specified via text properties. */
6162 merge_face_ref (f
, prop
, attrs
, 1, 0);
6164 /* If in the region, merge in the region face. */
6165 if (pos
>= region_beg
&& pos
< region_end
)
6167 merge_named_face (f
, Qregion
, attrs
, 0);
6169 if (region_end
< endpos
)
6170 endpos
= region_end
;
6175 /* Look up a realized face with the given face attributes,
6176 or realize a new one for ASCII characters. */
6177 return lookup_face (f
, attrs
);
6181 /* Compute the face at character position POS in Lisp string STRING on
6182 window W, for ASCII characters.
6184 If STRING is an overlay string, it comes from position BUFPOS in
6185 current_buffer, otherwise BUFPOS is zero to indicate that STRING is
6186 not an overlay string. W must display the current buffer.
6187 REGION_BEG and REGION_END give the start and end positions of the
6188 region; both are -1 if no region is visible.
6190 BASE_FACE_ID is the id of a face to merge with. For strings coming
6191 from overlays or the `display' property it is the face at BUFPOS.
6193 If MOUSE_P is non-zero, use the character's mouse-face, not its face.
6195 Set *ENDPTR to the next position where to check for faces in
6196 STRING; -1 if the face is constant from POS to the end of the
6199 Value is the id of the face to use. The face returned is suitable
6200 for displaying ASCII characters. */
6203 face_at_string_position (struct window
*w
, Lisp_Object string
,
6204 EMACS_INT pos
, EMACS_INT bufpos
,
6205 EMACS_INT region_beg
, EMACS_INT region_end
,
6206 EMACS_INT
*endptr
, enum face_id base_face_id
,
6209 Lisp_Object prop
, position
, end
, limit
;
6210 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
6211 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
6212 struct face
*base_face
;
6213 int multibyte_p
= STRING_MULTIBYTE (string
);
6214 Lisp_Object prop_name
= mouse_p
? Qmouse_face
: Qface
;
6216 /* Get the value of the face property at the current position within
6217 STRING. Value is nil if there is no face property. */
6218 XSETFASTINT (position
, pos
);
6219 prop
= Fget_text_property (position
, prop_name
, string
);
6221 /* Get the next position at which to check for faces. Value of end
6222 is nil if face is constant all the way to the end of the string.
6223 Otherwise it is a string position where to check faces next.
6224 Limit is the maximum position up to which to check for property
6225 changes in Fnext_single_property_change. Strings are usually
6226 short, so set the limit to the end of the string. */
6227 XSETFASTINT (limit
, SCHARS (string
));
6228 end
= Fnext_single_property_change (position
, prop_name
, string
, limit
);
6230 *endptr
= XFASTINT (end
);
6234 base_face
= FACE_FROM_ID (f
, base_face_id
);
6235 xassert (base_face
);
6237 /* Optimize the default case that there is no face property and we
6238 are not in the region. */
6240 && (base_face_id
!= DEFAULT_FACE_ID
6241 /* BUFPOS <= 0 means STRING is not an overlay string, so
6242 that the region doesn't have to be taken into account. */
6244 || bufpos
< region_beg
6245 || bufpos
>= region_end
)
6247 /* We can't realize faces for different charsets differently
6248 if we don't have fonts, so we can stop here if not working
6249 on a window-system frame. */
6250 || !FRAME_WINDOW_P (f
)
6251 || FACE_SUITABLE_FOR_CHAR_P (base_face
, 0)))
6252 return base_face
->id
;
6254 /* Begin with attributes from the base face. */
6255 memcpy (attrs
, base_face
->lface
, sizeof attrs
);
6257 /* Merge in attributes specified via text properties. */
6259 merge_face_ref (f
, prop
, attrs
, 1, 0);
6261 /* If in the region, merge in the region face. */
6263 && bufpos
>= region_beg
6264 && bufpos
< region_end
)
6265 merge_named_face (f
, Qregion
, attrs
, 0);
6267 /* Look up a realized face with the given face attributes,
6268 or realize a new one for ASCII characters. */
6269 return lookup_face (f
, attrs
);
6273 /* Merge a face into a realized face.
6275 F is frame where faces are (to be) realized.
6277 FACE_NAME is named face to merge.
6279 If FACE_NAME is nil, FACE_ID is face_id of realized face to merge.
6281 If FACE_NAME is t, FACE_ID is lface_id of face to merge.
6283 BASE_FACE_ID is realized face to merge into.
6289 merge_faces (struct frame
*f
, Lisp_Object face_name
, int face_id
, int base_face_id
)
6291 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
6292 struct face
*base_face
;
6294 base_face
= FACE_FROM_ID (f
, base_face_id
);
6296 return base_face_id
;
6298 if (EQ (face_name
, Qt
))
6300 if (face_id
< 0 || face_id
>= lface_id_to_name_size
)
6301 return base_face_id
;
6302 face_name
= lface_id_to_name
[face_id
];
6303 /* When called during make-frame, lookup_derived_face may fail
6304 if the faces are uninitialized. Don't signal an error. */
6305 face_id
= lookup_derived_face (f
, face_name
, base_face_id
, 0);
6306 return (face_id
>= 0 ? face_id
: base_face_id
);
6309 /* Begin with attributes from the base face. */
6310 memcpy (attrs
, base_face
->lface
, sizeof attrs
);
6312 if (!NILP (face_name
))
6314 if (!merge_named_face (f
, face_name
, attrs
, 0))
6315 return base_face_id
;
6321 return base_face_id
;
6322 face
= FACE_FROM_ID (f
, face_id
);
6324 return base_face_id
;
6325 merge_face_vectors (f
, face
->lface
, attrs
, 0);
6328 /* Look up a realized face with the given face attributes,
6329 or realize a new one for ASCII characters. */
6330 return lookup_face (f
, attrs
);
6335 #ifndef HAVE_X_WINDOWS
6336 DEFUN ("x-load-color-file", Fx_load_color_file
,
6337 Sx_load_color_file
, 1, 1, 0,
6338 doc
: /* Create an alist of color entries from an external file.
6340 The file should define one named RGB color per line like so:
6342 where R,G,B are numbers between 0 and 255 and name is an arbitrary string. */)
6343 (Lisp_Object filename
)
6346 Lisp_Object cmap
= Qnil
;
6347 Lisp_Object abspath
;
6349 CHECK_STRING (filename
);
6350 abspath
= Fexpand_file_name (filename
, Qnil
);
6352 fp
= fopen (SDATA (filename
), "rt");
6356 int red
, green
, blue
;
6361 while (fgets (buf
, sizeof (buf
), fp
) != NULL
) {
6362 if (sscanf (buf
, "%u %u %u %n", &red
, &green
, &blue
, &num
) == 3)
6364 char *name
= buf
+ num
;
6365 num
= strlen (name
) - 1;
6366 if (num
>= 0 && name
[num
] == '\n')
6368 cmap
= Fcons (Fcons (build_string (name
),
6370 make_number (RGB (red
, green
, blue
))),
6372 make_number ((red
<< 16) | (green
<< 8) | blue
)),
6387 /***********************************************************************
6389 ***********************************************************************/
6393 /* Print the contents of the realized face FACE to stderr. */
6396 dump_realized_face (face
)
6399 fprintf (stderr
, "ID: %d\n", face
->id
);
6400 #ifdef HAVE_X_WINDOWS
6401 fprintf (stderr
, "gc: %ld\n", (long) face
->gc
);
6403 fprintf (stderr
, "foreground: 0x%lx (%s)\n",
6405 SDATA (face
->lface
[LFACE_FOREGROUND_INDEX
]));
6406 fprintf (stderr
, "background: 0x%lx (%s)\n",
6408 SDATA (face
->lface
[LFACE_BACKGROUND_INDEX
]));
6410 fprintf (stderr
, "font_name: %s (%s)\n",
6411 SDATA (face
->font
->props
[FONT_NAME_INDEX
]),
6412 SDATA (face
->lface
[LFACE_FAMILY_INDEX
]));
6413 #ifdef HAVE_X_WINDOWS
6414 fprintf (stderr
, "font = %p\n", face
->font
);
6416 fprintf (stderr
, "fontset: %d\n", face
->fontset
);
6417 fprintf (stderr
, "underline: %d (%s)\n",
6419 SDATA (Fsymbol_name (face
->lface
[LFACE_UNDERLINE_INDEX
])));
6420 fprintf (stderr
, "hash: %d\n", face
->hash
);
6424 DEFUN ("dump-face", Fdump_face
, Sdump_face
, 0, 1, 0, doc
: /* */)
6431 fprintf (stderr
, "font selection order: ");
6432 for (i
= 0; i
< DIM (font_sort_order
); ++i
)
6433 fprintf (stderr
, "%d ", font_sort_order
[i
]);
6434 fprintf (stderr
, "\n");
6436 fprintf (stderr
, "alternative fonts: ");
6437 debug_print (Vface_alternative_font_family_alist
);
6438 fprintf (stderr
, "\n");
6440 for (i
= 0; i
< FRAME_FACE_CACHE (SELECTED_FRAME ())->used
; ++i
)
6441 Fdump_face (make_number (i
));
6447 face
= FACE_FROM_ID (SELECTED_FRAME (), XINT (n
));
6449 error ("Not a valid face");
6450 dump_realized_face (face
);
6457 DEFUN ("show-face-resources", Fshow_face_resources
, Sshow_face_resources
,
6458 0, 0, 0, doc
: /* */)
6461 fprintf (stderr
, "number of colors = %d\n", ncolors_allocated
);
6462 fprintf (stderr
, "number of pixmaps = %d\n", npixmaps_allocated
);
6463 fprintf (stderr
, "number of GCs = %d\n", ngcs
);
6467 #endif /* GLYPH_DEBUG != 0 */
6471 /***********************************************************************
6473 ***********************************************************************/
6476 syms_of_xfaces (void)
6478 Qface
= intern_c_string ("face");
6480 Qface_no_inherit
= intern_c_string ("face-no-inherit");
6481 staticpro (&Qface_no_inherit
);
6482 Qbitmap_spec_p
= intern_c_string ("bitmap-spec-p");
6483 staticpro (&Qbitmap_spec_p
);
6484 Qframe_set_background_mode
= intern_c_string ("frame-set-background-mode");
6485 staticpro (&Qframe_set_background_mode
);
6487 /* Lisp face attribute keywords. */
6488 QCfamily
= intern_c_string (":family");
6489 staticpro (&QCfamily
);
6490 QCheight
= intern_c_string (":height");
6491 staticpro (&QCheight
);
6492 QCweight
= intern_c_string (":weight");
6493 staticpro (&QCweight
);
6494 QCslant
= intern_c_string (":slant");
6495 staticpro (&QCslant
);
6496 QCunderline
= intern_c_string (":underline");
6497 staticpro (&QCunderline
);
6498 QCinverse_video
= intern_c_string (":inverse-video");
6499 staticpro (&QCinverse_video
);
6500 QCreverse_video
= intern_c_string (":reverse-video");
6501 staticpro (&QCreverse_video
);
6502 QCforeground
= intern_c_string (":foreground");
6503 staticpro (&QCforeground
);
6504 QCbackground
= intern_c_string (":background");
6505 staticpro (&QCbackground
);
6506 QCstipple
= intern_c_string (":stipple");
6507 staticpro (&QCstipple
);
6508 QCwidth
= intern_c_string (":width");
6509 staticpro (&QCwidth
);
6510 QCfont
= intern_c_string (":font");
6511 staticpro (&QCfont
);
6512 QCfontset
= intern_c_string (":fontset");
6513 staticpro (&QCfontset
);
6514 QCbold
= intern_c_string (":bold");
6515 staticpro (&QCbold
);
6516 QCitalic
= intern_c_string (":italic");
6517 staticpro (&QCitalic
);
6518 QCoverline
= intern_c_string (":overline");
6519 staticpro (&QCoverline
);
6520 QCstrike_through
= intern_c_string (":strike-through");
6521 staticpro (&QCstrike_through
);
6522 QCbox
= intern_c_string (":box");
6524 QCinherit
= intern_c_string (":inherit");
6525 staticpro (&QCinherit
);
6527 /* Symbols used for Lisp face attribute values. */
6528 QCcolor
= intern_c_string (":color");
6529 staticpro (&QCcolor
);
6530 QCline_width
= intern_c_string (":line-width");
6531 staticpro (&QCline_width
);
6532 QCstyle
= intern_c_string (":style");
6533 staticpro (&QCstyle
);
6534 Qreleased_button
= intern_c_string ("released-button");
6535 staticpro (&Qreleased_button
);
6536 Qpressed_button
= intern_c_string ("pressed-button");
6537 staticpro (&Qpressed_button
);
6538 Qnormal
= intern_c_string ("normal");
6539 staticpro (&Qnormal
);
6540 Qultra_light
= intern_c_string ("ultra-light");
6541 staticpro (&Qultra_light
);
6542 Qextra_light
= intern_c_string ("extra-light");
6543 staticpro (&Qextra_light
);
6544 Qlight
= intern_c_string ("light");
6545 staticpro (&Qlight
);
6546 Qsemi_light
= intern_c_string ("semi-light");
6547 staticpro (&Qsemi_light
);
6548 Qsemi_bold
= intern_c_string ("semi-bold");
6549 staticpro (&Qsemi_bold
);
6550 Qbold
= intern_c_string ("bold");
6552 Qextra_bold
= intern_c_string ("extra-bold");
6553 staticpro (&Qextra_bold
);
6554 Qultra_bold
= intern_c_string ("ultra-bold");
6555 staticpro (&Qultra_bold
);
6556 Qoblique
= intern_c_string ("oblique");
6557 staticpro (&Qoblique
);
6558 Qitalic
= intern_c_string ("italic");
6559 staticpro (&Qitalic
);
6560 Qreverse_oblique
= intern_c_string ("reverse-oblique");
6561 staticpro (&Qreverse_oblique
);
6562 Qreverse_italic
= intern_c_string ("reverse-italic");
6563 staticpro (&Qreverse_italic
);
6564 Qultra_condensed
= intern_c_string ("ultra-condensed");
6565 staticpro (&Qultra_condensed
);
6566 Qextra_condensed
= intern_c_string ("extra-condensed");
6567 staticpro (&Qextra_condensed
);
6568 Qcondensed
= intern_c_string ("condensed");
6569 staticpro (&Qcondensed
);
6570 Qsemi_condensed
= intern_c_string ("semi-condensed");
6571 staticpro (&Qsemi_condensed
);
6572 Qsemi_expanded
= intern_c_string ("semi-expanded");
6573 staticpro (&Qsemi_expanded
);
6574 Qexpanded
= intern_c_string ("expanded");
6575 staticpro (&Qexpanded
);
6576 Qextra_expanded
= intern_c_string ("extra-expanded");
6577 staticpro (&Qextra_expanded
);
6578 Qultra_expanded
= intern_c_string ("ultra-expanded");
6579 staticpro (&Qultra_expanded
);
6580 Qbackground_color
= intern_c_string ("background-color");
6581 staticpro (&Qbackground_color
);
6582 Qforeground_color
= intern_c_string ("foreground-color");
6583 staticpro (&Qforeground_color
);
6584 Qunspecified
= intern_c_string ("unspecified");
6585 staticpro (&Qunspecified
);
6586 Qignore_defface
= intern_c_string (":ignore-defface");
6587 staticpro (&Qignore_defface
);
6589 Qface_alias
= intern_c_string ("face-alias");
6590 staticpro (&Qface_alias
);
6591 Qdefault
= intern_c_string ("default");
6592 staticpro (&Qdefault
);
6593 Qtool_bar
= intern_c_string ("tool-bar");
6594 staticpro (&Qtool_bar
);
6595 Qregion
= intern_c_string ("region");
6596 staticpro (&Qregion
);
6597 Qfringe
= intern_c_string ("fringe");
6598 staticpro (&Qfringe
);
6599 Qheader_line
= intern_c_string ("header-line");
6600 staticpro (&Qheader_line
);
6601 Qscroll_bar
= intern_c_string ("scroll-bar");
6602 staticpro (&Qscroll_bar
);
6603 Qmenu
= intern_c_string ("menu");
6605 Qcursor
= intern_c_string ("cursor");
6606 staticpro (&Qcursor
);
6607 Qborder
= intern_c_string ("border");
6608 staticpro (&Qborder
);
6609 Qmouse
= intern_c_string ("mouse");
6610 staticpro (&Qmouse
);
6611 Qmode_line_inactive
= intern_c_string ("mode-line-inactive");
6612 staticpro (&Qmode_line_inactive
);
6613 Qvertical_border
= intern_c_string ("vertical-border");
6614 staticpro (&Qvertical_border
);
6615 Qtty_color_desc
= intern_c_string ("tty-color-desc");
6616 staticpro (&Qtty_color_desc
);
6617 Qtty_color_standard_values
= intern_c_string ("tty-color-standard-values");
6618 staticpro (&Qtty_color_standard_values
);
6619 Qtty_color_by_index
= intern_c_string ("tty-color-by-index");
6620 staticpro (&Qtty_color_by_index
);
6621 Qtty_color_alist
= intern_c_string ("tty-color-alist");
6622 staticpro (&Qtty_color_alist
);
6623 Qscalable_fonts_allowed
= intern_c_string ("scalable-fonts-allowed");
6624 staticpro (&Qscalable_fonts_allowed
);
6626 Vparam_value_alist
= Fcons (Fcons (Qnil
, Qnil
), Qnil
);
6627 staticpro (&Vparam_value_alist
);
6628 Vface_alternative_font_family_alist
= Qnil
;
6629 staticpro (&Vface_alternative_font_family_alist
);
6630 Vface_alternative_font_registry_alist
= Qnil
;
6631 staticpro (&Vface_alternative_font_registry_alist
);
6633 defsubr (&Sinternal_make_lisp_face
);
6634 defsubr (&Sinternal_lisp_face_p
);
6635 defsubr (&Sinternal_set_lisp_face_attribute
);
6636 #ifdef HAVE_WINDOW_SYSTEM
6637 defsubr (&Sinternal_set_lisp_face_attribute_from_resource
);
6639 defsubr (&Scolor_gray_p
);
6640 defsubr (&Scolor_supported_p
);
6641 #ifndef HAVE_X_WINDOWS
6642 defsubr (&Sx_load_color_file
);
6644 defsubr (&Sface_attribute_relative_p
);
6645 defsubr (&Smerge_face_attribute
);
6646 defsubr (&Sinternal_get_lisp_face_attribute
);
6647 defsubr (&Sinternal_lisp_face_attribute_values
);
6648 defsubr (&Sinternal_lisp_face_equal_p
);
6649 defsubr (&Sinternal_lisp_face_empty_p
);
6650 defsubr (&Sinternal_copy_lisp_face
);
6651 defsubr (&Sinternal_merge_in_global_face
);
6652 defsubr (&Sface_font
);
6653 defsubr (&Sframe_face_alist
);
6654 defsubr (&Sdisplay_supports_face_attributes_p
);
6655 defsubr (&Scolor_distance
);
6656 defsubr (&Sinternal_set_font_selection_order
);
6657 defsubr (&Sinternal_set_alternative_font_family_alist
);
6658 defsubr (&Sinternal_set_alternative_font_registry_alist
);
6659 defsubr (&Sface_attributes_as_vector
);
6661 defsubr (&Sdump_face
);
6662 defsubr (&Sshow_face_resources
);
6663 #endif /* GLYPH_DEBUG */
6664 defsubr (&Sclear_face_cache
);
6665 defsubr (&Stty_suppress_bold_inverse_default_colors
);
6667 #if defined DEBUG_X_COLORS && defined HAVE_X_WINDOWS
6668 defsubr (&Sdump_colors
);
6671 DEFVAR_LISP ("font-list-limit", Vfont_list_limit
,
6672 doc
: /* *Limit for font matching.
6673 If an integer > 0, font matching functions won't load more than
6674 that number of fonts when searching for a matching font. */);
6675 Vfont_list_limit
= make_number (DEFAULT_FONT_LIST_LIMIT
);
6677 DEFVAR_LISP ("face-new-frame-defaults", Vface_new_frame_defaults
,
6678 doc
: /* List of global face definitions (for internal use only.) */);
6679 Vface_new_frame_defaults
= Qnil
;
6681 DEFVAR_LISP ("face-default-stipple", Vface_default_stipple
,
6682 doc
: /* *Default stipple pattern used on monochrome displays.
6683 This stipple pattern is used on monochrome displays
6684 instead of shades of gray for a face background color.
6685 See `set-face-stipple' for possible values for this variable. */);
6686 Vface_default_stipple
= make_pure_c_string ("gray3");
6688 DEFVAR_LISP ("tty-defined-color-alist", Vtty_defined_color_alist
,
6689 doc
: /* An alist of defined terminal colors and their RGB values.
6690 See the docstring of `tty-color-alist' for the details. */);
6691 Vtty_defined_color_alist
= Qnil
;
6693 DEFVAR_LISP ("scalable-fonts-allowed", Vscalable_fonts_allowed
,
6694 doc
: /* Allowed scalable fonts.
6695 A value of nil means don't allow any scalable fonts.
6696 A value of t means allow any scalable font.
6697 Otherwise, value must be a list of regular expressions. A font may be
6698 scaled if its name matches a regular expression in the list.
6699 Note that if value is nil, a scalable font might still be used, if no
6700 other font of the appropriate family and registry is available. */);
6701 Vscalable_fonts_allowed
= Qnil
;
6703 DEFVAR_LISP ("face-ignored-fonts", Vface_ignored_fonts
,
6704 doc
: /* List of ignored fonts.
6705 Each element is a regular expression that matches names of fonts to
6707 Vface_ignored_fonts
= Qnil
;
6709 DEFVAR_LISP ("face-remapping-alist", Vface_remapping_alist
,
6710 doc
: /* Alist of face remappings.
6711 Each element is of the form:
6713 (FACE REPLACEMENT...),
6715 which causes display of the face FACE to use REPLACEMENT... instead.
6716 REPLACEMENT... is interpreted the same way as the value of a `face'
6717 text property: it may be (1) A face name, (2) A list of face names,
6718 (3) A property-list of face attribute/value pairs, or (4) A list of
6719 face names or lists containing face attribute/value pairs.
6721 Multiple entries in REPLACEMENT... are merged together to form the final
6722 result, with faces or attributes earlier in the list taking precedence
6723 over those that are later.
6725 Face-name remapping cycles are suppressed; recursive references use the
6726 underlying face instead of the remapped face. So a remapping of the form:
6728 (FACE EXTRA-FACE... FACE)
6732 (FACE (FACE-ATTR VAL ...) FACE)
6734 will cause EXTRA-FACE... or (FACE-ATTR VAL ...) to be _merged_ with the
6735 existing definition of FACE. Note that for the default face, this isn't
6736 necessary, as every face inherits from the default face.
6738 Making this variable buffer-local is a good way to allow buffer-specific
6739 face definitions. For instance, the mode my-mode could define a face
6740 `my-mode-default', and then in the mode setup function, do:
6742 (set (make-local-variable 'face-remapping-alist)
6743 '((default my-mode-default)))).
6745 Because Emacs normally only redraws screen areas when the underlying
6746 buffer contents change, you may need to call `redraw-display' after
6747 changing this variable for it to take effect. */);
6748 Vface_remapping_alist
= Qnil
;
6750 DEFVAR_LISP ("face-font-rescale-alist", Vface_font_rescale_alist
,
6751 doc
: /* Alist of fonts vs the rescaling factors.
6752 Each element is a cons (FONT-PATTERN . RESCALE-RATIO), where
6753 FONT-PATTERN is a font-spec or a regular expression matching a font name, and
6754 RESCALE-RATIO is a floating point number to specify how much larger
6755 \(or smaller) font we should use. For instance, if a face requests
6756 a font of 10 point, we actually use a font of 10 * RESCALE-RATIO point. */);
6757 Vface_font_rescale_alist
= Qnil
;
6759 #ifdef HAVE_WINDOW_SYSTEM
6760 defsubr (&Sbitmap_spec_p
);
6761 defsubr (&Sx_list_fonts
);
6762 defsubr (&Sinternal_face_x_get_resource
);
6763 defsubr (&Sx_family_fonts
);