(Autoinserting): Remove doubled `insert'.
[emacs.git] / src / xfaces.c
blob946d9024c9e3913ca0a968d9a0b9d0d7a6ecea59
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 attribyte 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 realzied 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 compositition.
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>
197 #include "lisp.h"
198 #include "charset.h"
199 #include "frame.h"
201 #ifdef HAVE_WINDOW_SYSTEM
202 #include "fontset.h"
203 #endif /* HAVE_WINDOW_SYSTEM */
205 #ifdef HAVE_X_WINDOWS
206 #include "xterm.h"
207 #ifdef USE_MOTIF
208 #include <Xm/Xm.h>
209 #include <Xm/XmStrDefs.h>
210 #endif /* USE_MOTIF */
211 #endif /* HAVE_X_WINDOWS */
213 #ifdef MSDOS
214 #include "dosfns.h"
215 #endif
217 #ifdef WINDOWSNT
218 #include "w32term.h"
219 #include "fontset.h"
220 /* Redefine X specifics to W32 equivalents to avoid cluttering the
221 code with #ifdef blocks. */
222 #define FRAME_X_DISPLAY_INFO FRAME_W32_DISPLAY_INFO
223 #define x_display_info w32_display_info
224 #define FRAME_X_FONT_TABLE FRAME_W32_FONT_TABLE
225 #define check_x check_w32
226 #define x_list_fonts w32_list_fonts
227 #define GCGraphicsExposures 0
228 /* For historic reasons, FONT_WIDTH refers to average width on W32,
229 not maximum as on X. Redefine here. */
230 #define FONT_WIDTH FONT_MAX_WIDTH
231 #endif /* WINDOWSNT */
233 #ifdef macintosh
234 #include "macterm.h"
235 #define x_display_info mac_display_info
236 #define check_x check_mac
238 extern XGCValues *XCreateGC (void *, WindowPtr, unsigned long, XGCValues *);
240 static INLINE GC
241 x_create_gc (f, mask, xgcv)
242 struct frame *f;
243 unsigned long mask;
244 XGCValues *xgcv;
246 GC gc;
247 gc = XCreateGC (FRAME_MAC_DISPLAY (f), FRAME_MAC_WINDOW (f), mask, xgcv);
248 return gc;
251 static INLINE void
252 x_free_gc (f, gc)
253 struct frame *f;
254 GC gc;
256 XFreeGC (FRAME_MAC_DISPLAY (f), gc);
258 #endif
260 #include "buffer.h"
261 #include "dispextern.h"
262 #include "blockinput.h"
263 #include "window.h"
264 #include "intervals.h"
266 #ifdef HAVE_X_WINDOWS
268 /* Compensate for a bug in Xos.h on some systems, on which it requires
269 time.h. On some such systems, Xos.h tries to redefine struct
270 timeval and struct timezone if USG is #defined while it is
271 #included. */
273 #ifdef XOS_NEEDS_TIME_H
274 #include <time.h>
275 #undef USG
276 #include <X11/Xos.h>
277 #define USG
278 #define __TIMEVAL__
279 #else /* not XOS_NEEDS_TIME_H */
280 #include <X11/Xos.h>
281 #endif /* not XOS_NEEDS_TIME_H */
283 #endif /* HAVE_X_WINDOWS */
285 #include <stdio.h>
286 #include <ctype.h>
287 #include "keyboard.h"
289 #ifndef max
290 #define max(A, B) ((A) > (B) ? (A) : (B))
291 #define min(A, B) ((A) < (B) ? (A) : (B))
292 #define abs(X) ((X) < 0 ? -(X) : (X))
293 #endif
295 /* Number of pt per inch (from the TeXbook). */
297 #define PT_PER_INCH 72.27
299 /* Non-zero if face attribute ATTR is unspecified. */
301 #define UNSPECIFIEDP(ATTR) EQ ((ATTR), Qunspecified)
303 /* Value is the number of elements of VECTOR. */
305 #define DIM(VECTOR) (sizeof (VECTOR) / sizeof *(VECTOR))
307 /* Make a copy of string S on the stack using alloca. Value is a pointer
308 to the copy. */
310 #define STRDUPA(S) strcpy ((char *) alloca (strlen ((S)) + 1), (S))
312 /* Make a copy of the contents of Lisp string S on the stack using
313 alloca. Value is a pointer to the copy. */
315 #define LSTRDUPA(S) STRDUPA (XSTRING ((S))->data)
317 /* Size of hash table of realized faces in face caches (should be a
318 prime number). */
320 #define FACE_CACHE_BUCKETS_SIZE 1001
322 /* A definition of XColor for non-X frames. */
324 #ifndef HAVE_X_WINDOWS
326 typedef struct
328 unsigned long pixel;
329 unsigned short red, green, blue;
330 char flags;
331 char pad;
333 XColor;
335 #endif /* not HAVE_X_WINDOWS */
337 /* Keyword symbols used for face attribute names. */
339 Lisp_Object QCfamily, QCheight, QCweight, QCslant, QCunderline;
340 Lisp_Object QCinverse_video, QCforeground, QCbackground, QCstipple;
341 Lisp_Object QCwidth, QCfont, QCbold, QCitalic;
342 Lisp_Object QCreverse_video;
343 Lisp_Object QCoverline, QCstrike_through, QCbox, QCinherit;
345 /* Symbols used for attribute values. */
347 Lisp_Object Qnormal, Qbold, Qultra_light, Qextra_light, Qlight;
348 Lisp_Object Qsemi_light, Qsemi_bold, Qextra_bold, Qultra_bold;
349 Lisp_Object Qoblique, Qitalic, Qreverse_oblique, Qreverse_italic;
350 Lisp_Object Qultra_condensed, Qextra_condensed, Qcondensed;
351 Lisp_Object Qsemi_condensed, Qsemi_expanded, Qexpanded, Qextra_expanded;
352 Lisp_Object Qultra_expanded;
353 Lisp_Object Qreleased_button, Qpressed_button;
354 Lisp_Object QCstyle, QCcolor, QCline_width;
355 Lisp_Object Qunspecified;
357 char unspecified_fg[] = "unspecified-fg", unspecified_bg[] = "unspecified-bg";
359 /* The name of the function to call when the background of the frame
360 has changed, frame_update_face_colors. */
362 Lisp_Object Qframe_update_face_colors;
364 /* Names of basic faces. */
366 Lisp_Object Qdefault, Qtool_bar, Qregion, Qfringe;
367 Lisp_Object Qheader_line, Qscroll_bar, Qcursor, Qborder, Qmouse, Qmenu;
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;
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 /* Incremented for every change in the `menu' face. */
476 int menu_face_change_count;
478 /* Non-zero means don't display bold text if a face's foreground
479 and background colors are the inverse of the default colors of the
480 display. This is a kluge to suppress `bold black' foreground text
481 which is hard to read on an LCD monitor. */
483 int tty_suppress_bold_inverse_default_colors_p;
485 /* A list of the form `((x . y))' used to avoid consing in
486 Finternal_set_lisp_face_attribute. */
488 static Lisp_Object Vparam_value_alist;
490 /* The total number of colors currently allocated. */
492 #if GLYPH_DEBUG
493 static int ncolors_allocated;
494 static int npixmaps_allocated;
495 static int ngcs;
496 #endif
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_ ((struct font_name *, 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 first_font_matching P_ ((struct frame *f, char *,
513 struct font_name *));
514 static int x_face_list_fonts P_ ((struct frame *, char *,
515 struct font_name *, int, int, int));
516 static int font_scalable_p P_ ((struct font_name *));
517 static int get_lface_attributes P_ ((struct frame *, Lisp_Object, Lisp_Object *, int));
518 static int load_pixmap P_ ((struct frame *, Lisp_Object, unsigned *, unsigned *));
519 static unsigned char *xstrlwr P_ ((unsigned char *));
520 static void signal_error P_ ((char *, Lisp_Object));
521 static struct frame *frame_or_selected_frame P_ ((Lisp_Object, int));
522 static void load_face_font P_ ((struct frame *, struct face *, int));
523 static void load_face_colors P_ ((struct frame *, struct face *, Lisp_Object *));
524 static void free_face_colors P_ ((struct frame *, struct face *));
525 static int face_color_gray_p P_ ((struct frame *, char *));
526 static char *build_font_name P_ ((struct font_name *));
527 static void free_font_names P_ ((struct font_name *, int));
528 static int sorted_font_list P_ ((struct frame *, char *,
529 int (*cmpfn) P_ ((const void *, const void *)),
530 struct font_name **));
531 static int font_list_1 P_ ((struct frame *, Lisp_Object, Lisp_Object,
532 Lisp_Object, struct font_name **));
533 static int font_list P_ ((struct frame *, Lisp_Object, Lisp_Object,
534 Lisp_Object, struct font_name **));
535 static int try_font_list P_ ((struct frame *, Lisp_Object *, Lisp_Object,
536 Lisp_Object, 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 frame *));
600 #ifdef WINDOWSNT
601 extern Lisp_Object w32_list_fonts P_ ((struct frame *, Lisp_Object, int, int));
602 #endif /* WINDOWSNT */
604 #endif /* HAVE_WINDOW_SYSTEM */
607 /***********************************************************************
608 Utilities
609 ***********************************************************************/
611 #ifdef HAVE_X_WINDOWS
613 #ifdef DEBUG_X_COLORS
615 /* The following is a poor mans infrastructure for debugging X color
616 allocation problems on displays with PseudoColor-8. Some X servers
617 like 3.3.5 XF86_SVGA with Matrox cards apparently don't implement
618 color reference counts completely so that they don't signal an
619 error when a color is freed whose reference count is already 0.
620 Other X servers do. To help me debug this, the following code
621 implements a simple reference counting schema of its own, for a
622 single display/screen. --gerd. */
624 /* Reference counts for pixel colors. */
626 int color_count[256];
628 /* Register color PIXEL as allocated. */
630 void
631 register_color (pixel)
632 unsigned long pixel;
634 xassert (pixel < 256);
635 ++color_count[pixel];
639 /* Register color PIXEL as deallocated. */
641 void
642 unregister_color (pixel)
643 unsigned long pixel;
645 xassert (pixel < 256);
646 if (color_count[pixel] > 0)
647 --color_count[pixel];
648 else
649 abort ();
653 /* Register N colors from PIXELS as deallocated. */
655 void
656 unregister_colors (pixels, n)
657 unsigned long *pixels;
658 int n;
660 int i;
661 for (i = 0; i < n; ++i)
662 unregister_color (pixels[i]);
666 DEFUN ("dump-colors", Fdump_colors, Sdump_colors, 0, 0, 0,
667 "Dump currently allocated colors and their reference counts to stderr.")
670 int i, n;
672 fputc ('\n', stderr);
674 for (i = n = 0; i < sizeof color_count / sizeof color_count[0]; ++i)
675 if (color_count[i])
677 fprintf (stderr, "%3d: %5d", i, color_count[i]);
678 ++n;
679 if (n % 5 == 0)
680 fputc ('\n', stderr);
681 else
682 fputc ('\t', stderr);
685 if (n % 5 != 0)
686 fputc ('\n', stderr);
687 return Qnil;
690 #endif /* DEBUG_X_COLORS */
693 /* Free colors used on frame F. PIXELS is an array of NPIXELS pixel
694 color values. Interrupt input must be blocked when this function
695 is called. */
697 void
698 x_free_colors (f, pixels, npixels)
699 struct frame *f;
700 unsigned long *pixels;
701 int npixels;
703 int class = FRAME_X_DISPLAY_INFO (f)->visual->class;
705 /* If display has an immutable color map, freeing colors is not
706 necessary and some servers don't allow it. So don't do it. */
707 if (class != StaticColor && class != StaticGray && class != TrueColor)
709 #ifdef DEBUG_X_COLORS
710 unregister_colors (pixels, npixels);
711 #endif
712 XFreeColors (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f),
713 pixels, npixels, 0);
718 /* Free colors used on frame F. PIXELS is an array of NPIXELS pixel
719 color values. Interrupt input must be blocked when this function
720 is called. */
722 void
723 x_free_dpy_colors (dpy, screen, cmap, pixels, npixels)
724 Display *dpy;
725 Screen *screen;
726 Colormap cmap;
727 unsigned long *pixels;
728 int npixels;
730 struct x_display_info *dpyinfo = x_display_info_for_display (dpy);
731 int class = dpyinfo->visual->class;
733 /* If display has an immutable color map, freeing colors is not
734 necessary and some servers don't allow it. So don't do it. */
735 if (class != StaticColor && class != StaticGray && class != TrueColor)
737 #ifdef DEBUG_X_COLORS
738 unregister_colors (pixels, npixels);
739 #endif
740 XFreeColors (dpy, cmap, pixels, npixels, 0);
745 /* Create and return a GC for use on frame F. GC values and mask
746 are given by XGCV and MASK. */
748 static INLINE GC
749 x_create_gc (f, mask, xgcv)
750 struct frame *f;
751 unsigned long mask;
752 XGCValues *xgcv;
754 GC gc;
755 BLOCK_INPUT;
756 gc = XCreateGC (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), mask, xgcv);
757 UNBLOCK_INPUT;
758 IF_DEBUG (++ngcs);
759 return gc;
763 /* Free GC which was used on frame F. */
765 static INLINE void
766 x_free_gc (f, gc)
767 struct frame *f;
768 GC gc;
770 BLOCK_INPUT;
771 xassert (--ngcs >= 0);
772 XFreeGC (FRAME_X_DISPLAY (f), gc);
773 UNBLOCK_INPUT;
776 #endif /* HAVE_X_WINDOWS */
778 #ifdef WINDOWSNT
779 /* W32 emulation of GCs */
781 static INLINE GC
782 x_create_gc (f, mask, xgcv)
783 struct frame *f;
784 unsigned long mask;
785 XGCValues *xgcv;
787 GC gc;
788 BLOCK_INPUT;
789 gc = XCreateGC (NULL, FRAME_W32_WINDOW (f), mask, xgcv);
790 UNBLOCK_INPUT;
791 IF_DEBUG (++ngcs);
792 return gc;
796 /* Free GC which was used on frame F. */
798 static INLINE void
799 x_free_gc (f, gc)
800 struct frame *f;
801 GC gc;
803 BLOCK_INPUT;
804 xassert (--ngcs >= 0);
805 xfree (gc);
806 UNBLOCK_INPUT;
809 #endif /* WINDOWSNT */
811 /* Like stricmp. Used to compare parts of font names which are in
812 ISO8859-1. */
815 xstricmp (s1, s2)
816 unsigned char *s1, *s2;
818 while (*s1 && *s2)
820 unsigned char c1 = tolower (*s1);
821 unsigned char c2 = tolower (*s2);
822 if (c1 != c2)
823 return c1 < c2 ? -1 : 1;
824 ++s1, ++s2;
827 if (*s1 == 0)
828 return *s2 == 0 ? 0 : -1;
829 return 1;
833 /* Like strlwr, which might not always be available. */
835 static unsigned char *
836 xstrlwr (s)
837 unsigned char *s;
839 unsigned char *p = s;
841 for (p = s; *p; ++p)
842 *p = tolower (*p);
844 return s;
848 /* Signal `error' with message S, and additional argument ARG. */
850 static void
851 signal_error (s, arg)
852 char *s;
853 Lisp_Object arg;
855 Fsignal (Qerror, Fcons (build_string (s), Fcons (arg, Qnil)));
859 /* If FRAME is nil, return a pointer to the selected frame.
860 Otherwise, check that FRAME is a live frame, and return a pointer
861 to it. NPARAM is the parameter number of FRAME, for
862 CHECK_LIVE_FRAME. This is here because it's a frequent pattern in
863 Lisp function definitions. */
865 static INLINE struct frame *
866 frame_or_selected_frame (frame, nparam)
867 Lisp_Object frame;
868 int nparam;
870 if (NILP (frame))
871 frame = selected_frame;
873 CHECK_LIVE_FRAME (frame, nparam);
874 return XFRAME (frame);
878 /***********************************************************************
879 Frames and faces
880 ***********************************************************************/
882 /* Initialize face cache and basic faces for frame F. */
884 void
885 init_frame_faces (f)
886 struct frame *f;
888 /* Make a face cache, if F doesn't have one. */
889 if (FRAME_FACE_CACHE (f) == NULL)
890 FRAME_FACE_CACHE (f) = make_face_cache (f);
892 #ifdef HAVE_WINDOW_SYSTEM
893 /* Make the image cache. */
894 if (FRAME_WINDOW_P (f))
896 if (FRAME_X_IMAGE_CACHE (f) == NULL)
897 FRAME_X_IMAGE_CACHE (f) = make_image_cache ();
898 ++FRAME_X_IMAGE_CACHE (f)->refcount;
900 #endif /* HAVE_WINDOW_SYSTEM */
902 /* Realize basic faces. Must have enough information in frame
903 parameters to realize basic faces at this point. */
904 #ifdef HAVE_X_WINDOWS
905 if (!FRAME_X_P (f) || FRAME_X_WINDOW (f))
906 #endif
907 #ifdef WINDOWSNT
908 if (!FRAME_WINDOW_P (f) || FRAME_W32_WINDOW (f))
909 #endif
910 if (!realize_basic_faces (f))
911 abort ();
915 /* Free face cache of frame F. Called from Fdelete_frame. */
917 void
918 free_frame_faces (f)
919 struct frame *f;
921 struct face_cache *face_cache = FRAME_FACE_CACHE (f);
923 if (face_cache)
925 free_face_cache (face_cache);
926 FRAME_FACE_CACHE (f) = NULL;
929 #ifdef HAVE_WINDOW_SYSTEM
930 if (FRAME_WINDOW_P (f))
932 struct image_cache *image_cache = FRAME_X_IMAGE_CACHE (f);
933 if (image_cache)
935 --image_cache->refcount;
936 if (image_cache->refcount == 0)
937 free_image_cache (f);
940 #endif /* HAVE_WINDOW_SYSTEM */
944 /* Clear face caches, and recompute basic faces for frame F. Call
945 this after changing frame parameters on which those faces depend,
946 or when realized faces have been freed due to changing attributes
947 of named faces. */
949 void
950 recompute_basic_faces (f)
951 struct frame *f;
953 if (FRAME_FACE_CACHE (f))
955 clear_face_cache (0);
956 if (!realize_basic_faces (f))
957 abort ();
962 /* Clear the face caches of all frames. CLEAR_FONTS_P non-zero means
963 try to free unused fonts, too. */
965 void
966 clear_face_cache (clear_fonts_p)
967 int clear_fonts_p;
969 #ifdef HAVE_WINDOW_SYSTEM
970 Lisp_Object tail, frame;
971 struct frame *f;
973 if (clear_fonts_p
974 || ++clear_font_table_count == CLEAR_FONT_TABLE_COUNT)
976 /* From time to time see if we can unload some fonts. This also
977 frees all realized faces on all frames. Fonts needed by
978 faces will be loaded again when faces are realized again. */
979 clear_font_table_count = 0;
981 FOR_EACH_FRAME (tail, frame)
983 f = XFRAME (frame);
984 if (FRAME_WINDOW_P (f)
985 && FRAME_X_DISPLAY_INFO (f)->n_fonts > CLEAR_FONT_TABLE_NFONTS)
987 free_all_realized_faces (frame);
988 clear_font_table (f);
992 else
994 /* Clear GCs of realized faces. */
995 FOR_EACH_FRAME (tail, frame)
997 f = XFRAME (frame);
998 if (FRAME_WINDOW_P (f))
1000 clear_face_gcs (FRAME_FACE_CACHE (f));
1001 clear_image_cache (f, 0);
1005 #endif /* HAVE_WINDOW_SYSTEM */
1009 DEFUN ("clear-face-cache", Fclear_face_cache, Sclear_face_cache, 0, 1, 0,
1010 "Clear face caches on all frames.\n\
1011 Optional THOROUGHLY non-nil means try to free unused fonts, too.")
1012 (thoroughly)
1013 Lisp_Object thoroughly;
1015 clear_face_cache (!NILP (thoroughly));
1016 ++face_change_count;
1017 ++windows_or_buffers_changed;
1018 return Qnil;
1023 #ifdef HAVE_WINDOW_SYSTEM
1026 /* Remove those fonts from the font table of frame F exept for the
1027 default ASCII font for the frame. Called from clear_face_cache
1028 from time to time. */
1030 static void
1031 clear_font_table (f)
1032 struct frame *f;
1034 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
1035 int i;
1037 xassert (FRAME_WINDOW_P (f));
1039 /* Free those fonts that are not used by the frame F as the default. */
1040 for (i = 0; i < dpyinfo->n_fonts; ++i)
1042 struct font_info *font_info = dpyinfo->font_table + i;
1044 if (!font_info->name
1045 || font_info->font == FRAME_FONT (f))
1046 continue;
1048 /* Free names. */
1049 if (font_info->full_name != font_info->name)
1050 xfree (font_info->full_name);
1051 xfree (font_info->name);
1053 /* Free the font. */
1054 BLOCK_INPUT;
1055 #ifdef HAVE_X_WINDOWS
1056 XFreeFont (dpyinfo->display, font_info->font);
1057 #endif
1058 #ifdef WINDOWSNT
1059 w32_unload_font (dpyinfo, font_info->font);
1060 #endif
1061 UNBLOCK_INPUT;
1063 /* Mark font table slot free. */
1064 font_info->font = NULL;
1065 font_info->name = font_info->full_name = NULL;
1069 #endif /* HAVE_WINDOW_SYSTEM */
1073 /***********************************************************************
1074 X Pixmaps
1075 ***********************************************************************/
1077 #ifdef HAVE_WINDOW_SYSTEM
1079 DEFUN ("bitmap-spec-p", Fbitmap_spec_p, Sbitmap_spec_p, 1, 1, 0,
1080 "Value is non-nil if OBJECT is a valid bitmap specification.\n\
1081 A bitmap specification is either a string, a file name, or a list\n\
1082 (WIDTH HEIGHT DATA) where WIDTH is the pixel width of the bitmap,\n\
1083 HEIGHT is its height, and DATA is a string containing the bits of\n\
1084 the pixmap. Bits are stored row by row, each row occupies\n\
1085 (WIDTH + 7)/8 bytes.")
1086 (object)
1087 Lisp_Object object;
1089 int pixmap_p = 0;
1091 if (STRINGP (object))
1092 /* If OBJECT is a string, it's a file name. */
1093 pixmap_p = 1;
1094 else if (CONSP (object))
1096 /* Otherwise OBJECT must be (WIDTH HEIGHT DATA), WIDTH and
1097 HEIGHT must be integers > 0, and DATA must be string large
1098 enough to hold a bitmap of the specified size. */
1099 Lisp_Object width, height, data;
1101 height = width = data = Qnil;
1103 if (CONSP (object))
1105 width = XCAR (object);
1106 object = XCDR (object);
1107 if (CONSP (object))
1109 height = XCAR (object);
1110 object = XCDR (object);
1111 if (CONSP (object))
1112 data = XCAR (object);
1116 if (NATNUMP (width) && NATNUMP (height) && STRINGP (data))
1118 int bytes_per_row = ((XFASTINT (width) + BITS_PER_CHAR - 1)
1119 / BITS_PER_CHAR);
1120 if (STRING_BYTES (XSTRING (data)) >= bytes_per_row * XINT (height))
1121 pixmap_p = 1;
1125 return pixmap_p ? Qt : Qnil;
1129 /* Load a bitmap according to NAME (which is either a file name or a
1130 pixmap spec) for use on frame F. Value is the bitmap_id (see
1131 xfns.c). If NAME is nil, return with a bitmap id of zero. If
1132 bitmap cannot be loaded, display a message saying so, and return
1133 zero. Store the bitmap width in *W_PTR and its height in *H_PTR,
1134 if these pointers are not null. */
1136 static int
1137 load_pixmap (f, name, w_ptr, h_ptr)
1138 FRAME_PTR f;
1139 Lisp_Object name;
1140 unsigned int *w_ptr, *h_ptr;
1142 int bitmap_id;
1143 Lisp_Object tem;
1145 if (NILP (name))
1146 return 0;
1148 tem = Fbitmap_spec_p (name);
1149 if (NILP (tem))
1150 wrong_type_argument (Qbitmap_spec_p, name);
1152 BLOCK_INPUT;
1153 if (CONSP (name))
1155 /* Decode a bitmap spec into a bitmap. */
1157 int h, w;
1158 Lisp_Object bits;
1160 w = XINT (Fcar (name));
1161 h = XINT (Fcar (Fcdr (name)));
1162 bits = Fcar (Fcdr (Fcdr (name)));
1164 bitmap_id = x_create_bitmap_from_data (f, XSTRING (bits)->data,
1165 w, h);
1167 else
1169 /* It must be a string -- a file name. */
1170 bitmap_id = x_create_bitmap_from_file (f, name);
1172 UNBLOCK_INPUT;
1174 if (bitmap_id < 0)
1176 add_to_log ("Invalid or undefined bitmap %s", name, Qnil);
1177 bitmap_id = 0;
1179 if (w_ptr)
1180 *w_ptr = 0;
1181 if (h_ptr)
1182 *h_ptr = 0;
1184 else
1186 #if GLYPH_DEBUG
1187 ++npixmaps_allocated;
1188 #endif
1189 if (w_ptr)
1190 *w_ptr = x_bitmap_width (f, bitmap_id);
1192 if (h_ptr)
1193 *h_ptr = x_bitmap_height (f, bitmap_id);
1196 return bitmap_id;
1199 #endif /* HAVE_WINDOW_SYSTEM */
1203 /***********************************************************************
1204 Minimum font bounds
1205 ***********************************************************************/
1207 #ifdef HAVE_WINDOW_SYSTEM
1209 /* Update the line_height of frame F. Return non-zero if line height
1210 changes. */
1213 frame_update_line_height (f)
1214 struct frame *f;
1216 int line_height, changed_p;
1218 line_height = FONT_HEIGHT (FRAME_FONT (f));
1219 changed_p = line_height != FRAME_LINE_HEIGHT (f);
1220 FRAME_LINE_HEIGHT (f) = line_height;
1221 return changed_p;
1224 #endif /* HAVE_WINDOW_SYSTEM */
1227 /***********************************************************************
1228 Fonts
1229 ***********************************************************************/
1231 #ifdef HAVE_WINDOW_SYSTEM
1233 /* Load font of face FACE which is used on frame F to display
1234 character C. The name of the font to load is determined by lface
1235 and fontset of FACE. */
1237 static void
1238 load_face_font (f, face, c)
1239 struct frame *f;
1240 struct face *face;
1241 int c;
1243 struct font_info *font_info = NULL;
1244 char *font_name;
1246 face->font_info_id = -1;
1247 face->font = NULL;
1249 font_name = choose_face_font (f, face->lface, face->fontset, c);
1250 if (!font_name)
1251 return;
1253 BLOCK_INPUT;
1254 font_info = FS_LOAD_FACE_FONT (f, c, font_name, face);
1255 UNBLOCK_INPUT;
1257 if (font_info)
1259 face->font_info_id = font_info->font_idx;
1260 face->font = font_info->font;
1261 face->font_name = font_info->full_name;
1262 if (face->gc)
1264 x_free_gc (f, face->gc);
1265 face->gc = 0;
1268 else
1269 add_to_log ("Unable to load font %s",
1270 build_string (font_name), Qnil);
1271 xfree (font_name);
1274 #endif /* HAVE_WINDOW_SYSTEM */
1278 /***********************************************************************
1279 X Colors
1280 ***********************************************************************/
1282 /* A version of defined_color for non-X frames. */
1285 tty_defined_color (f, color_name, color_def, alloc)
1286 struct frame *f;
1287 char *color_name;
1288 XColor *color_def;
1289 int alloc;
1291 Lisp_Object color_desc;
1292 unsigned long color_idx = FACE_TTY_DEFAULT_COLOR;
1293 unsigned long red = 0, green = 0, blue = 0;
1294 int status = 1;
1296 if (*color_name && !NILP (Ffboundp (Qtty_color_desc)))
1298 Lisp_Object frame;
1300 XSETFRAME (frame, f);
1301 status = 0;
1302 color_desc = call2 (Qtty_color_desc, build_string (color_name), frame);
1303 if (CONSP (color_desc) && CONSP (XCDR (color_desc)))
1305 color_idx = XINT (XCAR (XCDR (color_desc)));
1306 if (CONSP (XCDR (XCDR (color_desc))))
1308 red = XINT (XCAR (XCDR (XCDR (color_desc))));
1309 green = XINT (XCAR (XCDR (XCDR (XCDR (color_desc)))));
1310 blue = XINT (XCAR (XCDR (XCDR (XCDR (XCDR (color_desc))))));
1312 status = 1;
1314 else if (NILP (Fsymbol_value (intern ("tty-defined-color-alist"))))
1315 /* We were called early during startup, and the colors are not
1316 yet set up in tty-defined-color-alist. Don't return a failure
1317 indication, since this produces the annoying "Unable to
1318 load color" messages in the *Messages* buffer. */
1319 status = 1;
1321 if (color_idx == FACE_TTY_DEFAULT_COLOR && *color_name)
1323 if (strcmp (color_name, "unspecified-fg") == 0)
1324 color_idx = FACE_TTY_DEFAULT_FG_COLOR;
1325 else if (strcmp (color_name, "unspecified-bg") == 0)
1326 color_idx = FACE_TTY_DEFAULT_BG_COLOR;
1329 if (color_idx != FACE_TTY_DEFAULT_COLOR)
1330 status = 1;
1332 color_def->pixel = color_idx;
1333 color_def->red = red;
1334 color_def->green = green;
1335 color_def->blue = blue;
1337 return status;
1341 /* Decide if color named COLOR_NAME is valid for the display
1342 associated with the frame F; if so, return the rgb values in
1343 COLOR_DEF. If ALLOC is nonzero, allocate a new colormap cell.
1345 This does the right thing for any type of frame. */
1348 defined_color (f, color_name, color_def, alloc)
1349 struct frame *f;
1350 char *color_name;
1351 XColor *color_def;
1352 int alloc;
1354 if (!FRAME_WINDOW_P (f))
1355 return tty_defined_color (f, color_name, color_def, alloc);
1356 #ifdef HAVE_X_WINDOWS
1357 else if (FRAME_X_P (f))
1358 return x_defined_color (f, color_name, color_def, alloc);
1359 #endif
1360 #ifdef WINDOWSNT
1361 else if (FRAME_W32_P (f))
1362 return w32_defined_color (f, color_name, color_def, alloc);
1363 #endif
1364 #ifdef macintosh
1365 else if (FRAME_MAC_P (f))
1366 return mac_defined_color (f, color_name, color_def, alloc);
1367 #endif
1368 else
1369 abort ();
1373 /* Given the index IDX of a tty color on frame F, return its name, a
1374 Lisp string. */
1376 Lisp_Object
1377 tty_color_name (f, idx)
1378 struct frame *f;
1379 int idx;
1381 if (idx >= 0 && !NILP (Ffboundp (Qtty_color_by_index)))
1383 Lisp_Object frame;
1384 Lisp_Object coldesc;
1386 XSETFRAME (frame, f);
1387 coldesc = call2 (Qtty_color_by_index, make_number (idx), frame);
1389 if (!NILP (coldesc))
1390 return XCAR (coldesc);
1392 #ifdef MSDOS
1393 /* We can have an MSDOG frame under -nw for a short window of
1394 opportunity before internal_terminal_init is called. DTRT. */
1395 if (FRAME_MSDOS_P (f) && !inhibit_window_system)
1396 return msdos_stdcolor_name (idx);
1397 #endif
1399 if (idx == FACE_TTY_DEFAULT_FG_COLOR)
1400 return build_string (unspecified_fg);
1401 if (idx == FACE_TTY_DEFAULT_BG_COLOR)
1402 return build_string (unspecified_bg);
1404 #ifdef WINDOWSNT
1405 return vga_stdcolor_name (idx);
1406 #endif
1408 return Qunspecified;
1412 /* Return non-zero if COLOR_NAME is a shade of gray (or white or
1413 black) on frame F. The algorithm is taken from 20.2 faces.el. */
1415 static int
1416 face_color_gray_p (f, color_name)
1417 struct frame *f;
1418 char *color_name;
1420 XColor color;
1421 int gray_p;
1423 if (defined_color (f, color_name, &color, 0))
1424 gray_p = ((abs (color.red - color.green)
1425 < max (color.red, color.green) / 20)
1426 && (abs (color.green - color.blue)
1427 < max (color.green, color.blue) / 20)
1428 && (abs (color.blue - color.red)
1429 < max (color.blue, color.red) / 20));
1430 else
1431 gray_p = 0;
1433 return gray_p;
1437 /* Return non-zero if color COLOR_NAME can be displayed on frame F.
1438 BACKGROUND_P non-zero means the color will be used as background
1439 color. */
1441 static int
1442 face_color_supported_p (f, color_name, background_p)
1443 struct frame *f;
1444 char *color_name;
1445 int background_p;
1447 Lisp_Object frame;
1448 XColor not_used;
1450 XSETFRAME (frame, f);
1451 return (FRAME_WINDOW_P (f)
1452 ? (!NILP (Fxw_display_color_p (frame))
1453 || xstricmp (color_name, "black") == 0
1454 || xstricmp (color_name, "white") == 0
1455 || (background_p
1456 && face_color_gray_p (f, color_name))
1457 || (!NILP (Fx_display_grayscale_p (frame))
1458 && face_color_gray_p (f, color_name)))
1459 : tty_defined_color (f, color_name, &not_used, 0));
1463 DEFUN ("color-gray-p", Fcolor_gray_p, Scolor_gray_p, 1, 2, 0,
1464 "Return non-nil if COLOR is a shade of gray (or white or black).\n\
1465 FRAME specifies the frame and thus the display for interpreting COLOR.\n\
1466 If FRAME is nil or omitted, use the selected frame.")
1467 (color, frame)
1468 Lisp_Object color, frame;
1470 struct frame *f;
1472 CHECK_FRAME (frame, 0);
1473 CHECK_STRING (color, 0);
1474 f = XFRAME (frame);
1475 return face_color_gray_p (f, XSTRING (color)->data) ? Qt : Qnil;
1479 DEFUN ("color-supported-p", Fcolor_supported_p,
1480 Scolor_supported_p, 2, 3, 0,
1481 "Return non-nil if COLOR can be displayed on FRAME.\n\
1482 BACKGROUND-P non-nil means COLOR is used as a background.\n\
1483 If FRAME is nil or omitted, use the selected frame.\n\
1484 COLOR must be a valid color name.")
1485 (color, frame, background_p)
1486 Lisp_Object frame, color, background_p;
1488 struct frame *f;
1490 CHECK_FRAME (frame, 0);
1491 CHECK_STRING (color, 0);
1492 f = XFRAME (frame);
1493 if (face_color_supported_p (f, XSTRING (color)->data, !NILP (background_p)))
1494 return Qt;
1495 return Qnil;
1499 /* Load color with name NAME for use by face FACE on frame F.
1500 TARGET_INDEX must be one of LFACE_FOREGROUND_INDEX,
1501 LFACE_BACKGROUND_INDEX, LFACE_UNDERLINE_INDEX, LFACE_OVERLINE_INDEX,
1502 LFACE_STRIKE_THROUGH_INDEX, or LFACE_BOX_INDEX. Value is the
1503 pixel color. If color cannot be loaded, display a message, and
1504 return the foreground, background or underline color of F, but
1505 record that fact in flags of the face so that we don't try to free
1506 these colors. */
1508 unsigned long
1509 load_color (f, face, name, target_index)
1510 struct frame *f;
1511 struct face *face;
1512 Lisp_Object name;
1513 enum lface_attribute_index target_index;
1515 XColor color;
1517 xassert (STRINGP (name));
1518 xassert (target_index == LFACE_FOREGROUND_INDEX
1519 || target_index == LFACE_BACKGROUND_INDEX
1520 || target_index == LFACE_UNDERLINE_INDEX
1521 || target_index == LFACE_OVERLINE_INDEX
1522 || target_index == LFACE_STRIKE_THROUGH_INDEX
1523 || target_index == LFACE_BOX_INDEX);
1525 /* if the color map is full, defined_color will return a best match
1526 to the values in an existing cell. */
1527 if (!defined_color (f, XSTRING (name)->data, &color, 1))
1529 add_to_log ("Unable to load color \"%s\"", name, Qnil);
1531 switch (target_index)
1533 case LFACE_FOREGROUND_INDEX:
1534 face->foreground_defaulted_p = 1;
1535 color.pixel = FRAME_FOREGROUND_PIXEL (f);
1536 break;
1538 case LFACE_BACKGROUND_INDEX:
1539 face->background_defaulted_p = 1;
1540 color.pixel = FRAME_BACKGROUND_PIXEL (f);
1541 break;
1543 case LFACE_UNDERLINE_INDEX:
1544 face->underline_defaulted_p = 1;
1545 color.pixel = FRAME_FOREGROUND_PIXEL (f);
1546 break;
1548 case LFACE_OVERLINE_INDEX:
1549 face->overline_color_defaulted_p = 1;
1550 color.pixel = FRAME_FOREGROUND_PIXEL (f);
1551 break;
1553 case LFACE_STRIKE_THROUGH_INDEX:
1554 face->strike_through_color_defaulted_p = 1;
1555 color.pixel = FRAME_FOREGROUND_PIXEL (f);
1556 break;
1558 case LFACE_BOX_INDEX:
1559 face->box_color_defaulted_p = 1;
1560 color.pixel = FRAME_FOREGROUND_PIXEL (f);
1561 break;
1563 default:
1564 abort ();
1567 #if GLYPH_DEBUG
1568 else
1569 ++ncolors_allocated;
1570 #endif
1572 return color.pixel;
1576 #ifdef HAVE_WINDOW_SYSTEM
1578 /* Load colors for face FACE which is used on frame F. Colors are
1579 specified by slots LFACE_BACKGROUND_INDEX and LFACE_FOREGROUND_INDEX
1580 of ATTRS. If the background color specified is not supported on F,
1581 try to emulate gray colors with a stipple from Vface_default_stipple. */
1583 static void
1584 load_face_colors (f, face, attrs)
1585 struct frame *f;
1586 struct face *face;
1587 Lisp_Object *attrs;
1589 Lisp_Object fg, bg;
1591 bg = attrs[LFACE_BACKGROUND_INDEX];
1592 fg = attrs[LFACE_FOREGROUND_INDEX];
1594 /* Swap colors if face is inverse-video. */
1595 if (EQ (attrs[LFACE_INVERSE_INDEX], Qt))
1597 Lisp_Object tmp;
1598 tmp = fg;
1599 fg = bg;
1600 bg = tmp;
1603 /* Check for support for foreground, not for background because
1604 face_color_supported_p is smart enough to know that grays are
1605 "supported" as background because we are supposed to use stipple
1606 for them. */
1607 if (!face_color_supported_p (f, XSTRING (bg)->data, 0)
1608 && !NILP (Fbitmap_spec_p (Vface_default_stipple)))
1610 x_destroy_bitmap (f, face->stipple);
1611 face->stipple = load_pixmap (f, Vface_default_stipple,
1612 &face->pixmap_w, &face->pixmap_h);
1615 face->background = load_color (f, face, bg, LFACE_BACKGROUND_INDEX);
1616 face->foreground = load_color (f, face, fg, LFACE_FOREGROUND_INDEX);
1620 /* Free color PIXEL on frame F. */
1622 void
1623 unload_color (f, pixel)
1624 struct frame *f;
1625 unsigned long pixel;
1627 #ifdef HAVE_X_WINDOWS
1628 BLOCK_INPUT;
1629 x_free_colors (f, &pixel, 1);
1630 UNBLOCK_INPUT;
1631 #endif
1635 /* Free colors allocated for FACE. */
1637 static void
1638 free_face_colors (f, face)
1639 struct frame *f;
1640 struct face *face;
1642 #ifdef HAVE_X_WINDOWS
1643 BLOCK_INPUT;
1645 if (!face->foreground_defaulted_p)
1647 x_free_colors (f, &face->foreground, 1);
1648 IF_DEBUG (--ncolors_allocated);
1651 if (!face->background_defaulted_p)
1653 x_free_colors (f, &face->background, 1);
1654 IF_DEBUG (--ncolors_allocated);
1657 if (face->underline_p
1658 && !face->underline_defaulted_p)
1660 x_free_colors (f, &face->underline_color, 1);
1661 IF_DEBUG (--ncolors_allocated);
1664 if (face->overline_p
1665 && !face->overline_color_defaulted_p)
1667 x_free_colors (f, &face->overline_color, 1);
1668 IF_DEBUG (--ncolors_allocated);
1671 if (face->strike_through_p
1672 && !face->strike_through_color_defaulted_p)
1674 x_free_colors (f, &face->strike_through_color, 1);
1675 IF_DEBUG (--ncolors_allocated);
1678 if (face->box != FACE_NO_BOX
1679 && !face->box_color_defaulted_p)
1681 x_free_colors (f, &face->box_color, 1);
1682 IF_DEBUG (--ncolors_allocated);
1685 UNBLOCK_INPUT;
1686 #endif /* HAVE_X_WINDOWS */
1689 #endif /* HAVE_WINDOW_SYSTEM */
1693 /***********************************************************************
1694 XLFD Font Names
1695 ***********************************************************************/
1697 /* An enumerator for each field of an XLFD font name. */
1699 enum xlfd_field
1701 XLFD_FOUNDRY,
1702 XLFD_FAMILY,
1703 XLFD_WEIGHT,
1704 XLFD_SLANT,
1705 XLFD_SWIDTH,
1706 XLFD_ADSTYLE,
1707 XLFD_PIXEL_SIZE,
1708 XLFD_POINT_SIZE,
1709 XLFD_RESX,
1710 XLFD_RESY,
1711 XLFD_SPACING,
1712 XLFD_AVGWIDTH,
1713 XLFD_REGISTRY,
1714 XLFD_ENCODING,
1715 XLFD_LAST
1718 /* An enumerator for each possible slant value of a font. Taken from
1719 the XLFD specification. */
1721 enum xlfd_slant
1723 XLFD_SLANT_UNKNOWN,
1724 XLFD_SLANT_ROMAN,
1725 XLFD_SLANT_ITALIC,
1726 XLFD_SLANT_OBLIQUE,
1727 XLFD_SLANT_REVERSE_ITALIC,
1728 XLFD_SLANT_REVERSE_OBLIQUE,
1729 XLFD_SLANT_OTHER
1732 /* Relative font weight according to XLFD documentation. */
1734 enum xlfd_weight
1736 XLFD_WEIGHT_UNKNOWN,
1737 XLFD_WEIGHT_ULTRA_LIGHT, /* 10 */
1738 XLFD_WEIGHT_EXTRA_LIGHT, /* 20 */
1739 XLFD_WEIGHT_LIGHT, /* 30 */
1740 XLFD_WEIGHT_SEMI_LIGHT, /* 40: SemiLight, Book, ... */
1741 XLFD_WEIGHT_MEDIUM, /* 50: Medium, Normal, Regular, ... */
1742 XLFD_WEIGHT_SEMI_BOLD, /* 60: SemiBold, DemiBold, ... */
1743 XLFD_WEIGHT_BOLD, /* 70: Bold, ... */
1744 XLFD_WEIGHT_EXTRA_BOLD, /* 80: ExtraBold, Heavy, ... */
1745 XLFD_WEIGHT_ULTRA_BOLD /* 90: UltraBold, Black, ... */
1748 /* Relative proportionate width. */
1750 enum xlfd_swidth
1752 XLFD_SWIDTH_UNKNOWN,
1753 XLFD_SWIDTH_ULTRA_CONDENSED, /* 10 */
1754 XLFD_SWIDTH_EXTRA_CONDENSED, /* 20 */
1755 XLFD_SWIDTH_CONDENSED, /* 30: Condensed, Narrow, Compressed, ... */
1756 XLFD_SWIDTH_SEMI_CONDENSED, /* 40: semicondensed */
1757 XLFD_SWIDTH_MEDIUM, /* 50: Medium, Normal, Regular, ... */
1758 XLFD_SWIDTH_SEMI_EXPANDED, /* 60: SemiExpanded, DemiExpanded, ... */
1759 XLFD_SWIDTH_EXPANDED, /* 70: Expanded... */
1760 XLFD_SWIDTH_EXTRA_EXPANDED, /* 80: ExtraExpanded, Wide... */
1761 XLFD_SWIDTH_ULTRA_EXPANDED /* 90: UltraExpanded... */
1764 /* Structure used for tables mapping XLFD weight, slant, and width
1765 names to numeric and symbolic values. */
1767 struct table_entry
1769 char *name;
1770 int numeric;
1771 Lisp_Object *symbol;
1774 /* Table of XLFD slant names and their numeric and symbolic
1775 representations. This table must be sorted by slant names in
1776 ascending order. */
1778 static struct table_entry slant_table[] =
1780 {"i", XLFD_SLANT_ITALIC, &Qitalic},
1781 {"o", XLFD_SLANT_OBLIQUE, &Qoblique},
1782 {"ot", XLFD_SLANT_OTHER, &Qitalic},
1783 {"r", XLFD_SLANT_ROMAN, &Qnormal},
1784 {"ri", XLFD_SLANT_REVERSE_ITALIC, &Qreverse_italic},
1785 {"ro", XLFD_SLANT_REVERSE_OBLIQUE, &Qreverse_oblique}
1788 /* Table of XLFD weight names. This table must be sorted by weight
1789 names in ascending order. */
1791 static struct table_entry weight_table[] =
1793 {"black", XLFD_WEIGHT_ULTRA_BOLD, &Qultra_bold},
1794 {"bold", XLFD_WEIGHT_BOLD, &Qbold},
1795 {"book", XLFD_WEIGHT_SEMI_LIGHT, &Qsemi_light},
1796 {"demi", XLFD_WEIGHT_SEMI_BOLD, &Qsemi_bold},
1797 {"demibold", XLFD_WEIGHT_SEMI_BOLD, &Qsemi_bold},
1798 {"extralight", XLFD_WEIGHT_EXTRA_LIGHT, &Qextra_light},
1799 {"extrabold", XLFD_WEIGHT_EXTRA_BOLD, &Qextra_bold},
1800 {"heavy", XLFD_WEIGHT_EXTRA_BOLD, &Qextra_bold},
1801 {"light", XLFD_WEIGHT_LIGHT, &Qlight},
1802 {"medium", XLFD_WEIGHT_MEDIUM, &Qnormal},
1803 {"normal", XLFD_WEIGHT_MEDIUM, &Qnormal},
1804 {"regular", XLFD_WEIGHT_MEDIUM, &Qnormal},
1805 {"semibold", XLFD_WEIGHT_SEMI_BOLD, &Qsemi_bold},
1806 {"semilight", XLFD_WEIGHT_SEMI_LIGHT, &Qsemi_light},
1807 {"ultralight", XLFD_WEIGHT_ULTRA_LIGHT, &Qultra_light},
1808 {"ultrabold", XLFD_WEIGHT_ULTRA_BOLD, &Qultra_bold}
1811 /* Table of XLFD width names. This table must be sorted by width
1812 names in ascending order. */
1814 static struct table_entry swidth_table[] =
1816 {"compressed", XLFD_SWIDTH_CONDENSED, &Qcondensed},
1817 {"condensed", XLFD_SWIDTH_CONDENSED, &Qcondensed},
1818 {"demiexpanded", XLFD_SWIDTH_SEMI_EXPANDED, &Qsemi_expanded},
1819 {"expanded", XLFD_SWIDTH_EXPANDED, &Qexpanded},
1820 {"extracondensed", XLFD_SWIDTH_EXTRA_CONDENSED, &Qextra_condensed},
1821 {"extraexpanded", XLFD_SWIDTH_EXTRA_EXPANDED, &Qextra_expanded},
1822 {"medium", XLFD_SWIDTH_MEDIUM, &Qnormal},
1823 {"narrow", XLFD_SWIDTH_CONDENSED, &Qcondensed},
1824 {"normal", XLFD_SWIDTH_MEDIUM, &Qnormal},
1825 {"regular", XLFD_SWIDTH_MEDIUM, &Qnormal},
1826 {"semicondensed", XLFD_SWIDTH_SEMI_CONDENSED, &Qsemi_condensed},
1827 {"semiexpanded", XLFD_SWIDTH_SEMI_EXPANDED, &Qsemi_expanded},
1828 {"ultracondensed", XLFD_SWIDTH_ULTRA_CONDENSED, &Qultra_condensed},
1829 {"ultraexpanded", XLFD_SWIDTH_ULTRA_EXPANDED, &Qultra_expanded},
1830 {"wide", XLFD_SWIDTH_EXTRA_EXPANDED, &Qextra_expanded}
1833 /* Structure used to hold the result of splitting font names in XLFD
1834 format into their fields. */
1836 struct font_name
1838 /* The original name which is modified destructively by
1839 split_font_name. The pointer is kept here to be able to free it
1840 if it was allocated from the heap. */
1841 char *name;
1843 /* Font name fields. Each vector element points into `name' above.
1844 Fields are NUL-terminated. */
1845 char *fields[XLFD_LAST];
1847 /* Numeric values for those fields that interest us. See
1848 split_font_name for which these are. */
1849 int numeric[XLFD_LAST];
1851 /* Lower value mean higher priority. */
1852 int registry_priority;
1855 /* The frame in effect when sorting font names. Set temporarily in
1856 sort_fonts so that it is available in font comparison functions. */
1858 static struct frame *font_frame;
1860 /* Order by which font selection chooses fonts. The default values
1861 mean `first, find a best match for the font width, then for the
1862 font height, then for weight, then for slant.' This variable can be
1863 set via set-face-font-sort-order. */
1865 #ifdef macintosh
1866 static int font_sort_order[4] = {
1867 XLFD_SWIDTH, XLFD_POINT_SIZE, XLFD_WEIGHT, XLFD_SLANT
1869 #else
1870 static int font_sort_order[4];
1871 #endif
1873 /* Look up FONT.fields[FIELD_INDEX] in TABLE which has DIM entries.
1874 TABLE must be sorted by TABLE[i]->name in ascending order. Value
1875 is a pointer to the matching table entry or null if no table entry
1876 matches. */
1878 static struct table_entry *
1879 xlfd_lookup_field_contents (table, dim, font, field_index)
1880 struct table_entry *table;
1881 int dim;
1882 struct font_name *font;
1883 int field_index;
1885 /* Function split_font_name converts fields to lower-case, so there
1886 is no need to use xstrlwr or xstricmp here. */
1887 char *s = font->fields[field_index];
1888 int low, mid, high, cmp;
1890 low = 0;
1891 high = dim - 1;
1893 while (low <= high)
1895 mid = (low + high) / 2;
1896 cmp = strcmp (table[mid].name, s);
1898 if (cmp < 0)
1899 low = mid + 1;
1900 else if (cmp > 0)
1901 high = mid - 1;
1902 else
1903 return table + mid;
1906 return NULL;
1910 /* Return a numeric representation for font name field
1911 FONT.fields[FIELD_INDEX]. The field is looked up in TABLE which
1912 has DIM entries. Value is the numeric value found or DFLT if no
1913 table entry matches. This function is used to translate weight,
1914 slant, and swidth names of XLFD font names to numeric values. */
1916 static INLINE int
1917 xlfd_numeric_value (table, dim, font, field_index, dflt)
1918 struct table_entry *table;
1919 int dim;
1920 struct font_name *font;
1921 int field_index;
1922 int dflt;
1924 struct table_entry *p;
1925 p = xlfd_lookup_field_contents (table, dim, font, field_index);
1926 return p ? p->numeric : dflt;
1930 /* Return a symbolic representation for font name field
1931 FONT.fields[FIELD_INDEX]. The field is looked up in TABLE which
1932 has DIM entries. Value is the symbolic value found or DFLT if no
1933 table entry matches. This function is used to translate weight,
1934 slant, and swidth names of XLFD font names to symbols. */
1936 static INLINE Lisp_Object
1937 xlfd_symbolic_value (table, dim, font, field_index, dflt)
1938 struct table_entry *table;
1939 int dim;
1940 struct font_name *font;
1941 int field_index;
1942 Lisp_Object dflt;
1944 struct table_entry *p;
1945 p = xlfd_lookup_field_contents (table, dim, font, field_index);
1946 return p ? *p->symbol : dflt;
1950 /* Return a numeric value for the slant of the font given by FONT. */
1952 static INLINE int
1953 xlfd_numeric_slant (font)
1954 struct font_name *font;
1956 return xlfd_numeric_value (slant_table, DIM (slant_table),
1957 font, XLFD_SLANT, XLFD_SLANT_ROMAN);
1961 /* Return a symbol representing the weight of the font given by FONT. */
1963 static INLINE Lisp_Object
1964 xlfd_symbolic_slant (font)
1965 struct font_name *font;
1967 return xlfd_symbolic_value (slant_table, DIM (slant_table),
1968 font, XLFD_SLANT, Qnormal);
1972 /* Return a numeric value for the weight of the font given by FONT. */
1974 static INLINE int
1975 xlfd_numeric_weight (font)
1976 struct font_name *font;
1978 return xlfd_numeric_value (weight_table, DIM (weight_table),
1979 font, XLFD_WEIGHT, XLFD_WEIGHT_MEDIUM);
1983 /* Return a symbol representing the slant of the font given by FONT. */
1985 static INLINE Lisp_Object
1986 xlfd_symbolic_weight (font)
1987 struct font_name *font;
1989 return xlfd_symbolic_value (weight_table, DIM (weight_table),
1990 font, XLFD_WEIGHT, Qnormal);
1994 /* Return a numeric value for the swidth of the font whose XLFD font
1995 name fields are found in FONT. */
1997 static INLINE int
1998 xlfd_numeric_swidth (font)
1999 struct font_name *font;
2001 return xlfd_numeric_value (swidth_table, DIM (swidth_table),
2002 font, XLFD_SWIDTH, XLFD_SWIDTH_MEDIUM);
2006 /* Return a symbolic value for the swidth of FONT. */
2008 static INLINE Lisp_Object
2009 xlfd_symbolic_swidth (font)
2010 struct font_name *font;
2012 return xlfd_symbolic_value (swidth_table, DIM (swidth_table),
2013 font, XLFD_SWIDTH, Qnormal);
2017 /* Look up the entry of SYMBOL in the vector TABLE which has DIM
2018 entries. Value is a pointer to the matching table entry or null if
2019 no element of TABLE contains SYMBOL. */
2021 static struct table_entry *
2022 face_value (table, dim, symbol)
2023 struct table_entry *table;
2024 int dim;
2025 Lisp_Object symbol;
2027 int i;
2029 xassert (SYMBOLP (symbol));
2031 for (i = 0; i < dim; ++i)
2032 if (EQ (*table[i].symbol, symbol))
2033 break;
2035 return i < dim ? table + i : NULL;
2039 /* Return a numeric value for SYMBOL in the vector TABLE which has DIM
2040 entries. Value is -1 if SYMBOL is not found in TABLE. */
2042 static INLINE int
2043 face_numeric_value (table, dim, symbol)
2044 struct table_entry *table;
2045 int dim;
2046 Lisp_Object symbol;
2048 struct table_entry *p = face_value (table, dim, symbol);
2049 return p ? p->numeric : -1;
2053 /* Return a numeric value representing the weight specified by Lisp
2054 symbol WEIGHT. Value is one of the enumerators of enum
2055 xlfd_weight. */
2057 static INLINE int
2058 face_numeric_weight (weight)
2059 Lisp_Object weight;
2061 return face_numeric_value (weight_table, DIM (weight_table), weight);
2065 /* Return a numeric value representing the slant specified by Lisp
2066 symbol SLANT. Value is one of the enumerators of enum xlfd_slant. */
2068 static INLINE int
2069 face_numeric_slant (slant)
2070 Lisp_Object slant;
2072 return face_numeric_value (slant_table, DIM (slant_table), slant);
2076 /* Return a numeric value representing the swidth specified by Lisp
2077 symbol WIDTH. Value is one of the enumerators of enum xlfd_swidth. */
2079 static int
2080 face_numeric_swidth (width)
2081 Lisp_Object width;
2083 return face_numeric_value (swidth_table, DIM (swidth_table), width);
2087 #ifdef HAVE_WINDOW_SYSTEM
2089 /* Return non-zero if FONT is the name of a fixed-pitch font. */
2091 static INLINE int
2092 xlfd_fixed_p (font)
2093 struct font_name *font;
2095 /* Function split_font_name converts fields to lower-case, so there
2096 is no need to use tolower here. */
2097 return *font->fields[XLFD_SPACING] != 'p';
2101 /* Return the point size of FONT on frame F, measured in 1/10 pt.
2103 The actual height of the font when displayed on F depends on the
2104 resolution of both the font and frame. For example, a 10pt font
2105 designed for a 100dpi display will display larger than 10pt on a
2106 75dpi display. (It's not unusual to use fonts not designed for the
2107 display one is using. For example, some intlfonts are available in
2108 72dpi versions, only.)
2110 Value is the real point size of FONT on frame F, or 0 if it cannot
2111 be determined. */
2113 static INLINE int
2114 xlfd_point_size (f, font)
2115 struct frame *f;
2116 struct font_name *font;
2118 double resy = FRAME_X_DISPLAY_INFO (f)->resy;
2119 double font_pixel = atoi (font->fields[XLFD_PIXEL_SIZE]);
2120 int real_pt;
2122 if (font_pixel == 0)
2123 real_pt = 0;
2124 else
2125 real_pt = PT_PER_INCH * 10.0 * font_pixel / resy + 0.5;
2127 return real_pt;
2131 /* Return point size of PIXEL dots while considering Y-resultion (DPI)
2132 of frame F. This function is used to guess a point size of font
2133 when only the pixel height of the font is available. */
2135 static INLINE int
2136 pixel_point_size (f, pixel)
2137 struct frame *f;
2138 int pixel;
2140 double resy = FRAME_X_DISPLAY_INFO (f)->resy;
2141 double real_pt;
2142 int int_pt;
2144 /* As one inch is PT_PER_INCH points, PT_PER_INCH/RESY gives the
2145 point size of one dot. */
2146 real_pt = pixel * PT_PER_INCH / resy;
2147 int_pt = real_pt + 0.5;
2149 return int_pt;
2153 /* Split XLFD font name FONT->name destructively into NUL-terminated,
2154 lower-case fields in FONT->fields. NUMERIC_P non-zero means
2155 compute numeric values for fields XLFD_POINT_SIZE, XLFD_SWIDTH,
2156 XLFD_RESY, XLFD_SLANT, and XLFD_WEIGHT in FONT->numeric. Value is
2157 zero if the font name doesn't have the format we expect. The
2158 expected format is a font name that starts with a `-' and has
2159 XLFD_LAST fields separated by `-'. (The XLFD specification allows
2160 forms of font names where certain field contents are enclosed in
2161 square brackets. We don't support that, for now. */
2163 static int
2164 split_font_name (f, font, numeric_p)
2165 struct frame *f;
2166 struct font_name *font;
2167 int numeric_p;
2169 int i = 0;
2170 int success_p;
2172 if (*font->name == '-')
2174 char *p = xstrlwr (font->name) + 1;
2176 while (i < XLFD_LAST)
2178 font->fields[i] = p;
2179 ++i;
2181 while (*p && *p != '-')
2182 ++p;
2184 if (*p != '-')
2185 break;
2187 *p++ = 0;
2191 success_p = i == XLFD_LAST;
2193 /* If requested, and font name was in the expected format,
2194 compute numeric values for some fields. */
2195 if (numeric_p && success_p)
2197 font->numeric[XLFD_POINT_SIZE] = xlfd_point_size (f, font);
2198 font->numeric[XLFD_RESY] = atoi (font->fields[XLFD_RESY]);
2199 font->numeric[XLFD_SLANT] = xlfd_numeric_slant (font);
2200 font->numeric[XLFD_WEIGHT] = xlfd_numeric_weight (font);
2201 font->numeric[XLFD_SWIDTH] = xlfd_numeric_swidth (font);
2202 font->numeric[XLFD_AVGWIDTH] = atoi (font->fields[XLFD_AVGWIDTH]);
2205 /* Initialize it to zero. It will be overridden by font_list while
2206 trying alternate registries. */
2207 font->registry_priority = 0;
2209 return success_p;
2213 /* Build an XLFD font name from font name fields in FONT. Value is a
2214 pointer to the font name, which is allocated via xmalloc. */
2216 static char *
2217 build_font_name (font)
2218 struct font_name *font;
2220 int i;
2221 int size = 100;
2222 char *font_name = (char *) xmalloc (size);
2223 int total_length = 0;
2225 for (i = 0; i < XLFD_LAST; ++i)
2227 /* Add 1 because of the leading `-'. */
2228 int len = strlen (font->fields[i]) + 1;
2230 /* Reallocate font_name if necessary. Add 1 for the final
2231 NUL-byte. */
2232 if (total_length + len + 1 >= size)
2234 int new_size = max (2 * size, size + len + 1);
2235 int sz = new_size * sizeof *font_name;
2236 font_name = (char *) xrealloc (font_name, sz);
2237 size = new_size;
2240 font_name[total_length] = '-';
2241 bcopy (font->fields[i], font_name + total_length + 1, len - 1);
2242 total_length += len;
2245 font_name[total_length] = 0;
2246 return font_name;
2250 /* Free an array FONTS of N font_name structures. This frees FONTS
2251 itself and all `name' fields in its elements. */
2253 static INLINE void
2254 free_font_names (fonts, n)
2255 struct font_name *fonts;
2256 int n;
2258 while (n)
2259 xfree (fonts[--n].name);
2260 xfree (fonts);
2264 /* Sort vector FONTS of font_name structures which contains NFONTS
2265 elements using qsort and comparison function CMPFN. F is the frame
2266 on which the fonts will be used. The global variable font_frame
2267 is temporarily set to F to make it available in CMPFN. */
2269 static INLINE void
2270 sort_fonts (f, fonts, nfonts, cmpfn)
2271 struct frame *f;
2272 struct font_name *fonts;
2273 int nfonts;
2274 int (*cmpfn) P_ ((const void *, const void *));
2276 font_frame = f;
2277 qsort (fonts, nfonts, sizeof *fonts, cmpfn);
2278 font_frame = NULL;
2282 /* Get fonts matching PATTERN on frame F. If F is null, use the first
2283 display in x_display_list. FONTS is a pointer to a vector of
2284 NFONTS font_name structures. TRY_ALTERNATIVES_P non-zero means try
2285 alternative patterns from Valternate_fontname_alist if no fonts are
2286 found matching PATTERN. SCALABLE_FONTS_P non-zero means include
2287 scalable fonts.
2289 For all fonts found, set FONTS[i].name to the name of the font,
2290 allocated via xmalloc, and split font names into fields. Ignore
2291 fonts that we can't parse. Value is the number of fonts found. */
2293 static int
2294 x_face_list_fonts (f, pattern, fonts, nfonts, try_alternatives_p,
2295 scalable_fonts_p)
2296 struct frame *f;
2297 char *pattern;
2298 struct font_name *fonts;
2299 int nfonts, try_alternatives_p;
2300 int scalable_fonts_p;
2302 int n;
2304 /* NTEMACS_TODO : currently this uses w32_list_fonts, but it may be
2305 better to do it the other way around. */
2306 Lisp_Object lfonts;
2307 Lisp_Object lpattern, tem;
2309 lpattern = build_string (pattern);
2311 /* Get the list of fonts matching PATTERN. */
2312 #ifdef WINDOWSNT
2313 BLOCK_INPUT;
2314 lfonts = w32_list_fonts (f, lpattern, 0, nfonts);
2315 UNBLOCK_INPUT;
2316 #else
2317 lfonts = x_list_fonts (f, lpattern, scalable_fonts_p ? -1 : 0, nfonts);
2318 #endif
2320 /* Make a copy of the font names we got from X, and
2321 split them into fields. */
2322 n = 0;
2323 for (tem = lfonts; CONSP (tem); tem = XCDR (tem))
2325 Lisp_Object elt, tail;
2326 char *name = XSTRING (XCAR (tem))->data;
2328 for (tail = Vface_ignored_fonts; CONSP (tail); tail = XCDR (tail))
2330 elt = XCAR (tail);
2331 if (STRINGP (elt)
2332 && fast_c_string_match_ignore_case (elt, name) >= 0)
2333 break;
2335 if (!NILP (tail))
2336 continue;
2338 /* Make a copy of the font name. */
2339 fonts[n].name = xstrdup (name);
2341 /* Ignore fonts having a name that we can't parse. */
2342 if (!split_font_name (f, fonts + n, 1))
2343 xfree (fonts[n].name);
2344 else if (font_scalable_p (fonts + n))
2346 if (!scalable_fonts_p
2347 || !may_use_scalable_font_p (fonts + n, name))
2348 xfree (fonts[n].name);
2349 else
2350 ++n;
2352 else
2353 ++n;
2356 /* If no fonts found, try patterns from Valternate_fontname_alist. */
2357 if (n == 0 && try_alternatives_p)
2359 Lisp_Object list = Valternate_fontname_alist;
2361 while (CONSP (list))
2363 Lisp_Object entry = XCAR (list);
2364 if (CONSP (entry)
2365 && STRINGP (XCAR (entry))
2366 && strcmp (XSTRING (XCAR (entry))->data, pattern) == 0)
2367 break;
2368 list = XCDR (list);
2371 if (CONSP (list))
2373 Lisp_Object patterns = XCAR (list);
2374 Lisp_Object name;
2376 while (CONSP (patterns)
2377 /* If list is screwed up, give up. */
2378 && (name = XCAR (patterns),
2379 STRINGP (name))
2380 /* Ignore patterns equal to PATTERN because we tried that
2381 already with no success. */
2382 && (strcmp (XSTRING (name)->data, pattern) == 0
2383 || (n = x_face_list_fonts (f, XSTRING (name)->data,
2384 fonts, nfonts, 0,
2385 scalable_fonts_p),
2386 n == 0)))
2387 patterns = XCDR (patterns);
2391 return n;
2395 /* Determine the first font matching PATTERN on frame F. Return in
2396 *FONT the matching font name, split into fields. Value is non-zero
2397 if a match was found. */
2399 static int
2400 first_font_matching (f, pattern, font)
2401 struct frame *f;
2402 char *pattern;
2403 struct font_name *font;
2405 int nfonts = 100;
2406 struct font_name *fonts;
2408 fonts = (struct font_name *) xmalloc (nfonts * sizeof *fonts);
2409 nfonts = x_face_list_fonts (f, pattern, fonts, nfonts, 1, 0);
2411 if (nfonts > 0)
2413 bcopy (&fonts[0], font, sizeof *font);
2415 fonts[0].name = NULL;
2416 free_font_names (fonts, nfonts);
2419 return nfonts > 0;
2423 /* Determine fonts matching PATTERN on frame F. Sort resulting fonts
2424 using comparison function CMPFN. Value is the number of fonts
2425 found. If value is non-zero, *FONTS is set to a vector of
2426 font_name structures allocated from the heap containing matching
2427 fonts. Each element of *FONTS contains a name member that is also
2428 allocated from the heap. Font names in these structures are split
2429 into fields. Use free_font_names to free such an array. */
2431 static int
2432 sorted_font_list (f, pattern, cmpfn, fonts)
2433 struct frame *f;
2434 char *pattern;
2435 int (*cmpfn) P_ ((const void *, const void *));
2436 struct font_name **fonts;
2438 int nfonts;
2440 /* Get the list of fonts matching pattern. 100 should suffice. */
2441 nfonts = DEFAULT_FONT_LIST_LIMIT;
2442 if (INTEGERP (Vfont_list_limit) && XINT (Vfont_list_limit) > 0)
2443 nfonts = XFASTINT (Vfont_list_limit);
2445 *fonts = (struct font_name *) xmalloc (nfonts * sizeof **fonts);
2446 nfonts = x_face_list_fonts (f, pattern, *fonts, nfonts, 1, 1);
2448 /* Sort the resulting array and return it in *FONTS. If no
2449 fonts were found, make sure to set *FONTS to null. */
2450 if (nfonts)
2451 sort_fonts (f, *fonts, nfonts, cmpfn);
2452 else
2454 xfree (*fonts);
2455 *fonts = NULL;
2458 return nfonts;
2462 /* Compare two font_name structures *A and *B. Value is analogous to
2463 strcmp. Sort order is given by the global variable
2464 font_sort_order. Font names are sorted so that, everything else
2465 being equal, fonts with a resolution closer to that of the frame on
2466 which they are used are listed first. The global variable
2467 font_frame is the frame on which we operate. */
2469 static int
2470 cmp_font_names (a, b)
2471 const void *a, *b;
2473 struct font_name *x = (struct font_name *) a;
2474 struct font_name *y = (struct font_name *) b;
2475 int cmp;
2477 /* All strings have been converted to lower-case by split_font_name,
2478 so we can use strcmp here. */
2479 cmp = strcmp (x->fields[XLFD_FAMILY], y->fields[XLFD_FAMILY]);
2480 if (cmp == 0)
2482 int i;
2484 for (i = 0; i < DIM (font_sort_order) && cmp == 0; ++i)
2486 int j = font_sort_order[i];
2487 cmp = x->numeric[j] - y->numeric[j];
2490 if (cmp == 0)
2492 /* Everything else being equal, we prefer fonts with an
2493 y-resolution closer to that of the frame. */
2494 int resy = FRAME_X_DISPLAY_INFO (font_frame)->resy;
2495 int x_resy = x->numeric[XLFD_RESY];
2496 int y_resy = y->numeric[XLFD_RESY];
2497 cmp = abs (resy - x_resy) - abs (resy - y_resy);
2501 return cmp;
2505 /* Get a sorted list of fonts of family FAMILY on frame F. If PATTERN
2506 is non-nil list fonts matching that pattern. Otherwise, if
2507 REGISTRY is non-nil return only fonts with that registry, otherwise
2508 return fonts of any registry. Set *FONTS to a vector of font_name
2509 structures allocated from the heap containing the fonts found.
2510 Value is the number of fonts found. */
2512 static int
2513 font_list_1 (f, pattern, family, registry, fonts)
2514 struct frame *f;
2515 Lisp_Object pattern, family, registry;
2516 struct font_name **fonts;
2518 char *pattern_str, *family_str, *registry_str;
2520 if (NILP (pattern))
2522 family_str = (NILP (family) ? "*" : (char *) XSTRING (family)->data);
2523 registry_str = (NILP (registry) ? "*" : (char *) XSTRING (registry)->data);
2525 pattern_str = (char *) alloca (strlen (family_str)
2526 + strlen (registry_str)
2527 + 10);
2528 strcpy (pattern_str, index (family_str, '-') ? "-" : "-*-");
2529 strcat (pattern_str, family_str);
2530 strcat (pattern_str, "-*-");
2531 strcat (pattern_str, registry_str);
2532 if (!index (registry_str, '-'))
2534 if (registry_str[strlen (registry_str) - 1] == '*')
2535 strcat (pattern_str, "-*");
2536 else
2537 strcat (pattern_str, "*-*");
2540 else
2541 pattern_str = (char *) XSTRING (pattern)->data;
2543 return sorted_font_list (f, pattern_str, cmp_font_names, fonts);
2547 /* Concatenate font list FONTS1 and FONTS2. FONTS1 and FONTS2
2548 contains NFONTS1 fonts and NFONTS2 fonts respectively. Return a
2549 pointer to a newly allocated font list. FONTS1 and FONTS2 are
2550 freed. */
2552 static struct font_name *
2553 concat_font_list (fonts1, nfonts1, fonts2, nfonts2)
2554 struct font_name *fonts1, *fonts2;
2555 int nfonts1, nfonts2;
2557 int new_nfonts = nfonts1 + nfonts2;
2558 struct font_name *new_fonts;
2560 new_fonts = (struct font_name *) xmalloc (sizeof *new_fonts * new_nfonts);
2561 bcopy (fonts1, new_fonts, sizeof *new_fonts * nfonts1);
2562 bcopy (fonts2, new_fonts + nfonts1, sizeof *new_fonts * nfonts2);
2563 xfree (fonts1);
2564 xfree (fonts2);
2565 return new_fonts;
2569 /* Get a sorted list of fonts of family FAMILY on frame F.
2571 If PATTERN is non-nil list fonts matching that pattern.
2573 If REGISTRY is non-nil, return fonts with that registry and the
2574 alternative registries from Vface_alternative_font_registry_alist.
2576 If REGISTRY is nil return fonts of any registry.
2578 Set *FONTS to a vector of font_name structures allocated from the
2579 heap containing the fonts found. Value is the number of fonts
2580 found. */
2582 static int
2583 font_list (f, pattern, family, registry, fonts)
2584 struct frame *f;
2585 Lisp_Object pattern, family, registry;
2586 struct font_name **fonts;
2588 int nfonts = font_list_1 (f, pattern, family, registry, fonts);
2590 if (!NILP (registry)
2591 && CONSP (Vface_alternative_font_registry_alist))
2593 Lisp_Object alter;
2595 alter = Fassoc (registry, Vface_alternative_font_registry_alist);
2596 if (CONSP (alter))
2598 int reg_prio, i;
2600 for (alter = XCDR (alter), reg_prio = 1;
2601 CONSP (alter);
2602 alter = XCDR (alter), reg_prio++)
2603 if (STRINGP (XCAR (alter)))
2605 int nfonts2;
2606 struct font_name *fonts2;
2608 nfonts2 = font_list_1 (f, pattern, family, XCAR (alter),
2609 &fonts2);
2610 for (i = 0; i < nfonts2; i++)
2611 fonts2[i].registry_priority = reg_prio;
2612 *fonts = (nfonts > 0
2613 ? concat_font_list (*fonts, nfonts, fonts2, nfonts2)
2614 : fonts2);
2615 nfonts += nfonts2;
2620 return nfonts;
2624 /* Remove elements from LIST whose cars are `equal'. Called from
2625 x-family-fonts and x-font-family-list to remove duplicate font
2626 entries. */
2628 static void
2629 remove_duplicates (list)
2630 Lisp_Object list;
2632 Lisp_Object tail = list;
2634 while (!NILP (tail) && !NILP (XCDR (tail)))
2636 Lisp_Object next = XCDR (tail);
2637 if (!NILP (Fequal (XCAR (next), XCAR (tail))))
2638 XCDR (tail) = XCDR (next);
2639 else
2640 tail = XCDR (tail);
2645 DEFUN ("x-family-fonts", Fx_family_fonts, Sx_family_fonts, 0, 2, 0,
2646 "Return a list of available fonts of family FAMILY on FRAME.\n\
2647 If FAMILY is omitted or nil, list all families.\n\
2648 Otherwise, FAMILY must be a string, possibly containing wildcards\n\
2649 `?' and `*'.\n\
2650 If FRAME is omitted or nil, use the selected frame.\n\
2651 Each element of the result is a vector [FAMILY WIDTH POINT-SIZE WEIGHT\n\
2652 SLANT FIXED-P FULL REGISTRY-AND-ENCODING].\n\
2653 FAMILY is the font family name. POINT-SIZE is the size of the\n\
2654 font in 1/10 pt. WIDTH, WEIGHT, and SLANT are symbols describing the\n\
2655 width, weight and slant of the font. These symbols are the same as for\n\
2656 face attributes. FIXED-P is non-nil if the font is fixed-pitch.\n\
2657 FULL is the full name of the font, and REGISTRY-AND-ENCODING is a string\n\
2658 giving the registry and encoding of the font.\n\
2659 The result list is sorted according to the current setting of\n\
2660 the face font sort order.")
2661 (family, frame)
2662 Lisp_Object family, frame;
2664 struct frame *f = check_x_frame (frame);
2665 struct font_name *fonts;
2666 int i, nfonts;
2667 Lisp_Object result;
2668 struct gcpro gcpro1;
2670 if (!NILP (family))
2671 CHECK_STRING (family, 1);
2673 result = Qnil;
2674 GCPRO1 (result);
2675 nfonts = font_list (f, Qnil, family, Qnil, &fonts);
2676 for (i = nfonts - 1; i >= 0; --i)
2678 Lisp_Object v = Fmake_vector (make_number (8), Qnil);
2679 char *tem;
2681 ASET (v, 0, build_string (fonts[i].fields[XLFD_FAMILY]));
2682 ASET (v, 1, xlfd_symbolic_swidth (fonts + i));
2683 ASET (v, 2, make_number (xlfd_point_size (f, fonts + i)));
2684 ASET (v, 3, xlfd_symbolic_weight (fonts + i));
2685 ASET (v, 4, xlfd_symbolic_slant (fonts + i));
2686 ASET (v, 5, xlfd_fixed_p (fonts + i) ? Qt : Qnil);
2687 tem = build_font_name (fonts + i);
2688 ASET (v, 6, build_string (tem));
2689 sprintf (tem, "%s-%s", fonts[i].fields[XLFD_REGISTRY],
2690 fonts[i].fields[XLFD_ENCODING]);
2691 ASET (v, 7, build_string (tem));
2692 xfree (tem);
2694 result = Fcons (v, result);
2697 remove_duplicates (result);
2698 free_font_names (fonts, nfonts);
2699 UNGCPRO;
2700 return result;
2704 DEFUN ("x-font-family-list", Fx_font_family_list, Sx_font_family_list,
2705 0, 1, 0,
2706 "Return a list of available font families on FRAME.\n\
2707 If FRAME is omitted or nil, use the selected frame.\n\
2708 Value is a list of conses (FAMILY . FIXED-P) where FAMILY\n\
2709 is a font family, and FIXED-P is non-nil if fonts of that family\n\
2710 are fixed-pitch.")
2711 (frame)
2712 Lisp_Object frame;
2714 struct frame *f = check_x_frame (frame);
2715 int nfonts, i;
2716 struct font_name *fonts;
2717 Lisp_Object result;
2718 struct gcpro gcpro1;
2719 int count = specpdl_ptr - specpdl;
2720 int limit;
2722 /* Let's consider all fonts. Increase the limit for matching
2723 fonts until we have them all. */
2724 for (limit = 500;;)
2726 specbind (intern ("font-list-limit"), make_number (limit));
2727 nfonts = font_list (f, Qnil, Qnil, Qnil, &fonts);
2729 if (nfonts == limit)
2731 free_font_names (fonts, nfonts);
2732 limit *= 2;
2734 else
2735 break;
2738 result = Qnil;
2739 GCPRO1 (result);
2740 for (i = nfonts - 1; i >= 0; --i)
2741 result = Fcons (Fcons (build_string (fonts[i].fields[XLFD_FAMILY]),
2742 xlfd_fixed_p (fonts + i) ? Qt : Qnil),
2743 result);
2745 remove_duplicates (result);
2746 free_font_names (fonts, nfonts);
2747 UNGCPRO;
2748 return unbind_to (count, result);
2752 DEFUN ("x-list-fonts", Fx_list_fonts, Sx_list_fonts, 1, 5, 0,
2753 "Return a list of the names of available fonts matching PATTERN.\n\
2754 If optional arguments FACE and FRAME are specified, return only fonts\n\
2755 the same size as FACE on FRAME.\n\
2756 PATTERN is a string, perhaps with wildcard characters;\n\
2757 the * character matches any substring, and\n\
2758 the ? character matches any single character.\n\
2759 PATTERN is case-insensitive.\n\
2760 FACE is a face name--a symbol.\n\
2762 The return value is a list of strings, suitable as arguments to\n\
2763 set-face-font.\n\
2765 Fonts Emacs can't use may or may not be excluded\n\
2766 even if they match PATTERN and FACE.\n\
2767 The optional fourth argument MAXIMUM sets a limit on how many\n\
2768 fonts to match. The first MAXIMUM fonts are reported.\n\
2769 The optional fifth argument WIDTH, if specified, is a number of columns\n\
2770 occupied by a character of a font. In that case, return only fonts\n\
2771 the WIDTH times as wide as FACE on FRAME.")
2772 (pattern, face, frame, maximum, width)
2773 Lisp_Object pattern, face, frame, maximum, width;
2775 struct frame *f;
2776 int size;
2777 int maxnames;
2779 check_x ();
2780 CHECK_STRING (pattern, 0);
2782 if (NILP (maximum))
2783 maxnames = 2000;
2784 else
2786 CHECK_NATNUM (maximum, 0);
2787 maxnames = XINT (maximum);
2790 if (!NILP (width))
2791 CHECK_NUMBER (width, 4);
2793 /* We can't simply call check_x_frame because this function may be
2794 called before any frame is created. */
2795 f = frame_or_selected_frame (frame, 2);
2796 if (!FRAME_WINDOW_P (f))
2798 /* Perhaps we have not yet created any frame. */
2799 f = NULL;
2800 face = Qnil;
2803 /* Determine the width standard for comparison with the fonts we find. */
2805 if (NILP (face))
2806 size = 0;
2807 else
2809 /* This is of limited utility since it works with character
2810 widths. Keep it for compatibility. --gerd. */
2811 int face_id = lookup_named_face (f, face, 0);
2812 struct face *face = (face_id < 0
2813 ? NULL
2814 : FACE_FROM_ID (f, face_id));
2816 if (face && face->font)
2817 size = FONT_WIDTH (face->font);
2818 else
2819 size = FONT_WIDTH (FRAME_FONT (f));
2821 if (!NILP (width))
2822 size *= XINT (width);
2826 Lisp_Object args[2];
2828 args[0] = x_list_fonts (f, pattern, size, maxnames);
2829 if (f == NULL)
2830 /* We don't have to check fontsets. */
2831 return args[0];
2832 args[1] = list_fontsets (f, pattern, size);
2833 return Fnconc (2, args);
2837 #endif /* HAVE_WINDOW_SYSTEM */
2841 /***********************************************************************
2842 Lisp Faces
2843 ***********************************************************************/
2845 /* Access face attributes of face LFACE, a Lisp vector. */
2847 #define LFACE_FAMILY(LFACE) AREF ((LFACE), LFACE_FAMILY_INDEX)
2848 #define LFACE_HEIGHT(LFACE) AREF ((LFACE), LFACE_HEIGHT_INDEX)
2849 #define LFACE_WEIGHT(LFACE) AREF ((LFACE), LFACE_WEIGHT_INDEX)
2850 #define LFACE_SLANT(LFACE) AREF ((LFACE), LFACE_SLANT_INDEX)
2851 #define LFACE_UNDERLINE(LFACE) AREF ((LFACE), LFACE_UNDERLINE_INDEX)
2852 #define LFACE_INVERSE(LFACE) AREF ((LFACE), LFACE_INVERSE_INDEX)
2853 #define LFACE_FOREGROUND(LFACE) AREF ((LFACE), LFACE_FOREGROUND_INDEX)
2854 #define LFACE_BACKGROUND(LFACE) AREF ((LFACE), LFACE_BACKGROUND_INDEX)
2855 #define LFACE_STIPPLE(LFACE) AREF ((LFACE), LFACE_STIPPLE_INDEX)
2856 #define LFACE_SWIDTH(LFACE) AREF ((LFACE), LFACE_SWIDTH_INDEX)
2857 #define LFACE_OVERLINE(LFACE) AREF ((LFACE), LFACE_OVERLINE_INDEX)
2858 #define LFACE_STRIKE_THROUGH(LFACE) AREF ((LFACE), LFACE_STRIKE_THROUGH_INDEX)
2859 #define LFACE_BOX(LFACE) AREF ((LFACE), LFACE_BOX_INDEX)
2860 #define LFACE_FONT(LFACE) AREF ((LFACE), LFACE_FONT_INDEX)
2861 #define LFACE_INHERIT(LFACE) AREF ((LFACE), LFACE_INHERIT_INDEX)
2862 #define LFACE_AVGWIDTH(LFACE) AREF ((LFACE), LFACE_AVGWIDTH_INDEX)
2864 /* Non-zero if LFACE is a Lisp face. A Lisp face is a vector of size
2865 LFACE_VECTOR_SIZE which has the symbol `face' in slot 0. */
2867 #define LFACEP(LFACE) \
2868 (VECTORP (LFACE) \
2869 && XVECTOR (LFACE)->size == LFACE_VECTOR_SIZE \
2870 && EQ (AREF (LFACE, 0), Qface))
2873 #if GLYPH_DEBUG
2875 /* Check consistency of Lisp face attribute vector ATTRS. */
2877 static void
2878 check_lface_attrs (attrs)
2879 Lisp_Object *attrs;
2881 xassert (UNSPECIFIEDP (attrs[LFACE_FAMILY_INDEX])
2882 || STRINGP (attrs[LFACE_FAMILY_INDEX]));
2883 xassert (UNSPECIFIEDP (attrs[LFACE_SWIDTH_INDEX])
2884 || SYMBOLP (attrs[LFACE_SWIDTH_INDEX]));
2885 xassert (UNSPECIFIEDP (attrs[LFACE_AVGWIDTH_INDEX])
2886 || INTEGERP (attrs[LFACE_AVGWIDTH_INDEX]));
2887 xassert (UNSPECIFIEDP (attrs[LFACE_HEIGHT_INDEX])
2888 || INTEGERP (attrs[LFACE_HEIGHT_INDEX])
2889 || FLOATP (attrs[LFACE_HEIGHT_INDEX])
2890 || FUNCTIONP (attrs[LFACE_HEIGHT_INDEX]));
2891 xassert (UNSPECIFIEDP (attrs[LFACE_WEIGHT_INDEX])
2892 || SYMBOLP (attrs[LFACE_WEIGHT_INDEX]));
2893 xassert (UNSPECIFIEDP (attrs[LFACE_SLANT_INDEX])
2894 || SYMBOLP (attrs[LFACE_SLANT_INDEX]));
2895 xassert (UNSPECIFIEDP (attrs[LFACE_UNDERLINE_INDEX])
2896 || SYMBOLP (attrs[LFACE_UNDERLINE_INDEX])
2897 || STRINGP (attrs[LFACE_UNDERLINE_INDEX]));
2898 xassert (UNSPECIFIEDP (attrs[LFACE_OVERLINE_INDEX])
2899 || SYMBOLP (attrs[LFACE_OVERLINE_INDEX])
2900 || STRINGP (attrs[LFACE_OVERLINE_INDEX]));
2901 xassert (UNSPECIFIEDP (attrs[LFACE_STRIKE_THROUGH_INDEX])
2902 || SYMBOLP (attrs[LFACE_STRIKE_THROUGH_INDEX])
2903 || STRINGP (attrs[LFACE_STRIKE_THROUGH_INDEX]));
2904 xassert (UNSPECIFIEDP (attrs[LFACE_BOX_INDEX])
2905 || SYMBOLP (attrs[LFACE_BOX_INDEX])
2906 || STRINGP (attrs[LFACE_BOX_INDEX])
2907 || INTEGERP (attrs[LFACE_BOX_INDEX])
2908 || CONSP (attrs[LFACE_BOX_INDEX]));
2909 xassert (UNSPECIFIEDP (attrs[LFACE_INVERSE_INDEX])
2910 || SYMBOLP (attrs[LFACE_INVERSE_INDEX]));
2911 xassert (UNSPECIFIEDP (attrs[LFACE_FOREGROUND_INDEX])
2912 || STRINGP (attrs[LFACE_FOREGROUND_INDEX]));
2913 xassert (UNSPECIFIEDP (attrs[LFACE_BACKGROUND_INDEX])
2914 || STRINGP (attrs[LFACE_BACKGROUND_INDEX]));
2915 xassert (UNSPECIFIEDP (attrs[LFACE_INHERIT_INDEX])
2916 || NILP (attrs[LFACE_INHERIT_INDEX])
2917 || SYMBOLP (attrs[LFACE_INHERIT_INDEX])
2918 || CONSP (attrs[LFACE_INHERIT_INDEX]));
2919 #ifdef HAVE_WINDOW_SYSTEM
2920 xassert (UNSPECIFIEDP (attrs[LFACE_STIPPLE_INDEX])
2921 || SYMBOLP (attrs[LFACE_STIPPLE_INDEX])
2922 || !NILP (Fbitmap_spec_p (attrs[LFACE_STIPPLE_INDEX])));
2923 xassert (UNSPECIFIEDP (attrs[LFACE_FONT_INDEX])
2924 || NILP (attrs[LFACE_FONT_INDEX])
2925 || STRINGP (attrs[LFACE_FONT_INDEX]));
2926 #endif
2930 /* Check consistency of attributes of Lisp face LFACE (a Lisp vector). */
2932 static void
2933 check_lface (lface)
2934 Lisp_Object lface;
2936 if (!NILP (lface))
2938 xassert (LFACEP (lface));
2939 check_lface_attrs (XVECTOR (lface)->contents);
2943 #else /* GLYPH_DEBUG == 0 */
2945 #define check_lface_attrs(attrs) (void) 0
2946 #define check_lface(lface) (void) 0
2948 #endif /* GLYPH_DEBUG == 0 */
2951 /* Resolve face name FACE_NAME. If FACE_NAME is a string, intern it
2952 to make it a symvol. If FACE_NAME is an alias for another face,
2953 return that face's name. */
2955 static Lisp_Object
2956 resolve_face_name (face_name)
2957 Lisp_Object face_name;
2959 Lisp_Object aliased;
2961 if (STRINGP (face_name))
2962 face_name = intern (XSTRING (face_name)->data);
2964 while (SYMBOLP (face_name))
2966 aliased = Fget (face_name, Qface_alias);
2967 if (NILP (aliased))
2968 break;
2969 else
2970 face_name = aliased;
2973 return face_name;
2977 /* Return the face definition of FACE_NAME on frame F. F null means
2978 return the definition for new frames. FACE_NAME may be a string or
2979 a symbol (apparently Emacs 20.2 allowed strings as face names in
2980 face text properties; Ediff uses that). If FACE_NAME is an alias
2981 for another face, return that face's definition. If SIGNAL_P is
2982 non-zero, signal an error if FACE_NAME is not a valid face name.
2983 If SIGNAL_P is zero, value is nil if FACE_NAME is not a valid face
2984 name. */
2986 static INLINE Lisp_Object
2987 lface_from_face_name (f, face_name, signal_p)
2988 struct frame *f;
2989 Lisp_Object face_name;
2990 int signal_p;
2992 Lisp_Object lface;
2994 face_name = resolve_face_name (face_name);
2996 if (f)
2997 lface = assq_no_quit (face_name, f->face_alist);
2998 else
2999 lface = assq_no_quit (face_name, Vface_new_frame_defaults);
3001 if (CONSP (lface))
3002 lface = XCDR (lface);
3003 else if (signal_p)
3004 signal_error ("Invalid face", face_name);
3006 check_lface (lface);
3007 return lface;
3011 /* Get face attributes of face FACE_NAME from frame-local faces on
3012 frame F. Store the resulting attributes in ATTRS which must point
3013 to a vector of Lisp_Objects of size LFACE_VECTOR_SIZE. If SIGNAL_P
3014 is non-zero, signal an error if FACE_NAME does not name a face.
3015 Otherwise, value is zero if FACE_NAME is not a face. */
3017 static INLINE int
3018 get_lface_attributes (f, face_name, attrs, signal_p)
3019 struct frame *f;
3020 Lisp_Object face_name;
3021 Lisp_Object *attrs;
3022 int signal_p;
3024 Lisp_Object lface;
3025 int success_p;
3027 lface = lface_from_face_name (f, face_name, signal_p);
3028 if (!NILP (lface))
3030 bcopy (XVECTOR (lface)->contents, attrs,
3031 LFACE_VECTOR_SIZE * sizeof *attrs);
3032 success_p = 1;
3034 else
3035 success_p = 0;
3037 return success_p;
3041 /* Non-zero if all attributes in face attribute vector ATTRS are
3042 specified, i.e. are non-nil. */
3044 static int
3045 lface_fully_specified_p (attrs)
3046 Lisp_Object *attrs;
3048 int i;
3050 for (i = 1; i < LFACE_VECTOR_SIZE; ++i)
3051 if (i != LFACE_FONT_INDEX && i != LFACE_INHERIT_INDEX
3052 && i != LFACE_AVGWIDTH_INDEX)
3053 if (UNSPECIFIEDP (attrs[i]))
3054 break;
3056 return i == LFACE_VECTOR_SIZE;
3059 #ifdef HAVE_WINDOW_SYSTEM
3061 /* Set font-related attributes of Lisp face LFACE from the fullname of
3062 the font opened by FONTNAME. If FORCE_P is zero, set only
3063 unspecified attributes of LFACE. The exception is `font'
3064 attribute. It is set to FONTNAME as is regardless of FORCE_P.
3066 If FONTNAME is not available on frame F,
3067 return 0 if MAY_FAIL_P is non-zero, otherwise abort.
3068 If the fullname is not in a valid XLFD format,
3069 return 0 if MAY_FAIL_P is non-zero, otherwise set normal values
3070 in LFACE and return 1.
3071 Otherwise, return 1. */
3073 static int
3074 set_lface_from_font_name (f, lface, fontname, force_p, may_fail_p)
3075 struct frame *f;
3076 Lisp_Object lface;
3077 Lisp_Object fontname;
3078 int force_p, may_fail_p;
3080 struct font_name font;
3081 char *buffer;
3082 int pt;
3083 int have_xlfd_p;
3084 int fontset;
3085 char *font_name = XSTRING (fontname)->data;
3086 struct font_info *font_info;
3088 /* If FONTNAME is actually a fontset name, get ASCII font name of it. */
3089 fontset = fs_query_fontset (fontname, 0);
3090 if (fontset >= 0)
3091 font_name = XSTRING (fontset_ascii (fontset))->data;
3093 /* Check if FONT_NAME is surely available on the system. Usually
3094 FONT_NAME is already cached for the frame F and FS_LOAD_FONT
3095 returns quickly. But, even if FONT_NAME is not yet cached,
3096 caching it now is not futail because we anyway load the font
3097 later. */
3098 BLOCK_INPUT;
3099 font_info = FS_LOAD_FONT (f, 0, font_name, -1);
3100 UNBLOCK_INPUT;
3102 if (!font_info)
3104 if (may_fail_p)
3105 return 0;
3106 abort ();
3109 font.name = STRDUPA (font_info->full_name);
3110 have_xlfd_p = split_font_name (f, &font, 1);
3112 /* Set attributes only if unspecified, otherwise face defaults for
3113 new frames would never take effect. If we couldn't get a font
3114 name conforming to XLFD, set normal values. */
3116 if (force_p || UNSPECIFIEDP (LFACE_FAMILY (lface)))
3118 Lisp_Object val;
3119 if (have_xlfd_p)
3121 buffer = (char *) alloca (strlen (font.fields[XLFD_FAMILY])
3122 + strlen (font.fields[XLFD_FOUNDRY])
3123 + 2);
3124 sprintf (buffer, "%s-%s", font.fields[XLFD_FOUNDRY],
3125 font.fields[XLFD_FAMILY]);
3126 val = build_string (buffer);
3128 else
3129 val = build_string ("*");
3130 LFACE_FAMILY (lface) = val;
3133 if (force_p || UNSPECIFIEDP (LFACE_HEIGHT (lface)))
3135 if (have_xlfd_p)
3136 pt = xlfd_point_size (f, &font);
3137 else
3138 pt = pixel_point_size (f, font_info->height * 10);
3139 xassert (pt > 0);
3140 LFACE_HEIGHT (lface) = make_number (pt);
3143 if (force_p || UNSPECIFIEDP (LFACE_SWIDTH (lface)))
3144 LFACE_SWIDTH (lface)
3145 = have_xlfd_p ? xlfd_symbolic_swidth (&font) : Qnormal;
3147 if (force_p || UNSPECIFIEDP (LFACE_AVGWIDTH (lface)))
3148 LFACE_AVGWIDTH (lface)
3149 = (have_xlfd_p
3150 ? make_number (font.numeric[XLFD_AVGWIDTH])
3151 : Qunspecified);
3153 if (force_p || UNSPECIFIEDP (LFACE_WEIGHT (lface)))
3154 LFACE_WEIGHT (lface)
3155 = have_xlfd_p ? xlfd_symbolic_weight (&font) : Qnormal;
3157 if (force_p || UNSPECIFIEDP (LFACE_SLANT (lface)))
3158 LFACE_SLANT (lface)
3159 = have_xlfd_p ? xlfd_symbolic_slant (&font) : Qnormal;
3161 LFACE_FONT (lface) = fontname;
3163 return 1;
3166 #endif /* HAVE_WINDOW_SYSTEM */
3169 /* Merges the face height FROM with the face height TO, and returns the
3170 merged height. If FROM is an invalid height, then INVALID is
3171 returned instead. FROM may be a either an absolute face height or a
3172 `relative' height, and TO must be an absolute height. The returned
3173 value is always an absolute height. GCPRO is a lisp value that will
3174 be protected from garbage-collection if this function makes a call
3175 into lisp. */
3177 Lisp_Object
3178 merge_face_heights (from, to, invalid, gcpro)
3179 Lisp_Object from, to, invalid, gcpro;
3181 int result = 0;
3183 if (INTEGERP (from))
3184 result = XINT (from);
3185 else if (NUMBERP (from))
3186 result = XFLOATINT (from) * XINT (to);
3187 #if 0 /* Probably not so useful. */
3188 else if (CONSP (from) && CONSP (XCDR (from)))
3190 if (EQ (XCAR(from), Qplus) || EQ (XCAR(from), Qminus))
3192 if (INTEGERP (XCAR (XCDR (from))))
3194 int inc = XINT (XCAR (XCDR (from)));
3195 if (EQ (XCAR (from), Qminus))
3196 inc = -inc;
3198 result = XFASTINT (to);
3199 if (result + inc > 0)
3200 /* Note that `underflows' don't mean FROM is invalid, so
3201 we just pin the result at TO if it would otherwise be
3202 negative or 0. */
3203 result += inc;
3207 #endif
3208 else if (FUNCTIONP (from))
3210 /* Call function with current height as argument.
3211 From is the new height. */
3212 Lisp_Object args[2], height;
3213 struct gcpro gcpro1;
3215 GCPRO1 (gcpro);
3217 args[0] = from;
3218 args[1] = to;
3219 height = safe_call (2, args);
3221 UNGCPRO;
3223 if (NUMBERP (height))
3224 result = XFLOATINT (height);
3227 if (result > 0)
3228 return make_number (result);
3229 else
3230 return invalid;
3234 /* Merge two Lisp face attribute vectors on frame F, FROM and TO, and
3235 store the resulting attributes in TO, which must be already be
3236 completely specified and contain only absolute attributes. Every
3237 specified attribute of FROM overrides the corresponding attribute of
3238 TO; relative attributes in FROM are merged with the absolute value in
3239 TO and replace it. CYCLE_CHECK is used internally to detect loops in
3240 face inheritance; it should be Qnil when called from other places. */
3242 static INLINE void
3243 merge_face_vectors (f, from, to, cycle_check)
3244 struct frame *f;
3245 Lisp_Object *from, *to;
3246 Lisp_Object cycle_check;
3248 int i;
3250 /* If FROM inherits from some other faces, merge their attributes into
3251 TO before merging FROM's direct attributes. Note that an :inherit
3252 attribute of `unspecified' is the same as one of nil; we never
3253 merge :inherit attributes, so nil is more correct, but lots of
3254 other code uses `unspecified' as a generic value for face attributes. */
3255 if (!UNSPECIFIEDP (from[LFACE_INHERIT_INDEX])
3256 && !NILP (from[LFACE_INHERIT_INDEX]))
3257 merge_face_inheritance (f, from[LFACE_INHERIT_INDEX], to, cycle_check);
3259 /* If TO specifies a :font attribute, and FROM specifies some
3260 font-related attribute, we need to clear TO's :font attribute
3261 (because it will be inconsistent with whatever FROM specifies, and
3262 FROM takes precedence). */
3263 if (!NILP (to[LFACE_FONT_INDEX])
3264 && (!UNSPECIFIEDP (from[LFACE_FAMILY_INDEX])
3265 || !UNSPECIFIEDP (from[LFACE_HEIGHT_INDEX])
3266 || !UNSPECIFIEDP (from[LFACE_WEIGHT_INDEX])
3267 || !UNSPECIFIEDP (from[LFACE_SLANT_INDEX])
3268 || !UNSPECIFIEDP (from[LFACE_SWIDTH_INDEX])
3269 || !UNSPECIFIEDP (from[LFACE_AVGWIDTH_INDEX])))
3270 to[LFACE_FONT_INDEX] = Qnil;
3272 for (i = 1; i < LFACE_VECTOR_SIZE; ++i)
3273 if (!UNSPECIFIEDP (from[i]))
3274 if (i == LFACE_HEIGHT_INDEX && !INTEGERP (from[i]))
3275 to[i] = merge_face_heights (from[i], to[i], to[i], cycle_check);
3276 else
3277 to[i] = from[i];
3279 /* TO is always an absolute face, which should inherit from nothing.
3280 We blindly copy the :inherit attribute above and fix it up here. */
3281 to[LFACE_INHERIT_INDEX] = Qnil;
3285 /* Checks the `cycle check' variable CHECK to see if it indicates that
3286 EL is part of a cycle; CHECK must be either Qnil or a value returned
3287 by an earlier use of CYCLE_CHECK. SUSPICIOUS is the number of
3288 elements after which a cycle might be suspected; after that many
3289 elements, this macro begins consing in order to keep more precise
3290 track of elements.
3292 Returns NIL if a cycle was detected, otherwise a new value for CHECK
3293 that includes EL.
3295 CHECK is evaluated multiple times, EL and SUSPICIOUS 0 or 1 times, so
3296 the caller should make sure that's ok. */
3298 #define CYCLE_CHECK(check, el, suspicious) \
3299 (NILP (check) \
3300 ? make_number (0) \
3301 : (INTEGERP (check) \
3302 ? (XFASTINT (check) < (suspicious) \
3303 ? make_number (XFASTINT (check) + 1) \
3304 : Fcons (el, Qnil)) \
3305 : (!NILP (Fmemq ((el), (check))) \
3306 ? Qnil \
3307 : Fcons ((el), (check)))))
3310 /* Merge face attributes from the face on frame F whose name is
3311 INHERITS, into the vector of face attributes TO; INHERITS may also be
3312 a list of face names, in which case they are applied in order.
3313 CYCLE_CHECK is used to detect loops in face inheritance.
3314 Returns true if any of the inherited attributes are `font-related'. */
3316 static void
3317 merge_face_inheritance (f, inherit, to, cycle_check)
3318 struct frame *f;
3319 Lisp_Object inherit;
3320 Lisp_Object *to;
3321 Lisp_Object cycle_check;
3323 if (SYMBOLP (inherit) && !EQ (inherit, Qunspecified))
3324 /* Inherit from the named face INHERIT. */
3326 Lisp_Object lface;
3328 /* Make sure we're not in an inheritance loop. */
3329 cycle_check = CYCLE_CHECK (cycle_check, inherit, 15);
3330 if (NILP (cycle_check))
3331 /* Cycle detected, ignore any further inheritance. */
3332 return;
3334 lface = lface_from_face_name (f, inherit, 0);
3335 if (!NILP (lface))
3336 merge_face_vectors (f, XVECTOR (lface)->contents, to, cycle_check);
3338 else if (CONSP (inherit))
3339 /* Handle a list of inherited faces by calling ourselves recursively
3340 on each element. Note that we only do so for symbol elements, so
3341 it's not possible to infinitely recurse. */
3343 while (CONSP (inherit))
3345 if (SYMBOLP (XCAR (inherit)))
3346 merge_face_inheritance (f, XCAR (inherit), to, cycle_check);
3348 /* Check for a circular inheritance list. */
3349 cycle_check = CYCLE_CHECK (cycle_check, inherit, 15);
3350 if (NILP (cycle_check))
3351 /* Cycle detected. */
3352 break;
3354 inherit = XCDR (inherit);
3360 /* Given a Lisp face attribute vector TO and a Lisp object PROP that
3361 is a face property, determine the resulting face attributes on
3362 frame F, and store them in TO. PROP may be a single face
3363 specification or a list of such specifications. Each face
3364 specification can be
3366 1. A symbol or string naming a Lisp face.
3368 2. A property list of the form (KEYWORD VALUE ...) where each
3369 KEYWORD is a face attribute name, and value is an appropriate value
3370 for that attribute.
3372 3. Conses or the form (FOREGROUND-COLOR . COLOR) or
3373 (BACKGROUND-COLOR . COLOR) where COLOR is a color name. This is
3374 for compatibility with 20.2.
3376 Face specifications earlier in lists take precedence over later
3377 specifications. */
3379 static void
3380 merge_face_vector_with_property (f, to, prop)
3381 struct frame *f;
3382 Lisp_Object *to;
3383 Lisp_Object prop;
3385 if (CONSP (prop))
3387 Lisp_Object first = XCAR (prop);
3389 if (EQ (first, Qforeground_color)
3390 || EQ (first, Qbackground_color))
3392 /* One of (FOREGROUND-COLOR . COLOR) or (BACKGROUND-COLOR
3393 . COLOR). COLOR must be a string. */
3394 Lisp_Object color_name = XCDR (prop);
3395 Lisp_Object color = first;
3397 if (STRINGP (color_name))
3399 if (EQ (color, Qforeground_color))
3400 to[LFACE_FOREGROUND_INDEX] = color_name;
3401 else
3402 to[LFACE_BACKGROUND_INDEX] = color_name;
3404 else
3405 add_to_log ("Invalid face color", color_name, Qnil);
3407 else if (SYMBOLP (first)
3408 && *XSYMBOL (first)->name->data == ':')
3410 /* Assume this is the property list form. */
3411 while (CONSP (prop) && CONSP (XCDR (prop)))
3413 Lisp_Object keyword = XCAR (prop);
3414 Lisp_Object value = XCAR (XCDR (prop));
3416 if (EQ (keyword, QCfamily))
3418 if (STRINGP (value))
3419 to[LFACE_FAMILY_INDEX] = value;
3420 else
3421 add_to_log ("Invalid face font family", value, Qnil);
3423 else if (EQ (keyword, QCheight))
3425 Lisp_Object new_height =
3426 merge_face_heights (value, to[LFACE_HEIGHT_INDEX],
3427 Qnil, Qnil);
3429 if (NILP (new_height))
3430 add_to_log ("Invalid face font height", value, Qnil);
3431 else
3432 to[LFACE_HEIGHT_INDEX] = new_height;
3434 else if (EQ (keyword, QCweight))
3436 if (SYMBOLP (value)
3437 && face_numeric_weight (value) >= 0)
3438 to[LFACE_WEIGHT_INDEX] = value;
3439 else
3440 add_to_log ("Invalid face weight", value, Qnil);
3442 else if (EQ (keyword, QCslant))
3444 if (SYMBOLP (value)
3445 && face_numeric_slant (value) >= 0)
3446 to[LFACE_SLANT_INDEX] = value;
3447 else
3448 add_to_log ("Invalid face slant", value, Qnil);
3450 else if (EQ (keyword, QCunderline))
3452 if (EQ (value, Qt)
3453 || NILP (value)
3454 || STRINGP (value))
3455 to[LFACE_UNDERLINE_INDEX] = value;
3456 else
3457 add_to_log ("Invalid face underline", value, Qnil);
3459 else if (EQ (keyword, QCoverline))
3461 if (EQ (value, Qt)
3462 || NILP (value)
3463 || STRINGP (value))
3464 to[LFACE_OVERLINE_INDEX] = value;
3465 else
3466 add_to_log ("Invalid face overline", value, Qnil);
3468 else if (EQ (keyword, QCstrike_through))
3470 if (EQ (value, Qt)
3471 || NILP (value)
3472 || STRINGP (value))
3473 to[LFACE_STRIKE_THROUGH_INDEX] = value;
3474 else
3475 add_to_log ("Invalid face strike-through", value, Qnil);
3477 else if (EQ (keyword, QCbox))
3479 if (EQ (value, Qt))
3480 value = make_number (1);
3481 if (INTEGERP (value)
3482 || STRINGP (value)
3483 || CONSP (value)
3484 || NILP (value))
3485 to[LFACE_BOX_INDEX] = value;
3486 else
3487 add_to_log ("Invalid face box", value, Qnil);
3489 else if (EQ (keyword, QCinverse_video)
3490 || EQ (keyword, QCreverse_video))
3492 if (EQ (value, Qt) || NILP (value))
3493 to[LFACE_INVERSE_INDEX] = value;
3494 else
3495 add_to_log ("Invalid face inverse-video", value, Qnil);
3497 else if (EQ (keyword, QCforeground))
3499 if (STRINGP (value))
3500 to[LFACE_FOREGROUND_INDEX] = value;
3501 else
3502 add_to_log ("Invalid face foreground", value, Qnil);
3504 else if (EQ (keyword, QCbackground))
3506 if (STRINGP (value))
3507 to[LFACE_BACKGROUND_INDEX] = value;
3508 else
3509 add_to_log ("Invalid face background", value, Qnil);
3511 else if (EQ (keyword, QCstipple))
3513 #ifdef HAVE_X_WINDOWS
3514 Lisp_Object pixmap_p = Fbitmap_spec_p (value);
3515 if (!NILP (pixmap_p))
3516 to[LFACE_STIPPLE_INDEX] = value;
3517 else
3518 add_to_log ("Invalid face stipple", value, Qnil);
3519 #endif
3521 else if (EQ (keyword, QCwidth))
3523 if (SYMBOLP (value)
3524 && face_numeric_swidth (value) >= 0)
3525 to[LFACE_SWIDTH_INDEX] = value;
3526 else
3527 add_to_log ("Invalid face width", value, Qnil);
3529 else if (EQ (keyword, QCinherit))
3531 if (SYMBOLP (value))
3532 to[LFACE_INHERIT_INDEX] = value;
3533 else
3535 Lisp_Object tail;
3536 for (tail = value; CONSP (tail); tail = XCDR (tail))
3537 if (!SYMBOLP (XCAR (tail)))
3538 break;
3539 if (NILP (tail))
3540 to[LFACE_INHERIT_INDEX] = value;
3541 else
3542 add_to_log ("Invalid face inherit", value, Qnil);
3545 else
3546 add_to_log ("Invalid attribute %s in face property",
3547 keyword, Qnil);
3549 prop = XCDR (XCDR (prop));
3552 else
3554 /* This is a list of face specs. Specifications at the
3555 beginning of the list take precedence over later
3556 specifications, so we have to merge starting with the
3557 last specification. */
3558 Lisp_Object next = XCDR (prop);
3559 if (!NILP (next))
3560 merge_face_vector_with_property (f, to, next);
3561 merge_face_vector_with_property (f, to, first);
3564 else
3566 /* PROP ought to be a face name. */
3567 Lisp_Object lface = lface_from_face_name (f, prop, 0);
3568 if (NILP (lface))
3569 add_to_log ("Invalid face text property value: %s", prop, Qnil);
3570 else
3571 merge_face_vectors (f, XVECTOR (lface)->contents, to, Qnil);
3576 DEFUN ("internal-make-lisp-face", Finternal_make_lisp_face,
3577 Sinternal_make_lisp_face, 1, 2, 0,
3578 "Make FACE, a symbol, a Lisp face with all attributes nil.\n\
3579 If FACE was not known as a face before, create a new one.\n\
3580 If optional argument FRAME is specified, make a frame-local face\n\
3581 for that frame. Otherwise operate on the global face definition.\n\
3582 Value is a vector of face attributes.")
3583 (face, frame)
3584 Lisp_Object face, frame;
3586 Lisp_Object global_lface, lface;
3587 struct frame *f;
3588 int i;
3590 CHECK_SYMBOL (face, 0);
3591 global_lface = lface_from_face_name (NULL, face, 0);
3593 if (!NILP (frame))
3595 CHECK_LIVE_FRAME (frame, 1);
3596 f = XFRAME (frame);
3597 lface = lface_from_face_name (f, face, 0);
3599 else
3600 f = NULL, lface = Qnil;
3602 /* Add a global definition if there is none. */
3603 if (NILP (global_lface))
3605 global_lface = Fmake_vector (make_number (LFACE_VECTOR_SIZE),
3606 Qunspecified);
3607 AREF (global_lface, 0) = Qface;
3608 Vface_new_frame_defaults = Fcons (Fcons (face, global_lface),
3609 Vface_new_frame_defaults);
3611 /* Assign the new Lisp face a unique ID. The mapping from Lisp
3612 face id to Lisp face is given by the vector lface_id_to_name.
3613 The mapping from Lisp face to Lisp face id is given by the
3614 property `face' of the Lisp face name. */
3615 if (next_lface_id == lface_id_to_name_size)
3617 int new_size = max (50, 2 * lface_id_to_name_size);
3618 int sz = new_size * sizeof *lface_id_to_name;
3619 lface_id_to_name = (Lisp_Object *) xrealloc (lface_id_to_name, sz);
3620 lface_id_to_name_size = new_size;
3623 lface_id_to_name[next_lface_id] = face;
3624 Fput (face, Qface, make_number (next_lface_id));
3625 ++next_lface_id;
3627 else if (f == NULL)
3628 for (i = 1; i < LFACE_VECTOR_SIZE; ++i)
3629 AREF (global_lface, i) = Qunspecified;
3631 /* Add a frame-local definition. */
3632 if (f)
3634 if (NILP (lface))
3636 lface = Fmake_vector (make_number (LFACE_VECTOR_SIZE),
3637 Qunspecified);
3638 AREF (lface, 0) = Qface;
3639 f->face_alist = Fcons (Fcons (face, lface), f->face_alist);
3641 else
3642 for (i = 1; i < LFACE_VECTOR_SIZE; ++i)
3643 AREF (lface, i) = Qunspecified;
3645 else
3646 lface = global_lface;
3648 xassert (LFACEP (lface));
3649 check_lface (lface);
3650 return lface;
3654 DEFUN ("internal-lisp-face-p", Finternal_lisp_face_p,
3655 Sinternal_lisp_face_p, 1, 2, 0,
3656 "Return non-nil if FACE names a face.\n\
3657 If optional second parameter FRAME is non-nil, check for the\n\
3658 existence of a frame-local face with name FACE on that frame.\n\
3659 Otherwise check for the existence of a global face.")
3660 (face, frame)
3661 Lisp_Object face, frame;
3663 Lisp_Object lface;
3665 if (!NILP (frame))
3667 CHECK_LIVE_FRAME (frame, 1);
3668 lface = lface_from_face_name (XFRAME (frame), face, 0);
3670 else
3671 lface = lface_from_face_name (NULL, face, 0);
3673 return lface;
3677 DEFUN ("internal-copy-lisp-face", Finternal_copy_lisp_face,
3678 Sinternal_copy_lisp_face, 4, 4, 0,
3679 "Copy face FROM to TO.\n\
3680 If FRAME it t, copy the global face definition of FROM to the\n\
3681 global face definition of TO. Otherwise, copy the frame-local\n\
3682 definition of FROM on FRAME to the frame-local definition of TO\n\
3683 on NEW-FRAME, or FRAME if NEW-FRAME is nil.\n\
3685 Value is TO.")
3686 (from, to, frame, new_frame)
3687 Lisp_Object from, to, frame, new_frame;
3689 Lisp_Object lface, copy;
3691 CHECK_SYMBOL (from, 0);
3692 CHECK_SYMBOL (to, 1);
3693 if (NILP (new_frame))
3694 new_frame = frame;
3696 if (EQ (frame, Qt))
3698 /* Copy global definition of FROM. We don't make copies of
3699 strings etc. because 20.2 didn't do it either. */
3700 lface = lface_from_face_name (NULL, from, 1);
3701 copy = Finternal_make_lisp_face (to, Qnil);
3703 else
3705 /* Copy frame-local definition of FROM. */
3706 CHECK_LIVE_FRAME (frame, 2);
3707 CHECK_LIVE_FRAME (new_frame, 3);
3708 lface = lface_from_face_name (XFRAME (frame), from, 1);
3709 copy = Finternal_make_lisp_face (to, new_frame);
3712 bcopy (XVECTOR (lface)->contents, XVECTOR (copy)->contents,
3713 LFACE_VECTOR_SIZE * sizeof (Lisp_Object));
3715 return to;
3719 DEFUN ("internal-set-lisp-face-attribute", Finternal_set_lisp_face_attribute,
3720 Sinternal_set_lisp_face_attribute, 3, 4, 0,
3721 "Set attribute ATTR of FACE to VALUE.\n\
3722 FRAME being a frame means change the face on that frame.\n\
3723 FRAME nil means change change the face of the selected frame.\n\
3724 FRAME t means change the default for new frames.\n\
3725 FRAME 0 means change the face on all frames, and change the default\n\
3726 for new frames.")
3727 (face, attr, value, frame)
3728 Lisp_Object face, attr, value, frame;
3730 Lisp_Object lface;
3731 Lisp_Object old_value = Qnil;
3732 /* Set 1 if ATTR is QCfont. */
3733 int font_attr_p = 0;
3734 /* Set 1 if ATTR is one of font-related attributes other than QCfont. */
3735 int font_related_attr_p = 0;
3737 CHECK_SYMBOL (face, 0);
3738 CHECK_SYMBOL (attr, 1);
3740 face = resolve_face_name (face);
3742 /* If FRAME is 0, change face on all frames, and change the
3743 default for new frames. */
3744 if (INTEGERP (frame) && XINT (frame) == 0)
3746 Lisp_Object tail;
3747 Finternal_set_lisp_face_attribute (face, attr, value, Qt);
3748 FOR_EACH_FRAME (tail, frame)
3749 Finternal_set_lisp_face_attribute (face, attr, value, frame);
3750 return face;
3753 /* Set lface to the Lisp attribute vector of FACE. */
3754 if (EQ (frame, Qt))
3755 lface = lface_from_face_name (NULL, face, 1);
3756 else
3758 if (NILP (frame))
3759 frame = selected_frame;
3761 CHECK_LIVE_FRAME (frame, 3);
3762 lface = lface_from_face_name (XFRAME (frame), face, 0);
3764 /* If a frame-local face doesn't exist yet, create one. */
3765 if (NILP (lface))
3766 lface = Finternal_make_lisp_face (face, frame);
3769 if (EQ (attr, QCfamily))
3771 if (!UNSPECIFIEDP (value))
3773 CHECK_STRING (value, 3);
3774 if (XSTRING (value)->size == 0)
3775 signal_error ("Invalid face family", value);
3777 old_value = LFACE_FAMILY (lface);
3778 LFACE_FAMILY (lface) = value;
3779 font_related_attr_p = 1;
3781 else if (EQ (attr, QCheight))
3783 if (!UNSPECIFIEDP (value))
3785 Lisp_Object test =
3786 (EQ (face, Qdefault) ? value :
3787 /* The default face must have an absolute size, otherwise, we do
3788 a test merge with a random height to see if VALUE's ok. */
3789 merge_face_heights (value, make_number(10), Qnil, Qnil));
3791 if (!INTEGERP(test) || XINT(test) <= 0)
3792 signal_error ("Invalid face height", value);
3795 old_value = LFACE_HEIGHT (lface);
3796 LFACE_HEIGHT (lface) = value;
3797 font_related_attr_p = 1;
3799 else if (EQ (attr, QCweight))
3801 if (!UNSPECIFIEDP (value))
3803 CHECK_SYMBOL (value, 3);
3804 if (face_numeric_weight (value) < 0)
3805 signal_error ("Invalid face weight", value);
3807 old_value = LFACE_WEIGHT (lface);
3808 LFACE_WEIGHT (lface) = value;
3809 font_related_attr_p = 1;
3811 else if (EQ (attr, QCslant))
3813 if (!UNSPECIFIEDP (value))
3815 CHECK_SYMBOL (value, 3);
3816 if (face_numeric_slant (value) < 0)
3817 signal_error ("Invalid face slant", value);
3819 old_value = LFACE_SLANT (lface);
3820 LFACE_SLANT (lface) = value;
3821 font_related_attr_p = 1;
3823 else if (EQ (attr, QCunderline))
3825 if (!UNSPECIFIEDP (value))
3826 if ((SYMBOLP (value)
3827 && !EQ (value, Qt)
3828 && !EQ (value, Qnil))
3829 /* Underline color. */
3830 || (STRINGP (value)
3831 && XSTRING (value)->size == 0))
3832 signal_error ("Invalid face underline", value);
3834 old_value = LFACE_UNDERLINE (lface);
3835 LFACE_UNDERLINE (lface) = value;
3837 else if (EQ (attr, QCoverline))
3839 if (!UNSPECIFIEDP (value))
3840 if ((SYMBOLP (value)
3841 && !EQ (value, Qt)
3842 && !EQ (value, Qnil))
3843 /* Overline color. */
3844 || (STRINGP (value)
3845 && XSTRING (value)->size == 0))
3846 signal_error ("Invalid face overline", value);
3848 old_value = LFACE_OVERLINE (lface);
3849 LFACE_OVERLINE (lface) = value;
3851 else if (EQ (attr, QCstrike_through))
3853 if (!UNSPECIFIEDP (value))
3854 if ((SYMBOLP (value)
3855 && !EQ (value, Qt)
3856 && !EQ (value, Qnil))
3857 /* Strike-through color. */
3858 || (STRINGP (value)
3859 && XSTRING (value)->size == 0))
3860 signal_error ("Invalid face strike-through", value);
3862 old_value = LFACE_STRIKE_THROUGH (lface);
3863 LFACE_STRIKE_THROUGH (lface) = value;
3865 else if (EQ (attr, QCbox))
3867 int valid_p;
3869 /* Allow t meaning a simple box of width 1 in foreground color
3870 of the face. */
3871 if (EQ (value, Qt))
3872 value = make_number (1);
3874 if (UNSPECIFIEDP (value))
3875 valid_p = 1;
3876 else if (NILP (value))
3877 valid_p = 1;
3878 else if (INTEGERP (value))
3879 valid_p = XINT (value) != 0;
3880 else if (STRINGP (value))
3881 valid_p = XSTRING (value)->size > 0;
3882 else if (CONSP (value))
3884 Lisp_Object tem;
3886 tem = value;
3887 while (CONSP (tem))
3889 Lisp_Object k, v;
3891 k = XCAR (tem);
3892 tem = XCDR (tem);
3893 if (!CONSP (tem))
3894 break;
3895 v = XCAR (tem);
3896 tem = XCDR (tem);
3898 if (EQ (k, QCline_width))
3900 if (!INTEGERP (v) || XINT (v) == 0)
3901 break;
3903 else if (EQ (k, QCcolor))
3905 if (!STRINGP (v) || XSTRING (v)->size == 0)
3906 break;
3908 else if (EQ (k, QCstyle))
3910 if (!EQ (v, Qpressed_button) && !EQ (v, Qreleased_button))
3911 break;
3913 else
3914 break;
3917 valid_p = NILP (tem);
3919 else
3920 valid_p = 0;
3922 if (!valid_p)
3923 signal_error ("Invalid face box", value);
3925 old_value = LFACE_BOX (lface);
3926 LFACE_BOX (lface) = value;
3928 else if (EQ (attr, QCinverse_video)
3929 || EQ (attr, QCreverse_video))
3931 if (!UNSPECIFIEDP (value))
3933 CHECK_SYMBOL (value, 3);
3934 if (!EQ (value, Qt) && !NILP (value))
3935 signal_error ("Invalid inverse-video face attribute value", value);
3937 old_value = LFACE_INVERSE (lface);
3938 LFACE_INVERSE (lface) = value;
3940 else if (EQ (attr, QCforeground))
3942 if (!UNSPECIFIEDP (value))
3944 /* Don't check for valid color names here because it depends
3945 on the frame (display) whether the color will be valid
3946 when the face is realized. */
3947 CHECK_STRING (value, 3);
3948 if (XSTRING (value)->size == 0)
3949 signal_error ("Empty foreground color value", value);
3951 old_value = LFACE_FOREGROUND (lface);
3952 LFACE_FOREGROUND (lface) = value;
3954 else if (EQ (attr, QCbackground))
3956 if (!UNSPECIFIEDP (value))
3958 /* Don't check for valid color names here because it depends
3959 on the frame (display) whether the color will be valid
3960 when the face is realized. */
3961 CHECK_STRING (value, 3);
3962 if (XSTRING (value)->size == 0)
3963 signal_error ("Empty background color value", value);
3965 old_value = LFACE_BACKGROUND (lface);
3966 LFACE_BACKGROUND (lface) = value;
3968 else if (EQ (attr, QCstipple))
3970 #ifdef HAVE_X_WINDOWS
3971 if (!UNSPECIFIEDP (value)
3972 && !NILP (value)
3973 && NILP (Fbitmap_spec_p (value)))
3974 signal_error ("Invalid stipple attribute", value);
3975 old_value = LFACE_STIPPLE (lface);
3976 LFACE_STIPPLE (lface) = value;
3977 #endif /* HAVE_X_WINDOWS */
3979 else if (EQ (attr, QCwidth))
3981 if (!UNSPECIFIEDP (value))
3983 CHECK_SYMBOL (value, 3);
3984 if (face_numeric_swidth (value) < 0)
3985 signal_error ("Invalid face width", value);
3987 old_value = LFACE_SWIDTH (lface);
3988 LFACE_SWIDTH (lface) = value;
3989 font_related_attr_p = 1;
3991 else if (EQ (attr, QCfont))
3993 #ifdef HAVE_WINDOW_SYSTEM
3994 /* Set font-related attributes of the Lisp face from an
3995 XLFD font name. */
3996 struct frame *f;
3997 Lisp_Object tmp;
3999 CHECK_STRING (value, 3);
4000 if (EQ (frame, Qt))
4001 f = SELECTED_FRAME ();
4002 else
4003 f = check_x_frame (frame);
4005 /* VALUE may be a fontset name or an alias of fontset. In such
4006 a case, use the base fontset name. */
4007 tmp = Fquery_fontset (value, Qnil);
4008 if (!NILP (tmp))
4009 value = tmp;
4011 if (!set_lface_from_font_name (f, lface, value, 1, 1))
4012 signal_error ("Invalid font or fontset name", value);
4014 font_attr_p = 1;
4015 #endif /* HAVE_WINDOW_SYSTEM */
4017 else if (EQ (attr, QCinherit))
4019 Lisp_Object tail;
4020 if (SYMBOLP (value))
4021 tail = Qnil;
4022 else
4023 for (tail = value; CONSP (tail); tail = XCDR (tail))
4024 if (!SYMBOLP (XCAR (tail)))
4025 break;
4026 if (NILP (tail))
4027 LFACE_INHERIT (lface) = value;
4028 else
4029 signal_error ("Invalid face inheritance", value);
4031 else if (EQ (attr, QCbold))
4033 old_value = LFACE_WEIGHT (lface);
4034 LFACE_WEIGHT (lface) = NILP (value) ? Qnormal : Qbold;
4035 font_related_attr_p = 1;
4037 else if (EQ (attr, QCitalic))
4039 old_value = LFACE_SLANT (lface);
4040 LFACE_SLANT (lface) = NILP (value) ? Qnormal : Qitalic;
4041 font_related_attr_p = 1;
4043 else
4044 signal_error ("Invalid face attribute name", attr);
4046 if (font_related_attr_p
4047 && !UNSPECIFIEDP (value))
4048 /* If a font-related attribute other than QCfont is specified, the
4049 original `font' attribute nor that of default face is useless
4050 to determine a new font. Thus, we set it to nil so that font
4051 selection mechanism doesn't use it. */
4052 LFACE_FONT (lface) = Qnil;
4054 /* Changing a named face means that all realized faces depending on
4055 that face are invalid. Since we cannot tell which realized faces
4056 depend on the face, make sure they are all removed. This is done
4057 by incrementing face_change_count. The next call to
4058 init_iterator will then free realized faces. */
4059 if (!EQ (frame, Qt)
4060 && (EQ (attr, QCfont)
4061 || NILP (Fequal (old_value, value))))
4063 ++face_change_count;
4064 ++windows_or_buffers_changed;
4067 #ifdef HAVE_WINDOW_SYSTEM
4069 if (!UNSPECIFIEDP (value)
4070 && NILP (Fequal (old_value, value)))
4072 Lisp_Object param;
4074 param = Qnil;
4076 if (EQ (face, Qdefault))
4078 /* Changed font-related attributes of the `default' face are
4079 reflected in changed `font' frame parameters. */
4080 if ((font_related_attr_p || font_attr_p)
4081 && lface_fully_specified_p (XVECTOR (lface)->contents))
4082 set_font_frame_param (frame, lface);
4083 else if (EQ (attr, QCforeground))
4084 param = Qforeground_color;
4085 else if (EQ (attr, QCbackground))
4086 param = Qbackground_color;
4088 #ifndef WINDOWSNT
4089 else if (EQ (face, Qscroll_bar))
4091 /* Changing the colors of `scroll-bar' sets frame parameters
4092 `scroll-bar-foreground' and `scroll-bar-background'. */
4093 if (EQ (attr, QCforeground))
4094 param = Qscroll_bar_foreground;
4095 else if (EQ (attr, QCbackground))
4096 param = Qscroll_bar_background;
4098 #endif /* not WINDOWSNT */
4099 else if (EQ (face, Qborder))
4101 /* Changing background color of `border' sets frame parameter
4102 `border-color'. */
4103 if (EQ (attr, QCbackground))
4104 param = Qborder_color;
4106 else if (EQ (face, Qcursor))
4108 /* Changing background color of `cursor' sets frame parameter
4109 `cursor-color'. */
4110 if (EQ (attr, QCbackground))
4111 param = Qcursor_color;
4113 else if (EQ (face, Qmouse))
4115 /* Changing background color of `mouse' sets frame parameter
4116 `mouse-color'. */
4117 if (EQ (attr, QCbackground))
4118 param = Qmouse_color;
4120 else if (EQ (face, Qmenu))
4121 ++menu_face_change_count;
4123 if (!NILP (param))
4124 if (EQ (frame, Qt))
4125 /* Update `default-frame-alist', which is used for new frames. */
4127 store_in_alist (&Vdefault_frame_alist, param, value);
4129 else
4130 /* Update the current frame's parameters. */
4132 Lisp_Object cons;
4133 cons = XCAR (Vparam_value_alist);
4134 XCAR (cons) = param;
4135 XCDR (cons) = value;
4136 Fmodify_frame_parameters (frame, Vparam_value_alist);
4140 #endif /* HAVE_WINDOW_SYSTEM */
4142 return face;
4146 #ifdef HAVE_WINDOW_SYSTEM
4148 /* Set the `font' frame parameter of FRAME determined from `default'
4149 face attributes LFACE. If a face or fontset name is explicitely
4150 specfied in LFACE, use it as is. Otherwise, determine a font name
4151 from the other font-related atrributes of LFACE. In that case, if
4152 there's no matching font, signals an error. */
4154 static void
4155 set_font_frame_param (frame, lface)
4156 Lisp_Object frame, lface;
4158 struct frame *f = XFRAME (frame);
4160 if (FRAME_WINDOW_P (f))
4162 Lisp_Object font_name;
4163 char *font;
4165 if (STRINGP (LFACE_FONT (lface)))
4166 font_name = LFACE_FONT (lface);
4167 else
4169 /* Choose a font name that reflects LFACE's attributes and has
4170 the registry and encoding pattern specified in the default
4171 fontset (3rd arg: -1) for ASCII characters (4th arg: 0). */
4172 font = choose_face_font (f, XVECTOR (lface)->contents, -1, 0);
4173 if (!font)
4174 error ("No font matches the specified attribute");
4175 font_name = build_string (font);
4176 xfree (font);
4179 Fmodify_frame_parameters (frame, Fcons (Fcons (Qfont, font_name), Qnil));
4184 /* Update the corresponding face when frame parameter PARAM on frame F
4185 has been assigned the value NEW_VALUE. */
4187 void
4188 update_face_from_frame_parameter (f, param, new_value)
4189 struct frame *f;
4190 Lisp_Object param, new_value;
4192 Lisp_Object lface;
4194 /* If there are no faces yet, give up. This is the case when called
4195 from Fx_create_frame, and we do the necessary things later in
4196 face-set-after-frame-defaults. */
4197 if (NILP (f->face_alist))
4198 return;
4200 if (EQ (param, Qforeground_color))
4202 lface = lface_from_face_name (f, Qdefault, 1);
4203 LFACE_FOREGROUND (lface) = (STRINGP (new_value)
4204 ? new_value : Qunspecified);
4205 realize_basic_faces (f);
4207 else if (EQ (param, Qbackground_color))
4209 Lisp_Object frame;
4211 /* Changing the background color might change the background
4212 mode, so that we have to load new defface specs. Call
4213 frame-update-face-colors to do that. */
4214 XSETFRAME (frame, f);
4215 call1 (Qframe_update_face_colors, frame);
4217 lface = lface_from_face_name (f, Qdefault, 1);
4218 LFACE_BACKGROUND (lface) = (STRINGP (new_value)
4219 ? new_value : Qunspecified);
4220 realize_basic_faces (f);
4222 if (EQ (param, Qborder_color))
4224 lface = lface_from_face_name (f, Qborder, 1);
4225 LFACE_BACKGROUND (lface) = (STRINGP (new_value)
4226 ? new_value : Qunspecified);
4228 else if (EQ (param, Qcursor_color))
4230 lface = lface_from_face_name (f, Qcursor, 1);
4231 LFACE_BACKGROUND (lface) = (STRINGP (new_value)
4232 ? new_value : Qunspecified);
4234 else if (EQ (param, Qmouse_color))
4236 lface = lface_from_face_name (f, Qmouse, 1);
4237 LFACE_BACKGROUND (lface) = (STRINGP (new_value)
4238 ? new_value : Qunspecified);
4243 /* Get the value of X resource RESOURCE, class CLASS for the display
4244 of frame FRAME. This is here because ordinary `x-get-resource'
4245 doesn't take a frame argument. */
4247 DEFUN ("internal-face-x-get-resource", Finternal_face_x_get_resource,
4248 Sinternal_face_x_get_resource, 3, 3, 0, "")
4249 (resource, class, frame)
4250 Lisp_Object resource, class, frame;
4252 Lisp_Object value = Qnil;
4253 #ifndef WINDOWSNT
4254 #ifndef macintosh
4255 CHECK_STRING (resource, 0);
4256 CHECK_STRING (class, 1);
4257 CHECK_LIVE_FRAME (frame, 2);
4258 BLOCK_INPUT;
4259 value = display_x_get_resource (FRAME_X_DISPLAY_INFO (XFRAME (frame)),
4260 resource, class, Qnil, Qnil);
4261 UNBLOCK_INPUT;
4262 #endif /* not macintosh */
4263 #endif /* not WINDOWSNT */
4264 return value;
4268 /* Return resource string VALUE as a boolean value, i.e. nil, or t.
4269 If VALUE is "on" or "true", return t. If VALUE is "off" or
4270 "false", return nil. Otherwise, if SIGNAL_P is non-zero, signal an
4271 error; if SIGNAL_P is zero, return 0. */
4273 static Lisp_Object
4274 face_boolean_x_resource_value (value, signal_p)
4275 Lisp_Object value;
4276 int signal_p;
4278 Lisp_Object result = make_number (0);
4280 xassert (STRINGP (value));
4282 if (xstricmp (XSTRING (value)->data, "on") == 0
4283 || xstricmp (XSTRING (value)->data, "true") == 0)
4284 result = Qt;
4285 else if (xstricmp (XSTRING (value)->data, "off") == 0
4286 || xstricmp (XSTRING (value)->data, "false") == 0)
4287 result = Qnil;
4288 else if (xstricmp (XSTRING (value)->data, "unspecified") == 0)
4289 result = Qunspecified;
4290 else if (signal_p)
4291 signal_error ("Invalid face attribute value from X resource", value);
4293 return result;
4297 DEFUN ("internal-set-lisp-face-attribute-from-resource",
4298 Finternal_set_lisp_face_attribute_from_resource,
4299 Sinternal_set_lisp_face_attribute_from_resource,
4300 3, 4, 0, "")
4301 (face, attr, value, frame)
4302 Lisp_Object face, attr, value, frame;
4304 CHECK_SYMBOL (face, 0);
4305 CHECK_SYMBOL (attr, 1);
4306 CHECK_STRING (value, 2);
4308 if (xstricmp (XSTRING (value)->data, "unspecified") == 0)
4309 value = Qunspecified;
4310 else if (EQ (attr, QCheight))
4312 value = Fstring_to_number (value, make_number (10));
4313 if (XINT (value) <= 0)
4314 signal_error ("Invalid face height from X resource", value);
4316 else if (EQ (attr, QCbold) || EQ (attr, QCitalic))
4317 value = face_boolean_x_resource_value (value, 1);
4318 else if (EQ (attr, QCweight) || EQ (attr, QCslant) || EQ (attr, QCwidth))
4319 value = intern (XSTRING (value)->data);
4320 else if (EQ (attr, QCreverse_video) || EQ (attr, QCinverse_video))
4321 value = face_boolean_x_resource_value (value, 1);
4322 else if (EQ (attr, QCunderline)
4323 || EQ (attr, QCoverline)
4324 || EQ (attr, QCstrike_through)
4325 || EQ (attr, QCbox))
4327 Lisp_Object boolean_value;
4329 /* If the result of face_boolean_x_resource_value is t or nil,
4330 VALUE does NOT specify a color. */
4331 boolean_value = face_boolean_x_resource_value (value, 0);
4332 if (SYMBOLP (boolean_value))
4333 value = boolean_value;
4336 return Finternal_set_lisp_face_attribute (face, attr, value, frame);
4339 #endif /* HAVE_WINDOW_SYSTEM */
4342 #ifdef HAVE_X_WINDOWS
4343 /***********************************************************************
4344 Menu face
4345 ***********************************************************************/
4347 #ifdef USE_X_TOOLKIT
4349 #include "../lwlib/lwlib-utils.h"
4351 /* Structure used to pass X resources to functions called via
4352 XtApplyToWidgets. */
4354 struct x_resources
4356 Arg *av;
4357 int ac;
4361 #ifdef USE_MOTIF
4363 static void xm_apply_resources P_ ((Widget, XtPointer));
4364 static void xm_set_menu_resources_from_menu_face P_ ((struct frame *, Widget));
4367 /* Set widget W's X resources from P which points to an x_resources
4368 structure. If W is a cascade button, apply resources to W's
4369 submenu. */
4371 static void
4372 xm_apply_resources (w, p)
4373 Widget w;
4374 XtPointer p;
4376 Widget submenu = 0;
4377 struct x_resources *res = (struct x_resources *) p;
4379 XtSetValues (w, res->av, res->ac);
4380 XtVaGetValues (w, XmNsubMenuId, &submenu, NULL);
4381 if (submenu)
4383 XtSetValues (submenu, res->av, res->ac);
4384 XtApplyToWidgets (submenu, xm_apply_resources, p);
4389 /* Set X resources of menu-widget WIDGET on frame F from face `menu'.
4390 This is the LessTif/Motif version. As of LessTif 0.88 it has the
4391 following problems:
4393 1. Setting the XmNfontList resource leads to an infinite loop
4394 somewhere in LessTif. */
4396 static void
4397 xm_set_menu_resources_from_menu_face (f, widget)
4398 struct frame *f;
4399 Widget widget;
4401 struct face *face;
4402 Lisp_Object lface;
4403 Arg av[3];
4404 int ac = 0;
4405 XmFontList fl = 0;
4407 lface = lface_from_face_name (f, Qmenu, 1);
4408 face = FACE_FROM_ID (f, MENU_FACE_ID);
4410 if (!UNSPECIFIEDP (LFACE_FOREGROUND (lface)))
4412 XtSetArg (av[ac], XmNforeground, face->foreground);
4413 ++ac;
4416 if (!UNSPECIFIEDP (LFACE_BACKGROUND (lface)))
4418 XtSetArg (av[ac], XmNbackground, face->background);
4419 ++ac;
4422 /* If any font-related attribute of `menu' is set, set the font. */
4423 if (face->font
4424 && (!UNSPECIFIEDP (LFACE_FAMILY (lface))
4425 || !UNSPECIFIEDP (LFACE_SWIDTH (lface))
4426 || !UNSPECIFIEDP (LFACE_AVGWIDTH (lface))
4427 || !UNSPECIFIEDP (LFACE_WEIGHT (lface))
4428 || !UNSPECIFIEDP (LFACE_SLANT (lface))
4429 || !UNSPECIFIEDP (LFACE_HEIGHT (lface))))
4431 #if 0 /* Setting the font leads to an infinite loop somewhere
4432 in LessTif during geometry computation. */
4433 XmFontListEntry fe;
4434 fe = XmFontListEntryCreate ("menu_font", XmFONT_IS_FONT, face->font);
4435 fl = XmFontListAppendEntry (NULL, fe);
4436 XtSetArg (av[ac], XmNfontList, fl);
4437 ++ac;
4438 #endif
4441 xassert (ac <= sizeof av / sizeof *av);
4443 if (ac)
4445 struct x_resources res;
4447 XtSetValues (widget, av, ac);
4448 res.av = av, res.ac = ac;
4449 XtApplyToWidgets (widget, xm_apply_resources, &res);
4450 if (fl)
4451 XmFontListFree (fl);
4455 #endif /* USE_MOTIF */
4457 #ifdef USE_LUCID
4459 static void xl_apply_resources P_ ((Widget, XtPointer));
4460 static void xl_set_menu_resources_from_menu_face P_ ((struct frame *, Widget));
4463 /* Set widget W's resources from P which points to an x_resources
4464 structure. */
4466 static void
4467 xl_apply_resources (widget, p)
4468 Widget widget;
4469 XtPointer p;
4471 struct x_resources *res = (struct x_resources *) p;
4472 XtSetValues (widget, res->av, res->ac);
4476 /* On frame F, set X resources of menu-widget WIDGET from face `menu'.
4477 This is the Lucid version. */
4479 static void
4480 xl_set_menu_resources_from_menu_face (f, widget)
4481 struct frame *f;
4482 Widget widget;
4484 struct face *face;
4485 Lisp_Object lface;
4486 Arg av[3];
4487 int ac = 0;
4489 lface = lface_from_face_name (f, Qmenu, 1);
4490 face = FACE_FROM_ID (f, MENU_FACE_ID);
4492 if (!UNSPECIFIEDP (LFACE_FOREGROUND (lface)))
4494 XtSetArg (av[ac], XtNforeground, face->foreground);
4495 ++ac;
4498 if (!UNSPECIFIEDP (LFACE_BACKGROUND (lface)))
4500 XtSetArg (av[ac], XtNbackground, face->background);
4501 ++ac;
4504 if (face->font
4505 && (!UNSPECIFIEDP (LFACE_FAMILY (lface))
4506 || !UNSPECIFIEDP (LFACE_SWIDTH (lface))
4507 || !UNSPECIFIEDP (LFACE_AVGWIDTH (lface))
4508 || !UNSPECIFIEDP (LFACE_WEIGHT (lface))
4509 || !UNSPECIFIEDP (LFACE_SLANT (lface))
4510 || !UNSPECIFIEDP (LFACE_HEIGHT (lface))))
4512 XtSetArg (av[ac], XtNfont, face->font);
4513 ++ac;
4516 if (ac)
4518 struct x_resources res;
4520 XtSetValues (widget, av, ac);
4522 /* We must do children here in case we're handling a pop-up menu
4523 in which case WIDGET is a popup shell. XtApplyToWidgets
4524 is a function from lwlib. */
4525 res.av = av, res.ac = ac;
4526 XtApplyToWidgets (widget, xl_apply_resources, &res);
4530 #endif /* USE_LUCID */
4533 /* On frame F, set X resources of menu-widget WIDGET from face `menu'. */
4535 void
4536 x_set_menu_resources_from_menu_face (f, widget)
4537 struct frame *f;
4538 Widget widget;
4540 /* Realized faces may have been removed on frame F, e.g. because of
4541 face attribute changes. Recompute them, if necessary, since we
4542 will need the `menu' face. */
4543 if (f->face_cache->used == 0)
4544 recompute_basic_faces (f);
4546 BLOCK_INPUT;
4547 #ifdef USE_LUCID
4548 xl_set_menu_resources_from_menu_face (f, widget);
4549 #endif
4550 #ifdef USE_MOTIF
4551 xm_set_menu_resources_from_menu_face (f, widget);
4552 #endif
4553 UNBLOCK_INPUT;
4556 #endif /* USE_X_TOOLKIT */
4558 #endif /* HAVE_X_WINDOWS */
4562 DEFUN ("internal-get-lisp-face-attribute", Finternal_get_lisp_face_attribute,
4563 Sinternal_get_lisp_face_attribute,
4564 2, 3, 0,
4565 "Return face attribute KEYWORD of face SYMBOL.\n\
4566 If SYMBOL does not name a valid Lisp face or KEYWORD isn't a valid\n\
4567 face attribute name, signal an error.\n\
4568 If the optional argument FRAME is given, report on face FACE in that\n\
4569 frame. If FRAME is t, report on the defaults for face FACE (for new\n\
4570 frames). If FRAME is omitted or nil, use the selected frame.")
4571 (symbol, keyword, frame)
4572 Lisp_Object symbol, keyword, frame;
4574 Lisp_Object lface, value = Qnil;
4576 CHECK_SYMBOL (symbol, 0);
4577 CHECK_SYMBOL (keyword, 1);
4579 if (EQ (frame, Qt))
4580 lface = lface_from_face_name (NULL, symbol, 1);
4581 else
4583 if (NILP (frame))
4584 frame = selected_frame;
4585 CHECK_LIVE_FRAME (frame, 2);
4586 lface = lface_from_face_name (XFRAME (frame), symbol, 1);
4589 if (EQ (keyword, QCfamily))
4590 value = LFACE_FAMILY (lface);
4591 else if (EQ (keyword, QCheight))
4592 value = LFACE_HEIGHT (lface);
4593 else if (EQ (keyword, QCweight))
4594 value = LFACE_WEIGHT (lface);
4595 else if (EQ (keyword, QCslant))
4596 value = LFACE_SLANT (lface);
4597 else if (EQ (keyword, QCunderline))
4598 value = LFACE_UNDERLINE (lface);
4599 else if (EQ (keyword, QCoverline))
4600 value = LFACE_OVERLINE (lface);
4601 else if (EQ (keyword, QCstrike_through))
4602 value = LFACE_STRIKE_THROUGH (lface);
4603 else if (EQ (keyword, QCbox))
4604 value = LFACE_BOX (lface);
4605 else if (EQ (keyword, QCinverse_video)
4606 || EQ (keyword, QCreverse_video))
4607 value = LFACE_INVERSE (lface);
4608 else if (EQ (keyword, QCforeground))
4609 value = LFACE_FOREGROUND (lface);
4610 else if (EQ (keyword, QCbackground))
4611 value = LFACE_BACKGROUND (lface);
4612 else if (EQ (keyword, QCstipple))
4613 value = LFACE_STIPPLE (lface);
4614 else if (EQ (keyword, QCwidth))
4615 value = LFACE_SWIDTH (lface);
4616 else if (EQ (keyword, QCinherit))
4617 value = LFACE_INHERIT (lface);
4618 else if (EQ (keyword, QCfont))
4619 value = LFACE_FONT (lface);
4620 else
4621 signal_error ("Invalid face attribute name", keyword);
4623 return value;
4627 DEFUN ("internal-lisp-face-attribute-values",
4628 Finternal_lisp_face_attribute_values,
4629 Sinternal_lisp_face_attribute_values, 1, 1, 0,
4630 "Return a list of valid discrete values for face attribute ATTR.\n\
4631 Value is nil if ATTR doesn't have a discrete set of valid values.")
4632 (attr)
4633 Lisp_Object attr;
4635 Lisp_Object result = Qnil;
4637 CHECK_SYMBOL (attr, 0);
4639 if (EQ (attr, QCweight)
4640 || EQ (attr, QCslant)
4641 || EQ (attr, QCwidth))
4643 /* Extract permissible symbols from tables. */
4644 struct table_entry *table;
4645 int i, dim;
4647 if (EQ (attr, QCweight))
4648 table = weight_table, dim = DIM (weight_table);
4649 else if (EQ (attr, QCslant))
4650 table = slant_table, dim = DIM (slant_table);
4651 else
4652 table = swidth_table, dim = DIM (swidth_table);
4654 for (i = 0; i < dim; ++i)
4656 Lisp_Object symbol = *table[i].symbol;
4657 Lisp_Object tail = result;
4659 while (!NILP (tail)
4660 && !EQ (XCAR (tail), symbol))
4661 tail = XCDR (tail);
4663 if (NILP (tail))
4664 result = Fcons (symbol, result);
4667 else if (EQ (attr, QCunderline))
4668 result = Fcons (Qt, Fcons (Qnil, Qnil));
4669 else if (EQ (attr, QCoverline))
4670 result = Fcons (Qt, Fcons (Qnil, Qnil));
4671 else if (EQ (attr, QCstrike_through))
4672 result = Fcons (Qt, Fcons (Qnil, Qnil));
4673 else if (EQ (attr, QCinverse_video) || EQ (attr, QCreverse_video))
4674 result = Fcons (Qt, Fcons (Qnil, Qnil));
4676 return result;
4680 DEFUN ("internal-merge-in-global-face", Finternal_merge_in_global_face,
4681 Sinternal_merge_in_global_face, 2, 2, 0,
4682 "Add attributes from frame-default definition of FACE to FACE on FRAME.\n\
4683 Default face attributes override any local face attributes.")
4684 (face, frame)
4685 Lisp_Object face, frame;
4687 int i;
4688 Lisp_Object global_lface, local_lface, *gvec, *lvec;
4690 CHECK_LIVE_FRAME (frame, 1);
4691 global_lface = lface_from_face_name (NULL, face, 1);
4692 local_lface = lface_from_face_name (XFRAME (frame), face, 0);
4693 if (NILP (local_lface))
4694 local_lface = Finternal_make_lisp_face (face, frame);
4696 /* Make every specified global attribute override the local one.
4697 BEWARE!! This is only used from `face-set-after-frame-default' where
4698 the local frame is defined from default specs in `face-defface-spec'
4699 and those should be overridden by global settings. Hence the strange
4700 "global before local" priority. */
4701 lvec = XVECTOR (local_lface)->contents;
4702 gvec = XVECTOR (global_lface)->contents;
4703 for (i = 1; i < LFACE_VECTOR_SIZE; ++i)
4704 if (! UNSPECIFIEDP (gvec[i]))
4705 lvec[i] = gvec[i];
4707 return Qnil;
4711 /* The following function is implemented for compatibility with 20.2.
4712 The function is used in x-resolve-fonts when it is asked to
4713 return fonts with the same size as the font of a face. This is
4714 done in fontset.el. */
4716 DEFUN ("face-font", Fface_font, Sface_font, 1, 2, 0,
4717 "Return the font name of face FACE, or nil if it is unspecified.\n\
4718 If the optional argument FRAME is given, report on face FACE in that frame.\n\
4719 If FRAME is t, report on the defaults for face FACE (for new frames).\n\
4720 The font default for a face is either nil, or a list\n\
4721 of the form (bold), (italic) or (bold italic).\n\
4722 If FRAME is omitted or nil, use the selected frame.")
4723 (face, frame)
4724 Lisp_Object face, frame;
4726 if (EQ (frame, Qt))
4728 Lisp_Object result = Qnil;
4729 Lisp_Object lface = lface_from_face_name (NULL, face, 1);
4731 if (!UNSPECIFIEDP (LFACE_WEIGHT (lface))
4732 && !EQ (LFACE_WEIGHT (lface), Qnormal))
4733 result = Fcons (Qbold, result);
4735 if (!NILP (LFACE_SLANT (lface))
4736 && !EQ (LFACE_SLANT (lface), Qnormal))
4737 result = Fcons (Qitalic, result);
4739 return result;
4741 else
4743 struct frame *f = frame_or_selected_frame (frame, 1);
4744 int face_id = lookup_named_face (f, face, 0);
4745 struct face *face = FACE_FROM_ID (f, face_id);
4746 return face ? build_string (face->font_name) : Qnil;
4751 /* Compare face vectors V1 and V2 for equality. Value is non-zero if
4752 all attributes are `equal'. Tries to be fast because this function
4753 is called quite often. */
4755 static INLINE int
4756 lface_equal_p (v1, v2)
4757 Lisp_Object *v1, *v2;
4759 int i, equal_p = 1;
4761 for (i = 1; i < LFACE_VECTOR_SIZE && equal_p; ++i)
4763 Lisp_Object a = v1[i];
4764 Lisp_Object b = v2[i];
4766 /* Type can differ, e.g. when one attribute is unspecified, i.e. nil,
4767 and the other is specified. */
4768 equal_p = XTYPE (a) == XTYPE (b);
4769 if (!equal_p)
4770 break;
4772 if (!EQ (a, b))
4774 switch (XTYPE (a))
4776 case Lisp_String:
4777 equal_p = ((STRING_BYTES (XSTRING (a))
4778 == STRING_BYTES (XSTRING (b)))
4779 && bcmp (XSTRING (a)->data, XSTRING (b)->data,
4780 STRING_BYTES (XSTRING (a))) == 0);
4781 break;
4783 case Lisp_Int:
4784 case Lisp_Symbol:
4785 equal_p = 0;
4786 break;
4788 default:
4789 equal_p = !NILP (Fequal (a, b));
4790 break;
4795 return equal_p;
4799 DEFUN ("internal-lisp-face-equal-p", Finternal_lisp_face_equal_p,
4800 Sinternal_lisp_face_equal_p, 2, 3, 0,
4801 "True if FACE1 and FACE2 are equal.\n\
4802 If the optional argument FRAME is given, report on face FACE in that frame.\n\
4803 If FRAME is t, report on the defaults for face FACE (for new frames).\n\
4804 If FRAME is omitted or nil, use the selected frame.")
4805 (face1, face2, frame)
4806 Lisp_Object face1, face2, frame;
4808 int equal_p;
4809 struct frame *f;
4810 Lisp_Object lface1, lface2;
4812 if (EQ (frame, Qt))
4813 f = NULL;
4814 else
4815 /* Don't use check_x_frame here because this function is called
4816 before X frames exist. At that time, if FRAME is nil,
4817 selected_frame will be used which is the frame dumped with
4818 Emacs. That frame is not an X frame. */
4819 f = frame_or_selected_frame (frame, 2);
4821 lface1 = lface_from_face_name (NULL, face1, 1);
4822 lface2 = lface_from_face_name (NULL, face2, 1);
4823 equal_p = lface_equal_p (XVECTOR (lface1)->contents,
4824 XVECTOR (lface2)->contents);
4825 return equal_p ? Qt : Qnil;
4829 DEFUN ("internal-lisp-face-empty-p", Finternal_lisp_face_empty_p,
4830 Sinternal_lisp_face_empty_p, 1, 2, 0,
4831 "True if FACE has no attribute specified.\n\
4832 If the optional argument FRAME is given, report on face FACE in that frame.\n\
4833 If FRAME is t, report on the defaults for face FACE (for new frames).\n\
4834 If FRAME is omitted or nil, use the selected frame.")
4835 (face, frame)
4836 Lisp_Object face, frame;
4838 struct frame *f;
4839 Lisp_Object lface;
4840 int i;
4842 if (NILP (frame))
4843 frame = selected_frame;
4844 CHECK_LIVE_FRAME (frame, 0);
4845 f = XFRAME (frame);
4847 if (EQ (frame, Qt))
4848 lface = lface_from_face_name (NULL, face, 1);
4849 else
4850 lface = lface_from_face_name (f, face, 1);
4852 for (i = 1; i < LFACE_VECTOR_SIZE; ++i)
4853 if (!UNSPECIFIEDP (AREF (lface, i)))
4854 break;
4856 return i == LFACE_VECTOR_SIZE ? Qt : Qnil;
4860 DEFUN ("frame-face-alist", Fframe_face_alist, Sframe_face_alist,
4861 0, 1, 0,
4862 "Return an alist of frame-local faces defined on FRAME.\n\
4863 For internal use only.")
4864 (frame)
4865 Lisp_Object frame;
4867 struct frame *f = frame_or_selected_frame (frame, 0);
4868 return f->face_alist;
4872 /* Return a hash code for Lisp string STRING with case ignored. Used
4873 below in computing a hash value for a Lisp face. */
4875 static INLINE unsigned
4876 hash_string_case_insensitive (string)
4877 Lisp_Object string;
4879 unsigned char *s;
4880 unsigned hash = 0;
4881 xassert (STRINGP (string));
4882 for (s = XSTRING (string)->data; *s; ++s)
4883 hash = (hash << 1) ^ tolower (*s);
4884 return hash;
4888 /* Return a hash code for face attribute vector V. */
4890 static INLINE unsigned
4891 lface_hash (v)
4892 Lisp_Object *v;
4894 return (hash_string_case_insensitive (v[LFACE_FAMILY_INDEX])
4895 ^ hash_string_case_insensitive (v[LFACE_FOREGROUND_INDEX])
4896 ^ hash_string_case_insensitive (v[LFACE_BACKGROUND_INDEX])
4897 ^ XFASTINT (v[LFACE_WEIGHT_INDEX])
4898 ^ XFASTINT (v[LFACE_SLANT_INDEX])
4899 ^ XFASTINT (v[LFACE_SWIDTH_INDEX])
4900 ^ XFASTINT (v[LFACE_HEIGHT_INDEX]));
4904 /* Return non-zero if LFACE1 and LFACE2 specify the same font (without
4905 considering charsets/registries). They do if they specify the same
4906 family, point size, weight, width, slant, and fontset. Both LFACE1
4907 and LFACE2 must be fully-specified. */
4909 static INLINE int
4910 lface_same_font_attributes_p (lface1, lface2)
4911 Lisp_Object *lface1, *lface2;
4913 xassert (lface_fully_specified_p (lface1)
4914 && lface_fully_specified_p (lface2));
4915 return (xstricmp (XSTRING (lface1[LFACE_FAMILY_INDEX])->data,
4916 XSTRING (lface2[LFACE_FAMILY_INDEX])->data) == 0
4917 && EQ (lface1[LFACE_HEIGHT_INDEX], lface2[LFACE_HEIGHT_INDEX])
4918 && EQ (lface1[LFACE_SWIDTH_INDEX], lface2[LFACE_SWIDTH_INDEX])
4919 && EQ (lface1[LFACE_AVGWIDTH_INDEX], lface2[LFACE_AVGWIDTH_INDEX])
4920 && EQ (lface1[LFACE_WEIGHT_INDEX], lface2[LFACE_WEIGHT_INDEX])
4921 && EQ (lface1[LFACE_SLANT_INDEX], lface2[LFACE_SLANT_INDEX])
4922 && (EQ (lface1[LFACE_FONT_INDEX], lface2[LFACE_FONT_INDEX])
4923 || (STRINGP (lface1[LFACE_FONT_INDEX])
4924 && STRINGP (lface2[LFACE_FONT_INDEX])
4925 && xstricmp (XSTRING (lface1[LFACE_FONT_INDEX])->data,
4926 XSTRING (lface2[LFACE_FONT_INDEX])->data))));
4931 /***********************************************************************
4932 Realized Faces
4933 ***********************************************************************/
4935 /* Allocate and return a new realized face for Lisp face attribute
4936 vector ATTR. */
4938 static struct face *
4939 make_realized_face (attr)
4940 Lisp_Object *attr;
4942 struct face *face = (struct face *) xmalloc (sizeof *face);
4943 bzero (face, sizeof *face);
4944 face->ascii_face = face;
4945 bcopy (attr, face->lface, sizeof face->lface);
4946 return face;
4950 /* Free realized face FACE, including its X resources. FACE may
4951 be null. */
4953 static void
4954 free_realized_face (f, face)
4955 struct frame *f;
4956 struct face *face;
4958 if (face)
4960 #ifdef HAVE_WINDOW_SYSTEM
4961 if (FRAME_WINDOW_P (f))
4963 /* Free fontset of FACE if it is ASCII face. */
4964 if (face->fontset >= 0 && face == face->ascii_face)
4965 free_face_fontset (f, face);
4966 if (face->gc)
4968 x_free_gc (f, face->gc);
4969 face->gc = 0;
4972 free_face_colors (f, face);
4973 x_destroy_bitmap (f, face->stipple);
4975 #endif /* HAVE_WINDOW_SYSTEM */
4977 xfree (face);
4982 /* Prepare face FACE for subsequent display on frame F. This
4983 allocated GCs if they haven't been allocated yet or have been freed
4984 by clearing the face cache. */
4986 void
4987 prepare_face_for_display (f, face)
4988 struct frame *f;
4989 struct face *face;
4991 #ifdef HAVE_WINDOW_SYSTEM
4992 xassert (FRAME_WINDOW_P (f));
4994 if (face->gc == 0)
4996 XGCValues xgcv;
4997 unsigned long mask = GCForeground | GCBackground | GCGraphicsExposures;
4999 xgcv.foreground = face->foreground;
5000 xgcv.background = face->background;
5001 #ifdef HAVE_X_WINDOWS
5002 xgcv.graphics_exposures = False;
5003 #endif
5004 /* The font of FACE may be null if we couldn't load it. */
5005 if (face->font)
5007 #ifdef HAVE_X_WINDOWS
5008 xgcv.font = face->font->fid;
5009 #endif
5010 #ifdef WINDOWSNT
5011 xgcv.font = face->font;
5012 #endif
5013 #ifdef macintosh
5014 xgcv.font = face->font;
5015 #endif
5016 mask |= GCFont;
5019 BLOCK_INPUT;
5020 #ifdef HAVE_X_WINDOWS
5021 if (face->stipple)
5023 xgcv.fill_style = FillOpaqueStippled;
5024 xgcv.stipple = x_bitmap_pixmap (f, face->stipple);
5025 mask |= GCFillStyle | GCStipple;
5027 #endif
5028 face->gc = x_create_gc (f, mask, &xgcv);
5029 UNBLOCK_INPUT;
5031 #endif /* HAVE_WINDOW_SYSTEM */
5035 /***********************************************************************
5036 Face Cache
5037 ***********************************************************************/
5039 /* Return a new face cache for frame F. */
5041 static struct face_cache *
5042 make_face_cache (f)
5043 struct frame *f;
5045 struct face_cache *c;
5046 int size;
5048 c = (struct face_cache *) xmalloc (sizeof *c);
5049 bzero (c, sizeof *c);
5050 size = FACE_CACHE_BUCKETS_SIZE * sizeof *c->buckets;
5051 c->buckets = (struct face **) xmalloc (size);
5052 bzero (c->buckets, size);
5053 c->size = 50;
5054 c->faces_by_id = (struct face **) xmalloc (c->size * sizeof *c->faces_by_id);
5055 c->f = f;
5056 return c;
5060 /* Clear out all graphics contexts for all realized faces, except for
5061 the basic faces. This should be done from time to time just to avoid
5062 keeping too many graphics contexts that are no longer needed. */
5064 static void
5065 clear_face_gcs (c)
5066 struct face_cache *c;
5068 if (c && FRAME_WINDOW_P (c->f))
5070 #ifdef HAVE_WINDOW_SYSTEM
5071 int i;
5072 for (i = BASIC_FACE_ID_SENTINEL; i < c->used; ++i)
5074 struct face *face = c->faces_by_id[i];
5075 if (face && face->gc)
5077 x_free_gc (c->f, face->gc);
5078 face->gc = 0;
5081 #endif /* HAVE_WINDOW_SYSTEM */
5086 /* Free all realized faces in face cache C, including basic faces. C
5087 may be null. If faces are freed, make sure the frame's current
5088 matrix is marked invalid, so that a display caused by an expose
5089 event doesn't try to use faces we destroyed. */
5091 static void
5092 free_realized_faces (c)
5093 struct face_cache *c;
5095 if (c && c->used)
5097 int i, size;
5098 struct frame *f = c->f;
5100 /* We must block input here because we can't process X events
5101 safely while only some faces are freed, or when the frame's
5102 current matrix still references freed faces. */
5103 BLOCK_INPUT;
5105 for (i = 0; i < c->used; ++i)
5107 free_realized_face (f, c->faces_by_id[i]);
5108 c->faces_by_id[i] = NULL;
5111 c->used = 0;
5112 size = FACE_CACHE_BUCKETS_SIZE * sizeof *c->buckets;
5113 bzero (c->buckets, size);
5115 /* Must do a thorough redisplay the next time. Mark current
5116 matrices as invalid because they will reference faces freed
5117 above. This function is also called when a frame is
5118 destroyed. In this case, the root window of F is nil. */
5119 if (WINDOWP (f->root_window))
5121 clear_current_matrices (f);
5122 ++windows_or_buffers_changed;
5125 UNBLOCK_INPUT;
5130 /* Free all faces realized for multibyte characters on frame F that
5131 has FONTSET. */
5133 void
5134 free_realized_multibyte_face (f, fontset)
5135 struct frame *f;
5136 int fontset;
5138 struct face_cache *cache = FRAME_FACE_CACHE (f);
5139 struct face *face;
5140 int i;
5142 /* We must block input here because we can't process X events safely
5143 while only some faces are freed, or when the frame's current
5144 matrix still references freed faces. */
5145 BLOCK_INPUT;
5147 for (i = 0; i < cache->used; i++)
5149 face = cache->faces_by_id[i];
5150 if (face
5151 && face != face->ascii_face
5152 && face->fontset == fontset)
5154 uncache_face (cache, face);
5155 free_realized_face (f, face);
5159 /* Must do a thorough redisplay the next time. Mark current
5160 matrices as invalid because they will reference faces freed
5161 above. This function is also called when a frame is destroyed.
5162 In this case, the root window of F is nil. */
5163 if (WINDOWP (f->root_window))
5165 clear_current_matrices (f);
5166 ++windows_or_buffers_changed;
5169 UNBLOCK_INPUT;
5173 /* Free all realized faces on FRAME or on all frames if FRAME is nil.
5174 This is done after attributes of a named face have been changed,
5175 because we can't tell which realized faces depend on that face. */
5177 void
5178 free_all_realized_faces (frame)
5179 Lisp_Object frame;
5181 if (NILP (frame))
5183 Lisp_Object rest;
5184 FOR_EACH_FRAME (rest, frame)
5185 free_realized_faces (FRAME_FACE_CACHE (XFRAME (frame)));
5187 else
5188 free_realized_faces (FRAME_FACE_CACHE (XFRAME (frame)));
5192 /* Free face cache C and faces in it, including their X resources. */
5194 static void
5195 free_face_cache (c)
5196 struct face_cache *c;
5198 if (c)
5200 free_realized_faces (c);
5201 xfree (c->buckets);
5202 xfree (c->faces_by_id);
5203 xfree (c);
5208 /* Cache realized face FACE in face cache C. HASH is the hash value
5209 of FACE. If FACE->fontset >= 0, add the new face to the end of the
5210 collision list of the face hash table of C. This is done because
5211 otherwise lookup_face would find FACE for every character, even if
5212 faces with the same attributes but for specific characters exist. */
5214 static void
5215 cache_face (c, face, hash)
5216 struct face_cache *c;
5217 struct face *face;
5218 unsigned hash;
5220 int i = hash % FACE_CACHE_BUCKETS_SIZE;
5222 face->hash = hash;
5224 if (face->fontset >= 0)
5226 struct face *last = c->buckets[i];
5227 if (last)
5229 while (last->next)
5230 last = last->next;
5231 last->next = face;
5232 face->prev = last;
5233 face->next = NULL;
5235 else
5237 c->buckets[i] = face;
5238 face->prev = face->next = NULL;
5241 else
5243 face->prev = NULL;
5244 face->next = c->buckets[i];
5245 if (face->next)
5246 face->next->prev = face;
5247 c->buckets[i] = face;
5250 /* Find a free slot in C->faces_by_id and use the index of the free
5251 slot as FACE->id. */
5252 for (i = 0; i < c->used; ++i)
5253 if (c->faces_by_id[i] == NULL)
5254 break;
5255 face->id = i;
5257 /* Maybe enlarge C->faces_by_id. */
5258 if (i == c->used && c->used == c->size)
5260 int new_size = 2 * c->size;
5261 int sz = new_size * sizeof *c->faces_by_id;
5262 c->faces_by_id = (struct face **) xrealloc (c->faces_by_id, sz);
5263 c->size = new_size;
5266 #if GLYPH_DEBUG
5267 /* Check that FACE got a unique id. */
5269 int j, n;
5270 struct face *face;
5272 for (j = n = 0; j < FACE_CACHE_BUCKETS_SIZE; ++j)
5273 for (face = c->buckets[j]; face; face = face->next)
5274 if (face->id == i)
5275 ++n;
5277 xassert (n == 1);
5279 #endif /* GLYPH_DEBUG */
5281 c->faces_by_id[i] = face;
5282 if (i == c->used)
5283 ++c->used;
5287 /* Remove face FACE from cache C. */
5289 static void
5290 uncache_face (c, face)
5291 struct face_cache *c;
5292 struct face *face;
5294 int i = face->hash % FACE_CACHE_BUCKETS_SIZE;
5296 if (face->prev)
5297 face->prev->next = face->next;
5298 else
5299 c->buckets[i] = face->next;
5301 if (face->next)
5302 face->next->prev = face->prev;
5304 c->faces_by_id[face->id] = NULL;
5305 if (face->id == c->used)
5306 --c->used;
5310 /* Look up a realized face with face attributes ATTR in the face cache
5311 of frame F. The face will be used to display character C. Value
5312 is the ID of the face found. If no suitable face is found, realize
5313 a new one. In that case, if C is a multibyte character, BASE_FACE
5314 is a face that has the same attributes. */
5316 INLINE int
5317 lookup_face (f, attr, c, base_face)
5318 struct frame *f;
5319 Lisp_Object *attr;
5320 int c;
5321 struct face *base_face;
5323 struct face_cache *cache = FRAME_FACE_CACHE (f);
5324 unsigned hash;
5325 int i;
5326 struct face *face;
5328 xassert (cache != NULL);
5329 check_lface_attrs (attr);
5331 /* Look up ATTR in the face cache. */
5332 hash = lface_hash (attr);
5333 i = hash % FACE_CACHE_BUCKETS_SIZE;
5335 for (face = cache->buckets[i]; face; face = face->next)
5336 if (face->hash == hash
5337 && (!FRAME_WINDOW_P (f)
5338 || FACE_SUITABLE_FOR_CHAR_P (face, c))
5339 && lface_equal_p (face->lface, attr))
5340 break;
5342 /* If not found, realize a new face. */
5343 if (face == NULL)
5344 face = realize_face (cache, attr, c, base_face, -1);
5346 #if GLYPH_DEBUG
5347 xassert (face == FACE_FROM_ID (f, face->id));
5349 /* When this function is called from face_for_char (in this case, C is
5350 a multibyte character), a fontset of a face returned by
5351 realize_face is not yet set, i.e. FACE_SUITABLE_FOR_CHAR_P (FACE,
5352 C) is not sutisfied. The fontset is set for this face by
5353 face_for_char later. */
5354 #if 0
5355 if (FRAME_WINDOW_P (f))
5356 xassert (FACE_SUITABLE_FOR_CHAR_P (face, c));
5357 #endif
5358 #endif /* GLYPH_DEBUG */
5360 return face->id;
5364 /* Return the face id of the realized face for named face SYMBOL on
5365 frame F suitable for displaying character C. Value is -1 if the
5366 face couldn't be determined, which might happen if the default face
5367 isn't realized and cannot be realized. */
5370 lookup_named_face (f, symbol, c)
5371 struct frame *f;
5372 Lisp_Object symbol;
5373 int c;
5375 Lisp_Object attrs[LFACE_VECTOR_SIZE];
5376 Lisp_Object symbol_attrs[LFACE_VECTOR_SIZE];
5377 struct face *default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
5379 if (default_face == NULL)
5381 if (!realize_basic_faces (f))
5382 return -1;
5383 default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
5386 get_lface_attributes (f, symbol, symbol_attrs, 1);
5387 bcopy (default_face->lface, attrs, sizeof attrs);
5388 merge_face_vectors (f, symbol_attrs, attrs, Qnil);
5389 return lookup_face (f, attrs, c, NULL);
5393 /* Return the ID of the realized ASCII face of Lisp face with ID
5394 LFACE_ID on frame F. Value is -1 if LFACE_ID isn't valid. */
5397 ascii_face_of_lisp_face (f, lface_id)
5398 struct frame *f;
5399 int lface_id;
5401 int face_id;
5403 if (lface_id >= 0 && lface_id < lface_id_to_name_size)
5405 Lisp_Object face_name = lface_id_to_name[lface_id];
5406 face_id = lookup_named_face (f, face_name, 0);
5408 else
5409 face_id = -1;
5411 return face_id;
5415 /* Return a face for charset ASCII that is like the face with id
5416 FACE_ID on frame F, but has a font that is STEPS steps smaller.
5417 STEPS < 0 means larger. Value is the id of the face. */
5420 smaller_face (f, face_id, steps)
5421 struct frame *f;
5422 int face_id, steps;
5424 #ifdef HAVE_WINDOW_SYSTEM
5425 struct face *face;
5426 Lisp_Object attrs[LFACE_VECTOR_SIZE];
5427 int pt, last_pt, last_height;
5428 int delta;
5429 int new_face_id;
5430 struct face *new_face;
5432 /* If not called for an X frame, just return the original face. */
5433 if (FRAME_TERMCAP_P (f))
5434 return face_id;
5436 /* Try in increments of 1/2 pt. */
5437 delta = steps < 0 ? 5 : -5;
5438 steps = abs (steps);
5440 face = FACE_FROM_ID (f, face_id);
5441 bcopy (face->lface, attrs, sizeof attrs);
5442 pt = last_pt = XFASTINT (attrs[LFACE_HEIGHT_INDEX]);
5443 new_face_id = face_id;
5444 last_height = FONT_HEIGHT (face->font);
5446 while (steps
5447 && pt + delta > 0
5448 /* Give up if we cannot find a font within 10pt. */
5449 && abs (last_pt - pt) < 100)
5451 /* Look up a face for a slightly smaller/larger font. */
5452 pt += delta;
5453 attrs[LFACE_HEIGHT_INDEX] = make_number (pt);
5454 new_face_id = lookup_face (f, attrs, 0, NULL);
5455 new_face = FACE_FROM_ID (f, new_face_id);
5457 /* If height changes, count that as one step. */
5458 if ((delta < 0 && FONT_HEIGHT (new_face->font) < last_height)
5459 || (delta > 0 && FONT_HEIGHT (new_face->font) > last_height))
5461 --steps;
5462 last_height = FONT_HEIGHT (new_face->font);
5463 last_pt = pt;
5467 return new_face_id;
5469 #else /* not HAVE_WINDOW_SYSTEM */
5471 return face_id;
5473 #endif /* not HAVE_WINDOW_SYSTEM */
5477 /* Return a face for charset ASCII that is like the face with id
5478 FACE_ID on frame F, but has height HEIGHT. */
5481 face_with_height (f, face_id, height)
5482 struct frame *f;
5483 int face_id;
5484 int height;
5486 #ifdef HAVE_WINDOW_SYSTEM
5487 struct face *face;
5488 Lisp_Object attrs[LFACE_VECTOR_SIZE];
5490 if (FRAME_TERMCAP_P (f)
5491 || height <= 0)
5492 return face_id;
5494 face = FACE_FROM_ID (f, face_id);
5495 bcopy (face->lface, attrs, sizeof attrs);
5496 attrs[LFACE_HEIGHT_INDEX] = make_number (height);
5497 face_id = lookup_face (f, attrs, 0, NULL);
5498 #endif /* HAVE_WINDOW_SYSTEM */
5500 return face_id;
5504 /* Return the face id of the realized face for named face SYMBOL on
5505 frame F suitable for displaying character C, and use attributes of
5506 the face FACE_ID for attributes that aren't completely specified by
5507 SYMBOL. This is like lookup_named_face, except that the default
5508 attributes come from FACE_ID, not from the default face. FACE_ID
5509 is assumed to be already realized. */
5512 lookup_derived_face (f, symbol, c, face_id)
5513 struct frame *f;
5514 Lisp_Object symbol;
5515 int c;
5516 int face_id;
5518 Lisp_Object attrs[LFACE_VECTOR_SIZE];
5519 Lisp_Object symbol_attrs[LFACE_VECTOR_SIZE];
5520 struct face *default_face = FACE_FROM_ID (f, face_id);
5522 if (!default_face)
5523 abort ();
5525 get_lface_attributes (f, symbol, symbol_attrs, 1);
5526 bcopy (default_face->lface, attrs, sizeof attrs);
5527 merge_face_vectors (f, symbol_attrs, attrs, Qnil);
5528 return lookup_face (f, attrs, c, default_face);
5533 /***********************************************************************
5534 Font selection
5535 ***********************************************************************/
5537 DEFUN ("internal-set-font-selection-order",
5538 Finternal_set_font_selection_order,
5539 Sinternal_set_font_selection_order, 1, 1, 0,
5540 "Set font selection order for face font selection to ORDER.\n\
5541 ORDER must be a list of length 4 containing the symbols `:width',\n\
5542 `:height', `:weight', and `:slant'. Face attributes appearing\n\
5543 first in ORDER are matched first, e.g. if `:height' appears before\n\
5544 `:weight' in ORDER, font selection first tries to find a font with\n\
5545 a suitable height, and then tries to match the font weight.\n\
5546 Value is ORDER.")
5547 (order)
5548 Lisp_Object order;
5550 Lisp_Object list;
5551 int i;
5552 int indices[DIM (font_sort_order)];
5554 CHECK_LIST (order, 0);
5555 bzero (indices, sizeof indices);
5556 i = 0;
5558 for (list = order;
5559 CONSP (list) && i < DIM (indices);
5560 list = XCDR (list), ++i)
5562 Lisp_Object attr = XCAR (list);
5563 int xlfd;
5565 if (EQ (attr, QCwidth))
5566 xlfd = XLFD_SWIDTH;
5567 else if (EQ (attr, QCheight))
5568 xlfd = XLFD_POINT_SIZE;
5569 else if (EQ (attr, QCweight))
5570 xlfd = XLFD_WEIGHT;
5571 else if (EQ (attr, QCslant))
5572 xlfd = XLFD_SLANT;
5573 else
5574 break;
5576 if (indices[i] != 0)
5577 break;
5578 indices[i] = xlfd;
5581 if (!NILP (list) || i != DIM (indices))
5582 signal_error ("Invalid font sort order", order);
5583 for (i = 0; i < DIM (font_sort_order); ++i)
5584 if (indices[i] == 0)
5585 signal_error ("Invalid font sort order", order);
5587 if (bcmp (indices, font_sort_order, sizeof indices) != 0)
5589 bcopy (indices, font_sort_order, sizeof font_sort_order);
5590 free_all_realized_faces (Qnil);
5593 return Qnil;
5597 DEFUN ("internal-set-alternative-font-family-alist",
5598 Finternal_set_alternative_font_family_alist,
5599 Sinternal_set_alternative_font_family_alist, 1, 1, 0,
5600 "Define alternative font families to try in face font selection.\n\
5601 ALIST is an alist of (FAMILY ALTERNATIVE1 ALTERNATIVE2 ...) entries.\n\
5602 Each ALTERNATIVE is tried in order if no fonts of font family FAMILY can\n\
5603 be found. Value is ALIST.")
5604 (alist)
5605 Lisp_Object alist;
5607 CHECK_LIST (alist, 0);
5608 Vface_alternative_font_family_alist = alist;
5609 free_all_realized_faces (Qnil);
5610 return alist;
5614 DEFUN ("internal-set-alternative-font-registry-alist",
5615 Finternal_set_alternative_font_registry_alist,
5616 Sinternal_set_alternative_font_registry_alist, 1, 1, 0,
5617 "Define alternative font registries to try in face font selection.\n\
5618 ALIST is an alist of (REGISTRY ALTERNATIVE1 ALTERNATIVE2 ...) entries.\n\
5619 Each ALTERNATIVE is tried in order if no fonts of font registry REGISTRY can\n\
5620 be found. Value is ALIST.")
5621 (alist)
5622 Lisp_Object alist;
5624 CHECK_LIST (alist, 0);
5625 Vface_alternative_font_registry_alist = alist;
5626 free_all_realized_faces (Qnil);
5627 return alist;
5631 #ifdef HAVE_WINDOW_SYSTEM
5633 /* Value is non-zero if FONT is the name of a scalable font. The
5634 X11R6 XLFD spec says that point size, pixel size, and average width
5635 are zero for scalable fonts. Intlfonts contain at least one
5636 scalable font ("*-muleindian-1") for which this isn't true, so we
5637 just test average width. */
5639 static int
5640 font_scalable_p (font)
5641 struct font_name *font;
5643 char *s = font->fields[XLFD_AVGWIDTH];
5644 return (*s == '0' && *(s + 1) == '\0')
5645 #ifdef WINDOWSNT
5646 /* Windows implementation of XLFD is slightly broken for backward
5647 compatibility with previous broken versions, so test for
5648 wildcards as well as 0. */
5649 || *s == '*'
5650 #endif
5655 /* Ignore the difference of font point size less than this value. */
5657 #define FONT_POINT_SIZE_QUANTUM 5
5659 /* Value is non-zero if FONT1 is a better match for font attributes
5660 VALUES than FONT2. VALUES is an array of face attribute values in
5661 font sort order. COMPARE_PT_P zero means don't compare point
5662 sizes. AVGWIDTH, if not zero, is a specified font average width
5663 to compare with. */
5665 static int
5666 better_font_p (values, font1, font2, compare_pt_p, avgwidth)
5667 int *values;
5668 struct font_name *font1, *font2;
5669 int compare_pt_p, avgwidth;
5671 int i;
5673 for (i = 0; i < DIM (font_sort_order); ++i)
5675 int xlfd_idx = font_sort_order[i];
5677 if (compare_pt_p || xlfd_idx != XLFD_POINT_SIZE)
5679 int delta1 = abs (values[i] - font1->numeric[xlfd_idx]);
5680 int delta2 = abs (values[i] - font2->numeric[xlfd_idx]);
5682 if (xlfd_idx == XLFD_POINT_SIZE
5683 && abs (delta1 - delta2) < FONT_POINT_SIZE_QUANTUM)
5684 continue;
5685 if (delta1 > delta2)
5686 return 0;
5687 else if (delta1 < delta2)
5688 return 1;
5689 else
5691 /* The difference may be equal because, e.g., the face
5692 specifies `italic' but we have only `regular' and
5693 `oblique'. Prefer `oblique' in this case. */
5694 if ((xlfd_idx == XLFD_WEIGHT || xlfd_idx == XLFD_SLANT)
5695 && font1->numeric[xlfd_idx] > values[i]
5696 && font2->numeric[xlfd_idx] < values[i])
5697 return 1;
5702 if (avgwidth)
5704 int delta1 = abs (avgwidth - font1->numeric[XLFD_AVGWIDTH]);
5705 int delta2 = abs (avgwidth - font2->numeric[XLFD_AVGWIDTH]);
5706 if (delta1 > delta2)
5707 return 0;
5708 else if (delta1 < delta2)
5709 return 1;
5712 return font1->registry_priority < font2->registry_priority;
5716 /* Value is non-zero if FONT is an exact match for face attributes in
5717 SPECIFIED. SPECIFIED is an array of face attribute values in font
5718 sort order. AVGWIDTH, if non-zero, is an average width to compare
5719 with. */
5721 static int
5722 exact_face_match_p (specified, font, avgwidth)
5723 int *specified;
5724 struct font_name *font;
5725 int avgwidth;
5727 int i;
5729 for (i = 0; i < DIM (font_sort_order); ++i)
5730 if (specified[i] != font->numeric[font_sort_order[i]])
5731 break;
5733 return (i == DIM (font_sort_order)
5734 && (avgwidth <= 0
5735 || avgwidth == font->numeric[XLFD_AVGWIDTH]));
5739 /* Value is the name of a scaled font, generated from scalable font
5740 FONT on frame F. SPECIFIED_PT is the point-size to scale FONT to.
5741 Value is allocated from heap. */
5743 static char *
5744 build_scalable_font_name (f, font, specified_pt)
5745 struct frame *f;
5746 struct font_name *font;
5747 int specified_pt;
5749 char point_size[20], pixel_size[20];
5750 int pixel_value;
5751 double resy = FRAME_X_DISPLAY_INFO (f)->resy;
5752 double pt;
5754 /* If scalable font is for a specific resolution, compute
5755 the point size we must specify from the resolution of
5756 the display and the specified resolution of the font. */
5757 if (font->numeric[XLFD_RESY] != 0)
5759 pt = resy / font->numeric[XLFD_RESY] * specified_pt + 0.5;
5760 pixel_value = font->numeric[XLFD_RESY] / (PT_PER_INCH * 10.0) * pt;
5762 else
5764 pt = specified_pt;
5765 pixel_value = resy / (PT_PER_INCH * 10.0) * pt;
5768 /* Set point size of the font. */
5769 sprintf (point_size, "%d", (int) pt);
5770 font->fields[XLFD_POINT_SIZE] = point_size;
5771 font->numeric[XLFD_POINT_SIZE] = pt;
5773 /* Set pixel size. */
5774 sprintf (pixel_size, "%d", pixel_value);
5775 font->fields[XLFD_PIXEL_SIZE] = pixel_size;
5776 font->numeric[XLFD_PIXEL_SIZE] = pixel_value;
5778 /* If font doesn't specify its resolution, use the
5779 resolution of the display. */
5780 if (font->numeric[XLFD_RESY] == 0)
5782 char buffer[20];
5783 sprintf (buffer, "%d", (int) resy);
5784 font->fields[XLFD_RESY] = buffer;
5785 font->numeric[XLFD_RESY] = resy;
5788 if (strcmp (font->fields[XLFD_RESX], "0") == 0)
5790 char buffer[20];
5791 int resx = FRAME_X_DISPLAY_INFO (f)->resx;
5792 sprintf (buffer, "%d", resx);
5793 font->fields[XLFD_RESX] = buffer;
5794 font->numeric[XLFD_RESX] = resx;
5797 return build_font_name (font);
5801 /* Value is non-zero if we are allowed to use scalable font FONT. We
5802 can't run a Lisp function here since this function may be called
5803 with input blocked. */
5805 static int
5806 may_use_scalable_font_p (font, name)
5807 struct font_name *font;
5808 char *name;
5810 if (EQ (Vscalable_fonts_allowed, Qt))
5811 return 1;
5812 else if (CONSP (Vscalable_fonts_allowed))
5814 Lisp_Object tail, regexp;
5816 for (tail = Vscalable_fonts_allowed; CONSP (tail); tail = XCDR (tail))
5818 regexp = XCAR (tail);
5819 if (STRINGP (regexp)
5820 && fast_c_string_match_ignore_case (regexp, name) >= 0)
5821 return 1;
5825 return 0;
5830 /* Return the name of the best matching font for face attributes ATTRS
5831 in the array of font_name structures FONTS which contains NFONTS
5832 elements. WIDTH_RATIO is a factor with which to multiply average
5833 widths if ATTRS specifies such a width.
5835 Value is a font name which is allocated from the heap. FONTS is
5836 freed by this function. */
5838 static char *
5839 best_matching_font (f, attrs, fonts, nfonts, width_ratio)
5840 struct frame *f;
5841 Lisp_Object *attrs;
5842 struct font_name *fonts;
5843 int nfonts;
5844 int width_ratio;
5846 char *font_name;
5847 struct font_name *best;
5848 int i, pt = 0;
5849 int specified[5];
5850 int exact_p, avgwidth;
5852 if (nfonts == 0)
5853 return NULL;
5855 /* Make specified font attributes available in `specified',
5856 indexed by sort order. */
5857 for (i = 0; i < DIM (font_sort_order); ++i)
5859 int xlfd_idx = font_sort_order[i];
5861 if (xlfd_idx == XLFD_SWIDTH)
5862 specified[i] = face_numeric_swidth (attrs[LFACE_SWIDTH_INDEX]);
5863 else if (xlfd_idx == XLFD_POINT_SIZE)
5864 specified[i] = pt = XFASTINT (attrs[LFACE_HEIGHT_INDEX]);
5865 else if (xlfd_idx == XLFD_WEIGHT)
5866 specified[i] = face_numeric_weight (attrs[LFACE_WEIGHT_INDEX]);
5867 else if (xlfd_idx == XLFD_SLANT)
5868 specified[i] = face_numeric_slant (attrs[LFACE_SLANT_INDEX]);
5869 else
5870 abort ();
5873 avgwidth = (UNSPECIFIEDP (attrs[LFACE_AVGWIDTH_INDEX])
5875 : XFASTINT (attrs[LFACE_AVGWIDTH_INDEX]) * width_ratio);
5877 exact_p = 0;
5879 /* Start with the first non-scalable font in the list. */
5880 for (i = 0; i < nfonts; ++i)
5881 if (!font_scalable_p (fonts + i))
5882 break;
5884 /* Find the best match among the non-scalable fonts. */
5885 if (i < nfonts)
5887 best = fonts + i;
5889 for (i = 1; i < nfonts; ++i)
5890 if (!font_scalable_p (fonts + i)
5891 && better_font_p (specified, fonts + i, best, 1, avgwidth))
5893 best = fonts + i;
5895 exact_p = exact_face_match_p (specified, best, avgwidth);
5896 if (exact_p)
5897 break;
5901 else
5902 best = NULL;
5904 /* Unless we found an exact match among non-scalable fonts, see if
5905 we can find a better match among scalable fonts. */
5906 if (!exact_p)
5908 /* A scalable font is better if
5910 1. its weight, slant, swidth attributes are better, or.
5912 2. the best non-scalable font doesn't have the required
5913 point size, and the scalable fonts weight, slant, swidth
5914 isn't worse. */
5916 int non_scalable_has_exact_height_p;
5918 if (best && best->numeric[XLFD_POINT_SIZE] == pt)
5919 non_scalable_has_exact_height_p = 1;
5920 else
5921 non_scalable_has_exact_height_p = 0;
5923 for (i = 0; i < nfonts; ++i)
5924 if (font_scalable_p (fonts + i))
5926 if (best == NULL
5927 || better_font_p (specified, fonts + i, best, 0, 0)
5928 || (!non_scalable_has_exact_height_p
5929 && !better_font_p (specified, best, fonts + i, 0, 0)))
5930 best = fonts + i;
5934 if (font_scalable_p (best))
5935 font_name = build_scalable_font_name (f, best, pt);
5936 else
5937 font_name = build_font_name (best);
5939 /* Free font_name structures. */
5940 free_font_names (fonts, nfonts);
5942 return font_name;
5946 /* Try to get a list of fonts on frame F with font family FAMILY and
5947 registry/encoding REGISTRY. Return in *FONTS a pointer to a vector
5948 of font_name structures for the fonts matched. Value is the number
5949 of fonts found. */
5951 static int
5952 try_font_list (f, attrs, pattern, family, registry, fonts)
5953 struct frame *f;
5954 Lisp_Object *attrs;
5955 Lisp_Object pattern, family, registry;
5956 struct font_name **fonts;
5958 int nfonts;
5960 if (NILP (family) && STRINGP (attrs[LFACE_FAMILY_INDEX]))
5961 family = attrs[LFACE_FAMILY_INDEX];
5963 nfonts = font_list (f, pattern, family, registry, fonts);
5964 if (nfonts == 0 && !NILP (family))
5966 Lisp_Object alter;
5968 /* Try alternative font families. */
5969 alter = Fassoc (family, Vface_alternative_font_family_alist);
5970 if (CONSP (alter))
5971 for (alter = XCDR (alter);
5972 CONSP (alter) && nfonts == 0;
5973 alter = XCDR (alter))
5975 if (STRINGP (XCAR (alter)))
5976 nfonts = font_list (f, Qnil, XCAR (alter), registry, fonts);
5979 /* Try font family of the default face or "fixed". */
5980 if (nfonts == 0)
5982 struct face *dflt = FACE_FROM_ID (f, DEFAULT_FACE_ID);
5983 if (dflt)
5984 family = dflt->lface[LFACE_FAMILY_INDEX];
5985 else
5986 family = build_string ("fixed");
5987 nfonts = font_list (f, Qnil, family, registry, fonts);
5990 /* Try any family with the given registry. */
5991 if (nfonts == 0)
5992 nfonts = font_list (f, Qnil, Qnil, registry, fonts);
5995 return nfonts;
5999 /* Return the fontset id of the base fontset name or alias name given
6000 by the fontset attribute of ATTRS. Value is -1 if the fontset
6001 attribute of ATTRS doesn't name a fontset. */
6003 static int
6004 face_fontset (attrs)
6005 Lisp_Object *attrs;
6007 Lisp_Object name;
6009 name = attrs[LFACE_FONT_INDEX];
6010 if (!STRINGP (name))
6011 return -1;
6012 return fs_query_fontset (name, 0);
6016 /* Choose a name of font to use on frame F to display character C with
6017 Lisp face attributes specified by ATTRS. The font name is
6018 determined by the font-related attributes in ATTRS and the name
6019 pattern for C in FONTSET. Value is the font name which is
6020 allocated from the heap and must be freed by the caller, or NULL if
6021 we can get no information about the font name of C. It is assured
6022 that we always get some information for a single byte
6023 character. */
6025 static char *
6026 choose_face_font (f, attrs, fontset, c)
6027 struct frame *f;
6028 Lisp_Object *attrs;
6029 int fontset, c;
6031 Lisp_Object pattern;
6032 char *font_name = NULL;
6033 struct font_name *fonts;
6034 int nfonts, width_ratio;
6036 /* Get (foundry and) family name and registry (and encoding) name of
6037 a font for C. */
6038 pattern = fontset_font_pattern (f, fontset, c);
6039 if (NILP (pattern))
6041 xassert (!SINGLE_BYTE_CHAR_P (c));
6042 return NULL;
6044 /* If what we got is a name pattern, return it. */
6045 if (STRINGP (pattern))
6046 return xstrdup (XSTRING (pattern)->data);
6048 /* Family name may be specified both in ATTRS and car part of
6049 PATTERN. The former has higher priority if C is a single byte
6050 character. */
6051 if (STRINGP (attrs[LFACE_FAMILY_INDEX])
6052 && SINGLE_BYTE_CHAR_P (c))
6053 XCAR (pattern) = Qnil;
6055 /* Get a list of fonts matching that pattern and choose the
6056 best match for the specified face attributes from it. */
6057 nfonts = try_font_list (f, attrs, Qnil, XCAR (pattern), XCDR (pattern),
6058 &fonts);
6059 width_ratio = (SINGLE_BYTE_CHAR_P (c)
6061 : CHARSET_WIDTH (CHAR_CHARSET (c)));
6062 font_name = best_matching_font (f, attrs, fonts, nfonts, width_ratio);
6063 return font_name;
6066 #endif /* HAVE_WINDOW_SYSTEM */
6070 /***********************************************************************
6071 Face Realization
6072 ***********************************************************************/
6074 /* Realize basic faces on frame F. Value is zero if frame parameters
6075 of F don't contain enough information needed to realize the default
6076 face. */
6078 static int
6079 realize_basic_faces (f)
6080 struct frame *f;
6082 int success_p = 0;
6084 /* Block input there so that we won't be surprised by an X expose
6085 event, for instance without having the faces set up. */
6086 BLOCK_INPUT;
6088 if (realize_default_face (f))
6090 realize_named_face (f, Qmode_line, MODE_LINE_FACE_ID);
6091 realize_named_face (f, Qtool_bar, TOOL_BAR_FACE_ID);
6092 realize_named_face (f, Qfringe, BITMAP_AREA_FACE_ID);
6093 realize_named_face (f, Qheader_line, HEADER_LINE_FACE_ID);
6094 realize_named_face (f, Qscroll_bar, SCROLL_BAR_FACE_ID);
6095 realize_named_face (f, Qborder, BORDER_FACE_ID);
6096 realize_named_face (f, Qcursor, CURSOR_FACE_ID);
6097 realize_named_face (f, Qmouse, MOUSE_FACE_ID);
6098 realize_named_face (f, Qmenu, MENU_FACE_ID);
6100 /* Reflect changes in the `menu' face in menu bars. */
6101 if (menu_face_change_count)
6103 menu_face_change_count = 0;
6105 #ifdef USE_X_TOOLKIT
6106 if (FRAME_X_P (f))
6108 Widget menu = f->output_data.x->menubar_widget;
6109 if (menu)
6110 x_set_menu_resources_from_menu_face (f, menu);
6112 #endif /* USE_X_TOOLKIT */
6115 success_p = 1;
6118 UNBLOCK_INPUT;
6119 return success_p;
6123 /* Realize the default face on frame F. If the face is not fully
6124 specified, make it fully-specified. Attributes of the default face
6125 that are not explicitly specified are taken from frame parameters. */
6127 static int
6128 realize_default_face (f)
6129 struct frame *f;
6131 struct face_cache *c = FRAME_FACE_CACHE (f);
6132 Lisp_Object lface;
6133 Lisp_Object attrs[LFACE_VECTOR_SIZE];
6134 Lisp_Object frame_font;
6135 struct face *face;
6137 /* If the `default' face is not yet known, create it. */
6138 lface = lface_from_face_name (f, Qdefault, 0);
6139 if (NILP (lface))
6141 Lisp_Object frame;
6142 XSETFRAME (frame, f);
6143 lface = Finternal_make_lisp_face (Qdefault, frame);
6146 #ifdef HAVE_WINDOW_SYSTEM
6147 if (FRAME_WINDOW_P (f))
6149 /* Set frame_font to the value of the `font' frame parameter. */
6150 frame_font = Fassq (Qfont, f->param_alist);
6151 xassert (CONSP (frame_font) && STRINGP (XCDR (frame_font)));
6152 frame_font = XCDR (frame_font);
6153 set_lface_from_font_name (f, lface, frame_font, 1, 1);
6155 #endif /* HAVE_WINDOW_SYSTEM */
6157 if (!FRAME_WINDOW_P (f))
6159 LFACE_FAMILY (lface) = build_string ("default");
6160 LFACE_SWIDTH (lface) = Qnormal;
6161 LFACE_HEIGHT (lface) = make_number (1);
6162 LFACE_WEIGHT (lface) = Qnormal;
6163 LFACE_SLANT (lface) = Qnormal;
6164 LFACE_AVGWIDTH (lface) = Qunspecified;
6167 if (UNSPECIFIEDP (LFACE_UNDERLINE (lface)))
6168 LFACE_UNDERLINE (lface) = Qnil;
6170 if (UNSPECIFIEDP (LFACE_OVERLINE (lface)))
6171 LFACE_OVERLINE (lface) = Qnil;
6173 if (UNSPECIFIEDP (LFACE_STRIKE_THROUGH (lface)))
6174 LFACE_STRIKE_THROUGH (lface) = Qnil;
6176 if (UNSPECIFIEDP (LFACE_BOX (lface)))
6177 LFACE_BOX (lface) = Qnil;
6179 if (UNSPECIFIEDP (LFACE_INVERSE (lface)))
6180 LFACE_INVERSE (lface) = Qnil;
6182 if (UNSPECIFIEDP (LFACE_FOREGROUND (lface)))
6184 /* This function is called so early that colors are not yet
6185 set in the frame parameter list. */
6186 Lisp_Object color = Fassq (Qforeground_color, f->param_alist);
6188 if (CONSP (color) && STRINGP (XCDR (color)))
6189 LFACE_FOREGROUND (lface) = XCDR (color);
6190 else if (FRAME_WINDOW_P (f))
6191 return 0;
6192 else if (FRAME_TERMCAP_P (f) || FRAME_MSDOS_P (f))
6193 LFACE_FOREGROUND (lface) = build_string (unspecified_fg);
6194 else
6195 abort ();
6198 if (UNSPECIFIEDP (LFACE_BACKGROUND (lface)))
6200 /* This function is called so early that colors are not yet
6201 set in the frame parameter list. */
6202 Lisp_Object color = Fassq (Qbackground_color, f->param_alist);
6203 if (CONSP (color) && STRINGP (XCDR (color)))
6204 LFACE_BACKGROUND (lface) = XCDR (color);
6205 else if (FRAME_WINDOW_P (f))
6206 return 0;
6207 else if (FRAME_TERMCAP_P (f) || FRAME_MSDOS_P (f))
6208 LFACE_BACKGROUND (lface) = build_string (unspecified_bg);
6209 else
6210 abort ();
6213 if (UNSPECIFIEDP (LFACE_STIPPLE (lface)))
6214 LFACE_STIPPLE (lface) = Qnil;
6216 /* Realize the face; it must be fully-specified now. */
6217 xassert (lface_fully_specified_p (XVECTOR (lface)->contents));
6218 check_lface (lface);
6219 bcopy (XVECTOR (lface)->contents, attrs, sizeof attrs);
6220 face = realize_face (c, attrs, 0, NULL, DEFAULT_FACE_ID);
6221 return 1;
6225 /* Realize basic faces other than the default face in face cache C.
6226 SYMBOL is the face name, ID is the face id the realized face must
6227 have. The default face must have been realized already. */
6229 static void
6230 realize_named_face (f, symbol, id)
6231 struct frame *f;
6232 Lisp_Object symbol;
6233 int id;
6235 struct face_cache *c = FRAME_FACE_CACHE (f);
6236 Lisp_Object lface = lface_from_face_name (f, symbol, 0);
6237 Lisp_Object attrs[LFACE_VECTOR_SIZE];
6238 Lisp_Object symbol_attrs[LFACE_VECTOR_SIZE];
6239 struct face *new_face;
6241 /* The default face must exist and be fully specified. */
6242 get_lface_attributes (f, Qdefault, attrs, 1);
6243 check_lface_attrs (attrs);
6244 xassert (lface_fully_specified_p (attrs));
6246 /* If SYMBOL isn't know as a face, create it. */
6247 if (NILP (lface))
6249 Lisp_Object frame;
6250 XSETFRAME (frame, f);
6251 lface = Finternal_make_lisp_face (symbol, frame);
6254 /* Merge SYMBOL's face with the default face. */
6255 get_lface_attributes (f, symbol, symbol_attrs, 1);
6256 merge_face_vectors (f, symbol_attrs, attrs, Qnil);
6258 /* Realize the face. */
6259 new_face = realize_face (c, attrs, 0, NULL, id);
6263 /* Realize the fully-specified face with attributes ATTRS in face
6264 cache CACHE for character C. If C is a multibyte character,
6265 BASE_FACE is a face that has the same attributes. Otherwise,
6266 BASE_FACE is ignored. If FORMER_FACE_ID is non-negative, it is an
6267 ID of face to remove before caching the new face. Value is a
6268 pointer to the newly created realized face. */
6270 static struct face *
6271 realize_face (cache, attrs, c, base_face, former_face_id)
6272 struct face_cache *cache;
6273 Lisp_Object *attrs;
6274 int c;
6275 struct face *base_face;
6276 int former_face_id;
6278 struct face *face;
6280 /* LFACE must be fully specified. */
6281 xassert (cache != NULL);
6282 check_lface_attrs (attrs);
6284 if (former_face_id >= 0 && cache->used > former_face_id)
6286 /* Remove the former face. */
6287 struct face *former_face = cache->faces_by_id[former_face_id];
6288 uncache_face (cache, former_face);
6289 free_realized_face (cache->f, former_face);
6292 if (FRAME_WINDOW_P (cache->f))
6293 face = realize_x_face (cache, attrs, c, base_face);
6294 else if (FRAME_TERMCAP_P (cache->f) || FRAME_MSDOS_P (cache->f))
6295 face = realize_tty_face (cache, attrs, c);
6296 else
6297 abort ();
6299 /* Insert the new face. */
6300 cache_face (cache, face, lface_hash (attrs));
6301 #ifdef HAVE_WINDOW_SYSTEM
6302 if (FRAME_WINDOW_P (cache->f) && face->font == NULL)
6303 load_face_font (cache->f, face, c);
6304 #endif /* HAVE_WINDOW_SYSTEM */
6305 return face;
6309 /* Realize the fully-specified face with attributes ATTRS in face
6310 cache CACHE for character C. Do it for X frame CACHE->f. If C is
6311 a multibyte character, BASE_FACE is a face that has the same
6312 attributes. Otherwise, BASE_FACE is ignored. If the new face
6313 doesn't share font with the default face, a fontname is allocated
6314 from the heap and set in `font_name' of the new face, but it is not
6315 yet loaded here. Value is a pointer to the newly created realized
6316 face. */
6318 static struct face *
6319 realize_x_face (cache, attrs, c, base_face)
6320 struct face_cache *cache;
6321 Lisp_Object *attrs;
6322 int c;
6323 struct face *base_face;
6325 #ifdef HAVE_WINDOW_SYSTEM
6326 struct face *face, *default_face;
6327 struct frame *f;
6328 Lisp_Object stipple, overline, strike_through, box;
6330 xassert (FRAME_WINDOW_P (cache->f));
6331 xassert (SINGLE_BYTE_CHAR_P (c)
6332 || base_face);
6334 /* Allocate a new realized face. */
6335 face = make_realized_face (attrs);
6337 f = cache->f;
6339 /* If C is a multibyte character, we share all face attirbutes with
6340 BASE_FACE including the realized fontset. But, we must load a
6341 different font. */
6342 if (!SINGLE_BYTE_CHAR_P (c))
6344 bcopy (base_face, face, sizeof *face);
6345 face->gc = 0;
6347 /* Don't try to free the colors copied bitwise from BASE_FACE. */
6348 face->foreground_defaulted_p = 1;
6349 face->background_defaulted_p = 1;
6350 face->underline_defaulted_p = 1;
6351 face->overline_color_defaulted_p = 1;
6352 face->strike_through_color_defaulted_p = 1;
6353 face->box_color_defaulted_p = 1;
6355 /* to force realize_face to load font */
6356 face->font = NULL;
6357 return face;
6360 /* Now we are realizing a face for ASCII (and unibyte) characters. */
6362 /* Determine the font to use. Most of the time, the font will be
6363 the same as the font of the default face, so try that first. */
6364 default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
6365 if (default_face
6366 && FACE_SUITABLE_FOR_CHAR_P (default_face, c)
6367 && lface_same_font_attributes_p (default_face->lface, attrs))
6369 face->font = default_face->font;
6370 face->fontset = default_face->fontset;
6371 face->font_info_id = default_face->font_info_id;
6372 face->font_name = default_face->font_name;
6373 face->ascii_face = face;
6375 /* But, as we can't share the fontset, make a new realized
6376 fontset that has the same base fontset as of the default
6377 face. */
6378 face->fontset
6379 = make_fontset_for_ascii_face (f, default_face->fontset);
6381 else
6383 /* If the face attribute ATTRS specifies a fontset, use it as
6384 the base of a new realized fontset. Otherwise, use the same
6385 base fontset as of the default face. The base determines
6386 registry and encoding of a font. It may also determine
6387 foundry and family. The other fields of font name pattern
6388 are constructed from ATTRS. */
6389 int fontset = face_fontset (attrs);
6391 if ((fontset == -1) && default_face)
6392 fontset = default_face->fontset;
6393 face->fontset = make_fontset_for_ascii_face (f, fontset);
6394 face->font = NULL; /* to force realize_face to load font */
6396 #ifdef macintosh
6397 /* Load the font if it is specified in ATTRS. This fixes
6398 changing frame font on the Mac. */
6399 if (STRINGP (attrs[LFACE_FONT_INDEX]))
6401 struct font_info *font_info =
6402 FS_LOAD_FONT (f, 0, XSTRING (attrs[LFACE_FONT_INDEX])->data, -1);
6403 if (font_info)
6404 face->font = font_info->font;
6406 #endif
6409 /* Load colors, and set remaining attributes. */
6411 load_face_colors (f, face, attrs);
6413 /* Set up box. */
6414 box = attrs[LFACE_BOX_INDEX];
6415 if (STRINGP (box))
6417 /* A simple box of line width 1 drawn in color given by
6418 the string. */
6419 face->box_color = load_color (f, face, attrs[LFACE_BOX_INDEX],
6420 LFACE_BOX_INDEX);
6421 face->box = FACE_SIMPLE_BOX;
6422 face->box_line_width = 1;
6424 else if (INTEGERP (box))
6426 /* Simple box of specified line width in foreground color of the
6427 face. */
6428 xassert (XINT (box) != 0);
6429 face->box = FACE_SIMPLE_BOX;
6430 face->box_line_width = XINT (box);
6431 face->box_color = face->foreground;
6432 face->box_color_defaulted_p = 1;
6434 else if (CONSP (box))
6436 /* `(:width WIDTH :color COLOR :shadow SHADOW)'. SHADOW
6437 being one of `raised' or `sunken'. */
6438 face->box = FACE_SIMPLE_BOX;
6439 face->box_color = face->foreground;
6440 face->box_color_defaulted_p = 1;
6441 face->box_line_width = 1;
6443 while (CONSP (box))
6445 Lisp_Object keyword, value;
6447 keyword = XCAR (box);
6448 box = XCDR (box);
6450 if (!CONSP (box))
6451 break;
6452 value = XCAR (box);
6453 box = XCDR (box);
6455 if (EQ (keyword, QCline_width))
6457 if (INTEGERP (value) && XINT (value) != 0)
6458 face->box_line_width = XINT (value);
6460 else if (EQ (keyword, QCcolor))
6462 if (STRINGP (value))
6464 face->box_color = load_color (f, face, value,
6465 LFACE_BOX_INDEX);
6466 face->use_box_color_for_shadows_p = 1;
6469 else if (EQ (keyword, QCstyle))
6471 if (EQ (value, Qreleased_button))
6472 face->box = FACE_RAISED_BOX;
6473 else if (EQ (value, Qpressed_button))
6474 face->box = FACE_SUNKEN_BOX;
6479 /* Text underline, overline, strike-through. */
6481 if (EQ (attrs[LFACE_UNDERLINE_INDEX], Qt))
6483 /* Use default color (same as foreground color). */
6484 face->underline_p = 1;
6485 face->underline_defaulted_p = 1;
6486 face->underline_color = 0;
6488 else if (STRINGP (attrs[LFACE_UNDERLINE_INDEX]))
6490 /* Use specified color. */
6491 face->underline_p = 1;
6492 face->underline_defaulted_p = 0;
6493 face->underline_color
6494 = load_color (f, face, attrs[LFACE_UNDERLINE_INDEX],
6495 LFACE_UNDERLINE_INDEX);
6497 else if (NILP (attrs[LFACE_UNDERLINE_INDEX]))
6499 face->underline_p = 0;
6500 face->underline_defaulted_p = 0;
6501 face->underline_color = 0;
6504 overline = attrs[LFACE_OVERLINE_INDEX];
6505 if (STRINGP (overline))
6507 face->overline_color
6508 = load_color (f, face, attrs[LFACE_OVERLINE_INDEX],
6509 LFACE_OVERLINE_INDEX);
6510 face->overline_p = 1;
6512 else if (EQ (overline, Qt))
6514 face->overline_color = face->foreground;
6515 face->overline_color_defaulted_p = 1;
6516 face->overline_p = 1;
6519 strike_through = attrs[LFACE_STRIKE_THROUGH_INDEX];
6520 if (STRINGP (strike_through))
6522 face->strike_through_color
6523 = load_color (f, face, attrs[LFACE_STRIKE_THROUGH_INDEX],
6524 LFACE_STRIKE_THROUGH_INDEX);
6525 face->strike_through_p = 1;
6527 else if (EQ (strike_through, Qt))
6529 face->strike_through_color = face->foreground;
6530 face->strike_through_color_defaulted_p = 1;
6531 face->strike_through_p = 1;
6534 stipple = attrs[LFACE_STIPPLE_INDEX];
6535 if (!NILP (stipple))
6536 face->stipple = load_pixmap (f, stipple, &face->pixmap_w, &face->pixmap_h);
6538 xassert (FACE_SUITABLE_FOR_CHAR_P (face, c));
6539 return face;
6540 #endif /* HAVE_WINDOW_SYSTEM */
6544 /* Map a specified color of face FACE on frame F to a tty color index.
6545 IDX is either LFACE_FOREGROUND_INDEX or LFACE_BACKGROUND_INDEX, and
6546 specifies which color to map. Set *DEFAULTED to 1 if mapping to the
6547 default foreground/background colors. */
6549 static void
6550 map_tty_color (f, face, idx, defaulted)
6551 struct frame *f;
6552 struct face *face;
6553 enum lface_attribute_index idx;
6554 int *defaulted;
6556 Lisp_Object frame, color, def;
6557 int foreground_p = idx == LFACE_FOREGROUND_INDEX;
6558 unsigned long default_pixel, default_other_pixel, pixel;
6560 xassert (idx == LFACE_FOREGROUND_INDEX || idx == LFACE_BACKGROUND_INDEX);
6562 if (foreground_p)
6564 pixel = default_pixel = FACE_TTY_DEFAULT_FG_COLOR;
6565 default_other_pixel = FACE_TTY_DEFAULT_BG_COLOR;
6567 else
6569 pixel = default_pixel = FACE_TTY_DEFAULT_BG_COLOR;
6570 default_other_pixel = FACE_TTY_DEFAULT_FG_COLOR;
6573 XSETFRAME (frame, f);
6574 color = face->lface[idx];
6576 if (STRINGP (color)
6577 && XSTRING (color)->size
6578 && CONSP (Vtty_defined_color_alist)
6579 && (def = assq_no_quit (color, call1 (Qtty_color_alist, frame)),
6580 CONSP (def)))
6582 /* Associations in tty-defined-color-alist are of the form
6583 (NAME INDEX R G B). We need the INDEX part. */
6584 pixel = XINT (XCAR (XCDR (def)));
6587 if (pixel == default_pixel && STRINGP (color))
6589 pixel = load_color (f, face, color, idx);
6591 #if defined (MSDOS) || defined (WINDOWSNT)
6592 /* If the foreground of the default face is the default color,
6593 use the foreground color defined by the frame. */
6594 #ifdef MSDOS
6595 if (FRAME_MSDOS_P (f))
6597 #endif /* MSDOS */
6598 if (pixel == default_pixel
6599 || pixel == FACE_TTY_DEFAULT_COLOR)
6601 if (foreground_p)
6602 pixel = FRAME_FOREGROUND_PIXEL (f);
6603 else
6604 pixel = FRAME_BACKGROUND_PIXEL (f);
6605 face->lface[idx] = tty_color_name (f, pixel);
6606 *defaulted = 1;
6608 else if (pixel == default_other_pixel)
6610 if (foreground_p)
6611 pixel = FRAME_BACKGROUND_PIXEL (f);
6612 else
6613 pixel = FRAME_FOREGROUND_PIXEL (f);
6614 face->lface[idx] = tty_color_name (f, pixel);
6615 *defaulted = 1;
6617 #ifdef MSDOS
6619 #endif
6620 #endif /* MSDOS or WINDOWSNT */
6623 if (foreground_p)
6624 face->foreground = pixel;
6625 else
6626 face->background = pixel;
6630 /* Realize the fully-specified face with attributes ATTRS in face
6631 cache CACHE for character C. Do it for TTY frame CACHE->f. Value is a
6632 pointer to the newly created realized face. */
6634 static struct face *
6635 realize_tty_face (cache, attrs, c)
6636 struct face_cache *cache;
6637 Lisp_Object *attrs;
6638 int c;
6640 struct face *face;
6641 int weight, slant;
6642 int face_colors_defaulted = 0;
6643 struct frame *f = cache->f;
6645 /* Frame must be a termcap frame. */
6646 xassert (FRAME_TERMCAP_P (cache->f) || FRAME_MSDOS_P (cache->f));
6648 /* Allocate a new realized face. */
6649 face = make_realized_face (attrs);
6650 face->font_name = FRAME_MSDOS_P (cache->f) ? "ms-dos" : "tty";
6652 /* Map face attributes to TTY appearances. We map slant to
6653 dimmed text because we want italic text to appear differently
6654 and because dimmed text is probably used infrequently. */
6655 weight = face_numeric_weight (attrs[LFACE_WEIGHT_INDEX]);
6656 slant = face_numeric_slant (attrs[LFACE_SLANT_INDEX]);
6658 if (weight > XLFD_WEIGHT_MEDIUM)
6659 face->tty_bold_p = 1;
6660 if (weight < XLFD_WEIGHT_MEDIUM || slant != XLFD_SLANT_ROMAN)
6661 face->tty_dim_p = 1;
6662 if (!NILP (attrs[LFACE_UNDERLINE_INDEX]))
6663 face->tty_underline_p = 1;
6664 if (!NILP (attrs[LFACE_INVERSE_INDEX]))
6665 face->tty_reverse_p = 1;
6667 /* Map color names to color indices. */
6668 map_tty_color (f, face, LFACE_FOREGROUND_INDEX, &face_colors_defaulted);
6669 map_tty_color (f, face, LFACE_BACKGROUND_INDEX, &face_colors_defaulted);
6671 /* Swap colors if face is inverse-video. If the colors are taken
6672 from the frame colors, they are already inverted, since the
6673 frame-creation function calls x-handle-reverse-video. */
6674 if (face->tty_reverse_p && !face_colors_defaulted)
6676 unsigned long tem = face->foreground;
6677 face->foreground = face->background;
6678 face->background = tem;
6681 if (tty_suppress_bold_inverse_default_colors_p
6682 && face->tty_bold_p
6683 && face->background == FACE_TTY_DEFAULT_FG_COLOR
6684 && face->foreground == FACE_TTY_DEFAULT_BG_COLOR)
6685 face->tty_bold_p = 0;
6687 return face;
6691 DEFUN ("tty-suppress-bold-inverse-default-colors",
6692 Ftty_suppress_bold_inverse_default_colors,
6693 Stty_suppress_bold_inverse_default_colors, 1, 1, 0,
6694 "Suppress/allow boldness of faces with inverse default colors.\n\
6695 SUPPRESS non-nil means suppress it.\n\
6696 This affects bold faces on TTYs whose foreground is the default background\n\
6697 color of the display and whose background is the default foreground color.\n\
6698 For such faces, the bold face attribute is ignored if this variable\n\
6699 is non-nil.")
6700 (suppress)
6701 Lisp_Object suppress;
6703 tty_suppress_bold_inverse_default_colors_p = !NILP (suppress);
6704 ++face_change_count;
6705 return suppress;
6710 /***********************************************************************
6711 Computing Faces
6712 ***********************************************************************/
6714 /* Return the ID of the face to use to display character CH with face
6715 property PROP on frame F in current_buffer. */
6718 compute_char_face (f, ch, prop)
6719 struct frame *f;
6720 int ch;
6721 Lisp_Object prop;
6723 int face_id;
6725 if (NILP (current_buffer->enable_multibyte_characters))
6726 ch = -1;
6728 if (NILP (prop))
6730 struct face *face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
6731 face_id = FACE_FOR_CHAR (f, face, ch);
6733 else
6735 Lisp_Object attrs[LFACE_VECTOR_SIZE];
6736 struct face *default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
6737 bcopy (default_face->lface, attrs, sizeof attrs);
6738 merge_face_vector_with_property (f, attrs, prop);
6739 face_id = lookup_face (f, attrs, ch, NULL);
6742 return face_id;
6746 /* Return the face ID associated with buffer position POS for
6747 displaying ASCII characters. Return in *ENDPTR the position at
6748 which a different face is needed, as far as text properties and
6749 overlays are concerned. W is a window displaying current_buffer.
6751 REGION_BEG, REGION_END delimit the region, so it can be
6752 highlighted.
6754 LIMIT is a position not to scan beyond. That is to limit the time
6755 this function can take.
6757 If MOUSE is non-zero, use the character's mouse-face, not its face.
6759 The face returned is suitable for displaying ASCII characters. */
6762 face_at_buffer_position (w, pos, region_beg, region_end,
6763 endptr, limit, mouse)
6764 struct window *w;
6765 int pos;
6766 int region_beg, region_end;
6767 int *endptr;
6768 int limit;
6769 int mouse;
6771 struct frame *f = XFRAME (w->frame);
6772 Lisp_Object attrs[LFACE_VECTOR_SIZE];
6773 Lisp_Object prop, position;
6774 int i, noverlays;
6775 Lisp_Object *overlay_vec;
6776 Lisp_Object frame;
6777 int endpos;
6778 Lisp_Object propname = mouse ? Qmouse_face : Qface;
6779 Lisp_Object limit1, end;
6780 struct face *default_face;
6782 /* W must display the current buffer. We could write this function
6783 to use the frame and buffer of W, but right now it doesn't. */
6784 /* xassert (XBUFFER (w->buffer) == current_buffer); */
6786 XSETFRAME (frame, f);
6787 XSETFASTINT (position, pos);
6789 endpos = ZV;
6790 if (pos < region_beg && region_beg < endpos)
6791 endpos = region_beg;
6793 /* Get the `face' or `mouse_face' text property at POS, and
6794 determine the next position at which the property changes. */
6795 prop = Fget_text_property (position, propname, w->buffer);
6796 XSETFASTINT (limit1, (limit < endpos ? limit : endpos));
6797 end = Fnext_single_property_change (position, propname, w->buffer, limit1);
6798 if (INTEGERP (end))
6799 endpos = XINT (end);
6801 /* Look at properties from overlays. */
6803 int next_overlay;
6804 int len;
6806 /* First try with room for 40 overlays. */
6807 len = 40;
6808 overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object));
6809 noverlays = overlays_at (pos, 0, &overlay_vec, &len,
6810 &next_overlay, NULL, 0);
6812 /* If there are more than 40, make enough space for all, and try
6813 again. */
6814 if (noverlays > len)
6816 len = noverlays;
6817 overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object));
6818 noverlays = overlays_at (pos, 0, &overlay_vec, &len,
6819 &next_overlay, NULL, 0);
6822 if (next_overlay < endpos)
6823 endpos = next_overlay;
6826 *endptr = endpos;
6828 default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
6830 /* Optimize common cases where we can use the default face. */
6831 if (noverlays == 0
6832 && NILP (prop)
6833 && !(pos >= region_beg && pos < region_end))
6834 return DEFAULT_FACE_ID;
6836 /* Begin with attributes from the default face. */
6837 bcopy (default_face->lface, attrs, sizeof attrs);
6839 /* Merge in attributes specified via text properties. */
6840 if (!NILP (prop))
6841 merge_face_vector_with_property (f, attrs, prop);
6843 /* Now merge the overlay data. */
6844 noverlays = sort_overlays (overlay_vec, noverlays, w);
6845 for (i = 0; i < noverlays; i++)
6847 Lisp_Object oend;
6848 int oendpos;
6850 prop = Foverlay_get (overlay_vec[i], propname);
6851 if (!NILP (prop))
6852 merge_face_vector_with_property (f, attrs, prop);
6854 oend = OVERLAY_END (overlay_vec[i]);
6855 oendpos = OVERLAY_POSITION (oend);
6856 if (oendpos < endpos)
6857 endpos = oendpos;
6860 /* If in the region, merge in the region face. */
6861 if (pos >= region_beg && pos < region_end)
6863 Lisp_Object region_face = lface_from_face_name (f, Qregion, 0);
6864 merge_face_vectors (f, XVECTOR (region_face)->contents, attrs, Qnil);
6866 if (region_end < endpos)
6867 endpos = region_end;
6870 *endptr = endpos;
6872 /* Look up a realized face with the given face attributes,
6873 or realize a new one for ASCII characters. */
6874 return lookup_face (f, attrs, 0, NULL);
6878 /* Compute the face at character position POS in Lisp string STRING on
6879 window W, for ASCII characters.
6881 If STRING is an overlay string, it comes from position BUFPOS in
6882 current_buffer, otherwise BUFPOS is zero to indicate that STRING is
6883 not an overlay string. W must display the current buffer.
6884 REGION_BEG and REGION_END give the start and end positions of the
6885 region; both are -1 if no region is visible.
6887 BASE_FACE_ID is the id of a face to merge with. For strings coming
6888 from overlays or the `display' property it is the face at BUFPOS.
6890 Set *ENDPTR to the next position where to check for faces in
6891 STRING; -1 if the face is constant from POS to the end of the
6892 string.
6894 Value is the id of the face to use. The face returned is suitable
6895 for displaying ASCII characters. */
6898 face_at_string_position (w, string, pos, bufpos, region_beg,
6899 region_end, endptr, base_face_id)
6900 struct window *w;
6901 Lisp_Object string;
6902 int pos, bufpos;
6903 int region_beg, region_end;
6904 int *endptr;
6905 enum face_id base_face_id;
6907 Lisp_Object prop, position, end, limit;
6908 struct frame *f = XFRAME (WINDOW_FRAME (w));
6909 Lisp_Object attrs[LFACE_VECTOR_SIZE];
6910 struct face *base_face;
6911 int multibyte_p = STRING_MULTIBYTE (string);
6913 /* Get the value of the face property at the current position within
6914 STRING. Value is nil if there is no face property. */
6915 XSETFASTINT (position, pos);
6916 prop = Fget_text_property (position, Qface, string);
6918 /* Get the next position at which to check for faces. Value of end
6919 is nil if face is constant all the way to the end of the string.
6920 Otherwise it is a string position where to check faces next.
6921 Limit is the maximum position up to which to check for property
6922 changes in Fnext_single_property_change. Strings are usually
6923 short, so set the limit to the end of the string. */
6924 XSETFASTINT (limit, XSTRING (string)->size);
6925 end = Fnext_single_property_change (position, Qface, string, limit);
6926 if (INTEGERP (end))
6927 *endptr = XFASTINT (end);
6928 else
6929 *endptr = -1;
6931 base_face = FACE_FROM_ID (f, base_face_id);
6932 xassert (base_face);
6934 /* Optimize the default case that there is no face property and we
6935 are not in the region. */
6936 if (NILP (prop)
6937 && (base_face_id != DEFAULT_FACE_ID
6938 /* BUFPOS <= 0 means STRING is not an overlay string, so
6939 that the region doesn't have to be taken into account. */
6940 || bufpos <= 0
6941 || bufpos < region_beg
6942 || bufpos >= region_end)
6943 && (multibyte_p
6944 /* We can't realize faces for different charsets differently
6945 if we don't have fonts, so we can stop here if not working
6946 on a window-system frame. */
6947 || !FRAME_WINDOW_P (f)
6948 || FACE_SUITABLE_FOR_CHAR_P (base_face, 0)))
6949 return base_face->id;
6951 /* Begin with attributes from the base face. */
6952 bcopy (base_face->lface, attrs, sizeof attrs);
6954 /* Merge in attributes specified via text properties. */
6955 if (!NILP (prop))
6956 merge_face_vector_with_property (f, attrs, prop);
6958 /* If in the region, merge in the region face. */
6959 if (bufpos
6960 && bufpos >= region_beg
6961 && bufpos < region_end)
6963 Lisp_Object region_face = lface_from_face_name (f, Qregion, 0);
6964 merge_face_vectors (f, XVECTOR (region_face)->contents, attrs, Qnil);
6967 /* Look up a realized face with the given face attributes,
6968 or realize a new one for ASCII characters. */
6969 return lookup_face (f, attrs, 0, NULL);
6974 /***********************************************************************
6975 Tests
6976 ***********************************************************************/
6978 #if GLYPH_DEBUG
6980 /* Print the contents of the realized face FACE to stderr. */
6982 static void
6983 dump_realized_face (face)
6984 struct face *face;
6986 fprintf (stderr, "ID: %d\n", face->id);
6987 #ifdef HAVE_X_WINDOWS
6988 fprintf (stderr, "gc: %d\n", (int) face->gc);
6989 #endif
6990 fprintf (stderr, "foreground: 0x%lx (%s)\n",
6991 face->foreground,
6992 XSTRING (face->lface[LFACE_FOREGROUND_INDEX])->data);
6993 fprintf (stderr, "background: 0x%lx (%s)\n",
6994 face->background,
6995 XSTRING (face->lface[LFACE_BACKGROUND_INDEX])->data);
6996 fprintf (stderr, "font_name: %s (%s)\n",
6997 face->font_name,
6998 XSTRING (face->lface[LFACE_FAMILY_INDEX])->data);
6999 #ifdef HAVE_X_WINDOWS
7000 fprintf (stderr, "font = %p\n", face->font);
7001 #endif
7002 fprintf (stderr, "font_info_id = %d\n", face->font_info_id);
7003 fprintf (stderr, "fontset: %d\n", face->fontset);
7004 fprintf (stderr, "underline: %d (%s)\n",
7005 face->underline_p,
7006 XSTRING (Fsymbol_name (face->lface[LFACE_UNDERLINE_INDEX]))->data);
7007 fprintf (stderr, "hash: %d\n", face->hash);
7008 fprintf (stderr, "charset: %d\n", face->charset);
7012 DEFUN ("dump-face", Fdump_face, Sdump_face, 0, 1, 0, "")
7014 Lisp_Object n;
7016 if (NILP (n))
7018 int i;
7020 fprintf (stderr, "font selection order: ");
7021 for (i = 0; i < DIM (font_sort_order); ++i)
7022 fprintf (stderr, "%d ", font_sort_order[i]);
7023 fprintf (stderr, "\n");
7025 fprintf (stderr, "alternative fonts: ");
7026 debug_print (Vface_alternative_font_family_alist);
7027 fprintf (stderr, "\n");
7029 for (i = 0; i < FRAME_FACE_CACHE (SELECTED_FRAME ())->used; ++i)
7030 Fdump_face (make_number (i));
7032 else
7034 struct face *face;
7035 CHECK_NUMBER (n, 0);
7036 face = FACE_FROM_ID (SELECTED_FRAME (), XINT (n));
7037 if (face == NULL)
7038 error ("Not a valid face");
7039 dump_realized_face (face);
7042 return Qnil;
7046 DEFUN ("show-face-resources", Fshow_face_resources, Sshow_face_resources,
7047 0, 0, 0, "")
7050 fprintf (stderr, "number of colors = %d\n", ncolors_allocated);
7051 fprintf (stderr, "number of pixmaps = %d\n", npixmaps_allocated);
7052 fprintf (stderr, "number of GCs = %d\n", ngcs);
7053 return Qnil;
7056 #endif /* GLYPH_DEBUG != 0 */
7060 /***********************************************************************
7061 Initialization
7062 ***********************************************************************/
7064 void
7065 syms_of_xfaces ()
7067 Qface = intern ("face");
7068 staticpro (&Qface);
7069 Qbitmap_spec_p = intern ("bitmap-spec-p");
7070 staticpro (&Qbitmap_spec_p);
7071 Qframe_update_face_colors = intern ("frame-update-face-colors");
7072 staticpro (&Qframe_update_face_colors);
7074 /* Lisp face attribute keywords. */
7075 QCfamily = intern (":family");
7076 staticpro (&QCfamily);
7077 QCheight = intern (":height");
7078 staticpro (&QCheight);
7079 QCweight = intern (":weight");
7080 staticpro (&QCweight);
7081 QCslant = intern (":slant");
7082 staticpro (&QCslant);
7083 QCunderline = intern (":underline");
7084 staticpro (&QCunderline);
7085 QCinverse_video = intern (":inverse-video");
7086 staticpro (&QCinverse_video);
7087 QCreverse_video = intern (":reverse-video");
7088 staticpro (&QCreverse_video);
7089 QCforeground = intern (":foreground");
7090 staticpro (&QCforeground);
7091 QCbackground = intern (":background");
7092 staticpro (&QCbackground);
7093 QCstipple = intern (":stipple");;
7094 staticpro (&QCstipple);
7095 QCwidth = intern (":width");
7096 staticpro (&QCwidth);
7097 QCfont = intern (":font");
7098 staticpro (&QCfont);
7099 QCbold = intern (":bold");
7100 staticpro (&QCbold);
7101 QCitalic = intern (":italic");
7102 staticpro (&QCitalic);
7103 QCoverline = intern (":overline");
7104 staticpro (&QCoverline);
7105 QCstrike_through = intern (":strike-through");
7106 staticpro (&QCstrike_through);
7107 QCbox = intern (":box");
7108 staticpro (&QCbox);
7109 QCinherit = intern (":inherit");
7110 staticpro (&QCinherit);
7112 /* Symbols used for Lisp face attribute values. */
7113 QCcolor = intern (":color");
7114 staticpro (&QCcolor);
7115 QCline_width = intern (":line-width");
7116 staticpro (&QCline_width);
7117 QCstyle = intern (":style");
7118 staticpro (&QCstyle);
7119 Qreleased_button = intern ("released-button");
7120 staticpro (&Qreleased_button);
7121 Qpressed_button = intern ("pressed-button");
7122 staticpro (&Qpressed_button);
7123 Qnormal = intern ("normal");
7124 staticpro (&Qnormal);
7125 Qultra_light = intern ("ultra-light");
7126 staticpro (&Qultra_light);
7127 Qextra_light = intern ("extra-light");
7128 staticpro (&Qextra_light);
7129 Qlight = intern ("light");
7130 staticpro (&Qlight);
7131 Qsemi_light = intern ("semi-light");
7132 staticpro (&Qsemi_light);
7133 Qsemi_bold = intern ("semi-bold");
7134 staticpro (&Qsemi_bold);
7135 Qbold = intern ("bold");
7136 staticpro (&Qbold);
7137 Qextra_bold = intern ("extra-bold");
7138 staticpro (&Qextra_bold);
7139 Qultra_bold = intern ("ultra-bold");
7140 staticpro (&Qultra_bold);
7141 Qoblique = intern ("oblique");
7142 staticpro (&Qoblique);
7143 Qitalic = intern ("italic");
7144 staticpro (&Qitalic);
7145 Qreverse_oblique = intern ("reverse-oblique");
7146 staticpro (&Qreverse_oblique);
7147 Qreverse_italic = intern ("reverse-italic");
7148 staticpro (&Qreverse_italic);
7149 Qultra_condensed = intern ("ultra-condensed");
7150 staticpro (&Qultra_condensed);
7151 Qextra_condensed = intern ("extra-condensed");
7152 staticpro (&Qextra_condensed);
7153 Qcondensed = intern ("condensed");
7154 staticpro (&Qcondensed);
7155 Qsemi_condensed = intern ("semi-condensed");
7156 staticpro (&Qsemi_condensed);
7157 Qsemi_expanded = intern ("semi-expanded");
7158 staticpro (&Qsemi_expanded);
7159 Qexpanded = intern ("expanded");
7160 staticpro (&Qexpanded);
7161 Qextra_expanded = intern ("extra-expanded");
7162 staticpro (&Qextra_expanded);
7163 Qultra_expanded = intern ("ultra-expanded");
7164 staticpro (&Qultra_expanded);
7165 Qbackground_color = intern ("background-color");
7166 staticpro (&Qbackground_color);
7167 Qforeground_color = intern ("foreground-color");
7168 staticpro (&Qforeground_color);
7169 Qunspecified = intern ("unspecified");
7170 staticpro (&Qunspecified);
7172 Qface_alias = intern ("face-alias");
7173 staticpro (&Qface_alias);
7174 Qdefault = intern ("default");
7175 staticpro (&Qdefault);
7176 Qtool_bar = intern ("tool-bar");
7177 staticpro (&Qtool_bar);
7178 Qregion = intern ("region");
7179 staticpro (&Qregion);
7180 Qfringe = intern ("fringe");
7181 staticpro (&Qfringe);
7182 Qheader_line = intern ("header-line");
7183 staticpro (&Qheader_line);
7184 Qscroll_bar = intern ("scroll-bar");
7185 staticpro (&Qscroll_bar);
7186 Qmenu = intern ("menu");
7187 staticpro (&Qmenu);
7188 Qcursor = intern ("cursor");
7189 staticpro (&Qcursor);
7190 Qborder = intern ("border");
7191 staticpro (&Qborder);
7192 Qmouse = intern ("mouse");
7193 staticpro (&Qmouse);
7194 Qtty_color_desc = intern ("tty-color-desc");
7195 staticpro (&Qtty_color_desc);
7196 Qtty_color_by_index = intern ("tty-color-by-index");
7197 staticpro (&Qtty_color_by_index);
7198 Qtty_color_alist = intern ("tty-color-alist");
7199 staticpro (&Qtty_color_alist);
7201 Vparam_value_alist = Fcons (Fcons (Qnil, Qnil), Qnil);
7202 staticpro (&Vparam_value_alist);
7203 Vface_alternative_font_family_alist = Qnil;
7204 staticpro (&Vface_alternative_font_family_alist);
7205 Vface_alternative_font_registry_alist = Qnil;
7206 staticpro (&Vface_alternative_font_registry_alist);
7208 defsubr (&Sinternal_make_lisp_face);
7209 defsubr (&Sinternal_lisp_face_p);
7210 defsubr (&Sinternal_set_lisp_face_attribute);
7211 #ifdef HAVE_WINDOW_SYSTEM
7212 defsubr (&Sinternal_set_lisp_face_attribute_from_resource);
7213 #endif
7214 defsubr (&Scolor_gray_p);
7215 defsubr (&Scolor_supported_p);
7216 defsubr (&Sinternal_get_lisp_face_attribute);
7217 defsubr (&Sinternal_lisp_face_attribute_values);
7218 defsubr (&Sinternal_lisp_face_equal_p);
7219 defsubr (&Sinternal_lisp_face_empty_p);
7220 defsubr (&Sinternal_copy_lisp_face);
7221 defsubr (&Sinternal_merge_in_global_face);
7222 defsubr (&Sface_font);
7223 defsubr (&Sframe_face_alist);
7224 defsubr (&Sinternal_set_font_selection_order);
7225 defsubr (&Sinternal_set_alternative_font_family_alist);
7226 defsubr (&Sinternal_set_alternative_font_registry_alist);
7227 #if GLYPH_DEBUG
7228 defsubr (&Sdump_face);
7229 defsubr (&Sshow_face_resources);
7230 #endif /* GLYPH_DEBUG */
7231 defsubr (&Sclear_face_cache);
7232 defsubr (&Stty_suppress_bold_inverse_default_colors);
7234 #if defined DEBUG_X_COLORS && defined HAVE_X_WINDOWS
7235 defsubr (&Sdump_colors);
7236 #endif
7238 DEFVAR_LISP ("font-list-limit", &Vfont_list_limit,
7239 "*Limit for font matching.\n\
7240 If an integer > 0, font matching functions won't load more than\n\
7241 that number of fonts when searching for a matching font.");
7242 Vfont_list_limit = make_number (DEFAULT_FONT_LIST_LIMIT);
7244 DEFVAR_LISP ("face-new-frame-defaults", &Vface_new_frame_defaults,
7245 "List of global face definitions (for internal use only.)");
7246 Vface_new_frame_defaults = Qnil;
7248 DEFVAR_LISP ("face-default-stipple", &Vface_default_stipple,
7249 "*Default stipple pattern used on monochrome displays.\n\
7250 This stipple pattern is used on monochrome displays\n\
7251 instead of shades of gray for a face background color.\n\
7252 See `set-face-stipple' for possible values for this variable.");
7253 Vface_default_stipple = build_string ("gray3");
7255 DEFVAR_LISP ("tty-defined-color-alist", &Vtty_defined_color_alist,
7256 "An alist of defined terminal colors and their RGB values.");
7257 Vtty_defined_color_alist = Qnil;
7259 DEFVAR_LISP ("scalable-fonts-allowed", &Vscalable_fonts_allowed,
7260 "Allowed scalable fonts.\n\
7261 A value of nil means don't allow any scalable fonts.\n\
7262 A value of t means allow any scalable font.\n\
7263 Otherwise, value must be a list of regular expressions. A font may be\n\
7264 scaled if its name matches a regular expression in the list.");
7265 #if defined (WINDOWSNT) || defined (macintosh)
7266 /* Windows uses mainly truetype fonts, so disallowing scalable fonts
7267 by default limits the fonts available severely. */
7268 Vscalable_fonts_allowed = Qt;
7269 #else
7270 Vscalable_fonts_allowed = Qnil;
7271 #endif
7273 DEFVAR_LISP ("face-ignored-fonts", &Vface_ignored_fonts,
7274 "List of ignored fonts.\n\
7275 Each element is a regular expression that matches names of fonts to ignore.");
7276 Vface_ignored_fonts = Qnil;
7278 #ifdef HAVE_WINDOW_SYSTEM
7279 defsubr (&Sbitmap_spec_p);
7280 defsubr (&Sx_list_fonts);
7281 defsubr (&Sinternal_face_x_get_resource);
7282 defsubr (&Sx_family_fonts);
7283 defsubr (&Sx_font_family_list);
7284 #endif /* HAVE_WINDOW_SYSTEM */