1 /* xfaces.c -- "Face" primitives.
3 Copyright (C) 1993-1994, 1998-2014 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 the 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. */
203 #include "sysstdio.h"
204 #include <sys/types.h>
205 #include <sys/stat.h>
208 #include "character.h"
210 #include "keyboard.h"
212 #include "termhooks.h"
216 #include <Xm/XmStrDefs.h>
217 #endif /* USE_MOTIF */
223 #ifdef HAVE_WINDOW_SYSTEM
227 #define x_display_info w32_display_info
228 #define GCGraphicsExposures 0
229 #endif /* HAVE_NTGUI */
232 #define GCGraphicsExposures 0
234 #endif /* HAVE_WINDOW_SYSTEM */
237 #include "dispextern.h"
238 #include "blockinput.h"
240 #include "intervals.h"
241 #include "termchar.h"
245 #ifdef HAVE_X_WINDOWS
247 /* Compensate for a bug in Xos.h on some systems, on which it requires
248 time.h. On some such systems, Xos.h tries to redefine struct
249 timeval and struct timezone if USG is #defined while it is
252 #ifdef XOS_NEEDS_TIME_H
258 #if defined USG || defined __TIMEVAL__ /* Don't warn about unused macros. */
260 #else /* not XOS_NEEDS_TIME_H */
262 #endif /* not XOS_NEEDS_TIME_H */
264 #endif /* HAVE_X_WINDOWS */
268 /* Non-zero if face attribute ATTR is unspecified. */
270 #define UNSPECIFIEDP(ATTR) EQ ((ATTR), Qunspecified)
272 /* Non-zero if face attribute ATTR is `ignore-defface'. */
274 #define IGNORE_DEFFACE_P(ATTR) EQ ((ATTR), QCignore_defface)
276 /* Size of hash table of realized faces in face caches (should be a
279 #define FACE_CACHE_BUCKETS_SIZE 1001
281 /* Keyword symbols used for face attribute names. */
283 Lisp_Object QCfamily
, QCheight
, QCweight
, QCslant
;
284 static Lisp_Object QCunderline
;
285 static Lisp_Object QCinverse_video
, QCstipple
;
286 Lisp_Object QCforeground
, QCbackground
;
288 static Lisp_Object QCfont
, QCbold
, QCitalic
;
289 static Lisp_Object QCreverse_video
;
290 static Lisp_Object QCoverline
, QCstrike_through
, QCbox
, QCinherit
;
291 static Lisp_Object QCfontset
, QCdistant_foreground
;
293 /* Symbols used for attribute values. */
297 static Lisp_Object Qline
, Qwave
;
298 Lisp_Object Qextra_light
, Qlight
;
299 Lisp_Object Qsemi_light
, Qsemi_bold
, Qextra_bold
, Qultra_bold
;
300 Lisp_Object Qoblique
;
302 static Lisp_Object Qreleased_button
, Qpressed_button
;
303 static Lisp_Object QCstyle
, QCcolor
, QCline_width
;
304 Lisp_Object Qunspecified
; /* used in dosfns.c */
305 static Lisp_Object QCignore_defface
;
307 char unspecified_fg
[] = "unspecified-fg", unspecified_bg
[] = "unspecified-bg";
309 /* The name of the function to call when the background of the frame
310 has changed, frame_set_background_mode. */
312 static Lisp_Object Qframe_set_background_mode
;
314 /* Names of basic faces. */
316 Lisp_Object Qdefault
, Qtool_bar
, Qfringe
;
317 static Lisp_Object Qregion
;
318 Lisp_Object Qheader_line
, Qscroll_bar
, Qcursor
;
319 static Lisp_Object Qborder
, Qmouse
, Qmenu
;
320 Lisp_Object Qmode_line_inactive
;
321 static Lisp_Object Qvertical_border
;
322 static Lisp_Object Qwindow_divider
;
323 static Lisp_Object Qwindow_divider_first_pixel
;
324 static Lisp_Object Qwindow_divider_last_pixel
;
326 /* The symbol `face-alias'. A symbols having that property is an
327 alias for another face. Value of the property is the name of
330 static Lisp_Object Qface_alias
;
332 /* Alist of alternative font families. Each element is of the form
333 (FAMILY FAMILY1 FAMILY2 ...). If fonts of FAMILY can't be loaded,
334 try FAMILY1, then FAMILY2, ... */
336 Lisp_Object Vface_alternative_font_family_alist
;
338 /* Alist of alternative font registries. Each element is of the form
339 (REGISTRY REGISTRY1 REGISTRY2...). If fonts of REGISTRY can't be
340 loaded, try REGISTRY1, then REGISTRY2, ... */
342 Lisp_Object Vface_alternative_font_registry_alist
;
344 /* Allowed scalable fonts. A value of nil means don't allow any
345 scalable fonts. A value of t means allow the use of any scalable
346 font. Otherwise, value must be a list of regular expressions. A
347 font may be scaled if its name matches a regular expression in the
350 static Lisp_Object Qscalable_fonts_allowed
;
352 /* The symbols `foreground-color' and `background-color' which can be
353 used as part of a `face' property. This is for compatibility with
356 Lisp_Object Qforeground_color
, Qbackground_color
;
358 /* The symbols `face' and `mouse-face' used as text properties. */
362 /* Property for basic faces which other faces cannot inherit. */
364 static Lisp_Object Qface_no_inherit
;
366 /* Error symbol for wrong_type_argument in load_pixmap. */
368 static Lisp_Object Qbitmap_spec_p
;
370 /* The next ID to assign to Lisp faces. */
372 static int next_lface_id
;
374 /* A vector mapping Lisp face Id's to face names. */
376 static Lisp_Object
*lface_id_to_name
;
377 static ptrdiff_t lface_id_to_name_size
;
379 /* TTY color-related functions (defined in tty-colors.el). */
381 static Lisp_Object Qtty_color_desc
, Qtty_color_by_index
, Qtty_color_standard_values
;
383 /* The name of the function used to compute colors on TTYs. */
385 static Lisp_Object Qtty_color_alist
;
387 #ifdef HAVE_WINDOW_SYSTEM
389 /* Counter for calls to clear_face_cache. If this counter reaches
390 CLEAR_FONT_TABLE_COUNT, and a frame has more than
391 CLEAR_FONT_TABLE_NFONTS load, unused fonts are freed. */
393 static int clear_font_table_count
;
394 #define CLEAR_FONT_TABLE_COUNT 100
395 #define CLEAR_FONT_TABLE_NFONTS 10
397 #endif /* HAVE_WINDOW_SYSTEM */
399 /* Non-zero means face attributes have been changed since the last
400 redisplay. Used in redisplay_internal. */
402 int face_change_count
;
404 /* Non-zero means don't display bold text if a face's foreground
405 and background colors are the inverse of the default colors of the
406 display. This is a kluge to suppress `bold black' foreground text
407 which is hard to read on an LCD monitor. */
409 static int tty_suppress_bold_inverse_default_colors_p
;
411 /* A list of the form `((x . y))' used to avoid consing in
412 Finternal_set_lisp_face_attribute. */
414 static Lisp_Object Vparam_value_alist
;
416 /* The total number of colors currently allocated. */
419 static int ncolors_allocated
;
420 static int npixmaps_allocated
;
424 /* Non-zero means the definition of the `menu' face for new frames has
427 static int menu_face_changed_default
;
429 struct named_merge_point
;
431 static struct face
*realize_face (struct face_cache
*, Lisp_Object
*,
433 static struct face
*realize_x_face (struct face_cache
*, Lisp_Object
*);
434 static struct face
*realize_tty_face (struct face_cache
*, Lisp_Object
*);
435 static bool realize_basic_faces (struct frame
*);
436 static bool realize_default_face (struct frame
*);
437 static void realize_named_face (struct frame
*, Lisp_Object
, int);
438 static struct face_cache
*make_face_cache (struct frame
*);
439 static void free_face_cache (struct face_cache
*);
440 static int merge_face_ref (struct frame
*, Lisp_Object
, Lisp_Object
*,
441 int, struct named_merge_point
*);
442 static int color_distance (XColor
*x
, XColor
*y
);
444 #ifdef HAVE_WINDOW_SYSTEM
445 static void set_font_frame_param (Lisp_Object
, Lisp_Object
);
446 static void clear_face_gcs (struct face_cache
*);
447 static struct face
*realize_non_ascii_face (struct frame
*, Lisp_Object
,
449 #endif /* HAVE_WINDOW_SYSTEM */
451 /***********************************************************************
453 ***********************************************************************/
455 #ifdef HAVE_X_WINDOWS
457 #ifdef DEBUG_X_COLORS
459 /* The following is a poor mans infrastructure for debugging X color
460 allocation problems on displays with PseudoColor-8. Some X servers
461 like 3.3.5 XF86_SVGA with Matrox cards apparently don't implement
462 color reference counts completely so that they don't signal an
463 error when a color is freed whose reference count is already 0.
464 Other X servers do. To help me debug this, the following code
465 implements a simple reference counting schema of its own, for a
466 single display/screen. --gerd. */
468 /* Reference counts for pixel colors. */
470 int color_count
[256];
472 /* Register color PIXEL as allocated. */
475 register_color (unsigned long pixel
)
477 eassert (pixel
< 256);
478 ++color_count
[pixel
];
482 /* Register color PIXEL as deallocated. */
485 unregister_color (unsigned long pixel
)
487 eassert (pixel
< 256);
488 if (color_count
[pixel
] > 0)
489 --color_count
[pixel
];
495 /* Register N colors from PIXELS as deallocated. */
498 unregister_colors (unsigned long *pixels
, int n
)
501 for (i
= 0; i
< n
; ++i
)
502 unregister_color (pixels
[i
]);
506 DEFUN ("dump-colors", Fdump_colors
, Sdump_colors
, 0, 0, 0,
507 doc
: /* Dump currently allocated colors to stderr. */)
512 fputc ('\n', stderr
);
514 for (i
= n
= 0; i
< ARRAYELTS (color_count
); ++i
)
517 fprintf (stderr
, "%3d: %5d", i
, color_count
[i
]);
520 fputc ('\n', stderr
);
522 fputc ('\t', stderr
);
526 fputc ('\n', stderr
);
530 #endif /* DEBUG_X_COLORS */
533 /* Free colors used on frame F. PIXELS is an array of NPIXELS pixel
534 color values. Interrupt input must be blocked when this function
538 x_free_colors (struct frame
*f
, unsigned long *pixels
, int npixels
)
540 int class = FRAME_DISPLAY_INFO (f
)->visual
->class;
542 /* If display has an immutable color map, freeing colors is not
543 necessary and some servers don't allow it. So don't do it. */
544 if (class != StaticColor
&& class != StaticGray
&& class != TrueColor
)
546 #ifdef DEBUG_X_COLORS
547 unregister_colors (pixels
, npixels
);
549 XFreeColors (FRAME_X_DISPLAY (f
), FRAME_X_COLORMAP (f
),
557 /* Free colors used on frame F. PIXELS is an array of NPIXELS pixel
558 color values. Interrupt input must be blocked when this function
562 x_free_dpy_colors (Display
*dpy
, Screen
*screen
, Colormap cmap
,
563 unsigned long *pixels
, int npixels
)
565 struct x_display_info
*dpyinfo
= x_display_info_for_display (dpy
);
566 int class = dpyinfo
->visual
->class;
568 /* If display has an immutable color map, freeing colors is not
569 necessary and some servers don't allow it. So don't do it. */
570 if (class != StaticColor
&& class != StaticGray
&& class != TrueColor
)
572 #ifdef DEBUG_X_COLORS
573 unregister_colors (pixels
, npixels
);
575 XFreeColors (dpy
, cmap
, pixels
, npixels
, 0);
578 #endif /* USE_X_TOOLKIT */
580 /* Create and return a GC for use on frame F. GC values and mask
581 are given by XGCV and MASK. */
584 x_create_gc (struct frame
*f
, unsigned long mask
, XGCValues
*xgcv
)
588 gc
= XCreateGC (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), mask
, xgcv
);
595 /* Free GC which was used on frame F. */
598 x_free_gc (struct frame
*f
, GC gc
)
600 eassert (input_blocked_p ());
601 IF_DEBUG ((--ngcs
, eassert (ngcs
>= 0)));
602 XFreeGC (FRAME_X_DISPLAY (f
), gc
);
605 #endif /* HAVE_X_WINDOWS */
608 /* W32 emulation of GCs */
611 x_create_gc (struct frame
*f
, unsigned long mask
, XGCValues
*xgcv
)
615 gc
= XCreateGC (NULL
, FRAME_W32_WINDOW (f
), mask
, xgcv
);
622 /* Free GC which was used on frame F. */
625 x_free_gc (struct frame
*f
, GC gc
)
627 IF_DEBUG ((--ngcs
, eassert (ngcs
>= 0)));
631 #endif /* HAVE_NTGUI */
634 /* NS emulation of GCs */
637 x_create_gc (struct frame
*f
,
641 GC gc
= xmalloc (sizeof *gc
);
647 x_free_gc (struct frame
*f
, GC gc
)
653 /***********************************************************************
655 ***********************************************************************/
657 /* Initialize face cache and basic faces for frame F. */
660 init_frame_faces (struct frame
*f
)
662 /* Make a face cache, if F doesn't have one. */
663 if (FRAME_FACE_CACHE (f
) == NULL
)
664 FRAME_FACE_CACHE (f
) = make_face_cache (f
);
666 #ifdef HAVE_WINDOW_SYSTEM
667 /* Make the image cache. */
668 if (FRAME_WINDOW_P (f
))
670 /* We initialize the image cache when creating the first frame
671 on a terminal, and not during terminal creation. This way,
672 `x-open-connection' on a tty won't create an image cache. */
673 if (FRAME_IMAGE_CACHE (f
) == NULL
)
674 FRAME_IMAGE_CACHE (f
) = make_image_cache ();
675 ++FRAME_IMAGE_CACHE (f
)->refcount
;
677 #endif /* HAVE_WINDOW_SYSTEM */
679 /* Realize faces early (Bug#17889). */
680 if (!realize_basic_faces (f
))
685 /* Free face cache of frame F. Called from frame-dependent
686 resource freeing function, e.g. (x|tty)_free_frame_resources. */
689 free_frame_faces (struct frame
*f
)
691 struct face_cache
*face_cache
= FRAME_FACE_CACHE (f
);
695 free_face_cache (face_cache
);
696 FRAME_FACE_CACHE (f
) = NULL
;
699 #ifdef HAVE_WINDOW_SYSTEM
700 if (FRAME_WINDOW_P (f
))
702 struct image_cache
*image_cache
= FRAME_IMAGE_CACHE (f
);
705 --image_cache
->refcount
;
706 if (image_cache
->refcount
== 0)
707 free_image_cache (f
);
710 #endif /* HAVE_WINDOW_SYSTEM */
714 /* Clear face caches, and recompute basic faces for frame F. Call
715 this after changing frame parameters on which those faces depend,
716 or when realized faces have been freed due to changing attributes
720 recompute_basic_faces (struct frame
*f
)
722 if (FRAME_FACE_CACHE (f
))
724 clear_face_cache (0);
725 if (!realize_basic_faces (f
))
731 /* Clear the face caches of all frames. CLEAR_FONTS_P non-zero means
732 try to free unused fonts, too. */
735 clear_face_cache (int clear_fonts_p
)
737 #ifdef HAVE_WINDOW_SYSTEM
738 Lisp_Object tail
, frame
;
741 || ++clear_font_table_count
== CLEAR_FONT_TABLE_COUNT
)
743 /* From time to time see if we can unload some fonts. This also
744 frees all realized faces on all frames. Fonts needed by
745 faces will be loaded again when faces are realized again. */
746 clear_font_table_count
= 0;
748 FOR_EACH_FRAME (tail
, frame
)
750 struct frame
*f
= XFRAME (frame
);
751 if (FRAME_WINDOW_P (f
)
752 && FRAME_DISPLAY_INFO (f
)->n_fonts
> CLEAR_FONT_TABLE_NFONTS
)
754 clear_font_cache (f
);
755 free_all_realized_faces (frame
);
761 /* Clear GCs of realized faces. */
762 FOR_EACH_FRAME (tail
, frame
)
764 struct frame
*f
= XFRAME (frame
);
765 if (FRAME_WINDOW_P (f
))
766 clear_face_gcs (FRAME_FACE_CACHE (f
));
768 clear_image_caches (Qnil
);
770 #endif /* HAVE_WINDOW_SYSTEM */
774 DEFUN ("clear-face-cache", Fclear_face_cache
, Sclear_face_cache
, 0, 1, 0,
775 doc
: /* Clear face caches on all frames.
776 Optional THOROUGHLY non-nil means try to free unused fonts, too. */)
777 (Lisp_Object thoroughly
)
779 clear_face_cache (!NILP (thoroughly
));
781 windows_or_buffers_changed
= 53;
786 /***********************************************************************
788 ***********************************************************************/
790 #ifdef HAVE_WINDOW_SYSTEM
792 DEFUN ("bitmap-spec-p", Fbitmap_spec_p
, Sbitmap_spec_p
, 1, 1, 0,
793 doc
: /* Value is non-nil if OBJECT is a valid bitmap specification.
794 A bitmap specification is either a string, a file name, or a list
795 \(WIDTH HEIGHT DATA) where WIDTH is the pixel width of the bitmap,
796 HEIGHT is its height, and DATA is a string containing the bits of
797 the pixmap. Bits are stored row by row, each row occupies
798 \(WIDTH + 7)/8 bytes. */)
803 if (STRINGP (object
))
804 /* If OBJECT is a string, it's a file name. */
806 else if (CONSP (object
))
808 /* Otherwise OBJECT must be (WIDTH HEIGHT DATA), WIDTH and
809 HEIGHT must be ints > 0, and DATA must be string large
810 enough to hold a bitmap of the specified size. */
811 Lisp_Object width
, height
, data
;
813 height
= width
= data
= Qnil
;
817 width
= XCAR (object
);
818 object
= XCDR (object
);
821 height
= XCAR (object
);
822 object
= XCDR (object
);
824 data
= XCAR (object
);
829 && RANGED_INTEGERP (1, width
, INT_MAX
)
830 && RANGED_INTEGERP (1, height
, INT_MAX
))
832 int bytes_per_row
= ((XINT (width
) + BITS_PER_CHAR
- 1)
834 if (XINT (height
) <= SBYTES (data
) / bytes_per_row
)
839 return pixmap_p
? Qt
: Qnil
;
843 /* Load a bitmap according to NAME (which is either a file name or a
844 pixmap spec) for use on frame F. Value is the bitmap_id (see
845 xfns.c). If NAME is nil, return with a bitmap id of zero. If
846 bitmap cannot be loaded, display a message saying so, and return
850 load_pixmap (struct frame
*f
, Lisp_Object name
)
857 CHECK_TYPE (!NILP (Fbitmap_spec_p (name
)), Qbitmap_spec_p
, name
);
862 /* Decode a bitmap spec into a bitmap. */
867 w
= XINT (Fcar (name
));
868 h
= XINT (Fcar (Fcdr (name
)));
869 bits
= Fcar (Fcdr (Fcdr (name
)));
871 bitmap_id
= x_create_bitmap_from_data (f
, SSDATA (bits
),
876 /* It must be a string -- a file name. */
877 bitmap_id
= x_create_bitmap_from_file (f
, name
);
883 add_to_log ("Invalid or undefined bitmap `%s'", name
, Qnil
);
889 ++npixmaps_allocated
;
896 #endif /* HAVE_WINDOW_SYSTEM */
900 /***********************************************************************
902 ***********************************************************************/
904 /* Parse RGB_LIST, and fill in the RGB fields of COLOR.
905 RGB_LIST should contain (at least) 3 lisp integers.
906 Return 0 if there's a problem with RGB_LIST, otherwise return 1. */
909 parse_rgb_list (Lisp_Object rgb_list
, XColor
*color
)
911 #define PARSE_RGB_LIST_FIELD(field) \
912 if (CONSP (rgb_list) && INTEGERP (XCAR (rgb_list))) \
914 color->field = XINT (XCAR (rgb_list)); \
915 rgb_list = XCDR (rgb_list); \
920 PARSE_RGB_LIST_FIELD (red
);
921 PARSE_RGB_LIST_FIELD (green
);
922 PARSE_RGB_LIST_FIELD (blue
);
928 /* Lookup on frame F the color described by the lisp string COLOR.
929 The resulting tty color is returned in TTY_COLOR; if STD_COLOR is
930 non-zero, then the `standard' definition of the same color is
934 tty_lookup_color (struct frame
*f
, Lisp_Object color
, XColor
*tty_color
,
937 Lisp_Object frame
, color_desc
;
939 if (!STRINGP (color
) || NILP (Ffboundp (Qtty_color_desc
)))
942 XSETFRAME (frame
, f
);
944 color_desc
= call2 (Qtty_color_desc
, color
, frame
);
945 if (CONSP (color_desc
) && CONSP (XCDR (color_desc
)))
949 if (! INTEGERP (XCAR (XCDR (color_desc
))))
952 tty_color
->pixel
= XINT (XCAR (XCDR (color_desc
)));
954 rgb
= XCDR (XCDR (color_desc
));
955 if (! parse_rgb_list (rgb
, tty_color
))
958 /* Should we fill in STD_COLOR too? */
961 /* Default STD_COLOR to the same as TTY_COLOR. */
962 *std_color
= *tty_color
;
964 /* Do a quick check to see if the returned descriptor is
965 actually _exactly_ equal to COLOR, otherwise we have to
966 lookup STD_COLOR separately. If it's impossible to lookup
967 a standard color, we just give up and use TTY_COLOR. */
968 if ((!STRINGP (XCAR (color_desc
))
969 || NILP (Fstring_equal (color
, XCAR (color_desc
))))
970 && !NILP (Ffboundp (Qtty_color_standard_values
)))
972 /* Look up STD_COLOR separately. */
973 rgb
= call1 (Qtty_color_standard_values
, color
);
974 if (! parse_rgb_list (rgb
, std_color
))
981 else if (NILP (Fsymbol_value (intern ("tty-defined-color-alist"))))
982 /* We were called early during startup, and the colors are not
983 yet set up in tty-defined-color-alist. Don't return a failure
984 indication, since this produces the annoying "Unable to
985 load color" messages in the *Messages* buffer. */
988 /* tty-color-desc seems to have returned a bad value. */
992 /* A version of defined_color for non-X frames. */
995 tty_defined_color (struct frame
*f
, const char *color_name
,
996 XColor
*color_def
, bool alloc
)
1001 color_def
->pixel
= FACE_TTY_DEFAULT_COLOR
;
1003 color_def
->blue
= 0;
1004 color_def
->green
= 0;
1007 status
= tty_lookup_color (f
, build_string (color_name
), color_def
, NULL
);
1009 if (color_def
->pixel
== FACE_TTY_DEFAULT_COLOR
&& *color_name
)
1011 if (strcmp (color_name
, "unspecified-fg") == 0)
1012 color_def
->pixel
= FACE_TTY_DEFAULT_FG_COLOR
;
1013 else if (strcmp (color_name
, "unspecified-bg") == 0)
1014 color_def
->pixel
= FACE_TTY_DEFAULT_BG_COLOR
;
1017 if (color_def
->pixel
!= FACE_TTY_DEFAULT_COLOR
)
1024 /* Decide if color named COLOR_NAME is valid for the display
1025 associated with the frame F; if so, return the rgb values in
1026 COLOR_DEF. If ALLOC, allocate a new colormap cell.
1028 This does the right thing for any type of frame. */
1031 defined_color (struct frame
*f
, const char *color_name
, XColor
*color_def
,
1034 if (!FRAME_WINDOW_P (f
))
1035 return tty_defined_color (f
, color_name
, color_def
, alloc
);
1036 #ifdef HAVE_X_WINDOWS
1037 else if (FRAME_X_P (f
))
1038 return x_defined_color (f
, color_name
, color_def
, alloc
);
1041 else if (FRAME_W32_P (f
))
1042 return w32_defined_color (f
, color_name
, color_def
, alloc
);
1045 else if (FRAME_NS_P (f
))
1046 return ns_defined_color (f
, color_name
, color_def
, alloc
, 1);
1053 /* Given the index IDX of a tty color on frame F, return its name, a
1057 tty_color_name (struct frame
*f
, int idx
)
1059 if (idx
>= 0 && !NILP (Ffboundp (Qtty_color_by_index
)))
1062 Lisp_Object coldesc
;
1064 XSETFRAME (frame
, f
);
1065 coldesc
= call2 (Qtty_color_by_index
, make_number (idx
), frame
);
1067 if (!NILP (coldesc
))
1068 return XCAR (coldesc
);
1071 /* We can have an MS-DOS frame under -nw for a short window of
1072 opportunity before internal_terminal_init is called. DTRT. */
1073 if (FRAME_MSDOS_P (f
) && !inhibit_window_system
)
1074 return msdos_stdcolor_name (idx
);
1077 if (idx
== FACE_TTY_DEFAULT_FG_COLOR
)
1078 return build_string (unspecified_fg
);
1079 if (idx
== FACE_TTY_DEFAULT_BG_COLOR
)
1080 return build_string (unspecified_bg
);
1082 return Qunspecified
;
1086 /* Return non-zero if COLOR_NAME is a shade of gray (or white or
1089 The criterion implemented here is not a terribly sophisticated one. */
1092 face_color_gray_p (struct frame
*f
, const char *color_name
)
1097 if (defined_color (f
, color_name
, &color
, 0))
1098 gray_p
= (/* Any color sufficiently close to black counts as gray. */
1099 (color
.red
< 5000 && color
.green
< 5000 && color
.blue
< 5000)
1101 ((eabs (color
.red
- color
.green
)
1102 < max (color
.red
, color
.green
) / 20)
1103 && (eabs (color
.green
- color
.blue
)
1104 < max (color
.green
, color
.blue
) / 20)
1105 && (eabs (color
.blue
- color
.red
)
1106 < max (color
.blue
, color
.red
) / 20)));
1114 /* Return non-zero if color COLOR_NAME can be displayed on frame F.
1115 BACKGROUND_P non-zero means the color will be used as background
1119 face_color_supported_p (struct frame
*f
, const char *color_name
,
1125 XSETFRAME (frame
, f
);
1127 #ifdef HAVE_WINDOW_SYSTEM
1129 ? (!NILP (Fxw_display_color_p (frame
))
1130 || xstrcasecmp (color_name
, "black") == 0
1131 || xstrcasecmp (color_name
, "white") == 0
1133 && face_color_gray_p (f
, color_name
))
1134 || (!NILP (Fx_display_grayscale_p (frame
))
1135 && face_color_gray_p (f
, color_name
)))
1138 tty_defined_color (f
, color_name
, ¬_used
, 0);
1142 DEFUN ("color-gray-p", Fcolor_gray_p
, Scolor_gray_p
, 1, 2, 0,
1143 doc
: /* Return non-nil if COLOR is a shade of gray (or white or black).
1144 FRAME specifies the frame and thus the display for interpreting COLOR.
1145 If FRAME is nil or omitted, use the selected frame. */)
1146 (Lisp_Object color
, Lisp_Object frame
)
1148 CHECK_STRING (color
);
1149 return (face_color_gray_p (decode_any_frame (frame
), SSDATA (color
))
1154 DEFUN ("color-supported-p", Fcolor_supported_p
,
1155 Scolor_supported_p
, 1, 3, 0,
1156 doc
: /* Return non-nil if COLOR can be displayed on FRAME.
1157 BACKGROUND-P non-nil means COLOR is used as a background.
1158 Otherwise, this function tells whether it can be used as a foreground.
1159 If FRAME is nil or omitted, use the selected frame.
1160 COLOR must be a valid color name. */)
1161 (Lisp_Object color
, Lisp_Object frame
, Lisp_Object background_p
)
1163 CHECK_STRING (color
);
1164 return (face_color_supported_p (decode_any_frame (frame
),
1165 SSDATA (color
), !NILP (background_p
))
1170 static unsigned long
1171 load_color2 (struct frame
*f
, struct face
*face
, Lisp_Object name
,
1172 enum lface_attribute_index target_index
, XColor
*color
)
1174 eassert (STRINGP (name
));
1175 eassert (target_index
== LFACE_FOREGROUND_INDEX
1176 || target_index
== LFACE_BACKGROUND_INDEX
1177 || target_index
== LFACE_UNDERLINE_INDEX
1178 || target_index
== LFACE_OVERLINE_INDEX
1179 || target_index
== LFACE_STRIKE_THROUGH_INDEX
1180 || target_index
== LFACE_BOX_INDEX
);
1182 /* if the color map is full, defined_color will return a best match
1183 to the values in an existing cell. */
1184 if (!defined_color (f
, SSDATA (name
), color
, 1))
1186 add_to_log ("Unable to load color \"%s\"", name
, Qnil
);
1188 switch (target_index
)
1190 case LFACE_FOREGROUND_INDEX
:
1191 face
->foreground_defaulted_p
= 1;
1192 color
->pixel
= FRAME_FOREGROUND_PIXEL (f
);
1195 case LFACE_BACKGROUND_INDEX
:
1196 face
->background_defaulted_p
= 1;
1197 color
->pixel
= FRAME_BACKGROUND_PIXEL (f
);
1200 case LFACE_UNDERLINE_INDEX
:
1201 face
->underline_defaulted_p
= 1;
1202 color
->pixel
= FRAME_FOREGROUND_PIXEL (f
);
1205 case LFACE_OVERLINE_INDEX
:
1206 face
->overline_color_defaulted_p
= 1;
1207 color
->pixel
= FRAME_FOREGROUND_PIXEL (f
);
1210 case LFACE_STRIKE_THROUGH_INDEX
:
1211 face
->strike_through_color_defaulted_p
= 1;
1212 color
->pixel
= FRAME_FOREGROUND_PIXEL (f
);
1215 case LFACE_BOX_INDEX
:
1216 face
->box_color_defaulted_p
= 1;
1217 color
->pixel
= FRAME_FOREGROUND_PIXEL (f
);
1226 ++ncolors_allocated
;
1229 return color
->pixel
;
1232 /* Load color with name NAME for use by face FACE on frame F.
1233 TARGET_INDEX must be one of LFACE_FOREGROUND_INDEX,
1234 LFACE_BACKGROUND_INDEX, LFACE_UNDERLINE_INDEX, LFACE_OVERLINE_INDEX,
1235 LFACE_STRIKE_THROUGH_INDEX, or LFACE_BOX_INDEX. Value is the
1236 pixel color. If color cannot be loaded, display a message, and
1237 return the foreground, background or underline color of F, but
1238 record that fact in flags of the face so that we don't try to free
1242 load_color (struct frame
*f
, struct face
*face
, Lisp_Object name
,
1243 enum lface_attribute_index target_index
)
1246 return load_color2 (f
, face
, name
, target_index
, &color
);
1250 #ifdef HAVE_WINDOW_SYSTEM
1252 #define NEAR_SAME_COLOR_THRESHOLD 30000
1254 /* Load colors for face FACE which is used on frame F. Colors are
1255 specified by slots LFACE_BACKGROUND_INDEX and LFACE_FOREGROUND_INDEX
1256 of ATTRS. If the background color specified is not supported on F,
1257 try to emulate gray colors with a stipple from Vface_default_stipple. */
1260 load_face_colors (struct frame
*f
, struct face
*face
,
1261 Lisp_Object attrs
[LFACE_VECTOR_SIZE
])
1263 Lisp_Object fg
, bg
, dfg
;
1266 bg
= attrs
[LFACE_BACKGROUND_INDEX
];
1267 fg
= attrs
[LFACE_FOREGROUND_INDEX
];
1269 /* Swap colors if face is inverse-video. */
1270 if (EQ (attrs
[LFACE_INVERSE_INDEX
], Qt
))
1278 /* Check for support for foreground, not for background because
1279 face_color_supported_p is smart enough to know that grays are
1280 "supported" as background because we are supposed to use stipple
1282 if (!face_color_supported_p (f
, SSDATA (bg
), 0)
1283 && !NILP (Fbitmap_spec_p (Vface_default_stipple
)))
1285 x_destroy_bitmap (f
, face
->stipple
);
1286 face
->stipple
= load_pixmap (f
, Vface_default_stipple
);
1289 face
->background
= load_color2 (f
, face
, bg
, LFACE_BACKGROUND_INDEX
, &xbg
);
1290 face
->foreground
= load_color2 (f
, face
, fg
, LFACE_FOREGROUND_INDEX
, &xfg
);
1292 dfg
= attrs
[LFACE_DISTANT_FOREGROUND_INDEX
];
1293 if (!NILP (dfg
) && !UNSPECIFIEDP (dfg
)
1294 && color_distance (&xbg
, &xfg
) < NEAR_SAME_COLOR_THRESHOLD
)
1296 if (EQ (attrs
[LFACE_INVERSE_INDEX
], Qt
))
1297 face
->background
= load_color (f
, face
, dfg
, LFACE_BACKGROUND_INDEX
);
1299 face
->foreground
= load_color (f
, face
, dfg
, LFACE_FOREGROUND_INDEX
);
1303 #ifdef HAVE_X_WINDOWS
1305 /* Free color PIXEL on frame F. */
1308 unload_color (struct frame
*f
, unsigned long pixel
)
1313 x_free_colors (f
, &pixel
, 1);
1318 /* Free colors allocated for FACE. */
1321 free_face_colors (struct frame
*f
, struct face
*face
)
1323 /* PENDING(NS): need to do something here? */
1325 if (face
->colors_copied_bitwise_p
)
1330 if (!face
->foreground_defaulted_p
)
1332 x_free_colors (f
, &face
->foreground
, 1);
1333 IF_DEBUG (--ncolors_allocated
);
1336 if (!face
->background_defaulted_p
)
1338 x_free_colors (f
, &face
->background
, 1);
1339 IF_DEBUG (--ncolors_allocated
);
1342 if (face
->underline_p
1343 && !face
->underline_defaulted_p
)
1345 x_free_colors (f
, &face
->underline_color
, 1);
1346 IF_DEBUG (--ncolors_allocated
);
1349 if (face
->overline_p
1350 && !face
->overline_color_defaulted_p
)
1352 x_free_colors (f
, &face
->overline_color
, 1);
1353 IF_DEBUG (--ncolors_allocated
);
1356 if (face
->strike_through_p
1357 && !face
->strike_through_color_defaulted_p
)
1359 x_free_colors (f
, &face
->strike_through_color
, 1);
1360 IF_DEBUG (--ncolors_allocated
);
1363 if (face
->box
!= FACE_NO_BOX
1364 && !face
->box_color_defaulted_p
)
1366 x_free_colors (f
, &face
->box_color
, 1);
1367 IF_DEBUG (--ncolors_allocated
);
1373 #endif /* HAVE_X_WINDOWS */
1375 #endif /* HAVE_WINDOW_SYSTEM */
1379 /***********************************************************************
1381 ***********************************************************************/
1383 /* An enumerator for each field of an XLFD font name. */
1404 /* An enumerator for each possible slant value of a font. Taken from
1405 the XLFD specification. */
1413 XLFD_SLANT_REVERSE_ITALIC
,
1414 XLFD_SLANT_REVERSE_OBLIQUE
,
1418 /* Relative font weight according to XLFD documentation. */
1422 XLFD_WEIGHT_UNKNOWN
,
1423 XLFD_WEIGHT_ULTRA_LIGHT
, /* 10 */
1424 XLFD_WEIGHT_EXTRA_LIGHT
, /* 20 */
1425 XLFD_WEIGHT_LIGHT
, /* 30 */
1426 XLFD_WEIGHT_SEMI_LIGHT
, /* 40: SemiLight, Book, ... */
1427 XLFD_WEIGHT_MEDIUM
, /* 50: Medium, Normal, Regular, ... */
1428 XLFD_WEIGHT_SEMI_BOLD
, /* 60: SemiBold, DemiBold, ... */
1429 XLFD_WEIGHT_BOLD
, /* 70: Bold, ... */
1430 XLFD_WEIGHT_EXTRA_BOLD
, /* 80: ExtraBold, Heavy, ... */
1431 XLFD_WEIGHT_ULTRA_BOLD
/* 90: UltraBold, Black, ... */
1434 /* Relative proportionate width. */
1438 XLFD_SWIDTH_UNKNOWN
,
1439 XLFD_SWIDTH_ULTRA_CONDENSED
, /* 10 */
1440 XLFD_SWIDTH_EXTRA_CONDENSED
, /* 20 */
1441 XLFD_SWIDTH_CONDENSED
, /* 30: Condensed, Narrow, Compressed, ... */
1442 XLFD_SWIDTH_SEMI_CONDENSED
, /* 40: semicondensed */
1443 XLFD_SWIDTH_MEDIUM
, /* 50: Medium, Normal, Regular, ... */
1444 XLFD_SWIDTH_SEMI_EXPANDED
, /* 60: SemiExpanded, DemiExpanded, ... */
1445 XLFD_SWIDTH_EXPANDED
, /* 70: Expanded... */
1446 XLFD_SWIDTH_EXTRA_EXPANDED
, /* 80: ExtraExpanded, Wide... */
1447 XLFD_SWIDTH_ULTRA_EXPANDED
/* 90: UltraExpanded... */
1450 /* Order by which font selection chooses fonts. The default values
1451 mean `first, find a best match for the font width, then for the
1452 font height, then for weight, then for slant.' This variable can be
1453 set via set-face-font-sort-order. */
1455 static int font_sort_order
[4];
1457 #ifdef HAVE_WINDOW_SYSTEM
1459 static enum font_property_index font_props_for_sorting
[FONT_SIZE_INDEX
];
1462 compare_fonts_by_sort_order (const void *v1
, const void *v2
)
1464 Lisp_Object
const *p1
= v1
;
1465 Lisp_Object
const *p2
= v2
;
1466 Lisp_Object font1
= *p1
;
1467 Lisp_Object font2
= *p2
;
1470 for (i
= 0; i
< FONT_SIZE_INDEX
; i
++)
1472 enum font_property_index idx
= font_props_for_sorting
[i
];
1473 Lisp_Object val1
= AREF (font1
, idx
), val2
= AREF (font2
, idx
);
1476 if (idx
<= FONT_REGISTRY_INDEX
)
1479 result
= STRINGP (val2
) ? strcmp (SSDATA (val1
), SSDATA (val2
)) : -1;
1481 result
= STRINGP (val2
) ? 1 : 0;
1485 if (INTEGERP (val1
))
1486 result
= (INTEGERP (val2
) && XINT (val1
) >= XINT (val2
)
1487 ? XINT (val1
) > XINT (val2
)
1490 result
= INTEGERP (val2
) ? 1 : 0;
1498 DEFUN ("x-family-fonts", Fx_family_fonts
, Sx_family_fonts
, 0, 2, 0,
1499 doc
: /* Return a list of available fonts of family FAMILY on FRAME.
1500 If FAMILY is omitted or nil, list all families.
1501 Otherwise, FAMILY must be a string, possibly containing wildcards
1503 If FRAME is omitted or nil, use the selected frame.
1504 Each element of the result is a vector [FAMILY WIDTH POINT-SIZE WEIGHT
1505 SLANT FIXED-P FULL REGISTRY-AND-ENCODING].
1506 FAMILY is the font family name. POINT-SIZE is the size of the
1507 font in 1/10 pt. WIDTH, WEIGHT, and SLANT are symbols describing the
1508 width, weight and slant of the font. These symbols are the same as for
1509 face attributes. FIXED-P is non-nil if the font is fixed-pitch.
1510 FULL is the full name of the font, and REGISTRY-AND-ENCODING is a string
1511 giving the registry and encoding of the font.
1512 The result list is sorted according to the current setting of
1513 the face font sort order. */)
1514 (Lisp_Object family
, Lisp_Object frame
)
1516 Lisp_Object font_spec
, list
, *drivers
, vec
;
1517 struct frame
*f
= decode_live_frame (frame
);
1518 ptrdiff_t i
, nfonts
;
1523 font_spec
= Ffont_spec (0, NULL
);
1526 CHECK_STRING (family
);
1527 font_parse_family_registry (family
, Qnil
, font_spec
);
1530 list
= font_list_entities (f
, font_spec
);
1534 /* Sort the font entities. */
1535 for (i
= 0; i
< 4; i
++)
1536 switch (font_sort_order
[i
])
1539 font_props_for_sorting
[i
] = FONT_WIDTH_INDEX
; break;
1540 case XLFD_POINT_SIZE
:
1541 font_props_for_sorting
[i
] = FONT_SIZE_INDEX
; break;
1543 font_props_for_sorting
[i
] = FONT_WEIGHT_INDEX
; break;
1545 font_props_for_sorting
[i
] = FONT_SLANT_INDEX
; break;
1547 font_props_for_sorting
[i
++] = FONT_FAMILY_INDEX
;
1548 font_props_for_sorting
[i
++] = FONT_FOUNDRY_INDEX
;
1549 font_props_for_sorting
[i
++] = FONT_ADSTYLE_INDEX
;
1550 font_props_for_sorting
[i
++] = FONT_REGISTRY_INDEX
;
1552 ndrivers
= XINT (Flength (list
));
1553 SAFE_ALLOCA_LISP (drivers
, ndrivers
);
1554 for (i
= 0; i
< ndrivers
; i
++, list
= XCDR (list
))
1555 drivers
[i
] = XCAR (list
);
1556 vec
= Fvconcat (ndrivers
, drivers
);
1557 nfonts
= ASIZE (vec
);
1559 qsort (XVECTOR (vec
)->contents
, nfonts
, word_size
,
1560 compare_fonts_by_sort_order
);
1563 for (i
= nfonts
- 1; i
>= 0; --i
)
1565 Lisp_Object font
= AREF (vec
, i
);
1566 Lisp_Object v
= make_uninit_vector (8);
1568 Lisp_Object spacing
;
1570 ASET (v
, 0, AREF (font
, FONT_FAMILY_INDEX
));
1571 ASET (v
, 1, FONT_WIDTH_SYMBOLIC (font
));
1572 point
= PIXEL_TO_POINT (XINT (AREF (font
, FONT_SIZE_INDEX
)) * 10,
1574 ASET (v
, 2, make_number (point
));
1575 ASET (v
, 3, FONT_WEIGHT_SYMBOLIC (font
));
1576 ASET (v
, 4, FONT_SLANT_SYMBOLIC (font
));
1577 spacing
= Ffont_get (font
, QCspacing
);
1578 ASET (v
, 5, (NILP (spacing
) || EQ (spacing
, Qp
)) ? Qnil
: Qt
);
1579 ASET (v
, 6, Ffont_xlfd_name (font
, Qnil
));
1580 ASET (v
, 7, AREF (font
, FONT_REGISTRY_INDEX
));
1582 result
= Fcons (v
, result
);
1589 DEFUN ("x-list-fonts", Fx_list_fonts
, Sx_list_fonts
, 1, 5, 0,
1590 doc
: /* Return a list of the names of available fonts matching PATTERN.
1591 If optional arguments FACE and FRAME are specified, return only fonts
1592 the same size as FACE on FRAME.
1594 PATTERN should be a string containing a font name in the XLFD,
1595 Fontconfig, or GTK format. A font name given in the XLFD format may
1596 contain wildcard characters:
1597 the * character matches any substring, and
1598 the ? character matches any single character.
1599 PATTERN is case-insensitive.
1601 The return value is a list of strings, suitable as arguments to
1604 Fonts Emacs can't use may or may not be excluded
1605 even if they match PATTERN and FACE.
1606 The optional fourth argument MAXIMUM sets a limit on how many
1607 fonts to match. The first MAXIMUM fonts are reported.
1608 The optional fifth argument WIDTH, if specified, is a number of columns
1609 occupied by a character of a font. In that case, return only fonts
1610 the WIDTH times as wide as FACE on FRAME. */)
1611 (Lisp_Object pattern
, Lisp_Object face
, Lisp_Object frame
,
1612 Lisp_Object maximum
, Lisp_Object width
)
1615 int size
, avgwidth
IF_LINT (= 0);
1617 check_window_system (NULL
);
1618 CHECK_STRING (pattern
);
1620 if (! NILP (maximum
))
1621 CHECK_NATNUM (maximum
);
1624 CHECK_NUMBER (width
);
1626 /* We can't simply call decode_window_system_frame because
1627 this function may be called before any frame is created. */
1628 f
= decode_live_frame (frame
);
1629 if (! FRAME_WINDOW_P (f
))
1631 /* Perhaps we have not yet created any frame. */
1637 XSETFRAME (frame
, f
);
1639 /* Determine the width standard for comparison with the fonts we find. */
1645 /* This is of limited utility since it works with character
1646 widths. Keep it for compatibility. --gerd. */
1647 int face_id
= lookup_named_face (f
, face
, 0);
1648 struct face
*width_face
= (face_id
< 0
1650 : FACE_FROM_ID (f
, face_id
));
1652 if (width_face
&& width_face
->font
)
1654 size
= width_face
->font
->pixel_size
;
1655 avgwidth
= width_face
->font
->average_width
;
1659 size
= FRAME_FONT (f
)->pixel_size
;
1660 avgwidth
= FRAME_FONT (f
)->average_width
;
1663 avgwidth
*= XINT (width
);
1667 Lisp_Object font_spec
;
1668 Lisp_Object args
[2], tail
;
1670 font_spec
= font_spec_from_name (pattern
);
1671 if (!FONTP (font_spec
))
1672 signal_error ("Invalid font name", pattern
);
1676 Ffont_put (font_spec
, QCsize
, make_number (size
));
1677 Ffont_put (font_spec
, QCavgwidth
, make_number (avgwidth
));
1679 args
[0] = Flist_fonts (font_spec
, frame
, maximum
, font_spec
);
1680 for (tail
= args
[0]; CONSP (tail
); tail
= XCDR (tail
))
1682 Lisp_Object font_entity
;
1684 font_entity
= XCAR (tail
);
1685 if ((NILP (AREF (font_entity
, FONT_SIZE_INDEX
))
1686 || XINT (AREF (font_entity
, FONT_SIZE_INDEX
)) == 0)
1687 && ! NILP (AREF (font_spec
, FONT_SIZE_INDEX
)))
1689 /* This is a scalable font. For backward compatibility,
1690 we set the specified size. */
1691 font_entity
= copy_font_spec (font_entity
);
1692 ASET (font_entity
, FONT_SIZE_INDEX
,
1693 AREF (font_spec
, FONT_SIZE_INDEX
));
1695 XSETCAR (tail
, Ffont_xlfd_name (font_entity
, Qnil
));
1698 /* We don't have to check fontsets. */
1700 args
[1] = list_fontsets (f
, pattern
, size
);
1701 return Fnconc (2, args
);
1705 #endif /* HAVE_WINDOW_SYSTEM */
1708 /***********************************************************************
1710 ***********************************************************************/
1712 /* Access face attributes of face LFACE, a Lisp vector. */
1714 #define LFACE_FAMILY(LFACE) AREF ((LFACE), LFACE_FAMILY_INDEX)
1715 #define LFACE_FOUNDRY(LFACE) AREF ((LFACE), LFACE_FOUNDRY_INDEX)
1716 #define LFACE_HEIGHT(LFACE) AREF ((LFACE), LFACE_HEIGHT_INDEX)
1717 #define LFACE_WEIGHT(LFACE) AREF ((LFACE), LFACE_WEIGHT_INDEX)
1718 #define LFACE_SLANT(LFACE) AREF ((LFACE), LFACE_SLANT_INDEX)
1719 #define LFACE_UNDERLINE(LFACE) AREF ((LFACE), LFACE_UNDERLINE_INDEX)
1720 #define LFACE_INVERSE(LFACE) AREF ((LFACE), LFACE_INVERSE_INDEX)
1721 #define LFACE_FOREGROUND(LFACE) AREF ((LFACE), LFACE_FOREGROUND_INDEX)
1722 #define LFACE_BACKGROUND(LFACE) AREF ((LFACE), LFACE_BACKGROUND_INDEX)
1723 #define LFACE_STIPPLE(LFACE) AREF ((LFACE), LFACE_STIPPLE_INDEX)
1724 #define LFACE_SWIDTH(LFACE) AREF ((LFACE), LFACE_SWIDTH_INDEX)
1725 #define LFACE_OVERLINE(LFACE) AREF ((LFACE), LFACE_OVERLINE_INDEX)
1726 #define LFACE_STRIKE_THROUGH(LFACE) AREF ((LFACE), LFACE_STRIKE_THROUGH_INDEX)
1727 #define LFACE_BOX(LFACE) AREF ((LFACE), LFACE_BOX_INDEX)
1728 #define LFACE_FONT(LFACE) AREF ((LFACE), LFACE_FONT_INDEX)
1729 #define LFACE_INHERIT(LFACE) AREF ((LFACE), LFACE_INHERIT_INDEX)
1730 #define LFACE_FONTSET(LFACE) AREF ((LFACE), LFACE_FONTSET_INDEX)
1731 #define LFACE_DISTANT_FOREGROUND(LFACE) \
1732 AREF ((LFACE), LFACE_DISTANT_FOREGROUND_INDEX)
1734 /* Non-zero if LFACE is a Lisp face. A Lisp face is a vector of size
1735 LFACE_VECTOR_SIZE which has the symbol `face' in slot 0. */
1737 #define LFACEP(LFACE) \
1739 && ASIZE (LFACE) == LFACE_VECTOR_SIZE \
1740 && EQ (AREF (LFACE, 0), Qface))
1745 /* Check consistency of Lisp face attribute vector ATTRS. */
1748 check_lface_attrs (Lisp_Object attrs
[LFACE_VECTOR_SIZE
])
1750 eassert (UNSPECIFIEDP (attrs
[LFACE_FAMILY_INDEX
])
1751 || IGNORE_DEFFACE_P (attrs
[LFACE_FAMILY_INDEX
])
1752 || STRINGP (attrs
[LFACE_FAMILY_INDEX
]));
1753 eassert (UNSPECIFIEDP (attrs
[LFACE_FOUNDRY_INDEX
])
1754 || IGNORE_DEFFACE_P (attrs
[LFACE_FOUNDRY_INDEX
])
1755 || STRINGP (attrs
[LFACE_FOUNDRY_INDEX
]));
1756 eassert (UNSPECIFIEDP (attrs
[LFACE_SWIDTH_INDEX
])
1757 || IGNORE_DEFFACE_P (attrs
[LFACE_SWIDTH_INDEX
])
1758 || SYMBOLP (attrs
[LFACE_SWIDTH_INDEX
]));
1759 eassert (UNSPECIFIEDP (attrs
[LFACE_HEIGHT_INDEX
])
1760 || IGNORE_DEFFACE_P (attrs
[LFACE_HEIGHT_INDEX
])
1761 || INTEGERP (attrs
[LFACE_HEIGHT_INDEX
])
1762 || FLOATP (attrs
[LFACE_HEIGHT_INDEX
])
1763 || FUNCTIONP (attrs
[LFACE_HEIGHT_INDEX
]));
1764 eassert (UNSPECIFIEDP (attrs
[LFACE_WEIGHT_INDEX
])
1765 || IGNORE_DEFFACE_P (attrs
[LFACE_WEIGHT_INDEX
])
1766 || SYMBOLP (attrs
[LFACE_WEIGHT_INDEX
]));
1767 eassert (UNSPECIFIEDP (attrs
[LFACE_SLANT_INDEX
])
1768 || IGNORE_DEFFACE_P (attrs
[LFACE_SLANT_INDEX
])
1769 || SYMBOLP (attrs
[LFACE_SLANT_INDEX
]));
1770 eassert (UNSPECIFIEDP (attrs
[LFACE_UNDERLINE_INDEX
])
1771 || IGNORE_DEFFACE_P (attrs
[LFACE_UNDERLINE_INDEX
])
1772 || SYMBOLP (attrs
[LFACE_UNDERLINE_INDEX
])
1773 || STRINGP (attrs
[LFACE_UNDERLINE_INDEX
])
1774 || CONSP (attrs
[LFACE_UNDERLINE_INDEX
]));
1775 eassert (UNSPECIFIEDP (attrs
[LFACE_OVERLINE_INDEX
])
1776 || IGNORE_DEFFACE_P (attrs
[LFACE_OVERLINE_INDEX
])
1777 || SYMBOLP (attrs
[LFACE_OVERLINE_INDEX
])
1778 || STRINGP (attrs
[LFACE_OVERLINE_INDEX
]));
1779 eassert (UNSPECIFIEDP (attrs
[LFACE_STRIKE_THROUGH_INDEX
])
1780 || IGNORE_DEFFACE_P (attrs
[LFACE_STRIKE_THROUGH_INDEX
])
1781 || SYMBOLP (attrs
[LFACE_STRIKE_THROUGH_INDEX
])
1782 || STRINGP (attrs
[LFACE_STRIKE_THROUGH_INDEX
]));
1783 eassert (UNSPECIFIEDP (attrs
[LFACE_BOX_INDEX
])
1784 || IGNORE_DEFFACE_P (attrs
[LFACE_BOX_INDEX
])
1785 || SYMBOLP (attrs
[LFACE_BOX_INDEX
])
1786 || STRINGP (attrs
[LFACE_BOX_INDEX
])
1787 || INTEGERP (attrs
[LFACE_BOX_INDEX
])
1788 || CONSP (attrs
[LFACE_BOX_INDEX
]));
1789 eassert (UNSPECIFIEDP (attrs
[LFACE_INVERSE_INDEX
])
1790 || IGNORE_DEFFACE_P (attrs
[LFACE_INVERSE_INDEX
])
1791 || SYMBOLP (attrs
[LFACE_INVERSE_INDEX
]));
1792 eassert (UNSPECIFIEDP (attrs
[LFACE_FOREGROUND_INDEX
])
1793 || IGNORE_DEFFACE_P (attrs
[LFACE_FOREGROUND_INDEX
])
1794 || STRINGP (attrs
[LFACE_FOREGROUND_INDEX
]));
1795 eassert (UNSPECIFIEDP (attrs
[LFACE_DISTANT_FOREGROUND_INDEX
])
1796 || IGNORE_DEFFACE_P (attrs
[LFACE_DISTANT_FOREGROUND_INDEX
])
1797 || STRINGP (attrs
[LFACE_DISTANT_FOREGROUND_INDEX
]));
1798 eassert (UNSPECIFIEDP (attrs
[LFACE_BACKGROUND_INDEX
])
1799 || IGNORE_DEFFACE_P (attrs
[LFACE_BACKGROUND_INDEX
])
1800 || STRINGP (attrs
[LFACE_BACKGROUND_INDEX
]));
1801 eassert (UNSPECIFIEDP (attrs
[LFACE_INHERIT_INDEX
])
1802 || IGNORE_DEFFACE_P (attrs
[LFACE_INHERIT_INDEX
])
1803 || NILP (attrs
[LFACE_INHERIT_INDEX
])
1804 || SYMBOLP (attrs
[LFACE_INHERIT_INDEX
])
1805 || CONSP (attrs
[LFACE_INHERIT_INDEX
]));
1806 #ifdef HAVE_WINDOW_SYSTEM
1807 eassert (UNSPECIFIEDP (attrs
[LFACE_STIPPLE_INDEX
])
1808 || IGNORE_DEFFACE_P (attrs
[LFACE_STIPPLE_INDEX
])
1809 || SYMBOLP (attrs
[LFACE_STIPPLE_INDEX
])
1810 || !NILP (Fbitmap_spec_p (attrs
[LFACE_STIPPLE_INDEX
])));
1811 eassert (UNSPECIFIEDP (attrs
[LFACE_FONT_INDEX
])
1812 || IGNORE_DEFFACE_P (attrs
[LFACE_FONT_INDEX
])
1813 || FONTP (attrs
[LFACE_FONT_INDEX
]));
1814 eassert (UNSPECIFIEDP (attrs
[LFACE_FONTSET_INDEX
])
1815 || STRINGP (attrs
[LFACE_FONTSET_INDEX
])
1816 || NILP (attrs
[LFACE_FONTSET_INDEX
]));
1821 /* Check consistency of attributes of Lisp face LFACE (a Lisp vector). */
1824 check_lface (Lisp_Object lface
)
1828 eassert (LFACEP (lface
));
1829 check_lface_attrs (XVECTOR (lface
)->contents
);
1833 #else /* not GLYPH_DEBUG */
1835 #define check_lface_attrs(attrs) (void) 0
1836 #define check_lface(lface) (void) 0
1838 #endif /* GLYPH_DEBUG */
1842 /* Face-merge cycle checking. */
1844 enum named_merge_point_kind
1846 NAMED_MERGE_POINT_NORMAL
,
1847 NAMED_MERGE_POINT_REMAP
1850 /* A `named merge point' is simply a point during face-merging where we
1851 look up a face by name. We keep a stack of which named lookups we're
1852 currently processing so that we can easily detect cycles, using a
1853 linked- list of struct named_merge_point structures, typically
1854 allocated on the stack frame of the named lookup functions which are
1855 active (so no consing is required). */
1856 struct named_merge_point
1858 Lisp_Object face_name
;
1859 enum named_merge_point_kind named_merge_point_kind
;
1860 struct named_merge_point
*prev
;
1864 /* If a face merging cycle is detected for FACE_NAME, return 0,
1865 otherwise add NEW_NAMED_MERGE_POINT, which is initialized using
1866 FACE_NAME and NAMED_MERGE_POINT_KIND, as the head of the linked list
1867 pointed to by NAMED_MERGE_POINTS, and return 1. */
1870 push_named_merge_point (struct named_merge_point
*new_named_merge_point
,
1871 Lisp_Object face_name
,
1872 enum named_merge_point_kind named_merge_point_kind
,
1873 struct named_merge_point
**named_merge_points
)
1875 struct named_merge_point
*prev
;
1877 for (prev
= *named_merge_points
; prev
; prev
= prev
->prev
)
1878 if (EQ (face_name
, prev
->face_name
))
1880 if (prev
->named_merge_point_kind
== named_merge_point_kind
)
1881 /* A cycle, so fail. */
1883 else if (prev
->named_merge_point_kind
== NAMED_MERGE_POINT_REMAP
)
1884 /* A remap `hides ' any previous normal merge points
1885 (because the remap means that it's actually different face),
1886 so as we know the current merge point must be normal, we
1887 can just assume it's OK. */
1891 new_named_merge_point
->face_name
= face_name
;
1892 new_named_merge_point
->named_merge_point_kind
= named_merge_point_kind
;
1893 new_named_merge_point
->prev
= *named_merge_points
;
1895 *named_merge_points
= new_named_merge_point
;
1901 /* Resolve face name FACE_NAME. If FACE_NAME is a string, intern it
1902 to make it a symbol. If FACE_NAME is an alias for another face,
1903 return that face's name.
1905 Return default face in case of errors. */
1908 resolve_face_name (Lisp_Object face_name
, int signal_p
)
1910 Lisp_Object orig_face
;
1911 Lisp_Object tortoise
, hare
;
1913 if (STRINGP (face_name
))
1914 face_name
= intern (SSDATA (face_name
));
1916 if (NILP (face_name
) || !SYMBOLP (face_name
))
1919 orig_face
= face_name
;
1920 tortoise
= hare
= face_name
;
1925 hare
= Fget (hare
, Qface_alias
);
1926 if (NILP (hare
) || !SYMBOLP (hare
))
1930 hare
= Fget (hare
, Qface_alias
);
1931 if (NILP (hare
) || !SYMBOLP (hare
))
1934 tortoise
= Fget (tortoise
, Qface_alias
);
1935 if (EQ (hare
, tortoise
))
1938 xsignal1 (Qcircular_list
, orig_face
);
1947 /* Return the face definition of FACE_NAME on frame F. F null means
1948 return the definition for new frames. FACE_NAME may be a string or
1949 a symbol (apparently Emacs 20.2 allowed strings as face names in
1950 face text properties; Ediff uses that). If SIGNAL_P is non-zero,
1951 signal an error if FACE_NAME is not a valid face name. If SIGNAL_P
1952 is zero, value is nil if FACE_NAME is not a valid face name. */
1954 lface_from_face_name_no_resolve (struct frame
*f
, Lisp_Object face_name
,
1960 lface
= assq_no_quit (face_name
, f
->face_alist
);
1962 lface
= assq_no_quit (face_name
, Vface_new_frame_defaults
);
1965 lface
= XCDR (lface
);
1967 signal_error ("Invalid face", face_name
);
1969 check_lface (lface
);
1974 /* Return the face definition of FACE_NAME on frame F. F null means
1975 return the definition for new frames. FACE_NAME may be a string or
1976 a symbol (apparently Emacs 20.2 allowed strings as face names in
1977 face text properties; Ediff uses that). If FACE_NAME is an alias
1978 for another face, return that face's definition. If SIGNAL_P is
1979 non-zero, signal an error if FACE_NAME is not a valid face name.
1980 If SIGNAL_P is zero, value is nil if FACE_NAME is not a valid face
1983 lface_from_face_name (struct frame
*f
, Lisp_Object face_name
, int signal_p
)
1985 face_name
= resolve_face_name (face_name
, signal_p
);
1986 return lface_from_face_name_no_resolve (f
, face_name
, signal_p
);
1990 /* Get face attributes of face FACE_NAME from frame-local faces on
1991 frame F. Store the resulting attributes in ATTRS which must point
1992 to a vector of Lisp_Objects of size LFACE_VECTOR_SIZE. If SIGNAL_P
1993 is non-zero, signal an error if FACE_NAME does not name a face.
1994 Otherwise, value is zero if FACE_NAME is not a face. */
1997 get_lface_attributes_no_remap (struct frame
*f
, Lisp_Object face_name
,
1998 Lisp_Object attrs
[LFACE_VECTOR_SIZE
],
2003 lface
= lface_from_face_name_no_resolve (f
, face_name
, signal_p
);
2006 memcpy (attrs
, XVECTOR (lface
)->contents
,
2007 LFACE_VECTOR_SIZE
* sizeof *attrs
);
2009 return !NILP (lface
);
2012 /* Get face attributes of face FACE_NAME from frame-local faces on frame
2013 F. Store the resulting attributes in ATTRS which must point to a
2014 vector of Lisp_Objects of size LFACE_VECTOR_SIZE. If FACE_NAME is an
2015 alias for another face, use that face's definition. If SIGNAL_P is
2016 non-zero, signal an error if FACE_NAME does not name a face.
2017 Otherwise, value is zero if FACE_NAME is not a face. */
2020 get_lface_attributes (struct frame
*f
, Lisp_Object face_name
,
2021 Lisp_Object attrs
[LFACE_VECTOR_SIZE
], int signal_p
,
2022 struct named_merge_point
*named_merge_points
)
2024 Lisp_Object face_remapping
;
2026 face_name
= resolve_face_name (face_name
, signal_p
);
2028 /* See if SYMBOL has been remapped to some other face (usually this
2029 is done buffer-locally). */
2030 face_remapping
= assq_no_quit (face_name
, Vface_remapping_alist
);
2031 if (CONSP (face_remapping
))
2033 struct named_merge_point named_merge_point
;
2035 if (push_named_merge_point (&named_merge_point
,
2036 face_name
, NAMED_MERGE_POINT_REMAP
,
2037 &named_merge_points
))
2041 for (i
= 1; i
< LFACE_VECTOR_SIZE
; ++i
)
2042 attrs
[i
] = Qunspecified
;
2044 return merge_face_ref (f
, XCDR (face_remapping
), attrs
,
2045 signal_p
, named_merge_points
);
2049 /* Default case, no remapping. */
2050 return get_lface_attributes_no_remap (f
, face_name
, attrs
, signal_p
);
2054 /* Non-zero if all attributes in face attribute vector ATTRS are
2055 specified, i.e. are non-nil. */
2058 lface_fully_specified_p (Lisp_Object attrs
[LFACE_VECTOR_SIZE
])
2062 for (i
= 1; i
< LFACE_VECTOR_SIZE
; ++i
)
2063 if (i
!= LFACE_FONT_INDEX
&& i
!= LFACE_INHERIT_INDEX
2064 && i
!= LFACE_DISTANT_FOREGROUND_INDEX
)
2065 if ((UNSPECIFIEDP (attrs
[i
]) || IGNORE_DEFFACE_P (attrs
[i
])))
2068 return i
== LFACE_VECTOR_SIZE
;
2071 #ifdef HAVE_WINDOW_SYSTEM
2073 /* Set font-related attributes of Lisp face LFACE from FONT-OBJECT.
2074 If FORCE_P is zero, set only unspecified attributes of LFACE. The
2075 exception is `font' attribute. It is set to FONT_OBJECT regardless
2079 set_lface_from_font (struct frame
*f
, Lisp_Object lface
,
2080 Lisp_Object font_object
, int force_p
)
2083 struct font
*font
= XFONT_OBJECT (font_object
);
2085 /* Set attributes only if unspecified, otherwise face defaults for
2086 new frames would never take effect. If the font doesn't have a
2087 specific property, set a normal value for that. */
2089 if (force_p
|| UNSPECIFIEDP (LFACE_FAMILY (lface
)))
2091 Lisp_Object family
= AREF (font_object
, FONT_FAMILY_INDEX
);
2093 ASET (lface
, LFACE_FAMILY_INDEX
, SYMBOL_NAME (family
));
2096 if (force_p
|| UNSPECIFIEDP (LFACE_FOUNDRY (lface
)))
2098 Lisp_Object foundry
= AREF (font_object
, FONT_FOUNDRY_INDEX
);
2100 ASET (lface
, LFACE_FOUNDRY_INDEX
, SYMBOL_NAME (foundry
));
2103 if (force_p
|| UNSPECIFIEDP (LFACE_HEIGHT (lface
)))
2105 int pt
= PIXEL_TO_POINT (font
->pixel_size
* 10, FRAME_RES_Y (f
));
2108 ASET (lface
, LFACE_HEIGHT_INDEX
, make_number (pt
));
2111 if (force_p
|| UNSPECIFIEDP (LFACE_WEIGHT (lface
)))
2113 val
= FONT_WEIGHT_FOR_FACE (font_object
);
2114 ASET (lface
, LFACE_WEIGHT_INDEX
, ! NILP (val
) ? val
:Qnormal
);
2116 if (force_p
|| UNSPECIFIEDP (LFACE_SLANT (lface
)))
2118 val
= FONT_SLANT_FOR_FACE (font_object
);
2119 ASET (lface
, LFACE_SLANT_INDEX
, ! NILP (val
) ? val
: Qnormal
);
2121 if (force_p
|| UNSPECIFIEDP (LFACE_SWIDTH (lface
)))
2123 val
= FONT_WIDTH_FOR_FACE (font_object
);
2124 ASET (lface
, LFACE_SWIDTH_INDEX
, ! NILP (val
) ? val
: Qnormal
);
2127 ASET (lface
, LFACE_FONT_INDEX
, font_object
);
2131 #endif /* HAVE_WINDOW_SYSTEM */
2134 /* Merges the face height FROM with the face height TO, and returns the
2135 merged height. If FROM is an invalid height, then INVALID is
2136 returned instead. FROM and TO may be either absolute face heights or
2137 `relative' heights; the returned value is always an absolute height
2138 unless both FROM and TO are relative. */
2141 merge_face_heights (Lisp_Object from
, Lisp_Object to
, Lisp_Object invalid
)
2143 Lisp_Object result
= invalid
;
2145 if (INTEGERP (from
))
2146 /* FROM is absolute, just use it as is. */
2148 else if (FLOATP (from
))
2149 /* FROM is a scale, use it to adjust TO. */
2152 /* relative X absolute => absolute */
2153 result
= make_number (XFLOAT_DATA (from
) * XINT (to
));
2154 else if (FLOATP (to
))
2155 /* relative X relative => relative */
2156 result
= make_float (XFLOAT_DATA (from
) * XFLOAT_DATA (to
));
2157 else if (UNSPECIFIEDP (to
))
2160 else if (FUNCTIONP (from
))
2161 /* FROM is a function, which use to adjust TO. */
2163 /* Call function with current height as argument.
2164 From is the new height. */
2165 result
= safe_call1 (from
, to
);
2167 /* Ensure that if TO was absolute, so is the result. */
2168 if (INTEGERP (to
) && !INTEGERP (result
))
2176 /* Merge two Lisp face attribute vectors on frame F, FROM and TO, and
2177 store the resulting attributes in TO, which must be already be
2178 completely specified and contain only absolute attributes. Every
2179 specified attribute of FROM overrides the corresponding attribute of
2180 TO; relative attributes in FROM are merged with the absolute value in
2181 TO and replace it. NAMED_MERGE_POINTS is used internally to detect
2182 loops in face inheritance/remapping; it should be 0 when called from
2186 merge_face_vectors (struct frame
*f
, Lisp_Object
*from
, Lisp_Object
*to
,
2187 struct named_merge_point
*named_merge_points
)
2190 Lisp_Object font
= Qnil
;
2192 /* If FROM inherits from some other faces, merge their attributes into
2193 TO before merging FROM's direct attributes. Note that an :inherit
2194 attribute of `unspecified' is the same as one of nil; we never
2195 merge :inherit attributes, so nil is more correct, but lots of
2196 other code uses `unspecified' as a generic value for face attributes. */
2197 if (!UNSPECIFIEDP (from
[LFACE_INHERIT_INDEX
])
2198 && !NILP (from
[LFACE_INHERIT_INDEX
]))
2199 merge_face_ref (f
, from
[LFACE_INHERIT_INDEX
], to
, 0, named_merge_points
);
2201 if (FONT_SPEC_P (from
[LFACE_FONT_INDEX
]))
2203 if (!UNSPECIFIEDP (to
[LFACE_FONT_INDEX
]))
2204 font
= merge_font_spec (from
[LFACE_FONT_INDEX
], to
[LFACE_FONT_INDEX
]);
2206 font
= copy_font_spec (from
[LFACE_FONT_INDEX
]);
2207 to
[LFACE_FONT_INDEX
] = font
;
2210 for (i
= 1; i
< LFACE_VECTOR_SIZE
; ++i
)
2211 if (!UNSPECIFIEDP (from
[i
]))
2213 if (i
== LFACE_HEIGHT_INDEX
&& !INTEGERP (from
[i
]))
2215 to
[i
] = merge_face_heights (from
[i
], to
[i
], to
[i
]);
2216 font_clear_prop (to
, FONT_SIZE_INDEX
);
2218 else if (i
!= LFACE_FONT_INDEX
&& ! EQ (to
[i
], from
[i
]))
2221 if (i
>= LFACE_FAMILY_INDEX
&& i
<=LFACE_SLANT_INDEX
)
2222 font_clear_prop (to
,
2223 (i
== LFACE_FAMILY_INDEX
? FONT_FAMILY_INDEX
2224 : i
== LFACE_FOUNDRY_INDEX
? FONT_FOUNDRY_INDEX
2225 : i
== LFACE_SWIDTH_INDEX
? FONT_WIDTH_INDEX
2226 : i
== LFACE_HEIGHT_INDEX
? FONT_SIZE_INDEX
2227 : i
== LFACE_WEIGHT_INDEX
? FONT_WEIGHT_INDEX
2228 : FONT_SLANT_INDEX
));
2232 /* If FROM specifies a font spec, make its contents take precedence
2233 over :family and other attributes. This is needed for face
2234 remapping using :font to work. */
2238 if (! NILP (AREF (font
, FONT_FOUNDRY_INDEX
)))
2239 to
[LFACE_FOUNDRY_INDEX
] = SYMBOL_NAME (AREF (font
, FONT_FOUNDRY_INDEX
));
2240 if (! NILP (AREF (font
, FONT_FAMILY_INDEX
)))
2241 to
[LFACE_FAMILY_INDEX
] = SYMBOL_NAME (AREF (font
, FONT_FAMILY_INDEX
));
2242 if (! NILP (AREF (font
, FONT_WEIGHT_INDEX
)))
2243 to
[LFACE_WEIGHT_INDEX
] = FONT_WEIGHT_FOR_FACE (font
);
2244 if (! NILP (AREF (font
, FONT_SLANT_INDEX
)))
2245 to
[LFACE_SLANT_INDEX
] = FONT_SLANT_FOR_FACE (font
);
2246 if (! NILP (AREF (font
, FONT_WIDTH_INDEX
)))
2247 to
[LFACE_SWIDTH_INDEX
] = FONT_WIDTH_FOR_FACE (font
);
2248 ASET (font
, FONT_SIZE_INDEX
, Qnil
);
2251 /* TO is always an absolute face, which should inherit from nothing.
2252 We blindly copy the :inherit attribute above and fix it up here. */
2253 to
[LFACE_INHERIT_INDEX
] = Qnil
;
2256 /* Merge the named face FACE_NAME on frame F, into the vector of face
2257 attributes TO. NAMED_MERGE_POINTS is used to detect loops in face
2258 inheritance. Returns true if FACE_NAME is a valid face name and
2259 merging succeeded. */
2262 merge_named_face (struct frame
*f
, Lisp_Object face_name
, Lisp_Object
*to
,
2263 struct named_merge_point
*named_merge_points
)
2265 struct named_merge_point named_merge_point
;
2267 if (push_named_merge_point (&named_merge_point
,
2268 face_name
, NAMED_MERGE_POINT_NORMAL
,
2269 &named_merge_points
))
2271 struct gcpro gcpro1
;
2272 Lisp_Object from
[LFACE_VECTOR_SIZE
];
2273 int ok
= get_lface_attributes (f
, face_name
, from
, 0, named_merge_points
);
2277 GCPRO1 (named_merge_point
.face_name
);
2278 merge_face_vectors (f
, from
, to
, named_merge_points
);
2289 /* Merge face attributes from the lisp `face reference' FACE_REF on
2290 frame F into the face attribute vector TO. If ERR_MSGS is non-zero,
2291 problems with FACE_REF cause an error message to be shown. Return
2292 non-zero if no errors occurred (regardless of the value of ERR_MSGS).
2293 NAMED_MERGE_POINTS is used to detect loops in face inheritance or
2294 list structure; it may be 0 for most callers.
2296 FACE_REF may be a single face specification or a list of such
2297 specifications. Each face specification can be:
2299 1. A symbol or string naming a Lisp face.
2301 2. A property list of the form (KEYWORD VALUE ...) where each
2302 KEYWORD is a face attribute name, and value is an appropriate value
2305 3. Conses or the form (FOREGROUND-COLOR . COLOR) or
2306 (BACKGROUND-COLOR . COLOR) where COLOR is a color name. This is
2307 for compatibility with 20.2.
2309 Face specifications earlier in lists take precedence over later
2313 merge_face_ref (struct frame
*f
, Lisp_Object face_ref
, Lisp_Object
*to
,
2314 int err_msgs
, struct named_merge_point
*named_merge_points
)
2316 int ok
= 1; /* Succeed without an error? */
2318 if (CONSP (face_ref
))
2320 Lisp_Object first
= XCAR (face_ref
);
2322 if (EQ (first
, Qforeground_color
)
2323 || EQ (first
, Qbackground_color
))
2325 /* One of (FOREGROUND-COLOR . COLOR) or (BACKGROUND-COLOR
2326 . COLOR). COLOR must be a string. */
2327 Lisp_Object color_name
= XCDR (face_ref
);
2328 Lisp_Object color
= first
;
2330 if (STRINGP (color_name
))
2332 if (EQ (color
, Qforeground_color
))
2333 to
[LFACE_FOREGROUND_INDEX
] = color_name
;
2335 to
[LFACE_BACKGROUND_INDEX
] = color_name
;
2340 add_to_log ("Invalid face color", color_name
, Qnil
);
2344 else if (SYMBOLP (first
)
2345 && *SDATA (SYMBOL_NAME (first
)) == ':')
2347 /* Assume this is the property list form. */
2348 while (CONSP (face_ref
) && CONSP (XCDR (face_ref
)))
2350 Lisp_Object keyword
= XCAR (face_ref
);
2351 Lisp_Object value
= XCAR (XCDR (face_ref
));
2354 /* Specifying `unspecified' is a no-op. */
2355 if (EQ (value
, Qunspecified
))
2357 else if (EQ (keyword
, QCfamily
))
2359 if (STRINGP (value
))
2361 to
[LFACE_FAMILY_INDEX
] = value
;
2362 font_clear_prop (to
, FONT_FAMILY_INDEX
);
2367 else if (EQ (keyword
, QCfoundry
))
2369 if (STRINGP (value
))
2371 to
[LFACE_FOUNDRY_INDEX
] = value
;
2372 font_clear_prop (to
, FONT_FOUNDRY_INDEX
);
2377 else if (EQ (keyword
, QCheight
))
2379 Lisp_Object new_height
=
2380 merge_face_heights (value
, to
[LFACE_HEIGHT_INDEX
], Qnil
);
2382 if (! NILP (new_height
))
2384 to
[LFACE_HEIGHT_INDEX
] = new_height
;
2385 font_clear_prop (to
, FONT_SIZE_INDEX
);
2390 else if (EQ (keyword
, QCweight
))
2392 if (SYMBOLP (value
) && FONT_WEIGHT_NAME_NUMERIC (value
) >= 0)
2394 to
[LFACE_WEIGHT_INDEX
] = value
;
2395 font_clear_prop (to
, FONT_WEIGHT_INDEX
);
2400 else if (EQ (keyword
, QCslant
))
2402 if (SYMBOLP (value
) && FONT_SLANT_NAME_NUMERIC (value
) >= 0)
2404 to
[LFACE_SLANT_INDEX
] = value
;
2405 font_clear_prop (to
, FONT_SLANT_INDEX
);
2410 else if (EQ (keyword
, QCunderline
))
2416 to
[LFACE_UNDERLINE_INDEX
] = value
;
2420 else if (EQ (keyword
, QCoverline
))
2425 to
[LFACE_OVERLINE_INDEX
] = value
;
2429 else if (EQ (keyword
, QCstrike_through
))
2434 to
[LFACE_STRIKE_THROUGH_INDEX
] = value
;
2438 else if (EQ (keyword
, QCbox
))
2441 value
= make_number (1);
2442 if (INTEGERP (value
)
2446 to
[LFACE_BOX_INDEX
] = value
;
2450 else if (EQ (keyword
, QCinverse_video
)
2451 || EQ (keyword
, QCreverse_video
))
2453 if (EQ (value
, Qt
) || NILP (value
))
2454 to
[LFACE_INVERSE_INDEX
] = value
;
2458 else if (EQ (keyword
, QCforeground
))
2460 if (STRINGP (value
))
2461 to
[LFACE_FOREGROUND_INDEX
] = value
;
2465 else if (EQ (keyword
, QCdistant_foreground
))
2467 if (STRINGP (value
))
2468 to
[LFACE_DISTANT_FOREGROUND_INDEX
] = value
;
2472 else if (EQ (keyword
, QCbackground
))
2474 if (STRINGP (value
))
2475 to
[LFACE_BACKGROUND_INDEX
] = value
;
2479 else if (EQ (keyword
, QCstipple
))
2481 #if defined (HAVE_WINDOW_SYSTEM)
2482 Lisp_Object pixmap_p
= Fbitmap_spec_p (value
);
2483 if (!NILP (pixmap_p
))
2484 to
[LFACE_STIPPLE_INDEX
] = value
;
2487 #endif /* HAVE_WINDOW_SYSTEM */
2489 else if (EQ (keyword
, QCwidth
))
2491 if (SYMBOLP (value
) && FONT_WIDTH_NAME_NUMERIC (value
) >= 0)
2493 to
[LFACE_SWIDTH_INDEX
] = value
;
2494 font_clear_prop (to
, FONT_WIDTH_INDEX
);
2499 else if (EQ (keyword
, QCfont
))
2502 to
[LFACE_FONT_INDEX
] = value
;
2506 else if (EQ (keyword
, QCinherit
))
2508 /* This is not really very useful; it's just like a
2509 normal face reference. */
2510 if (! merge_face_ref (f
, value
, to
,
2511 err_msgs
, named_merge_points
))
2519 add_to_log ("Invalid face attribute %S %S", keyword
, value
);
2523 face_ref
= XCDR (XCDR (face_ref
));
2528 /* This is a list of face refs. Those at the beginning of the
2529 list take precedence over what follows, so we have to merge
2530 from the end backwards. */
2531 Lisp_Object next
= XCDR (face_ref
);
2534 ok
= merge_face_ref (f
, next
, to
, err_msgs
, named_merge_points
);
2536 if (! merge_face_ref (f
, first
, to
, err_msgs
, named_merge_points
))
2542 /* FACE_REF ought to be a face name. */
2543 ok
= merge_named_face (f
, face_ref
, to
, named_merge_points
);
2544 if (!ok
&& err_msgs
)
2545 add_to_log ("Invalid face reference: %s", face_ref
, Qnil
);
2552 DEFUN ("internal-make-lisp-face", Finternal_make_lisp_face
,
2553 Sinternal_make_lisp_face
, 1, 2, 0,
2554 doc
: /* Make FACE, a symbol, a Lisp face with all attributes nil.
2555 If FACE was not known as a face before, create a new one.
2556 If optional argument FRAME is specified, make a frame-local face
2557 for that frame. Otherwise operate on the global face definition.
2558 Value is a vector of face attributes. */)
2559 (Lisp_Object face
, Lisp_Object frame
)
2561 Lisp_Object global_lface
, lface
;
2565 CHECK_SYMBOL (face
);
2566 global_lface
= lface_from_face_name (NULL
, face
, 0);
2570 CHECK_LIVE_FRAME (frame
);
2572 lface
= lface_from_face_name (f
, face
, 0);
2575 f
= NULL
, lface
= Qnil
;
2577 /* Add a global definition if there is none. */
2578 if (NILP (global_lface
))
2580 global_lface
= Fmake_vector (make_number (LFACE_VECTOR_SIZE
),
2582 ASET (global_lface
, 0, Qface
);
2583 Vface_new_frame_defaults
= Fcons (Fcons (face
, global_lface
),
2584 Vface_new_frame_defaults
);
2586 /* Assign the new Lisp face a unique ID. The mapping from Lisp
2587 face id to Lisp face is given by the vector lface_id_to_name.
2588 The mapping from Lisp face to Lisp face id is given by the
2589 property `face' of the Lisp face name. */
2590 if (next_lface_id
== lface_id_to_name_size
)
2592 xpalloc (lface_id_to_name
, &lface_id_to_name_size
, 1, MAX_FACE_ID
,
2593 sizeof *lface_id_to_name
);
2595 lface_id_to_name
[next_lface_id
] = face
;
2596 Fput (face
, Qface
, make_number (next_lface_id
));
2600 for (i
= 1; i
< LFACE_VECTOR_SIZE
; ++i
)
2601 ASET (global_lface
, i
, Qunspecified
);
2603 /* Add a frame-local definition. */
2608 lface
= Fmake_vector (make_number (LFACE_VECTOR_SIZE
),
2610 ASET (lface
, 0, Qface
);
2611 fset_face_alist (f
, Fcons (Fcons (face
, lface
), f
->face_alist
));
2614 for (i
= 1; i
< LFACE_VECTOR_SIZE
; ++i
)
2615 ASET (lface
, i
, Qunspecified
);
2618 lface
= global_lface
;
2620 /* Changing a named face means that all realized faces depending on
2621 that face are invalid. Since we cannot tell which realized faces
2622 depend on the face, make sure they are all removed. This is done
2623 by incrementing face_change_count. The next call to
2624 init_iterator will then free realized faces. */
2625 if (NILP (Fget (face
, Qface_no_inherit
)))
2627 ++face_change_count
;
2628 windows_or_buffers_changed
= 54;
2631 eassert (LFACEP (lface
));
2632 check_lface (lface
);
2637 DEFUN ("internal-lisp-face-p", Finternal_lisp_face_p
,
2638 Sinternal_lisp_face_p
, 1, 2, 0,
2639 doc
: /* Return non-nil if FACE names a face.
2640 FACE should be a symbol or string.
2641 If optional second argument FRAME is non-nil, check for the
2642 existence of a frame-local face with name FACE on that frame.
2643 Otherwise check for the existence of a global face. */)
2644 (Lisp_Object face
, Lisp_Object frame
)
2648 face
= resolve_face_name (face
, 1);
2652 CHECK_LIVE_FRAME (frame
);
2653 lface
= lface_from_face_name (XFRAME (frame
), face
, 0);
2656 lface
= lface_from_face_name (NULL
, face
, 0);
2662 DEFUN ("internal-copy-lisp-face", Finternal_copy_lisp_face
,
2663 Sinternal_copy_lisp_face
, 4, 4, 0,
2664 doc
: /* Copy face FROM to TO.
2665 If FRAME is t, copy the global face definition of FROM.
2666 Otherwise, copy the frame-local definition of FROM on FRAME.
2667 If NEW-FRAME is a frame, copy that data into the frame-local
2668 definition of TO on NEW-FRAME. If NEW-FRAME is nil,
2669 FRAME controls where the data is copied to.
2671 The value is TO. */)
2672 (Lisp_Object from
, Lisp_Object to
, Lisp_Object frame
, Lisp_Object new_frame
)
2674 Lisp_Object lface
, copy
;
2676 CHECK_SYMBOL (from
);
2681 /* Copy global definition of FROM. We don't make copies of
2682 strings etc. because 20.2 didn't do it either. */
2683 lface
= lface_from_face_name (NULL
, from
, 1);
2684 copy
= Finternal_make_lisp_face (to
, Qnil
);
2688 /* Copy frame-local definition of FROM. */
2689 if (NILP (new_frame
))
2691 CHECK_LIVE_FRAME (frame
);
2692 CHECK_LIVE_FRAME (new_frame
);
2693 lface
= lface_from_face_name (XFRAME (frame
), from
, 1);
2694 copy
= Finternal_make_lisp_face (to
, new_frame
);
2697 vcopy (copy
, 0, XVECTOR (lface
)->contents
, LFACE_VECTOR_SIZE
);
2699 /* Changing a named face means that all realized faces depending on
2700 that face are invalid. Since we cannot tell which realized faces
2701 depend on the face, make sure they are all removed. This is done
2702 by incrementing face_change_count. The next call to
2703 init_iterator will then free realized faces. */
2704 if (NILP (Fget (to
, Qface_no_inherit
)))
2706 ++face_change_count
;
2707 windows_or_buffers_changed
= 55;
2714 DEFUN ("internal-set-lisp-face-attribute", Finternal_set_lisp_face_attribute
,
2715 Sinternal_set_lisp_face_attribute
, 3, 4, 0,
2716 doc
: /* Set attribute ATTR of FACE to VALUE.
2717 FRAME being a frame means change the face on that frame.
2718 FRAME nil means change the face of the selected frame.
2719 FRAME t means change the default for new frames.
2720 FRAME 0 means change the face on all frames, and change the default
2722 (Lisp_Object face
, Lisp_Object attr
, Lisp_Object value
, Lisp_Object frame
)
2725 Lisp_Object old_value
= Qnil
;
2726 /* Set one of enum font_property_index (> 0) if ATTR is one of
2727 font-related attributes other than QCfont and QCfontset. */
2728 enum font_property_index prop_index
= 0;
2730 CHECK_SYMBOL (face
);
2731 CHECK_SYMBOL (attr
);
2733 face
= resolve_face_name (face
, 1);
2735 /* If FRAME is 0, change face on all frames, and change the
2736 default for new frames. */
2737 if (INTEGERP (frame
) && XINT (frame
) == 0)
2740 Finternal_set_lisp_face_attribute (face
, attr
, value
, Qt
);
2741 FOR_EACH_FRAME (tail
, frame
)
2742 Finternal_set_lisp_face_attribute (face
, attr
, value
, frame
);
2746 /* Set lface to the Lisp attribute vector of FACE. */
2749 lface
= lface_from_face_name (NULL
, face
, 1);
2751 /* When updating face-new-frame-defaults, we put :ignore-defface
2752 where the caller wants `unspecified'. This forces the frame
2753 defaults to ignore the defface value. Otherwise, the defface
2754 will take effect, which is generally not what is intended.
2755 The value of that attribute will be inherited from some other
2756 face during face merging. See internal_merge_in_global_face. */
2757 if (UNSPECIFIEDP (value
))
2758 value
= QCignore_defface
;
2763 frame
= selected_frame
;
2765 CHECK_LIVE_FRAME (frame
);
2766 lface
= lface_from_face_name (XFRAME (frame
), face
, 0);
2768 /* If a frame-local face doesn't exist yet, create one. */
2770 lface
= Finternal_make_lisp_face (face
, frame
);
2773 if (EQ (attr
, QCfamily
))
2775 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
2777 CHECK_STRING (value
);
2778 if (SCHARS (value
) == 0)
2779 signal_error ("Invalid face family", value
);
2781 old_value
= LFACE_FAMILY (lface
);
2782 ASET (lface
, LFACE_FAMILY_INDEX
, value
);
2783 prop_index
= FONT_FAMILY_INDEX
;
2785 else if (EQ (attr
, QCfoundry
))
2787 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
2789 CHECK_STRING (value
);
2790 if (SCHARS (value
) == 0)
2791 signal_error ("Invalid face foundry", value
);
2793 old_value
= LFACE_FOUNDRY (lface
);
2794 ASET (lface
, LFACE_FOUNDRY_INDEX
, value
);
2795 prop_index
= FONT_FOUNDRY_INDEX
;
2797 else if (EQ (attr
, QCheight
))
2799 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
2801 if (EQ (face
, Qdefault
))
2803 /* The default face must have an absolute size. */
2804 if (!INTEGERP (value
) || XINT (value
) <= 0)
2805 signal_error ("Default face height not absolute and positive",
2810 /* For non-default faces, do a test merge with a random
2811 height to see if VALUE's ok. */
2812 Lisp_Object test
= merge_face_heights (value
,
2815 if (!INTEGERP (test
) || XINT (test
) <= 0)
2816 signal_error ("Face height does not produce a positive integer",
2821 old_value
= LFACE_HEIGHT (lface
);
2822 ASET (lface
, LFACE_HEIGHT_INDEX
, value
);
2823 prop_index
= FONT_SIZE_INDEX
;
2825 else if (EQ (attr
, QCweight
))
2827 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
2829 CHECK_SYMBOL (value
);
2830 if (FONT_WEIGHT_NAME_NUMERIC (value
) < 0)
2831 signal_error ("Invalid face weight", value
);
2833 old_value
= LFACE_WEIGHT (lface
);
2834 ASET (lface
, LFACE_WEIGHT_INDEX
, value
);
2835 prop_index
= FONT_WEIGHT_INDEX
;
2837 else if (EQ (attr
, QCslant
))
2839 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
2841 CHECK_SYMBOL (value
);
2842 if (FONT_SLANT_NAME_NUMERIC (value
) < 0)
2843 signal_error ("Invalid face slant", value
);
2845 old_value
= LFACE_SLANT (lface
);
2846 ASET (lface
, LFACE_SLANT_INDEX
, value
);
2847 prop_index
= FONT_SLANT_INDEX
;
2849 else if (EQ (attr
, QCunderline
))
2853 if (UNSPECIFIEDP (value
) || IGNORE_DEFFACE_P (value
))
2855 else if (NILP (value
) || EQ (value
, Qt
))
2857 else if (STRINGP (value
) && SCHARS (value
) > 0)
2859 else if (CONSP (value
))
2861 Lisp_Object key
, val
, list
;
2864 /* FIXME? This errs on the side of acceptance. Eg it accepts:
2865 (defface foo '((t :underline 'foo) "doc")
2866 Maybe this is intentional, maybe it isn't.
2867 Non-nil symbols other than t are not documented as being valid.
2868 Eg compare with inverse-video, which explicitly rejects them.
2872 while (!NILP (CAR_SAFE(list
)))
2874 key
= CAR_SAFE (list
);
2875 list
= CDR_SAFE (list
);
2876 val
= CAR_SAFE (list
);
2877 list
= CDR_SAFE (list
);
2879 if (NILP (key
) || NILP (val
))
2885 else if (EQ (key
, QCcolor
)
2886 && !(EQ (val
, Qforeground_color
)
2887 || (STRINGP (val
) && SCHARS (val
) > 0)))
2893 else if (EQ (key
, QCstyle
)
2894 && !(EQ (val
, Qline
) || EQ (val
, Qwave
)))
2903 signal_error ("Invalid face underline", value
);
2905 old_value
= LFACE_UNDERLINE (lface
);
2906 ASET (lface
, LFACE_UNDERLINE_INDEX
, value
);
2908 else if (EQ (attr
, QCoverline
))
2910 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
2911 if ((SYMBOLP (value
)
2913 && !EQ (value
, Qnil
))
2914 /* Overline color. */
2916 && SCHARS (value
) == 0))
2917 signal_error ("Invalid face overline", value
);
2919 old_value
= LFACE_OVERLINE (lface
);
2920 ASET (lface
, LFACE_OVERLINE_INDEX
, value
);
2922 else if (EQ (attr
, QCstrike_through
))
2924 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
2925 if ((SYMBOLP (value
)
2927 && !EQ (value
, Qnil
))
2928 /* Strike-through color. */
2930 && SCHARS (value
) == 0))
2931 signal_error ("Invalid face strike-through", value
);
2933 old_value
= LFACE_STRIKE_THROUGH (lface
);
2934 ASET (lface
, LFACE_STRIKE_THROUGH_INDEX
, value
);
2936 else if (EQ (attr
, QCbox
))
2940 /* Allow t meaning a simple box of width 1 in foreground color
2943 value
= make_number (1);
2945 if (UNSPECIFIEDP (value
) || IGNORE_DEFFACE_P (value
))
2947 else if (NILP (value
))
2949 else if (INTEGERP (value
))
2950 valid_p
= XINT (value
) != 0;
2951 else if (STRINGP (value
))
2952 valid_p
= SCHARS (value
) > 0;
2953 else if (CONSP (value
))
2969 if (EQ (k
, QCline_width
))
2971 if (!INTEGERP (v
) || XINT (v
) == 0)
2974 else if (EQ (k
, QCcolor
))
2976 if (!NILP (v
) && (!STRINGP (v
) || SCHARS (v
) == 0))
2979 else if (EQ (k
, QCstyle
))
2981 if (!EQ (v
, Qpressed_button
) && !EQ (v
, Qreleased_button
))
2988 valid_p
= NILP (tem
);
2994 signal_error ("Invalid face box", value
);
2996 old_value
= LFACE_BOX (lface
);
2997 ASET (lface
, LFACE_BOX_INDEX
, value
);
2999 else if (EQ (attr
, QCinverse_video
)
3000 || EQ (attr
, QCreverse_video
))
3002 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
3004 CHECK_SYMBOL (value
);
3005 if (!EQ (value
, Qt
) && !NILP (value
))
3006 signal_error ("Invalid inverse-video face attribute value", value
);
3008 old_value
= LFACE_INVERSE (lface
);
3009 ASET (lface
, LFACE_INVERSE_INDEX
, value
);
3011 else if (EQ (attr
, QCforeground
))
3013 /* Compatibility with 20.x. */
3015 value
= Qunspecified
;
3016 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
3018 /* Don't check for valid color names here because it depends
3019 on the frame (display) whether the color will be valid
3020 when the face is realized. */
3021 CHECK_STRING (value
);
3022 if (SCHARS (value
) == 0)
3023 signal_error ("Empty foreground color value", value
);
3025 old_value
= LFACE_FOREGROUND (lface
);
3026 ASET (lface
, LFACE_FOREGROUND_INDEX
, value
);
3028 else if (EQ (attr
, QCdistant_foreground
))
3030 /* Compatibility with 20.x. */
3032 value
= Qunspecified
;
3033 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
3035 /* Don't check for valid color names here because it depends
3036 on the frame (display) whether the color will be valid
3037 when the face is realized. */
3038 CHECK_STRING (value
);
3039 if (SCHARS (value
) == 0)
3040 signal_error ("Empty distant-foreground color value", value
);
3042 old_value
= LFACE_DISTANT_FOREGROUND (lface
);
3043 ASET (lface
, LFACE_DISTANT_FOREGROUND_INDEX
, value
);
3045 else if (EQ (attr
, QCbackground
))
3047 /* Compatibility with 20.x. */
3049 value
= Qunspecified
;
3050 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
3052 /* Don't check for valid color names here because it depends
3053 on the frame (display) whether the color will be valid
3054 when the face is realized. */
3055 CHECK_STRING (value
);
3056 if (SCHARS (value
) == 0)
3057 signal_error ("Empty background color value", value
);
3059 old_value
= LFACE_BACKGROUND (lface
);
3060 ASET (lface
, LFACE_BACKGROUND_INDEX
, value
);
3062 else if (EQ (attr
, QCstipple
))
3064 #if defined (HAVE_WINDOW_SYSTEM)
3065 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
)
3067 && NILP (Fbitmap_spec_p (value
)))
3068 signal_error ("Invalid stipple attribute", value
);
3069 old_value
= LFACE_STIPPLE (lface
);
3070 ASET (lface
, LFACE_STIPPLE_INDEX
, value
);
3071 #endif /* HAVE_WINDOW_SYSTEM */
3073 else if (EQ (attr
, QCwidth
))
3075 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
3077 CHECK_SYMBOL (value
);
3078 if (FONT_WIDTH_NAME_NUMERIC (value
) < 0)
3079 signal_error ("Invalid face width", value
);
3081 old_value
= LFACE_SWIDTH (lface
);
3082 ASET (lface
, LFACE_SWIDTH_INDEX
, value
);
3083 prop_index
= FONT_WIDTH_INDEX
;
3085 else if (EQ (attr
, QCfont
))
3087 #ifdef HAVE_WINDOW_SYSTEM
3088 if (EQ (frame
, Qt
) || FRAME_WINDOW_P (XFRAME (frame
)))
3090 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
))
3094 old_value
= LFACE_FONT (lface
);
3095 if (! FONTP (value
))
3097 if (STRINGP (value
))
3099 Lisp_Object name
= value
;
3100 int fontset
= fs_query_fontset (name
, 0);
3103 name
= fontset_ascii (fontset
);
3104 value
= font_spec_from_name (name
);
3106 signal_error ("Invalid font name", name
);
3109 signal_error ("Invalid font or font-spec", value
);
3112 f
= XFRAME (selected_frame
);
3117 If frame is t, and selected frame is a tty frame, the font
3118 can't be realized. An improvement would be to loop over frames
3119 for a non-tty frame and use that. See discussion in Bug#18573.
3120 For a daemon, frame may be an initial frame (Bug#18869). */
3121 if (FRAME_WINDOW_P (f
))
3123 if (! FONT_OBJECT_P (value
))
3125 Lisp_Object
*attrs
= XVECTOR (lface
)->contents
;
3126 Lisp_Object font_object
;
3128 font_object
= font_load_for_lface (f
, attrs
, value
);
3129 if (NILP (font_object
))
3130 signal_error ("Font not available", value
);
3131 value
= font_object
;
3133 set_lface_from_font (f
, lface
, value
, 1);
3137 ASET (lface
, LFACE_FONT_INDEX
, value
);
3139 #endif /* HAVE_WINDOW_SYSTEM */
3141 else if (EQ (attr
, QCfontset
))
3143 #ifdef HAVE_WINDOW_SYSTEM
3144 if (EQ (frame
, Qt
) || FRAME_WINDOW_P (XFRAME (frame
)))
3148 old_value
= LFACE_FONTSET (lface
);
3149 tmp
= Fquery_fontset (value
, Qnil
);
3151 signal_error ("Invalid fontset name", value
);
3152 ASET (lface
, LFACE_FONTSET_INDEX
, value
= tmp
);
3154 #endif /* HAVE_WINDOW_SYSTEM */
3156 else if (EQ (attr
, QCinherit
))
3159 if (SYMBOLP (value
))
3162 for (tail
= value
; CONSP (tail
); tail
= XCDR (tail
))
3163 if (!SYMBOLP (XCAR (tail
)))
3166 ASET (lface
, LFACE_INHERIT_INDEX
, value
);
3168 signal_error ("Invalid face inheritance", value
);
3170 else if (EQ (attr
, QCbold
))
3172 old_value
= LFACE_WEIGHT (lface
);
3173 ASET (lface
, LFACE_WEIGHT_INDEX
, NILP (value
) ? Qnormal
: Qbold
);
3174 prop_index
= FONT_WEIGHT_INDEX
;
3176 else if (EQ (attr
, QCitalic
))
3179 old_value
= LFACE_SLANT (lface
);
3180 ASET (lface
, LFACE_SLANT_INDEX
, NILP (value
) ? Qnormal
: Qitalic
);
3181 prop_index
= FONT_SLANT_INDEX
;
3184 signal_error ("Invalid face attribute name", attr
);
3188 /* If a font-related attribute other than QCfont and QCfontset
3189 is specified, and if the original QCfont attribute has a font
3190 (font-spec or font-object), set the corresponding property in
3191 the font to nil so that the font selector doesn't think that
3192 the attribute is mandatory. Also, clear the average
3194 font_clear_prop (XVECTOR (lface
)->contents
, prop_index
);
3197 /* Changing a named face means that all realized faces depending on
3198 that face are invalid. Since we cannot tell which realized faces
3199 depend on the face, make sure they are all removed. This is done
3200 by incrementing face_change_count. The next call to
3201 init_iterator will then free realized faces. */
3203 && NILP (Fget (face
, Qface_no_inherit
))
3204 && NILP (Fequal (old_value
, value
)))
3206 ++face_change_count
;
3207 windows_or_buffers_changed
= 56;
3210 if (!UNSPECIFIEDP (value
) && !IGNORE_DEFFACE_P (value
)
3211 && NILP (Fequal (old_value
, value
)))
3217 if (EQ (face
, Qdefault
))
3219 #ifdef HAVE_WINDOW_SYSTEM
3220 /* Changed font-related attributes of the `default' face are
3221 reflected in changed `font' frame parameters. */
3223 && (prop_index
|| EQ (attr
, QCfont
))
3224 && lface_fully_specified_p (XVECTOR (lface
)->contents
))
3225 set_font_frame_param (frame
, lface
);
3227 #endif /* HAVE_WINDOW_SYSTEM */
3229 if (EQ (attr
, QCforeground
))
3230 param
= Qforeground_color
;
3231 else if (EQ (attr
, QCbackground
))
3232 param
= Qbackground_color
;
3234 #ifdef HAVE_WINDOW_SYSTEM
3236 else if (EQ (face
, Qscroll_bar
))
3238 /* Changing the colors of `scroll-bar' sets frame parameters
3239 `scroll-bar-foreground' and `scroll-bar-background'. */
3240 if (EQ (attr
, QCforeground
))
3241 param
= Qscroll_bar_foreground
;
3242 else if (EQ (attr
, QCbackground
))
3243 param
= Qscroll_bar_background
;
3245 #endif /* not HAVE_NTGUI */
3246 else if (EQ (face
, Qborder
))
3248 /* Changing background color of `border' sets frame parameter
3250 if (EQ (attr
, QCbackground
))
3251 param
= Qborder_color
;
3253 else if (EQ (face
, Qcursor
))
3255 /* Changing background color of `cursor' sets frame parameter
3257 if (EQ (attr
, QCbackground
))
3258 param
= Qcursor_color
;
3260 else if (EQ (face
, Qmouse
))
3262 /* Changing background color of `mouse' sets frame parameter
3264 if (EQ (attr
, QCbackground
))
3265 param
= Qmouse_color
;
3267 #endif /* HAVE_WINDOW_SYSTEM */
3268 else if (EQ (face
, Qmenu
))
3270 /* Indicate that we have to update the menu bar when realizing
3271 faces on FRAME. FRAME t change the default for new frames.
3272 We do this by setting the flag in new face caches. */
3275 struct frame
*f
= XFRAME (frame
);
3276 if (FRAME_FACE_CACHE (f
) == NULL
)
3277 FRAME_FACE_CACHE (f
) = make_face_cache (f
);
3278 FRAME_FACE_CACHE (f
)->menu_face_changed_p
= 1;
3281 menu_face_changed_default
= 1;
3287 /* Update `default-frame-alist', which is used for new frames. */
3289 store_in_alist (&Vdefault_frame_alist
, param
, value
);
3292 /* Update the current frame's parameters. */
3295 cons
= XCAR (Vparam_value_alist
);
3296 XSETCAR (cons
, param
);
3297 XSETCDR (cons
, value
);
3298 Fmodify_frame_parameters (frame
, Vparam_value_alist
);
3307 /* Update the corresponding face when frame parameter PARAM on frame F
3308 has been assigned the value NEW_VALUE. */
3311 update_face_from_frame_parameter (struct frame
*f
, Lisp_Object param
,
3312 Lisp_Object new_value
)
3314 Lisp_Object face
= Qnil
;
3317 /* If there are no faces yet, give up. This is the case when called
3318 from Fx_create_frame, and we do the necessary things later in
3319 face-set-after-frame-defaults. */
3320 if (NILP (f
->face_alist
))
3323 if (EQ (param
, Qforeground_color
))
3326 lface
= lface_from_face_name (f
, face
, 1);
3327 ASET (lface
, LFACE_FOREGROUND_INDEX
,
3328 (STRINGP (new_value
) ? new_value
: Qunspecified
));
3329 realize_basic_faces (f
);
3331 else if (EQ (param
, Qbackground_color
))
3335 /* Changing the background color might change the background
3336 mode, so that we have to load new defface specs.
3337 Call frame-set-background-mode to do that. */
3338 XSETFRAME (frame
, f
);
3339 call1 (Qframe_set_background_mode
, frame
);
3342 lface
= lface_from_face_name (f
, face
, 1);
3343 ASET (lface
, LFACE_BACKGROUND_INDEX
,
3344 (STRINGP (new_value
) ? new_value
: Qunspecified
));
3345 realize_basic_faces (f
);
3347 #ifdef HAVE_WINDOW_SYSTEM
3348 else if (EQ (param
, Qborder_color
))
3351 lface
= lface_from_face_name (f
, face
, 1);
3352 ASET (lface
, LFACE_BACKGROUND_INDEX
,
3353 (STRINGP (new_value
) ? new_value
: Qunspecified
));
3355 else if (EQ (param
, Qcursor_color
))
3358 lface
= lface_from_face_name (f
, face
, 1);
3359 ASET (lface
, LFACE_BACKGROUND_INDEX
,
3360 (STRINGP (new_value
) ? new_value
: Qunspecified
));
3362 else if (EQ (param
, Qmouse_color
))
3365 lface
= lface_from_face_name (f
, face
, 1);
3366 ASET (lface
, LFACE_BACKGROUND_INDEX
,
3367 (STRINGP (new_value
) ? new_value
: Qunspecified
));
3371 /* Changing a named face means that all realized faces depending on
3372 that face are invalid. Since we cannot tell which realized faces
3373 depend on the face, make sure they are all removed. This is done
3374 by incrementing face_change_count. The next call to
3375 init_iterator will then free realized faces. */
3377 && NILP (Fget (face
, Qface_no_inherit
)))
3379 ++face_change_count
;
3380 windows_or_buffers_changed
= 57;
3385 #ifdef HAVE_WINDOW_SYSTEM
3387 /* Set the `font' frame parameter of FRAME determined from the
3388 font-object set in `default' face attributes LFACE. */
3391 set_font_frame_param (Lisp_Object frame
, Lisp_Object lface
)
3393 struct frame
*f
= XFRAME (frame
);
3396 if (FRAME_WINDOW_P (f
)
3397 /* Don't do anything if the font is `unspecified'. This can
3398 happen during frame creation. */
3399 && (font
= LFACE_FONT (lface
),
3400 ! UNSPECIFIEDP (font
)))
3402 if (FONT_SPEC_P (font
))
3404 font
= font_load_for_lface (f
, XVECTOR (lface
)->contents
, font
);
3407 ASET (lface
, LFACE_FONT_INDEX
, font
);
3409 f
->default_face_done_p
= 0;
3410 AUTO_FRAME_ARG (arg
, Qfont
, font
);
3411 Fmodify_frame_parameters (frame
, arg
);
3415 DEFUN ("internal-face-x-get-resource", Finternal_face_x_get_resource
,
3416 Sinternal_face_x_get_resource
, 2, 3, 0,
3417 doc
: /* Get the value of X resource RESOURCE, class CLASS.
3418 Returned value is for the display of frame FRAME. If FRAME is not
3419 specified or nil, use selected frame. This function exists because
3420 ordinary `x-get-resource' doesn't take a frame argument. */)
3421 (Lisp_Object resource
, Lisp_Object
class, Lisp_Object frame
)
3423 Lisp_Object value
= Qnil
;
3426 CHECK_STRING (resource
);
3427 CHECK_STRING (class);
3428 f
= decode_live_frame (frame
);
3430 value
= display_x_get_resource (FRAME_DISPLAY_INFO (f
),
3431 resource
, class, Qnil
, Qnil
);
3437 /* Return resource string VALUE as a boolean value, i.e. nil, or t.
3438 If VALUE is "on" or "true", return t. If VALUE is "off" or
3439 "false", return nil. Otherwise, if SIGNAL_P is non-zero, signal an
3440 error; if SIGNAL_P is zero, return 0. */
3443 face_boolean_x_resource_value (Lisp_Object value
, int signal_p
)
3445 Lisp_Object result
= make_number (0);
3447 eassert (STRINGP (value
));
3449 if (xstrcasecmp (SSDATA (value
), "on") == 0
3450 || xstrcasecmp (SSDATA (value
), "true") == 0)
3452 else if (xstrcasecmp (SSDATA (value
), "off") == 0
3453 || xstrcasecmp (SSDATA (value
), "false") == 0)
3455 else if (xstrcasecmp (SSDATA (value
), "unspecified") == 0)
3456 result
= Qunspecified
;
3458 signal_error ("Invalid face attribute value from X resource", value
);
3464 DEFUN ("internal-set-lisp-face-attribute-from-resource",
3465 Finternal_set_lisp_face_attribute_from_resource
,
3466 Sinternal_set_lisp_face_attribute_from_resource
,
3467 3, 4, 0, doc
: /* */)
3468 (Lisp_Object face
, Lisp_Object attr
, Lisp_Object value
, Lisp_Object frame
)
3470 CHECK_SYMBOL (face
);
3471 CHECK_SYMBOL (attr
);
3472 CHECK_STRING (value
);
3474 if (xstrcasecmp (SSDATA (value
), "unspecified") == 0)
3475 value
= Qunspecified
;
3476 else if (EQ (attr
, QCheight
))
3478 value
= Fstring_to_number (value
, make_number (10));
3479 if (XINT (value
) <= 0)
3480 signal_error ("Invalid face height from X resource", value
);
3482 else if (EQ (attr
, QCbold
) || EQ (attr
, QCitalic
))
3483 value
= face_boolean_x_resource_value (value
, 1);
3484 else if (EQ (attr
, QCweight
) || EQ (attr
, QCslant
) || EQ (attr
, QCwidth
))
3485 value
= intern (SSDATA (value
));
3486 else if (EQ (attr
, QCreverse_video
) || EQ (attr
, QCinverse_video
))
3487 value
= face_boolean_x_resource_value (value
, 1);
3488 else if (EQ (attr
, QCunderline
)
3489 || EQ (attr
, QCoverline
)
3490 || EQ (attr
, QCstrike_through
))
3492 Lisp_Object boolean_value
;
3494 /* If the result of face_boolean_x_resource_value is t or nil,
3495 VALUE does NOT specify a color. */
3496 boolean_value
= face_boolean_x_resource_value (value
, 0);
3497 if (SYMBOLP (boolean_value
))
3498 value
= boolean_value
;
3500 else if (EQ (attr
, QCbox
) || EQ (attr
, QCinherit
))
3501 value
= Fcar (Fread_from_string (value
, Qnil
, Qnil
));
3503 return Finternal_set_lisp_face_attribute (face
, attr
, value
, frame
);
3506 #endif /* HAVE_WINDOW_SYSTEM */
3509 /***********************************************************************
3511 ***********************************************************************/
3513 #if defined HAVE_X_WINDOWS && defined USE_X_TOOLKIT
3515 /* Make menus on frame F appear as specified by the `menu' face. */
3518 x_update_menu_appearance (struct frame
*f
)
3520 struct x_display_info
*dpyinfo
= FRAME_DISPLAY_INFO (f
);
3524 && (rdb
= XrmGetDatabase (FRAME_X_DISPLAY (f
)),
3529 ptrdiff_t bufsize
= sizeof line
;
3530 Lisp_Object lface
= lface_from_face_name (f
, Qmenu
, 1);
3531 struct face
*face
= FACE_FROM_ID (f
, MENU_FACE_ID
);
3532 const char *myname
= SSDATA (Vx_resource_name
);
3535 const char *popup_path
= "popup_menu";
3537 const char *popup_path
= "menu.popup";
3540 if (STRINGP (LFACE_FOREGROUND (lface
)))
3542 exprintf (&buf
, &bufsize
, line
, -1, "%s.%s*foreground: %s",
3544 SDATA (LFACE_FOREGROUND (lface
)));
3545 XrmPutLineResource (&rdb
, line
);
3546 exprintf (&buf
, &bufsize
, line
, -1, "%s.pane.menubar*foreground: %s",
3547 myname
, SDATA (LFACE_FOREGROUND (lface
)));
3548 XrmPutLineResource (&rdb
, line
);
3552 if (STRINGP (LFACE_BACKGROUND (lface
)))
3554 exprintf (&buf
, &bufsize
, line
, -1, "%s.%s*background: %s",
3556 SDATA (LFACE_BACKGROUND (lface
)));
3557 XrmPutLineResource (&rdb
, line
);
3559 exprintf (&buf
, &bufsize
, line
, -1, "%s.pane.menubar*background: %s",
3560 myname
, SDATA (LFACE_BACKGROUND (lface
)));
3561 XrmPutLineResource (&rdb
, line
);
3566 /* On Solaris 5.8, it's been reported that the `menu' face
3567 can be unspecified here, during startup. Why this
3568 happens remains unknown. -- cyd */
3569 && FONTP (LFACE_FONT (lface
))
3570 && (!UNSPECIFIEDP (LFACE_FAMILY (lface
))
3571 || !UNSPECIFIEDP (LFACE_FOUNDRY (lface
))
3572 || !UNSPECIFIEDP (LFACE_SWIDTH (lface
))
3573 || !UNSPECIFIEDP (LFACE_WEIGHT (lface
))
3574 || !UNSPECIFIEDP (LFACE_SLANT (lface
))
3575 || !UNSPECIFIEDP (LFACE_HEIGHT (lface
))))
3577 Lisp_Object xlfd
= Ffont_xlfd_name (LFACE_FONT (lface
), Qnil
);
3579 const char *suffix
= "List";
3582 #if defined HAVE_X_I18N
3584 const char *suffix
= "Set";
3586 const char *suffix
= "";
3593 #if defined HAVE_X_I18N
3594 char *fontsetname
= xic_create_fontsetname (SSDATA (xlfd
), motif
);
3596 char *fontsetname
= SSDATA (xlfd
);
3598 exprintf (&buf
, &bufsize
, line
, -1, "%s.pane.menubar*font%s: %s",
3599 myname
, suffix
, fontsetname
);
3600 XrmPutLineResource (&rdb
, line
);
3602 exprintf (&buf
, &bufsize
, line
, -1, "%s.%s*font%s: %s",
3603 myname
, popup_path
, suffix
, fontsetname
);
3604 XrmPutLineResource (&rdb
, line
);
3606 if (fontsetname
!= SSDATA (xlfd
))
3607 xfree (fontsetname
);
3611 if (changed_p
&& f
->output_data
.x
->menubar_widget
)
3612 free_frame_menubar (f
);
3619 #endif /* HAVE_X_WINDOWS && USE_X_TOOLKIT */
3622 DEFUN ("face-attribute-relative-p", Fface_attribute_relative_p
,
3623 Sface_attribute_relative_p
,
3625 doc
: /* Check whether a face attribute value is relative.
3626 Specifically, this function returns t if the attribute ATTRIBUTE
3627 with the value VALUE is relative.
3629 A relative value is one that doesn't entirely override whatever is
3630 inherited from another face. For most possible attributes,
3631 the only relative value that users see is `unspecified'.
3632 However, for :height, floating point values are also relative. */)
3633 (Lisp_Object attribute
, Lisp_Object value
)
3635 if (EQ (value
, Qunspecified
) || (EQ (value
, QCignore_defface
)))
3637 else if (EQ (attribute
, QCheight
))
3638 return INTEGERP (value
) ? Qnil
: Qt
;
3643 DEFUN ("merge-face-attribute", Fmerge_face_attribute
, Smerge_face_attribute
,
3645 doc
: /* Return face ATTRIBUTE VALUE1 merged with VALUE2.
3646 If VALUE1 or VALUE2 are absolute (see `face-attribute-relative-p'), then
3647 the result will be absolute, otherwise it will be relative. */)
3648 (Lisp_Object attribute
, Lisp_Object value1
, Lisp_Object value2
)
3650 if (EQ (value1
, Qunspecified
) || EQ (value1
, QCignore_defface
))
3652 else if (EQ (attribute
, QCheight
))
3653 return merge_face_heights (value1
, value2
, value1
);
3659 DEFUN ("internal-get-lisp-face-attribute", Finternal_get_lisp_face_attribute
,
3660 Sinternal_get_lisp_face_attribute
,
3662 doc
: /* Return face attribute KEYWORD of face SYMBOL.
3663 If SYMBOL does not name a valid Lisp face or KEYWORD isn't a valid
3664 face attribute name, signal an error.
3665 If the optional argument FRAME is given, report on face SYMBOL in that
3666 frame. If FRAME is t, report on the defaults for face SYMBOL (for new
3667 frames). If FRAME is omitted or nil, use the selected frame. */)
3668 (Lisp_Object symbol
, Lisp_Object keyword
, Lisp_Object frame
)
3670 struct frame
*f
= EQ (frame
, Qt
) ? NULL
: decode_live_frame (frame
);
3671 Lisp_Object lface
= lface_from_face_name (f
, symbol
, 1), value
= Qnil
;
3673 CHECK_SYMBOL (symbol
);
3674 CHECK_SYMBOL (keyword
);
3676 if (EQ (keyword
, QCfamily
))
3677 value
= LFACE_FAMILY (lface
);
3678 else if (EQ (keyword
, QCfoundry
))
3679 value
= LFACE_FOUNDRY (lface
);
3680 else if (EQ (keyword
, QCheight
))
3681 value
= LFACE_HEIGHT (lface
);
3682 else if (EQ (keyword
, QCweight
))
3683 value
= LFACE_WEIGHT (lface
);
3684 else if (EQ (keyword
, QCslant
))
3685 value
= LFACE_SLANT (lface
);
3686 else if (EQ (keyword
, QCunderline
))
3687 value
= LFACE_UNDERLINE (lface
);
3688 else if (EQ (keyword
, QCoverline
))
3689 value
= LFACE_OVERLINE (lface
);
3690 else if (EQ (keyword
, QCstrike_through
))
3691 value
= LFACE_STRIKE_THROUGH (lface
);
3692 else if (EQ (keyword
, QCbox
))
3693 value
= LFACE_BOX (lface
);
3694 else if (EQ (keyword
, QCinverse_video
)
3695 || EQ (keyword
, QCreverse_video
))
3696 value
= LFACE_INVERSE (lface
);
3697 else if (EQ (keyword
, QCforeground
))
3698 value
= LFACE_FOREGROUND (lface
);
3699 else if (EQ (keyword
, QCdistant_foreground
))
3700 value
= LFACE_DISTANT_FOREGROUND (lface
);
3701 else if (EQ (keyword
, QCbackground
))
3702 value
= LFACE_BACKGROUND (lface
);
3703 else if (EQ (keyword
, QCstipple
))
3704 value
= LFACE_STIPPLE (lface
);
3705 else if (EQ (keyword
, QCwidth
))
3706 value
= LFACE_SWIDTH (lface
);
3707 else if (EQ (keyword
, QCinherit
))
3708 value
= LFACE_INHERIT (lface
);
3709 else if (EQ (keyword
, QCfont
))
3710 value
= LFACE_FONT (lface
);
3711 else if (EQ (keyword
, QCfontset
))
3712 value
= LFACE_FONTSET (lface
);
3714 signal_error ("Invalid face attribute name", keyword
);
3716 if (IGNORE_DEFFACE_P (value
))
3717 return Qunspecified
;
3723 DEFUN ("internal-lisp-face-attribute-values",
3724 Finternal_lisp_face_attribute_values
,
3725 Sinternal_lisp_face_attribute_values
, 1, 1, 0,
3726 doc
: /* Return a list of valid discrete values for face attribute ATTR.
3727 Value is nil if ATTR doesn't have a discrete set of valid values. */)
3730 Lisp_Object result
= Qnil
;
3732 CHECK_SYMBOL (attr
);
3734 if (EQ (attr
, QCunderline
) || EQ (attr
, QCoverline
)
3735 || EQ (attr
, QCstrike_through
)
3736 || EQ (attr
, QCinverse_video
) || EQ (attr
, QCreverse_video
))
3737 result
= list2 (Qt
, Qnil
);
3743 DEFUN ("internal-merge-in-global-face", Finternal_merge_in_global_face
,
3744 Sinternal_merge_in_global_face
, 2, 2, 0,
3745 doc
: /* Add attributes from frame-default definition of FACE to FACE on FRAME.
3746 Default face attributes override any local face attributes. */)
3747 (Lisp_Object face
, Lisp_Object frame
)
3750 Lisp_Object global_lface
, local_lface
, *gvec
, *lvec
;
3751 struct frame
*f
= XFRAME (frame
);
3753 CHECK_LIVE_FRAME (frame
);
3754 global_lface
= lface_from_face_name (NULL
, face
, 1);
3755 local_lface
= lface_from_face_name (f
, face
, 0);
3756 if (NILP (local_lface
))
3757 local_lface
= Finternal_make_lisp_face (face
, frame
);
3759 /* Make every specified global attribute override the local one.
3760 BEWARE!! This is only used from `face-set-after-frame-default' where
3761 the local frame is defined from default specs in `face-defface-spec'
3762 and those should be overridden by global settings. Hence the strange
3763 "global before local" priority. */
3764 lvec
= XVECTOR (local_lface
)->contents
;
3765 gvec
= XVECTOR (global_lface
)->contents
;
3766 for (i
= 1; i
< LFACE_VECTOR_SIZE
; ++i
)
3767 if (IGNORE_DEFFACE_P (gvec
[i
]))
3768 ASET (local_lface
, i
, Qunspecified
);
3769 else if (! UNSPECIFIEDP (gvec
[i
]))
3770 ASET (local_lface
, i
, AREF (global_lface
, i
));
3772 /* If the default face was changed, update the face cache and the
3773 `font' frame parameter. */
3774 if (EQ (face
, Qdefault
))
3776 struct face_cache
*c
= FRAME_FACE_CACHE (f
);
3777 struct face
*newface
, *oldface
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
3778 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
3780 /* This can be NULL (e.g., in batch mode). */
3783 /* Ensure that the face vector is fully specified by merging
3784 the previously-cached vector. */
3785 memcpy (attrs
, oldface
->lface
, sizeof attrs
);
3786 merge_face_vectors (f
, lvec
, attrs
, 0);
3787 vcopy (local_lface
, 0, attrs
, LFACE_VECTOR_SIZE
);
3788 newface
= realize_face (c
, lvec
, DEFAULT_FACE_ID
);
3790 if ((! UNSPECIFIEDP (gvec
[LFACE_FAMILY_INDEX
])
3791 || ! UNSPECIFIEDP (gvec
[LFACE_FOUNDRY_INDEX
])
3792 || ! UNSPECIFIEDP (gvec
[LFACE_HEIGHT_INDEX
])
3793 || ! UNSPECIFIEDP (gvec
[LFACE_WEIGHT_INDEX
])
3794 || ! UNSPECIFIEDP (gvec
[LFACE_SLANT_INDEX
])
3795 || ! UNSPECIFIEDP (gvec
[LFACE_SWIDTH_INDEX
])
3796 || ! UNSPECIFIEDP (gvec
[LFACE_FONT_INDEX
]))
3799 Lisp_Object name
= newface
->font
->props
[FONT_NAME_INDEX
];
3800 AUTO_FRAME_ARG (arg
, Qfont
, name
);
3801 Fmodify_frame_parameters (frame
, arg
);
3804 if (STRINGP (gvec
[LFACE_FOREGROUND_INDEX
]))
3806 AUTO_FRAME_ARG (arg
, Qforeground_color
,
3807 gvec
[LFACE_FOREGROUND_INDEX
]);
3808 Fmodify_frame_parameters (frame
, arg
);
3811 if (STRINGP (gvec
[LFACE_BACKGROUND_INDEX
]))
3813 AUTO_FRAME_ARG (arg
, Qbackground_color
,
3814 gvec
[LFACE_BACKGROUND_INDEX
]);
3815 Fmodify_frame_parameters (frame
, arg
);
3824 /* The following function is implemented for compatibility with 20.2.
3825 The function is used in x-resolve-fonts when it is asked to
3826 return fonts with the same size as the font of a face. This is
3827 done in fontset.el. */
3829 DEFUN ("face-font", Fface_font
, Sface_font
, 1, 3, 0,
3830 doc
: /* Return the font name of face FACE, or nil if it is unspecified.
3831 The font name is, by default, for ASCII characters.
3832 If the optional argument FRAME is given, report on face FACE in that frame.
3833 If FRAME is t, report on the defaults for face FACE (for new frames).
3834 The font default for a face is either nil, or a list
3835 of the form (bold), (italic) or (bold italic).
3836 If FRAME is omitted or nil, use the selected frame. And, in this case,
3837 if the optional third argument CHARACTER is given,
3838 return the font name used for CHARACTER. */)
3839 (Lisp_Object face
, Lisp_Object frame
, Lisp_Object character
)
3843 Lisp_Object result
= Qnil
;
3844 Lisp_Object lface
= lface_from_face_name (NULL
, face
, 1);
3846 if (!UNSPECIFIEDP (LFACE_WEIGHT (lface
))
3847 && !EQ (LFACE_WEIGHT (lface
), Qnormal
))
3848 result
= Fcons (Qbold
, result
);
3850 if (!UNSPECIFIEDP (LFACE_SLANT (lface
))
3851 && !EQ (LFACE_SLANT (lface
), Qnormal
))
3852 result
= Fcons (Qitalic
, result
);
3858 struct frame
*f
= decode_live_frame (frame
);
3859 int face_id
= lookup_named_face (f
, face
, 1);
3860 struct face
*fface
= FACE_FROM_ID (f
, face_id
);
3864 #ifdef HAVE_WINDOW_SYSTEM
3865 if (FRAME_WINDOW_P (f
) && !NILP (character
))
3867 CHECK_CHARACTER (character
);
3868 face_id
= FACE_FOR_CHAR (f
, fface
, XINT (character
), -1, Qnil
);
3869 fface
= FACE_FROM_ID (f
, face_id
);
3872 ? fface
->font
->props
[FONT_NAME_INDEX
]
3874 #else /* !HAVE_WINDOW_SYSTEM */
3875 return build_string (FRAME_MSDOS_P (f
)
3877 : FRAME_W32_P (f
) ? "w32term"
3884 /* Compare face-attribute values v1 and v2 for equality. Value is non-zero if
3885 all attributes are `equal'. Tries to be fast because this function
3886 is called quite often. */
3889 face_attr_equal_p (Lisp_Object v1
, Lisp_Object v2
)
3891 /* Type can differ, e.g. when one attribute is unspecified, i.e. nil,
3892 and the other is specified. */
3893 if (XTYPE (v1
) != XTYPE (v2
))
3902 if (SBYTES (v1
) != SBYTES (v2
))
3905 return memcmp (SDATA (v1
), SDATA (v2
), SBYTES (v1
)) == 0;
3912 return !NILP (Fequal (v1
, v2
));
3917 /* Compare face vectors V1 and V2 for equality. Value is non-zero if
3918 all attributes are `equal'. Tries to be fast because this function
3919 is called quite often. */
3922 lface_equal_p (Lisp_Object
*v1
, Lisp_Object
*v2
)
3927 for (i
= 1; i
< LFACE_VECTOR_SIZE
&& equal_p
; ++i
)
3928 equal_p
= face_attr_equal_p (v1
[i
], v2
[i
]);
3934 DEFUN ("internal-lisp-face-equal-p", Finternal_lisp_face_equal_p
,
3935 Sinternal_lisp_face_equal_p
, 2, 3, 0,
3936 doc
: /* True if FACE1 and FACE2 are equal.
3937 If the optional argument FRAME is given, report on FACE1 and FACE2 in that frame.
3938 If FRAME is t, report on the defaults for FACE1 and FACE2 (for new frames).
3939 If FRAME is omitted or nil, use the selected frame. */)
3940 (Lisp_Object face1
, Lisp_Object face2
, Lisp_Object frame
)
3944 Lisp_Object lface1
, lface2
;
3946 /* Don't use decode_window_system_frame here because this function
3947 is called before X frames exist. At that time, if FRAME is nil,
3948 selected_frame will be used which is the frame dumped with
3949 Emacs. That frame is not an X frame. */
3950 f
= EQ (frame
, Qt
) ? NULL
: decode_live_frame (frame
);
3952 lface1
= lface_from_face_name (f
, face1
, 1);
3953 lface2
= lface_from_face_name (f
, face2
, 1);
3954 equal_p
= lface_equal_p (XVECTOR (lface1
)->contents
,
3955 XVECTOR (lface2
)->contents
);
3956 return equal_p
? Qt
: Qnil
;
3960 DEFUN ("internal-lisp-face-empty-p", Finternal_lisp_face_empty_p
,
3961 Sinternal_lisp_face_empty_p
, 1, 2, 0,
3962 doc
: /* True if FACE has no attribute specified.
3963 If the optional argument FRAME is given, report on face FACE in that frame.
3964 If FRAME is t, report on the defaults for face FACE (for new frames).
3965 If FRAME is omitted or nil, use the selected frame. */)
3966 (Lisp_Object face
, Lisp_Object frame
)
3968 struct frame
*f
= EQ (frame
, Qt
) ? NULL
: decode_live_frame (frame
);
3969 Lisp_Object lface
= lface_from_face_name (f
, face
, 1);
3972 for (i
= 1; i
< LFACE_VECTOR_SIZE
; ++i
)
3973 if (!UNSPECIFIEDP (AREF (lface
, i
)))
3976 return i
== LFACE_VECTOR_SIZE
? Qt
: Qnil
;
3980 DEFUN ("frame-face-alist", Fframe_face_alist
, Sframe_face_alist
,
3982 doc
: /* Return an alist of frame-local faces defined on FRAME.
3983 For internal use only. */)
3986 return decode_live_frame (frame
)->face_alist
;
3990 /* Return a hash code for Lisp string STRING with case ignored. Used
3991 below in computing a hash value for a Lisp face. */
3994 hash_string_case_insensitive (Lisp_Object string
)
3996 const unsigned char *s
;
3998 eassert (STRINGP (string
));
3999 for (s
= SDATA (string
); *s
; ++s
)
4000 hash
= (hash
<< 1) ^ c_tolower (*s
);
4005 /* Return a hash code for face attribute vector V. */
4008 lface_hash (Lisp_Object
*v
)
4010 return (hash_string_case_insensitive (v
[LFACE_FAMILY_INDEX
])
4011 ^ hash_string_case_insensitive (v
[LFACE_FOUNDRY_INDEX
])
4012 ^ hash_string_case_insensitive (v
[LFACE_FOREGROUND_INDEX
])
4013 ^ hash_string_case_insensitive (v
[LFACE_BACKGROUND_INDEX
])
4014 ^ XHASH (v
[LFACE_WEIGHT_INDEX
])
4015 ^ XHASH (v
[LFACE_SLANT_INDEX
])
4016 ^ XHASH (v
[LFACE_SWIDTH_INDEX
])
4017 ^ XHASH (v
[LFACE_HEIGHT_INDEX
]));
4020 #ifdef HAVE_WINDOW_SYSTEM
4022 /* Return non-zero if LFACE1 and LFACE2 specify the same font (without
4023 considering charsets/registries). They do if they specify the same
4024 family, point size, weight, width, slant, and font. Both
4025 LFACE1 and LFACE2 must be fully-specified. */
4028 lface_same_font_attributes_p (Lisp_Object
*lface1
, Lisp_Object
*lface2
)
4030 eassert (lface_fully_specified_p (lface1
)
4031 && lface_fully_specified_p (lface2
));
4032 return (xstrcasecmp (SSDATA (lface1
[LFACE_FAMILY_INDEX
]),
4033 SSDATA (lface2
[LFACE_FAMILY_INDEX
])) == 0
4034 && xstrcasecmp (SSDATA (lface1
[LFACE_FOUNDRY_INDEX
]),
4035 SSDATA (lface2
[LFACE_FOUNDRY_INDEX
])) == 0
4036 && EQ (lface1
[LFACE_HEIGHT_INDEX
], lface2
[LFACE_HEIGHT_INDEX
])
4037 && EQ (lface1
[LFACE_SWIDTH_INDEX
], lface2
[LFACE_SWIDTH_INDEX
])
4038 && EQ (lface1
[LFACE_WEIGHT_INDEX
], lface2
[LFACE_WEIGHT_INDEX
])
4039 && EQ (lface1
[LFACE_SLANT_INDEX
], lface2
[LFACE_SLANT_INDEX
])
4040 && EQ (lface1
[LFACE_FONT_INDEX
], lface2
[LFACE_FONT_INDEX
])
4041 && (EQ (lface1
[LFACE_FONTSET_INDEX
], lface2
[LFACE_FONTSET_INDEX
])
4042 || (STRINGP (lface1
[LFACE_FONTSET_INDEX
])
4043 && STRINGP (lface2
[LFACE_FONTSET_INDEX
])
4044 && ! xstrcasecmp (SSDATA (lface1
[LFACE_FONTSET_INDEX
]),
4045 SSDATA (lface2
[LFACE_FONTSET_INDEX
]))))
4049 #endif /* HAVE_WINDOW_SYSTEM */
4051 /***********************************************************************
4053 ***********************************************************************/
4055 /* Allocate and return a new realized face for Lisp face attribute
4058 static struct face
*
4059 make_realized_face (Lisp_Object
*attr
)
4061 enum { off
= offsetof (struct face
, id
) };
4062 struct face
*face
= xmalloc (sizeof *face
);
4064 memcpy (face
->lface
, attr
, sizeof face
->lface
);
4065 memset (&face
->id
, 0, sizeof *face
- off
);
4066 face
->ascii_face
= face
;
4072 /* Free realized face FACE, including its X resources. FACE may
4076 free_realized_face (struct frame
*f
, struct face
*face
)
4080 #ifdef HAVE_WINDOW_SYSTEM
4081 if (FRAME_WINDOW_P (f
))
4083 /* Free fontset of FACE if it is ASCII face. */
4084 if (face
->fontset
>= 0 && face
== face
->ascii_face
)
4085 free_face_fontset (f
, face
);
4090 font_done_for_face (f
, face
);
4091 x_free_gc (f
, face
->gc
);
4095 #ifdef HAVE_X_WINDOWS
4096 free_face_colors (f
, face
);
4097 #endif /* HAVE_X_WINDOWS */
4098 x_destroy_bitmap (f
, face
->stipple
);
4100 #endif /* HAVE_WINDOW_SYSTEM */
4106 #ifdef HAVE_WINDOW_SYSTEM
4108 /* Prepare face FACE for subsequent display on frame F. This must be called
4109 before using X resources of FACE to allocate GCs if they haven't been
4110 allocated yet or have been freed by clearing the face cache. */
4113 prepare_face_for_display (struct frame
*f
, struct face
*face
)
4115 eassert (FRAME_WINDOW_P (f
));
4120 unsigned long mask
= GCForeground
| GCBackground
| GCGraphicsExposures
;
4122 xgcv
.foreground
= face
->foreground
;
4123 xgcv
.background
= face
->background
;
4124 #ifdef HAVE_X_WINDOWS
4125 xgcv
.graphics_exposures
= False
;
4129 #ifdef HAVE_X_WINDOWS
4132 xgcv
.fill_style
= FillOpaqueStippled
;
4133 xgcv
.stipple
= x_bitmap_pixmap (f
, face
->stipple
);
4134 mask
|= GCFillStyle
| GCStipple
;
4137 face
->gc
= x_create_gc (f
, mask
, &xgcv
);
4139 font_prepare_for_face (f
, face
);
4144 #endif /* HAVE_WINDOW_SYSTEM */
4146 /* Returns the `distance' between the colors X and Y. */
4149 color_distance (XColor
*x
, XColor
*y
)
4151 /* This formula is from a paper titled `Colour metric' by Thiadmer Riemersma.
4152 Quoting from that paper:
4154 This formula has results that are very close to L*u*v* (with the
4155 modified lightness curve) and, more importantly, it is a more even
4156 algorithm: it does not have a range of colors where it suddenly
4157 gives far from optimal results.
4159 See <http://www.compuphase.com/cmetric.htm> for more info. */
4161 long r
= (x
->red
- y
->red
) >> 8;
4162 long g
= (x
->green
- y
->green
) >> 8;
4163 long b
= (x
->blue
- y
->blue
) >> 8;
4164 long r_mean
= (x
->red
+ y
->red
) >> 9;
4167 (((512 + r_mean
) * r
* r
) >> 8)
4169 + (((767 - r_mean
) * b
* b
) >> 8);
4173 DEFUN ("color-distance", Fcolor_distance
, Scolor_distance
, 2, 3, 0,
4174 doc
: /* Return an integer distance between COLOR1 and COLOR2 on FRAME.
4175 COLOR1 and COLOR2 may be either strings containing the color name,
4176 or lists of the form (RED GREEN BLUE).
4177 If FRAME is unspecified or nil, the current frame is used. */)
4178 (Lisp_Object color1
, Lisp_Object color2
, Lisp_Object frame
)
4180 struct frame
*f
= decode_live_frame (frame
);
4181 XColor cdef1
, cdef2
;
4183 if (!(CONSP (color1
) && parse_rgb_list (color1
, &cdef1
))
4184 && !(STRINGP (color1
) && defined_color (f
, SSDATA (color1
), &cdef1
, 0)))
4185 signal_error ("Invalid color", color1
);
4186 if (!(CONSP (color2
) && parse_rgb_list (color2
, &cdef2
))
4187 && !(STRINGP (color2
) && defined_color (f
, SSDATA (color2
), &cdef2
, 0)))
4188 signal_error ("Invalid color", color2
);
4190 return make_number (color_distance (&cdef1
, &cdef2
));
4194 /***********************************************************************
4196 ***********************************************************************/
4198 /* Return a new face cache for frame F. */
4200 static struct face_cache
*
4201 make_face_cache (struct frame
*f
)
4203 struct face_cache
*c
= xmalloc (sizeof *c
);
4205 c
->buckets
= xzalloc (FACE_CACHE_BUCKETS_SIZE
* sizeof *c
->buckets
);
4208 c
->faces_by_id
= xmalloc (c
->size
* sizeof *c
->faces_by_id
);
4210 c
->menu_face_changed_p
= menu_face_changed_default
;
4214 #ifdef HAVE_WINDOW_SYSTEM
4216 /* Clear out all graphics contexts for all realized faces, except for
4217 the basic faces. This should be done from time to time just to avoid
4218 keeping too many graphics contexts that are no longer needed. */
4221 clear_face_gcs (struct face_cache
*c
)
4223 if (c
&& FRAME_WINDOW_P (c
->f
))
4226 for (i
= BASIC_FACE_ID_SENTINEL
; i
< c
->used
; ++i
)
4228 struct face
*face
= c
->faces_by_id
[i
];
4229 if (face
&& face
->gc
)
4233 font_done_for_face (c
->f
, face
);
4234 x_free_gc (c
->f
, face
->gc
);
4242 #endif /* HAVE_WINDOW_SYSTEM */
4244 /* Free all realized faces in face cache C, including basic faces.
4245 C may be null. If faces are freed, make sure the frame's current
4246 matrix is marked invalid, so that a display caused by an expose
4247 event doesn't try to use faces we destroyed. */
4250 free_realized_faces (struct face_cache
*c
)
4255 struct frame
*f
= c
->f
;
4257 /* We must block input here because we can't process X events
4258 safely while only some faces are freed, or when the frame's
4259 current matrix still references freed faces. */
4262 for (i
= 0; i
< c
->used
; ++i
)
4264 free_realized_face (f
, c
->faces_by_id
[i
]);
4265 c
->faces_by_id
[i
] = NULL
;
4269 size
= FACE_CACHE_BUCKETS_SIZE
* sizeof *c
->buckets
;
4270 memset (c
->buckets
, 0, size
);
4272 /* Must do a thorough redisplay the next time. Mark current
4273 matrices as invalid because they will reference faces freed
4274 above. This function is also called when a frame is
4275 destroyed. In this case, the root window of F is nil. */
4276 if (WINDOWP (f
->root_window
))
4278 clear_current_matrices (f
);
4279 windows_or_buffers_changed
= 58;
4287 /* Free all realized faces on FRAME or on all frames if FRAME is nil.
4288 This is done after attributes of a named face have been changed,
4289 because we can't tell which realized faces depend on that face. */
4292 free_all_realized_faces (Lisp_Object frame
)
4297 FOR_EACH_FRAME (rest
, frame
)
4298 free_realized_faces (FRAME_FACE_CACHE (XFRAME (frame
)));
4301 free_realized_faces (FRAME_FACE_CACHE (XFRAME (frame
)));
4305 /* Free face cache C and faces in it, including their X resources. */
4308 free_face_cache (struct face_cache
*c
)
4312 free_realized_faces (c
);
4314 xfree (c
->faces_by_id
);
4320 /* Cache realized face FACE in face cache C. HASH is the hash value
4321 of FACE. If FACE is for ASCII characters (i.e. FACE->ascii_face ==
4322 FACE), insert the new face to the beginning of the collision list
4323 of the face hash table of C. Otherwise, add the new face to the
4324 end of the collision list. This way, lookup_face can quickly find
4325 that a requested face is not cached. */
4328 cache_face (struct face_cache
*c
, struct face
*face
, unsigned int hash
)
4330 int i
= hash
% FACE_CACHE_BUCKETS_SIZE
;
4334 if (face
->ascii_face
!= face
)
4336 struct face
*last
= c
->buckets
[i
];
4347 c
->buckets
[i
] = face
;
4348 face
->prev
= face
->next
= NULL
;
4354 face
->next
= c
->buckets
[i
];
4356 face
->next
->prev
= face
;
4357 c
->buckets
[i
] = face
;
4360 /* Find a free slot in C->faces_by_id and use the index of the free
4361 slot as FACE->id. */
4362 for (i
= 0; i
< c
->used
; ++i
)
4363 if (c
->faces_by_id
[i
] == NULL
)
4368 /* Check that FACE got a unique id. */
4373 for (j
= n
= 0; j
< FACE_CACHE_BUCKETS_SIZE
; ++j
)
4374 for (face1
= c
->buckets
[j
]; face1
; face1
= face1
->next
)
4380 #endif /* GLYPH_DEBUG */
4382 /* Maybe enlarge C->faces_by_id. */
4385 if (c
->used
== c
->size
)
4386 c
->faces_by_id
= xpalloc (c
->faces_by_id
, &c
->size
, 1, MAX_FACE_ID
,
4387 sizeof *c
->faces_by_id
);
4391 c
->faces_by_id
[i
] = face
;
4395 /* Remove face FACE from cache C. */
4398 uncache_face (struct face_cache
*c
, struct face
*face
)
4400 int i
= face
->hash
% FACE_CACHE_BUCKETS_SIZE
;
4403 face
->prev
->next
= face
->next
;
4405 c
->buckets
[i
] = face
->next
;
4408 face
->next
->prev
= face
->prev
;
4410 c
->faces_by_id
[face
->id
] = NULL
;
4411 if (face
->id
== c
->used
)
4416 /* Look up a realized face with face attributes ATTR in the face cache
4417 of frame F. The face will be used to display ASCII characters.
4418 Value is the ID of the face found. If no suitable face is found,
4419 realize a new one. */
4422 lookup_face (struct frame
*f
, Lisp_Object
*attr
)
4424 struct face_cache
*cache
= FRAME_FACE_CACHE (f
);
4429 eassert (cache
!= NULL
);
4430 check_lface_attrs (attr
);
4432 /* Look up ATTR in the face cache. */
4433 hash
= lface_hash (attr
);
4434 i
= hash
% FACE_CACHE_BUCKETS_SIZE
;
4436 for (face
= cache
->buckets
[i
]; face
; face
= face
->next
)
4438 if (face
->ascii_face
!= face
)
4440 /* There's no more ASCII face. */
4444 if (face
->hash
== hash
4445 && lface_equal_p (face
->lface
, attr
))
4449 /* If not found, realize a new face. */
4451 face
= realize_face (cache
, attr
, -1);
4454 eassert (face
== FACE_FROM_ID (f
, face
->id
));
4455 #endif /* GLYPH_DEBUG */
4460 #ifdef HAVE_WINDOW_SYSTEM
4461 /* Look up a realized face that has the same attributes as BASE_FACE
4462 except for the font in the face cache of frame F. If FONT-OBJECT
4463 is not nil, it is an already opened font. If FONT-OBJECT is nil,
4464 the face has no font. Value is the ID of the face found. If no
4465 suitable face is found, realize a new one. */
4468 face_for_font (struct frame
*f
, Lisp_Object font_object
, struct face
*base_face
)
4470 struct face_cache
*cache
= FRAME_FACE_CACHE (f
);
4475 eassert (cache
!= NULL
);
4476 base_face
= base_face
->ascii_face
;
4477 hash
= lface_hash (base_face
->lface
);
4478 i
= hash
% FACE_CACHE_BUCKETS_SIZE
;
4480 for (face
= cache
->buckets
[i
]; face
; face
= face
->next
)
4482 if (face
->ascii_face
== face
)
4484 if (face
->ascii_face
== base_face
4485 && face
->font
== (NILP (font_object
) ? NULL
4486 : XFONT_OBJECT (font_object
))
4487 && lface_equal_p (face
->lface
, base_face
->lface
))
4491 /* If not found, realize a new face. */
4492 face
= realize_non_ascii_face (f
, font_object
, base_face
);
4495 #endif /* HAVE_WINDOW_SYSTEM */
4497 /* Return the face id of the realized face for named face SYMBOL on
4498 frame F suitable for displaying ASCII characters. Value is -1 if
4499 the face couldn't be determined, which might happen if the default
4500 face isn't realized and cannot be realized. */
4503 lookup_named_face (struct frame
*f
, Lisp_Object symbol
, int signal_p
)
4505 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
4506 Lisp_Object symbol_attrs
[LFACE_VECTOR_SIZE
];
4507 struct face
*default_face
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
4509 if (default_face
== NULL
)
4511 if (!realize_basic_faces (f
))
4513 default_face
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
4514 if (default_face
== NULL
)
4515 emacs_abort (); /* realize_basic_faces must have set it up */
4518 if (! get_lface_attributes (f
, symbol
, symbol_attrs
, signal_p
, 0))
4521 memcpy (attrs
, default_face
->lface
, sizeof attrs
);
4522 merge_face_vectors (f
, symbol_attrs
, attrs
, 0);
4524 return lookup_face (f
, attrs
);
4528 /* Return the display face-id of the basic face whose canonical face-id
4529 is FACE_ID. The return value will usually simply be FACE_ID, unless that
4530 basic face has bee remapped via Vface_remapping_alist. This function is
4531 conservative: if something goes wrong, it will simply return FACE_ID
4532 rather than signal an error. */
4535 lookup_basic_face (struct frame
*f
, int face_id
)
4537 Lisp_Object name
, mapping
;
4538 int remapped_face_id
;
4540 if (NILP (Vface_remapping_alist
))
4541 return face_id
; /* Nothing to do. */
4545 case DEFAULT_FACE_ID
: name
= Qdefault
; break;
4546 case MODE_LINE_FACE_ID
: name
= Qmode_line
; break;
4547 case MODE_LINE_INACTIVE_FACE_ID
: name
= Qmode_line_inactive
; break;
4548 case HEADER_LINE_FACE_ID
: name
= Qheader_line
; break;
4549 case TOOL_BAR_FACE_ID
: name
= Qtool_bar
; break;
4550 case FRINGE_FACE_ID
: name
= Qfringe
; break;
4551 case SCROLL_BAR_FACE_ID
: name
= Qscroll_bar
; break;
4552 case BORDER_FACE_ID
: name
= Qborder
; break;
4553 case CURSOR_FACE_ID
: name
= Qcursor
; break;
4554 case MOUSE_FACE_ID
: name
= Qmouse
; break;
4555 case MENU_FACE_ID
: name
= Qmenu
; break;
4558 emacs_abort (); /* the caller is supposed to pass us a basic face id */
4561 /* Do a quick scan through Vface_remapping_alist, and return immediately
4562 if there is no remapping for face NAME. This is just an optimization
4563 for the very common no-remapping case. */
4564 mapping
= assq_no_quit (name
, Vface_remapping_alist
);
4566 return face_id
; /* Give up. */
4568 /* If there is a remapping entry, lookup the face using NAME, which will
4569 handle the remapping too. */
4570 remapped_face_id
= lookup_named_face (f
, name
, 0);
4571 if (remapped_face_id
< 0)
4572 return face_id
; /* Give up. */
4574 return remapped_face_id
;
4578 /* Return a face for charset ASCII that is like the face with id
4579 FACE_ID on frame F, but has a font that is STEPS steps smaller.
4580 STEPS < 0 means larger. Value is the id of the face. */
4583 smaller_face (struct frame
*f
, int face_id
, int steps
)
4585 #ifdef HAVE_WINDOW_SYSTEM
4587 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
4588 int pt
, last_pt
, last_height
;
4591 struct face
*new_face
;
4593 /* If not called for an X frame, just return the original face. */
4594 if (FRAME_TERMCAP_P (f
))
4597 /* Try in increments of 1/2 pt. */
4598 delta
= steps
< 0 ? 5 : -5;
4599 steps
= eabs (steps
);
4601 face
= FACE_FROM_ID (f
, face_id
);
4602 memcpy (attrs
, face
->lface
, sizeof attrs
);
4603 pt
= last_pt
= XFASTINT (attrs
[LFACE_HEIGHT_INDEX
]);
4604 new_face_id
= face_id
;
4605 last_height
= FONT_HEIGHT (face
->font
);
4609 /* Give up if we cannot find a font within 10pt. */
4610 && eabs (last_pt
- pt
) < 100)
4612 /* Look up a face for a slightly smaller/larger font. */
4614 attrs
[LFACE_HEIGHT_INDEX
] = make_number (pt
);
4615 new_face_id
= lookup_face (f
, attrs
);
4616 new_face
= FACE_FROM_ID (f
, new_face_id
);
4618 /* If height changes, count that as one step. */
4619 if ((delta
< 0 && FONT_HEIGHT (new_face
->font
) < last_height
)
4620 || (delta
> 0 && FONT_HEIGHT (new_face
->font
) > last_height
))
4623 last_height
= FONT_HEIGHT (new_face
->font
);
4630 #else /* not HAVE_WINDOW_SYSTEM */
4634 #endif /* not HAVE_WINDOW_SYSTEM */
4638 /* Return a face for charset ASCII that is like the face with id
4639 FACE_ID on frame F, but has height HEIGHT. */
4642 face_with_height (struct frame
*f
, int face_id
, int height
)
4644 #ifdef HAVE_WINDOW_SYSTEM
4646 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
4648 if (FRAME_TERMCAP_P (f
)
4652 face
= FACE_FROM_ID (f
, face_id
);
4653 memcpy (attrs
, face
->lface
, sizeof attrs
);
4654 attrs
[LFACE_HEIGHT_INDEX
] = make_number (height
);
4655 font_clear_prop (attrs
, FONT_SIZE_INDEX
);
4656 face_id
= lookup_face (f
, attrs
);
4657 #endif /* HAVE_WINDOW_SYSTEM */
4663 /* Return the face id of the realized face for named face SYMBOL on
4664 frame F suitable for displaying ASCII characters, and use
4665 attributes of the face FACE_ID for attributes that aren't
4666 completely specified by SYMBOL. This is like lookup_named_face,
4667 except that the default attributes come from FACE_ID, not from the
4668 default face. FACE_ID is assumed to be already realized. */
4671 lookup_derived_face (struct frame
*f
, Lisp_Object symbol
, int face_id
,
4674 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
4675 Lisp_Object symbol_attrs
[LFACE_VECTOR_SIZE
];
4676 struct face
*default_face
= FACE_FROM_ID (f
, face_id
);
4681 if (!get_lface_attributes (f
, symbol
, symbol_attrs
, signal_p
, 0))
4684 memcpy (attrs
, default_face
->lface
, sizeof attrs
);
4685 merge_face_vectors (f
, symbol_attrs
, attrs
, 0);
4686 return lookup_face (f
, attrs
);
4689 DEFUN ("face-attributes-as-vector", Fface_attributes_as_vector
,
4690 Sface_attributes_as_vector
, 1, 1, 0,
4691 doc
: /* Return a vector of face attributes corresponding to PLIST. */)
4695 lface
= Fmake_vector (make_number (LFACE_VECTOR_SIZE
),
4697 merge_face_ref (XFRAME (selected_frame
), plist
, XVECTOR (lface
)->contents
,
4704 /***********************************************************************
4705 Face capability testing
4706 ***********************************************************************/
4709 /* If the distance (as returned by color_distance) between two colors is
4710 less than this, then they are considered the same, for determining
4711 whether a color is supported or not. The range of values is 0-65535. */
4713 #define TTY_SAME_COLOR_THRESHOLD 10000
4715 #ifdef HAVE_WINDOW_SYSTEM
4717 /* Return true if all the face attributes in ATTRS are supported
4718 on the window-system frame F.
4720 The definition of `supported' is somewhat heuristic, but basically means
4721 that a face containing all the attributes in ATTRS, when merged with the
4722 default face for display, can be represented in a way that's
4724 \(1) different in appearance than the default face, and
4725 \(2) `close in spirit' to what the attributes specify, if not exact. */
4728 x_supports_face_attributes_p (struct frame
*f
,
4729 Lisp_Object attrs
[LFACE_VECTOR_SIZE
],
4730 struct face
*def_face
)
4732 Lisp_Object
*def_attrs
= def_face
->lface
;
4734 /* Check that other specified attributes are different that the default
4736 if ((!UNSPECIFIEDP (attrs
[LFACE_UNDERLINE_INDEX
])
4737 && face_attr_equal_p (attrs
[LFACE_UNDERLINE_INDEX
],
4738 def_attrs
[LFACE_UNDERLINE_INDEX
]))
4739 || (!UNSPECIFIEDP (attrs
[LFACE_INVERSE_INDEX
])
4740 && face_attr_equal_p (attrs
[LFACE_INVERSE_INDEX
],
4741 def_attrs
[LFACE_INVERSE_INDEX
]))
4742 || (!UNSPECIFIEDP (attrs
[LFACE_FOREGROUND_INDEX
])
4743 && face_attr_equal_p (attrs
[LFACE_FOREGROUND_INDEX
],
4744 def_attrs
[LFACE_FOREGROUND_INDEX
]))
4745 || (!UNSPECIFIEDP (attrs
[LFACE_DISTANT_FOREGROUND_INDEX
])
4746 && face_attr_equal_p (attrs
[LFACE_DISTANT_FOREGROUND_INDEX
],
4747 def_attrs
[LFACE_DISTANT_FOREGROUND_INDEX
]))
4748 || (!UNSPECIFIEDP (attrs
[LFACE_BACKGROUND_INDEX
])
4749 && face_attr_equal_p (attrs
[LFACE_BACKGROUND_INDEX
],
4750 def_attrs
[LFACE_BACKGROUND_INDEX
]))
4751 || (!UNSPECIFIEDP (attrs
[LFACE_STIPPLE_INDEX
])
4752 && face_attr_equal_p (attrs
[LFACE_STIPPLE_INDEX
],
4753 def_attrs
[LFACE_STIPPLE_INDEX
]))
4754 || (!UNSPECIFIEDP (attrs
[LFACE_OVERLINE_INDEX
])
4755 && face_attr_equal_p (attrs
[LFACE_OVERLINE_INDEX
],
4756 def_attrs
[LFACE_OVERLINE_INDEX
]))
4757 || (!UNSPECIFIEDP (attrs
[LFACE_STRIKE_THROUGH_INDEX
])
4758 && face_attr_equal_p (attrs
[LFACE_STRIKE_THROUGH_INDEX
],
4759 def_attrs
[LFACE_STRIKE_THROUGH_INDEX
]))
4760 || (!UNSPECIFIEDP (attrs
[LFACE_BOX_INDEX
])
4761 && face_attr_equal_p (attrs
[LFACE_BOX_INDEX
],
4762 def_attrs
[LFACE_BOX_INDEX
])))
4765 /* Check font-related attributes, as those are the most commonly
4766 "unsupported" on a window-system (because of missing fonts). */
4767 if (!UNSPECIFIEDP (attrs
[LFACE_FAMILY_INDEX
])
4768 || !UNSPECIFIEDP (attrs
[LFACE_FOUNDRY_INDEX
])
4769 || !UNSPECIFIEDP (attrs
[LFACE_HEIGHT_INDEX
])
4770 || !UNSPECIFIEDP (attrs
[LFACE_WEIGHT_INDEX
])
4771 || !UNSPECIFIEDP (attrs
[LFACE_SLANT_INDEX
])
4772 || !UNSPECIFIEDP (attrs
[LFACE_SWIDTH_INDEX
]))
4776 Lisp_Object merged_attrs
[LFACE_VECTOR_SIZE
];
4779 memcpy (merged_attrs
, def_attrs
, sizeof merged_attrs
);
4781 merge_face_vectors (f
, attrs
, merged_attrs
, 0);
4783 face_id
= lookup_face (f
, merged_attrs
);
4784 face
= FACE_FROM_ID (f
, face_id
);
4787 error ("Cannot make face");
4789 /* If the font is the same, or no font is found, then not
4791 if (face
->font
== def_face
->font
4794 for (i
= FONT_TYPE_INDEX
; i
<= FONT_SIZE_INDEX
; i
++)
4795 if (! EQ (face
->font
->props
[i
], def_face
->font
->props
[i
]))
4799 if (i
< FONT_FOUNDRY_INDEX
|| i
> FONT_REGISTRY_INDEX
4800 || face
->font
->driver
->case_sensitive
)
4802 s1
= SYMBOL_NAME (face
->font
->props
[i
]);
4803 s2
= SYMBOL_NAME (def_face
->font
->props
[i
]);
4804 if (! EQ (Fcompare_strings (s1
, make_number (0), Qnil
,
4805 s2
, make_number (0), Qnil
, Qt
), Qt
))
4811 /* Everything checks out, this face is supported. */
4815 #endif /* HAVE_WINDOW_SYSTEM */
4817 /* Return true if all the face attributes in ATTRS are supported
4820 The definition of `supported' is somewhat heuristic, but basically means
4821 that a face containing all the attributes in ATTRS, when merged
4822 with the default face for display, can be represented in a way that's
4824 \(1) different in appearance than the default face, and
4825 \(2) `close in spirit' to what the attributes specify, if not exact.
4827 Point (2) implies that a `:weight black' attribute will be satisfied
4828 by any terminal that can display bold, and a `:foreground "yellow"' as
4829 long as the terminal can display a yellowish color, but `:slant italic'
4830 will _not_ be satisfied by the tty display code's automatic
4831 substitution of a `dim' face for italic. */
4834 tty_supports_face_attributes_p (struct frame
*f
,
4835 Lisp_Object attrs
[LFACE_VECTOR_SIZE
],
4836 struct face
*def_face
)
4839 Lisp_Object val
, fg
, bg
;
4840 XColor fg_tty_color
, fg_std_color
;
4841 XColor bg_tty_color
, bg_std_color
;
4842 unsigned test_caps
= 0;
4843 Lisp_Object
*def_attrs
= def_face
->lface
;
4845 /* First check some easy-to-check stuff; ttys support none of the
4846 following attributes, so we can just return false if any are requested
4847 (even if `nominal' values are specified, we should still return false,
4848 as that will be the same value that the default face uses). We
4849 consider :slant unsupportable on ttys, even though the face code
4850 actually `fakes' them using a dim attribute if possible. This is
4851 because the faked result is too different from what the face
4853 if (!UNSPECIFIEDP (attrs
[LFACE_FAMILY_INDEX
])
4854 || !UNSPECIFIEDP (attrs
[LFACE_FOUNDRY_INDEX
])
4855 || !UNSPECIFIEDP (attrs
[LFACE_STIPPLE_INDEX
])
4856 || !UNSPECIFIEDP (attrs
[LFACE_HEIGHT_INDEX
])
4857 || !UNSPECIFIEDP (attrs
[LFACE_SWIDTH_INDEX
])
4858 || !UNSPECIFIEDP (attrs
[LFACE_OVERLINE_INDEX
])
4859 || !UNSPECIFIEDP (attrs
[LFACE_STRIKE_THROUGH_INDEX
])
4860 || !UNSPECIFIEDP (attrs
[LFACE_BOX_INDEX
]))
4863 /* Test for terminal `capabilities' (non-color character attributes). */
4865 /* font weight (bold/dim) */
4866 val
= attrs
[LFACE_WEIGHT_INDEX
];
4867 if (!UNSPECIFIEDP (val
)
4868 && (weight
= FONT_WEIGHT_NAME_NUMERIC (val
), weight
>= 0))
4870 int def_weight
= FONT_WEIGHT_NAME_NUMERIC (def_attrs
[LFACE_WEIGHT_INDEX
]);
4874 if (def_weight
> 100)
4875 return 0; /* same as default */
4876 test_caps
= TTY_CAP_BOLD
;
4878 else if (weight
< 100)
4880 if (def_weight
< 100)
4881 return 0; /* same as default */
4882 test_caps
= TTY_CAP_DIM
;
4884 else if (def_weight
== 100)
4885 return 0; /* same as default */
4889 val
= attrs
[LFACE_SLANT_INDEX
];
4890 if (!UNSPECIFIEDP (val
)
4891 && (slant
= FONT_SLANT_NAME_NUMERIC (val
), slant
>= 0))
4893 int def_slant
= FONT_SLANT_NAME_NUMERIC (def_attrs
[LFACE_SLANT_INDEX
]);
4894 if (slant
== 100 || slant
== def_slant
)
4895 return 0; /* same as default */
4897 test_caps
|= TTY_CAP_ITALIC
;
4901 val
= attrs
[LFACE_UNDERLINE_INDEX
];
4902 if (!UNSPECIFIEDP (val
))
4905 return 0; /* ttys can't use colored underlines */
4906 else if (EQ (CAR_SAFE (val
), QCstyle
) && EQ (CAR_SAFE (CDR_SAFE (val
)), Qwave
))
4907 return 0; /* ttys can't use wave underlines */
4908 else if (face_attr_equal_p (val
, def_attrs
[LFACE_UNDERLINE_INDEX
]))
4909 return 0; /* same as default */
4911 test_caps
|= TTY_CAP_UNDERLINE
;
4915 val
= attrs
[LFACE_INVERSE_INDEX
];
4916 if (!UNSPECIFIEDP (val
))
4918 if (face_attr_equal_p (val
, def_attrs
[LFACE_INVERSE_INDEX
]))
4919 return 0; /* same as default */
4921 test_caps
|= TTY_CAP_INVERSE
;
4925 /* Color testing. */
4927 /* Check if foreground color is close enough. */
4928 fg
= attrs
[LFACE_FOREGROUND_INDEX
];
4931 Lisp_Object def_fg
= def_attrs
[LFACE_FOREGROUND_INDEX
];
4933 if (face_attr_equal_p (fg
, def_fg
))
4934 return 0; /* same as default */
4935 else if (! tty_lookup_color (f
, fg
, &fg_tty_color
, &fg_std_color
))
4936 return 0; /* not a valid color */
4937 else if (color_distance (&fg_tty_color
, &fg_std_color
)
4938 > TTY_SAME_COLOR_THRESHOLD
)
4939 return 0; /* displayed color is too different */
4941 /* Make sure the color is really different than the default. */
4943 XColor def_fg_color
;
4944 if (tty_lookup_color (f
, def_fg
, &def_fg_color
, 0)
4945 && (color_distance (&fg_tty_color
, &def_fg_color
)
4946 <= TTY_SAME_COLOR_THRESHOLD
))
4951 /* Check if background color is close enough. */
4952 bg
= attrs
[LFACE_BACKGROUND_INDEX
];
4955 Lisp_Object def_bg
= def_attrs
[LFACE_BACKGROUND_INDEX
];
4957 if (face_attr_equal_p (bg
, def_bg
))
4958 return 0; /* same as default */
4959 else if (! tty_lookup_color (f
, bg
, &bg_tty_color
, &bg_std_color
))
4960 return 0; /* not a valid color */
4961 else if (color_distance (&bg_tty_color
, &bg_std_color
)
4962 > TTY_SAME_COLOR_THRESHOLD
)
4963 return 0; /* displayed color is too different */
4965 /* Make sure the color is really different than the default. */
4967 XColor def_bg_color
;
4968 if (tty_lookup_color (f
, def_bg
, &def_bg_color
, 0)
4969 && (color_distance (&bg_tty_color
, &def_bg_color
)
4970 <= TTY_SAME_COLOR_THRESHOLD
))
4975 /* If both foreground and background are requested, see if the
4976 distance between them is OK. We just check to see if the distance
4977 between the tty's foreground and background is close enough to the
4978 distance between the standard foreground and background. */
4979 if (STRINGP (fg
) && STRINGP (bg
))
4982 = (color_distance (&fg_std_color
, &bg_std_color
)
4983 - color_distance (&fg_tty_color
, &bg_tty_color
));
4984 if (delta_delta
> TTY_SAME_COLOR_THRESHOLD
4985 || delta_delta
< -TTY_SAME_COLOR_THRESHOLD
)
4990 /* See if the capabilities we selected above are supported, with the
4992 return tty_capable_p (FRAME_TTY (f
), test_caps
);
4996 DEFUN ("display-supports-face-attributes-p",
4997 Fdisplay_supports_face_attributes_p
, Sdisplay_supports_face_attributes_p
,
4999 doc
: /* Return non-nil if all the face attributes in ATTRIBUTES are supported.
5000 The optional argument DISPLAY can be a display name, a frame, or
5001 nil (meaning the selected frame's display).
5003 The definition of `supported' is somewhat heuristic, but basically means
5004 that a face containing all the attributes in ATTRIBUTES, when merged
5005 with the default face for display, can be represented in a way that's
5007 \(1) different in appearance than the default face, and
5008 \(2) `close in spirit' to what the attributes specify, if not exact.
5010 Point (2) implies that a `:weight black' attribute will be satisfied by
5011 any display that can display bold, and a `:foreground \"yellow\"' as long
5012 as it can display a yellowish color, but `:slant italic' will _not_ be
5013 satisfied by the tty display code's automatic substitution of a `dim'
5014 face for italic. */)
5015 (Lisp_Object attributes
, Lisp_Object display
)
5021 struct face
*def_face
;
5022 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
5024 if (noninteractive
|| !initialized
)
5025 /* We may not be able to access low-level face information in batch
5026 mode, or before being dumped, and this function is not going to
5027 be very useful in those cases anyway, so just give up. */
5031 frame
= selected_frame
;
5032 else if (FRAMEP (display
))
5036 /* Find any frame on DISPLAY. */
5040 FOR_EACH_FRAME (tail
, frame
)
5041 if (!NILP (Fequal (Fcdr (Fassq (Qdisplay
,
5042 XFRAME (frame
)->param_alist
)),
5047 CHECK_LIVE_FRAME (frame
);
5050 for (i
= 0; i
< LFACE_VECTOR_SIZE
; i
++)
5051 attrs
[i
] = Qunspecified
;
5052 merge_face_ref (f
, attributes
, attrs
, 1, 0);
5054 def_face
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
5055 if (def_face
== NULL
)
5057 if (! realize_basic_faces (f
))
5058 error ("Cannot realize default face");
5059 def_face
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
5060 if (def_face
== NULL
)
5061 emacs_abort (); /* realize_basic_faces must have set it up */
5064 /* Dispatch to the appropriate handler. */
5065 if (FRAME_TERMCAP_P (f
) || FRAME_MSDOS_P (f
))
5066 supports
= tty_supports_face_attributes_p (f
, attrs
, def_face
);
5067 #ifdef HAVE_WINDOW_SYSTEM
5069 supports
= x_supports_face_attributes_p (f
, attrs
, def_face
);
5072 return supports
? Qt
: Qnil
;
5076 /***********************************************************************
5078 ***********************************************************************/
5080 DEFUN ("internal-set-font-selection-order",
5081 Finternal_set_font_selection_order
,
5082 Sinternal_set_font_selection_order
, 1, 1, 0,
5083 doc
: /* Set font selection order for face font selection to ORDER.
5084 ORDER must be a list of length 4 containing the symbols `:width',
5085 `:height', `:weight', and `:slant'. Face attributes appearing
5086 first in ORDER are matched first, e.g. if `:height' appears before
5087 `:weight' in ORDER, font selection first tries to find a font with
5088 a suitable height, and then tries to match the font weight.
5094 int indices
[ARRAYELTS (font_sort_order
)];
5097 memset (indices
, 0, sizeof indices
);
5101 CONSP (list
) && i
< ARRAYELTS (indices
);
5102 list
= XCDR (list
), ++i
)
5104 Lisp_Object attr
= XCAR (list
);
5107 if (EQ (attr
, QCwidth
))
5109 else if (EQ (attr
, QCheight
))
5110 xlfd
= XLFD_POINT_SIZE
;
5111 else if (EQ (attr
, QCweight
))
5113 else if (EQ (attr
, QCslant
))
5118 if (indices
[i
] != 0)
5123 if (!NILP (list
) || i
!= ARRAYELTS (indices
))
5124 signal_error ("Invalid font sort order", order
);
5125 for (i
= 0; i
< ARRAYELTS (font_sort_order
); ++i
)
5126 if (indices
[i
] == 0)
5127 signal_error ("Invalid font sort order", order
);
5129 if (memcmp (indices
, font_sort_order
, sizeof indices
) != 0)
5131 memcpy (font_sort_order
, indices
, sizeof font_sort_order
);
5132 free_all_realized_faces (Qnil
);
5135 font_update_sort_order (font_sort_order
);
5141 DEFUN ("internal-set-alternative-font-family-alist",
5142 Finternal_set_alternative_font_family_alist
,
5143 Sinternal_set_alternative_font_family_alist
, 1, 1, 0,
5144 doc
: /* Define alternative font families to try in face font selection.
5145 ALIST is an alist of (FAMILY ALTERNATIVE1 ALTERNATIVE2 ...) entries.
5146 Each ALTERNATIVE is tried in order if no fonts of font family FAMILY can
5147 be found. Value is ALIST. */)
5150 Lisp_Object entry
, tail
, tail2
;
5153 alist
= Fcopy_sequence (alist
);
5154 for (tail
= alist
; CONSP (tail
); tail
= XCDR (tail
))
5156 entry
= XCAR (tail
);
5158 entry
= Fcopy_sequence (entry
);
5159 XSETCAR (tail
, entry
);
5160 for (tail2
= entry
; CONSP (tail2
); tail2
= XCDR (tail2
))
5161 XSETCAR (tail2
, Fintern (XCAR (tail2
), Qnil
));
5164 Vface_alternative_font_family_alist
= alist
;
5165 free_all_realized_faces (Qnil
);
5170 DEFUN ("internal-set-alternative-font-registry-alist",
5171 Finternal_set_alternative_font_registry_alist
,
5172 Sinternal_set_alternative_font_registry_alist
, 1, 1, 0,
5173 doc
: /* Define alternative font registries to try in face font selection.
5174 ALIST is an alist of (REGISTRY ALTERNATIVE1 ALTERNATIVE2 ...) entries.
5175 Each ALTERNATIVE is tried in order if no fonts of font registry REGISTRY can
5176 be found. Value is ALIST. */)
5179 Lisp_Object entry
, tail
, tail2
;
5182 alist
= Fcopy_sequence (alist
);
5183 for (tail
= alist
; CONSP (tail
); tail
= XCDR (tail
))
5185 entry
= XCAR (tail
);
5187 entry
= Fcopy_sequence (entry
);
5188 XSETCAR (tail
, entry
);
5189 for (tail2
= entry
; CONSP (tail2
); tail2
= XCDR (tail2
))
5190 XSETCAR (tail2
, Fdowncase (XCAR (tail2
)));
5192 Vface_alternative_font_registry_alist
= alist
;
5193 free_all_realized_faces (Qnil
);
5198 #ifdef HAVE_WINDOW_SYSTEM
5200 /* Return the fontset id of the base fontset name or alias name given
5201 by the fontset attribute of ATTRS. Value is -1 if the fontset
5202 attribute of ATTRS doesn't name a fontset. */
5205 face_fontset (Lisp_Object attrs
[LFACE_VECTOR_SIZE
])
5209 name
= attrs
[LFACE_FONTSET_INDEX
];
5210 if (!STRINGP (name
))
5212 return fs_query_fontset (name
, 0);
5215 #endif /* HAVE_WINDOW_SYSTEM */
5219 /***********************************************************************
5221 ***********************************************************************/
5223 /* Realize basic faces on frame F. Value is zero if frame parameters
5224 of F don't contain enough information needed to realize the default
5228 realize_basic_faces (struct frame
*f
)
5231 ptrdiff_t count
= SPECPDL_INDEX ();
5233 /* Block input here so that we won't be surprised by an X expose
5234 event, for instance, without having the faces set up. */
5236 specbind (Qscalable_fonts_allowed
, Qt
);
5238 if (realize_default_face (f
))
5240 realize_named_face (f
, Qmode_line
, MODE_LINE_FACE_ID
);
5241 realize_named_face (f
, Qmode_line_inactive
, MODE_LINE_INACTIVE_FACE_ID
);
5242 realize_named_face (f
, Qtool_bar
, TOOL_BAR_FACE_ID
);
5243 realize_named_face (f
, Qfringe
, FRINGE_FACE_ID
);
5244 realize_named_face (f
, Qheader_line
, HEADER_LINE_FACE_ID
);
5245 realize_named_face (f
, Qscroll_bar
, SCROLL_BAR_FACE_ID
);
5246 realize_named_face (f
, Qborder
, BORDER_FACE_ID
);
5247 realize_named_face (f
, Qcursor
, CURSOR_FACE_ID
);
5248 realize_named_face (f
, Qmouse
, MOUSE_FACE_ID
);
5249 realize_named_face (f
, Qmenu
, MENU_FACE_ID
);
5250 realize_named_face (f
, Qvertical_border
, VERTICAL_BORDER_FACE_ID
);
5251 realize_named_face (f
, Qwindow_divider
, WINDOW_DIVIDER_FACE_ID
);
5252 realize_named_face (f
, Qwindow_divider_first_pixel
,
5253 WINDOW_DIVIDER_FIRST_PIXEL_FACE_ID
);
5254 realize_named_face (f
, Qwindow_divider_last_pixel
,
5255 WINDOW_DIVIDER_LAST_PIXEL_FACE_ID
);
5257 /* Reflect changes in the `menu' face in menu bars. */
5258 if (FRAME_FACE_CACHE (f
)->menu_face_changed_p
)
5260 FRAME_FACE_CACHE (f
)->menu_face_changed_p
= 0;
5261 #ifdef USE_X_TOOLKIT
5262 if (FRAME_WINDOW_P (f
))
5263 x_update_menu_appearance (f
);
5270 unbind_to (count
, Qnil
);
5276 /* Realize the default face on frame F. If the face is not fully
5277 specified, make it fully-specified. Attributes of the default face
5278 that are not explicitly specified are taken from frame parameters. */
5281 realize_default_face (struct frame
*f
)
5283 struct face_cache
*c
= FRAME_FACE_CACHE (f
);
5285 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
5288 /* If the `default' face is not yet known, create it. */
5289 lface
= lface_from_face_name (f
, Qdefault
, 0);
5293 XSETFRAME (frame
, f
);
5294 lface
= Finternal_make_lisp_face (Qdefault
, frame
);
5297 #ifdef HAVE_WINDOW_SYSTEM
5298 if (FRAME_WINDOW_P (f
))
5300 Lisp_Object font_object
;
5302 XSETFONT (font_object
, FRAME_FONT (f
));
5303 set_lface_from_font (f
, lface
, font_object
, f
->default_face_done_p
);
5304 ASET (lface
, LFACE_FONTSET_INDEX
, fontset_name (FRAME_FONTSET (f
)));
5305 f
->default_face_done_p
= 1;
5307 #endif /* HAVE_WINDOW_SYSTEM */
5309 if (!FRAME_WINDOW_P (f
))
5311 ASET (lface
, LFACE_FAMILY_INDEX
, build_string ("default"));
5312 ASET (lface
, LFACE_FOUNDRY_INDEX
, LFACE_FAMILY (lface
));
5313 ASET (lface
, LFACE_SWIDTH_INDEX
, Qnormal
);
5314 ASET (lface
, LFACE_HEIGHT_INDEX
, make_number (1));
5315 if (UNSPECIFIEDP (LFACE_WEIGHT (lface
)))
5316 ASET (lface
, LFACE_WEIGHT_INDEX
, Qnormal
);
5317 if (UNSPECIFIEDP (LFACE_SLANT (lface
)))
5318 ASET (lface
, LFACE_SLANT_INDEX
, Qnormal
);
5319 if (UNSPECIFIEDP (LFACE_FONTSET (lface
)))
5320 ASET (lface
, LFACE_FONTSET_INDEX
, Qnil
);
5323 if (UNSPECIFIEDP (LFACE_UNDERLINE (lface
)))
5324 ASET (lface
, LFACE_UNDERLINE_INDEX
, Qnil
);
5326 if (UNSPECIFIEDP (LFACE_OVERLINE (lface
)))
5327 ASET (lface
, LFACE_OVERLINE_INDEX
, Qnil
);
5329 if (UNSPECIFIEDP (LFACE_STRIKE_THROUGH (lface
)))
5330 ASET (lface
, LFACE_STRIKE_THROUGH_INDEX
, Qnil
);
5332 if (UNSPECIFIEDP (LFACE_BOX (lface
)))
5333 ASET (lface
, LFACE_BOX_INDEX
, Qnil
);
5335 if (UNSPECIFIEDP (LFACE_INVERSE (lface
)))
5336 ASET (lface
, LFACE_INVERSE_INDEX
, Qnil
);
5338 if (UNSPECIFIEDP (LFACE_FOREGROUND (lface
)))
5340 /* This function is called so early that colors are not yet
5341 set in the frame parameter list. */
5342 Lisp_Object color
= Fassq (Qforeground_color
, f
->param_alist
);
5344 if (CONSP (color
) && STRINGP (XCDR (color
)))
5345 ASET (lface
, LFACE_FOREGROUND_INDEX
, XCDR (color
));
5346 else if (FRAME_WINDOW_P (f
))
5348 else if (FRAME_INITIAL_P (f
) || FRAME_TERMCAP_P (f
) || FRAME_MSDOS_P (f
))
5349 ASET (lface
, LFACE_FOREGROUND_INDEX
, build_string (unspecified_fg
));
5354 if (UNSPECIFIEDP (LFACE_BACKGROUND (lface
)))
5356 /* This function is called so early that colors are not yet
5357 set in the frame parameter list. */
5358 Lisp_Object color
= Fassq (Qbackground_color
, f
->param_alist
);
5359 if (CONSP (color
) && STRINGP (XCDR (color
)))
5360 ASET (lface
, LFACE_BACKGROUND_INDEX
, XCDR (color
));
5361 else if (FRAME_WINDOW_P (f
))
5363 else if (FRAME_INITIAL_P (f
) || FRAME_TERMCAP_P (f
) || FRAME_MSDOS_P (f
))
5364 ASET (lface
, LFACE_BACKGROUND_INDEX
, build_string (unspecified_bg
));
5369 if (UNSPECIFIEDP (LFACE_STIPPLE (lface
)))
5370 ASET (lface
, LFACE_STIPPLE_INDEX
, Qnil
);
5372 /* Realize the face; it must be fully-specified now. */
5373 eassert (lface_fully_specified_p (XVECTOR (lface
)->contents
));
5374 check_lface (lface
);
5375 memcpy (attrs
, XVECTOR (lface
)->contents
, sizeof attrs
);
5376 face
= realize_face (c
, attrs
, DEFAULT_FACE_ID
);
5378 #ifdef HAVE_WINDOW_SYSTEM
5379 #ifdef HAVE_X_WINDOWS
5380 if (FRAME_X_P (f
) && face
->font
!= FRAME_FONT (f
))
5382 /* This can happen when making a frame on a display that does
5383 not support the default font. */
5387 /* Otherwise, the font specified for the frame was not
5388 acceptable as a font for the default face (perhaps because
5389 auto-scaled fonts are rejected), so we must adjust the frame
5391 x_set_font (f
, LFACE_FONT (lface
), Qnil
);
5393 #endif /* HAVE_X_WINDOWS */
5394 #endif /* HAVE_WINDOW_SYSTEM */
5399 /* Realize basic faces other than the default face in face cache C.
5400 SYMBOL is the face name, ID is the face id the realized face must
5401 have. The default face must have been realized already. */
5404 realize_named_face (struct frame
*f
, Lisp_Object symbol
, int id
)
5406 struct face_cache
*c
= FRAME_FACE_CACHE (f
);
5407 Lisp_Object lface
= lface_from_face_name (f
, symbol
, 0);
5408 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
5409 Lisp_Object symbol_attrs
[LFACE_VECTOR_SIZE
];
5411 /* The default face must exist and be fully specified. */
5412 get_lface_attributes_no_remap (f
, Qdefault
, attrs
, 1);
5413 check_lface_attrs (attrs
);
5414 eassert (lface_fully_specified_p (attrs
));
5416 /* If SYMBOL isn't know as a face, create it. */
5420 XSETFRAME (frame
, f
);
5421 lface
= Finternal_make_lisp_face (symbol
, frame
);
5424 /* Merge SYMBOL's face with the default face. */
5425 get_lface_attributes_no_remap (f
, symbol
, symbol_attrs
, 1);
5426 merge_face_vectors (f
, symbol_attrs
, attrs
, 0);
5428 /* Realize the face. */
5429 realize_face (c
, attrs
, id
);
5433 /* Realize the fully-specified face with attributes ATTRS in face
5434 cache CACHE for ASCII characters. If FORMER_FACE_ID is
5435 non-negative, it is an ID of face to remove before caching the new
5436 face. Value is a pointer to the newly created realized face. */
5438 static struct face
*
5439 realize_face (struct face_cache
*cache
, Lisp_Object attrs
[LFACE_VECTOR_SIZE
],
5444 /* LFACE must be fully specified. */
5445 eassert (cache
!= NULL
);
5446 check_lface_attrs (attrs
);
5448 if (former_face_id
>= 0 && cache
->used
> former_face_id
)
5450 /* Remove the former face. */
5451 struct face
*former_face
= cache
->faces_by_id
[former_face_id
];
5452 uncache_face (cache
, former_face
);
5453 free_realized_face (cache
->f
, former_face
);
5454 SET_FRAME_GARBAGED (cache
->f
);
5457 if (FRAME_WINDOW_P (cache
->f
))
5458 face
= realize_x_face (cache
, attrs
);
5459 else if (FRAME_TERMCAP_P (cache
->f
) || FRAME_MSDOS_P (cache
->f
))
5460 face
= realize_tty_face (cache
, attrs
);
5461 else if (FRAME_INITIAL_P (cache
->f
))
5463 /* Create a dummy face. */
5464 face
= make_realized_face (attrs
);
5469 /* Insert the new face. */
5470 cache_face (cache
, face
, lface_hash (attrs
));
5475 #ifdef HAVE_WINDOW_SYSTEM
5476 /* Realize the fully-specified face that uses FONT-OBJECT and has the
5477 same attributes as BASE_FACE except for the font on frame F.
5478 FONT-OBJECT may be nil, in which case, realized a face of
5481 static struct face
*
5482 realize_non_ascii_face (struct frame
*f
, Lisp_Object font_object
,
5483 struct face
*base_face
)
5485 struct face_cache
*cache
= FRAME_FACE_CACHE (f
);
5488 face
= xmalloc (sizeof *face
);
5492 = (! NILP (font_object
)
5493 && FONT_WEIGHT_NAME_NUMERIC (face
->lface
[LFACE_WEIGHT_INDEX
]) > 100
5494 && FONT_WEIGHT_NUMERIC (font_object
) <= 100);
5496 /* Don't try to free the colors copied bitwise from BASE_FACE. */
5497 face
->colors_copied_bitwise_p
= 1;
5498 face
->font
= NILP (font_object
) ? NULL
: XFONT_OBJECT (font_object
);
5501 cache_face (cache
, face
, face
->hash
);
5505 #endif /* HAVE_WINDOW_SYSTEM */
5508 /* Realize the fully-specified face with attributes ATTRS in face
5509 cache CACHE for ASCII characters. Do it for X frame CACHE->f. If
5510 the new face doesn't share font with the default face, a fontname
5511 is allocated from the heap and set in `font_name' of the new face,
5512 but it is not yet loaded here. Value is a pointer to the newly
5513 created realized face. */
5515 static struct face
*
5516 realize_x_face (struct face_cache
*cache
, Lisp_Object attrs
[LFACE_VECTOR_SIZE
])
5518 struct face
*face
= NULL
;
5519 #ifdef HAVE_WINDOW_SYSTEM
5520 struct face
*default_face
;
5522 Lisp_Object stipple
, underline
, overline
, strike_through
, box
;
5524 eassert (FRAME_WINDOW_P (cache
->f
));
5526 /* Allocate a new realized face. */
5527 face
= make_realized_face (attrs
);
5528 face
->ascii_face
= face
;
5532 /* Determine the font to use. Most of the time, the font will be
5533 the same as the font of the default face, so try that first. */
5534 default_face
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
5536 && lface_same_font_attributes_p (default_face
->lface
, attrs
))
5538 face
->font
= default_face
->font
;
5540 = make_fontset_for_ascii_face (f
, default_face
->fontset
, face
);
5544 /* If the face attribute ATTRS specifies a fontset, use it as
5545 the base of a new realized fontset. Otherwise, use the same
5546 base fontset as of the default face. The base determines
5547 registry and encoding of a font. It may also determine
5548 foundry and family. The other fields of font name pattern
5549 are constructed from ATTRS. */
5550 int fontset
= face_fontset (attrs
);
5552 /* If we are realizing the default face, ATTRS should specify a
5553 fontset. In other words, if FONTSET is -1, we are not
5554 realizing the default face, thus the default face should have
5555 already been realized. */
5559 fontset
= default_face
->fontset
;
5563 if (! FONT_OBJECT_P (attrs
[LFACE_FONT_INDEX
]))
5564 attrs
[LFACE_FONT_INDEX
]
5565 = font_load_for_lface (f
, attrs
, Ffont_spec (0, NULL
));
5566 if (FONT_OBJECT_P (attrs
[LFACE_FONT_INDEX
]))
5568 face
->font
= XFONT_OBJECT (attrs
[LFACE_FONT_INDEX
]);
5569 face
->fontset
= make_fontset_for_ascii_face (f
, fontset
, face
);
5579 && FONT_WEIGHT_NAME_NUMERIC (attrs
[LFACE_WEIGHT_INDEX
]) > 100
5580 && FONT_WEIGHT_NUMERIC (attrs
[LFACE_FONT_INDEX
]) <= 100)
5581 face
->overstrike
= 1;
5583 /* Load colors, and set remaining attributes. */
5585 load_face_colors (f
, face
, attrs
);
5588 box
= attrs
[LFACE_BOX_INDEX
];
5591 /* A simple box of line width 1 drawn in color given by
5593 face
->box_color
= load_color (f
, face
, attrs
[LFACE_BOX_INDEX
],
5595 face
->box
= FACE_SIMPLE_BOX
;
5596 face
->box_line_width
= 1;
5598 else if (INTEGERP (box
))
5600 /* Simple box of specified line width in foreground color of the
5602 eassert (XINT (box
) != 0);
5603 face
->box
= FACE_SIMPLE_BOX
;
5604 face
->box_line_width
= XINT (box
);
5605 face
->box_color
= face
->foreground
;
5606 face
->box_color_defaulted_p
= 1;
5608 else if (CONSP (box
))
5610 /* `(:width WIDTH :color COLOR :shadow SHADOW)'. SHADOW
5611 being one of `raised' or `sunken'. */
5612 face
->box
= FACE_SIMPLE_BOX
;
5613 face
->box_color
= face
->foreground
;
5614 face
->box_color_defaulted_p
= 1;
5615 face
->box_line_width
= 1;
5619 Lisp_Object keyword
, value
;
5621 keyword
= XCAR (box
);
5629 if (EQ (keyword
, QCline_width
))
5631 if (INTEGERP (value
) && XINT (value
) != 0)
5632 face
->box_line_width
= XINT (value
);
5634 else if (EQ (keyword
, QCcolor
))
5636 if (STRINGP (value
))
5638 face
->box_color
= load_color (f
, face
, value
,
5640 face
->use_box_color_for_shadows_p
= 1;
5643 else if (EQ (keyword
, QCstyle
))
5645 if (EQ (value
, Qreleased_button
))
5646 face
->box
= FACE_RAISED_BOX
;
5647 else if (EQ (value
, Qpressed_button
))
5648 face
->box
= FACE_SUNKEN_BOX
;
5653 /* Text underline, overline, strike-through. */
5655 underline
= attrs
[LFACE_UNDERLINE_INDEX
];
5656 if (EQ (underline
, Qt
))
5658 /* Use default color (same as foreground color). */
5659 face
->underline_p
= 1;
5660 face
->underline_type
= FACE_UNDER_LINE
;
5661 face
->underline_defaulted_p
= 1;
5662 face
->underline_color
= 0;
5664 else if (STRINGP (underline
))
5666 /* Use specified color. */
5667 face
->underline_p
= 1;
5668 face
->underline_type
= FACE_UNDER_LINE
;
5669 face
->underline_defaulted_p
= 0;
5670 face
->underline_color
5671 = load_color (f
, face
, underline
,
5672 LFACE_UNDERLINE_INDEX
);
5674 else if (NILP (underline
))
5676 face
->underline_p
= 0;
5677 face
->underline_defaulted_p
= 0;
5678 face
->underline_color
= 0;
5680 else if (CONSP (underline
))
5682 /* `(:color COLOR :style STYLE)'.
5683 STYLE being one of `line' or `wave'. */
5684 face
->underline_p
= 1;
5685 face
->underline_color
= 0;
5686 face
->underline_defaulted_p
= 1;
5687 face
->underline_type
= FACE_UNDER_LINE
;
5689 /* FIXME? This is also not robust about checking the precise form.
5690 See comments in Finternal_set_lisp_face_attribute. */
5691 while (CONSP (underline
))
5693 Lisp_Object keyword
, value
;
5695 keyword
= XCAR (underline
);
5696 underline
= XCDR (underline
);
5698 if (!CONSP (underline
))
5700 value
= XCAR (underline
);
5701 underline
= XCDR (underline
);
5703 if (EQ (keyword
, QCcolor
))
5705 if (EQ (value
, Qforeground_color
))
5707 face
->underline_defaulted_p
= 1;
5708 face
->underline_color
= 0;
5710 else if (STRINGP (value
))
5712 face
->underline_defaulted_p
= 0;
5713 face
->underline_color
= load_color (f
, face
, value
,
5714 LFACE_UNDERLINE_INDEX
);
5717 else if (EQ (keyword
, QCstyle
))
5719 if (EQ (value
, Qline
))
5720 face
->underline_type
= FACE_UNDER_LINE
;
5721 else if (EQ (value
, Qwave
))
5722 face
->underline_type
= FACE_UNDER_WAVE
;
5727 overline
= attrs
[LFACE_OVERLINE_INDEX
];
5728 if (STRINGP (overline
))
5730 face
->overline_color
5731 = load_color (f
, face
, attrs
[LFACE_OVERLINE_INDEX
],
5732 LFACE_OVERLINE_INDEX
);
5733 face
->overline_p
= 1;
5735 else if (EQ (overline
, Qt
))
5737 face
->overline_color
= face
->foreground
;
5738 face
->overline_color_defaulted_p
= 1;
5739 face
->overline_p
= 1;
5742 strike_through
= attrs
[LFACE_STRIKE_THROUGH_INDEX
];
5743 if (STRINGP (strike_through
))
5745 face
->strike_through_color
5746 = load_color (f
, face
, attrs
[LFACE_STRIKE_THROUGH_INDEX
],
5747 LFACE_STRIKE_THROUGH_INDEX
);
5748 face
->strike_through_p
= 1;
5750 else if (EQ (strike_through
, Qt
))
5752 face
->strike_through_color
= face
->foreground
;
5753 face
->strike_through_color_defaulted_p
= 1;
5754 face
->strike_through_p
= 1;
5757 stipple
= attrs
[LFACE_STIPPLE_INDEX
];
5758 if (!NILP (stipple
))
5759 face
->stipple
= load_pixmap (f
, stipple
);
5760 #endif /* HAVE_WINDOW_SYSTEM */
5766 /* Map a specified color of face FACE on frame F to a tty color index.
5767 IDX is either LFACE_FOREGROUND_INDEX or LFACE_BACKGROUND_INDEX, and
5768 specifies which color to map. Set *DEFAULTED to 1 if mapping to the
5769 default foreground/background colors. */
5772 map_tty_color (struct frame
*f
, struct face
*face
,
5773 enum lface_attribute_index idx
, int *defaulted
)
5775 Lisp_Object frame
, color
, def
;
5776 int foreground_p
= idx
== LFACE_FOREGROUND_INDEX
;
5777 unsigned long default_pixel
=
5778 foreground_p
? FACE_TTY_DEFAULT_FG_COLOR
: FACE_TTY_DEFAULT_BG_COLOR
;
5779 unsigned long pixel
= default_pixel
;
5781 unsigned long default_other_pixel
=
5782 foreground_p
? FACE_TTY_DEFAULT_BG_COLOR
: FACE_TTY_DEFAULT_FG_COLOR
;
5785 eassert (idx
== LFACE_FOREGROUND_INDEX
|| idx
== LFACE_BACKGROUND_INDEX
);
5787 XSETFRAME (frame
, f
);
5788 color
= face
->lface
[idx
];
5792 && CONSP (Vtty_defined_color_alist
)
5793 && (def
= assq_no_quit (color
, call1 (Qtty_color_alist
, frame
)),
5796 /* Associations in tty-defined-color-alist are of the form
5797 (NAME INDEX R G B). We need the INDEX part. */
5798 pixel
= XINT (XCAR (XCDR (def
)));
5801 if (pixel
== default_pixel
&& STRINGP (color
))
5803 pixel
= load_color (f
, face
, color
, idx
);
5806 /* If the foreground of the default face is the default color,
5807 use the foreground color defined by the frame. */
5808 if (FRAME_MSDOS_P (f
))
5810 if (pixel
== default_pixel
5811 || pixel
== FACE_TTY_DEFAULT_COLOR
)
5814 pixel
= FRAME_FOREGROUND_PIXEL (f
);
5816 pixel
= FRAME_BACKGROUND_PIXEL (f
);
5817 face
->lface
[idx
] = tty_color_name (f
, pixel
);
5820 else if (pixel
== default_other_pixel
)
5823 pixel
= FRAME_BACKGROUND_PIXEL (f
);
5825 pixel
= FRAME_FOREGROUND_PIXEL (f
);
5826 face
->lface
[idx
] = tty_color_name (f
, pixel
);
5834 face
->foreground
= pixel
;
5836 face
->background
= pixel
;
5840 /* Realize the fully-specified face with attributes ATTRS in face
5841 cache CACHE for ASCII characters. Do it for TTY frame CACHE->f.
5842 Value is a pointer to the newly created realized face. */
5844 static struct face
*
5845 realize_tty_face (struct face_cache
*cache
,
5846 Lisp_Object attrs
[LFACE_VECTOR_SIZE
])
5850 int face_colors_defaulted
= 0;
5851 struct frame
*f
= cache
->f
;
5853 /* Frame must be a termcap frame. */
5854 eassert (FRAME_TERMCAP_P (cache
->f
) || FRAME_MSDOS_P (cache
->f
));
5856 /* Allocate a new realized face. */
5857 face
= make_realized_face (attrs
);
5859 face
->font_name
= FRAME_MSDOS_P (cache
->f
) ? "ms-dos" : "tty";
5862 /* Map face attributes to TTY appearances. */
5863 weight
= FONT_WEIGHT_NAME_NUMERIC (attrs
[LFACE_WEIGHT_INDEX
]);
5864 slant
= FONT_SLANT_NAME_NUMERIC (attrs
[LFACE_SLANT_INDEX
]);
5866 face
->tty_bold_p
= 1;
5868 face
->tty_italic_p
= 1;
5869 if (!NILP (attrs
[LFACE_UNDERLINE_INDEX
]))
5870 face
->tty_underline_p
= 1;
5871 if (!NILP (attrs
[LFACE_INVERSE_INDEX
]))
5872 face
->tty_reverse_p
= 1;
5874 /* Map color names to color indices. */
5875 map_tty_color (f
, face
, LFACE_FOREGROUND_INDEX
, &face_colors_defaulted
);
5876 map_tty_color (f
, face
, LFACE_BACKGROUND_INDEX
, &face_colors_defaulted
);
5878 /* Swap colors if face is inverse-video. If the colors are taken
5879 from the frame colors, they are already inverted, since the
5880 frame-creation function calls x-handle-reverse-video. */
5881 if (face
->tty_reverse_p
&& !face_colors_defaulted
)
5883 unsigned long tem
= face
->foreground
;
5884 face
->foreground
= face
->background
;
5885 face
->background
= tem
;
5888 if (tty_suppress_bold_inverse_default_colors_p
5890 && face
->background
== FACE_TTY_DEFAULT_FG_COLOR
5891 && face
->foreground
== FACE_TTY_DEFAULT_BG_COLOR
)
5892 face
->tty_bold_p
= 0;
5898 DEFUN ("tty-suppress-bold-inverse-default-colors",
5899 Ftty_suppress_bold_inverse_default_colors
,
5900 Stty_suppress_bold_inverse_default_colors
, 1, 1, 0,
5901 doc
: /* Suppress/allow boldness of faces with inverse default colors.
5902 SUPPRESS non-nil means suppress it.
5903 This affects bold faces on TTYs whose foreground is the default background
5904 color of the display and whose background is the default foreground color.
5905 For such faces, the bold face attribute is ignored if this variable
5907 (Lisp_Object suppress
)
5909 tty_suppress_bold_inverse_default_colors_p
= !NILP (suppress
);
5910 ++face_change_count
;
5916 /***********************************************************************
5918 ***********************************************************************/
5920 /* Return the ID of the face to use to display character CH with face
5921 property PROP on frame F in current_buffer. */
5924 compute_char_face (struct frame
*f
, int ch
, Lisp_Object prop
)
5928 if (NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
5933 struct face
*face
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
5934 face_id
= FACE_FOR_CHAR (f
, face
, ch
, -1, Qnil
);
5938 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
5939 struct face
*default_face
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
5940 memcpy (attrs
, default_face
->lface
, sizeof attrs
);
5941 merge_face_ref (f
, prop
, attrs
, 1, 0);
5942 face_id
= lookup_face (f
, attrs
);
5948 /* Return the face ID associated with buffer position POS for
5949 displaying ASCII characters. Return in *ENDPTR the position at
5950 which a different face is needed, as far as text properties and
5951 overlays are concerned. W is a window displaying current_buffer.
5953 REGION_BEG, REGION_END delimit the region, so it can be
5956 LIMIT is a position not to scan beyond. That is to limit the time
5957 this function can take.
5959 If MOUSE is non-zero, use the character's mouse-face, not its face.
5961 BASE_FACE_ID, if non-negative, specifies a base face id to use
5962 instead of DEFAULT_FACE_ID.
5964 The face returned is suitable for displaying ASCII characters. */
5967 face_at_buffer_position (struct window
*w
, ptrdiff_t pos
,
5968 ptrdiff_t *endptr
, ptrdiff_t limit
,
5969 int mouse
, int base_face_id
)
5971 struct frame
*f
= XFRAME (w
->frame
);
5972 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
5973 Lisp_Object prop
, position
;
5974 ptrdiff_t i
, noverlays
;
5975 Lisp_Object
*overlay_vec
;
5977 Lisp_Object propname
= mouse
? Qmouse_face
: Qface
;
5978 Lisp_Object limit1
, end
;
5979 struct face
*default_face
;
5981 /* W must display the current buffer. We could write this function
5982 to use the frame and buffer of W, but right now it doesn't. */
5983 /* eassert (XBUFFER (w->contents) == current_buffer); */
5985 XSETFASTINT (position
, pos
);
5989 /* Get the `face' or `mouse_face' text property at POS, and
5990 determine the next position at which the property changes. */
5991 prop
= Fget_text_property (position
, propname
, w
->contents
);
5992 XSETFASTINT (limit1
, (limit
< endpos
? limit
: endpos
));
5993 end
= Fnext_single_property_change (position
, propname
, w
->contents
, limit1
);
5995 endpos
= XINT (end
);
5997 /* Look at properties from overlays. */
6000 ptrdiff_t next_overlay
;
6002 GET_OVERLAYS_AT (pos
, overlay_vec
, noverlays
, &next_overlay
, 0);
6003 if (next_overlay
< endpos
)
6004 endpos
= next_overlay
;
6012 if (base_face_id
>= 0)
6013 face_id
= base_face_id
;
6014 else if (NILP (Vface_remapping_alist
))
6015 face_id
= DEFAULT_FACE_ID
;
6017 face_id
= lookup_basic_face (f
, DEFAULT_FACE_ID
);
6019 default_face
= FACE_FROM_ID (f
, face_id
);
6022 /* Optimize common cases where we can use the default face. */
6027 return default_face
->id
;
6030 /* Begin with attributes from the default face. */
6031 memcpy (attrs
, default_face
->lface
, sizeof attrs
);
6033 /* Merge in attributes specified via text properties. */
6035 merge_face_ref (f
, prop
, attrs
, 1, 0);
6037 /* Now merge the overlay data. */
6038 noverlays
= sort_overlays (overlay_vec
, noverlays
, w
);
6039 for (i
= 0; i
< noverlays
; i
++)
6044 prop
= Foverlay_get (overlay_vec
[i
], propname
);
6046 merge_face_ref (f
, prop
, attrs
, 1, 0);
6048 oend
= OVERLAY_END (overlay_vec
[i
]);
6049 oendpos
= OVERLAY_POSITION (oend
);
6050 if (oendpos
< endpos
)
6058 /* Look up a realized face with the given face attributes,
6059 or realize a new one for ASCII characters. */
6060 return lookup_face (f
, attrs
);
6063 /* Return the face ID at buffer position POS for displaying ASCII
6064 characters associated with overlay strings for overlay OVERLAY.
6066 Like face_at_buffer_position except for OVERLAY. Currently it
6067 simply disregards the `face' properties of all overlays. */
6070 face_for_overlay_string (struct window
*w
, ptrdiff_t pos
,
6071 ptrdiff_t *endptr
, ptrdiff_t limit
,
6072 int mouse
, Lisp_Object overlay
)
6074 struct frame
*f
= XFRAME (w
->frame
);
6075 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
6076 Lisp_Object prop
, position
;
6078 Lisp_Object propname
= mouse
? Qmouse_face
: Qface
;
6079 Lisp_Object limit1
, end
;
6080 struct face
*default_face
;
6082 /* W must display the current buffer. We could write this function
6083 to use the frame and buffer of W, but right now it doesn't. */
6084 /* eassert (XBUFFER (w->contents) == current_buffer); */
6086 XSETFASTINT (position
, pos
);
6090 /* Get the `face' or `mouse_face' text property at POS, and
6091 determine the next position at which the property changes. */
6092 prop
= Fget_text_property (position
, propname
, w
->contents
);
6093 XSETFASTINT (limit1
, (limit
< endpos
? limit
: endpos
));
6094 end
= Fnext_single_property_change (position
, propname
, w
->contents
, limit1
);
6096 endpos
= XINT (end
);
6100 /* Optimize common case where we can use the default face. */
6102 && NILP (Vface_remapping_alist
))
6103 return DEFAULT_FACE_ID
;
6105 /* Begin with attributes from the default face. */
6106 default_face
= FACE_FROM_ID (f
, lookup_basic_face (f
, DEFAULT_FACE_ID
));
6107 memcpy (attrs
, default_face
->lface
, sizeof attrs
);
6109 /* Merge in attributes specified via text properties. */
6111 merge_face_ref (f
, prop
, attrs
, 1, 0);
6115 /* Look up a realized face with the given face attributes,
6116 or realize a new one for ASCII characters. */
6117 return lookup_face (f
, attrs
);
6121 /* Compute the face at character position POS in Lisp string STRING on
6122 window W, for ASCII characters.
6124 If STRING is an overlay string, it comes from position BUFPOS in
6125 current_buffer, otherwise BUFPOS is zero to indicate that STRING is
6126 not an overlay string. W must display the current buffer.
6127 REGION_BEG and REGION_END give the start and end positions of the
6128 region; both are -1 if no region is visible.
6130 BASE_FACE_ID is the id of a face to merge with. For strings coming
6131 from overlays or the `display' property it is the face at BUFPOS.
6133 If MOUSE_P is non-zero, use the character's mouse-face, not its face.
6135 Set *ENDPTR to the next position where to check for faces in
6136 STRING; -1 if the face is constant from POS to the end of the
6139 Value is the id of the face to use. The face returned is suitable
6140 for displaying ASCII characters. */
6143 face_at_string_position (struct window
*w
, Lisp_Object string
,
6144 ptrdiff_t pos
, ptrdiff_t bufpos
,
6145 ptrdiff_t *endptr
, enum face_id base_face_id
,
6148 Lisp_Object prop
, position
, end
, limit
;
6149 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
6150 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
6151 struct face
*base_face
;
6152 bool multibyte_p
= STRING_MULTIBYTE (string
);
6153 Lisp_Object prop_name
= mouse_p
? Qmouse_face
: Qface
;
6155 /* Get the value of the face property at the current position within
6156 STRING. Value is nil if there is no face property. */
6157 XSETFASTINT (position
, pos
);
6158 prop
= Fget_text_property (position
, prop_name
, string
);
6160 /* Get the next position at which to check for faces. Value of end
6161 is nil if face is constant all the way to the end of the string.
6162 Otherwise it is a string position where to check faces next.
6163 Limit is the maximum position up to which to check for property
6164 changes in Fnext_single_property_change. Strings are usually
6165 short, so set the limit to the end of the string. */
6166 XSETFASTINT (limit
, SCHARS (string
));
6167 end
= Fnext_single_property_change (position
, prop_name
, string
, limit
);
6169 *endptr
= XFASTINT (end
);
6173 base_face
= FACE_FROM_ID (f
, base_face_id
);
6174 eassert (base_face
);
6176 /* Optimize the default case that there is no face property. */
6179 /* We can't realize faces for different charsets differently
6180 if we don't have fonts, so we can stop here if not working
6181 on a window-system frame. */
6182 || !FRAME_WINDOW_P (f
)
6183 || FACE_SUITABLE_FOR_ASCII_CHAR_P (base_face
, 0)))
6184 return base_face
->id
;
6186 /* Begin with attributes from the base face. */
6187 memcpy (attrs
, base_face
->lface
, sizeof attrs
);
6189 /* Merge in attributes specified via text properties. */
6191 merge_face_ref (f
, prop
, attrs
, 1, 0);
6193 /* Look up a realized face with the given face attributes,
6194 or realize a new one for ASCII characters. */
6195 return lookup_face (f
, attrs
);
6199 /* Merge a face into a realized face.
6201 F is frame where faces are (to be) realized.
6203 FACE_NAME is named face to merge.
6205 If FACE_NAME is nil, FACE_ID is face_id of realized face to merge.
6207 If FACE_NAME is t, FACE_ID is lface_id of face to merge.
6209 BASE_FACE_ID is realized face to merge into.
6215 merge_faces (struct frame
*f
, Lisp_Object face_name
, int face_id
,
6218 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
6219 struct face
*base_face
;
6221 base_face
= FACE_FROM_ID (f
, base_face_id
);
6223 return base_face_id
;
6225 if (EQ (face_name
, Qt
))
6227 if (face_id
< 0 || face_id
>= lface_id_to_name_size
)
6228 return base_face_id
;
6229 face_name
= lface_id_to_name
[face_id
];
6230 /* When called during make-frame, lookup_derived_face may fail
6231 if the faces are uninitialized. Don't signal an error. */
6232 face_id
= lookup_derived_face (f
, face_name
, base_face_id
, 0);
6233 return (face_id
>= 0 ? face_id
: base_face_id
);
6236 /* Begin with attributes from the base face. */
6237 memcpy (attrs
, base_face
->lface
, sizeof attrs
);
6239 if (!NILP (face_name
))
6241 if (!merge_named_face (f
, face_name
, attrs
, 0))
6242 return base_face_id
;
6248 return base_face_id
;
6249 face
= FACE_FROM_ID (f
, face_id
);
6251 return base_face_id
;
6252 merge_face_vectors (f
, face
->lface
, attrs
, 0);
6255 /* Look up a realized face with the given face attributes,
6256 or realize a new one for ASCII characters. */
6257 return lookup_face (f
, attrs
);
6262 #ifndef HAVE_X_WINDOWS
6263 DEFUN ("x-load-color-file", Fx_load_color_file
,
6264 Sx_load_color_file
, 1, 1, 0,
6265 doc
: /* Create an alist of color entries from an external file.
6267 The file should define one named RGB color per line like so:
6269 where R,G,B are numbers between 0 and 255 and name is an arbitrary string. */)
6270 (Lisp_Object filename
)
6273 Lisp_Object cmap
= Qnil
;
6274 Lisp_Object abspath
;
6276 CHECK_STRING (filename
);
6277 abspath
= Fexpand_file_name (filename
, Qnil
);
6280 fp
= emacs_fopen (SSDATA (abspath
), "rt");
6284 int red
, green
, blue
;
6287 while (fgets (buf
, sizeof (buf
), fp
) != NULL
) {
6288 if (sscanf (buf
, "%u %u %u %n", &red
, &green
, &blue
, &num
) == 3)
6291 int color
= RGB (red
, green
, blue
);
6293 int color
= (red
<< 16) | (green
<< 8) | blue
;
6295 char *name
= buf
+ num
;
6296 ptrdiff_t len
= strlen (name
);
6297 len
-= 0 < len
&& name
[len
- 1] == '\n';
6298 cmap
= Fcons (Fcons (make_string (name
, len
), make_number (color
)),
6310 /***********************************************************************
6312 ***********************************************************************/
6316 /* Print the contents of the realized face FACE to stderr. */
6319 dump_realized_face (struct face
*face
)
6321 fprintf (stderr
, "ID: %d\n", face
->id
);
6322 #ifdef HAVE_X_WINDOWS
6323 fprintf (stderr
, "gc: %p\n", face
->gc
);
6325 fprintf (stderr
, "foreground: 0x%lx (%s)\n",
6327 SDATA (face
->lface
[LFACE_FOREGROUND_INDEX
]));
6328 fprintf (stderr
, "background: 0x%lx (%s)\n",
6330 SDATA (face
->lface
[LFACE_BACKGROUND_INDEX
]));
6332 fprintf (stderr
, "font_name: %s (%s)\n",
6333 SDATA (face
->font
->props
[FONT_NAME_INDEX
]),
6334 SDATA (face
->lface
[LFACE_FAMILY_INDEX
]));
6335 #ifdef HAVE_X_WINDOWS
6336 fprintf (stderr
, "font = %p\n", face
->font
);
6338 fprintf (stderr
, "fontset: %d\n", face
->fontset
);
6339 fprintf (stderr
, "underline: %d (%s)\n",
6341 SDATA (Fsymbol_name (face
->lface
[LFACE_UNDERLINE_INDEX
])));
6342 fprintf (stderr
, "hash: %d\n", face
->hash
);
6346 DEFUN ("dump-face", Fdump_face
, Sdump_face
, 0, 1, 0, doc
: /* */)
6353 fprintf (stderr
, "font selection order: ");
6354 for (i
= 0; i
< ARRAYELTS (font_sort_order
); ++i
)
6355 fprintf (stderr
, "%d ", font_sort_order
[i
]);
6356 fprintf (stderr
, "\n");
6358 fprintf (stderr
, "alternative fonts: ");
6359 debug_print (Vface_alternative_font_family_alist
);
6360 fprintf (stderr
, "\n");
6362 for (i
= 0; i
< FRAME_FACE_CACHE (SELECTED_FRAME ())->used
; ++i
)
6363 Fdump_face (make_number (i
));
6369 face
= FACE_FROM_ID (SELECTED_FRAME (), XINT (n
));
6371 error ("Not a valid face");
6372 dump_realized_face (face
);
6379 DEFUN ("show-face-resources", Fshow_face_resources
, Sshow_face_resources
,
6380 0, 0, 0, doc
: /* */)
6383 fprintf (stderr
, "number of colors = %d\n", ncolors_allocated
);
6384 fprintf (stderr
, "number of pixmaps = %d\n", npixmaps_allocated
);
6385 fprintf (stderr
, "number of GCs = %d\n", ngcs
);
6389 #endif /* GLYPH_DEBUG */
6393 /***********************************************************************
6395 ***********************************************************************/
6398 syms_of_xfaces (void)
6400 DEFSYM (Qface
, "face");
6401 DEFSYM (Qface_no_inherit
, "face-no-inherit");
6402 DEFSYM (Qbitmap_spec_p
, "bitmap-spec-p");
6403 DEFSYM (Qframe_set_background_mode
, "frame-set-background-mode");
6405 /* Lisp face attribute keywords. */
6406 DEFSYM (QCfamily
, ":family");
6407 DEFSYM (QCheight
, ":height");
6408 DEFSYM (QCweight
, ":weight");
6409 DEFSYM (QCslant
, ":slant");
6410 DEFSYM (QCunderline
, ":underline");
6411 DEFSYM (QCinverse_video
, ":inverse-video");
6412 DEFSYM (QCreverse_video
, ":reverse-video");
6413 DEFSYM (QCforeground
, ":foreground");
6414 DEFSYM (QCbackground
, ":background");
6415 DEFSYM (QCstipple
, ":stipple");
6416 DEFSYM (QCwidth
, ":width");
6417 DEFSYM (QCfont
, ":font");
6418 DEFSYM (QCfontset
, ":fontset");
6419 DEFSYM (QCdistant_foreground
, ":distant-foreground");
6420 DEFSYM (QCbold
, ":bold");
6421 DEFSYM (QCitalic
, ":italic");
6422 DEFSYM (QCoverline
, ":overline");
6423 DEFSYM (QCstrike_through
, ":strike-through");
6424 DEFSYM (QCbox
, ":box");
6425 DEFSYM (QCinherit
, ":inherit");
6427 /* Symbols used for Lisp face attribute values. */
6428 DEFSYM (QCcolor
, ":color");
6429 DEFSYM (QCline_width
, ":line-width");
6430 DEFSYM (QCstyle
, ":style");
6431 DEFSYM (Qline
, "line");
6432 DEFSYM (Qwave
, "wave");
6433 DEFSYM (Qreleased_button
, "released-button");
6434 DEFSYM (Qpressed_button
, "pressed-button");
6435 DEFSYM (Qnormal
, "normal");
6436 DEFSYM (Qextra_light
, "extra-light");
6437 DEFSYM (Qlight
, "light");
6438 DEFSYM (Qsemi_light
, "semi-light");
6439 DEFSYM (Qsemi_bold
, "semi-bold");
6440 DEFSYM (Qbold
, "bold");
6441 DEFSYM (Qextra_bold
, "extra-bold");
6442 DEFSYM (Qultra_bold
, "ultra-bold");
6443 DEFSYM (Qoblique
, "oblique");
6444 DEFSYM (Qitalic
, "italic");
6445 DEFSYM (Qbackground_color
, "background-color");
6446 DEFSYM (Qforeground_color
, "foreground-color");
6447 DEFSYM (Qunspecified
, "unspecified");
6448 DEFSYM (QCignore_defface
, ":ignore-defface");
6450 DEFSYM (Qface_alias
, "face-alias");
6451 DEFSYM (Qdefault
, "default");
6452 DEFSYM (Qtool_bar
, "tool-bar");
6453 DEFSYM (Qregion
, "region");
6454 DEFSYM (Qfringe
, "fringe");
6455 DEFSYM (Qheader_line
, "header-line");
6456 DEFSYM (Qscroll_bar
, "scroll-bar");
6457 DEFSYM (Qmenu
, "menu");
6458 DEFSYM (Qcursor
, "cursor");
6459 DEFSYM (Qborder
, "border");
6460 DEFSYM (Qmouse
, "mouse");
6461 DEFSYM (Qmode_line_inactive
, "mode-line-inactive");
6462 DEFSYM (Qvertical_border
, "vertical-border");
6463 DEFSYM (Qwindow_divider
, "window-divider");
6464 DEFSYM (Qwindow_divider_first_pixel
, "window-divider-first-pixel");
6465 DEFSYM (Qwindow_divider_last_pixel
, "window-divider-last-pixel");
6466 DEFSYM (Qtty_color_desc
, "tty-color-desc");
6467 DEFSYM (Qtty_color_standard_values
, "tty-color-standard-values");
6468 DEFSYM (Qtty_color_by_index
, "tty-color-by-index");
6469 DEFSYM (Qtty_color_alist
, "tty-color-alist");
6470 DEFSYM (Qscalable_fonts_allowed
, "scalable-fonts-allowed");
6472 Vparam_value_alist
= list1 (Fcons (Qnil
, Qnil
));
6473 staticpro (&Vparam_value_alist
);
6474 Vface_alternative_font_family_alist
= Qnil
;
6475 staticpro (&Vface_alternative_font_family_alist
);
6476 Vface_alternative_font_registry_alist
= Qnil
;
6477 staticpro (&Vface_alternative_font_registry_alist
);
6479 defsubr (&Sinternal_make_lisp_face
);
6480 defsubr (&Sinternal_lisp_face_p
);
6481 defsubr (&Sinternal_set_lisp_face_attribute
);
6482 #ifdef HAVE_WINDOW_SYSTEM
6483 defsubr (&Sinternal_set_lisp_face_attribute_from_resource
);
6485 defsubr (&Scolor_gray_p
);
6486 defsubr (&Scolor_supported_p
);
6487 #ifndef HAVE_X_WINDOWS
6488 defsubr (&Sx_load_color_file
);
6490 defsubr (&Sface_attribute_relative_p
);
6491 defsubr (&Smerge_face_attribute
);
6492 defsubr (&Sinternal_get_lisp_face_attribute
);
6493 defsubr (&Sinternal_lisp_face_attribute_values
);
6494 defsubr (&Sinternal_lisp_face_equal_p
);
6495 defsubr (&Sinternal_lisp_face_empty_p
);
6496 defsubr (&Sinternal_copy_lisp_face
);
6497 defsubr (&Sinternal_merge_in_global_face
);
6498 defsubr (&Sface_font
);
6499 defsubr (&Sframe_face_alist
);
6500 defsubr (&Sdisplay_supports_face_attributes_p
);
6501 defsubr (&Scolor_distance
);
6502 defsubr (&Sinternal_set_font_selection_order
);
6503 defsubr (&Sinternal_set_alternative_font_family_alist
);
6504 defsubr (&Sinternal_set_alternative_font_registry_alist
);
6505 defsubr (&Sface_attributes_as_vector
);
6507 defsubr (&Sdump_face
);
6508 defsubr (&Sshow_face_resources
);
6509 #endif /* GLYPH_DEBUG */
6510 defsubr (&Sclear_face_cache
);
6511 defsubr (&Stty_suppress_bold_inverse_default_colors
);
6513 #if defined DEBUG_X_COLORS && defined HAVE_X_WINDOWS
6514 defsubr (&Sdump_colors
);
6517 DEFVAR_LISP ("face-new-frame-defaults", Vface_new_frame_defaults
,
6518 doc
: /* List of global face definitions (for internal use only.) */);
6519 Vface_new_frame_defaults
= Qnil
;
6521 DEFVAR_LISP ("face-default-stipple", Vface_default_stipple
,
6522 doc
: /* Default stipple pattern used on monochrome displays.
6523 This stipple pattern is used on monochrome displays
6524 instead of shades of gray for a face background color.
6525 See `set-face-stipple' for possible values for this variable. */);
6526 Vface_default_stipple
= build_pure_c_string ("gray3");
6528 DEFVAR_LISP ("tty-defined-color-alist", Vtty_defined_color_alist
,
6529 doc
: /* An alist of defined terminal colors and their RGB values.
6530 See the docstring of `tty-color-alist' for the details. */);
6531 Vtty_defined_color_alist
= Qnil
;
6533 DEFVAR_LISP ("scalable-fonts-allowed", Vscalable_fonts_allowed
,
6534 doc
: /* Allowed scalable fonts.
6535 A value of nil means don't allow any scalable fonts.
6536 A value of t means allow any scalable font.
6537 Otherwise, value must be a list of regular expressions. A font may be
6538 scaled if its name matches a regular expression in the list.
6539 Note that if value is nil, a scalable font might still be used, if no
6540 other font of the appropriate family and registry is available. */);
6541 Vscalable_fonts_allowed
= Qnil
;
6543 DEFVAR_LISP ("face-ignored-fonts", Vface_ignored_fonts
,
6544 doc
: /* List of ignored fonts.
6545 Each element is a regular expression that matches names of fonts to
6547 Vface_ignored_fonts
= Qnil
;
6549 DEFVAR_LISP ("face-remapping-alist", Vface_remapping_alist
,
6550 doc
: /* Alist of face remappings.
6551 Each element is of the form:
6553 (FACE . REPLACEMENT),
6555 which causes display of the face FACE to use REPLACEMENT instead.
6556 REPLACEMENT is a face specification, i.e. one of the following:
6559 (2) a property list of attribute/value pairs, or
6560 (3) a list in which each element has the form of (1) or (2).
6562 List values for REPLACEMENT are merged to form the final face
6563 specification, with earlier entries taking precedence, in the same as
6564 as in the `face' text property.
6566 Face-name remapping cycles are suppressed; recursive references use
6567 the underlying face instead of the remapped face. So a remapping of
6570 (FACE EXTRA-FACE... FACE)
6574 (FACE (FACE-ATTR VAL ...) FACE)
6576 causes EXTRA-FACE... or (FACE-ATTR VAL ...) to be _merged_ with the
6577 existing definition of FACE. Note that this isn't necessary for the
6578 default face, since every face inherits from the default face.
6580 If this variable is made buffer-local, the face remapping takes effect
6581 only in that buffer. For instance, the mode my-mode could define a
6582 face `my-mode-default', and then in the mode setup function, do:
6584 (set (make-local-variable 'face-remapping-alist)
6585 '((default my-mode-default)))).
6587 Because Emacs normally only redraws screen areas when the underlying
6588 buffer contents change, you may need to call `redraw-display' after
6589 changing this variable for it to take effect. */);
6590 Vface_remapping_alist
= Qnil
;
6592 DEFVAR_LISP ("face-font-rescale-alist", Vface_font_rescale_alist
,
6593 doc
: /* Alist of fonts vs the rescaling factors.
6594 Each element is a cons (FONT-PATTERN . RESCALE-RATIO), where
6595 FONT-PATTERN is a font-spec or a regular expression matching a font name, and
6596 RESCALE-RATIO is a floating point number to specify how much larger
6597 \(or smaller) font we should use. For instance, if a face requests
6598 a font of 10 point, we actually use a font of 10 * RESCALE-RATIO point. */);
6599 Vface_font_rescale_alist
= Qnil
;
6601 #ifdef HAVE_WINDOW_SYSTEM
6602 defsubr (&Sbitmap_spec_p
);
6603 defsubr (&Sx_list_fonts
);
6604 defsubr (&Sinternal_face_x_get_resource
);
6605 defsubr (&Sx_family_fonts
);