1 /* xfaces.c -- "Face" primitives.
2 Copyright (C) 1993, 1994, 1998, 1999 Free Software Foundation.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 /* New face implementation by Gerd Moellmann <gerd@gnu.org>. */
25 When using Emacs with X, the display style of characters can be
26 changed by defining `faces'. Each face can specify the following
31 2. Relative proportionate width, aka character set width or set
32 width (swidth), e.g. `semi-compressed'.
34 3. Font height in 1/10pt.
36 4. Font weight, e.g. `bold'.
38 5. Font slant, e.g. `italic'.
44 8. Whether or not characters should be underlined, and in what color.
46 9. Whether or not characters should be displayed in inverse video.
48 10. A background stipple, a bitmap.
50 11. Whether or not characters should be overlined, and in what color.
52 12. Whether or not characters should be strike-through, and in what
55 13. Whether or not a box should be drawn around characters, the box
56 type, and, for simple boxes, in what color.
58 14. Font or fontset pattern, or nil. This is a special attribute.
59 When this attribyte is specified, the face uses a font opened by
60 that pattern as is. In addition, all the other font-related
61 attributes (1st thru 5th) are generated from the opened font name.
62 On the other hand, if one of the other font-related attributes are
63 specified, this attribute is set to nil. In that case, the face
64 doesn't inherit this attribute from the `default' face, and uses a
65 font determined by the other attributes (those may be inherited
66 from the `default' face).
68 Faces are frame-local by nature because Emacs allows to define the
69 same named face (face names are symbols) differently for different
70 frames. Each frame has an alist of face definitions for all named
71 faces. The value of a named face in such an alist is a Lisp vector
72 with the symbol `face' in slot 0, and a slot for each of the face
73 attributes mentioned above.
75 There is also a global face alist `Vface_new_frame_defaults'. Face
76 definitions from this list are used to initialize faces of newly
79 A face doesn't have to specify all attributes. Those not specified
80 have a value of `unspecified'. Faces specifying all attributes but
81 the 14th are called `fully-specified'.
86 The display style of a given character in the text is determined by
87 combining several faces. This process is called `face merging'.
88 Any aspect of the display style that isn't specified by overlays or
89 text properties is taken from the `default' face. Since it is made
90 sure that the default face is always fully-specified, face merging
91 always results in a fully-specified face.
96 After all face attributes for a character have been determined by
97 merging faces of that character, that face is `realized'. The
98 realization process maps face attributes to what is physically
99 available on the system where Emacs runs. The result is a
100 `realized face' in form of a struct face which is stored in the
101 face cache of the frame on which it was realized.
103 Face realization is done in the context of the character to display
104 because different fonts may be used for different characters. In
105 other words, for characters that have different font
106 specifications, different realized faces are needed to display
109 Font specification is done by fontsets. See the comment in
110 fontset.c for the details. In the current implementation, all ASCII
111 characters share the same font in a fontset.
113 Faces are at first realized for ASCII characters, and, at that
114 time, assigned a specific realized fontset. Hereafter, we call
115 such a face as `ASCII face'. When a face for a multibyte character
116 is realized, it inherits (thus shares) a fontset of an ASCII face
117 that has the same attributes other than font-related ones.
119 Thus, all realzied face have a realized fontset.
124 Unibyte text (i.e. raw 8-bit characters) is displayed with the same
125 font as ASCII characters. That is because it is expected that
126 unibyte text users specify a font that is suitable both for ASCII
127 and raw 8-bit characters.
132 Font selection tries to find the best available matching font for a
133 given (character, face) combination.
135 If the face specifies a fontset name, that fontset determines a
136 pattern for fonts of the given character. If the face specifies a
137 font name or the other font-related attributes, a fontset is
138 realized from the default fontset. In that case, that
139 specification determines a pattern for ASCII characters and the
140 default fontset determines a pattern for multibyte characters.
142 Available fonts on the system on which Emacs runs are then matched
143 against the font pattern. The result of font selection is the best
144 match for the given face attributes in this font list.
146 Font selection can be influenced by the user.
148 1. The user can specify the relative importance he gives the face
149 attributes width, height, weight, and slant by setting
150 face-font-selection-order (faces.el) to a list of face attribute
151 names. The default is '(:width :height :weight :slant), and means
152 that font selection first tries to find a good match for the font
153 width specified by a face, then---within fonts with that
154 width---tries to find a best match for the specified font height,
157 2. Setting face-alternative-font-family-alist allows the user to
158 specify alternative font families to try if a family specified by a
162 Character compositition.
164 Usually, the realization process is already finished when Emacs
165 actually reflects the desired glyph matrix on the screen. However,
166 on displaying a composition (sequence of characters to be composed
167 on the screen), a suitable font for the components of the
168 composition is selected and realized while drawing them on the
169 screen, i.e. the realization process is delayed but in principle
173 Initialization of basic faces.
175 The faces `default', `modeline' are considered `basic faces'.
176 When redisplay happens the first time for a newly created frame,
177 basic faces are realized for CHARSET_ASCII. Frame parameters are
178 used to fill in unspecified attributes of the default face. */
180 /* Define SCALABLE_FONTS to a non-zero value to enable scalable
181 font use. Define it to zero to disable scalable font use.
183 Use of too many or too large scalable fonts can crash XFree86
184 servers. That's why I've put the code dealing with scalable fonts
187 #define SCALABLE_FONTS 1
190 #include <sys/types.h>
191 #include <sys/stat.h>
196 #ifdef HAVE_X_WINDOWS
201 #include <Xm/XmStrDefs.h>
202 #endif /* USE_MOTIF */
212 /* Redefine X specifics to W32 equivalents to avoid cluttering the
213 code with #ifdef blocks. */
214 #define FRAME_X_DISPLAY_INFO FRAME_W32_DISPLAY_INFO
215 #define x_display_info w32_display_info
216 #define FRAME_X_FONT_TABLE FRAME_W32_FONT_TABLE
217 #define check_x check_w32
218 #define x_list_fonts w32_list_fonts
219 #define GCGraphicsExposures 0
220 /* For historic reasons, FONT_WIDTH refers to average width on W32,
221 not maximum as on X. Redefine here. */
222 #define FONT_WIDTH FONT_MAX_WIDTH
226 #include "dispextern.h"
227 #include "blockinput.h"
229 #include "intervals.h"
231 #ifdef HAVE_X_WINDOWS
233 /* Compensate for a bug in Xos.h on some systems, on which it requires
234 time.h. On some such systems, Xos.h tries to redefine struct
235 timeval and struct timezone if USG is #defined while it is
238 #ifdef XOS_NEEDS_TIME_H
244 #else /* not XOS_NEEDS_TIME_H */
246 #endif /* not XOS_NEEDS_TIME_H */
248 #endif /* HAVE_X_WINDOWS */
252 #include "keyboard.h"
255 #define max(A, B) ((A) > (B) ? (A) : (B))
256 #define min(A, B) ((A) < (B) ? (A) : (B))
257 #define abs(X) ((X) < 0 ? -(X) : (X))
260 /* Non-zero if face attribute ATTR is unspecified. */
262 #define UNSPECIFIEDP(ATTR) EQ ((ATTR), Qunspecified)
264 /* Value is the number of elements of VECTOR. */
266 #define DIM(VECTOR) (sizeof (VECTOR) / sizeof *(VECTOR))
268 /* Make a copy of string S on the stack using alloca. Value is a pointer
271 #define STRDUPA(S) strcpy ((char *) alloca (strlen ((S)) + 1), (S))
273 /* Make a copy of the contents of Lisp string S on the stack using
274 alloca. Value is a pointer to the copy. */
276 #define LSTRDUPA(S) STRDUPA (XSTRING ((S))->data)
278 /* Size of hash table of realized faces in face caches (should be a
281 #define FACE_CACHE_BUCKETS_SIZE 1001
283 /* A definition of XColor for non-X frames. */
284 #ifndef HAVE_X_WINDOWS
287 unsigned short red
, green
, blue
;
293 /* Keyword symbols used for face attribute names. */
295 Lisp_Object QCfamily
, QCheight
, QCweight
, QCslant
, QCunderline
;
296 Lisp_Object QCinverse_video
, QCforeground
, QCbackground
, QCstipple
;
297 Lisp_Object QCwidth
, QCfont
, QCbold
, QCitalic
;
298 Lisp_Object QCreverse_video
;
299 Lisp_Object QCoverline
, QCstrike_through
, QCbox
;
301 /* Symbols used for attribute values. */
303 Lisp_Object Qnormal
, Qbold
, Qultra_light
, Qextra_light
, Qlight
;
304 Lisp_Object Qsemi_light
, Qsemi_bold
, Qextra_bold
, Qultra_bold
;
305 Lisp_Object Qoblique
, Qitalic
, Qreverse_oblique
, Qreverse_italic
;
306 Lisp_Object Qultra_condensed
, Qextra_condensed
, Qcondensed
;
307 Lisp_Object Qsemi_condensed
, Qsemi_expanded
, Qexpanded
, Qextra_expanded
;
308 Lisp_Object Qultra_expanded
;
309 Lisp_Object Qreleased_button
, Qpressed_button
;
310 Lisp_Object QCstyle
, QCcolor
, QCline_width
;
311 Lisp_Object Qunspecified
;
313 char unspecified_fg
[] = "unspecified-fg", unspecified_bg
[] = "unspecified-bg";
315 /* The name of the function to call when the background of the frame
316 has changed, frame_update_face_colors. */
318 Lisp_Object Qframe_update_face_colors
;
320 /* Names of basic faces. */
322 Lisp_Object Qdefault
, Qtool_bar
, Qregion
, Qfringe
;
323 Lisp_Object Qheader_line
, Qscroll_bar
, Qcursor
, Qborder
, Qmouse
, Qmenu
;
324 extern Lisp_Object Qmode_line
;
326 /* The symbol `face-alias'. A symbols having that property is an
327 alias for another face. Value of the property is the name of
330 Lisp_Object Qface_alias
;
332 /* Names of frame parameters related to faces. */
334 extern Lisp_Object Qscroll_bar_foreground
, Qscroll_bar_background
;
335 extern Lisp_Object Qborder_color
, Qcursor_color
, Qmouse_color
;
337 /* Default stipple pattern used on monochrome displays. This stipple
338 pattern is used on monochrome displays instead of shades of gray
339 for a face background color. See `set-face-stipple' for possible
340 values for this variable. */
342 Lisp_Object Vface_default_stipple
;
344 /* Alist of alternative font families. Each element is of the form
345 (FAMILY FAMILY1 FAMILY2 ...). If fonts of FAMILY can't be loaded,
346 try FAMILY1, then FAMILY2, ... */
348 Lisp_Object Vface_alternative_font_family_alist
;
350 /* Allowed scalable fonts. A value of nil means don't allow any
351 scalable fonts. A value of t means allow the use of any scalable
352 font. Otherwise, value must be a list of regular expressions. A
353 font may be scaled if its name matches a regular expression in the
357 Lisp_Object Vscalable_fonts_allowed
;
360 /* Maximum number of fonts to consider in font_list. If not an
361 integer > 0, DEFAULT_FONT_LIST_LIMIT is used instead. */
363 Lisp_Object Vfont_list_limit
;
364 #define DEFAULT_FONT_LIST_LIMIT 100
366 /* The symbols `foreground-color' and `background-color' which can be
367 used as part of a `face' property. This is for compatibility with
370 Lisp_Object Qforeground_color
, Qbackground_color
;
372 /* The symbols `face' and `mouse-face' used as text properties. */
375 extern Lisp_Object Qmouse_face
;
377 /* Error symbol for wrong_type_argument in load_pixmap. */
379 Lisp_Object Qbitmap_spec_p
;
381 /* Alist of global face definitions. Each element is of the form
382 (FACE . LFACE) where FACE is a symbol naming a face and LFACE
383 is a Lisp vector of face attributes. These faces are used
384 to initialize faces for new frames. */
386 Lisp_Object Vface_new_frame_defaults
;
388 /* The next ID to assign to Lisp faces. */
390 static int next_lface_id
;
392 /* A vector mapping Lisp face Id's to face names. */
394 static Lisp_Object
*lface_id_to_name
;
395 static int lface_id_to_name_size
;
397 /* tty color-related functions (defined on lisp/term/tty-colors.el). */
398 Lisp_Object Qtty_color_desc
, Qtty_color_by_index
;
400 /* Counter for calls to clear_face_cache. If this counter reaches
401 CLEAR_FONT_TABLE_COUNT, and a frame has more than
402 CLEAR_FONT_TABLE_NFONTS load, unused fonts are freed. */
404 static int clear_font_table_count
;
405 #define CLEAR_FONT_TABLE_COUNT 100
406 #define CLEAR_FONT_TABLE_NFONTS 10
408 /* Non-zero means face attributes have been changed since the last
409 redisplay. Used in redisplay_internal. */
411 int face_change_count
;
413 /* Non-zero means don't display bold text if a face's foreground
414 and background colors are the inverse of the default colors of the
415 display. This is a kluge to suppress `bold black' foreground text
416 which is hard to read on an LCD monitor. */
418 int tty_suppress_bold_inverse_default_colors_p
;
420 /* The total number of colors currently allocated. */
423 static int ncolors_allocated
;
424 static int npixmaps_allocated
;
430 /* Function prototypes. */
435 static Lisp_Object resolve_face_name
P_ ((Lisp_Object
));
436 static int may_use_scalable_font_p
P_ ((struct font_name
*, char *));
437 static void set_font_frame_param
P_ ((Lisp_Object
, Lisp_Object
));
438 static int better_font_p
P_ ((int *, struct font_name
*, struct font_name
*,
440 static int first_font_matching
P_ ((struct frame
*f
, char *,
441 struct font_name
*));
442 static int x_face_list_fonts
P_ ((struct frame
*, char *,
443 struct font_name
*, int, int, int));
444 static int font_scalable_p
P_ ((struct font_name
*));
445 static int get_lface_attributes
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
*, int));
446 static int load_pixmap
P_ ((struct frame
*, Lisp_Object
, unsigned *, unsigned *));
447 static unsigned char *xstrlwr
P_ ((unsigned char *));
448 static void signal_error
P_ ((char *, Lisp_Object
));
449 static struct frame
*frame_or_selected_frame
P_ ((Lisp_Object
, int));
450 static void load_face_font
P_ ((struct frame
*, struct face
*, int));
451 static void load_face_colors
P_ ((struct frame
*, struct face
*, Lisp_Object
*));
452 static void free_face_colors
P_ ((struct frame
*, struct face
*));
453 static int face_color_gray_p
P_ ((struct frame
*, char *));
454 static char *build_font_name
P_ ((struct font_name
*));
455 static void free_font_names
P_ ((struct font_name
*, int));
456 static int sorted_font_list
P_ ((struct frame
*, char *,
457 int (*cmpfn
) P_ ((const void *, const void *)),
458 struct font_name
**));
459 static int font_list
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
,
460 Lisp_Object
, struct font_name
**));
461 static int try_font_list
P_ ((struct frame
*, Lisp_Object
*, Lisp_Object
,
462 Lisp_Object
, Lisp_Object
, struct font_name
**));
463 static int cmp_font_names
P_ ((const void *, const void *));
464 static struct face
*realize_face
P_ ((struct face_cache
*, Lisp_Object
*, int,
465 struct face
*, int));
466 static struct face
*realize_x_face
P_ ((struct face_cache
*,
467 Lisp_Object
*, int, struct face
*));
468 static struct face
*realize_tty_face
P_ ((struct face_cache
*,
469 Lisp_Object
*, int));
470 static int realize_basic_faces
P_ ((struct frame
*));
471 static int realize_default_face
P_ ((struct frame
*));
472 static void realize_named_face
P_ ((struct frame
*, Lisp_Object
, int));
473 static int lface_fully_specified_p
P_ ((Lisp_Object
*));
474 static int lface_equal_p
P_ ((Lisp_Object
*, Lisp_Object
*));
475 static unsigned hash_string_case_insensitive
P_ ((Lisp_Object
));
476 static unsigned lface_hash
P_ ((Lisp_Object
*));
477 static int lface_same_font_attributes_p
P_ ((Lisp_Object
*, Lisp_Object
*));
478 static struct face_cache
*make_face_cache
P_ ((struct frame
*));
479 static void free_realized_face
P_ ((struct frame
*, struct face
*));
480 static void clear_face_gcs
P_ ((struct face_cache
*));
481 static void free_face_cache
P_ ((struct face_cache
*));
482 static int face_numeric_weight
P_ ((Lisp_Object
));
483 static int face_numeric_slant
P_ ((Lisp_Object
));
484 static int face_numeric_swidth
P_ ((Lisp_Object
));
485 static int face_fontset
P_ ((Lisp_Object
*));
486 static char *choose_face_font
P_ ((struct frame
*, Lisp_Object
*, int, int));
487 static void merge_face_vectors
P_ ((Lisp_Object
*from
, Lisp_Object
*));
488 static void merge_face_vector_with_property
P_ ((struct frame
*, Lisp_Object
*,
490 static int set_lface_from_font_name
P_ ((struct frame
*, Lisp_Object
,
491 Lisp_Object
, int, int));
492 static Lisp_Object lface_from_face_name
P_ ((struct frame
*, Lisp_Object
, int));
493 static struct face
*make_realized_face
P_ ((Lisp_Object
*));
494 static void free_realized_faces
P_ ((struct face_cache
*));
495 static char *best_matching_font
P_ ((struct frame
*, Lisp_Object
*,
496 struct font_name
*, int));
497 static void cache_face
P_ ((struct face_cache
*, struct face
*, unsigned));
498 static void uncache_face
P_ ((struct face_cache
*, struct face
*));
499 static int xlfd_numeric_slant
P_ ((struct font_name
*));
500 static int xlfd_numeric_weight
P_ ((struct font_name
*));
501 static int xlfd_numeric_swidth
P_ ((struct font_name
*));
502 static Lisp_Object xlfd_symbolic_slant
P_ ((struct font_name
*));
503 static Lisp_Object xlfd_symbolic_weight
P_ ((struct font_name
*));
504 static Lisp_Object xlfd_symbolic_swidth
P_ ((struct font_name
*));
505 static int xlfd_fixed_p
P_ ((struct font_name
*));
506 static int xlfd_numeric_value
P_ ((struct table_entry
*, int, struct font_name
*,
508 static Lisp_Object xlfd_symbolic_value
P_ ((struct table_entry
*, int,
509 struct font_name
*, int,
511 static struct table_entry
*xlfd_lookup_field_contents
P_ ((struct table_entry
*, int,
512 struct font_name
*, int));
514 #ifdef HAVE_WINDOW_SYSTEM
516 static int split_font_name
P_ ((struct frame
*, struct font_name
*, int));
517 static int xlfd_point_size
P_ ((struct frame
*, struct font_name
*));
518 static void sort_fonts
P_ ((struct frame
*, struct font_name
*, int,
519 int (*cmpfn
) P_ ((const void *, const void *))));
520 static GC x_create_gc
P_ ((struct frame
*, unsigned long, XGCValues
*));
521 static void x_free_gc
P_ ((struct frame
*, GC
));
522 static void clear_font_table
P_ ((struct frame
*));
525 extern Lisp_Object w32_list_fonts
P_ ((struct frame
*, Lisp_Object
, int, int));
526 #endif /* WINDOWSNT */
528 #endif /* HAVE_WINDOW_SYSTEM */
531 /***********************************************************************
533 ***********************************************************************/
535 #ifdef HAVE_X_WINDOWS
537 #ifdef DEBUG_X_COLORS
539 /* The following is a poor mans infrastructure for debugging X color
540 allocation problems on displays with PseudoColor-8. Some X servers
541 like 3.3.5 XF86_SVGA with Matrox cards apparently don't implement
542 color reference counts completely so that they don't signal an
543 error when a color is freed whose reference count is already 0.
544 Other X servers do. To help me debug this, the following code
545 implements a simple reference counting schema of its own, for a
546 single display/screen. --gerd. */
548 /* Reference counts for pixel colors. */
550 int color_count
[256];
552 /* Register color PIXEL as allocated. */
555 register_color (pixel
)
558 xassert (pixel
< 256);
559 ++color_count
[pixel
];
563 /* Register color PIXEL as deallocated. */
566 unregister_color (pixel
)
569 xassert (pixel
< 256);
570 if (color_count
[pixel
] > 0)
571 --color_count
[pixel
];
577 /* Register N colors from PIXELS as deallocated. */
580 unregister_colors (pixels
, n
)
581 unsigned long *pixels
;
585 for (i
= 0; i
< n
; ++i
)
586 unregister_color (pixels
[i
]);
590 DEFUN ("dump-colors", Fdump_colors
, Sdump_colors
, 0, 0, 0,
591 "Dump currently allocated colors and their reference counts to stderr.")
596 fputc ('\n', stderr
);
598 for (i
= n
= 0; i
< sizeof color_count
/ sizeof color_count
[0]; ++i
)
601 fprintf (stderr
, "%3d: %5d", i
, color_count
[i
]);
604 fputc ('\n', stderr
);
606 fputc ('\t', stderr
);
610 fputc ('\n', stderr
);
615 #endif /* DEBUG_X_COLORS */
617 /* Free colors used on frame F. PIXELS is an array of NPIXELS pixel
618 color values. Interrupt input must be blocked when this function
622 x_free_colors (f
, pixels
, npixels
)
624 unsigned long *pixels
;
627 int class = FRAME_X_DISPLAY_INFO (f
)->visual
->class;
629 /* If display has an immutable color map, freeing colors is not
630 necessary and some servers don't allow it. So don't do it. */
631 if (class != StaticColor
&& class != StaticGray
&& class != TrueColor
)
633 XFreeColors (FRAME_X_DISPLAY (f
), FRAME_X_COLORMAP (f
),
635 #ifdef DEBUG_X_COLORS
636 unregister_colors (pixels
, npixels
);
642 /* Free colors used on frame F. PIXELS is an array of NPIXELS pixel
643 color values. Interrupt input must be blocked when this function
647 x_free_dpy_colors (dpy
, screen
, cmap
, pixels
, npixels
)
651 unsigned long *pixels
;
654 struct x_display_info
*dpyinfo
= x_display_info_for_display (dpy
);
655 int class = dpyinfo
->visual
->class;
657 /* If display has an immutable color map, freeing colors is not
658 necessary and some servers don't allow it. So don't do it. */
659 if (class != StaticColor
&& class != StaticGray
&& class != TrueColor
)
661 XFreeColors (dpy
, cmap
, pixels
, npixels
, 0);
662 #ifdef DEBUG_X_COLORS
663 unregister_colors (pixels
, npixels
);
669 /* Create and return a GC for use on frame F. GC values and mask
670 are given by XGCV and MASK. */
673 x_create_gc (f
, mask
, xgcv
)
680 gc
= XCreateGC (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), mask
, xgcv
);
687 /* Free GC which was used on frame F. */
695 xassert (--ngcs
>= 0);
696 XFreeGC (FRAME_X_DISPLAY (f
), gc
);
700 #endif /* HAVE_X_WINDOWS */
703 /* W32 emulation of GCs */
706 x_create_gc (f
, mask
, xgcv
)
713 gc
= XCreateGC (NULL
, FRAME_W32_WINDOW (f
), mask
, xgcv
);
720 /* Free GC which was used on frame F. */
728 xassert (--ngcs
>= 0);
733 #endif /* WINDOWSNT */
735 /* Like stricmp. Used to compare parts of font names which are in
740 unsigned char *s1
, *s2
;
744 unsigned char c1
= tolower (*s1
);
745 unsigned char c2
= tolower (*s2
);
747 return c1
< c2
? -1 : 1;
752 return *s2
== 0 ? 0 : -1;
757 /* Like strlwr, which might not always be available. */
759 static unsigned char *
763 unsigned char *p
= s
;
772 /* Signal `error' with message S, and additional argument ARG. */
775 signal_error (s
, arg
)
779 Fsignal (Qerror
, Fcons (build_string (s
), Fcons (arg
, Qnil
)));
783 /* If FRAME is nil, return a pointer to the selected frame.
784 Otherwise, check that FRAME is a live frame, and return a pointer
785 to it. NPARAM is the parameter number of FRAME, for
786 CHECK_LIVE_FRAME. This is here because it's a frequent pattern in
787 Lisp function definitions. */
789 static INLINE
struct frame
*
790 frame_or_selected_frame (frame
, nparam
)
795 frame
= selected_frame
;
797 CHECK_LIVE_FRAME (frame
, nparam
);
798 return XFRAME (frame
);
802 /***********************************************************************
804 ***********************************************************************/
806 /* Initialize face cache and basic faces for frame F. */
812 /* Make a face cache, if F doesn't have one. */
813 if (FRAME_FACE_CACHE (f
) == NULL
)
814 FRAME_FACE_CACHE (f
) = make_face_cache (f
);
816 #ifdef HAVE_WINDOW_SYSTEM
817 /* Make the image cache. */
818 if (FRAME_WINDOW_P (f
))
820 if (FRAME_X_IMAGE_CACHE (f
) == NULL
)
821 FRAME_X_IMAGE_CACHE (f
) = make_image_cache ();
822 ++FRAME_X_IMAGE_CACHE (f
)->refcount
;
824 #endif /* HAVE_WINDOW_SYSTEM */
826 /* Realize basic faces. Must have enough information in frame
827 parameters to realize basic faces at this point. */
828 #ifdef HAVE_X_WINDOWS
829 if (!FRAME_X_P (f
) || FRAME_X_WINDOW (f
))
832 if (!FRAME_WINDOW_P (f
) || FRAME_W32_WINDOW (f
))
834 if (!realize_basic_faces (f
))
839 /* Free face cache of frame F. Called from Fdelete_frame. */
845 struct face_cache
*face_cache
= FRAME_FACE_CACHE (f
);
849 free_face_cache (face_cache
);
850 FRAME_FACE_CACHE (f
) = NULL
;
853 #ifdef HAVE_WINDOW_SYSTEM
854 if (FRAME_WINDOW_P (f
))
856 struct image_cache
*image_cache
= FRAME_X_IMAGE_CACHE (f
);
859 --image_cache
->refcount
;
860 if (image_cache
->refcount
== 0)
861 free_image_cache (f
);
864 #endif /* HAVE_WINDOW_SYSTEM */
868 /* Clear face caches, and recompute basic faces for frame F. Call
869 this after changing frame parameters on which those faces depend,
870 or when realized faces have been freed due to changing attributes
874 recompute_basic_faces (f
)
877 if (FRAME_FACE_CACHE (f
))
879 clear_face_cache (0);
880 if (!realize_basic_faces (f
))
886 /* Clear the face caches of all frames. CLEAR_FONTS_P non-zero means
887 try to free unused fonts, too. */
890 clear_face_cache (clear_fonts_p
)
893 #ifdef HAVE_WINDOW_SYSTEM
894 Lisp_Object tail
, frame
;
898 || ++clear_font_table_count
== CLEAR_FONT_TABLE_COUNT
)
900 /* From time to time see if we can unload some fonts. This also
901 frees all realized faces on all frames. Fonts needed by
902 faces will be loaded again when faces are realized again. */
903 clear_font_table_count
= 0;
905 FOR_EACH_FRAME (tail
, frame
)
908 if (FRAME_WINDOW_P (f
)
909 && FRAME_X_DISPLAY_INFO (f
)->n_fonts
> CLEAR_FONT_TABLE_NFONTS
)
911 free_all_realized_faces (frame
);
912 clear_font_table (f
);
918 /* Clear GCs of realized faces. */
919 FOR_EACH_FRAME (tail
, frame
)
922 if (FRAME_WINDOW_P (f
))
924 clear_face_gcs (FRAME_FACE_CACHE (f
));
925 clear_image_cache (f
, 0);
929 #endif /* HAVE_WINDOW_SYSTEM */
933 DEFUN ("clear-face-cache", Fclear_face_cache
, Sclear_face_cache
, 0, 1, 0,
934 "Clear face caches on all frames.\n\
935 Optional THOROUGHLY non-nil means try to free unused fonts, too.")
937 Lisp_Object thorougly
;
939 clear_face_cache (!NILP (thorougly
));
945 #ifdef HAVE_WINDOW_SYSTEM
948 /* Remove those fonts from the font table of frame F exept for the
949 default ASCII font for the frame. Called from clear_face_cache
950 from time to time. */
956 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
959 xassert (FRAME_WINDOW_P (f
));
961 /* Free those fonts that are not used by the frame F as the default. */
962 for (i
= 0; i
< dpyinfo
->n_fonts
; ++i
)
964 struct font_info
*font_info
= dpyinfo
->font_table
+ i
;
967 || font_info
->font
== FRAME_FONT (f
))
971 if (font_info
->full_name
!= font_info
->name
)
972 xfree (font_info
->full_name
);
973 xfree (font_info
->name
);
977 #ifdef HAVE_X_WINDOWS
978 XFreeFont (dpyinfo
->display
, font_info
->font
);
981 w32_unload_font (dpyinfo
, font_info
->font
);
985 /* Mark font table slot free. */
986 font_info
->font
= NULL
;
987 font_info
->name
= font_info
->full_name
= NULL
;
991 #endif /* HAVE_WINDOW_SYSTEM */
995 /***********************************************************************
997 ***********************************************************************/
999 #ifdef HAVE_WINDOW_SYSTEM
1001 DEFUN ("bitmap-spec-p", Fbitmap_spec_p
, Sbitmap_spec_p
, 1, 1, 0,
1002 "Value is non-nil if OBJECT is a valid bitmap specification.\n\
1003 A bitmap specification is either a string, a file name, or a list\n\
1004 (WIDTH HEIGHT DATA) where WIDTH is the pixel width of the bitmap,\n\
1005 HEIGHT is its height, and DATA is a string containing the bits of\n\
1006 the pixmap. Bits are stored row by row, each row occupies\n\
1007 (WIDTH + 7)/8 bytes.")
1013 if (STRINGP (object
))
1014 /* If OBJECT is a string, it's a file name. */
1016 else if (CONSP (object
))
1018 /* Otherwise OBJECT must be (WIDTH HEIGHT DATA), WIDTH and
1019 HEIGHT must be integers > 0, and DATA must be string large
1020 enough to hold a bitmap of the specified size. */
1021 Lisp_Object width
, height
, data
;
1023 height
= width
= data
= Qnil
;
1027 width
= XCAR (object
);
1028 object
= XCDR (object
);
1031 height
= XCAR (object
);
1032 object
= XCDR (object
);
1034 data
= XCAR (object
);
1038 if (NATNUMP (width
) && NATNUMP (height
) && STRINGP (data
))
1040 int bytes_per_row
= ((XFASTINT (width
) + BITS_PER_CHAR
- 1)
1042 if (STRING_BYTES (XSTRING (data
)) >= bytes_per_row
* XINT (height
))
1047 return pixmap_p
? Qt
: Qnil
;
1051 /* Load a bitmap according to NAME (which is either a file name or a
1052 pixmap spec) for use on frame F. Value is the bitmap_id (see
1053 xfns.c). If NAME is nil, return with a bitmap id of zero. If
1054 bitmap cannot be loaded, display a message saying so, and return
1055 zero. Store the bitmap width in *W_PTR and its height in *H_PTR,
1056 if these pointers are not null. */
1059 load_pixmap (f
, name
, w_ptr
, h_ptr
)
1062 unsigned int *w_ptr
, *h_ptr
;
1070 tem
= Fbitmap_spec_p (name
);
1072 wrong_type_argument (Qbitmap_spec_p
, name
);
1077 /* Decode a bitmap spec into a bitmap. */
1082 w
= XINT (Fcar (name
));
1083 h
= XINT (Fcar (Fcdr (name
)));
1084 bits
= Fcar (Fcdr (Fcdr (name
)));
1086 bitmap_id
= x_create_bitmap_from_data (f
, XSTRING (bits
)->data
,
1091 /* It must be a string -- a file name. */
1092 bitmap_id
= x_create_bitmap_from_file (f
, name
);
1098 add_to_log ("Invalid or undefined bitmap %s", name
, Qnil
);
1109 ++npixmaps_allocated
;
1112 *w_ptr
= x_bitmap_width (f
, bitmap_id
);
1115 *h_ptr
= x_bitmap_height (f
, bitmap_id
);
1121 #endif /* HAVE_WINDOW_SYSTEM */
1125 /***********************************************************************
1127 ***********************************************************************/
1129 #ifdef HAVE_WINDOW_SYSTEM
1131 /* Update the line_height of frame F. Return non-zero if line height
1135 frame_update_line_height (f
)
1138 int line_height
, changed_p
;
1140 line_height
= FONT_HEIGHT (FRAME_FONT (f
));
1141 changed_p
= line_height
!= FRAME_LINE_HEIGHT (f
);
1142 FRAME_LINE_HEIGHT (f
) = line_height
;
1146 #endif /* HAVE_WINDOW_SYSTEM */
1149 /***********************************************************************
1151 ***********************************************************************/
1153 #ifdef HAVE_WINDOW_SYSTEM
1155 /* Load font of face FACE which is used on frame F to display
1156 character C. The name of the font to load is determined by lface
1157 and fontset of FACE. */
1160 load_face_font (f
, face
, c
)
1165 struct font_info
*font_info
= NULL
;
1168 face
->font_info_id
= -1;
1171 font_name
= choose_face_font (f
, face
->lface
, face
->fontset
, c
);
1176 font_info
= FS_LOAD_FACE_FONT (f
, c
, font_name
, face
);
1181 face
->font_info_id
= font_info
->font_idx
;
1182 face
->font
= font_info
->font
;
1183 face
->font_name
= font_info
->full_name
;
1186 x_free_gc (f
, face
->gc
);
1191 add_to_log ("Unable to load font %s",
1192 build_string (font_name
), Qnil
);
1196 #endif /* HAVE_WINDOW_SYSTEM */
1200 /***********************************************************************
1202 ***********************************************************************/
1204 /* A version of defined_color for non-X frames. */
1207 tty_defined_color (f
, color_name
, color_def
, alloc
)
1213 Lisp_Object color_desc
;
1214 unsigned long color_idx
= FACE_TTY_DEFAULT_COLOR
,
1215 red
= 0, green
= 0, blue
= 0;
1218 if (*color_name
&& !NILP (Ffboundp (Qtty_color_desc
)))
1222 XSETFRAME (frame
, f
);
1224 color_desc
= call2 (Qtty_color_desc
, build_string (color_name
), frame
);
1225 if (CONSP (color_desc
) && CONSP (XCDR (color_desc
)))
1227 color_idx
= XINT (XCAR (XCDR (color_desc
)));
1228 if (CONSP (XCDR (XCDR (color_desc
))))
1230 red
= XINT (XCAR (XCDR (XCDR (color_desc
))));
1231 green
= XINT (XCAR (XCDR (XCDR (XCDR (color_desc
)))));
1232 blue
= XINT (XCAR (XCDR (XCDR (XCDR (XCDR (color_desc
))))));
1236 else if (NILP (Fsymbol_value (intern ("tty-defined-color-alist"))))
1237 /* We were called early during startup, and the colors are not
1238 yet set up in tty-defined-color-alist. Don't return a failure
1239 indication, since this produces the annoying "Unable to
1240 load color" messages in the *Messages* buffer. */
1243 if (color_idx
== FACE_TTY_DEFAULT_COLOR
&& *color_name
)
1245 if (strcmp (color_name
, "unspecified-fg") == 0)
1246 color_idx
= FACE_TTY_DEFAULT_FG_COLOR
;
1247 else if (strcmp (color_name
, "unspecified-bg") == 0)
1248 color_idx
= FACE_TTY_DEFAULT_BG_COLOR
;
1251 if (color_idx
!= FACE_TTY_DEFAULT_COLOR
)
1254 color_def
->pixel
= color_idx
;
1255 color_def
->red
= red
;
1256 color_def
->green
= green
;
1257 color_def
->blue
= blue
;
1263 /* Decide if color named COLOR_NAME is valid for the display
1264 associated with the frame F; if so, return the rgb values in
1265 COLOR_DEF. If ALLOC is nonzero, allocate a new colormap cell.
1267 This does the right thing for any type of frame. */
1270 defined_color (f
, color_name
, color_def
, alloc
)
1276 if (!FRAME_WINDOW_P (f
))
1277 return tty_defined_color (f
, color_name
, color_def
, alloc
);
1278 #ifdef HAVE_X_WINDOWS
1279 else if (FRAME_X_P (f
))
1280 return x_defined_color (f
, color_name
, color_def
, alloc
);
1283 else if (FRAME_W32_P (f
))
1284 return w32_defined_color (f
, color_name
, color_def
, alloc
);
1287 else if (FRAME_MAC_P (f
))
1288 /* FIXME: mac_defined_color doesn't exist! */
1289 return mac_defined_color (f
, color_name
, color_def
, alloc
);
1296 /* Given the index IDX of a tty color on frame F, return its name, a
1300 tty_color_name (f
, idx
)
1304 if (idx
>= 0 && !NILP (Ffboundp (Qtty_color_by_index
)))
1307 Lisp_Object coldesc
;
1309 XSETFRAME (frame
, f
);
1310 coldesc
= call2 (Qtty_color_by_index
, make_number (idx
), frame
);
1312 if (!NILP (coldesc
))
1313 return XCAR (coldesc
);
1316 /* We can have an MSDOG frame under -nw for a short window of
1317 opportunity before internal_terminal_init is called. DTRT. */
1318 if (FRAME_MSDOS_P (f
) && !inhibit_window_system
)
1319 return msdos_stdcolor_name (idx
);
1322 if (idx
== FACE_TTY_DEFAULT_FG_COLOR
)
1323 return build_string (unspecified_fg
);
1324 if (idx
== FACE_TTY_DEFAULT_BG_COLOR
)
1325 return build_string (unspecified_bg
);
1328 return vga_stdcolor_name (idx
);
1331 return Qunspecified
;
1335 /* Return non-zero if COLOR_NAME is a shade of gray (or white or
1336 black) on frame F. The algorithm is taken from 20.2 faces.el. */
1339 face_color_gray_p (f
, color_name
)
1346 if (defined_color (f
, color_name
, &color
, 0))
1347 gray_p
= ((abs (color
.red
- color
.green
)
1348 < max (color
.red
, color
.green
) / 20)
1349 && (abs (color
.green
- color
.blue
)
1350 < max (color
.green
, color
.blue
) / 20)
1351 && (abs (color
.blue
- color
.red
)
1352 < max (color
.blue
, color
.red
) / 20));
1360 /* Return non-zero if color COLOR_NAME can be displayed on frame F.
1361 BACKGROUND_P non-zero means the color will be used as background
1365 face_color_supported_p (f
, color_name
, background_p
)
1373 XSETFRAME (frame
, f
);
1374 return (FRAME_WINDOW_P (f
)
1375 ? (!NILP (Fxw_display_color_p (frame
))
1376 || xstricmp (color_name
, "black") == 0
1377 || xstricmp (color_name
, "white") == 0
1379 && face_color_gray_p (f
, color_name
))
1380 || (!NILP (Fx_display_grayscale_p (frame
))
1381 && face_color_gray_p (f
, color_name
)))
1382 : tty_defined_color (f
, color_name
, ¬_used
, 0));
1386 DEFUN ("color-gray-p", Fcolor_gray_p
, Scolor_gray_p
, 1, 2, 0,
1387 "Return non-nil if COLOR is a shade of gray (or white or black).\n\
1388 FRAME specifies the frame and thus the display for interpreting COLOR.\n\
1389 If FRAME is nil or omitted, use the selected frame.")
1391 Lisp_Object color
, frame
;
1395 CHECK_FRAME (frame
, 0);
1396 CHECK_STRING (color
, 0);
1398 return face_color_gray_p (f
, XSTRING (color
)->data
) ? Qt
: Qnil
;
1402 DEFUN ("color-supported-p", Fcolor_supported_p
,
1403 Scolor_supported_p
, 2, 3, 0,
1404 "Return non-nil if COLOR can be displayed on FRAME.\n\
1405 BACKGROUND-P non-nil means COLOR is used as a background.\n\
1406 If FRAME is nil or omitted, use the selected frame.\n\
1407 COLOR must be a valid color name.")
1408 (color
, frame
, background_p
)
1409 Lisp_Object frame
, color
, background_p
;
1413 CHECK_FRAME (frame
, 0);
1414 CHECK_STRING (color
, 0);
1416 if (face_color_supported_p (f
, XSTRING (color
)->data
, !NILP (background_p
)))
1422 /* Load color with name NAME for use by face FACE on frame F.
1423 TARGET_INDEX must be one of LFACE_FOREGROUND_INDEX,
1424 LFACE_BACKGROUND_INDEX, LFACE_UNDERLINE_INDEX, LFACE_OVERLINE_INDEX,
1425 LFACE_STRIKE_THROUGH_INDEX, or LFACE_BOX_INDEX. Value is the
1426 pixel color. If color cannot be loaded, display a message, and
1427 return the foreground, background or underline color of F, but
1428 record that fact in flags of the face so that we don't try to free
1432 load_color (f
, face
, name
, target_index
)
1436 enum lface_attribute_index target_index
;
1440 xassert (STRINGP (name
));
1441 xassert (target_index
== LFACE_FOREGROUND_INDEX
1442 || target_index
== LFACE_BACKGROUND_INDEX
1443 || target_index
== LFACE_UNDERLINE_INDEX
1444 || target_index
== LFACE_OVERLINE_INDEX
1445 || target_index
== LFACE_STRIKE_THROUGH_INDEX
1446 || target_index
== LFACE_BOX_INDEX
);
1448 /* if the color map is full, defined_color will return a best match
1449 to the values in an existing cell. */
1450 if (!defined_color (f
, XSTRING (name
)->data
, &color
, 1))
1452 add_to_log ("Unable to load color \"%s\"", name
, Qnil
);
1454 switch (target_index
)
1456 case LFACE_FOREGROUND_INDEX
:
1457 face
->foreground_defaulted_p
= 1;
1458 color
.pixel
= FRAME_FOREGROUND_PIXEL (f
);
1461 case LFACE_BACKGROUND_INDEX
:
1462 face
->background_defaulted_p
= 1;
1463 color
.pixel
= FRAME_BACKGROUND_PIXEL (f
);
1466 case LFACE_UNDERLINE_INDEX
:
1467 face
->underline_defaulted_p
= 1;
1468 color
.pixel
= FRAME_FOREGROUND_PIXEL (f
);
1471 case LFACE_OVERLINE_INDEX
:
1472 face
->overline_color_defaulted_p
= 1;
1473 color
.pixel
= FRAME_FOREGROUND_PIXEL (f
);
1476 case LFACE_STRIKE_THROUGH_INDEX
:
1477 face
->strike_through_color_defaulted_p
= 1;
1478 color
.pixel
= FRAME_FOREGROUND_PIXEL (f
);
1481 case LFACE_BOX_INDEX
:
1482 face
->box_color_defaulted_p
= 1;
1483 color
.pixel
= FRAME_FOREGROUND_PIXEL (f
);
1492 ++ncolors_allocated
;
1499 #ifdef HAVE_WINDOW_SYSTEM
1501 /* Load colors for face FACE which is used on frame F. Colors are
1502 specified by slots LFACE_BACKGROUND_INDEX and LFACE_FOREGROUND_INDEX
1503 of ATTRS. If the background color specified is not supported on F,
1504 try to emulate gray colors with a stipple from Vface_default_stipple. */
1507 load_face_colors (f
, face
, attrs
)
1514 bg
= attrs
[LFACE_BACKGROUND_INDEX
];
1515 fg
= attrs
[LFACE_FOREGROUND_INDEX
];
1517 /* Swap colors if face is inverse-video. */
1518 if (EQ (attrs
[LFACE_INVERSE_INDEX
], Qt
))
1526 /* Check for support for foreground, not for background because
1527 face_color_supported_p is smart enough to know that grays are
1528 "supported" as background because we are supposed to use stipple
1530 if (!face_color_supported_p (f
, XSTRING (bg
)->data
, 0)
1531 && !NILP (Fbitmap_spec_p (Vface_default_stipple
)))
1533 x_destroy_bitmap (f
, face
->stipple
);
1534 face
->stipple
= load_pixmap (f
, Vface_default_stipple
,
1535 &face
->pixmap_w
, &face
->pixmap_h
);
1538 face
->background
= load_color (f
, face
, bg
, LFACE_BACKGROUND_INDEX
);
1539 face
->foreground
= load_color (f
, face
, fg
, LFACE_FOREGROUND_INDEX
);
1543 /* Free color PIXEL on frame F. */
1546 unload_color (f
, pixel
)
1548 unsigned long pixel
;
1550 #ifdef HAVE_X_WINDOWS
1552 x_free_colors (f
, &pixel
, 1);
1558 /* Free colors allocated for FACE. */
1561 free_face_colors (f
, face
)
1565 #ifdef HAVE_X_WINDOWS
1568 if (!face
->foreground_defaulted_p
)
1570 x_free_colors (f
, &face
->foreground
, 1);
1571 IF_DEBUG (--ncolors_allocated
);
1574 if (!face
->background_defaulted_p
)
1576 x_free_colors (f
, &face
->background
, 1);
1577 IF_DEBUG (--ncolors_allocated
);
1580 if (face
->underline_p
1581 && !face
->underline_defaulted_p
)
1583 x_free_colors (f
, &face
->underline_color
, 1);
1584 IF_DEBUG (--ncolors_allocated
);
1587 if (face
->overline_p
1588 && !face
->overline_color_defaulted_p
)
1590 x_free_colors (f
, &face
->overline_color
, 1);
1591 IF_DEBUG (--ncolors_allocated
);
1594 if (face
->strike_through_p
1595 && !face
->strike_through_color_defaulted_p
)
1597 x_free_colors (f
, &face
->strike_through_color
, 1);
1598 IF_DEBUG (--ncolors_allocated
);
1601 if (face
->box
!= FACE_NO_BOX
1602 && !face
->box_color_defaulted_p
)
1604 x_free_colors (f
, &face
->box_color
, 1);
1605 IF_DEBUG (--ncolors_allocated
);
1609 #endif /* HAVE_X_WINDOWS */
1612 #endif /* HAVE_WINDOW_SYSTEM */
1616 /***********************************************************************
1618 ***********************************************************************/
1620 /* An enumerator for each field of an XLFD font name. */
1641 /* An enumerator for each possible slant value of a font. Taken from
1642 the XLFD specification. */
1650 XLFD_SLANT_REVERSE_ITALIC
,
1651 XLFD_SLANT_REVERSE_OBLIQUE
,
1655 /* Relative font weight according to XLFD documentation. */
1659 XLFD_WEIGHT_UNKNOWN
,
1660 XLFD_WEIGHT_ULTRA_LIGHT
, /* 10 */
1661 XLFD_WEIGHT_EXTRA_LIGHT
, /* 20 */
1662 XLFD_WEIGHT_LIGHT
, /* 30 */
1663 XLFD_WEIGHT_SEMI_LIGHT
, /* 40: SemiLight, Book, ... */
1664 XLFD_WEIGHT_MEDIUM
, /* 50: Medium, Normal, Regular, ... */
1665 XLFD_WEIGHT_SEMI_BOLD
, /* 60: SemiBold, DemiBold, ... */
1666 XLFD_WEIGHT_BOLD
, /* 70: Bold, ... */
1667 XLFD_WEIGHT_EXTRA_BOLD
, /* 80: ExtraBold, Heavy, ... */
1668 XLFD_WEIGHT_ULTRA_BOLD
/* 90: UltraBold, Black, ... */
1671 /* Relative proportionate width. */
1675 XLFD_SWIDTH_UNKNOWN
,
1676 XLFD_SWIDTH_ULTRA_CONDENSED
, /* 10 */
1677 XLFD_SWIDTH_EXTRA_CONDENSED
, /* 20 */
1678 XLFD_SWIDTH_CONDENSED
, /* 30: Condensed, Narrow, Compressed, ... */
1679 XLFD_SWIDTH_SEMI_CONDENSED
, /* 40: semicondensed */
1680 XLFD_SWIDTH_MEDIUM
, /* 50: Medium, Normal, Regular, ... */
1681 XLFD_SWIDTH_SEMI_EXPANDED
, /* 60: SemiExpanded, DemiExpanded, ... */
1682 XLFD_SWIDTH_EXPANDED
, /* 70: Expanded... */
1683 XLFD_SWIDTH_EXTRA_EXPANDED
, /* 80: ExtraExpanded, Wide... */
1684 XLFD_SWIDTH_ULTRA_EXPANDED
/* 90: UltraExpanded... */
1687 /* Structure used for tables mapping XLFD weight, slant, and width
1688 names to numeric and symbolic values. */
1694 Lisp_Object
*symbol
;
1697 /* Table of XLFD slant names and their numeric and symbolic
1698 representations. This table must be sorted by slant names in
1701 static struct table_entry slant_table
[] =
1703 {"i", XLFD_SLANT_ITALIC
, &Qitalic
},
1704 {"o", XLFD_SLANT_OBLIQUE
, &Qoblique
},
1705 {"ot", XLFD_SLANT_OTHER
, &Qitalic
},
1706 {"r", XLFD_SLANT_ROMAN
, &Qnormal
},
1707 {"ri", XLFD_SLANT_REVERSE_ITALIC
, &Qreverse_italic
},
1708 {"ro", XLFD_SLANT_REVERSE_OBLIQUE
, &Qreverse_oblique
}
1711 /* Table of XLFD weight names. This table must be sorted by weight
1712 names in ascending order. */
1714 static struct table_entry weight_table
[] =
1716 {"black", XLFD_WEIGHT_ULTRA_BOLD
, &Qultra_bold
},
1717 {"bold", XLFD_WEIGHT_BOLD
, &Qbold
},
1718 {"book", XLFD_WEIGHT_SEMI_LIGHT
, &Qsemi_light
},
1719 {"demibold", XLFD_WEIGHT_SEMI_BOLD
, &Qsemi_bold
},
1720 {"extralight", XLFD_WEIGHT_EXTRA_LIGHT
, &Qextra_light
},
1721 {"extrabold", XLFD_WEIGHT_EXTRA_BOLD
, &Qextra_bold
},
1722 {"heavy", XLFD_WEIGHT_EXTRA_BOLD
, &Qextra_bold
},
1723 {"light", XLFD_WEIGHT_LIGHT
, &Qlight
},
1724 {"medium", XLFD_WEIGHT_MEDIUM
, &Qnormal
},
1725 {"normal", XLFD_WEIGHT_MEDIUM
, &Qnormal
},
1726 {"regular", XLFD_WEIGHT_MEDIUM
, &Qnormal
},
1727 {"semibold", XLFD_WEIGHT_SEMI_BOLD
, &Qsemi_bold
},
1728 {"semilight", XLFD_WEIGHT_SEMI_LIGHT
, &Qsemi_light
},
1729 {"ultralight", XLFD_WEIGHT_ULTRA_LIGHT
, &Qultra_light
},
1730 {"ultrabold", XLFD_WEIGHT_ULTRA_BOLD
, &Qultra_bold
}
1733 /* Table of XLFD width names. This table must be sorted by width
1734 names in ascending order. */
1736 static struct table_entry swidth_table
[] =
1738 {"compressed", XLFD_SWIDTH_CONDENSED
, &Qcondensed
},
1739 {"condensed", XLFD_SWIDTH_CONDENSED
, &Qcondensed
},
1740 {"demiexpanded", XLFD_SWIDTH_SEMI_EXPANDED
, &Qsemi_expanded
},
1741 {"expanded", XLFD_SWIDTH_EXPANDED
, &Qexpanded
},
1742 {"extracondensed", XLFD_SWIDTH_EXTRA_CONDENSED
, &Qextra_condensed
},
1743 {"extraexpanded", XLFD_SWIDTH_EXTRA_EXPANDED
, &Qextra_expanded
},
1744 {"medium", XLFD_SWIDTH_MEDIUM
, &Qnormal
},
1745 {"narrow", XLFD_SWIDTH_CONDENSED
, &Qcondensed
},
1746 {"normal", XLFD_SWIDTH_MEDIUM
, &Qnormal
},
1747 {"regular", XLFD_SWIDTH_MEDIUM
, &Qnormal
},
1748 {"semicondensed", XLFD_SWIDTH_SEMI_CONDENSED
, &Qsemi_condensed
},
1749 {"semiexpanded", XLFD_SWIDTH_SEMI_EXPANDED
, &Qsemi_expanded
},
1750 {"ultracondensed", XLFD_SWIDTH_ULTRA_CONDENSED
, &Qultra_condensed
},
1751 {"ultraexpanded", XLFD_SWIDTH_ULTRA_EXPANDED
, &Qultra_expanded
},
1752 {"wide", XLFD_SWIDTH_EXTRA_EXPANDED
, &Qextra_expanded
}
1755 /* Structure used to hold the result of splitting font names in XLFD
1756 format into their fields. */
1760 /* The original name which is modified destructively by
1761 split_font_name. The pointer is kept here to be able to free it
1762 if it was allocated from the heap. */
1765 /* Font name fields. Each vector element points into `name' above.
1766 Fields are NUL-terminated. */
1767 char *fields
[XLFD_LAST
];
1769 /* Numeric values for those fields that interest us. See
1770 split_font_name for which these are. */
1771 int numeric
[XLFD_LAST
];
1774 /* The frame in effect when sorting font names. Set temporarily in
1775 sort_fonts so that it is available in font comparison functions. */
1777 static struct frame
*font_frame
;
1779 /* Order by which font selection chooses fonts. The default values
1780 mean `first, find a best match for the font width, then for the
1781 font height, then for weight, then for slant.' This variable can be
1782 set via set-face-font-sort-order. */
1784 static int font_sort_order
[4];
1787 /* Look up FONT.fields[FIELD_INDEX] in TABLE which has DIM entries.
1788 TABLE must be sorted by TABLE[i]->name in ascending order. Value
1789 is a pointer to the matching table entry or null if no table entry
1792 static struct table_entry
*
1793 xlfd_lookup_field_contents (table
, dim
, font
, field_index
)
1794 struct table_entry
*table
;
1796 struct font_name
*font
;
1799 /* Function split_font_name converts fields to lower-case, so there
1800 is no need to use xstrlwr or xstricmp here. */
1801 char *s
= font
->fields
[field_index
];
1802 int low
, mid
, high
, cmp
;
1809 mid
= (low
+ high
) / 2;
1810 cmp
= strcmp (table
[mid
].name
, s
);
1824 /* Return a numeric representation for font name field
1825 FONT.fields[FIELD_INDEX]. The field is looked up in TABLE which
1826 has DIM entries. Value is the numeric value found or DFLT if no
1827 table entry matches. This function is used to translate weight,
1828 slant, and swidth names of XLFD font names to numeric values. */
1831 xlfd_numeric_value (table
, dim
, font
, field_index
, dflt
)
1832 struct table_entry
*table
;
1834 struct font_name
*font
;
1838 struct table_entry
*p
;
1839 p
= xlfd_lookup_field_contents (table
, dim
, font
, field_index
);
1840 return p
? p
->numeric
: dflt
;
1844 /* Return a symbolic representation for font name field
1845 FONT.fields[FIELD_INDEX]. The field is looked up in TABLE which
1846 has DIM entries. Value is the symbolic value found or DFLT if no
1847 table entry matches. This function is used to translate weight,
1848 slant, and swidth names of XLFD font names to symbols. */
1850 static INLINE Lisp_Object
1851 xlfd_symbolic_value (table
, dim
, font
, field_index
, dflt
)
1852 struct table_entry
*table
;
1854 struct font_name
*font
;
1858 struct table_entry
*p
;
1859 p
= xlfd_lookup_field_contents (table
, dim
, font
, field_index
);
1860 return p
? *p
->symbol
: dflt
;
1864 /* Return a numeric value for the slant of the font given by FONT. */
1867 xlfd_numeric_slant (font
)
1868 struct font_name
*font
;
1870 return xlfd_numeric_value (slant_table
, DIM (slant_table
),
1871 font
, XLFD_SLANT
, XLFD_SLANT_ROMAN
);
1875 /* Return a symbol representing the weight of the font given by FONT. */
1877 static INLINE Lisp_Object
1878 xlfd_symbolic_slant (font
)
1879 struct font_name
*font
;
1881 return xlfd_symbolic_value (slant_table
, DIM (slant_table
),
1882 font
, XLFD_SLANT
, Qnormal
);
1886 /* Return a numeric value for the weight of the font given by FONT. */
1889 xlfd_numeric_weight (font
)
1890 struct font_name
*font
;
1892 return xlfd_numeric_value (weight_table
, DIM (weight_table
),
1893 font
, XLFD_WEIGHT
, XLFD_WEIGHT_MEDIUM
);
1897 /* Return a symbol representing the slant of the font given by FONT. */
1899 static INLINE Lisp_Object
1900 xlfd_symbolic_weight (font
)
1901 struct font_name
*font
;
1903 return xlfd_symbolic_value (weight_table
, DIM (weight_table
),
1904 font
, XLFD_WEIGHT
, Qnormal
);
1908 /* Return a numeric value for the swidth of the font whose XLFD font
1909 name fields are found in FONT. */
1912 xlfd_numeric_swidth (font
)
1913 struct font_name
*font
;
1915 return xlfd_numeric_value (swidth_table
, DIM (swidth_table
),
1916 font
, XLFD_SWIDTH
, XLFD_SWIDTH_MEDIUM
);
1920 /* Return a symbolic value for the swidth of FONT. */
1922 static INLINE Lisp_Object
1923 xlfd_symbolic_swidth (font
)
1924 struct font_name
*font
;
1926 return xlfd_symbolic_value (swidth_table
, DIM (swidth_table
),
1927 font
, XLFD_SWIDTH
, Qnormal
);
1931 /* Look up the entry of SYMBOL in the vector TABLE which has DIM
1932 entries. Value is a pointer to the matching table entry or null if
1933 no element of TABLE contains SYMBOL. */
1935 static struct table_entry
*
1936 face_value (table
, dim
, symbol
)
1937 struct table_entry
*table
;
1943 xassert (SYMBOLP (symbol
));
1945 for (i
= 0; i
< dim
; ++i
)
1946 if (EQ (*table
[i
].symbol
, symbol
))
1949 return i
< dim
? table
+ i
: NULL
;
1953 /* Return a numeric value for SYMBOL in the vector TABLE which has DIM
1954 entries. Value is -1 if SYMBOL is not found in TABLE. */
1957 face_numeric_value (table
, dim
, symbol
)
1958 struct table_entry
*table
;
1962 struct table_entry
*p
= face_value (table
, dim
, symbol
);
1963 return p
? p
->numeric
: -1;
1967 /* Return a numeric value representing the weight specified by Lisp
1968 symbol WEIGHT. Value is one of the enumerators of enum
1972 face_numeric_weight (weight
)
1975 return face_numeric_value (weight_table
, DIM (weight_table
), weight
);
1979 /* Return a numeric value representing the slant specified by Lisp
1980 symbol SLANT. Value is one of the enumerators of enum xlfd_slant. */
1983 face_numeric_slant (slant
)
1986 return face_numeric_value (slant_table
, DIM (slant_table
), slant
);
1990 /* Return a numeric value representing the swidth specified by Lisp
1991 symbol WIDTH. Value is one of the enumerators of enum xlfd_swidth. */
1994 face_numeric_swidth (width
)
1997 return face_numeric_value (swidth_table
, DIM (swidth_table
), width
);
2001 #ifdef HAVE_WINDOW_SYSTEM
2003 /* Return non-zero if FONT is the name of a fixed-pitch font. */
2007 struct font_name
*font
;
2009 /* Function split_font_name converts fields to lower-case, so there
2010 is no need to use tolower here. */
2011 return *font
->fields
[XLFD_SPACING
] != 'p';
2015 /* Return the point size of FONT on frame F, measured in 1/10 pt.
2017 The actual height of the font when displayed on F depends on the
2018 resolution of both the font and frame. For example, a 10pt font
2019 designed for a 100dpi display will display larger than 10pt on a
2020 75dpi display. (It's not unusual to use fonts not designed for the
2021 display one is using. For example, some intlfonts are available in
2022 72dpi versions, only.)
2024 Value is the real point size of FONT on frame F, or 0 if it cannot
2028 xlfd_point_size (f
, font
)
2030 struct font_name
*font
;
2032 double resy
= FRAME_X_DISPLAY_INFO (f
)->resy
;
2033 double font_resy
= atoi (font
->fields
[XLFD_RESY
]);
2034 double font_pt
= atoi (font
->fields
[XLFD_POINT_SIZE
]);
2037 if (font_resy
== 0 || font_pt
== 0)
2040 real_pt
= (font_resy
/ resy
) * font_pt
+ 0.5;
2046 /* Return point size of PIXEL dots while considering Y-resultion (DPI)
2047 of frame F. This function is used to guess a point size of font
2048 when only the pixel height of the font is available. */
2051 pixel_point_size (f
, pixel
)
2055 double resy
= FRAME_X_DISPLAY_INFO (f
)->resy
;
2059 /* As one inch is 72 points, 72/RESY gives the point size of one dot. */
2060 real_pt
= pixel
* 72 / resy
;
2061 int_pt
= real_pt
+ 0.5;
2067 /* Split XLFD font name FONT->name destructively into NUL-terminated,
2068 lower-case fields in FONT->fields. NUMERIC_P non-zero means
2069 compute numeric values for fields XLFD_POINT_SIZE, XLFD_SWIDTH,
2070 XLFD_RESY, XLFD_SLANT, and XLFD_WEIGHT in FONT->numeric. Value is
2071 zero if the font name doesn't have the format we expect. The
2072 expected format is a font name that starts with a `-' and has
2073 XLFD_LAST fields separated by `-'. (The XLFD specification allows
2074 forms of font names where certain field contents are enclosed in
2075 square brackets. We don't support that, for now. */
2078 split_font_name (f
, font
, numeric_p
)
2080 struct font_name
*font
;
2086 if (*font
->name
== '-')
2088 char *p
= xstrlwr (font
->name
) + 1;
2090 while (i
< XLFD_LAST
)
2092 font
->fields
[i
] = p
;
2095 while (*p
&& *p
!= '-')
2105 success_p
= i
== XLFD_LAST
;
2107 /* If requested, and font name was in the expected format,
2108 compute numeric values for some fields. */
2109 if (numeric_p
&& success_p
)
2111 font
->numeric
[XLFD_POINT_SIZE
] = xlfd_point_size (f
, font
);
2112 font
->numeric
[XLFD_RESY
] = atoi (font
->fields
[XLFD_RESY
]);
2113 font
->numeric
[XLFD_SLANT
] = xlfd_numeric_slant (font
);
2114 font
->numeric
[XLFD_WEIGHT
] = xlfd_numeric_weight (font
);
2115 font
->numeric
[XLFD_SWIDTH
] = xlfd_numeric_swidth (font
);
2122 /* Build an XLFD font name from font name fields in FONT. Value is a
2123 pointer to the font name, which is allocated via xmalloc. */
2126 build_font_name (font
)
2127 struct font_name
*font
;
2131 char *font_name
= (char *) xmalloc (size
);
2132 int total_length
= 0;
2134 for (i
= 0; i
< XLFD_LAST
; ++i
)
2136 /* Add 1 because of the leading `-'. */
2137 int len
= strlen (font
->fields
[i
]) + 1;
2139 /* Reallocate font_name if necessary. Add 1 for the final
2141 if (total_length
+ len
+ 1 >= size
)
2143 int new_size
= max (2 * size
, size
+ len
+ 1);
2144 int sz
= new_size
* sizeof *font_name
;
2145 font_name
= (char *) xrealloc (font_name
, sz
);
2149 font_name
[total_length
] = '-';
2150 bcopy (font
->fields
[i
], font_name
+ total_length
+ 1, len
- 1);
2151 total_length
+= len
;
2154 font_name
[total_length
] = 0;
2159 /* Free an array FONTS of N font_name structures. This frees FONTS
2160 itself and all `name' fields in its elements. */
2163 free_font_names (fonts
, n
)
2164 struct font_name
*fonts
;
2168 xfree (fonts
[--n
].name
);
2173 /* Sort vector FONTS of font_name structures which contains NFONTS
2174 elements using qsort and comparison function CMPFN. F is the frame
2175 on which the fonts will be used. The global variable font_frame
2176 is temporarily set to F to make it available in CMPFN. */
2179 sort_fonts (f
, fonts
, nfonts
, cmpfn
)
2181 struct font_name
*fonts
;
2183 int (*cmpfn
) P_ ((const void *, const void *));
2186 qsort (fonts
, nfonts
, sizeof *fonts
, cmpfn
);
2191 /* Get fonts matching PATTERN on frame F. If F is null, use the first
2192 display in x_display_list. FONTS is a pointer to a vector of
2193 NFONTS font_name structures. TRY_ALTERNATIVES_P non-zero means try
2194 alternative patterns from Valternate_fontname_alist if no fonts are
2195 found matching PATTERN. SCALABLE_FONTS_P non-zero means include
2198 For all fonts found, set FONTS[i].name to the name of the font,
2199 allocated via xmalloc, and split font names into fields. Ignore
2200 fonts that we can't parse. Value is the number of fonts found.
2202 This is similar to x_list_fonts. The differences are:
2204 1. It avoids consing.
2205 2. It never calls XLoadQueryFont. */
2208 x_face_list_fonts (f
, pattern
, fonts
, nfonts
, try_alternatives_p
,
2212 struct font_name
*fonts
;
2213 int nfonts
, try_alternatives_p
;
2214 int scalable_fonts_p
;
2218 #ifdef HAVE_X_WINDOWS
2219 Display
*dpy
= f
? FRAME_X_DISPLAY (f
) : x_display_list
->display
;
2221 /* Get the list of fonts matching PATTERN from the X server. */
2223 names
= XListFonts (dpy
, pattern
, nfonts
, &n
);
2227 /* NTEMACS_TODO : currently this uses w32_list_fonts, but it may be
2228 better to do it the other way around. */
2230 Lisp_Object lpattern
, tem
;
2235 lpattern
= build_string (pattern
);
2237 /* Get the list of fonts matching PATTERN. */
2239 lfonts
= w32_list_fonts (f
, lpattern
, 0, nfonts
);
2242 /* Count fonts returned */
2243 for (tem
= lfonts
; CONSP (tem
); tem
= XCDR (tem
))
2246 /* Allocate array. */
2248 names
= (char **) xmalloc (n
* sizeof (char *));
2250 /* Extract font names into char * array. */
2252 for (i
= 0; i
< n
; i
++)
2254 names
[i
] = XSTRING (XCAR (tem
))->data
;
2261 /* Make a copy of the font names we got from X, and
2262 split them into fields. */
2263 for (i
= j
= 0; i
< n
; ++i
)
2265 /* Make a copy of the font name. */
2266 fonts
[j
].name
= xstrdup (names
[i
]);
2268 /* Ignore fonts having a name that we can't parse. */
2269 if (!split_font_name (f
, fonts
+ j
, 1))
2270 xfree (fonts
[j
].name
);
2271 else if (font_scalable_p (fonts
+ j
))
2274 if (!scalable_fonts_p
2275 || !may_use_scalable_font_p (fonts
+ j
, names
[i
]))
2276 xfree (fonts
[j
].name
);
2279 #else /* !SCALABLE_FONTS */
2280 /* Always ignore scalable fonts. */
2281 xfree (fonts
[j
].name
);
2282 #endif /* !SCALABLE_FONTS */
2290 #ifdef HAVE_X_WINDOWS
2291 /* Free font names. */
2293 XFreeFontNames (names
);
2299 /* If no fonts found, try patterns from Valternate_fontname_alist. */
2300 if (n
== 0 && try_alternatives_p
)
2302 Lisp_Object list
= Valternate_fontname_alist
;
2304 while (CONSP (list
))
2306 Lisp_Object entry
= XCAR (list
);
2308 && STRINGP (XCAR (entry
))
2309 && strcmp (XSTRING (XCAR (entry
))->data
, pattern
) == 0)
2316 Lisp_Object patterns
= XCAR (list
);
2319 while (CONSP (patterns
)
2320 /* If list is screwed up, give up. */
2321 && (name
= XCAR (patterns
),
2323 /* Ignore patterns equal to PATTERN because we tried that
2324 already with no success. */
2325 && (strcmp (XSTRING (name
)->data
, pattern
) == 0
2326 || (n
= x_face_list_fonts (f
, XSTRING (name
)->data
,
2330 patterns
= XCDR (patterns
);
2338 /* Determine the first font matching PATTERN on frame F. Return in
2339 *FONT the matching font name, split into fields. Value is non-zero
2340 if a match was found. */
2343 first_font_matching (f
, pattern
, font
)
2346 struct font_name
*font
;
2349 struct font_name
*fonts
;
2351 fonts
= (struct font_name
*) xmalloc (nfonts
* sizeof *fonts
);
2352 nfonts
= x_face_list_fonts (f
, pattern
, fonts
, nfonts
, 1, 0);
2356 bcopy (&fonts
[0], font
, sizeof *font
);
2358 fonts
[0].name
= NULL
;
2359 free_font_names (fonts
, nfonts
);
2366 /* Determine fonts matching PATTERN on frame F. Sort resulting fonts
2367 using comparison function CMPFN. Value is the number of fonts
2368 found. If value is non-zero, *FONTS is set to a vector of
2369 font_name structures allocated from the heap containing matching
2370 fonts. Each element of *FONTS contains a name member that is also
2371 allocated from the heap. Font names in these structures are split
2372 into fields. Use free_font_names to free such an array. */
2375 sorted_font_list (f
, pattern
, cmpfn
, fonts
)
2378 int (*cmpfn
) P_ ((const void *, const void *));
2379 struct font_name
**fonts
;
2383 /* Get the list of fonts matching pattern. 100 should suffice. */
2384 nfonts
= DEFAULT_FONT_LIST_LIMIT
;
2385 if (INTEGERP (Vfont_list_limit
) && XINT (Vfont_list_limit
) > 0)
2386 nfonts
= XFASTINT (Vfont_list_limit
);
2388 *fonts
= (struct font_name
*) xmalloc (nfonts
* sizeof **fonts
);
2390 nfonts
= x_face_list_fonts (f
, pattern
, *fonts
, nfonts
, 1, 1);
2392 nfonts
= x_face_list_fonts (f
, pattern
, *fonts
, nfonts
, 1, 0);
2395 /* Sort the resulting array and return it in *FONTS. If no
2396 fonts were found, make sure to set *FONTS to null. */
2398 sort_fonts (f
, *fonts
, nfonts
, cmpfn
);
2409 /* Compare two font_name structures *A and *B. Value is analogous to
2410 strcmp. Sort order is given by the global variable
2411 font_sort_order. Font names are sorted so that, everything else
2412 being equal, fonts with a resolution closer to that of the frame on
2413 which they are used are listed first. The global variable
2414 font_frame is the frame on which we operate. */
2417 cmp_font_names (a
, b
)
2420 struct font_name
*x
= (struct font_name
*) a
;
2421 struct font_name
*y
= (struct font_name
*) b
;
2424 /* All strings have been converted to lower-case by split_font_name,
2425 so we can use strcmp here. */
2426 cmp
= strcmp (x
->fields
[XLFD_FAMILY
], y
->fields
[XLFD_FAMILY
]);
2431 for (i
= 0; i
< DIM (font_sort_order
) && cmp
== 0; ++i
)
2433 int j
= font_sort_order
[i
];
2434 cmp
= x
->numeric
[j
] - y
->numeric
[j
];
2439 /* Everything else being equal, we prefer fonts with an
2440 y-resolution closer to that of the frame. */
2441 int resy
= FRAME_X_DISPLAY_INFO (font_frame
)->resy
;
2442 int x_resy
= x
->numeric
[XLFD_RESY
];
2443 int y_resy
= y
->numeric
[XLFD_RESY
];
2444 cmp
= abs (resy
- x_resy
) - abs (resy
- y_resy
);
2452 /* Get a sorted list of fonts of family FAMILY on frame F. If PATTERN
2453 is non-nil list fonts matching that pattern. Otherwise, if
2454 REGISTRY is non-nil return only fonts with that registry, otherwise
2455 return fonts of any registry. Set *FONTS to a vector of font_name
2456 structures allocated from the heap containing the fonts found.
2457 Value is the number of fonts found. */
2460 font_list (f
, pattern
, family
, registry
, fonts
)
2462 Lisp_Object pattern
, family
, registry
;
2463 struct font_name
**fonts
;
2465 char *pattern_str
, *family_str
, *registry_str
;
2469 family_str
= (NILP (family
) ? "*" : (char *) XSTRING (family
)->data
);
2470 registry_str
= (NILP (registry
) ? "*" : (char *) XSTRING (registry
)->data
);
2472 pattern_str
= (char *) alloca (strlen (family_str
)
2473 + strlen (registry_str
)
2475 strcpy (pattern_str
, index (family_str
, '-') ? "-" : "-*-");
2476 strcat (pattern_str
, family_str
);
2477 strcat (pattern_str
, "-*-");
2478 strcat (pattern_str
, registry_str
);
2479 if (!index (registry_str
, '-'))
2481 if (registry_str
[strlen (registry_str
) - 1] == '*')
2482 strcat (pattern_str
, "-*");
2484 strcat (pattern_str
, "*-*");
2488 pattern_str
= (char *) XSTRING (pattern
)->data
;
2490 return sorted_font_list (f
, pattern_str
, cmp_font_names
, fonts
);
2494 /* Remove elements from LIST whose cars are `equal'. Called from
2495 x-family-fonts and x-font-family-list to remove duplicate font
2499 remove_duplicates (list
)
2502 Lisp_Object tail
= list
;
2504 while (!NILP (tail
) && !NILP (XCDR (tail
)))
2506 Lisp_Object next
= XCDR (tail
);
2507 if (!NILP (Fequal (XCAR (next
), XCAR (tail
))))
2508 XCDR (tail
) = XCDR (next
);
2515 DEFUN ("x-family-fonts", Fx_family_fonts
, Sx_family_fonts
, 0, 2, 0,
2516 "Return a list of available fonts of family FAMILY on FRAME.\n\
2517 If FAMILY is omitted or nil, list all families.\n\
2518 Otherwise, FAMILY must be a string, possibly containing wildcards\n\
2520 If FRAME is omitted or nil, use the selected frame.\n\
2521 Each element of the result is a vector [FAMILY WIDTH POINT-SIZE WEIGHT\n\
2522 SLANT FIXED-P FULL REGISTRY-AND-ENCODING].\n\
2523 FAMILY is the font family name. POINT-SIZE is the size of the\n\
2524 font in 1/10 pt. WIDTH, WEIGHT, and SLANT are symbols describing the\n\
2525 width, weight and slant of the font. These symbols are the same as for\n\
2526 face attributes. FIXED-P is non-nil if the font is fixed-pitch.\n\
2527 FULL is the full name of the font, and REGISTRY-AND-ENCODING is a string\n\
2528 giving the registry and encoding of the font.\n\
2529 The result list is sorted according to the current setting of\n\
2530 the face font sort order.")
2532 Lisp_Object family
, frame
;
2534 struct frame
*f
= check_x_frame (frame
);
2535 struct font_name
*fonts
;
2538 struct gcpro gcpro1
;
2541 CHECK_STRING (family
, 1);
2545 nfonts
= font_list (f
, Qnil
, family
, Qnil
, &fonts
);
2546 for (i
= nfonts
- 1; i
>= 0; --i
)
2548 Lisp_Object v
= Fmake_vector (make_number (8), Qnil
);
2551 #define ASET(VECTOR, IDX, VAL) (XVECTOR (VECTOR)->contents[IDX] = (VAL))
2553 ASET (v
, 0, build_string (fonts
[i
].fields
[XLFD_FAMILY
]));
2554 ASET (v
, 1, xlfd_symbolic_swidth (fonts
+ i
));
2555 ASET (v
, 2, make_number (xlfd_point_size (f
, fonts
+ i
)));
2556 ASET (v
, 3, xlfd_symbolic_weight (fonts
+ i
));
2557 ASET (v
, 4, xlfd_symbolic_slant (fonts
+ i
));
2558 ASET (v
, 5, xlfd_fixed_p (fonts
+ i
) ? Qt
: Qnil
);
2559 tem
= build_font_name (fonts
+ i
);
2560 ASET (v
, 6, build_string (tem
));
2561 sprintf (tem
, "%s-%s", fonts
[i
].fields
[XLFD_REGISTRY
],
2562 fonts
[i
].fields
[XLFD_ENCODING
]);
2563 ASET (v
, 7, build_string (tem
));
2566 result
= Fcons (v
, result
);
2571 remove_duplicates (result
);
2572 free_font_names (fonts
, nfonts
);
2578 DEFUN ("x-font-family-list", Fx_font_family_list
, Sx_font_family_list
,
2580 "Return a list of available font families on FRAME.\n\
2581 If FRAME is omitted or nil, use the selected frame.\n\
2582 Value is a list of conses (FAMILY . FIXED-P) where FAMILY\n\
2583 is a font family, and FIXED-P is non-nil if fonts of that family\n\
2588 struct frame
*f
= check_x_frame (frame
);
2590 struct font_name
*fonts
;
2592 struct gcpro gcpro1
;
2593 int count
= specpdl_ptr
- specpdl
;
2596 /* Let's consider all fonts. Increase the limit for matching
2597 fonts until we have them all. */
2600 specbind (intern ("font-list-limit"), make_number (limit
));
2601 nfonts
= font_list (f
, Qnil
, Qnil
, Qnil
, &fonts
);
2603 if (nfonts
== limit
)
2605 free_font_names (fonts
, nfonts
);
2614 for (i
= nfonts
- 1; i
>= 0; --i
)
2615 result
= Fcons (Fcons (build_string (fonts
[i
].fields
[XLFD_FAMILY
]),
2616 xlfd_fixed_p (fonts
+ i
) ? Qt
: Qnil
),
2619 remove_duplicates (result
);
2620 free_font_names (fonts
, nfonts
);
2622 return unbind_to (count
, result
);
2626 DEFUN ("x-list-fonts", Fx_list_fonts
, Sx_list_fonts
, 1, 5, 0,
2627 "Return a list of the names of available fonts matching PATTERN.\n\
2628 If optional arguments FACE and FRAME are specified, return only fonts\n\
2629 the same size as FACE on FRAME.\n\
2630 PATTERN is a string, perhaps with wildcard characters;\n\
2631 the * character matches any substring, and\n\
2632 the ? character matches any single character.\n\
2633 PATTERN is case-insensitive.\n\
2634 FACE is a face name--a symbol.\n\
2636 The return value is a list of strings, suitable as arguments to\n\
2639 Fonts Emacs can't use may or may not be excluded\n\
2640 even if they match PATTERN and FACE.\n\
2641 The optional fourth argument MAXIMUM sets a limit on how many\n\
2642 fonts to match. The first MAXIMUM fonts are reported.\n\
2643 The optional fifth argument WIDTH, if specified, is a number of columns\n\
2644 occupied by a character of a font. In that case, return only fonts\n\
2645 the WIDTH times as wide as FACE on FRAME.")
2646 (pattern
, face
, frame
, maximum
, width
)
2647 Lisp_Object pattern
, face
, frame
, maximum
, width
;
2654 CHECK_STRING (pattern
, 0);
2660 CHECK_NATNUM (maximum
, 0);
2661 maxnames
= XINT (maximum
);
2665 CHECK_NUMBER (width
, 4);
2667 /* We can't simply call check_x_frame because this function may be
2668 called before any frame is created. */
2669 f
= frame_or_selected_frame (frame
, 2);
2670 if (!FRAME_WINDOW_P (f
))
2672 /* Perhaps we have not yet created any frame. */
2677 /* Determine the width standard for comparison with the fonts we find. */
2683 /* This is of limited utility since it works with character
2684 widths. Keep it for compatibility. --gerd. */
2685 int face_id
= lookup_named_face (f
, face
, 0);
2686 struct face
*face
= FACE_FROM_ID (f
, face_id
);
2689 size
= FONT_WIDTH (face
->font
);
2691 size
= FONT_WIDTH (FRAME_FONT (f
));
2694 size
*= XINT (width
);
2698 Lisp_Object args
[2];
2700 args
[0] = x_list_fonts (f
, pattern
, size
, maxnames
);
2702 /* We don't have to check fontsets. */
2704 args
[1] = list_fontsets (f
, pattern
, size
);
2705 return Fnconc (2, args
);
2709 #endif /* HAVE_WINDOW_SYSTEM */
2713 /***********************************************************************
2715 ***********************************************************************/
2717 /* Access face attributes of face FACE, a Lisp vector. */
2719 #define LFACE_FAMILY(LFACE) \
2720 XVECTOR (LFACE)->contents[LFACE_FAMILY_INDEX]
2721 #define LFACE_HEIGHT(LFACE) \
2722 XVECTOR (LFACE)->contents[LFACE_HEIGHT_INDEX]
2723 #define LFACE_WEIGHT(LFACE) \
2724 XVECTOR (LFACE)->contents[LFACE_WEIGHT_INDEX]
2725 #define LFACE_SLANT(LFACE) \
2726 XVECTOR (LFACE)->contents[LFACE_SLANT_INDEX]
2727 #define LFACE_UNDERLINE(LFACE) \
2728 XVECTOR (LFACE)->contents[LFACE_UNDERLINE_INDEX]
2729 #define LFACE_INVERSE(LFACE) \
2730 XVECTOR (LFACE)->contents[LFACE_INVERSE_INDEX]
2731 #define LFACE_FOREGROUND(LFACE) \
2732 XVECTOR (LFACE)->contents[LFACE_FOREGROUND_INDEX]
2733 #define LFACE_BACKGROUND(LFACE) \
2734 XVECTOR (LFACE)->contents[LFACE_BACKGROUND_INDEX]
2735 #define LFACE_STIPPLE(LFACE) \
2736 XVECTOR (LFACE)->contents[LFACE_STIPPLE_INDEX]
2737 #define LFACE_SWIDTH(LFACE) \
2738 XVECTOR (LFACE)->contents[LFACE_SWIDTH_INDEX]
2739 #define LFACE_OVERLINE(LFACE) \
2740 XVECTOR (LFACE)->contents[LFACE_OVERLINE_INDEX]
2741 #define LFACE_STRIKE_THROUGH(LFACE) \
2742 XVECTOR (LFACE)->contents[LFACE_STRIKE_THROUGH_INDEX]
2743 #define LFACE_BOX(LFACE) \
2744 XVECTOR (LFACE)->contents[LFACE_BOX_INDEX]
2745 #define LFACE_FONT(LFACE) \
2746 XVECTOR (LFACE)->contents[LFACE_FONT_INDEX]
2748 /* Non-zero if LFACE is a Lisp face. A Lisp face is a vector of size
2749 LFACE_VECTOR_SIZE which has the symbol `face' in slot 0. */
2751 #define LFACEP(LFACE) \
2753 && XVECTOR (LFACE)->size == LFACE_VECTOR_SIZE \
2754 && EQ (XVECTOR (LFACE)->contents[0], Qface))
2759 /* Check consistency of Lisp face attribute vector ATTRS. */
2762 check_lface_attrs (attrs
)
2765 xassert (UNSPECIFIEDP (attrs
[LFACE_FAMILY_INDEX
])
2766 || STRINGP (attrs
[LFACE_FAMILY_INDEX
]));
2767 xassert (UNSPECIFIEDP (attrs
[LFACE_SWIDTH_INDEX
])
2768 || SYMBOLP (attrs
[LFACE_SWIDTH_INDEX
]));
2769 xassert (UNSPECIFIEDP (attrs
[LFACE_HEIGHT_INDEX
])
2770 || INTEGERP (attrs
[LFACE_HEIGHT_INDEX
]));
2771 xassert (UNSPECIFIEDP (attrs
[LFACE_WEIGHT_INDEX
])
2772 || SYMBOLP (attrs
[LFACE_WEIGHT_INDEX
]));
2773 xassert (UNSPECIFIEDP (attrs
[LFACE_SLANT_INDEX
])
2774 || SYMBOLP (attrs
[LFACE_SLANT_INDEX
]));
2775 xassert (UNSPECIFIEDP (attrs
[LFACE_UNDERLINE_INDEX
])
2776 || SYMBOLP (attrs
[LFACE_UNDERLINE_INDEX
])
2777 || STRINGP (attrs
[LFACE_UNDERLINE_INDEX
]));
2778 xassert (UNSPECIFIEDP (attrs
[LFACE_OVERLINE_INDEX
])
2779 || SYMBOLP (attrs
[LFACE_OVERLINE_INDEX
])
2780 || STRINGP (attrs
[LFACE_OVERLINE_INDEX
]));
2781 xassert (UNSPECIFIEDP (attrs
[LFACE_STRIKE_THROUGH_INDEX
])
2782 || SYMBOLP (attrs
[LFACE_STRIKE_THROUGH_INDEX
])
2783 || STRINGP (attrs
[LFACE_STRIKE_THROUGH_INDEX
]));
2784 xassert (UNSPECIFIEDP (attrs
[LFACE_BOX_INDEX
])
2785 || SYMBOLP (attrs
[LFACE_BOX_INDEX
])
2786 || STRINGP (attrs
[LFACE_BOX_INDEX
])
2787 || INTEGERP (attrs
[LFACE_BOX_INDEX
])
2788 || CONSP (attrs
[LFACE_BOX_INDEX
]));
2789 xassert (UNSPECIFIEDP (attrs
[LFACE_INVERSE_INDEX
])
2790 || SYMBOLP (attrs
[LFACE_INVERSE_INDEX
]));
2791 xassert (UNSPECIFIEDP (attrs
[LFACE_FOREGROUND_INDEX
])
2792 || STRINGP (attrs
[LFACE_FOREGROUND_INDEX
]));
2793 xassert (UNSPECIFIEDP (attrs
[LFACE_BACKGROUND_INDEX
])
2794 || STRINGP (attrs
[LFACE_BACKGROUND_INDEX
]));
2795 #ifdef HAVE_WINDOW_SYSTEM
2796 xassert (UNSPECIFIEDP (attrs
[LFACE_STIPPLE_INDEX
])
2797 || SYMBOLP (attrs
[LFACE_STIPPLE_INDEX
])
2798 || !NILP (Fbitmap_spec_p (attrs
[LFACE_STIPPLE_INDEX
])));
2799 xassert (UNSPECIFIEDP (attrs
[LFACE_FONT_INDEX
])
2800 || NILP (attrs
[LFACE_FONT_INDEX
])
2801 || STRINGP (attrs
[LFACE_FONT_INDEX
]));
2806 /* Check consistency of attributes of Lisp face LFACE (a Lisp vector). */
2814 xassert (LFACEP (lface
));
2815 check_lface_attrs (XVECTOR (lface
)->contents
);
2819 #else /* GLYPH_DEBUG == 0 */
2821 #define check_lface_attrs(attrs) (void) 0
2822 #define check_lface(lface) (void) 0
2824 #endif /* GLYPH_DEBUG == 0 */
2827 /* Resolve face name FACE_NAME. If FACE_NAME is a string, intern it
2828 to make it a symvol. If FACE_NAME is an alias for another face,
2829 return that face's name. */
2832 resolve_face_name (face_name
)
2833 Lisp_Object face_name
;
2835 Lisp_Object aliased
;
2837 if (STRINGP (face_name
))
2838 face_name
= intern (XSTRING (face_name
)->data
);
2842 aliased
= Fget (face_name
, Qface_alias
);
2846 face_name
= aliased
;
2853 /* Return the face definition of FACE_NAME on frame F. F null means
2854 return the global definition. FACE_NAME may be a string or a
2855 symbol (apparently Emacs 20.2 allows strings as face names in face
2856 text properties; ediff uses that). If FACE_NAME is an alias for
2857 another face, return that face's definition. If SIGNAL_P is
2858 non-zero, signal an error if FACE_NAME is not a valid face name.
2859 If SIGNAL_P is zero, value is nil if FACE_NAME is not a valid face
2862 static INLINE Lisp_Object
2863 lface_from_face_name (f
, face_name
, signal_p
)
2865 Lisp_Object face_name
;
2870 face_name
= resolve_face_name (face_name
);
2873 lface
= assq_no_quit (face_name
, f
->face_alist
);
2875 lface
= assq_no_quit (face_name
, Vface_new_frame_defaults
);
2878 lface
= XCDR (lface
);
2880 signal_error ("Invalid face", face_name
);
2882 check_lface (lface
);
2887 /* Get face attributes of face FACE_NAME from frame-local faces on
2888 frame F. Store the resulting attributes in ATTRS which must point
2889 to a vector of Lisp_Objects of size LFACE_VECTOR_SIZE. If SIGNAL_P
2890 is non-zero, signal an error if FACE_NAME does not name a face.
2891 Otherwise, value is zero if FACE_NAME is not a face. */
2894 get_lface_attributes (f
, face_name
, attrs
, signal_p
)
2896 Lisp_Object face_name
;
2903 lface
= lface_from_face_name (f
, face_name
, signal_p
);
2906 bcopy (XVECTOR (lface
)->contents
, attrs
,
2907 LFACE_VECTOR_SIZE
* sizeof *attrs
);
2917 /* Non-zero if all attributes in face attribute vector ATTRS are
2918 specified, i.e. are non-nil. */
2921 lface_fully_specified_p (attrs
)
2926 for (i
= 1; i
< LFACE_VECTOR_SIZE
; ++i
)
2927 if (UNSPECIFIEDP (attrs
[i
]) && i
!= LFACE_FONT_INDEX
)
2930 return i
== LFACE_VECTOR_SIZE
;
2933 #ifdef HAVE_WINDOW_SYSTEM
2935 /* Set font-related attributes of Lisp face LFACE from the fullname of
2936 the font opened by FONTNAME. If FORCE_P is zero, set only
2937 unspecified attributes of LFACE. The exception is `font'
2938 attribute. It is set to FONTNAME as is regardless of FORCE_P.
2940 If FONTNAME is not available on frame F,
2941 return 0 if MAY_FAIL_P is non-zero, otherwise abort.
2942 If the fullname is not in a valid XLFD format,
2943 return 0 if MAY_FAIL_P is non-zero, otherwise set normal values
2944 in LFACE and return 1.
2945 Otherwise, return 1. */
2948 set_lface_from_font_name (f
, lface
, fontname
, force_p
, may_fail_p
)
2951 Lisp_Object fontname
;
2952 int force_p
, may_fail_p
;
2954 struct font_name font
;
2959 char *font_name
= XSTRING (fontname
)->data
;
2960 struct font_info
*font_info
;
2962 /* If FONTNAME is actually a fontset name, get ASCII font name of it. */
2963 fontset
= fs_query_fontset (fontname
, 0);
2965 font_name
= XSTRING (fontset_ascii (fontset
))->data
;
2967 /* Check if FONT_NAME is surely available on the system. Usually
2968 FONT_NAME is already cached for the frame F and FS_LOAD_FONT
2969 returns quickly. But, even if FONT_NAME is not yet cached,
2970 caching it now is not futail because we anyway load the font
2973 font_info
= FS_LOAD_FONT (f
, 0, font_name
, -1);
2983 font
.name
= STRDUPA (font_info
->full_name
);
2984 have_xlfd_p
= split_font_name (f
, &font
, 1);
2986 /* Set attributes only if unspecified, otherwise face defaults for
2987 new frames would never take effect. If we couldn't get a font
2988 name conforming to XLFD, set normal values. */
2990 if (force_p
|| UNSPECIFIEDP (LFACE_FAMILY (lface
)))
2995 buffer
= (char *) alloca (strlen (font
.fields
[XLFD_FAMILY
])
2996 + strlen (font
.fields
[XLFD_FOUNDRY
])
2998 sprintf (buffer
, "%s-%s", font
.fields
[XLFD_FOUNDRY
],
2999 font
.fields
[XLFD_FAMILY
]);
3000 val
= build_string (buffer
);
3003 val
= build_string ("*");
3004 LFACE_FAMILY (lface
) = val
;
3007 if (force_p
|| UNSPECIFIEDP (LFACE_HEIGHT (lface
)))
3010 pt
= xlfd_point_size (f
, &font
);
3012 pt
= pixel_point_size (f
, font_info
->height
* 10);
3014 LFACE_HEIGHT (lface
) = make_number (pt
);
3017 if (force_p
|| UNSPECIFIEDP (LFACE_SWIDTH (lface
)))
3018 LFACE_SWIDTH (lface
)
3019 = have_xlfd_p
? xlfd_symbolic_swidth (&font
) : Qnormal
;
3021 if (force_p
|| UNSPECIFIEDP (LFACE_WEIGHT (lface
)))
3022 LFACE_WEIGHT (lface
)
3023 = have_xlfd_p
? xlfd_symbolic_weight (&font
) : Qnormal
;
3025 if (force_p
|| UNSPECIFIEDP (LFACE_SLANT (lface
)))
3027 = have_xlfd_p
? xlfd_symbolic_slant (&font
) : Qnormal
;
3029 LFACE_FONT (lface
) = fontname
;
3033 #endif /* HAVE_WINDOW_SYSTEM */
3036 /* Merge two Lisp face attribute vectors FROM and TO and store the
3037 resulting attributes in TO. Every non-nil attribute of FROM
3038 overrides the corresponding attribute of TO. */
3041 merge_face_vectors (from
, to
)
3042 Lisp_Object
*from
, *to
;
3045 for (i
= 1; i
< LFACE_VECTOR_SIZE
; ++i
)
3046 if (!UNSPECIFIEDP (from
[i
]))
3051 /* Given a Lisp face attribute vector TO and a Lisp object PROP that
3052 is a face property, determine the resulting face attributes on
3053 frame F, and store them in TO. PROP may be a single face
3054 specification or a list of such specifications. Each face
3055 specification can be
3057 1. A symbol or string naming a Lisp face.
3059 2. A property list of the form (KEYWORD VALUE ...) where each
3060 KEYWORD is a face attribute name, and value is an appropriate value
3063 3. Conses or the form (FOREGROUND-COLOR . COLOR) or
3064 (BACKGROUND-COLOR . COLOR) where COLOR is a color name. This is
3065 for compatibility with 20.2.
3067 Face specifications earlier in lists take precedence over later
3071 merge_face_vector_with_property (f
, to
, prop
)
3078 Lisp_Object first
= XCAR (prop
);
3080 if (EQ (first
, Qforeground_color
)
3081 || EQ (first
, Qbackground_color
))
3083 /* One of (FOREGROUND-COLOR . COLOR) or (BACKGROUND-COLOR
3084 . COLOR). COLOR must be a string. */
3085 Lisp_Object color_name
= XCDR (prop
);
3086 Lisp_Object color
= first
;
3088 if (STRINGP (color_name
))
3090 if (EQ (color
, Qforeground_color
))
3091 to
[LFACE_FOREGROUND_INDEX
] = color_name
;
3093 to
[LFACE_BACKGROUND_INDEX
] = color_name
;
3096 add_to_log ("Invalid face color", color_name
, Qnil
);
3098 else if (SYMBOLP (first
)
3099 && *XSYMBOL (first
)->name
->data
== ':')
3101 /* Assume this is the property list form. */
3102 while (CONSP (prop
) && CONSP (XCDR (prop
)))
3104 Lisp_Object keyword
= XCAR (prop
);
3105 Lisp_Object value
= XCAR (XCDR (prop
));
3107 if (EQ (keyword
, QCfamily
))
3109 if (STRINGP (value
))
3110 to
[LFACE_FAMILY_INDEX
] = value
;
3112 add_to_log ("Illegal face font family", value
, Qnil
);
3114 else if (EQ (keyword
, QCheight
))
3116 if (INTEGERP (value
))
3117 to
[LFACE_HEIGHT_INDEX
] = value
;
3119 add_to_log ("Illegal face font height", value
, Qnil
);
3121 else if (EQ (keyword
, QCweight
))
3124 && face_numeric_weight (value
) >= 0)
3125 to
[LFACE_WEIGHT_INDEX
] = value
;
3127 add_to_log ("Illegal face weight", value
, Qnil
);
3129 else if (EQ (keyword
, QCslant
))
3132 && face_numeric_slant (value
) >= 0)
3133 to
[LFACE_SLANT_INDEX
] = value
;
3135 add_to_log ("Illegal face slant", value
, Qnil
);
3137 else if (EQ (keyword
, QCunderline
))
3142 to
[LFACE_UNDERLINE_INDEX
] = value
;
3144 add_to_log ("Illegal face underline", value
, Qnil
);
3146 else if (EQ (keyword
, QCoverline
))
3151 to
[LFACE_OVERLINE_INDEX
] = value
;
3153 add_to_log ("Illegal face overline", value
, Qnil
);
3155 else if (EQ (keyword
, QCstrike_through
))
3160 to
[LFACE_STRIKE_THROUGH_INDEX
] = value
;
3162 add_to_log ("Illegal face strike-through", value
, Qnil
);
3164 else if (EQ (keyword
, QCbox
))
3167 value
= make_number (1);
3168 if (INTEGERP (value
)
3172 to
[LFACE_BOX_INDEX
] = value
;
3174 add_to_log ("Illegal face box", value
, Qnil
);
3176 else if (EQ (keyword
, QCinverse_video
)
3177 || EQ (keyword
, QCreverse_video
))
3179 if (EQ (value
, Qt
) || NILP (value
))
3180 to
[LFACE_INVERSE_INDEX
] = value
;
3182 add_to_log ("Illegal face inverse-video", value
, Qnil
);
3184 else if (EQ (keyword
, QCforeground
))
3186 if (STRINGP (value
))
3187 to
[LFACE_FOREGROUND_INDEX
] = value
;
3189 add_to_log ("Illegal face foreground", value
, Qnil
);
3191 else if (EQ (keyword
, QCbackground
))
3193 if (STRINGP (value
))
3194 to
[LFACE_BACKGROUND_INDEX
] = value
;
3196 add_to_log ("Illegal face background", value
, Qnil
);
3198 else if (EQ (keyword
, QCstipple
))
3200 #ifdef HAVE_X_WINDOWS
3201 Lisp_Object pixmap_p
= Fbitmap_spec_p (value
);
3202 if (!NILP (pixmap_p
))
3203 to
[LFACE_STIPPLE_INDEX
] = value
;
3205 add_to_log ("Illegal face stipple", value
, Qnil
);
3208 else if (EQ (keyword
, QCwidth
))
3211 && face_numeric_swidth (value
) >= 0)
3212 to
[LFACE_SWIDTH_INDEX
] = value
;
3214 add_to_log ("Illegal face width", value
, Qnil
);
3217 add_to_log ("Invalid attribute %s in face property",
3220 prop
= XCDR (XCDR (prop
));
3225 /* This is a list of face specs. Specifications at the
3226 beginning of the list take precedence over later
3227 specifications, so we have to merge starting with the
3228 last specification. */
3229 Lisp_Object next
= XCDR (prop
);
3231 merge_face_vector_with_property (f
, to
, next
);
3232 merge_face_vector_with_property (f
, to
, first
);
3237 /* PROP ought to be a face name. */
3238 Lisp_Object lface
= lface_from_face_name (f
, prop
, 0);
3240 add_to_log ("Invalid face text property value: %s", prop
, Qnil
);
3242 merge_face_vectors (XVECTOR (lface
)->contents
, to
);
3247 DEFUN ("internal-make-lisp-face", Finternal_make_lisp_face
,
3248 Sinternal_make_lisp_face
, 1, 2, 0,
3249 "Make FACE, a symbol, a Lisp face with all attributes nil.\n\
3250 If FACE was not known as a face before, create a new one.\n\
3251 If optional argument FRAME is specified, make a frame-local face\n\
3252 for that frame. Otherwise operate on the global face definition.\n\
3253 Value is a vector of face attributes.")
3255 Lisp_Object face
, frame
;
3257 Lisp_Object global_lface
, lface
;
3261 CHECK_SYMBOL (face
, 0);
3262 global_lface
= lface_from_face_name (NULL
, face
, 0);
3266 CHECK_LIVE_FRAME (frame
, 1);
3268 lface
= lface_from_face_name (f
, face
, 0);
3271 f
= NULL
, lface
= Qnil
;
3273 /* Add a global definition if there is none. */
3274 if (NILP (global_lface
))
3276 global_lface
= Fmake_vector (make_number (LFACE_VECTOR_SIZE
),
3278 XVECTOR (global_lface
)->contents
[0] = Qface
;
3279 Vface_new_frame_defaults
= Fcons (Fcons (face
, global_lface
),
3280 Vface_new_frame_defaults
);
3282 /* Assign the new Lisp face a unique ID. The mapping from Lisp
3283 face id to Lisp face is given by the vector lface_id_to_name.
3284 The mapping from Lisp face to Lisp face id is given by the
3285 property `face' of the Lisp face name. */
3286 if (next_lface_id
== lface_id_to_name_size
)
3288 int new_size
= max (50, 2 * lface_id_to_name_size
);
3289 int sz
= new_size
* sizeof *lface_id_to_name
;
3290 lface_id_to_name
= (Lisp_Object
*) xrealloc (lface_id_to_name
, sz
);
3291 lface_id_to_name_size
= new_size
;
3294 lface_id_to_name
[next_lface_id
] = face
;
3295 Fput (face
, Qface
, make_number (next_lface_id
));
3299 for (i
= 1; i
< LFACE_VECTOR_SIZE
; ++i
)
3300 XVECTOR (global_lface
)->contents
[i
] = Qunspecified
;
3302 /* Add a frame-local definition. */
3307 lface
= Fmake_vector (make_number (LFACE_VECTOR_SIZE
),
3309 XVECTOR (lface
)->contents
[0] = Qface
;
3310 f
->face_alist
= Fcons (Fcons (face
, lface
), f
->face_alist
);
3313 for (i
= 1; i
< LFACE_VECTOR_SIZE
; ++i
)
3314 XVECTOR (lface
)->contents
[i
] = Qunspecified
;
3317 lface
= global_lface
;
3319 xassert (LFACEP (lface
));
3320 check_lface (lface
);
3325 DEFUN ("internal-lisp-face-p", Finternal_lisp_face_p
,
3326 Sinternal_lisp_face_p
, 1, 2, 0,
3327 "Return non-nil if FACE names a face.\n\
3328 If optional second parameter FRAME is non-nil, check for the\n\
3329 existence of a frame-local face with name FACE on that frame.\n\
3330 Otherwise check for the existence of a global face.")
3332 Lisp_Object face
, frame
;
3338 CHECK_LIVE_FRAME (frame
, 1);
3339 lface
= lface_from_face_name (XFRAME (frame
), face
, 0);
3342 lface
= lface_from_face_name (NULL
, face
, 0);
3348 DEFUN ("internal-copy-lisp-face", Finternal_copy_lisp_face
,
3349 Sinternal_copy_lisp_face
, 4, 4, 0,
3350 "Copy face FROM to TO.\n\
3351 If FRAME it t, copy the global face definition of FROM to the\n\
3352 global face definition of TO. Otherwise, copy the frame-local\n\
3353 definition of FROM on FRAME to the frame-local definition of TO\n\
3354 on NEW-FRAME, or FRAME if NEW-FRAME is nil.\n\
3357 (from
, to
, frame
, new_frame
)
3358 Lisp_Object from
, to
, frame
, new_frame
;
3360 Lisp_Object lface
, copy
;
3362 CHECK_SYMBOL (from
, 0);
3363 CHECK_SYMBOL (to
, 1);
3364 if (NILP (new_frame
))
3369 /* Copy global definition of FROM. We don't make copies of
3370 strings etc. because 20.2 didn't do it either. */
3371 lface
= lface_from_face_name (NULL
, from
, 1);
3372 copy
= Finternal_make_lisp_face (to
, Qnil
);
3376 /* Copy frame-local definition of FROM. */
3377 CHECK_LIVE_FRAME (frame
, 2);
3378 CHECK_LIVE_FRAME (new_frame
, 3);
3379 lface
= lface_from_face_name (XFRAME (frame
), from
, 1);
3380 copy
= Finternal_make_lisp_face (to
, new_frame
);
3383 bcopy (XVECTOR (lface
)->contents
, XVECTOR (copy
)->contents
,
3384 LFACE_VECTOR_SIZE
* sizeof (Lisp_Object
));
3390 DEFUN ("internal-set-lisp-face-attribute", Finternal_set_lisp_face_attribute
,
3391 Sinternal_set_lisp_face_attribute
, 3, 4, 0,
3392 "Set attribute ATTR of FACE to VALUE.\n\
3393 If optional argument FRAME is given, set the face attribute of face FACE\n\
3394 on that frame. If FRAME is t, set the attribute of the default for face\n\
3395 FACE (for new frames). If FRAME is omitted or nil, use the selected\n\
3397 (face
, attr
, value
, frame
)
3398 Lisp_Object face
, attr
, value
, frame
;
3401 Lisp_Object old_value
= Qnil
;
3402 /* Set 1 if ATTR is QCfont. */
3403 int font_attr_p
= 0;
3404 /* Set 1 if ATTR is one of font-related attributes other than QCfont. */
3405 int font_related_attr_p
= 0;
3407 CHECK_SYMBOL (face
, 0);
3408 CHECK_SYMBOL (attr
, 1);
3410 face
= resolve_face_name (face
);
3412 /* Set lface to the Lisp attribute vector of FACE. */
3414 lface
= lface_from_face_name (NULL
, face
, 1);
3418 frame
= selected_frame
;
3420 CHECK_LIVE_FRAME (frame
, 3);
3421 lface
= lface_from_face_name (XFRAME (frame
), face
, 0);
3423 /* If a frame-local face doesn't exist yet, create one. */
3425 lface
= Finternal_make_lisp_face (face
, frame
);
3428 if (EQ (attr
, QCfamily
))
3430 if (!UNSPECIFIEDP (value
))
3432 CHECK_STRING (value
, 3);
3433 if (XSTRING (value
)->size
== 0)
3434 signal_error ("Invalid face family", value
);
3436 old_value
= LFACE_FAMILY (lface
);
3437 LFACE_FAMILY (lface
) = value
;
3438 font_related_attr_p
= 1;
3440 else if (EQ (attr
, QCheight
))
3442 if (!UNSPECIFIEDP (value
))
3444 CHECK_NUMBER (value
, 3);
3445 if (XINT (value
) <= 0)
3446 signal_error ("Invalid face height", value
);
3448 old_value
= LFACE_HEIGHT (lface
);
3449 LFACE_HEIGHT (lface
) = value
;
3450 font_related_attr_p
= 1;
3452 else if (EQ (attr
, QCweight
))
3454 if (!UNSPECIFIEDP (value
))
3456 CHECK_SYMBOL (value
, 3);
3457 if (face_numeric_weight (value
) < 0)
3458 signal_error ("Invalid face weight", value
);
3460 old_value
= LFACE_WEIGHT (lface
);
3461 LFACE_WEIGHT (lface
) = value
;
3462 font_related_attr_p
= 1;
3464 else if (EQ (attr
, QCslant
))
3466 if (!UNSPECIFIEDP (value
))
3468 CHECK_SYMBOL (value
, 3);
3469 if (face_numeric_slant (value
) < 0)
3470 signal_error ("Invalid face slant", value
);
3472 old_value
= LFACE_SLANT (lface
);
3473 LFACE_SLANT (lface
) = value
;
3474 font_related_attr_p
= 1;
3476 else if (EQ (attr
, QCunderline
))
3478 if (!UNSPECIFIEDP (value
))
3479 if ((SYMBOLP (value
)
3481 && !EQ (value
, Qnil
))
3482 /* Underline color. */
3484 && XSTRING (value
)->size
== 0))
3485 signal_error ("Invalid face underline", value
);
3487 old_value
= LFACE_UNDERLINE (lface
);
3488 LFACE_UNDERLINE (lface
) = value
;
3490 else if (EQ (attr
, QCoverline
))
3492 if (!UNSPECIFIEDP (value
))
3493 if ((SYMBOLP (value
)
3495 && !EQ (value
, Qnil
))
3496 /* Overline color. */
3498 && XSTRING (value
)->size
== 0))
3499 signal_error ("Invalid face overline", value
);
3501 old_value
= LFACE_OVERLINE (lface
);
3502 LFACE_OVERLINE (lface
) = value
;
3504 else if (EQ (attr
, QCstrike_through
))
3506 if (!UNSPECIFIEDP (value
))
3507 if ((SYMBOLP (value
)
3509 && !EQ (value
, Qnil
))
3510 /* Strike-through color. */
3512 && XSTRING (value
)->size
== 0))
3513 signal_error ("Invalid face strike-through", value
);
3515 old_value
= LFACE_STRIKE_THROUGH (lface
);
3516 LFACE_STRIKE_THROUGH (lface
) = value
;
3518 else if (EQ (attr
, QCbox
))
3522 /* Allow t meaning a simple box of width 1 in foreground color
3525 value
= make_number (1);
3527 if (UNSPECIFIEDP (value
))
3529 else if (NILP (value
))
3531 else if (INTEGERP (value
))
3532 valid_p
= XINT (value
) > 0;
3533 else if (STRINGP (value
))
3534 valid_p
= XSTRING (value
)->size
> 0;
3535 else if (CONSP (value
))
3551 if (EQ (k
, QCline_width
))
3553 if (!INTEGERP (v
) || XINT (v
) <= 0)
3556 else if (EQ (k
, QCcolor
))
3558 if (!STRINGP (v
) || XSTRING (v
)->size
== 0)
3561 else if (EQ (k
, QCstyle
))
3563 if (!EQ (v
, Qpressed_button
) && !EQ (v
, Qreleased_button
))
3570 valid_p
= NILP (tem
);
3576 signal_error ("Invalid face box", value
);
3578 old_value
= LFACE_BOX (lface
);
3579 LFACE_BOX (lface
) = value
;
3581 else if (EQ (attr
, QCinverse_video
)
3582 || EQ (attr
, QCreverse_video
))
3584 if (!UNSPECIFIEDP (value
))
3586 CHECK_SYMBOL (value
, 3);
3587 if (!EQ (value
, Qt
) && !NILP (value
))
3588 signal_error ("Invalid inverse-video face attribute value", value
);
3590 old_value
= LFACE_INVERSE (lface
);
3591 LFACE_INVERSE (lface
) = value
;
3593 else if (EQ (attr
, QCforeground
))
3595 if (!UNSPECIFIEDP (value
))
3597 /* Don't check for valid color names here because it depends
3598 on the frame (display) whether the color will be valid
3599 when the face is realized. */
3600 CHECK_STRING (value
, 3);
3601 if (XSTRING (value
)->size
== 0)
3602 signal_error ("Empty foreground color value", value
);
3604 old_value
= LFACE_FOREGROUND (lface
);
3605 LFACE_FOREGROUND (lface
) = value
;
3607 else if (EQ (attr
, QCbackground
))
3609 if (!UNSPECIFIEDP (value
))
3611 /* Don't check for valid color names here because it depends
3612 on the frame (display) whether the color will be valid
3613 when the face is realized. */
3614 CHECK_STRING (value
, 3);
3615 if (XSTRING (value
)->size
== 0)
3616 signal_error ("Empty background color value", value
);
3618 old_value
= LFACE_BACKGROUND (lface
);
3619 LFACE_BACKGROUND (lface
) = value
;
3621 else if (EQ (attr
, QCstipple
))
3623 #ifdef HAVE_X_WINDOWS
3624 if (!UNSPECIFIEDP (value
)
3626 && NILP (Fbitmap_spec_p (value
)))
3627 signal_error ("Invalid stipple attribute", value
);
3628 old_value
= LFACE_STIPPLE (lface
);
3629 LFACE_STIPPLE (lface
) = value
;
3630 #endif /* HAVE_X_WINDOWS */
3632 else if (EQ (attr
, QCwidth
))
3634 if (!UNSPECIFIEDP (value
))
3636 CHECK_SYMBOL (value
, 3);
3637 if (face_numeric_swidth (value
) < 0)
3638 signal_error ("Invalid face width", value
);
3640 old_value
= LFACE_SWIDTH (lface
);
3641 LFACE_SWIDTH (lface
) = value
;
3642 font_related_attr_p
= 1;
3644 else if (EQ (attr
, QCfont
))
3646 #ifdef HAVE_WINDOW_SYSTEM
3647 /* Set font-related attributes of the Lisp face from an
3652 CHECK_STRING (value
, 3);
3654 f
= SELECTED_FRAME ();
3656 f
= check_x_frame (frame
);
3658 /* VALUE may be a fontset name or an alias of fontset. In such
3659 a case, use the base fontset name. */
3660 tmp
= Fquery_fontset (value
, Qnil
);
3664 if (!set_lface_from_font_name (f
, lface
, value
, 1, 1))
3665 signal_error ("Invalid font or fontset name", value
);
3668 #endif /* HAVE_WINDOW_SYSTEM */
3670 else if (EQ (attr
, QCbold
))
3672 old_value
= LFACE_WEIGHT (lface
);
3673 LFACE_WEIGHT (lface
) = NILP (value
) ? Qnormal
: Qbold
;
3674 font_related_attr_p
= 1;
3676 else if (EQ (attr
, QCitalic
))
3678 old_value
= LFACE_SLANT (lface
);
3679 LFACE_SLANT (lface
) = NILP (value
) ? Qnormal
: Qitalic
;
3680 font_related_attr_p
= 1;
3683 signal_error ("Invalid face attribute name", attr
);
3685 if (font_related_attr_p
3686 && !UNSPECIFIEDP (value
))
3687 /* If a font-related attribute other than QCfont is specified, the
3688 original `font' attribute nor that of default face is useless
3689 to determine a new font. Thus, we set it to nil so that font
3690 selection mechanism doesn't use it. */
3691 LFACE_FONT (lface
) = Qnil
;
3693 /* Changing a named face means that all realized faces depending on
3694 that face are invalid. Since we cannot tell which realized faces
3695 depend on the face, make sure they are all removed. This is done
3696 by incrementing face_change_count. The next call to
3697 init_iterator will then free realized faces. */
3699 && (EQ (attr
, QCfont
)
3700 || NILP (Fequal (old_value
, value
))))
3702 ++face_change_count
;
3703 ++windows_or_buffers_changed
;
3706 #ifdef HAVE_WINDOW_SYSTEM
3709 && !UNSPECIFIEDP (value
)
3710 && NILP (Fequal (old_value
, value
)))
3716 if (EQ (face
, Qdefault
))
3718 /* Changed font-related attributes of the `default' face are
3719 reflected in changed `font' frame parameters. */
3720 if ((font_related_attr_p
|| font_attr_p
)
3721 && lface_fully_specified_p (XVECTOR (lface
)->contents
))
3722 set_font_frame_param (frame
, lface
);
3723 else if (EQ (attr
, QCforeground
))
3724 param
= Qforeground_color
;
3725 else if (EQ (attr
, QCbackground
))
3726 param
= Qbackground_color
;
3729 else if (EQ (face
, Qscroll_bar
))
3731 /* Changing the colors of `scroll-bar' sets frame parameters
3732 `scroll-bar-foreground' and `scroll-bar-background'. */
3733 if (EQ (attr
, QCforeground
))
3734 param
= Qscroll_bar_foreground
;
3735 else if (EQ (attr
, QCbackground
))
3736 param
= Qscroll_bar_background
;
3739 else if (EQ (face
, Qborder
))
3741 /* Changing background color of `border' sets frame parameter
3743 if (EQ (attr
, QCbackground
))
3744 param
= Qborder_color
;
3746 else if (EQ (face
, Qcursor
))
3748 /* Changing background color of `cursor' sets frame parameter
3750 if (EQ (attr
, QCbackground
))
3751 param
= Qcursor_color
;
3753 else if (EQ (face
, Qmouse
))
3755 /* Changing background color of `mouse' sets frame parameter
3757 if (EQ (attr
, QCbackground
))
3758 param
= Qmouse_color
;
3762 Fmodify_frame_parameters (frame
, Fcons (Fcons (param
, value
), Qnil
));
3765 #endif /* HAVE_WINDOW_SYSTEM */
3771 #ifdef HAVE_WINDOW_SYSTEM
3773 /* Set the `font' frame parameter of FRAME determined from `default'
3774 face attributes LFACE. If a face or fontset name is explicitely
3775 specfied in LFACE, use it as is. Otherwise, determine a font name
3776 from the other font-related atrributes of LFACE. In that case, if
3777 there's no matching font, signals an error. */
3780 set_font_frame_param (frame
, lface
)
3781 Lisp_Object frame
, lface
;
3783 struct frame
*f
= XFRAME (frame
);
3784 Lisp_Object font_name
;
3787 if (STRINGP (LFACE_FONT (lface
)))
3788 font_name
= LFACE_FONT (lface
);
3791 /* Choose a font name that reflects LFACE's attributes and has
3792 the registry and encoding pattern specified in the default
3793 fontset (3rd arg: -1) for ASCII characters (4th arg: 0). */
3794 font
= choose_face_font (f
, XVECTOR (lface
)->contents
, -1, 0);
3796 error ("No font matches the specified attribute");
3797 font_name
= build_string (font
);
3800 store_frame_param (f
, Qfont
, font_name
);
3804 /* Update the corresponding face when frame parameter PARAM on frame F
3805 has been assigned the value NEW_VALUE. */
3808 update_face_from_frame_parameter (f
, param
, new_value
)
3810 Lisp_Object param
, new_value
;
3814 /* If there are no faces yet, give up. This is the case when called
3815 from Fx_create_frame, and we do the necessary things later in
3816 face-set-after-frame-defaults. */
3817 if (NILP (f
->face_alist
))
3820 if (EQ (param
, Qforeground_color
))
3822 lface
= lface_from_face_name (f
, Qdefault
, 1);
3823 LFACE_FOREGROUND (lface
) = (STRINGP (new_value
)
3824 ? new_value
: Qunspecified
);
3825 realize_basic_faces (f
);
3827 else if (EQ (param
, Qbackground_color
))
3831 /* Changing the background color might change the background
3832 mode, so that we have to load new defface specs. Call
3833 frame-update-face-colors to do that. */
3834 XSETFRAME (frame
, f
);
3835 call1 (Qframe_update_face_colors
, frame
);
3837 lface
= lface_from_face_name (f
, Qdefault
, 1);
3838 LFACE_BACKGROUND (lface
) = (STRINGP (new_value
)
3839 ? new_value
: Qunspecified
);
3840 realize_basic_faces (f
);
3842 if (EQ (param
, Qborder_color
))
3844 lface
= lface_from_face_name (f
, Qborder
, 1);
3845 LFACE_BACKGROUND (lface
) = (STRINGP (new_value
)
3846 ? new_value
: Qunspecified
);
3848 else if (EQ (param
, Qcursor_color
))
3850 lface
= lface_from_face_name (f
, Qcursor
, 1);
3851 LFACE_BACKGROUND (lface
) = (STRINGP (new_value
)
3852 ? new_value
: Qunspecified
);
3854 else if (EQ (param
, Qmouse_color
))
3856 lface
= lface_from_face_name (f
, Qmouse
, 1);
3857 LFACE_BACKGROUND (lface
) = (STRINGP (new_value
)
3858 ? new_value
: Qunspecified
);
3863 /* Get the value of X resource RESOURCE, class CLASS for the display
3864 of frame FRAME. This is here because ordinary `x-get-resource'
3865 doesn't take a frame argument. */
3867 DEFUN ("internal-face-x-get-resource", Finternal_face_x_get_resource
,
3868 Sinternal_face_x_get_resource
, 3, 3, 0, "")
3869 (resource
, class, frame
)
3870 Lisp_Object resource
, class, frame
;
3872 Lisp_Object value
= Qnil
;
3874 CHECK_STRING (resource
, 0);
3875 CHECK_STRING (class, 1);
3876 CHECK_LIVE_FRAME (frame
, 2);
3878 value
= display_x_get_resource (FRAME_X_DISPLAY_INFO (XFRAME (frame
)),
3879 resource
, class, Qnil
, Qnil
);
3886 /* Return resource string VALUE as a boolean value, i.e. nil, or t.
3887 If VALUE is "on" or "true", return t. If VALUE is "off" or
3888 "false", return nil. Otherwise, if SIGNAL_P is non-zero, signal an
3889 error; if SIGNAL_P is zero, return 0. */
3892 face_boolean_x_resource_value (value
, signal_p
)
3896 Lisp_Object result
= make_number (0);
3898 xassert (STRINGP (value
));
3900 if (xstricmp (XSTRING (value
)->data
, "on") == 0
3901 || xstricmp (XSTRING (value
)->data
, "true") == 0)
3903 else if (xstricmp (XSTRING (value
)->data
, "off") == 0
3904 || xstricmp (XSTRING (value
)->data
, "false") == 0)
3906 else if (xstricmp (XSTRING (value
)->data
, "unspecified") == 0)
3907 result
= Qunspecified
;
3909 signal_error ("Invalid face attribute value from X resource", value
);
3915 DEFUN ("internal-set-lisp-face-attribute-from-resource",
3916 Finternal_set_lisp_face_attribute_from_resource
,
3917 Sinternal_set_lisp_face_attribute_from_resource
,
3919 (face
, attr
, value
, frame
)
3920 Lisp_Object face
, attr
, value
, frame
;
3922 CHECK_SYMBOL (face
, 0);
3923 CHECK_SYMBOL (attr
, 1);
3924 CHECK_STRING (value
, 2);
3926 if (xstricmp (XSTRING (value
)->data
, "unspecified") == 0)
3927 value
= Qunspecified
;
3928 else if (EQ (attr
, QCheight
))
3930 value
= Fstring_to_number (value
, make_number (10));
3931 if (XINT (value
) <= 0)
3932 signal_error ("Invalid face height from X resource", value
);
3934 else if (EQ (attr
, QCbold
) || EQ (attr
, QCitalic
))
3935 value
= face_boolean_x_resource_value (value
, 1);
3936 else if (EQ (attr
, QCweight
) || EQ (attr
, QCslant
) || EQ (attr
, QCwidth
))
3937 value
= intern (XSTRING (value
)->data
);
3938 else if (EQ (attr
, QCreverse_video
) || EQ (attr
, QCinverse_video
))
3939 value
= face_boolean_x_resource_value (value
, 1);
3940 else if (EQ (attr
, QCunderline
)
3941 || EQ (attr
, QCoverline
)
3942 || EQ (attr
, QCstrike_through
)
3943 || EQ (attr
, QCbox
))
3945 Lisp_Object boolean_value
;
3947 /* If the result of face_boolean_x_resource_value is t or nil,
3948 VALUE does NOT specify a color. */
3949 boolean_value
= face_boolean_x_resource_value (value
, 0);
3950 if (SYMBOLP (boolean_value
))
3951 value
= boolean_value
;
3954 return Finternal_set_lisp_face_attribute (face
, attr
, value
, frame
);
3957 #endif /* HAVE_WINDOW_SYSTEM */
3960 #ifdef HAVE_X_WINDOWS
3961 /***********************************************************************
3963 ***********************************************************************/
3965 #ifdef USE_X_TOOLKIT
3967 /* Structure used to pass X resources to functions called via
3968 XtApplyToWidgets. */
3979 static void xm_apply_resources
P_ ((Widget
, XtPointer
));
3980 static void xm_set_menu_resources_from_menu_face
P_ ((struct frame
*, Widget
));
3983 /* Set widget W's X resources from P which points to an x_resources
3984 structure. If W is a cascade button, apply resources to W's
3988 xm_apply_resources (w
, p
)
3993 struct x_resources
*res
= (struct x_resources
*) p
;
3995 XtSetValues (w
, res
->av
, res
->ac
);
3996 XtVaGetValues (w
, XmNsubMenuId
, &submenu
, NULL
);
3999 XtSetValues (submenu
, res
->av
, res
->ac
);
4000 XtApplyToWidgets (submenu
, xm_apply_resources
, p
);
4005 /* Set X resources of menu-widget WIDGET on frame F from face `menu'.
4006 This is the LessTif/Motif version. As of LessTif 0.88 it has the
4009 1. Setting the XmNfontList resource leads to an infinite loop
4010 somewhere in LessTif. */
4013 xm_set_menu_resources_from_menu_face (f
, widget
)
4023 lface
= lface_from_face_name (f
, Qmenu
, 1);
4024 face
= FACE_FROM_ID (f
, MENU_FACE_ID
);
4026 if (!UNSPECIFIEDP (LFACE_FOREGROUND (lface
)))
4028 XtSetArg (av
[ac
], XmNforeground
, face
->foreground
);
4032 if (!UNSPECIFIEDP (LFACE_BACKGROUND (lface
)))
4034 XtSetArg (av
[ac
], XmNbackground
, face
->background
);
4038 /* If any font-related attribute of `menu' is set, set the font. */
4040 && (!UNSPECIFIEDP (LFACE_FAMILY (lface
))
4041 || !UNSPECIFIEDP (LFACE_SWIDTH (lface
))
4042 || !UNSPECIFIEDP (LFACE_WEIGHT (lface
))
4043 || !UNSPECIFIEDP (LFACE_SLANT (lface
))
4044 || !UNSPECIFIEDP (LFACE_HEIGHT (lface
))))
4046 #if 0 /* Setting the font leads to an infinite loop somewhere
4047 in LessTif during geometry computation. */
4049 fe
= XmFontListEntryCreate ("menu_font", XmFONT_IS_FONT
, face
->font
);
4050 fl
= XmFontListAppendEntry (NULL
, fe
);
4051 XtSetArg (av
[ac
], XmNfontList
, fl
);
4056 xassert (ac
<= sizeof av
/ sizeof *av
);
4060 struct x_resources res
;
4062 XtSetValues (widget
, av
, ac
);
4063 res
.av
= av
, res
.ac
= ac
;
4064 XtApplyToWidgets (widget
, xm_apply_resources
, &res
);
4066 XmFontListFree (fl
);
4071 #endif /* USE_MOTIF */
4075 static void xl_apply_resources
P_ ((Widget
, XtPointer
));
4076 static void xl_set_menu_resources_from_menu_face
P_ ((struct frame
*, Widget
));
4079 /* Set widget W's resources from P which points to an x_resources
4083 xl_apply_resources (widget
, p
)
4087 struct x_resources
*res
= (struct x_resources
*) p
;
4088 XtSetValues (widget
, res
->av
, res
->ac
);
4092 /* On frame F, set X resources of menu-widget WIDGET from face `menu'.
4093 This is the Lucid version. */
4096 xl_set_menu_resources_from_menu_face (f
, widget
)
4105 lface
= lface_from_face_name (f
, Qmenu
, 1);
4106 face
= FACE_FROM_ID (f
, MENU_FACE_ID
);
4108 if (!UNSPECIFIEDP (LFACE_FOREGROUND (lface
)))
4110 XtSetArg (av
[ac
], XtNforeground
, face
->foreground
);
4114 if (!UNSPECIFIEDP (LFACE_BACKGROUND (lface
)))
4116 XtSetArg (av
[ac
], XtNbackground
, face
->background
);
4121 && (!UNSPECIFIEDP (LFACE_FAMILY (lface
))
4122 || !UNSPECIFIEDP (LFACE_SWIDTH (lface
))
4123 || !UNSPECIFIEDP (LFACE_WEIGHT (lface
))
4124 || !UNSPECIFIEDP (LFACE_SLANT (lface
))
4125 || !UNSPECIFIEDP (LFACE_HEIGHT (lface
))))
4127 XtSetArg (av
[ac
], XtNfont
, face
->font
);
4133 struct x_resources res
;
4135 XtSetValues (widget
, av
, ac
);
4137 /* We must do children here in case we're handling a pop-up menu
4138 in which case WIDGET is a popup shell. XtApplyToWidgets
4139 is a function from lwlib. */
4140 res
.av
= av
, res
.ac
= ac
;
4141 XtApplyToWidgets (widget
, xl_apply_resources
, &res
);
4145 #endif /* USE_LUCID */
4148 /* On frame F, set X resources of menu-widget WIDGET from face `menu'. */
4151 x_set_menu_resources_from_menu_face (f
, widget
)
4155 /* Realized faces may have been removed on frame F, e.g. because of
4156 face attribute changes. Recompute them, if necessary, since we
4157 will need the `menu' face. */
4158 if (f
->face_cache
->used
== 0)
4159 recompute_basic_faces (f
);
4162 xl_set_menu_resources_from_menu_face (f
, widget
);
4165 xm_set_menu_resources_from_menu_face (f
, widget
);
4169 #endif /* USE_X_TOOLKIT */
4171 #endif /* HAVE_X_WINDOWS */
4175 DEFUN ("internal-get-lisp-face-attribute", Finternal_get_lisp_face_attribute
,
4176 Sinternal_get_lisp_face_attribute
,
4178 "Return face attribute KEYWORD of face SYMBOL.\n\
4179 If SYMBOL does not name a valid Lisp face or KEYWORD isn't a valid\n\
4180 face attribute name, signal an error.\n\
4181 If the optional argument FRAME is given, report on face FACE in that\n\
4182 frame. If FRAME is t, report on the defaults for face FACE (for new\n\
4183 frames). If FRAME is omitted or nil, use the selected frame.")
4184 (symbol
, keyword
, frame
)
4185 Lisp_Object symbol
, keyword
, frame
;
4187 Lisp_Object lface
, value
= Qnil
;
4189 CHECK_SYMBOL (symbol
, 0);
4190 CHECK_SYMBOL (keyword
, 1);
4193 lface
= lface_from_face_name (NULL
, symbol
, 1);
4197 frame
= selected_frame
;
4198 CHECK_LIVE_FRAME (frame
, 2);
4199 lface
= lface_from_face_name (XFRAME (frame
), symbol
, 1);
4202 if (EQ (keyword
, QCfamily
))
4203 value
= LFACE_FAMILY (lface
);
4204 else if (EQ (keyword
, QCheight
))
4205 value
= LFACE_HEIGHT (lface
);
4206 else if (EQ (keyword
, QCweight
))
4207 value
= LFACE_WEIGHT (lface
);
4208 else if (EQ (keyword
, QCslant
))
4209 value
= LFACE_SLANT (lface
);
4210 else if (EQ (keyword
, QCunderline
))
4211 value
= LFACE_UNDERLINE (lface
);
4212 else if (EQ (keyword
, QCoverline
))
4213 value
= LFACE_OVERLINE (lface
);
4214 else if (EQ (keyword
, QCstrike_through
))
4215 value
= LFACE_STRIKE_THROUGH (lface
);
4216 else if (EQ (keyword
, QCbox
))
4217 value
= LFACE_BOX (lface
);
4218 else if (EQ (keyword
, QCinverse_video
)
4219 || EQ (keyword
, QCreverse_video
))
4220 value
= LFACE_INVERSE (lface
);
4221 else if (EQ (keyword
, QCforeground
))
4222 value
= LFACE_FOREGROUND (lface
);
4223 else if (EQ (keyword
, QCbackground
))
4224 value
= LFACE_BACKGROUND (lface
);
4225 else if (EQ (keyword
, QCstipple
))
4226 value
= LFACE_STIPPLE (lface
);
4227 else if (EQ (keyword
, QCwidth
))
4228 value
= LFACE_SWIDTH (lface
);
4229 else if (EQ (keyword
, QCfont
))
4230 value
= LFACE_FONT (lface
);
4232 signal_error ("Invalid face attribute name", keyword
);
4238 DEFUN ("internal-lisp-face-attribute-values",
4239 Finternal_lisp_face_attribute_values
,
4240 Sinternal_lisp_face_attribute_values
, 1, 1, 0,
4241 "Return a list of valid discrete values for face attribute ATTR.\n\
4242 Value is nil if ATTR doesn't have a discrete set of valid values.")
4246 Lisp_Object result
= Qnil
;
4248 CHECK_SYMBOL (attr
, 0);
4250 if (EQ (attr
, QCweight
)
4251 || EQ (attr
, QCslant
)
4252 || EQ (attr
, QCwidth
))
4254 /* Extract permissible symbols from tables. */
4255 struct table_entry
*table
;
4258 if (EQ (attr
, QCweight
))
4259 table
= weight_table
, dim
= DIM (weight_table
);
4260 else if (EQ (attr
, QCslant
))
4261 table
= slant_table
, dim
= DIM (slant_table
);
4263 table
= swidth_table
, dim
= DIM (swidth_table
);
4265 for (i
= 0; i
< dim
; ++i
)
4267 Lisp_Object symbol
= *table
[i
].symbol
;
4268 Lisp_Object tail
= result
;
4271 && !EQ (XCAR (tail
), symbol
))
4275 result
= Fcons (symbol
, result
);
4278 else if (EQ (attr
, QCunderline
))
4279 result
= Fcons (Qt
, Fcons (Qnil
, Qnil
));
4280 else if (EQ (attr
, QCoverline
))
4281 result
= Fcons (Qt
, Fcons (Qnil
, Qnil
));
4282 else if (EQ (attr
, QCstrike_through
))
4283 result
= Fcons (Qt
, Fcons (Qnil
, Qnil
));
4284 else if (EQ (attr
, QCinverse_video
) || EQ (attr
, QCreverse_video
))
4285 result
= Fcons (Qt
, Fcons (Qnil
, Qnil
));
4291 DEFUN ("internal-merge-in-global-face", Finternal_merge_in_global_face
,
4292 Sinternal_merge_in_global_face
, 2, 2, 0,
4293 "Add attributes from frame-default definition of FACE to FACE on FRAME.")
4295 Lisp_Object face
, frame
;
4297 Lisp_Object global_lface
, local_lface
;
4298 CHECK_LIVE_FRAME (frame
, 1);
4299 global_lface
= lface_from_face_name (NULL
, face
, 1);
4300 local_lface
= lface_from_face_name (XFRAME (frame
), face
, 0);
4301 if (NILP (local_lface
))
4302 local_lface
= Finternal_make_lisp_face (face
, frame
);
4303 merge_face_vectors (XVECTOR (global_lface
)->contents
,
4304 XVECTOR (local_lface
)->contents
);
4309 /* The following function is implemented for compatibility with 20.2.
4310 The function is used in x-resolve-fonts when it is asked to
4311 return fonts with the same size as the font of a face. This is
4312 done in fontset.el. */
4314 DEFUN ("face-font", Fface_font
, Sface_font
, 1, 2, 0,
4315 "Return the font name of face FACE, or nil if it is unspecified.\n\
4316 If the optional argument FRAME is given, report on face FACE in that frame.\n\
4317 If FRAME is t, report on the defaults for face FACE (for new frames).\n\
4318 The font default for a face is either nil, or a list\n\
4319 of the form (bold), (italic) or (bold italic).\n\
4320 If FRAME is omitted or nil, use the selected frame.")
4322 Lisp_Object face
, frame
;
4326 Lisp_Object result
= Qnil
;
4327 Lisp_Object lface
= lface_from_face_name (NULL
, face
, 1);
4329 if (!UNSPECIFIEDP (LFACE_WEIGHT (lface
))
4330 && !EQ (LFACE_WEIGHT (lface
), Qnormal
))
4331 result
= Fcons (Qbold
, result
);
4333 if (!NILP (LFACE_SLANT (lface
))
4334 && !EQ (LFACE_SLANT (lface
), Qnormal
))
4335 result
= Fcons (Qitalic
, result
);
4341 struct frame
*f
= frame_or_selected_frame (frame
, 1);
4342 int face_id
= lookup_named_face (f
, face
, 0);
4343 struct face
*face
= FACE_FROM_ID (f
, face_id
);
4344 return build_string (face
->font_name
);
4349 /* Compare face vectors V1 and V2 for equality. Value is non-zero if
4350 all attributes are `equal'. Tries to be fast because this function
4351 is called quite often. */
4354 lface_equal_p (v1
, v2
)
4355 Lisp_Object
*v1
, *v2
;
4359 for (i
= 1; i
< LFACE_VECTOR_SIZE
&& equal_p
; ++i
)
4361 Lisp_Object a
= v1
[i
];
4362 Lisp_Object b
= v2
[i
];
4364 /* Type can differ, e.g. when one attribute is unspecified, i.e. nil,
4365 and the other is specified. */
4366 equal_p
= XTYPE (a
) == XTYPE (b
);
4375 equal_p
= (XSTRING (a
)->size
== XSTRING (b
)->size
4376 && bcmp (XSTRING (a
)->data
, XSTRING (b
)->data
,
4377 XSTRING (a
)->size
) == 0);
4386 equal_p
= !NILP (Fequal (a
, b
));
4396 DEFUN ("internal-lisp-face-equal-p", Finternal_lisp_face_equal_p
,
4397 Sinternal_lisp_face_equal_p
, 2, 3, 0,
4398 "True if FACE1 and FACE2 are equal.\n\
4399 If the optional argument FRAME is given, report on face FACE in that frame.\n\
4400 If FRAME is t, report on the defaults for face FACE (for new frames).\n\
4401 If FRAME is omitted or nil, use the selected frame.")
4402 (face1
, face2
, frame
)
4403 Lisp_Object face1
, face2
, frame
;
4407 Lisp_Object lface1
, lface2
;
4412 /* Don't use check_x_frame here because this function is called
4413 before X frames exist. At that time, if FRAME is nil,
4414 selected_frame will be used which is the frame dumped with
4415 Emacs. That frame is not an X frame. */
4416 f
= frame_or_selected_frame (frame
, 2);
4418 lface1
= lface_from_face_name (NULL
, face1
, 1);
4419 lface2
= lface_from_face_name (NULL
, face2
, 1);
4420 equal_p
= lface_equal_p (XVECTOR (lface1
)->contents
,
4421 XVECTOR (lface2
)->contents
);
4422 return equal_p
? Qt
: Qnil
;
4426 DEFUN ("internal-lisp-face-empty-p", Finternal_lisp_face_empty_p
,
4427 Sinternal_lisp_face_empty_p
, 1, 2, 0,
4428 "True if FACE has no attribute specified.\n\
4429 If the optional argument FRAME is given, report on face FACE in that frame.\n\
4430 If FRAME is t, report on the defaults for face FACE (for new frames).\n\
4431 If FRAME is omitted or nil, use the selected frame.")
4433 Lisp_Object face
, frame
;
4440 frame
= selected_frame
;
4441 CHECK_LIVE_FRAME (frame
, 0);
4445 lface
= lface_from_face_name (NULL
, face
, 1);
4447 lface
= lface_from_face_name (f
, face
, 1);
4449 for (i
= 1; i
< LFACE_VECTOR_SIZE
; ++i
)
4450 if (!UNSPECIFIEDP (XVECTOR (lface
)->contents
[i
]))
4453 return i
== LFACE_VECTOR_SIZE
? Qt
: Qnil
;
4457 DEFUN ("frame-face-alist", Fframe_face_alist
, Sframe_face_alist
,
4459 "Return an alist of frame-local faces defined on FRAME.\n\
4460 For internal use only.")
4464 struct frame
*f
= frame_or_selected_frame (frame
, 0);
4465 return f
->face_alist
;
4469 /* Return a hash code for Lisp string STRING with case ignored. Used
4470 below in computing a hash value for a Lisp face. */
4472 static INLINE
unsigned
4473 hash_string_case_insensitive (string
)
4478 xassert (STRINGP (string
));
4479 for (s
= XSTRING (string
)->data
; *s
; ++s
)
4480 hash
= (hash
<< 1) ^ tolower (*s
);
4485 /* Return a hash code for face attribute vector V. */
4487 static INLINE
unsigned
4491 return (hash_string_case_insensitive (v
[LFACE_FAMILY_INDEX
])
4492 ^ hash_string_case_insensitive (v
[LFACE_FOREGROUND_INDEX
])
4493 ^ hash_string_case_insensitive (v
[LFACE_BACKGROUND_INDEX
])
4494 ^ XFASTINT (v
[LFACE_WEIGHT_INDEX
])
4495 ^ XFASTINT (v
[LFACE_SLANT_INDEX
])
4496 ^ XFASTINT (v
[LFACE_SWIDTH_INDEX
])
4497 ^ XFASTINT (v
[LFACE_HEIGHT_INDEX
]));
4501 /* Return non-zero if LFACE1 and LFACE2 specify the same font (without
4502 considering charsets/registries). They do if they specify the same
4503 family, point size, weight, width, slant, and fontset. Both LFACE1
4504 and LFACE2 must be fully-specified. */
4507 lface_same_font_attributes_p (lface1
, lface2
)
4508 Lisp_Object
*lface1
, *lface2
;
4510 xassert (lface_fully_specified_p (lface1
)
4511 && lface_fully_specified_p (lface2
));
4512 return (xstricmp (XSTRING (lface1
[LFACE_FAMILY_INDEX
])->data
,
4513 XSTRING (lface2
[LFACE_FAMILY_INDEX
])->data
) == 0
4514 && (XFASTINT (lface1
[LFACE_HEIGHT_INDEX
])
4515 == XFASTINT (lface2
[LFACE_HEIGHT_INDEX
]))
4516 && EQ (lface1
[LFACE_SWIDTH_INDEX
], lface2
[LFACE_SWIDTH_INDEX
])
4517 && EQ (lface1
[LFACE_WEIGHT_INDEX
], lface2
[LFACE_WEIGHT_INDEX
])
4518 && EQ (lface1
[LFACE_SLANT_INDEX
], lface2
[LFACE_SLANT_INDEX
])
4519 && (EQ (lface1
[LFACE_FONT_INDEX
], lface2
[LFACE_FONT_INDEX
])
4520 || (STRINGP (lface1
[LFACE_FONT_INDEX
])
4521 && STRINGP (lface2
[LFACE_FONT_INDEX
])
4522 && xstricmp (XSTRING (lface1
[LFACE_FONT_INDEX
])->data
,
4523 XSTRING (lface2
[LFACE_FONT_INDEX
])->data
))));
4528 /***********************************************************************
4530 ***********************************************************************/
4532 /* Allocate and return a new realized face for Lisp face attribute
4535 static struct face
*
4536 make_realized_face (attr
)
4539 struct face
*face
= (struct face
*) xmalloc (sizeof *face
);
4540 bzero (face
, sizeof *face
);
4541 face
->ascii_face
= face
;
4542 bcopy (attr
, face
->lface
, sizeof face
->lface
);
4547 /* Free realized face FACE, including its X resources. FACE may
4551 free_realized_face (f
, face
)
4557 #ifdef HAVE_WINDOW_SYSTEM
4558 if (FRAME_WINDOW_P (f
))
4560 /* Free fontset of FACE if it is ASCII face. */
4561 if (face
->fontset
>= 0 && face
== face
->ascii_face
)
4562 free_face_fontset (f
, face
);
4565 x_free_gc (f
, face
->gc
);
4569 free_face_colors (f
, face
);
4570 x_destroy_bitmap (f
, face
->stipple
);
4572 #endif /* HAVE_WINDOW_SYSTEM */
4579 /* Prepare face FACE for subsequent display on frame F. This
4580 allocated GCs if they haven't been allocated yet or have been freed
4581 by clearing the face cache. */
4584 prepare_face_for_display (f
, face
)
4588 #ifdef HAVE_WINDOW_SYSTEM
4589 xassert (FRAME_WINDOW_P (f
));
4594 unsigned long mask
= GCForeground
| GCBackground
| GCGraphicsExposures
;
4596 xgcv
.foreground
= face
->foreground
;
4597 xgcv
.background
= face
->background
;
4598 #ifdef HAVE_X_WINDOWS
4599 xgcv
.graphics_exposures
= False
;
4601 /* The font of FACE may be null if we couldn't load it. */
4604 #ifdef HAVE_X_WINDOWS
4605 xgcv
.font
= face
->font
->fid
;
4608 xgcv
.font
= face
->font
;
4614 #ifdef HAVE_X_WINDOWS
4617 xgcv
.fill_style
= FillOpaqueStippled
;
4618 xgcv
.stipple
= x_bitmap_pixmap (f
, face
->stipple
);
4619 mask
|= GCFillStyle
| GCStipple
;
4622 face
->gc
= x_create_gc (f
, mask
, &xgcv
);
4625 #endif /* HAVE_WINDOW_SYSTEM */
4629 /***********************************************************************
4631 ***********************************************************************/
4633 /* Return a new face cache for frame F. */
4635 static struct face_cache
*
4639 struct face_cache
*c
;
4642 c
= (struct face_cache
*) xmalloc (sizeof *c
);
4643 bzero (c
, sizeof *c
);
4644 size
= FACE_CACHE_BUCKETS_SIZE
* sizeof *c
->buckets
;
4645 c
->buckets
= (struct face
**) xmalloc (size
);
4646 bzero (c
->buckets
, size
);
4648 c
->faces_by_id
= (struct face
**) xmalloc (c
->size
* sizeof *c
->faces_by_id
);
4654 /* Clear out all graphics contexts for all realized faces, except for
4655 the basic faces. This should be done from time to time just to avoid
4656 keeping too many graphics contexts that are no longer needed. */
4660 struct face_cache
*c
;
4662 if (c
&& FRAME_WINDOW_P (c
->f
))
4664 #ifdef HAVE_WINDOW_SYSTEM
4666 for (i
= BASIC_FACE_ID_SENTINEL
; i
< c
->used
; ++i
)
4668 struct face
*face
= c
->faces_by_id
[i
];
4669 if (face
&& face
->gc
)
4671 x_free_gc (c
->f
, face
->gc
);
4675 #endif /* HAVE_WINDOW_SYSTEM */
4680 /* Free all realized faces in face cache C, including basic faces. C
4681 may be null. If faces are freed, make sure the frame's current
4682 matrix is marked invalid, so that a display caused by an expose
4683 event doesn't try to use faces we destroyed. */
4686 free_realized_faces (c
)
4687 struct face_cache
*c
;
4692 struct frame
*f
= c
->f
;
4694 /* We must block input here because we can't process X events
4695 safely while only some faces are freed, or when the frame's
4696 current matrix still references freed faces. */
4699 for (i
= 0; i
< c
->used
; ++i
)
4701 free_realized_face (f
, c
->faces_by_id
[i
]);
4702 c
->faces_by_id
[i
] = NULL
;
4706 size
= FACE_CACHE_BUCKETS_SIZE
* sizeof *c
->buckets
;
4707 bzero (c
->buckets
, size
);
4709 /* Must do a thorough redisplay the next time. Mark current
4710 matrices as invalid because they will reference faces freed
4711 above. This function is also called when a frame is
4712 destroyed. In this case, the root window of F is nil. */
4713 if (WINDOWP (f
->root_window
))
4715 clear_current_matrices (f
);
4716 ++windows_or_buffers_changed
;
4724 /* Free all faces realized for multibyte characters on frame F that
4728 free_realized_multibyte_face (f
, fontset
)
4732 struct face_cache
*cache
= FRAME_FACE_CACHE (f
);
4736 /* We must block input here because we can't process X events safely
4737 while only some faces are freed, or when the frame's current
4738 matrix still references freed faces. */
4741 for (i
= 0; i
< cache
->used
; i
++)
4743 face
= cache
->faces_by_id
[i
];
4745 && face
!= face
->ascii_face
4746 && face
->fontset
== fontset
)
4748 uncache_face (cache
, face
);
4749 free_realized_face (f
, face
);
4753 /* Must do a thorough redisplay the next time. Mark current
4754 matrices as invalid because they will reference faces freed
4755 above. This function is also called when a frame is destroyed.
4756 In this case, the root window of F is nil. */
4757 if (WINDOWP (f
->root_window
))
4759 clear_current_matrices (f
);
4760 ++windows_or_buffers_changed
;
4767 /* Free all realized faces on FRAME or on all frames if FRAME is nil.
4768 This is done after attributes of a named face have been changed,
4769 because we can't tell which realized faces depend on that face. */
4772 free_all_realized_faces (frame
)
4778 FOR_EACH_FRAME (rest
, frame
)
4779 free_realized_faces (FRAME_FACE_CACHE (XFRAME (frame
)));
4782 free_realized_faces (FRAME_FACE_CACHE (XFRAME (frame
)));
4786 /* Free face cache C and faces in it, including their X resources. */
4790 struct face_cache
*c
;
4794 free_realized_faces (c
);
4796 xfree (c
->faces_by_id
);
4802 /* Cache realized face FACE in face cache C. HASH is the hash value
4803 of FACE. If FACE->fontset >= 0, add the new face to the end of the
4804 collision list of the face hash table of C. This is done because
4805 otherwise lookup_face would find FACE for every character, even if
4806 faces with the same attributes but for specific characters exist. */
4809 cache_face (c
, face
, hash
)
4810 struct face_cache
*c
;
4814 int i
= hash
% FACE_CACHE_BUCKETS_SIZE
;
4818 if (face
->fontset
>= 0)
4820 struct face
*last
= c
->buckets
[i
];
4831 c
->buckets
[i
] = face
;
4832 face
->prev
= face
->next
= NULL
;
4838 face
->next
= c
->buckets
[i
];
4840 face
->next
->prev
= face
;
4841 c
->buckets
[i
] = face
;
4844 /* Find a free slot in C->faces_by_id and use the index of the free
4845 slot as FACE->id. */
4846 for (i
= 0; i
< c
->used
; ++i
)
4847 if (c
->faces_by_id
[i
] == NULL
)
4851 /* Maybe enlarge C->faces_by_id. */
4852 if (i
== c
->used
&& c
->used
== c
->size
)
4854 int new_size
= 2 * c
->size
;
4855 int sz
= new_size
* sizeof *c
->faces_by_id
;
4856 c
->faces_by_id
= (struct face
**) xrealloc (c
->faces_by_id
, sz
);
4861 /* Check that FACE got a unique id. */
4866 for (j
= n
= 0; j
< FACE_CACHE_BUCKETS_SIZE
; ++j
)
4867 for (face
= c
->buckets
[j
]; face
; face
= face
->next
)
4873 #endif /* GLYPH_DEBUG */
4875 c
->faces_by_id
[i
] = face
;
4881 /* Remove face FACE from cache C. */
4884 uncache_face (c
, face
)
4885 struct face_cache
*c
;
4888 int i
= face
->hash
% FACE_CACHE_BUCKETS_SIZE
;
4891 face
->prev
->next
= face
->next
;
4893 c
->buckets
[i
] = face
->next
;
4896 face
->next
->prev
= face
->prev
;
4898 c
->faces_by_id
[face
->id
] = NULL
;
4899 if (face
->id
== c
->used
)
4904 /* Look up a realized face with face attributes ATTR in the face cache
4905 of frame F. The face will be used to display character C. Value
4906 is the ID of the face found. If no suitable face is found, realize
4907 a new one. In that case, if C is a multibyte character, BASE_FACE
4908 is a face that has the same attributes. */
4911 lookup_face (f
, attr
, c
, base_face
)
4915 struct face
*base_face
;
4917 struct face_cache
*cache
= FRAME_FACE_CACHE (f
);
4922 xassert (cache
!= NULL
);
4923 check_lface_attrs (attr
);
4925 /* Look up ATTR in the face cache. */
4926 hash
= lface_hash (attr
);
4927 i
= hash
% FACE_CACHE_BUCKETS_SIZE
;
4929 for (face
= cache
->buckets
[i
]; face
; face
= face
->next
)
4930 if (face
->hash
== hash
4931 && (!FRAME_WINDOW_P (f
)
4932 || FACE_SUITABLE_FOR_CHAR_P (face
, c
))
4933 && lface_equal_p (face
->lface
, attr
))
4936 /* If not found, realize a new face. */
4938 face
= realize_face (cache
, attr
, c
, base_face
, -1);
4941 xassert (face
== FACE_FROM_ID (f
, face
->id
));
4943 /* When this function is called from face_for_char (in this case, C is
4944 a multibyte character), a fontset of a face returned by
4945 realize_face is not yet set, i.e. FACE_SUITABLE_FOR_CHAR_P (FACE,
4946 C) is not sutisfied. The fontset is set for this face by
4947 face_for_char later. */
4949 if (FRAME_WINDOW_P (f
))
4950 xassert (FACE_SUITABLE_FOR_CHAR_P (face
, c
));
4952 #endif /* GLYPH_DEBUG */
4958 /* Return the face id of the realized face for named face SYMBOL on
4959 frame F suitable for displaying character C. */
4962 lookup_named_face (f
, symbol
, c
)
4967 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
4968 Lisp_Object symbol_attrs
[LFACE_VECTOR_SIZE
];
4969 struct face
*default_face
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
4971 get_lface_attributes (f
, symbol
, symbol_attrs
, 1);
4972 bcopy (default_face
->lface
, attrs
, sizeof attrs
);
4973 merge_face_vectors (symbol_attrs
, attrs
);
4974 return lookup_face (f
, attrs
, c
, NULL
);
4978 /* Return the ID of the realized ASCII face of Lisp face with ID
4979 LFACE_ID on frame F. Value is -1 if LFACE_ID isn't valid. */
4982 ascii_face_of_lisp_face (f
, lface_id
)
4988 if (lface_id
>= 0 && lface_id
< lface_id_to_name_size
)
4990 Lisp_Object face_name
= lface_id_to_name
[lface_id
];
4991 face_id
= lookup_named_face (f
, face_name
, 0);
5000 /* Return a face for charset ASCII that is like the face with id
5001 FACE_ID on frame F, but has a font that is STEPS steps smaller.
5002 STEPS < 0 means larger. Value is the id of the face. */
5005 smaller_face (f
, face_id
, steps
)
5009 #ifdef HAVE_WINDOW_SYSTEM
5011 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
5012 int pt
, last_pt
, last_height
;
5015 struct face
*new_face
;
5017 /* If not called for an X frame, just return the original face. */
5018 if (FRAME_TERMCAP_P (f
))
5021 /* Try in increments of 1/2 pt. */
5022 delta
= steps
< 0 ? 5 : -5;
5023 steps
= abs (steps
);
5025 face
= FACE_FROM_ID (f
, face_id
);
5026 bcopy (face
->lface
, attrs
, sizeof attrs
);
5027 pt
= last_pt
= XFASTINT (attrs
[LFACE_HEIGHT_INDEX
]);
5028 new_face_id
= face_id
;
5029 last_height
= FONT_HEIGHT (face
->font
);
5033 /* Give up if we cannot find a font within 10pt. */
5034 && abs (last_pt
- pt
) < 100)
5036 /* Look up a face for a slightly smaller/larger font. */
5038 attrs
[LFACE_HEIGHT_INDEX
] = make_number (pt
);
5039 new_face_id
= lookup_face (f
, attrs
, 0, NULL
);
5040 new_face
= FACE_FROM_ID (f
, new_face_id
);
5042 /* If height changes, count that as one step. */
5043 if (FONT_HEIGHT (new_face
->font
) != last_height
)
5046 last_height
= FONT_HEIGHT (new_face
->font
);
5053 #else /* not HAVE_WINDOW_SYSTEM */
5057 #endif /* not HAVE_WINDOW_SYSTEM */
5061 /* Return a face for charset ASCII that is like the face with id
5062 FACE_ID on frame F, but has height HEIGHT. */
5065 face_with_height (f
, face_id
, height
)
5070 #ifdef HAVE_WINDOW_SYSTEM
5072 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
5074 if (FRAME_TERMCAP_P (f
)
5078 face
= FACE_FROM_ID (f
, face_id
);
5079 bcopy (face
->lface
, attrs
, sizeof attrs
);
5080 attrs
[LFACE_HEIGHT_INDEX
] = make_number (height
);
5081 face_id
= lookup_face (f
, attrs
, 0, NULL
);
5082 #endif /* HAVE_WINDOW_SYSTEM */
5087 /* Return the face id of the realized face for named face SYMBOL on
5088 frame F suitable for displaying character C, and use attributes of
5089 the face FACE_ID for attributes that aren't completely specified by
5090 SYMBOL. This is like lookup_named_face, except that the default
5091 attributes come from FACE_ID, not from the default face. FACE_ID
5092 is assumed to be already realized. */
5095 lookup_derived_face (f
, symbol
, c
, face_id
)
5101 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
5102 Lisp_Object symbol_attrs
[LFACE_VECTOR_SIZE
];
5103 struct face
*default_face
= FACE_FROM_ID (f
, face_id
);
5108 get_lface_attributes (f
, symbol
, symbol_attrs
, 1);
5109 bcopy (default_face
->lface
, attrs
, sizeof attrs
);
5110 merge_face_vectors (symbol_attrs
, attrs
);
5111 return lookup_face (f
, attrs
, c
, default_face
);
5116 /***********************************************************************
5118 ***********************************************************************/
5120 DEFUN ("internal-set-font-selection-order",
5121 Finternal_set_font_selection_order
,
5122 Sinternal_set_font_selection_order
, 1, 1, 0,
5123 "Set font selection order for face font selection to ORDER.\n\
5124 ORDER must be a list of length 4 containing the symbols `:width',\n\
5125 `:height', `:weight', and `:slant'. Face attributes appearing\n\
5126 first in ORDER are matched first, e.g. if `:height' appears before\n\
5127 `:weight' in ORDER, font selection first tries to find a font with\n\
5128 a suitable height, and then tries to match the font weight.\n\
5137 CHECK_LIST (order
, 0);
5138 bzero (indices
, sizeof indices
);
5142 CONSP (list
) && i
< DIM (indices
);
5143 list
= XCDR (list
), ++i
)
5145 Lisp_Object attr
= XCAR (list
);
5148 if (EQ (attr
, QCwidth
))
5150 else if (EQ (attr
, QCheight
))
5151 xlfd
= XLFD_POINT_SIZE
;
5152 else if (EQ (attr
, QCweight
))
5154 else if (EQ (attr
, QCslant
))
5159 if (indices
[i
] != 0)
5165 || i
!= DIM (indices
)
5170 signal_error ("Invalid font sort order", order
);
5172 if (bcmp (indices
, font_sort_order
, sizeof indices
) != 0)
5174 bcopy (indices
, font_sort_order
, sizeof font_sort_order
);
5175 free_all_realized_faces (Qnil
);
5182 DEFUN ("internal-set-alternative-font-family-alist",
5183 Finternal_set_alternative_font_family_alist
,
5184 Sinternal_set_alternative_font_family_alist
, 1, 1, 0,
5185 "Define alternative font families to try in face font selection.\n\
5186 ALIST is an alist of (FAMILY ALTERNATIVE1 ALTERNATIVE2 ...) entries.\n\
5187 Each ALTERNATIVE is tried in order if no fonts of font family FAMILY can\n\
5188 be found. Value is ALIST.")
5192 CHECK_LIST (alist
, 0);
5193 Vface_alternative_font_family_alist
= alist
;
5194 free_all_realized_faces (Qnil
);
5199 #ifdef HAVE_WINDOW_SYSTEM
5201 /* Value is non-zero if FONT is the name of a scalable font. The
5202 X11R6 XLFD spec says that point size, pixel size, and average width
5203 are zero for scalable fonts. Intlfonts contain at least one
5204 scalable font ("*-muleindian-1") for which this isn't true, so we
5205 just test average width. */
5208 font_scalable_p (font
)
5209 struct font_name
*font
;
5211 char *s
= font
->fields
[XLFD_AVGWIDTH
];
5212 return (*s
== '0' && *(s
+ 1) == '\0')
5214 /* Windows implementation of XLFD is slightly broken for backward
5215 compatibility with previous broken versions, so test for
5216 wildcards as well as 0. */
5223 /* Value is non-zero if FONT1 is a better match for font attributes
5224 VALUES than FONT2. VALUES is an array of face attribute values in
5225 font sort order. COMPARE_PT_P zero means don't compare point
5229 better_font_p (values
, font1
, font2
, compare_pt_p
)
5231 struct font_name
*font1
, *font2
;
5236 for (i
= 0; i
< 4; ++i
)
5238 int xlfd_idx
= font_sort_order
[i
];
5240 if (compare_pt_p
|| xlfd_idx
!= XLFD_POINT_SIZE
)
5242 int delta1
= abs (values
[i
] - font1
->numeric
[xlfd_idx
]);
5243 int delta2
= abs (values
[i
] - font2
->numeric
[xlfd_idx
]);
5245 if (delta1
> delta2
)
5247 else if (delta1
< delta2
)
5251 /* The difference may be equal because, e.g., the face
5252 specifies `italic' but we have only `regular' and
5253 `oblique'. Prefer `oblique' in this case. */
5254 if ((xlfd_idx
== XLFD_WEIGHT
|| xlfd_idx
== XLFD_SLANT
)
5255 && font1
->numeric
[xlfd_idx
] > values
[i
]
5256 && font2
->numeric
[xlfd_idx
] < values
[i
])
5268 /* Value is non-zero if FONT is an exact match for face attributes in
5269 SPECIFIED. SPECIFIED is an array of face attribute values in font
5273 exact_face_match_p (specified
, font
)
5275 struct font_name
*font
;
5279 for (i
= 0; i
< 4; ++i
)
5280 if (specified
[i
] != font
->numeric
[font_sort_order
[i
]])
5287 /* Value is the name of a scaled font, generated from scalable font
5288 FONT on frame F. SPECIFIED_PT is the point-size to scale FONT to.
5289 Value is allocated from heap. */
5292 build_scalable_font_name (f
, font
, specified_pt
)
5294 struct font_name
*font
;
5297 char point_size
[20], pixel_size
[20];
5299 double resy
= FRAME_X_DISPLAY_INFO (f
)->resy
;
5302 /* If scalable font is for a specific resolution, compute
5303 the point size we must specify from the resolution of
5304 the display and the specified resolution of the font. */
5305 if (font
->numeric
[XLFD_RESY
] != 0)
5307 pt
= resy
/ font
->numeric
[XLFD_RESY
] * specified_pt
+ 0.5;
5308 pixel_value
= font
->numeric
[XLFD_RESY
] / 720.0 * pt
;
5313 pixel_value
= resy
/ 720.0 * pt
;
5316 /* Set point size of the font. */
5317 sprintf (point_size
, "%d", (int) pt
);
5318 font
->fields
[XLFD_POINT_SIZE
] = point_size
;
5319 font
->numeric
[XLFD_POINT_SIZE
] = pt
;
5321 /* Set pixel size. */
5322 sprintf (pixel_size
, "%d", pixel_value
);
5323 font
->fields
[XLFD_PIXEL_SIZE
] = pixel_size
;
5324 font
->numeric
[XLFD_PIXEL_SIZE
] = pixel_value
;
5326 /* If font doesn't specify its resolution, use the
5327 resolution of the display. */
5328 if (font
->numeric
[XLFD_RESY
] == 0)
5331 sprintf (buffer
, "%d", (int) resy
);
5332 font
->fields
[XLFD_RESY
] = buffer
;
5333 font
->numeric
[XLFD_RESY
] = resy
;
5336 if (strcmp (font
->fields
[XLFD_RESX
], "0") == 0)
5339 int resx
= FRAME_X_DISPLAY_INFO (f
)->resx
;
5340 sprintf (buffer
, "%d", resx
);
5341 font
->fields
[XLFD_RESX
] = buffer
;
5342 font
->numeric
[XLFD_RESX
] = resx
;
5345 return build_font_name (font
);
5349 /* Value is non-zero if we are allowed to use scalable font FONT. We
5350 can't run a Lisp function here since this function may be called
5351 with input blocked. */
5354 may_use_scalable_font_p (font
, name
)
5355 struct font_name
*font
;
5358 if (EQ (Vscalable_fonts_allowed
, Qt
))
5360 else if (CONSP (Vscalable_fonts_allowed
))
5362 Lisp_Object tail
, regexp
;
5364 for (tail
= Vscalable_fonts_allowed
; CONSP (tail
); tail
= XCDR (tail
))
5366 regexp
= XCAR (tail
);
5367 if (STRINGP (regexp
)
5368 && fast_c_string_match_ignore_case (regexp
, name
) >= 0)
5376 #endif /* SCALABLE_FONTS != 0 */
5379 /* Return the name of the best matching font for face attributes
5380 ATTRS in the array of font_name structures FONTS which contains
5381 NFONTS elements. Value is a font name which is allocated from
5382 the heap. FONTS is freed by this function. */
5385 best_matching_font (f
, attrs
, fonts
, nfonts
)
5388 struct font_name
*fonts
;
5392 struct font_name
*best
;
5400 /* Make specified font attributes available in `specified',
5401 indexed by sort order. */
5402 for (i
= 0; i
< DIM (font_sort_order
); ++i
)
5404 int xlfd_idx
= font_sort_order
[i
];
5406 if (xlfd_idx
== XLFD_SWIDTH
)
5407 specified
[i
] = face_numeric_swidth (attrs
[LFACE_SWIDTH_INDEX
]);
5408 else if (xlfd_idx
== XLFD_POINT_SIZE
)
5409 specified
[i
] = pt
= XFASTINT (attrs
[LFACE_HEIGHT_INDEX
]);
5410 else if (xlfd_idx
== XLFD_WEIGHT
)
5411 specified
[i
] = face_numeric_weight (attrs
[LFACE_WEIGHT_INDEX
]);
5412 else if (xlfd_idx
== XLFD_SLANT
)
5413 specified
[i
] = face_numeric_slant (attrs
[LFACE_SLANT_INDEX
]);
5423 /* Start with the first non-scalable font in the list. */
5424 for (i
= 0; i
< nfonts
; ++i
)
5425 if (!font_scalable_p (fonts
+ i
))
5428 /* Find the best match among the non-scalable fonts. */
5433 for (i
= 1; i
< nfonts
; ++i
)
5434 if (!font_scalable_p (fonts
+ i
)
5435 && better_font_p (specified
, fonts
+ i
, best
, 1))
5439 exact_p
= exact_face_match_p (specified
, best
);
5448 /* Unless we found an exact match among non-scalable fonts, see if
5449 we can find a better match among scalable fonts. */
5452 /* A scalable font is better if
5454 1. its weight, slant, swidth attributes are better, or.
5456 2. the best non-scalable font doesn't have the required
5457 point size, and the scalable fonts weight, slant, swidth
5460 int non_scalable_has_exact_height_p
;
5462 if (best
&& best
->numeric
[XLFD_POINT_SIZE
] == pt
)
5463 non_scalable_has_exact_height_p
= 1;
5465 non_scalable_has_exact_height_p
= 0;
5467 for (i
= 0; i
< nfonts
; ++i
)
5468 if (font_scalable_p (fonts
+ i
))
5471 || better_font_p (specified
, fonts
+ i
, best
, 0)
5472 || (!non_scalable_has_exact_height_p
5473 && !better_font_p (specified
, best
, fonts
+ i
, 0)))
5478 if (font_scalable_p (best
))
5479 font_name
= build_scalable_font_name (f
, best
, pt
);
5481 font_name
= build_font_name (best
);
5483 #else /* !SCALABLE_FONTS */
5485 /* Find the best non-scalable font. */
5488 for (i
= 1; i
< nfonts
; ++i
)
5490 xassert (!font_scalable_p (fonts
+ i
));
5491 if (better_font_p (specified
, fonts
+ i
, best
, 1))
5495 font_name
= build_font_name (best
);
5497 #endif /* !SCALABLE_FONTS */
5499 /* Free font_name structures. */
5500 free_font_names (fonts
, nfonts
);
5506 /* Try to get a list of fonts on frame F with font family FAMILY and
5507 registry/encoding REGISTRY. Return in *FONTS a pointer to a vector
5508 of font_name structures for the fonts matched. Value is the number
5512 try_font_list (f
, attrs
, pattern
, family
, registry
, fonts
)
5515 Lisp_Object pattern
, family
, registry
;
5516 struct font_name
**fonts
;
5520 if (NILP (family
) && STRINGP (attrs
[LFACE_FAMILY_INDEX
]))
5521 family
= attrs
[LFACE_FAMILY_INDEX
];
5523 nfonts
= font_list (f
, pattern
, family
, registry
, fonts
);
5525 if (nfonts
== 0 && !NILP (family
))
5529 /* Try alternative font families from
5530 Vface_alternative_font_family_alist. */
5531 alter
= Fassoc (family
, Vface_alternative_font_family_alist
);
5533 for (alter
= XCDR (alter
);
5534 CONSP (alter
) && nfonts
== 0;
5535 alter
= XCDR (alter
))
5537 if (STRINGP (XCAR (alter
)))
5538 nfonts
= font_list (f
, Qnil
, XCAR (alter
), registry
, fonts
);
5541 /* Try font family of the default face or "fixed". */
5544 struct face
*dflt
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
5546 family
= dflt
->lface
[LFACE_FAMILY_INDEX
];
5548 family
= build_string ("fixed");
5549 nfonts
= font_list (f
, Qnil
, family
, registry
, fonts
);
5552 /* Try any family with the given registry. */
5554 nfonts
= font_list (f
, Qnil
, Qnil
, registry
, fonts
);
5561 /* Return the fontset id of the base fontset name or alias name given
5562 by the fontset attribute of ATTRS. Value is -1 if the fontset
5563 attribute of ATTRS doesn't name a fontset. */
5566 face_fontset (attrs
)
5572 name
= attrs
[LFACE_FONT_INDEX
];
5573 if (!STRINGP (name
))
5575 return fs_query_fontset (name
, 0);
5579 /* Choose a name of font to use on frame F to display character C with
5580 Lisp face attributes specified by ATTRS. The font name is
5581 determined by the font-related attributes in ATTRS and the name
5582 pattern for C in FONTSET. Value is the font name which is
5583 allocated from the heap and must be freed by the caller, or NULL if
5584 we can get no information about the font name of C. It is assured
5585 that we always get some information for a single byte
5589 choose_face_font (f
, attrs
, fontset
, c
)
5594 Lisp_Object pattern
;
5595 char *font_name
= NULL
;
5596 struct font_name
*fonts
;
5599 /* Get (foundry and) family name and registry (and encoding) name of
5601 pattern
= fontset_font_pattern (f
, fontset
, c
);
5604 xassert (!SINGLE_BYTE_CHAR_P (c
));
5607 /* If what we got is a name pattern, return it. */
5608 if (STRINGP (pattern
))
5609 return xstrdup (XSTRING (pattern
)->data
);
5611 /* Family name may be specified both in ATTRS and car part of
5612 PATTERN. The former has higher priority if C is a single byte
5614 if (STRINGP (attrs
[LFACE_FAMILY_INDEX
])
5615 && SINGLE_BYTE_CHAR_P (c
))
5616 XCAR (pattern
) = Qnil
;
5618 /* Get a list of fonts matching that pattern and choose the
5619 best match for the specified face attributes from it. */
5620 nfonts
= try_font_list (f
, attrs
, Qnil
, XCAR (pattern
), XCDR (pattern
),
5622 font_name
= best_matching_font (f
, attrs
, fonts
, nfonts
);
5626 #endif /* HAVE_WINDOW_SYSTEM */
5630 /***********************************************************************
5632 ***********************************************************************/
5634 /* Realize basic faces on frame F. Value is zero if frame parameters
5635 of F don't contain enough information needed to realize the default
5639 realize_basic_faces (f
)
5644 /* Block input there so that we won't be surprised by an X expose
5645 event, for instance without having the faces set up. */
5648 if (realize_default_face (f
))
5650 realize_named_face (f
, Qmode_line
, MODE_LINE_FACE_ID
);
5651 realize_named_face (f
, Qtool_bar
, TOOL_BAR_FACE_ID
);
5652 realize_named_face (f
, Qfringe
, BITMAP_AREA_FACE_ID
);
5653 realize_named_face (f
, Qheader_line
, HEADER_LINE_FACE_ID
);
5654 realize_named_face (f
, Qscroll_bar
, SCROLL_BAR_FACE_ID
);
5655 realize_named_face (f
, Qborder
, BORDER_FACE_ID
);
5656 realize_named_face (f
, Qcursor
, CURSOR_FACE_ID
);
5657 realize_named_face (f
, Qmouse
, MOUSE_FACE_ID
);
5658 realize_named_face (f
, Qmenu
, MENU_FACE_ID
);
5667 /* Realize the default face on frame F. If the face is not fully
5668 specified, make it fully-specified. Attributes of the default face
5669 that are not explicitly specified are taken from frame parameters. */
5672 realize_default_face (f
)
5675 struct face_cache
*c
= FRAME_FACE_CACHE (f
);
5677 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
5678 Lisp_Object frame_font
;
5682 /* If the `default' face is not yet known, create it. */
5683 lface
= lface_from_face_name (f
, Qdefault
, 0);
5687 XSETFRAME (frame
, f
);
5688 lface
= Finternal_make_lisp_face (Qdefault
, frame
);
5691 #ifdef HAVE_WINDOW_SYSTEM
5692 if (FRAME_WINDOW_P (f
))
5694 /* Set frame_font to the value of the `font' frame parameter. */
5695 frame_font
= Fassq (Qfont
, f
->param_alist
);
5696 xassert (CONSP (frame_font
) && STRINGP (XCDR (frame_font
)));
5697 frame_font
= XCDR (frame_font
);
5698 set_lface_from_font_name (f
, lface
, frame_font
, 0, 1);
5700 #endif /* HAVE_WINDOW_SYSTEM */
5702 if (!FRAME_WINDOW_P (f
))
5704 LFACE_FAMILY (lface
) = build_string ("default");
5705 LFACE_SWIDTH (lface
) = Qnormal
;
5706 LFACE_HEIGHT (lface
) = make_number (1);
5707 LFACE_WEIGHT (lface
) = Qnormal
;
5708 LFACE_SLANT (lface
) = Qnormal
;
5711 if (UNSPECIFIEDP (LFACE_UNDERLINE (lface
)))
5712 LFACE_UNDERLINE (lface
) = Qnil
;
5714 if (UNSPECIFIEDP (LFACE_OVERLINE (lface
)))
5715 LFACE_OVERLINE (lface
) = Qnil
;
5717 if (UNSPECIFIEDP (LFACE_STRIKE_THROUGH (lface
)))
5718 LFACE_STRIKE_THROUGH (lface
) = Qnil
;
5720 if (UNSPECIFIEDP (LFACE_BOX (lface
)))
5721 LFACE_BOX (lface
) = Qnil
;
5723 if (UNSPECIFIEDP (LFACE_INVERSE (lface
)))
5724 LFACE_INVERSE (lface
) = Qnil
;
5726 if (UNSPECIFIEDP (LFACE_FOREGROUND (lface
)))
5728 /* This function is called so early that colors are not yet
5729 set in the frame parameter list. */
5730 Lisp_Object color
= Fassq (Qforeground_color
, f
->param_alist
);
5732 if (CONSP (color
) && STRINGP (XCDR (color
)))
5733 LFACE_FOREGROUND (lface
) = XCDR (color
);
5734 else if (FRAME_WINDOW_P (f
))
5736 else if (FRAME_TERMCAP_P (f
) || FRAME_MSDOS_P (f
))
5737 LFACE_FOREGROUND (lface
) = build_string (unspecified_fg
);
5742 if (UNSPECIFIEDP (LFACE_BACKGROUND (lface
)))
5744 /* This function is called so early that colors are not yet
5745 set in the frame parameter list. */
5746 Lisp_Object color
= Fassq (Qbackground_color
, f
->param_alist
);
5747 if (CONSP (color
) && STRINGP (XCDR (color
)))
5748 LFACE_BACKGROUND (lface
) = XCDR (color
);
5749 else if (FRAME_WINDOW_P (f
))
5751 else if (FRAME_TERMCAP_P (f
) || FRAME_MSDOS_P (f
))
5752 LFACE_BACKGROUND (lface
) = build_string (unspecified_bg
);
5757 if (UNSPECIFIEDP (LFACE_STIPPLE (lface
)))
5758 LFACE_STIPPLE (lface
) = Qnil
;
5760 /* Realize the face; it must be fully-specified now. */
5761 xassert (lface_fully_specified_p (XVECTOR (lface
)->contents
));
5762 check_lface (lface
);
5763 bcopy (XVECTOR (lface
)->contents
, attrs
, sizeof attrs
);
5764 face
= realize_face (c
, attrs
, 0, NULL
, DEFAULT_FACE_ID
);
5769 /* Realize basic faces other than the default face in face cache C.
5770 SYMBOL is the face name, ID is the face id the realized face must
5771 have. The default face must have been realized already. */
5774 realize_named_face (f
, symbol
, id
)
5779 struct face_cache
*c
= FRAME_FACE_CACHE (f
);
5780 Lisp_Object lface
= lface_from_face_name (f
, symbol
, 0);
5781 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
5782 Lisp_Object symbol_attrs
[LFACE_VECTOR_SIZE
];
5783 struct face
*new_face
;
5785 /* The default face must exist and be fully specified. */
5786 get_lface_attributes (f
, Qdefault
, attrs
, 1);
5787 check_lface_attrs (attrs
);
5788 xassert (lface_fully_specified_p (attrs
));
5790 /* If SYMBOL isn't know as a face, create it. */
5794 XSETFRAME (frame
, f
);
5795 lface
= Finternal_make_lisp_face (symbol
, frame
);
5798 /* Merge SYMBOL's face with the default face. */
5799 get_lface_attributes (f
, symbol
, symbol_attrs
, 1);
5800 merge_face_vectors (symbol_attrs
, attrs
);
5802 /* Realize the face. */
5803 new_face
= realize_face (c
, attrs
, 0, NULL
, id
);
5807 /* Realize the fully-specified face with attributes ATTRS in face
5808 cache CACHE for character C. If C is a multibyte character,
5809 BASE_FACE is a face that has the same attributes. Otherwise,
5810 BASE_FACE is ignored. If FORMER_FACE_ID is non-negative, it is an
5811 ID of face to remove before caching the new face. Value is a
5812 pointer to the newly created realized face. */
5814 static struct face
*
5815 realize_face (cache
, attrs
, c
, base_face
, former_face_id
)
5816 struct face_cache
*cache
;
5819 struct face
*base_face
;
5824 /* LFACE must be fully specified. */
5825 xassert (cache
!= NULL
);
5826 check_lface_attrs (attrs
);
5828 if (former_face_id
>= 0 && cache
->used
> former_face_id
)
5830 /* Remove the former face. */
5831 struct face
*former_face
= cache
->faces_by_id
[former_face_id
];
5832 uncache_face (cache
, former_face
);
5833 free_realized_face (cache
->f
, former_face
);
5836 if (FRAME_WINDOW_P (cache
->f
))
5837 face
= realize_x_face (cache
, attrs
, c
, base_face
);
5838 else if (FRAME_TERMCAP_P (cache
->f
) || FRAME_MSDOS_P (cache
->f
))
5839 face
= realize_tty_face (cache
, attrs
, c
);
5843 /* Insert the new face. */
5844 cache_face (cache
, face
, lface_hash (attrs
));
5845 #ifdef HAVE_WINDOW_SYSTEM
5846 if (FRAME_WINDOW_P (cache
->f
) && face
->font
== NULL
)
5847 load_face_font (cache
->f
, face
, c
);
5848 #endif /* HAVE_WINDOW_SYSTEM */
5853 /* Realize the fully-specified face with attributes ATTRS in face
5854 cache CACHE for character C. Do it for X frame CACHE->f. If C is
5855 a multibyte character, BASE_FACE is a face that has the same
5856 attributes. Otherwise, BASE_FACE is ignored. If the new face
5857 doesn't share font with the default face, a fontname is allocated
5858 from the heap and set in `font_name' of the new face, but it is not
5859 yet loaded here. Value is a pointer to the newly created realized
5862 static struct face
*
5863 realize_x_face (cache
, attrs
, c
, base_face
)
5864 struct face_cache
*cache
;
5867 struct face
*base_face
;
5869 #ifdef HAVE_WINDOW_SYSTEM
5870 struct face
*face
, *default_face
;
5872 Lisp_Object stipple
, overline
, strike_through
, box
;
5874 xassert (FRAME_WINDOW_P (cache
->f
));
5875 xassert (SINGLE_BYTE_CHAR_P (c
)
5878 /* Allocate a new realized face. */
5879 face
= make_realized_face (attrs
);
5883 /* If C is a multibyte character, we share all face attirbutes with
5884 BASE_FACE including the realized fontset. But, we must load a
5886 if (!SINGLE_BYTE_CHAR_P (c
))
5888 bcopy (base_face
, face
, sizeof *face
);
5891 /* Don't try to free the colors copied bitwise from BASE_FACE. */
5892 face
->foreground_defaulted_p
= 1;
5893 face
->background_defaulted_p
= 1;
5894 face
->underline_defaulted_p
= 1;
5895 face
->overline_color_defaulted_p
= 1;
5896 face
->strike_through_color_defaulted_p
= 1;
5897 face
->box_color_defaulted_p
= 1;
5899 /* to force realize_face to load font */
5904 /* Now we are realizing a face for ASCII (and unibyte) characters. */
5906 /* Determine the font to use. Most of the time, the font will be
5907 the same as the font of the default face, so try that first. */
5908 default_face
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
5910 && FACE_SUITABLE_FOR_CHAR_P (default_face
, c
)
5911 && lface_same_font_attributes_p (default_face
->lface
, attrs
))
5913 face
->font
= default_face
->font
;
5914 face
->fontset
= default_face
->fontset
;
5915 face
->font_info_id
= default_face
->font_info_id
;
5916 face
->font_name
= default_face
->font_name
;
5917 face
->ascii_face
= face
;
5919 /* But, as we can't share the fontset, make a new realized
5920 fontset that has the same base fontset as of the default
5923 = make_fontset_for_ascii_face (f
, default_face
->fontset
);
5927 /* If the face attribute ATTRS specifies a fontset, use it as
5928 the base of a new realized fontset. Otherwise, use the
5929 default fontset as the base. The base determines registry
5930 and encoding of a font. It may also determine foundry and
5931 family. The other fields of font name pattern are
5932 constructed from ATTRS. */
5934 = make_fontset_for_ascii_face (f
, face_fontset (attrs
));
5935 face
->font
= NULL
; /* to force realize_face to load font */
5938 /* Load colors, and set remaining attributes. */
5940 load_face_colors (f
, face
, attrs
);
5943 box
= attrs
[LFACE_BOX_INDEX
];
5946 /* A simple box of line width 1 drawn in color given by
5948 face
->box_color
= load_color (f
, face
, attrs
[LFACE_BOX_INDEX
],
5950 face
->box
= FACE_SIMPLE_BOX
;
5951 face
->box_line_width
= 1;
5953 else if (INTEGERP (box
))
5955 /* Simple box of specified line width in foreground color of the
5957 xassert (XINT (box
) > 0);
5958 face
->box
= FACE_SIMPLE_BOX
;
5959 face
->box_line_width
= XFASTINT (box
);
5960 face
->box_color
= face
->foreground
;
5961 face
->box_color_defaulted_p
= 1;
5963 else if (CONSP (box
))
5965 /* `(:width WIDTH :color COLOR :shadow SHADOW)'. SHADOW
5966 being one of `raised' or `sunken'. */
5967 face
->box
= FACE_SIMPLE_BOX
;
5968 face
->box_color
= face
->foreground
;
5969 face
->box_color_defaulted_p
= 1;
5970 face
->box_line_width
= 1;
5974 Lisp_Object keyword
, value
;
5976 keyword
= XCAR (box
);
5984 if (EQ (keyword
, QCline_width
))
5986 if (INTEGERP (value
) && XINT (value
) > 0)
5987 face
->box_line_width
= XFASTINT (value
);
5989 else if (EQ (keyword
, QCcolor
))
5991 if (STRINGP (value
))
5993 face
->box_color
= load_color (f
, face
, value
,
5995 face
->use_box_color_for_shadows_p
= 1;
5998 else if (EQ (keyword
, QCstyle
))
6000 if (EQ (value
, Qreleased_button
))
6001 face
->box
= FACE_RAISED_BOX
;
6002 else if (EQ (value
, Qpressed_button
))
6003 face
->box
= FACE_SUNKEN_BOX
;
6008 /* Text underline, overline, strike-through. */
6010 if (EQ (attrs
[LFACE_UNDERLINE_INDEX
], Qt
))
6012 /* Use default color (same as foreground color). */
6013 face
->underline_p
= 1;
6014 face
->underline_defaulted_p
= 1;
6015 face
->underline_color
= 0;
6017 else if (STRINGP (attrs
[LFACE_UNDERLINE_INDEX
]))
6019 /* Use specified color. */
6020 face
->underline_p
= 1;
6021 face
->underline_defaulted_p
= 0;
6022 face
->underline_color
6023 = load_color (f
, face
, attrs
[LFACE_UNDERLINE_INDEX
],
6024 LFACE_UNDERLINE_INDEX
);
6026 else if (NILP (attrs
[LFACE_UNDERLINE_INDEX
]))
6028 face
->underline_p
= 0;
6029 face
->underline_defaulted_p
= 0;
6030 face
->underline_color
= 0;
6033 overline
= attrs
[LFACE_OVERLINE_INDEX
];
6034 if (STRINGP (overline
))
6036 face
->overline_color
6037 = load_color (f
, face
, attrs
[LFACE_OVERLINE_INDEX
],
6038 LFACE_OVERLINE_INDEX
);
6039 face
->overline_p
= 1;
6041 else if (EQ (overline
, Qt
))
6043 face
->overline_color
= face
->foreground
;
6044 face
->overline_color_defaulted_p
= 1;
6045 face
->overline_p
= 1;
6048 strike_through
= attrs
[LFACE_STRIKE_THROUGH_INDEX
];
6049 if (STRINGP (strike_through
))
6051 face
->strike_through_color
6052 = load_color (f
, face
, attrs
[LFACE_STRIKE_THROUGH_INDEX
],
6053 LFACE_STRIKE_THROUGH_INDEX
);
6054 face
->strike_through_p
= 1;
6056 else if (EQ (strike_through
, Qt
))
6058 face
->strike_through_color
= face
->foreground
;
6059 face
->strike_through_color_defaulted_p
= 1;
6060 face
->strike_through_p
= 1;
6063 stipple
= attrs
[LFACE_STIPPLE_INDEX
];
6064 if (!NILP (stipple
))
6065 face
->stipple
= load_pixmap (f
, stipple
, &face
->pixmap_w
, &face
->pixmap_h
);
6067 xassert (FACE_SUITABLE_FOR_CHAR_P (face
, c
));
6069 #endif /* HAVE_WINDOW_SYSTEM */
6073 /* Realize the fully-specified face with attributes ATTRS in face
6074 cache CACHE for character C. Do it for TTY frame CACHE->f. Value is a
6075 pointer to the newly created realized face. */
6077 static struct face
*
6078 realize_tty_face (cache
, attrs
, c
)
6079 struct face_cache
*cache
;
6086 Lisp_Object tty_defined_color_alist
6087 = find_symbol_value (intern ("tty-defined-color-alist"));
6088 Lisp_Object tty_color_alist
= intern ("tty-color-alist");
6090 int face_colors_defaulted
= 0;
6092 /* Frame must be a termcap frame. */
6093 xassert (FRAME_TERMCAP_P (cache
->f
) || FRAME_MSDOS_P (cache
->f
));
6095 /* Allocate a new realized face. */
6096 face
= make_realized_face (attrs
);
6097 face
->font_name
= FRAME_MSDOS_P (cache
->f
) ? "ms-dos" : "tty";
6099 /* Map face attributes to TTY appearances. We map slant to
6100 dimmed text because we want italic text to appear differently
6101 and because dimmed text is probably used infrequently. */
6102 weight
= face_numeric_weight (attrs
[LFACE_WEIGHT_INDEX
]);
6103 slant
= face_numeric_slant (attrs
[LFACE_SLANT_INDEX
]);
6105 if (weight
> XLFD_WEIGHT_MEDIUM
)
6106 face
->tty_bold_p
= 1;
6107 if (weight
< XLFD_WEIGHT_MEDIUM
|| slant
!= XLFD_SLANT_ROMAN
)
6108 face
->tty_dim_p
= 1;
6109 if (!NILP (attrs
[LFACE_UNDERLINE_INDEX
]))
6110 face
->tty_underline_p
= 1;
6111 if (!NILP (attrs
[LFACE_INVERSE_INDEX
]))
6112 face
->tty_reverse_p
= 1;
6114 /* Map color names to color indices. */
6115 face
->foreground
= FACE_TTY_DEFAULT_FG_COLOR
;
6116 face
->background
= FACE_TTY_DEFAULT_BG_COLOR
;
6118 XSETFRAME (frame
, cache
->f
);
6119 color
= attrs
[LFACE_FOREGROUND_INDEX
];
6121 && XSTRING (color
)->size
6122 && CONSP (tty_defined_color_alist
)
6123 && (color
= Fassoc (color
, call1 (tty_color_alist
, frame
)),
6125 /* Associations in tty-defined-color-alist are of the form
6126 (NAME INDEX R G B). We need the INDEX part. */
6127 face
->foreground
= XINT (XCAR (XCDR (color
)));
6129 if (face
->foreground
== FACE_TTY_DEFAULT_FG_COLOR
6130 && STRINGP (attrs
[LFACE_FOREGROUND_INDEX
]))
6132 face
->foreground
= load_color (cache
->f
, face
,
6133 attrs
[LFACE_FOREGROUND_INDEX
],
6134 LFACE_FOREGROUND_INDEX
);
6136 #if defined (MSDOS) || defined (WINDOWSNT)
6137 /* If the foreground of the default face is the default color,
6138 use the foreground color defined by the frame. */
6140 if (FRAME_MSDOS_P (cache
->f
))
6144 if (face
->foreground
== FACE_TTY_DEFAULT_FG_COLOR
6145 || face
->foreground
== FACE_TTY_DEFAULT_COLOR
)
6147 face
->foreground
= FRAME_FOREGROUND_PIXEL (cache
->f
);
6148 attrs
[LFACE_FOREGROUND_INDEX
] =
6149 tty_color_name (cache
->f
, face
->foreground
);
6150 face_colors_defaulted
= 1;
6152 else if (face
->foreground
== FACE_TTY_DEFAULT_BG_COLOR
)
6154 face
->foreground
= FRAME_BACKGROUND_PIXEL (cache
->f
);
6155 attrs
[LFACE_FOREGROUND_INDEX
] =
6156 tty_color_name (cache
->f
, face
->foreground
);
6157 face_colors_defaulted
= 1;
6162 #endif /* MSDOS or WINDOWSNT */
6165 color
= attrs
[LFACE_BACKGROUND_INDEX
];
6167 && XSTRING (color
)->size
6168 && CONSP (tty_defined_color_alist
)
6169 && (color
= Fassoc (color
, call1 (tty_color_alist
, frame
)),
6171 /* Associations in tty-defined-color-alist are of the form
6172 (NAME INDEX R G B). We need the INDEX part. */
6173 face
->background
= XINT (XCAR (XCDR (color
)));
6175 if (face
->background
== FACE_TTY_DEFAULT_BG_COLOR
6176 && STRINGP (attrs
[LFACE_BACKGROUND_INDEX
]))
6178 face
->background
= load_color (cache
->f
, face
,
6179 attrs
[LFACE_BACKGROUND_INDEX
],
6180 LFACE_BACKGROUND_INDEX
);
6181 #if defined (MSDOS) || defined (WINDOWSNT)
6182 /* If the background of the default face is the default color,
6183 use the background color defined by the frame. */
6185 if (FRAME_MSDOS_P (cache
->f
))
6189 if (face
->background
== FACE_TTY_DEFAULT_BG_COLOR
6190 || face
->background
== FACE_TTY_DEFAULT_COLOR
)
6192 face
->background
= FRAME_BACKGROUND_PIXEL (cache
->f
);
6193 attrs
[LFACE_BACKGROUND_INDEX
] =
6194 tty_color_name (cache
->f
, face
->background
);
6195 face_colors_defaulted
= 1;
6197 else if (face
->background
== FACE_TTY_DEFAULT_FG_COLOR
)
6199 face
->background
= FRAME_FOREGROUND_PIXEL (cache
->f
);
6200 attrs
[LFACE_BACKGROUND_INDEX
] =
6201 tty_color_name (cache
->f
, face
->background
);
6202 face_colors_defaulted
= 1;
6207 #endif /* MSDOS or WINDOWSNT */
6210 /* Swap colors if face is inverse-video. If the colors are taken
6211 from the frame colors, they are already inverted, since the
6212 frame-creation function calls x-handle-reverse-video. */
6213 if (face
->tty_reverse_p
&& !face_colors_defaulted
)
6215 unsigned long tem
= face
->foreground
;
6217 face
->foreground
= face
->background
;
6218 face
->background
= tem
;
6221 if (tty_suppress_bold_inverse_default_colors_p
6223 && face
->background
== FACE_TTY_DEFAULT_FG_COLOR
6224 && face
->foreground
== FACE_TTY_DEFAULT_BG_COLOR
)
6225 face
->tty_bold_p
= 0;
6231 DEFUN ("tty-suppress-bold-inverse-default-colors",
6232 Ftty_suppress_bold_inverse_default_colors
,
6233 Stty_suppress_bold_inverse_default_colors
, 1, 1, 0,
6234 "Suppress/allow boldness of faces with inverse default colors.\n\
6235 SUPPRESS non-nil means suppress it.\n\
6236 This affects bold faces on TTYs whose foreground is the default background\n\
6237 color of the display and whose background is the default foreground color.\n\
6238 For such faces, no bold text will be displayed.")
6240 Lisp_Object suppress
;
6242 tty_suppress_bold_inverse_default_colors_p
= !NILP (suppress
);
6243 ++face_change_count
;
6249 /***********************************************************************
6251 ***********************************************************************/
6253 /* Return the ID of the face to use to display character CH with face
6254 property PROP on frame F in current_buffer. */
6257 compute_char_face (f
, ch
, prop
)
6264 if (NILP (current_buffer
->enable_multibyte_characters
))
6269 struct face
*face
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
6270 face_id
= FACE_FOR_CHAR (f
, face
, ch
);
6274 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
6275 struct face
*default_face
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
6276 bcopy (default_face
->lface
, attrs
, sizeof attrs
);
6277 merge_face_vector_with_property (f
, attrs
, prop
);
6278 face_id
= lookup_face (f
, attrs
, ch
, NULL
);
6285 /* Return the face ID associated with buffer position POS for
6286 displaying ASCII characters. Return in *ENDPTR the position at
6287 which a different face is needed, as far as text properties and
6288 overlays are concerned. W is a window displaying current_buffer.
6290 REGION_BEG, REGION_END delimit the region, so it can be
6293 LIMIT is a position not to scan beyond. That is to limit the time
6294 this function can take.
6296 If MOUSE is non-zero, use the character's mouse-face, not its face.
6298 The face returned is suitable for displaying ASCII characters. */
6301 face_at_buffer_position (w
, pos
, region_beg
, region_end
,
6302 endptr
, limit
, mouse
)
6305 int region_beg
, region_end
;
6310 struct frame
*f
= XFRAME (w
->frame
);
6311 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
6312 Lisp_Object prop
, position
;
6314 Lisp_Object
*overlay_vec
;
6317 Lisp_Object propname
= mouse
? Qmouse_face
: Qface
;
6318 Lisp_Object limit1
, end
;
6319 struct face
*default_face
;
6320 int multibyte_p
= !NILP (current_buffer
->enable_multibyte_characters
);
6322 /* W must display the current buffer. We could write this function
6323 to use the frame and buffer of W, but right now it doesn't. */
6324 /* xassert (XBUFFER (w->buffer) == current_buffer); */
6326 XSETFRAME (frame
, f
);
6327 XSETFASTINT (position
, pos
);
6330 if (pos
< region_beg
&& region_beg
< endpos
)
6331 endpos
= region_beg
;
6333 /* Get the `face' or `mouse_face' text property at POS, and
6334 determine the next position at which the property changes. */
6335 prop
= Fget_text_property (position
, propname
, w
->buffer
);
6336 XSETFASTINT (limit1
, (limit
< endpos
? limit
: endpos
));
6337 end
= Fnext_single_property_change (position
, propname
, w
->buffer
, limit1
);
6339 endpos
= XINT (end
);
6341 /* Look at properties from overlays. */
6346 /* First try with room for 40 overlays. */
6348 overlay_vec
= (Lisp_Object
*) alloca (len
* sizeof (Lisp_Object
));
6349 noverlays
= overlays_at (pos
, 0, &overlay_vec
, &len
,
6350 &next_overlay
, NULL
);
6352 /* If there are more than 40, make enough space for all, and try
6354 if (noverlays
> len
)
6357 overlay_vec
= (Lisp_Object
*) alloca (len
* sizeof (Lisp_Object
));
6358 noverlays
= overlays_at (pos
, 0, &overlay_vec
, &len
,
6359 &next_overlay
, NULL
);
6362 if (next_overlay
< endpos
)
6363 endpos
= next_overlay
;
6368 default_face
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
6370 /* Optimize common cases where we can use the default face. */
6373 && !(pos
>= region_beg
&& pos
< region_end
))
6374 return DEFAULT_FACE_ID
;
6376 /* Begin with attributes from the default face. */
6377 bcopy (default_face
->lface
, attrs
, sizeof attrs
);
6379 /* Merge in attributes specified via text properties. */
6381 merge_face_vector_with_property (f
, attrs
, prop
);
6383 /* Now merge the overlay data. */
6384 noverlays
= sort_overlays (overlay_vec
, noverlays
, w
);
6385 for (i
= 0; i
< noverlays
; i
++)
6390 prop
= Foverlay_get (overlay_vec
[i
], propname
);
6392 merge_face_vector_with_property (f
, attrs
, prop
);
6394 oend
= OVERLAY_END (overlay_vec
[i
]);
6395 oendpos
= OVERLAY_POSITION (oend
);
6396 if (oendpos
< endpos
)
6400 /* If in the region, merge in the region face. */
6401 if (pos
>= region_beg
&& pos
< region_end
)
6403 Lisp_Object region_face
= lface_from_face_name (f
, Qregion
, 0);
6404 merge_face_vectors (XVECTOR (region_face
)->contents
, attrs
);
6406 if (region_end
< endpos
)
6407 endpos
= region_end
;
6412 /* Look up a realized face with the given face attributes,
6413 or realize a new one for ASCII characters. */
6414 return lookup_face (f
, attrs
, 0, NULL
);
6418 /* Compute the face at character position POS in Lisp string STRING on
6419 window W, for ASCII characters.
6421 If STRING is an overlay string, it comes from position BUFPOS in
6422 current_buffer, otherwise BUFPOS is zero to indicate that STRING is
6423 not an overlay string. W must display the current buffer.
6424 REGION_BEG and REGION_END give the start and end positions of the
6425 region; both are -1 if no region is visible. BASE_FACE_ID is the
6426 id of the basic face to merge with. It is usually equal to
6427 DEFAULT_FACE_ID but can be MODE_LINE_FACE_ID or HEADER_LINE_FACE_ID
6428 for strings displayed in the mode or top line.
6430 Set *ENDPTR to the next position where to check for faces in
6431 STRING; -1 if the face is constant from POS to the end of the
6434 Value is the id of the face to use. The face returned is suitable
6435 for displaying ASCII characters. */
6438 face_at_string_position (w
, string
, pos
, bufpos
, region_beg
,
6439 region_end
, endptr
, base_face_id
)
6443 int region_beg
, region_end
;
6445 enum face_id base_face_id
;
6447 Lisp_Object prop
, position
, end
, limit
;
6448 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
6449 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
6450 struct face
*base_face
;
6451 int multibyte_p
= STRING_MULTIBYTE (string
);
6453 /* Get the value of the face property at the current position within
6454 STRING. Value is nil if there is no face property. */
6455 XSETFASTINT (position
, pos
);
6456 prop
= Fget_text_property (position
, Qface
, string
);
6458 /* Get the next position at which to check for faces. Value of end
6459 is nil if face is constant all the way to the end of the string.
6460 Otherwise it is a string position where to check faces next.
6461 Limit is the maximum position up to which to check for property
6462 changes in Fnext_single_property_change. Strings are usually
6463 short, so set the limit to the end of the string. */
6464 XSETFASTINT (limit
, XSTRING (string
)->size
);
6465 end
= Fnext_single_property_change (position
, Qface
, string
, limit
);
6467 *endptr
= XFASTINT (end
);
6471 base_face
= FACE_FROM_ID (f
, base_face_id
);
6472 xassert (base_face
);
6474 /* Optimize the default case that there is no face property and we
6475 are not in the region. */
6477 && (base_face_id
!= DEFAULT_FACE_ID
6478 /* BUFPOS <= 0 means STRING is not an overlay string, so
6479 that the region doesn't have to be taken into account. */
6481 || bufpos
< region_beg
6482 || bufpos
>= region_end
)
6484 /* We can't realize faces for different charsets differently
6485 if we don't have fonts, so we can stop here if not working
6486 on a window-system frame. */
6487 || !FRAME_WINDOW_P (f
)
6488 || FACE_SUITABLE_FOR_CHAR_P (base_face
, 0)))
6489 return base_face
->id
;
6491 /* Begin with attributes from the base face. */
6492 bcopy (base_face
->lface
, attrs
, sizeof attrs
);
6494 /* Merge in attributes specified via text properties. */
6496 merge_face_vector_with_property (f
, attrs
, prop
);
6498 /* If in the region, merge in the region face. */
6500 && bufpos
>= region_beg
6501 && bufpos
< region_end
)
6503 Lisp_Object region_face
= lface_from_face_name (f
, Qregion
, 0);
6504 merge_face_vectors (XVECTOR (region_face
)->contents
, attrs
);
6507 /* Look up a realized face with the given face attributes,
6508 or realize a new one for ASCII characters. */
6509 return lookup_face (f
, attrs
, 0, NULL
);
6514 /***********************************************************************
6516 ***********************************************************************/
6520 /* Print the contents of the realized face FACE to stderr. */
6523 dump_realized_face (face
)
6526 fprintf (stderr
, "ID: %d\n", face
->id
);
6527 #ifdef HAVE_X_WINDOWS
6528 fprintf (stderr
, "gc: %d\n", (int) face
->gc
);
6530 fprintf (stderr
, "foreground: 0x%lx (%s)\n",
6532 XSTRING (face
->lface
[LFACE_FOREGROUND_INDEX
])->data
);
6533 fprintf (stderr
, "background: 0x%lx (%s)\n",
6535 XSTRING (face
->lface
[LFACE_BACKGROUND_INDEX
])->data
);
6536 fprintf (stderr
, "font_name: %s (%s)\n",
6538 XSTRING (face
->lface
[LFACE_FAMILY_INDEX
])->data
);
6539 #ifdef HAVE_X_WINDOWS
6540 fprintf (stderr
, "font = %p\n", face
->font
);
6542 fprintf (stderr
, "font_info_id = %d\n", face
->font_info_id
);
6543 fprintf (stderr
, "fontset: %d\n", face
->fontset
);
6544 fprintf (stderr
, "underline: %d (%s)\n",
6546 XSTRING (Fsymbol_name (face
->lface
[LFACE_UNDERLINE_INDEX
]))->data
);
6547 fprintf (stderr
, "hash: %d\n", face
->hash
);
6548 fprintf (stderr
, "charset: %d\n", face
->charset
);
6552 DEFUN ("dump-face", Fdump_face
, Sdump_face
, 0, 1, 0, "")
6560 fprintf (stderr
, "font selection order: ");
6561 for (i
= 0; i
< DIM (font_sort_order
); ++i
)
6562 fprintf (stderr
, "%d ", font_sort_order
[i
]);
6563 fprintf (stderr
, "\n");
6565 fprintf (stderr
, "alternative fonts: ");
6566 debug_print (Vface_alternative_font_family_alist
);
6567 fprintf (stderr
, "\n");
6569 for (i
= 0; i
< FRAME_FACE_CACHE (SELECTED_FRAME ())->used
; ++i
)
6570 Fdump_face (make_number (i
));
6575 CHECK_NUMBER (n
, 0);
6576 face
= FACE_FROM_ID (SELECTED_FRAME (), XINT (n
));
6578 error ("Not a valid face");
6579 dump_realized_face (face
);
6586 DEFUN ("show-face-resources", Fshow_face_resources
, Sshow_face_resources
,
6590 fprintf (stderr
, "number of colors = %d\n", ncolors_allocated
);
6591 fprintf (stderr
, "number of pixmaps = %d\n", npixmaps_allocated
);
6592 fprintf (stderr
, "number of GCs = %d\n", ngcs
);
6596 #endif /* GLYPH_DEBUG != 0 */
6600 /***********************************************************************
6602 ***********************************************************************/
6607 Qface
= intern ("face");
6609 Qbitmap_spec_p
= intern ("bitmap-spec-p");
6610 staticpro (&Qbitmap_spec_p
);
6611 Qframe_update_face_colors
= intern ("frame-update-face-colors");
6612 staticpro (&Qframe_update_face_colors
);
6614 /* Lisp face attribute keywords. */
6615 QCfamily
= intern (":family");
6616 staticpro (&QCfamily
);
6617 QCheight
= intern (":height");
6618 staticpro (&QCheight
);
6619 QCweight
= intern (":weight");
6620 staticpro (&QCweight
);
6621 QCslant
= intern (":slant");
6622 staticpro (&QCslant
);
6623 QCunderline
= intern (":underline");
6624 staticpro (&QCunderline
);
6625 QCinverse_video
= intern (":inverse-video");
6626 staticpro (&QCinverse_video
);
6627 QCreverse_video
= intern (":reverse-video");
6628 staticpro (&QCreverse_video
);
6629 QCforeground
= intern (":foreground");
6630 staticpro (&QCforeground
);
6631 QCbackground
= intern (":background");
6632 staticpro (&QCbackground
);
6633 QCstipple
= intern (":stipple");;
6634 staticpro (&QCstipple
);
6635 QCwidth
= intern (":width");
6636 staticpro (&QCwidth
);
6637 QCfont
= intern (":font");
6638 staticpro (&QCfont
);
6639 QCbold
= intern (":bold");
6640 staticpro (&QCbold
);
6641 QCitalic
= intern (":italic");
6642 staticpro (&QCitalic
);
6643 QCoverline
= intern (":overline");
6644 staticpro (&QCoverline
);
6645 QCstrike_through
= intern (":strike-through");
6646 staticpro (&QCstrike_through
);
6647 QCbox
= intern (":box");
6650 /* Symbols used for Lisp face attribute values. */
6651 QCcolor
= intern (":color");
6652 staticpro (&QCcolor
);
6653 QCline_width
= intern (":line-width");
6654 staticpro (&QCline_width
);
6655 QCstyle
= intern (":style");
6656 staticpro (&QCstyle
);
6657 Qreleased_button
= intern ("released-button");
6658 staticpro (&Qreleased_button
);
6659 Qpressed_button
= intern ("pressed-button");
6660 staticpro (&Qpressed_button
);
6661 Qnormal
= intern ("normal");
6662 staticpro (&Qnormal
);
6663 Qultra_light
= intern ("ultra-light");
6664 staticpro (&Qultra_light
);
6665 Qextra_light
= intern ("extra-light");
6666 staticpro (&Qextra_light
);
6667 Qlight
= intern ("light");
6668 staticpro (&Qlight
);
6669 Qsemi_light
= intern ("semi-light");
6670 staticpro (&Qsemi_light
);
6671 Qsemi_bold
= intern ("semi-bold");
6672 staticpro (&Qsemi_bold
);
6673 Qbold
= intern ("bold");
6675 Qextra_bold
= intern ("extra-bold");
6676 staticpro (&Qextra_bold
);
6677 Qultra_bold
= intern ("ultra-bold");
6678 staticpro (&Qultra_bold
);
6679 Qoblique
= intern ("oblique");
6680 staticpro (&Qoblique
);
6681 Qitalic
= intern ("italic");
6682 staticpro (&Qitalic
);
6683 Qreverse_oblique
= intern ("reverse-oblique");
6684 staticpro (&Qreverse_oblique
);
6685 Qreverse_italic
= intern ("reverse-italic");
6686 staticpro (&Qreverse_italic
);
6687 Qultra_condensed
= intern ("ultra-condensed");
6688 staticpro (&Qultra_condensed
);
6689 Qextra_condensed
= intern ("extra-condensed");
6690 staticpro (&Qextra_condensed
);
6691 Qcondensed
= intern ("condensed");
6692 staticpro (&Qcondensed
);
6693 Qsemi_condensed
= intern ("semi-condensed");
6694 staticpro (&Qsemi_condensed
);
6695 Qsemi_expanded
= intern ("semi-expanded");
6696 staticpro (&Qsemi_expanded
);
6697 Qexpanded
= intern ("expanded");
6698 staticpro (&Qexpanded
);
6699 Qextra_expanded
= intern ("extra-expanded");
6700 staticpro (&Qextra_expanded
);
6701 Qultra_expanded
= intern ("ultra-expanded");
6702 staticpro (&Qultra_expanded
);
6703 Qbackground_color
= intern ("background-color");
6704 staticpro (&Qbackground_color
);
6705 Qforeground_color
= intern ("foreground-color");
6706 staticpro (&Qforeground_color
);
6707 Qunspecified
= intern ("unspecified");
6708 staticpro (&Qunspecified
);
6710 Qface_alias
= intern ("face-alias");
6711 staticpro (&Qface_alias
);
6712 Qdefault
= intern ("default");
6713 staticpro (&Qdefault
);
6714 Qtool_bar
= intern ("tool-bar");
6715 staticpro (&Qtool_bar
);
6716 Qregion
= intern ("region");
6717 staticpro (&Qregion
);
6718 Qfringe
= intern ("fringe");
6719 staticpro (&Qfringe
);
6720 Qheader_line
= intern ("header-line");
6721 staticpro (&Qheader_line
);
6722 Qscroll_bar
= intern ("scroll-bar");
6723 staticpro (&Qscroll_bar
);
6724 Qmenu
= intern ("menu");
6726 Qcursor
= intern ("cursor");
6727 staticpro (&Qcursor
);
6728 Qborder
= intern ("border");
6729 staticpro (&Qborder
);
6730 Qmouse
= intern ("mouse");
6731 staticpro (&Qmouse
);
6732 Qtty_color_desc
= intern ("tty-color-desc");
6733 staticpro (&Qtty_color_desc
);
6734 Qtty_color_by_index
= intern ("tty-color-by-index");
6735 staticpro (&Qtty_color_by_index
);
6737 defsubr (&Sinternal_make_lisp_face
);
6738 defsubr (&Sinternal_lisp_face_p
);
6739 defsubr (&Sinternal_set_lisp_face_attribute
);
6740 #ifdef HAVE_WINDOW_SYSTEM
6741 defsubr (&Sinternal_set_lisp_face_attribute_from_resource
);
6743 defsubr (&Scolor_gray_p
);
6744 defsubr (&Scolor_supported_p
);
6745 defsubr (&Sinternal_get_lisp_face_attribute
);
6746 defsubr (&Sinternal_lisp_face_attribute_values
);
6747 defsubr (&Sinternal_lisp_face_equal_p
);
6748 defsubr (&Sinternal_lisp_face_empty_p
);
6749 defsubr (&Sinternal_copy_lisp_face
);
6750 defsubr (&Sinternal_merge_in_global_face
);
6751 defsubr (&Sface_font
);
6752 defsubr (&Sframe_face_alist
);
6753 defsubr (&Sinternal_set_font_selection_order
);
6754 defsubr (&Sinternal_set_alternative_font_family_alist
);
6756 defsubr (&Sdump_face
);
6757 defsubr (&Sshow_face_resources
);
6758 #endif /* GLYPH_DEBUG */
6759 defsubr (&Sclear_face_cache
);
6760 defsubr (&Stty_suppress_bold_inverse_default_colors
);
6762 #if defined DEBUG_X_COLORS && defined HAVE_X_WINDOWS
6763 defsubr (&Sdump_colors
);
6766 DEFVAR_LISP ("font-list-limit", &Vfont_list_limit
,
6767 "*Limit for font matching.\n\
6768 If an integer > 0, font matching functions won't load more than\n\
6769 that number of fonts when searching for a matching font.");
6770 Vfont_list_limit
= make_number (DEFAULT_FONT_LIST_LIMIT
);
6772 DEFVAR_LISP ("face-new-frame-defaults", &Vface_new_frame_defaults
,
6773 "List of global face definitions (for internal use only.)");
6774 Vface_new_frame_defaults
= Qnil
;
6776 DEFVAR_LISP ("face-default-stipple", &Vface_default_stipple
,
6777 "*Default stipple pattern used on monochrome displays.\n\
6778 This stipple pattern is used on monochrome displays\n\
6779 instead of shades of gray for a face background color.\n\
6780 See `set-face-stipple' for possible values for this variable.");
6781 Vface_default_stipple
= build_string ("gray3");
6783 DEFVAR_LISP ("face-alternative-font-family-alist",
6784 &Vface_alternative_font_family_alist
, "");
6785 Vface_alternative_font_family_alist
= Qnil
;
6789 DEFVAR_LISP ("scalable-fonts-allowed", &Vscalable_fonts_allowed
,
6790 "Allowed scalable fonts.\n\
6791 A value of nil means don't allow any scalable fonts.\n\
6792 A value of t means allow any scalable font.\n\
6793 Otherwise, value must be a list of regular expressions. A font may be\n\
6794 scaled if its name matches a regular expression in the list.");
6796 /* Windows uses mainly truetype fonts, so disallowing scalable fonts
6797 by default limits the fonts available severely. */
6798 Vscalable_fonts_allowed
= Qt
;
6800 Vscalable_fonts_allowed
= Qnil
;
6802 #endif /* SCALABLE_FONTS */
6804 #ifdef HAVE_WINDOW_SYSTEM
6805 defsubr (&Sbitmap_spec_p
);
6806 defsubr (&Sx_list_fonts
);
6807 defsubr (&Sinternal_face_x_get_resource
);
6808 defsubr (&Sx_family_fonts
);
6809 defsubr (&Sx_font_family_list
);
6810 #endif /* HAVE_WINDOW_SYSTEM */