1 /* xfaces.c -- "Face" primitives.
3 Copyright (C) 1993-1994, 1998-2012 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
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 corresponding 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 #if defined USG || defined __TIMEVAL__ /* Don't warn about unused macros. */
278 #else /* not XOS_NEEDS_TIME_H */
280 #endif /* not XOS_NEEDS_TIME_H */
282 #endif /* HAVE_X_WINDOWS */
286 /* Number of pt per inch (from the TeXbook). */
288 #define PT_PER_INCH 72.27
290 /* Non-zero if face attribute ATTR is unspecified. */
292 #define UNSPECIFIEDP(ATTR) EQ ((ATTR), Qunspecified)
294 /* Non-zero if face attribute ATTR is `ignore-defface'. */
296 #define IGNORE_DEFFACE_P(ATTR) EQ ((ATTR), QCignore_defface)
298 /* Value is the number of elements of VECTOR. */
300 #define DIM(VECTOR) (sizeof (VECTOR) / sizeof *(VECTOR))
302 /* Size of hash table of realized faces in face caches (should be a
305 #define FACE_CACHE_BUCKETS_SIZE 1001
307 /* Keyword symbols used for face attribute names. */
309 Lisp_Object QCfamily
, QCheight
, QCweight
, QCslant
;
310 static Lisp_Object QCunderline
;
311 static Lisp_Object QCinverse_video
, QCstipple
;
312 Lisp_Object QCforeground
, QCbackground
;
314 static Lisp_Object QCfont
, QCbold
, QCitalic
;
315 static Lisp_Object QCreverse_video
;
316 static Lisp_Object QCoverline
, QCstrike_through
, QCbox
, QCinherit
;
317 static Lisp_Object QCfontset
;
319 /* Symbols used for attribute values. */
323 static Lisp_Object Qline
, Qwave
;
324 static Lisp_Object Qultra_light
, Qextra_light
, Qlight
;
325 static Lisp_Object Qsemi_light
, Qsemi_bold
, Qextra_bold
, Qultra_bold
;
326 static Lisp_Object Qoblique
, Qreverse_oblique
, Qreverse_italic
;
328 static Lisp_Object Qultra_condensed
, Qextra_condensed
;
329 Lisp_Object Qcondensed
;
330 static Lisp_Object Qsemi_condensed
, Qsemi_expanded
, Qextra_expanded
;
331 Lisp_Object Qexpanded
;
332 static Lisp_Object Qultra_expanded
;
333 static Lisp_Object Qreleased_button
, Qpressed_button
;
334 static Lisp_Object QCstyle
, QCcolor
, QCline_width
;
335 Lisp_Object Qunspecified
; /* used in dosfns.c */
336 static Lisp_Object QCignore_defface
;
338 char unspecified_fg
[] = "unspecified-fg", unspecified_bg
[] = "unspecified-bg";
340 /* The name of the function to call when the background of the frame
341 has changed, frame_set_background_mode. */
343 static Lisp_Object Qframe_set_background_mode
;
345 /* Names of basic faces. */
347 Lisp_Object Qdefault
, Qtool_bar
, Qfringe
;
348 static Lisp_Object Qregion
;
349 Lisp_Object Qheader_line
, Qscroll_bar
, Qcursor
;
350 static Lisp_Object Qborder
, Qmouse
, Qmenu
;
351 Lisp_Object Qmode_line_inactive
;
352 static Lisp_Object Qvertical_border
;
354 /* The symbol `face-alias'. A symbols having that property is an
355 alias for another face. Value of the property is the name of
358 static Lisp_Object Qface_alias
;
360 /* Alist of alternative font families. Each element is of the form
361 (FAMILY FAMILY1 FAMILY2 ...). If fonts of FAMILY can't be loaded,
362 try FAMILY1, then FAMILY2, ... */
364 Lisp_Object Vface_alternative_font_family_alist
;
366 /* Alist of alternative font registries. Each element is of the form
367 (REGISTRY REGISTRY1 REGISTRY2...). If fonts of REGISTRY can't be
368 loaded, try REGISTRY1, then REGISTRY2, ... */
370 Lisp_Object Vface_alternative_font_registry_alist
;
372 /* Allowed scalable fonts. A value of nil means don't allow any
373 scalable fonts. A value of t means allow the use of any scalable
374 font. Otherwise, value must be a list of regular expressions. A
375 font may be scaled if its name matches a regular expression in the
378 static Lisp_Object Qscalable_fonts_allowed
;
380 #define DEFAULT_FONT_LIST_LIMIT 100
382 /* The symbols `foreground-color' and `background-color' which can be
383 used as part of a `face' property. This is for compatibility with
386 Lisp_Object Qforeground_color
, Qbackground_color
;
388 /* The symbols `face' and `mouse-face' used as text properties. */
392 /* Property for basic faces which other faces cannot inherit. */
394 static Lisp_Object Qface_no_inherit
;
396 /* Error symbol for wrong_type_argument in load_pixmap. */
398 static Lisp_Object Qbitmap_spec_p
;
400 /* The next ID to assign to Lisp faces. */
402 static int next_lface_id
;
404 /* A vector mapping Lisp face Id's to face names. */
406 static Lisp_Object
*lface_id_to_name
;
407 static ptrdiff_t lface_id_to_name_size
;
409 /* TTY color-related functions (defined in tty-colors.el). */
411 static Lisp_Object Qtty_color_desc
, Qtty_color_by_index
, Qtty_color_standard_values
;
413 /* The name of the function used to compute colors on TTYs. */
415 static Lisp_Object Qtty_color_alist
;
417 /* Counter for calls to clear_face_cache. If this counter reaches
418 CLEAR_FONT_TABLE_COUNT, and a frame has more than
419 CLEAR_FONT_TABLE_NFONTS load, unused fonts are freed. */
421 static int clear_font_table_count
;
422 #define CLEAR_FONT_TABLE_COUNT 100
423 #define CLEAR_FONT_TABLE_NFONTS 10
425 /* Non-zero means face attributes have been changed since the last
426 redisplay. Used in redisplay_internal. */
428 int face_change_count
;
430 /* Non-zero means don't display bold text if a face's foreground
431 and background colors are the inverse of the default colors of the
432 display. This is a kluge to suppress `bold black' foreground text
433 which is hard to read on an LCD monitor. */
435 static int tty_suppress_bold_inverse_default_colors_p
;
437 /* A list of the form `((x . y))' used to avoid consing in
438 Finternal_set_lisp_face_attribute. */
440 static Lisp_Object Vparam_value_alist
;
442 /* The total number of colors currently allocated. */
445 static int ncolors_allocated
;
446 static int npixmaps_allocated
;
450 /* Non-zero means the definition of the `menu' face for new frames has
453 static int menu_face_changed_default
;
456 /* Function prototypes. */
459 struct named_merge_point
;
461 static void map_tty_color (struct frame
*, struct face
*,
462 enum lface_attribute_index
, int *);
463 static Lisp_Object
resolve_face_name (Lisp_Object
, int);
464 static void set_font_frame_param (Lisp_Object
, Lisp_Object
);
465 static int get_lface_attributes (struct frame
*, Lisp_Object
, Lisp_Object
*,
466 int, struct named_merge_point
*);
467 static ptrdiff_t load_pixmap (struct frame
*, Lisp_Object
,
468 unsigned *, unsigned *);
469 static struct frame
*frame_or_selected_frame (Lisp_Object
, int);
470 static void load_face_colors (struct frame
*, struct face
*, Lisp_Object
*);
471 static void free_face_colors (struct frame
*, struct face
*);
472 static int face_color_gray_p (struct frame
*, const char *);
473 static struct face
*realize_face (struct face_cache
*, Lisp_Object
*,
475 static struct face
*realize_non_ascii_face (struct frame
*, Lisp_Object
,
477 static struct face
*realize_x_face (struct face_cache
*, Lisp_Object
*);
478 static struct face
*realize_tty_face (struct face_cache
*, Lisp_Object
*);
479 static int realize_basic_faces (struct frame
*);
480 static int realize_default_face (struct frame
*);
481 static void realize_named_face (struct frame
*, Lisp_Object
, int);
482 static int lface_fully_specified_p (Lisp_Object
*);
483 static int lface_equal_p (Lisp_Object
*, Lisp_Object
*);
484 static unsigned hash_string_case_insensitive (Lisp_Object
);
485 static unsigned lface_hash (Lisp_Object
*);
486 static int lface_same_font_attributes_p (Lisp_Object
*, Lisp_Object
*);
487 static struct face_cache
*make_face_cache (struct frame
*);
488 static void clear_face_gcs (struct face_cache
*);
489 static void free_face_cache (struct face_cache
*);
490 static int face_fontset (Lisp_Object
*);
491 static void merge_face_vectors (struct frame
*, Lisp_Object
*, Lisp_Object
*,
492 struct named_merge_point
*);
493 static int merge_face_ref (struct frame
*, Lisp_Object
, Lisp_Object
*,
494 int, struct named_merge_point
*);
495 static int set_lface_from_font (struct frame
*, Lisp_Object
, Lisp_Object
,
497 static Lisp_Object
lface_from_face_name (struct frame
*, Lisp_Object
, int);
498 static struct face
*make_realized_face (Lisp_Object
*);
499 static void cache_face (struct face_cache
*, struct face
*, unsigned);
500 static void uncache_face (struct face_cache
*, struct face
*);
502 #ifdef HAVE_WINDOW_SYSTEM
504 static GC
x_create_gc (struct frame
*, unsigned long, XGCValues
*);
505 static void x_free_gc (struct frame
*, GC
);
508 static void x_update_menu_appearance (struct frame
*);
510 extern void free_frame_menubar (struct frame
*);
511 #endif /* USE_X_TOOLKIT */
513 #endif /* HAVE_WINDOW_SYSTEM */
516 /***********************************************************************
518 ***********************************************************************/
520 #ifdef HAVE_X_WINDOWS
522 #ifdef DEBUG_X_COLORS
524 /* The following is a poor mans infrastructure for debugging X color
525 allocation problems on displays with PseudoColor-8. Some X servers
526 like 3.3.5 XF86_SVGA with Matrox cards apparently don't implement
527 color reference counts completely so that they don't signal an
528 error when a color is freed whose reference count is already 0.
529 Other X servers do. To help me debug this, the following code
530 implements a simple reference counting schema of its own, for a
531 single display/screen. --gerd. */
533 /* Reference counts for pixel colors. */
535 int color_count
[256];
537 /* Register color PIXEL as allocated. */
540 register_color (unsigned long pixel
)
542 eassert (pixel
< 256);
543 ++color_count
[pixel
];
547 /* Register color PIXEL as deallocated. */
550 unregister_color (unsigned long pixel
)
552 eassert (pixel
< 256);
553 if (color_count
[pixel
] > 0)
554 --color_count
[pixel
];
560 /* Register N colors from PIXELS as deallocated. */
563 unregister_colors (unsigned long *pixels
, int n
)
566 for (i
= 0; i
< n
; ++i
)
567 unregister_color (pixels
[i
]);
571 DEFUN ("dump-colors", Fdump_colors
, Sdump_colors
, 0, 0, 0,
572 doc
: /* Dump currently allocated colors to stderr. */)
577 fputc ('\n', stderr
);
579 for (i
= n
= 0; i
< sizeof color_count
/ sizeof color_count
[0]; ++i
)
582 fprintf (stderr
, "%3d: %5d", i
, color_count
[i
]);
585 fputc ('\n', stderr
);
587 fputc ('\t', stderr
);
591 fputc ('\n', stderr
);
595 #endif /* DEBUG_X_COLORS */
598 /* Free colors used on frame F. PIXELS is an array of NPIXELS pixel
599 color values. Interrupt input must be blocked when this function
603 x_free_colors (struct frame
*f
, long unsigned int *pixels
, int npixels
)
605 int class = FRAME_X_DISPLAY_INFO (f
)->visual
->class;
607 /* If display has an immutable color map, freeing colors is not
608 necessary and some servers don't allow it. So don't do it. */
609 if (class != StaticColor
&& class != StaticGray
&& class != TrueColor
)
611 #ifdef DEBUG_X_COLORS
612 unregister_colors (pixels
, npixels
);
614 XFreeColors (FRAME_X_DISPLAY (f
), FRAME_X_COLORMAP (f
),
622 /* Free colors used on frame F. PIXELS is an array of NPIXELS pixel
623 color values. Interrupt input must be blocked when this function
627 x_free_dpy_colors (Display
*dpy
, Screen
*screen
, Colormap cmap
,
628 long unsigned int *pixels
, int npixels
)
630 struct x_display_info
*dpyinfo
= x_display_info_for_display (dpy
);
631 int class = dpyinfo
->visual
->class;
633 /* If display has an immutable color map, freeing colors is not
634 necessary and some servers don't allow it. So don't do it. */
635 if (class != StaticColor
&& class != StaticGray
&& class != TrueColor
)
637 #ifdef DEBUG_X_COLORS
638 unregister_colors (pixels
, npixels
);
640 XFreeColors (dpy
, cmap
, pixels
, npixels
, 0);
643 #endif /* USE_X_TOOLKIT */
645 /* Create and return a GC for use on frame F. GC values and mask
646 are given by XGCV and MASK. */
649 x_create_gc (struct frame
*f
, long unsigned int mask
, XGCValues
*xgcv
)
653 gc
= XCreateGC (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), mask
, xgcv
);
660 /* Free GC which was used on frame F. */
663 x_free_gc (struct frame
*f
, GC gc
)
665 eassert (interrupt_input_blocked
);
666 IF_DEBUG (eassert (--ngcs
>= 0));
667 XFreeGC (FRAME_X_DISPLAY (f
), gc
);
670 #endif /* HAVE_X_WINDOWS */
673 /* W32 emulation of GCs */
676 x_create_gc (struct frame
*f
, unsigned long mask
, XGCValues
*xgcv
)
680 gc
= XCreateGC (NULL
, FRAME_W32_WINDOW (f
), mask
, xgcv
);
687 /* Free GC which was used on frame F. */
690 x_free_gc (struct frame
*f
, GC gc
)
692 IF_DEBUG (eassert (--ngcs
>= 0));
696 #endif /* WINDOWSNT */
699 /* NS emulation of GCs */
702 x_create_gc (struct frame
*f
,
706 GC gc
= xmalloc (sizeof (*gc
));
708 memcpy (gc
, xgcv
, sizeof (XGCValues
));
713 x_free_gc (struct frame
*f
, GC gc
)
719 #ifndef HAVE_STRCASECMP
720 /* Like strcasecmp/stricmp. Used to compare parts of font names which
724 xstrcasecmp (const char *s1
, const char *s2
)
728 unsigned char b1
= *s1
;
729 unsigned char b2
= *s2
;
730 unsigned char c1
= tolower (b1
);
731 unsigned char c2
= tolower (b2
);
733 return c1
< c2
? -1 : 1;
738 return *s2
== 0 ? 0 : -1;
741 #endif /* HAVE_STRCASECMP */
743 /* If FRAME is nil, return a pointer to the selected frame.
744 Otherwise, check that FRAME is a live frame, and return a pointer
745 to it. NPARAM is the parameter number of FRAME, for
746 CHECK_LIVE_FRAME. This is here because it's a frequent pattern in
747 Lisp function definitions. */
749 static inline struct frame
*
750 frame_or_selected_frame (Lisp_Object frame
, int nparam
)
753 frame
= selected_frame
;
755 CHECK_LIVE_FRAME (frame
);
756 return XFRAME (frame
);
760 /***********************************************************************
762 ***********************************************************************/
764 /* Initialize face cache and basic faces for frame F. */
767 init_frame_faces (struct frame
*f
)
769 /* Make a face cache, if F doesn't have one. */
770 if (FRAME_FACE_CACHE (f
) == NULL
)
771 FRAME_FACE_CACHE (f
) = make_face_cache (f
);
773 #ifdef HAVE_WINDOW_SYSTEM
774 /* Make the image cache. */
775 if (FRAME_WINDOW_P (f
))
777 /* We initialize the image cache when creating the first frame
778 on a terminal, and not during terminal creation. This way,
779 `x-open-connection' on a tty won't create an image cache. */
780 if (FRAME_IMAGE_CACHE (f
) == NULL
)
781 FRAME_IMAGE_CACHE (f
) = make_image_cache ();
782 ++FRAME_IMAGE_CACHE (f
)->refcount
;
784 #endif /* HAVE_WINDOW_SYSTEM */
786 /* Realize basic faces. Must have enough information in frame
787 parameters to realize basic faces at this point. */
788 #ifdef HAVE_X_WINDOWS
789 if (!FRAME_X_P (f
) || FRAME_X_WINDOW (f
))
792 if (!FRAME_WINDOW_P (f
) || FRAME_W32_WINDOW (f
))
795 if (!FRAME_NS_P (f
) || FRAME_NS_WINDOW (f
))
797 if (!realize_basic_faces (f
))
802 /* Free face cache of frame F. Called from delete_frame. */
805 free_frame_faces (struct frame
*f
)
807 struct face_cache
*face_cache
= FRAME_FACE_CACHE (f
);
811 free_face_cache (face_cache
);
812 FRAME_FACE_CACHE (f
) = NULL
;
815 #ifdef HAVE_WINDOW_SYSTEM
816 if (FRAME_WINDOW_P (f
))
818 struct image_cache
*image_cache
= FRAME_IMAGE_CACHE (f
);
821 --image_cache
->refcount
;
822 if (image_cache
->refcount
== 0)
823 free_image_cache (f
);
826 #endif /* HAVE_WINDOW_SYSTEM */
830 /* Clear face caches, and recompute basic faces for frame F. Call
831 this after changing frame parameters on which those faces depend,
832 or when realized faces have been freed due to changing attributes
836 recompute_basic_faces (struct frame
*f
)
838 if (FRAME_FACE_CACHE (f
))
840 clear_face_cache (0);
841 if (!realize_basic_faces (f
))
847 /* Clear the face caches of all frames. CLEAR_FONTS_P non-zero means
848 try to free unused fonts, too. */
851 clear_face_cache (int clear_fonts_p
)
853 #ifdef HAVE_WINDOW_SYSTEM
854 Lisp_Object tail
, frame
;
857 || ++clear_font_table_count
== CLEAR_FONT_TABLE_COUNT
)
860 /* Not yet implemented. */
861 clear_font_cache (frame
);
864 /* From time to time see if we can unload some fonts. This also
865 frees all realized faces on all frames. Fonts needed by
866 faces will be loaded again when faces are realized again. */
867 clear_font_table_count
= 0;
869 FOR_EACH_FRAME (tail
, frame
)
871 struct frame
*f
= XFRAME (frame
);
872 if (FRAME_WINDOW_P (f
)
873 && FRAME_X_DISPLAY_INFO (f
)->n_fonts
> CLEAR_FONT_TABLE_NFONTS
)
874 free_all_realized_faces (frame
);
879 /* Clear GCs of realized faces. */
880 FOR_EACH_FRAME (tail
, frame
)
882 struct frame
*f
= XFRAME (frame
);
883 if (FRAME_WINDOW_P (f
))
884 clear_face_gcs (FRAME_FACE_CACHE (f
));
886 clear_image_caches (Qnil
);
888 #endif /* HAVE_WINDOW_SYSTEM */
892 DEFUN ("clear-face-cache", Fclear_face_cache
, Sclear_face_cache
, 0, 1, 0,
893 doc
: /* Clear face caches on all frames.
894 Optional THOROUGHLY non-nil means try to free unused fonts, too. */)
895 (Lisp_Object thoroughly
)
897 clear_face_cache (!NILP (thoroughly
));
899 ++windows_or_buffers_changed
;
904 /***********************************************************************
906 ***********************************************************************/
908 #ifdef HAVE_WINDOW_SYSTEM
910 DEFUN ("bitmap-spec-p", Fbitmap_spec_p
, Sbitmap_spec_p
, 1, 1, 0,
911 doc
: /* Value is non-nil if OBJECT is a valid bitmap specification.
912 A bitmap specification is either a string, a file name, or a list
913 \(WIDTH HEIGHT DATA) where WIDTH is the pixel width of the bitmap,
914 HEIGHT is its height, and DATA is a string containing the bits of
915 the pixmap. Bits are stored row by row, each row occupies
916 \(WIDTH + 7)/8 bytes. */)
921 if (STRINGP (object
))
922 /* If OBJECT is a string, it's a file name. */
924 else if (CONSP (object
))
926 /* Otherwise OBJECT must be (WIDTH HEIGHT DATA), WIDTH and
927 HEIGHT must be ints > 0, and DATA must be string large
928 enough to hold a bitmap of the specified size. */
929 Lisp_Object width
, height
, data
;
931 height
= width
= data
= Qnil
;
935 width
= XCAR (object
);
936 object
= XCDR (object
);
939 height
= XCAR (object
);
940 object
= XCDR (object
);
942 data
= XCAR (object
);
947 && RANGED_INTEGERP (1, width
, INT_MAX
)
948 && RANGED_INTEGERP (1, height
, INT_MAX
))
950 int bytes_per_row
= ((XINT (width
) + BITS_PER_CHAR
- 1)
952 if (XINT (height
) <= SBYTES (data
) / bytes_per_row
)
957 return pixmap_p
? Qt
: Qnil
;
961 /* Load a bitmap according to NAME (which is either a file name or a
962 pixmap spec) for use on frame F. Value is the bitmap_id (see
963 xfns.c). If NAME is nil, return with a bitmap id of zero. If
964 bitmap cannot be loaded, display a message saying so, and return
965 zero. Store the bitmap width in *W_PTR and its height in *H_PTR,
966 if these pointers are not null. */
969 load_pixmap (FRAME_PTR f
, Lisp_Object name
, unsigned int *w_ptr
,
977 CHECK_TYPE (!NILP (Fbitmap_spec_p (name
)), Qbitmap_spec_p
, name
);
982 /* Decode a bitmap spec into a bitmap. */
987 w
= XINT (Fcar (name
));
988 h
= XINT (Fcar (Fcdr (name
)));
989 bits
= Fcar (Fcdr (Fcdr (name
)));
991 bitmap_id
= x_create_bitmap_from_data (f
, SSDATA (bits
),
996 /* It must be a string -- a file name. */
997 bitmap_id
= x_create_bitmap_from_file (f
, name
);
1003 add_to_log ("Invalid or undefined bitmap `%s'", name
, Qnil
);
1014 ++npixmaps_allocated
;
1017 *w_ptr
= x_bitmap_width (f
, bitmap_id
);
1020 *h_ptr
= x_bitmap_height (f
, bitmap_id
);
1026 #endif /* HAVE_WINDOW_SYSTEM */
1030 /***********************************************************************
1032 ***********************************************************************/
1034 /* Parse RGB_LIST, and fill in the RGB fields of COLOR.
1035 RGB_LIST should contain (at least) 3 lisp integers.
1036 Return 0 if there's a problem with RGB_LIST, otherwise return 1. */
1039 parse_rgb_list (Lisp_Object rgb_list
, XColor
*color
)
1041 #define PARSE_RGB_LIST_FIELD(field) \
1042 if (CONSP (rgb_list) && INTEGERP (XCAR (rgb_list))) \
1044 color->field = XINT (XCAR (rgb_list)); \
1045 rgb_list = XCDR (rgb_list); \
1050 PARSE_RGB_LIST_FIELD (red
);
1051 PARSE_RGB_LIST_FIELD (green
);
1052 PARSE_RGB_LIST_FIELD (blue
);
1058 /* Lookup on frame F the color described by the lisp string COLOR.
1059 The resulting tty color is returned in TTY_COLOR; if STD_COLOR is
1060 non-zero, then the `standard' definition of the same color is
1064 tty_lookup_color (struct frame
*f
, Lisp_Object color
, XColor
*tty_color
,
1067 Lisp_Object frame
, color_desc
;
1069 if (!STRINGP (color
) || NILP (Ffboundp (Qtty_color_desc
)))
1072 XSETFRAME (frame
, f
);
1074 color_desc
= call2 (Qtty_color_desc
, color
, frame
);
1075 if (CONSP (color_desc
) && CONSP (XCDR (color_desc
)))
1079 if (! INTEGERP (XCAR (XCDR (color_desc
))))
1082 tty_color
->pixel
= XINT (XCAR (XCDR (color_desc
)));
1084 rgb
= XCDR (XCDR (color_desc
));
1085 if (! parse_rgb_list (rgb
, tty_color
))
1088 /* Should we fill in STD_COLOR too? */
1091 /* Default STD_COLOR to the same as TTY_COLOR. */
1092 *std_color
= *tty_color
;
1094 /* Do a quick check to see if the returned descriptor is
1095 actually _exactly_ equal to COLOR, otherwise we have to
1096 lookup STD_COLOR separately. If it's impossible to lookup
1097 a standard color, we just give up and use TTY_COLOR. */
1098 if ((!STRINGP (XCAR (color_desc
))
1099 || NILP (Fstring_equal (color
, XCAR (color_desc
))))
1100 && !NILP (Ffboundp (Qtty_color_standard_values
)))
1102 /* Look up STD_COLOR separately. */
1103 rgb
= call1 (Qtty_color_standard_values
, color
);
1104 if (! parse_rgb_list (rgb
, std_color
))
1111 else if (NILP (Fsymbol_value (intern ("tty-defined-color-alist"))))
1112 /* We were called early during startup, and the colors are not
1113 yet set up in tty-defined-color-alist. Don't return a failure
1114 indication, since this produces the annoying "Unable to
1115 load color" messages in the *Messages* buffer. */
1118 /* tty-color-desc seems to have returned a bad value. */
1122 /* A version of defined_color for non-X frames. */
1125 tty_defined_color (struct frame
*f
, const char *color_name
,
1126 XColor
*color_def
, int alloc
)
1131 color_def
->pixel
= FACE_TTY_DEFAULT_COLOR
;
1133 color_def
->blue
= 0;
1134 color_def
->green
= 0;
1137 status
= tty_lookup_color (f
, build_string (color_name
), color_def
, NULL
);
1139 if (color_def
->pixel
== FACE_TTY_DEFAULT_COLOR
&& *color_name
)
1141 if (strcmp (color_name
, "unspecified-fg") == 0)
1142 color_def
->pixel
= FACE_TTY_DEFAULT_FG_COLOR
;
1143 else if (strcmp (color_name
, "unspecified-bg") == 0)
1144 color_def
->pixel
= FACE_TTY_DEFAULT_BG_COLOR
;
1147 if (color_def
->pixel
!= FACE_TTY_DEFAULT_COLOR
)
1154 /* Decide if color named COLOR_NAME is valid for the display
1155 associated with the frame F; if so, return the rgb values in
1156 COLOR_DEF. If ALLOC is nonzero, allocate a new colormap cell.
1158 This does the right thing for any type of frame. */
1161 defined_color (struct frame
*f
, const char *color_name
, XColor
*color_def
,
1164 if (!FRAME_WINDOW_P (f
))
1165 return tty_defined_color (f
, color_name
, color_def
, alloc
);
1166 #ifdef HAVE_X_WINDOWS
1167 else if (FRAME_X_P (f
))
1168 return x_defined_color (f
, color_name
, color_def
, alloc
);
1171 else if (FRAME_W32_P (f
))
1172 return w32_defined_color (f
, color_name
, color_def
, alloc
);
1175 else if (FRAME_NS_P (f
))
1176 return ns_defined_color (f
, color_name
, color_def
, alloc
, 1);
1183 /* Given the index IDX of a tty color on frame F, return its name, a
1187 tty_color_name (struct frame
*f
, int idx
)
1189 if (idx
>= 0 && !NILP (Ffboundp (Qtty_color_by_index
)))
1192 Lisp_Object coldesc
;
1194 XSETFRAME (frame
, f
);
1195 coldesc
= call2 (Qtty_color_by_index
, make_number (idx
), frame
);
1197 if (!NILP (coldesc
))
1198 return XCAR (coldesc
);
1201 /* We can have an MSDOG frame under -nw for a short window of
1202 opportunity before internal_terminal_init is called. DTRT. */
1203 if (FRAME_MSDOS_P (f
) && !inhibit_window_system
)
1204 return msdos_stdcolor_name (idx
);
1207 if (idx
== FACE_TTY_DEFAULT_FG_COLOR
)
1208 return build_string (unspecified_fg
);
1209 if (idx
== FACE_TTY_DEFAULT_BG_COLOR
)
1210 return build_string (unspecified_bg
);
1212 return Qunspecified
;
1216 /* Return non-zero if COLOR_NAME is a shade of gray (or white or
1219 The criterion implemented here is not a terribly sophisticated one. */
1222 face_color_gray_p (struct frame
*f
, const char *color_name
)
1227 if (defined_color (f
, color_name
, &color
, 0))
1228 gray_p
= (/* Any color sufficiently close to black counts as gray. */
1229 (color
.red
< 5000 && color
.green
< 5000 && color
.blue
< 5000)
1231 ((eabs (color
.red
- color
.green
)
1232 < max (color
.red
, color
.green
) / 20)
1233 && (eabs (color
.green
- color
.blue
)
1234 < max (color
.green
, color
.blue
) / 20)
1235 && (eabs (color
.blue
- color
.red
)
1236 < max (color
.blue
, color
.red
) / 20)));
1244 /* Return non-zero if color COLOR_NAME can be displayed on frame F.
1245 BACKGROUND_P non-zero means the color will be used as background
1249 face_color_supported_p (struct frame
*f
, const char *color_name
,
1255 XSETFRAME (frame
, f
);
1257 #ifdef HAVE_WINDOW_SYSTEM
1259 ? (!NILP (Fxw_display_color_p (frame
))
1260 || xstrcasecmp (color_name
, "black") == 0
1261 || xstrcasecmp (color_name
, "white") == 0
1263 && face_color_gray_p (f
, color_name
))
1264 || (!NILP (Fx_display_grayscale_p (frame
))
1265 && face_color_gray_p (f
, color_name
)))
1268 tty_defined_color (f
, color_name
, ¬_used
, 0);
1272 DEFUN ("color-gray-p", Fcolor_gray_p
, Scolor_gray_p
, 1, 2, 0,
1273 doc
: /* Return non-nil if COLOR is a shade of gray (or white or black).
1274 FRAME specifies the frame and thus the display for interpreting COLOR.
1275 If FRAME is nil or omitted, use the selected frame. */)
1276 (Lisp_Object color
, Lisp_Object frame
)
1280 CHECK_STRING (color
);
1282 frame
= selected_frame
;
1284 CHECK_FRAME (frame
);
1286 return face_color_gray_p (f
, SSDATA (color
)) ? Qt
: Qnil
;
1290 DEFUN ("color-supported-p", Fcolor_supported_p
,
1291 Scolor_supported_p
, 1, 3, 0,
1292 doc
: /* Return non-nil if COLOR can be displayed on FRAME.
1293 BACKGROUND-P non-nil means COLOR is used as a background.
1294 Otherwise, this function tells whether it can be used as a foreground.
1295 If FRAME is nil or omitted, use the selected frame.
1296 COLOR must be a valid color name. */)
1297 (Lisp_Object color
, Lisp_Object frame
, Lisp_Object background_p
)
1301 CHECK_STRING (color
);
1303 frame
= selected_frame
;
1305 CHECK_FRAME (frame
);
1307 if (face_color_supported_p (f
, SSDATA (color
), !NILP (background_p
)))
1313 /* Load color with name NAME for use by face FACE on frame F.
1314 TARGET_INDEX must be one of LFACE_FOREGROUND_INDEX,
1315 LFACE_BACKGROUND_INDEX, LFACE_UNDERLINE_INDEX, LFACE_OVERLINE_INDEX,
1316 LFACE_STRIKE_THROUGH_INDEX, or LFACE_BOX_INDEX. Value is the
1317 pixel color. If color cannot be loaded, display a message, and
1318 return the foreground, background or underline color of F, but
1319 record that fact in flags of the face so that we don't try to free
1323 load_color (struct frame
*f
, struct face
*face
, Lisp_Object name
,
1324 enum lface_attribute_index target_index
)
1328 eassert (STRINGP (name
));
1329 eassert (target_index
== LFACE_FOREGROUND_INDEX
1330 || target_index
== LFACE_BACKGROUND_INDEX
1331 || target_index
== LFACE_UNDERLINE_INDEX
1332 || target_index
== LFACE_OVERLINE_INDEX
1333 || target_index
== LFACE_STRIKE_THROUGH_INDEX
1334 || target_index
== LFACE_BOX_INDEX
);
1336 /* if the color map is full, defined_color will return a best match
1337 to the values in an existing cell. */
1338 if (!defined_color (f
, SSDATA (name
), &color
, 1))
1340 add_to_log ("Unable to load color \"%s\"", name
, Qnil
);
1342 switch (target_index
)
1344 case LFACE_FOREGROUND_INDEX
:
1345 face
->foreground_defaulted_p
= 1;
1346 color
.pixel
= FRAME_FOREGROUND_PIXEL (f
);
1349 case LFACE_BACKGROUND_INDEX
:
1350 face
->background_defaulted_p
= 1;
1351 color
.pixel
= FRAME_BACKGROUND_PIXEL (f
);
1354 case LFACE_UNDERLINE_INDEX
:
1355 face
->underline_defaulted_p
= 1;
1356 color
.pixel
= FRAME_FOREGROUND_PIXEL (f
);
1359 case LFACE_OVERLINE_INDEX
:
1360 face
->overline_color_defaulted_p
= 1;
1361 color
.pixel
= FRAME_FOREGROUND_PIXEL (f
);
1364 case LFACE_STRIKE_THROUGH_INDEX
:
1365 face
->strike_through_color_defaulted_p
= 1;
1366 color
.pixel
= FRAME_FOREGROUND_PIXEL (f
);
1369 case LFACE_BOX_INDEX
:
1370 face
->box_color_defaulted_p
= 1;
1371 color
.pixel
= FRAME_FOREGROUND_PIXEL (f
);
1380 ++ncolors_allocated
;
1387 #ifdef HAVE_WINDOW_SYSTEM
1389 /* Load colors for face FACE which is used on frame F. Colors are
1390 specified by slots LFACE_BACKGROUND_INDEX and LFACE_FOREGROUND_INDEX
1391 of ATTRS. If the background color specified is not supported on F,
1392 try to emulate gray colors with a stipple from Vface_default_stipple. */
1395 load_face_colors (struct frame
*f
, struct face
*face
, Lisp_Object
*attrs
)
1399 bg
= attrs
[LFACE_BACKGROUND_INDEX
];
1400 fg
= attrs
[LFACE_FOREGROUND_INDEX
];
1402 /* Swap colors if face is inverse-video. */
1403 if (EQ (attrs
[LFACE_INVERSE_INDEX
], Qt
))
1411 /* Check for support for foreground, not for background because
1412 face_color_supported_p is smart enough to know that grays are
1413 "supported" as background because we are supposed to use stipple
1415 if (!face_color_supported_p (f
, SSDATA (bg
), 0)
1416 && !NILP (Fbitmap_spec_p (Vface_default_stipple
)))
1418 x_destroy_bitmap (f
, face
->stipple
);
1419 face
->stipple
= load_pixmap (f
, Vface_default_stipple
,
1420 &face
->pixmap_w
, &face
->pixmap_h
);
1423 face
->background
= load_color (f
, face
, bg
, LFACE_BACKGROUND_INDEX
);
1424 face
->foreground
= load_color (f
, face
, fg
, LFACE_FOREGROUND_INDEX
);
1428 /* Free color PIXEL on frame F. */
1431 unload_color (struct frame
*f
, long unsigned int pixel
)
1433 #ifdef HAVE_X_WINDOWS
1437 x_free_colors (f
, &pixel
, 1);
1444 /* Free colors allocated for FACE. */
1447 free_face_colors (struct frame
*f
, struct face
*face
)
1449 /* PENDING(NS): need to do something here? */
1450 #ifdef HAVE_X_WINDOWS
1451 if (face
->colors_copied_bitwise_p
)
1456 if (!face
->foreground_defaulted_p
)
1458 x_free_colors (f
, &face
->foreground
, 1);
1459 IF_DEBUG (--ncolors_allocated
);
1462 if (!face
->background_defaulted_p
)
1464 x_free_colors (f
, &face
->background
, 1);
1465 IF_DEBUG (--ncolors_allocated
);
1468 if (face
->underline_p
1469 && !face
->underline_defaulted_p
)
1471 x_free_colors (f
, &face
->underline_color
, 1);
1472 IF_DEBUG (--ncolors_allocated
);
1475 if (face
->overline_p
1476 && !face
->overline_color_defaulted_p
)
1478 x_free_colors (f
, &face
->overline_color
, 1);
1479 IF_DEBUG (--ncolors_allocated
);
1482 if (face
->strike_through_p
1483 && !face
->strike_through_color_defaulted_p
)
1485 x_free_colors (f
, &face
->strike_through_color
, 1);
1486 IF_DEBUG (--ncolors_allocated
);
1489 if (face
->box
!= FACE_NO_BOX
1490 && !face
->box_color_defaulted_p
)
1492 x_free_colors (f
, &face
->box_color
, 1);
1493 IF_DEBUG (--ncolors_allocated
);
1497 #endif /* HAVE_X_WINDOWS */
1500 #endif /* HAVE_WINDOW_SYSTEM */
1504 /***********************************************************************
1506 ***********************************************************************/
1508 /* An enumerator for each field of an XLFD font name. */
1529 /* An enumerator for each possible slant value of a font. Taken from
1530 the XLFD specification. */
1538 XLFD_SLANT_REVERSE_ITALIC
,
1539 XLFD_SLANT_REVERSE_OBLIQUE
,
1543 /* Relative font weight according to XLFD documentation. */
1547 XLFD_WEIGHT_UNKNOWN
,
1548 XLFD_WEIGHT_ULTRA_LIGHT
, /* 10 */
1549 XLFD_WEIGHT_EXTRA_LIGHT
, /* 20 */
1550 XLFD_WEIGHT_LIGHT
, /* 30 */
1551 XLFD_WEIGHT_SEMI_LIGHT
, /* 40: SemiLight, Book, ... */
1552 XLFD_WEIGHT_MEDIUM
, /* 50: Medium, Normal, Regular, ... */
1553 XLFD_WEIGHT_SEMI_BOLD
, /* 60: SemiBold, DemiBold, ... */
1554 XLFD_WEIGHT_BOLD
, /* 70: Bold, ... */
1555 XLFD_WEIGHT_EXTRA_BOLD
, /* 80: ExtraBold, Heavy, ... */
1556 XLFD_WEIGHT_ULTRA_BOLD
/* 90: UltraBold, Black, ... */
1559 /* Relative proportionate width. */
1563 XLFD_SWIDTH_UNKNOWN
,
1564 XLFD_SWIDTH_ULTRA_CONDENSED
, /* 10 */
1565 XLFD_SWIDTH_EXTRA_CONDENSED
, /* 20 */
1566 XLFD_SWIDTH_CONDENSED
, /* 30: Condensed, Narrow, Compressed, ... */
1567 XLFD_SWIDTH_SEMI_CONDENSED
, /* 40: semicondensed */
1568 XLFD_SWIDTH_MEDIUM
, /* 50: Medium, Normal, Regular, ... */
1569 XLFD_SWIDTH_SEMI_EXPANDED
, /* 60: SemiExpanded, DemiExpanded, ... */
1570 XLFD_SWIDTH_EXPANDED
, /* 70: Expanded... */
1571 XLFD_SWIDTH_EXTRA_EXPANDED
, /* 80: ExtraExpanded, Wide... */
1572 XLFD_SWIDTH_ULTRA_EXPANDED
/* 90: UltraExpanded... */
1575 /* Order by which font selection chooses fonts. The default values
1576 mean `first, find a best match for the font width, then for the
1577 font height, then for weight, then for slant.' This variable can be
1578 set via set-face-font-sort-order. */
1580 static int font_sort_order
[4];
1582 #ifdef HAVE_WINDOW_SYSTEM
1584 static enum font_property_index font_props_for_sorting
[FONT_SIZE_INDEX
];
1587 compare_fonts_by_sort_order (const void *v1
, const void *v2
)
1589 Lisp_Object font1
= *(Lisp_Object
*) v1
;
1590 Lisp_Object font2
= *(Lisp_Object
*) v2
;
1593 for (i
= 0; i
< FONT_SIZE_INDEX
; i
++)
1595 enum font_property_index idx
= font_props_for_sorting
[i
];
1596 Lisp_Object val1
= AREF (font1
, idx
), val2
= AREF (font2
, idx
);
1599 if (idx
<= FONT_REGISTRY_INDEX
)
1602 result
= STRINGP (val2
) ? strcmp (SSDATA (val1
), SSDATA (val2
)) : -1;
1604 result
= STRINGP (val2
) ? 1 : 0;
1608 if (INTEGERP (val1
))
1609 result
= (INTEGERP (val2
) && XINT (val1
) >= XINT (val2
)
1610 ? XINT (val1
) > XINT (val2
)
1613 result
= INTEGERP (val2
) ? 1 : 0;
1621 DEFUN ("x-family-fonts", Fx_family_fonts
, Sx_family_fonts
, 0, 2, 0,
1622 doc
: /* Return a list of available fonts of family FAMILY on FRAME.
1623 If FAMILY is omitted or nil, list all families.
1624 Otherwise, FAMILY must be a string, possibly containing wildcards
1626 If FRAME is omitted or nil, use the selected frame.
1627 Each element of the result is a vector [FAMILY WIDTH POINT-SIZE WEIGHT
1628 SLANT FIXED-P FULL REGISTRY-AND-ENCODING].
1629 FAMILY is the font family name. POINT-SIZE is the size of the
1630 font in 1/10 pt. WIDTH, WEIGHT, and SLANT are symbols describing the
1631 width, weight and slant of the font. These symbols are the same as for
1632 face attributes. FIXED-P is non-nil if the font is fixed-pitch.
1633 FULL is the full name of the font, and REGISTRY-AND-ENCODING is a string
1634 giving the registry and encoding of the font.
1635 The result list is sorted according to the current setting of
1636 the face font sort order. */)
1637 (Lisp_Object family
, Lisp_Object frame
)
1639 Lisp_Object font_spec
, list
, *drivers
, vec
;
1640 ptrdiff_t i
, nfonts
;
1646 frame
= selected_frame
;
1647 CHECK_LIVE_FRAME (frame
);
1649 font_spec
= Ffont_spec (0, NULL
);
1652 CHECK_STRING (family
);
1653 font_parse_family_registry (family
, Qnil
, font_spec
);
1656 list
= font_list_entities (frame
, font_spec
);
1660 /* Sort the font entities. */
1661 for (i
= 0; i
< 4; i
++)
1662 switch (font_sort_order
[i
])
1665 font_props_for_sorting
[i
] = FONT_WIDTH_INDEX
; break;
1666 case XLFD_POINT_SIZE
:
1667 font_props_for_sorting
[i
] = FONT_SIZE_INDEX
; break;
1669 font_props_for_sorting
[i
] = FONT_WEIGHT_INDEX
; break;
1671 font_props_for_sorting
[i
] = FONT_SLANT_INDEX
; break;
1673 font_props_for_sorting
[i
++] = FONT_FAMILY_INDEX
;
1674 font_props_for_sorting
[i
++] = FONT_FOUNDRY_INDEX
;
1675 font_props_for_sorting
[i
++] = FONT_ADSTYLE_INDEX
;
1676 font_props_for_sorting
[i
++] = FONT_REGISTRY_INDEX
;
1678 ndrivers
= XINT (Flength (list
));
1679 SAFE_ALLOCA_LISP (drivers
, ndrivers
);
1680 for (i
= 0; i
< ndrivers
; i
++, list
= XCDR (list
))
1681 drivers
[i
] = XCAR (list
);
1682 vec
= Fvconcat (ndrivers
, drivers
);
1683 nfonts
= ASIZE (vec
);
1685 qsort (XVECTOR (vec
)->contents
, nfonts
, sizeof (Lisp_Object
),
1686 compare_fonts_by_sort_order
);
1689 for (i
= nfonts
- 1; i
>= 0; --i
)
1691 Lisp_Object font
= AREF (vec
, i
);
1692 Lisp_Object v
= Fmake_vector (make_number (8), Qnil
);
1694 Lisp_Object spacing
;
1696 ASET (v
, 0, AREF (font
, FONT_FAMILY_INDEX
));
1697 ASET (v
, 1, FONT_WIDTH_SYMBOLIC (font
));
1698 point
= PIXEL_TO_POINT (XINT (AREF (font
, FONT_SIZE_INDEX
)) * 10,
1699 XFRAME (frame
)->resy
);
1700 ASET (v
, 2, make_number (point
));
1701 ASET (v
, 3, FONT_WEIGHT_SYMBOLIC (font
));
1702 ASET (v
, 4, FONT_SLANT_SYMBOLIC (font
));
1703 spacing
= Ffont_get (font
, QCspacing
);
1704 ASET (v
, 5, (NILP (spacing
) || EQ (spacing
, Qp
)) ? Qnil
: Qt
);
1705 ASET (v
, 6, Ffont_xlfd_name (font
, Qnil
));
1706 ASET (v
, 7, AREF (font
, FONT_REGISTRY_INDEX
));
1708 result
= Fcons (v
, result
);
1715 DEFUN ("x-list-fonts", Fx_list_fonts
, Sx_list_fonts
, 1, 5, 0,
1716 doc
: /* Return a list of the names of available fonts matching PATTERN.
1717 If optional arguments FACE and FRAME are specified, return only fonts
1718 the same size as FACE on FRAME.
1720 PATTERN should be a string containing a font name in the XLFD,
1721 Fontconfig, or GTK format. A font name given in the XLFD format may
1722 contain wildcard characters:
1723 the * character matches any substring, and
1724 the ? character matches any single character.
1725 PATTERN is case-insensitive.
1727 The return value is a list of strings, suitable as arguments to
1730 Fonts Emacs can't use may or may not be excluded
1731 even if they match PATTERN and FACE.
1732 The optional fourth argument MAXIMUM sets a limit on how many
1733 fonts to match. The first MAXIMUM fonts are reported.
1734 The optional fifth argument WIDTH, if specified, is a number of columns
1735 occupied by a character of a font. In that case, return only fonts
1736 the WIDTH times as wide as FACE on FRAME. */)
1737 (Lisp_Object pattern
, Lisp_Object face
, Lisp_Object frame
,
1738 Lisp_Object maximum
, Lisp_Object width
)
1741 int size
, avgwidth
IF_LINT (= 0);
1744 CHECK_STRING (pattern
);
1746 if (! NILP (maximum
))
1747 CHECK_NATNUM (maximum
);
1750 CHECK_NUMBER (width
);
1752 /* We can't simply call check_x_frame because this function may be
1753 called before any frame is created. */
1755 frame
= selected_frame
;
1756 f
= frame_or_selected_frame (frame
, 2);
1757 if (! FRAME_WINDOW_P (f
))
1759 /* Perhaps we have not yet created any frame. */
1765 /* Determine the width standard for comparison with the fonts we find. */
1771 /* This is of limited utility since it works with character
1772 widths. Keep it for compatibility. --gerd. */
1773 int face_id
= lookup_named_face (f
, face
, 0);
1774 struct face
*width_face
= (face_id
< 0
1776 : FACE_FROM_ID (f
, face_id
));
1778 if (width_face
&& width_face
->font
)
1780 size
= width_face
->font
->pixel_size
;
1781 avgwidth
= width_face
->font
->average_width
;
1785 size
= FRAME_FONT (f
)->pixel_size
;
1786 avgwidth
= FRAME_FONT (f
)->average_width
;
1789 avgwidth
*= XINT (width
);
1793 Lisp_Object font_spec
;
1794 Lisp_Object args
[2], tail
;
1796 font_spec
= font_spec_from_name (pattern
);
1797 if (!FONTP (font_spec
))
1798 signal_error ("Invalid font name", pattern
);
1802 Ffont_put (font_spec
, QCsize
, make_number (size
));
1803 Ffont_put (font_spec
, QCavgwidth
, make_number (avgwidth
));
1805 args
[0] = Flist_fonts (font_spec
, frame
, maximum
, font_spec
);
1806 for (tail
= args
[0]; CONSP (tail
); tail
= XCDR (tail
))
1808 Lisp_Object font_entity
;
1810 font_entity
= XCAR (tail
);
1811 if ((NILP (AREF (font_entity
, FONT_SIZE_INDEX
))
1812 || XINT (AREF (font_entity
, FONT_SIZE_INDEX
)) == 0)
1813 && ! NILP (AREF (font_spec
, FONT_SIZE_INDEX
)))
1815 /* This is a scalable font. For backward compatibility,
1816 we set the specified size. */
1817 font_entity
= copy_font_spec (font_entity
);
1818 ASET (font_entity
, FONT_SIZE_INDEX
,
1819 AREF (font_spec
, FONT_SIZE_INDEX
));
1821 XSETCAR (tail
, Ffont_xlfd_name (font_entity
, Qnil
));
1824 /* We don't have to check fontsets. */
1826 args
[1] = list_fontsets (f
, pattern
, size
);
1827 return Fnconc (2, args
);
1831 #endif /* HAVE_WINDOW_SYSTEM */
1834 /***********************************************************************
1836 ***********************************************************************/
1838 /* Access face attributes of face LFACE, a Lisp vector. */
1840 #define LFACE_FAMILY(LFACE) AREF ((LFACE), LFACE_FAMILY_INDEX)
1841 #define LFACE_FOUNDRY(LFACE) AREF ((LFACE), LFACE_FOUNDRY_INDEX)
1842 #define LFACE_HEIGHT(LFACE) AREF ((LFACE), LFACE_HEIGHT_INDEX)
1843 #define LFACE_WEIGHT(LFACE) AREF ((LFACE), LFACE_WEIGHT_INDEX)
1844 #define LFACE_SLANT(LFACE) AREF ((LFACE), LFACE_SLANT_INDEX)
1845 #define LFACE_UNDERLINE(LFACE) AREF ((LFACE), LFACE_UNDERLINE_INDEX)
1846 #define LFACE_INVERSE(LFACE) AREF ((LFACE), LFACE_INVERSE_INDEX)
1847 #define LFACE_FOREGROUND(LFACE) AREF ((LFACE), LFACE_FOREGROUND_INDEX)
1848 #define LFACE_BACKGROUND(LFACE) AREF ((LFACE), LFACE_BACKGROUND_INDEX)
1849 #define LFACE_STIPPLE(LFACE) AREF ((LFACE), LFACE_STIPPLE_INDEX)
1850 #define LFACE_SWIDTH(LFACE) AREF ((LFACE), LFACE_SWIDTH_INDEX)
1851 #define LFACE_OVERLINE(LFACE) AREF ((LFACE), LFACE_OVERLINE_INDEX)
1852 #define LFACE_STRIKE_THROUGH(LFACE) AREF ((LFACE), LFACE_STRIKE_THROUGH_INDEX)
1853 #define LFACE_BOX(LFACE) AREF ((LFACE), LFACE_BOX_INDEX)
1854 #define LFACE_FONT(LFACE) AREF ((LFACE), LFACE_FONT_INDEX)
1855 #define LFACE_INHERIT(LFACE) AREF ((LFACE), LFACE_INHERIT_INDEX)
1856 #define LFACE_FONTSET(LFACE) AREF ((LFACE), LFACE_FONTSET_INDEX)
1858 /* Non-zero if LFACE is a Lisp face. A Lisp face is a vector of size
1859 LFACE_VECTOR_SIZE which has the symbol `face' in slot 0. */
1861 #define LFACEP(LFACE) \
1863 && ASIZE (LFACE) == LFACE_VECTOR_SIZE \
1864 && EQ (AREF (LFACE, 0), Qface))
1869 /* Check consistency of Lisp face attribute vector ATTRS. */
1872 check_lface_attrs (Lisp_Object
*attrs
)
1874 eassert (UNSPECIFIEDP (attrs
[LFACE_FAMILY_INDEX
])
1875 || IGNORE_DEFFACE_P (attrs
[LFACE_FAMILY_INDEX
])
1876 || STRINGP (attrs
[LFACE_FAMILY_INDEX
]));
1877 eassert (UNSPECIFIEDP (attrs
[LFACE_FOUNDRY_INDEX
])
1878 || IGNORE_DEFFACE_P (attrs
[LFACE_FOUNDRY_INDEX
])
1879 || STRINGP (attrs
[LFACE_FOUNDRY_INDEX
]));
1880 eassert (UNSPECIFIEDP (attrs
[LFACE_SWIDTH_INDEX
])
1881 || IGNORE_DEFFACE_P (attrs
[LFACE_SWIDTH_INDEX
])
1882 || SYMBOLP (attrs
[LFACE_SWIDTH_INDEX
]));
1883 eassert (UNSPECIFIEDP (attrs
[LFACE_HEIGHT_INDEX
])
1884 || IGNORE_DEFFACE_P (attrs
[LFACE_HEIGHT_INDEX
])
1885 || INTEGERP (attrs
[LFACE_HEIGHT_INDEX
])
1886 || FLOATP (attrs
[LFACE_HEIGHT_INDEX
])
1887 || FUNCTIONP (attrs
[LFACE_HEIGHT_INDEX
]));
1888 eassert (UNSPECIFIEDP (attrs
[LFACE_WEIGHT_INDEX
])
1889 || IGNORE_DEFFACE_P (attrs
[LFACE_WEIGHT_INDEX
])
1890 || SYMBOLP (attrs
[LFACE_WEIGHT_INDEX
]));
1891 eassert (UNSPECIFIEDP (attrs
[LFACE_SLANT_INDEX
])
1892 || IGNORE_DEFFACE_P (attrs
[LFACE_SLANT_INDEX
])
1893 || SYMBOLP (attrs
[LFACE_SLANT_INDEX
]));
1894 eassert (UNSPECIFIEDP (attrs
[LFACE_UNDERLINE_INDEX
])
1895 || IGNORE_DEFFACE_P (attrs
[LFACE_UNDERLINE_INDEX
])
1896 || SYMBOLP (attrs
[LFACE_UNDERLINE_INDEX
])
1897 || STRINGP (attrs
[LFACE_UNDERLINE_INDEX
])
1898 || CONSP (attrs
[LFACE_UNDERLINE_INDEX
]));
1899 eassert (UNSPECIFIEDP (attrs
[LFACE_OVERLINE_INDEX
])
1900 || IGNORE_DEFFACE_P (attrs
[LFACE_OVERLINE_INDEX
])
1901 || SYMBOLP (attrs
[LFACE_OVERLINE_INDEX
])
1902 || STRINGP (attrs
[LFACE_OVERLINE_INDEX
]));
1903 eassert (UNSPECIFIEDP (attrs
[LFACE_STRIKE_THROUGH_INDEX
])
1904 || IGNORE_DEFFACE_P (attrs
[LFACE_STRIKE_THROUGH_INDEX
])
1905 || SYMBOLP (attrs
[LFACE_STRIKE_THROUGH_INDEX
])
1906 || STRINGP (attrs
[LFACE_STRIKE_THROUGH_INDEX
]));
1907 eassert (UNSPECIFIEDP (attrs
[LFACE_BOX_INDEX
])
1908 || IGNORE_DEFFACE_P (attrs
[LFACE_BOX_INDEX
])
1909 || SYMBOLP (attrs
[LFACE_BOX_INDEX
])
1910 || STRINGP (attrs
[LFACE_BOX_INDEX
])
1911 || INTEGERP (attrs
[LFACE_BOX_INDEX
])
1912 || CONSP (attrs
[LFACE_BOX_INDEX
]));
1913 eassert (UNSPECIFIEDP (attrs
[LFACE_INVERSE_INDEX
])
1914 || IGNORE_DEFFACE_P (attrs
[LFACE_INVERSE_INDEX
])
1915 || SYMBOLP (attrs
[LFACE_INVERSE_INDEX
]));
1916 eassert (UNSPECIFIEDP (attrs
[LFACE_FOREGROUND_INDEX
])
1917 || IGNORE_DEFFACE_P (attrs
[LFACE_FOREGROUND_INDEX
])
1918 || STRINGP (attrs
[LFACE_FOREGROUND_INDEX
]));
1919 eassert (UNSPECIFIEDP (attrs
[LFACE_BACKGROUND_INDEX
])
1920 || IGNORE_DEFFACE_P (attrs
[LFACE_BACKGROUND_INDEX
])
1921 || STRINGP (attrs
[LFACE_BACKGROUND_INDEX
]));
1922 eassert (UNSPECIFIEDP (attrs
[LFACE_INHERIT_INDEX
])
1923 || IGNORE_DEFFACE_P (attrs
[LFACE_INHERIT_INDEX
])
1924 || NILP (attrs
[LFACE_INHERIT_INDEX
])
1925 || SYMBOLP (attrs
[LFACE_INHERIT_INDEX
])
1926 || CONSP (attrs
[LFACE_INHERIT_INDEX
]));
1927 #ifdef HAVE_WINDOW_SYSTEM
1928 eassert (UNSPECIFIEDP (attrs
[LFACE_STIPPLE_INDEX
])
1929 || IGNORE_DEFFACE_P (attrs
[LFACE_STIPPLE_INDEX
])
1930 || SYMBOLP (attrs
[LFACE_STIPPLE_INDEX
])
1931 || !NILP (Fbitmap_spec_p (attrs
[LFACE_STIPPLE_INDEX
])));
1932 eassert (UNSPECIFIEDP (attrs
[LFACE_FONT_INDEX
])
1933 || IGNORE_DEFFACE_P (attrs
[LFACE_FONT_INDEX
])
1934 || FONTP (attrs
[LFACE_FONT_INDEX
]));
1935 eassert (UNSPECIFIEDP (attrs
[LFACE_FONTSET_INDEX
])
1936 || STRINGP (attrs
[LFACE_FONTSET_INDEX
])
1937 || NILP (attrs
[LFACE_FONTSET_INDEX
]));
1942 /* Check consistency of attributes of Lisp face LFACE (a Lisp vector). */
1945 check_lface (Lisp_Object lface
)
1949 eassert (LFACEP (lface
));
1950 check_lface_attrs (XVECTOR (lface
)->contents
);
1954 #else /* not GLYPH_DEBUG */
1956 #define check_lface_attrs(attrs) (void) 0
1957 #define check_lface(lface) (void) 0
1959 #endif /* GLYPH_DEBUG */
1963 /* Face-merge cycle checking. */
1965 enum named_merge_point_kind
1967 NAMED_MERGE_POINT_NORMAL
,
1968 NAMED_MERGE_POINT_REMAP
1971 /* A `named merge point' is simply a point during face-merging where we
1972 look up a face by name. We keep a stack of which named lookups we're
1973 currently processing so that we can easily detect cycles, using a
1974 linked- list of struct named_merge_point structures, typically
1975 allocated on the stack frame of the named lookup functions which are
1976 active (so no consing is required). */
1977 struct named_merge_point
1979 Lisp_Object face_name
;
1980 enum named_merge_point_kind named_merge_point_kind
;
1981 struct named_merge_point
*prev
;
1985 /* If a face merging cycle is detected for FACE_NAME, return 0,
1986 otherwise add NEW_NAMED_MERGE_POINT, which is initialized using
1987 FACE_NAME and NAMED_MERGE_POINT_KIND, as the head of the linked list
1988 pointed to by NAMED_MERGE_POINTS, and return 1. */
1991 push_named_merge_point (struct named_merge_point
*new_named_merge_point
,
1992 Lisp_Object face_name
,
1993 enum named_merge_point_kind named_merge_point_kind
,
1994 struct named_merge_point
**named_merge_points
)
1996 struct named_merge_point
*prev
;
1998 for (prev
= *named_merge_points
; prev
; prev
= prev
->prev
)
1999 if (EQ (face_name
, prev
->face_name
))
2001 if (prev
->named_merge_point_kind
== named_merge_point_kind
)
2002 /* A cycle, so fail. */
2004 else if (prev
->named_merge_point_kind
== NAMED_MERGE_POINT_REMAP
)
2005 /* A remap `hides ' any previous normal merge points
2006 (because the remap means that it's actually different face),
2007 so as we know the current merge point must be normal, we
2008 can just assume it's OK. */
2012 new_named_merge_point
->face_name
= face_name
;
2013 new_named_merge_point
->named_merge_point_kind
= named_merge_point_kind
;
2014 new_named_merge_point
->prev
= *named_merge_points
;
2016 *named_merge_points
= new_named_merge_point
;
2022 /* Resolve face name FACE_NAME. If FACE_NAME is a string, intern it
2023 to make it a symbol. If FACE_NAME is an alias for another face,
2024 return that face's name.
2026 Return default face in case of errors. */
2029 resolve_face_name (Lisp_Object face_name
, int signal_p
)
2031 Lisp_Object orig_face
;
2032 Lisp_Object tortoise
, hare
;
2034 if (STRINGP (face_name
))
2035 face_name
= intern (SSDATA (face_name
));
2037 if (NILP (face_name
) || !SYMBOLP (face_name
))
2040 orig_face
= face_name
;
2041 tortoise
= hare
= face_name
;
2046 hare
= Fget (hare
, Qface_alias
);
2047 if (NILP (hare
) || !SYMBOLP (hare
))
2051 hare
= Fget (hare
, Qface_alias
);
2052 if (NILP (hare
) || !SYMBOLP (hare
))
2055 tortoise
= Fget (tortoise
, Qface_alias
);
2056 if (EQ (hare
, tortoise
))
2059 xsignal1 (Qcircular_list
, orig_face
);
2068 /* Return the face definition of FACE_NAME on frame F. F null means
2069 return the definition for new frames. FACE_NAME may be a string or
2070 a symbol (apparently Emacs 20.2 allowed strings as face names in
2071 face text properties; Ediff uses that). If SIGNAL_P is non-zero,
2072 signal an error if FACE_NAME is not a valid face name. If SIGNAL_P
2073 is zero, value is nil if FACE_NAME is not a valid face name. */
2074 static inline Lisp_Object
2075 lface_from_face_name_no_resolve (struct frame
*f
, Lisp_Object face_name
,
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
,
2119 Lisp_Object
*attrs
, int signal_p
)
2123 lface
= lface_from_face_name_no_resolve (f
, face_name
, signal_p
);
2126 memcpy (attrs
, XVECTOR (lface
)->contents
,
2127 LFACE_VECTOR_SIZE
* sizeof *attrs
);
2129 return !NILP (lface
);
2132 /* Get face attributes of face FACE_NAME from frame-local faces on frame
2133 F. Store the resulting attributes in ATTRS which must point to a
2134 vector of Lisp_Objects of size LFACE_VECTOR_SIZE. If FACE_NAME is an
2135 alias for another face, use that face's definition. If SIGNAL_P is
2136 non-zero, signal an error if FACE_NAME does not name a face.
2137 Otherwise, value is zero if FACE_NAME is not a face. */
2140 get_lface_attributes (struct frame
*f
, Lisp_Object face_name
,
2141 Lisp_Object
*attrs
, int signal_p
,
2142 struct named_merge_point
*named_merge_points
)
2144 Lisp_Object face_remapping
;
2146 face_name
= resolve_face_name (face_name
, signal_p
);
2148 /* See if SYMBOL has been remapped to some other face (usually this
2149 is done buffer-locally). */
2150 face_remapping
= assq_no_quit (face_name
, Vface_remapping_alist
);
2151 if (CONSP (face_remapping
))
2153 struct named_merge_point named_merge_point
;
2155 if (push_named_merge_point (&named_merge_point
,
2156 face_name
, NAMED_MERGE_POINT_REMAP
,
2157 &named_merge_points
))
2161 for (i
= 1; i
< LFACE_VECTOR_SIZE
; ++i
)
2162 attrs
[i
] = Qunspecified
;
2164 return merge_face_ref (f
, XCDR (face_remapping
), attrs
,
2165 signal_p
, named_merge_points
);
2169 /* Default case, no remapping. */
2170 return get_lface_attributes_no_remap (f
, face_name
, attrs
, signal_p
);
2174 /* Non-zero if all attributes in face attribute vector ATTRS are
2175 specified, i.e. are non-nil. */
2178 lface_fully_specified_p (Lisp_Object
*attrs
)
2182 for (i
= 1; i
< LFACE_VECTOR_SIZE
; ++i
)
2183 if (i
!= LFACE_FONT_INDEX
&& i
!= LFACE_INHERIT_INDEX
)
2184 if ((UNSPECIFIEDP (attrs
[i
]) || IGNORE_DEFFACE_P (attrs
[i
])))
2187 return i
== LFACE_VECTOR_SIZE
;
2190 #ifdef HAVE_WINDOW_SYSTEM
2192 /* Set font-related attributes of Lisp face LFACE from FONT-OBJECT.
2193 If FORCE_P is zero, set only unspecified attributes of LFACE. The
2194 exception is `font' attribute. It is set to FONT_OBJECT regardless
2198 set_lface_from_font (struct frame
*f
, Lisp_Object lface
,
2199 Lisp_Object font_object
, int force_p
)
2202 struct font
*font
= XFONT_OBJECT (font_object
);
2204 /* Set attributes only if unspecified, otherwise face defaults for
2205 new frames would never take effect. If the font doesn't have a
2206 specific property, set a normal value for that. */
2208 if (force_p
|| UNSPECIFIEDP (LFACE_FAMILY (lface
)))
2210 Lisp_Object family
= AREF (font_object
, FONT_FAMILY_INDEX
);
2212 LFACE_FAMILY (lface
) = SYMBOL_NAME (family
);
2215 if (force_p
|| UNSPECIFIEDP (LFACE_FOUNDRY (lface
)))
2217 Lisp_Object foundry
= AREF (font_object
, FONT_FOUNDRY_INDEX
);
2219 LFACE_FOUNDRY (lface
) = SYMBOL_NAME (foundry
);
2222 if (force_p
|| UNSPECIFIEDP (LFACE_HEIGHT (lface
)))
2224 int pt
= PIXEL_TO_POINT (font
->pixel_size
* 10, f
->resy
);
2227 LFACE_HEIGHT (lface
) = make_number (pt
);
2230 if (force_p
|| UNSPECIFIEDP (LFACE_WEIGHT (lface
)))
2232 val
= FONT_WEIGHT_FOR_FACE (font_object
);
2233 LFACE_WEIGHT (lface
) = ! NILP (val
) ? val
:Qnormal
;
2235 if (force_p
|| UNSPECIFIEDP (LFACE_SLANT (lface
)))
2237 val
= FONT_SLANT_FOR_FACE (font_object
);
2238 LFACE_SLANT (lface
) = ! NILP (val
) ? val
: Qnormal
;
2240 if (force_p
|| UNSPECIFIEDP (LFACE_SWIDTH (lface
)))
2242 val
= FONT_WIDTH_FOR_FACE (font_object
);
2243 LFACE_SWIDTH (lface
) = ! NILP (val
) ? val
: Qnormal
;
2246 LFACE_FONT (lface
) = font_object
;
2250 #endif /* HAVE_WINDOW_SYSTEM */
2253 /* Merges the face height FROM with the face height TO, and returns the
2254 merged height. If FROM is an invalid height, then INVALID is
2255 returned instead. FROM and TO may be either absolute face heights or
2256 `relative' heights; the returned value is always an absolute height
2257 unless both FROM and TO are relative. */
2260 merge_face_heights (Lisp_Object from
, Lisp_Object to
, Lisp_Object invalid
)
2262 Lisp_Object result
= invalid
;
2264 if (INTEGERP (from
))
2265 /* FROM is absolute, just use it as is. */
2267 else if (FLOATP (from
))
2268 /* FROM is a scale, use it to adjust TO. */
2271 /* relative X absolute => absolute */
2272 result
= make_number (XFLOAT_DATA (from
) * XINT (to
));
2273 else if (FLOATP (to
))
2274 /* relative X relative => relative */
2275 result
= make_float (XFLOAT_DATA (from
) * XFLOAT_DATA (to
));
2276 else if (UNSPECIFIEDP (to
))
2279 else if (FUNCTIONP (from
))
2280 /* FROM is a function, which use to adjust TO. */
2282 /* Call function with current height as argument.
2283 From is the new height. */
2284 Lisp_Object args
[2];
2288 result
= safe_call (2, args
);
2290 /* Ensure that if TO was absolute, so is the result. */
2291 if (INTEGERP (to
) && !INTEGERP (result
))
2299 /* Merge two Lisp face attribute vectors on frame F, FROM and TO, and
2300 store the resulting attributes in TO, which must be already be
2301 completely specified and contain only absolute attributes. Every
2302 specified attribute of FROM overrides the corresponding attribute of
2303 TO; relative attributes in FROM are merged with the absolute value in
2304 TO and replace it. NAMED_MERGE_POINTS is used internally to detect
2305 loops in face inheritance/remapping; it should be 0 when called from
2309 merge_face_vectors (struct frame
*f
, Lisp_Object
*from
, Lisp_Object
*to
,
2310 struct named_merge_point
*named_merge_points
)
2314 /* If FROM inherits from some other faces, merge their attributes into
2315 TO before merging FROM's direct attributes. Note that an :inherit
2316 attribute of `unspecified' is the same as one of nil; we never
2317 merge :inherit attributes, so nil is more correct, but lots of
2318 other code uses `unspecified' as a generic value for face attributes. */
2319 if (!UNSPECIFIEDP (from
[LFACE_INHERIT_INDEX
])
2320 && !NILP (from
[LFACE_INHERIT_INDEX
]))
2321 merge_face_ref (f
, from
[LFACE_INHERIT_INDEX
], to
, 0, named_merge_points
);
2323 i
= LFACE_FONT_INDEX
;
2324 if (!UNSPECIFIEDP (from
[i
]))
2326 if (!UNSPECIFIEDP (to
[i
]))
2327 to
[i
] = merge_font_spec (from
[i
], to
[i
]);
2329 to
[i
] = copy_font_spec (from
[i
]);
2330 if (! NILP (AREF (to
[i
], FONT_FOUNDRY_INDEX
)))
2331 to
[LFACE_FOUNDRY_INDEX
] = SYMBOL_NAME (AREF (to
[i
], FONT_FOUNDRY_INDEX
));
2332 if (! NILP (AREF (to
[i
], FONT_FAMILY_INDEX
)))
2333 to
[LFACE_FAMILY_INDEX
] = SYMBOL_NAME (AREF (to
[i
], FONT_FAMILY_INDEX
));
2334 if (! NILP (AREF (to
[i
], FONT_WEIGHT_INDEX
)))
2335 to
[LFACE_WEIGHT_INDEX
] = FONT_WEIGHT_FOR_FACE (to
[i
]);
2336 if (! NILP (AREF (to
[i
], FONT_SLANT_INDEX
)))
2337 to
[LFACE_SLANT_INDEX
] = FONT_SLANT_FOR_FACE (to
[i
]);
2338 if (! NILP (AREF (to
[i
], FONT_WIDTH_INDEX
)))
2339 to
[LFACE_SWIDTH_INDEX
] = FONT_WIDTH_FOR_FACE (to
[i
]);
2340 ASET (to
[i
], FONT_SIZE_INDEX
, Qnil
);
2343 for (i
= 1; i
< LFACE_VECTOR_SIZE
; ++i
)
2344 if (!UNSPECIFIEDP (from
[i
]))
2346 if (i
== LFACE_HEIGHT_INDEX
&& !INTEGERP (from
[i
]))
2348 to
[i
] = merge_face_heights (from
[i
], to
[i
], to
[i
]);
2349 font_clear_prop (to
, FONT_SIZE_INDEX
);
2351 else if (i
!= LFACE_FONT_INDEX
2352 && ! EQ (to
[i
], from
[i
]))
2355 if (i
>= LFACE_FAMILY_INDEX
&& i
<=LFACE_SLANT_INDEX
)
2356 font_clear_prop (to
,
2357 (i
== LFACE_FAMILY_INDEX
? FONT_FAMILY_INDEX
2358 : i
== LFACE_FOUNDRY_INDEX
? FONT_FOUNDRY_INDEX
2359 : i
== LFACE_SWIDTH_INDEX
? FONT_WIDTH_INDEX
2360 : i
== LFACE_HEIGHT_INDEX
? FONT_SIZE_INDEX
2361 : i
== LFACE_WEIGHT_INDEX
? FONT_WEIGHT_INDEX
2362 : FONT_SLANT_INDEX
));
2366 /* TO is always an absolute face, which should inherit from nothing.
2367 We blindly copy the :inherit attribute above and fix it up here. */
2368 to
[LFACE_INHERIT_INDEX
] = Qnil
;
2371 /* Merge the named face FACE_NAME on frame F, into the vector of face
2372 attributes TO. NAMED_MERGE_POINTS is used to detect loops in face
2373 inheritance. Returns true if FACE_NAME is a valid face name and
2374 merging succeeded. */
2377 merge_named_face (struct frame
*f
, Lisp_Object face_name
, Lisp_Object
*to
,
2378 struct named_merge_point
*named_merge_points
)
2380 struct named_merge_point named_merge_point
;
2382 if (push_named_merge_point (&named_merge_point
,
2383 face_name
, NAMED_MERGE_POINT_NORMAL
,
2384 &named_merge_points
))
2386 struct gcpro gcpro1
;
2387 Lisp_Object from
[LFACE_VECTOR_SIZE
];
2388 int ok
= get_lface_attributes (f
, face_name
, from
, 0, named_merge_points
);
2392 GCPRO1 (named_merge_point
.face_name
);
2393 merge_face_vectors (f
, from
, to
, named_merge_points
);
2404 /* Merge face attributes from the lisp `face reference' FACE_REF on
2405 frame F into the face attribute vector TO. If ERR_MSGS is non-zero,
2406 problems with FACE_REF cause an error message to be shown. Return
2407 non-zero if no errors occurred (regardless of the value of ERR_MSGS).
2408 NAMED_MERGE_POINTS is used to detect loops in face inheritance or
2409 list structure; it may be 0 for most callers.
2411 FACE_REF may be a single face specification or a list of such
2412 specifications. Each face specification can be:
2414 1. A symbol or string naming a Lisp face.
2416 2. A property list of the form (KEYWORD VALUE ...) where each
2417 KEYWORD is a face attribute name, and value is an appropriate value
2420 3. Conses or the form (FOREGROUND-COLOR . COLOR) or
2421 (BACKGROUND-COLOR . COLOR) where COLOR is a color name. This is
2422 for compatibility with 20.2.
2424 Face specifications earlier in lists take precedence over later
2428 merge_face_ref (struct frame
*f
, Lisp_Object face_ref
, Lisp_Object
*to
,
2429 int err_msgs
, struct named_merge_point
*named_merge_points
)
2431 int ok
= 1; /* Succeed without an error? */
2433 if (CONSP (face_ref
))
2435 Lisp_Object first
= XCAR (face_ref
);
2437 if (EQ (first
, Qforeground_color
)
2438 || EQ (first
, Qbackground_color
))
2440 /* One of (FOREGROUND-COLOR . COLOR) or (BACKGROUND-COLOR
2441 . COLOR). COLOR must be a string. */
2442 Lisp_Object color_name
= XCDR (face_ref
);
2443 Lisp_Object color
= first
;
2445 if (STRINGP (color_name
))
2447 if (EQ (color
, Qforeground_color
))
2448 to
[LFACE_FOREGROUND_INDEX
] = color_name
;
2450 to
[LFACE_BACKGROUND_INDEX
] = color_name
;
2455 add_to_log ("Invalid face color", color_name
, Qnil
);
2459 else if (SYMBOLP (first
)
2460 && *SDATA (SYMBOL_NAME (first
)) == ':')
2462 /* Assume this is the property list form. */
2463 while (CONSP (face_ref
) && CONSP (XCDR (face_ref
)))
2465 Lisp_Object keyword
= XCAR (face_ref
);
2466 Lisp_Object value
= XCAR (XCDR (face_ref
));
2469 /* Specifying `unspecified' is a no-op. */
2470 if (EQ (value
, Qunspecified
))
2472 else if (EQ (keyword
, QCfamily
))
2474 if (STRINGP (value
))
2476 to
[LFACE_FAMILY_INDEX
] = value
;
2477 font_clear_prop (to
, FONT_FAMILY_INDEX
);
2482 else if (EQ (keyword
, QCfoundry
))
2484 if (STRINGP (value
))
2486 to
[LFACE_FOUNDRY_INDEX
] = value
;
2487 font_clear_prop (to
, FONT_FOUNDRY_INDEX
);
2492 else if (EQ (keyword
, QCheight
))
2494 Lisp_Object new_height
=
2495 merge_face_heights (value
, to
[LFACE_HEIGHT_INDEX
], Qnil
);
2497 if (! NILP (new_height
))
2499 to
[LFACE_HEIGHT_INDEX
] = new_height
;
2500 font_clear_prop (to
, FONT_SIZE_INDEX
);
2505 else if (EQ (keyword
, QCweight
))
2507 if (SYMBOLP (value
) && FONT_WEIGHT_NAME_NUMERIC (value
) >= 0)
2509 to
[LFACE_WEIGHT_INDEX
] = value
;
2510 font_clear_prop (to
, FONT_WEIGHT_INDEX
);
2515 else if (EQ (keyword
, QCslant
))
2517 if (SYMBOLP (value
) && FONT_SLANT_NAME_NUMERIC (value
) >= 0)
2519 to
[LFACE_SLANT_INDEX
] = value
;
2520 font_clear_prop (to
, FONT_SLANT_INDEX
);
2525 else if (EQ (keyword
, QCunderline
))
2531 to
[LFACE_UNDERLINE_INDEX
] = value
;
2535 else if (EQ (keyword
, QCoverline
))
2540 to
[LFACE_OVERLINE_INDEX
] = value
;
2544 else if (EQ (keyword
, QCstrike_through
))
2549 to
[LFACE_STRIKE_THROUGH_INDEX
] = value
;
2553 else if (EQ (keyword
, QCbox
))
2556 value
= make_number (1);
2557 if (INTEGERP (value
)
2561 to
[LFACE_BOX_INDEX
] = value
;
2565 else if (EQ (keyword
, QCinverse_video
)
2566 || EQ (keyword
, QCreverse_video
))
2568 if (EQ (value
, Qt
) || NILP (value
))
2569 to
[LFACE_INVERSE_INDEX
] = value
;
2573 else if (EQ (keyword
, QCforeground
))
2575 if (STRINGP (value
))
2576 to
[LFACE_FOREGROUND_INDEX
] = value
;
2580 else if (EQ (keyword
, QCbackground
))
2582 if (STRINGP (value
))
2583 to
[LFACE_BACKGROUND_INDEX
] = value
;
2587 else if (EQ (keyword
, QCstipple
))
2589 #if defined (HAVE_X_WINDOWS) || defined (HAVE_NS)
2590 Lisp_Object pixmap_p
= Fbitmap_spec_p (value
);
2591 if (!NILP (pixmap_p
))
2592 to
[LFACE_STIPPLE_INDEX
] = value
;
2597 else if (EQ (keyword
, QCwidth
))
2599 if (SYMBOLP (value
) && FONT_WIDTH_NAME_NUMERIC (value
) >= 0)
2601 to
[LFACE_SWIDTH_INDEX
] = value
;
2602 font_clear_prop (to
, FONT_WIDTH_INDEX
);
2607 else if (EQ (keyword
, QCinherit
))
2609 /* This is not really very useful; it's just like a
2610 normal face reference. */
2611 if (! merge_face_ref (f
, value
, to
,
2612 err_msgs
, named_merge_points
))
2620 add_to_log ("Invalid face attribute %S %S", keyword
, value
);
2624 face_ref
= XCDR (XCDR (face_ref
));
2629 /* This is a list of face refs. Those at the beginning of the
2630 list take precedence over what follows, so we have to merge
2631 from the end backwards. */
2632 Lisp_Object next
= XCDR (face_ref
);
2635 ok
= merge_face_ref (f
, next
, to
, err_msgs
, named_merge_points
);
2637 if (! merge_face_ref (f
, first
, to
, err_msgs
, named_merge_points
))
2643 /* FACE_REF ought to be a face name. */
2644 ok
= merge_named_face (f
, face_ref
, to
, named_merge_points
);
2645 if (!ok
&& err_msgs
)
2646 add_to_log ("Invalid face reference: %s", face_ref
, Qnil
);
2653 DEFUN ("internal-make-lisp-face", Finternal_make_lisp_face
,
2654 Sinternal_make_lisp_face
, 1, 2, 0,
2655 doc
: /* Make FACE, a symbol, a Lisp face with all attributes nil.
2656 If FACE was not known as a face before, create a new one.
2657 If optional argument FRAME is specified, make a frame-local face
2658 for that frame. Otherwise operate on the global face definition.
2659 Value is a vector of face attributes. */)
2660 (Lisp_Object face
, Lisp_Object frame
)
2662 Lisp_Object global_lface
, lface
;
2666 CHECK_SYMBOL (face
);
2667 global_lface
= lface_from_face_name (NULL
, face
, 0);
2671 CHECK_LIVE_FRAME (frame
);
2673 lface
= lface_from_face_name (f
, face
, 0);
2676 f
= NULL
, lface
= Qnil
;
2678 /* Add a global definition if there is none. */
2679 if (NILP (global_lface
))
2681 global_lface
= Fmake_vector (make_number (LFACE_VECTOR_SIZE
),
2683 ASET (global_lface
, 0, Qface
);
2684 Vface_new_frame_defaults
= Fcons (Fcons (face
, global_lface
),
2685 Vface_new_frame_defaults
);
2687 /* Assign the new Lisp face a unique ID. The mapping from Lisp
2688 face id to Lisp face is given by the vector lface_id_to_name.
2689 The mapping from Lisp face to Lisp face id is given by the
2690 property `face' of the Lisp face name. */
2691 if (next_lface_id
== lface_id_to_name_size
)
2693 xpalloc (lface_id_to_name
, &lface_id_to_name_size
, 1, MAX_FACE_ID
,
2694 sizeof *lface_id_to_name
);
2696 lface_id_to_name
[next_lface_id
] = face
;
2697 Fput (face
, Qface
, make_number (next_lface_id
));
2701 for (i
= 1; i
< LFACE_VECTOR_SIZE
; ++i
)
2702 ASET (global_lface
, i
, Qunspecified
);
2704 /* Add a frame-local definition. */
2709 lface
= Fmake_vector (make_number (LFACE_VECTOR_SIZE
),
2711 ASET (lface
, 0, Qface
);
2712 f
->face_alist
= Fcons (Fcons (face
, lface
), f
->face_alist
);
2715 for (i
= 1; i
< LFACE_VECTOR_SIZE
; ++i
)
2716 ASET (lface
, i
, Qunspecified
);
2719 lface
= global_lface
;
2721 /* Changing a named face means that all realized faces depending on
2722 that face are invalid. Since we cannot tell which realized faces
2723 depend on the face, make sure they are all removed. This is done
2724 by incrementing face_change_count. The next call to
2725 init_iterator will then free realized faces. */
2726 if (NILP (Fget (face
, Qface_no_inherit
)))
2728 ++face_change_count
;
2729 ++windows_or_buffers_changed
;
2732 eassert (LFACEP (lface
));
2733 check_lface (lface
);
2738 DEFUN ("internal-lisp-face-p", Finternal_lisp_face_p
,
2739 Sinternal_lisp_face_p
, 1, 2, 0,
2740 doc
: /* Return non-nil if FACE names a face.
2741 FACE should be a symbol or string.
2742 If optional second argument FRAME is non-nil, check for the
2743 existence of a frame-local face with name FACE on that frame.
2744 Otherwise check for the existence of a global face. */)
2745 (Lisp_Object face
, Lisp_Object frame
)
2749 face
= resolve_face_name (face
, 1);
2753 CHECK_LIVE_FRAME (frame
);
2754 lface
= lface_from_face_name (XFRAME (frame
), face
, 0);
2757 lface
= lface_from_face_name (NULL
, face
, 0);
2763 DEFUN ("internal-copy-lisp-face", Finternal_copy_lisp_face
,
2764 Sinternal_copy_lisp_face
, 4, 4, 0,
2765 doc
: /* Copy face FROM to TO.
2766 If FRAME is t, copy the global face definition of FROM.
2767 Otherwise, copy the frame-local definition of FROM on FRAME.
2768 If NEW-FRAME is a frame, copy that data into the frame-local
2769 definition of TO on NEW-FRAME. If NEW-FRAME is nil,
2770 FRAME controls where the data is copied to.
2772 The value is TO. */)
2773 (Lisp_Object from
, Lisp_Object to
, Lisp_Object frame
, Lisp_Object new_frame
)
2775 Lisp_Object lface
, copy
;
2777 CHECK_SYMBOL (from
);
2782 /* Copy global definition of FROM. We don't make copies of
2783 strings etc. because 20.2 didn't do it either. */
2784 lface
= lface_from_face_name (NULL
, from
, 1);
2785 copy
= Finternal_make_lisp_face (to
, Qnil
);
2789 /* Copy frame-local definition of FROM. */
2790 if (NILP (new_frame
))
2792 CHECK_LIVE_FRAME (frame
);
2793 CHECK_LIVE_FRAME (new_frame
);
2794 lface
= lface_from_face_name (XFRAME (frame
), from
, 1);
2795 copy
= Finternal_make_lisp_face (to
, new_frame
);
2798 memcpy (XVECTOR (copy
)->contents
, XVECTOR (lface
)->contents
,
2799 LFACE_VECTOR_SIZE
* sizeof (Lisp_Object
));
2801 /* Changing a named face means that all realized faces depending on
2802 that face are invalid. Since we cannot tell which realized faces
2803 depend on the face, make sure they are all removed. This is done
2804 by incrementing face_change_count. The next call to
2805 init_iterator will then free realized faces. */
2806 if (NILP (Fget (to
, Qface_no_inherit
)))
2808 ++face_change_count
;
2809 ++windows_or_buffers_changed
;
2816 DEFUN ("internal-set-lisp-face-attribute", Finternal_set_lisp_face_attribute
,
2817 Sinternal_set_lisp_face_attribute
, 3, 4, 0,
2818 doc
: /* Set attribute ATTR of FACE to VALUE.
2819 FRAME being a frame means change the face on that frame.
2820 FRAME nil means change the face of the selected frame.
2821 FRAME t means change the default for new frames.
2822 FRAME 0 means change the face on all frames, and change the default
2824 (Lisp_Object face
, Lisp_Object attr
, Lisp_Object value
, Lisp_Object frame
)
2827 Lisp_Object old_value
= Qnil
;
2828 /* Set one of enum font_property_index (> 0) if ATTR is one of
2829 font-related attributes other than QCfont and QCfontset. */
2830 enum font_property_index prop_index
= 0;
2832 CHECK_SYMBOL (face
);
2833 CHECK_SYMBOL (attr
);
2835 face
= resolve_face_name (face
, 1);
2837 /* If FRAME is 0, change face on all frames, and change the
2838 default for new frames. */
2839 if (INTEGERP (frame
) && XINT (frame
) == 0)
2842 Finternal_set_lisp_face_attribute (face
, attr
, value
, Qt
);
2843 FOR_EACH_FRAME (tail
, frame
)
2844 Finternal_set_lisp_face_attribute (face
, attr
, value
, frame
);
2848 /* Set lface to the Lisp attribute vector of FACE. */
2851 lface
= lface_from_face_name (NULL
, face
, 1);
2853 /* When updating face-new-frame-defaults, we put :ignore-defface
2854 where the caller wants `unspecified'. This forces the frame
2855 defaults to ignore the defface value. Otherwise, the defface
2856 will take effect, which is generally not what is intended.
2857 The value of that attribute will be inherited from some other
2858 face during face merging. See internal_merge_in_global_face. */
2859 if (UNSPECIFIEDP (value
))
2860 value
= QCignore_defface
;
2865 frame
= selected_frame
;
2867 CHECK_LIVE_FRAME (frame
);
2868 lface
= lface_from_face_name (XFRAME (frame
), face
, 0);
2870 /* If a frame-local face doesn't exist yet, create one. */
2872 lface
= Finternal_make_lisp_face (face
, frame
);
2875 if (EQ (attr
, QCfamily
))
2877 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
2879 CHECK_STRING (value
);
2880 if (SCHARS (value
) == 0)
2881 signal_error ("Invalid face family", value
);
2883 old_value
= LFACE_FAMILY (lface
);
2884 LFACE_FAMILY (lface
) = value
;
2885 prop_index
= FONT_FAMILY_INDEX
;
2887 else if (EQ (attr
, QCfoundry
))
2889 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
2891 CHECK_STRING (value
);
2892 if (SCHARS (value
) == 0)
2893 signal_error ("Invalid face foundry", value
);
2895 old_value
= LFACE_FOUNDRY (lface
);
2896 LFACE_FOUNDRY (lface
) = value
;
2897 prop_index
= FONT_FOUNDRY_INDEX
;
2899 else if (EQ (attr
, QCheight
))
2901 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
2903 if (EQ (face
, Qdefault
))
2905 /* The default face must have an absolute size. */
2906 if (!INTEGERP (value
) || XINT (value
) <= 0)
2907 signal_error ("Default face height not absolute and positive",
2912 /* For non-default faces, do a test merge with a random
2913 height to see if VALUE's ok. */
2914 Lisp_Object test
= merge_face_heights (value
,
2917 if (!INTEGERP (test
) || XINT (test
) <= 0)
2918 signal_error ("Face height does not produce a positive integer",
2923 old_value
= LFACE_HEIGHT (lface
);
2924 LFACE_HEIGHT (lface
) = value
;
2925 prop_index
= FONT_SIZE_INDEX
;
2927 else if (EQ (attr
, QCweight
))
2929 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
2931 CHECK_SYMBOL (value
);
2932 if (FONT_WEIGHT_NAME_NUMERIC (value
) < 0)
2933 signal_error ("Invalid face weight", value
);
2935 old_value
= LFACE_WEIGHT (lface
);
2936 LFACE_WEIGHT (lface
) = value
;
2937 prop_index
= FONT_WEIGHT_INDEX
;
2939 else if (EQ (attr
, QCslant
))
2941 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
2943 CHECK_SYMBOL (value
);
2944 if (FONT_SLANT_NAME_NUMERIC (value
) < 0)
2945 signal_error ("Invalid face slant", value
);
2947 old_value
= LFACE_SLANT (lface
);
2948 LFACE_SLANT (lface
) = value
;
2949 prop_index
= FONT_SLANT_INDEX
;
2951 else if (EQ (attr
, QCunderline
))
2955 if (UNSPECIFIEDP (value
) || IGNORE_DEFFACE_P (value
))
2957 else if (NILP (value
) || EQ (value
, Qt
))
2959 else if (STRINGP (value
) && SCHARS (value
) > 0)
2961 else if (CONSP (value
))
2963 Lisp_Object key
, val
, list
;
2968 while (!NILP (CAR_SAFE(list
)))
2970 key
= CAR_SAFE (list
);
2971 list
= CDR_SAFE (list
);
2972 val
= CAR_SAFE (list
);
2973 list
= CDR_SAFE (list
);
2975 if(NILP (key
) || NILP (val
))
2981 else if (EQ (key
, QCcolor
)
2982 && !(EQ (val
, Qforeground_color
)
2983 || (STRINGP (val
) && SCHARS (val
) > 0)))
2989 else if (EQ (key
, QCstyle
)
2990 && !(EQ (val
, Qline
) || EQ (val
, Qwave
)))
2999 signal_error ("Invalid face underline", value
);
3001 old_value
= LFACE_UNDERLINE (lface
);
3002 LFACE_UNDERLINE (lface
) = value
;
3004 else if (EQ (attr
, QCoverline
))
3006 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
3007 if ((SYMBOLP (value
)
3009 && !EQ (value
, Qnil
))
3010 /* Overline color. */
3012 && SCHARS (value
) == 0))
3013 signal_error ("Invalid face overline", value
);
3015 old_value
= LFACE_OVERLINE (lface
);
3016 LFACE_OVERLINE (lface
) = value
;
3018 else if (EQ (attr
, QCstrike_through
))
3020 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
3021 if ((SYMBOLP (value
)
3023 && !EQ (value
, Qnil
))
3024 /* Strike-through color. */
3026 && SCHARS (value
) == 0))
3027 signal_error ("Invalid face strike-through", value
);
3029 old_value
= LFACE_STRIKE_THROUGH (lface
);
3030 LFACE_STRIKE_THROUGH (lface
) = value
;
3032 else if (EQ (attr
, QCbox
))
3036 /* Allow t meaning a simple box of width 1 in foreground color
3039 value
= make_number (1);
3041 if (UNSPECIFIEDP (value
) || IGNORE_DEFFACE_P (value
))
3043 else if (NILP (value
))
3045 else if (INTEGERP (value
))
3046 valid_p
= XINT (value
) != 0;
3047 else if (STRINGP (value
))
3048 valid_p
= SCHARS (value
) > 0;
3049 else if (CONSP (value
))
3065 if (EQ (k
, QCline_width
))
3067 if (!INTEGERP (v
) || XINT (v
) == 0)
3070 else if (EQ (k
, QCcolor
))
3072 if (!NILP (v
) && (!STRINGP (v
) || SCHARS (v
) == 0))
3075 else if (EQ (k
, QCstyle
))
3077 if (!EQ (v
, Qpressed_button
) && !EQ (v
, Qreleased_button
))
3084 valid_p
= NILP (tem
);
3090 signal_error ("Invalid face box", value
);
3092 old_value
= LFACE_BOX (lface
);
3093 LFACE_BOX (lface
) = value
;
3095 else if (EQ (attr
, QCinverse_video
)
3096 || EQ (attr
, QCreverse_video
))
3098 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
3100 CHECK_SYMBOL (value
);
3101 if (!EQ (value
, Qt
) && !NILP (value
))
3102 signal_error ("Invalid inverse-video face attribute value", value
);
3104 old_value
= LFACE_INVERSE (lface
);
3105 LFACE_INVERSE (lface
) = value
;
3107 else if (EQ (attr
, QCforeground
))
3109 /* Compatibility with 20.x. */
3111 value
= Qunspecified
;
3112 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
3114 /* Don't check for valid color names here because it depends
3115 on the frame (display) whether the color will be valid
3116 when the face is realized. */
3117 CHECK_STRING (value
);
3118 if (SCHARS (value
) == 0)
3119 signal_error ("Empty foreground color value", value
);
3121 old_value
= LFACE_FOREGROUND (lface
);
3122 LFACE_FOREGROUND (lface
) = value
;
3124 else if (EQ (attr
, QCbackground
))
3126 /* Compatibility with 20.x. */
3128 value
= Qunspecified
;
3129 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
3131 /* Don't check for valid color names here because it depends
3132 on the frame (display) whether the color will be valid
3133 when the face is realized. */
3134 CHECK_STRING (value
);
3135 if (SCHARS (value
) == 0)
3136 signal_error ("Empty background color value", value
);
3138 old_value
= LFACE_BACKGROUND (lface
);
3139 LFACE_BACKGROUND (lface
) = value
;
3141 else if (EQ (attr
, QCstipple
))
3143 #if defined (HAVE_X_WINDOWS) || defined (HAVE_NS)
3144 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
)
3146 && NILP (Fbitmap_spec_p (value
)))
3147 signal_error ("Invalid stipple attribute", value
);
3148 old_value
= LFACE_STIPPLE (lface
);
3149 LFACE_STIPPLE (lface
) = value
;
3150 #endif /* HAVE_X_WINDOWS || HAVE_NS */
3152 else if (EQ (attr
, QCwidth
))
3154 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
3156 CHECK_SYMBOL (value
);
3157 if (FONT_WIDTH_NAME_NUMERIC (value
) < 0)
3158 signal_error ("Invalid face width", value
);
3160 old_value
= LFACE_SWIDTH (lface
);
3161 LFACE_SWIDTH (lface
) = value
;
3162 prop_index
= FONT_WIDTH_INDEX
;
3164 else if (EQ (attr
, QCfont
))
3166 #ifdef HAVE_WINDOW_SYSTEM
3167 if (EQ (frame
, Qt
) || FRAME_WINDOW_P (XFRAME (frame
)))
3169 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
3173 old_value
= LFACE_FONT (lface
);
3174 if (! FONTP (value
))
3176 if (STRINGP (value
))
3178 Lisp_Object name
= value
;
3179 int fontset
= fs_query_fontset (name
, 0);
3182 name
= fontset_ascii (fontset
);
3183 value
= font_spec_from_name (name
);
3185 signal_error ("Invalid font name", name
);
3188 signal_error ("Invalid font or font-spec", value
);
3191 f
= XFRAME (selected_frame
);
3194 if (! FONT_OBJECT_P (value
))
3196 Lisp_Object
*attrs
= XVECTOR (lface
)->contents
;
3197 Lisp_Object font_object
;
3199 font_object
= font_load_for_lface (f
, attrs
, value
);
3200 if (NILP (font_object
))
3201 signal_error ("Font not available", value
);
3202 value
= font_object
;
3204 set_lface_from_font (f
, lface
, value
, 1);
3207 LFACE_FONT (lface
) = value
;
3209 #endif /* HAVE_WINDOW_SYSTEM */
3211 else if (EQ (attr
, QCfontset
))
3213 #ifdef HAVE_WINDOW_SYSTEM
3214 if (EQ (frame
, Qt
) || FRAME_WINDOW_P (XFRAME (frame
)))
3218 old_value
= LFACE_FONTSET (lface
);
3219 tmp
= Fquery_fontset (value
, Qnil
);
3221 signal_error ("Invalid fontset name", value
);
3222 LFACE_FONTSET (lface
) = value
= tmp
;
3224 #endif /* HAVE_WINDOW_SYSTEM */
3226 else if (EQ (attr
, QCinherit
))
3229 if (SYMBOLP (value
))
3232 for (tail
= value
; CONSP (tail
); tail
= XCDR (tail
))
3233 if (!SYMBOLP (XCAR (tail
)))
3236 LFACE_INHERIT (lface
) = value
;
3238 signal_error ("Invalid face inheritance", value
);
3240 else if (EQ (attr
, QCbold
))
3242 old_value
= LFACE_WEIGHT (lface
);
3243 LFACE_WEIGHT (lface
) = NILP (value
) ? Qnormal
: Qbold
;
3244 prop_index
= FONT_WEIGHT_INDEX
;
3246 else if (EQ (attr
, QCitalic
))
3249 old_value
= LFACE_SLANT (lface
);
3250 LFACE_SLANT (lface
) = NILP (value
) ? Qnormal
: Qitalic
;
3251 prop_index
= FONT_SLANT_INDEX
;
3254 signal_error ("Invalid face attribute name", attr
);
3258 /* If a font-related attribute other than QCfont and QCfontset
3259 is specified, and if the original QCfont attribute has a font
3260 (font-spec or font-object), set the corresponding property in
3261 the font to nil so that the font selector doesn't think that
3262 the attribute is mandatory. Also, clear the average
3264 font_clear_prop (XVECTOR (lface
)->contents
, prop_index
);
3267 /* Changing a named face means that all realized faces depending on
3268 that face are invalid. Since we cannot tell which realized faces
3269 depend on the face, make sure they are all removed. This is done
3270 by incrementing face_change_count. The next call to
3271 init_iterator will then free realized faces. */
3273 && NILP (Fget (face
, Qface_no_inherit
))
3274 && NILP (Fequal (old_value
, value
)))
3276 ++face_change_count
;
3277 ++windows_or_buffers_changed
;
3280 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
)
3281 && NILP (Fequal (old_value
, value
)))
3287 if (EQ (face
, Qdefault
))
3289 #ifdef HAVE_WINDOW_SYSTEM
3290 /* Changed font-related attributes of the `default' face are
3291 reflected in changed `font' frame parameters. */
3293 && (prop_index
|| EQ (attr
, QCfont
))
3294 && lface_fully_specified_p (XVECTOR (lface
)->contents
))
3295 set_font_frame_param (frame
, lface
);
3297 #endif /* HAVE_WINDOW_SYSTEM */
3299 if (EQ (attr
, QCforeground
))
3300 param
= Qforeground_color
;
3301 else if (EQ (attr
, QCbackground
))
3302 param
= Qbackground_color
;
3304 #ifdef HAVE_WINDOW_SYSTEM
3306 else if (EQ (face
, Qscroll_bar
))
3308 /* Changing the colors of `scroll-bar' sets frame parameters
3309 `scroll-bar-foreground' and `scroll-bar-background'. */
3310 if (EQ (attr
, QCforeground
))
3311 param
= Qscroll_bar_foreground
;
3312 else if (EQ (attr
, QCbackground
))
3313 param
= Qscroll_bar_background
;
3315 #endif /* not WINDOWSNT */
3316 else if (EQ (face
, Qborder
))
3318 /* Changing background color of `border' sets frame parameter
3320 if (EQ (attr
, QCbackground
))
3321 param
= Qborder_color
;
3323 else if (EQ (face
, Qcursor
))
3325 /* Changing background color of `cursor' sets frame parameter
3327 if (EQ (attr
, QCbackground
))
3328 param
= Qcursor_color
;
3330 else if (EQ (face
, Qmouse
))
3332 /* Changing background color of `mouse' sets frame parameter
3334 if (EQ (attr
, QCbackground
))
3335 param
= Qmouse_color
;
3337 #endif /* HAVE_WINDOW_SYSTEM */
3338 else if (EQ (face
, Qmenu
))
3340 /* Indicate that we have to update the menu bar when
3341 realizing faces on FRAME. FRAME t change the
3342 default for new frames. We do this by setting
3343 setting the flag in new face caches */
3346 struct frame
*f
= XFRAME (frame
);
3347 if (FRAME_FACE_CACHE (f
) == NULL
)
3348 FRAME_FACE_CACHE (f
) = make_face_cache (f
);
3349 FRAME_FACE_CACHE (f
)->menu_face_changed_p
= 1;
3352 menu_face_changed_default
= 1;
3358 /* Update `default-frame-alist', which is used for new frames. */
3360 store_in_alist (&Vdefault_frame_alist
, param
, value
);
3363 /* Update the current frame's parameters. */
3366 cons
= XCAR (Vparam_value_alist
);
3367 XSETCAR (cons
, param
);
3368 XSETCDR (cons
, value
);
3369 Fmodify_frame_parameters (frame
, Vparam_value_alist
);
3378 /* Update the corresponding face when frame parameter PARAM on frame F
3379 has been assigned the value NEW_VALUE. */
3382 update_face_from_frame_parameter (struct frame
*f
, Lisp_Object param
,
3383 Lisp_Object new_value
)
3385 Lisp_Object face
= Qnil
;
3388 /* If there are no faces yet, give up. This is the case when called
3389 from Fx_create_frame, and we do the necessary things later in
3390 face-set-after-frame-defaults. */
3391 if (NILP (f
->face_alist
))
3394 if (EQ (param
, Qforeground_color
))
3397 lface
= lface_from_face_name (f
, face
, 1);
3398 LFACE_FOREGROUND (lface
) = (STRINGP (new_value
)
3399 ? new_value
: Qunspecified
);
3400 realize_basic_faces (f
);
3402 else if (EQ (param
, Qbackground_color
))
3406 /* Changing the background color might change the background
3407 mode, so that we have to load new defface specs.
3408 Call frame-set-background-mode to do that. */
3409 XSETFRAME (frame
, f
);
3410 call1 (Qframe_set_background_mode
, frame
);
3413 lface
= lface_from_face_name (f
, face
, 1);
3414 LFACE_BACKGROUND (lface
) = (STRINGP (new_value
)
3415 ? new_value
: Qunspecified
);
3416 realize_basic_faces (f
);
3418 #ifdef HAVE_WINDOW_SYSTEM
3419 else if (EQ (param
, Qborder_color
))
3422 lface
= lface_from_face_name (f
, face
, 1);
3423 LFACE_BACKGROUND (lface
) = (STRINGP (new_value
)
3424 ? new_value
: Qunspecified
);
3426 else if (EQ (param
, Qcursor_color
))
3429 lface
= lface_from_face_name (f
, face
, 1);
3430 LFACE_BACKGROUND (lface
) = (STRINGP (new_value
)
3431 ? new_value
: Qunspecified
);
3433 else if (EQ (param
, Qmouse_color
))
3436 lface
= lface_from_face_name (f
, face
, 1);
3437 LFACE_BACKGROUND (lface
) = (STRINGP (new_value
)
3438 ? new_value
: Qunspecified
);
3442 /* Changing a named face means that all realized faces depending on
3443 that face are invalid. Since we cannot tell which realized faces
3444 depend on the face, make sure they are all removed. This is done
3445 by incrementing face_change_count. The next call to
3446 init_iterator will then free realized faces. */
3448 && NILP (Fget (face
, Qface_no_inherit
)))
3450 ++face_change_count
;
3451 ++windows_or_buffers_changed
;
3456 #ifdef HAVE_WINDOW_SYSTEM
3458 /* Set the `font' frame parameter of FRAME determined from the
3459 font-object set in `default' face attributes LFACE. */
3462 set_font_frame_param (Lisp_Object frame
, Lisp_Object lface
)
3464 struct frame
*f
= XFRAME (frame
);
3467 if (FRAME_WINDOW_P (f
)
3468 /* Don't do anything if the font is `unspecified'. This can
3469 happen during frame creation. */
3470 && (font
= LFACE_FONT (lface
),
3471 ! UNSPECIFIEDP (font
)))
3473 if (FONT_SPEC_P (font
))
3475 font
= font_load_for_lface (f
, XVECTOR (lface
)->contents
, font
);
3478 LFACE_FONT (lface
) = font
;
3480 f
->default_face_done_p
= 0;
3481 Fmodify_frame_parameters (frame
, Fcons (Fcons (Qfont
, font
), Qnil
));
3486 /* Get the value of X resource RESOURCE, class CLASS for the display
3487 of frame FRAME. This is here because ordinary `x-get-resource'
3488 doesn't take a frame argument. */
3490 DEFUN ("internal-face-x-get-resource", Finternal_face_x_get_resource
,
3491 Sinternal_face_x_get_resource
, 3, 3, 0, doc
: /* */)
3492 (Lisp_Object resource
, Lisp_Object
class, Lisp_Object frame
)
3494 Lisp_Object value
= Qnil
;
3495 CHECK_STRING (resource
);
3496 CHECK_STRING (class);
3497 CHECK_LIVE_FRAME (frame
);
3499 value
= display_x_get_resource (FRAME_X_DISPLAY_INFO (XFRAME (frame
)),
3500 resource
, class, Qnil
, Qnil
);
3506 /* Return resource string VALUE as a boolean value, i.e. nil, or t.
3507 If VALUE is "on" or "true", return t. If VALUE is "off" or
3508 "false", return nil. Otherwise, if SIGNAL_P is non-zero, signal an
3509 error; if SIGNAL_P is zero, return 0. */
3512 face_boolean_x_resource_value (Lisp_Object value
, int signal_p
)
3514 Lisp_Object result
= make_number (0);
3516 eassert (STRINGP (value
));
3518 if (xstrcasecmp (SSDATA (value
), "on") == 0
3519 || xstrcasecmp (SSDATA (value
), "true") == 0)
3521 else if (xstrcasecmp (SSDATA (value
), "off") == 0
3522 || xstrcasecmp (SSDATA (value
), "false") == 0)
3524 else if (xstrcasecmp (SSDATA (value
), "unspecified") == 0)
3525 result
= Qunspecified
;
3527 signal_error ("Invalid face attribute value from X resource", value
);
3533 DEFUN ("internal-set-lisp-face-attribute-from-resource",
3534 Finternal_set_lisp_face_attribute_from_resource
,
3535 Sinternal_set_lisp_face_attribute_from_resource
,
3536 3, 4, 0, doc
: /* */)
3537 (Lisp_Object face
, Lisp_Object attr
, Lisp_Object value
, Lisp_Object frame
)
3539 CHECK_SYMBOL (face
);
3540 CHECK_SYMBOL (attr
);
3541 CHECK_STRING (value
);
3543 if (xstrcasecmp (SSDATA (value
), "unspecified") == 0)
3544 value
= Qunspecified
;
3545 else if (EQ (attr
, QCheight
))
3547 value
= Fstring_to_number (value
, make_number (10));
3548 if (XINT (value
) <= 0)
3549 signal_error ("Invalid face height from X resource", value
);
3551 else if (EQ (attr
, QCbold
) || EQ (attr
, QCitalic
))
3552 value
= face_boolean_x_resource_value (value
, 1);
3553 else if (EQ (attr
, QCweight
) || EQ (attr
, QCslant
) || EQ (attr
, QCwidth
))
3554 value
= intern (SSDATA (value
));
3555 else if (EQ (attr
, QCreverse_video
) || EQ (attr
, QCinverse_video
))
3556 value
= face_boolean_x_resource_value (value
, 1);
3557 else if (EQ (attr
, QCunderline
)
3558 || EQ (attr
, QCoverline
)
3559 || EQ (attr
, QCstrike_through
))
3561 Lisp_Object boolean_value
;
3563 /* If the result of face_boolean_x_resource_value is t or nil,
3564 VALUE does NOT specify a color. */
3565 boolean_value
= face_boolean_x_resource_value (value
, 0);
3566 if (SYMBOLP (boolean_value
))
3567 value
= boolean_value
;
3569 else if (EQ (attr
, QCbox
) || EQ (attr
, QCinherit
))
3570 value
= Fcar (Fread_from_string (value
, Qnil
, Qnil
));
3572 return Finternal_set_lisp_face_attribute (face
, attr
, value
, frame
);
3575 #endif /* HAVE_WINDOW_SYSTEM */
3578 /***********************************************************************
3580 ***********************************************************************/
3582 #if defined HAVE_X_WINDOWS && defined USE_X_TOOLKIT
3584 /* Make menus on frame F appear as specified by the `menu' face. */
3587 x_update_menu_appearance (struct frame
*f
)
3589 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
3593 && (rdb
= XrmGetDatabase (FRAME_X_DISPLAY (f
)),
3598 ptrdiff_t bufsize
= sizeof line
;
3599 Lisp_Object lface
= lface_from_face_name (f
, Qmenu
, 1);
3600 struct face
*face
= FACE_FROM_ID (f
, MENU_FACE_ID
);
3601 const char *myname
= SSDATA (Vx_resource_name
);
3604 const char *popup_path
= "popup_menu";
3606 const char *popup_path
= "menu.popup";
3609 if (STRINGP (LFACE_FOREGROUND (lface
)))
3611 exprintf (&buf
, &bufsize
, line
, -1, "%s.%s*foreground: %s",
3613 SDATA (LFACE_FOREGROUND (lface
)));
3614 XrmPutLineResource (&rdb
, line
);
3615 exprintf (&buf
, &bufsize
, line
, -1, "%s.pane.menubar*foreground: %s",
3616 myname
, SDATA (LFACE_FOREGROUND (lface
)));
3617 XrmPutLineResource (&rdb
, line
);
3621 if (STRINGP (LFACE_BACKGROUND (lface
)))
3623 exprintf (&buf
, &bufsize
, line
, -1, "%s.%s*background: %s",
3625 SDATA (LFACE_BACKGROUND (lface
)));
3626 XrmPutLineResource (&rdb
, line
);
3628 exprintf (&buf
, &bufsize
, line
, -1, "%s.pane.menubar*background: %s",
3629 myname
, SDATA (LFACE_BACKGROUND (lface
)));
3630 XrmPutLineResource (&rdb
, line
);
3635 /* On Solaris 5.8, it's been reported that the `menu' face
3636 can be unspecified here, during startup. Why this
3637 happens remains unknown. -- cyd */
3638 && FONTP (LFACE_FONT (lface
))
3639 && (!UNSPECIFIEDP (LFACE_FAMILY (lface
))
3640 || !UNSPECIFIEDP (LFACE_FOUNDRY (lface
))
3641 || !UNSPECIFIEDP (LFACE_SWIDTH (lface
))
3642 || !UNSPECIFIEDP (LFACE_WEIGHT (lface
))
3643 || !UNSPECIFIEDP (LFACE_SLANT (lface
))
3644 || !UNSPECIFIEDP (LFACE_HEIGHT (lface
))))
3646 Lisp_Object xlfd
= Ffont_xlfd_name (LFACE_FONT (lface
), Qnil
);
3648 const char *suffix
= "List";
3651 #if defined HAVE_X_I18N
3653 const char *suffix
= "Set";
3655 const char *suffix
= "";
3662 #if defined HAVE_X_I18N
3663 char *fontsetname
= xic_create_fontsetname (SSDATA (xlfd
), motif
);
3665 char *fontsetname
= SSDATA (xlfd
);
3667 exprintf (&buf
, &bufsize
, line
, -1, "%s.pane.menubar*font%s: %s",
3668 myname
, suffix
, fontsetname
);
3669 XrmPutLineResource (&rdb
, line
);
3671 exprintf (&buf
, &bufsize
, line
, -1, "%s.%s*font%s: %s",
3672 myname
, popup_path
, suffix
, fontsetname
);
3673 XrmPutLineResource (&rdb
, line
);
3675 if (fontsetname
!= SSDATA (xlfd
))
3676 xfree (fontsetname
);
3680 if (changed_p
&& f
->output_data
.x
->menubar_widget
)
3681 free_frame_menubar (f
);
3688 #endif /* HAVE_X_WINDOWS && USE_X_TOOLKIT */
3691 DEFUN ("face-attribute-relative-p", Fface_attribute_relative_p
,
3692 Sface_attribute_relative_p
,
3694 doc
: /* Check whether a face attribute value is relative.
3695 Specifically, this function returns t if the attribute ATTRIBUTE
3696 with the value VALUE is relative.
3698 A relative value is one that doesn't entirely override whatever is
3699 inherited from another face. For most possible attributes,
3700 the only relative value that users see is `unspecified'.
3701 However, for :height, floating point values are also relative. */)
3702 (Lisp_Object attribute
, Lisp_Object value
)
3704 if (EQ (value
, Qunspecified
) || (EQ (value
, QCignore_defface
)))
3706 else if (EQ (attribute
, QCheight
))
3707 return INTEGERP (value
) ? Qnil
: Qt
;
3712 DEFUN ("merge-face-attribute", Fmerge_face_attribute
, Smerge_face_attribute
,
3714 doc
: /* Return face ATTRIBUTE VALUE1 merged with VALUE2.
3715 If VALUE1 or VALUE2 are absolute (see `face-attribute-relative-p'), then
3716 the result will be absolute, otherwise it will be relative. */)
3717 (Lisp_Object attribute
, Lisp_Object value1
, Lisp_Object value2
)
3719 if (EQ (value1
, Qunspecified
) || EQ (value1
, QCignore_defface
))
3721 else if (EQ (attribute
, QCheight
))
3722 return merge_face_heights (value1
, value2
, value1
);
3728 DEFUN ("internal-get-lisp-face-attribute", Finternal_get_lisp_face_attribute
,
3729 Sinternal_get_lisp_face_attribute
,
3731 doc
: /* Return face attribute KEYWORD of face SYMBOL.
3732 If SYMBOL does not name a valid Lisp face or KEYWORD isn't a valid
3733 face attribute name, signal an error.
3734 If the optional argument FRAME is given, report on face SYMBOL in that
3735 frame. If FRAME is t, report on the defaults for face SYMBOL (for new
3736 frames). If FRAME is omitted or nil, use the selected frame. */)
3737 (Lisp_Object symbol
, Lisp_Object keyword
, Lisp_Object frame
)
3739 Lisp_Object lface
, value
= Qnil
;
3741 CHECK_SYMBOL (symbol
);
3742 CHECK_SYMBOL (keyword
);
3745 lface
= lface_from_face_name (NULL
, symbol
, 1);
3749 frame
= selected_frame
;
3750 CHECK_LIVE_FRAME (frame
);
3751 lface
= lface_from_face_name (XFRAME (frame
), symbol
, 1);
3754 if (EQ (keyword
, QCfamily
))
3755 value
= LFACE_FAMILY (lface
);
3756 else if (EQ (keyword
, QCfoundry
))
3757 value
= LFACE_FOUNDRY (lface
);
3758 else if (EQ (keyword
, QCheight
))
3759 value
= LFACE_HEIGHT (lface
);
3760 else if (EQ (keyword
, QCweight
))
3761 value
= LFACE_WEIGHT (lface
);
3762 else if (EQ (keyword
, QCslant
))
3763 value
= LFACE_SLANT (lface
);
3764 else if (EQ (keyword
, QCunderline
))
3765 value
= LFACE_UNDERLINE (lface
);
3766 else if (EQ (keyword
, QCoverline
))
3767 value
= LFACE_OVERLINE (lface
);
3768 else if (EQ (keyword
, QCstrike_through
))
3769 value
= LFACE_STRIKE_THROUGH (lface
);
3770 else if (EQ (keyword
, QCbox
))
3771 value
= LFACE_BOX (lface
);
3772 else if (EQ (keyword
, QCinverse_video
)
3773 || EQ (keyword
, QCreverse_video
))
3774 value
= LFACE_INVERSE (lface
);
3775 else if (EQ (keyword
, QCforeground
))
3776 value
= LFACE_FOREGROUND (lface
);
3777 else if (EQ (keyword
, QCbackground
))
3778 value
= LFACE_BACKGROUND (lface
);
3779 else if (EQ (keyword
, QCstipple
))
3780 value
= LFACE_STIPPLE (lface
);
3781 else if (EQ (keyword
, QCwidth
))
3782 value
= LFACE_SWIDTH (lface
);
3783 else if (EQ (keyword
, QCinherit
))
3784 value
= LFACE_INHERIT (lface
);
3785 else if (EQ (keyword
, QCfont
))
3786 value
= LFACE_FONT (lface
);
3787 else if (EQ (keyword
, QCfontset
))
3788 value
= LFACE_FONTSET (lface
);
3790 signal_error ("Invalid face attribute name", keyword
);
3792 if (IGNORE_DEFFACE_P (value
))
3793 return Qunspecified
;
3799 DEFUN ("internal-lisp-face-attribute-values",
3800 Finternal_lisp_face_attribute_values
,
3801 Sinternal_lisp_face_attribute_values
, 1, 1, 0,
3802 doc
: /* Return a list of valid discrete values for face attribute ATTR.
3803 Value is nil if ATTR doesn't have a discrete set of valid values. */)
3806 Lisp_Object result
= Qnil
;
3808 CHECK_SYMBOL (attr
);
3810 if (EQ (attr
, QCunderline
))
3811 result
= Fcons (Qt
, Fcons (Qnil
, Qnil
));
3812 else if (EQ (attr
, QCoverline
))
3813 result
= Fcons (Qt
, Fcons (Qnil
, Qnil
));
3814 else if (EQ (attr
, QCstrike_through
))
3815 result
= Fcons (Qt
, Fcons (Qnil
, Qnil
));
3816 else if (EQ (attr
, QCinverse_video
) || EQ (attr
, QCreverse_video
))
3817 result
= Fcons (Qt
, Fcons (Qnil
, Qnil
));
3823 DEFUN ("internal-merge-in-global-face", Finternal_merge_in_global_face
,
3824 Sinternal_merge_in_global_face
, 2, 2, 0,
3825 doc
: /* Add attributes from frame-default definition of FACE to FACE on FRAME.
3826 Default face attributes override any local face attributes. */)
3827 (Lisp_Object face
, Lisp_Object frame
)
3830 Lisp_Object global_lface
, local_lface
, *gvec
, *lvec
;
3831 struct frame
*f
= XFRAME (frame
);
3833 CHECK_LIVE_FRAME (frame
);
3834 global_lface
= lface_from_face_name (NULL
, face
, 1);
3835 local_lface
= lface_from_face_name (f
, face
, 0);
3836 if (NILP (local_lface
))
3837 local_lface
= Finternal_make_lisp_face (face
, frame
);
3839 /* Make every specified global attribute override the local one.
3840 BEWARE!! This is only used from `face-set-after-frame-default' where
3841 the local frame is defined from default specs in `face-defface-spec'
3842 and those should be overridden by global settings. Hence the strange
3843 "global before local" priority. */
3844 lvec
= XVECTOR (local_lface
)->contents
;
3845 gvec
= XVECTOR (global_lface
)->contents
;
3846 for (i
= 1; i
< LFACE_VECTOR_SIZE
; ++i
)
3847 if (IGNORE_DEFFACE_P (gvec
[i
]))
3848 lvec
[i
] = Qunspecified
;
3849 else if (! UNSPECIFIEDP (gvec
[i
]))
3852 /* If the default face was changed, update the face cache and the
3853 `font' frame parameter. */
3854 if (EQ (face
, Qdefault
))
3856 struct face_cache
*c
= FRAME_FACE_CACHE (f
);
3857 struct face
*newface
, *oldface
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
3858 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
3860 /* This can be NULL (e.g., in batch mode). */
3863 /* Ensure that the face vector is fully specified by merging
3864 the previously-cached vector. */
3865 memcpy (attrs
, oldface
->lface
, sizeof attrs
);
3866 merge_face_vectors (f
, lvec
, attrs
, 0);
3867 memcpy (lvec
, attrs
, sizeof attrs
);
3868 newface
= realize_face (c
, lvec
, DEFAULT_FACE_ID
);
3870 if ((! UNSPECIFIEDP (gvec
[LFACE_FAMILY_INDEX
])
3871 || ! UNSPECIFIEDP (gvec
[LFACE_FOUNDRY_INDEX
])
3872 || ! UNSPECIFIEDP (gvec
[LFACE_HEIGHT_INDEX
])
3873 || ! UNSPECIFIEDP (gvec
[LFACE_WEIGHT_INDEX
])
3874 || ! UNSPECIFIEDP (gvec
[LFACE_SLANT_INDEX
])
3875 || ! UNSPECIFIEDP (gvec
[LFACE_SWIDTH_INDEX
])
3876 || ! UNSPECIFIEDP (gvec
[LFACE_FONT_INDEX
]))
3879 Lisp_Object name
= newface
->font
->props
[FONT_NAME_INDEX
];
3880 Fmodify_frame_parameters (frame
, Fcons (Fcons (Qfont
, name
),
3884 if (STRINGP (gvec
[LFACE_FOREGROUND_INDEX
]))
3885 Fmodify_frame_parameters (frame
,
3886 Fcons (Fcons (Qforeground_color
,
3887 gvec
[LFACE_FOREGROUND_INDEX
]),
3890 if (STRINGP (gvec
[LFACE_BACKGROUND_INDEX
]))
3891 Fmodify_frame_parameters (frame
,
3892 Fcons (Fcons (Qbackground_color
,
3893 gvec
[LFACE_BACKGROUND_INDEX
]),
3902 /* The following function is implemented for compatibility with 20.2.
3903 The function is used in x-resolve-fonts when it is asked to
3904 return fonts with the same size as the font of a face. This is
3905 done in fontset.el. */
3907 DEFUN ("face-font", Fface_font
, Sface_font
, 1, 3, 0,
3908 doc
: /* Return the font name of face FACE, or nil if it is unspecified.
3909 The font name is, by default, for ASCII characters.
3910 If the optional argument FRAME is given, report on face FACE in that frame.
3911 If FRAME is t, report on the defaults for face FACE (for new frames).
3912 The font default for a face is either nil, or a list
3913 of the form (bold), (italic) or (bold italic).
3914 If FRAME is omitted or nil, use the selected frame. And, in this case,
3915 if the optional third argument CHARACTER is given,
3916 return the font name used for CHARACTER. */)
3917 (Lisp_Object face
, Lisp_Object frame
, Lisp_Object character
)
3921 Lisp_Object result
= Qnil
;
3922 Lisp_Object lface
= lface_from_face_name (NULL
, face
, 1);
3924 if (!UNSPECIFIEDP (LFACE_WEIGHT (lface
))
3925 && !EQ (LFACE_WEIGHT (lface
), Qnormal
))
3926 result
= Fcons (Qbold
, result
);
3928 if (!UNSPECIFIEDP (LFACE_SLANT (lface
))
3929 && !EQ (LFACE_SLANT (lface
), Qnormal
))
3930 result
= Fcons (Qitalic
, result
);
3936 struct frame
*f
= frame_or_selected_frame (frame
, 1);
3937 int face_id
= lookup_named_face (f
, face
, 1);
3938 struct face
*fface
= FACE_FROM_ID (f
, face_id
);
3942 #ifdef HAVE_WINDOW_SYSTEM
3943 if (FRAME_WINDOW_P (f
) && !NILP (character
))
3945 CHECK_CHARACTER (character
);
3946 face_id
= FACE_FOR_CHAR (f
, fface
, XINT (character
), -1, Qnil
);
3947 fface
= FACE_FROM_ID (f
, face_id
);
3950 ? fface
->font
->props
[FONT_NAME_INDEX
]
3952 #else /* !HAVE_WINDOW_SYSTEM */
3953 return build_string (FRAME_MSDOS_P (f
)
3955 : FRAME_W32_P (f
) ? "w32term"
3962 /* Compare face-attribute values v1 and v2 for equality. Value is non-zero if
3963 all attributes are `equal'. Tries to be fast because this function
3964 is called quite often. */
3967 face_attr_equal_p (Lisp_Object v1
, Lisp_Object v2
)
3969 /* Type can differ, e.g. when one attribute is unspecified, i.e. nil,
3970 and the other is specified. */
3971 if (XTYPE (v1
) != XTYPE (v2
))
3980 if (SBYTES (v1
) != SBYTES (v2
))
3983 return memcmp (SDATA (v1
), SDATA (v2
), SBYTES (v1
)) == 0;
3990 return !NILP (Fequal (v1
, v2
));
3995 /* Compare face vectors V1 and V2 for equality. Value is non-zero if
3996 all attributes are `equal'. Tries to be fast because this function
3997 is called quite often. */
4000 lface_equal_p (Lisp_Object
*v1
, Lisp_Object
*v2
)
4004 for (i
= 1; i
< LFACE_VECTOR_SIZE
&& equal_p
; ++i
)
4005 equal_p
= face_attr_equal_p (v1
[i
], v2
[i
]);
4011 DEFUN ("internal-lisp-face-equal-p", Finternal_lisp_face_equal_p
,
4012 Sinternal_lisp_face_equal_p
, 2, 3, 0,
4013 doc
: /* True if FACE1 and FACE2 are equal.
4014 If the optional argument FRAME is given, report on FACE1 and FACE2 in that frame.
4015 If FRAME is t, report on the defaults for FACE1 and FACE2 (for new frames).
4016 If FRAME is omitted or nil, use the selected frame. */)
4017 (Lisp_Object face1
, Lisp_Object face2
, Lisp_Object frame
)
4021 Lisp_Object lface1
, lface2
;
4026 /* Don't use check_x_frame here because this function is called
4027 before X frames exist. At that time, if FRAME is nil,
4028 selected_frame will be used which is the frame dumped with
4029 Emacs. That frame is not an X frame. */
4030 f
= frame_or_selected_frame (frame
, 2);
4032 lface1
= lface_from_face_name (f
, face1
, 1);
4033 lface2
= lface_from_face_name (f
, face2
, 1);
4034 equal_p
= lface_equal_p (XVECTOR (lface1
)->contents
,
4035 XVECTOR (lface2
)->contents
);
4036 return equal_p
? Qt
: Qnil
;
4040 DEFUN ("internal-lisp-face-empty-p", Finternal_lisp_face_empty_p
,
4041 Sinternal_lisp_face_empty_p
, 1, 2, 0,
4042 doc
: /* True if FACE has no attribute specified.
4043 If the optional argument FRAME is given, report on face FACE in that frame.
4044 If FRAME is t, report on the defaults for face FACE (for new frames).
4045 If FRAME is omitted or nil, use the selected frame. */)
4046 (Lisp_Object face
, Lisp_Object frame
)
4053 frame
= selected_frame
;
4054 CHECK_LIVE_FRAME (frame
);
4058 lface
= lface_from_face_name (NULL
, face
, 1);
4060 lface
= lface_from_face_name (f
, face
, 1);
4062 for (i
= 1; i
< LFACE_VECTOR_SIZE
; ++i
)
4063 if (!UNSPECIFIEDP (AREF (lface
, i
)))
4066 return i
== LFACE_VECTOR_SIZE
? Qt
: Qnil
;
4070 DEFUN ("frame-face-alist", Fframe_face_alist
, Sframe_face_alist
,
4072 doc
: /* Return an alist of frame-local faces defined on FRAME.
4073 For internal use only. */)
4076 struct frame
*f
= frame_or_selected_frame (frame
, 0);
4077 return f
->face_alist
;
4081 /* Return a hash code for Lisp string STRING with case ignored. Used
4082 below in computing a hash value for a Lisp face. */
4084 static inline unsigned
4085 hash_string_case_insensitive (Lisp_Object string
)
4087 const unsigned char *s
;
4089 eassert (STRINGP (string
));
4090 for (s
= SDATA (string
); *s
; ++s
)
4091 hash
= (hash
<< 1) ^ tolower (*s
);
4096 /* Return a hash code for face attribute vector V. */
4098 static inline unsigned
4099 lface_hash (Lisp_Object
*v
)
4101 return (hash_string_case_insensitive (v
[LFACE_FAMILY_INDEX
])
4102 ^ hash_string_case_insensitive (v
[LFACE_FOUNDRY_INDEX
])
4103 ^ hash_string_case_insensitive (v
[LFACE_FOREGROUND_INDEX
])
4104 ^ hash_string_case_insensitive (v
[LFACE_BACKGROUND_INDEX
])
4105 ^ XHASH (v
[LFACE_WEIGHT_INDEX
])
4106 ^ XHASH (v
[LFACE_SLANT_INDEX
])
4107 ^ XHASH (v
[LFACE_SWIDTH_INDEX
])
4108 ^ XHASH (v
[LFACE_HEIGHT_INDEX
]));
4112 /* Return non-zero if LFACE1 and LFACE2 specify the same font (without
4113 considering charsets/registries). They do if they specify the same
4114 family, point size, weight, width, slant, and font. Both
4115 LFACE1 and LFACE2 must be fully-specified. */
4118 lface_same_font_attributes_p (Lisp_Object
*lface1
, Lisp_Object
*lface2
)
4120 eassert (lface_fully_specified_p (lface1
)
4121 && lface_fully_specified_p (lface2
));
4122 return (xstrcasecmp (SSDATA (lface1
[LFACE_FAMILY_INDEX
]),
4123 SSDATA (lface2
[LFACE_FAMILY_INDEX
])) == 0
4124 && xstrcasecmp (SSDATA (lface1
[LFACE_FOUNDRY_INDEX
]),
4125 SSDATA (lface2
[LFACE_FOUNDRY_INDEX
])) == 0
4126 && EQ (lface1
[LFACE_HEIGHT_INDEX
], lface2
[LFACE_HEIGHT_INDEX
])
4127 && EQ (lface1
[LFACE_SWIDTH_INDEX
], lface2
[LFACE_SWIDTH_INDEX
])
4128 && EQ (lface1
[LFACE_WEIGHT_INDEX
], lface2
[LFACE_WEIGHT_INDEX
])
4129 && EQ (lface1
[LFACE_SLANT_INDEX
], lface2
[LFACE_SLANT_INDEX
])
4130 && EQ (lface1
[LFACE_FONT_INDEX
], lface2
[LFACE_FONT_INDEX
])
4131 && (EQ (lface1
[LFACE_FONTSET_INDEX
], lface2
[LFACE_FONTSET_INDEX
])
4132 || (STRINGP (lface1
[LFACE_FONTSET_INDEX
])
4133 && STRINGP (lface2
[LFACE_FONTSET_INDEX
])
4134 && ! xstrcasecmp (SSDATA (lface1
[LFACE_FONTSET_INDEX
]),
4135 SSDATA (lface2
[LFACE_FONTSET_INDEX
]))))
4141 /***********************************************************************
4143 ***********************************************************************/
4145 /* Allocate and return a new realized face for Lisp face attribute
4148 static struct face
*
4149 make_realized_face (Lisp_Object
*attr
)
4151 struct face
*face
= (struct face
*) xmalloc (sizeof *face
);
4152 memset (face
, 0, sizeof *face
);
4153 face
->ascii_face
= face
;
4154 memcpy (face
->lface
, attr
, sizeof face
->lface
);
4159 /* Free realized face FACE, including its X resources. FACE may
4163 free_realized_face (struct frame
*f
, struct face
*face
)
4167 #ifdef HAVE_WINDOW_SYSTEM
4168 if (FRAME_WINDOW_P (f
))
4170 /* Free fontset of FACE if it is ASCII face. */
4171 if (face
->fontset
>= 0 && face
== face
->ascii_face
)
4172 free_face_fontset (f
, face
);
4177 font_done_for_face (f
, face
);
4178 x_free_gc (f
, face
->gc
);
4183 free_face_colors (f
, face
);
4184 x_destroy_bitmap (f
, face
->stipple
);
4186 #endif /* HAVE_WINDOW_SYSTEM */
4193 /* Prepare face FACE for subsequent display on frame F. This
4194 allocated GCs if they haven't been allocated yet or have been freed
4195 by clearing the face cache. */
4198 prepare_face_for_display (struct frame
*f
, struct face
*face
)
4200 #ifdef HAVE_WINDOW_SYSTEM
4201 eassert (FRAME_WINDOW_P (f
));
4206 unsigned long mask
= GCForeground
| GCBackground
| GCGraphicsExposures
;
4208 xgcv
.foreground
= face
->foreground
;
4209 xgcv
.background
= face
->background
;
4210 #ifdef HAVE_X_WINDOWS
4211 xgcv
.graphics_exposures
= False
;
4215 #ifdef HAVE_X_WINDOWS
4218 xgcv
.fill_style
= FillOpaqueStippled
;
4219 xgcv
.stipple
= x_bitmap_pixmap (f
, face
->stipple
);
4220 mask
|= GCFillStyle
| GCStipple
;
4223 face
->gc
= x_create_gc (f
, mask
, &xgcv
);
4225 font_prepare_for_face (f
, face
);
4228 #endif /* HAVE_WINDOW_SYSTEM */
4232 /* Returns the `distance' between the colors X and Y. */
4235 color_distance (XColor
*x
, XColor
*y
)
4237 /* This formula is from a paper titled `Colour metric' by Thiadmer Riemersma.
4238 Quoting from that paper:
4240 This formula has results that are very close to L*u*v* (with the
4241 modified lightness curve) and, more importantly, it is a more even
4242 algorithm: it does not have a range of colors where it suddenly
4243 gives far from optimal results.
4245 See <http://www.compuphase.com/cmetric.htm> for more info. */
4247 long r
= (x
->red
- y
->red
) >> 8;
4248 long g
= (x
->green
- y
->green
) >> 8;
4249 long b
= (x
->blue
- y
->blue
) >> 8;
4250 long r_mean
= (x
->red
+ y
->red
) >> 9;
4253 (((512 + r_mean
) * r
* r
) >> 8)
4255 + (((767 - r_mean
) * b
* b
) >> 8);
4259 DEFUN ("color-distance", Fcolor_distance
, Scolor_distance
, 2, 3, 0,
4260 doc
: /* Return an integer distance between COLOR1 and COLOR2 on FRAME.
4261 COLOR1 and COLOR2 may be either strings containing the color name,
4262 or lists of the form (RED GREEN BLUE).
4263 If FRAME is unspecified or nil, the current frame is used. */)
4264 (Lisp_Object color1
, Lisp_Object color2
, Lisp_Object frame
)
4267 XColor cdef1
, cdef2
;
4270 frame
= selected_frame
;
4271 CHECK_LIVE_FRAME (frame
);
4274 if (!(CONSP (color1
) && parse_rgb_list (color1
, &cdef1
))
4275 && !(STRINGP (color1
) && defined_color (f
, SSDATA (color1
), &cdef1
, 0)))
4276 signal_error ("Invalid color", color1
);
4277 if (!(CONSP (color2
) && parse_rgb_list (color2
, &cdef2
))
4278 && !(STRINGP (color2
) && defined_color (f
, SSDATA (color2
), &cdef2
, 0)))
4279 signal_error ("Invalid color", color2
);
4281 return make_number (color_distance (&cdef1
, &cdef2
));
4285 /***********************************************************************
4287 ***********************************************************************/
4289 /* Return a new face cache for frame F. */
4291 static struct face_cache
*
4292 make_face_cache (struct frame
*f
)
4294 struct face_cache
*c
;
4297 c
= (struct face_cache
*) xmalloc (sizeof *c
);
4298 memset (c
, 0, sizeof *c
);
4299 size
= FACE_CACHE_BUCKETS_SIZE
* sizeof *c
->buckets
;
4300 c
->buckets
= (struct face
**) xmalloc (size
);
4301 memset (c
->buckets
, 0, size
);
4303 c
->faces_by_id
= (struct face
**) xmalloc (c
->size
* sizeof *c
->faces_by_id
);
4305 c
->menu_face_changed_p
= menu_face_changed_default
;
4310 /* Clear out all graphics contexts for all realized faces, except for
4311 the basic faces. This should be done from time to time just to avoid
4312 keeping too many graphics contexts that are no longer needed. */
4315 clear_face_gcs (struct face_cache
*c
)
4317 if (c
&& FRAME_WINDOW_P (c
->f
))
4319 #ifdef HAVE_WINDOW_SYSTEM
4321 for (i
= BASIC_FACE_ID_SENTINEL
; i
< c
->used
; ++i
)
4323 struct face
*face
= c
->faces_by_id
[i
];
4324 if (face
&& face
->gc
)
4328 font_done_for_face (c
->f
, face
);
4329 x_free_gc (c
->f
, face
->gc
);
4334 #endif /* HAVE_WINDOW_SYSTEM */
4339 /* Free all realized faces in face cache C, including basic faces.
4340 C may be null. If faces are freed, make sure the frame's current
4341 matrix is marked invalid, so that a display caused by an expose
4342 event doesn't try to use faces we destroyed. */
4345 free_realized_faces (struct face_cache
*c
)
4350 struct frame
*f
= c
->f
;
4352 /* We must block input here because we can't process X events
4353 safely while only some faces are freed, or when the frame's
4354 current matrix still references freed faces. */
4357 for (i
= 0; i
< c
->used
; ++i
)
4359 free_realized_face (f
, c
->faces_by_id
[i
]);
4360 c
->faces_by_id
[i
] = NULL
;
4364 size
= FACE_CACHE_BUCKETS_SIZE
* sizeof *c
->buckets
;
4365 memset (c
->buckets
, 0, size
);
4367 /* Must do a thorough redisplay the next time. Mark current
4368 matrices as invalid because they will reference faces freed
4369 above. This function is also called when a frame is
4370 destroyed. In this case, the root window of F is nil. */
4371 if (WINDOWP (f
->root_window
))
4373 clear_current_matrices (f
);
4374 ++windows_or_buffers_changed
;
4382 /* Free all realized faces on FRAME or on all frames if FRAME is nil.
4383 This is done after attributes of a named face have been changed,
4384 because we can't tell which realized faces depend on that face. */
4387 free_all_realized_faces (Lisp_Object frame
)
4392 FOR_EACH_FRAME (rest
, frame
)
4393 free_realized_faces (FRAME_FACE_CACHE (XFRAME (frame
)));
4396 free_realized_faces (FRAME_FACE_CACHE (XFRAME (frame
)));
4400 /* Free face cache C and faces in it, including their X resources. */
4403 free_face_cache (struct face_cache
*c
)
4407 free_realized_faces (c
);
4409 xfree (c
->faces_by_id
);
4415 /* Cache realized face FACE in face cache C. HASH is the hash value
4416 of FACE. If FACE is for ASCII characters (i.e. FACE->ascii_face ==
4417 FACE), insert the new face to the beginning of the collision list
4418 of the face hash table of C. Otherwise, add the new face to the
4419 end of the collision list. This way, lookup_face can quickly find
4420 that a requested face is not cached. */
4423 cache_face (struct face_cache
*c
, struct face
*face
, unsigned int hash
)
4425 int i
= hash
% FACE_CACHE_BUCKETS_SIZE
;
4429 if (face
->ascii_face
!= face
)
4431 struct face
*last
= c
->buckets
[i
];
4442 c
->buckets
[i
] = face
;
4443 face
->prev
= face
->next
= NULL
;
4449 face
->next
= c
->buckets
[i
];
4451 face
->next
->prev
= face
;
4452 c
->buckets
[i
] = face
;
4455 /* Find a free slot in C->faces_by_id and use the index of the free
4456 slot as FACE->id. */
4457 for (i
= 0; i
< c
->used
; ++i
)
4458 if (c
->faces_by_id
[i
] == NULL
)
4463 /* Check that FACE got a unique id. */
4468 for (j
= n
= 0; j
< FACE_CACHE_BUCKETS_SIZE
; ++j
)
4469 for (face1
= c
->buckets
[j
]; face1
; face1
= face1
->next
)
4475 #endif /* GLYPH_DEBUG */
4477 /* Maybe enlarge C->faces_by_id. */
4480 if (c
->used
== c
->size
)
4481 c
->faces_by_id
= xpalloc (c
->faces_by_id
, &c
->size
, 1, MAX_FACE_ID
,
4482 sizeof *c
->faces_by_id
);
4486 c
->faces_by_id
[i
] = face
;
4490 /* Remove face FACE from cache C. */
4493 uncache_face (struct face_cache
*c
, struct face
*face
)
4495 int i
= face
->hash
% FACE_CACHE_BUCKETS_SIZE
;
4498 face
->prev
->next
= face
->next
;
4500 c
->buckets
[i
] = face
->next
;
4503 face
->next
->prev
= face
->prev
;
4505 c
->faces_by_id
[face
->id
] = NULL
;
4506 if (face
->id
== c
->used
)
4511 /* Look up a realized face with face attributes ATTR in the face cache
4512 of frame F. The face will be used to display ASCII characters.
4513 Value is the ID of the face found. If no suitable face is found,
4514 realize a new one. */
4517 lookup_face (struct frame
*f
, Lisp_Object
*attr
)
4519 struct face_cache
*cache
= FRAME_FACE_CACHE (f
);
4524 eassert (cache
!= NULL
);
4525 check_lface_attrs (attr
);
4527 /* Look up ATTR in the face cache. */
4528 hash
= lface_hash (attr
);
4529 i
= hash
% FACE_CACHE_BUCKETS_SIZE
;
4531 for (face
= cache
->buckets
[i
]; face
; face
= face
->next
)
4533 if (face
->ascii_face
!= face
)
4535 /* There's no more ASCII face. */
4539 if (face
->hash
== hash
4540 && lface_equal_p (face
->lface
, attr
))
4544 /* If not found, realize a new face. */
4546 face
= realize_face (cache
, attr
, -1);
4549 eassert (face
== FACE_FROM_ID (f
, face
->id
));
4550 #endif /* GLYPH_DEBUG */
4555 #ifdef HAVE_WINDOW_SYSTEM
4556 /* Look up a realized face that has the same attributes as BASE_FACE
4557 except for the font in the face cache of frame F. If FONT-OBJECT
4558 is not nil, it is an already opened font. If FONT-OBJECT is nil,
4559 the face has no font. Value is the ID of the face found. If no
4560 suitable face is found, realize a new one. */
4563 face_for_font (struct frame
*f
, Lisp_Object font_object
, struct face
*base_face
)
4565 struct face_cache
*cache
= FRAME_FACE_CACHE (f
);
4570 eassert (cache
!= NULL
);
4571 base_face
= base_face
->ascii_face
;
4572 hash
= lface_hash (base_face
->lface
);
4573 i
= hash
% FACE_CACHE_BUCKETS_SIZE
;
4575 for (face
= cache
->buckets
[i
]; face
; face
= face
->next
)
4577 if (face
->ascii_face
== face
)
4579 if (face
->ascii_face
== base_face
4580 && face
->font
== (NILP (font_object
) ? NULL
4581 : XFONT_OBJECT (font_object
))
4582 && lface_equal_p (face
->lface
, base_face
->lface
))
4586 /* If not found, realize a new face. */
4587 face
= realize_non_ascii_face (f
, font_object
, base_face
);
4590 #endif /* HAVE_WINDOW_SYSTEM */
4592 /* Return the face id of the realized face for named face SYMBOL on
4593 frame F suitable for displaying ASCII characters. Value is -1 if
4594 the face couldn't be determined, which might happen if the default
4595 face isn't realized and cannot be realized. */
4598 lookup_named_face (struct frame
*f
, Lisp_Object symbol
, int signal_p
)
4600 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
4601 Lisp_Object symbol_attrs
[LFACE_VECTOR_SIZE
];
4602 struct face
*default_face
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
4604 if (default_face
== NULL
)
4606 if (!realize_basic_faces (f
))
4608 default_face
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
4609 if (default_face
== NULL
)
4610 abort (); /* realize_basic_faces must have set it up */
4613 if (! get_lface_attributes (f
, symbol
, symbol_attrs
, signal_p
, 0))
4616 memcpy (attrs
, default_face
->lface
, sizeof attrs
);
4617 merge_face_vectors (f
, symbol_attrs
, attrs
, 0);
4619 return lookup_face (f
, attrs
);
4623 /* Return the display face-id of the basic face whose canonical face-id
4624 is FACE_ID. The return value will usually simply be FACE_ID, unless that
4625 basic face has bee remapped via Vface_remapping_alist. This function is
4626 conservative: if something goes wrong, it will simply return FACE_ID
4627 rather than signal an error. */
4630 lookup_basic_face (struct frame
*f
, int face_id
)
4632 Lisp_Object name
, mapping
;
4633 int remapped_face_id
;
4635 if (NILP (Vface_remapping_alist
))
4636 return face_id
; /* Nothing to do. */
4640 case DEFAULT_FACE_ID
: name
= Qdefault
; break;
4641 case MODE_LINE_FACE_ID
: name
= Qmode_line
; break;
4642 case MODE_LINE_INACTIVE_FACE_ID
: name
= Qmode_line_inactive
; break;
4643 case HEADER_LINE_FACE_ID
: name
= Qheader_line
; break;
4644 case TOOL_BAR_FACE_ID
: name
= Qtool_bar
; break;
4645 case FRINGE_FACE_ID
: name
= Qfringe
; break;
4646 case SCROLL_BAR_FACE_ID
: name
= Qscroll_bar
; break;
4647 case BORDER_FACE_ID
: name
= Qborder
; break;
4648 case CURSOR_FACE_ID
: name
= Qcursor
; break;
4649 case MOUSE_FACE_ID
: name
= Qmouse
; break;
4650 case MENU_FACE_ID
: name
= Qmenu
; break;
4653 abort (); /* the caller is supposed to pass us a basic face id */
4656 /* Do a quick scan through Vface_remapping_alist, and return immediately
4657 if there is no remapping for face NAME. This is just an optimization
4658 for the very common no-remapping case. */
4659 mapping
= assq_no_quit (name
, Vface_remapping_alist
);
4661 return face_id
; /* Give up. */
4663 /* If there is a remapping entry, lookup the face using NAME, which will
4664 handle the remapping too. */
4665 remapped_face_id
= lookup_named_face (f
, name
, 0);
4666 if (remapped_face_id
< 0)
4667 return face_id
; /* Give up. */
4669 return remapped_face_id
;
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
,
4769 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
4770 Lisp_Object symbol_attrs
[LFACE_VECTOR_SIZE
];
4771 struct face
*default_face
= FACE_FROM_ID (f
, face_id
);
4776 if (!get_lface_attributes (f
, symbol
, symbol_attrs
, signal_p
, 0))
4779 memcpy (attrs
, default_face
->lface
, sizeof attrs
);
4780 merge_face_vectors (f
, symbol_attrs
, attrs
, 0);
4781 return lookup_face (f
, attrs
);
4784 DEFUN ("face-attributes-as-vector", Fface_attributes_as_vector
,
4785 Sface_attributes_as_vector
, 1, 1, 0,
4786 doc
: /* Return a vector of face attributes corresponding to PLIST. */)
4790 lface
= Fmake_vector (make_number (LFACE_VECTOR_SIZE
),
4792 merge_face_ref (XFRAME (selected_frame
), plist
, XVECTOR (lface
)->contents
,
4799 /***********************************************************************
4800 Face capability testing
4801 ***********************************************************************/
4804 /* If the distance (as returned by color_distance) between two colors is
4805 less than this, then they are considered the same, for determining
4806 whether a color is supported or not. The range of values is 0-65535. */
4808 #define TTY_SAME_COLOR_THRESHOLD 10000
4810 #ifdef HAVE_WINDOW_SYSTEM
4812 /* Return non-zero if all the face attributes in ATTRS are supported
4813 on the window-system frame F.
4815 The definition of `supported' is somewhat heuristic, but basically means
4816 that a face containing all the attributes in ATTRS, when merged with the
4817 default face for display, can be represented in a way that's
4819 \(1) different in appearance than the default face, and
4820 \(2) `close in spirit' to what the attributes specify, if not exact. */
4823 x_supports_face_attributes_p (struct frame
*f
, Lisp_Object
*attrs
,
4824 struct face
*def_face
)
4826 Lisp_Object
*def_attrs
= def_face
->lface
;
4828 /* Check that other specified attributes are different that the default
4830 if ((!UNSPECIFIEDP (attrs
[LFACE_UNDERLINE_INDEX
])
4831 && face_attr_equal_p (attrs
[LFACE_UNDERLINE_INDEX
],
4832 def_attrs
[LFACE_UNDERLINE_INDEX
]))
4833 || (!UNSPECIFIEDP (attrs
[LFACE_INVERSE_INDEX
])
4834 && face_attr_equal_p (attrs
[LFACE_INVERSE_INDEX
],
4835 def_attrs
[LFACE_INVERSE_INDEX
]))
4836 || (!UNSPECIFIEDP (attrs
[LFACE_FOREGROUND_INDEX
])
4837 && face_attr_equal_p (attrs
[LFACE_FOREGROUND_INDEX
],
4838 def_attrs
[LFACE_FOREGROUND_INDEX
]))
4839 || (!UNSPECIFIEDP (attrs
[LFACE_BACKGROUND_INDEX
])
4840 && face_attr_equal_p (attrs
[LFACE_BACKGROUND_INDEX
],
4841 def_attrs
[LFACE_BACKGROUND_INDEX
]))
4842 || (!UNSPECIFIEDP (attrs
[LFACE_STIPPLE_INDEX
])
4843 && face_attr_equal_p (attrs
[LFACE_STIPPLE_INDEX
],
4844 def_attrs
[LFACE_STIPPLE_INDEX
]))
4845 || (!UNSPECIFIEDP (attrs
[LFACE_OVERLINE_INDEX
])
4846 && face_attr_equal_p (attrs
[LFACE_OVERLINE_INDEX
],
4847 def_attrs
[LFACE_OVERLINE_INDEX
]))
4848 || (!UNSPECIFIEDP (attrs
[LFACE_STRIKE_THROUGH_INDEX
])
4849 && face_attr_equal_p (attrs
[LFACE_STRIKE_THROUGH_INDEX
],
4850 def_attrs
[LFACE_STRIKE_THROUGH_INDEX
]))
4851 || (!UNSPECIFIEDP (attrs
[LFACE_BOX_INDEX
])
4852 && face_attr_equal_p (attrs
[LFACE_BOX_INDEX
],
4853 def_attrs
[LFACE_BOX_INDEX
])))
4856 /* Check font-related attributes, as those are the most commonly
4857 "unsupported" on a window-system (because of missing fonts). */
4858 if (!UNSPECIFIEDP (attrs
[LFACE_FAMILY_INDEX
])
4859 || !UNSPECIFIEDP (attrs
[LFACE_FOUNDRY_INDEX
])
4860 || !UNSPECIFIEDP (attrs
[LFACE_HEIGHT_INDEX
])
4861 || !UNSPECIFIEDP (attrs
[LFACE_WEIGHT_INDEX
])
4862 || !UNSPECIFIEDP (attrs
[LFACE_SLANT_INDEX
])
4863 || !UNSPECIFIEDP (attrs
[LFACE_SWIDTH_INDEX
]))
4867 Lisp_Object merged_attrs
[LFACE_VECTOR_SIZE
];
4870 memcpy (merged_attrs
, def_attrs
, sizeof merged_attrs
);
4872 merge_face_vectors (f
, attrs
, merged_attrs
, 0);
4874 face_id
= lookup_face (f
, merged_attrs
);
4875 face
= FACE_FROM_ID (f
, face_id
);
4878 error ("Cannot make face");
4880 /* If the font is the same, or no font is found, then not
4882 if (face
->font
== def_face
->font
4885 for (i
= FONT_TYPE_INDEX
; i
<= FONT_SIZE_INDEX
; i
++)
4886 if (! EQ (face
->font
->props
[i
], def_face
->font
->props
[i
]))
4890 if (i
< FONT_FOUNDRY_INDEX
|| i
> FONT_REGISTRY_INDEX
4891 || face
->font
->driver
->case_sensitive
)
4893 s1
= SYMBOL_NAME (face
->font
->props
[i
]);
4894 s2
= SYMBOL_NAME (def_face
->font
->props
[i
]);
4895 if (! EQ (Fcompare_strings (s1
, make_number (0), Qnil
,
4896 s2
, make_number (0), Qnil
, Qt
), Qt
))
4902 /* Everything checks out, this face is supported. */
4906 #endif /* HAVE_WINDOW_SYSTEM */
4908 /* Return non-zero if all the face attributes in ATTRS are supported
4911 The definition of `supported' is somewhat heuristic, but basically means
4912 that a face containing all the attributes in ATTRS, when merged
4913 with the default face for display, can be represented in a way that's
4915 \(1) different in appearance than the default face, and
4916 \(2) `close in spirit' to what the attributes specify, if not exact.
4918 Point (2) implies that a `:weight black' attribute will be satisfied
4919 by any terminal that can display bold, and a `:foreground "yellow"' as
4920 long as the terminal can display a yellowish color, but `:slant italic'
4921 will _not_ be satisfied by the tty display code's automatic
4922 substitution of a `dim' face for italic. */
4925 tty_supports_face_attributes_p (struct frame
*f
, Lisp_Object
*attrs
,
4926 struct face
*def_face
)
4929 Lisp_Object val
, fg
, bg
;
4930 XColor fg_tty_color
, fg_std_color
;
4931 XColor bg_tty_color
, bg_std_color
;
4932 unsigned test_caps
= 0;
4933 Lisp_Object
*def_attrs
= def_face
->lface
;
4935 /* First check some easy-to-check stuff; ttys support none of the
4936 following attributes, so we can just return false if any are requested
4937 (even if `nominal' values are specified, we should still return false,
4938 as that will be the same value that the default face uses). We
4939 consider :slant unsupportable on ttys, even though the face code
4940 actually `fakes' them using a dim attribute if possible. This is
4941 because the faked result is too different from what the face
4943 if (!UNSPECIFIEDP (attrs
[LFACE_FAMILY_INDEX
])
4944 || !UNSPECIFIEDP (attrs
[LFACE_FOUNDRY_INDEX
])
4945 || !UNSPECIFIEDP (attrs
[LFACE_STIPPLE_INDEX
])
4946 || !UNSPECIFIEDP (attrs
[LFACE_HEIGHT_INDEX
])
4947 || !UNSPECIFIEDP (attrs
[LFACE_SWIDTH_INDEX
])
4948 || !UNSPECIFIEDP (attrs
[LFACE_OVERLINE_INDEX
])
4949 || !UNSPECIFIEDP (attrs
[LFACE_STRIKE_THROUGH_INDEX
])
4950 || !UNSPECIFIEDP (attrs
[LFACE_BOX_INDEX
]))
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_SLANT_INDEX
];
4980 if (!UNSPECIFIEDP (val
)
4981 && (slant
= FONT_SLANT_NAME_NUMERIC (val
), slant
>= 0))
4983 int def_slant
= FONT_SLANT_NAME_NUMERIC (def_attrs
[LFACE_SLANT_INDEX
]);
4984 if (slant
== 100 || slant
== def_slant
)
4985 return 0; /* same as default */
4987 test_caps
|= TTY_CAP_ITALIC
;
4991 val
= attrs
[LFACE_UNDERLINE_INDEX
];
4992 if (!UNSPECIFIEDP (val
))
4995 return 0; /* ttys can't use colored underlines */
4996 else if (face_attr_equal_p (val
, def_attrs
[LFACE_UNDERLINE_INDEX
]))
4997 return 0; /* same as default */
4999 test_caps
|= TTY_CAP_UNDERLINE
;
5003 val
= attrs
[LFACE_INVERSE_INDEX
];
5004 if (!UNSPECIFIEDP (val
))
5006 if (face_attr_equal_p (val
, def_attrs
[LFACE_INVERSE_INDEX
]))
5007 return 0; /* same as default */
5009 test_caps
|= TTY_CAP_INVERSE
;
5013 /* Color testing. */
5015 /* Default the color indices in FG_TTY_COLOR and BG_TTY_COLOR, since
5016 we use them when calling `tty_capable_p' below, even if the face
5017 specifies no colors. */
5018 fg_tty_color
.pixel
= FACE_TTY_DEFAULT_FG_COLOR
;
5019 bg_tty_color
.pixel
= FACE_TTY_DEFAULT_BG_COLOR
;
5021 /* Check if foreground color is close enough. */
5022 fg
= attrs
[LFACE_FOREGROUND_INDEX
];
5025 Lisp_Object def_fg
= def_attrs
[LFACE_FOREGROUND_INDEX
];
5027 if (face_attr_equal_p (fg
, def_fg
))
5028 return 0; /* same as default */
5029 else if (! tty_lookup_color (f
, fg
, &fg_tty_color
, &fg_std_color
))
5030 return 0; /* not a valid color */
5031 else if (color_distance (&fg_tty_color
, &fg_std_color
)
5032 > TTY_SAME_COLOR_THRESHOLD
)
5033 return 0; /* displayed color is too different */
5035 /* Make sure the color is really different than the default. */
5037 XColor def_fg_color
;
5038 if (tty_lookup_color (f
, def_fg
, &def_fg_color
, 0)
5039 && (color_distance (&fg_tty_color
, &def_fg_color
)
5040 <= TTY_SAME_COLOR_THRESHOLD
))
5045 /* Check if background color is close enough. */
5046 bg
= attrs
[LFACE_BACKGROUND_INDEX
];
5049 Lisp_Object def_bg
= def_attrs
[LFACE_BACKGROUND_INDEX
];
5051 if (face_attr_equal_p (bg
, def_bg
))
5052 return 0; /* same as default */
5053 else if (! tty_lookup_color (f
, bg
, &bg_tty_color
, &bg_std_color
))
5054 return 0; /* not a valid color */
5055 else if (color_distance (&bg_tty_color
, &bg_std_color
)
5056 > TTY_SAME_COLOR_THRESHOLD
)
5057 return 0; /* displayed color is too different */
5059 /* Make sure the color is really different than the default. */
5061 XColor def_bg_color
;
5062 if (tty_lookup_color (f
, def_bg
, &def_bg_color
, 0)
5063 && (color_distance (&bg_tty_color
, &def_bg_color
)
5064 <= TTY_SAME_COLOR_THRESHOLD
))
5069 /* If both foreground and background are requested, see if the
5070 distance between them is OK. We just check to see if the distance
5071 between the tty's foreground and background is close enough to the
5072 distance between the standard foreground and background. */
5073 if (STRINGP (fg
) && STRINGP (bg
))
5076 = (color_distance (&fg_std_color
, &bg_std_color
)
5077 - color_distance (&fg_tty_color
, &bg_tty_color
));
5078 if (delta_delta
> TTY_SAME_COLOR_THRESHOLD
5079 || delta_delta
< -TTY_SAME_COLOR_THRESHOLD
)
5084 /* See if the capabilities we selected above are supported, with the
5086 if (test_caps
!= 0 &&
5087 ! tty_capable_p (FRAME_TTY (f
), test_caps
, fg_tty_color
.pixel
,
5088 bg_tty_color
.pixel
))
5092 /* Hmmm, everything checks out, this terminal must support this face. */
5097 DEFUN ("display-supports-face-attributes-p",
5098 Fdisplay_supports_face_attributes_p
, Sdisplay_supports_face_attributes_p
,
5100 doc
: /* Return non-nil if all the face attributes in ATTRIBUTES are supported.
5101 The optional argument DISPLAY can be a display name, a frame, or
5102 nil (meaning the selected frame's display).
5104 The definition of `supported' is somewhat heuristic, but basically means
5105 that a face containing all the attributes in ATTRIBUTES, when merged
5106 with the default face for display, can be represented in a way that's
5108 \(1) different in appearance than the default face, and
5109 \(2) `close in spirit' to what the attributes specify, if not exact.
5111 Point (2) implies that a `:weight black' attribute will be satisfied by
5112 any display that can display bold, and a `:foreground \"yellow\"' as long
5113 as it can display a yellowish color, but `:slant italic' will _not_ be
5114 satisfied by the tty display code's automatic substitution of a `dim'
5115 face for italic. */)
5116 (Lisp_Object attributes
, Lisp_Object display
)
5118 int supports
= 0, i
;
5121 struct face
*def_face
;
5122 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
5124 if (noninteractive
|| !initialized
)
5125 /* We may not be able to access low-level face information in batch
5126 mode, or before being dumped, and this function is not going to
5127 be very useful in those cases anyway, so just give up. */
5131 frame
= selected_frame
;
5132 else if (FRAMEP (display
))
5136 /* Find any frame on DISPLAY. */
5137 Lisp_Object fl_tail
;
5140 for (fl_tail
= Vframe_list
; CONSP (fl_tail
); fl_tail
= XCDR (fl_tail
))
5142 frame
= XCAR (fl_tail
);
5143 if (!NILP (Fequal (Fcdr (Fassq (Qdisplay
,
5144 XFRAME (frame
)->param_alist
)),
5150 CHECK_LIVE_FRAME (frame
);
5153 for (i
= 0; i
< LFACE_VECTOR_SIZE
; i
++)
5154 attrs
[i
] = Qunspecified
;
5155 merge_face_ref (f
, attributes
, attrs
, 1, 0);
5157 def_face
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
5158 if (def_face
== NULL
)
5160 if (! realize_basic_faces (f
))
5161 error ("Cannot realize default face");
5162 def_face
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
5163 if (def_face
== NULL
)
5164 abort (); /* realize_basic_faces must have set it up */
5167 /* Dispatch to the appropriate handler. */
5168 if (FRAME_TERMCAP_P (f
) || FRAME_MSDOS_P (f
))
5169 supports
= tty_supports_face_attributes_p (f
, attrs
, def_face
);
5170 #ifdef HAVE_WINDOW_SYSTEM
5172 supports
= x_supports_face_attributes_p (f
, attrs
, def_face
);
5175 return supports
? Qt
: Qnil
;
5179 /***********************************************************************
5181 ***********************************************************************/
5183 DEFUN ("internal-set-font-selection-order",
5184 Finternal_set_font_selection_order
,
5185 Sinternal_set_font_selection_order
, 1, 1, 0,
5186 doc
: /* Set font selection order for face font selection to ORDER.
5187 ORDER must be a list of length 4 containing the symbols `:width',
5188 `:height', `:weight', and `:slant'. Face attributes appearing
5189 first in ORDER are matched first, e.g. if `:height' appears before
5190 `:weight' in ORDER, font selection first tries to find a font with
5191 a suitable height, and then tries to match the font weight.
5197 int indices
[DIM (font_sort_order
)];
5200 memset (indices
, 0, sizeof indices
);
5204 CONSP (list
) && i
< DIM (indices
);
5205 list
= XCDR (list
), ++i
)
5207 Lisp_Object attr
= XCAR (list
);
5210 if (EQ (attr
, QCwidth
))
5212 else if (EQ (attr
, QCheight
))
5213 xlfd
= XLFD_POINT_SIZE
;
5214 else if (EQ (attr
, QCweight
))
5216 else if (EQ (attr
, QCslant
))
5221 if (indices
[i
] != 0)
5226 if (!NILP (list
) || i
!= DIM (indices
))
5227 signal_error ("Invalid font sort order", order
);
5228 for (i
= 0; i
< DIM (font_sort_order
); ++i
)
5229 if (indices
[i
] == 0)
5230 signal_error ("Invalid font sort order", order
);
5232 if (memcmp (indices
, font_sort_order
, sizeof indices
) != 0)
5234 memcpy (font_sort_order
, indices
, sizeof font_sort_order
);
5235 free_all_realized_faces (Qnil
);
5238 font_update_sort_order (font_sort_order
);
5244 DEFUN ("internal-set-alternative-font-family-alist",
5245 Finternal_set_alternative_font_family_alist
,
5246 Sinternal_set_alternative_font_family_alist
, 1, 1, 0,
5247 doc
: /* Define alternative font families to try in face font selection.
5248 ALIST is an alist of (FAMILY ALTERNATIVE1 ALTERNATIVE2 ...) entries.
5249 Each ALTERNATIVE is tried in order if no fonts of font family FAMILY can
5250 be found. Value is ALIST. */)
5253 Lisp_Object entry
, tail
, tail2
;
5256 alist
= Fcopy_sequence (alist
);
5257 for (tail
= alist
; CONSP (tail
); tail
= XCDR (tail
))
5259 entry
= XCAR (tail
);
5261 entry
= Fcopy_sequence (entry
);
5262 XSETCAR (tail
, entry
);
5263 for (tail2
= entry
; CONSP (tail2
); tail2
= XCDR (tail2
))
5264 XSETCAR (tail2
, Fintern (XCAR (tail2
), Qnil
));
5267 Vface_alternative_font_family_alist
= alist
;
5268 free_all_realized_faces (Qnil
);
5273 DEFUN ("internal-set-alternative-font-registry-alist",
5274 Finternal_set_alternative_font_registry_alist
,
5275 Sinternal_set_alternative_font_registry_alist
, 1, 1, 0,
5276 doc
: /* Define alternative font registries to try in face font selection.
5277 ALIST is an alist of (REGISTRY ALTERNATIVE1 ALTERNATIVE2 ...) entries.
5278 Each ALTERNATIVE is tried in order if no fonts of font registry REGISTRY can
5279 be found. Value is ALIST. */)
5282 Lisp_Object entry
, tail
, tail2
;
5285 alist
= Fcopy_sequence (alist
);
5286 for (tail
= alist
; CONSP (tail
); tail
= XCDR (tail
))
5288 entry
= XCAR (tail
);
5290 entry
= Fcopy_sequence (entry
);
5291 XSETCAR (tail
, entry
);
5292 for (tail2
= entry
; CONSP (tail2
); tail2
= XCDR (tail2
))
5293 XSETCAR (tail2
, Fdowncase (XCAR (tail2
)));
5295 Vface_alternative_font_registry_alist
= alist
;
5296 free_all_realized_faces (Qnil
);
5301 #ifdef HAVE_WINDOW_SYSTEM
5303 /* Return the fontset id of the base fontset name or alias name given
5304 by the fontset attribute of ATTRS. Value is -1 if the fontset
5305 attribute of ATTRS doesn't name a fontset. */
5308 face_fontset (Lisp_Object
*attrs
)
5312 name
= attrs
[LFACE_FONTSET_INDEX
];
5313 if (!STRINGP (name
))
5315 return fs_query_fontset (name
, 0);
5318 #endif /* HAVE_WINDOW_SYSTEM */
5322 /***********************************************************************
5324 ***********************************************************************/
5326 /* Realize basic faces on frame F. Value is zero if frame parameters
5327 of F don't contain enough information needed to realize the default
5331 realize_basic_faces (struct frame
*f
)
5334 ptrdiff_t count
= SPECPDL_INDEX ();
5336 /* Block input here so that we won't be surprised by an X expose
5337 event, for instance, without having the faces set up. */
5339 specbind (Qscalable_fonts_allowed
, Qt
);
5341 if (realize_default_face (f
))
5343 realize_named_face (f
, Qmode_line
, MODE_LINE_FACE_ID
);
5344 realize_named_face (f
, Qmode_line_inactive
, MODE_LINE_INACTIVE_FACE_ID
);
5345 realize_named_face (f
, Qtool_bar
, TOOL_BAR_FACE_ID
);
5346 realize_named_face (f
, Qfringe
, FRINGE_FACE_ID
);
5347 realize_named_face (f
, Qheader_line
, HEADER_LINE_FACE_ID
);
5348 realize_named_face (f
, Qscroll_bar
, SCROLL_BAR_FACE_ID
);
5349 realize_named_face (f
, Qborder
, BORDER_FACE_ID
);
5350 realize_named_face (f
, Qcursor
, CURSOR_FACE_ID
);
5351 realize_named_face (f
, Qmouse
, MOUSE_FACE_ID
);
5352 realize_named_face (f
, Qmenu
, MENU_FACE_ID
);
5353 realize_named_face (f
, Qvertical_border
, VERTICAL_BORDER_FACE_ID
);
5355 /* Reflect changes in the `menu' face in menu bars. */
5356 if (FRAME_FACE_CACHE (f
)->menu_face_changed_p
)
5358 FRAME_FACE_CACHE (f
)->menu_face_changed_p
= 0;
5359 #ifdef USE_X_TOOLKIT
5360 if (FRAME_WINDOW_P (f
))
5361 x_update_menu_appearance (f
);
5368 unbind_to (count
, Qnil
);
5374 /* Realize the default face on frame F. If the face is not fully
5375 specified, make it fully-specified. Attributes of the default face
5376 that are not explicitly specified are taken from frame parameters. */
5379 realize_default_face (struct frame
*f
)
5381 struct face_cache
*c
= FRAME_FACE_CACHE (f
);
5383 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
5386 /* If the `default' face is not yet known, create it. */
5387 lface
= lface_from_face_name (f
, Qdefault
, 0);
5391 XSETFRAME (frame
, f
);
5392 lface
= Finternal_make_lisp_face (Qdefault
, frame
);
5395 #ifdef HAVE_WINDOW_SYSTEM
5396 if (FRAME_WINDOW_P (f
))
5398 Lisp_Object font_object
;
5400 XSETFONT (font_object
, FRAME_FONT (f
));
5401 set_lface_from_font (f
, lface
, font_object
, f
->default_face_done_p
);
5402 LFACE_FONTSET (lface
) = fontset_name (FRAME_FONTSET (f
));
5403 f
->default_face_done_p
= 1;
5405 #endif /* HAVE_WINDOW_SYSTEM */
5407 if (!FRAME_WINDOW_P (f
))
5409 LFACE_FAMILY (lface
) = build_string ("default");
5410 LFACE_FOUNDRY (lface
) = LFACE_FAMILY (lface
);
5411 LFACE_SWIDTH (lface
) = Qnormal
;
5412 LFACE_HEIGHT (lface
) = make_number (1);
5413 if (UNSPECIFIEDP (LFACE_WEIGHT (lface
)))
5414 LFACE_WEIGHT (lface
) = Qnormal
;
5415 if (UNSPECIFIEDP (LFACE_SLANT (lface
)))
5416 LFACE_SLANT (lface
) = Qnormal
;
5417 if (UNSPECIFIEDP (LFACE_FONTSET (lface
)))
5418 LFACE_FONTSET (lface
) = Qnil
;
5421 if (UNSPECIFIEDP (LFACE_UNDERLINE (lface
)))
5422 LFACE_UNDERLINE (lface
) = Qnil
;
5424 if (UNSPECIFIEDP (LFACE_OVERLINE (lface
)))
5425 LFACE_OVERLINE (lface
) = Qnil
;
5427 if (UNSPECIFIEDP (LFACE_STRIKE_THROUGH (lface
)))
5428 LFACE_STRIKE_THROUGH (lface
) = Qnil
;
5430 if (UNSPECIFIEDP (LFACE_BOX (lface
)))
5431 LFACE_BOX (lface
) = Qnil
;
5433 if (UNSPECIFIEDP (LFACE_INVERSE (lface
)))
5434 LFACE_INVERSE (lface
) = Qnil
;
5436 if (UNSPECIFIEDP (LFACE_FOREGROUND (lface
)))
5438 /* This function is called so early that colors are not yet
5439 set in the frame parameter list. */
5440 Lisp_Object color
= Fassq (Qforeground_color
, f
->param_alist
);
5442 if (CONSP (color
) && STRINGP (XCDR (color
)))
5443 LFACE_FOREGROUND (lface
) = XCDR (color
);
5444 else if (FRAME_WINDOW_P (f
))
5446 else if (FRAME_INITIAL_P (f
) || FRAME_TERMCAP_P (f
) || FRAME_MSDOS_P (f
))
5447 LFACE_FOREGROUND (lface
) = build_string (unspecified_fg
);
5452 if (UNSPECIFIEDP (LFACE_BACKGROUND (lface
)))
5454 /* This function is called so early that colors are not yet
5455 set in the frame parameter list. */
5456 Lisp_Object color
= Fassq (Qbackground_color
, f
->param_alist
);
5457 if (CONSP (color
) && STRINGP (XCDR (color
)))
5458 LFACE_BACKGROUND (lface
) = XCDR (color
);
5459 else if (FRAME_WINDOW_P (f
))
5461 else if (FRAME_INITIAL_P (f
) || FRAME_TERMCAP_P (f
) || FRAME_MSDOS_P (f
))
5462 LFACE_BACKGROUND (lface
) = build_string (unspecified_bg
);
5467 if (UNSPECIFIEDP (LFACE_STIPPLE (lface
)))
5468 LFACE_STIPPLE (lface
) = Qnil
;
5470 /* Realize the face; it must be fully-specified now. */
5471 eassert (lface_fully_specified_p (XVECTOR (lface
)->contents
));
5472 check_lface (lface
);
5473 memcpy (attrs
, XVECTOR (lface
)->contents
, sizeof attrs
);
5474 face
= realize_face (c
, attrs
, DEFAULT_FACE_ID
);
5476 #ifdef HAVE_WINDOW_SYSTEM
5477 #ifdef HAVE_X_WINDOWS
5478 if (FRAME_X_P (f
) && face
->font
!= FRAME_FONT (f
))
5480 /* This can happen when making a frame on a display that does
5481 not support the default font. */
5485 /* Otherwise, the font specified for the frame was not
5486 acceptable as a font for the default face (perhaps because
5487 auto-scaled fonts are rejected), so we must adjust the frame
5489 x_set_font (f
, LFACE_FONT (lface
), Qnil
);
5491 #endif /* HAVE_X_WINDOWS */
5492 #endif /* HAVE_WINDOW_SYSTEM */
5497 /* Realize basic faces other than the default face in face cache C.
5498 SYMBOL is the face name, ID is the face id the realized face must
5499 have. The default face must have been realized already. */
5502 realize_named_face (struct frame
*f
, Lisp_Object symbol
, int id
)
5504 struct face_cache
*c
= FRAME_FACE_CACHE (f
);
5505 Lisp_Object lface
= lface_from_face_name (f
, symbol
, 0);
5506 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
5507 Lisp_Object symbol_attrs
[LFACE_VECTOR_SIZE
];
5509 /* The default face must exist and be fully specified. */
5510 get_lface_attributes_no_remap (f
, Qdefault
, attrs
, 1);
5511 check_lface_attrs (attrs
);
5512 eassert (lface_fully_specified_p (attrs
));
5514 /* If SYMBOL isn't know as a face, create it. */
5518 XSETFRAME (frame
, f
);
5519 lface
= Finternal_make_lisp_face (symbol
, frame
);
5522 /* Merge SYMBOL's face with the default face. */
5523 get_lface_attributes_no_remap (f
, symbol
, symbol_attrs
, 1);
5524 merge_face_vectors (f
, symbol_attrs
, attrs
, 0);
5526 /* Realize the face. */
5527 realize_face (c
, attrs
, id
);
5531 /* Realize the fully-specified face with attributes ATTRS in face
5532 cache CACHE for ASCII characters. If FORMER_FACE_ID is
5533 non-negative, it is an ID of face to remove before caching the new
5534 face. Value is a pointer to the newly created realized face. */
5536 static struct face
*
5537 realize_face (struct face_cache
*cache
, Lisp_Object
*attrs
, int former_face_id
)
5541 /* LFACE must be fully specified. */
5542 eassert (cache
!= NULL
);
5543 check_lface_attrs (attrs
);
5545 if (former_face_id
>= 0 && cache
->used
> former_face_id
)
5547 /* Remove the former face. */
5548 struct face
*former_face
= cache
->faces_by_id
[former_face_id
];
5549 uncache_face (cache
, former_face
);
5550 free_realized_face (cache
->f
, former_face
);
5551 SET_FRAME_GARBAGED (cache
->f
);
5554 if (FRAME_WINDOW_P (cache
->f
))
5555 face
= realize_x_face (cache
, attrs
);
5556 else if (FRAME_TERMCAP_P (cache
->f
) || FRAME_MSDOS_P (cache
->f
))
5557 face
= realize_tty_face (cache
, attrs
);
5558 else if (FRAME_INITIAL_P (cache
->f
))
5560 /* Create a dummy face. */
5561 face
= make_realized_face (attrs
);
5566 /* Insert the new face. */
5567 cache_face (cache
, face
, lface_hash (attrs
));
5572 #ifdef HAVE_WINDOW_SYSTEM
5573 /* Realize the fully-specified face that uses FONT-OBJECT and has the
5574 same attributes as BASE_FACE except for the font on frame F.
5575 FONT-OBJECT may be nil, in which case, realized a face of
5578 static struct face
*
5579 realize_non_ascii_face (struct frame
*f
, Lisp_Object font_object
,
5580 struct face
*base_face
)
5582 struct face_cache
*cache
= FRAME_FACE_CACHE (f
);
5585 face
= (struct face
*) xmalloc (sizeof *face
);
5590 = (! NILP (font_object
)
5591 && FONT_WEIGHT_NAME_NUMERIC (face
->lface
[LFACE_WEIGHT_INDEX
]) > 100
5592 && FONT_WEIGHT_NUMERIC (font_object
) <= 100);
5594 /* Don't try to free the colors copied bitwise from BASE_FACE. */
5595 face
->colors_copied_bitwise_p
= 1;
5596 face
->font
= NILP (font_object
) ? NULL
: XFONT_OBJECT (font_object
);
5599 cache_face (cache
, face
, face
->hash
);
5603 #endif /* HAVE_WINDOW_SYSTEM */
5606 /* Realize the fully-specified face with attributes ATTRS in face
5607 cache CACHE for ASCII characters. Do it for X frame CACHE->f. If
5608 the new face doesn't share font with the default face, a fontname
5609 is allocated from the heap and set in `font_name' of the new face,
5610 but it is not yet loaded here. Value is a pointer to the newly
5611 created realized face. */
5613 static struct face
*
5614 realize_x_face (struct face_cache
*cache
, Lisp_Object
*attrs
)
5616 struct face
*face
= NULL
;
5617 #ifdef HAVE_WINDOW_SYSTEM
5618 struct face
*default_face
;
5620 Lisp_Object stipple
, underline
, overline
, strike_through
, box
;
5622 eassert (FRAME_WINDOW_P (cache
->f
));
5624 /* Allocate a new realized face. */
5625 face
= make_realized_face (attrs
);
5626 face
->ascii_face
= face
;
5630 /* Determine the font to use. Most of the time, the font will be
5631 the same as the font of the default face, so try that first. */
5632 default_face
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
5634 && lface_same_font_attributes_p (default_face
->lface
, attrs
))
5636 face
->font
= default_face
->font
;
5638 = make_fontset_for_ascii_face (f
, default_face
->fontset
, face
);
5642 /* If the face attribute ATTRS specifies a fontset, use it as
5643 the base of a new realized fontset. Otherwise, use the same
5644 base fontset as of the default face. The base determines
5645 registry and encoding of a font. It may also determine
5646 foundry and family. The other fields of font name pattern
5647 are constructed from ATTRS. */
5648 int fontset
= face_fontset (attrs
);
5650 /* If we are realizing the default face, ATTRS should specify a
5651 fontset. In other words, if FONTSET is -1, we are not
5652 realizing the default face, thus the default face should have
5653 already been realized. */
5657 fontset
= default_face
->fontset
;
5661 if (! FONT_OBJECT_P (attrs
[LFACE_FONT_INDEX
]))
5662 attrs
[LFACE_FONT_INDEX
]
5663 = font_load_for_lface (f
, attrs
, attrs
[LFACE_FONT_INDEX
]);
5664 if (FONT_OBJECT_P (attrs
[LFACE_FONT_INDEX
]))
5666 face
->font
= XFONT_OBJECT (attrs
[LFACE_FONT_INDEX
]);
5667 face
->fontset
= make_fontset_for_ascii_face (f
, fontset
, face
);
5677 && FONT_WEIGHT_NAME_NUMERIC (attrs
[LFACE_WEIGHT_INDEX
]) > 100
5678 && FONT_WEIGHT_NUMERIC (attrs
[LFACE_FONT_INDEX
]) <= 100)
5679 face
->overstrike
= 1;
5681 /* Load colors, and set remaining attributes. */
5683 load_face_colors (f
, face
, attrs
);
5686 box
= attrs
[LFACE_BOX_INDEX
];
5689 /* A simple box of line width 1 drawn in color given by
5691 face
->box_color
= load_color (f
, face
, attrs
[LFACE_BOX_INDEX
],
5693 face
->box
= FACE_SIMPLE_BOX
;
5694 face
->box_line_width
= 1;
5696 else if (INTEGERP (box
))
5698 /* Simple box of specified line width in foreground color of the
5700 eassert (XINT (box
) != 0);
5701 face
->box
= FACE_SIMPLE_BOX
;
5702 face
->box_line_width
= XINT (box
);
5703 face
->box_color
= face
->foreground
;
5704 face
->box_color_defaulted_p
= 1;
5706 else if (CONSP (box
))
5708 /* `(:width WIDTH :color COLOR :shadow SHADOW)'. SHADOW
5709 being one of `raised' or `sunken'. */
5710 face
->box
= FACE_SIMPLE_BOX
;
5711 face
->box_color
= face
->foreground
;
5712 face
->box_color_defaulted_p
= 1;
5713 face
->box_line_width
= 1;
5717 Lisp_Object keyword
, value
;
5719 keyword
= XCAR (box
);
5727 if (EQ (keyword
, QCline_width
))
5729 if (INTEGERP (value
) && XINT (value
) != 0)
5730 face
->box_line_width
= XINT (value
);
5732 else if (EQ (keyword
, QCcolor
))
5734 if (STRINGP (value
))
5736 face
->box_color
= load_color (f
, face
, value
,
5738 face
->use_box_color_for_shadows_p
= 1;
5741 else if (EQ (keyword
, QCstyle
))
5743 if (EQ (value
, Qreleased_button
))
5744 face
->box
= FACE_RAISED_BOX
;
5745 else if (EQ (value
, Qpressed_button
))
5746 face
->box
= FACE_SUNKEN_BOX
;
5751 /* Text underline, overline, strike-through. */
5753 underline
= attrs
[LFACE_UNDERLINE_INDEX
];
5754 if (EQ (underline
, Qt
))
5756 /* Use default color (same as foreground color). */
5757 face
->underline_p
= 1;
5758 face
->underline_type
= FACE_UNDER_LINE
;
5759 face
->underline_defaulted_p
= 1;
5760 face
->underline_color
= 0;
5762 else if (STRINGP (underline
))
5764 /* Use specified color. */
5765 face
->underline_p
= 1;
5766 face
->underline_type
= FACE_UNDER_LINE
;
5767 face
->underline_defaulted_p
= 0;
5768 face
->underline_color
5769 = load_color (f
, face
, underline
,
5770 LFACE_UNDERLINE_INDEX
);
5772 else if (NILP (underline
))
5774 face
->underline_p
= 0;
5775 face
->underline_defaulted_p
= 0;
5776 face
->underline_color
= 0;
5778 else if (CONSP (underline
))
5780 /* `(:color COLOR :style STYLE)'.
5781 STYLE being one of `line' or `wave'. */
5782 face
->underline_p
= 1;
5783 face
->underline_color
= 0;
5784 face
->underline_defaulted_p
= 1;
5785 face
->underline_type
= FACE_UNDER_LINE
;
5787 while (CONSP (underline
))
5789 Lisp_Object keyword
, value
;
5791 keyword
= XCAR (underline
);
5792 underline
= XCDR (underline
);
5794 if (!CONSP (underline
))
5796 value
= XCAR (underline
);
5797 underline
= XCDR (underline
);
5799 if (EQ (keyword
, QCcolor
))
5801 if (EQ (value
, Qforeground_color
))
5803 face
->underline_defaulted_p
= 1;
5804 face
->underline_color
= 0;
5806 else if (STRINGP (value
))
5808 face
->underline_defaulted_p
= 0;
5809 face
->underline_color
= load_color (f
, face
, value
,
5810 LFACE_UNDERLINE_INDEX
);
5813 else if (EQ (keyword
, QCstyle
))
5815 if (EQ (value
, Qline
))
5816 face
->underline_type
= FACE_UNDER_LINE
;
5817 else if (EQ (value
, Qwave
))
5818 face
->underline_type
= FACE_UNDER_WAVE
;
5823 overline
= attrs
[LFACE_OVERLINE_INDEX
];
5824 if (STRINGP (overline
))
5826 face
->overline_color
5827 = load_color (f
, face
, attrs
[LFACE_OVERLINE_INDEX
],
5828 LFACE_OVERLINE_INDEX
);
5829 face
->overline_p
= 1;
5831 else if (EQ (overline
, Qt
))
5833 face
->overline_color
= face
->foreground
;
5834 face
->overline_color_defaulted_p
= 1;
5835 face
->overline_p
= 1;
5838 strike_through
= attrs
[LFACE_STRIKE_THROUGH_INDEX
];
5839 if (STRINGP (strike_through
))
5841 face
->strike_through_color
5842 = load_color (f
, face
, attrs
[LFACE_STRIKE_THROUGH_INDEX
],
5843 LFACE_STRIKE_THROUGH_INDEX
);
5844 face
->strike_through_p
= 1;
5846 else if (EQ (strike_through
, Qt
))
5848 face
->strike_through_color
= face
->foreground
;
5849 face
->strike_through_color_defaulted_p
= 1;
5850 face
->strike_through_p
= 1;
5853 stipple
= attrs
[LFACE_STIPPLE_INDEX
];
5854 if (!NILP (stipple
))
5855 face
->stipple
= load_pixmap (f
, stipple
, &face
->pixmap_w
, &face
->pixmap_h
);
5856 #endif /* HAVE_WINDOW_SYSTEM */
5862 /* Map a specified color of face FACE on frame F to a tty color index.
5863 IDX is either LFACE_FOREGROUND_INDEX or LFACE_BACKGROUND_INDEX, and
5864 specifies which color to map. Set *DEFAULTED to 1 if mapping to the
5865 default foreground/background colors. */
5868 map_tty_color (struct frame
*f
, struct face
*face
,
5869 enum lface_attribute_index idx
, int *defaulted
)
5871 Lisp_Object frame
, color
, def
;
5872 int foreground_p
= idx
== LFACE_FOREGROUND_INDEX
;
5873 unsigned long default_pixel
=
5874 foreground_p
? FACE_TTY_DEFAULT_FG_COLOR
: FACE_TTY_DEFAULT_BG_COLOR
;
5875 unsigned long pixel
= default_pixel
;
5877 unsigned long default_other_pixel
=
5878 foreground_p
? FACE_TTY_DEFAULT_BG_COLOR
: FACE_TTY_DEFAULT_FG_COLOR
;
5881 eassert (idx
== LFACE_FOREGROUND_INDEX
|| idx
== LFACE_BACKGROUND_INDEX
);
5883 XSETFRAME (frame
, f
);
5884 color
= face
->lface
[idx
];
5888 && CONSP (Vtty_defined_color_alist
)
5889 && (def
= assq_no_quit (color
, call1 (Qtty_color_alist
, frame
)),
5892 /* Associations in tty-defined-color-alist are of the form
5893 (NAME INDEX R G B). We need the INDEX part. */
5894 pixel
= XINT (XCAR (XCDR (def
)));
5897 if (pixel
== default_pixel
&& STRINGP (color
))
5899 pixel
= load_color (f
, face
, color
, idx
);
5902 /* If the foreground of the default face is the default color,
5903 use the foreground color defined by the frame. */
5904 if (FRAME_MSDOS_P (f
))
5906 if (pixel
== default_pixel
5907 || pixel
== FACE_TTY_DEFAULT_COLOR
)
5910 pixel
= FRAME_FOREGROUND_PIXEL (f
);
5912 pixel
= FRAME_BACKGROUND_PIXEL (f
);
5913 face
->lface
[idx
] = tty_color_name (f
, pixel
);
5916 else if (pixel
== default_other_pixel
)
5919 pixel
= FRAME_BACKGROUND_PIXEL (f
);
5921 pixel
= FRAME_FOREGROUND_PIXEL (f
);
5922 face
->lface
[idx
] = tty_color_name (f
, pixel
);
5930 face
->foreground
= pixel
;
5932 face
->background
= pixel
;
5936 /* Realize the fully-specified face with attributes ATTRS in face
5937 cache CACHE for ASCII characters. Do it for TTY frame CACHE->f.
5938 Value is a pointer to the newly created realized face. */
5940 static struct face
*
5941 realize_tty_face (struct face_cache
*cache
, Lisp_Object
*attrs
)
5945 int face_colors_defaulted
= 0;
5946 struct frame
*f
= cache
->f
;
5948 /* Frame must be a termcap frame. */
5949 eassert (FRAME_TERMCAP_P (cache
->f
) || FRAME_MSDOS_P (cache
->f
));
5951 /* Allocate a new realized face. */
5952 face
= make_realized_face (attrs
);
5954 face
->font_name
= FRAME_MSDOS_P (cache
->f
) ? "ms-dos" : "tty";
5957 /* Map face attributes to TTY appearances. */
5958 weight
= FONT_WEIGHT_NAME_NUMERIC (attrs
[LFACE_WEIGHT_INDEX
]);
5959 slant
= FONT_SLANT_NAME_NUMERIC (attrs
[LFACE_SLANT_INDEX
]);
5961 face
->tty_bold_p
= 1;
5963 face
->tty_italic_p
= 1;
5964 if (!NILP (attrs
[LFACE_UNDERLINE_INDEX
]))
5965 face
->tty_underline_p
= 1;
5966 if (!NILP (attrs
[LFACE_INVERSE_INDEX
]))
5967 face
->tty_reverse_p
= 1;
5969 /* Map color names to color indices. */
5970 map_tty_color (f
, face
, LFACE_FOREGROUND_INDEX
, &face_colors_defaulted
);
5971 map_tty_color (f
, face
, LFACE_BACKGROUND_INDEX
, &face_colors_defaulted
);
5973 /* Swap colors if face is inverse-video. If the colors are taken
5974 from the frame colors, they are already inverted, since the
5975 frame-creation function calls x-handle-reverse-video. */
5976 if (face
->tty_reverse_p
&& !face_colors_defaulted
)
5978 unsigned long tem
= face
->foreground
;
5979 face
->foreground
= face
->background
;
5980 face
->background
= tem
;
5983 if (tty_suppress_bold_inverse_default_colors_p
5985 && face
->background
== FACE_TTY_DEFAULT_FG_COLOR
5986 && face
->foreground
== FACE_TTY_DEFAULT_BG_COLOR
)
5987 face
->tty_bold_p
= 0;
5993 DEFUN ("tty-suppress-bold-inverse-default-colors",
5994 Ftty_suppress_bold_inverse_default_colors
,
5995 Stty_suppress_bold_inverse_default_colors
, 1, 1, 0,
5996 doc
: /* Suppress/allow boldness of faces with inverse default colors.
5997 SUPPRESS non-nil means suppress it.
5998 This affects bold faces on TTYs whose foreground is the default background
5999 color of the display and whose background is the default foreground color.
6000 For such faces, the bold face attribute is ignored if this variable
6002 (Lisp_Object suppress
)
6004 tty_suppress_bold_inverse_default_colors_p
= !NILP (suppress
);
6005 ++face_change_count
;
6011 /***********************************************************************
6013 ***********************************************************************/
6015 /* Return the ID of the face to use to display character CH with face
6016 property PROP on frame F in current_buffer. */
6019 compute_char_face (struct frame
*f
, int ch
, Lisp_Object prop
)
6023 if (NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
6028 struct face
*face
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
6029 face_id
= FACE_FOR_CHAR (f
, face
, ch
, -1, Qnil
);
6033 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
6034 struct face
*default_face
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
6035 memcpy (attrs
, default_face
->lface
, sizeof attrs
);
6036 merge_face_ref (f
, prop
, attrs
, 1, 0);
6037 face_id
= lookup_face (f
, attrs
);
6043 /* Return the face ID associated with buffer position POS for
6044 displaying ASCII characters. Return in *ENDPTR the position at
6045 which a different face is needed, as far as text properties and
6046 overlays are concerned. W is a window displaying current_buffer.
6048 REGION_BEG, REGION_END delimit the region, so it can be
6051 LIMIT is a position not to scan beyond. That is to limit the time
6052 this function can take.
6054 If MOUSE is non-zero, use the character's mouse-face, not its face.
6056 BASE_FACE_ID, if non-negative, specifies a base face id to use
6057 instead of DEFAULT_FACE_ID.
6059 The face returned is suitable for displaying ASCII characters. */
6062 face_at_buffer_position (struct window
*w
, ptrdiff_t pos
,
6063 ptrdiff_t region_beg
, ptrdiff_t region_end
,
6064 ptrdiff_t *endptr
, ptrdiff_t limit
,
6065 int mouse
, int base_face_id
)
6067 struct frame
*f
= XFRAME (w
->frame
);
6068 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
6069 Lisp_Object prop
, position
;
6070 ptrdiff_t i
, noverlays
;
6071 Lisp_Object
*overlay_vec
;
6074 Lisp_Object propname
= mouse
? Qmouse_face
: Qface
;
6075 Lisp_Object limit1
, end
;
6076 struct face
*default_face
;
6078 /* W must display the current buffer. We could write this function
6079 to use the frame and buffer of W, but right now it doesn't. */
6080 /* eassert (XBUFFER (w->buffer) == current_buffer); */
6082 XSETFRAME (frame
, f
);
6083 XSETFASTINT (position
, pos
);
6086 if (pos
< region_beg
&& region_beg
< endpos
)
6087 endpos
= region_beg
;
6089 /* Get the `face' or `mouse_face' text property at POS, and
6090 determine the next position at which the property changes. */
6091 prop
= Fget_text_property (position
, propname
, w
->buffer
);
6092 XSETFASTINT (limit1
, (limit
< endpos
? limit
: endpos
));
6093 end
= Fnext_single_property_change (position
, propname
, w
->buffer
, limit1
);
6095 endpos
= XINT (end
);
6097 /* Look at properties from overlays. */
6099 ptrdiff_t next_overlay
;
6101 GET_OVERLAYS_AT (pos
, overlay_vec
, noverlays
, &next_overlay
, 0);
6102 if (next_overlay
< endpos
)
6103 endpos
= next_overlay
;
6111 if (base_face_id
>= 0)
6112 face_id
= base_face_id
;
6113 else if (NILP (Vface_remapping_alist
))
6114 face_id
= DEFAULT_FACE_ID
;
6116 face_id
= lookup_basic_face (f
, DEFAULT_FACE_ID
);
6118 default_face
= FACE_FROM_ID (f
, face_id
);
6121 /* Optimize common cases where we can use the default face. */
6124 && !(pos
>= region_beg
&& pos
< region_end
))
6125 return default_face
->id
;
6127 /* Begin with attributes from the default face. */
6128 memcpy (attrs
, default_face
->lface
, sizeof attrs
);
6130 /* Merge in attributes specified via text properties. */
6132 merge_face_ref (f
, prop
, attrs
, 1, 0);
6134 /* Now merge the overlay data. */
6135 noverlays
= sort_overlays (overlay_vec
, noverlays
, w
);
6136 for (i
= 0; i
< noverlays
; i
++)
6141 prop
= Foverlay_get (overlay_vec
[i
], propname
);
6143 merge_face_ref (f
, prop
, attrs
, 1, 0);
6145 oend
= OVERLAY_END (overlay_vec
[i
]);
6146 oendpos
= OVERLAY_POSITION (oend
);
6147 if (oendpos
< endpos
)
6151 /* If in the region, merge in the region face. */
6152 if (pos
>= region_beg
&& pos
< region_end
)
6154 merge_named_face (f
, Qregion
, attrs
, 0);
6156 if (region_end
< endpos
)
6157 endpos
= region_end
;
6162 /* Look up a realized face with the given face attributes,
6163 or realize a new one for ASCII characters. */
6164 return lookup_face (f
, attrs
);
6167 /* Return the face ID at buffer position POS for displaying ASCII
6168 characters associated with overlay strings for overlay OVERLAY.
6170 Like face_at_buffer_position except for OVERLAY. Currently it
6171 simply disregards the `face' properties of all overlays. */
6174 face_for_overlay_string (struct window
*w
, ptrdiff_t pos
,
6175 ptrdiff_t region_beg
, ptrdiff_t region_end
,
6176 ptrdiff_t *endptr
, ptrdiff_t limit
,
6177 int mouse
, Lisp_Object overlay
)
6179 struct frame
*f
= XFRAME (w
->frame
);
6180 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
6181 Lisp_Object prop
, position
;
6184 Lisp_Object propname
= mouse
? Qmouse_face
: Qface
;
6185 Lisp_Object limit1
, end
;
6186 struct face
*default_face
;
6188 /* W must display the current buffer. We could write this function
6189 to use the frame and buffer of W, but right now it doesn't. */
6190 /* eassert (XBUFFER (w->buffer) == current_buffer); */
6192 XSETFRAME (frame
, f
);
6193 XSETFASTINT (position
, pos
);
6196 if (pos
< region_beg
&& region_beg
< endpos
)
6197 endpos
= region_beg
;
6199 /* Get the `face' or `mouse_face' text property at POS, and
6200 determine the next position at which the property changes. */
6201 prop
= Fget_text_property (position
, propname
, w
->buffer
);
6202 XSETFASTINT (limit1
, (limit
< endpos
? limit
: endpos
));
6203 end
= Fnext_single_property_change (position
, propname
, w
->buffer
, limit1
);
6205 endpos
= XINT (end
);
6209 /* Optimize common case where we can use the default face. */
6211 && !(pos
>= region_beg
&& pos
< region_end
)
6212 && NILP (Vface_remapping_alist
))
6213 return DEFAULT_FACE_ID
;
6215 /* Begin with attributes from the default face. */
6216 default_face
= FACE_FROM_ID (f
, lookup_basic_face (f
, DEFAULT_FACE_ID
));
6217 memcpy (attrs
, default_face
->lface
, sizeof attrs
);
6219 /* Merge in attributes specified via text properties. */
6221 merge_face_ref (f
, prop
, attrs
, 1, 0);
6223 /* If in the region, merge in the region face. */
6224 if (pos
>= region_beg
&& pos
< region_end
)
6226 merge_named_face (f
, Qregion
, attrs
, 0);
6228 if (region_end
< endpos
)
6229 endpos
= region_end
;
6234 /* Look up a realized face with the given face attributes,
6235 or realize a new one for ASCII characters. */
6236 return lookup_face (f
, attrs
);
6240 /* Compute the face at character position POS in Lisp string STRING on
6241 window W, for ASCII characters.
6243 If STRING is an overlay string, it comes from position BUFPOS in
6244 current_buffer, otherwise BUFPOS is zero to indicate that STRING is
6245 not an overlay string. W must display the current buffer.
6246 REGION_BEG and REGION_END give the start and end positions of the
6247 region; both are -1 if no region is visible.
6249 BASE_FACE_ID is the id of a face to merge with. For strings coming
6250 from overlays or the `display' property it is the face at BUFPOS.
6252 If MOUSE_P is non-zero, use the character's mouse-face, not its face.
6254 Set *ENDPTR to the next position where to check for faces in
6255 STRING; -1 if the face is constant from POS to the end of the
6258 Value is the id of the face to use. The face returned is suitable
6259 for displaying ASCII characters. */
6262 face_at_string_position (struct window
*w
, Lisp_Object string
,
6263 ptrdiff_t pos
, ptrdiff_t bufpos
,
6264 ptrdiff_t region_beg
, ptrdiff_t region_end
,
6265 ptrdiff_t *endptr
, enum face_id base_face_id
,
6268 Lisp_Object prop
, position
, end
, limit
;
6269 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
6270 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
6271 struct face
*base_face
;
6272 int multibyte_p
= STRING_MULTIBYTE (string
);
6273 Lisp_Object prop_name
= mouse_p
? Qmouse_face
: Qface
;
6275 /* Get the value of the face property at the current position within
6276 STRING. Value is nil if there is no face property. */
6277 XSETFASTINT (position
, pos
);
6278 prop
= Fget_text_property (position
, prop_name
, string
);
6280 /* Get the next position at which to check for faces. Value of end
6281 is nil if face is constant all the way to the end of the string.
6282 Otherwise it is a string position where to check faces next.
6283 Limit is the maximum position up to which to check for property
6284 changes in Fnext_single_property_change. Strings are usually
6285 short, so set the limit to the end of the string. */
6286 XSETFASTINT (limit
, SCHARS (string
));
6287 end
= Fnext_single_property_change (position
, prop_name
, string
, limit
);
6289 *endptr
= XFASTINT (end
);
6293 base_face
= FACE_FROM_ID (f
, base_face_id
);
6294 eassert (base_face
);
6296 /* Optimize the default case that there is no face property and we
6297 are not in the region. */
6299 && (base_face_id
!= DEFAULT_FACE_ID
6300 /* BUFPOS <= 0 means STRING is not an overlay string, so
6301 that the region doesn't have to be taken into account. */
6303 || bufpos
< region_beg
6304 || bufpos
>= region_end
)
6306 /* We can't realize faces for different charsets differently
6307 if we don't have fonts, so we can stop here if not working
6308 on a window-system frame. */
6309 || !FRAME_WINDOW_P (f
)
6310 || FACE_SUITABLE_FOR_ASCII_CHAR_P (base_face
, 0)))
6311 return base_face
->id
;
6313 /* Begin with attributes from the base face. */
6314 memcpy (attrs
, base_face
->lface
, sizeof attrs
);
6316 /* Merge in attributes specified via text properties. */
6318 merge_face_ref (f
, prop
, attrs
, 1, 0);
6320 /* If in the region, merge in the region face. */
6322 && bufpos
>= region_beg
6323 && bufpos
< region_end
)
6324 merge_named_face (f
, Qregion
, attrs
, 0);
6326 /* Look up a realized face with the given face attributes,
6327 or realize a new one for ASCII characters. */
6328 return lookup_face (f
, attrs
);
6332 /* Merge a face into a realized face.
6334 F is frame where faces are (to be) realized.
6336 FACE_NAME is named face to merge.
6338 If FACE_NAME is nil, FACE_ID is face_id of realized face to merge.
6340 If FACE_NAME is t, FACE_ID is lface_id of face to merge.
6342 BASE_FACE_ID is realized face to merge into.
6348 merge_faces (struct frame
*f
, Lisp_Object face_name
, int face_id
,
6351 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
6352 struct face
*base_face
;
6354 base_face
= FACE_FROM_ID (f
, base_face_id
);
6356 return base_face_id
;
6358 if (EQ (face_name
, Qt
))
6360 if (face_id
< 0 || face_id
>= lface_id_to_name_size
)
6361 return base_face_id
;
6362 face_name
= lface_id_to_name
[face_id
];
6363 /* When called during make-frame, lookup_derived_face may fail
6364 if the faces are uninitialized. Don't signal an error. */
6365 face_id
= lookup_derived_face (f
, face_name
, base_face_id
, 0);
6366 return (face_id
>= 0 ? face_id
: base_face_id
);
6369 /* Begin with attributes from the base face. */
6370 memcpy (attrs
, base_face
->lface
, sizeof attrs
);
6372 if (!NILP (face_name
))
6374 if (!merge_named_face (f
, face_name
, attrs
, 0))
6375 return base_face_id
;
6381 return base_face_id
;
6382 face
= FACE_FROM_ID (f
, face_id
);
6384 return base_face_id
;
6385 merge_face_vectors (f
, face
->lface
, attrs
, 0);
6388 /* Look up a realized face with the given face attributes,
6389 or realize a new one for ASCII characters. */
6390 return lookup_face (f
, attrs
);
6395 #ifndef HAVE_X_WINDOWS
6396 DEFUN ("x-load-color-file", Fx_load_color_file
,
6397 Sx_load_color_file
, 1, 1, 0,
6398 doc
: /* Create an alist of color entries from an external file.
6400 The file should define one named RGB color per line like so:
6402 where R,G,B are numbers between 0 and 255 and name is an arbitrary string. */)
6403 (Lisp_Object filename
)
6406 Lisp_Object cmap
= Qnil
;
6407 Lisp_Object abspath
;
6409 CHECK_STRING (filename
);
6410 abspath
= Fexpand_file_name (filename
, Qnil
);
6412 fp
= fopen (SDATA (abspath
), "rt");
6416 int red
, green
, blue
;
6421 while (fgets (buf
, sizeof (buf
), fp
) != NULL
) {
6422 if (sscanf (buf
, "%u %u %u %n", &red
, &green
, &blue
, &num
) == 3)
6424 char *name
= buf
+ num
;
6425 num
= strlen (name
) - 1;
6426 if (num
>= 0 && name
[num
] == '\n')
6428 cmap
= Fcons (Fcons (build_string (name
),
6430 make_number (RGB (red
, green
, blue
))),
6432 make_number ((red
<< 16) | (green
<< 8) | blue
)),
6447 /***********************************************************************
6449 ***********************************************************************/
6453 /* Print the contents of the realized face FACE to stderr. */
6456 dump_realized_face (struct face
*face
)
6458 fprintf (stderr
, "ID: %d\n", face
->id
);
6459 #ifdef HAVE_X_WINDOWS
6460 fprintf (stderr
, "gc: %ld\n", (long) face
->gc
);
6462 fprintf (stderr
, "foreground: 0x%lx (%s)\n",
6464 SDATA (face
->lface
[LFACE_FOREGROUND_INDEX
]));
6465 fprintf (stderr
, "background: 0x%lx (%s)\n",
6467 SDATA (face
->lface
[LFACE_BACKGROUND_INDEX
]));
6469 fprintf (stderr
, "font_name: %s (%s)\n",
6470 SDATA (face
->font
->props
[FONT_NAME_INDEX
]),
6471 SDATA (face
->lface
[LFACE_FAMILY_INDEX
]));
6472 #ifdef HAVE_X_WINDOWS
6473 fprintf (stderr
, "font = %p\n", face
->font
);
6475 fprintf (stderr
, "fontset: %d\n", face
->fontset
);
6476 fprintf (stderr
, "underline: %d (%s)\n",
6478 SDATA (Fsymbol_name (face
->lface
[LFACE_UNDERLINE_INDEX
])));
6479 fprintf (stderr
, "hash: %d\n", face
->hash
);
6483 DEFUN ("dump-face", Fdump_face
, Sdump_face
, 0, 1, 0, doc
: /* */)
6490 fprintf (stderr
, "font selection order: ");
6491 for (i
= 0; i
< DIM (font_sort_order
); ++i
)
6492 fprintf (stderr
, "%d ", font_sort_order
[i
]);
6493 fprintf (stderr
, "\n");
6495 fprintf (stderr
, "alternative fonts: ");
6496 debug_print (Vface_alternative_font_family_alist
);
6497 fprintf (stderr
, "\n");
6499 for (i
= 0; i
< FRAME_FACE_CACHE (SELECTED_FRAME ())->used
; ++i
)
6500 Fdump_face (make_number (i
));
6506 face
= FACE_FROM_ID (SELECTED_FRAME (), XINT (n
));
6508 error ("Not a valid face");
6509 dump_realized_face (face
);
6516 DEFUN ("show-face-resources", Fshow_face_resources
, Sshow_face_resources
,
6517 0, 0, 0, doc
: /* */)
6520 fprintf (stderr
, "number of colors = %d\n", ncolors_allocated
);
6521 fprintf (stderr
, "number of pixmaps = %d\n", npixmaps_allocated
);
6522 fprintf (stderr
, "number of GCs = %d\n", ngcs
);
6526 #endif /* GLYPH_DEBUG */
6530 /***********************************************************************
6532 ***********************************************************************/
6535 syms_of_xfaces (void)
6537 DEFSYM (Qface
, "face");
6538 DEFSYM (Qface_no_inherit
, "face-no-inherit");
6539 DEFSYM (Qbitmap_spec_p
, "bitmap-spec-p");
6540 DEFSYM (Qframe_set_background_mode
, "frame-set-background-mode");
6542 /* Lisp face attribute keywords. */
6543 DEFSYM (QCfamily
, ":family");
6544 DEFSYM (QCheight
, ":height");
6545 DEFSYM (QCweight
, ":weight");
6546 DEFSYM (QCslant
, ":slant");
6547 DEFSYM (QCunderline
, ":underline");
6548 DEFSYM (QCinverse_video
, ":inverse-video");
6549 DEFSYM (QCreverse_video
, ":reverse-video");
6550 DEFSYM (QCforeground
, ":foreground");
6551 DEFSYM (QCbackground
, ":background");
6552 DEFSYM (QCstipple
, ":stipple");
6553 DEFSYM (QCwidth
, ":width");
6554 DEFSYM (QCfont
, ":font");
6555 DEFSYM (QCfontset
, ":fontset");
6556 DEFSYM (QCbold
, ":bold");
6557 DEFSYM (QCitalic
, ":italic");
6558 DEFSYM (QCoverline
, ":overline");
6559 DEFSYM (QCstrike_through
, ":strike-through");
6560 DEFSYM (QCbox
, ":box");
6561 DEFSYM (QCinherit
, ":inherit");
6563 /* Symbols used for Lisp face attribute values. */
6564 DEFSYM (QCcolor
, ":color");
6565 DEFSYM (QCline_width
, ":line-width");
6566 DEFSYM (QCstyle
, ":style");
6567 DEFSYM (Qline
, "line");
6568 DEFSYM (Qwave
, "wave");
6569 DEFSYM (Qreleased_button
, "released-button");
6570 DEFSYM (Qpressed_button
, "pressed-button");
6571 DEFSYM (Qnormal
, "normal");
6572 DEFSYM (Qultra_light
, "ultra-light");
6573 DEFSYM (Qextra_light
, "extra-light");
6574 DEFSYM (Qlight
, "light");
6575 DEFSYM (Qsemi_light
, "semi-light");
6576 DEFSYM (Qsemi_bold
, "semi-bold");
6577 DEFSYM (Qbold
, "bold");
6578 DEFSYM (Qextra_bold
, "extra-bold");
6579 DEFSYM (Qultra_bold
, "ultra-bold");
6580 DEFSYM (Qoblique
, "oblique");
6581 DEFSYM (Qitalic
, "italic");
6582 DEFSYM (Qreverse_oblique
, "reverse-oblique");
6583 DEFSYM (Qreverse_italic
, "reverse-italic");
6584 DEFSYM (Qultra_condensed
, "ultra-condensed");
6585 DEFSYM (Qextra_condensed
, "extra-condensed");
6586 DEFSYM (Qcondensed
, "condensed");
6587 DEFSYM (Qsemi_condensed
, "semi-condensed");
6588 DEFSYM (Qsemi_expanded
, "semi-expanded");
6589 DEFSYM (Qexpanded
, "expanded");
6590 DEFSYM (Qextra_expanded
, "extra-expanded");
6591 DEFSYM (Qultra_expanded
, "ultra-expanded");
6592 DEFSYM (Qbackground_color
, "background-color");
6593 DEFSYM (Qforeground_color
, "foreground-color");
6594 DEFSYM (Qunspecified
, "unspecified");
6595 DEFSYM (QCignore_defface
, ":ignore-defface");
6597 DEFSYM (Qface_alias
, "face-alias");
6598 DEFSYM (Qdefault
, "default");
6599 DEFSYM (Qtool_bar
, "tool-bar");
6600 DEFSYM (Qregion
, "region");
6601 DEFSYM (Qfringe
, "fringe");
6602 DEFSYM (Qheader_line
, "header-line");
6603 DEFSYM (Qscroll_bar
, "scroll-bar");
6604 DEFSYM (Qmenu
, "menu");
6605 DEFSYM (Qcursor
, "cursor");
6606 DEFSYM (Qborder
, "border");
6607 DEFSYM (Qmouse
, "mouse");
6608 DEFSYM (Qmode_line_inactive
, "mode-line-inactive");
6609 DEFSYM (Qvertical_border
, "vertical-border");
6610 DEFSYM (Qtty_color_desc
, "tty-color-desc");
6611 DEFSYM (Qtty_color_standard_values
, "tty-color-standard-values");
6612 DEFSYM (Qtty_color_by_index
, "tty-color-by-index");
6613 DEFSYM (Qtty_color_alist
, "tty-color-alist");
6614 DEFSYM (Qscalable_fonts_allowed
, "scalable-fonts-allowed");
6616 Vparam_value_alist
= Fcons (Fcons (Qnil
, Qnil
), Qnil
);
6617 staticpro (&Vparam_value_alist
);
6618 Vface_alternative_font_family_alist
= Qnil
;
6619 staticpro (&Vface_alternative_font_family_alist
);
6620 Vface_alternative_font_registry_alist
= Qnil
;
6621 staticpro (&Vface_alternative_font_registry_alist
);
6623 defsubr (&Sinternal_make_lisp_face
);
6624 defsubr (&Sinternal_lisp_face_p
);
6625 defsubr (&Sinternal_set_lisp_face_attribute
);
6626 #ifdef HAVE_WINDOW_SYSTEM
6627 defsubr (&Sinternal_set_lisp_face_attribute_from_resource
);
6629 defsubr (&Scolor_gray_p
);
6630 defsubr (&Scolor_supported_p
);
6631 #ifndef HAVE_X_WINDOWS
6632 defsubr (&Sx_load_color_file
);
6634 defsubr (&Sface_attribute_relative_p
);
6635 defsubr (&Smerge_face_attribute
);
6636 defsubr (&Sinternal_get_lisp_face_attribute
);
6637 defsubr (&Sinternal_lisp_face_attribute_values
);
6638 defsubr (&Sinternal_lisp_face_equal_p
);
6639 defsubr (&Sinternal_lisp_face_empty_p
);
6640 defsubr (&Sinternal_copy_lisp_face
);
6641 defsubr (&Sinternal_merge_in_global_face
);
6642 defsubr (&Sface_font
);
6643 defsubr (&Sframe_face_alist
);
6644 defsubr (&Sdisplay_supports_face_attributes_p
);
6645 defsubr (&Scolor_distance
);
6646 defsubr (&Sinternal_set_font_selection_order
);
6647 defsubr (&Sinternal_set_alternative_font_family_alist
);
6648 defsubr (&Sinternal_set_alternative_font_registry_alist
);
6649 defsubr (&Sface_attributes_as_vector
);
6651 defsubr (&Sdump_face
);
6652 defsubr (&Sshow_face_resources
);
6653 #endif /* GLYPH_DEBUG */
6654 defsubr (&Sclear_face_cache
);
6655 defsubr (&Stty_suppress_bold_inverse_default_colors
);
6657 #if defined DEBUG_X_COLORS && defined HAVE_X_WINDOWS
6658 defsubr (&Sdump_colors
);
6661 DEFVAR_LISP ("font-list-limit", Vfont_list_limit
,
6662 doc
: /* Limit for font matching.
6663 If an integer > 0, font matching functions won't load more than
6664 that number of fonts when searching for a matching font. */);
6665 Vfont_list_limit
= make_number (DEFAULT_FONT_LIST_LIMIT
);
6667 DEFVAR_LISP ("face-new-frame-defaults", Vface_new_frame_defaults
,
6668 doc
: /* List of global face definitions (for internal use only.) */);
6669 Vface_new_frame_defaults
= Qnil
;
6671 DEFVAR_LISP ("face-default-stipple", Vface_default_stipple
,
6672 doc
: /* Default stipple pattern used on monochrome displays.
6673 This stipple pattern is used on monochrome displays
6674 instead of shades of gray for a face background color.
6675 See `set-face-stipple' for possible values for this variable. */);
6676 Vface_default_stipple
= make_pure_c_string ("gray3");
6678 DEFVAR_LISP ("tty-defined-color-alist", Vtty_defined_color_alist
,
6679 doc
: /* An alist of defined terminal colors and their RGB values.
6680 See the docstring of `tty-color-alist' for the details. */);
6681 Vtty_defined_color_alist
= Qnil
;
6683 DEFVAR_LISP ("scalable-fonts-allowed", Vscalable_fonts_allowed
,
6684 doc
: /* Allowed scalable fonts.
6685 A value of nil means don't allow any scalable fonts.
6686 A value of t means allow any scalable font.
6687 Otherwise, value must be a list of regular expressions. A font may be
6688 scaled if its name matches a regular expression in the list.
6689 Note that if value is nil, a scalable font might still be used, if no
6690 other font of the appropriate family and registry is available. */);
6691 Vscalable_fonts_allowed
= Qnil
;
6693 DEFVAR_LISP ("face-ignored-fonts", Vface_ignored_fonts
,
6694 doc
: /* List of ignored fonts.
6695 Each element is a regular expression that matches names of fonts to
6697 Vface_ignored_fonts
= Qnil
;
6699 DEFVAR_LISP ("face-remapping-alist", Vface_remapping_alist
,
6700 doc
: /* Alist of face remappings.
6701 Each element is of the form:
6703 (FACE . REPLACEMENT),
6705 which causes display of the face FACE to use REPLACEMENT instead.
6706 REPLACEMENT is a face specification, i.e. one of the following:
6709 (2) a property list of attribute/value pairs, or
6710 (3) a list in which each element has the form of (1) or (2).
6712 List values for REPLACEMENT are merged to form the final face
6713 specification, with earlier entries taking precedence, in the same as
6714 as in the `face' text property.
6716 Face-name remapping cycles are suppressed; recursive references use
6717 the underlying face instead of the remapped face. So a remapping of
6720 (FACE EXTRA-FACE... FACE)
6724 (FACE (FACE-ATTR VAL ...) FACE)
6726 causes EXTRA-FACE... or (FACE-ATTR VAL ...) to be _merged_ with the
6727 existing definition of FACE. Note that this isn't necessary for the
6728 default face, since every face inherits from the default face.
6730 If this variable is made buffer-local, the face remapping takes effect
6731 only in that buffer. For instance, the mode my-mode could define a
6732 face `my-mode-default', and then in the mode setup function, do:
6734 (set (make-local-variable 'face-remapping-alist)
6735 '((default my-mode-default)))).
6737 Because Emacs normally only redraws screen areas when the underlying
6738 buffer contents change, you may need to call `redraw-display' after
6739 changing this variable for it to take effect. */);
6740 Vface_remapping_alist
= Qnil
;
6742 DEFVAR_LISP ("face-font-rescale-alist", Vface_font_rescale_alist
,
6743 doc
: /* Alist of fonts vs the rescaling factors.
6744 Each element is a cons (FONT-PATTERN . RESCALE-RATIO), where
6745 FONT-PATTERN is a font-spec or a regular expression matching a font name, and
6746 RESCALE-RATIO is a floating point number to specify how much larger
6747 \(or smaller) font we should use. For instance, if a face requests
6748 a font of 10 point, we actually use a font of 10 * RESCALE-RATIO point. */);
6749 Vface_font_rescale_alist
= Qnil
;
6751 #ifdef HAVE_WINDOW_SYSTEM
6752 defsubr (&Sbitmap_spec_p
);
6753 defsubr (&Sx_list_fonts
);
6754 defsubr (&Sinternal_face_x_get_resource
);
6755 defsubr (&Sx_family_fonts
);