(enum event_kind): New event type `SELECT_WINDOW_EVENT'.
[emacs.git] / src / xfaces.c
blobc1d736eeb2ee3f6b7b64009a1f2fd631dae89f12
1 /* xfaces.c -- "Face" primitives.
2 Copyright (C) 1993, 1994, 1998, 1999, 2000, 2001
3 Free Software Foundation.
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 2, or (at your option)
10 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; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 /* New face implementation by Gerd Moellmann <gerd@gnu.org>. */
24 /* Faces.
26 When using Emacs with X, the display style of characters can be
27 changed by defining `faces'. Each face can specify the following
28 display attributes:
30 1. Font family name.
32 2. Relative proportionate width, aka character set width or set
33 width (swidth), e.g. `semi-compressed'.
35 3. Font height in 1/10pt.
37 4. Font weight, e.g. `bold'.
39 5. Font slant, e.g. `italic'.
41 6. Foreground color.
43 7. Background color.
45 8. Whether or not characters should be underlined, and in what color.
47 9. Whether or not characters should be displayed in inverse video.
49 10. A background stipple, a bitmap.
51 11. Whether or not characters should be overlined, and in what color.
53 12. Whether or not characters should be strike-through, and in what
54 color.
56 13. Whether or not a box should be drawn around characters, the box
57 type, and, for simple boxes, in what color.
59 14. Font or fontset pattern, or nil. This is a special attribute.
60 When this attribute is specified, the face uses a font opened by
61 that pattern as is. In addition, all the other font-related
62 attributes (1st thru 5th) are generated from the opened font name.
63 On the other hand, if one of the other font-related attributes are
64 specified, this attribute is set to nil. In that case, the face
65 doesn't inherit this attribute from the `default' face, and uses a
66 font determined by the other attributes (those may be inherited
67 from the `default' face).
69 15. A face name or list of face names from which to inherit attributes.
71 16. A specified average font width, which is invisible from Lisp,
72 and is used to ensure that a font specified on the command line,
73 for example, can be matched exactly.
75 Faces are frame-local by nature because Emacs allows to define the
76 same named face (face names are symbols) differently for different
77 frames. Each frame has an alist of face definitions for all named
78 faces. The value of a named face in such an alist is a Lisp vector
79 with the symbol `face' in slot 0, and a slot for each of the face
80 attributes mentioned above.
82 There is also a global face alist `Vface_new_frame_defaults'. Face
83 definitions from this list are used to initialize faces of newly
84 created frames.
86 A face doesn't have to specify all attributes. Those not specified
87 have a value of `unspecified'. Faces specifying all attributes but
88 the 14th are called `fully-specified'.
91 Face merging.
93 The display style of a given character in the text is determined by
94 combining several faces. This process is called `face merging'.
95 Any aspect of the display style that isn't specified by overlays or
96 text properties is taken from the `default' face. Since it is made
97 sure that the default face is always fully-specified, face merging
98 always results in a fully-specified face.
101 Face realization.
103 After all face attributes for a character have been determined by
104 merging faces of that character, that face is `realized'. The
105 realization process maps face attributes to what is physically
106 available on the system where Emacs runs. The result is a
107 `realized face' in form of a struct face which is stored in the
108 face cache of the frame on which it was realized.
110 Face realization is done in the context of the character to display
111 because different fonts may be used for different characters. In
112 other words, for characters that have different font
113 specifications, different realized faces are needed to display
114 them.
116 Font specification is done by fontsets. See the comment in
117 fontset.c for the details. In the current implementation, all ASCII
118 characters share the same font in a fontset.
120 Faces are at first realized for ASCII characters, and, at that
121 time, assigned a specific realized fontset. Hereafter, we call
122 such a face as `ASCII face'. When a face for a multibyte character
123 is realized, it inherits (thus shares) a fontset of an ASCII face
124 that has the same attributes other than font-related ones.
126 Thus, all realized face have a realized fontset.
129 Unibyte text.
131 Unibyte text (i.e. raw 8-bit characters) is displayed with the same
132 font as ASCII characters. That is because it is expected that
133 unibyte text users specify a font that is suitable both for ASCII
134 and raw 8-bit characters.
137 Font selection.
139 Font selection tries to find the best available matching font for a
140 given (character, face) combination.
142 If the face specifies a fontset name, that fontset determines a
143 pattern for fonts of the given character. If the face specifies a
144 font name or the other font-related attributes, a fontset is
145 realized from the default fontset. In that case, that
146 specification determines a pattern for ASCII characters and the
147 default fontset determines a pattern for multibyte characters.
149 Available fonts on the system on which Emacs runs are then matched
150 against the font pattern. The result of font selection is the best
151 match for the given face attributes in this font list.
153 Font selection can be influenced by the user.
155 1. The user can specify the relative importance he gives the face
156 attributes width, height, weight, and slant by setting
157 face-font-selection-order (faces.el) to a list of face attribute
158 names. The default is '(:width :height :weight :slant), and means
159 that font selection first tries to find a good match for the font
160 width specified by a face, then---within fonts with that
161 width---tries to find a best match for the specified font height,
162 etc.
164 2. Setting face-font-family-alternatives allows the user to
165 specify alternative font families to try if a family specified by a
166 face doesn't exist.
168 3. Setting face-font-registry-alternatives allows the user to
169 specify all alternative font registries to try for a face
170 specifying a registry.
172 4. Setting face-ignored-fonts allows the user to ignore specific
173 fonts.
176 Character composition.
178 Usually, the realization process is already finished when Emacs
179 actually reflects the desired glyph matrix on the screen. However,
180 on displaying a composition (sequence of characters to be composed
181 on the screen), a suitable font for the components of the
182 composition is selected and realized while drawing them on the
183 screen, i.e. the realization process is delayed but in principle
184 the same.
187 Initialization of basic faces.
189 The faces `default', `modeline' are considered `basic faces'.
190 When redisplay happens the first time for a newly created frame,
191 basic faces are realized for CHARSET_ASCII. Frame parameters are
192 used to fill in unspecified attributes of the default face. */
194 #include <config.h>
195 #include <sys/types.h>
196 #include <sys/stat.h>
198 #include "lisp.h"
199 #include "charset.h"
200 #include "keyboard.h"
201 #include "frame.h"
203 #ifdef HAVE_WINDOW_SYSTEM
204 #include "fontset.h"
205 #endif /* HAVE_WINDOW_SYSTEM */
207 #ifdef HAVE_X_WINDOWS
208 #include "xterm.h"
209 #ifdef USE_MOTIF
210 #include <Xm/Xm.h>
211 #include <Xm/XmStrDefs.h>
212 #endif /* USE_MOTIF */
213 #endif /* HAVE_X_WINDOWS */
215 #ifdef MSDOS
216 #include "dosfns.h"
217 #endif
219 #ifdef WINDOWSNT
220 #include "w32term.h"
221 #include "fontset.h"
222 /* Redefine X specifics to W32 equivalents to avoid cluttering the
223 code with #ifdef blocks. */
224 #undef FRAME_X_DISPLAY_INFO
225 #define FRAME_X_DISPLAY_INFO FRAME_W32_DISPLAY_INFO
226 #define x_display_info w32_display_info
227 #define FRAME_X_FONT_TABLE FRAME_W32_FONT_TABLE
228 #define check_x check_w32
229 #define x_list_fonts w32_list_fonts
230 #define GCGraphicsExposures 0
231 /* For historic reasons, FONT_WIDTH refers to average width on W32,
232 not maximum as on X. Redefine here. */
233 #undef FONT_WIDTH
234 #define FONT_WIDTH FONT_MAX_WIDTH
235 #endif /* WINDOWSNT */
237 #ifdef macintosh
238 #include "macterm.h"
239 #define x_display_info mac_display_info
240 #define check_x check_mac
242 extern XGCValues *XCreateGC (void *, WindowPtr, unsigned long, XGCValues *);
244 static INLINE GC
245 x_create_gc (f, mask, xgcv)
246 struct frame *f;
247 unsigned long mask;
248 XGCValues *xgcv;
250 GC gc;
251 gc = XCreateGC (FRAME_MAC_DISPLAY (f), FRAME_MAC_WINDOW (f), mask, xgcv);
252 return gc;
255 static INLINE void
256 x_free_gc (f, gc)
257 struct frame *f;
258 GC gc;
260 XFreeGC (FRAME_MAC_DISPLAY (f), gc);
262 #endif
264 #include "buffer.h"
265 #include "dispextern.h"
266 #include "blockinput.h"
267 #include "window.h"
268 #include "intervals.h"
270 #ifdef HAVE_X_WINDOWS
272 /* Compensate for a bug in Xos.h on some systems, on which it requires
273 time.h. On some such systems, Xos.h tries to redefine struct
274 timeval and struct timezone if USG is #defined while it is
275 #included. */
277 #ifdef XOS_NEEDS_TIME_H
278 #include <time.h>
279 #undef USG
280 #include <X11/Xos.h>
281 #define USG
282 #define __TIMEVAL__
283 #else /* not XOS_NEEDS_TIME_H */
284 #include <X11/Xos.h>
285 #endif /* not XOS_NEEDS_TIME_H */
287 #endif /* HAVE_X_WINDOWS */
289 #include <stdio.h>
290 #include <ctype.h>
292 #define abs(X) ((X) < 0 ? -(X) : (X))
294 /* Number of pt per inch (from the TeXbook). */
296 #define PT_PER_INCH 72.27
298 /* Non-zero if face attribute ATTR is unspecified. */
300 #define UNSPECIFIEDP(ATTR) EQ ((ATTR), Qunspecified)
302 /* Value is the number of elements of VECTOR. */
304 #define DIM(VECTOR) (sizeof (VECTOR) / sizeof *(VECTOR))
306 /* Make a copy of string S on the stack using alloca. Value is a pointer
307 to the copy. */
309 #define STRDUPA(S) strcpy ((char *) alloca (strlen ((S)) + 1), (S))
311 /* Make a copy of the contents of Lisp string S on the stack using
312 alloca. Value is a pointer to the copy. */
314 #define LSTRDUPA(S) STRDUPA (XSTRING ((S))->data)
316 /* Size of hash table of realized faces in face caches (should be a
317 prime number). */
319 #define FACE_CACHE_BUCKETS_SIZE 1001
321 /* A definition of XColor for non-X frames. */
323 #ifndef HAVE_X_WINDOWS
325 typedef struct
327 unsigned long pixel;
328 unsigned short red, green, blue;
329 char flags;
330 char pad;
332 XColor;
334 #endif /* not HAVE_X_WINDOWS */
336 /* Keyword symbols used for face attribute names. */
338 Lisp_Object QCfamily, QCheight, QCweight, QCslant, QCunderline;
339 Lisp_Object QCinverse_video, QCforeground, QCbackground, QCstipple;
340 Lisp_Object QCwidth, QCfont, QCbold, QCitalic;
341 Lisp_Object QCreverse_video;
342 Lisp_Object QCoverline, QCstrike_through, QCbox, QCinherit;
344 /* Symbols used for attribute values. */
346 Lisp_Object Qnormal, Qbold, Qultra_light, Qextra_light, Qlight;
347 Lisp_Object Qsemi_light, Qsemi_bold, Qextra_bold, Qultra_bold;
348 Lisp_Object Qoblique, Qitalic, Qreverse_oblique, Qreverse_italic;
349 Lisp_Object Qultra_condensed, Qextra_condensed, Qcondensed;
350 Lisp_Object Qsemi_condensed, Qsemi_expanded, Qexpanded, Qextra_expanded;
351 Lisp_Object Qultra_expanded;
352 Lisp_Object Qreleased_button, Qpressed_button;
353 Lisp_Object QCstyle, QCcolor, QCline_width;
354 Lisp_Object Qunspecified;
356 char unspecified_fg[] = "unspecified-fg", unspecified_bg[] = "unspecified-bg";
358 /* The name of the function to call when the background of the frame
359 has changed, frame_update_face_colors. */
361 Lisp_Object Qframe_update_face_colors;
363 /* Names of basic faces. */
365 Lisp_Object Qdefault, Qtool_bar, Qregion, Qfringe;
366 Lisp_Object Qheader_line, Qscroll_bar, Qcursor, Qborder, Qmouse, Qmenu;
367 Lisp_Object Qmode_line_inactive;
368 extern Lisp_Object Qmode_line;
370 /* The symbol `face-alias'. A symbols having that property is an
371 alias for another face. Value of the property is the name of
372 the aliased face. */
374 Lisp_Object Qface_alias;
376 /* Names of frame parameters related to faces. */
378 extern Lisp_Object Qscroll_bar_foreground, Qscroll_bar_background;
379 extern Lisp_Object Qborder_color, Qcursor_color, Qmouse_color;
381 /* Default stipple pattern used on monochrome displays. This stipple
382 pattern is used on monochrome displays instead of shades of gray
383 for a face background color. See `set-face-stipple' for possible
384 values for this variable. */
386 Lisp_Object Vface_default_stipple;
388 /* Alist of alternative font families. Each element is of the form
389 (FAMILY FAMILY1 FAMILY2 ...). If fonts of FAMILY can't be loaded,
390 try FAMILY1, then FAMILY2, ... */
392 Lisp_Object Vface_alternative_font_family_alist;
394 /* Alist of alternative font registries. Each element is of the form
395 (REGISTRY REGISTRY1 REGISTRY2...). If fonts of REGISTRY can't be
396 loaded, try REGISTRY1, then REGISTRY2, ... */
398 Lisp_Object Vface_alternative_font_registry_alist;
400 /* Allowed scalable fonts. A value of nil means don't allow any
401 scalable fonts. A value of t means allow the use of any scalable
402 font. Otherwise, value must be a list of regular expressions. A
403 font may be scaled if its name matches a regular expression in the
404 list. */
406 Lisp_Object Vscalable_fonts_allowed, Qscalable_fonts_allowed;
408 /* List of regular expressions that matches names of fonts to ignore. */
410 Lisp_Object Vface_ignored_fonts;
412 /* Maximum number of fonts to consider in font_list. If not an
413 integer > 0, DEFAULT_FONT_LIST_LIMIT is used instead. */
415 Lisp_Object Vfont_list_limit;
416 #define DEFAULT_FONT_LIST_LIMIT 100
418 /* The symbols `foreground-color' and `background-color' which can be
419 used as part of a `face' property. This is for compatibility with
420 Emacs 20.2. */
422 Lisp_Object Qforeground_color, Qbackground_color;
424 /* The symbols `face' and `mouse-face' used as text properties. */
426 Lisp_Object Qface;
427 extern Lisp_Object Qmouse_face;
429 /* Error symbol for wrong_type_argument in load_pixmap. */
431 Lisp_Object Qbitmap_spec_p;
433 /* Alist of global face definitions. Each element is of the form
434 (FACE . LFACE) where FACE is a symbol naming a face and LFACE
435 is a Lisp vector of face attributes. These faces are used
436 to initialize faces for new frames. */
438 Lisp_Object Vface_new_frame_defaults;
440 /* The next ID to assign to Lisp faces. */
442 static int next_lface_id;
444 /* A vector mapping Lisp face Id's to face names. */
446 static Lisp_Object *lface_id_to_name;
447 static int lface_id_to_name_size;
449 /* TTY color-related functions (defined in tty-colors.el). */
451 Lisp_Object Qtty_color_desc, Qtty_color_by_index;
453 /* The name of the function used to compute colors on TTYs. */
455 Lisp_Object Qtty_color_alist;
457 /* An alist of defined terminal colors and their RGB values. */
459 Lisp_Object Vtty_defined_color_alist;
461 /* Counter for calls to clear_face_cache. If this counter reaches
462 CLEAR_FONT_TABLE_COUNT, and a frame has more than
463 CLEAR_FONT_TABLE_NFONTS load, unused fonts are freed. */
465 static int clear_font_table_count;
466 #define CLEAR_FONT_TABLE_COUNT 100
467 #define CLEAR_FONT_TABLE_NFONTS 10
469 /* Non-zero means face attributes have been changed since the last
470 redisplay. Used in redisplay_internal. */
472 int face_change_count;
474 /* Non-zero means don't display bold text if a face's foreground
475 and background colors are the inverse of the default colors of the
476 display. This is a kluge to suppress `bold black' foreground text
477 which is hard to read on an LCD monitor. */
479 int tty_suppress_bold_inverse_default_colors_p;
481 /* A list of the form `((x . y))' used to avoid consing in
482 Finternal_set_lisp_face_attribute. */
484 static Lisp_Object Vparam_value_alist;
486 /* The total number of colors currently allocated. */
488 #if GLYPH_DEBUG
489 static int ncolors_allocated;
490 static int npixmaps_allocated;
491 static int ngcs;
492 #endif
494 /* Non-zero means the definition of the `menu' face for new frames has
495 been changed. */
497 int menu_face_changed_default;
500 /* Function prototypes. */
502 struct font_name;
503 struct table_entry;
505 static void map_tty_color P_ ((struct frame *, struct face *,
506 enum lface_attribute_index, int *));
507 static Lisp_Object resolve_face_name P_ ((Lisp_Object));
508 static int may_use_scalable_font_p P_ ((char *));
509 static void set_font_frame_param P_ ((Lisp_Object, Lisp_Object));
510 static int better_font_p P_ ((int *, struct font_name *, struct font_name *,
511 int, int));
512 static int x_face_list_fonts P_ ((struct frame *, char *,
513 struct font_name *, int, int));
514 static int font_scalable_p P_ ((struct font_name *));
515 static int get_lface_attributes P_ ((struct frame *, Lisp_Object, Lisp_Object *, int));
516 static int load_pixmap P_ ((struct frame *, Lisp_Object, unsigned *, unsigned *));
517 static unsigned char *xstrlwr P_ ((unsigned char *));
518 static void signal_error P_ ((char *, Lisp_Object));
519 static struct frame *frame_or_selected_frame P_ ((Lisp_Object, int));
520 static void load_face_font P_ ((struct frame *, struct face *, int));
521 static void load_face_colors P_ ((struct frame *, struct face *, Lisp_Object *));
522 static void free_face_colors P_ ((struct frame *, struct face *));
523 static int face_color_gray_p P_ ((struct frame *, char *));
524 static char *build_font_name P_ ((struct font_name *));
525 static void free_font_names P_ ((struct font_name *, int));
526 static int sorted_font_list P_ ((struct frame *, char *,
527 int (*cmpfn) P_ ((const void *, const void *)),
528 struct font_name **));
529 static int font_list_1 P_ ((struct frame *, Lisp_Object, Lisp_Object,
530 Lisp_Object, struct font_name **));
531 static int font_list P_ ((struct frame *, Lisp_Object, Lisp_Object,
532 Lisp_Object, struct font_name **));
533 static int try_font_list P_ ((struct frame *, Lisp_Object *,
534 Lisp_Object, Lisp_Object, struct font_name **));
535 static int try_alternative_families P_ ((struct frame *f, Lisp_Object,
536 Lisp_Object, struct font_name **));
537 static int cmp_font_names P_ ((const void *, const void *));
538 static struct face *realize_face P_ ((struct face_cache *, Lisp_Object *, int,
539 struct face *, int));
540 static struct face *realize_x_face P_ ((struct face_cache *,
541 Lisp_Object *, int, struct face *));
542 static struct face *realize_tty_face P_ ((struct face_cache *,
543 Lisp_Object *, int));
544 static int realize_basic_faces P_ ((struct frame *));
545 static int realize_default_face P_ ((struct frame *));
546 static void realize_named_face P_ ((struct frame *, Lisp_Object, int));
547 static int lface_fully_specified_p P_ ((Lisp_Object *));
548 static int lface_equal_p P_ ((Lisp_Object *, Lisp_Object *));
549 static unsigned hash_string_case_insensitive P_ ((Lisp_Object));
550 static unsigned lface_hash P_ ((Lisp_Object *));
551 static int lface_same_font_attributes_p P_ ((Lisp_Object *, Lisp_Object *));
552 static struct face_cache *make_face_cache P_ ((struct frame *));
553 static void free_realized_face P_ ((struct frame *, struct face *));
554 static void clear_face_gcs P_ ((struct face_cache *));
555 static void free_face_cache P_ ((struct face_cache *));
556 static int face_numeric_weight P_ ((Lisp_Object));
557 static int face_numeric_slant P_ ((Lisp_Object));
558 static int face_numeric_swidth P_ ((Lisp_Object));
559 static int face_fontset P_ ((Lisp_Object *));
560 static char *choose_face_font P_ ((struct frame *, Lisp_Object *, int, int));
561 static void merge_face_vectors P_ ((struct frame *, Lisp_Object *, Lisp_Object*, Lisp_Object));
562 static void merge_face_inheritance P_ ((struct frame *f, Lisp_Object,
563 Lisp_Object *, Lisp_Object));
564 static void merge_face_vector_with_property P_ ((struct frame *, Lisp_Object *,
565 Lisp_Object));
566 static int set_lface_from_font_name P_ ((struct frame *, Lisp_Object,
567 Lisp_Object, int, int));
568 static Lisp_Object lface_from_face_name P_ ((struct frame *, Lisp_Object, int));
569 static struct face *make_realized_face P_ ((Lisp_Object *));
570 static void free_realized_faces P_ ((struct face_cache *));
571 static char *best_matching_font P_ ((struct frame *, Lisp_Object *,
572 struct font_name *, int, int));
573 static void cache_face P_ ((struct face_cache *, struct face *, unsigned));
574 static void uncache_face P_ ((struct face_cache *, struct face *));
575 static int xlfd_numeric_slant P_ ((struct font_name *));
576 static int xlfd_numeric_weight P_ ((struct font_name *));
577 static int xlfd_numeric_swidth P_ ((struct font_name *));
578 static Lisp_Object xlfd_symbolic_slant P_ ((struct font_name *));
579 static Lisp_Object xlfd_symbolic_weight P_ ((struct font_name *));
580 static Lisp_Object xlfd_symbolic_swidth P_ ((struct font_name *));
581 static int xlfd_fixed_p P_ ((struct font_name *));
582 static int xlfd_numeric_value P_ ((struct table_entry *, int, struct font_name *,
583 int, int));
584 static Lisp_Object xlfd_symbolic_value P_ ((struct table_entry *, int,
585 struct font_name *, int,
586 Lisp_Object));
587 static struct table_entry *xlfd_lookup_field_contents P_ ((struct table_entry *, int,
588 struct font_name *, int));
590 #ifdef HAVE_WINDOW_SYSTEM
592 static int split_font_name P_ ((struct frame *, struct font_name *, int));
593 static int xlfd_point_size P_ ((struct frame *, struct font_name *));
594 static void sort_fonts P_ ((struct frame *, struct font_name *, int,
595 int (*cmpfn) P_ ((const void *, const void *))));
596 static GC x_create_gc P_ ((struct frame *, unsigned long, XGCValues *));
597 static void x_free_gc P_ ((struct frame *, GC));
598 static void clear_font_table P_ ((struct x_display_info *));
600 #ifdef WINDOWSNT
601 extern Lisp_Object w32_list_fonts P_ ((struct frame *, Lisp_Object, int, int));
602 #endif /* WINDOWSNT */
604 #ifdef USE_X_TOOLKIT
605 static void x_update_menu_appearance P_ ((struct frame *));
607 extern void free_frame_menubar P_ ((struct frame *));
608 #endif /* USE_X_TOOLKIT */
610 #endif /* HAVE_WINDOW_SYSTEM */
613 /***********************************************************************
614 Utilities
615 ***********************************************************************/
617 #ifdef HAVE_X_WINDOWS
619 #ifdef DEBUG_X_COLORS
621 /* The following is a poor mans infrastructure for debugging X color
622 allocation problems on displays with PseudoColor-8. Some X servers
623 like 3.3.5 XF86_SVGA with Matrox cards apparently don't implement
624 color reference counts completely so that they don't signal an
625 error when a color is freed whose reference count is already 0.
626 Other X servers do. To help me debug this, the following code
627 implements a simple reference counting schema of its own, for a
628 single display/screen. --gerd. */
630 /* Reference counts for pixel colors. */
632 int color_count[256];
634 /* Register color PIXEL as allocated. */
636 void
637 register_color (pixel)
638 unsigned long pixel;
640 xassert (pixel < 256);
641 ++color_count[pixel];
645 /* Register color PIXEL as deallocated. */
647 void
648 unregister_color (pixel)
649 unsigned long pixel;
651 xassert (pixel < 256);
652 if (color_count[pixel] > 0)
653 --color_count[pixel];
654 else
655 abort ();
659 /* Register N colors from PIXELS as deallocated. */
661 void
662 unregister_colors (pixels, n)
663 unsigned long *pixels;
664 int n;
666 int i;
667 for (i = 0; i < n; ++i)
668 unregister_color (pixels[i]);
672 DEFUN ("dump-colors", Fdump_colors, Sdump_colors, 0, 0, 0,
673 doc: /* Dump currently allocated colors to stderr. */)
676 int i, n;
678 fputc ('\n', stderr);
680 for (i = n = 0; i < sizeof color_count / sizeof color_count[0]; ++i)
681 if (color_count[i])
683 fprintf (stderr, "%3d: %5d", i, color_count[i]);
684 ++n;
685 if (n % 5 == 0)
686 fputc ('\n', stderr);
687 else
688 fputc ('\t', stderr);
691 if (n % 5 != 0)
692 fputc ('\n', stderr);
693 return Qnil;
696 #endif /* DEBUG_X_COLORS */
699 /* Free colors used on frame F. PIXELS is an array of NPIXELS pixel
700 color values. Interrupt input must be blocked when this function
701 is called. */
703 void
704 x_free_colors (f, pixels, npixels)
705 struct frame *f;
706 unsigned long *pixels;
707 int npixels;
709 int class = FRAME_X_DISPLAY_INFO (f)->visual->class;
711 /* If display has an immutable color map, freeing colors is not
712 necessary and some servers don't allow it. So don't do it. */
713 if (class != StaticColor && class != StaticGray && class != TrueColor)
715 #ifdef DEBUG_X_COLORS
716 unregister_colors (pixels, npixels);
717 #endif
718 XFreeColors (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f),
719 pixels, npixels, 0);
724 /* Free colors used on frame F. PIXELS is an array of NPIXELS pixel
725 color values. Interrupt input must be blocked when this function
726 is called. */
728 void
729 x_free_dpy_colors (dpy, screen, cmap, pixels, npixels)
730 Display *dpy;
731 Screen *screen;
732 Colormap cmap;
733 unsigned long *pixels;
734 int npixels;
736 struct x_display_info *dpyinfo = x_display_info_for_display (dpy);
737 int class = dpyinfo->visual->class;
739 /* If display has an immutable color map, freeing colors is not
740 necessary and some servers don't allow it. So don't do it. */
741 if (class != StaticColor && class != StaticGray && class != TrueColor)
743 #ifdef DEBUG_X_COLORS
744 unregister_colors (pixels, npixels);
745 #endif
746 XFreeColors (dpy, cmap, pixels, npixels, 0);
751 /* Create and return a GC for use on frame F. GC values and mask
752 are given by XGCV and MASK. */
754 static INLINE GC
755 x_create_gc (f, mask, xgcv)
756 struct frame *f;
757 unsigned long mask;
758 XGCValues *xgcv;
760 GC gc;
761 BLOCK_INPUT;
762 gc = XCreateGC (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), mask, xgcv);
763 UNBLOCK_INPUT;
764 IF_DEBUG (++ngcs);
765 return gc;
769 /* Free GC which was used on frame F. */
771 static INLINE void
772 x_free_gc (f, gc)
773 struct frame *f;
774 GC gc;
776 BLOCK_INPUT;
777 xassert (--ngcs >= 0);
778 XFreeGC (FRAME_X_DISPLAY (f), gc);
779 UNBLOCK_INPUT;
782 #endif /* HAVE_X_WINDOWS */
784 #ifdef WINDOWSNT
785 /* W32 emulation of GCs */
787 static INLINE GC
788 x_create_gc (f, mask, xgcv)
789 struct frame *f;
790 unsigned long mask;
791 XGCValues *xgcv;
793 GC gc;
794 BLOCK_INPUT;
795 gc = XCreateGC (NULL, FRAME_W32_WINDOW (f), mask, xgcv);
796 UNBLOCK_INPUT;
797 IF_DEBUG (++ngcs);
798 return gc;
802 /* Free GC which was used on frame F. */
804 static INLINE void
805 x_free_gc (f, gc)
806 struct frame *f;
807 GC gc;
809 BLOCK_INPUT;
810 xassert (--ngcs >= 0);
811 xfree (gc);
812 UNBLOCK_INPUT;
815 #endif /* WINDOWSNT */
817 /* Like stricmp. Used to compare parts of font names which are in
818 ISO8859-1. */
821 xstricmp (s1, s2)
822 unsigned char *s1, *s2;
824 while (*s1 && *s2)
826 unsigned char c1 = tolower (*s1);
827 unsigned char c2 = tolower (*s2);
828 if (c1 != c2)
829 return c1 < c2 ? -1 : 1;
830 ++s1, ++s2;
833 if (*s1 == 0)
834 return *s2 == 0 ? 0 : -1;
835 return 1;
839 /* Like strlwr, which might not always be available. */
841 static unsigned char *
842 xstrlwr (s)
843 unsigned char *s;
845 unsigned char *p = s;
847 for (p = s; *p; ++p)
848 *p = tolower (*p);
850 return s;
854 /* Signal `error' with message S, and additional argument ARG. */
856 static void
857 signal_error (s, arg)
858 char *s;
859 Lisp_Object arg;
861 Fsignal (Qerror, Fcons (build_string (s), Fcons (arg, Qnil)));
865 /* If FRAME is nil, return a pointer to the selected frame.
866 Otherwise, check that FRAME is a live frame, and return a pointer
867 to it. NPARAM is the parameter number of FRAME, for
868 CHECK_LIVE_FRAME. This is here because it's a frequent pattern in
869 Lisp function definitions. */
871 static INLINE struct frame *
872 frame_or_selected_frame (frame, nparam)
873 Lisp_Object frame;
874 int nparam;
876 if (NILP (frame))
877 frame = selected_frame;
879 CHECK_LIVE_FRAME (frame);
880 return XFRAME (frame);
884 /***********************************************************************
885 Frames and faces
886 ***********************************************************************/
888 /* Initialize face cache and basic faces for frame F. */
890 void
891 init_frame_faces (f)
892 struct frame *f;
894 /* Make a face cache, if F doesn't have one. */
895 if (FRAME_FACE_CACHE (f) == NULL)
896 FRAME_FACE_CACHE (f) = make_face_cache (f);
898 #ifdef HAVE_WINDOW_SYSTEM
899 /* Make the image cache. */
900 if (FRAME_WINDOW_P (f))
902 if (FRAME_X_IMAGE_CACHE (f) == NULL)
903 FRAME_X_IMAGE_CACHE (f) = make_image_cache ();
904 ++FRAME_X_IMAGE_CACHE (f)->refcount;
906 #endif /* HAVE_WINDOW_SYSTEM */
908 /* Realize basic faces. Must have enough information in frame
909 parameters to realize basic faces at this point. */
910 #ifdef HAVE_X_WINDOWS
911 if (!FRAME_X_P (f) || FRAME_X_WINDOW (f))
912 #endif
913 #ifdef WINDOWSNT
914 if (!FRAME_WINDOW_P (f) || FRAME_W32_WINDOW (f))
915 #endif
916 if (!realize_basic_faces (f))
917 abort ();
921 /* Free face cache of frame F. Called from Fdelete_frame. */
923 void
924 free_frame_faces (f)
925 struct frame *f;
927 struct face_cache *face_cache = FRAME_FACE_CACHE (f);
929 if (face_cache)
931 free_face_cache (face_cache);
932 FRAME_FACE_CACHE (f) = NULL;
935 #ifdef HAVE_WINDOW_SYSTEM
936 if (FRAME_WINDOW_P (f))
938 struct image_cache *image_cache = FRAME_X_IMAGE_CACHE (f);
939 if (image_cache)
941 --image_cache->refcount;
942 if (image_cache->refcount == 0)
943 free_image_cache (f);
946 #endif /* HAVE_WINDOW_SYSTEM */
950 /* Clear face caches, and recompute basic faces for frame F. Call
951 this after changing frame parameters on which those faces depend,
952 or when realized faces have been freed due to changing attributes
953 of named faces. */
955 void
956 recompute_basic_faces (f)
957 struct frame *f;
959 if (FRAME_FACE_CACHE (f))
961 clear_face_cache (0);
962 if (!realize_basic_faces (f))
963 abort ();
968 /* Clear the face caches of all frames. CLEAR_FONTS_P non-zero means
969 try to free unused fonts, too. */
971 void
972 clear_face_cache (clear_fonts_p)
973 int clear_fonts_p;
975 #ifdef HAVE_WINDOW_SYSTEM
976 Lisp_Object tail, frame;
977 struct frame *f;
979 if (clear_fonts_p
980 || ++clear_font_table_count == CLEAR_FONT_TABLE_COUNT)
982 struct x_display_info *dpyinfo;
984 /* Fonts are common for frames on one display, i.e. on
985 one X screen. */
986 for (dpyinfo = x_display_list; dpyinfo; dpyinfo = dpyinfo->next)
987 if (dpyinfo->n_fonts > CLEAR_FONT_TABLE_NFONTS)
988 clear_font_table (dpyinfo);
990 /* From time to time see if we can unload some fonts. This also
991 frees all realized faces on all frames. Fonts needed by
992 faces will be loaded again when faces are realized again. */
993 clear_font_table_count = 0;
995 FOR_EACH_FRAME (tail, frame)
997 struct frame *f = XFRAME (frame);
998 if (FRAME_WINDOW_P (f)
999 && FRAME_X_DISPLAY_INFO (f)->n_fonts > CLEAR_FONT_TABLE_NFONTS)
1000 free_all_realized_faces (frame);
1003 else
1005 /* Clear GCs of realized faces. */
1006 FOR_EACH_FRAME (tail, frame)
1008 f = XFRAME (frame);
1009 if (FRAME_WINDOW_P (f))
1011 clear_face_gcs (FRAME_FACE_CACHE (f));
1012 clear_image_cache (f, 0);
1016 #endif /* HAVE_WINDOW_SYSTEM */
1020 DEFUN ("clear-face-cache", Fclear_face_cache, Sclear_face_cache, 0, 1, 0,
1021 doc: /* Clear face caches on all frames.
1022 Optional THOROUGHLY non-nil means try to free unused fonts, too. */)
1023 (thoroughly)
1024 Lisp_Object thoroughly;
1026 clear_face_cache (!NILP (thoroughly));
1027 ++face_change_count;
1028 ++windows_or_buffers_changed;
1029 return Qnil;
1034 #ifdef HAVE_WINDOW_SYSTEM
1037 /* Remove fonts from the font table of DPYINFO except for the default
1038 ASCII fonts of frames on that display. Called from clear_face_cache
1039 from time to time. */
1041 static void
1042 clear_font_table (dpyinfo)
1043 struct x_display_info *dpyinfo;
1045 int i;
1047 /* Free those fonts that are not used by frames on DPYINFO. */
1048 for (i = 0; i < dpyinfo->n_fonts; ++i)
1050 struct font_info *font_info = dpyinfo->font_table + i;
1051 Lisp_Object tail, frame;
1053 /* Check if slot is already free. */
1054 if (font_info->name == NULL)
1055 continue;
1057 /* Don't free a default font of some frame on this display. */
1058 FOR_EACH_FRAME (tail, frame)
1060 struct frame *f = XFRAME (frame);
1061 if (FRAME_WINDOW_P (f)
1062 && FRAME_X_DISPLAY_INFO (f) == dpyinfo
1063 && font_info->font == FRAME_FONT (f))
1064 break;
1067 if (!NILP (tail))
1068 continue;
1070 /* Free names. */
1071 if (font_info->full_name != font_info->name)
1072 xfree (font_info->full_name);
1073 xfree (font_info->name);
1075 /* Free the font. */
1076 BLOCK_INPUT;
1077 #ifdef HAVE_X_WINDOWS
1078 XFreeFont (dpyinfo->display, font_info->font);
1079 #endif
1080 #ifdef WINDOWSNT
1081 w32_unload_font (dpyinfo, font_info->font);
1082 #endif
1083 UNBLOCK_INPUT;
1085 /* Mark font table slot free. */
1086 font_info->font = NULL;
1087 font_info->name = font_info->full_name = NULL;
1091 #endif /* HAVE_WINDOW_SYSTEM */
1095 /***********************************************************************
1096 X Pixmaps
1097 ***********************************************************************/
1099 #ifdef HAVE_WINDOW_SYSTEM
1101 DEFUN ("bitmap-spec-p", Fbitmap_spec_p, Sbitmap_spec_p, 1, 1, 0,
1102 doc: /* Value is non-nil if OBJECT is a valid bitmap specification.
1103 A bitmap specification is either a string, a file name, or a list
1104 \(WIDTH HEIGHT DATA) where WIDTH is the pixel width of the bitmap,
1105 HEIGHT is its height, and DATA is a string containing the bits of
1106 the pixmap. Bits are stored row by row, each row occupies
1107 \(WIDTH + 7)/8 bytes. */)
1108 (object)
1109 Lisp_Object object;
1111 int pixmap_p = 0;
1113 if (STRINGP (object))
1114 /* If OBJECT is a string, it's a file name. */
1115 pixmap_p = 1;
1116 else if (CONSP (object))
1118 /* Otherwise OBJECT must be (WIDTH HEIGHT DATA), WIDTH and
1119 HEIGHT must be integers > 0, and DATA must be string large
1120 enough to hold a bitmap of the specified size. */
1121 Lisp_Object width, height, data;
1123 height = width = data = Qnil;
1125 if (CONSP (object))
1127 width = XCAR (object);
1128 object = XCDR (object);
1129 if (CONSP (object))
1131 height = XCAR (object);
1132 object = XCDR (object);
1133 if (CONSP (object))
1134 data = XCAR (object);
1138 if (NATNUMP (width) && NATNUMP (height) && STRINGP (data))
1140 int bytes_per_row = ((XFASTINT (width) + BITS_PER_CHAR - 1)
1141 / BITS_PER_CHAR);
1142 if (STRING_BYTES (XSTRING (data)) >= bytes_per_row * XINT (height))
1143 pixmap_p = 1;
1147 return pixmap_p ? Qt : Qnil;
1151 /* Load a bitmap according to NAME (which is either a file name or a
1152 pixmap spec) for use on frame F. Value is the bitmap_id (see
1153 xfns.c). If NAME is nil, return with a bitmap id of zero. If
1154 bitmap cannot be loaded, display a message saying so, and return
1155 zero. Store the bitmap width in *W_PTR and its height in *H_PTR,
1156 if these pointers are not null. */
1158 static int
1159 load_pixmap (f, name, w_ptr, h_ptr)
1160 FRAME_PTR f;
1161 Lisp_Object name;
1162 unsigned int *w_ptr, *h_ptr;
1164 int bitmap_id;
1165 Lisp_Object tem;
1167 if (NILP (name))
1168 return 0;
1170 tem = Fbitmap_spec_p (name);
1171 if (NILP (tem))
1172 wrong_type_argument (Qbitmap_spec_p, name);
1174 BLOCK_INPUT;
1175 if (CONSP (name))
1177 /* Decode a bitmap spec into a bitmap. */
1179 int h, w;
1180 Lisp_Object bits;
1182 w = XINT (Fcar (name));
1183 h = XINT (Fcar (Fcdr (name)));
1184 bits = Fcar (Fcdr (Fcdr (name)));
1186 bitmap_id = x_create_bitmap_from_data (f, XSTRING (bits)->data,
1187 w, h);
1189 else
1191 /* It must be a string -- a file name. */
1192 bitmap_id = x_create_bitmap_from_file (f, name);
1194 UNBLOCK_INPUT;
1196 if (bitmap_id < 0)
1198 add_to_log ("Invalid or undefined bitmap %s", name, Qnil);
1199 bitmap_id = 0;
1201 if (w_ptr)
1202 *w_ptr = 0;
1203 if (h_ptr)
1204 *h_ptr = 0;
1206 else
1208 #if GLYPH_DEBUG
1209 ++npixmaps_allocated;
1210 #endif
1211 if (w_ptr)
1212 *w_ptr = x_bitmap_width (f, bitmap_id);
1214 if (h_ptr)
1215 *h_ptr = x_bitmap_height (f, bitmap_id);
1218 return bitmap_id;
1221 #endif /* HAVE_WINDOW_SYSTEM */
1225 /***********************************************************************
1226 Minimum font bounds
1227 ***********************************************************************/
1229 #ifdef HAVE_WINDOW_SYSTEM
1231 /* Update the line_height of frame F. Return non-zero if line height
1232 changes. */
1235 frame_update_line_height (f)
1236 struct frame *f;
1238 int line_height, changed_p;
1240 line_height = FONT_HEIGHT (FRAME_FONT (f));
1241 changed_p = line_height != FRAME_LINE_HEIGHT (f);
1242 FRAME_LINE_HEIGHT (f) = line_height;
1243 return changed_p;
1246 #endif /* HAVE_WINDOW_SYSTEM */
1249 /***********************************************************************
1250 Fonts
1251 ***********************************************************************/
1253 #ifdef HAVE_WINDOW_SYSTEM
1255 /* Load font of face FACE which is used on frame F to display
1256 character C. The name of the font to load is determined by lface
1257 and fontset of FACE. */
1259 static void
1260 load_face_font (f, face, c)
1261 struct frame *f;
1262 struct face *face;
1263 int c;
1265 struct font_info *font_info = NULL;
1266 char *font_name;
1268 face->font_info_id = -1;
1269 face->font = NULL;
1271 font_name = choose_face_font (f, face->lface, face->fontset, c);
1272 if (!font_name)
1273 return;
1275 BLOCK_INPUT;
1276 font_info = FS_LOAD_FACE_FONT (f, c, font_name, face);
1277 UNBLOCK_INPUT;
1279 if (font_info)
1281 face->font_info_id = font_info->font_idx;
1282 face->font = font_info->font;
1283 face->font_name = font_info->full_name;
1284 if (face->gc)
1286 x_free_gc (f, face->gc);
1287 face->gc = 0;
1290 else
1291 add_to_log ("Unable to load font %s",
1292 build_string (font_name), Qnil);
1293 xfree (font_name);
1296 #endif /* HAVE_WINDOW_SYSTEM */
1300 /***********************************************************************
1301 X Colors
1302 ***********************************************************************/
1304 /* A version of defined_color for non-X frames. */
1307 tty_defined_color (f, color_name, color_def, alloc)
1308 struct frame *f;
1309 char *color_name;
1310 XColor *color_def;
1311 int alloc;
1313 Lisp_Object color_desc;
1314 unsigned long color_idx = FACE_TTY_DEFAULT_COLOR;
1315 unsigned long red = 0, green = 0, blue = 0;
1316 int status = 1;
1318 if (*color_name && !NILP (Ffboundp (Qtty_color_desc)))
1320 Lisp_Object frame;
1322 XSETFRAME (frame, f);
1323 status = 0;
1324 color_desc = call2 (Qtty_color_desc, build_string (color_name), frame);
1325 if (CONSP (color_desc) && CONSP (XCDR (color_desc)))
1327 color_idx = XINT (XCAR (XCDR (color_desc)));
1328 if (CONSP (XCDR (XCDR (color_desc))))
1330 red = XINT (XCAR (XCDR (XCDR (color_desc))));
1331 green = XINT (XCAR (XCDR (XCDR (XCDR (color_desc)))));
1332 blue = XINT (XCAR (XCDR (XCDR (XCDR (XCDR (color_desc))))));
1334 status = 1;
1336 else if (NILP (Fsymbol_value (intern ("tty-defined-color-alist"))))
1337 /* We were called early during startup, and the colors are not
1338 yet set up in tty-defined-color-alist. Don't return a failure
1339 indication, since this produces the annoying "Unable to
1340 load color" messages in the *Messages* buffer. */
1341 status = 1;
1343 if (color_idx == FACE_TTY_DEFAULT_COLOR && *color_name)
1345 if (strcmp (color_name, "unspecified-fg") == 0)
1346 color_idx = FACE_TTY_DEFAULT_FG_COLOR;
1347 else if (strcmp (color_name, "unspecified-bg") == 0)
1348 color_idx = FACE_TTY_DEFAULT_BG_COLOR;
1351 if (color_idx != FACE_TTY_DEFAULT_COLOR)
1352 status = 1;
1354 color_def->pixel = color_idx;
1355 color_def->red = red;
1356 color_def->green = green;
1357 color_def->blue = blue;
1359 return status;
1363 /* Decide if color named COLOR_NAME is valid for the display
1364 associated with the frame F; if so, return the rgb values in
1365 COLOR_DEF. If ALLOC is nonzero, allocate a new colormap cell.
1367 This does the right thing for any type of frame. */
1370 defined_color (f, color_name, color_def, alloc)
1371 struct frame *f;
1372 char *color_name;
1373 XColor *color_def;
1374 int alloc;
1376 if (!FRAME_WINDOW_P (f))
1377 return tty_defined_color (f, color_name, color_def, alloc);
1378 #ifdef HAVE_X_WINDOWS
1379 else if (FRAME_X_P (f))
1380 return x_defined_color (f, color_name, color_def, alloc);
1381 #endif
1382 #ifdef WINDOWSNT
1383 else if (FRAME_W32_P (f))
1384 return w32_defined_color (f, color_name, color_def, alloc);
1385 #endif
1386 #ifdef macintosh
1387 else if (FRAME_MAC_P (f))
1388 return mac_defined_color (f, color_name, color_def, alloc);
1389 #endif
1390 else
1391 abort ();
1395 /* Given the index IDX of a tty color on frame F, return its name, a
1396 Lisp string. */
1398 Lisp_Object
1399 tty_color_name (f, idx)
1400 struct frame *f;
1401 int idx;
1403 if (idx >= 0 && !NILP (Ffboundp (Qtty_color_by_index)))
1405 Lisp_Object frame;
1406 Lisp_Object coldesc;
1408 XSETFRAME (frame, f);
1409 coldesc = call2 (Qtty_color_by_index, make_number (idx), frame);
1411 if (!NILP (coldesc))
1412 return XCAR (coldesc);
1414 #ifdef MSDOS
1415 /* We can have an MSDOG frame under -nw for a short window of
1416 opportunity before internal_terminal_init is called. DTRT. */
1417 if (FRAME_MSDOS_P (f) && !inhibit_window_system)
1418 return msdos_stdcolor_name (idx);
1419 #endif
1421 if (idx == FACE_TTY_DEFAULT_FG_COLOR)
1422 return build_string (unspecified_fg);
1423 if (idx == FACE_TTY_DEFAULT_BG_COLOR)
1424 return build_string (unspecified_bg);
1426 #ifdef WINDOWSNT
1427 return vga_stdcolor_name (idx);
1428 #endif
1430 return Qunspecified;
1434 /* Return non-zero if COLOR_NAME is a shade of gray (or white or
1435 black) on frame F. The algorithm is taken from 20.2 faces.el. */
1437 static int
1438 face_color_gray_p (f, color_name)
1439 struct frame *f;
1440 char *color_name;
1442 XColor color;
1443 int gray_p;
1445 if (defined_color (f, color_name, &color, 0))
1446 gray_p = ((abs (color.red - color.green)
1447 < max (color.red, color.green) / 20)
1448 && (abs (color.green - color.blue)
1449 < max (color.green, color.blue) / 20)
1450 && (abs (color.blue - color.red)
1451 < max (color.blue, color.red) / 20));
1452 else
1453 gray_p = 0;
1455 return gray_p;
1459 /* Return non-zero if color COLOR_NAME can be displayed on frame F.
1460 BACKGROUND_P non-zero means the color will be used as background
1461 color. */
1463 static int
1464 face_color_supported_p (f, color_name, background_p)
1465 struct frame *f;
1466 char *color_name;
1467 int background_p;
1469 Lisp_Object frame;
1470 XColor not_used;
1472 XSETFRAME (frame, f);
1473 return (FRAME_WINDOW_P (f)
1474 ? (!NILP (Fxw_display_color_p (frame))
1475 || xstricmp (color_name, "black") == 0
1476 || xstricmp (color_name, "white") == 0
1477 || (background_p
1478 && face_color_gray_p (f, color_name))
1479 || (!NILP (Fx_display_grayscale_p (frame))
1480 && face_color_gray_p (f, color_name)))
1481 : tty_defined_color (f, color_name, &not_used, 0));
1485 DEFUN ("color-gray-p", Fcolor_gray_p, Scolor_gray_p, 1, 2, 0,
1486 doc: /* Return non-nil if COLOR is a shade of gray (or white or black).
1487 FRAME specifies the frame and thus the display for interpreting COLOR.
1488 If FRAME is nil or omitted, use the selected frame. */)
1489 (color, frame)
1490 Lisp_Object color, frame;
1492 struct frame *f;
1494 CHECK_FRAME (frame);
1495 CHECK_STRING (color);
1496 f = XFRAME (frame);
1497 return face_color_gray_p (f, XSTRING (color)->data) ? Qt : Qnil;
1501 DEFUN ("color-supported-p", Fcolor_supported_p,
1502 Scolor_supported_p, 2, 3, 0,
1503 doc: /* Return non-nil if COLOR can be displayed on FRAME.
1504 BACKGROUND-P non-nil means COLOR is used as a background.
1505 If FRAME is nil or omitted, use the selected frame.
1506 COLOR must be a valid color name. */)
1507 (color, frame, background_p)
1508 Lisp_Object frame, color, background_p;
1510 struct frame *f;
1512 CHECK_FRAME (frame);
1513 CHECK_STRING (color);
1514 f = XFRAME (frame);
1515 if (face_color_supported_p (f, XSTRING (color)->data, !NILP (background_p)))
1516 return Qt;
1517 return Qnil;
1521 /* Load color with name NAME for use by face FACE on frame F.
1522 TARGET_INDEX must be one of LFACE_FOREGROUND_INDEX,
1523 LFACE_BACKGROUND_INDEX, LFACE_UNDERLINE_INDEX, LFACE_OVERLINE_INDEX,
1524 LFACE_STRIKE_THROUGH_INDEX, or LFACE_BOX_INDEX. Value is the
1525 pixel color. If color cannot be loaded, display a message, and
1526 return the foreground, background or underline color of F, but
1527 record that fact in flags of the face so that we don't try to free
1528 these colors. */
1530 unsigned long
1531 load_color (f, face, name, target_index)
1532 struct frame *f;
1533 struct face *face;
1534 Lisp_Object name;
1535 enum lface_attribute_index target_index;
1537 XColor color;
1539 xassert (STRINGP (name));
1540 xassert (target_index == LFACE_FOREGROUND_INDEX
1541 || target_index == LFACE_BACKGROUND_INDEX
1542 || target_index == LFACE_UNDERLINE_INDEX
1543 || target_index == LFACE_OVERLINE_INDEX
1544 || target_index == LFACE_STRIKE_THROUGH_INDEX
1545 || target_index == LFACE_BOX_INDEX);
1547 /* if the color map is full, defined_color will return a best match
1548 to the values in an existing cell. */
1549 if (!defined_color (f, XSTRING (name)->data, &color, 1))
1551 add_to_log ("Unable to load color \"%s\"", name, Qnil);
1553 switch (target_index)
1555 case LFACE_FOREGROUND_INDEX:
1556 face->foreground_defaulted_p = 1;
1557 color.pixel = FRAME_FOREGROUND_PIXEL (f);
1558 break;
1560 case LFACE_BACKGROUND_INDEX:
1561 face->background_defaulted_p = 1;
1562 color.pixel = FRAME_BACKGROUND_PIXEL (f);
1563 break;
1565 case LFACE_UNDERLINE_INDEX:
1566 face->underline_defaulted_p = 1;
1567 color.pixel = FRAME_FOREGROUND_PIXEL (f);
1568 break;
1570 case LFACE_OVERLINE_INDEX:
1571 face->overline_color_defaulted_p = 1;
1572 color.pixel = FRAME_FOREGROUND_PIXEL (f);
1573 break;
1575 case LFACE_STRIKE_THROUGH_INDEX:
1576 face->strike_through_color_defaulted_p = 1;
1577 color.pixel = FRAME_FOREGROUND_PIXEL (f);
1578 break;
1580 case LFACE_BOX_INDEX:
1581 face->box_color_defaulted_p = 1;
1582 color.pixel = FRAME_FOREGROUND_PIXEL (f);
1583 break;
1585 default:
1586 abort ();
1589 #if GLYPH_DEBUG
1590 else
1591 ++ncolors_allocated;
1592 #endif
1594 return color.pixel;
1598 #ifdef HAVE_WINDOW_SYSTEM
1600 /* Load colors for face FACE which is used on frame F. Colors are
1601 specified by slots LFACE_BACKGROUND_INDEX and LFACE_FOREGROUND_INDEX
1602 of ATTRS. If the background color specified is not supported on F,
1603 try to emulate gray colors with a stipple from Vface_default_stipple. */
1605 static void
1606 load_face_colors (f, face, attrs)
1607 struct frame *f;
1608 struct face *face;
1609 Lisp_Object *attrs;
1611 Lisp_Object fg, bg;
1613 bg = attrs[LFACE_BACKGROUND_INDEX];
1614 fg = attrs[LFACE_FOREGROUND_INDEX];
1616 /* Swap colors if face is inverse-video. */
1617 if (EQ (attrs[LFACE_INVERSE_INDEX], Qt))
1619 Lisp_Object tmp;
1620 tmp = fg;
1621 fg = bg;
1622 bg = tmp;
1625 /* Check for support for foreground, not for background because
1626 face_color_supported_p is smart enough to know that grays are
1627 "supported" as background because we are supposed to use stipple
1628 for them. */
1629 if (!face_color_supported_p (f, XSTRING (bg)->data, 0)
1630 && !NILP (Fbitmap_spec_p (Vface_default_stipple)))
1632 x_destroy_bitmap (f, face->stipple);
1633 face->stipple = load_pixmap (f, Vface_default_stipple,
1634 &face->pixmap_w, &face->pixmap_h);
1637 face->background = load_color (f, face, bg, LFACE_BACKGROUND_INDEX);
1638 face->foreground = load_color (f, face, fg, LFACE_FOREGROUND_INDEX);
1642 /* Free color PIXEL on frame F. */
1644 void
1645 unload_color (f, pixel)
1646 struct frame *f;
1647 unsigned long pixel;
1649 #ifdef HAVE_X_WINDOWS
1650 if (pixel != -1)
1652 BLOCK_INPUT;
1653 x_free_colors (f, &pixel, 1);
1654 UNBLOCK_INPUT;
1656 #endif
1660 /* Free colors allocated for FACE. */
1662 static void
1663 free_face_colors (f, face)
1664 struct frame *f;
1665 struct face *face;
1667 #ifdef HAVE_X_WINDOWS
1668 if (face->colors_copied_bitwise_p)
1669 return;
1671 BLOCK_INPUT;
1673 if (!face->foreground_defaulted_p)
1675 x_free_colors (f, &face->foreground, 1);
1676 IF_DEBUG (--ncolors_allocated);
1679 if (!face->background_defaulted_p)
1681 x_free_colors (f, &face->background, 1);
1682 IF_DEBUG (--ncolors_allocated);
1685 if (face->underline_p
1686 && !face->underline_defaulted_p)
1688 x_free_colors (f, &face->underline_color, 1);
1689 IF_DEBUG (--ncolors_allocated);
1692 if (face->overline_p
1693 && !face->overline_color_defaulted_p)
1695 x_free_colors (f, &face->overline_color, 1);
1696 IF_DEBUG (--ncolors_allocated);
1699 if (face->strike_through_p
1700 && !face->strike_through_color_defaulted_p)
1702 x_free_colors (f, &face->strike_through_color, 1);
1703 IF_DEBUG (--ncolors_allocated);
1706 if (face->box != FACE_NO_BOX
1707 && !face->box_color_defaulted_p)
1709 x_free_colors (f, &face->box_color, 1);
1710 IF_DEBUG (--ncolors_allocated);
1713 UNBLOCK_INPUT;
1714 #endif /* HAVE_X_WINDOWS */
1717 #endif /* HAVE_WINDOW_SYSTEM */
1721 /***********************************************************************
1722 XLFD Font Names
1723 ***********************************************************************/
1725 /* An enumerator for each field of an XLFD font name. */
1727 enum xlfd_field
1729 XLFD_FOUNDRY,
1730 XLFD_FAMILY,
1731 XLFD_WEIGHT,
1732 XLFD_SLANT,
1733 XLFD_SWIDTH,
1734 XLFD_ADSTYLE,
1735 XLFD_PIXEL_SIZE,
1736 XLFD_POINT_SIZE,
1737 XLFD_RESX,
1738 XLFD_RESY,
1739 XLFD_SPACING,
1740 XLFD_AVGWIDTH,
1741 XLFD_REGISTRY,
1742 XLFD_ENCODING,
1743 XLFD_LAST
1746 /* An enumerator for each possible slant value of a font. Taken from
1747 the XLFD specification. */
1749 enum xlfd_slant
1751 XLFD_SLANT_UNKNOWN,
1752 XLFD_SLANT_ROMAN,
1753 XLFD_SLANT_ITALIC,
1754 XLFD_SLANT_OBLIQUE,
1755 XLFD_SLANT_REVERSE_ITALIC,
1756 XLFD_SLANT_REVERSE_OBLIQUE,
1757 XLFD_SLANT_OTHER
1760 /* Relative font weight according to XLFD documentation. */
1762 enum xlfd_weight
1764 XLFD_WEIGHT_UNKNOWN,
1765 XLFD_WEIGHT_ULTRA_LIGHT, /* 10 */
1766 XLFD_WEIGHT_EXTRA_LIGHT, /* 20 */
1767 XLFD_WEIGHT_LIGHT, /* 30 */
1768 XLFD_WEIGHT_SEMI_LIGHT, /* 40: SemiLight, Book, ... */
1769 XLFD_WEIGHT_MEDIUM, /* 50: Medium, Normal, Regular, ... */
1770 XLFD_WEIGHT_SEMI_BOLD, /* 60: SemiBold, DemiBold, ... */
1771 XLFD_WEIGHT_BOLD, /* 70: Bold, ... */
1772 XLFD_WEIGHT_EXTRA_BOLD, /* 80: ExtraBold, Heavy, ... */
1773 XLFD_WEIGHT_ULTRA_BOLD /* 90: UltraBold, Black, ... */
1776 /* Relative proportionate width. */
1778 enum xlfd_swidth
1780 XLFD_SWIDTH_UNKNOWN,
1781 XLFD_SWIDTH_ULTRA_CONDENSED, /* 10 */
1782 XLFD_SWIDTH_EXTRA_CONDENSED, /* 20 */
1783 XLFD_SWIDTH_CONDENSED, /* 30: Condensed, Narrow, Compressed, ... */
1784 XLFD_SWIDTH_SEMI_CONDENSED, /* 40: semicondensed */
1785 XLFD_SWIDTH_MEDIUM, /* 50: Medium, Normal, Regular, ... */
1786 XLFD_SWIDTH_SEMI_EXPANDED, /* 60: SemiExpanded, DemiExpanded, ... */
1787 XLFD_SWIDTH_EXPANDED, /* 70: Expanded... */
1788 XLFD_SWIDTH_EXTRA_EXPANDED, /* 80: ExtraExpanded, Wide... */
1789 XLFD_SWIDTH_ULTRA_EXPANDED /* 90: UltraExpanded... */
1792 /* Structure used for tables mapping XLFD weight, slant, and width
1793 names to numeric and symbolic values. */
1795 struct table_entry
1797 char *name;
1798 int numeric;
1799 Lisp_Object *symbol;
1802 /* Table of XLFD slant names and their numeric and symbolic
1803 representations. This table must be sorted by slant names in
1804 ascending order. */
1806 static struct table_entry slant_table[] =
1808 {"i", XLFD_SLANT_ITALIC, &Qitalic},
1809 {"o", XLFD_SLANT_OBLIQUE, &Qoblique},
1810 {"ot", XLFD_SLANT_OTHER, &Qitalic},
1811 {"r", XLFD_SLANT_ROMAN, &Qnormal},
1812 {"ri", XLFD_SLANT_REVERSE_ITALIC, &Qreverse_italic},
1813 {"ro", XLFD_SLANT_REVERSE_OBLIQUE, &Qreverse_oblique}
1816 /* Table of XLFD weight names. This table must be sorted by weight
1817 names in ascending order. */
1819 static struct table_entry weight_table[] =
1821 {"black", XLFD_WEIGHT_ULTRA_BOLD, &Qultra_bold},
1822 {"bold", XLFD_WEIGHT_BOLD, &Qbold},
1823 {"book", XLFD_WEIGHT_SEMI_LIGHT, &Qsemi_light},
1824 {"demi", XLFD_WEIGHT_SEMI_BOLD, &Qsemi_bold},
1825 {"demibold", XLFD_WEIGHT_SEMI_BOLD, &Qsemi_bold},
1826 {"extralight", XLFD_WEIGHT_EXTRA_LIGHT, &Qextra_light},
1827 {"extrabold", XLFD_WEIGHT_EXTRA_BOLD, &Qextra_bold},
1828 {"heavy", XLFD_WEIGHT_EXTRA_BOLD, &Qextra_bold},
1829 {"light", XLFD_WEIGHT_LIGHT, &Qlight},
1830 {"medium", XLFD_WEIGHT_MEDIUM, &Qnormal},
1831 {"normal", XLFD_WEIGHT_MEDIUM, &Qnormal},
1832 {"regular", XLFD_WEIGHT_MEDIUM, &Qnormal},
1833 {"semibold", XLFD_WEIGHT_SEMI_BOLD, &Qsemi_bold},
1834 {"semilight", XLFD_WEIGHT_SEMI_LIGHT, &Qsemi_light},
1835 {"ultralight", XLFD_WEIGHT_ULTRA_LIGHT, &Qultra_light},
1836 {"ultrabold", XLFD_WEIGHT_ULTRA_BOLD, &Qultra_bold}
1839 /* Table of XLFD width names. This table must be sorted by width
1840 names in ascending order. */
1842 static struct table_entry swidth_table[] =
1844 {"compressed", XLFD_SWIDTH_CONDENSED, &Qcondensed},
1845 {"condensed", XLFD_SWIDTH_CONDENSED, &Qcondensed},
1846 {"demiexpanded", XLFD_SWIDTH_SEMI_EXPANDED, &Qsemi_expanded},
1847 {"expanded", XLFD_SWIDTH_EXPANDED, &Qexpanded},
1848 {"extracondensed", XLFD_SWIDTH_EXTRA_CONDENSED, &Qextra_condensed},
1849 {"extraexpanded", XLFD_SWIDTH_EXTRA_EXPANDED, &Qextra_expanded},
1850 {"medium", XLFD_SWIDTH_MEDIUM, &Qnormal},
1851 {"narrow", XLFD_SWIDTH_CONDENSED, &Qcondensed},
1852 {"normal", XLFD_SWIDTH_MEDIUM, &Qnormal},
1853 {"regular", XLFD_SWIDTH_MEDIUM, &Qnormal},
1854 {"semicondensed", XLFD_SWIDTH_SEMI_CONDENSED, &Qsemi_condensed},
1855 {"semiexpanded", XLFD_SWIDTH_SEMI_EXPANDED, &Qsemi_expanded},
1856 {"ultracondensed", XLFD_SWIDTH_ULTRA_CONDENSED, &Qultra_condensed},
1857 {"ultraexpanded", XLFD_SWIDTH_ULTRA_EXPANDED, &Qultra_expanded},
1858 {"wide", XLFD_SWIDTH_EXTRA_EXPANDED, &Qextra_expanded}
1861 /* Structure used to hold the result of splitting font names in XLFD
1862 format into their fields. */
1864 struct font_name
1866 /* The original name which is modified destructively by
1867 split_font_name. The pointer is kept here to be able to free it
1868 if it was allocated from the heap. */
1869 char *name;
1871 /* Font name fields. Each vector element points into `name' above.
1872 Fields are NUL-terminated. */
1873 char *fields[XLFD_LAST];
1875 /* Numeric values for those fields that interest us. See
1876 split_font_name for which these are. */
1877 int numeric[XLFD_LAST];
1879 /* Lower value mean higher priority. */
1880 int registry_priority;
1883 /* The frame in effect when sorting font names. Set temporarily in
1884 sort_fonts so that it is available in font comparison functions. */
1886 static struct frame *font_frame;
1888 /* Order by which font selection chooses fonts. The default values
1889 mean `first, find a best match for the font width, then for the
1890 font height, then for weight, then for slant.' This variable can be
1891 set via set-face-font-sort-order. */
1893 #ifdef macintosh
1894 static int font_sort_order[4] = {
1895 XLFD_SWIDTH, XLFD_POINT_SIZE, XLFD_WEIGHT, XLFD_SLANT
1897 #else
1898 static int font_sort_order[4];
1899 #endif
1901 /* Look up FONT.fields[FIELD_INDEX] in TABLE which has DIM entries.
1902 TABLE must be sorted by TABLE[i]->name in ascending order. Value
1903 is a pointer to the matching table entry or null if no table entry
1904 matches. */
1906 static struct table_entry *
1907 xlfd_lookup_field_contents (table, dim, font, field_index)
1908 struct table_entry *table;
1909 int dim;
1910 struct font_name *font;
1911 int field_index;
1913 /* Function split_font_name converts fields to lower-case, so there
1914 is no need to use xstrlwr or xstricmp here. */
1915 char *s = font->fields[field_index];
1916 int low, mid, high, cmp;
1918 low = 0;
1919 high = dim - 1;
1921 while (low <= high)
1923 mid = (low + high) / 2;
1924 cmp = strcmp (table[mid].name, s);
1926 if (cmp < 0)
1927 low = mid + 1;
1928 else if (cmp > 0)
1929 high = mid - 1;
1930 else
1931 return table + mid;
1934 return NULL;
1938 /* Return a numeric representation for font name field
1939 FONT.fields[FIELD_INDEX]. The field is looked up in TABLE which
1940 has DIM entries. Value is the numeric value found or DFLT if no
1941 table entry matches. This function is used to translate weight,
1942 slant, and swidth names of XLFD font names to numeric values. */
1944 static INLINE int
1945 xlfd_numeric_value (table, dim, font, field_index, dflt)
1946 struct table_entry *table;
1947 int dim;
1948 struct font_name *font;
1949 int field_index;
1950 int dflt;
1952 struct table_entry *p;
1953 p = xlfd_lookup_field_contents (table, dim, font, field_index);
1954 return p ? p->numeric : dflt;
1958 /* Return a symbolic representation for font name field
1959 FONT.fields[FIELD_INDEX]. The field is looked up in TABLE which
1960 has DIM entries. Value is the symbolic value found or DFLT if no
1961 table entry matches. This function is used to translate weight,
1962 slant, and swidth names of XLFD font names to symbols. */
1964 static INLINE Lisp_Object
1965 xlfd_symbolic_value (table, dim, font, field_index, dflt)
1966 struct table_entry *table;
1967 int dim;
1968 struct font_name *font;
1969 int field_index;
1970 Lisp_Object dflt;
1972 struct table_entry *p;
1973 p = xlfd_lookup_field_contents (table, dim, font, field_index);
1974 return p ? *p->symbol : dflt;
1978 /* Return a numeric value for the slant of the font given by FONT. */
1980 static INLINE int
1981 xlfd_numeric_slant (font)
1982 struct font_name *font;
1984 return xlfd_numeric_value (slant_table, DIM (slant_table),
1985 font, XLFD_SLANT, XLFD_SLANT_ROMAN);
1989 /* Return a symbol representing the weight of the font given by FONT. */
1991 static INLINE Lisp_Object
1992 xlfd_symbolic_slant (font)
1993 struct font_name *font;
1995 return xlfd_symbolic_value (slant_table, DIM (slant_table),
1996 font, XLFD_SLANT, Qnormal);
2000 /* Return a numeric value for the weight of the font given by FONT. */
2002 static INLINE int
2003 xlfd_numeric_weight (font)
2004 struct font_name *font;
2006 return xlfd_numeric_value (weight_table, DIM (weight_table),
2007 font, XLFD_WEIGHT, XLFD_WEIGHT_MEDIUM);
2011 /* Return a symbol representing the slant of the font given by FONT. */
2013 static INLINE Lisp_Object
2014 xlfd_symbolic_weight (font)
2015 struct font_name *font;
2017 return xlfd_symbolic_value (weight_table, DIM (weight_table),
2018 font, XLFD_WEIGHT, Qnormal);
2022 /* Return a numeric value for the swidth of the font whose XLFD font
2023 name fields are found in FONT. */
2025 static INLINE int
2026 xlfd_numeric_swidth (font)
2027 struct font_name *font;
2029 return xlfd_numeric_value (swidth_table, DIM (swidth_table),
2030 font, XLFD_SWIDTH, XLFD_SWIDTH_MEDIUM);
2034 /* Return a symbolic value for the swidth of FONT. */
2036 static INLINE Lisp_Object
2037 xlfd_symbolic_swidth (font)
2038 struct font_name *font;
2040 return xlfd_symbolic_value (swidth_table, DIM (swidth_table),
2041 font, XLFD_SWIDTH, Qnormal);
2045 /* Look up the entry of SYMBOL in the vector TABLE which has DIM
2046 entries. Value is a pointer to the matching table entry or null if
2047 no element of TABLE contains SYMBOL. */
2049 static struct table_entry *
2050 face_value (table, dim, symbol)
2051 struct table_entry *table;
2052 int dim;
2053 Lisp_Object symbol;
2055 int i;
2057 xassert (SYMBOLP (symbol));
2059 for (i = 0; i < dim; ++i)
2060 if (EQ (*table[i].symbol, symbol))
2061 break;
2063 return i < dim ? table + i : NULL;
2067 /* Return a numeric value for SYMBOL in the vector TABLE which has DIM
2068 entries. Value is -1 if SYMBOL is not found in TABLE. */
2070 static INLINE int
2071 face_numeric_value (table, dim, symbol)
2072 struct table_entry *table;
2073 int dim;
2074 Lisp_Object symbol;
2076 struct table_entry *p = face_value (table, dim, symbol);
2077 return p ? p->numeric : -1;
2081 /* Return a numeric value representing the weight specified by Lisp
2082 symbol WEIGHT. Value is one of the enumerators of enum
2083 xlfd_weight. */
2085 static INLINE int
2086 face_numeric_weight (weight)
2087 Lisp_Object weight;
2089 return face_numeric_value (weight_table, DIM (weight_table), weight);
2093 /* Return a numeric value representing the slant specified by Lisp
2094 symbol SLANT. Value is one of the enumerators of enum xlfd_slant. */
2096 static INLINE int
2097 face_numeric_slant (slant)
2098 Lisp_Object slant;
2100 return face_numeric_value (slant_table, DIM (slant_table), slant);
2104 /* Return a numeric value representing the swidth specified by Lisp
2105 symbol WIDTH. Value is one of the enumerators of enum xlfd_swidth. */
2107 static int
2108 face_numeric_swidth (width)
2109 Lisp_Object width;
2111 return face_numeric_value (swidth_table, DIM (swidth_table), width);
2115 #ifdef HAVE_WINDOW_SYSTEM
2117 /* Return non-zero if FONT is the name of a fixed-pitch font. */
2119 static INLINE int
2120 xlfd_fixed_p (font)
2121 struct font_name *font;
2123 /* Function split_font_name converts fields to lower-case, so there
2124 is no need to use tolower here. */
2125 return *font->fields[XLFD_SPACING] != 'p';
2129 /* Return the point size of FONT on frame F, measured in 1/10 pt.
2131 The actual height of the font when displayed on F depends on the
2132 resolution of both the font and frame. For example, a 10pt font
2133 designed for a 100dpi display will display larger than 10pt on a
2134 75dpi display. (It's not unusual to use fonts not designed for the
2135 display one is using. For example, some intlfonts are available in
2136 72dpi versions, only.)
2138 Value is the real point size of FONT on frame F, or 0 if it cannot
2139 be determined. */
2141 static INLINE int
2142 xlfd_point_size (f, font)
2143 struct frame *f;
2144 struct font_name *font;
2146 double resy = FRAME_X_DISPLAY_INFO (f)->resy;
2147 char *pixel_field = font->fields[XLFD_PIXEL_SIZE];
2148 double pixel;
2149 int real_pt;
2151 if (*pixel_field == '[')
2153 /* The pixel size field is `[A B C D]' which specifies
2154 a transformation matrix.
2156 A B 0
2157 C D 0
2158 0 0 1
2160 by which all glyphs of the font are transformed. The spec
2161 says that s scalar value N for the pixel size is equivalent
2162 to A = N * resx/resy, B = C = 0, D = N. */
2163 char *start = pixel_field + 1, *end;
2164 double matrix[4];
2165 int i;
2167 for (i = 0; i < 4; ++i)
2169 matrix[i] = strtod (start, &end);
2170 start = end;
2173 pixel = matrix[3];
2175 else
2176 pixel = atoi (pixel_field);
2178 if (pixel == 0)
2179 real_pt = 0;
2180 else
2181 real_pt = PT_PER_INCH * 10.0 * pixel / resy + 0.5;
2183 return real_pt;
2187 /* Return point size of PIXEL dots while considering Y-resultion (DPI)
2188 of frame F. This function is used to guess a point size of font
2189 when only the pixel height of the font is available. */
2191 static INLINE int
2192 pixel_point_size (f, pixel)
2193 struct frame *f;
2194 int pixel;
2196 double resy = FRAME_X_DISPLAY_INFO (f)->resy;
2197 double real_pt;
2198 int int_pt;
2200 /* As one inch is PT_PER_INCH points, PT_PER_INCH/RESY gives the
2201 point size of one dot. */
2202 real_pt = pixel * PT_PER_INCH / resy;
2203 int_pt = real_pt + 0.5;
2205 return int_pt;
2209 /* Split XLFD font name FONT->name destructively into NUL-terminated,
2210 lower-case fields in FONT->fields. NUMERIC_P non-zero means
2211 compute numeric values for fields XLFD_POINT_SIZE, XLFD_SWIDTH,
2212 XLFD_RESY, XLFD_SLANT, and XLFD_WEIGHT in FONT->numeric. Value is
2213 zero if the font name doesn't have the format we expect. The
2214 expected format is a font name that starts with a `-' and has
2215 XLFD_LAST fields separated by `-'. */
2217 static int
2218 split_font_name (f, font, numeric_p)
2219 struct frame *f;
2220 struct font_name *font;
2221 int numeric_p;
2223 int i = 0;
2224 int success_p;
2226 if (*font->name == '-')
2228 char *p = xstrlwr (font->name) + 1;
2230 while (i < XLFD_LAST)
2232 font->fields[i] = p;
2233 ++i;
2235 /* Pixel and point size may be of the form `[....]'. For
2236 BNF, see XLFD spec, chapter 4. Negative values are
2237 indicated by tilde characters which we replace with
2238 `-' characters, here. */
2239 if (*p == '['
2240 && (i - 1 == XLFD_PIXEL_SIZE
2241 || i - 1 == XLFD_POINT_SIZE))
2243 char *start, *end;
2244 int j;
2246 for (++p; *p && *p != ']'; ++p)
2247 if (*p == '~')
2248 *p = '-';
2250 /* Check that the matrix contains 4 floating point
2251 numbers. */
2252 for (j = 0, start = font->fields[i - 1] + 1;
2253 j < 4;
2254 ++j, start = end)
2255 if (strtod (start, &end) == 0 && start == end)
2256 break;
2258 if (j < 4)
2259 break;
2262 while (*p && *p != '-')
2263 ++p;
2265 if (*p != '-')
2266 break;
2268 *p++ = 0;
2272 success_p = i == XLFD_LAST;
2274 /* If requested, and font name was in the expected format,
2275 compute numeric values for some fields. */
2276 if (numeric_p && success_p)
2278 font->numeric[XLFD_POINT_SIZE] = xlfd_point_size (f, font);
2279 font->numeric[XLFD_RESY] = atoi (font->fields[XLFD_RESY]);
2280 font->numeric[XLFD_SLANT] = xlfd_numeric_slant (font);
2281 font->numeric[XLFD_WEIGHT] = xlfd_numeric_weight (font);
2282 font->numeric[XLFD_SWIDTH] = xlfd_numeric_swidth (font);
2283 font->numeric[XLFD_AVGWIDTH] = atoi (font->fields[XLFD_AVGWIDTH]);
2286 /* Initialize it to zero. It will be overridden by font_list while
2287 trying alternate registries. */
2288 font->registry_priority = 0;
2290 return success_p;
2294 /* Build an XLFD font name from font name fields in FONT. Value is a
2295 pointer to the font name, which is allocated via xmalloc. */
2297 static char *
2298 build_font_name (font)
2299 struct font_name *font;
2301 int i;
2302 int size = 100;
2303 char *font_name = (char *) xmalloc (size);
2304 int total_length = 0;
2306 for (i = 0; i < XLFD_LAST; ++i)
2308 /* Add 1 because of the leading `-'. */
2309 int len = strlen (font->fields[i]) + 1;
2311 /* Reallocate font_name if necessary. Add 1 for the final
2312 NUL-byte. */
2313 if (total_length + len + 1 >= size)
2315 int new_size = max (2 * size, size + len + 1);
2316 int sz = new_size * sizeof *font_name;
2317 font_name = (char *) xrealloc (font_name, sz);
2318 size = new_size;
2321 font_name[total_length] = '-';
2322 bcopy (font->fields[i], font_name + total_length + 1, len - 1);
2323 total_length += len;
2326 font_name[total_length] = 0;
2327 return font_name;
2331 /* Free an array FONTS of N font_name structures. This frees FONTS
2332 itself and all `name' fields in its elements. */
2334 static INLINE void
2335 free_font_names (fonts, n)
2336 struct font_name *fonts;
2337 int n;
2339 while (n)
2340 xfree (fonts[--n].name);
2341 xfree (fonts);
2345 /* Sort vector FONTS of font_name structures which contains NFONTS
2346 elements using qsort and comparison function CMPFN. F is the frame
2347 on which the fonts will be used. The global variable font_frame
2348 is temporarily set to F to make it available in CMPFN. */
2350 static INLINE void
2351 sort_fonts (f, fonts, nfonts, cmpfn)
2352 struct frame *f;
2353 struct font_name *fonts;
2354 int nfonts;
2355 int (*cmpfn) P_ ((const void *, const void *));
2357 font_frame = f;
2358 qsort (fonts, nfonts, sizeof *fonts, cmpfn);
2359 font_frame = NULL;
2363 /* Get fonts matching PATTERN on frame F. If F is null, use the first
2364 display in x_display_list. FONTS is a pointer to a vector of
2365 NFONTS font_name structures. TRY_ALTERNATIVES_P non-zero means try
2366 alternative patterns from Valternate_fontname_alist if no fonts are
2367 found matching PATTERN.
2369 For all fonts found, set FONTS[i].name to the name of the font,
2370 allocated via xmalloc, and split font names into fields. Ignore
2371 fonts that we can't parse. Value is the number of fonts found. */
2373 static int
2374 x_face_list_fonts (f, pattern, fonts, nfonts, try_alternatives_p)
2375 struct frame *f;
2376 char *pattern;
2377 struct font_name *fonts;
2378 int nfonts, try_alternatives_p;
2380 int n, nignored;
2382 /* NTEMACS_TODO : currently this uses w32_list_fonts, but it may be
2383 better to do it the other way around. */
2384 Lisp_Object lfonts;
2385 Lisp_Object lpattern, tem;
2387 lpattern = build_string (pattern);
2389 /* Get the list of fonts matching PATTERN. */
2390 #ifdef WINDOWSNT
2391 BLOCK_INPUT;
2392 lfonts = w32_list_fonts (f, lpattern, 0, nfonts);
2393 UNBLOCK_INPUT;
2394 #else
2395 lfonts = x_list_fonts (f, lpattern, -1, nfonts);
2396 #endif
2398 /* Make a copy of the font names we got from X, and
2399 split them into fields. */
2400 n = nignored = 0;
2401 for (tem = lfonts; CONSP (tem) && n < nfonts; tem = XCDR (tem))
2403 Lisp_Object elt, tail;
2404 char *name = XSTRING (XCAR (tem))->data;
2406 /* Ignore fonts matching a pattern from face-ignored-fonts. */
2407 for (tail = Vface_ignored_fonts; CONSP (tail); tail = XCDR (tail))
2409 elt = XCAR (tail);
2410 if (STRINGP (elt)
2411 && fast_c_string_match_ignore_case (elt, name) >= 0)
2412 break;
2414 if (!NILP (tail))
2416 ++nignored;
2417 continue;
2420 /* Make a copy of the font name. */
2421 fonts[n].name = xstrdup (name);
2423 if (split_font_name (f, fonts + n, 1))
2425 if (font_scalable_p (fonts + n)
2426 && !may_use_scalable_font_p (name))
2428 ++nignored;
2429 xfree (fonts[n].name);
2431 else
2432 ++n;
2434 else
2435 xfree (fonts[n].name);
2438 /* If no fonts found, try patterns from Valternate_fontname_alist. */
2439 if (n == 0 && try_alternatives_p)
2441 Lisp_Object list = Valternate_fontname_alist;
2443 while (CONSP (list))
2445 Lisp_Object entry = XCAR (list);
2446 if (CONSP (entry)
2447 && STRINGP (XCAR (entry))
2448 && strcmp (XSTRING (XCAR (entry))->data, pattern) == 0)
2449 break;
2450 list = XCDR (list);
2453 if (CONSP (list))
2455 Lisp_Object patterns = XCAR (list);
2456 Lisp_Object name;
2458 while (CONSP (patterns)
2459 /* If list is screwed up, give up. */
2460 && (name = XCAR (patterns),
2461 STRINGP (name))
2462 /* Ignore patterns equal to PATTERN because we tried that
2463 already with no success. */
2464 && (strcmp (XSTRING (name)->data, pattern) == 0
2465 || (n = x_face_list_fonts (f, XSTRING (name)->data,
2466 fonts, nfonts, 0),
2467 n == 0)))
2468 patterns = XCDR (patterns);
2472 return n;
2476 /* Determine fonts matching PATTERN on frame F. Sort resulting fonts
2477 using comparison function CMPFN. Value is the number of fonts
2478 found. If value is non-zero, *FONTS is set to a vector of
2479 font_name structures allocated from the heap containing matching
2480 fonts. Each element of *FONTS contains a name member that is also
2481 allocated from the heap. Font names in these structures are split
2482 into fields. Use free_font_names to free such an array. */
2484 static int
2485 sorted_font_list (f, pattern, cmpfn, fonts)
2486 struct frame *f;
2487 char *pattern;
2488 int (*cmpfn) P_ ((const void *, const void *));
2489 struct font_name **fonts;
2491 int nfonts;
2493 /* Get the list of fonts matching pattern. 100 should suffice. */
2494 nfonts = DEFAULT_FONT_LIST_LIMIT;
2495 if (INTEGERP (Vfont_list_limit) && XINT (Vfont_list_limit) > 0)
2496 nfonts = XFASTINT (Vfont_list_limit);
2498 *fonts = (struct font_name *) xmalloc (nfonts * sizeof **fonts);
2499 nfonts = x_face_list_fonts (f, pattern, *fonts, nfonts, 1);
2501 /* Sort the resulting array and return it in *FONTS. If no
2502 fonts were found, make sure to set *FONTS to null. */
2503 if (nfonts)
2504 sort_fonts (f, *fonts, nfonts, cmpfn);
2505 else
2507 xfree (*fonts);
2508 *fonts = NULL;
2511 return nfonts;
2515 /* Compare two font_name structures *A and *B. Value is analogous to
2516 strcmp. Sort order is given by the global variable
2517 font_sort_order. Font names are sorted so that, everything else
2518 being equal, fonts with a resolution closer to that of the frame on
2519 which they are used are listed first. The global variable
2520 font_frame is the frame on which we operate. */
2522 static int
2523 cmp_font_names (a, b)
2524 const void *a, *b;
2526 struct font_name *x = (struct font_name *) a;
2527 struct font_name *y = (struct font_name *) b;
2528 int cmp;
2530 /* All strings have been converted to lower-case by split_font_name,
2531 so we can use strcmp here. */
2532 cmp = strcmp (x->fields[XLFD_FAMILY], y->fields[XLFD_FAMILY]);
2533 if (cmp == 0)
2535 int i;
2537 for (i = 0; i < DIM (font_sort_order) && cmp == 0; ++i)
2539 int j = font_sort_order[i];
2540 cmp = x->numeric[j] - y->numeric[j];
2543 if (cmp == 0)
2545 /* Everything else being equal, we prefer fonts with an
2546 y-resolution closer to that of the frame. */
2547 int resy = FRAME_X_DISPLAY_INFO (font_frame)->resy;
2548 int x_resy = x->numeric[XLFD_RESY];
2549 int y_resy = y->numeric[XLFD_RESY];
2550 cmp = abs (resy - x_resy) - abs (resy - y_resy);
2554 return cmp;
2558 /* Get a sorted list of fonts of family FAMILY on frame F. If PATTERN
2559 is non-nil list fonts matching that pattern. Otherwise, if
2560 REGISTRY is non-nil return only fonts with that registry, otherwise
2561 return fonts of any registry. Set *FONTS to a vector of font_name
2562 structures allocated from the heap containing the fonts found.
2563 Value is the number of fonts found. */
2565 static int
2566 font_list_1 (f, pattern, family, registry, fonts)
2567 struct frame *f;
2568 Lisp_Object pattern, family, registry;
2569 struct font_name **fonts;
2571 char *pattern_str, *family_str, *registry_str;
2573 if (NILP (pattern))
2575 family_str = (NILP (family) ? "*" : (char *) XSTRING (family)->data);
2576 registry_str = (NILP (registry) ? "*" : (char *) XSTRING (registry)->data);
2578 pattern_str = (char *) alloca (strlen (family_str)
2579 + strlen (registry_str)
2580 + 10);
2581 strcpy (pattern_str, index (family_str, '-') ? "-" : "-*-");
2582 strcat (pattern_str, family_str);
2583 strcat (pattern_str, "-*-");
2584 strcat (pattern_str, registry_str);
2585 if (!index (registry_str, '-'))
2587 if (registry_str[strlen (registry_str) - 1] == '*')
2588 strcat (pattern_str, "-*");
2589 else
2590 strcat (pattern_str, "*-*");
2593 else
2594 pattern_str = (char *) XSTRING (pattern)->data;
2596 return sorted_font_list (f, pattern_str, cmp_font_names, fonts);
2600 /* Concatenate font list FONTS1 and FONTS2. FONTS1 and FONTS2
2601 contains NFONTS1 fonts and NFONTS2 fonts respectively. Return a
2602 pointer to a newly allocated font list. FONTS1 and FONTS2 are
2603 freed. */
2605 static struct font_name *
2606 concat_font_list (fonts1, nfonts1, fonts2, nfonts2)
2607 struct font_name *fonts1, *fonts2;
2608 int nfonts1, nfonts2;
2610 int new_nfonts = nfonts1 + nfonts2;
2611 struct font_name *new_fonts;
2613 new_fonts = (struct font_name *) xmalloc (sizeof *new_fonts * new_nfonts);
2614 bcopy (fonts1, new_fonts, sizeof *new_fonts * nfonts1);
2615 bcopy (fonts2, new_fonts + nfonts1, sizeof *new_fonts * nfonts2);
2616 xfree (fonts1);
2617 xfree (fonts2);
2618 return new_fonts;
2622 /* Get a sorted list of fonts of family FAMILY on frame F.
2624 If PATTERN is non-nil list fonts matching that pattern.
2626 If REGISTRY is non-nil, return fonts with that registry and the
2627 alternative registries from Vface_alternative_font_registry_alist.
2629 If REGISTRY is nil return fonts of any registry.
2631 Set *FONTS to a vector of font_name structures allocated from the
2632 heap containing the fonts found. Value is the number of fonts
2633 found. */
2635 static int
2636 font_list (f, pattern, family, registry, fonts)
2637 struct frame *f;
2638 Lisp_Object pattern, family, registry;
2639 struct font_name **fonts;
2641 int nfonts = font_list_1 (f, pattern, family, registry, fonts);
2643 if (!NILP (registry)
2644 && CONSP (Vface_alternative_font_registry_alist))
2646 Lisp_Object alter;
2648 alter = Fassoc (registry, Vface_alternative_font_registry_alist);
2649 if (CONSP (alter))
2651 int reg_prio, i;
2653 for (alter = XCDR (alter), reg_prio = 1;
2654 CONSP (alter);
2655 alter = XCDR (alter), reg_prio++)
2656 if (STRINGP (XCAR (alter)))
2658 int nfonts2;
2659 struct font_name *fonts2;
2661 nfonts2 = font_list_1 (f, pattern, family, XCAR (alter),
2662 &fonts2);
2663 for (i = 0; i < nfonts2; i++)
2664 fonts2[i].registry_priority = reg_prio;
2665 *fonts = (nfonts > 0
2666 ? concat_font_list (*fonts, nfonts, fonts2, nfonts2)
2667 : fonts2);
2668 nfonts += nfonts2;
2673 return nfonts;
2677 /* Remove elements from LIST whose cars are `equal'. Called from
2678 x-family-fonts and x-font-family-list to remove duplicate font
2679 entries. */
2681 static void
2682 remove_duplicates (list)
2683 Lisp_Object list;
2685 Lisp_Object tail = list;
2687 while (!NILP (tail) && !NILP (XCDR (tail)))
2689 Lisp_Object next = XCDR (tail);
2690 if (!NILP (Fequal (XCAR (next), XCAR (tail))))
2691 XSETCDR (tail, XCDR (next));
2692 else
2693 tail = XCDR (tail);
2698 DEFUN ("x-family-fonts", Fx_family_fonts, Sx_family_fonts, 0, 2, 0,
2699 doc: /* Return a list of available fonts of family FAMILY on FRAME.
2700 If FAMILY is omitted or nil, list all families.
2701 Otherwise, FAMILY must be a string, possibly containing wildcards
2702 `?' and `*'.
2703 If FRAME is omitted or nil, use the selected frame.
2704 Each element of the result is a vector [FAMILY WIDTH POINT-SIZE WEIGHT
2705 SLANT FIXED-P FULL REGISTRY-AND-ENCODING].
2706 FAMILY is the font family name. POINT-SIZE is the size of the
2707 font in 1/10 pt. WIDTH, WEIGHT, and SLANT are symbols describing the
2708 width, weight and slant of the font. These symbols are the same as for
2709 face attributes. FIXED-P is non-nil if the font is fixed-pitch.
2710 FULL is the full name of the font, and REGISTRY-AND-ENCODING is a string
2711 giving the registry and encoding of the font.
2712 The result list is sorted according to the current setting of
2713 the face font sort order. */)
2714 (family, frame)
2715 Lisp_Object family, frame;
2717 struct frame *f = check_x_frame (frame);
2718 struct font_name *fonts;
2719 int i, nfonts;
2720 Lisp_Object result;
2721 struct gcpro gcpro1;
2723 if (!NILP (family))
2724 CHECK_STRING (family);
2726 result = Qnil;
2727 GCPRO1 (result);
2728 nfonts = font_list (f, Qnil, family, Qnil, &fonts);
2729 for (i = nfonts - 1; i >= 0; --i)
2731 Lisp_Object v = Fmake_vector (make_number (8), Qnil);
2732 char *tem;
2734 ASET (v, 0, build_string (fonts[i].fields[XLFD_FAMILY]));
2735 ASET (v, 1, xlfd_symbolic_swidth (fonts + i));
2736 ASET (v, 2, make_number (xlfd_point_size (f, fonts + i)));
2737 ASET (v, 3, xlfd_symbolic_weight (fonts + i));
2738 ASET (v, 4, xlfd_symbolic_slant (fonts + i));
2739 ASET (v, 5, xlfd_fixed_p (fonts + i) ? Qt : Qnil);
2740 tem = build_font_name (fonts + i);
2741 ASET (v, 6, build_string (tem));
2742 sprintf (tem, "%s-%s", fonts[i].fields[XLFD_REGISTRY],
2743 fonts[i].fields[XLFD_ENCODING]);
2744 ASET (v, 7, build_string (tem));
2745 xfree (tem);
2747 result = Fcons (v, result);
2750 remove_duplicates (result);
2751 free_font_names (fonts, nfonts);
2752 UNGCPRO;
2753 return result;
2757 DEFUN ("x-font-family-list", Fx_font_family_list, Sx_font_family_list,
2758 0, 1, 0,
2759 doc: /* Return a list of available font families on FRAME.
2760 If FRAME is omitted or nil, use the selected frame.
2761 Value is a list of conses (FAMILY . FIXED-P) where FAMILY
2762 is a font family, and FIXED-P is non-nil if fonts of that family
2763 are fixed-pitch. */)
2764 (frame)
2765 Lisp_Object frame;
2767 struct frame *f = check_x_frame (frame);
2768 int nfonts, i;
2769 struct font_name *fonts;
2770 Lisp_Object result;
2771 struct gcpro gcpro1;
2772 int count = specpdl_ptr - specpdl;
2773 int limit;
2775 /* Let's consider all fonts. Increase the limit for matching
2776 fonts until we have them all. */
2777 for (limit = 500;;)
2779 specbind (intern ("font-list-limit"), make_number (limit));
2780 nfonts = font_list (f, Qnil, Qnil, Qnil, &fonts);
2782 if (nfonts == limit)
2784 free_font_names (fonts, nfonts);
2785 limit *= 2;
2787 else
2788 break;
2791 result = Qnil;
2792 GCPRO1 (result);
2793 for (i = nfonts - 1; i >= 0; --i)
2794 result = Fcons (Fcons (build_string (fonts[i].fields[XLFD_FAMILY]),
2795 xlfd_fixed_p (fonts + i) ? Qt : Qnil),
2796 result);
2798 remove_duplicates (result);
2799 free_font_names (fonts, nfonts);
2800 UNGCPRO;
2801 return unbind_to (count, result);
2805 DEFUN ("x-list-fonts", Fx_list_fonts, Sx_list_fonts, 1, 5, 0,
2806 doc: /* Return a list of the names of available fonts matching PATTERN.
2807 If optional arguments FACE and FRAME are specified, return only fonts
2808 the same size as FACE on FRAME.
2809 PATTERN is a string, perhaps with wildcard characters;
2810 the * character matches any substring, and
2811 the ? character matches any single character.
2812 PATTERN is case-insensitive.
2813 FACE is a face name--a symbol.
2815 The return value is a list of strings, suitable as arguments to
2816 set-face-font.
2818 Fonts Emacs can't use may or may not be excluded
2819 even if they match PATTERN and FACE.
2820 The optional fourth argument MAXIMUM sets a limit on how many
2821 fonts to match. The first MAXIMUM fonts are reported.
2822 The optional fifth argument WIDTH, if specified, is a number of columns
2823 occupied by a character of a font. In that case, return only fonts
2824 the WIDTH times as wide as FACE on FRAME. */)
2825 (pattern, face, frame, maximum, width)
2826 Lisp_Object pattern, face, frame, maximum, width;
2828 struct frame *f;
2829 int size;
2830 int maxnames;
2832 check_x ();
2833 CHECK_STRING (pattern);
2835 if (NILP (maximum))
2836 maxnames = 2000;
2837 else
2839 CHECK_NATNUM (maximum);
2840 maxnames = XINT (maximum);
2843 if (!NILP (width))
2844 CHECK_NUMBER (width);
2846 /* We can't simply call check_x_frame because this function may be
2847 called before any frame is created. */
2848 f = frame_or_selected_frame (frame, 2);
2849 if (!FRAME_WINDOW_P (f))
2851 /* Perhaps we have not yet created any frame. */
2852 f = NULL;
2853 face = Qnil;
2856 /* Determine the width standard for comparison with the fonts we find. */
2858 if (NILP (face))
2859 size = 0;
2860 else
2862 /* This is of limited utility since it works with character
2863 widths. Keep it for compatibility. --gerd. */
2864 int face_id = lookup_named_face (f, face, 0);
2865 struct face *face = (face_id < 0
2866 ? NULL
2867 : FACE_FROM_ID (f, face_id));
2869 if (face && face->font)
2870 size = FONT_WIDTH (face->font);
2871 else
2872 size = FONT_WIDTH (FRAME_FONT (f));
2874 if (!NILP (width))
2875 size *= XINT (width);
2879 Lisp_Object args[2];
2881 args[0] = x_list_fonts (f, pattern, size, maxnames);
2882 if (f == NULL)
2883 /* We don't have to check fontsets. */
2884 return args[0];
2885 args[1] = list_fontsets (f, pattern, size);
2886 return Fnconc (2, args);
2890 #endif /* HAVE_WINDOW_SYSTEM */
2894 /***********************************************************************
2895 Lisp Faces
2896 ***********************************************************************/
2898 /* Access face attributes of face LFACE, a Lisp vector. */
2900 #define LFACE_FAMILY(LFACE) AREF ((LFACE), LFACE_FAMILY_INDEX)
2901 #define LFACE_HEIGHT(LFACE) AREF ((LFACE), LFACE_HEIGHT_INDEX)
2902 #define LFACE_WEIGHT(LFACE) AREF ((LFACE), LFACE_WEIGHT_INDEX)
2903 #define LFACE_SLANT(LFACE) AREF ((LFACE), LFACE_SLANT_INDEX)
2904 #define LFACE_UNDERLINE(LFACE) AREF ((LFACE), LFACE_UNDERLINE_INDEX)
2905 #define LFACE_INVERSE(LFACE) AREF ((LFACE), LFACE_INVERSE_INDEX)
2906 #define LFACE_FOREGROUND(LFACE) AREF ((LFACE), LFACE_FOREGROUND_INDEX)
2907 #define LFACE_BACKGROUND(LFACE) AREF ((LFACE), LFACE_BACKGROUND_INDEX)
2908 #define LFACE_STIPPLE(LFACE) AREF ((LFACE), LFACE_STIPPLE_INDEX)
2909 #define LFACE_SWIDTH(LFACE) AREF ((LFACE), LFACE_SWIDTH_INDEX)
2910 #define LFACE_OVERLINE(LFACE) AREF ((LFACE), LFACE_OVERLINE_INDEX)
2911 #define LFACE_STRIKE_THROUGH(LFACE) AREF ((LFACE), LFACE_STRIKE_THROUGH_INDEX)
2912 #define LFACE_BOX(LFACE) AREF ((LFACE), LFACE_BOX_INDEX)
2913 #define LFACE_FONT(LFACE) AREF ((LFACE), LFACE_FONT_INDEX)
2914 #define LFACE_INHERIT(LFACE) AREF ((LFACE), LFACE_INHERIT_INDEX)
2915 #define LFACE_AVGWIDTH(LFACE) AREF ((LFACE), LFACE_AVGWIDTH_INDEX)
2917 /* Non-zero if LFACE is a Lisp face. A Lisp face is a vector of size
2918 LFACE_VECTOR_SIZE which has the symbol `face' in slot 0. */
2920 #define LFACEP(LFACE) \
2921 (VECTORP (LFACE) \
2922 && XVECTOR (LFACE)->size == LFACE_VECTOR_SIZE \
2923 && EQ (AREF (LFACE, 0), Qface))
2926 #if GLYPH_DEBUG
2928 /* Check consistency of Lisp face attribute vector ATTRS. */
2930 static void
2931 check_lface_attrs (attrs)
2932 Lisp_Object *attrs;
2934 xassert (UNSPECIFIEDP (attrs[LFACE_FAMILY_INDEX])
2935 || STRINGP (attrs[LFACE_FAMILY_INDEX]));
2936 xassert (UNSPECIFIEDP (attrs[LFACE_SWIDTH_INDEX])
2937 || SYMBOLP (attrs[LFACE_SWIDTH_INDEX]));
2938 xassert (UNSPECIFIEDP (attrs[LFACE_AVGWIDTH_INDEX])
2939 || INTEGERP (attrs[LFACE_AVGWIDTH_INDEX]));
2940 xassert (UNSPECIFIEDP (attrs[LFACE_HEIGHT_INDEX])
2941 || INTEGERP (attrs[LFACE_HEIGHT_INDEX])
2942 || FLOATP (attrs[LFACE_HEIGHT_INDEX])
2943 || FUNCTIONP (attrs[LFACE_HEIGHT_INDEX]));
2944 xassert (UNSPECIFIEDP (attrs[LFACE_WEIGHT_INDEX])
2945 || SYMBOLP (attrs[LFACE_WEIGHT_INDEX]));
2946 xassert (UNSPECIFIEDP (attrs[LFACE_SLANT_INDEX])
2947 || SYMBOLP (attrs[LFACE_SLANT_INDEX]));
2948 xassert (UNSPECIFIEDP (attrs[LFACE_UNDERLINE_INDEX])
2949 || SYMBOLP (attrs[LFACE_UNDERLINE_INDEX])
2950 || STRINGP (attrs[LFACE_UNDERLINE_INDEX]));
2951 xassert (UNSPECIFIEDP (attrs[LFACE_OVERLINE_INDEX])
2952 || SYMBOLP (attrs[LFACE_OVERLINE_INDEX])
2953 || STRINGP (attrs[LFACE_OVERLINE_INDEX]));
2954 xassert (UNSPECIFIEDP (attrs[LFACE_STRIKE_THROUGH_INDEX])
2955 || SYMBOLP (attrs[LFACE_STRIKE_THROUGH_INDEX])
2956 || STRINGP (attrs[LFACE_STRIKE_THROUGH_INDEX]));
2957 xassert (UNSPECIFIEDP (attrs[LFACE_BOX_INDEX])
2958 || SYMBOLP (attrs[LFACE_BOX_INDEX])
2959 || STRINGP (attrs[LFACE_BOX_INDEX])
2960 || INTEGERP (attrs[LFACE_BOX_INDEX])
2961 || CONSP (attrs[LFACE_BOX_INDEX]));
2962 xassert (UNSPECIFIEDP (attrs[LFACE_INVERSE_INDEX])
2963 || SYMBOLP (attrs[LFACE_INVERSE_INDEX]));
2964 xassert (UNSPECIFIEDP (attrs[LFACE_FOREGROUND_INDEX])
2965 || STRINGP (attrs[LFACE_FOREGROUND_INDEX]));
2966 xassert (UNSPECIFIEDP (attrs[LFACE_BACKGROUND_INDEX])
2967 || STRINGP (attrs[LFACE_BACKGROUND_INDEX]));
2968 xassert (UNSPECIFIEDP (attrs[LFACE_INHERIT_INDEX])
2969 || NILP (attrs[LFACE_INHERIT_INDEX])
2970 || SYMBOLP (attrs[LFACE_INHERIT_INDEX])
2971 || CONSP (attrs[LFACE_INHERIT_INDEX]));
2972 #ifdef HAVE_WINDOW_SYSTEM
2973 xassert (UNSPECIFIEDP (attrs[LFACE_STIPPLE_INDEX])
2974 || SYMBOLP (attrs[LFACE_STIPPLE_INDEX])
2975 || !NILP (Fbitmap_spec_p (attrs[LFACE_STIPPLE_INDEX])));
2976 xassert (UNSPECIFIEDP (attrs[LFACE_FONT_INDEX])
2977 || NILP (attrs[LFACE_FONT_INDEX])
2978 || STRINGP (attrs[LFACE_FONT_INDEX]));
2979 #endif
2983 /* Check consistency of attributes of Lisp face LFACE (a Lisp vector). */
2985 static void
2986 check_lface (lface)
2987 Lisp_Object lface;
2989 if (!NILP (lface))
2991 xassert (LFACEP (lface));
2992 check_lface_attrs (XVECTOR (lface)->contents);
2996 #else /* GLYPH_DEBUG == 0 */
2998 #define check_lface_attrs(attrs) (void) 0
2999 #define check_lface(lface) (void) 0
3001 #endif /* GLYPH_DEBUG == 0 */
3004 /* Resolve face name FACE_NAME. If FACE_NAME is a string, intern it
3005 to make it a symvol. If FACE_NAME is an alias for another face,
3006 return that face's name. */
3008 static Lisp_Object
3009 resolve_face_name (face_name)
3010 Lisp_Object face_name;
3012 Lisp_Object aliased;
3014 if (STRINGP (face_name))
3015 face_name = intern (XSTRING (face_name)->data);
3017 while (SYMBOLP (face_name))
3019 aliased = Fget (face_name, Qface_alias);
3020 if (NILP (aliased))
3021 break;
3022 else
3023 face_name = aliased;
3026 return face_name;
3030 /* Return the face definition of FACE_NAME on frame F. F null means
3031 return the definition for new frames. FACE_NAME may be a string or
3032 a symbol (apparently Emacs 20.2 allowed strings as face names in
3033 face text properties; Ediff uses that). If FACE_NAME is an alias
3034 for another face, return that face's definition. If SIGNAL_P is
3035 non-zero, signal an error if FACE_NAME is not a valid face name.
3036 If SIGNAL_P is zero, value is nil if FACE_NAME is not a valid face
3037 name. */
3039 static INLINE Lisp_Object
3040 lface_from_face_name (f, face_name, signal_p)
3041 struct frame *f;
3042 Lisp_Object face_name;
3043 int signal_p;
3045 Lisp_Object lface;
3047 face_name = resolve_face_name (face_name);
3049 if (f)
3050 lface = assq_no_quit (face_name, f->face_alist);
3051 else
3052 lface = assq_no_quit (face_name, Vface_new_frame_defaults);
3054 if (CONSP (lface))
3055 lface = XCDR (lface);
3056 else if (signal_p)
3057 signal_error ("Invalid face", face_name);
3059 check_lface (lface);
3060 return lface;
3064 /* Get face attributes of face FACE_NAME from frame-local faces on
3065 frame F. Store the resulting attributes in ATTRS which must point
3066 to a vector of Lisp_Objects of size LFACE_VECTOR_SIZE. If SIGNAL_P
3067 is non-zero, signal an error if FACE_NAME does not name a face.
3068 Otherwise, value is zero if FACE_NAME is not a face. */
3070 static INLINE int
3071 get_lface_attributes (f, face_name, attrs, signal_p)
3072 struct frame *f;
3073 Lisp_Object face_name;
3074 Lisp_Object *attrs;
3075 int signal_p;
3077 Lisp_Object lface;
3078 int success_p;
3080 lface = lface_from_face_name (f, face_name, signal_p);
3081 if (!NILP (lface))
3083 bcopy (XVECTOR (lface)->contents, attrs,
3084 LFACE_VECTOR_SIZE * sizeof *attrs);
3085 success_p = 1;
3087 else
3088 success_p = 0;
3090 return success_p;
3094 /* Non-zero if all attributes in face attribute vector ATTRS are
3095 specified, i.e. are non-nil. */
3097 static int
3098 lface_fully_specified_p (attrs)
3099 Lisp_Object *attrs;
3101 int i;
3103 for (i = 1; i < LFACE_VECTOR_SIZE; ++i)
3104 if (i != LFACE_FONT_INDEX && i != LFACE_INHERIT_INDEX
3105 && i != LFACE_AVGWIDTH_INDEX)
3106 if (UNSPECIFIEDP (attrs[i]))
3107 break;
3109 return i == LFACE_VECTOR_SIZE;
3112 #ifdef HAVE_WINDOW_SYSTEM
3114 /* Set font-related attributes of Lisp face LFACE from the fullname of
3115 the font opened by FONTNAME. If FORCE_P is zero, set only
3116 unspecified attributes of LFACE. The exception is `font'
3117 attribute. It is set to FONTNAME as is regardless of FORCE_P.
3119 If FONTNAME is not available on frame F,
3120 return 0 if MAY_FAIL_P is non-zero, otherwise abort.
3121 If the fullname is not in a valid XLFD format,
3122 return 0 if MAY_FAIL_P is non-zero, otherwise set normal values
3123 in LFACE and return 1.
3124 Otherwise, return 1. */
3126 static int
3127 set_lface_from_font_name (f, lface, fontname, force_p, may_fail_p)
3128 struct frame *f;
3129 Lisp_Object lface;
3130 Lisp_Object fontname;
3131 int force_p, may_fail_p;
3133 struct font_name font;
3134 char *buffer;
3135 int pt;
3136 int have_xlfd_p;
3137 int fontset;
3138 char *font_name = XSTRING (fontname)->data;
3139 struct font_info *font_info;
3141 /* If FONTNAME is actually a fontset name, get ASCII font name of it. */
3142 fontset = fs_query_fontset (fontname, 0);
3143 if (fontset >= 0)
3144 font_name = XSTRING (fontset_ascii (fontset))->data;
3146 /* Check if FONT_NAME is surely available on the system. Usually
3147 FONT_NAME is already cached for the frame F and FS_LOAD_FONT
3148 returns quickly. But, even if FONT_NAME is not yet cached,
3149 caching it now is not futail because we anyway load the font
3150 later. */
3151 BLOCK_INPUT;
3152 font_info = FS_LOAD_FONT (f, 0, font_name, -1);
3153 UNBLOCK_INPUT;
3155 if (!font_info)
3157 if (may_fail_p)
3158 return 0;
3159 abort ();
3162 font.name = STRDUPA (font_info->full_name);
3163 have_xlfd_p = split_font_name (f, &font, 1);
3165 /* Set attributes only if unspecified, otherwise face defaults for
3166 new frames would never take effect. If we couldn't get a font
3167 name conforming to XLFD, set normal values. */
3169 if (force_p || UNSPECIFIEDP (LFACE_FAMILY (lface)))
3171 Lisp_Object val;
3172 if (have_xlfd_p)
3174 buffer = (char *) alloca (strlen (font.fields[XLFD_FAMILY])
3175 + strlen (font.fields[XLFD_FOUNDRY])
3176 + 2);
3177 sprintf (buffer, "%s-%s", font.fields[XLFD_FOUNDRY],
3178 font.fields[XLFD_FAMILY]);
3179 val = build_string (buffer);
3181 else
3182 val = build_string ("*");
3183 LFACE_FAMILY (lface) = val;
3186 if (force_p || UNSPECIFIEDP (LFACE_HEIGHT (lface)))
3188 if (have_xlfd_p)
3189 pt = xlfd_point_size (f, &font);
3190 else
3191 pt = pixel_point_size (f, font_info->height * 10);
3192 xassert (pt > 0);
3193 LFACE_HEIGHT (lface) = make_number (pt);
3196 if (force_p || UNSPECIFIEDP (LFACE_SWIDTH (lface)))
3197 LFACE_SWIDTH (lface)
3198 = have_xlfd_p ? xlfd_symbolic_swidth (&font) : Qnormal;
3200 if (force_p || UNSPECIFIEDP (LFACE_AVGWIDTH (lface)))
3201 LFACE_AVGWIDTH (lface)
3202 = (have_xlfd_p
3203 ? make_number (font.numeric[XLFD_AVGWIDTH])
3204 : Qunspecified);
3206 if (force_p || UNSPECIFIEDP (LFACE_WEIGHT (lface)))
3207 LFACE_WEIGHT (lface)
3208 = have_xlfd_p ? xlfd_symbolic_weight (&font) : Qnormal;
3210 if (force_p || UNSPECIFIEDP (LFACE_SLANT (lface)))
3211 LFACE_SLANT (lface)
3212 = have_xlfd_p ? xlfd_symbolic_slant (&font) : Qnormal;
3214 LFACE_FONT (lface) = fontname;
3216 return 1;
3219 #endif /* HAVE_WINDOW_SYSTEM */
3222 /* Merges the face height FROM with the face height TO, and returns the
3223 merged height. If FROM is an invalid height, then INVALID is
3224 returned instead. FROM and TO may be either absolute face heights or
3225 `relative' heights; the returned value is always an absolute height
3226 unless both FROM and TO are relative. GCPRO is a lisp value that
3227 will be protected from garbage-collection if this function makes a
3228 call into lisp. */
3230 Lisp_Object
3231 merge_face_heights (from, to, invalid, gcpro)
3232 Lisp_Object from, to, invalid, gcpro;
3234 Lisp_Object result = invalid;
3236 if (INTEGERP (from))
3237 /* FROM is absolute, just use it as is. */
3238 result = from;
3239 else if (FLOATP (from))
3240 /* FROM is a scale, use it to adjust TO. */
3242 if (INTEGERP (to))
3243 /* relative X absolute => absolute */
3244 result = make_number ((EMACS_INT)(XFLOAT_DATA (from) * XINT (to)));
3245 else if (FLOATP (to))
3246 /* relative X relative => relative */
3247 result = make_float (XFLOAT_DATA (from) * XFLOAT_DATA (to));
3249 else if (FUNCTIONP (from))
3250 /* FROM is a function, which use to adjust TO. */
3252 /* Call function with current height as argument.
3253 From is the new height. */
3254 Lisp_Object args[2];
3255 struct gcpro gcpro1;
3257 GCPRO1 (gcpro);
3259 args[0] = from;
3260 args[1] = to;
3261 result = safe_call (2, args);
3263 UNGCPRO;
3265 /* Ensure that if TO was absolute, so is the result. */
3266 if (INTEGERP (to) && !INTEGERP (result))
3267 result = invalid;
3270 return result;
3274 /* Merge two Lisp face attribute vectors on frame F, FROM and TO, and
3275 store the resulting attributes in TO, which must be already be
3276 completely specified and contain only absolute attributes. Every
3277 specified attribute of FROM overrides the corresponding attribute of
3278 TO; relative attributes in FROM are merged with the absolute value in
3279 TO and replace it. CYCLE_CHECK is used internally to detect loops in
3280 face inheritance; it should be Qnil when called from other places. */
3282 static INLINE void
3283 merge_face_vectors (f, from, to, cycle_check)
3284 struct frame *f;
3285 Lisp_Object *from, *to;
3286 Lisp_Object cycle_check;
3288 int i;
3290 /* If FROM inherits from some other faces, merge their attributes into
3291 TO before merging FROM's direct attributes. Note that an :inherit
3292 attribute of `unspecified' is the same as one of nil; we never
3293 merge :inherit attributes, so nil is more correct, but lots of
3294 other code uses `unspecified' as a generic value for face attributes. */
3295 if (!UNSPECIFIEDP (from[LFACE_INHERIT_INDEX])
3296 && !NILP (from[LFACE_INHERIT_INDEX]))
3297 merge_face_inheritance (f, from[LFACE_INHERIT_INDEX], to, cycle_check);
3299 /* If TO specifies a :font attribute, and FROM specifies some
3300 font-related attribute, we need to clear TO's :font attribute
3301 (because it will be inconsistent with whatever FROM specifies, and
3302 FROM takes precedence). */
3303 if (!NILP (to[LFACE_FONT_INDEX])
3304 && (!UNSPECIFIEDP (from[LFACE_FAMILY_INDEX])
3305 || !UNSPECIFIEDP (from[LFACE_HEIGHT_INDEX])
3306 || !UNSPECIFIEDP (from[LFACE_WEIGHT_INDEX])
3307 || !UNSPECIFIEDP (from[LFACE_SLANT_INDEX])
3308 || !UNSPECIFIEDP (from[LFACE_SWIDTH_INDEX])
3309 || !UNSPECIFIEDP (from[LFACE_AVGWIDTH_INDEX])))
3310 to[LFACE_FONT_INDEX] = Qnil;
3312 for (i = 1; i < LFACE_VECTOR_SIZE; ++i)
3313 if (!UNSPECIFIEDP (from[i]))
3315 if (i == LFACE_HEIGHT_INDEX && !INTEGERP (from[i]))
3316 to[i] = merge_face_heights (from[i], to[i], to[i], cycle_check);
3317 else
3318 to[i] = from[i];
3321 /* TO is always an absolute face, which should inherit from nothing.
3322 We blindly copy the :inherit attribute above and fix it up here. */
3323 to[LFACE_INHERIT_INDEX] = Qnil;
3327 /* Checks the `cycle check' variable CHECK to see if it indicates that
3328 EL is part of a cycle; CHECK must be either Qnil or a value returned
3329 by an earlier use of CYCLE_CHECK. SUSPICIOUS is the number of
3330 elements after which a cycle might be suspected; after that many
3331 elements, this macro begins consing in order to keep more precise
3332 track of elements.
3334 Returns nil if a cycle was detected, otherwise a new value for CHECK
3335 that includes EL.
3337 CHECK is evaluated multiple times, EL and SUSPICIOUS 0 or 1 times, so
3338 the caller should make sure that's ok. */
3340 #define CYCLE_CHECK(check, el, suspicious) \
3341 (NILP (check) \
3342 ? make_number (0) \
3343 : (INTEGERP (check) \
3344 ? (XFASTINT (check) < (suspicious) \
3345 ? make_number (XFASTINT (check) + 1) \
3346 : Fcons (el, Qnil)) \
3347 : (!NILP (Fmemq ((el), (check))) \
3348 ? Qnil \
3349 : Fcons ((el), (check)))))
3352 /* Merge face attributes from the face on frame F whose name is
3353 INHERITS, into the vector of face attributes TO; INHERITS may also be
3354 a list of face names, in which case they are applied in order.
3355 CYCLE_CHECK is used to detect loops in face inheritance.
3356 Returns true if any of the inherited attributes are `font-related'. */
3358 static void
3359 merge_face_inheritance (f, inherit, to, cycle_check)
3360 struct frame *f;
3361 Lisp_Object inherit;
3362 Lisp_Object *to;
3363 Lisp_Object cycle_check;
3365 if (SYMBOLP (inherit) && !EQ (inherit, Qunspecified))
3366 /* Inherit from the named face INHERIT. */
3368 Lisp_Object lface;
3370 /* Make sure we're not in an inheritance loop. */
3371 cycle_check = CYCLE_CHECK (cycle_check, inherit, 15);
3372 if (NILP (cycle_check))
3373 /* Cycle detected, ignore any further inheritance. */
3374 return;
3376 lface = lface_from_face_name (f, inherit, 0);
3377 if (!NILP (lface))
3378 merge_face_vectors (f, XVECTOR (lface)->contents, to, cycle_check);
3380 else if (CONSP (inherit))
3381 /* Handle a list of inherited faces by calling ourselves recursively
3382 on each element. Note that we only do so for symbol elements, so
3383 it's not possible to infinitely recurse. */
3385 while (CONSP (inherit))
3387 if (SYMBOLP (XCAR (inherit)))
3388 merge_face_inheritance (f, XCAR (inherit), to, cycle_check);
3390 /* Check for a circular inheritance list. */
3391 cycle_check = CYCLE_CHECK (cycle_check, inherit, 15);
3392 if (NILP (cycle_check))
3393 /* Cycle detected. */
3394 break;
3396 inherit = XCDR (inherit);
3402 /* Given a Lisp face attribute vector TO and a Lisp object PROP that
3403 is a face property, determine the resulting face attributes on
3404 frame F, and store them in TO. PROP may be a single face
3405 specification or a list of such specifications. Each face
3406 specification can be
3408 1. A symbol or string naming a Lisp face.
3410 2. A property list of the form (KEYWORD VALUE ...) where each
3411 KEYWORD is a face attribute name, and value is an appropriate value
3412 for that attribute.
3414 3. Conses or the form (FOREGROUND-COLOR . COLOR) or
3415 (BACKGROUND-COLOR . COLOR) where COLOR is a color name. This is
3416 for compatibility with 20.2.
3418 Face specifications earlier in lists take precedence over later
3419 specifications. */
3421 static void
3422 merge_face_vector_with_property (f, to, prop)
3423 struct frame *f;
3424 Lisp_Object *to;
3425 Lisp_Object prop;
3427 if (CONSP (prop))
3429 Lisp_Object first = XCAR (prop);
3431 if (EQ (first, Qforeground_color)
3432 || EQ (first, Qbackground_color))
3434 /* One of (FOREGROUND-COLOR . COLOR) or (BACKGROUND-COLOR
3435 . COLOR). COLOR must be a string. */
3436 Lisp_Object color_name = XCDR (prop);
3437 Lisp_Object color = first;
3439 if (STRINGP (color_name))
3441 if (EQ (color, Qforeground_color))
3442 to[LFACE_FOREGROUND_INDEX] = color_name;
3443 else
3444 to[LFACE_BACKGROUND_INDEX] = color_name;
3446 else
3447 add_to_log ("Invalid face color", color_name, Qnil);
3449 else if (SYMBOLP (first)
3450 && *XSYMBOL (first)->name->data == ':')
3452 /* Assume this is the property list form. */
3453 while (CONSP (prop) && CONSP (XCDR (prop)))
3455 Lisp_Object keyword = XCAR (prop);
3456 Lisp_Object value = XCAR (XCDR (prop));
3458 if (EQ (keyword, QCfamily))
3460 if (STRINGP (value))
3461 to[LFACE_FAMILY_INDEX] = value;
3462 else
3463 add_to_log ("Invalid face font family", value, Qnil);
3465 else if (EQ (keyword, QCheight))
3467 Lisp_Object new_height =
3468 merge_face_heights (value, to[LFACE_HEIGHT_INDEX],
3469 Qnil, Qnil);
3471 if (NILP (new_height))
3472 add_to_log ("Invalid face font height", value, Qnil);
3473 else
3474 to[LFACE_HEIGHT_INDEX] = new_height;
3476 else if (EQ (keyword, QCweight))
3478 if (SYMBOLP (value)
3479 && face_numeric_weight (value) >= 0)
3480 to[LFACE_WEIGHT_INDEX] = value;
3481 else
3482 add_to_log ("Invalid face weight", value, Qnil);
3484 else if (EQ (keyword, QCslant))
3486 if (SYMBOLP (value)
3487 && face_numeric_slant (value) >= 0)
3488 to[LFACE_SLANT_INDEX] = value;
3489 else
3490 add_to_log ("Invalid face slant", value, Qnil);
3492 else if (EQ (keyword, QCunderline))
3494 if (EQ (value, Qt)
3495 || NILP (value)
3496 || STRINGP (value))
3497 to[LFACE_UNDERLINE_INDEX] = value;
3498 else
3499 add_to_log ("Invalid face underline", value, Qnil);
3501 else if (EQ (keyword, QCoverline))
3503 if (EQ (value, Qt)
3504 || NILP (value)
3505 || STRINGP (value))
3506 to[LFACE_OVERLINE_INDEX] = value;
3507 else
3508 add_to_log ("Invalid face overline", value, Qnil);
3510 else if (EQ (keyword, QCstrike_through))
3512 if (EQ (value, Qt)
3513 || NILP (value)
3514 || STRINGP (value))
3515 to[LFACE_STRIKE_THROUGH_INDEX] = value;
3516 else
3517 add_to_log ("Invalid face strike-through", value, Qnil);
3519 else if (EQ (keyword, QCbox))
3521 if (EQ (value, Qt))
3522 value = make_number (1);
3523 if (INTEGERP (value)
3524 || STRINGP (value)
3525 || CONSP (value)
3526 || NILP (value))
3527 to[LFACE_BOX_INDEX] = value;
3528 else
3529 add_to_log ("Invalid face box", value, Qnil);
3531 else if (EQ (keyword, QCinverse_video)
3532 || EQ (keyword, QCreverse_video))
3534 if (EQ (value, Qt) || NILP (value))
3535 to[LFACE_INVERSE_INDEX] = value;
3536 else
3537 add_to_log ("Invalid face inverse-video", value, Qnil);
3539 else if (EQ (keyword, QCforeground))
3541 if (STRINGP (value))
3542 to[LFACE_FOREGROUND_INDEX] = value;
3543 else
3544 add_to_log ("Invalid face foreground", value, Qnil);
3546 else if (EQ (keyword, QCbackground))
3548 if (STRINGP (value))
3549 to[LFACE_BACKGROUND_INDEX] = value;
3550 else
3551 add_to_log ("Invalid face background", value, Qnil);
3553 else if (EQ (keyword, QCstipple))
3555 #ifdef HAVE_X_WINDOWS
3556 Lisp_Object pixmap_p = Fbitmap_spec_p (value);
3557 if (!NILP (pixmap_p))
3558 to[LFACE_STIPPLE_INDEX] = value;
3559 else
3560 add_to_log ("Invalid face stipple", value, Qnil);
3561 #endif
3563 else if (EQ (keyword, QCwidth))
3565 if (SYMBOLP (value)
3566 && face_numeric_swidth (value) >= 0)
3567 to[LFACE_SWIDTH_INDEX] = value;
3568 else
3569 add_to_log ("Invalid face width", value, Qnil);
3571 else if (EQ (keyword, QCinherit))
3573 if (SYMBOLP (value))
3574 to[LFACE_INHERIT_INDEX] = value;
3575 else
3577 Lisp_Object tail;
3578 for (tail = value; CONSP (tail); tail = XCDR (tail))
3579 if (!SYMBOLP (XCAR (tail)))
3580 break;
3581 if (NILP (tail))
3582 to[LFACE_INHERIT_INDEX] = value;
3583 else
3584 add_to_log ("Invalid face inherit", value, Qnil);
3587 else
3588 add_to_log ("Invalid attribute %s in face property",
3589 keyword, Qnil);
3591 prop = XCDR (XCDR (prop));
3594 else
3596 /* This is a list of face specs. Specifications at the
3597 beginning of the list take precedence over later
3598 specifications, so we have to merge starting with the
3599 last specification. */
3600 Lisp_Object next = XCDR (prop);
3601 if (!NILP (next))
3602 merge_face_vector_with_property (f, to, next);
3603 merge_face_vector_with_property (f, to, first);
3606 else
3608 /* PROP ought to be a face name. */
3609 Lisp_Object lface = lface_from_face_name (f, prop, 0);
3610 if (NILP (lface))
3611 add_to_log ("Invalid face text property value: %s", prop, Qnil);
3612 else
3613 merge_face_vectors (f, XVECTOR (lface)->contents, to, Qnil);
3618 DEFUN ("internal-make-lisp-face", Finternal_make_lisp_face,
3619 Sinternal_make_lisp_face, 1, 2, 0,
3620 doc: /* Make FACE, a symbol, a Lisp face with all attributes nil.
3621 If FACE was not known as a face before, create a new one.
3622 If optional argument FRAME is specified, make a frame-local face
3623 for that frame. Otherwise operate on the global face definition.
3624 Value is a vector of face attributes. */)
3625 (face, frame)
3626 Lisp_Object face, frame;
3628 Lisp_Object global_lface, lface;
3629 struct frame *f;
3630 int i;
3632 CHECK_SYMBOL (face);
3633 global_lface = lface_from_face_name (NULL, face, 0);
3635 if (!NILP (frame))
3637 CHECK_LIVE_FRAME (frame);
3638 f = XFRAME (frame);
3639 lface = lface_from_face_name (f, face, 0);
3641 else
3642 f = NULL, lface = Qnil;
3644 /* Add a global definition if there is none. */
3645 if (NILP (global_lface))
3647 global_lface = Fmake_vector (make_number (LFACE_VECTOR_SIZE),
3648 Qunspecified);
3649 AREF (global_lface, 0) = Qface;
3650 Vface_new_frame_defaults = Fcons (Fcons (face, global_lface),
3651 Vface_new_frame_defaults);
3653 /* Assign the new Lisp face a unique ID. The mapping from Lisp
3654 face id to Lisp face is given by the vector lface_id_to_name.
3655 The mapping from Lisp face to Lisp face id is given by the
3656 property `face' of the Lisp face name. */
3657 if (next_lface_id == lface_id_to_name_size)
3659 int new_size = max (50, 2 * lface_id_to_name_size);
3660 int sz = new_size * sizeof *lface_id_to_name;
3661 lface_id_to_name = (Lisp_Object *) xrealloc (lface_id_to_name, sz);
3662 lface_id_to_name_size = new_size;
3665 lface_id_to_name[next_lface_id] = face;
3666 Fput (face, Qface, make_number (next_lface_id));
3667 ++next_lface_id;
3669 else if (f == NULL)
3670 for (i = 1; i < LFACE_VECTOR_SIZE; ++i)
3671 AREF (global_lface, i) = Qunspecified;
3673 /* Add a frame-local definition. */
3674 if (f)
3676 if (NILP (lface))
3678 lface = Fmake_vector (make_number (LFACE_VECTOR_SIZE),
3679 Qunspecified);
3680 AREF (lface, 0) = Qface;
3681 f->face_alist = Fcons (Fcons (face, lface), f->face_alist);
3683 else
3684 for (i = 1; i < LFACE_VECTOR_SIZE; ++i)
3685 AREF (lface, i) = Qunspecified;
3687 else
3688 lface = global_lface;
3690 /* Changing a named face means that all realized faces depending on
3691 that face are invalid. Since we cannot tell which realized faces
3692 depend on the face, make sure they are all removed. This is done
3693 by incrementing face_change_count. The next call to
3694 init_iterator will then free realized faces. */
3695 ++face_change_count;
3696 ++windows_or_buffers_changed;
3698 xassert (LFACEP (lface));
3699 check_lface (lface);
3700 return lface;
3704 DEFUN ("internal-lisp-face-p", Finternal_lisp_face_p,
3705 Sinternal_lisp_face_p, 1, 2, 0,
3706 doc: /* Return non-nil if FACE names a face.
3707 If optional second parameter FRAME is non-nil, check for the
3708 existence of a frame-local face with name FACE on that frame.
3709 Otherwise check for the existence of a global face. */)
3710 (face, frame)
3711 Lisp_Object face, frame;
3713 Lisp_Object lface;
3715 if (!NILP (frame))
3717 CHECK_LIVE_FRAME (frame);
3718 lface = lface_from_face_name (XFRAME (frame), face, 0);
3720 else
3721 lface = lface_from_face_name (NULL, face, 0);
3723 return lface;
3727 DEFUN ("internal-copy-lisp-face", Finternal_copy_lisp_face,
3728 Sinternal_copy_lisp_face, 4, 4, 0,
3729 doc: /* Copy face FROM to TO.
3730 If FRAME it t, copy the global face definition of FROM to the
3731 global face definition of TO. Otherwise, copy the frame-local
3732 definition of FROM on FRAME to the frame-local definition of TO
3733 on NEW-FRAME, or FRAME if NEW-FRAME is nil.
3735 Value is TO. */)
3736 (from, to, frame, new_frame)
3737 Lisp_Object from, to, frame, new_frame;
3739 Lisp_Object lface, copy;
3741 CHECK_SYMBOL (from);
3742 CHECK_SYMBOL (to);
3743 if (NILP (new_frame))
3744 new_frame = frame;
3746 if (EQ (frame, Qt))
3748 /* Copy global definition of FROM. We don't make copies of
3749 strings etc. because 20.2 didn't do it either. */
3750 lface = lface_from_face_name (NULL, from, 1);
3751 copy = Finternal_make_lisp_face (to, Qnil);
3753 else
3755 /* Copy frame-local definition of FROM. */
3756 CHECK_LIVE_FRAME (frame);
3757 CHECK_LIVE_FRAME (new_frame);
3758 lface = lface_from_face_name (XFRAME (frame), from, 1);
3759 copy = Finternal_make_lisp_face (to, new_frame);
3762 bcopy (XVECTOR (lface)->contents, XVECTOR (copy)->contents,
3763 LFACE_VECTOR_SIZE * sizeof (Lisp_Object));
3765 /* Changing a named face means that all realized faces depending on
3766 that face are invalid. Since we cannot tell which realized faces
3767 depend on the face, make sure they are all removed. This is done
3768 by incrementing face_change_count. The next call to
3769 init_iterator will then free realized faces. */
3770 ++face_change_count;
3771 ++windows_or_buffers_changed;
3773 return to;
3777 DEFUN ("internal-set-lisp-face-attribute", Finternal_set_lisp_face_attribute,
3778 Sinternal_set_lisp_face_attribute, 3, 4, 0,
3779 doc: /* Set attribute ATTR of FACE to VALUE.
3780 FRAME being a frame means change the face on that frame.
3781 FRAME nil means change the face of the selected frame.
3782 FRAME t means change the default for new frames.
3783 FRAME 0 means change the face on all frames, and change the default
3784 for new frames. */)
3785 (face, attr, value, frame)
3786 Lisp_Object face, attr, value, frame;
3788 Lisp_Object lface;
3789 Lisp_Object old_value = Qnil;
3790 /* Set 1 if ATTR is QCfont. */
3791 int font_attr_p = 0;
3792 /* Set 1 if ATTR is one of font-related attributes other than QCfont. */
3793 int font_related_attr_p = 0;
3795 CHECK_SYMBOL (face);
3796 CHECK_SYMBOL (attr);
3798 face = resolve_face_name (face);
3800 /* If FRAME is 0, change face on all frames, and change the
3801 default for new frames. */
3802 if (INTEGERP (frame) && XINT (frame) == 0)
3804 Lisp_Object tail;
3805 Finternal_set_lisp_face_attribute (face, attr, value, Qt);
3806 FOR_EACH_FRAME (tail, frame)
3807 Finternal_set_lisp_face_attribute (face, attr, value, frame);
3808 return face;
3811 /* Set lface to the Lisp attribute vector of FACE. */
3812 if (EQ (frame, Qt))
3813 lface = lface_from_face_name (NULL, face, 1);
3814 else
3816 if (NILP (frame))
3817 frame = selected_frame;
3819 CHECK_LIVE_FRAME (frame);
3820 lface = lface_from_face_name (XFRAME (frame), face, 0);
3822 /* If a frame-local face doesn't exist yet, create one. */
3823 if (NILP (lface))
3824 lface = Finternal_make_lisp_face (face, frame);
3827 if (EQ (attr, QCfamily))
3829 if (!UNSPECIFIEDP (value))
3831 CHECK_STRING (value);
3832 if (XSTRING (value)->size == 0)
3833 signal_error ("Invalid face family", value);
3835 old_value = LFACE_FAMILY (lface);
3836 LFACE_FAMILY (lface) = value;
3837 font_related_attr_p = 1;
3839 else if (EQ (attr, QCheight))
3841 if (!UNSPECIFIEDP (value))
3843 Lisp_Object test;
3845 test = (EQ (face, Qdefault)
3846 ? value
3847 /* The default face must have an absolute size,
3848 otherwise, we do a test merge with a random
3849 height to see if VALUE's ok. */
3850 : merge_face_heights (value, make_number (10), Qnil, Qnil));
3852 if (!INTEGERP (test) || XINT (test) <= 0)
3853 signal_error ("Invalid face height", value);
3856 old_value = LFACE_HEIGHT (lface);
3857 LFACE_HEIGHT (lface) = value;
3858 font_related_attr_p = 1;
3860 else if (EQ (attr, QCweight))
3862 if (!UNSPECIFIEDP (value))
3864 CHECK_SYMBOL (value);
3865 if (face_numeric_weight (value) < 0)
3866 signal_error ("Invalid face weight", value);
3868 old_value = LFACE_WEIGHT (lface);
3869 LFACE_WEIGHT (lface) = value;
3870 font_related_attr_p = 1;
3872 else if (EQ (attr, QCslant))
3874 if (!UNSPECIFIEDP (value))
3876 CHECK_SYMBOL (value);
3877 if (face_numeric_slant (value) < 0)
3878 signal_error ("Invalid face slant", value);
3880 old_value = LFACE_SLANT (lface);
3881 LFACE_SLANT (lface) = value;
3882 font_related_attr_p = 1;
3884 else if (EQ (attr, QCunderline))
3886 if (!UNSPECIFIEDP (value))
3887 if ((SYMBOLP (value)
3888 && !EQ (value, Qt)
3889 && !EQ (value, Qnil))
3890 /* Underline color. */
3891 || (STRINGP (value)
3892 && XSTRING (value)->size == 0))
3893 signal_error ("Invalid face underline", value);
3895 old_value = LFACE_UNDERLINE (lface);
3896 LFACE_UNDERLINE (lface) = value;
3898 else if (EQ (attr, QCoverline))
3900 if (!UNSPECIFIEDP (value))
3901 if ((SYMBOLP (value)
3902 && !EQ (value, Qt)
3903 && !EQ (value, Qnil))
3904 /* Overline color. */
3905 || (STRINGP (value)
3906 && XSTRING (value)->size == 0))
3907 signal_error ("Invalid face overline", value);
3909 old_value = LFACE_OVERLINE (lface);
3910 LFACE_OVERLINE (lface) = value;
3912 else if (EQ (attr, QCstrike_through))
3914 if (!UNSPECIFIEDP (value))
3915 if ((SYMBOLP (value)
3916 && !EQ (value, Qt)
3917 && !EQ (value, Qnil))
3918 /* Strike-through color. */
3919 || (STRINGP (value)
3920 && XSTRING (value)->size == 0))
3921 signal_error ("Invalid face strike-through", value);
3923 old_value = LFACE_STRIKE_THROUGH (lface);
3924 LFACE_STRIKE_THROUGH (lface) = value;
3926 else if (EQ (attr, QCbox))
3928 int valid_p;
3930 /* Allow t meaning a simple box of width 1 in foreground color
3931 of the face. */
3932 if (EQ (value, Qt))
3933 value = make_number (1);
3935 if (UNSPECIFIEDP (value))
3936 valid_p = 1;
3937 else if (NILP (value))
3938 valid_p = 1;
3939 else if (INTEGERP (value))
3940 valid_p = XINT (value) != 0;
3941 else if (STRINGP (value))
3942 valid_p = XSTRING (value)->size > 0;
3943 else if (CONSP (value))
3945 Lisp_Object tem;
3947 tem = value;
3948 while (CONSP (tem))
3950 Lisp_Object k, v;
3952 k = XCAR (tem);
3953 tem = XCDR (tem);
3954 if (!CONSP (tem))
3955 break;
3956 v = XCAR (tem);
3957 tem = XCDR (tem);
3959 if (EQ (k, QCline_width))
3961 if (!INTEGERP (v) || XINT (v) == 0)
3962 break;
3964 else if (EQ (k, QCcolor))
3966 if (!STRINGP (v) || XSTRING (v)->size == 0)
3967 break;
3969 else if (EQ (k, QCstyle))
3971 if (!EQ (v, Qpressed_button) && !EQ (v, Qreleased_button))
3972 break;
3974 else
3975 break;
3978 valid_p = NILP (tem);
3980 else
3981 valid_p = 0;
3983 if (!valid_p)
3984 signal_error ("Invalid face box", value);
3986 old_value = LFACE_BOX (lface);
3987 LFACE_BOX (lface) = value;
3989 else if (EQ (attr, QCinverse_video)
3990 || EQ (attr, QCreverse_video))
3992 if (!UNSPECIFIEDP (value))
3994 CHECK_SYMBOL (value);
3995 if (!EQ (value, Qt) && !NILP (value))
3996 signal_error ("Invalid inverse-video face attribute value", value);
3998 old_value = LFACE_INVERSE (lface);
3999 LFACE_INVERSE (lface) = value;
4001 else if (EQ (attr, QCforeground))
4003 if (!UNSPECIFIEDP (value))
4005 /* Don't check for valid color names here because it depends
4006 on the frame (display) whether the color will be valid
4007 when the face is realized. */
4008 CHECK_STRING (value);
4009 if (XSTRING (value)->size == 0)
4010 signal_error ("Empty foreground color value", value);
4012 old_value = LFACE_FOREGROUND (lface);
4013 LFACE_FOREGROUND (lface) = value;
4015 else if (EQ (attr, QCbackground))
4017 if (!UNSPECIFIEDP (value))
4019 /* Don't check for valid color names here because it depends
4020 on the frame (display) whether the color will be valid
4021 when the face is realized. */
4022 CHECK_STRING (value);
4023 if (XSTRING (value)->size == 0)
4024 signal_error ("Empty background color value", value);
4026 old_value = LFACE_BACKGROUND (lface);
4027 LFACE_BACKGROUND (lface) = value;
4029 else if (EQ (attr, QCstipple))
4031 #ifdef HAVE_X_WINDOWS
4032 if (!UNSPECIFIEDP (value)
4033 && !NILP (value)
4034 && NILP (Fbitmap_spec_p (value)))
4035 signal_error ("Invalid stipple attribute", value);
4036 old_value = LFACE_STIPPLE (lface);
4037 LFACE_STIPPLE (lface) = value;
4038 #endif /* HAVE_X_WINDOWS */
4040 else if (EQ (attr, QCwidth))
4042 if (!UNSPECIFIEDP (value))
4044 CHECK_SYMBOL (value);
4045 if (face_numeric_swidth (value) < 0)
4046 signal_error ("Invalid face width", value);
4048 old_value = LFACE_SWIDTH (lface);
4049 LFACE_SWIDTH (lface) = value;
4050 font_related_attr_p = 1;
4052 else if (EQ (attr, QCfont))
4054 #ifdef HAVE_WINDOW_SYSTEM
4055 if (FRAME_WINDOW_P (XFRAME (frame)))
4057 /* Set font-related attributes of the Lisp face from an XLFD
4058 font name. */
4059 struct frame *f;
4060 Lisp_Object tmp;
4062 CHECK_STRING (value);
4063 if (EQ (frame, Qt))
4064 f = SELECTED_FRAME ();
4065 else
4066 f = check_x_frame (frame);
4068 /* VALUE may be a fontset name or an alias of fontset. In
4069 such a case, use the base fontset name. */
4070 tmp = Fquery_fontset (value, Qnil);
4071 if (!NILP (tmp))
4072 value = tmp;
4074 if (!set_lface_from_font_name (f, lface, value, 1, 1))
4075 signal_error ("Invalid font or fontset name", value);
4077 font_attr_p = 1;
4079 #endif /* HAVE_WINDOW_SYSTEM */
4081 else if (EQ (attr, QCinherit))
4083 Lisp_Object tail;
4084 if (SYMBOLP (value))
4085 tail = Qnil;
4086 else
4087 for (tail = value; CONSP (tail); tail = XCDR (tail))
4088 if (!SYMBOLP (XCAR (tail)))
4089 break;
4090 if (NILP (tail))
4091 LFACE_INHERIT (lface) = value;
4092 else
4093 signal_error ("Invalid face inheritance", value);
4095 else if (EQ (attr, QCbold))
4097 old_value = LFACE_WEIGHT (lface);
4098 LFACE_WEIGHT (lface) = NILP (value) ? Qnormal : Qbold;
4099 font_related_attr_p = 1;
4101 else if (EQ (attr, QCitalic))
4103 old_value = LFACE_SLANT (lface);
4104 LFACE_SLANT (lface) = NILP (value) ? Qnormal : Qitalic;
4105 font_related_attr_p = 1;
4107 else
4108 signal_error ("Invalid face attribute name", attr);
4110 if (font_related_attr_p
4111 && !UNSPECIFIEDP (value))
4112 /* If a font-related attribute other than QCfont is specified, the
4113 original `font' attribute nor that of default face is useless
4114 to determine a new font. Thus, we set it to nil so that font
4115 selection mechanism doesn't use it. */
4116 LFACE_FONT (lface) = Qnil;
4118 /* Changing a named face means that all realized faces depending on
4119 that face are invalid. Since we cannot tell which realized faces
4120 depend on the face, make sure they are all removed. This is done
4121 by incrementing face_change_count. The next call to
4122 init_iterator will then free realized faces. */
4123 if (!EQ (frame, Qt)
4124 && (EQ (attr, QCfont)
4125 || NILP (Fequal (old_value, value))))
4127 ++face_change_count;
4128 ++windows_or_buffers_changed;
4131 if (!UNSPECIFIEDP (value)
4132 && NILP (Fequal (old_value, value)))
4134 Lisp_Object param;
4136 param = Qnil;
4138 if (EQ (face, Qdefault))
4140 #ifdef HAVE_WINDOW_SYSTEM
4141 /* Changed font-related attributes of the `default' face are
4142 reflected in changed `font' frame parameters. */
4143 if (FRAMEP (frame)
4144 && (font_related_attr_p || font_attr_p)
4145 && lface_fully_specified_p (XVECTOR (lface)->contents))
4146 set_font_frame_param (frame, lface);
4147 else
4148 #endif /* HAVE_WINDOW_SYSTEM */
4150 if (EQ (attr, QCforeground))
4151 param = Qforeground_color;
4152 else if (EQ (attr, QCbackground))
4153 param = Qbackground_color;
4155 #ifdef HAVE_WINDOW_SYSTEM
4156 #ifndef WINDOWSNT
4157 else if (EQ (face, Qscroll_bar))
4159 /* Changing the colors of `scroll-bar' sets frame parameters
4160 `scroll-bar-foreground' and `scroll-bar-background'. */
4161 if (EQ (attr, QCforeground))
4162 param = Qscroll_bar_foreground;
4163 else if (EQ (attr, QCbackground))
4164 param = Qscroll_bar_background;
4166 #endif /* not WINDOWSNT */
4167 else if (EQ (face, Qborder))
4169 /* Changing background color of `border' sets frame parameter
4170 `border-color'. */
4171 if (EQ (attr, QCbackground))
4172 param = Qborder_color;
4174 else if (EQ (face, Qcursor))
4176 /* Changing background color of `cursor' sets frame parameter
4177 `cursor-color'. */
4178 if (EQ (attr, QCbackground))
4179 param = Qcursor_color;
4181 else if (EQ (face, Qmouse))
4183 /* Changing background color of `mouse' sets frame parameter
4184 `mouse-color'. */
4185 if (EQ (attr, QCbackground))
4186 param = Qmouse_color;
4188 #endif /* HAVE_WINDOW_SYSTEM */
4189 else if (EQ (face, Qmenu))
4191 /* Indicate that we have to update the menu bar when
4192 realizing faces on FRAME. FRAME t change the
4193 default for new frames. We do this by setting
4194 setting the flag in new face caches */
4195 if (FRAMEP (frame))
4197 struct frame *f = XFRAME (frame);
4198 if (FRAME_FACE_CACHE (f) == NULL)
4199 FRAME_FACE_CACHE (f) = make_face_cache (f);
4200 FRAME_FACE_CACHE (f)->menu_face_changed_p = 1;
4202 else
4203 menu_face_changed_default = 1;
4206 if (!NILP (param))
4208 if (EQ (frame, Qt))
4209 /* Update `default-frame-alist', which is used for new frames. */
4211 store_in_alist (&Vdefault_frame_alist, param, value);
4213 else
4214 /* Update the current frame's parameters. */
4216 Lisp_Object cons;
4217 cons = XCAR (Vparam_value_alist);
4218 XSETCAR (cons, param);
4219 XSETCDR (cons, value);
4220 Fmodify_frame_parameters (frame, Vparam_value_alist);
4225 return face;
4229 #ifdef HAVE_WINDOW_SYSTEM
4231 /* Set the `font' frame parameter of FRAME determined from `default'
4232 face attributes LFACE. If a face or fontset name is explicitely
4233 specfied in LFACE, use it as is. Otherwise, determine a font name
4234 from the other font-related atrributes of LFACE. In that case, if
4235 there's no matching font, signals an error. */
4237 static void
4238 set_font_frame_param (frame, lface)
4239 Lisp_Object frame, lface;
4241 struct frame *f = XFRAME (frame);
4243 if (FRAME_WINDOW_P (f))
4245 Lisp_Object font_name;
4246 char *font;
4248 if (STRINGP (LFACE_FONT (lface)))
4249 font_name = LFACE_FONT (lface);
4250 else
4252 /* Choose a font name that reflects LFACE's attributes and has
4253 the registry and encoding pattern specified in the default
4254 fontset (3rd arg: -1) for ASCII characters (4th arg: 0). */
4255 font = choose_face_font (f, XVECTOR (lface)->contents, -1, 0);
4256 if (!font)
4257 error ("No font matches the specified attribute");
4258 font_name = build_string (font);
4259 xfree (font);
4262 Fmodify_frame_parameters (frame, Fcons (Fcons (Qfont, font_name), Qnil));
4267 /* Update the corresponding face when frame parameter PARAM on frame F
4268 has been assigned the value NEW_VALUE. */
4270 void
4271 update_face_from_frame_parameter (f, param, new_value)
4272 struct frame *f;
4273 Lisp_Object param, new_value;
4275 Lisp_Object lface;
4277 /* If there are no faces yet, give up. This is the case when called
4278 from Fx_create_frame, and we do the necessary things later in
4279 face-set-after-frame-defaults. */
4280 if (NILP (f->face_alist))
4281 return;
4283 /* Changing a named face means that all realized faces depending on
4284 that face are invalid. Since we cannot tell which realized faces
4285 depend on the face, make sure they are all removed. This is done
4286 by incrementing face_change_count. The next call to
4287 init_iterator will then free realized faces. */
4288 ++face_change_count;
4289 ++windows_or_buffers_changed;
4291 if (EQ (param, Qforeground_color))
4293 lface = lface_from_face_name (f, Qdefault, 1);
4294 LFACE_FOREGROUND (lface) = (STRINGP (new_value)
4295 ? new_value : Qunspecified);
4296 realize_basic_faces (f);
4298 else if (EQ (param, Qbackground_color))
4300 Lisp_Object frame;
4302 /* Changing the background color might change the background
4303 mode, so that we have to load new defface specs. Call
4304 frame-update-face-colors to do that. */
4305 XSETFRAME (frame, f);
4306 call1 (Qframe_update_face_colors, frame);
4308 lface = lface_from_face_name (f, Qdefault, 1);
4309 LFACE_BACKGROUND (lface) = (STRINGP (new_value)
4310 ? new_value : Qunspecified);
4311 realize_basic_faces (f);
4313 if (EQ (param, Qborder_color))
4315 lface = lface_from_face_name (f, Qborder, 1);
4316 LFACE_BACKGROUND (lface) = (STRINGP (new_value)
4317 ? new_value : Qunspecified);
4319 else if (EQ (param, Qcursor_color))
4321 lface = lface_from_face_name (f, Qcursor, 1);
4322 LFACE_BACKGROUND (lface) = (STRINGP (new_value)
4323 ? new_value : Qunspecified);
4325 else if (EQ (param, Qmouse_color))
4327 lface = lface_from_face_name (f, Qmouse, 1);
4328 LFACE_BACKGROUND (lface) = (STRINGP (new_value)
4329 ? new_value : Qunspecified);
4334 /* Get the value of X resource RESOURCE, class CLASS for the display
4335 of frame FRAME. This is here because ordinary `x-get-resource'
4336 doesn't take a frame argument. */
4338 DEFUN ("internal-face-x-get-resource", Finternal_face_x_get_resource,
4339 Sinternal_face_x_get_resource, 3, 3, 0, doc: /* */)
4340 (resource, class, frame)
4341 Lisp_Object resource, class, frame;
4343 Lisp_Object value = Qnil;
4344 #ifndef WINDOWSNT
4345 #ifndef macintosh
4346 CHECK_STRING (resource);
4347 CHECK_STRING (class);
4348 CHECK_LIVE_FRAME (frame);
4349 BLOCK_INPUT;
4350 value = display_x_get_resource (FRAME_X_DISPLAY_INFO (XFRAME (frame)),
4351 resource, class, Qnil, Qnil);
4352 UNBLOCK_INPUT;
4353 #endif /* not macintosh */
4354 #endif /* not WINDOWSNT */
4355 return value;
4359 /* Return resource string VALUE as a boolean value, i.e. nil, or t.
4360 If VALUE is "on" or "true", return t. If VALUE is "off" or
4361 "false", return nil. Otherwise, if SIGNAL_P is non-zero, signal an
4362 error; if SIGNAL_P is zero, return 0. */
4364 static Lisp_Object
4365 face_boolean_x_resource_value (value, signal_p)
4366 Lisp_Object value;
4367 int signal_p;
4369 Lisp_Object result = make_number (0);
4371 xassert (STRINGP (value));
4373 if (xstricmp (XSTRING (value)->data, "on") == 0
4374 || xstricmp (XSTRING (value)->data, "true") == 0)
4375 result = Qt;
4376 else if (xstricmp (XSTRING (value)->data, "off") == 0
4377 || xstricmp (XSTRING (value)->data, "false") == 0)
4378 result = Qnil;
4379 else if (xstricmp (XSTRING (value)->data, "unspecified") == 0)
4380 result = Qunspecified;
4381 else if (signal_p)
4382 signal_error ("Invalid face attribute value from X resource", value);
4384 return result;
4388 DEFUN ("internal-set-lisp-face-attribute-from-resource",
4389 Finternal_set_lisp_face_attribute_from_resource,
4390 Sinternal_set_lisp_face_attribute_from_resource,
4391 3, 4, 0, doc: /* */)
4392 (face, attr, value, frame)
4393 Lisp_Object face, attr, value, frame;
4395 CHECK_SYMBOL (face);
4396 CHECK_SYMBOL (attr);
4397 CHECK_STRING (value);
4399 if (xstricmp (XSTRING (value)->data, "unspecified") == 0)
4400 value = Qunspecified;
4401 else if (EQ (attr, QCheight))
4403 value = Fstring_to_number (value, make_number (10));
4404 if (XINT (value) <= 0)
4405 signal_error ("Invalid face height from X resource", value);
4407 else if (EQ (attr, QCbold) || EQ (attr, QCitalic))
4408 value = face_boolean_x_resource_value (value, 1);
4409 else if (EQ (attr, QCweight) || EQ (attr, QCslant) || EQ (attr, QCwidth))
4410 value = intern (XSTRING (value)->data);
4411 else if (EQ (attr, QCreverse_video) || EQ (attr, QCinverse_video))
4412 value = face_boolean_x_resource_value (value, 1);
4413 else if (EQ (attr, QCunderline)
4414 || EQ (attr, QCoverline)
4415 || EQ (attr, QCstrike_through))
4417 Lisp_Object boolean_value;
4419 /* If the result of face_boolean_x_resource_value is t or nil,
4420 VALUE does NOT specify a color. */
4421 boolean_value = face_boolean_x_resource_value (value, 0);
4422 if (SYMBOLP (boolean_value))
4423 value = boolean_value;
4425 else if (EQ (attr, QCbox))
4426 value = Fcar (Fread_from_string (value, Qnil, Qnil));
4428 return Finternal_set_lisp_face_attribute (face, attr, value, frame);
4431 #endif /* HAVE_WINDOW_SYSTEM */
4434 /***********************************************************************
4435 Menu face
4436 ***********************************************************************/
4438 #if defined HAVE_X_WINDOWS && defined USE_X_TOOLKIT
4440 /* Make menus on frame F appear as specified by the `menu' face. */
4442 static void
4443 x_update_menu_appearance (f)
4444 struct frame *f;
4446 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
4447 XrmDatabase rdb;
4449 if (dpyinfo
4450 && (rdb = XrmGetDatabase (FRAME_X_DISPLAY (f)),
4451 rdb != NULL))
4453 char line[512];
4454 Lisp_Object lface = lface_from_face_name (f, Qmenu, 1);
4455 struct face *face = FACE_FROM_ID (f, MENU_FACE_ID);
4456 char *myname = XSTRING (Vx_resource_name)->data;
4457 int changed_p = 0;
4458 #ifdef USE_MOTIF
4459 const char *popup_path = "popup_menu";
4460 #else
4461 const char *popup_path = "menu.popup";
4462 #endif
4464 if (STRINGP (LFACE_FOREGROUND (lface)))
4466 sprintf (line, "%s.%s*foreground: %s",
4467 myname, popup_path,
4468 XSTRING (LFACE_FOREGROUND (lface))->data);
4469 XrmPutLineResource (&rdb, line);
4470 sprintf (line, "%s.pane.menubar*foreground: %s",
4471 myname, XSTRING (LFACE_FOREGROUND (lface))->data);
4472 XrmPutLineResource (&rdb, line);
4473 changed_p = 1;
4476 if (STRINGP (LFACE_BACKGROUND (lface)))
4478 sprintf (line, "%s.%s*background: %s",
4479 myname, popup_path,
4480 XSTRING (LFACE_BACKGROUND (lface))->data);
4481 XrmPutLineResource (&rdb, line);
4482 sprintf (line, "%s.pane.menubar*background: %s",
4483 myname, XSTRING (LFACE_BACKGROUND (lface))->data);
4484 XrmPutLineResource (&rdb, line);
4485 changed_p = 1;
4488 if (face->font_name
4489 && (!UNSPECIFIEDP (LFACE_FAMILY (lface))
4490 || !UNSPECIFIEDP (LFACE_SWIDTH (lface))
4491 || !UNSPECIFIEDP (LFACE_AVGWIDTH (lface))
4492 || !UNSPECIFIEDP (LFACE_WEIGHT (lface))
4493 || !UNSPECIFIEDP (LFACE_SLANT (lface))
4494 || !UNSPECIFIEDP (LFACE_HEIGHT (lface))))
4496 #ifdef USE_MOTIF
4497 const char *suffix = "List";
4498 #else
4499 const char *suffix = "";
4500 #endif
4501 sprintf (line, "%s.pane.menubar*font%s: %s",
4502 myname, suffix, face->font_name);
4503 XrmPutLineResource (&rdb, line);
4504 sprintf (line, "%s.%s*font%s: %s",
4505 myname, popup_path, suffix, face->font_name);
4506 XrmPutLineResource (&rdb, line);
4507 changed_p = 1;
4510 if (changed_p && f->output_data.x->menubar_widget)
4511 free_frame_menubar (f);
4515 #endif /* HAVE_X_WINDOWS && USE_X_TOOLKIT */
4518 DEFUN ("face-attribute-relative-p", Fface_attribute_relative_p,
4519 Sface_attribute_relative_p,
4520 2, 2, 0,
4521 doc: /* Return non-nil if face ATTRIBUTE VALUE is relative. */)
4522 (attribute, value)
4523 Lisp_Object attribute, value;
4525 if (EQ (value, Qunspecified))
4526 return Qt;
4527 else if (EQ (attribute, QCheight))
4528 return INTEGERP (value) ? Qnil : Qt;
4529 else
4530 return Qnil;
4533 DEFUN ("merge-face-attribute", Fmerge_face_attribute, Smerge_face_attribute,
4534 3, 3, 0,
4535 doc: /* Return face ATTRIBUTE VALUE1 merged with VALUE2.
4536 If VALUE1 or VALUE2 are absolute (see `face-attribute-relative-p'), then
4537 the result will be absolute, otherwise it will be relative. */)
4538 (attribute, value1, value2)
4539 Lisp_Object attribute, value1, value2;
4541 if (EQ (value1, Qunspecified))
4542 return value2;
4543 else if (EQ (attribute, QCheight))
4544 return merge_face_heights (value1, value2, value1, Qnil);
4545 else
4546 return value1;
4550 DEFUN ("internal-get-lisp-face-attribute", Finternal_get_lisp_face_attribute,
4551 Sinternal_get_lisp_face_attribute,
4552 2, 3, 0,
4553 doc: /* Return face attribute KEYWORD of face SYMBOL.
4554 If SYMBOL does not name a valid Lisp face or KEYWORD isn't a valid
4555 face attribute name, signal an error.
4556 If the optional argument FRAME is given, report on face FACE in that
4557 frame. If FRAME is t, report on the defaults for face FACE (for new
4558 frames). If FRAME is omitted or nil, use the selected frame. */)
4559 (symbol, keyword, frame)
4560 Lisp_Object symbol, keyword, frame;
4562 Lisp_Object lface, value = Qnil;
4564 CHECK_SYMBOL (symbol);
4565 CHECK_SYMBOL (keyword);
4567 if (EQ (frame, Qt))
4568 lface = lface_from_face_name (NULL, symbol, 1);
4569 else
4571 if (NILP (frame))
4572 frame = selected_frame;
4573 CHECK_LIVE_FRAME (frame);
4574 lface = lface_from_face_name (XFRAME (frame), symbol, 1);
4577 if (EQ (keyword, QCfamily))
4578 value = LFACE_FAMILY (lface);
4579 else if (EQ (keyword, QCheight))
4580 value = LFACE_HEIGHT (lface);
4581 else if (EQ (keyword, QCweight))
4582 value = LFACE_WEIGHT (lface);
4583 else if (EQ (keyword, QCslant))
4584 value = LFACE_SLANT (lface);
4585 else if (EQ (keyword, QCunderline))
4586 value = LFACE_UNDERLINE (lface);
4587 else if (EQ (keyword, QCoverline))
4588 value = LFACE_OVERLINE (lface);
4589 else if (EQ (keyword, QCstrike_through))
4590 value = LFACE_STRIKE_THROUGH (lface);
4591 else if (EQ (keyword, QCbox))
4592 value = LFACE_BOX (lface);
4593 else if (EQ (keyword, QCinverse_video)
4594 || EQ (keyword, QCreverse_video))
4595 value = LFACE_INVERSE (lface);
4596 else if (EQ (keyword, QCforeground))
4597 value = LFACE_FOREGROUND (lface);
4598 else if (EQ (keyword, QCbackground))
4599 value = LFACE_BACKGROUND (lface);
4600 else if (EQ (keyword, QCstipple))
4601 value = LFACE_STIPPLE (lface);
4602 else if (EQ (keyword, QCwidth))
4603 value = LFACE_SWIDTH (lface);
4604 else if (EQ (keyword, QCinherit))
4605 value = LFACE_INHERIT (lface);
4606 else if (EQ (keyword, QCfont))
4607 value = LFACE_FONT (lface);
4608 else
4609 signal_error ("Invalid face attribute name", keyword);
4611 return value;
4615 DEFUN ("internal-lisp-face-attribute-values",
4616 Finternal_lisp_face_attribute_values,
4617 Sinternal_lisp_face_attribute_values, 1, 1, 0,
4618 doc: /* Return a list of valid discrete values for face attribute ATTR.
4619 Value is nil if ATTR doesn't have a discrete set of valid values. */)
4620 (attr)
4621 Lisp_Object attr;
4623 Lisp_Object result = Qnil;
4625 CHECK_SYMBOL (attr);
4627 if (EQ (attr, QCweight)
4628 || EQ (attr, QCslant)
4629 || EQ (attr, QCwidth))
4631 /* Extract permissible symbols from tables. */
4632 struct table_entry *table;
4633 int i, dim;
4635 if (EQ (attr, QCweight))
4636 table = weight_table, dim = DIM (weight_table);
4637 else if (EQ (attr, QCslant))
4638 table = slant_table, dim = DIM (slant_table);
4639 else
4640 table = swidth_table, dim = DIM (swidth_table);
4642 for (i = 0; i < dim; ++i)
4644 Lisp_Object symbol = *table[i].symbol;
4645 Lisp_Object tail = result;
4647 while (!NILP (tail)
4648 && !EQ (XCAR (tail), symbol))
4649 tail = XCDR (tail);
4651 if (NILP (tail))
4652 result = Fcons (symbol, result);
4655 else if (EQ (attr, QCunderline))
4656 result = Fcons (Qt, Fcons (Qnil, Qnil));
4657 else if (EQ (attr, QCoverline))
4658 result = Fcons (Qt, Fcons (Qnil, Qnil));
4659 else if (EQ (attr, QCstrike_through))
4660 result = Fcons (Qt, Fcons (Qnil, Qnil));
4661 else if (EQ (attr, QCinverse_video) || EQ (attr, QCreverse_video))
4662 result = Fcons (Qt, Fcons (Qnil, Qnil));
4664 return result;
4668 DEFUN ("internal-merge-in-global-face", Finternal_merge_in_global_face,
4669 Sinternal_merge_in_global_face, 2, 2, 0,
4670 doc: /* Add attributes from frame-default definition of FACE to FACE on FRAME.
4671 Default face attributes override any local face attributes. */)
4672 (face, frame)
4673 Lisp_Object face, frame;
4675 int i;
4676 Lisp_Object global_lface, local_lface, *gvec, *lvec;
4678 CHECK_LIVE_FRAME (frame);
4679 global_lface = lface_from_face_name (NULL, face, 1);
4680 local_lface = lface_from_face_name (XFRAME (frame), face, 0);
4681 if (NILP (local_lface))
4682 local_lface = Finternal_make_lisp_face (face, frame);
4684 /* Make every specified global attribute override the local one.
4685 BEWARE!! This is only used from `face-set-after-frame-default' where
4686 the local frame is defined from default specs in `face-defface-spec'
4687 and those should be overridden by global settings. Hence the strange
4688 "global before local" priority. */
4689 lvec = XVECTOR (local_lface)->contents;
4690 gvec = XVECTOR (global_lface)->contents;
4691 for (i = 1; i < LFACE_VECTOR_SIZE; ++i)
4692 if (! UNSPECIFIEDP (gvec[i]))
4693 lvec[i] = gvec[i];
4695 return Qnil;
4699 /* The following function is implemented for compatibility with 20.2.
4700 The function is used in x-resolve-fonts when it is asked to
4701 return fonts with the same size as the font of a face. This is
4702 done in fontset.el. */
4704 DEFUN ("face-font", Fface_font, Sface_font, 1, 2, 0,
4705 doc: /* Return the font name of face FACE, or nil if it is unspecified.
4706 If the optional argument FRAME is given, report on face FACE in that frame.
4707 If FRAME is t, report on the defaults for face FACE (for new frames).
4708 The font default for a face is either nil, or a list
4709 of the form (bold), (italic) or (bold italic).
4710 If FRAME is omitted or nil, use the selected frame. */)
4711 (face, frame)
4712 Lisp_Object face, frame;
4714 if (EQ (frame, Qt))
4716 Lisp_Object result = Qnil;
4717 Lisp_Object lface = lface_from_face_name (NULL, face, 1);
4719 if (!UNSPECIFIEDP (LFACE_WEIGHT (lface))
4720 && !EQ (LFACE_WEIGHT (lface), Qnormal))
4721 result = Fcons (Qbold, result);
4723 if (!UNSPECIFIEDP (LFACE_SLANT (lface))
4724 && !EQ (LFACE_SLANT (lface), Qnormal))
4725 result = Fcons (Qitalic, result);
4727 return result;
4729 else
4731 struct frame *f = frame_or_selected_frame (frame, 1);
4732 int face_id = lookup_named_face (f, face, 0);
4733 struct face *face = FACE_FROM_ID (f, face_id);
4734 return face ? build_string (face->font_name) : Qnil;
4739 /* Compare face vectors V1 and V2 for equality. Value is non-zero if
4740 all attributes are `equal'. Tries to be fast because this function
4741 is called quite often. */
4743 static INLINE int
4744 lface_equal_p (v1, v2)
4745 Lisp_Object *v1, *v2;
4747 int i, equal_p = 1;
4749 for (i = 1; i < LFACE_VECTOR_SIZE && equal_p; ++i)
4751 Lisp_Object a = v1[i];
4752 Lisp_Object b = v2[i];
4754 /* Type can differ, e.g. when one attribute is unspecified, i.e. nil,
4755 and the other is specified. */
4756 equal_p = XTYPE (a) == XTYPE (b);
4757 if (!equal_p)
4758 break;
4760 if (!EQ (a, b))
4762 switch (XTYPE (a))
4764 case Lisp_String:
4765 equal_p = ((STRING_BYTES (XSTRING (a))
4766 == STRING_BYTES (XSTRING (b)))
4767 && bcmp (XSTRING (a)->data, XSTRING (b)->data,
4768 STRING_BYTES (XSTRING (a))) == 0);
4769 break;
4771 case Lisp_Int:
4772 case Lisp_Symbol:
4773 equal_p = 0;
4774 break;
4776 default:
4777 equal_p = !NILP (Fequal (a, b));
4778 break;
4783 return equal_p;
4787 DEFUN ("internal-lisp-face-equal-p", Finternal_lisp_face_equal_p,
4788 Sinternal_lisp_face_equal_p, 2, 3, 0,
4789 doc: /* True if FACE1 and FACE2 are equal.
4790 If the optional argument FRAME is given, report on face FACE in that frame.
4791 If FRAME is t, report on the defaults for face FACE (for new frames).
4792 If FRAME is omitted or nil, use the selected frame. */)
4793 (face1, face2, frame)
4794 Lisp_Object face1, face2, frame;
4796 int equal_p;
4797 struct frame *f;
4798 Lisp_Object lface1, lface2;
4800 if (EQ (frame, Qt))
4801 f = NULL;
4802 else
4803 /* Don't use check_x_frame here because this function is called
4804 before X frames exist. At that time, if FRAME is nil,
4805 selected_frame will be used which is the frame dumped with
4806 Emacs. That frame is not an X frame. */
4807 f = frame_or_selected_frame (frame, 2);
4809 lface1 = lface_from_face_name (NULL, face1, 1);
4810 lface2 = lface_from_face_name (NULL, face2, 1);
4811 equal_p = lface_equal_p (XVECTOR (lface1)->contents,
4812 XVECTOR (lface2)->contents);
4813 return equal_p ? Qt : Qnil;
4817 DEFUN ("internal-lisp-face-empty-p", Finternal_lisp_face_empty_p,
4818 Sinternal_lisp_face_empty_p, 1, 2, 0,
4819 doc: /* True if FACE has no attribute specified.
4820 If the optional argument FRAME is given, report on face FACE in that frame.
4821 If FRAME is t, report on the defaults for face FACE (for new frames).
4822 If FRAME is omitted or nil, use the selected frame. */)
4823 (face, frame)
4824 Lisp_Object face, frame;
4826 struct frame *f;
4827 Lisp_Object lface;
4828 int i;
4830 if (NILP (frame))
4831 frame = selected_frame;
4832 CHECK_LIVE_FRAME (frame);
4833 f = XFRAME (frame);
4835 if (EQ (frame, Qt))
4836 lface = lface_from_face_name (NULL, face, 1);
4837 else
4838 lface = lface_from_face_name (f, face, 1);
4840 for (i = 1; i < LFACE_VECTOR_SIZE; ++i)
4841 if (!UNSPECIFIEDP (AREF (lface, i)))
4842 break;
4844 return i == LFACE_VECTOR_SIZE ? Qt : Qnil;
4848 DEFUN ("frame-face-alist", Fframe_face_alist, Sframe_face_alist,
4849 0, 1, 0,
4850 doc: /* Return an alist of frame-local faces defined on FRAME.
4851 For internal use only. */)
4852 (frame)
4853 Lisp_Object frame;
4855 struct frame *f = frame_or_selected_frame (frame, 0);
4856 return f->face_alist;
4860 /* Return a hash code for Lisp string STRING with case ignored. Used
4861 below in computing a hash value for a Lisp face. */
4863 static INLINE unsigned
4864 hash_string_case_insensitive (string)
4865 Lisp_Object string;
4867 unsigned char *s;
4868 unsigned hash = 0;
4869 xassert (STRINGP (string));
4870 for (s = XSTRING (string)->data; *s; ++s)
4871 hash = (hash << 1) ^ tolower (*s);
4872 return hash;
4876 /* Return a hash code for face attribute vector V. */
4878 static INLINE unsigned
4879 lface_hash (v)
4880 Lisp_Object *v;
4882 return (hash_string_case_insensitive (v[LFACE_FAMILY_INDEX])
4883 ^ hash_string_case_insensitive (v[LFACE_FOREGROUND_INDEX])
4884 ^ hash_string_case_insensitive (v[LFACE_BACKGROUND_INDEX])
4885 ^ XFASTINT (v[LFACE_WEIGHT_INDEX])
4886 ^ XFASTINT (v[LFACE_SLANT_INDEX])
4887 ^ XFASTINT (v[LFACE_SWIDTH_INDEX])
4888 ^ XFASTINT (v[LFACE_HEIGHT_INDEX]));
4892 /* Return non-zero if LFACE1 and LFACE2 specify the same font (without
4893 considering charsets/registries). They do if they specify the same
4894 family, point size, weight, width, slant, and fontset. Both LFACE1
4895 and LFACE2 must be fully-specified. */
4897 static INLINE int
4898 lface_same_font_attributes_p (lface1, lface2)
4899 Lisp_Object *lface1, *lface2;
4901 xassert (lface_fully_specified_p (lface1)
4902 && lface_fully_specified_p (lface2));
4903 return (xstricmp (XSTRING (lface1[LFACE_FAMILY_INDEX])->data,
4904 XSTRING (lface2[LFACE_FAMILY_INDEX])->data) == 0
4905 && EQ (lface1[LFACE_HEIGHT_INDEX], lface2[LFACE_HEIGHT_INDEX])
4906 && EQ (lface1[LFACE_SWIDTH_INDEX], lface2[LFACE_SWIDTH_INDEX])
4907 && EQ (lface1[LFACE_AVGWIDTH_INDEX], lface2[LFACE_AVGWIDTH_INDEX])
4908 && EQ (lface1[LFACE_WEIGHT_INDEX], lface2[LFACE_WEIGHT_INDEX])
4909 && EQ (lface1[LFACE_SLANT_INDEX], lface2[LFACE_SLANT_INDEX])
4910 && (EQ (lface1[LFACE_FONT_INDEX], lface2[LFACE_FONT_INDEX])
4911 || (STRINGP (lface1[LFACE_FONT_INDEX])
4912 && STRINGP (lface2[LFACE_FONT_INDEX])
4913 && xstricmp (XSTRING (lface1[LFACE_FONT_INDEX])->data,
4914 XSTRING (lface2[LFACE_FONT_INDEX])->data))));
4919 /***********************************************************************
4920 Realized Faces
4921 ***********************************************************************/
4923 /* Allocate and return a new realized face for Lisp face attribute
4924 vector ATTR. */
4926 static struct face *
4927 make_realized_face (attr)
4928 Lisp_Object *attr;
4930 struct face *face = (struct face *) xmalloc (sizeof *face);
4931 bzero (face, sizeof *face);
4932 face->ascii_face = face;
4933 bcopy (attr, face->lface, sizeof face->lface);
4934 return face;
4938 /* Free realized face FACE, including its X resources. FACE may
4939 be null. */
4941 static void
4942 free_realized_face (f, face)
4943 struct frame *f;
4944 struct face *face;
4946 if (face)
4948 #ifdef HAVE_WINDOW_SYSTEM
4949 if (FRAME_WINDOW_P (f))
4951 /* Free fontset of FACE if it is ASCII face. */
4952 if (face->fontset >= 0 && face == face->ascii_face)
4953 free_face_fontset (f, face);
4954 if (face->gc)
4956 x_free_gc (f, face->gc);
4957 face->gc = 0;
4960 free_face_colors (f, face);
4961 x_destroy_bitmap (f, face->stipple);
4963 #endif /* HAVE_WINDOW_SYSTEM */
4965 xfree (face);
4970 /* Prepare face FACE for subsequent display on frame F. This
4971 allocated GCs if they haven't been allocated yet or have been freed
4972 by clearing the face cache. */
4974 void
4975 prepare_face_for_display (f, face)
4976 struct frame *f;
4977 struct face *face;
4979 #ifdef HAVE_WINDOW_SYSTEM
4980 xassert (FRAME_WINDOW_P (f));
4982 if (face->gc == 0)
4984 XGCValues xgcv;
4985 unsigned long mask = GCForeground | GCBackground | GCGraphicsExposures;
4987 xgcv.foreground = face->foreground;
4988 xgcv.background = face->background;
4989 #ifdef HAVE_X_WINDOWS
4990 xgcv.graphics_exposures = False;
4991 #endif
4992 /* The font of FACE may be null if we couldn't load it. */
4993 if (face->font)
4995 #ifdef HAVE_X_WINDOWS
4996 xgcv.font = face->font->fid;
4997 #endif
4998 #ifdef WINDOWSNT
4999 xgcv.font = face->font;
5000 #endif
5001 #ifdef macintosh
5002 xgcv.font = face->font;
5003 #endif
5004 mask |= GCFont;
5007 BLOCK_INPUT;
5008 #ifdef HAVE_X_WINDOWS
5009 if (face->stipple)
5011 xgcv.fill_style = FillOpaqueStippled;
5012 xgcv.stipple = x_bitmap_pixmap (f, face->stipple);
5013 mask |= GCFillStyle | GCStipple;
5015 #endif
5016 face->gc = x_create_gc (f, mask, &xgcv);
5017 UNBLOCK_INPUT;
5019 #endif /* HAVE_WINDOW_SYSTEM */
5023 /***********************************************************************
5024 Face Cache
5025 ***********************************************************************/
5027 /* Return a new face cache for frame F. */
5029 static struct face_cache *
5030 make_face_cache (f)
5031 struct frame *f;
5033 struct face_cache *c;
5034 int size;
5036 c = (struct face_cache *) xmalloc (sizeof *c);
5037 bzero (c, sizeof *c);
5038 size = FACE_CACHE_BUCKETS_SIZE * sizeof *c->buckets;
5039 c->buckets = (struct face **) xmalloc (size);
5040 bzero (c->buckets, size);
5041 c->size = 50;
5042 c->faces_by_id = (struct face **) xmalloc (c->size * sizeof *c->faces_by_id);
5043 c->f = f;
5044 c->menu_face_changed_p = menu_face_changed_default;
5045 return c;
5049 /* Clear out all graphics contexts for all realized faces, except for
5050 the basic faces. This should be done from time to time just to avoid
5051 keeping too many graphics contexts that are no longer needed. */
5053 static void
5054 clear_face_gcs (c)
5055 struct face_cache *c;
5057 if (c && FRAME_WINDOW_P (c->f))
5059 #ifdef HAVE_WINDOW_SYSTEM
5060 int i;
5061 for (i = BASIC_FACE_ID_SENTINEL; i < c->used; ++i)
5063 struct face *face = c->faces_by_id[i];
5064 if (face && face->gc)
5066 x_free_gc (c->f, face->gc);
5067 face->gc = 0;
5070 #endif /* HAVE_WINDOW_SYSTEM */
5075 /* Free all realized faces in face cache C, including basic faces. C
5076 may be null. If faces are freed, make sure the frame's current
5077 matrix is marked invalid, so that a display caused by an expose
5078 event doesn't try to use faces we destroyed. */
5080 static void
5081 free_realized_faces (c)
5082 struct face_cache *c;
5084 if (c && c->used)
5086 int i, size;
5087 struct frame *f = c->f;
5089 /* We must block input here because we can't process X events
5090 safely while only some faces are freed, or when the frame's
5091 current matrix still references freed faces. */
5092 BLOCK_INPUT;
5094 for (i = 0; i < c->used; ++i)
5096 free_realized_face (f, c->faces_by_id[i]);
5097 c->faces_by_id[i] = NULL;
5100 c->used = 0;
5101 size = FACE_CACHE_BUCKETS_SIZE * sizeof *c->buckets;
5102 bzero (c->buckets, size);
5104 /* Must do a thorough redisplay the next time. Mark current
5105 matrices as invalid because they will reference faces freed
5106 above. This function is also called when a frame is
5107 destroyed. In this case, the root window of F is nil. */
5108 if (WINDOWP (f->root_window))
5110 clear_current_matrices (f);
5111 ++windows_or_buffers_changed;
5114 UNBLOCK_INPUT;
5119 /* Free all faces realized for multibyte characters on frame F that
5120 has FONTSET. */
5122 void
5123 free_realized_multibyte_face (f, fontset)
5124 struct frame *f;
5125 int fontset;
5127 struct face_cache *cache = FRAME_FACE_CACHE (f);
5128 struct face *face;
5129 int i;
5131 /* We must block input here because we can't process X events safely
5132 while only some faces are freed, or when the frame's current
5133 matrix still references freed faces. */
5134 BLOCK_INPUT;
5136 for (i = 0; i < cache->used; i++)
5138 face = cache->faces_by_id[i];
5139 if (face
5140 && face != face->ascii_face
5141 && face->fontset == fontset)
5143 uncache_face (cache, face);
5144 free_realized_face (f, face);
5148 /* Must do a thorough redisplay the next time. Mark current
5149 matrices as invalid because they will reference faces freed
5150 above. This function is also called when a frame is destroyed.
5151 In this case, the root window of F is nil. */
5152 if (WINDOWP (f->root_window))
5154 clear_current_matrices (f);
5155 ++windows_or_buffers_changed;
5158 UNBLOCK_INPUT;
5162 /* Free all realized faces on FRAME or on all frames if FRAME is nil.
5163 This is done after attributes of a named face have been changed,
5164 because we can't tell which realized faces depend on that face. */
5166 void
5167 free_all_realized_faces (frame)
5168 Lisp_Object frame;
5170 if (NILP (frame))
5172 Lisp_Object rest;
5173 FOR_EACH_FRAME (rest, frame)
5174 free_realized_faces (FRAME_FACE_CACHE (XFRAME (frame)));
5176 else
5177 free_realized_faces (FRAME_FACE_CACHE (XFRAME (frame)));
5181 /* Free face cache C and faces in it, including their X resources. */
5183 static void
5184 free_face_cache (c)
5185 struct face_cache *c;
5187 if (c)
5189 free_realized_faces (c);
5190 xfree (c->buckets);
5191 xfree (c->faces_by_id);
5192 xfree (c);
5197 /* Cache realized face FACE in face cache C. HASH is the hash value
5198 of FACE. If FACE->fontset >= 0, add the new face to the end of the
5199 collision list of the face hash table of C. This is done because
5200 otherwise lookup_face would find FACE for every character, even if
5201 faces with the same attributes but for specific characters exist. */
5203 static void
5204 cache_face (c, face, hash)
5205 struct face_cache *c;
5206 struct face *face;
5207 unsigned hash;
5209 int i = hash % FACE_CACHE_BUCKETS_SIZE;
5211 face->hash = hash;
5213 if (face->fontset >= 0)
5215 struct face *last = c->buckets[i];
5216 if (last)
5218 while (last->next)
5219 last = last->next;
5220 last->next = face;
5221 face->prev = last;
5222 face->next = NULL;
5224 else
5226 c->buckets[i] = face;
5227 face->prev = face->next = NULL;
5230 else
5232 face->prev = NULL;
5233 face->next = c->buckets[i];
5234 if (face->next)
5235 face->next->prev = face;
5236 c->buckets[i] = face;
5239 /* Find a free slot in C->faces_by_id and use the index of the free
5240 slot as FACE->id. */
5241 for (i = 0; i < c->used; ++i)
5242 if (c->faces_by_id[i] == NULL)
5243 break;
5244 face->id = i;
5246 /* Maybe enlarge C->faces_by_id. */
5247 if (i == c->used && c->used == c->size)
5249 int new_size = 2 * c->size;
5250 int sz = new_size * sizeof *c->faces_by_id;
5251 c->faces_by_id = (struct face **) xrealloc (c->faces_by_id, sz);
5252 c->size = new_size;
5255 #if GLYPH_DEBUG
5256 /* Check that FACE got a unique id. */
5258 int j, n;
5259 struct face *face;
5261 for (j = n = 0; j < FACE_CACHE_BUCKETS_SIZE; ++j)
5262 for (face = c->buckets[j]; face; face = face->next)
5263 if (face->id == i)
5264 ++n;
5266 xassert (n == 1);
5268 #endif /* GLYPH_DEBUG */
5270 c->faces_by_id[i] = face;
5271 if (i == c->used)
5272 ++c->used;
5276 /* Remove face FACE from cache C. */
5278 static void
5279 uncache_face (c, face)
5280 struct face_cache *c;
5281 struct face *face;
5283 int i = face->hash % FACE_CACHE_BUCKETS_SIZE;
5285 if (face->prev)
5286 face->prev->next = face->next;
5287 else
5288 c->buckets[i] = face->next;
5290 if (face->next)
5291 face->next->prev = face->prev;
5293 c->faces_by_id[face->id] = NULL;
5294 if (face->id == c->used)
5295 --c->used;
5299 /* Look up a realized face with face attributes ATTR in the face cache
5300 of frame F. The face will be used to display character C. Value
5301 is the ID of the face found. If no suitable face is found, realize
5302 a new one. In that case, if C is a multibyte character, BASE_FACE
5303 is a face that has the same attributes. */
5305 INLINE int
5306 lookup_face (f, attr, c, base_face)
5307 struct frame *f;
5308 Lisp_Object *attr;
5309 int c;
5310 struct face *base_face;
5312 struct face_cache *cache = FRAME_FACE_CACHE (f);
5313 unsigned hash;
5314 int i;
5315 struct face *face;
5317 xassert (cache != NULL);
5318 check_lface_attrs (attr);
5320 /* Look up ATTR in the face cache. */
5321 hash = lface_hash (attr);
5322 i = hash % FACE_CACHE_BUCKETS_SIZE;
5324 for (face = cache->buckets[i]; face; face = face->next)
5325 if (face->hash == hash
5326 && (!FRAME_WINDOW_P (f)
5327 || FACE_SUITABLE_FOR_CHAR_P (face, c))
5328 && lface_equal_p (face->lface, attr))
5329 break;
5331 /* If not found, realize a new face. */
5332 if (face == NULL)
5333 face = realize_face (cache, attr, c, base_face, -1);
5335 #if GLYPH_DEBUG
5336 xassert (face == FACE_FROM_ID (f, face->id));
5338 /* When this function is called from face_for_char (in this case, C is
5339 a multibyte character), a fontset of a face returned by
5340 realize_face is not yet set, i.e. FACE_SUITABLE_FOR_CHAR_P (FACE,
5341 C) is not sutisfied. The fontset is set for this face by
5342 face_for_char later. */
5343 #if 0
5344 if (FRAME_WINDOW_P (f))
5345 xassert (FACE_SUITABLE_FOR_CHAR_P (face, c));
5346 #endif
5347 #endif /* GLYPH_DEBUG */
5349 return face->id;
5353 /* Return the face id of the realized face for named face SYMBOL on
5354 frame F suitable for displaying character C. Value is -1 if the
5355 face couldn't be determined, which might happen if the default face
5356 isn't realized and cannot be realized. */
5359 lookup_named_face (f, symbol, c)
5360 struct frame *f;
5361 Lisp_Object symbol;
5362 int c;
5364 Lisp_Object attrs[LFACE_VECTOR_SIZE];
5365 Lisp_Object symbol_attrs[LFACE_VECTOR_SIZE];
5366 struct face *default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
5368 if (default_face == NULL)
5370 if (!realize_basic_faces (f))
5371 return -1;
5372 default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
5375 get_lface_attributes (f, symbol, symbol_attrs, 1);
5376 bcopy (default_face->lface, attrs, sizeof attrs);
5377 merge_face_vectors (f, symbol_attrs, attrs, Qnil);
5378 return lookup_face (f, attrs, c, NULL);
5382 /* Return the ID of the realized ASCII face of Lisp face with ID
5383 LFACE_ID on frame F. Value is -1 if LFACE_ID isn't valid. */
5386 ascii_face_of_lisp_face (f, lface_id)
5387 struct frame *f;
5388 int lface_id;
5390 int face_id;
5392 if (lface_id >= 0 && lface_id < lface_id_to_name_size)
5394 Lisp_Object face_name = lface_id_to_name[lface_id];
5395 face_id = lookup_named_face (f, face_name, 0);
5397 else
5398 face_id = -1;
5400 return face_id;
5404 /* Return a face for charset ASCII that is like the face with id
5405 FACE_ID on frame F, but has a font that is STEPS steps smaller.
5406 STEPS < 0 means larger. Value is the id of the face. */
5409 smaller_face (f, face_id, steps)
5410 struct frame *f;
5411 int face_id, steps;
5413 #ifdef HAVE_WINDOW_SYSTEM
5414 struct face *face;
5415 Lisp_Object attrs[LFACE_VECTOR_SIZE];
5416 int pt, last_pt, last_height;
5417 int delta;
5418 int new_face_id;
5419 struct face *new_face;
5421 /* If not called for an X frame, just return the original face. */
5422 if (FRAME_TERMCAP_P (f))
5423 return face_id;
5425 /* Try in increments of 1/2 pt. */
5426 delta = steps < 0 ? 5 : -5;
5427 steps = abs (steps);
5429 face = FACE_FROM_ID (f, face_id);
5430 bcopy (face->lface, attrs, sizeof attrs);
5431 pt = last_pt = XFASTINT (attrs[LFACE_HEIGHT_INDEX]);
5432 new_face_id = face_id;
5433 last_height = FONT_HEIGHT (face->font);
5435 while (steps
5436 && pt + delta > 0
5437 /* Give up if we cannot find a font within 10pt. */
5438 && abs (last_pt - pt) < 100)
5440 /* Look up a face for a slightly smaller/larger font. */
5441 pt += delta;
5442 attrs[LFACE_HEIGHT_INDEX] = make_number (pt);
5443 new_face_id = lookup_face (f, attrs, 0, NULL);
5444 new_face = FACE_FROM_ID (f, new_face_id);
5446 /* If height changes, count that as one step. */
5447 if ((delta < 0 && FONT_HEIGHT (new_face->font) < last_height)
5448 || (delta > 0 && FONT_HEIGHT (new_face->font) > last_height))
5450 --steps;
5451 last_height = FONT_HEIGHT (new_face->font);
5452 last_pt = pt;
5456 return new_face_id;
5458 #else /* not HAVE_WINDOW_SYSTEM */
5460 return face_id;
5462 #endif /* not HAVE_WINDOW_SYSTEM */
5466 /* Return a face for charset ASCII that is like the face with id
5467 FACE_ID on frame F, but has height HEIGHT. */
5470 face_with_height (f, face_id, height)
5471 struct frame *f;
5472 int face_id;
5473 int height;
5475 #ifdef HAVE_WINDOW_SYSTEM
5476 struct face *face;
5477 Lisp_Object attrs[LFACE_VECTOR_SIZE];
5479 if (FRAME_TERMCAP_P (f)
5480 || height <= 0)
5481 return face_id;
5483 face = FACE_FROM_ID (f, face_id);
5484 bcopy (face->lface, attrs, sizeof attrs);
5485 attrs[LFACE_HEIGHT_INDEX] = make_number (height);
5486 face_id = lookup_face (f, attrs, 0, NULL);
5487 #endif /* HAVE_WINDOW_SYSTEM */
5489 return face_id;
5493 /* Return the face id of the realized face for named face SYMBOL on
5494 frame F suitable for displaying character C, and use attributes of
5495 the face FACE_ID for attributes that aren't completely specified by
5496 SYMBOL. This is like lookup_named_face, except that the default
5497 attributes come from FACE_ID, not from the default face. FACE_ID
5498 is assumed to be already realized. */
5501 lookup_derived_face (f, symbol, c, face_id)
5502 struct frame *f;
5503 Lisp_Object symbol;
5504 int c;
5505 int face_id;
5507 Lisp_Object attrs[LFACE_VECTOR_SIZE];
5508 Lisp_Object symbol_attrs[LFACE_VECTOR_SIZE];
5509 struct face *default_face = FACE_FROM_ID (f, face_id);
5511 if (!default_face)
5512 abort ();
5514 get_lface_attributes (f, symbol, symbol_attrs, 1);
5515 bcopy (default_face->lface, attrs, sizeof attrs);
5516 merge_face_vectors (f, symbol_attrs, attrs, Qnil);
5517 return lookup_face (f, attrs, c, default_face);
5520 DEFUN ("face-attributes-as-vector", Fface_attributes_as_vector,
5521 Sface_attributes_as_vector, 1, 1, 0,
5522 doc: /* Return a vector of face attributes corresponding to PLIST. */)
5523 (plist)
5524 Lisp_Object plist;
5526 Lisp_Object lface;
5527 lface = Fmake_vector (make_number (LFACE_VECTOR_SIZE),
5528 Qunspecified);
5529 merge_face_vector_with_property (XFRAME (selected_frame),
5530 XVECTOR (lface)->contents,
5531 plist);
5532 return lface;
5537 /***********************************************************************
5538 Font selection
5539 ***********************************************************************/
5541 DEFUN ("internal-set-font-selection-order",
5542 Finternal_set_font_selection_order,
5543 Sinternal_set_font_selection_order, 1, 1, 0,
5544 doc: /* Set font selection order for face font selection to ORDER.
5545 ORDER must be a list of length 4 containing the symbols `:width',
5546 `:height', `:weight', and `:slant'. Face attributes appearing
5547 first in ORDER are matched first, e.g. if `:height' appears before
5548 `:weight' in ORDER, font selection first tries to find a font with
5549 a suitable height, and then tries to match the font weight.
5550 Value is ORDER. */)
5551 (order)
5552 Lisp_Object order;
5554 Lisp_Object list;
5555 int i;
5556 int indices[DIM (font_sort_order)];
5558 CHECK_LIST (order);
5559 bzero (indices, sizeof indices);
5560 i = 0;
5562 for (list = order;
5563 CONSP (list) && i < DIM (indices);
5564 list = XCDR (list), ++i)
5566 Lisp_Object attr = XCAR (list);
5567 int xlfd;
5569 if (EQ (attr, QCwidth))
5570 xlfd = XLFD_SWIDTH;
5571 else if (EQ (attr, QCheight))
5572 xlfd = XLFD_POINT_SIZE;
5573 else if (EQ (attr, QCweight))
5574 xlfd = XLFD_WEIGHT;
5575 else if (EQ (attr, QCslant))
5576 xlfd = XLFD_SLANT;
5577 else
5578 break;
5580 if (indices[i] != 0)
5581 break;
5582 indices[i] = xlfd;
5585 if (!NILP (list) || i != DIM (indices))
5586 signal_error ("Invalid font sort order", order);
5587 for (i = 0; i < DIM (font_sort_order); ++i)
5588 if (indices[i] == 0)
5589 signal_error ("Invalid font sort order", order);
5591 if (bcmp (indices, font_sort_order, sizeof indices) != 0)
5593 bcopy (indices, font_sort_order, sizeof font_sort_order);
5594 free_all_realized_faces (Qnil);
5597 return Qnil;
5601 DEFUN ("internal-set-alternative-font-family-alist",
5602 Finternal_set_alternative_font_family_alist,
5603 Sinternal_set_alternative_font_family_alist, 1, 1, 0,
5604 doc: /* Define alternative font families to try in face font selection.
5605 ALIST is an alist of (FAMILY ALTERNATIVE1 ALTERNATIVE2 ...) entries.
5606 Each ALTERNATIVE is tried in order if no fonts of font family FAMILY can
5607 be found. Value is ALIST. */)
5608 (alist)
5609 Lisp_Object alist;
5611 CHECK_LIST (alist);
5612 Vface_alternative_font_family_alist = alist;
5613 free_all_realized_faces (Qnil);
5614 return alist;
5618 DEFUN ("internal-set-alternative-font-registry-alist",
5619 Finternal_set_alternative_font_registry_alist,
5620 Sinternal_set_alternative_font_registry_alist, 1, 1, 0,
5621 doc: /* Define alternative font registries to try in face font selection.
5622 ALIST is an alist of (REGISTRY ALTERNATIVE1 ALTERNATIVE2 ...) entries.
5623 Each ALTERNATIVE is tried in order if no fonts of font registry REGISTRY can
5624 be found. Value is ALIST. */)
5625 (alist)
5626 Lisp_Object alist;
5628 CHECK_LIST (alist);
5629 Vface_alternative_font_registry_alist = alist;
5630 free_all_realized_faces (Qnil);
5631 return alist;
5635 #ifdef HAVE_WINDOW_SYSTEM
5637 /* Value is non-zero if FONT is the name of a scalable font. The
5638 X11R6 XLFD spec says that point size, pixel size, and average width
5639 are zero for scalable fonts. Intlfonts contain at least one
5640 scalable font ("*-muleindian-1") for which this isn't true, so we
5641 just test average width. */
5643 static int
5644 font_scalable_p (font)
5645 struct font_name *font;
5647 char *s = font->fields[XLFD_AVGWIDTH];
5648 return (*s == '0' && *(s + 1) == '\0')
5649 #ifdef WINDOWSNT
5650 /* Windows implementation of XLFD is slightly broken for backward
5651 compatibility with previous broken versions, so test for
5652 wildcards as well as 0. */
5653 || *s == '*'
5654 #endif
5659 /* Ignore the difference of font point size less than this value. */
5661 #define FONT_POINT_SIZE_QUANTUM 5
5663 /* Value is non-zero if FONT1 is a better match for font attributes
5664 VALUES than FONT2. VALUES is an array of face attribute values in
5665 font sort order. COMPARE_PT_P zero means don't compare point
5666 sizes. AVGWIDTH, if not zero, is a specified font average width
5667 to compare with. */
5669 static int
5670 better_font_p (values, font1, font2, compare_pt_p, avgwidth)
5671 int *values;
5672 struct font_name *font1, *font2;
5673 int compare_pt_p, avgwidth;
5675 int i;
5677 for (i = 0; i < DIM (font_sort_order); ++i)
5679 int xlfd_idx = font_sort_order[i];
5681 if (compare_pt_p || xlfd_idx != XLFD_POINT_SIZE)
5683 int delta1 = abs (values[i] - font1->numeric[xlfd_idx]);
5684 int delta2 = abs (values[i] - font2->numeric[xlfd_idx]);
5686 if (xlfd_idx == XLFD_POINT_SIZE
5687 && abs (delta1 - delta2) < FONT_POINT_SIZE_QUANTUM)
5688 continue;
5689 if (delta1 > delta2)
5690 return 0;
5691 else if (delta1 < delta2)
5692 return 1;
5693 else
5695 /* The difference may be equal because, e.g., the face
5696 specifies `italic' but we have only `regular' and
5697 `oblique'. Prefer `oblique' in this case. */
5698 if ((xlfd_idx == XLFD_WEIGHT || xlfd_idx == XLFD_SLANT)
5699 && font1->numeric[xlfd_idx] > values[i]
5700 && font2->numeric[xlfd_idx] < values[i])
5701 return 1;
5706 if (avgwidth)
5708 int delta1 = abs (avgwidth - font1->numeric[XLFD_AVGWIDTH]);
5709 int delta2 = abs (avgwidth - font2->numeric[XLFD_AVGWIDTH]);
5710 if (delta1 > delta2)
5711 return 0;
5712 else if (delta1 < delta2)
5713 return 1;
5716 return font1->registry_priority < font2->registry_priority;
5720 /* Value is non-zero if FONT is an exact match for face attributes in
5721 SPECIFIED. SPECIFIED is an array of face attribute values in font
5722 sort order. AVGWIDTH, if non-zero, is an average width to compare
5723 with. */
5725 static int
5726 exact_face_match_p (specified, font, avgwidth)
5727 int *specified;
5728 struct font_name *font;
5729 int avgwidth;
5731 int i;
5733 for (i = 0; i < DIM (font_sort_order); ++i)
5734 if (specified[i] != font->numeric[font_sort_order[i]])
5735 break;
5737 return (i == DIM (font_sort_order)
5738 && (avgwidth <= 0
5739 || avgwidth == font->numeric[XLFD_AVGWIDTH]));
5743 /* Value is the name of a scaled font, generated from scalable font
5744 FONT on frame F. SPECIFIED_PT is the point-size to scale FONT to.
5745 Value is allocated from heap. */
5747 static char *
5748 build_scalable_font_name (f, font, specified_pt)
5749 struct frame *f;
5750 struct font_name *font;
5751 int specified_pt;
5753 char point_size[20], pixel_size[20];
5754 int pixel_value;
5755 double resy = FRAME_X_DISPLAY_INFO (f)->resy;
5756 double pt;
5758 /* If scalable font is for a specific resolution, compute
5759 the point size we must specify from the resolution of
5760 the display and the specified resolution of the font. */
5761 if (font->numeric[XLFD_RESY] != 0)
5763 pt = resy / font->numeric[XLFD_RESY] * specified_pt + 0.5;
5764 pixel_value = font->numeric[XLFD_RESY] / (PT_PER_INCH * 10.0) * pt;
5766 else
5768 pt = specified_pt;
5769 pixel_value = resy / (PT_PER_INCH * 10.0) * pt;
5772 /* Set point size of the font. */
5773 sprintf (point_size, "%d", (int) pt);
5774 font->fields[XLFD_POINT_SIZE] = point_size;
5775 font->numeric[XLFD_POINT_SIZE] = pt;
5777 /* Set pixel size. */
5778 sprintf (pixel_size, "%d", pixel_value);
5779 font->fields[XLFD_PIXEL_SIZE] = pixel_size;
5780 font->numeric[XLFD_PIXEL_SIZE] = pixel_value;
5782 /* If font doesn't specify its resolution, use the
5783 resolution of the display. */
5784 if (font->numeric[XLFD_RESY] == 0)
5786 char buffer[20];
5787 sprintf (buffer, "%d", (int) resy);
5788 font->fields[XLFD_RESY] = buffer;
5789 font->numeric[XLFD_RESY] = resy;
5792 if (strcmp (font->fields[XLFD_RESX], "0") == 0)
5794 char buffer[20];
5795 int resx = FRAME_X_DISPLAY_INFO (f)->resx;
5796 sprintf (buffer, "%d", resx);
5797 font->fields[XLFD_RESX] = buffer;
5798 font->numeric[XLFD_RESX] = resx;
5801 return build_font_name (font);
5805 /* Value is non-zero if we are allowed to use scalable font FONT. We
5806 can't run a Lisp function here since this function may be called
5807 with input blocked. */
5809 static int
5810 may_use_scalable_font_p (font)
5811 char *font;
5813 if (EQ (Vscalable_fonts_allowed, Qt))
5814 return 1;
5815 else if (CONSP (Vscalable_fonts_allowed))
5817 Lisp_Object tail, regexp;
5819 for (tail = Vscalable_fonts_allowed; CONSP (tail); tail = XCDR (tail))
5821 regexp = XCAR (tail);
5822 if (STRINGP (regexp)
5823 && fast_c_string_match_ignore_case (regexp, font) >= 0)
5824 return 1;
5828 return 0;
5833 /* Return the name of the best matching font for face attributes ATTRS
5834 in the array of font_name structures FONTS which contains NFONTS
5835 elements. WIDTH_RATIO is a factor with which to multiply average
5836 widths if ATTRS specifies such a width.
5838 Value is a font name which is allocated from the heap. FONTS is
5839 freed by this function. */
5841 static char *
5842 best_matching_font (f, attrs, fonts, nfonts, width_ratio)
5843 struct frame *f;
5844 Lisp_Object *attrs;
5845 struct font_name *fonts;
5846 int nfonts;
5847 int width_ratio;
5849 char *font_name;
5850 struct font_name *best;
5851 int i, pt = 0;
5852 int specified[5];
5853 int exact_p, avgwidth;
5855 if (nfonts == 0)
5856 return NULL;
5858 /* Make specified font attributes available in `specified',
5859 indexed by sort order. */
5860 for (i = 0; i < DIM (font_sort_order); ++i)
5862 int xlfd_idx = font_sort_order[i];
5864 if (xlfd_idx == XLFD_SWIDTH)
5865 specified[i] = face_numeric_swidth (attrs[LFACE_SWIDTH_INDEX]);
5866 else if (xlfd_idx == XLFD_POINT_SIZE)
5867 specified[i] = pt = XFASTINT (attrs[LFACE_HEIGHT_INDEX]);
5868 else if (xlfd_idx == XLFD_WEIGHT)
5869 specified[i] = face_numeric_weight (attrs[LFACE_WEIGHT_INDEX]);
5870 else if (xlfd_idx == XLFD_SLANT)
5871 specified[i] = face_numeric_slant (attrs[LFACE_SLANT_INDEX]);
5872 else
5873 abort ();
5876 avgwidth = (UNSPECIFIEDP (attrs[LFACE_AVGWIDTH_INDEX])
5878 : XFASTINT (attrs[LFACE_AVGWIDTH_INDEX]) * width_ratio);
5880 exact_p = 0;
5882 /* Start with the first non-scalable font in the list. */
5883 for (i = 0; i < nfonts; ++i)
5884 if (!font_scalable_p (fonts + i))
5885 break;
5887 /* Find the best match among the non-scalable fonts. */
5888 if (i < nfonts)
5890 best = fonts + i;
5892 for (i = 1; i < nfonts; ++i)
5893 if (!font_scalable_p (fonts + i)
5894 && better_font_p (specified, fonts + i, best, 1, avgwidth))
5896 best = fonts + i;
5898 exact_p = exact_face_match_p (specified, best, avgwidth);
5899 if (exact_p)
5900 break;
5904 else
5905 best = NULL;
5907 /* Unless we found an exact match among non-scalable fonts, see if
5908 we can find a better match among scalable fonts. */
5909 if (!exact_p)
5911 /* A scalable font is better if
5913 1. its weight, slant, swidth attributes are better, or.
5915 2. the best non-scalable font doesn't have the required
5916 point size, and the scalable fonts weight, slant, swidth
5917 isn't worse. */
5919 int non_scalable_has_exact_height_p;
5921 if (best && best->numeric[XLFD_POINT_SIZE] == pt)
5922 non_scalable_has_exact_height_p = 1;
5923 else
5924 non_scalable_has_exact_height_p = 0;
5926 for (i = 0; i < nfonts; ++i)
5927 if (font_scalable_p (fonts + i))
5929 if (best == NULL
5930 || better_font_p (specified, fonts + i, best, 0, 0)
5931 || (!non_scalable_has_exact_height_p
5932 && !better_font_p (specified, best, fonts + i, 0, 0)))
5933 best = fonts + i;
5937 if (font_scalable_p (best))
5938 font_name = build_scalable_font_name (f, best, pt);
5939 else
5940 font_name = build_font_name (best);
5942 /* Free font_name structures. */
5943 free_font_names (fonts, nfonts);
5945 return font_name;
5949 /* Get a list of matching fonts on frame F, considering FAMILY
5950 and alternative font families from Vface_alternative_font_registry_alist.
5952 FAMILY is the font family whose alternatives are considered.
5954 REGISTRY, if a string, specifies a font registry and encoding to
5955 match. A value of nil means include fonts of any registry and
5956 encoding.
5958 Return in *FONTS a pointer to a vector of font_name structures for
5959 the fonts matched. Value is the number of fonts found. */
5961 static int
5962 try_alternative_families (f, family, registry, fonts)
5963 struct frame *f;
5964 Lisp_Object family, registry;
5965 struct font_name **fonts;
5967 Lisp_Object alter;
5968 int nfonts = 0;
5970 nfonts = font_list (f, Qnil, family, registry, fonts);
5971 if (nfonts == 0)
5973 /* Try alternative font families. */
5974 alter = Fassoc (family, Vface_alternative_font_family_alist);
5975 if (CONSP (alter))
5977 for (alter = XCDR (alter);
5978 CONSP (alter) && nfonts == 0;
5979 alter = XCDR (alter))
5981 if (STRINGP (XCAR (alter)))
5982 nfonts = font_list (f, Qnil, XCAR (alter), registry, fonts);
5986 /* Try scalable fonts before giving up. */
5987 if (nfonts == 0 && NILP (Vscalable_fonts_allowed))
5989 int count = BINDING_STACK_SIZE ();
5990 specbind (Qscalable_fonts_allowed, Qt);
5991 nfonts = try_alternative_families (f, family, registry, fonts);
5992 unbind_to (count, Qnil);
5995 return nfonts;
5999 /* Get a list of matching fonts on frame F.
6001 FAMILY, if a string, specifies a font family derived from the fontset.
6002 It is only used if the face does not specify any family in ATTRS or
6003 if we cannot find any font of the face's family.
6005 REGISTRY, if a string, specifies a font registry and encoding to
6006 match. A value of nil means include fonts of any registry and
6007 encoding.
6009 Return in *FONTS a pointer to a vector of font_name structures for
6010 the fonts matched. Value is the number of fonts found. */
6012 static int
6013 try_font_list (f, attrs, family, registry, fonts)
6014 struct frame *f;
6015 Lisp_Object *attrs;
6016 Lisp_Object family, registry;
6017 struct font_name **fonts;
6019 int nfonts = 0;
6020 Lisp_Object face_family = attrs[LFACE_FAMILY_INDEX];
6022 if (STRINGP (face_family))
6023 nfonts = try_alternative_families (f, face_family, registry, fonts);
6025 if (nfonts == 0 && !NILP (family))
6026 nfonts = try_alternative_families (f, family, registry, fonts);
6028 /* Try font family of the default face or "fixed". */
6029 if (nfonts == 0)
6031 struct face *default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
6032 if (default_face)
6033 family = default_face->lface[LFACE_FAMILY_INDEX];
6034 else
6035 family = build_string ("fixed");
6036 nfonts = font_list (f, Qnil, family, registry, fonts);
6039 /* Try any family with the given registry. */
6040 if (nfonts == 0)
6041 nfonts = font_list (f, Qnil, Qnil, registry, fonts);
6043 return nfonts;
6047 /* Return the fontset id of the base fontset name or alias name given
6048 by the fontset attribute of ATTRS. Value is -1 if the fontset
6049 attribute of ATTRS doesn't name a fontset. */
6051 static int
6052 face_fontset (attrs)
6053 Lisp_Object *attrs;
6055 Lisp_Object name;
6057 name = attrs[LFACE_FONT_INDEX];
6058 if (!STRINGP (name))
6059 return -1;
6060 return fs_query_fontset (name, 0);
6064 /* Choose a name of font to use on frame F to display character C with
6065 Lisp face attributes specified by ATTRS. The font name is
6066 determined by the font-related attributes in ATTRS and the name
6067 pattern for C in FONTSET. Value is the font name which is
6068 allocated from the heap and must be freed by the caller, or NULL if
6069 we can get no information about the font name of C. It is assured
6070 that we always get some information for a single byte
6071 character. */
6073 static char *
6074 choose_face_font (f, attrs, fontset, c)
6075 struct frame *f;
6076 Lisp_Object *attrs;
6077 int fontset, c;
6079 Lisp_Object pattern;
6080 char *font_name = NULL;
6081 struct font_name *fonts;
6082 int nfonts, width_ratio;
6084 /* Get (foundry and) family name and registry (and encoding) name of
6085 a font for C. */
6086 pattern = fontset_font_pattern (f, fontset, c);
6087 if (NILP (pattern))
6089 xassert (!SINGLE_BYTE_CHAR_P (c));
6090 return NULL;
6093 /* If what we got is a name pattern, return it. */
6094 if (STRINGP (pattern))
6095 return xstrdup (XSTRING (pattern)->data);
6097 /* Get a list of fonts matching that pattern and choose the
6098 best match for the specified face attributes from it. */
6099 nfonts = try_font_list (f, attrs, XCAR (pattern), XCDR (pattern), &fonts);
6100 width_ratio = (SINGLE_BYTE_CHAR_P (c)
6102 : CHARSET_WIDTH (CHAR_CHARSET (c)));
6103 font_name = best_matching_font (f, attrs, fonts, nfonts, width_ratio);
6104 return font_name;
6107 #endif /* HAVE_WINDOW_SYSTEM */
6111 /***********************************************************************
6112 Face Realization
6113 ***********************************************************************/
6115 /* Realize basic faces on frame F. Value is zero if frame parameters
6116 of F don't contain enough information needed to realize the default
6117 face. */
6119 static int
6120 realize_basic_faces (f)
6121 struct frame *f;
6123 int success_p = 0;
6124 int count = BINDING_STACK_SIZE ();
6126 /* Block input here so that we won't be surprised by an X expose
6127 event, for instance, without having the faces set up. */
6128 BLOCK_INPUT;
6129 specbind (Qscalable_fonts_allowed, Qt);
6131 if (realize_default_face (f))
6133 realize_named_face (f, Qmode_line, MODE_LINE_FACE_ID);
6134 realize_named_face (f, Qmode_line_inactive, MODE_LINE_INACTIVE_FACE_ID);
6135 realize_named_face (f, Qtool_bar, TOOL_BAR_FACE_ID);
6136 realize_named_face (f, Qfringe, FRINGE_FACE_ID);
6137 realize_named_face (f, Qheader_line, HEADER_LINE_FACE_ID);
6138 realize_named_face (f, Qscroll_bar, SCROLL_BAR_FACE_ID);
6139 realize_named_face (f, Qborder, BORDER_FACE_ID);
6140 realize_named_face (f, Qcursor, CURSOR_FACE_ID);
6141 realize_named_face (f, Qmouse, MOUSE_FACE_ID);
6142 realize_named_face (f, Qmenu, MENU_FACE_ID);
6144 /* Reflect changes in the `menu' face in menu bars. */
6145 if (FRAME_FACE_CACHE (f)->menu_face_changed_p)
6147 FRAME_FACE_CACHE (f)->menu_face_changed_p = 0;
6148 #ifdef USE_X_TOOLKIT
6149 x_update_menu_appearance (f);
6150 #endif
6153 success_p = 1;
6156 unbind_to (count, Qnil);
6157 UNBLOCK_INPUT;
6158 return success_p;
6162 /* Realize the default face on frame F. If the face is not fully
6163 specified, make it fully-specified. Attributes of the default face
6164 that are not explicitly specified are taken from frame parameters. */
6166 static int
6167 realize_default_face (f)
6168 struct frame *f;
6170 struct face_cache *c = FRAME_FACE_CACHE (f);
6171 Lisp_Object lface;
6172 Lisp_Object attrs[LFACE_VECTOR_SIZE];
6173 Lisp_Object frame_font;
6174 struct face *face;
6176 /* If the `default' face is not yet known, create it. */
6177 lface = lface_from_face_name (f, Qdefault, 0);
6178 if (NILP (lface))
6180 Lisp_Object frame;
6181 XSETFRAME (frame, f);
6182 lface = Finternal_make_lisp_face (Qdefault, frame);
6185 #ifdef HAVE_WINDOW_SYSTEM
6186 if (FRAME_WINDOW_P (f))
6188 /* Set frame_font to the value of the `font' frame parameter. */
6189 frame_font = Fassq (Qfont, f->param_alist);
6190 xassert (CONSP (frame_font) && STRINGP (XCDR (frame_font)));
6191 frame_font = XCDR (frame_font);
6192 set_lface_from_font_name (f, lface, frame_font, 1, 1);
6194 #endif /* HAVE_WINDOW_SYSTEM */
6196 if (!FRAME_WINDOW_P (f))
6198 LFACE_FAMILY (lface) = build_string ("default");
6199 LFACE_SWIDTH (lface) = Qnormal;
6200 LFACE_HEIGHT (lface) = make_number (1);
6201 if (UNSPECIFIEDP (LFACE_WEIGHT (lface)))
6202 LFACE_WEIGHT (lface) = Qnormal;
6203 if (UNSPECIFIEDP (LFACE_SLANT (lface)))
6204 LFACE_SLANT (lface) = Qnormal;
6205 LFACE_AVGWIDTH (lface) = Qunspecified;
6208 if (UNSPECIFIEDP (LFACE_UNDERLINE (lface)))
6209 LFACE_UNDERLINE (lface) = Qnil;
6211 if (UNSPECIFIEDP (LFACE_OVERLINE (lface)))
6212 LFACE_OVERLINE (lface) = Qnil;
6214 if (UNSPECIFIEDP (LFACE_STRIKE_THROUGH (lface)))
6215 LFACE_STRIKE_THROUGH (lface) = Qnil;
6217 if (UNSPECIFIEDP (LFACE_BOX (lface)))
6218 LFACE_BOX (lface) = Qnil;
6220 if (UNSPECIFIEDP (LFACE_INVERSE (lface)))
6221 LFACE_INVERSE (lface) = Qnil;
6223 if (UNSPECIFIEDP (LFACE_FOREGROUND (lface)))
6225 /* This function is called so early that colors are not yet
6226 set in the frame parameter list. */
6227 Lisp_Object color = Fassq (Qforeground_color, f->param_alist);
6229 if (CONSP (color) && STRINGP (XCDR (color)))
6230 LFACE_FOREGROUND (lface) = XCDR (color);
6231 else if (FRAME_WINDOW_P (f))
6232 return 0;
6233 else if (FRAME_TERMCAP_P (f) || FRAME_MSDOS_P (f))
6234 LFACE_FOREGROUND (lface) = build_string (unspecified_fg);
6235 else
6236 abort ();
6239 if (UNSPECIFIEDP (LFACE_BACKGROUND (lface)))
6241 /* This function is called so early that colors are not yet
6242 set in the frame parameter list. */
6243 Lisp_Object color = Fassq (Qbackground_color, f->param_alist);
6244 if (CONSP (color) && STRINGP (XCDR (color)))
6245 LFACE_BACKGROUND (lface) = XCDR (color);
6246 else if (FRAME_WINDOW_P (f))
6247 return 0;
6248 else if (FRAME_TERMCAP_P (f) || FRAME_MSDOS_P (f))
6249 LFACE_BACKGROUND (lface) = build_string (unspecified_bg);
6250 else
6251 abort ();
6254 if (UNSPECIFIEDP (LFACE_STIPPLE (lface)))
6255 LFACE_STIPPLE (lface) = Qnil;
6257 /* Realize the face; it must be fully-specified now. */
6258 xassert (lface_fully_specified_p (XVECTOR (lface)->contents));
6259 check_lface (lface);
6260 bcopy (XVECTOR (lface)->contents, attrs, sizeof attrs);
6261 face = realize_face (c, attrs, 0, NULL, DEFAULT_FACE_ID);
6262 return 1;
6266 /* Realize basic faces other than the default face in face cache C.
6267 SYMBOL is the face name, ID is the face id the realized face must
6268 have. The default face must have been realized already. */
6270 static void
6271 realize_named_face (f, symbol, id)
6272 struct frame *f;
6273 Lisp_Object symbol;
6274 int id;
6276 struct face_cache *c = FRAME_FACE_CACHE (f);
6277 Lisp_Object lface = lface_from_face_name (f, symbol, 0);
6278 Lisp_Object attrs[LFACE_VECTOR_SIZE];
6279 Lisp_Object symbol_attrs[LFACE_VECTOR_SIZE];
6280 struct face *new_face;
6282 /* The default face must exist and be fully specified. */
6283 get_lface_attributes (f, Qdefault, attrs, 1);
6284 check_lface_attrs (attrs);
6285 xassert (lface_fully_specified_p (attrs));
6287 /* If SYMBOL isn't know as a face, create it. */
6288 if (NILP (lface))
6290 Lisp_Object frame;
6291 XSETFRAME (frame, f);
6292 lface = Finternal_make_lisp_face (symbol, frame);
6295 /* Merge SYMBOL's face with the default face. */
6296 get_lface_attributes (f, symbol, symbol_attrs, 1);
6297 merge_face_vectors (f, symbol_attrs, attrs, Qnil);
6299 /* Realize the face. */
6300 new_face = realize_face (c, attrs, 0, NULL, id);
6304 /* Realize the fully-specified face with attributes ATTRS in face
6305 cache CACHE for character C. If C is a multibyte character,
6306 BASE_FACE is a face that has the same attributes. Otherwise,
6307 BASE_FACE is ignored. If FORMER_FACE_ID is non-negative, it is an
6308 ID of face to remove before caching the new face. Value is a
6309 pointer to the newly created realized face. */
6311 static struct face *
6312 realize_face (cache, attrs, c, base_face, former_face_id)
6313 struct face_cache *cache;
6314 Lisp_Object *attrs;
6315 int c;
6316 struct face *base_face;
6317 int former_face_id;
6319 struct face *face;
6321 /* LFACE must be fully specified. */
6322 xassert (cache != NULL);
6323 check_lface_attrs (attrs);
6325 if (former_face_id >= 0 && cache->used > former_face_id)
6327 /* Remove the former face. */
6328 struct face *former_face = cache->faces_by_id[former_face_id];
6329 uncache_face (cache, former_face);
6330 free_realized_face (cache->f, former_face);
6333 if (FRAME_WINDOW_P (cache->f))
6334 face = realize_x_face (cache, attrs, c, base_face);
6335 else if (FRAME_TERMCAP_P (cache->f) || FRAME_MSDOS_P (cache->f))
6336 face = realize_tty_face (cache, attrs, c);
6337 else
6338 abort ();
6340 /* Insert the new face. */
6341 cache_face (cache, face, lface_hash (attrs));
6342 #ifdef HAVE_WINDOW_SYSTEM
6343 if (FRAME_WINDOW_P (cache->f) && face->font == NULL)
6344 load_face_font (cache->f, face, c);
6345 #endif /* HAVE_WINDOW_SYSTEM */
6346 return face;
6350 /* Realize the fully-specified face with attributes ATTRS in face
6351 cache CACHE for character C. Do it for X frame CACHE->f. If C is
6352 a multibyte character, BASE_FACE is a face that has the same
6353 attributes. Otherwise, BASE_FACE is ignored. If the new face
6354 doesn't share font with the default face, a fontname is allocated
6355 from the heap and set in `font_name' of the new face, but it is not
6356 yet loaded here. Value is a pointer to the newly created realized
6357 face. */
6359 static struct face *
6360 realize_x_face (cache, attrs, c, base_face)
6361 struct face_cache *cache;
6362 Lisp_Object *attrs;
6363 int c;
6364 struct face *base_face;
6366 #ifdef HAVE_WINDOW_SYSTEM
6367 struct face *face, *default_face;
6368 struct frame *f;
6369 Lisp_Object stipple, overline, strike_through, box;
6371 xassert (FRAME_WINDOW_P (cache->f));
6372 xassert (SINGLE_BYTE_CHAR_P (c)
6373 || base_face);
6375 /* Allocate a new realized face. */
6376 face = make_realized_face (attrs);
6378 f = cache->f;
6380 /* If C is a multibyte character, we share all face attirbutes with
6381 BASE_FACE including the realized fontset. But, we must load a
6382 different font. */
6383 if (!SINGLE_BYTE_CHAR_P (c))
6385 bcopy (base_face, face, sizeof *face);
6386 face->gc = 0;
6388 /* Don't try to free the colors copied bitwise from BASE_FACE. */
6389 face->colors_copied_bitwise_p = 1;
6391 /* to force realize_face to load font */
6392 face->font = NULL;
6393 return face;
6396 /* Now we are realizing a face for ASCII (and unibyte) characters. */
6398 /* Determine the font to use. Most of the time, the font will be
6399 the same as the font of the default face, so try that first. */
6400 default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
6401 if (default_face
6402 && FACE_SUITABLE_FOR_CHAR_P (default_face, c)
6403 && lface_same_font_attributes_p (default_face->lface, attrs))
6405 face->font = default_face->font;
6406 face->fontset = default_face->fontset;
6407 face->font_info_id = default_face->font_info_id;
6408 face->font_name = default_face->font_name;
6409 face->ascii_face = face;
6411 /* But, as we can't share the fontset, make a new realized
6412 fontset that has the same base fontset as of the default
6413 face. */
6414 face->fontset
6415 = make_fontset_for_ascii_face (f, default_face->fontset);
6417 else
6419 /* If the face attribute ATTRS specifies a fontset, use it as
6420 the base of a new realized fontset. Otherwise, use the same
6421 base fontset as of the default face. The base determines
6422 registry and encoding of a font. It may also determine
6423 foundry and family. The other fields of font name pattern
6424 are constructed from ATTRS. */
6425 int fontset = face_fontset (attrs);
6427 if ((fontset == -1) && default_face)
6428 fontset = default_face->fontset;
6429 face->fontset = make_fontset_for_ascii_face (f, fontset);
6430 face->font = NULL; /* to force realize_face to load font */
6432 #ifdef macintosh
6433 /* Load the font if it is specified in ATTRS. This fixes
6434 changing frame font on the Mac. */
6435 if (STRINGP (attrs[LFACE_FONT_INDEX]))
6437 struct font_info *font_info =
6438 FS_LOAD_FONT (f, 0, XSTRING (attrs[LFACE_FONT_INDEX])->data, -1);
6439 if (font_info)
6440 face->font = font_info->font;
6442 #endif
6445 /* Load colors, and set remaining attributes. */
6447 load_face_colors (f, face, attrs);
6449 /* Set up box. */
6450 box = attrs[LFACE_BOX_INDEX];
6451 if (STRINGP (box))
6453 /* A simple box of line width 1 drawn in color given by
6454 the string. */
6455 face->box_color = load_color (f, face, attrs[LFACE_BOX_INDEX],
6456 LFACE_BOX_INDEX);
6457 face->box = FACE_SIMPLE_BOX;
6458 face->box_line_width = 1;
6460 else if (INTEGERP (box))
6462 /* Simple box of specified line width in foreground color of the
6463 face. */
6464 xassert (XINT (box) != 0);
6465 face->box = FACE_SIMPLE_BOX;
6466 face->box_line_width = XINT (box);
6467 face->box_color = face->foreground;
6468 face->box_color_defaulted_p = 1;
6470 else if (CONSP (box))
6472 /* `(:width WIDTH :color COLOR :shadow SHADOW)'. SHADOW
6473 being one of `raised' or `sunken'. */
6474 face->box = FACE_SIMPLE_BOX;
6475 face->box_color = face->foreground;
6476 face->box_color_defaulted_p = 1;
6477 face->box_line_width = 1;
6479 while (CONSP (box))
6481 Lisp_Object keyword, value;
6483 keyword = XCAR (box);
6484 box = XCDR (box);
6486 if (!CONSP (box))
6487 break;
6488 value = XCAR (box);
6489 box = XCDR (box);
6491 if (EQ (keyword, QCline_width))
6493 if (INTEGERP (value) && XINT (value) != 0)
6494 face->box_line_width = XINT (value);
6496 else if (EQ (keyword, QCcolor))
6498 if (STRINGP (value))
6500 face->box_color = load_color (f, face, value,
6501 LFACE_BOX_INDEX);
6502 face->use_box_color_for_shadows_p = 1;
6505 else if (EQ (keyword, QCstyle))
6507 if (EQ (value, Qreleased_button))
6508 face->box = FACE_RAISED_BOX;
6509 else if (EQ (value, Qpressed_button))
6510 face->box = FACE_SUNKEN_BOX;
6515 /* Text underline, overline, strike-through. */
6517 if (EQ (attrs[LFACE_UNDERLINE_INDEX], Qt))
6519 /* Use default color (same as foreground color). */
6520 face->underline_p = 1;
6521 face->underline_defaulted_p = 1;
6522 face->underline_color = 0;
6524 else if (STRINGP (attrs[LFACE_UNDERLINE_INDEX]))
6526 /* Use specified color. */
6527 face->underline_p = 1;
6528 face->underline_defaulted_p = 0;
6529 face->underline_color
6530 = load_color (f, face, attrs[LFACE_UNDERLINE_INDEX],
6531 LFACE_UNDERLINE_INDEX);
6533 else if (NILP (attrs[LFACE_UNDERLINE_INDEX]))
6535 face->underline_p = 0;
6536 face->underline_defaulted_p = 0;
6537 face->underline_color = 0;
6540 overline = attrs[LFACE_OVERLINE_INDEX];
6541 if (STRINGP (overline))
6543 face->overline_color
6544 = load_color (f, face, attrs[LFACE_OVERLINE_INDEX],
6545 LFACE_OVERLINE_INDEX);
6546 face->overline_p = 1;
6548 else if (EQ (overline, Qt))
6550 face->overline_color = face->foreground;
6551 face->overline_color_defaulted_p = 1;
6552 face->overline_p = 1;
6555 strike_through = attrs[LFACE_STRIKE_THROUGH_INDEX];
6556 if (STRINGP (strike_through))
6558 face->strike_through_color
6559 = load_color (f, face, attrs[LFACE_STRIKE_THROUGH_INDEX],
6560 LFACE_STRIKE_THROUGH_INDEX);
6561 face->strike_through_p = 1;
6563 else if (EQ (strike_through, Qt))
6565 face->strike_through_color = face->foreground;
6566 face->strike_through_color_defaulted_p = 1;
6567 face->strike_through_p = 1;
6570 stipple = attrs[LFACE_STIPPLE_INDEX];
6571 if (!NILP (stipple))
6572 face->stipple = load_pixmap (f, stipple, &face->pixmap_w, &face->pixmap_h);
6574 xassert (FACE_SUITABLE_FOR_CHAR_P (face, c));
6575 return face;
6576 #endif /* HAVE_WINDOW_SYSTEM */
6580 /* Map a specified color of face FACE on frame F to a tty color index.
6581 IDX is either LFACE_FOREGROUND_INDEX or LFACE_BACKGROUND_INDEX, and
6582 specifies which color to map. Set *DEFAULTED to 1 if mapping to the
6583 default foreground/background colors. */
6585 static void
6586 map_tty_color (f, face, idx, defaulted)
6587 struct frame *f;
6588 struct face *face;
6589 enum lface_attribute_index idx;
6590 int *defaulted;
6592 Lisp_Object frame, color, def;
6593 int foreground_p = idx == LFACE_FOREGROUND_INDEX;
6594 unsigned long default_pixel, default_other_pixel, pixel;
6596 xassert (idx == LFACE_FOREGROUND_INDEX || idx == LFACE_BACKGROUND_INDEX);
6598 if (foreground_p)
6600 pixel = default_pixel = FACE_TTY_DEFAULT_FG_COLOR;
6601 default_other_pixel = FACE_TTY_DEFAULT_BG_COLOR;
6603 else
6605 pixel = default_pixel = FACE_TTY_DEFAULT_BG_COLOR;
6606 default_other_pixel = FACE_TTY_DEFAULT_FG_COLOR;
6609 XSETFRAME (frame, f);
6610 color = face->lface[idx];
6612 if (STRINGP (color)
6613 && XSTRING (color)->size
6614 && CONSP (Vtty_defined_color_alist)
6615 && (def = assq_no_quit (color, call1 (Qtty_color_alist, frame)),
6616 CONSP (def)))
6618 /* Associations in tty-defined-color-alist are of the form
6619 (NAME INDEX R G B). We need the INDEX part. */
6620 pixel = XINT (XCAR (XCDR (def)));
6623 if (pixel == default_pixel && STRINGP (color))
6625 pixel = load_color (f, face, color, idx);
6627 #if defined (MSDOS) || defined (WINDOWSNT)
6628 /* If the foreground of the default face is the default color,
6629 use the foreground color defined by the frame. */
6630 #ifdef MSDOS
6631 if (FRAME_MSDOS_P (f))
6633 #endif /* MSDOS */
6634 if (pixel == default_pixel
6635 || pixel == FACE_TTY_DEFAULT_COLOR)
6637 if (foreground_p)
6638 pixel = FRAME_FOREGROUND_PIXEL (f);
6639 else
6640 pixel = FRAME_BACKGROUND_PIXEL (f);
6641 face->lface[idx] = tty_color_name (f, pixel);
6642 *defaulted = 1;
6644 else if (pixel == default_other_pixel)
6646 if (foreground_p)
6647 pixel = FRAME_BACKGROUND_PIXEL (f);
6648 else
6649 pixel = FRAME_FOREGROUND_PIXEL (f);
6650 face->lface[idx] = tty_color_name (f, pixel);
6651 *defaulted = 1;
6653 #ifdef MSDOS
6655 #endif
6656 #endif /* MSDOS or WINDOWSNT */
6659 if (foreground_p)
6660 face->foreground = pixel;
6661 else
6662 face->background = pixel;
6666 /* Realize the fully-specified face with attributes ATTRS in face
6667 cache CACHE for character C. Do it for TTY frame CACHE->f. Value is a
6668 pointer to the newly created realized face. */
6670 static struct face *
6671 realize_tty_face (cache, attrs, c)
6672 struct face_cache *cache;
6673 Lisp_Object *attrs;
6674 int c;
6676 struct face *face;
6677 int weight, slant;
6678 int face_colors_defaulted = 0;
6679 struct frame *f = cache->f;
6681 /* Frame must be a termcap frame. */
6682 xassert (FRAME_TERMCAP_P (cache->f) || FRAME_MSDOS_P (cache->f));
6684 /* Allocate a new realized face. */
6685 face = make_realized_face (attrs);
6686 face->font_name = FRAME_MSDOS_P (cache->f) ? "ms-dos" : "tty";
6688 /* Map face attributes to TTY appearances. We map slant to
6689 dimmed text because we want italic text to appear differently
6690 and because dimmed text is probably used infrequently. */
6691 weight = face_numeric_weight (attrs[LFACE_WEIGHT_INDEX]);
6692 slant = face_numeric_slant (attrs[LFACE_SLANT_INDEX]);
6694 if (weight > XLFD_WEIGHT_MEDIUM)
6695 face->tty_bold_p = 1;
6696 if (weight < XLFD_WEIGHT_MEDIUM || slant != XLFD_SLANT_ROMAN)
6697 face->tty_dim_p = 1;
6698 if (!NILP (attrs[LFACE_UNDERLINE_INDEX]))
6699 face->tty_underline_p = 1;
6700 if (!NILP (attrs[LFACE_INVERSE_INDEX]))
6701 face->tty_reverse_p = 1;
6703 /* Map color names to color indices. */
6704 map_tty_color (f, face, LFACE_FOREGROUND_INDEX, &face_colors_defaulted);
6705 map_tty_color (f, face, LFACE_BACKGROUND_INDEX, &face_colors_defaulted);
6707 /* Swap colors if face is inverse-video. If the colors are taken
6708 from the frame colors, they are already inverted, since the
6709 frame-creation function calls x-handle-reverse-video. */
6710 if (face->tty_reverse_p && !face_colors_defaulted)
6712 unsigned long tem = face->foreground;
6713 face->foreground = face->background;
6714 face->background = tem;
6717 if (tty_suppress_bold_inverse_default_colors_p
6718 && face->tty_bold_p
6719 && face->background == FACE_TTY_DEFAULT_FG_COLOR
6720 && face->foreground == FACE_TTY_DEFAULT_BG_COLOR)
6721 face->tty_bold_p = 0;
6723 return face;
6727 DEFUN ("tty-suppress-bold-inverse-default-colors",
6728 Ftty_suppress_bold_inverse_default_colors,
6729 Stty_suppress_bold_inverse_default_colors, 1, 1, 0,
6730 doc: /* Suppress/allow boldness of faces with inverse default colors.
6731 SUPPRESS non-nil means suppress it.
6732 This affects bold faces on TTYs whose foreground is the default background
6733 color of the display and whose background is the default foreground color.
6734 For such faces, the bold face attribute is ignored if this variable
6735 is non-nil. */)
6736 (suppress)
6737 Lisp_Object suppress;
6739 tty_suppress_bold_inverse_default_colors_p = !NILP (suppress);
6740 ++face_change_count;
6741 return suppress;
6746 /***********************************************************************
6747 Computing Faces
6748 ***********************************************************************/
6750 /* Return the ID of the face to use to display character CH with face
6751 property PROP on frame F in current_buffer. */
6754 compute_char_face (f, ch, prop)
6755 struct frame *f;
6756 int ch;
6757 Lisp_Object prop;
6759 int face_id;
6761 if (NILP (current_buffer->enable_multibyte_characters))
6762 ch = 0;
6764 if (NILP (prop))
6766 struct face *face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
6767 face_id = FACE_FOR_CHAR (f, face, ch);
6769 else
6771 Lisp_Object attrs[LFACE_VECTOR_SIZE];
6772 struct face *default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
6773 bcopy (default_face->lface, attrs, sizeof attrs);
6774 merge_face_vector_with_property (f, attrs, prop);
6775 face_id = lookup_face (f, attrs, ch, NULL);
6778 return face_id;
6781 /* Return the face ID associated with buffer position POS for
6782 displaying ASCII characters. Return in *ENDPTR the position at
6783 which a different face is needed, as far as text properties and
6784 overlays are concerned. W is a window displaying current_buffer.
6786 REGION_BEG, REGION_END delimit the region, so it can be
6787 highlighted.
6789 LIMIT is a position not to scan beyond. That is to limit the time
6790 this function can take.
6792 If MOUSE is non-zero, use the character's mouse-face, not its face.
6794 The face returned is suitable for displaying ASCII characters. */
6797 face_at_buffer_position (w, pos, region_beg, region_end,
6798 endptr, limit, mouse)
6799 struct window *w;
6800 int pos;
6801 int region_beg, region_end;
6802 int *endptr;
6803 int limit;
6804 int mouse;
6806 struct frame *f = XFRAME (w->frame);
6807 Lisp_Object attrs[LFACE_VECTOR_SIZE];
6808 Lisp_Object prop, position;
6809 int i, noverlays;
6810 Lisp_Object *overlay_vec;
6811 Lisp_Object frame;
6812 int endpos;
6813 Lisp_Object propname = mouse ? Qmouse_face : Qface;
6814 Lisp_Object limit1, end;
6815 struct face *default_face;
6817 /* W must display the current buffer. We could write this function
6818 to use the frame and buffer of W, but right now it doesn't. */
6819 /* xassert (XBUFFER (w->buffer) == current_buffer); */
6821 XSETFRAME (frame, f);
6822 XSETFASTINT (position, pos);
6824 endpos = ZV;
6825 if (pos < region_beg && region_beg < endpos)
6826 endpos = region_beg;
6828 /* Get the `face' or `mouse_face' text property at POS, and
6829 determine the next position at which the property changes. */
6830 prop = Fget_text_property (position, propname, w->buffer);
6831 XSETFASTINT (limit1, (limit < endpos ? limit : endpos));
6832 end = Fnext_single_property_change (position, propname, w->buffer, limit1);
6833 if (INTEGERP (end))
6834 endpos = XINT (end);
6836 /* Look at properties from overlays. */
6838 int next_overlay;
6839 int len;
6841 /* First try with room for 40 overlays. */
6842 len = 40;
6843 overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object));
6844 noverlays = overlays_at (pos, 0, &overlay_vec, &len,
6845 &next_overlay, NULL, 0);
6847 /* If there are more than 40, make enough space for all, and try
6848 again. */
6849 if (noverlays > len)
6851 len = noverlays;
6852 overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object));
6853 noverlays = overlays_at (pos, 0, &overlay_vec, &len,
6854 &next_overlay, NULL, 0);
6857 if (next_overlay < endpos)
6858 endpos = next_overlay;
6861 *endptr = endpos;
6863 default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
6865 /* Optimize common cases where we can use the default face. */
6866 if (noverlays == 0
6867 && NILP (prop)
6868 && !(pos >= region_beg && pos < region_end))
6869 return DEFAULT_FACE_ID;
6871 /* Begin with attributes from the default face. */
6872 bcopy (default_face->lface, attrs, sizeof attrs);
6874 /* Merge in attributes specified via text properties. */
6875 if (!NILP (prop))
6876 merge_face_vector_with_property (f, attrs, prop);
6878 /* Now merge the overlay data. */
6879 noverlays = sort_overlays (overlay_vec, noverlays, w);
6880 for (i = 0; i < noverlays; i++)
6882 Lisp_Object oend;
6883 int oendpos;
6885 prop = Foverlay_get (overlay_vec[i], propname);
6886 if (!NILP (prop))
6887 merge_face_vector_with_property (f, attrs, prop);
6889 oend = OVERLAY_END (overlay_vec[i]);
6890 oendpos = OVERLAY_POSITION (oend);
6891 if (oendpos < endpos)
6892 endpos = oendpos;
6895 /* If in the region, merge in the region face. */
6896 if (pos >= region_beg && pos < region_end)
6898 Lisp_Object region_face = lface_from_face_name (f, Qregion, 0);
6899 merge_face_vectors (f, XVECTOR (region_face)->contents, attrs, Qnil);
6901 if (region_end < endpos)
6902 endpos = region_end;
6905 *endptr = endpos;
6907 /* Look up a realized face with the given face attributes,
6908 or realize a new one for ASCII characters. */
6909 return lookup_face (f, attrs, 0, NULL);
6913 /* Compute the face at character position POS in Lisp string STRING on
6914 window W, for ASCII characters.
6916 If STRING is an overlay string, it comes from position BUFPOS in
6917 current_buffer, otherwise BUFPOS is zero to indicate that STRING is
6918 not an overlay string. W must display the current buffer.
6919 REGION_BEG and REGION_END give the start and end positions of the
6920 region; both are -1 if no region is visible.
6922 BASE_FACE_ID is the id of a face to merge with. For strings coming
6923 from overlays or the `display' property it is the face at BUFPOS.
6925 If MOUSE_P is non-zero, use the character's mouse-face, not its face.
6927 Set *ENDPTR to the next position where to check for faces in
6928 STRING; -1 if the face is constant from POS to the end of the
6929 string.
6931 Value is the id of the face to use. The face returned is suitable
6932 for displaying ASCII characters. */
6935 face_at_string_position (w, string, pos, bufpos, region_beg,
6936 region_end, endptr, base_face_id, mouse_p)
6937 struct window *w;
6938 Lisp_Object string;
6939 int pos, bufpos;
6940 int region_beg, region_end;
6941 int *endptr;
6942 enum face_id base_face_id;
6943 int mouse_p;
6945 Lisp_Object prop, position, end, limit;
6946 struct frame *f = XFRAME (WINDOW_FRAME (w));
6947 Lisp_Object attrs[LFACE_VECTOR_SIZE];
6948 struct face *base_face;
6949 int multibyte_p = STRING_MULTIBYTE (string);
6950 Lisp_Object prop_name = mouse_p ? Qmouse_face : Qface;
6952 /* Get the value of the face property at the current position within
6953 STRING. Value is nil if there is no face property. */
6954 XSETFASTINT (position, pos);
6955 prop = Fget_text_property (position, prop_name, string);
6957 /* Get the next position at which to check for faces. Value of end
6958 is nil if face is constant all the way to the end of the string.
6959 Otherwise it is a string position where to check faces next.
6960 Limit is the maximum position up to which to check for property
6961 changes in Fnext_single_property_change. Strings are usually
6962 short, so set the limit to the end of the string. */
6963 XSETFASTINT (limit, XSTRING (string)->size);
6964 end = Fnext_single_property_change (position, prop_name, string, limit);
6965 if (INTEGERP (end))
6966 *endptr = XFASTINT (end);
6967 else
6968 *endptr = -1;
6970 base_face = FACE_FROM_ID (f, base_face_id);
6971 xassert (base_face);
6973 /* Optimize the default case that there is no face property and we
6974 are not in the region. */
6975 if (NILP (prop)
6976 && (base_face_id != DEFAULT_FACE_ID
6977 /* BUFPOS <= 0 means STRING is not an overlay string, so
6978 that the region doesn't have to be taken into account. */
6979 || bufpos <= 0
6980 || bufpos < region_beg
6981 || bufpos >= region_end)
6982 && (multibyte_p
6983 /* We can't realize faces for different charsets differently
6984 if we don't have fonts, so we can stop here if not working
6985 on a window-system frame. */
6986 || !FRAME_WINDOW_P (f)
6987 || FACE_SUITABLE_FOR_CHAR_P (base_face, 0)))
6988 return base_face->id;
6990 /* Begin with attributes from the base face. */
6991 bcopy (base_face->lface, attrs, sizeof attrs);
6993 /* Merge in attributes specified via text properties. */
6994 if (!NILP (prop))
6995 merge_face_vector_with_property (f, attrs, prop);
6997 /* If in the region, merge in the region face. */
6998 if (bufpos
6999 && bufpos >= region_beg
7000 && bufpos < region_end)
7002 Lisp_Object region_face = lface_from_face_name (f, Qregion, 0);
7003 merge_face_vectors (f, XVECTOR (region_face)->contents, attrs, Qnil);
7006 /* Look up a realized face with the given face attributes,
7007 or realize a new one for ASCII characters. */
7008 return lookup_face (f, attrs, 0, NULL);
7013 /***********************************************************************
7014 Tests
7015 ***********************************************************************/
7017 #if GLYPH_DEBUG
7019 /* Print the contents of the realized face FACE to stderr. */
7021 static void
7022 dump_realized_face (face)
7023 struct face *face;
7025 fprintf (stderr, "ID: %d\n", face->id);
7026 #ifdef HAVE_X_WINDOWS
7027 fprintf (stderr, "gc: %d\n", (int) face->gc);
7028 #endif
7029 fprintf (stderr, "foreground: 0x%lx (%s)\n",
7030 face->foreground,
7031 XSTRING (face->lface[LFACE_FOREGROUND_INDEX])->data);
7032 fprintf (stderr, "background: 0x%lx (%s)\n",
7033 face->background,
7034 XSTRING (face->lface[LFACE_BACKGROUND_INDEX])->data);
7035 fprintf (stderr, "font_name: %s (%s)\n",
7036 face->font_name,
7037 XSTRING (face->lface[LFACE_FAMILY_INDEX])->data);
7038 #ifdef HAVE_X_WINDOWS
7039 fprintf (stderr, "font = %p\n", face->font);
7040 #endif
7041 fprintf (stderr, "font_info_id = %d\n", face->font_info_id);
7042 fprintf (stderr, "fontset: %d\n", face->fontset);
7043 fprintf (stderr, "underline: %d (%s)\n",
7044 face->underline_p,
7045 XSTRING (Fsymbol_name (face->lface[LFACE_UNDERLINE_INDEX]))->data);
7046 fprintf (stderr, "hash: %d\n", face->hash);
7047 fprintf (stderr, "charset: %d\n", face->charset);
7051 DEFUN ("dump-face", Fdump_face, Sdump_face, 0, 1, 0, doc: /* */)
7053 Lisp_Object n;
7055 if (NILP (n))
7057 int i;
7059 fprintf (stderr, "font selection order: ");
7060 for (i = 0; i < DIM (font_sort_order); ++i)
7061 fprintf (stderr, "%d ", font_sort_order[i]);
7062 fprintf (stderr, "\n");
7064 fprintf (stderr, "alternative fonts: ");
7065 debug_print (Vface_alternative_font_family_alist);
7066 fprintf (stderr, "\n");
7068 for (i = 0; i < FRAME_FACE_CACHE (SELECTED_FRAME ())->used; ++i)
7069 Fdump_face (make_number (i));
7071 else
7073 struct face *face;
7074 CHECK_NUMBER (n);
7075 face = FACE_FROM_ID (SELECTED_FRAME (), XINT (n));
7076 if (face == NULL)
7077 error ("Not a valid face");
7078 dump_realized_face (face);
7081 return Qnil;
7085 DEFUN ("show-face-resources", Fshow_face_resources, Sshow_face_resources,
7086 0, 0, 0, doc: /* */)
7089 fprintf (stderr, "number of colors = %d\n", ncolors_allocated);
7090 fprintf (stderr, "number of pixmaps = %d\n", npixmaps_allocated);
7091 fprintf (stderr, "number of GCs = %d\n", ngcs);
7092 return Qnil;
7095 #endif /* GLYPH_DEBUG != 0 */
7099 /***********************************************************************
7100 Initialization
7101 ***********************************************************************/
7103 void
7104 syms_of_xfaces ()
7106 Qface = intern ("face");
7107 staticpro (&Qface);
7108 Qbitmap_spec_p = intern ("bitmap-spec-p");
7109 staticpro (&Qbitmap_spec_p);
7110 Qframe_update_face_colors = intern ("frame-update-face-colors");
7111 staticpro (&Qframe_update_face_colors);
7113 /* Lisp face attribute keywords. */
7114 QCfamily = intern (":family");
7115 staticpro (&QCfamily);
7116 QCheight = intern (":height");
7117 staticpro (&QCheight);
7118 QCweight = intern (":weight");
7119 staticpro (&QCweight);
7120 QCslant = intern (":slant");
7121 staticpro (&QCslant);
7122 QCunderline = intern (":underline");
7123 staticpro (&QCunderline);
7124 QCinverse_video = intern (":inverse-video");
7125 staticpro (&QCinverse_video);
7126 QCreverse_video = intern (":reverse-video");
7127 staticpro (&QCreverse_video);
7128 QCforeground = intern (":foreground");
7129 staticpro (&QCforeground);
7130 QCbackground = intern (":background");
7131 staticpro (&QCbackground);
7132 QCstipple = intern (":stipple");;
7133 staticpro (&QCstipple);
7134 QCwidth = intern (":width");
7135 staticpro (&QCwidth);
7136 QCfont = intern (":font");
7137 staticpro (&QCfont);
7138 QCbold = intern (":bold");
7139 staticpro (&QCbold);
7140 QCitalic = intern (":italic");
7141 staticpro (&QCitalic);
7142 QCoverline = intern (":overline");
7143 staticpro (&QCoverline);
7144 QCstrike_through = intern (":strike-through");
7145 staticpro (&QCstrike_through);
7146 QCbox = intern (":box");
7147 staticpro (&QCbox);
7148 QCinherit = intern (":inherit");
7149 staticpro (&QCinherit);
7151 /* Symbols used for Lisp face attribute values. */
7152 QCcolor = intern (":color");
7153 staticpro (&QCcolor);
7154 QCline_width = intern (":line-width");
7155 staticpro (&QCline_width);
7156 QCstyle = intern (":style");
7157 staticpro (&QCstyle);
7158 Qreleased_button = intern ("released-button");
7159 staticpro (&Qreleased_button);
7160 Qpressed_button = intern ("pressed-button");
7161 staticpro (&Qpressed_button);
7162 Qnormal = intern ("normal");
7163 staticpro (&Qnormal);
7164 Qultra_light = intern ("ultra-light");
7165 staticpro (&Qultra_light);
7166 Qextra_light = intern ("extra-light");
7167 staticpro (&Qextra_light);
7168 Qlight = intern ("light");
7169 staticpro (&Qlight);
7170 Qsemi_light = intern ("semi-light");
7171 staticpro (&Qsemi_light);
7172 Qsemi_bold = intern ("semi-bold");
7173 staticpro (&Qsemi_bold);
7174 Qbold = intern ("bold");
7175 staticpro (&Qbold);
7176 Qextra_bold = intern ("extra-bold");
7177 staticpro (&Qextra_bold);
7178 Qultra_bold = intern ("ultra-bold");
7179 staticpro (&Qultra_bold);
7180 Qoblique = intern ("oblique");
7181 staticpro (&Qoblique);
7182 Qitalic = intern ("italic");
7183 staticpro (&Qitalic);
7184 Qreverse_oblique = intern ("reverse-oblique");
7185 staticpro (&Qreverse_oblique);
7186 Qreverse_italic = intern ("reverse-italic");
7187 staticpro (&Qreverse_italic);
7188 Qultra_condensed = intern ("ultra-condensed");
7189 staticpro (&Qultra_condensed);
7190 Qextra_condensed = intern ("extra-condensed");
7191 staticpro (&Qextra_condensed);
7192 Qcondensed = intern ("condensed");
7193 staticpro (&Qcondensed);
7194 Qsemi_condensed = intern ("semi-condensed");
7195 staticpro (&Qsemi_condensed);
7196 Qsemi_expanded = intern ("semi-expanded");
7197 staticpro (&Qsemi_expanded);
7198 Qexpanded = intern ("expanded");
7199 staticpro (&Qexpanded);
7200 Qextra_expanded = intern ("extra-expanded");
7201 staticpro (&Qextra_expanded);
7202 Qultra_expanded = intern ("ultra-expanded");
7203 staticpro (&Qultra_expanded);
7204 Qbackground_color = intern ("background-color");
7205 staticpro (&Qbackground_color);
7206 Qforeground_color = intern ("foreground-color");
7207 staticpro (&Qforeground_color);
7208 Qunspecified = intern ("unspecified");
7209 staticpro (&Qunspecified);
7211 Qface_alias = intern ("face-alias");
7212 staticpro (&Qface_alias);
7213 Qdefault = intern ("default");
7214 staticpro (&Qdefault);
7215 Qtool_bar = intern ("tool-bar");
7216 staticpro (&Qtool_bar);
7217 Qregion = intern ("region");
7218 staticpro (&Qregion);
7219 Qfringe = intern ("fringe");
7220 staticpro (&Qfringe);
7221 Qheader_line = intern ("header-line");
7222 staticpro (&Qheader_line);
7223 Qscroll_bar = intern ("scroll-bar");
7224 staticpro (&Qscroll_bar);
7225 Qmenu = intern ("menu");
7226 staticpro (&Qmenu);
7227 Qcursor = intern ("cursor");
7228 staticpro (&Qcursor);
7229 Qborder = intern ("border");
7230 staticpro (&Qborder);
7231 Qmouse = intern ("mouse");
7232 staticpro (&Qmouse);
7233 Qmode_line_inactive = intern ("mode-line-inactive");
7234 staticpro (&Qmode_line_inactive);
7235 Qtty_color_desc = intern ("tty-color-desc");
7236 staticpro (&Qtty_color_desc);
7237 Qtty_color_by_index = intern ("tty-color-by-index");
7238 staticpro (&Qtty_color_by_index);
7239 Qtty_color_alist = intern ("tty-color-alist");
7240 staticpro (&Qtty_color_alist);
7241 Qscalable_fonts_allowed = intern ("scalable-fonts-allowed");
7242 staticpro (&Qscalable_fonts_allowed);
7244 Vparam_value_alist = Fcons (Fcons (Qnil, Qnil), Qnil);
7245 staticpro (&Vparam_value_alist);
7246 Vface_alternative_font_family_alist = Qnil;
7247 staticpro (&Vface_alternative_font_family_alist);
7248 Vface_alternative_font_registry_alist = Qnil;
7249 staticpro (&Vface_alternative_font_registry_alist);
7251 defsubr (&Sinternal_make_lisp_face);
7252 defsubr (&Sinternal_lisp_face_p);
7253 defsubr (&Sinternal_set_lisp_face_attribute);
7254 #ifdef HAVE_WINDOW_SYSTEM
7255 defsubr (&Sinternal_set_lisp_face_attribute_from_resource);
7256 #endif
7257 defsubr (&Scolor_gray_p);
7258 defsubr (&Scolor_supported_p);
7259 defsubr (&Sface_attribute_relative_p);
7260 defsubr (&Smerge_face_attribute);
7261 defsubr (&Sinternal_get_lisp_face_attribute);
7262 defsubr (&Sinternal_lisp_face_attribute_values);
7263 defsubr (&Sinternal_lisp_face_equal_p);
7264 defsubr (&Sinternal_lisp_face_empty_p);
7265 defsubr (&Sinternal_copy_lisp_face);
7266 defsubr (&Sinternal_merge_in_global_face);
7267 defsubr (&Sface_font);
7268 defsubr (&Sframe_face_alist);
7269 defsubr (&Sinternal_set_font_selection_order);
7270 defsubr (&Sinternal_set_alternative_font_family_alist);
7271 defsubr (&Sinternal_set_alternative_font_registry_alist);
7272 defsubr (&Sface_attributes_as_vector);
7273 #if GLYPH_DEBUG
7274 defsubr (&Sdump_face);
7275 defsubr (&Sshow_face_resources);
7276 #endif /* GLYPH_DEBUG */
7277 defsubr (&Sclear_face_cache);
7278 defsubr (&Stty_suppress_bold_inverse_default_colors);
7280 #if defined DEBUG_X_COLORS && defined HAVE_X_WINDOWS
7281 defsubr (&Sdump_colors);
7282 #endif
7284 DEFVAR_LISP ("font-list-limit", &Vfont_list_limit,
7285 doc: /* *Limit for font matching.
7286 If an integer > 0, font matching functions won't load more than
7287 that number of fonts when searching for a matching font. */);
7288 Vfont_list_limit = make_number (DEFAULT_FONT_LIST_LIMIT);
7290 DEFVAR_LISP ("face-new-frame-defaults", &Vface_new_frame_defaults,
7291 doc: /* List of global face definitions (for internal use only.) */);
7292 Vface_new_frame_defaults = Qnil;
7294 DEFVAR_LISP ("face-default-stipple", &Vface_default_stipple,
7295 doc: /* *Default stipple pattern used on monochrome displays.
7296 This stipple pattern is used on monochrome displays
7297 instead of shades of gray for a face background color.
7298 See `set-face-stipple' for possible values for this variable. */);
7299 Vface_default_stipple = build_string ("gray3");
7301 DEFVAR_LISP ("tty-defined-color-alist", &Vtty_defined_color_alist,
7302 doc: /* An alist of defined terminal colors and their RGB values. */);
7303 Vtty_defined_color_alist = Qnil;
7305 DEFVAR_LISP ("scalable-fonts-allowed", &Vscalable_fonts_allowed,
7306 doc: /* Allowed scalable fonts.
7307 A value of nil means don't allow any scalable fonts.
7308 A value of t means allow any scalable font.
7309 Otherwise, value must be a list of regular expressions. A font may be
7310 scaled if its name matches a regular expression in the list.
7311 Note that if value is nil, a scalable font might still be used, if no
7312 other font of the appropriate family and registry is available. */);
7313 Vscalable_fonts_allowed = Qnil;
7315 DEFVAR_LISP ("face-ignored-fonts", &Vface_ignored_fonts,
7316 doc: /* List of ignored fonts.
7317 Each element is a regular expression that matches names of fonts to
7318 ignore. */);
7319 Vface_ignored_fonts = Qnil;
7321 #ifdef HAVE_WINDOW_SYSTEM
7322 defsubr (&Sbitmap_spec_p);
7323 defsubr (&Sx_list_fonts);
7324 defsubr (&Sinternal_face_x_get_resource);
7325 defsubr (&Sx_family_fonts);
7326 defsubr (&Sx_font_family_list);
7327 #endif /* HAVE_WINDOW_SYSTEM */