(shell-file-name-quote-list): Add backslash.
[bpt/emacs.git] / src / xfaces.c
... / ...
CommitLineData
1/* xfaces.c -- "Face" primitives.
2 Copyright (C) 1993, 1994, 1998, 1999, 2000, 2001, 2002, 2003
3 Free Software Foundation.
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2, or (at your option)
10any later version.
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Emacs; see the file COPYING. If not, write to
19the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20Boston, MA 02111-1307, USA. */
21
22/* New face implementation by Gerd Moellmann <gerd@gnu.org>. */
23
24/* Faces.
25
26 When using Emacs with X, the display style of characters can be
27 changed by defining `faces'. Each face can specify the following
28 display attributes:
29
30 1. Font family name.
31
32 2. Relative proportionate width, aka character set width or set
33 width (swidth), e.g. `semi-compressed'.
34
35 3. Font height in 1/10pt.
36
37 4. Font weight, e.g. `bold'.
38
39 5. Font slant, e.g. `italic'.
40
41 6. Foreground color.
42
43 7. Background color.
44
45 8. Whether or not characters should be underlined, and in what color.
46
47 9. Whether or not characters should be displayed in inverse video.
48
49 10. A background stipple, a bitmap.
50
51 11. Whether or not characters should be overlined, and in what color.
52
53 12. Whether or not characters should be strike-through, and in what
54 color.
55
56 13. Whether or not a box should be drawn around characters, the box
57 type, and, for simple boxes, in what color.
58
59 14. Font or fontset pattern, or nil. This is a special attribute.
60 When this attribute is specified, the face uses a font opened by
61 that pattern as is. In addition, all the other font-related
62 attributes (1st thru 5th) are generated from the opened font name.
63 On the other hand, if one of the other font-related attributes are
64 specified, this attribute is set to nil. In that case, the face
65 doesn't inherit this attribute from the `default' face, and uses a
66 font determined by the other attributes (those may be inherited
67 from the `default' face).
68
69 15. A face name or list of face names from which to inherit attributes.
70
71 16. A specified average font width, which is invisible from Lisp,
72 and is used to ensure that a font specified on the command line,
73 for example, can be matched exactly.
74
75 Faces are frame-local by nature because Emacs allows to define the
76 same named face (face names are symbols) differently for different
77 frames. Each frame has an alist of face definitions for all named
78 faces. The value of a named face in such an alist is a Lisp vector
79 with the symbol `face' in slot 0, and a slot for each of the face
80 attributes mentioned above.
81
82 There is also a global face alist `Vface_new_frame_defaults'. Face
83 definitions from this list are used to initialize faces of newly
84 created frames.
85
86 A face doesn't have to specify all attributes. Those not specified
87 have a value of `unspecified'. Faces specifying all attributes but
88 the 14th are called `fully-specified'.
89
90
91 Face merging.
92
93 The display style of a given character in the text is determined by
94 combining several faces. This process is called `face merging'.
95 Any aspect of the display style that isn't specified by overlays or
96 text properties is taken from the `default' face. Since it is made
97 sure that the default face is always fully-specified, face merging
98 always results in a fully-specified face.
99
100
101 Face realization.
102
103 After all face attributes for a character have been determined by
104 merging faces of that character, that face is `realized'. The
105 realization process maps face attributes to what is physically
106 available on the system where Emacs runs. The result is a
107 `realized face' in form of a struct face which is stored in the
108 face cache of the frame on which it was realized.
109
110 Face realization is done in the context of the character to display
111 because different fonts may be used for different characters. In
112 other words, for characters that have different font
113 specifications, different realized faces are needed to display
114 them.
115
116 Font specification is done by fontsets. See the comment in
117 fontset.c for the details. In the current implementation, all ASCII
118 characters share the same font in a fontset.
119
120 Faces are at first realized for ASCII characters, and, at that
121 time, assigned a specific realized fontset. Hereafter, we call
122 such a face as `ASCII face'. When a face for a multibyte character
123 is realized, it inherits (thus shares) a fontset of an ASCII face
124 that has the same attributes other than font-related ones.
125
126 Thus, all realized face have a realized fontset.
127
128
129 Unibyte text.
130
131 Unibyte text (i.e. raw 8-bit characters) is displayed with the same
132 font as ASCII characters. That is because it is expected that
133 unibyte text users specify a font that is suitable both for ASCII
134 and raw 8-bit characters.
135
136
137 Font selection.
138
139 Font selection tries to find the best available matching font for a
140 given (character, face) combination.
141
142 If the face specifies a fontset name, that fontset determines a
143 pattern for fonts of the given character. If the face specifies a
144 font name or the other font-related attributes, a fontset is
145 realized from the default fontset. In that case, that
146 specification determines a pattern for ASCII characters and the
147 default fontset determines a pattern for multibyte characters.
148
149 Available fonts on the system on which Emacs runs are then matched
150 against the font pattern. The result of font selection is the best
151 match for the given face attributes in this font list.
152
153 Font selection can be influenced by the user.
154
155 1. The user can specify the relative importance he gives the face
156 attributes width, height, weight, and slant by setting
157 face-font-selection-order (faces.el) to a list of face attribute
158 names. The default is '(:width :height :weight :slant), and means
159 that font selection first tries to find a good match for the font
160 width specified by a face, then---within fonts with that
161 width---tries to find a best match for the specified font height,
162 etc.
163
164 2. Setting face-font-family-alternatives allows the user to
165 specify alternative font families to try if a family specified by a
166 face doesn't exist.
167
168 3. Setting face-font-registry-alternatives allows the user to
169 specify all alternative font registries to try for a face
170 specifying a registry.
171
172 4. Setting face-ignored-fonts allows the user to ignore specific
173 fonts.
174
175
176 Character composition.
177
178 Usually, the realization process is already finished when Emacs
179 actually reflects the desired glyph matrix on the screen. However,
180 on displaying a composition (sequence of characters to be composed
181 on the screen), a suitable font for the components of the
182 composition is selected and realized while drawing them on the
183 screen, i.e. the realization process is delayed but in principle
184 the same.
185
186
187 Initialization of basic faces.
188
189 The faces `default', `modeline' are considered `basic faces'.
190 When redisplay happens the first time for a newly created frame,
191 basic faces are realized for CHARSET_ASCII. Frame parameters are
192 used to fill in unspecified attributes of the default face. */
193
194#include <config.h>
195#include <sys/types.h>
196#include <sys/stat.h>
197
198#include "lisp.h"
199#include "charset.h"
200#include "keyboard.h"
201#include "frame.h"
202
203#ifdef HAVE_WINDOW_SYSTEM
204#include "fontset.h"
205#endif /* HAVE_WINDOW_SYSTEM */
206
207#ifdef HAVE_X_WINDOWS
208#include "xterm.h"
209#ifdef USE_MOTIF
210#include <Xm/Xm.h>
211#include <Xm/XmStrDefs.h>
212#endif /* USE_MOTIF */
213#endif /* HAVE_X_WINDOWS */
214
215#ifdef MSDOS
216#include "dosfns.h"
217#endif
218
219#ifdef WINDOWSNT
220#include "w32term.h"
221#include "fontset.h"
222/* Redefine X specifics to W32 equivalents to avoid cluttering the
223 code with #ifdef blocks. */
224#undef FRAME_X_DISPLAY_INFO
225#define FRAME_X_DISPLAY_INFO FRAME_W32_DISPLAY_INFO
226#define x_display_info w32_display_info
227#define FRAME_X_FONT_TABLE FRAME_W32_FONT_TABLE
228#define check_x check_w32
229#define x_list_fonts w32_list_fonts
230#define GCGraphicsExposures 0
231#endif /* WINDOWSNT */
232
233#ifdef MAC_OS
234#include "macterm.h"
235#define x_display_info mac_display_info
236#define check_x check_mac
237#endif /* MAC_OS */
238
239#include "buffer.h"
240#include "dispextern.h"
241#include "blockinput.h"
242#include "window.h"
243#include "intervals.h"
244
245#ifdef HAVE_X_WINDOWS
246
247/* Compensate for a bug in Xos.h on some systems, on which it requires
248 time.h. On some such systems, Xos.h tries to redefine struct
249 timeval and struct timezone if USG is #defined while it is
250 #included. */
251
252#ifdef XOS_NEEDS_TIME_H
253#include <time.h>
254#undef USG
255#include <X11/Xos.h>
256#define USG
257#define __TIMEVAL__
258#else /* not XOS_NEEDS_TIME_H */
259#include <X11/Xos.h>
260#endif /* not XOS_NEEDS_TIME_H */
261
262#endif /* HAVE_X_WINDOWS */
263
264#include <stdio.h>
265#include <ctype.h>
266
267#define abs(X) ((X) < 0 ? -(X) : (X))
268
269/* Number of pt per inch (from the TeXbook). */
270
271#define PT_PER_INCH 72.27
272
273/* Non-zero if face attribute ATTR is unspecified. */
274
275#define UNSPECIFIEDP(ATTR) EQ ((ATTR), Qunspecified)
276
277/* Value is the number of elements of VECTOR. */
278
279#define DIM(VECTOR) (sizeof (VECTOR) / sizeof *(VECTOR))
280
281/* Make a copy of string S on the stack using alloca. Value is a pointer
282 to the copy. */
283
284#define STRDUPA(S) strcpy ((char *) alloca (strlen ((S)) + 1), (S))
285
286/* Make a copy of the contents of Lisp string S on the stack using
287 alloca. Value is a pointer to the copy. */
288
289#define LSTRDUPA(S) STRDUPA (SDATA ((S)))
290
291/* Size of hash table of realized faces in face caches (should be a
292 prime number). */
293
294#define FACE_CACHE_BUCKETS_SIZE 1001
295
296/* Keyword symbols used for face attribute names. */
297
298Lisp_Object QCfamily, QCheight, QCweight, QCslant, QCunderline;
299Lisp_Object QCinverse_video, QCforeground, QCbackground, QCstipple;
300Lisp_Object QCwidth, QCfont, QCbold, QCitalic;
301Lisp_Object QCreverse_video;
302Lisp_Object QCoverline, QCstrike_through, QCbox, QCinherit;
303
304/* Symbols used for attribute values. */
305
306Lisp_Object Qnormal, Qbold, Qultra_light, Qextra_light, Qlight;
307Lisp_Object Qsemi_light, Qsemi_bold, Qextra_bold, Qultra_bold;
308Lisp_Object Qoblique, Qitalic, Qreverse_oblique, Qreverse_italic;
309Lisp_Object Qultra_condensed, Qextra_condensed, Qcondensed;
310Lisp_Object Qsemi_condensed, Qsemi_expanded, Qexpanded, Qextra_expanded;
311Lisp_Object Qultra_expanded;
312Lisp_Object Qreleased_button, Qpressed_button;
313Lisp_Object QCstyle, QCcolor, QCline_width;
314Lisp_Object Qunspecified;
315
316char unspecified_fg[] = "unspecified-fg", unspecified_bg[] = "unspecified-bg";
317
318/* The name of the function to call when the background of the frame
319 has changed, frame_update_face_colors. */
320
321Lisp_Object Qframe_update_face_colors;
322
323/* Names of basic faces. */
324
325Lisp_Object Qdefault, Qtool_bar, Qregion, Qfringe;
326Lisp_Object Qheader_line, Qscroll_bar, Qcursor, Qborder, Qmouse, Qmenu;
327Lisp_Object Qmode_line_inactive;
328extern Lisp_Object Qmode_line;
329
330/* The symbol `face-alias'. A symbols having that property is an
331 alias for another face. Value of the property is the name of
332 the aliased face. */
333
334Lisp_Object Qface_alias;
335
336/* Default stipple pattern used on monochrome displays. This stipple
337 pattern is used on monochrome displays instead of shades of gray
338 for a face background color. See `set-face-stipple' for possible
339 values for this variable. */
340
341Lisp_Object Vface_default_stipple;
342
343/* Alist of alternative font families. Each element is of the form
344 (FAMILY FAMILY1 FAMILY2 ...). If fonts of FAMILY can't be loaded,
345 try FAMILY1, then FAMILY2, ... */
346
347Lisp_Object Vface_alternative_font_family_alist;
348
349/* Alist of alternative font registries. Each element is of the form
350 (REGISTRY REGISTRY1 REGISTRY2...). If fonts of REGISTRY can't be
351 loaded, try REGISTRY1, then REGISTRY2, ... */
352
353Lisp_Object Vface_alternative_font_registry_alist;
354
355/* Allowed scalable fonts. A value of nil means don't allow any
356 scalable fonts. A value of t means allow the use of any scalable
357 font. Otherwise, value must be a list of regular expressions. A
358 font may be scaled if its name matches a regular expression in the
359 list. */
360
361Lisp_Object Vscalable_fonts_allowed, Qscalable_fonts_allowed;
362
363/* List of regular expressions that matches names of fonts to ignore. */
364
365Lisp_Object Vface_ignored_fonts;
366
367/* Alist of font name patterns vs the rescaling factor. */
368
369Lisp_Object Vface_font_rescale_alist;
370
371/* Maximum number of fonts to consider in font_list. If not an
372 integer > 0, DEFAULT_FONT_LIST_LIMIT is used instead. */
373
374Lisp_Object Vfont_list_limit;
375#define DEFAULT_FONT_LIST_LIMIT 100
376
377/* The symbols `foreground-color' and `background-color' which can be
378 used as part of a `face' property. This is for compatibility with
379 Emacs 20.2. */
380
381Lisp_Object Qforeground_color, Qbackground_color;
382
383/* The symbols `face' and `mouse-face' used as text properties. */
384
385Lisp_Object Qface;
386extern Lisp_Object Qmouse_face;
387
388/* Error symbol for wrong_type_argument in load_pixmap. */
389
390Lisp_Object Qbitmap_spec_p;
391
392/* Alist of global face definitions. Each element is of the form
393 (FACE . LFACE) where FACE is a symbol naming a face and LFACE
394 is a Lisp vector of face attributes. These faces are used
395 to initialize faces for new frames. */
396
397Lisp_Object Vface_new_frame_defaults;
398
399/* The next ID to assign to Lisp faces. */
400
401static int next_lface_id;
402
403/* A vector mapping Lisp face Id's to face names. */
404
405static Lisp_Object *lface_id_to_name;
406static int lface_id_to_name_size;
407
408/* TTY color-related functions (defined in tty-colors.el). */
409
410Lisp_Object Qtty_color_desc, Qtty_color_by_index, Qtty_color_standard_values;
411
412/* The name of the function used to compute colors on TTYs. */
413
414Lisp_Object Qtty_color_alist;
415
416/* An alist of defined terminal colors and their RGB values. */
417
418Lisp_Object Vtty_defined_color_alist;
419
420/* Counter for calls to clear_face_cache. If this counter reaches
421 CLEAR_FONT_TABLE_COUNT, and a frame has more than
422 CLEAR_FONT_TABLE_NFONTS load, unused fonts are freed. */
423
424static int clear_font_table_count;
425#define CLEAR_FONT_TABLE_COUNT 100
426#define CLEAR_FONT_TABLE_NFONTS 10
427
428/* Non-zero means face attributes have been changed since the last
429 redisplay. Used in redisplay_internal. */
430
431int face_change_count;
432
433/* Non-zero means don't display bold text if a face's foreground
434 and background colors are the inverse of the default colors of the
435 display. This is a kluge to suppress `bold black' foreground text
436 which is hard to read on an LCD monitor. */
437
438int tty_suppress_bold_inverse_default_colors_p;
439
440/* A list of the form `((x . y))' used to avoid consing in
441 Finternal_set_lisp_face_attribute. */
442
443static Lisp_Object Vparam_value_alist;
444
445/* The total number of colors currently allocated. */
446
447#if GLYPH_DEBUG
448static int ncolors_allocated;
449static int npixmaps_allocated;
450static int ngcs;
451#endif
452
453/* Non-zero means the definition of the `menu' face for new frames has
454 been changed. */
455
456int menu_face_changed_default;
457
458\f
459/* Function prototypes. */
460
461struct font_name;
462struct table_entry;
463
464static void map_tty_color P_ ((struct frame *, struct face *,
465 enum lface_attribute_index, int *));
466static Lisp_Object resolve_face_name P_ ((Lisp_Object));
467static int may_use_scalable_font_p P_ ((const char *));
468static void set_font_frame_param P_ ((Lisp_Object, Lisp_Object));
469static int better_font_p P_ ((int *, struct font_name *, struct font_name *,
470 int, int));
471static int x_face_list_fonts P_ ((struct frame *, char *,
472 struct font_name **, int, int));
473static int font_scalable_p P_ ((struct font_name *));
474static int get_lface_attributes P_ ((struct frame *, Lisp_Object, Lisp_Object *, int));
475static int load_pixmap P_ ((struct frame *, Lisp_Object, unsigned *, unsigned *));
476static unsigned char *xstrlwr P_ ((unsigned char *));
477static void signal_error P_ ((char *, Lisp_Object));
478static struct frame *frame_or_selected_frame P_ ((Lisp_Object, int));
479static void load_face_font P_ ((struct frame *, struct face *, int));
480static void load_face_colors P_ ((struct frame *, struct face *, Lisp_Object *));
481static void free_face_colors P_ ((struct frame *, struct face *));
482static int face_color_gray_p P_ ((struct frame *, char *));
483static char *build_font_name P_ ((struct font_name *));
484static void free_font_names P_ ((struct font_name *, int));
485static int sorted_font_list P_ ((struct frame *, char *,
486 int (*cmpfn) P_ ((const void *, const void *)),
487 struct font_name **));
488static int font_list_1 P_ ((struct frame *, Lisp_Object, Lisp_Object,
489 Lisp_Object, struct font_name **));
490static int font_list P_ ((struct frame *, Lisp_Object, Lisp_Object,
491 Lisp_Object, struct font_name **));
492static int try_font_list P_ ((struct frame *, Lisp_Object *,
493 Lisp_Object, Lisp_Object, struct font_name **,
494 int));
495static int try_alternative_families P_ ((struct frame *f, Lisp_Object,
496 Lisp_Object, struct font_name **));
497static int cmp_font_names P_ ((const void *, const void *));
498static struct face *realize_face P_ ((struct face_cache *, Lisp_Object *, int,
499 struct face *, int));
500static struct face *realize_x_face P_ ((struct face_cache *,
501 Lisp_Object *, int, struct face *));
502static struct face *realize_tty_face P_ ((struct face_cache *,
503 Lisp_Object *, int));
504static int realize_basic_faces P_ ((struct frame *));
505static int realize_default_face P_ ((struct frame *));
506static void realize_named_face P_ ((struct frame *, Lisp_Object, int));
507static int lface_fully_specified_p P_ ((Lisp_Object *));
508static int lface_equal_p P_ ((Lisp_Object *, Lisp_Object *));
509static unsigned hash_string_case_insensitive P_ ((Lisp_Object));
510static unsigned lface_hash P_ ((Lisp_Object *));
511static int lface_same_font_attributes_p P_ ((Lisp_Object *, Lisp_Object *));
512static struct face_cache *make_face_cache P_ ((struct frame *));
513static void free_realized_face P_ ((struct frame *, struct face *));
514static void clear_face_gcs P_ ((struct face_cache *));
515static void free_face_cache P_ ((struct face_cache *));
516static int face_numeric_weight P_ ((Lisp_Object));
517static int face_numeric_slant P_ ((Lisp_Object));
518static int face_numeric_swidth P_ ((Lisp_Object));
519static int face_fontset P_ ((Lisp_Object *));
520static char *choose_face_font P_ ((struct frame *, Lisp_Object *, int, int, int*));
521static void merge_face_vectors P_ ((struct frame *, Lisp_Object *, Lisp_Object*, Lisp_Object));
522static void merge_face_inheritance P_ ((struct frame *f, Lisp_Object,
523 Lisp_Object *, Lisp_Object));
524static void merge_face_vector_with_property P_ ((struct frame *, Lisp_Object *,
525 Lisp_Object));
526static int set_lface_from_font_name P_ ((struct frame *, Lisp_Object,
527 Lisp_Object, int, int));
528static Lisp_Object lface_from_face_name P_ ((struct frame *, Lisp_Object, int));
529static struct face *make_realized_face P_ ((Lisp_Object *));
530static void free_realized_faces P_ ((struct face_cache *));
531static char *best_matching_font P_ ((struct frame *, Lisp_Object *,
532 struct font_name *, int, int, int *));
533static void cache_face P_ ((struct face_cache *, struct face *, unsigned));
534static void uncache_face P_ ((struct face_cache *, struct face *));
535static int xlfd_numeric_slant P_ ((struct font_name *));
536static int xlfd_numeric_weight P_ ((struct font_name *));
537static int xlfd_numeric_swidth P_ ((struct font_name *));
538static Lisp_Object xlfd_symbolic_slant P_ ((struct font_name *));
539static Lisp_Object xlfd_symbolic_weight P_ ((struct font_name *));
540static Lisp_Object xlfd_symbolic_swidth P_ ((struct font_name *));
541static int xlfd_fixed_p P_ ((struct font_name *));
542static int xlfd_numeric_value P_ ((struct table_entry *, int, struct font_name *,
543 int, int));
544static Lisp_Object xlfd_symbolic_value P_ ((struct table_entry *, int,
545 struct font_name *, int,
546 Lisp_Object));
547static struct table_entry *xlfd_lookup_field_contents P_ ((struct table_entry *, int,
548 struct font_name *, int));
549
550#ifdef HAVE_WINDOW_SYSTEM
551
552static int split_font_name P_ ((struct frame *, struct font_name *, int));
553static int xlfd_point_size P_ ((struct frame *, struct font_name *));
554static void sort_fonts P_ ((struct frame *, struct font_name *, int,
555 int (*cmpfn) P_ ((const void *, const void *))));
556static GC x_create_gc P_ ((struct frame *, unsigned long, XGCValues *));
557static void x_free_gc P_ ((struct frame *, GC));
558static void clear_font_table P_ ((struct x_display_info *));
559
560#ifdef WINDOWSNT
561extern Lisp_Object w32_list_fonts P_ ((struct frame *, Lisp_Object, int, int));
562#endif /* WINDOWSNT */
563
564#ifdef USE_X_TOOLKIT
565static void x_update_menu_appearance P_ ((struct frame *));
566
567extern void free_frame_menubar P_ ((struct frame *));
568#endif /* USE_X_TOOLKIT */
569
570#endif /* HAVE_WINDOW_SYSTEM */
571
572\f
573/***********************************************************************
574 Utilities
575 ***********************************************************************/
576
577#ifdef HAVE_X_WINDOWS
578
579#ifdef DEBUG_X_COLORS
580
581/* The following is a poor mans infrastructure for debugging X color
582 allocation problems on displays with PseudoColor-8. Some X servers
583 like 3.3.5 XF86_SVGA with Matrox cards apparently don't implement
584 color reference counts completely so that they don't signal an
585 error when a color is freed whose reference count is already 0.
586 Other X servers do. To help me debug this, the following code
587 implements a simple reference counting schema of its own, for a
588 single display/screen. --gerd. */
589
590/* Reference counts for pixel colors. */
591
592int color_count[256];
593
594/* Register color PIXEL as allocated. */
595
596void
597register_color (pixel)
598 unsigned long pixel;
599{
600 xassert (pixel < 256);
601 ++color_count[pixel];
602}
603
604
605/* Register color PIXEL as deallocated. */
606
607void
608unregister_color (pixel)
609 unsigned long pixel;
610{
611 xassert (pixel < 256);
612 if (color_count[pixel] > 0)
613 --color_count[pixel];
614 else
615 abort ();
616}
617
618
619/* Register N colors from PIXELS as deallocated. */
620
621void
622unregister_colors (pixels, n)
623 unsigned long *pixels;
624 int n;
625{
626 int i;
627 for (i = 0; i < n; ++i)
628 unregister_color (pixels[i]);
629}
630
631
632DEFUN ("dump-colors", Fdump_colors, Sdump_colors, 0, 0, 0,
633 doc: /* Dump currently allocated colors to stderr. */)
634 ()
635{
636 int i, n;
637
638 fputc ('\n', stderr);
639
640 for (i = n = 0; i < sizeof color_count / sizeof color_count[0]; ++i)
641 if (color_count[i])
642 {
643 fprintf (stderr, "%3d: %5d", i, color_count[i]);
644 ++n;
645 if (n % 5 == 0)
646 fputc ('\n', stderr);
647 else
648 fputc ('\t', stderr);
649 }
650
651 if (n % 5 != 0)
652 fputc ('\n', stderr);
653 return Qnil;
654}
655
656#endif /* DEBUG_X_COLORS */
657
658
659/* Free colors used on frame F. PIXELS is an array of NPIXELS pixel
660 color values. Interrupt input must be blocked when this function
661 is called. */
662
663void
664x_free_colors (f, pixels, npixels)
665 struct frame *f;
666 unsigned long *pixels;
667 int npixels;
668{
669 int class = FRAME_X_DISPLAY_INFO (f)->visual->class;
670
671 /* If display has an immutable color map, freeing colors is not
672 necessary and some servers don't allow it. So don't do it. */
673 if (class != StaticColor && class != StaticGray && class != TrueColor)
674 {
675#ifdef DEBUG_X_COLORS
676 unregister_colors (pixels, npixels);
677#endif
678 XFreeColors (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f),
679 pixels, npixels, 0);
680 }
681}
682
683
684/* Free colors used on frame F. PIXELS is an array of NPIXELS pixel
685 color values. Interrupt input must be blocked when this function
686 is called. */
687
688void
689x_free_dpy_colors (dpy, screen, cmap, pixels, npixels)
690 Display *dpy;
691 Screen *screen;
692 Colormap cmap;
693 unsigned long *pixels;
694 int npixels;
695{
696 struct x_display_info *dpyinfo = x_display_info_for_display (dpy);
697 int class = dpyinfo->visual->class;
698
699 /* If display has an immutable color map, freeing colors is not
700 necessary and some servers don't allow it. So don't do it. */
701 if (class != StaticColor && class != StaticGray && class != TrueColor)
702 {
703#ifdef DEBUG_X_COLORS
704 unregister_colors (pixels, npixels);
705#endif
706 XFreeColors (dpy, cmap, pixels, npixels, 0);
707 }
708}
709
710
711/* Create and return a GC for use on frame F. GC values and mask
712 are given by XGCV and MASK. */
713
714static INLINE GC
715x_create_gc (f, mask, xgcv)
716 struct frame *f;
717 unsigned long mask;
718 XGCValues *xgcv;
719{
720 GC gc;
721 BLOCK_INPUT;
722 gc = XCreateGC (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), mask, xgcv);
723 UNBLOCK_INPUT;
724 IF_DEBUG (++ngcs);
725 return gc;
726}
727
728
729/* Free GC which was used on frame F. */
730
731static INLINE void
732x_free_gc (f, gc)
733 struct frame *f;
734 GC gc;
735{
736 BLOCK_INPUT;
737 xassert (--ngcs >= 0);
738 XFreeGC (FRAME_X_DISPLAY (f), gc);
739 UNBLOCK_INPUT;
740}
741
742#endif /* HAVE_X_WINDOWS */
743
744#ifdef WINDOWSNT
745/* W32 emulation of GCs */
746
747static INLINE GC
748x_create_gc (f, mask, xgcv)
749 struct frame *f;
750 unsigned long mask;
751 XGCValues *xgcv;
752{
753 GC gc;
754 BLOCK_INPUT;
755 gc = XCreateGC (NULL, FRAME_W32_WINDOW (f), mask, xgcv);
756 UNBLOCK_INPUT;
757 IF_DEBUG (++ngcs);
758 return gc;
759}
760
761
762/* Free GC which was used on frame F. */
763
764static INLINE void
765x_free_gc (f, gc)
766 struct frame *f;
767 GC gc;
768{
769 BLOCK_INPUT;
770 xassert (--ngcs >= 0);
771 xfree (gc);
772 UNBLOCK_INPUT;
773}
774
775#endif /* WINDOWSNT */
776
777#ifdef MAC_OS
778/* Mac OS emulation of GCs */
779
780extern XGCValues *XCreateGC (void *, Window, unsigned long, XGCValues *);
781
782static INLINE GC
783x_create_gc (f, mask, xgcv)
784 struct frame *f;
785 unsigned long mask;
786 XGCValues *xgcv;
787{
788 GC gc;
789 gc = XCreateGC (FRAME_MAC_DISPLAY (f), FRAME_MAC_WINDOW (f), mask, xgcv);
790 return gc;
791}
792
793static INLINE void
794x_free_gc (f, gc)
795 struct frame *f;
796 GC gc;
797{
798 XFreeGC (FRAME_MAC_DISPLAY (f), gc);
799}
800
801#endif /* MAC_OS */
802
803/* Like stricmp. Used to compare parts of font names which are in
804 ISO8859-1. */
805
806int
807xstricmp (s1, s2)
808 const unsigned char *s1, *s2;
809{
810 while (*s1 && *s2)
811 {
812 unsigned char c1 = tolower (*s1);
813 unsigned char c2 = tolower (*s2);
814 if (c1 != c2)
815 return c1 < c2 ? -1 : 1;
816 ++s1, ++s2;
817 }
818
819 if (*s1 == 0)
820 return *s2 == 0 ? 0 : -1;
821 return 1;
822}
823
824
825/* Like strlwr, which might not always be available. */
826
827static unsigned char *
828xstrlwr (s)
829 unsigned char *s;
830{
831 unsigned char *p = s;
832
833 for (p = s; *p; ++p)
834 *p = tolower (*p);
835
836 return s;
837}
838
839
840/* Signal `error' with message S, and additional argument ARG. */
841
842static void
843signal_error (s, arg)
844 char *s;
845 Lisp_Object arg;
846{
847 Fsignal (Qerror, Fcons (build_string (s), Fcons (arg, Qnil)));
848}
849
850
851/* If FRAME is nil, return a pointer to the selected frame.
852 Otherwise, check that FRAME is a live frame, and return a pointer
853 to it. NPARAM is the parameter number of FRAME, for
854 CHECK_LIVE_FRAME. This is here because it's a frequent pattern in
855 Lisp function definitions. */
856
857static INLINE struct frame *
858frame_or_selected_frame (frame, nparam)
859 Lisp_Object frame;
860 int nparam;
861{
862 if (NILP (frame))
863 frame = selected_frame;
864
865 CHECK_LIVE_FRAME (frame);
866 return XFRAME (frame);
867}
868
869\f
870/***********************************************************************
871 Frames and faces
872 ***********************************************************************/
873
874/* Initialize face cache and basic faces for frame F. */
875
876void
877init_frame_faces (f)
878 struct frame *f;
879{
880 /* Make a face cache, if F doesn't have one. */
881 if (FRAME_FACE_CACHE (f) == NULL)
882 FRAME_FACE_CACHE (f) = make_face_cache (f);
883
884#ifdef HAVE_WINDOW_SYSTEM
885 /* Make the image cache. */
886 if (FRAME_WINDOW_P (f))
887 {
888 if (FRAME_X_IMAGE_CACHE (f) == NULL)
889 FRAME_X_IMAGE_CACHE (f) = make_image_cache ();
890 ++FRAME_X_IMAGE_CACHE (f)->refcount;
891 }
892#endif /* HAVE_WINDOW_SYSTEM */
893
894 /* Realize basic faces. Must have enough information in frame
895 parameters to realize basic faces at this point. */
896#ifdef HAVE_X_WINDOWS
897 if (!FRAME_X_P (f) || FRAME_X_WINDOW (f))
898#endif
899#ifdef WINDOWSNT
900 if (!FRAME_WINDOW_P (f) || FRAME_W32_WINDOW (f))
901#endif
902#ifdef MAC_OS
903 if (!FRAME_MAC_P (f) || FRAME_MAC_WINDOW (f))
904#endif
905 if (!realize_basic_faces (f))
906 abort ();
907}
908
909
910/* Free face cache of frame F. Called from Fdelete_frame. */
911
912void
913free_frame_faces (f)
914 struct frame *f;
915{
916 struct face_cache *face_cache = FRAME_FACE_CACHE (f);
917
918 if (face_cache)
919 {
920 free_face_cache (face_cache);
921 FRAME_FACE_CACHE (f) = NULL;
922 }
923
924#ifdef HAVE_WINDOW_SYSTEM
925 if (FRAME_WINDOW_P (f))
926 {
927 struct image_cache *image_cache = FRAME_X_IMAGE_CACHE (f);
928 if (image_cache)
929 {
930 --image_cache->refcount;
931 if (image_cache->refcount == 0)
932 free_image_cache (f);
933 }
934 }
935#endif /* HAVE_WINDOW_SYSTEM */
936}
937
938
939/* Clear face caches, and recompute basic faces for frame F. Call
940 this after changing frame parameters on which those faces depend,
941 or when realized faces have been freed due to changing attributes
942 of named faces. */
943
944void
945recompute_basic_faces (f)
946 struct frame *f;
947{
948 if (FRAME_FACE_CACHE (f))
949 {
950 clear_face_cache (0);
951 if (!realize_basic_faces (f))
952 abort ();
953 }
954}
955
956
957/* Clear the face caches of all frames. CLEAR_FONTS_P non-zero means
958 try to free unused fonts, too. */
959
960void
961clear_face_cache (clear_fonts_p)
962 int clear_fonts_p;
963{
964#ifdef HAVE_WINDOW_SYSTEM
965 Lisp_Object tail, frame;
966 struct frame *f;
967
968 if (clear_fonts_p
969 || ++clear_font_table_count == CLEAR_FONT_TABLE_COUNT)
970 {
971 struct x_display_info *dpyinfo;
972
973 /* Fonts are common for frames on one display, i.e. on
974 one X screen. */
975 for (dpyinfo = x_display_list; dpyinfo; dpyinfo = dpyinfo->next)
976 if (dpyinfo->n_fonts > CLEAR_FONT_TABLE_NFONTS)
977 clear_font_table (dpyinfo);
978
979 /* From time to time see if we can unload some fonts. This also
980 frees all realized faces on all frames. Fonts needed by
981 faces will be loaded again when faces are realized again. */
982 clear_font_table_count = 0;
983
984 FOR_EACH_FRAME (tail, frame)
985 {
986 struct frame *f = XFRAME (frame);
987 if (FRAME_WINDOW_P (f)
988 && FRAME_X_DISPLAY_INFO (f)->n_fonts > CLEAR_FONT_TABLE_NFONTS)
989 free_all_realized_faces (frame);
990 }
991 }
992 else
993 {
994 /* Clear GCs of realized faces. */
995 FOR_EACH_FRAME (tail, frame)
996 {
997 f = XFRAME (frame);
998 if (FRAME_WINDOW_P (f))
999 {
1000 clear_face_gcs (FRAME_FACE_CACHE (f));
1001 clear_image_cache (f, 0);
1002 }
1003 }
1004 }
1005#endif /* HAVE_WINDOW_SYSTEM */
1006}
1007
1008
1009DEFUN ("clear-face-cache", Fclear_face_cache, Sclear_face_cache, 0, 1, 0,
1010 doc: /* Clear face caches on all frames.
1011Optional THOROUGHLY non-nil means try to free unused fonts, too. */)
1012 (thoroughly)
1013 Lisp_Object thoroughly;
1014{
1015 clear_face_cache (!NILP (thoroughly));
1016 ++face_change_count;
1017 ++windows_or_buffers_changed;
1018 return Qnil;
1019}
1020
1021
1022
1023#ifdef HAVE_WINDOW_SYSTEM
1024
1025
1026/* Remove fonts from the font table of DPYINFO except for the default
1027 ASCII fonts of frames on that display. Called from clear_face_cache
1028 from time to time. */
1029
1030static void
1031clear_font_table (dpyinfo)
1032 struct x_display_info *dpyinfo;
1033{
1034 int i;
1035
1036 /* Free those fonts that are not used by frames on DPYINFO. */
1037 for (i = 0; i < dpyinfo->n_fonts; ++i)
1038 {
1039 struct font_info *font_info = dpyinfo->font_table + i;
1040 Lisp_Object tail, frame;
1041
1042 /* Check if slot is already free. */
1043 if (font_info->name == NULL)
1044 continue;
1045
1046 /* Don't free a default font of some frame. */
1047 FOR_EACH_FRAME (tail, frame)
1048 {
1049 struct frame *f = XFRAME (frame);
1050 if (FRAME_WINDOW_P (f)
1051 && font_info->font == FRAME_FONT (f))
1052 break;
1053 }
1054
1055 if (!NILP (tail))
1056 continue;
1057
1058 /* Free names. */
1059 if (font_info->full_name != font_info->name)
1060 xfree (font_info->full_name);
1061 xfree (font_info->name);
1062
1063 /* Free the font. */
1064 BLOCK_INPUT;
1065#ifdef HAVE_X_WINDOWS
1066 XFreeFont (dpyinfo->display, font_info->font);
1067#endif
1068#ifdef WINDOWSNT
1069 w32_unload_font (dpyinfo, font_info->font);
1070#endif
1071 UNBLOCK_INPUT;
1072
1073 /* Mark font table slot free. */
1074 font_info->font = NULL;
1075 font_info->name = font_info->full_name = NULL;
1076 }
1077}
1078
1079#endif /* HAVE_WINDOW_SYSTEM */
1080
1081
1082\f
1083/***********************************************************************
1084 X Pixmaps
1085 ***********************************************************************/
1086
1087#ifdef HAVE_WINDOW_SYSTEM
1088
1089DEFUN ("bitmap-spec-p", Fbitmap_spec_p, Sbitmap_spec_p, 1, 1, 0,
1090 doc: /* Value is non-nil if OBJECT is a valid bitmap specification.
1091A bitmap specification is either a string, a file name, or a list
1092\(WIDTH HEIGHT DATA) where WIDTH is the pixel width of the bitmap,
1093HEIGHT is its height, and DATA is a string containing the bits of
1094the pixmap. Bits are stored row by row, each row occupies
1095\(WIDTH + 7)/8 bytes. */)
1096 (object)
1097 Lisp_Object object;
1098{
1099 int pixmap_p = 0;
1100
1101 if (STRINGP (object))
1102 /* If OBJECT is a string, it's a file name. */
1103 pixmap_p = 1;
1104 else if (CONSP (object))
1105 {
1106 /* Otherwise OBJECT must be (WIDTH HEIGHT DATA), WIDTH and
1107 HEIGHT must be integers > 0, and DATA must be string large
1108 enough to hold a bitmap of the specified size. */
1109 Lisp_Object width, height, data;
1110
1111 height = width = data = Qnil;
1112
1113 if (CONSP (object))
1114 {
1115 width = XCAR (object);
1116 object = XCDR (object);
1117 if (CONSP (object))
1118 {
1119 height = XCAR (object);
1120 object = XCDR (object);
1121 if (CONSP (object))
1122 data = XCAR (object);
1123 }
1124 }
1125
1126 if (NATNUMP (width) && NATNUMP (height) && STRINGP (data))
1127 {
1128 int bytes_per_row = ((XFASTINT (width) + BITS_PER_CHAR - 1)
1129 / BITS_PER_CHAR);
1130 if (SBYTES (data) >= bytes_per_row * XINT (height))
1131 pixmap_p = 1;
1132 }
1133 }
1134
1135 return pixmap_p ? Qt : Qnil;
1136}
1137
1138
1139/* Load a bitmap according to NAME (which is either a file name or a
1140 pixmap spec) for use on frame F. Value is the bitmap_id (see
1141 xfns.c). If NAME is nil, return with a bitmap id of zero. If
1142 bitmap cannot be loaded, display a message saying so, and return
1143 zero. Store the bitmap width in *W_PTR and its height in *H_PTR,
1144 if these pointers are not null. */
1145
1146static int
1147load_pixmap (f, name, w_ptr, h_ptr)
1148 FRAME_PTR f;
1149 Lisp_Object name;
1150 unsigned int *w_ptr, *h_ptr;
1151{
1152 int bitmap_id;
1153 Lisp_Object tem;
1154
1155 if (NILP (name))
1156 return 0;
1157
1158 tem = Fbitmap_spec_p (name);
1159 if (NILP (tem))
1160 wrong_type_argument (Qbitmap_spec_p, name);
1161
1162 BLOCK_INPUT;
1163 if (CONSP (name))
1164 {
1165 /* Decode a bitmap spec into a bitmap. */
1166
1167 int h, w;
1168 Lisp_Object bits;
1169
1170 w = XINT (Fcar (name));
1171 h = XINT (Fcar (Fcdr (name)));
1172 bits = Fcar (Fcdr (Fcdr (name)));
1173
1174 bitmap_id = x_create_bitmap_from_data (f, SDATA (bits),
1175 w, h);
1176 }
1177 else
1178 {
1179 /* It must be a string -- a file name. */
1180 bitmap_id = x_create_bitmap_from_file (f, name);
1181 }
1182 UNBLOCK_INPUT;
1183
1184 if (bitmap_id < 0)
1185 {
1186 add_to_log ("Invalid or undefined bitmap %s", name, Qnil);
1187 bitmap_id = 0;
1188
1189 if (w_ptr)
1190 *w_ptr = 0;
1191 if (h_ptr)
1192 *h_ptr = 0;
1193 }
1194 else
1195 {
1196#if GLYPH_DEBUG
1197 ++npixmaps_allocated;
1198#endif
1199 if (w_ptr)
1200 *w_ptr = x_bitmap_width (f, bitmap_id);
1201
1202 if (h_ptr)
1203 *h_ptr = x_bitmap_height (f, bitmap_id);
1204 }
1205
1206 return bitmap_id;
1207}
1208
1209#endif /* HAVE_WINDOW_SYSTEM */
1210
1211
1212\f
1213/***********************************************************************
1214 Fonts
1215 ***********************************************************************/
1216
1217#ifdef HAVE_WINDOW_SYSTEM
1218
1219/* Load font of face FACE which is used on frame F to display
1220 character C. The name of the font to load is determined by lface
1221 and fontset of FACE. */
1222
1223static void
1224load_face_font (f, face, c)
1225 struct frame *f;
1226 struct face *face;
1227 int c;
1228{
1229 struct font_info *font_info = NULL;
1230 char *font_name;
1231 int needs_overstrike;
1232
1233 face->font_info_id = -1;
1234 face->font = NULL;
1235
1236 font_name = choose_face_font (f, face->lface, face->fontset, c,
1237 &needs_overstrike);
1238 if (!font_name)
1239 return;
1240
1241 BLOCK_INPUT;
1242 font_info = FS_LOAD_FACE_FONT (f, c, font_name, face);
1243 UNBLOCK_INPUT;
1244
1245 if (font_info)
1246 {
1247 face->font_info_id = font_info->font_idx;
1248 face->font = font_info->font;
1249 face->font_name = font_info->full_name;
1250 face->overstrike = needs_overstrike;
1251 if (face->gc)
1252 {
1253 x_free_gc (f, face->gc);
1254 face->gc = 0;
1255 }
1256 }
1257 else
1258 add_to_log ("Unable to load font %s",
1259 build_string (font_name), Qnil);
1260 xfree (font_name);
1261}
1262
1263#endif /* HAVE_WINDOW_SYSTEM */
1264
1265
1266\f
1267/***********************************************************************
1268 X Colors
1269 ***********************************************************************/
1270
1271/* Parse RGB_LIST, and fill in the RGB fields of COLOR.
1272 RGB_LIST should contain (at least) 3 lisp integers.
1273 Return 0 if there's a problem with RGB_LIST, otherwise return 1. */
1274
1275static int
1276parse_rgb_list (rgb_list, color)
1277 Lisp_Object rgb_list;
1278 XColor *color;
1279{
1280#define PARSE_RGB_LIST_FIELD(field) \
1281 if (CONSP (rgb_list) && INTEGERP (XCAR (rgb_list))) \
1282 { \
1283 color->field = XINT (XCAR (rgb_list)); \
1284 rgb_list = XCDR (rgb_list); \
1285 } \
1286 else \
1287 return 0;
1288
1289 PARSE_RGB_LIST_FIELD (red);
1290 PARSE_RGB_LIST_FIELD (green);
1291 PARSE_RGB_LIST_FIELD (blue);
1292
1293 return 1;
1294}
1295
1296
1297/* Lookup on frame F the color described by the lisp string COLOR.
1298 The resulting tty color is returned in TTY_COLOR; if STD_COLOR is
1299 non-zero, then the `standard' definition of the same color is
1300 returned in it. */
1301
1302static int
1303tty_lookup_color (f, color, tty_color, std_color)
1304 struct frame *f;
1305 Lisp_Object color;
1306 XColor *tty_color, *std_color;
1307{
1308 Lisp_Object frame, color_desc;
1309
1310 if (!STRINGP (color) || NILP (Ffboundp (Qtty_color_desc)))
1311 return 0;
1312
1313 XSETFRAME (frame, f);
1314
1315 color_desc = call2 (Qtty_color_desc, color, frame);
1316 if (CONSP (color_desc) && CONSP (XCDR (color_desc)))
1317 {
1318 Lisp_Object rgb;
1319
1320 if (! INTEGERP (XCAR (XCDR (color_desc))))
1321 return 0;
1322
1323 tty_color->pixel = XINT (XCAR (XCDR (color_desc)));
1324
1325 rgb = XCDR (XCDR (color_desc));
1326 if (! parse_rgb_list (rgb, tty_color))
1327 return 0;
1328
1329 /* Should we fill in STD_COLOR too? */
1330 if (std_color)
1331 {
1332 /* Default STD_COLOR to the same as TTY_COLOR. */
1333 *std_color = *tty_color;
1334
1335 /* Do a quick check to see if the returned descriptor is
1336 actually _exactly_ equal to COLOR, otherwise we have to
1337 lookup STD_COLOR separately. If it's impossible to lookup
1338 a standard color, we just give up and use TTY_COLOR. */
1339 if ((!STRINGP (XCAR (color_desc))
1340 || NILP (Fstring_equal (color, XCAR (color_desc))))
1341 && !NILP (Ffboundp (Qtty_color_standard_values)))
1342 {
1343 /* Look up STD_COLOR separately. */
1344 rgb = call1 (Qtty_color_standard_values, color);
1345 if (! parse_rgb_list (rgb, std_color))
1346 return 0;
1347 }
1348 }
1349
1350 return 1;
1351 }
1352 else if (NILP (Fsymbol_value (intern ("tty-defined-color-alist"))))
1353 /* We were called early during startup, and the colors are not
1354 yet set up in tty-defined-color-alist. Don't return a failure
1355 indication, since this produces the annoying "Unable to
1356 load color" messages in the *Messages* buffer. */
1357 return 1;
1358 else
1359 /* tty-color-desc seems to have returned a bad value. */
1360 return 0;
1361}
1362
1363/* A version of defined_color for non-X frames. */
1364
1365int
1366tty_defined_color (f, color_name, color_def, alloc)
1367 struct frame *f;
1368 char *color_name;
1369 XColor *color_def;
1370 int alloc;
1371{
1372 int status = 1;
1373
1374 /* Defaults. */
1375 color_def->pixel = FACE_TTY_DEFAULT_COLOR;
1376 color_def->red = 0;
1377 color_def->blue = 0;
1378 color_def->green = 0;
1379
1380 if (*color_name)
1381 status = tty_lookup_color (f, build_string (color_name), color_def, 0);
1382
1383 if (color_def->pixel == FACE_TTY_DEFAULT_COLOR && *color_name)
1384 {
1385 if (strcmp (color_name, "unspecified-fg") == 0)
1386 color_def->pixel = FACE_TTY_DEFAULT_FG_COLOR;
1387 else if (strcmp (color_name, "unspecified-bg") == 0)
1388 color_def->pixel = FACE_TTY_DEFAULT_BG_COLOR;
1389 }
1390
1391 if (color_def->pixel != FACE_TTY_DEFAULT_COLOR)
1392 status = 1;
1393
1394 return status;
1395}
1396
1397
1398/* Decide if color named COLOR_NAME is valid for the display
1399 associated with the frame F; if so, return the rgb values in
1400 COLOR_DEF. If ALLOC is nonzero, allocate a new colormap cell.
1401
1402 This does the right thing for any type of frame. */
1403
1404int
1405defined_color (f, color_name, color_def, alloc)
1406 struct frame *f;
1407 char *color_name;
1408 XColor *color_def;
1409 int alloc;
1410{
1411 if (!FRAME_WINDOW_P (f))
1412 return tty_defined_color (f, color_name, color_def, alloc);
1413#ifdef HAVE_X_WINDOWS
1414 else if (FRAME_X_P (f))
1415 return x_defined_color (f, color_name, color_def, alloc);
1416#endif
1417#ifdef WINDOWSNT
1418 else if (FRAME_W32_P (f))
1419 return w32_defined_color (f, color_name, color_def, alloc);
1420#endif
1421#ifdef MAC_OS
1422 else if (FRAME_MAC_P (f))
1423 return mac_defined_color (f, color_name, color_def, alloc);
1424#endif
1425 else
1426 abort ();
1427}
1428
1429
1430/* Given the index IDX of a tty color on frame F, return its name, a
1431 Lisp string. */
1432
1433Lisp_Object
1434tty_color_name (f, idx)
1435 struct frame *f;
1436 int idx;
1437{
1438 if (idx >= 0 && !NILP (Ffboundp (Qtty_color_by_index)))
1439 {
1440 Lisp_Object frame;
1441 Lisp_Object coldesc;
1442
1443 XSETFRAME (frame, f);
1444 coldesc = call2 (Qtty_color_by_index, make_number (idx), frame);
1445
1446 if (!NILP (coldesc))
1447 return XCAR (coldesc);
1448 }
1449#ifdef MSDOS
1450 /* We can have an MSDOG frame under -nw for a short window of
1451 opportunity before internal_terminal_init is called. DTRT. */
1452 if (FRAME_MSDOS_P (f) && !inhibit_window_system)
1453 return msdos_stdcolor_name (idx);
1454#endif
1455
1456 if (idx == FACE_TTY_DEFAULT_FG_COLOR)
1457 return build_string (unspecified_fg);
1458 if (idx == FACE_TTY_DEFAULT_BG_COLOR)
1459 return build_string (unspecified_bg);
1460
1461#ifdef WINDOWSNT
1462 return vga_stdcolor_name (idx);
1463#endif
1464
1465 return Qunspecified;
1466}
1467
1468
1469/* Return non-zero if COLOR_NAME is a shade of gray (or white or
1470 black) on frame F. The algorithm is taken from 20.2 faces.el. */
1471
1472static int
1473face_color_gray_p (f, color_name)
1474 struct frame *f;
1475 char *color_name;
1476{
1477 XColor color;
1478 int gray_p;
1479
1480 if (defined_color (f, color_name, &color, 0))
1481 gray_p = ((abs (color.red - color.green)
1482 < max (color.red, color.green) / 20)
1483 && (abs (color.green - color.blue)
1484 < max (color.green, color.blue) / 20)
1485 && (abs (color.blue - color.red)
1486 < max (color.blue, color.red) / 20));
1487 else
1488 gray_p = 0;
1489
1490 return gray_p;
1491}
1492
1493
1494/* Return non-zero if color COLOR_NAME can be displayed on frame F.
1495 BACKGROUND_P non-zero means the color will be used as background
1496 color. */
1497
1498static int
1499face_color_supported_p (f, color_name, background_p)
1500 struct frame *f;
1501 char *color_name;
1502 int background_p;
1503{
1504 Lisp_Object frame;
1505 XColor not_used;
1506
1507 XSETFRAME (frame, f);
1508 return (FRAME_WINDOW_P (f)
1509 ? (!NILP (Fxw_display_color_p (frame))
1510 || xstricmp (color_name, "black") == 0
1511 || xstricmp (color_name, "white") == 0
1512 || (background_p
1513 && face_color_gray_p (f, color_name))
1514 || (!NILP (Fx_display_grayscale_p (frame))
1515 && face_color_gray_p (f, color_name)))
1516 : tty_defined_color (f, color_name, &not_used, 0));
1517}
1518
1519
1520DEFUN ("color-gray-p", Fcolor_gray_p, Scolor_gray_p, 1, 2, 0,
1521 doc: /* Return non-nil if COLOR is a shade of gray (or white or black).
1522FRAME specifies the frame and thus the display for interpreting COLOR.
1523If FRAME is nil or omitted, use the selected frame. */)
1524 (color, frame)
1525 Lisp_Object color, frame;
1526{
1527 struct frame *f;
1528
1529 CHECK_STRING (color);
1530 if (NILP (frame))
1531 frame = selected_frame;
1532 else
1533 CHECK_FRAME (frame);
1534 f = XFRAME (frame);
1535 return face_color_gray_p (f, SDATA (color)) ? Qt : Qnil;
1536}
1537
1538
1539DEFUN ("color-supported-p", Fcolor_supported_p,
1540 Scolor_supported_p, 1, 3, 0,
1541 doc: /* Return non-nil if COLOR can be displayed on FRAME.
1542BACKGROUND-P non-nil means COLOR is used as a background.
1543If FRAME is nil or omitted, use the selected frame.
1544COLOR must be a valid color name. */)
1545 (color, frame, background_p)
1546 Lisp_Object frame, color, background_p;
1547{
1548 struct frame *f;
1549
1550 CHECK_STRING (color);
1551 if (NILP (frame))
1552 frame = selected_frame;
1553 else
1554 CHECK_FRAME (frame);
1555 f = XFRAME (frame);
1556 if (face_color_supported_p (f, SDATA (color), !NILP (background_p)))
1557 return Qt;
1558 return Qnil;
1559}
1560
1561
1562/* Load color with name NAME for use by face FACE on frame F.
1563 TARGET_INDEX must be one of LFACE_FOREGROUND_INDEX,
1564 LFACE_BACKGROUND_INDEX, LFACE_UNDERLINE_INDEX, LFACE_OVERLINE_INDEX,
1565 LFACE_STRIKE_THROUGH_INDEX, or LFACE_BOX_INDEX. Value is the
1566 pixel color. If color cannot be loaded, display a message, and
1567 return the foreground, background or underline color of F, but
1568 record that fact in flags of the face so that we don't try to free
1569 these colors. */
1570
1571unsigned long
1572load_color (f, face, name, target_index)
1573 struct frame *f;
1574 struct face *face;
1575 Lisp_Object name;
1576 enum lface_attribute_index target_index;
1577{
1578 XColor color;
1579
1580 xassert (STRINGP (name));
1581 xassert (target_index == LFACE_FOREGROUND_INDEX
1582 || target_index == LFACE_BACKGROUND_INDEX
1583 || target_index == LFACE_UNDERLINE_INDEX
1584 || target_index == LFACE_OVERLINE_INDEX
1585 || target_index == LFACE_STRIKE_THROUGH_INDEX
1586 || target_index == LFACE_BOX_INDEX);
1587
1588 /* if the color map is full, defined_color will return a best match
1589 to the values in an existing cell. */
1590 if (!defined_color (f, SDATA (name), &color, 1))
1591 {
1592 add_to_log ("Unable to load color \"%s\"", name, Qnil);
1593
1594 switch (target_index)
1595 {
1596 case LFACE_FOREGROUND_INDEX:
1597 face->foreground_defaulted_p = 1;
1598 color.pixel = FRAME_FOREGROUND_PIXEL (f);
1599 break;
1600
1601 case LFACE_BACKGROUND_INDEX:
1602 face->background_defaulted_p = 1;
1603 color.pixel = FRAME_BACKGROUND_PIXEL (f);
1604 break;
1605
1606 case LFACE_UNDERLINE_INDEX:
1607 face->underline_defaulted_p = 1;
1608 color.pixel = FRAME_FOREGROUND_PIXEL (f);
1609 break;
1610
1611 case LFACE_OVERLINE_INDEX:
1612 face->overline_color_defaulted_p = 1;
1613 color.pixel = FRAME_FOREGROUND_PIXEL (f);
1614 break;
1615
1616 case LFACE_STRIKE_THROUGH_INDEX:
1617 face->strike_through_color_defaulted_p = 1;
1618 color.pixel = FRAME_FOREGROUND_PIXEL (f);
1619 break;
1620
1621 case LFACE_BOX_INDEX:
1622 face->box_color_defaulted_p = 1;
1623 color.pixel = FRAME_FOREGROUND_PIXEL (f);
1624 break;
1625
1626 default:
1627 abort ();
1628 }
1629 }
1630#if GLYPH_DEBUG
1631 else
1632 ++ncolors_allocated;
1633#endif
1634
1635 return color.pixel;
1636}
1637
1638
1639#ifdef HAVE_WINDOW_SYSTEM
1640
1641/* Load colors for face FACE which is used on frame F. Colors are
1642 specified by slots LFACE_BACKGROUND_INDEX and LFACE_FOREGROUND_INDEX
1643 of ATTRS. If the background color specified is not supported on F,
1644 try to emulate gray colors with a stipple from Vface_default_stipple. */
1645
1646static void
1647load_face_colors (f, face, attrs)
1648 struct frame *f;
1649 struct face *face;
1650 Lisp_Object *attrs;
1651{
1652 Lisp_Object fg, bg;
1653
1654 bg = attrs[LFACE_BACKGROUND_INDEX];
1655 fg = attrs[LFACE_FOREGROUND_INDEX];
1656
1657 /* Swap colors if face is inverse-video. */
1658 if (EQ (attrs[LFACE_INVERSE_INDEX], Qt))
1659 {
1660 Lisp_Object tmp;
1661 tmp = fg;
1662 fg = bg;
1663 bg = tmp;
1664 }
1665
1666 /* Check for support for foreground, not for background because
1667 face_color_supported_p is smart enough to know that grays are
1668 "supported" as background because we are supposed to use stipple
1669 for them. */
1670 if (!face_color_supported_p (f, SDATA (bg), 0)
1671 && !NILP (Fbitmap_spec_p (Vface_default_stipple)))
1672 {
1673 x_destroy_bitmap (f, face->stipple);
1674 face->stipple = load_pixmap (f, Vface_default_stipple,
1675 &face->pixmap_w, &face->pixmap_h);
1676 }
1677
1678 face->background = load_color (f, face, bg, LFACE_BACKGROUND_INDEX);
1679 face->foreground = load_color (f, face, fg, LFACE_FOREGROUND_INDEX);
1680}
1681
1682
1683/* Free color PIXEL on frame F. */
1684
1685void
1686unload_color (f, pixel)
1687 struct frame *f;
1688 unsigned long pixel;
1689{
1690#ifdef HAVE_X_WINDOWS
1691 if (pixel != -1)
1692 {
1693 BLOCK_INPUT;
1694 x_free_colors (f, &pixel, 1);
1695 UNBLOCK_INPUT;
1696 }
1697#endif
1698}
1699
1700
1701/* Free colors allocated for FACE. */
1702
1703static void
1704free_face_colors (f, face)
1705 struct frame *f;
1706 struct face *face;
1707{
1708#ifdef HAVE_X_WINDOWS
1709 if (face->colors_copied_bitwise_p)
1710 return;
1711
1712 BLOCK_INPUT;
1713
1714 if (!face->foreground_defaulted_p)
1715 {
1716 x_free_colors (f, &face->foreground, 1);
1717 IF_DEBUG (--ncolors_allocated);
1718 }
1719
1720 if (!face->background_defaulted_p)
1721 {
1722 x_free_colors (f, &face->background, 1);
1723 IF_DEBUG (--ncolors_allocated);
1724 }
1725
1726 if (face->underline_p
1727 && !face->underline_defaulted_p)
1728 {
1729 x_free_colors (f, &face->underline_color, 1);
1730 IF_DEBUG (--ncolors_allocated);
1731 }
1732
1733 if (face->overline_p
1734 && !face->overline_color_defaulted_p)
1735 {
1736 x_free_colors (f, &face->overline_color, 1);
1737 IF_DEBUG (--ncolors_allocated);
1738 }
1739
1740 if (face->strike_through_p
1741 && !face->strike_through_color_defaulted_p)
1742 {
1743 x_free_colors (f, &face->strike_through_color, 1);
1744 IF_DEBUG (--ncolors_allocated);
1745 }
1746
1747 if (face->box != FACE_NO_BOX
1748 && !face->box_color_defaulted_p)
1749 {
1750 x_free_colors (f, &face->box_color, 1);
1751 IF_DEBUG (--ncolors_allocated);
1752 }
1753
1754 UNBLOCK_INPUT;
1755#endif /* HAVE_X_WINDOWS */
1756}
1757
1758#endif /* HAVE_WINDOW_SYSTEM */
1759
1760
1761\f
1762/***********************************************************************
1763 XLFD Font Names
1764 ***********************************************************************/
1765
1766/* An enumerator for each field of an XLFD font name. */
1767
1768enum xlfd_field
1769{
1770 XLFD_FOUNDRY,
1771 XLFD_FAMILY,
1772 XLFD_WEIGHT,
1773 XLFD_SLANT,
1774 XLFD_SWIDTH,
1775 XLFD_ADSTYLE,
1776 XLFD_PIXEL_SIZE,
1777 XLFD_POINT_SIZE,
1778 XLFD_RESX,
1779 XLFD_RESY,
1780 XLFD_SPACING,
1781 XLFD_AVGWIDTH,
1782 XLFD_REGISTRY,
1783 XLFD_ENCODING,
1784 XLFD_LAST
1785};
1786
1787/* An enumerator for each possible slant value of a font. Taken from
1788 the XLFD specification. */
1789
1790enum xlfd_slant
1791{
1792 XLFD_SLANT_UNKNOWN,
1793 XLFD_SLANT_ROMAN,
1794 XLFD_SLANT_ITALIC,
1795 XLFD_SLANT_OBLIQUE,
1796 XLFD_SLANT_REVERSE_ITALIC,
1797 XLFD_SLANT_REVERSE_OBLIQUE,
1798 XLFD_SLANT_OTHER
1799};
1800
1801/* Relative font weight according to XLFD documentation. */
1802
1803enum xlfd_weight
1804{
1805 XLFD_WEIGHT_UNKNOWN,
1806 XLFD_WEIGHT_ULTRA_LIGHT, /* 10 */
1807 XLFD_WEIGHT_EXTRA_LIGHT, /* 20 */
1808 XLFD_WEIGHT_LIGHT, /* 30 */
1809 XLFD_WEIGHT_SEMI_LIGHT, /* 40: SemiLight, Book, ... */
1810 XLFD_WEIGHT_MEDIUM, /* 50: Medium, Normal, Regular, ... */
1811 XLFD_WEIGHT_SEMI_BOLD, /* 60: SemiBold, DemiBold, ... */
1812 XLFD_WEIGHT_BOLD, /* 70: Bold, ... */
1813 XLFD_WEIGHT_EXTRA_BOLD, /* 80: ExtraBold, Heavy, ... */
1814 XLFD_WEIGHT_ULTRA_BOLD /* 90: UltraBold, Black, ... */
1815};
1816
1817/* Relative proportionate width. */
1818
1819enum xlfd_swidth
1820{
1821 XLFD_SWIDTH_UNKNOWN,
1822 XLFD_SWIDTH_ULTRA_CONDENSED, /* 10 */
1823 XLFD_SWIDTH_EXTRA_CONDENSED, /* 20 */
1824 XLFD_SWIDTH_CONDENSED, /* 30: Condensed, Narrow, Compressed, ... */
1825 XLFD_SWIDTH_SEMI_CONDENSED, /* 40: semicondensed */
1826 XLFD_SWIDTH_MEDIUM, /* 50: Medium, Normal, Regular, ... */
1827 XLFD_SWIDTH_SEMI_EXPANDED, /* 60: SemiExpanded, DemiExpanded, ... */
1828 XLFD_SWIDTH_EXPANDED, /* 70: Expanded... */
1829 XLFD_SWIDTH_EXTRA_EXPANDED, /* 80: ExtraExpanded, Wide... */
1830 XLFD_SWIDTH_ULTRA_EXPANDED /* 90: UltraExpanded... */
1831};
1832
1833/* Structure used for tables mapping XLFD weight, slant, and width
1834 names to numeric and symbolic values. */
1835
1836struct table_entry
1837{
1838 char *name;
1839 int numeric;
1840 Lisp_Object *symbol;
1841};
1842
1843/* Table of XLFD slant names and their numeric and symbolic
1844 representations. This table must be sorted by slant names in
1845 ascending order. */
1846
1847static struct table_entry slant_table[] =
1848{
1849 {"i", XLFD_SLANT_ITALIC, &Qitalic},
1850 {"o", XLFD_SLANT_OBLIQUE, &Qoblique},
1851 {"ot", XLFD_SLANT_OTHER, &Qitalic},
1852 {"r", XLFD_SLANT_ROMAN, &Qnormal},
1853 {"ri", XLFD_SLANT_REVERSE_ITALIC, &Qreverse_italic},
1854 {"ro", XLFD_SLANT_REVERSE_OBLIQUE, &Qreverse_oblique}
1855};
1856
1857/* Table of XLFD weight names. This table must be sorted by weight
1858 names in ascending order. */
1859
1860static struct table_entry weight_table[] =
1861{
1862 {"black", XLFD_WEIGHT_ULTRA_BOLD, &Qultra_bold},
1863 {"bold", XLFD_WEIGHT_BOLD, &Qbold},
1864 {"book", XLFD_WEIGHT_SEMI_LIGHT, &Qsemi_light},
1865 {"demi", XLFD_WEIGHT_SEMI_BOLD, &Qsemi_bold},
1866 {"demibold", XLFD_WEIGHT_SEMI_BOLD, &Qsemi_bold},
1867 {"extralight", XLFD_WEIGHT_EXTRA_LIGHT, &Qextra_light},
1868 {"extrabold", XLFD_WEIGHT_EXTRA_BOLD, &Qextra_bold},
1869 {"heavy", XLFD_WEIGHT_EXTRA_BOLD, &Qextra_bold},
1870 {"light", XLFD_WEIGHT_LIGHT, &Qlight},
1871 {"medium", XLFD_WEIGHT_MEDIUM, &Qnormal},
1872 {"normal", XLFD_WEIGHT_MEDIUM, &Qnormal},
1873 {"regular", XLFD_WEIGHT_MEDIUM, &Qnormal},
1874 {"semibold", XLFD_WEIGHT_SEMI_BOLD, &Qsemi_bold},
1875 {"semilight", XLFD_WEIGHT_SEMI_LIGHT, &Qsemi_light},
1876 {"ultralight", XLFD_WEIGHT_ULTRA_LIGHT, &Qultra_light},
1877 {"ultrabold", XLFD_WEIGHT_ULTRA_BOLD, &Qultra_bold}
1878};
1879
1880/* Table of XLFD width names. This table must be sorted by width
1881 names in ascending order. */
1882
1883static struct table_entry swidth_table[] =
1884{
1885 {"compressed", XLFD_SWIDTH_CONDENSED, &Qcondensed},
1886 {"condensed", XLFD_SWIDTH_CONDENSED, &Qcondensed},
1887 {"demiexpanded", XLFD_SWIDTH_SEMI_EXPANDED, &Qsemi_expanded},
1888 {"expanded", XLFD_SWIDTH_EXPANDED, &Qexpanded},
1889 {"extracondensed", XLFD_SWIDTH_EXTRA_CONDENSED, &Qextra_condensed},
1890 {"extraexpanded", XLFD_SWIDTH_EXTRA_EXPANDED, &Qextra_expanded},
1891 {"medium", XLFD_SWIDTH_MEDIUM, &Qnormal},
1892 {"narrow", XLFD_SWIDTH_CONDENSED, &Qcondensed},
1893 {"normal", XLFD_SWIDTH_MEDIUM, &Qnormal},
1894 {"regular", XLFD_SWIDTH_MEDIUM, &Qnormal},
1895 {"semicondensed", XLFD_SWIDTH_SEMI_CONDENSED, &Qsemi_condensed},
1896 {"semiexpanded", XLFD_SWIDTH_SEMI_EXPANDED, &Qsemi_expanded},
1897 {"ultracondensed", XLFD_SWIDTH_ULTRA_CONDENSED, &Qultra_condensed},
1898 {"ultraexpanded", XLFD_SWIDTH_ULTRA_EXPANDED, &Qultra_expanded},
1899 {"wide", XLFD_SWIDTH_EXTRA_EXPANDED, &Qextra_expanded}
1900};
1901
1902/* Structure used to hold the result of splitting font names in XLFD
1903 format into their fields. */
1904
1905struct font_name
1906{
1907 /* The original name which is modified destructively by
1908 split_font_name. The pointer is kept here to be able to free it
1909 if it was allocated from the heap. */
1910 char *name;
1911
1912 /* Font name fields. Each vector element points into `name' above.
1913 Fields are NUL-terminated. */
1914 char *fields[XLFD_LAST];
1915
1916 /* Numeric values for those fields that interest us. See
1917 split_font_name for which these are. */
1918 int numeric[XLFD_LAST];
1919
1920 /* If the original name matches one of Vface_font_rescale_alist,
1921 the value is the corresponding rescale ratio. Otherwise, the
1922 value is 1.0. */
1923 double rescale_ratio;
1924
1925 /* Lower value mean higher priority. */
1926 int registry_priority;
1927};
1928
1929/* The frame in effect when sorting font names. Set temporarily in
1930 sort_fonts so that it is available in font comparison functions. */
1931
1932static struct frame *font_frame;
1933
1934/* Order by which font selection chooses fonts. The default values
1935 mean `first, find a best match for the font width, then for the
1936 font height, then for weight, then for slant.' This variable can be
1937 set via set-face-font-sort-order. */
1938
1939#ifdef MAC_OS
1940static int font_sort_order[4] = {
1941 XLFD_SWIDTH, XLFD_POINT_SIZE, XLFD_WEIGHT, XLFD_SLANT
1942};
1943#else
1944static int font_sort_order[4];
1945#endif
1946
1947/* Look up FONT.fields[FIELD_INDEX] in TABLE which has DIM entries.
1948 TABLE must be sorted by TABLE[i]->name in ascending order. Value
1949 is a pointer to the matching table entry or null if no table entry
1950 matches. */
1951
1952static struct table_entry *
1953xlfd_lookup_field_contents (table, dim, font, field_index)
1954 struct table_entry *table;
1955 int dim;
1956 struct font_name *font;
1957 int field_index;
1958{
1959 /* Function split_font_name converts fields to lower-case, so there
1960 is no need to use xstrlwr or xstricmp here. */
1961 char *s = font->fields[field_index];
1962 int low, mid, high, cmp;
1963
1964 low = 0;
1965 high = dim - 1;
1966
1967 while (low <= high)
1968 {
1969 mid = (low + high) / 2;
1970 cmp = strcmp (table[mid].name, s);
1971
1972 if (cmp < 0)
1973 low = mid + 1;
1974 else if (cmp > 0)
1975 high = mid - 1;
1976 else
1977 return table + mid;
1978 }
1979
1980 return NULL;
1981}
1982
1983
1984/* Return a numeric representation for font name field
1985 FONT.fields[FIELD_INDEX]. The field is looked up in TABLE which
1986 has DIM entries. Value is the numeric value found or DFLT if no
1987 table entry matches. This function is used to translate weight,
1988 slant, and swidth names of XLFD font names to numeric values. */
1989
1990static INLINE int
1991xlfd_numeric_value (table, dim, font, field_index, dflt)
1992 struct table_entry *table;
1993 int dim;
1994 struct font_name *font;
1995 int field_index;
1996 int dflt;
1997{
1998 struct table_entry *p;
1999 p = xlfd_lookup_field_contents (table, dim, font, field_index);
2000 return p ? p->numeric : dflt;
2001}
2002
2003
2004/* Return a symbolic representation for font name field
2005 FONT.fields[FIELD_INDEX]. The field is looked up in TABLE which
2006 has DIM entries. Value is the symbolic value found or DFLT if no
2007 table entry matches. This function is used to translate weight,
2008 slant, and swidth names of XLFD font names to symbols. */
2009
2010static INLINE Lisp_Object
2011xlfd_symbolic_value (table, dim, font, field_index, dflt)
2012 struct table_entry *table;
2013 int dim;
2014 struct font_name *font;
2015 int field_index;
2016 Lisp_Object dflt;
2017{
2018 struct table_entry *p;
2019 p = xlfd_lookup_field_contents (table, dim, font, field_index);
2020 return p ? *p->symbol : dflt;
2021}
2022
2023
2024/* Return a numeric value for the slant of the font given by FONT. */
2025
2026static INLINE int
2027xlfd_numeric_slant (font)
2028 struct font_name *font;
2029{
2030 return xlfd_numeric_value (slant_table, DIM (slant_table),
2031 font, XLFD_SLANT, XLFD_SLANT_ROMAN);
2032}
2033
2034
2035/* Return a symbol representing the weight of the font given by FONT. */
2036
2037static INLINE Lisp_Object
2038xlfd_symbolic_slant (font)
2039 struct font_name *font;
2040{
2041 return xlfd_symbolic_value (slant_table, DIM (slant_table),
2042 font, XLFD_SLANT, Qnormal);
2043}
2044
2045
2046/* Return a numeric value for the weight of the font given by FONT. */
2047
2048static INLINE int
2049xlfd_numeric_weight (font)
2050 struct font_name *font;
2051{
2052 return xlfd_numeric_value (weight_table, DIM (weight_table),
2053 font, XLFD_WEIGHT, XLFD_WEIGHT_MEDIUM);
2054}
2055
2056
2057/* Return a symbol representing the slant of the font given by FONT. */
2058
2059static INLINE Lisp_Object
2060xlfd_symbolic_weight (font)
2061 struct font_name *font;
2062{
2063 return xlfd_symbolic_value (weight_table, DIM (weight_table),
2064 font, XLFD_WEIGHT, Qnormal);
2065}
2066
2067
2068/* Return a numeric value for the swidth of the font whose XLFD font
2069 name fields are found in FONT. */
2070
2071static INLINE int
2072xlfd_numeric_swidth (font)
2073 struct font_name *font;
2074{
2075 return xlfd_numeric_value (swidth_table, DIM (swidth_table),
2076 font, XLFD_SWIDTH, XLFD_SWIDTH_MEDIUM);
2077}
2078
2079
2080/* Return a symbolic value for the swidth of FONT. */
2081
2082static INLINE Lisp_Object
2083xlfd_symbolic_swidth (font)
2084 struct font_name *font;
2085{
2086 return xlfd_symbolic_value (swidth_table, DIM (swidth_table),
2087 font, XLFD_SWIDTH, Qnormal);
2088}
2089
2090
2091/* Look up the entry of SYMBOL in the vector TABLE which has DIM
2092 entries. Value is a pointer to the matching table entry or null if
2093 no element of TABLE contains SYMBOL. */
2094
2095static struct table_entry *
2096face_value (table, dim, symbol)
2097 struct table_entry *table;
2098 int dim;
2099 Lisp_Object symbol;
2100{
2101 int i;
2102
2103 xassert (SYMBOLP (symbol));
2104
2105 for (i = 0; i < dim; ++i)
2106 if (EQ (*table[i].symbol, symbol))
2107 break;
2108
2109 return i < dim ? table + i : NULL;
2110}
2111
2112
2113/* Return a numeric value for SYMBOL in the vector TABLE which has DIM
2114 entries. Value is -1 if SYMBOL is not found in TABLE. */
2115
2116static INLINE int
2117face_numeric_value (table, dim, symbol)
2118 struct table_entry *table;
2119 int dim;
2120 Lisp_Object symbol;
2121{
2122 struct table_entry *p = face_value (table, dim, symbol);
2123 return p ? p->numeric : -1;
2124}
2125
2126
2127/* Return a numeric value representing the weight specified by Lisp
2128 symbol WEIGHT. Value is one of the enumerators of enum
2129 xlfd_weight. */
2130
2131static INLINE int
2132face_numeric_weight (weight)
2133 Lisp_Object weight;
2134{
2135 return face_numeric_value (weight_table, DIM (weight_table), weight);
2136}
2137
2138
2139/* Return a numeric value representing the slant specified by Lisp
2140 symbol SLANT. Value is one of the enumerators of enum xlfd_slant. */
2141
2142static INLINE int
2143face_numeric_slant (slant)
2144 Lisp_Object slant;
2145{
2146 return face_numeric_value (slant_table, DIM (slant_table), slant);
2147}
2148
2149
2150/* Return a numeric value representing the swidth specified by Lisp
2151 symbol WIDTH. Value is one of the enumerators of enum xlfd_swidth. */
2152
2153static int
2154face_numeric_swidth (width)
2155 Lisp_Object width;
2156{
2157 return face_numeric_value (swidth_table, DIM (swidth_table), width);
2158}
2159
2160
2161#ifdef HAVE_WINDOW_SYSTEM
2162
2163/* Return non-zero if FONT is the name of a fixed-pitch font. */
2164
2165static INLINE int
2166xlfd_fixed_p (font)
2167 struct font_name *font;
2168{
2169 /* Function split_font_name converts fields to lower-case, so there
2170 is no need to use tolower here. */
2171 return *font->fields[XLFD_SPACING] != 'p';
2172}
2173
2174
2175/* Return the point size of FONT on frame F, measured in 1/10 pt.
2176
2177 The actual height of the font when displayed on F depends on the
2178 resolution of both the font and frame. For example, a 10pt font
2179 designed for a 100dpi display will display larger than 10pt on a
2180 75dpi display. (It's not unusual to use fonts not designed for the
2181 display one is using. For example, some intlfonts are available in
2182 72dpi versions, only.)
2183
2184 Value is the real point size of FONT on frame F, or 0 if it cannot
2185 be determined. */
2186
2187static INLINE int
2188xlfd_point_size (f, font)
2189 struct frame *f;
2190 struct font_name *font;
2191{
2192 double resy = FRAME_X_DISPLAY_INFO (f)->resy;
2193 char *pixel_field = font->fields[XLFD_PIXEL_SIZE];
2194 double pixel;
2195 int real_pt;
2196
2197 if (*pixel_field == '[')
2198 {
2199 /* The pixel size field is `[A B C D]' which specifies
2200 a transformation matrix.
2201
2202 A B 0
2203 C D 0
2204 0 0 1
2205
2206 by which all glyphs of the font are transformed. The spec
2207 says that s scalar value N for the pixel size is equivalent
2208 to A = N * resx/resy, B = C = 0, D = N. */
2209 char *start = pixel_field + 1, *end;
2210 double matrix[4];
2211 int i;
2212
2213 for (i = 0; i < 4; ++i)
2214 {
2215 matrix[i] = strtod (start, &end);
2216 start = end;
2217 }
2218
2219 pixel = matrix[3];
2220 }
2221 else
2222 pixel = atoi (pixel_field);
2223
2224 if (pixel == 0)
2225 real_pt = 0;
2226 else
2227 real_pt = PT_PER_INCH * 10.0 * pixel / resy + 0.5;
2228
2229 return real_pt;
2230}
2231
2232
2233/* Return point size of PIXEL dots while considering Y-resultion (DPI)
2234 of frame F. This function is used to guess a point size of font
2235 when only the pixel height of the font is available. */
2236
2237static INLINE int
2238pixel_point_size (f, pixel)
2239 struct frame *f;
2240 int pixel;
2241{
2242 double resy = FRAME_X_DISPLAY_INFO (f)->resy;
2243 double real_pt;
2244 int int_pt;
2245
2246 /* As one inch is PT_PER_INCH points, PT_PER_INCH/RESY gives the
2247 point size of one dot. */
2248 real_pt = pixel * PT_PER_INCH / resy;
2249 int_pt = real_pt + 0.5;
2250
2251 return int_pt;
2252}
2253
2254
2255/* Return a rescaling ratio of a font of NAME. */
2256
2257static double
2258font_rescale_ratio (name)
2259 char *name;
2260{
2261 Lisp_Object tail, elt;
2262
2263 for (tail = Vface_font_rescale_alist; CONSP (tail); tail = XCDR (tail))
2264 {
2265 elt = XCAR (tail);
2266 if (STRINGP (XCAR (elt)) && FLOATP (XCDR (elt))
2267 && fast_c_string_match_ignore_case (XCAR (elt), name) >= 0)
2268 return XFLOAT_DATA (XCDR (elt));
2269 }
2270 return 1.0;
2271}
2272
2273
2274/* Split XLFD font name FONT->name destructively into NUL-terminated,
2275 lower-case fields in FONT->fields. NUMERIC_P non-zero means
2276 compute numeric values for fields XLFD_POINT_SIZE, XLFD_SWIDTH,
2277 XLFD_RESY, XLFD_SLANT, and XLFD_WEIGHT in FONT->numeric. Value is
2278 zero if the font name doesn't have the format we expect. The
2279 expected format is a font name that starts with a `-' and has
2280 XLFD_LAST fields separated by `-'. */
2281
2282static int
2283split_font_name (f, font, numeric_p)
2284 struct frame *f;
2285 struct font_name *font;
2286 int numeric_p;
2287{
2288 int i = 0;
2289 int success_p;
2290 double rescale_ratio;
2291
2292 if (numeric_p)
2293 /* This must be done before splitting the font name. */
2294 rescale_ratio = font_rescale_ratio (font->name);
2295
2296 if (*font->name == '-')
2297 {
2298 char *p = xstrlwr (font->name) + 1;
2299
2300 while (i < XLFD_LAST)
2301 {
2302 font->fields[i] = p;
2303 ++i;
2304
2305 /* Pixel and point size may be of the form `[....]'. For
2306 BNF, see XLFD spec, chapter 4. Negative values are
2307 indicated by tilde characters which we replace with
2308 `-' characters, here. */
2309 if (*p == '['
2310 && (i - 1 == XLFD_PIXEL_SIZE
2311 || i - 1 == XLFD_POINT_SIZE))
2312 {
2313 char *start, *end;
2314 int j;
2315
2316 for (++p; *p && *p != ']'; ++p)
2317 if (*p == '~')
2318 *p = '-';
2319
2320 /* Check that the matrix contains 4 floating point
2321 numbers. */
2322 for (j = 0, start = font->fields[i - 1] + 1;
2323 j < 4;
2324 ++j, start = end)
2325 if (strtod (start, &end) == 0 && start == end)
2326 break;
2327
2328 if (j < 4)
2329 break;
2330 }
2331
2332 while (*p && *p != '-')
2333 ++p;
2334
2335 if (*p != '-')
2336 break;
2337
2338 *p++ = 0;
2339 }
2340 }
2341
2342 success_p = i == XLFD_LAST;
2343
2344 /* If requested, and font name was in the expected format,
2345 compute numeric values for some fields. */
2346 if (numeric_p && success_p)
2347 {
2348 font->numeric[XLFD_POINT_SIZE] = xlfd_point_size (f, font);
2349 font->numeric[XLFD_RESY] = atoi (font->fields[XLFD_RESY]);
2350 font->numeric[XLFD_SLANT] = xlfd_numeric_slant (font);
2351 font->numeric[XLFD_WEIGHT] = xlfd_numeric_weight (font);
2352 font->numeric[XLFD_SWIDTH] = xlfd_numeric_swidth (font);
2353 font->numeric[XLFD_AVGWIDTH] = atoi (font->fields[XLFD_AVGWIDTH]);
2354 font->rescale_ratio = rescale_ratio;
2355 }
2356
2357 /* Initialize it to zero. It will be overridden by font_list while
2358 trying alternate registries. */
2359 font->registry_priority = 0;
2360
2361 return success_p;
2362}
2363
2364
2365/* Build an XLFD font name from font name fields in FONT. Value is a
2366 pointer to the font name, which is allocated via xmalloc. */
2367
2368static char *
2369build_font_name (font)
2370 struct font_name *font;
2371{
2372 int i;
2373 int size = 100;
2374 char *font_name = (char *) xmalloc (size);
2375 int total_length = 0;
2376
2377 for (i = 0; i < XLFD_LAST; ++i)
2378 {
2379 /* Add 1 because of the leading `-'. */
2380 int len = strlen (font->fields[i]) + 1;
2381
2382 /* Reallocate font_name if necessary. Add 1 for the final
2383 NUL-byte. */
2384 if (total_length + len + 1 >= size)
2385 {
2386 int new_size = max (2 * size, size + len + 1);
2387 int sz = new_size * sizeof *font_name;
2388 font_name = (char *) xrealloc (font_name, sz);
2389 size = new_size;
2390 }
2391
2392 font_name[total_length] = '-';
2393 bcopy (font->fields[i], font_name + total_length + 1, len - 1);
2394 total_length += len;
2395 }
2396
2397 font_name[total_length] = 0;
2398 return font_name;
2399}
2400
2401
2402/* Free an array FONTS of N font_name structures. This frees FONTS
2403 itself and all `name' fields in its elements. */
2404
2405static INLINE void
2406free_font_names (fonts, n)
2407 struct font_name *fonts;
2408 int n;
2409{
2410 while (n)
2411 xfree (fonts[--n].name);
2412 xfree (fonts);
2413}
2414
2415
2416/* Sort vector FONTS of font_name structures which contains NFONTS
2417 elements using qsort and comparison function CMPFN. F is the frame
2418 on which the fonts will be used. The global variable font_frame
2419 is temporarily set to F to make it available in CMPFN. */
2420
2421static INLINE void
2422sort_fonts (f, fonts, nfonts, cmpfn)
2423 struct frame *f;
2424 struct font_name *fonts;
2425 int nfonts;
2426 int (*cmpfn) P_ ((const void *, const void *));
2427{
2428 font_frame = f;
2429 qsort (fonts, nfonts, sizeof *fonts, cmpfn);
2430 font_frame = NULL;
2431}
2432
2433
2434/* Get fonts matching PATTERN on frame F. If F is null, use the first
2435 display in x_display_list. FONTS is a pointer to a vector of
2436 NFONTS font_name structures. TRY_ALTERNATIVES_P non-zero means try
2437 alternative patterns from Valternate_fontname_alist if no fonts are
2438 found matching PATTERN.
2439
2440 For all fonts found, set FONTS[i].name to the name of the font,
2441 allocated via xmalloc, and split font names into fields. Ignore
2442 fonts that we can't parse. Value is the number of fonts found. */
2443
2444static int
2445x_face_list_fonts (f, pattern, pfonts, nfonts, try_alternatives_p)
2446 struct frame *f;
2447 char *pattern;
2448 struct font_name **pfonts;
2449 int nfonts, try_alternatives_p;
2450{
2451 int n, nignored;
2452
2453 /* NTEMACS_TODO : currently this uses w32_list_fonts, but it may be
2454 better to do it the other way around. */
2455 Lisp_Object lfonts;
2456 Lisp_Object lpattern, tem;
2457 struct font_name *fonts = 0;
2458 int num_fonts = nfonts;
2459
2460 *pfonts = 0;
2461 lpattern = build_string (pattern);
2462
2463 /* Get the list of fonts matching PATTERN. */
2464#ifdef WINDOWSNT
2465 BLOCK_INPUT;
2466 lfonts = w32_list_fonts (f, lpattern, 0, nfonts);
2467 UNBLOCK_INPUT;
2468#else
2469 lfonts = x_list_fonts (f, lpattern, -1, nfonts);
2470#endif
2471
2472 if (nfonts < 0 && CONSP (lfonts))
2473 num_fonts = XFASTINT (Flength (lfonts));
2474
2475 /* Make a copy of the font names we got from X, and
2476 split them into fields. */
2477 n = nignored = 0;
2478 for (tem = lfonts; CONSP (tem) && n < num_fonts; tem = XCDR (tem))
2479 {
2480 Lisp_Object elt, tail;
2481 const char *name = SDATA (XCAR (tem));
2482
2483 /* Ignore fonts matching a pattern from face-ignored-fonts. */
2484 for (tail = Vface_ignored_fonts; CONSP (tail); tail = XCDR (tail))
2485 {
2486 elt = XCAR (tail);
2487 if (STRINGP (elt)
2488 && fast_c_string_match_ignore_case (elt, name) >= 0)
2489 break;
2490 }
2491 if (!NILP (tail))
2492 {
2493 ++nignored;
2494 continue;
2495 }
2496
2497 if (! fonts)
2498 {
2499 *pfonts = (struct font_name *) xmalloc (num_fonts * sizeof **pfonts);
2500 fonts = *pfonts;
2501 }
2502
2503 /* Make a copy of the font name. */
2504 fonts[n].name = xstrdup (name);
2505
2506 if (split_font_name (f, fonts + n, 1))
2507 {
2508 if (font_scalable_p (fonts + n)
2509 && !may_use_scalable_font_p (name))
2510 {
2511 ++nignored;
2512 xfree (fonts[n].name);
2513 }
2514 else
2515 ++n;
2516 }
2517 else
2518 xfree (fonts[n].name);
2519 }
2520
2521 /* If no fonts found, try patterns from Valternate_fontname_alist. */
2522 if (n == 0 && try_alternatives_p)
2523 {
2524 Lisp_Object list = Valternate_fontname_alist;
2525
2526 if (*pfonts)
2527 {
2528 xfree (*pfonts);
2529 *pfonts = 0;
2530 }
2531
2532 while (CONSP (list))
2533 {
2534 Lisp_Object entry = XCAR (list);
2535 if (CONSP (entry)
2536 && STRINGP (XCAR (entry))
2537 && strcmp (SDATA (XCAR (entry)), pattern) == 0)
2538 break;
2539 list = XCDR (list);
2540 }
2541
2542 if (CONSP (list))
2543 {
2544 Lisp_Object patterns = XCAR (list);
2545 Lisp_Object name;
2546
2547 while (CONSP (patterns)
2548 /* If list is screwed up, give up. */
2549 && (name = XCAR (patterns),
2550 STRINGP (name))
2551 /* Ignore patterns equal to PATTERN because we tried that
2552 already with no success. */
2553 && (strcmp (SDATA (name), pattern) == 0
2554 || (n = x_face_list_fonts (f, SDATA (name),
2555 pfonts, nfonts, 0),
2556 n == 0)))
2557 patterns = XCDR (patterns);
2558 }
2559 }
2560
2561 return n;
2562}
2563
2564
2565/* Determine fonts matching PATTERN on frame F. Sort resulting fonts
2566 using comparison function CMPFN. Value is the number of fonts
2567 found. If value is non-zero, *FONTS is set to a vector of
2568 font_name structures allocated from the heap containing matching
2569 fonts. Each element of *FONTS contains a name member that is also
2570 allocated from the heap. Font names in these structures are split
2571 into fields. Use free_font_names to free such an array. */
2572
2573static int
2574sorted_font_list (f, pattern, cmpfn, fonts)
2575 struct frame *f;
2576 char *pattern;
2577 int (*cmpfn) P_ ((const void *, const void *));
2578 struct font_name **fonts;
2579{
2580 int nfonts;
2581
2582 /* Get the list of fonts matching pattern. 100 should suffice. */
2583 nfonts = DEFAULT_FONT_LIST_LIMIT;
2584 if (INTEGERP (Vfont_list_limit))
2585 nfonts = XINT (Vfont_list_limit);
2586
2587 *fonts = NULL;
2588 nfonts = x_face_list_fonts (f, pattern, fonts, nfonts, 1);
2589
2590 /* Sort the resulting array and return it in *FONTS. If no
2591 fonts were found, make sure to set *FONTS to null. */
2592 if (nfonts)
2593 sort_fonts (f, *fonts, nfonts, cmpfn);
2594 else if (*fonts)
2595 {
2596 xfree (*fonts);
2597 *fonts = NULL;
2598 }
2599
2600 return nfonts;
2601}
2602
2603
2604/* Compare two font_name structures *A and *B. Value is analogous to
2605 strcmp. Sort order is given by the global variable
2606 font_sort_order. Font names are sorted so that, everything else
2607 being equal, fonts with a resolution closer to that of the frame on
2608 which they are used are listed first. The global variable
2609 font_frame is the frame on which we operate. */
2610
2611static int
2612cmp_font_names (a, b)
2613 const void *a, *b;
2614{
2615 struct font_name *x = (struct font_name *) a;
2616 struct font_name *y = (struct font_name *) b;
2617 int cmp;
2618
2619 /* All strings have been converted to lower-case by split_font_name,
2620 so we can use strcmp here. */
2621 cmp = strcmp (x->fields[XLFD_FAMILY], y->fields[XLFD_FAMILY]);
2622 if (cmp == 0)
2623 {
2624 int i;
2625
2626 for (i = 0; i < DIM (font_sort_order) && cmp == 0; ++i)
2627 {
2628 int j = font_sort_order[i];
2629 cmp = x->numeric[j] - y->numeric[j];
2630 }
2631
2632 if (cmp == 0)
2633 {
2634 /* Everything else being equal, we prefer fonts with an
2635 y-resolution closer to that of the frame. */
2636 int resy = FRAME_X_DISPLAY_INFO (font_frame)->resy;
2637 int x_resy = x->numeric[XLFD_RESY];
2638 int y_resy = y->numeric[XLFD_RESY];
2639 cmp = abs (resy - x_resy) - abs (resy - y_resy);
2640 }
2641 }
2642
2643 return cmp;
2644}
2645
2646
2647/* Get a sorted list of fonts of family FAMILY on frame F. If PATTERN
2648 is non-nil list fonts matching that pattern. Otherwise, if
2649 REGISTRY is non-nil return only fonts with that registry, otherwise
2650 return fonts of any registry. Set *FONTS to a vector of font_name
2651 structures allocated from the heap containing the fonts found.
2652 Value is the number of fonts found. */
2653
2654static int
2655font_list_1 (f, pattern, family, registry, fonts)
2656 struct frame *f;
2657 Lisp_Object pattern, family, registry;
2658 struct font_name **fonts;
2659{
2660 char *pattern_str, *family_str, *registry_str;
2661
2662 if (NILP (pattern))
2663 {
2664 family_str = (NILP (family) ? "*" : (char *) SDATA (family));
2665 registry_str = (NILP (registry) ? "*" : (char *) SDATA (registry));
2666
2667 pattern_str = (char *) alloca (strlen (family_str)
2668 + strlen (registry_str)
2669 + 10);
2670 strcpy (pattern_str, index (family_str, '-') ? "-" : "-*-");
2671 strcat (pattern_str, family_str);
2672 strcat (pattern_str, "-*-");
2673 strcat (pattern_str, registry_str);
2674 if (!index (registry_str, '-'))
2675 {
2676 if (registry_str[strlen (registry_str) - 1] == '*')
2677 strcat (pattern_str, "-*");
2678 else
2679 strcat (pattern_str, "*-*");
2680 }
2681 }
2682 else
2683 pattern_str = (char *) SDATA (pattern);
2684
2685 return sorted_font_list (f, pattern_str, cmp_font_names, fonts);
2686}
2687
2688
2689/* Concatenate font list FONTS1 and FONTS2. FONTS1 and FONTS2
2690 contains NFONTS1 fonts and NFONTS2 fonts respectively. Return a
2691 pointer to a newly allocated font list. FONTS1 and FONTS2 are
2692 freed. */
2693
2694static struct font_name *
2695concat_font_list (fonts1, nfonts1, fonts2, nfonts2)
2696 struct font_name *fonts1, *fonts2;
2697 int nfonts1, nfonts2;
2698{
2699 int new_nfonts = nfonts1 + nfonts2;
2700 struct font_name *new_fonts;
2701
2702 new_fonts = (struct font_name *) xmalloc (sizeof *new_fonts * new_nfonts);
2703 bcopy (fonts1, new_fonts, sizeof *new_fonts * nfonts1);
2704 bcopy (fonts2, new_fonts + nfonts1, sizeof *new_fonts * nfonts2);
2705 xfree (fonts1);
2706 xfree (fonts2);
2707 return new_fonts;
2708}
2709
2710
2711/* Get a sorted list of fonts of family FAMILY on frame F.
2712
2713 If PATTERN is non-nil list fonts matching that pattern.
2714
2715 If REGISTRY is non-nil, return fonts with that registry and the
2716 alternative registries from Vface_alternative_font_registry_alist.
2717
2718 If REGISTRY is nil return fonts of any registry.
2719
2720 Set *FONTS to a vector of font_name structures allocated from the
2721 heap containing the fonts found. Value is the number of fonts
2722 found. */
2723
2724static int
2725font_list (f, pattern, family, registry, fonts)
2726 struct frame *f;
2727 Lisp_Object pattern, family, registry;
2728 struct font_name **fonts;
2729{
2730 int nfonts = font_list_1 (f, pattern, family, registry, fonts);
2731
2732 if (!NILP (registry)
2733 && CONSP (Vface_alternative_font_registry_alist))
2734 {
2735 Lisp_Object alter;
2736
2737 alter = Fassoc (registry, Vface_alternative_font_registry_alist);
2738 if (CONSP (alter))
2739 {
2740 int reg_prio, i;
2741
2742 for (alter = XCDR (alter), reg_prio = 1;
2743 CONSP (alter);
2744 alter = XCDR (alter), reg_prio++)
2745 if (STRINGP (XCAR (alter)))
2746 {
2747 int nfonts2;
2748 struct font_name *fonts2;
2749
2750 nfonts2 = font_list_1 (f, pattern, family, XCAR (alter),
2751 &fonts2);
2752 for (i = 0; i < nfonts2; i++)
2753 fonts2[i].registry_priority = reg_prio;
2754 *fonts = (nfonts > 0
2755 ? concat_font_list (*fonts, nfonts, fonts2, nfonts2)
2756 : fonts2);
2757 nfonts += nfonts2;
2758 }
2759 }
2760 }
2761
2762 return nfonts;
2763}
2764
2765
2766/* Remove elements from LIST whose cars are `equal'. Called from
2767 x-family-fonts and x-font-family-list to remove duplicate font
2768 entries. */
2769
2770static void
2771remove_duplicates (list)
2772 Lisp_Object list;
2773{
2774 Lisp_Object tail = list;
2775
2776 while (!NILP (tail) && !NILP (XCDR (tail)))
2777 {
2778 Lisp_Object next = XCDR (tail);
2779 if (!NILP (Fequal (XCAR (next), XCAR (tail))))
2780 XSETCDR (tail, XCDR (next));
2781 else
2782 tail = XCDR (tail);
2783 }
2784}
2785
2786
2787DEFUN ("x-family-fonts", Fx_family_fonts, Sx_family_fonts, 0, 2, 0,
2788 doc: /* Return a list of available fonts of family FAMILY on FRAME.
2789If FAMILY is omitted or nil, list all families.
2790Otherwise, FAMILY must be a string, possibly containing wildcards
2791`?' and `*'.
2792If FRAME is omitted or nil, use the selected frame.
2793Each element of the result is a vector [FAMILY WIDTH POINT-SIZE WEIGHT
2794SLANT FIXED-P FULL REGISTRY-AND-ENCODING].
2795FAMILY is the font family name. POINT-SIZE is the size of the
2796font in 1/10 pt. WIDTH, WEIGHT, and SLANT are symbols describing the
2797width, weight and slant of the font. These symbols are the same as for
2798face attributes. FIXED-P is non-nil if the font is fixed-pitch.
2799FULL is the full name of the font, and REGISTRY-AND-ENCODING is a string
2800giving the registry and encoding of the font.
2801The result list is sorted according to the current setting of
2802the face font sort order. */)
2803 (family, frame)
2804 Lisp_Object family, frame;
2805{
2806 struct frame *f = check_x_frame (frame);
2807 struct font_name *fonts;
2808 int i, nfonts;
2809 Lisp_Object result;
2810 struct gcpro gcpro1;
2811
2812 if (!NILP (family))
2813 CHECK_STRING (family);
2814
2815 result = Qnil;
2816 GCPRO1 (result);
2817 nfonts = font_list (f, Qnil, family, Qnil, &fonts);
2818 for (i = nfonts - 1; i >= 0; --i)
2819 {
2820 Lisp_Object v = Fmake_vector (make_number (8), Qnil);
2821 char *tem;
2822
2823 ASET (v, 0, build_string (fonts[i].fields[XLFD_FAMILY]));
2824 ASET (v, 1, xlfd_symbolic_swidth (fonts + i));
2825 ASET (v, 2, make_number (xlfd_point_size (f, fonts + i)));
2826 ASET (v, 3, xlfd_symbolic_weight (fonts + i));
2827 ASET (v, 4, xlfd_symbolic_slant (fonts + i));
2828 ASET (v, 5, xlfd_fixed_p (fonts + i) ? Qt : Qnil);
2829 tem = build_font_name (fonts + i);
2830 ASET (v, 6, build_string (tem));
2831 sprintf (tem, "%s-%s", fonts[i].fields[XLFD_REGISTRY],
2832 fonts[i].fields[XLFD_ENCODING]);
2833 ASET (v, 7, build_string (tem));
2834 xfree (tem);
2835
2836 result = Fcons (v, result);
2837 }
2838
2839 remove_duplicates (result);
2840 free_font_names (fonts, nfonts);
2841 UNGCPRO;
2842 return result;
2843}
2844
2845
2846DEFUN ("x-font-family-list", Fx_font_family_list, Sx_font_family_list,
2847 0, 1, 0,
2848 doc: /* Return a list of available font families on FRAME.
2849If FRAME is omitted or nil, use the selected frame.
2850Value is a list of conses (FAMILY . FIXED-P) where FAMILY
2851is a font family, and FIXED-P is non-nil if fonts of that family
2852are fixed-pitch. */)
2853 (frame)
2854 Lisp_Object frame;
2855{
2856 struct frame *f = check_x_frame (frame);
2857 int nfonts, i;
2858 struct font_name *fonts;
2859 Lisp_Object result;
2860 struct gcpro gcpro1;
2861 int count = SPECPDL_INDEX ();
2862
2863 /* Let's consider all fonts. */
2864 specbind (intern ("font-list-limit"), make_number (-1));
2865 nfonts = font_list (f, Qnil, Qnil, Qnil, &fonts);
2866
2867 result = Qnil;
2868 GCPRO1 (result);
2869 for (i = nfonts - 1; i >= 0; --i)
2870 result = Fcons (Fcons (build_string (fonts[i].fields[XLFD_FAMILY]),
2871 xlfd_fixed_p (fonts + i) ? Qt : Qnil),
2872 result);
2873
2874 remove_duplicates (result);
2875 free_font_names (fonts, nfonts);
2876 UNGCPRO;
2877 return unbind_to (count, result);
2878}
2879
2880
2881DEFUN ("x-list-fonts", Fx_list_fonts, Sx_list_fonts, 1, 5, 0,
2882 doc: /* Return a list of the names of available fonts matching PATTERN.
2883If optional arguments FACE and FRAME are specified, return only fonts
2884the same size as FACE on FRAME.
2885PATTERN is a string, perhaps with wildcard characters;
2886 the * character matches any substring, and
2887 the ? character matches any single character.
2888 PATTERN is case-insensitive.
2889FACE is a face name--a symbol.
2890
2891The return value is a list of strings, suitable as arguments to
2892set-face-font.
2893
2894Fonts Emacs can't use may or may not be excluded
2895even if they match PATTERN and FACE.
2896The optional fourth argument MAXIMUM sets a limit on how many
2897fonts to match. The first MAXIMUM fonts are reported.
2898The optional fifth argument WIDTH, if specified, is a number of columns
2899occupied by a character of a font. In that case, return only fonts
2900the WIDTH times as wide as FACE on FRAME. */)
2901 (pattern, face, frame, maximum, width)
2902 Lisp_Object pattern, face, frame, maximum, width;
2903{
2904 struct frame *f;
2905 int size;
2906 int maxnames;
2907
2908 check_x ();
2909 CHECK_STRING (pattern);
2910
2911 if (NILP (maximum))
2912 maxnames = -1;
2913 else
2914 {
2915 CHECK_NATNUM (maximum);
2916 maxnames = XINT (maximum);
2917 }
2918
2919 if (!NILP (width))
2920 CHECK_NUMBER (width);
2921
2922 /* We can't simply call check_x_frame because this function may be
2923 called before any frame is created. */
2924 f = frame_or_selected_frame (frame, 2);
2925 if (!FRAME_WINDOW_P (f))
2926 {
2927 /* Perhaps we have not yet created any frame. */
2928 f = NULL;
2929 face = Qnil;
2930 }
2931
2932 /* Determine the width standard for comparison with the fonts we find. */
2933
2934 if (NILP (face))
2935 size = 0;
2936 else
2937 {
2938 /* This is of limited utility since it works with character
2939 widths. Keep it for compatibility. --gerd. */
2940 int face_id = lookup_named_face (f, face, 0);
2941 struct face *face = (face_id < 0
2942 ? NULL
2943 : FACE_FROM_ID (f, face_id));
2944
2945#ifdef WINDOWSNT
2946/* For historic reasons, FONT_WIDTH refers to average width on W32,
2947 not maximum as on X. Redefine here. */
2948#undef FONT_WIDTH
2949#define FONT_WIDTH FONT_MAX_WIDTH
2950#endif
2951
2952 if (face && face->font)
2953 size = FONT_WIDTH (face->font);
2954 else
2955 size = FONT_WIDTH (FRAME_FONT (f)); /* FRAME_COLUMN_WIDTH (f) */
2956
2957 if (!NILP (width))
2958 size *= XINT (width);
2959 }
2960
2961 {
2962 Lisp_Object args[2];
2963
2964 args[0] = x_list_fonts (f, pattern, size, maxnames);
2965 if (f == NULL)
2966 /* We don't have to check fontsets. */
2967 return args[0];
2968 args[1] = list_fontsets (f, pattern, size);
2969 return Fnconc (2, args);
2970 }
2971}
2972
2973#endif /* HAVE_WINDOW_SYSTEM */
2974
2975
2976\f
2977/***********************************************************************
2978 Lisp Faces
2979 ***********************************************************************/
2980
2981/* Access face attributes of face LFACE, a Lisp vector. */
2982
2983#define LFACE_FAMILY(LFACE) AREF ((LFACE), LFACE_FAMILY_INDEX)
2984#define LFACE_HEIGHT(LFACE) AREF ((LFACE), LFACE_HEIGHT_INDEX)
2985#define LFACE_WEIGHT(LFACE) AREF ((LFACE), LFACE_WEIGHT_INDEX)
2986#define LFACE_SLANT(LFACE) AREF ((LFACE), LFACE_SLANT_INDEX)
2987#define LFACE_UNDERLINE(LFACE) AREF ((LFACE), LFACE_UNDERLINE_INDEX)
2988#define LFACE_INVERSE(LFACE) AREF ((LFACE), LFACE_INVERSE_INDEX)
2989#define LFACE_FOREGROUND(LFACE) AREF ((LFACE), LFACE_FOREGROUND_INDEX)
2990#define LFACE_BACKGROUND(LFACE) AREF ((LFACE), LFACE_BACKGROUND_INDEX)
2991#define LFACE_STIPPLE(LFACE) AREF ((LFACE), LFACE_STIPPLE_INDEX)
2992#define LFACE_SWIDTH(LFACE) AREF ((LFACE), LFACE_SWIDTH_INDEX)
2993#define LFACE_OVERLINE(LFACE) AREF ((LFACE), LFACE_OVERLINE_INDEX)
2994#define LFACE_STRIKE_THROUGH(LFACE) AREF ((LFACE), LFACE_STRIKE_THROUGH_INDEX)
2995#define LFACE_BOX(LFACE) AREF ((LFACE), LFACE_BOX_INDEX)
2996#define LFACE_FONT(LFACE) AREF ((LFACE), LFACE_FONT_INDEX)
2997#define LFACE_INHERIT(LFACE) AREF ((LFACE), LFACE_INHERIT_INDEX)
2998#define LFACE_AVGWIDTH(LFACE) AREF ((LFACE), LFACE_AVGWIDTH_INDEX)
2999
3000/* Non-zero if LFACE is a Lisp face. A Lisp face is a vector of size
3001 LFACE_VECTOR_SIZE which has the symbol `face' in slot 0. */
3002
3003#define LFACEP(LFACE) \
3004 (VECTORP (LFACE) \
3005 && XVECTOR (LFACE)->size == LFACE_VECTOR_SIZE \
3006 && EQ (AREF (LFACE, 0), Qface))
3007
3008
3009#if GLYPH_DEBUG
3010
3011/* Check consistency of Lisp face attribute vector ATTRS. */
3012
3013static void
3014check_lface_attrs (attrs)
3015 Lisp_Object *attrs;
3016{
3017 xassert (UNSPECIFIEDP (attrs[LFACE_FAMILY_INDEX])
3018 || STRINGP (attrs[LFACE_FAMILY_INDEX]));
3019 xassert (UNSPECIFIEDP (attrs[LFACE_SWIDTH_INDEX])
3020 || SYMBOLP (attrs[LFACE_SWIDTH_INDEX]));
3021 xassert (UNSPECIFIEDP (attrs[LFACE_AVGWIDTH_INDEX])
3022 || INTEGERP (attrs[LFACE_AVGWIDTH_INDEX]));
3023 xassert (UNSPECIFIEDP (attrs[LFACE_HEIGHT_INDEX])
3024 || INTEGERP (attrs[LFACE_HEIGHT_INDEX])
3025 || FLOATP (attrs[LFACE_HEIGHT_INDEX])
3026 || FUNCTIONP (attrs[LFACE_HEIGHT_INDEX]));
3027 xassert (UNSPECIFIEDP (attrs[LFACE_WEIGHT_INDEX])
3028 || SYMBOLP (attrs[LFACE_WEIGHT_INDEX]));
3029 xassert (UNSPECIFIEDP (attrs[LFACE_SLANT_INDEX])
3030 || SYMBOLP (attrs[LFACE_SLANT_INDEX]));
3031 xassert (UNSPECIFIEDP (attrs[LFACE_UNDERLINE_INDEX])
3032 || SYMBOLP (attrs[LFACE_UNDERLINE_INDEX])
3033 || STRINGP (attrs[LFACE_UNDERLINE_INDEX]));
3034 xassert (UNSPECIFIEDP (attrs[LFACE_OVERLINE_INDEX])
3035 || SYMBOLP (attrs[LFACE_OVERLINE_INDEX])
3036 || STRINGP (attrs[LFACE_OVERLINE_INDEX]));
3037 xassert (UNSPECIFIEDP (attrs[LFACE_STRIKE_THROUGH_INDEX])
3038 || SYMBOLP (attrs[LFACE_STRIKE_THROUGH_INDEX])
3039 || STRINGP (attrs[LFACE_STRIKE_THROUGH_INDEX]));
3040 xassert (UNSPECIFIEDP (attrs[LFACE_BOX_INDEX])
3041 || SYMBOLP (attrs[LFACE_BOX_INDEX])
3042 || STRINGP (attrs[LFACE_BOX_INDEX])
3043 || INTEGERP (attrs[LFACE_BOX_INDEX])
3044 || CONSP (attrs[LFACE_BOX_INDEX]));
3045 xassert (UNSPECIFIEDP (attrs[LFACE_INVERSE_INDEX])
3046 || SYMBOLP (attrs[LFACE_INVERSE_INDEX]));
3047 xassert (UNSPECIFIEDP (attrs[LFACE_FOREGROUND_INDEX])
3048 || STRINGP (attrs[LFACE_FOREGROUND_INDEX]));
3049 xassert (UNSPECIFIEDP (attrs[LFACE_BACKGROUND_INDEX])
3050 || STRINGP (attrs[LFACE_BACKGROUND_INDEX]));
3051 xassert (UNSPECIFIEDP (attrs[LFACE_INHERIT_INDEX])
3052 || NILP (attrs[LFACE_INHERIT_INDEX])
3053 || SYMBOLP (attrs[LFACE_INHERIT_INDEX])
3054 || CONSP (attrs[LFACE_INHERIT_INDEX]));
3055#ifdef HAVE_WINDOW_SYSTEM
3056 xassert (UNSPECIFIEDP (attrs[LFACE_STIPPLE_INDEX])
3057 || SYMBOLP (attrs[LFACE_STIPPLE_INDEX])
3058 || !NILP (Fbitmap_spec_p (attrs[LFACE_STIPPLE_INDEX])));
3059 xassert (UNSPECIFIEDP (attrs[LFACE_FONT_INDEX])
3060 || NILP (attrs[LFACE_FONT_INDEX])
3061 || STRINGP (attrs[LFACE_FONT_INDEX]));
3062#endif
3063}
3064
3065
3066/* Check consistency of attributes of Lisp face LFACE (a Lisp vector). */
3067
3068static void
3069check_lface (lface)
3070 Lisp_Object lface;
3071{
3072 if (!NILP (lface))
3073 {
3074 xassert (LFACEP (lface));
3075 check_lface_attrs (XVECTOR (lface)->contents);
3076 }
3077}
3078
3079#else /* GLYPH_DEBUG == 0 */
3080
3081#define check_lface_attrs(attrs) (void) 0
3082#define check_lface(lface) (void) 0
3083
3084#endif /* GLYPH_DEBUG == 0 */
3085
3086
3087/* Resolve face name FACE_NAME. If FACE_NAME is a string, intern it
3088 to make it a symvol. If FACE_NAME is an alias for another face,
3089 return that face's name. */
3090
3091static Lisp_Object
3092resolve_face_name (face_name)
3093 Lisp_Object face_name;
3094{
3095 Lisp_Object aliased;
3096
3097 if (STRINGP (face_name))
3098 face_name = intern (SDATA (face_name));
3099
3100 while (SYMBOLP (face_name))
3101 {
3102 aliased = Fget (face_name, Qface_alias);
3103 if (NILP (aliased))
3104 break;
3105 else
3106 face_name = aliased;
3107 }
3108
3109 return face_name;
3110}
3111
3112
3113/* Return the face definition of FACE_NAME on frame F. F null means
3114 return the definition for new frames. FACE_NAME may be a string or
3115 a symbol (apparently Emacs 20.2 allowed strings as face names in
3116 face text properties; Ediff uses that). If FACE_NAME is an alias
3117 for another face, return that face's definition. If SIGNAL_P is
3118 non-zero, signal an error if FACE_NAME is not a valid face name.
3119 If SIGNAL_P is zero, value is nil if FACE_NAME is not a valid face
3120 name. */
3121
3122static INLINE Lisp_Object
3123lface_from_face_name (f, face_name, signal_p)
3124 struct frame *f;
3125 Lisp_Object face_name;
3126 int signal_p;
3127{
3128 Lisp_Object lface;
3129
3130 face_name = resolve_face_name (face_name);
3131
3132 if (f)
3133 lface = assq_no_quit (face_name, f->face_alist);
3134 else
3135 lface = assq_no_quit (face_name, Vface_new_frame_defaults);
3136
3137 if (CONSP (lface))
3138 lface = XCDR (lface);
3139 else if (signal_p)
3140 signal_error ("Invalid face", face_name);
3141
3142 check_lface (lface);
3143 return lface;
3144}
3145
3146
3147/* Get face attributes of face FACE_NAME from frame-local faces on
3148 frame F. Store the resulting attributes in ATTRS which must point
3149 to a vector of Lisp_Objects of size LFACE_VECTOR_SIZE. If SIGNAL_P
3150 is non-zero, signal an error if FACE_NAME does not name a face.
3151 Otherwise, value is zero if FACE_NAME is not a face. */
3152
3153static INLINE int
3154get_lface_attributes (f, face_name, attrs, signal_p)
3155 struct frame *f;
3156 Lisp_Object face_name;
3157 Lisp_Object *attrs;
3158 int signal_p;
3159{
3160 Lisp_Object lface;
3161 int success_p;
3162
3163 lface = lface_from_face_name (f, face_name, signal_p);
3164 if (!NILP (lface))
3165 {
3166 bcopy (XVECTOR (lface)->contents, attrs,
3167 LFACE_VECTOR_SIZE * sizeof *attrs);
3168 success_p = 1;
3169 }
3170 else
3171 success_p = 0;
3172
3173 return success_p;
3174}
3175
3176
3177/* Non-zero if all attributes in face attribute vector ATTRS are
3178 specified, i.e. are non-nil. */
3179
3180static int
3181lface_fully_specified_p (attrs)
3182 Lisp_Object *attrs;
3183{
3184 int i;
3185
3186 for (i = 1; i < LFACE_VECTOR_SIZE; ++i)
3187 if (i != LFACE_FONT_INDEX && i != LFACE_INHERIT_INDEX
3188 && i != LFACE_AVGWIDTH_INDEX)
3189 if (UNSPECIFIEDP (attrs[i]))
3190 break;
3191
3192 return i == LFACE_VECTOR_SIZE;
3193}
3194
3195#ifdef HAVE_WINDOW_SYSTEM
3196
3197/* Set font-related attributes of Lisp face LFACE from the fullname of
3198 the font opened by FONTNAME. If FORCE_P is zero, set only
3199 unspecified attributes of LFACE. The exception is `font'
3200 attribute. It is set to FONTNAME as is regardless of FORCE_P.
3201
3202 If FONTNAME is not available on frame F,
3203 return 0 if MAY_FAIL_P is non-zero, otherwise abort.
3204 If the fullname is not in a valid XLFD format,
3205 return 0 if MAY_FAIL_P is non-zero, otherwise set normal values
3206 in LFACE and return 1.
3207 Otherwise, return 1. */
3208
3209static int
3210set_lface_from_font_name (f, lface, fontname, force_p, may_fail_p)
3211 struct frame *f;
3212 Lisp_Object lface;
3213 Lisp_Object fontname;
3214 int force_p, may_fail_p;
3215{
3216 struct font_name font;
3217 char *buffer;
3218 int pt;
3219 int have_xlfd_p;
3220 int fontset;
3221 char *font_name = SDATA (fontname);
3222 struct font_info *font_info;
3223
3224 /* If FONTNAME is actually a fontset name, get ASCII font name of it. */
3225 fontset = fs_query_fontset (fontname, 0);
3226 if (fontset >= 0)
3227 font_name = SDATA (fontset_ascii (fontset));
3228
3229 /* Check if FONT_NAME is surely available on the system. Usually
3230 FONT_NAME is already cached for the frame F and FS_LOAD_FONT
3231 returns quickly. But, even if FONT_NAME is not yet cached,
3232 caching it now is not futail because we anyway load the font
3233 later. */
3234 BLOCK_INPUT;
3235 font_info = FS_LOAD_FONT (f, 0, font_name, -1);
3236 UNBLOCK_INPUT;
3237
3238 if (!font_info)
3239 {
3240 if (may_fail_p)
3241 return 0;
3242 abort ();
3243 }
3244
3245 font.name = STRDUPA (font_info->full_name);
3246 have_xlfd_p = split_font_name (f, &font, 1);
3247
3248 /* Set attributes only if unspecified, otherwise face defaults for
3249 new frames would never take effect. If we couldn't get a font
3250 name conforming to XLFD, set normal values. */
3251
3252 if (force_p || UNSPECIFIEDP (LFACE_FAMILY (lface)))
3253 {
3254 Lisp_Object val;
3255 if (have_xlfd_p)
3256 {
3257 buffer = (char *) alloca (strlen (font.fields[XLFD_FAMILY])
3258 + strlen (font.fields[XLFD_FOUNDRY])
3259 + 2);
3260 sprintf (buffer, "%s-%s", font.fields[XLFD_FOUNDRY],
3261 font.fields[XLFD_FAMILY]);
3262 val = build_string (buffer);
3263 }
3264 else
3265 val = build_string ("*");
3266 LFACE_FAMILY (lface) = val;
3267 }
3268
3269 if (force_p || UNSPECIFIEDP (LFACE_HEIGHT (lface)))
3270 {
3271 if (have_xlfd_p)
3272 pt = xlfd_point_size (f, &font);
3273 else
3274 pt = pixel_point_size (f, font_info->height * 10);
3275 xassert (pt > 0);
3276 LFACE_HEIGHT (lface) = make_number (pt);
3277 }
3278
3279 if (force_p || UNSPECIFIEDP (LFACE_SWIDTH (lface)))
3280 LFACE_SWIDTH (lface)
3281 = have_xlfd_p ? xlfd_symbolic_swidth (&font) : Qnormal;
3282
3283 if (force_p || UNSPECIFIEDP (LFACE_AVGWIDTH (lface)))
3284 LFACE_AVGWIDTH (lface)
3285 = (have_xlfd_p
3286 ? make_number (font.numeric[XLFD_AVGWIDTH])
3287 : Qunspecified);
3288
3289 if (force_p || UNSPECIFIEDP (LFACE_WEIGHT (lface)))
3290 LFACE_WEIGHT (lface)
3291 = have_xlfd_p ? xlfd_symbolic_weight (&font) : Qnormal;
3292
3293 if (force_p || UNSPECIFIEDP (LFACE_SLANT (lface)))
3294 LFACE_SLANT (lface)
3295 = have_xlfd_p ? xlfd_symbolic_slant (&font) : Qnormal;
3296
3297 LFACE_FONT (lface) = fontname;
3298
3299 return 1;
3300}
3301
3302#endif /* HAVE_WINDOW_SYSTEM */
3303
3304
3305/* Merges the face height FROM with the face height TO, and returns the
3306 merged height. If FROM is an invalid height, then INVALID is
3307 returned instead. FROM and TO may be either absolute face heights or
3308 `relative' heights; the returned value is always an absolute height
3309 unless both FROM and TO are relative. GCPRO is a lisp value that
3310 will be protected from garbage-collection if this function makes a
3311 call into lisp. */
3312
3313Lisp_Object
3314merge_face_heights (from, to, invalid, gcpro)
3315 Lisp_Object from, to, invalid, gcpro;
3316{
3317 Lisp_Object result = invalid;
3318
3319 if (INTEGERP (from))
3320 /* FROM is absolute, just use it as is. */
3321 result = from;
3322 else if (FLOATP (from))
3323 /* FROM is a scale, use it to adjust TO. */
3324 {
3325 if (INTEGERP (to))
3326 /* relative X absolute => absolute */
3327 result = make_number ((EMACS_INT)(XFLOAT_DATA (from) * XINT (to)));
3328 else if (FLOATP (to))
3329 /* relative X relative => relative */
3330 result = make_float (XFLOAT_DATA (from) * XFLOAT_DATA (to));
3331 }
3332 else if (FUNCTIONP (from))
3333 /* FROM is a function, which use to adjust TO. */
3334 {
3335 /* Call function with current height as argument.
3336 From is the new height. */
3337 Lisp_Object args[2];
3338 struct gcpro gcpro1;
3339
3340 GCPRO1 (gcpro);
3341
3342 args[0] = from;
3343 args[1] = to;
3344 result = safe_call (2, args);
3345
3346 UNGCPRO;
3347
3348 /* Ensure that if TO was absolute, so is the result. */
3349 if (INTEGERP (to) && !INTEGERP (result))
3350 result = invalid;
3351 }
3352
3353 return result;
3354}
3355
3356
3357/* Merge two Lisp face attribute vectors on frame F, FROM and TO, and
3358 store the resulting attributes in TO, which must be already be
3359 completely specified and contain only absolute attributes. Every
3360 specified attribute of FROM overrides the corresponding attribute of
3361 TO; relative attributes in FROM are merged with the absolute value in
3362 TO and replace it. CYCLE_CHECK is used internally to detect loops in
3363 face inheritance; it should be Qnil when called from other places. */
3364
3365static INLINE void
3366merge_face_vectors (f, from, to, cycle_check)
3367 struct frame *f;
3368 Lisp_Object *from, *to;
3369 Lisp_Object cycle_check;
3370{
3371 int i;
3372
3373 /* If FROM inherits from some other faces, merge their attributes into
3374 TO before merging FROM's direct attributes. Note that an :inherit
3375 attribute of `unspecified' is the same as one of nil; we never
3376 merge :inherit attributes, so nil is more correct, but lots of
3377 other code uses `unspecified' as a generic value for face attributes. */
3378 if (!UNSPECIFIEDP (from[LFACE_INHERIT_INDEX])
3379 && !NILP (from[LFACE_INHERIT_INDEX]))
3380 merge_face_inheritance (f, from[LFACE_INHERIT_INDEX], to, cycle_check);
3381
3382 /* If TO specifies a :font attribute, and FROM specifies some
3383 font-related attribute, we need to clear TO's :font attribute
3384 (because it will be inconsistent with whatever FROM specifies, and
3385 FROM takes precedence). */
3386 if (!NILP (to[LFACE_FONT_INDEX])
3387 && (!UNSPECIFIEDP (from[LFACE_FAMILY_INDEX])
3388 || !UNSPECIFIEDP (from[LFACE_HEIGHT_INDEX])
3389 || !UNSPECIFIEDP (from[LFACE_WEIGHT_INDEX])
3390 || !UNSPECIFIEDP (from[LFACE_SLANT_INDEX])
3391 || !UNSPECIFIEDP (from[LFACE_SWIDTH_INDEX])
3392 || !UNSPECIFIEDP (from[LFACE_AVGWIDTH_INDEX])))
3393 to[LFACE_FONT_INDEX] = Qnil;
3394
3395 for (i = 1; i < LFACE_VECTOR_SIZE; ++i)
3396 if (!UNSPECIFIEDP (from[i]))
3397 {
3398 if (i == LFACE_HEIGHT_INDEX && !INTEGERP (from[i]))
3399 to[i] = merge_face_heights (from[i], to[i], to[i], cycle_check);
3400 else
3401 to[i] = from[i];
3402 }
3403
3404 /* TO is always an absolute face, which should inherit from nothing.
3405 We blindly copy the :inherit attribute above and fix it up here. */
3406 to[LFACE_INHERIT_INDEX] = Qnil;
3407}
3408
3409
3410/* Checks the `cycle check' variable CHECK to see if it indicates that
3411 EL is part of a cycle; CHECK must be either Qnil or a value returned
3412 by an earlier use of CYCLE_CHECK. SUSPICIOUS is the number of
3413 elements after which a cycle might be suspected; after that many
3414 elements, this macro begins consing in order to keep more precise
3415 track of elements.
3416
3417 Returns nil if a cycle was detected, otherwise a new value for CHECK
3418 that includes EL.
3419
3420 CHECK is evaluated multiple times, EL and SUSPICIOUS 0 or 1 times, so
3421 the caller should make sure that's ok. */
3422
3423#define CYCLE_CHECK(check, el, suspicious) \
3424 (NILP (check) \
3425 ? make_number (0) \
3426 : (INTEGERP (check) \
3427 ? (XFASTINT (check) < (suspicious) \
3428 ? make_number (XFASTINT (check) + 1) \
3429 : Fcons (el, Qnil)) \
3430 : (!NILP (Fmemq ((el), (check))) \
3431 ? Qnil \
3432 : Fcons ((el), (check)))))
3433
3434
3435/* Merge face attributes from the face on frame F whose name is
3436 INHERITS, into the vector of face attributes TO; INHERITS may also be
3437 a list of face names, in which case they are applied in order.
3438 CYCLE_CHECK is used to detect loops in face inheritance.
3439 Returns true if any of the inherited attributes are `font-related'. */
3440
3441static void
3442merge_face_inheritance (f, inherit, to, cycle_check)
3443 struct frame *f;
3444 Lisp_Object inherit;
3445 Lisp_Object *to;
3446 Lisp_Object cycle_check;
3447{
3448 if (SYMBOLP (inherit) && !EQ (inherit, Qunspecified))
3449 /* Inherit from the named face INHERIT. */
3450 {
3451 Lisp_Object lface;
3452
3453 /* Make sure we're not in an inheritance loop. */
3454 cycle_check = CYCLE_CHECK (cycle_check, inherit, 15);
3455 if (NILP (cycle_check))
3456 /* Cycle detected, ignore any further inheritance. */
3457 return;
3458
3459 lface = lface_from_face_name (f, inherit, 0);
3460 if (!NILP (lface))
3461 merge_face_vectors (f, XVECTOR (lface)->contents, to, cycle_check);
3462 }
3463 else if (CONSP (inherit))
3464 /* Handle a list of inherited faces by calling ourselves recursively
3465 on each element. Note that we only do so for symbol elements, so
3466 it's not possible to infinitely recurse. */
3467 {
3468 while (CONSP (inherit))
3469 {
3470 if (SYMBOLP (XCAR (inherit)))
3471 merge_face_inheritance (f, XCAR (inherit), to, cycle_check);
3472
3473 /* Check for a circular inheritance list. */
3474 cycle_check = CYCLE_CHECK (cycle_check, inherit, 15);
3475 if (NILP (cycle_check))
3476 /* Cycle detected. */
3477 break;
3478
3479 inherit = XCDR (inherit);
3480 }
3481 }
3482}
3483
3484
3485/* Given a Lisp face attribute vector TO and a Lisp object PROP that
3486 is a face property, determine the resulting face attributes on
3487 frame F, and store them in TO. PROP may be a single face
3488 specification or a list of such specifications. Each face
3489 specification can be
3490
3491 1. A symbol or string naming a Lisp face.
3492
3493 2. A property list of the form (KEYWORD VALUE ...) where each
3494 KEYWORD is a face attribute name, and value is an appropriate value
3495 for that attribute.
3496
3497 3. Conses or the form (FOREGROUND-COLOR . COLOR) or
3498 (BACKGROUND-COLOR . COLOR) where COLOR is a color name. This is
3499 for compatibility with 20.2.
3500
3501 Face specifications earlier in lists take precedence over later
3502 specifications. */
3503
3504static void
3505merge_face_vector_with_property (f, to, prop)
3506 struct frame *f;
3507 Lisp_Object *to;
3508 Lisp_Object prop;
3509{
3510 if (CONSP (prop))
3511 {
3512 Lisp_Object first = XCAR (prop);
3513
3514 if (EQ (first, Qforeground_color)
3515 || EQ (first, Qbackground_color))
3516 {
3517 /* One of (FOREGROUND-COLOR . COLOR) or (BACKGROUND-COLOR
3518 . COLOR). COLOR must be a string. */
3519 Lisp_Object color_name = XCDR (prop);
3520 Lisp_Object color = first;
3521
3522 if (STRINGP (color_name))
3523 {
3524 if (EQ (color, Qforeground_color))
3525 to[LFACE_FOREGROUND_INDEX] = color_name;
3526 else
3527 to[LFACE_BACKGROUND_INDEX] = color_name;
3528 }
3529 else
3530 add_to_log ("Invalid face color", color_name, Qnil);
3531 }
3532 else if (SYMBOLP (first)
3533 && *SDATA (SYMBOL_NAME (first)) == ':')
3534 {
3535 /* Assume this is the property list form. */
3536 while (CONSP (prop) && CONSP (XCDR (prop)))
3537 {
3538 Lisp_Object keyword = XCAR (prop);
3539 Lisp_Object value = XCAR (XCDR (prop));
3540
3541 if (EQ (keyword, QCfamily))
3542 {
3543 if (STRINGP (value))
3544 to[LFACE_FAMILY_INDEX] = value;
3545 else
3546 add_to_log ("Invalid face font family", value, Qnil);
3547 }
3548 else if (EQ (keyword, QCheight))
3549 {
3550 Lisp_Object new_height =
3551 merge_face_heights (value, to[LFACE_HEIGHT_INDEX],
3552 Qnil, Qnil);
3553
3554 if (NILP (new_height))
3555 add_to_log ("Invalid face font height", value, Qnil);
3556 else
3557 to[LFACE_HEIGHT_INDEX] = new_height;
3558 }
3559 else if (EQ (keyword, QCweight))
3560 {
3561 if (SYMBOLP (value)
3562 && face_numeric_weight (value) >= 0)
3563 to[LFACE_WEIGHT_INDEX] = value;
3564 else
3565 add_to_log ("Invalid face weight", value, Qnil);
3566 }
3567 else if (EQ (keyword, QCslant))
3568 {
3569 if (SYMBOLP (value)
3570 && face_numeric_slant (value) >= 0)
3571 to[LFACE_SLANT_INDEX] = value;
3572 else
3573 add_to_log ("Invalid face slant", value, Qnil);
3574 }
3575 else if (EQ (keyword, QCunderline))
3576 {
3577 if (EQ (value, Qt)
3578 || NILP (value)
3579 || STRINGP (value))
3580 to[LFACE_UNDERLINE_INDEX] = value;
3581 else
3582 add_to_log ("Invalid face underline", value, Qnil);
3583 }
3584 else if (EQ (keyword, QCoverline))
3585 {
3586 if (EQ (value, Qt)
3587 || NILP (value)
3588 || STRINGP (value))
3589 to[LFACE_OVERLINE_INDEX] = value;
3590 else
3591 add_to_log ("Invalid face overline", value, Qnil);
3592 }
3593 else if (EQ (keyword, QCstrike_through))
3594 {
3595 if (EQ (value, Qt)
3596 || NILP (value)
3597 || STRINGP (value))
3598 to[LFACE_STRIKE_THROUGH_INDEX] = value;
3599 else
3600 add_to_log ("Invalid face strike-through", value, Qnil);
3601 }
3602 else if (EQ (keyword, QCbox))
3603 {
3604 if (EQ (value, Qt))
3605 value = make_number (1);
3606 if (INTEGERP (value)
3607 || STRINGP (value)
3608 || CONSP (value)
3609 || NILP (value))
3610 to[LFACE_BOX_INDEX] = value;
3611 else
3612 add_to_log ("Invalid face box", value, Qnil);
3613 }
3614 else if (EQ (keyword, QCinverse_video)
3615 || EQ (keyword, QCreverse_video))
3616 {
3617 if (EQ (value, Qt) || NILP (value))
3618 to[LFACE_INVERSE_INDEX] = value;
3619 else
3620 add_to_log ("Invalid face inverse-video", value, Qnil);
3621 }
3622 else if (EQ (keyword, QCforeground))
3623 {
3624 if (STRINGP (value))
3625 to[LFACE_FOREGROUND_INDEX] = value;
3626 else
3627 add_to_log ("Invalid face foreground", value, Qnil);
3628 }
3629 else if (EQ (keyword, QCbackground))
3630 {
3631 if (STRINGP (value))
3632 to[LFACE_BACKGROUND_INDEX] = value;
3633 else
3634 add_to_log ("Invalid face background", value, Qnil);
3635 }
3636 else if (EQ (keyword, QCstipple))
3637 {
3638#ifdef HAVE_X_WINDOWS
3639 Lisp_Object pixmap_p = Fbitmap_spec_p (value);
3640 if (!NILP (pixmap_p))
3641 to[LFACE_STIPPLE_INDEX] = value;
3642 else
3643 add_to_log ("Invalid face stipple", value, Qnil);
3644#endif
3645 }
3646 else if (EQ (keyword, QCwidth))
3647 {
3648 if (SYMBOLP (value)
3649 && face_numeric_swidth (value) >= 0)
3650 to[LFACE_SWIDTH_INDEX] = value;
3651 else
3652 add_to_log ("Invalid face width", value, Qnil);
3653 }
3654 else if (EQ (keyword, QCinherit))
3655 {
3656 if (SYMBOLP (value))
3657 to[LFACE_INHERIT_INDEX] = value;
3658 else
3659 {
3660 Lisp_Object tail;
3661 for (tail = value; CONSP (tail); tail = XCDR (tail))
3662 if (!SYMBOLP (XCAR (tail)))
3663 break;
3664 if (NILP (tail))
3665 to[LFACE_INHERIT_INDEX] = value;
3666 else
3667 add_to_log ("Invalid face inherit", value, Qnil);
3668 }
3669 }
3670 else
3671 add_to_log ("Invalid attribute %s in face property",
3672 keyword, Qnil);
3673
3674 prop = XCDR (XCDR (prop));
3675 }
3676 }
3677 else
3678 {
3679 /* This is a list of face specs. Specifications at the
3680 beginning of the list take precedence over later
3681 specifications, so we have to merge starting with the
3682 last specification. */
3683 Lisp_Object next = XCDR (prop);
3684 if (!NILP (next))
3685 merge_face_vector_with_property (f, to, next);
3686 merge_face_vector_with_property (f, to, first);
3687 }
3688 }
3689 else
3690 {
3691 /* PROP ought to be a face name. */
3692 Lisp_Object lface = lface_from_face_name (f, prop, 0);
3693 if (NILP (lface))
3694 add_to_log ("Invalid face text property value: %s", prop, Qnil);
3695 else
3696 merge_face_vectors (f, XVECTOR (lface)->contents, to, Qnil);
3697 }
3698}
3699
3700
3701DEFUN ("internal-make-lisp-face", Finternal_make_lisp_face,
3702 Sinternal_make_lisp_face, 1, 2, 0,
3703 doc: /* Make FACE, a symbol, a Lisp face with all attributes nil.
3704If FACE was not known as a face before, create a new one.
3705If optional argument FRAME is specified, make a frame-local face
3706for that frame. Otherwise operate on the global face definition.
3707Value is a vector of face attributes. */)
3708 (face, frame)
3709 Lisp_Object face, frame;
3710{
3711 Lisp_Object global_lface, lface;
3712 struct frame *f;
3713 int i;
3714
3715 CHECK_SYMBOL (face);
3716 global_lface = lface_from_face_name (NULL, face, 0);
3717
3718 if (!NILP (frame))
3719 {
3720 CHECK_LIVE_FRAME (frame);
3721 f = XFRAME (frame);
3722 lface = lface_from_face_name (f, face, 0);
3723 }
3724 else
3725 f = NULL, lface = Qnil;
3726
3727 /* Add a global definition if there is none. */
3728 if (NILP (global_lface))
3729 {
3730 global_lface = Fmake_vector (make_number (LFACE_VECTOR_SIZE),
3731 Qunspecified);
3732 AREF (global_lface, 0) = Qface;
3733 Vface_new_frame_defaults = Fcons (Fcons (face, global_lface),
3734 Vface_new_frame_defaults);
3735
3736 /* Assign the new Lisp face a unique ID. The mapping from Lisp
3737 face id to Lisp face is given by the vector lface_id_to_name.
3738 The mapping from Lisp face to Lisp face id is given by the
3739 property `face' of the Lisp face name. */
3740 if (next_lface_id == lface_id_to_name_size)
3741 {
3742 int new_size = max (50, 2 * lface_id_to_name_size);
3743 int sz = new_size * sizeof *lface_id_to_name;
3744 lface_id_to_name = (Lisp_Object *) xrealloc (lface_id_to_name, sz);
3745 lface_id_to_name_size = new_size;
3746 }
3747
3748 lface_id_to_name[next_lface_id] = face;
3749 Fput (face, Qface, make_number (next_lface_id));
3750 ++next_lface_id;
3751 }
3752 else if (f == NULL)
3753 for (i = 1; i < LFACE_VECTOR_SIZE; ++i)
3754 AREF (global_lface, i) = Qunspecified;
3755
3756 /* Add a frame-local definition. */
3757 if (f)
3758 {
3759 if (NILP (lface))
3760 {
3761 lface = Fmake_vector (make_number (LFACE_VECTOR_SIZE),
3762 Qunspecified);
3763 AREF (lface, 0) = Qface;
3764 f->face_alist = Fcons (Fcons (face, lface), f->face_alist);
3765 }
3766 else
3767 for (i = 1; i < LFACE_VECTOR_SIZE; ++i)
3768 AREF (lface, i) = Qunspecified;
3769 }
3770 else
3771 lface = global_lface;
3772
3773 /* Changing a named face means that all realized faces depending on
3774 that face are invalid. Since we cannot tell which realized faces
3775 depend on the face, make sure they are all removed. This is done
3776 by incrementing face_change_count. The next call to
3777 init_iterator will then free realized faces. */
3778 ++face_change_count;
3779 ++windows_or_buffers_changed;
3780
3781 xassert (LFACEP (lface));
3782 check_lface (lface);
3783 return lface;
3784}
3785
3786
3787DEFUN ("internal-lisp-face-p", Finternal_lisp_face_p,
3788 Sinternal_lisp_face_p, 1, 2, 0,
3789 doc: /* Return non-nil if FACE names a face.
3790If optional second parameter FRAME is non-nil, check for the
3791existence of a frame-local face with name FACE on that frame.
3792Otherwise check for the existence of a global face. */)
3793 (face, frame)
3794 Lisp_Object face, frame;
3795{
3796 Lisp_Object lface;
3797
3798 if (!NILP (frame))
3799 {
3800 CHECK_LIVE_FRAME (frame);
3801 lface = lface_from_face_name (XFRAME (frame), face, 0);
3802 }
3803 else
3804 lface = lface_from_face_name (NULL, face, 0);
3805
3806 return lface;
3807}
3808
3809
3810DEFUN ("internal-copy-lisp-face", Finternal_copy_lisp_face,
3811 Sinternal_copy_lisp_face, 4, 4, 0,
3812 doc: /* Copy face FROM to TO.
3813If FRAME it t, copy the global face definition of FROM to the
3814global face definition of TO. Otherwise, copy the frame-local
3815definition of FROM on FRAME to the frame-local definition of TO
3816on NEW-FRAME, or FRAME if NEW-FRAME is nil.
3817
3818Value is TO. */)
3819 (from, to, frame, new_frame)
3820 Lisp_Object from, to, frame, new_frame;
3821{
3822 Lisp_Object lface, copy;
3823
3824 CHECK_SYMBOL (from);
3825 CHECK_SYMBOL (to);
3826 if (NILP (new_frame))
3827 new_frame = frame;
3828
3829 if (EQ (frame, Qt))
3830 {
3831 /* Copy global definition of FROM. We don't make copies of
3832 strings etc. because 20.2 didn't do it either. */
3833 lface = lface_from_face_name (NULL, from, 1);
3834 copy = Finternal_make_lisp_face (to, Qnil);
3835 }
3836 else
3837 {
3838 /* Copy frame-local definition of FROM. */
3839 CHECK_LIVE_FRAME (frame);
3840 CHECK_LIVE_FRAME (new_frame);
3841 lface = lface_from_face_name (XFRAME (frame), from, 1);
3842 copy = Finternal_make_lisp_face (to, new_frame);
3843 }
3844
3845 bcopy (XVECTOR (lface)->contents, XVECTOR (copy)->contents,
3846 LFACE_VECTOR_SIZE * sizeof (Lisp_Object));
3847
3848 /* Changing a named face means that all realized faces depending on
3849 that face are invalid. Since we cannot tell which realized faces
3850 depend on the face, make sure they are all removed. This is done
3851 by incrementing face_change_count. The next call to
3852 init_iterator will then free realized faces. */
3853 ++face_change_count;
3854 ++windows_or_buffers_changed;
3855
3856 return to;
3857}
3858
3859
3860DEFUN ("internal-set-lisp-face-attribute", Finternal_set_lisp_face_attribute,
3861 Sinternal_set_lisp_face_attribute, 3, 4, 0,
3862 doc: /* Set attribute ATTR of FACE to VALUE.
3863FRAME being a frame means change the face on that frame.
3864FRAME nil means change the face of the selected frame.
3865FRAME t means change the default for new frames.
3866FRAME 0 means change the face on all frames, and change the default
3867 for new frames. */)
3868 (face, attr, value, frame)
3869 Lisp_Object face, attr, value, frame;
3870{
3871 Lisp_Object lface;
3872 Lisp_Object old_value = Qnil;
3873 /* Set 1 if ATTR is QCfont. */
3874 int font_attr_p = 0;
3875 /* Set 1 if ATTR is one of font-related attributes other than QCfont. */
3876 int font_related_attr_p = 0;
3877
3878 CHECK_SYMBOL (face);
3879 CHECK_SYMBOL (attr);
3880
3881 face = resolve_face_name (face);
3882
3883 /* If FRAME is 0, change face on all frames, and change the
3884 default for new frames. */
3885 if (INTEGERP (frame) && XINT (frame) == 0)
3886 {
3887 Lisp_Object tail;
3888 Finternal_set_lisp_face_attribute (face, attr, value, Qt);
3889 FOR_EACH_FRAME (tail, frame)
3890 Finternal_set_lisp_face_attribute (face, attr, value, frame);
3891 return face;
3892 }
3893
3894 /* Set lface to the Lisp attribute vector of FACE. */
3895 if (EQ (frame, Qt))
3896 lface = lface_from_face_name (NULL, face, 1);
3897 else
3898 {
3899 if (NILP (frame))
3900 frame = selected_frame;
3901
3902 CHECK_LIVE_FRAME (frame);
3903 lface = lface_from_face_name (XFRAME (frame), face, 0);
3904
3905 /* If a frame-local face doesn't exist yet, create one. */
3906 if (NILP (lface))
3907 lface = Finternal_make_lisp_face (face, frame);
3908 }
3909
3910 if (EQ (attr, QCfamily))
3911 {
3912 if (!UNSPECIFIEDP (value))
3913 {
3914 CHECK_STRING (value);
3915 if (SCHARS (value) == 0)
3916 signal_error ("Invalid face family", value);
3917 }
3918 old_value = LFACE_FAMILY (lface);
3919 LFACE_FAMILY (lface) = value;
3920 font_related_attr_p = 1;
3921 }
3922 else if (EQ (attr, QCheight))
3923 {
3924 if (!UNSPECIFIEDP (value))
3925 {
3926 Lisp_Object test;
3927
3928 test = (EQ (face, Qdefault)
3929 ? value
3930 /* The default face must have an absolute size,
3931 otherwise, we do a test merge with a random
3932 height to see if VALUE's ok. */
3933 : merge_face_heights (value, make_number (10), Qnil, Qnil));
3934
3935 if (!INTEGERP (test) || XINT (test) <= 0)
3936 signal_error ("Invalid face height", value);
3937 }
3938
3939 old_value = LFACE_HEIGHT (lface);
3940 LFACE_HEIGHT (lface) = value;
3941 font_related_attr_p = 1;
3942 }
3943 else if (EQ (attr, QCweight))
3944 {
3945 if (!UNSPECIFIEDP (value))
3946 {
3947 CHECK_SYMBOL (value);
3948 if (face_numeric_weight (value) < 0)
3949 signal_error ("Invalid face weight", value);
3950 }
3951 old_value = LFACE_WEIGHT (lface);
3952 LFACE_WEIGHT (lface) = value;
3953 font_related_attr_p = 1;
3954 }
3955 else if (EQ (attr, QCslant))
3956 {
3957 if (!UNSPECIFIEDP (value))
3958 {
3959 CHECK_SYMBOL (value);
3960 if (face_numeric_slant (value) < 0)
3961 signal_error ("Invalid face slant", value);
3962 }
3963 old_value = LFACE_SLANT (lface);
3964 LFACE_SLANT (lface) = value;
3965 font_related_attr_p = 1;
3966 }
3967 else if (EQ (attr, QCunderline))
3968 {
3969 if (!UNSPECIFIEDP (value))
3970 if ((SYMBOLP (value)
3971 && !EQ (value, Qt)
3972 && !EQ (value, Qnil))
3973 /* Underline color. */
3974 || (STRINGP (value)
3975 && SCHARS (value) == 0))
3976 signal_error ("Invalid face underline", value);
3977
3978 old_value = LFACE_UNDERLINE (lface);
3979 LFACE_UNDERLINE (lface) = value;
3980 }
3981 else if (EQ (attr, QCoverline))
3982 {
3983 if (!UNSPECIFIEDP (value))
3984 if ((SYMBOLP (value)
3985 && !EQ (value, Qt)
3986 && !EQ (value, Qnil))
3987 /* Overline color. */
3988 || (STRINGP (value)
3989 && SCHARS (value) == 0))
3990 signal_error ("Invalid face overline", value);
3991
3992 old_value = LFACE_OVERLINE (lface);
3993 LFACE_OVERLINE (lface) = value;
3994 }
3995 else if (EQ (attr, QCstrike_through))
3996 {
3997 if (!UNSPECIFIEDP (value))
3998 if ((SYMBOLP (value)
3999 && !EQ (value, Qt)
4000 && !EQ (value, Qnil))
4001 /* Strike-through color. */
4002 || (STRINGP (value)
4003 && SCHARS (value) == 0))
4004 signal_error ("Invalid face strike-through", value);
4005
4006 old_value = LFACE_STRIKE_THROUGH (lface);
4007 LFACE_STRIKE_THROUGH (lface) = value;
4008 }
4009 else if (EQ (attr, QCbox))
4010 {
4011 int valid_p;
4012
4013 /* Allow t meaning a simple box of width 1 in foreground color
4014 of the face. */
4015 if (EQ (value, Qt))
4016 value = make_number (1);
4017
4018 if (UNSPECIFIEDP (value))
4019 valid_p = 1;
4020 else if (NILP (value))
4021 valid_p = 1;
4022 else if (INTEGERP (value))
4023 valid_p = XINT (value) != 0;
4024 else if (STRINGP (value))
4025 valid_p = SCHARS (value) > 0;
4026 else if (CONSP (value))
4027 {
4028 Lisp_Object tem;
4029
4030 tem = value;
4031 while (CONSP (tem))
4032 {
4033 Lisp_Object k, v;
4034
4035 k = XCAR (tem);
4036 tem = XCDR (tem);
4037 if (!CONSP (tem))
4038 break;
4039 v = XCAR (tem);
4040 tem = XCDR (tem);
4041
4042 if (EQ (k, QCline_width))
4043 {
4044 if (!INTEGERP (v) || XINT (v) == 0)
4045 break;
4046 }
4047 else if (EQ (k, QCcolor))
4048 {
4049 if (!STRINGP (v) || SCHARS (v) == 0)
4050 break;
4051 }
4052 else if (EQ (k, QCstyle))
4053 {
4054 if (!EQ (v, Qpressed_button) && !EQ (v, Qreleased_button))
4055 break;
4056 }
4057 else
4058 break;
4059 }
4060
4061 valid_p = NILP (tem);
4062 }
4063 else
4064 valid_p = 0;
4065
4066 if (!valid_p)
4067 signal_error ("Invalid face box", value);
4068
4069 old_value = LFACE_BOX (lface);
4070 LFACE_BOX (lface) = value;
4071 }
4072 else if (EQ (attr, QCinverse_video)
4073 || EQ (attr, QCreverse_video))
4074 {
4075 if (!UNSPECIFIEDP (value))
4076 {
4077 CHECK_SYMBOL (value);
4078 if (!EQ (value, Qt) && !NILP (value))
4079 signal_error ("Invalid inverse-video face attribute value", value);
4080 }
4081 old_value = LFACE_INVERSE (lface);
4082 LFACE_INVERSE (lface) = value;
4083 }
4084 else if (EQ (attr, QCforeground))
4085 {
4086 if (!UNSPECIFIEDP (value))
4087 {
4088 /* Don't check for valid color names here because it depends
4089 on the frame (display) whether the color will be valid
4090 when the face is realized. */
4091 CHECK_STRING (value);
4092 if (SCHARS (value) == 0)
4093 signal_error ("Empty foreground color value", value);
4094 }
4095 old_value = LFACE_FOREGROUND (lface);
4096 LFACE_FOREGROUND (lface) = value;
4097 }
4098 else if (EQ (attr, QCbackground))
4099 {
4100 if (!UNSPECIFIEDP (value))
4101 {
4102 /* Don't check for valid color names here because it depends
4103 on the frame (display) whether the color will be valid
4104 when the face is realized. */
4105 CHECK_STRING (value);
4106 if (SCHARS (value) == 0)
4107 signal_error ("Empty background color value", value);
4108 }
4109 old_value = LFACE_BACKGROUND (lface);
4110 LFACE_BACKGROUND (lface) = value;
4111 }
4112 else if (EQ (attr, QCstipple))
4113 {
4114#ifdef HAVE_X_WINDOWS
4115 if (!UNSPECIFIEDP (value)
4116 && !NILP (value)
4117 && NILP (Fbitmap_spec_p (value)))
4118 signal_error ("Invalid stipple attribute", value);
4119 old_value = LFACE_STIPPLE (lface);
4120 LFACE_STIPPLE (lface) = value;
4121#endif /* HAVE_X_WINDOWS */
4122 }
4123 else if (EQ (attr, QCwidth))
4124 {
4125 if (!UNSPECIFIEDP (value))
4126 {
4127 CHECK_SYMBOL (value);
4128 if (face_numeric_swidth (value) < 0)
4129 signal_error ("Invalid face width", value);
4130 }
4131 old_value = LFACE_SWIDTH (lface);
4132 LFACE_SWIDTH (lface) = value;
4133 font_related_attr_p = 1;
4134 }
4135 else if (EQ (attr, QCfont))
4136 {
4137#ifdef HAVE_WINDOW_SYSTEM
4138 if (EQ (frame, Qt) || FRAME_WINDOW_P (XFRAME (frame)))
4139 {
4140 /* Set font-related attributes of the Lisp face from an XLFD
4141 font name. */
4142 struct frame *f;
4143 Lisp_Object tmp;
4144
4145 if (EQ (frame, Qt))
4146 f = SELECTED_FRAME ();
4147 else
4148 f = check_x_frame (frame);
4149
4150 if (!UNSPECIFIEDP (value))
4151 {
4152 CHECK_STRING (value);
4153
4154 /* VALUE may be a fontset name or an alias of fontset. In
4155 such a case, use the base fontset name. */
4156 tmp = Fquery_fontset (value, Qnil);
4157 if (!NILP (tmp))
4158 value = tmp;
4159
4160 if (!set_lface_from_font_name (f, lface, value, 1, 1))
4161 signal_error ("Invalid font or fontset name", value);
4162 }
4163
4164 font_attr_p = 1;
4165 }
4166#endif /* HAVE_WINDOW_SYSTEM */
4167 }
4168 else if (EQ (attr, QCinherit))
4169 {
4170 Lisp_Object tail;
4171 if (SYMBOLP (value))
4172 tail = Qnil;
4173 else
4174 for (tail = value; CONSP (tail); tail = XCDR (tail))
4175 if (!SYMBOLP (XCAR (tail)))
4176 break;
4177 if (NILP (tail))
4178 LFACE_INHERIT (lface) = value;
4179 else
4180 signal_error ("Invalid face inheritance", value);
4181 }
4182 else if (EQ (attr, QCbold))
4183 {
4184 old_value = LFACE_WEIGHT (lface);
4185 LFACE_WEIGHT (lface) = NILP (value) ? Qnormal : Qbold;
4186 font_related_attr_p = 1;
4187 }
4188 else if (EQ (attr, QCitalic))
4189 {
4190 old_value = LFACE_SLANT (lface);
4191 LFACE_SLANT (lface) = NILP (value) ? Qnormal : Qitalic;
4192 font_related_attr_p = 1;
4193 }
4194 else
4195 signal_error ("Invalid face attribute name", attr);
4196
4197 if (font_related_attr_p
4198 && !UNSPECIFIEDP (value))
4199 /* If a font-related attribute other than QCfont is specified, the
4200 original `font' attribute nor that of default face is useless
4201 to determine a new font. Thus, we set it to nil so that font
4202 selection mechanism doesn't use it. */
4203 LFACE_FONT (lface) = Qnil;
4204
4205 /* Changing a named face means that all realized faces depending on
4206 that face are invalid. Since we cannot tell which realized faces
4207 depend on the face, make sure they are all removed. This is done
4208 by incrementing face_change_count. The next call to
4209 init_iterator will then free realized faces. */
4210 if (!EQ (frame, Qt)
4211 && (EQ (attr, QCfont)
4212 || NILP (Fequal (old_value, value))))
4213 {
4214 ++face_change_count;
4215 ++windows_or_buffers_changed;
4216 }
4217
4218 if (!UNSPECIFIEDP (value)
4219 && NILP (Fequal (old_value, value)))
4220 {
4221 Lisp_Object param;
4222
4223 param = Qnil;
4224
4225 if (EQ (face, Qdefault))
4226 {
4227#ifdef HAVE_WINDOW_SYSTEM
4228 /* Changed font-related attributes of the `default' face are
4229 reflected in changed `font' frame parameters. */
4230 if (FRAMEP (frame)
4231 && (font_related_attr_p || font_attr_p)
4232 && lface_fully_specified_p (XVECTOR (lface)->contents))
4233 set_font_frame_param (frame, lface);
4234 else
4235#endif /* HAVE_WINDOW_SYSTEM */
4236
4237 if (EQ (attr, QCforeground))
4238 param = Qforeground_color;
4239 else if (EQ (attr, QCbackground))
4240 param = Qbackground_color;
4241 }
4242#ifdef HAVE_WINDOW_SYSTEM
4243#ifndef WINDOWSNT
4244 else if (EQ (face, Qscroll_bar))
4245 {
4246 /* Changing the colors of `scroll-bar' sets frame parameters
4247 `scroll-bar-foreground' and `scroll-bar-background'. */
4248 if (EQ (attr, QCforeground))
4249 param = Qscroll_bar_foreground;
4250 else if (EQ (attr, QCbackground))
4251 param = Qscroll_bar_background;
4252 }
4253#endif /* not WINDOWSNT */
4254 else if (EQ (face, Qborder))
4255 {
4256 /* Changing background color of `border' sets frame parameter
4257 `border-color'. */
4258 if (EQ (attr, QCbackground))
4259 param = Qborder_color;
4260 }
4261 else if (EQ (face, Qcursor))
4262 {
4263 /* Changing background color of `cursor' sets frame parameter
4264 `cursor-color'. */
4265 if (EQ (attr, QCbackground))
4266 param = Qcursor_color;
4267 }
4268 else if (EQ (face, Qmouse))
4269 {
4270 /* Changing background color of `mouse' sets frame parameter
4271 `mouse-color'. */
4272 if (EQ (attr, QCbackground))
4273 param = Qmouse_color;
4274 }
4275#endif /* HAVE_WINDOW_SYSTEM */
4276 else if (EQ (face, Qmenu))
4277 {
4278 /* Indicate that we have to update the menu bar when
4279 realizing faces on FRAME. FRAME t change the
4280 default for new frames. We do this by setting
4281 setting the flag in new face caches */
4282 if (FRAMEP (frame))
4283 {
4284 struct frame *f = XFRAME (frame);
4285 if (FRAME_FACE_CACHE (f) == NULL)
4286 FRAME_FACE_CACHE (f) = make_face_cache (f);
4287 FRAME_FACE_CACHE (f)->menu_face_changed_p = 1;
4288 }
4289 else
4290 menu_face_changed_default = 1;
4291 }
4292
4293 if (!NILP (param))
4294 {
4295 if (EQ (frame, Qt))
4296 /* Update `default-frame-alist', which is used for new frames. */
4297 {
4298 store_in_alist (&Vdefault_frame_alist, param, value);
4299 }
4300 else
4301 /* Update the current frame's parameters. */
4302 {
4303 Lisp_Object cons;
4304 cons = XCAR (Vparam_value_alist);
4305 XSETCAR (cons, param);
4306 XSETCDR (cons, value);
4307 Fmodify_frame_parameters (frame, Vparam_value_alist);
4308 }
4309 }
4310 }
4311
4312 return face;
4313}
4314
4315
4316#ifdef HAVE_WINDOW_SYSTEM
4317
4318/* Set the `font' frame parameter of FRAME determined from `default'
4319 face attributes LFACE. If a face or fontset name is explicitely
4320 specfied in LFACE, use it as is. Otherwise, determine a font name
4321 from the other font-related atrributes of LFACE. In that case, if
4322 there's no matching font, signals an error. */
4323
4324static void
4325set_font_frame_param (frame, lface)
4326 Lisp_Object frame, lface;
4327{
4328 struct frame *f = XFRAME (frame);
4329
4330 if (FRAME_WINDOW_P (f))
4331 {
4332 Lisp_Object font_name;
4333 char *font;
4334
4335 if (STRINGP (LFACE_FONT (lface)))
4336 font_name = LFACE_FONT (lface);
4337 else
4338 {
4339 /* Choose a font name that reflects LFACE's attributes and has
4340 the registry and encoding pattern specified in the default
4341 fontset (3rd arg: -1) for ASCII characters (4th arg: 0). */
4342 font = choose_face_font (f, XVECTOR (lface)->contents, -1, 0, 0);
4343 if (!font)
4344 error ("No font matches the specified attribute");
4345 font_name = build_string (font);
4346 xfree (font);
4347 }
4348
4349 f->default_face_done_p = 0;
4350 Fmodify_frame_parameters (frame, Fcons (Fcons (Qfont, font_name), Qnil));
4351 }
4352}
4353
4354
4355/* Update the corresponding face when frame parameter PARAM on frame F
4356 has been assigned the value NEW_VALUE. */
4357
4358void
4359update_face_from_frame_parameter (f, param, new_value)
4360 struct frame *f;
4361 Lisp_Object param, new_value;
4362{
4363 Lisp_Object lface;
4364
4365 /* If there are no faces yet, give up. This is the case when called
4366 from Fx_create_frame, and we do the necessary things later in
4367 face-set-after-frame-defaults. */
4368 if (NILP (f->face_alist))
4369 return;
4370
4371 /* Changing a named face means that all realized faces depending on
4372 that face are invalid. Since we cannot tell which realized faces
4373 depend on the face, make sure they are all removed. This is done
4374 by incrementing face_change_count. The next call to
4375 init_iterator will then free realized faces. */
4376 ++face_change_count;
4377 ++windows_or_buffers_changed;
4378
4379 if (EQ (param, Qforeground_color))
4380 {
4381 lface = lface_from_face_name (f, Qdefault, 1);
4382 LFACE_FOREGROUND (lface) = (STRINGP (new_value)
4383 ? new_value : Qunspecified);
4384 realize_basic_faces (f);
4385 }
4386 else if (EQ (param, Qbackground_color))
4387 {
4388 Lisp_Object frame;
4389
4390 /* Changing the background color might change the background
4391 mode, so that we have to load new defface specs. Call
4392 frame-update-face-colors to do that. */
4393 XSETFRAME (frame, f);
4394 call1 (Qframe_update_face_colors, frame);
4395
4396 lface = lface_from_face_name (f, Qdefault, 1);
4397 LFACE_BACKGROUND (lface) = (STRINGP (new_value)
4398 ? new_value : Qunspecified);
4399 realize_basic_faces (f);
4400 }
4401 if (EQ (param, Qborder_color))
4402 {
4403 lface = lface_from_face_name (f, Qborder, 1);
4404 LFACE_BACKGROUND (lface) = (STRINGP (new_value)
4405 ? new_value : Qunspecified);
4406 }
4407 else if (EQ (param, Qcursor_color))
4408 {
4409 lface = lface_from_face_name (f, Qcursor, 1);
4410 LFACE_BACKGROUND (lface) = (STRINGP (new_value)
4411 ? new_value : Qunspecified);
4412 }
4413 else if (EQ (param, Qmouse_color))
4414 {
4415 lface = lface_from_face_name (f, Qmouse, 1);
4416 LFACE_BACKGROUND (lface) = (STRINGP (new_value)
4417 ? new_value : Qunspecified);
4418 }
4419}
4420
4421
4422/* Get the value of X resource RESOURCE, class CLASS for the display
4423 of frame FRAME. This is here because ordinary `x-get-resource'
4424 doesn't take a frame argument. */
4425
4426DEFUN ("internal-face-x-get-resource", Finternal_face_x_get_resource,
4427 Sinternal_face_x_get_resource, 3, 3, 0, doc: /* */)
4428 (resource, class, frame)
4429 Lisp_Object resource, class, frame;
4430{
4431 Lisp_Object value = Qnil;
4432 CHECK_STRING (resource);
4433 CHECK_STRING (class);
4434 CHECK_LIVE_FRAME (frame);
4435 BLOCK_INPUT;
4436 value = display_x_get_resource (FRAME_X_DISPLAY_INFO (XFRAME (frame)),
4437 resource, class, Qnil, Qnil);
4438 UNBLOCK_INPUT;
4439 return value;
4440}
4441
4442
4443/* Return resource string VALUE as a boolean value, i.e. nil, or t.
4444 If VALUE is "on" or "true", return t. If VALUE is "off" or
4445 "false", return nil. Otherwise, if SIGNAL_P is non-zero, signal an
4446 error; if SIGNAL_P is zero, return 0. */
4447
4448static Lisp_Object
4449face_boolean_x_resource_value (value, signal_p)
4450 Lisp_Object value;
4451 int signal_p;
4452{
4453 Lisp_Object result = make_number (0);
4454
4455 xassert (STRINGP (value));
4456
4457 if (xstricmp (SDATA (value), "on") == 0
4458 || xstricmp (SDATA (value), "true") == 0)
4459 result = Qt;
4460 else if (xstricmp (SDATA (value), "off") == 0
4461 || xstricmp (SDATA (value), "false") == 0)
4462 result = Qnil;
4463 else if (xstricmp (SDATA (value), "unspecified") == 0)
4464 result = Qunspecified;
4465 else if (signal_p)
4466 signal_error ("Invalid face attribute value from X resource", value);
4467
4468 return result;
4469}
4470
4471
4472DEFUN ("internal-set-lisp-face-attribute-from-resource",
4473 Finternal_set_lisp_face_attribute_from_resource,
4474 Sinternal_set_lisp_face_attribute_from_resource,
4475 3, 4, 0, doc: /* */)
4476 (face, attr, value, frame)
4477 Lisp_Object face, attr, value, frame;
4478{
4479 CHECK_SYMBOL (face);
4480 CHECK_SYMBOL (attr);
4481 CHECK_STRING (value);
4482
4483 if (xstricmp (SDATA (value), "unspecified") == 0)
4484 value = Qunspecified;
4485 else if (EQ (attr, QCheight))
4486 {
4487 value = Fstring_to_number (value, make_number (10));
4488 if (XINT (value) <= 0)
4489 signal_error ("Invalid face height from X resource", value);
4490 }
4491 else if (EQ (attr, QCbold) || EQ (attr, QCitalic))
4492 value = face_boolean_x_resource_value (value, 1);
4493 else if (EQ (attr, QCweight) || EQ (attr, QCslant) || EQ (attr, QCwidth))
4494 value = intern (SDATA (value));
4495 else if (EQ (attr, QCreverse_video) || EQ (attr, QCinverse_video))
4496 value = face_boolean_x_resource_value (value, 1);
4497 else if (EQ (attr, QCunderline)
4498 || EQ (attr, QCoverline)
4499 || EQ (attr, QCstrike_through))
4500 {
4501 Lisp_Object boolean_value;
4502
4503 /* If the result of face_boolean_x_resource_value is t or nil,
4504 VALUE does NOT specify a color. */
4505 boolean_value = face_boolean_x_resource_value (value, 0);
4506 if (SYMBOLP (boolean_value))
4507 value = boolean_value;
4508 }
4509 else if (EQ (attr, QCbox))
4510 value = Fcar (Fread_from_string (value, Qnil, Qnil));
4511
4512 return Finternal_set_lisp_face_attribute (face, attr, value, frame);
4513}
4514
4515#endif /* HAVE_WINDOW_SYSTEM */
4516
4517\f
4518/***********************************************************************
4519 Menu face
4520 ***********************************************************************/
4521
4522#if defined HAVE_X_WINDOWS && defined USE_X_TOOLKIT
4523
4524/* Make menus on frame F appear as specified by the `menu' face. */
4525
4526static void
4527x_update_menu_appearance (f)
4528 struct frame *f;
4529{
4530 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
4531 XrmDatabase rdb;
4532
4533 if (dpyinfo
4534 && (rdb = XrmGetDatabase (FRAME_X_DISPLAY (f)),
4535 rdb != NULL))
4536 {
4537 char line[512];
4538 Lisp_Object lface = lface_from_face_name (f, Qmenu, 1);
4539 struct face *face = FACE_FROM_ID (f, MENU_FACE_ID);
4540 const char *myname = SDATA (Vx_resource_name);
4541 int changed_p = 0;
4542#ifdef USE_MOTIF
4543 const char *popup_path = "popup_menu";
4544#else
4545 const char *popup_path = "menu.popup";
4546#endif
4547
4548 if (STRINGP (LFACE_FOREGROUND (lface)))
4549 {
4550 sprintf (line, "%s.%s*foreground: %s",
4551 myname, popup_path,
4552 SDATA (LFACE_FOREGROUND (lface)));
4553 XrmPutLineResource (&rdb, line);
4554 sprintf (line, "%s.pane.menubar*foreground: %s",
4555 myname, SDATA (LFACE_FOREGROUND (lface)));
4556 XrmPutLineResource (&rdb, line);
4557 changed_p = 1;
4558 }
4559
4560 if (STRINGP (LFACE_BACKGROUND (lface)))
4561 {
4562 sprintf (line, "%s.%s*background: %s",
4563 myname, popup_path,
4564 SDATA (LFACE_BACKGROUND (lface)));
4565 XrmPutLineResource (&rdb, line);
4566 sprintf (line, "%s.pane.menubar*background: %s",
4567 myname, SDATA (LFACE_BACKGROUND (lface)));
4568 XrmPutLineResource (&rdb, line);
4569 changed_p = 1;
4570 }
4571
4572 if (face->font_name
4573 && (!UNSPECIFIEDP (LFACE_FAMILY (lface))
4574 || !UNSPECIFIEDP (LFACE_SWIDTH (lface))
4575 || !UNSPECIFIEDP (LFACE_AVGWIDTH (lface))
4576 || !UNSPECIFIEDP (LFACE_WEIGHT (lface))
4577 || !UNSPECIFIEDP (LFACE_SLANT (lface))
4578 || !UNSPECIFIEDP (LFACE_HEIGHT (lface))))
4579 {
4580#ifdef USE_MOTIF
4581 const char *suffix = "List";
4582#else
4583 const char *suffix = "";
4584#endif
4585 sprintf (line, "%s.pane.menubar*font%s: %s",
4586 myname, suffix, face->font_name);
4587 XrmPutLineResource (&rdb, line);
4588 sprintf (line, "%s.%s*font%s: %s",
4589 myname, popup_path, suffix, face->font_name);
4590 XrmPutLineResource (&rdb, line);
4591 changed_p = 1;
4592 }
4593
4594 if (changed_p && f->output_data.x->menubar_widget)
4595 free_frame_menubar (f);
4596 }
4597}
4598
4599#endif /* HAVE_X_WINDOWS && USE_X_TOOLKIT */
4600
4601
4602DEFUN ("face-attribute-relative-p", Fface_attribute_relative_p,
4603 Sface_attribute_relative_p,
4604 2, 2, 0,
4605 doc: /* Return non-nil if face ATTRIBUTE VALUE is relative. */)
4606 (attribute, value)
4607 Lisp_Object attribute, value;
4608{
4609 if (EQ (value, Qunspecified))
4610 return Qt;
4611 else if (EQ (attribute, QCheight))
4612 return INTEGERP (value) ? Qnil : Qt;
4613 else
4614 return Qnil;
4615}
4616
4617DEFUN ("merge-face-attribute", Fmerge_face_attribute, Smerge_face_attribute,
4618 3, 3, 0,
4619 doc: /* Return face ATTRIBUTE VALUE1 merged with VALUE2.
4620If VALUE1 or VALUE2 are absolute (see `face-attribute-relative-p'), then
4621the result will be absolute, otherwise it will be relative. */)
4622 (attribute, value1, value2)
4623 Lisp_Object attribute, value1, value2;
4624{
4625 if (EQ (value1, Qunspecified))
4626 return value2;
4627 else if (EQ (attribute, QCheight))
4628 return merge_face_heights (value1, value2, value1, Qnil);
4629 else
4630 return value1;
4631}
4632
4633
4634DEFUN ("internal-get-lisp-face-attribute", Finternal_get_lisp_face_attribute,
4635 Sinternal_get_lisp_face_attribute,
4636 2, 3, 0,
4637 doc: /* Return face attribute KEYWORD of face SYMBOL.
4638If SYMBOL does not name a valid Lisp face or KEYWORD isn't a valid
4639face attribute name, signal an error.
4640If the optional argument FRAME is given, report on face FACE in that
4641frame. If FRAME is t, report on the defaults for face FACE (for new
4642frames). If FRAME is omitted or nil, use the selected frame. */)
4643 (symbol, keyword, frame)
4644 Lisp_Object symbol, keyword, frame;
4645{
4646 Lisp_Object lface, value = Qnil;
4647
4648 CHECK_SYMBOL (symbol);
4649 CHECK_SYMBOL (keyword);
4650
4651 if (EQ (frame, Qt))
4652 lface = lface_from_face_name (NULL, symbol, 1);
4653 else
4654 {
4655 if (NILP (frame))
4656 frame = selected_frame;
4657 CHECK_LIVE_FRAME (frame);
4658 lface = lface_from_face_name (XFRAME (frame), symbol, 1);
4659 }
4660
4661 if (EQ (keyword, QCfamily))
4662 value = LFACE_FAMILY (lface);
4663 else if (EQ (keyword, QCheight))
4664 value = LFACE_HEIGHT (lface);
4665 else if (EQ (keyword, QCweight))
4666 value = LFACE_WEIGHT (lface);
4667 else if (EQ (keyword, QCslant))
4668 value = LFACE_SLANT (lface);
4669 else if (EQ (keyword, QCunderline))
4670 value = LFACE_UNDERLINE (lface);
4671 else if (EQ (keyword, QCoverline))
4672 value = LFACE_OVERLINE (lface);
4673 else if (EQ (keyword, QCstrike_through))
4674 value = LFACE_STRIKE_THROUGH (lface);
4675 else if (EQ (keyword, QCbox))
4676 value = LFACE_BOX (lface);
4677 else if (EQ (keyword, QCinverse_video)
4678 || EQ (keyword, QCreverse_video))
4679 value = LFACE_INVERSE (lface);
4680 else if (EQ (keyword, QCforeground))
4681 value = LFACE_FOREGROUND (lface);
4682 else if (EQ (keyword, QCbackground))
4683 value = LFACE_BACKGROUND (lface);
4684 else if (EQ (keyword, QCstipple))
4685 value = LFACE_STIPPLE (lface);
4686 else if (EQ (keyword, QCwidth))
4687 value = LFACE_SWIDTH (lface);
4688 else if (EQ (keyword, QCinherit))
4689 value = LFACE_INHERIT (lface);
4690 else if (EQ (keyword, QCfont))
4691 value = LFACE_FONT (lface);
4692 else
4693 signal_error ("Invalid face attribute name", keyword);
4694
4695 return value;
4696}
4697
4698
4699DEFUN ("internal-lisp-face-attribute-values",
4700 Finternal_lisp_face_attribute_values,
4701 Sinternal_lisp_face_attribute_values, 1, 1, 0,
4702 doc: /* Return a list of valid discrete values for face attribute ATTR.
4703Value is nil if ATTR doesn't have a discrete set of valid values. */)
4704 (attr)
4705 Lisp_Object attr;
4706{
4707 Lisp_Object result = Qnil;
4708
4709 CHECK_SYMBOL (attr);
4710
4711 if (EQ (attr, QCweight)
4712 || EQ (attr, QCslant)
4713 || EQ (attr, QCwidth))
4714 {
4715 /* Extract permissible symbols from tables. */
4716 struct table_entry *table;
4717 int i, dim;
4718
4719 if (EQ (attr, QCweight))
4720 table = weight_table, dim = DIM (weight_table);
4721 else if (EQ (attr, QCslant))
4722 table = slant_table, dim = DIM (slant_table);
4723 else
4724 table = swidth_table, dim = DIM (swidth_table);
4725
4726 for (i = 0; i < dim; ++i)
4727 {
4728 Lisp_Object symbol = *table[i].symbol;
4729 Lisp_Object tail = result;
4730
4731 while (!NILP (tail)
4732 && !EQ (XCAR (tail), symbol))
4733 tail = XCDR (tail);
4734
4735 if (NILP (tail))
4736 result = Fcons (symbol, result);
4737 }
4738 }
4739 else if (EQ (attr, QCunderline))
4740 result = Fcons (Qt, Fcons (Qnil, Qnil));
4741 else if (EQ (attr, QCoverline))
4742 result = Fcons (Qt, Fcons (Qnil, Qnil));
4743 else if (EQ (attr, QCstrike_through))
4744 result = Fcons (Qt, Fcons (Qnil, Qnil));
4745 else if (EQ (attr, QCinverse_video) || EQ (attr, QCreverse_video))
4746 result = Fcons (Qt, Fcons (Qnil, Qnil));
4747
4748 return result;
4749}
4750
4751
4752DEFUN ("internal-merge-in-global-face", Finternal_merge_in_global_face,
4753 Sinternal_merge_in_global_face, 2, 2, 0,
4754 doc: /* Add attributes from frame-default definition of FACE to FACE on FRAME.
4755Default face attributes override any local face attributes. */)
4756 (face, frame)
4757 Lisp_Object face, frame;
4758{
4759 int i;
4760 Lisp_Object global_lface, local_lface, *gvec, *lvec;
4761
4762 CHECK_LIVE_FRAME (frame);
4763 global_lface = lface_from_face_name (NULL, face, 1);
4764 local_lface = lface_from_face_name (XFRAME (frame), face, 0);
4765 if (NILP (local_lface))
4766 local_lface = Finternal_make_lisp_face (face, frame);
4767
4768 /* Make every specified global attribute override the local one.
4769 BEWARE!! This is only used from `face-set-after-frame-default' where
4770 the local frame is defined from default specs in `face-defface-spec'
4771 and those should be overridden by global settings. Hence the strange
4772 "global before local" priority. */
4773 lvec = XVECTOR (local_lface)->contents;
4774 gvec = XVECTOR (global_lface)->contents;
4775 for (i = 1; i < LFACE_VECTOR_SIZE; ++i)
4776 if (! UNSPECIFIEDP (gvec[i]))
4777 lvec[i] = gvec[i];
4778
4779 return Qnil;
4780}
4781
4782
4783/* The following function is implemented for compatibility with 20.2.
4784 The function is used in x-resolve-fonts when it is asked to
4785 return fonts with the same size as the font of a face. This is
4786 done in fontset.el. */
4787
4788DEFUN ("face-font", Fface_font, Sface_font, 1, 2, 0,
4789 doc: /* Return the font name of face FACE, or nil if it is unspecified.
4790If the optional argument FRAME is given, report on face FACE in that frame.
4791If FRAME is t, report on the defaults for face FACE (for new frames).
4792 The font default for a face is either nil, or a list
4793 of the form (bold), (italic) or (bold italic).
4794If FRAME is omitted or nil, use the selected frame. */)
4795 (face, frame)
4796 Lisp_Object face, frame;
4797{
4798 if (EQ (frame, Qt))
4799 {
4800 Lisp_Object result = Qnil;
4801 Lisp_Object lface = lface_from_face_name (NULL, face, 1);
4802
4803 if (!UNSPECIFIEDP (LFACE_WEIGHT (lface))
4804 && !EQ (LFACE_WEIGHT (lface), Qnormal))
4805 result = Fcons (Qbold, result);
4806
4807 if (!UNSPECIFIEDP (LFACE_SLANT (lface))
4808 && !EQ (LFACE_SLANT (lface), Qnormal))
4809 result = Fcons (Qitalic, result);
4810
4811 return result;
4812 }
4813 else
4814 {
4815 struct frame *f = frame_or_selected_frame (frame, 1);
4816 int face_id = lookup_named_face (f, face, 0);
4817 struct face *face = FACE_FROM_ID (f, face_id);
4818 return face ? build_string (face->font_name) : Qnil;
4819 }
4820}
4821
4822
4823/* Compare face vectors V1 and V2 for equality. Value is non-zero if
4824 all attributes are `equal'. Tries to be fast because this function
4825 is called quite often. */
4826
4827static INLINE int
4828lface_equal_p (v1, v2)
4829 Lisp_Object *v1, *v2;
4830{
4831 int i, equal_p = 1;
4832
4833 for (i = 1; i < LFACE_VECTOR_SIZE && equal_p; ++i)
4834 {
4835 Lisp_Object a = v1[i];
4836 Lisp_Object b = v2[i];
4837
4838 /* Type can differ, e.g. when one attribute is unspecified, i.e. nil,
4839 and the other is specified. */
4840 equal_p = XTYPE (a) == XTYPE (b);
4841 if (!equal_p)
4842 break;
4843
4844 if (!EQ (a, b))
4845 {
4846 switch (XTYPE (a))
4847 {
4848 case Lisp_String:
4849 equal_p = ((SBYTES (a)
4850 == SBYTES (b))
4851 && bcmp (SDATA (a), SDATA (b),
4852 SBYTES (a)) == 0);
4853 break;
4854
4855 case Lisp_Int:
4856 case Lisp_Symbol:
4857 equal_p = 0;
4858 break;
4859
4860 default:
4861 equal_p = !NILP (Fequal (a, b));
4862 break;
4863 }
4864 }
4865 }
4866
4867 return equal_p;
4868}
4869
4870
4871DEFUN ("internal-lisp-face-equal-p", Finternal_lisp_face_equal_p,
4872 Sinternal_lisp_face_equal_p, 2, 3, 0,
4873 doc: /* True if FACE1 and FACE2 are equal.
4874If the optional argument FRAME is given, report on face FACE in that frame.
4875If FRAME is t, report on the defaults for face FACE (for new frames).
4876If FRAME is omitted or nil, use the selected frame. */)
4877 (face1, face2, frame)
4878 Lisp_Object face1, face2, frame;
4879{
4880 int equal_p;
4881 struct frame *f;
4882 Lisp_Object lface1, lface2;
4883
4884 if (EQ (frame, Qt))
4885 f = NULL;
4886 else
4887 /* Don't use check_x_frame here because this function is called
4888 before X frames exist. At that time, if FRAME is nil,
4889 selected_frame will be used which is the frame dumped with
4890 Emacs. That frame is not an X frame. */
4891 f = frame_or_selected_frame (frame, 2);
4892
4893 lface1 = lface_from_face_name (NULL, face1, 1);
4894 lface2 = lface_from_face_name (NULL, face2, 1);
4895 equal_p = lface_equal_p (XVECTOR (lface1)->contents,
4896 XVECTOR (lface2)->contents);
4897 return equal_p ? Qt : Qnil;
4898}
4899
4900
4901DEFUN ("internal-lisp-face-empty-p", Finternal_lisp_face_empty_p,
4902 Sinternal_lisp_face_empty_p, 1, 2, 0,
4903 doc: /* True if FACE has no attribute specified.
4904If the optional argument FRAME is given, report on face FACE in that frame.
4905If FRAME is t, report on the defaults for face FACE (for new frames).
4906If FRAME is omitted or nil, use the selected frame. */)
4907 (face, frame)
4908 Lisp_Object face, frame;
4909{
4910 struct frame *f;
4911 Lisp_Object lface;
4912 int i;
4913
4914 if (NILP (frame))
4915 frame = selected_frame;
4916 CHECK_LIVE_FRAME (frame);
4917 f = XFRAME (frame);
4918
4919 if (EQ (frame, Qt))
4920 lface = lface_from_face_name (NULL, face, 1);
4921 else
4922 lface = lface_from_face_name (f, face, 1);
4923
4924 for (i = 1; i < LFACE_VECTOR_SIZE; ++i)
4925 if (!UNSPECIFIEDP (AREF (lface, i)))
4926 break;
4927
4928 return i == LFACE_VECTOR_SIZE ? Qt : Qnil;
4929}
4930
4931
4932DEFUN ("frame-face-alist", Fframe_face_alist, Sframe_face_alist,
4933 0, 1, 0,
4934 doc: /* Return an alist of frame-local faces defined on FRAME.
4935For internal use only. */)
4936 (frame)
4937 Lisp_Object frame;
4938{
4939 struct frame *f = frame_or_selected_frame (frame, 0);
4940 return f->face_alist;
4941}
4942
4943
4944/* Return a hash code for Lisp string STRING with case ignored. Used
4945 below in computing a hash value for a Lisp face. */
4946
4947static INLINE unsigned
4948hash_string_case_insensitive (string)
4949 Lisp_Object string;
4950{
4951 const unsigned char *s;
4952 unsigned hash = 0;
4953 xassert (STRINGP (string));
4954 for (s = SDATA (string); *s; ++s)
4955 hash = (hash << 1) ^ tolower (*s);
4956 return hash;
4957}
4958
4959
4960/* Return a hash code for face attribute vector V. */
4961
4962static INLINE unsigned
4963lface_hash (v)
4964 Lisp_Object *v;
4965{
4966 return (hash_string_case_insensitive (v[LFACE_FAMILY_INDEX])
4967 ^ hash_string_case_insensitive (v[LFACE_FOREGROUND_INDEX])
4968 ^ hash_string_case_insensitive (v[LFACE_BACKGROUND_INDEX])
4969 ^ XFASTINT (v[LFACE_WEIGHT_INDEX])
4970 ^ XFASTINT (v[LFACE_SLANT_INDEX])
4971 ^ XFASTINT (v[LFACE_SWIDTH_INDEX])
4972 ^ XFASTINT (v[LFACE_HEIGHT_INDEX]));
4973}
4974
4975
4976/* Return non-zero if LFACE1 and LFACE2 specify the same font (without
4977 considering charsets/registries). They do if they specify the same
4978 family, point size, weight, width, slant, and fontset. Both LFACE1
4979 and LFACE2 must be fully-specified. */
4980
4981static INLINE int
4982lface_same_font_attributes_p (lface1, lface2)
4983 Lisp_Object *lface1, *lface2;
4984{
4985 xassert (lface_fully_specified_p (lface1)
4986 && lface_fully_specified_p (lface2));
4987 return (xstricmp (SDATA (lface1[LFACE_FAMILY_INDEX]),
4988 SDATA (lface2[LFACE_FAMILY_INDEX])) == 0
4989 && EQ (lface1[LFACE_HEIGHT_INDEX], lface2[LFACE_HEIGHT_INDEX])
4990 && EQ (lface1[LFACE_SWIDTH_INDEX], lface2[LFACE_SWIDTH_INDEX])
4991 && EQ (lface1[LFACE_AVGWIDTH_INDEX], lface2[LFACE_AVGWIDTH_INDEX])
4992 && EQ (lface1[LFACE_WEIGHT_INDEX], lface2[LFACE_WEIGHT_INDEX])
4993 && EQ (lface1[LFACE_SLANT_INDEX], lface2[LFACE_SLANT_INDEX])
4994 && (EQ (lface1[LFACE_FONT_INDEX], lface2[LFACE_FONT_INDEX])
4995 || (STRINGP (lface1[LFACE_FONT_INDEX])
4996 && STRINGP (lface2[LFACE_FONT_INDEX])
4997 && xstricmp (SDATA (lface1[LFACE_FONT_INDEX]),
4998 SDATA (lface2[LFACE_FONT_INDEX])))));
4999}
5000
5001
5002\f
5003/***********************************************************************
5004 Realized Faces
5005 ***********************************************************************/
5006
5007/* Allocate and return a new realized face for Lisp face attribute
5008 vector ATTR. */
5009
5010static struct face *
5011make_realized_face (attr)
5012 Lisp_Object *attr;
5013{
5014 struct face *face = (struct face *) xmalloc (sizeof *face);
5015 bzero (face, sizeof *face);
5016 face->ascii_face = face;
5017 bcopy (attr, face->lface, sizeof face->lface);
5018 return face;
5019}
5020
5021
5022/* Free realized face FACE, including its X resources. FACE may
5023 be null. */
5024
5025static void
5026free_realized_face (f, face)
5027 struct frame *f;
5028 struct face *face;
5029{
5030 if (face)
5031 {
5032#ifdef HAVE_WINDOW_SYSTEM
5033 if (FRAME_WINDOW_P (f))
5034 {
5035 /* Free fontset of FACE if it is ASCII face. */
5036 if (face->fontset >= 0 && face == face->ascii_face)
5037 free_face_fontset (f, face);
5038 if (face->gc)
5039 {
5040 x_free_gc (f, face->gc);
5041 face->gc = 0;
5042 }
5043
5044 free_face_colors (f, face);
5045 x_destroy_bitmap (f, face->stipple);
5046 }
5047#endif /* HAVE_WINDOW_SYSTEM */
5048
5049 xfree (face);
5050 }
5051}
5052
5053
5054/* Prepare face FACE for subsequent display on frame F. This
5055 allocated GCs if they haven't been allocated yet or have been freed
5056 by clearing the face cache. */
5057
5058void
5059prepare_face_for_display (f, face)
5060 struct frame *f;
5061 struct face *face;
5062{
5063#ifdef HAVE_WINDOW_SYSTEM
5064 xassert (FRAME_WINDOW_P (f));
5065
5066 if (face->gc == 0)
5067 {
5068 XGCValues xgcv;
5069 unsigned long mask = GCForeground | GCBackground | GCGraphicsExposures;
5070
5071 xgcv.foreground = face->foreground;
5072 xgcv.background = face->background;
5073#ifdef HAVE_X_WINDOWS
5074 xgcv.graphics_exposures = False;
5075#endif
5076 /* The font of FACE may be null if we couldn't load it. */
5077 if (face->font)
5078 {
5079#ifdef HAVE_X_WINDOWS
5080 xgcv.font = face->font->fid;
5081#endif
5082#ifdef WINDOWSNT
5083 xgcv.font = face->font;
5084#endif
5085#ifdef MAC_OS
5086 xgcv.font = face->font;
5087#endif
5088 mask |= GCFont;
5089 }
5090
5091 BLOCK_INPUT;
5092#ifdef HAVE_X_WINDOWS
5093 if (face->stipple)
5094 {
5095 xgcv.fill_style = FillOpaqueStippled;
5096 xgcv.stipple = x_bitmap_pixmap (f, face->stipple);
5097 mask |= GCFillStyle | GCStipple;
5098 }
5099#endif
5100 face->gc = x_create_gc (f, mask, &xgcv);
5101 UNBLOCK_INPUT;
5102 }
5103#endif /* HAVE_WINDOW_SYSTEM */
5104}
5105
5106\f
5107/* Returns the `distance' between the colors X and Y. */
5108
5109static int
5110color_distance (x, y)
5111 XColor *x, *y;
5112{
5113 /* This formula is from a paper title `Colour metric' by Thiadmer Riemersma.
5114 Quoting from that paper:
5115
5116 This formula has results that are very close to L*u*v* (with the
5117 modified lightness curve) and, more importantly, it is a more even
5118 algorithm: it does not have a range of colours where it suddenly
5119 gives far from optimal results.
5120
5121 See <http://www.compuphase.com/cmetric.htm> for more info. */
5122
5123 long r = (x->red - y->red) >> 8;
5124 long g = (x->green - y->green) >> 8;
5125 long b = (x->blue - y->blue) >> 8;
5126 long r_mean = (x->red + y->red) >> 9;
5127
5128 return
5129 (((512 + r_mean) * r * r) >> 8)
5130 + 4 * g * g
5131 + (((767 - r_mean) * b * b) >> 8);
5132}
5133
5134
5135DEFUN ("color-distance", Fcolor_distance, Scolor_distance, 2, 3, 0,
5136 doc: /* Return an integer distance between COLOR1 and COLOR2 on FRAME.
5137COLOR1 and COLOR2 may be either strings containing the color name,
5138or lists of the form (RED GREEN BLUE).
5139If FRAME is unspecified or nil, the current frame is used. */)
5140 (color1, color2, frame)
5141 Lisp_Object color1, color2, frame;
5142{
5143 struct frame *f;
5144 XColor cdef1, cdef2;
5145
5146 if (NILP (frame))
5147 frame = selected_frame;
5148 CHECK_LIVE_FRAME (frame);
5149 f = XFRAME (frame);
5150
5151 if ((CONSP (color1) && !parse_rgb_list (color1, &cdef1))
5152 || !STRINGP (color1)
5153 || !defined_color (f, SDATA (color1), &cdef1, 0))
5154 signal_error ("Invalid color", color1);
5155 if ((CONSP (color2) && !parse_rgb_list (color2, &cdef2))
5156 || !STRINGP (color2)
5157 || !defined_color (f, SDATA (color2), &cdef2, 0))
5158 signal_error ("Invalid color", color2);
5159
5160 return make_number (color_distance (&cdef1, &cdef2));
5161}
5162
5163\f
5164/***********************************************************************
5165 Face capability testing for ttys
5166 ***********************************************************************/
5167
5168
5169/* If the distance (as returned by color_distance) between two colors is
5170 less than this, then they are considered the same, for determining
5171 whether a color is supported or not. The range of values is 0-65535. */
5172
5173#define TTY_SAME_COLOR_THRESHOLD 10000
5174
5175
5176DEFUN ("tty-supports-face-attributes-p",
5177 Ftty_supports_face_attributes_p, Stty_supports_face_attributes_p,
5178 1, 2, 0,
5179 doc: /* Return non-nil if all the face attributes in ATTRIBUTES are supported.
5180The optional argument FRAME is the frame on which to test; if it is nil
5181or unspecified, then the current frame is used. If FRAME is not a tty
5182frame, then nil is returned.
5183
5184The definition of `supported' is somewhat heuristic, but basically means
5185that a face containing all the attributes in ATTRIBUTES, when merged
5186with the default face for display, can be represented in a way that's
5187
5188 \(1) different in appearance than the default face, and
5189 \(2) `close in spirit' to what the attributes specify, if not exact.
5190
5191Point (2) implies that a `:weight black' attribute will be satisified
5192by any terminal that can display bold, and a `:foreground "yellow"' as
5193long as the terminal can display a yellowish color, but `:slant italic'
5194will _not_ be satisified by the tty display code's automatic
5195substitution of a `dim' face for italic. */)
5196 (attributes, frame)
5197 Lisp_Object attributes, frame;
5198{
5199 int weight, i;
5200 struct frame *f;
5201 Lisp_Object val, fg, bg;
5202 XColor fg_tty_color, fg_std_color;
5203 XColor bg_tty_color, bg_std_color;
5204 Lisp_Object attrs[LFACE_VECTOR_SIZE];
5205 unsigned test_caps = 0;
5206
5207 if (NILP (frame))
5208 frame = selected_frame;
5209 CHECK_LIVE_FRAME (frame);
5210 f = XFRAME (frame);
5211
5212 for (i = 0; i < LFACE_VECTOR_SIZE; i++)
5213 attrs[i] = Qunspecified;
5214 merge_face_vector_with_property (f, attrs, attributes);
5215
5216 /* This function only works on ttys. */
5217 if (!FRAME_TERMCAP_P (f) && !FRAME_MSDOS_P (f))
5218 return Qnil;
5219
5220 /* First check some easy-to-check stuff; ttys support none of the
5221 following attributes, so we can just return nil if any are requested. */
5222
5223 /* stipple */
5224 val = attrs[LFACE_STIPPLE_INDEX];
5225 if (!UNSPECIFIEDP (val) && !NILP (val))
5226 return Qnil;
5227
5228 /* font height */
5229 val = attrs[LFACE_HEIGHT_INDEX];
5230 if (!UNSPECIFIEDP (val) && !NILP (val))
5231 return Qnil;
5232
5233 /* font width */
5234 val = attrs[LFACE_SWIDTH_INDEX];
5235 if (!UNSPECIFIEDP (val) && !NILP (val)
5236 && face_numeric_swidth (val) != XLFD_SWIDTH_MEDIUM)
5237 return Qnil;
5238
5239 /* overline */
5240 val = attrs[LFACE_OVERLINE_INDEX];
5241 if (!UNSPECIFIEDP (val) && !NILP (val))
5242 return Qnil;
5243
5244 /* strike-through */
5245 val = attrs[LFACE_STRIKE_THROUGH_INDEX];
5246 if (!UNSPECIFIEDP (val) && !NILP (val))
5247 return Qnil;
5248
5249 /* boxes */
5250 val = attrs[LFACE_BOX_INDEX];
5251 if (!UNSPECIFIEDP (val) && !NILP (val))
5252 return Qnil;
5253
5254 /* slant (italics/oblique); We consider any non-default value
5255 unsupportable on ttys, even though the face code actually `fakes'
5256 them using a dim attribute if possible. This is because the faked
5257 result is too different from what the face specifies. */
5258 val = attrs[LFACE_SLANT_INDEX];
5259 if (!UNSPECIFIEDP (val) && !NILP (val)
5260 && face_numeric_slant (val) != XLFD_SLANT_ROMAN)
5261 return Qnil;
5262
5263
5264 /* Test for terminal `capabilities' (non-color character attributes). */
5265
5266 /* font weight (bold/dim) */
5267 weight = face_numeric_weight (attrs[LFACE_WEIGHT_INDEX]);
5268 if (weight >= 0)
5269 {
5270 if (weight > XLFD_WEIGHT_MEDIUM)
5271 test_caps = TTY_CAP_BOLD;
5272 else if (weight < XLFD_WEIGHT_MEDIUM)
5273 test_caps = TTY_CAP_DIM;
5274 }
5275
5276 /* underlining */
5277 val = attrs[LFACE_UNDERLINE_INDEX];
5278 if (!UNSPECIFIEDP (val) && !NILP (val))
5279 {
5280 if (STRINGP (val))
5281 return Qnil; /* ttys don't support colored underlines */
5282 else
5283 test_caps |= TTY_CAP_UNDERLINE;
5284 }
5285
5286 /* inverse video */
5287 val = attrs[LFACE_INVERSE_INDEX];
5288 if (!UNSPECIFIEDP (val) && !NILP (val))
5289 test_caps |= TTY_CAP_INVERSE;
5290
5291
5292 /* Color testing. */
5293
5294 /* Default the color indices in FG_TTY_COLOR and BG_TTY_COLOR, since
5295 we use them when calling `tty_capable_p' below, even if the face
5296 specifies no colors. */
5297 fg_tty_color.pixel = FACE_TTY_DEFAULT_FG_COLOR;
5298 bg_tty_color.pixel = FACE_TTY_DEFAULT_BG_COLOR;
5299
5300 /* Check if foreground color is close enough. */
5301 fg = attrs[LFACE_FOREGROUND_INDEX];
5302 if (STRINGP (fg))
5303 {
5304 if (! tty_lookup_color (f, fg, &fg_tty_color, &fg_std_color))
5305 return Qnil;
5306 else if (color_distance (&fg_tty_color, &fg_std_color)
5307 > TTY_SAME_COLOR_THRESHOLD)
5308 return Qnil;
5309 }
5310
5311 /* Check if background color is close enough. */
5312 bg = attrs[LFACE_BACKGROUND_INDEX];
5313 if (STRINGP (bg))
5314 {
5315 if (! tty_lookup_color (f, bg, &bg_tty_color, &bg_std_color))
5316 return Qnil;
5317 else if (color_distance (&bg_tty_color, &bg_std_color)
5318 > TTY_SAME_COLOR_THRESHOLD)
5319 return Qnil;
5320 }
5321
5322 /* If both foreground and background are requested, see if the
5323 distance between them is OK. We just check to see if the distance
5324 between the tty's foreground and background is close enough to the
5325 distance between the standard foreground and background. */
5326 if (STRINGP (fg) && STRINGP (bg))
5327 {
5328 int delta_delta
5329 = (color_distance (&fg_std_color, &bg_std_color)
5330 - color_distance (&fg_tty_color, &bg_tty_color));
5331 if (delta_delta > TTY_SAME_COLOR_THRESHOLD
5332 || delta_delta < -TTY_SAME_COLOR_THRESHOLD)
5333 return Qnil;
5334 }
5335
5336
5337 /* See if the capabilities we selected above are supported, with the
5338 given colors. */
5339 if (test_caps != 0 &&
5340 ! tty_capable_p (f, test_caps, fg_tty_color.pixel, bg_tty_color.pixel))
5341 return Qnil;
5342
5343
5344 /* Hmmm, everything checks out, this terminal must support this face. */
5345 return Qt;
5346}
5347
5348
5349\f
5350/***********************************************************************
5351 Face Cache
5352 ***********************************************************************/
5353
5354/* Return a new face cache for frame F. */
5355
5356static struct face_cache *
5357make_face_cache (f)
5358 struct frame *f;
5359{
5360 struct face_cache *c;
5361 int size;
5362
5363 c = (struct face_cache *) xmalloc (sizeof *c);
5364 bzero (c, sizeof *c);
5365 size = FACE_CACHE_BUCKETS_SIZE * sizeof *c->buckets;
5366 c->buckets = (struct face **) xmalloc (size);
5367 bzero (c->buckets, size);
5368 c->size = 50;
5369 c->faces_by_id = (struct face **) xmalloc (c->size * sizeof *c->faces_by_id);
5370 c->f = f;
5371 c->menu_face_changed_p = menu_face_changed_default;
5372 return c;
5373}
5374
5375
5376/* Clear out all graphics contexts for all realized faces, except for
5377 the basic faces. This should be done from time to time just to avoid
5378 keeping too many graphics contexts that are no longer needed. */
5379
5380static void
5381clear_face_gcs (c)
5382 struct face_cache *c;
5383{
5384 if (c && FRAME_WINDOW_P (c->f))
5385 {
5386#ifdef HAVE_WINDOW_SYSTEM
5387 int i;
5388 for (i = BASIC_FACE_ID_SENTINEL; i < c->used; ++i)
5389 {
5390 struct face *face = c->faces_by_id[i];
5391 if (face && face->gc)
5392 {
5393 x_free_gc (c->f, face->gc);
5394 face->gc = 0;
5395 }
5396 }
5397#endif /* HAVE_WINDOW_SYSTEM */
5398 }
5399}
5400
5401
5402/* Free all realized faces in face cache C, including basic faces. C
5403 may be null. If faces are freed, make sure the frame's current
5404 matrix is marked invalid, so that a display caused by an expose
5405 event doesn't try to use faces we destroyed. */
5406
5407static void
5408free_realized_faces (c)
5409 struct face_cache *c;
5410{
5411 if (c && c->used)
5412 {
5413 int i, size;
5414 struct frame *f = c->f;
5415
5416 /* We must block input here because we can't process X events
5417 safely while only some faces are freed, or when the frame's
5418 current matrix still references freed faces. */
5419 BLOCK_INPUT;
5420
5421 for (i = 0; i < c->used; ++i)
5422 {
5423 free_realized_face (f, c->faces_by_id[i]);
5424 c->faces_by_id[i] = NULL;
5425 }
5426
5427 c->used = 0;
5428 size = FACE_CACHE_BUCKETS_SIZE * sizeof *c->buckets;
5429 bzero (c->buckets, size);
5430
5431 /* Must do a thorough redisplay the next time. Mark current
5432 matrices as invalid because they will reference faces freed
5433 above. This function is also called when a frame is
5434 destroyed. In this case, the root window of F is nil. */
5435 if (WINDOWP (f->root_window))
5436 {
5437 clear_current_matrices (f);
5438 ++windows_or_buffers_changed;
5439 }
5440
5441 UNBLOCK_INPUT;
5442 }
5443}
5444
5445
5446/* Free all faces realized for multibyte characters on frame F that
5447 has FONTSET. */
5448
5449void
5450free_realized_multibyte_face (f, fontset)
5451 struct frame *f;
5452 int fontset;
5453{
5454 struct face_cache *cache = FRAME_FACE_CACHE (f);
5455 struct face *face;
5456 int i;
5457
5458 /* We must block input here because we can't process X events safely
5459 while only some faces are freed, or when the frame's current
5460 matrix still references freed faces. */
5461 BLOCK_INPUT;
5462
5463 for (i = 0; i < cache->used; i++)
5464 {
5465 face = cache->faces_by_id[i];
5466 if (face
5467 && face != face->ascii_face
5468 && face->fontset == fontset)
5469 {
5470 uncache_face (cache, face);
5471 free_realized_face (f, face);
5472 }
5473 }
5474
5475 /* Must do a thorough redisplay the next time. Mark current
5476 matrices as invalid because they will reference faces freed
5477 above. This function is also called when a frame is destroyed.
5478 In this case, the root window of F is nil. */
5479 if (WINDOWP (f->root_window))
5480 {
5481 clear_current_matrices (f);
5482 ++windows_or_buffers_changed;
5483 }
5484
5485 UNBLOCK_INPUT;
5486}
5487
5488
5489/* Free all realized faces on FRAME or on all frames if FRAME is nil.
5490 This is done after attributes of a named face have been changed,
5491 because we can't tell which realized faces depend on that face. */
5492
5493void
5494free_all_realized_faces (frame)
5495 Lisp_Object frame;
5496{
5497 if (NILP (frame))
5498 {
5499 Lisp_Object rest;
5500 FOR_EACH_FRAME (rest, frame)
5501 free_realized_faces (FRAME_FACE_CACHE (XFRAME (frame)));
5502 }
5503 else
5504 free_realized_faces (FRAME_FACE_CACHE (XFRAME (frame)));
5505}
5506
5507
5508/* Free face cache C and faces in it, including their X resources. */
5509
5510static void
5511free_face_cache (c)
5512 struct face_cache *c;
5513{
5514 if (c)
5515 {
5516 free_realized_faces (c);
5517 xfree (c->buckets);
5518 xfree (c->faces_by_id);
5519 xfree (c);
5520 }
5521}
5522
5523
5524/* Cache realized face FACE in face cache C. HASH is the hash value
5525 of FACE. If FACE->fontset >= 0, add the new face to the end of the
5526 collision list of the face hash table of C. This is done because
5527 otherwise lookup_face would find FACE for every character, even if
5528 faces with the same attributes but for specific characters exist. */
5529
5530static void
5531cache_face (c, face, hash)
5532 struct face_cache *c;
5533 struct face *face;
5534 unsigned hash;
5535{
5536 int i = hash % FACE_CACHE_BUCKETS_SIZE;
5537
5538 face->hash = hash;
5539
5540 if (face->fontset >= 0)
5541 {
5542 struct face *last = c->buckets[i];
5543 if (last)
5544 {
5545 while (last->next)
5546 last = last->next;
5547 last->next = face;
5548 face->prev = last;
5549 face->next = NULL;
5550 }
5551 else
5552 {
5553 c->buckets[i] = face;
5554 face->prev = face->next = NULL;
5555 }
5556 }
5557 else
5558 {
5559 face->prev = NULL;
5560 face->next = c->buckets[i];
5561 if (face->next)
5562 face->next->prev = face;
5563 c->buckets[i] = face;
5564 }
5565
5566 /* Find a free slot in C->faces_by_id and use the index of the free
5567 slot as FACE->id. */
5568 for (i = 0; i < c->used; ++i)
5569 if (c->faces_by_id[i] == NULL)
5570 break;
5571 face->id = i;
5572
5573 /* Maybe enlarge C->faces_by_id. */
5574 if (i == c->used && c->used == c->size)
5575 {
5576 int new_size = 2 * c->size;
5577 int sz = new_size * sizeof *c->faces_by_id;
5578 c->faces_by_id = (struct face **) xrealloc (c->faces_by_id, sz);
5579 c->size = new_size;
5580 }
5581
5582#if GLYPH_DEBUG
5583 /* Check that FACE got a unique id. */
5584 {
5585 int j, n;
5586 struct face *face;
5587
5588 for (j = n = 0; j < FACE_CACHE_BUCKETS_SIZE; ++j)
5589 for (face = c->buckets[j]; face; face = face->next)
5590 if (face->id == i)
5591 ++n;
5592
5593 xassert (n == 1);
5594 }
5595#endif /* GLYPH_DEBUG */
5596
5597 c->faces_by_id[i] = face;
5598 if (i == c->used)
5599 ++c->used;
5600}
5601
5602
5603/* Remove face FACE from cache C. */
5604
5605static void
5606uncache_face (c, face)
5607 struct face_cache *c;
5608 struct face *face;
5609{
5610 int i = face->hash % FACE_CACHE_BUCKETS_SIZE;
5611
5612 if (face->prev)
5613 face->prev->next = face->next;
5614 else
5615 c->buckets[i] = face->next;
5616
5617 if (face->next)
5618 face->next->prev = face->prev;
5619
5620 c->faces_by_id[face->id] = NULL;
5621 if (face->id == c->used)
5622 --c->used;
5623}
5624
5625
5626/* Look up a realized face with face attributes ATTR in the face cache
5627 of frame F. The face will be used to display character C. Value
5628 is the ID of the face found. If no suitable face is found, realize
5629 a new one. In that case, if C is a multibyte character, BASE_FACE
5630 is a face that has the same attributes. */
5631
5632INLINE int
5633lookup_face (f, attr, c, base_face)
5634 struct frame *f;
5635 Lisp_Object *attr;
5636 int c;
5637 struct face *base_face;
5638{
5639 struct face_cache *cache = FRAME_FACE_CACHE (f);
5640 unsigned hash;
5641 int i;
5642 struct face *face;
5643
5644 xassert (cache != NULL);
5645 check_lface_attrs (attr);
5646
5647 /* Look up ATTR in the face cache. */
5648 hash = lface_hash (attr);
5649 i = hash % FACE_CACHE_BUCKETS_SIZE;
5650
5651 for (face = cache->buckets[i]; face; face = face->next)
5652 if (face->hash == hash
5653 && (!FRAME_WINDOW_P (f)
5654 || FACE_SUITABLE_FOR_CHAR_P (face, c))
5655 && lface_equal_p (face->lface, attr))
5656 break;
5657
5658 /* If not found, realize a new face. */
5659 if (face == NULL)
5660 face = realize_face (cache, attr, c, base_face, -1);
5661
5662#if GLYPH_DEBUG
5663 xassert (face == FACE_FROM_ID (f, face->id));
5664
5665/* When this function is called from face_for_char (in this case, C is
5666 a multibyte character), a fontset of a face returned by
5667 realize_face is not yet set, i.e. FACE_SUITABLE_FOR_CHAR_P (FACE,
5668 C) is not sutisfied. The fontset is set for this face by
5669 face_for_char later. */
5670#if 0
5671 if (FRAME_WINDOW_P (f))
5672 xassert (FACE_SUITABLE_FOR_CHAR_P (face, c));
5673#endif
5674#endif /* GLYPH_DEBUG */
5675
5676 return face->id;
5677}
5678
5679
5680/* Return the face id of the realized face for named face SYMBOL on
5681 frame F suitable for displaying character C. Value is -1 if the
5682 face couldn't be determined, which might happen if the default face
5683 isn't realized and cannot be realized. */
5684
5685int
5686lookup_named_face (f, symbol, c)
5687 struct frame *f;
5688 Lisp_Object symbol;
5689 int c;
5690{
5691 Lisp_Object attrs[LFACE_VECTOR_SIZE];
5692 Lisp_Object symbol_attrs[LFACE_VECTOR_SIZE];
5693 struct face *default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
5694
5695 if (default_face == NULL)
5696 {
5697 if (!realize_basic_faces (f))
5698 return -1;
5699 default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
5700 }
5701
5702 get_lface_attributes (f, symbol, symbol_attrs, 1);
5703 bcopy (default_face->lface, attrs, sizeof attrs);
5704 merge_face_vectors (f, symbol_attrs, attrs, Qnil);
5705 return lookup_face (f, attrs, c, NULL);
5706}
5707
5708
5709/* Return the ID of the realized ASCII face of Lisp face with ID
5710 LFACE_ID on frame F. Value is -1 if LFACE_ID isn't valid. */
5711
5712int
5713ascii_face_of_lisp_face (f, lface_id)
5714 struct frame *f;
5715 int lface_id;
5716{
5717 int face_id;
5718
5719 if (lface_id >= 0 && lface_id < lface_id_to_name_size)
5720 {
5721 Lisp_Object face_name = lface_id_to_name[lface_id];
5722 face_id = lookup_named_face (f, face_name, 0);
5723 }
5724 else
5725 face_id = -1;
5726
5727 return face_id;
5728}
5729
5730
5731/* Return a face for charset ASCII that is like the face with id
5732 FACE_ID on frame F, but has a font that is STEPS steps smaller.
5733 STEPS < 0 means larger. Value is the id of the face. */
5734
5735int
5736smaller_face (f, face_id, steps)
5737 struct frame *f;
5738 int face_id, steps;
5739{
5740#ifdef HAVE_WINDOW_SYSTEM
5741 struct face *face;
5742 Lisp_Object attrs[LFACE_VECTOR_SIZE];
5743 int pt, last_pt, last_height;
5744 int delta;
5745 int new_face_id;
5746 struct face *new_face;
5747
5748 /* If not called for an X frame, just return the original face. */
5749 if (FRAME_TERMCAP_P (f))
5750 return face_id;
5751
5752 /* Try in increments of 1/2 pt. */
5753 delta = steps < 0 ? 5 : -5;
5754 steps = abs (steps);
5755
5756 face = FACE_FROM_ID (f, face_id);
5757 bcopy (face->lface, attrs, sizeof attrs);
5758 pt = last_pt = XFASTINT (attrs[LFACE_HEIGHT_INDEX]);
5759 new_face_id = face_id;
5760 last_height = FONT_HEIGHT (face->font);
5761
5762 while (steps
5763 && pt + delta > 0
5764 /* Give up if we cannot find a font within 10pt. */
5765 && abs (last_pt - pt) < 100)
5766 {
5767 /* Look up a face for a slightly smaller/larger font. */
5768 pt += delta;
5769 attrs[LFACE_HEIGHT_INDEX] = make_number (pt);
5770 new_face_id = lookup_face (f, attrs, 0, NULL);
5771 new_face = FACE_FROM_ID (f, new_face_id);
5772
5773 /* If height changes, count that as one step. */
5774 if ((delta < 0 && FONT_HEIGHT (new_face->font) < last_height)
5775 || (delta > 0 && FONT_HEIGHT (new_face->font) > last_height))
5776 {
5777 --steps;
5778 last_height = FONT_HEIGHT (new_face->font);
5779 last_pt = pt;
5780 }
5781 }
5782
5783 return new_face_id;
5784
5785#else /* not HAVE_WINDOW_SYSTEM */
5786
5787 return face_id;
5788
5789#endif /* not HAVE_WINDOW_SYSTEM */
5790}
5791
5792
5793/* Return a face for charset ASCII that is like the face with id
5794 FACE_ID on frame F, but has height HEIGHT. */
5795
5796int
5797face_with_height (f, face_id, height)
5798 struct frame *f;
5799 int face_id;
5800 int height;
5801{
5802#ifdef HAVE_WINDOW_SYSTEM
5803 struct face *face;
5804 Lisp_Object attrs[LFACE_VECTOR_SIZE];
5805
5806 if (FRAME_TERMCAP_P (f)
5807 || height <= 0)
5808 return face_id;
5809
5810 face = FACE_FROM_ID (f, face_id);
5811 bcopy (face->lface, attrs, sizeof attrs);
5812 attrs[LFACE_HEIGHT_INDEX] = make_number (height);
5813 face_id = lookup_face (f, attrs, 0, NULL);
5814#endif /* HAVE_WINDOW_SYSTEM */
5815
5816 return face_id;
5817}
5818
5819
5820/* Return the face id of the realized face for named face SYMBOL on
5821 frame F suitable for displaying character C, and use attributes of
5822 the face FACE_ID for attributes that aren't completely specified by
5823 SYMBOL. This is like lookup_named_face, except that the default
5824 attributes come from FACE_ID, not from the default face. FACE_ID
5825 is assumed to be already realized. */
5826
5827int
5828lookup_derived_face (f, symbol, c, face_id)
5829 struct frame *f;
5830 Lisp_Object symbol;
5831 int c;
5832 int face_id;
5833{
5834 Lisp_Object attrs[LFACE_VECTOR_SIZE];
5835 Lisp_Object symbol_attrs[LFACE_VECTOR_SIZE];
5836 struct face *default_face = FACE_FROM_ID (f, face_id);
5837
5838 if (!default_face)
5839 abort ();
5840
5841 get_lface_attributes (f, symbol, symbol_attrs, 1);
5842 bcopy (default_face->lface, attrs, sizeof attrs);
5843 merge_face_vectors (f, symbol_attrs, attrs, Qnil);
5844 return lookup_face (f, attrs, c, default_face);
5845}
5846
5847DEFUN ("face-attributes-as-vector", Fface_attributes_as_vector,
5848 Sface_attributes_as_vector, 1, 1, 0,
5849 doc: /* Return a vector of face attributes corresponding to PLIST. */)
5850 (plist)
5851 Lisp_Object plist;
5852{
5853 Lisp_Object lface;
5854 lface = Fmake_vector (make_number (LFACE_VECTOR_SIZE),
5855 Qunspecified);
5856 merge_face_vector_with_property (XFRAME (selected_frame),
5857 XVECTOR (lface)->contents,
5858 plist);
5859 return lface;
5860}
5861
5862
5863\f
5864/***********************************************************************
5865 Font selection
5866 ***********************************************************************/
5867
5868DEFUN ("internal-set-font-selection-order",
5869 Finternal_set_font_selection_order,
5870 Sinternal_set_font_selection_order, 1, 1, 0,
5871 doc: /* Set font selection order for face font selection to ORDER.
5872ORDER must be a list of length 4 containing the symbols `:width',
5873`:height', `:weight', and `:slant'. Face attributes appearing
5874first in ORDER are matched first, e.g. if `:height' appears before
5875`:weight' in ORDER, font selection first tries to find a font with
5876a suitable height, and then tries to match the font weight.
5877Value is ORDER. */)
5878 (order)
5879 Lisp_Object order;
5880{
5881 Lisp_Object list;
5882 int i;
5883 int indices[DIM (font_sort_order)];
5884
5885 CHECK_LIST (order);
5886 bzero (indices, sizeof indices);
5887 i = 0;
5888
5889 for (list = order;
5890 CONSP (list) && i < DIM (indices);
5891 list = XCDR (list), ++i)
5892 {
5893 Lisp_Object attr = XCAR (list);
5894 int xlfd;
5895
5896 if (EQ (attr, QCwidth))
5897 xlfd = XLFD_SWIDTH;
5898 else if (EQ (attr, QCheight))
5899 xlfd = XLFD_POINT_SIZE;
5900 else if (EQ (attr, QCweight))
5901 xlfd = XLFD_WEIGHT;
5902 else if (EQ (attr, QCslant))
5903 xlfd = XLFD_SLANT;
5904 else
5905 break;
5906
5907 if (indices[i] != 0)
5908 break;
5909 indices[i] = xlfd;
5910 }
5911
5912 if (!NILP (list) || i != DIM (indices))
5913 signal_error ("Invalid font sort order", order);
5914 for (i = 0; i < DIM (font_sort_order); ++i)
5915 if (indices[i] == 0)
5916 signal_error ("Invalid font sort order", order);
5917
5918 if (bcmp (indices, font_sort_order, sizeof indices) != 0)
5919 {
5920 bcopy (indices, font_sort_order, sizeof font_sort_order);
5921 free_all_realized_faces (Qnil);
5922 }
5923
5924 return Qnil;
5925}
5926
5927
5928DEFUN ("internal-set-alternative-font-family-alist",
5929 Finternal_set_alternative_font_family_alist,
5930 Sinternal_set_alternative_font_family_alist, 1, 1, 0,
5931 doc: /* Define alternative font families to try in face font selection.
5932ALIST is an alist of (FAMILY ALTERNATIVE1 ALTERNATIVE2 ...) entries.
5933Each ALTERNATIVE is tried in order if no fonts of font family FAMILY can
5934be found. Value is ALIST. */)
5935 (alist)
5936 Lisp_Object alist;
5937{
5938 CHECK_LIST (alist);
5939 Vface_alternative_font_family_alist = alist;
5940 free_all_realized_faces (Qnil);
5941 return alist;
5942}
5943
5944
5945DEFUN ("internal-set-alternative-font-registry-alist",
5946 Finternal_set_alternative_font_registry_alist,
5947 Sinternal_set_alternative_font_registry_alist, 1, 1, 0,
5948 doc: /* Define alternative font registries to try in face font selection.
5949ALIST is an alist of (REGISTRY ALTERNATIVE1 ALTERNATIVE2 ...) entries.
5950Each ALTERNATIVE is tried in order if no fonts of font registry REGISTRY can
5951be found. Value is ALIST. */)
5952 (alist)
5953 Lisp_Object alist;
5954{
5955 CHECK_LIST (alist);
5956 Vface_alternative_font_registry_alist = alist;
5957 free_all_realized_faces (Qnil);
5958 return alist;
5959}
5960
5961
5962#ifdef HAVE_WINDOW_SYSTEM
5963
5964/* Value is non-zero if FONT is the name of a scalable font. The
5965 X11R6 XLFD spec says that point size, pixel size, and average width
5966 are zero for scalable fonts. Intlfonts contain at least one
5967 scalable font ("*-muleindian-1") for which this isn't true, so we
5968 just test average width. */
5969
5970static int
5971font_scalable_p (font)
5972 struct font_name *font;
5973{
5974 char *s = font->fields[XLFD_AVGWIDTH];
5975 return (*s == '0' && *(s + 1) == '\0')
5976#ifdef WINDOWSNT
5977 /* Windows implementation of XLFD is slightly broken for backward
5978 compatibility with previous broken versions, so test for
5979 wildcards as well as 0. */
5980 || *s == '*'
5981#endif
5982 ;
5983}
5984
5985
5986/* Ignore the difference of font point size less than this value. */
5987
5988#define FONT_POINT_SIZE_QUANTUM 5
5989
5990/* Value is non-zero if FONT1 is a better match for font attributes
5991 VALUES than FONT2. VALUES is an array of face attribute values in
5992 font sort order. COMPARE_PT_P zero means don't compare point
5993 sizes. AVGWIDTH, if not zero, is a specified font average width
5994 to compare with. */
5995
5996static int
5997better_font_p (values, font1, font2, compare_pt_p, avgwidth)
5998 int *values;
5999 struct font_name *font1, *font2;
6000 int compare_pt_p, avgwidth;
6001{
6002 int i;
6003
6004 for (i = 0; i < DIM (font_sort_order); ++i)
6005 {
6006 int xlfd_idx = font_sort_order[i];
6007
6008 if (compare_pt_p || xlfd_idx != XLFD_POINT_SIZE)
6009 {
6010 int delta1, delta2;
6011
6012 if (xlfd_idx == XLFD_POINT_SIZE)
6013 {
6014 delta1 = abs (values[i] - (font1->numeric[xlfd_idx]
6015 / font1->rescale_ratio));
6016 delta2 = abs (values[i] - (font2->numeric[xlfd_idx]
6017 / font2->rescale_ratio));
6018 if (abs (delta1 - delta2) < FONT_POINT_SIZE_QUANTUM)
6019 continue;
6020 }
6021 else
6022 {
6023 delta1 = abs (values[i] - font1->numeric[xlfd_idx]);
6024 delta2 = abs (values[i] - font2->numeric[xlfd_idx]);
6025 }
6026
6027 if (delta1 > delta2)
6028 return 0;
6029 else if (delta1 < delta2)
6030 return 1;
6031 else
6032 {
6033 /* The difference may be equal because, e.g., the face
6034 specifies `italic' but we have only `regular' and
6035 `oblique'. Prefer `oblique' in this case. */
6036 if ((xlfd_idx == XLFD_WEIGHT || xlfd_idx == XLFD_SLANT)
6037 && font1->numeric[xlfd_idx] > values[i]
6038 && font2->numeric[xlfd_idx] < values[i])
6039 return 1;
6040 }
6041 }
6042 }
6043
6044 if (avgwidth)
6045 {
6046 int delta1 = abs (avgwidth - font1->numeric[XLFD_AVGWIDTH]);
6047 int delta2 = abs (avgwidth - font2->numeric[XLFD_AVGWIDTH]);
6048 if (delta1 > delta2)
6049 return 0;
6050 else if (delta1 < delta2)
6051 return 1;
6052 }
6053
6054 if (! compare_pt_p)
6055 {
6056 /* We prefer a real scalable font; i.e. not what autoscaled. */
6057 int auto_scaled_1 = (font1->numeric[XLFD_POINT_SIZE] == 0
6058 && font1->numeric[XLFD_RESY] > 0);
6059 int auto_scaled_2 = (font2->numeric[XLFD_POINT_SIZE] == 0
6060 && font2->numeric[XLFD_RESY] > 0);
6061
6062 if (auto_scaled_1 != auto_scaled_2)
6063 return auto_scaled_2;
6064 }
6065
6066 return font1->registry_priority < font2->registry_priority;
6067}
6068
6069
6070/* Value is non-zero if FONT is an exact match for face attributes in
6071 SPECIFIED. SPECIFIED is an array of face attribute values in font
6072 sort order. AVGWIDTH, if non-zero, is an average width to compare
6073 with. */
6074
6075static int
6076exact_face_match_p (specified, font, avgwidth)
6077 int *specified;
6078 struct font_name *font;
6079 int avgwidth;
6080{
6081 int i;
6082
6083 for (i = 0; i < DIM (font_sort_order); ++i)
6084 if (specified[i] != font->numeric[font_sort_order[i]])
6085 break;
6086
6087 return (i == DIM (font_sort_order)
6088 && (avgwidth <= 0
6089 || avgwidth == font->numeric[XLFD_AVGWIDTH]));
6090}
6091
6092
6093/* Value is the name of a scaled font, generated from scalable font
6094 FONT on frame F. SPECIFIED_PT is the point-size to scale FONT to.
6095 Value is allocated from heap. */
6096
6097static char *
6098build_scalable_font_name (f, font, specified_pt)
6099 struct frame *f;
6100 struct font_name *font;
6101 int specified_pt;
6102{
6103 char pixel_size[20];
6104 int pixel_value;
6105 double resy = FRAME_X_DISPLAY_INFO (f)->resy;
6106 double pt;
6107
6108 /* If scalable font is for a specific resolution, compute
6109 the point size we must specify from the resolution of
6110 the display and the specified resolution of the font. */
6111 if (font->numeric[XLFD_RESY] != 0)
6112 {
6113 pt = resy / font->numeric[XLFD_RESY] * specified_pt + 0.5;
6114 pixel_value = font->numeric[XLFD_RESY] / (PT_PER_INCH * 10.0) * pt;
6115 }
6116 else
6117 {
6118 pt = specified_pt;
6119 pixel_value = resy / (PT_PER_INCH * 10.0) * pt;
6120 }
6121 /* We may need a font of the different size. */
6122 pixel_value *= font->rescale_ratio;
6123
6124 /* We should keep POINT_SIZE 0. Otherwise, X server can't open a
6125 font of the specified PIXEL_SIZE. */
6126#if 0
6127 { /* Set point size of the font. */
6128 char point_size[20];
6129 sprintf (point_size, "%d", (int) pt);
6130 font->fields[XLFD_POINT_SIZE] = point_size;
6131 font->numeric[XLFD_POINT_SIZE] = pt;
6132 }
6133#endif
6134
6135 /* Set pixel size. */
6136 sprintf (pixel_size, "%d", pixel_value);
6137 font->fields[XLFD_PIXEL_SIZE] = pixel_size;
6138 font->numeric[XLFD_PIXEL_SIZE] = pixel_value;
6139
6140 /* If font doesn't specify its resolution, use the
6141 resolution of the display. */
6142 if (font->numeric[XLFD_RESY] == 0)
6143 {
6144 char buffer[20];
6145 sprintf (buffer, "%d", (int) resy);
6146 font->fields[XLFD_RESY] = buffer;
6147 font->numeric[XLFD_RESY] = resy;
6148 }
6149
6150 if (strcmp (font->fields[XLFD_RESX], "0") == 0)
6151 {
6152 char buffer[20];
6153 int resx = FRAME_X_DISPLAY_INFO (f)->resx;
6154 sprintf (buffer, "%d", resx);
6155 font->fields[XLFD_RESX] = buffer;
6156 font->numeric[XLFD_RESX] = resx;
6157 }
6158
6159 return build_font_name (font);
6160}
6161
6162
6163/* Value is non-zero if we are allowed to use scalable font FONT. We
6164 can't run a Lisp function here since this function may be called
6165 with input blocked. */
6166
6167static int
6168may_use_scalable_font_p (font)
6169 const char *font;
6170{
6171 if (EQ (Vscalable_fonts_allowed, Qt))
6172 return 1;
6173 else if (CONSP (Vscalable_fonts_allowed))
6174 {
6175 Lisp_Object tail, regexp;
6176
6177 for (tail = Vscalable_fonts_allowed; CONSP (tail); tail = XCDR (tail))
6178 {
6179 regexp = XCAR (tail);
6180 if (STRINGP (regexp)
6181 && fast_c_string_match_ignore_case (regexp, font) >= 0)
6182 return 1;
6183 }
6184 }
6185
6186 return 0;
6187}
6188
6189
6190
6191/* Return the name of the best matching font for face attributes ATTRS
6192 in the array of font_name structures FONTS which contains NFONTS
6193 elements. WIDTH_RATIO is a factor with which to multiply average
6194 widths if ATTRS specifies such a width.
6195
6196 Value is a font name which is allocated from the heap. FONTS is
6197 freed by this function.
6198
6199 If NEEDS_OVERSTRIKE is non-zero, a boolean is returned in it to
6200 indicate whether the resulting font should be drawn using overstrike
6201 to simulate bold-face. */
6202
6203static char *
6204best_matching_font (f, attrs, fonts, nfonts, width_ratio, needs_overstrike)
6205 struct frame *f;
6206 Lisp_Object *attrs;
6207 struct font_name *fonts;
6208 int nfonts;
6209 int width_ratio;
6210 int *needs_overstrike;
6211{
6212 char *font_name;
6213 struct font_name *best;
6214 int i, pt = 0;
6215 int specified[5];
6216 int exact_p, avgwidth;
6217
6218 if (nfonts == 0)
6219 return NULL;
6220
6221 /* Make specified font attributes available in `specified',
6222 indexed by sort order. */
6223 for (i = 0; i < DIM (font_sort_order); ++i)
6224 {
6225 int xlfd_idx = font_sort_order[i];
6226
6227 if (xlfd_idx == XLFD_SWIDTH)
6228 specified[i] = face_numeric_swidth (attrs[LFACE_SWIDTH_INDEX]);
6229 else if (xlfd_idx == XLFD_POINT_SIZE)
6230 specified[i] = pt = XFASTINT (attrs[LFACE_HEIGHT_INDEX]);
6231 else if (xlfd_idx == XLFD_WEIGHT)
6232 specified[i] = face_numeric_weight (attrs[LFACE_WEIGHT_INDEX]);
6233 else if (xlfd_idx == XLFD_SLANT)
6234 specified[i] = face_numeric_slant (attrs[LFACE_SLANT_INDEX]);
6235 else
6236 abort ();
6237 }
6238
6239 avgwidth = (UNSPECIFIEDP (attrs[LFACE_AVGWIDTH_INDEX])
6240 ? 0
6241 : XFASTINT (attrs[LFACE_AVGWIDTH_INDEX]) * width_ratio);
6242
6243 exact_p = 0;
6244
6245 if (needs_overstrike)
6246 *needs_overstrike = 0;
6247
6248 /* Start with the first non-scalable font in the list. */
6249 for (i = 0; i < nfonts; ++i)
6250 if (!font_scalable_p (fonts + i))
6251 break;
6252
6253 /* Find the best match among the non-scalable fonts. */
6254 if (i < nfonts)
6255 {
6256 best = fonts + i;
6257
6258 for (i = 1; i < nfonts; ++i)
6259 if (!font_scalable_p (fonts + i)
6260 && better_font_p (specified, fonts + i, best, 1, avgwidth))
6261 {
6262 best = fonts + i;
6263
6264 exact_p = exact_face_match_p (specified, best, avgwidth);
6265 if (exact_p)
6266 break;
6267 }
6268 }
6269 else
6270 best = NULL;
6271
6272 /* Unless we found an exact match among non-scalable fonts, see if
6273 we can find a better match among scalable fonts. */
6274 if (!exact_p)
6275 {
6276 /* A scalable font is better if
6277
6278 1. its weight, slant, swidth attributes are better, or.
6279
6280 2. the best non-scalable font doesn't have the required
6281 point size, and the scalable fonts weight, slant, swidth
6282 isn't worse. */
6283
6284 int non_scalable_has_exact_height_p;
6285
6286 if (best && best->numeric[XLFD_POINT_SIZE] == pt)
6287 non_scalable_has_exact_height_p = 1;
6288 else
6289 non_scalable_has_exact_height_p = 0;
6290
6291 for (i = 0; i < nfonts; ++i)
6292 if (font_scalable_p (fonts + i))
6293 {
6294 if (best == NULL
6295 || better_font_p (specified, fonts + i, best, 0, 0)
6296 || (!non_scalable_has_exact_height_p
6297 && !better_font_p (specified, best, fonts + i, 0, 0)))
6298 {
6299 non_scalable_has_exact_height_p = 1;
6300 best = fonts + i;
6301 }
6302 }
6303
6304 if (needs_overstrike)
6305 {
6306 enum xlfd_weight want_weight = specified[XLFD_WEIGHT];
6307 enum xlfd_weight got_weight = best->numeric[XLFD_WEIGHT];
6308
6309 if (want_weight > XLFD_WEIGHT_MEDIUM && want_weight > got_weight)
6310 {
6311 /* We want a bold font, but didn't get one; try to use
6312 overstriking instead to simulate bold-face. However,
6313 don't overstrike an already-bold fontn unless the
6314 desired weight grossly exceeds the available weight. */
6315 if (got_weight > XLFD_WEIGHT_MEDIUM)
6316 *needs_overstrike = (got_weight - want_weight) > 2;
6317 else
6318 *needs_overstrike = 1;
6319 }
6320 }
6321 }
6322
6323 if (font_scalable_p (best))
6324 font_name = build_scalable_font_name (f, best, pt);
6325 else
6326 font_name = build_font_name (best);
6327
6328 /* Free font_name structures. */
6329 free_font_names (fonts, nfonts);
6330
6331 return font_name;
6332}
6333
6334
6335/* Get a list of matching fonts on frame F, considering FAMILY
6336 and alternative font families from Vface_alternative_font_registry_alist.
6337
6338 FAMILY is the font family whose alternatives are considered.
6339
6340 REGISTRY, if a string, specifies a font registry and encoding to
6341 match. A value of nil means include fonts of any registry and
6342 encoding.
6343
6344 Return in *FONTS a pointer to a vector of font_name structures for
6345 the fonts matched. Value is the number of fonts found. */
6346
6347static int
6348try_alternative_families (f, family, registry, fonts)
6349 struct frame *f;
6350 Lisp_Object family, registry;
6351 struct font_name **fonts;
6352{
6353 Lisp_Object alter;
6354 int nfonts = 0;
6355
6356 nfonts = font_list (f, Qnil, family, registry, fonts);
6357 if (nfonts == 0)
6358 {
6359 /* Try alternative font families. */
6360 alter = Fassoc (family, Vface_alternative_font_family_alist);
6361 if (CONSP (alter))
6362 {
6363 for (alter = XCDR (alter);
6364 CONSP (alter) && nfonts == 0;
6365 alter = XCDR (alter))
6366 {
6367 if (STRINGP (XCAR (alter)))
6368 nfonts = font_list (f, Qnil, XCAR (alter), registry, fonts);
6369 }
6370 }
6371
6372 /* Try all scalable fonts before giving up. */
6373 if (nfonts == 0 && ! EQ (Vscalable_fonts_allowed, Qt))
6374 {
6375 int count = SPECPDL_INDEX ();
6376 specbind (Qscalable_fonts_allowed, Qt);
6377 nfonts = try_alternative_families (f, family, registry, fonts);
6378 unbind_to (count, Qnil);
6379 }
6380 }
6381 return nfonts;
6382}
6383
6384
6385/* Get a list of matching fonts on frame F.
6386
6387 FAMILY, if a string, specifies a font family derived from the fontset.
6388 It is only used if the face does not specify any family in ATTRS or
6389 if we cannot find any font of the face's family.
6390
6391 REGISTRY, if a string, specifies a font registry and encoding to
6392 match. A value of nil means include fonts of any registry and
6393 encoding.
6394
6395 If PREFER_FACE_FAMILY is nonzero, perfer face's family to FAMILY.
6396 Otherwise, prefer FAMILY.
6397
6398 Return in *FONTS a pointer to a vector of font_name structures for
6399 the fonts matched. Value is the number of fonts found. */
6400
6401static int
6402try_font_list (f, attrs, family, registry, fonts, prefer_face_family)
6403 struct frame *f;
6404 Lisp_Object *attrs;
6405 Lisp_Object family, registry;
6406 struct font_name **fonts;
6407 int prefer_face_family;
6408{
6409 int nfonts = 0;
6410 Lisp_Object face_family = attrs[LFACE_FAMILY_INDEX];
6411 Lisp_Object try_family;
6412
6413 try_family = (prefer_face_family || NILP (family)) ? face_family : family;
6414
6415 if (STRINGP (try_family))
6416 nfonts = try_alternative_families (f, try_family, registry, fonts);
6417
6418#ifdef MAC_OS
6419 /* When realizing the default face and a font spec does not matched
6420 exactly, Emacs looks for ones with the same registry as the
6421 default font. On the Mac, this is mac-roman, which does not work
6422 if the family is -etl-fixed, e.g. The following widens the
6423 choices and fixes that problem. */
6424 if (nfonts == 0 && STRINGP (try_family) && STRINGP (registry)
6425 && xstricmp (SDATA (registry), "mac-roman") == 0)
6426 nfonts = try_alternative_families (f, try_family, Qnil, fonts);
6427#endif
6428
6429 if (EQ (try_family, family))
6430 family = face_family;
6431
6432 if (nfonts == 0 && STRINGP (family))
6433 nfonts = try_alternative_families (f, family, registry, fonts);
6434
6435 /* Try font family of the default face or "fixed". */
6436 if (nfonts == 0)
6437 {
6438 struct face *default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
6439 if (default_face)
6440 family = default_face->lface[LFACE_FAMILY_INDEX];
6441 else
6442 family = build_string ("fixed");
6443 nfonts = font_list (f, Qnil, family, registry, fonts);
6444 }
6445
6446 /* Try any family with the given registry. */
6447 if (nfonts == 0)
6448 nfonts = try_alternative_families (f, Qnil, registry, fonts);
6449
6450 return nfonts;
6451}
6452
6453
6454/* Return the fontset id of the base fontset name or alias name given
6455 by the fontset attribute of ATTRS. Value is -1 if the fontset
6456 attribute of ATTRS doesn't name a fontset. */
6457
6458static int
6459face_fontset (attrs)
6460 Lisp_Object *attrs;
6461{
6462 Lisp_Object name;
6463
6464 name = attrs[LFACE_FONT_INDEX];
6465 if (!STRINGP (name))
6466 return -1;
6467 return fs_query_fontset (name, 0);
6468}
6469
6470
6471/* Choose a name of font to use on frame F to display character C with
6472 Lisp face attributes specified by ATTRS. The font name is
6473 determined by the font-related attributes in ATTRS and the name
6474 pattern for C in FONTSET. Value is the font name which is
6475 allocated from the heap and must be freed by the caller, or NULL if
6476 we can get no information about the font name of C. It is assured
6477 that we always get some information for a single byte
6478 character.
6479
6480 If NEEDS_OVERSTRIKE is non-zero, a boolean is returned in it to
6481 indicate whether the resulting font should be drawn using overstrike
6482 to simulate bold-face. */
6483
6484static char *
6485choose_face_font (f, attrs, fontset, c, needs_overstrike)
6486 struct frame *f;
6487 Lisp_Object *attrs;
6488 int fontset, c;
6489 int *needs_overstrike;
6490{
6491 Lisp_Object pattern;
6492 char *font_name = NULL;
6493 struct font_name *fonts;
6494 int nfonts, width_ratio;
6495
6496 if (needs_overstrike)
6497 *needs_overstrike = 0;
6498
6499 /* Get (foundry and) family name and registry (and encoding) name of
6500 a font for C. */
6501 pattern = fontset_font_pattern (f, fontset, c);
6502 if (NILP (pattern))
6503 {
6504 xassert (!SINGLE_BYTE_CHAR_P (c));
6505 return NULL;
6506 }
6507
6508 /* If what we got is a name pattern, return it. */
6509 if (STRINGP (pattern))
6510 return xstrdup (SDATA (pattern));
6511
6512 /* Get a list of fonts matching that pattern and choose the
6513 best match for the specified face attributes from it. */
6514 nfonts = try_font_list (f, attrs, XCAR (pattern), XCDR (pattern), &fonts,
6515 (SINGLE_BYTE_CHAR_P (c)
6516 || CHAR_CHARSET (c) == charset_latin_iso8859_1));
6517 width_ratio = (SINGLE_BYTE_CHAR_P (c)
6518 ? 1
6519 : CHARSET_WIDTH (CHAR_CHARSET (c)));
6520 font_name = best_matching_font (f, attrs, fonts, nfonts, width_ratio,
6521 needs_overstrike);
6522 return font_name;
6523}
6524
6525#endif /* HAVE_WINDOW_SYSTEM */
6526
6527
6528\f
6529/***********************************************************************
6530 Face Realization
6531 ***********************************************************************/
6532
6533/* Realize basic faces on frame F. Value is zero if frame parameters
6534 of F don't contain enough information needed to realize the default
6535 face. */
6536
6537static int
6538realize_basic_faces (f)
6539 struct frame *f;
6540{
6541 int success_p = 0;
6542 int count = SPECPDL_INDEX ();
6543
6544 /* Block input here so that we won't be surprised by an X expose
6545 event, for instance, without having the faces set up. */
6546 BLOCK_INPUT;
6547 specbind (Qscalable_fonts_allowed, Qt);
6548
6549 if (realize_default_face (f))
6550 {
6551 realize_named_face (f, Qmode_line, MODE_LINE_FACE_ID);
6552 realize_named_face (f, Qmode_line_inactive, MODE_LINE_INACTIVE_FACE_ID);
6553 realize_named_face (f, Qtool_bar, TOOL_BAR_FACE_ID);
6554 realize_named_face (f, Qfringe, FRINGE_FACE_ID);
6555 realize_named_face (f, Qheader_line, HEADER_LINE_FACE_ID);
6556 realize_named_face (f, Qscroll_bar, SCROLL_BAR_FACE_ID);
6557 realize_named_face (f, Qborder, BORDER_FACE_ID);
6558 realize_named_face (f, Qcursor, CURSOR_FACE_ID);
6559 realize_named_face (f, Qmouse, MOUSE_FACE_ID);
6560 realize_named_face (f, Qmenu, MENU_FACE_ID);
6561
6562 /* Reflect changes in the `menu' face in menu bars. */
6563 if (FRAME_FACE_CACHE (f)->menu_face_changed_p)
6564 {
6565 FRAME_FACE_CACHE (f)->menu_face_changed_p = 0;
6566#ifdef USE_X_TOOLKIT
6567 x_update_menu_appearance (f);
6568#endif
6569 }
6570
6571 success_p = 1;
6572 }
6573
6574 unbind_to (count, Qnil);
6575 UNBLOCK_INPUT;
6576 return success_p;
6577}
6578
6579
6580/* Realize the default face on frame F. If the face is not fully
6581 specified, make it fully-specified. Attributes of the default face
6582 that are not explicitly specified are taken from frame parameters. */
6583
6584static int
6585realize_default_face (f)
6586 struct frame *f;
6587{
6588 struct face_cache *c = FRAME_FACE_CACHE (f);
6589 Lisp_Object lface;
6590 Lisp_Object attrs[LFACE_VECTOR_SIZE];
6591 Lisp_Object frame_font;
6592 struct face *face;
6593
6594 /* If the `default' face is not yet known, create it. */
6595 lface = lface_from_face_name (f, Qdefault, 0);
6596 if (NILP (lface))
6597 {
6598 Lisp_Object frame;
6599 XSETFRAME (frame, f);
6600 lface = Finternal_make_lisp_face (Qdefault, frame);
6601 }
6602
6603
6604#ifdef HAVE_WINDOW_SYSTEM
6605 if (FRAME_WINDOW_P (f))
6606 {
6607 /* Set frame_font to the value of the `font' frame parameter. */
6608 frame_font = Fassq (Qfont, f->param_alist);
6609 xassert (CONSP (frame_font) && STRINGP (XCDR (frame_font)));
6610 frame_font = XCDR (frame_font);
6611 set_lface_from_font_name (f, lface, frame_font,
6612 f->default_face_done_p, 1);
6613 f->default_face_done_p = 1;
6614 }
6615#endif /* HAVE_WINDOW_SYSTEM */
6616
6617 if (!FRAME_WINDOW_P (f))
6618 {
6619 LFACE_FAMILY (lface) = build_string ("default");
6620 LFACE_SWIDTH (lface) = Qnormal;
6621 LFACE_HEIGHT (lface) = make_number (1);
6622 if (UNSPECIFIEDP (LFACE_WEIGHT (lface)))
6623 LFACE_WEIGHT (lface) = Qnormal;
6624 if (UNSPECIFIEDP (LFACE_SLANT (lface)))
6625 LFACE_SLANT (lface) = Qnormal;
6626 LFACE_AVGWIDTH (lface) = Qunspecified;
6627 }
6628
6629 if (UNSPECIFIEDP (LFACE_UNDERLINE (lface)))
6630 LFACE_UNDERLINE (lface) = Qnil;
6631
6632 if (UNSPECIFIEDP (LFACE_OVERLINE (lface)))
6633 LFACE_OVERLINE (lface) = Qnil;
6634
6635 if (UNSPECIFIEDP (LFACE_STRIKE_THROUGH (lface)))
6636 LFACE_STRIKE_THROUGH (lface) = Qnil;
6637
6638 if (UNSPECIFIEDP (LFACE_BOX (lface)))
6639 LFACE_BOX (lface) = Qnil;
6640
6641 if (UNSPECIFIEDP (LFACE_INVERSE (lface)))
6642 LFACE_INVERSE (lface) = Qnil;
6643
6644 if (UNSPECIFIEDP (LFACE_FOREGROUND (lface)))
6645 {
6646 /* This function is called so early that colors are not yet
6647 set in the frame parameter list. */
6648 Lisp_Object color = Fassq (Qforeground_color, f->param_alist);
6649
6650 if (CONSP (color) && STRINGP (XCDR (color)))
6651 LFACE_FOREGROUND (lface) = XCDR (color);
6652 else if (FRAME_WINDOW_P (f))
6653 return 0;
6654 else if (FRAME_TERMCAP_P (f) || FRAME_MSDOS_P (f))
6655 LFACE_FOREGROUND (lface) = build_string (unspecified_fg);
6656 else
6657 abort ();
6658 }
6659
6660 if (UNSPECIFIEDP (LFACE_BACKGROUND (lface)))
6661 {
6662 /* This function is called so early that colors are not yet
6663 set in the frame parameter list. */
6664 Lisp_Object color = Fassq (Qbackground_color, f->param_alist);
6665 if (CONSP (color) && STRINGP (XCDR (color)))
6666 LFACE_BACKGROUND (lface) = XCDR (color);
6667 else if (FRAME_WINDOW_P (f))
6668 return 0;
6669 else if (FRAME_TERMCAP_P (f) || FRAME_MSDOS_P (f))
6670 LFACE_BACKGROUND (lface) = build_string (unspecified_bg);
6671 else
6672 abort ();
6673 }
6674
6675 if (UNSPECIFIEDP (LFACE_STIPPLE (lface)))
6676 LFACE_STIPPLE (lface) = Qnil;
6677
6678 /* Realize the face; it must be fully-specified now. */
6679 xassert (lface_fully_specified_p (XVECTOR (lface)->contents));
6680 check_lface (lface);
6681 bcopy (XVECTOR (lface)->contents, attrs, sizeof attrs);
6682 face = realize_face (c, attrs, 0, NULL, DEFAULT_FACE_ID);
6683 return 1;
6684}
6685
6686
6687/* Realize basic faces other than the default face in face cache C.
6688 SYMBOL is the face name, ID is the face id the realized face must
6689 have. The default face must have been realized already. */
6690
6691static void
6692realize_named_face (f, symbol, id)
6693 struct frame *f;
6694 Lisp_Object symbol;
6695 int id;
6696{
6697 struct face_cache *c = FRAME_FACE_CACHE (f);
6698 Lisp_Object lface = lface_from_face_name (f, symbol, 0);
6699 Lisp_Object attrs[LFACE_VECTOR_SIZE];
6700 Lisp_Object symbol_attrs[LFACE_VECTOR_SIZE];
6701 struct face *new_face;
6702
6703 /* The default face must exist and be fully specified. */
6704 get_lface_attributes (f, Qdefault, attrs, 1);
6705 check_lface_attrs (attrs);
6706 xassert (lface_fully_specified_p (attrs));
6707
6708 /* If SYMBOL isn't know as a face, create it. */
6709 if (NILP (lface))
6710 {
6711 Lisp_Object frame;
6712 XSETFRAME (frame, f);
6713 lface = Finternal_make_lisp_face (symbol, frame);
6714 }
6715
6716 /* Merge SYMBOL's face with the default face. */
6717 get_lface_attributes (f, symbol, symbol_attrs, 1);
6718 merge_face_vectors (f, symbol_attrs, attrs, Qnil);
6719
6720 /* Realize the face. */
6721 new_face = realize_face (c, attrs, 0, NULL, id);
6722}
6723
6724
6725/* Realize the fully-specified face with attributes ATTRS in face
6726 cache CACHE for character C. If C is a multibyte character,
6727 BASE_FACE is a face that has the same attributes. Otherwise,
6728 BASE_FACE is ignored. If FORMER_FACE_ID is non-negative, it is an
6729 ID of face to remove before caching the new face. Value is a
6730 pointer to the newly created realized face. */
6731
6732static struct face *
6733realize_face (cache, attrs, c, base_face, former_face_id)
6734 struct face_cache *cache;
6735 Lisp_Object *attrs;
6736 int c;
6737 struct face *base_face;
6738 int former_face_id;
6739{
6740 struct face *face;
6741
6742 /* LFACE must be fully specified. */
6743 xassert (cache != NULL);
6744 check_lface_attrs (attrs);
6745
6746 if (former_face_id >= 0 && cache->used > former_face_id)
6747 {
6748 /* Remove the former face. */
6749 struct face *former_face = cache->faces_by_id[former_face_id];
6750 uncache_face (cache, former_face);
6751 free_realized_face (cache->f, former_face);
6752 }
6753
6754 if (FRAME_WINDOW_P (cache->f))
6755 face = realize_x_face (cache, attrs, c, base_face);
6756 else if (FRAME_TERMCAP_P (cache->f) || FRAME_MSDOS_P (cache->f))
6757 face = realize_tty_face (cache, attrs, c);
6758 else
6759 abort ();
6760
6761 /* Insert the new face. */
6762 cache_face (cache, face, lface_hash (attrs));
6763#ifdef HAVE_WINDOW_SYSTEM
6764 if (FRAME_WINDOW_P (cache->f) && face->font == NULL)
6765 load_face_font (cache->f, face, c);
6766#endif /* HAVE_WINDOW_SYSTEM */
6767 return face;
6768}
6769
6770
6771/* Realize the fully-specified face with attributes ATTRS in face
6772 cache CACHE for character C. Do it for X frame CACHE->f. If C is
6773 a multibyte character, BASE_FACE is a face that has the same
6774 attributes. Otherwise, BASE_FACE is ignored. If the new face
6775 doesn't share font with the default face, a fontname is allocated
6776 from the heap and set in `font_name' of the new face, but it is not
6777 yet loaded here. Value is a pointer to the newly created realized
6778 face. */
6779
6780static struct face *
6781realize_x_face (cache, attrs, c, base_face)
6782 struct face_cache *cache;
6783 Lisp_Object *attrs;
6784 int c;
6785 struct face *base_face;
6786{
6787#ifdef HAVE_WINDOW_SYSTEM
6788 struct face *face, *default_face;
6789 struct frame *f;
6790 Lisp_Object stipple, overline, strike_through, box;
6791
6792 xassert (FRAME_WINDOW_P (cache->f));
6793 xassert (SINGLE_BYTE_CHAR_P (c)
6794 || base_face);
6795
6796 /* Allocate a new realized face. */
6797 face = make_realized_face (attrs);
6798
6799 f = cache->f;
6800
6801 /* If C is a multibyte character, we share all face attirbutes with
6802 BASE_FACE including the realized fontset. But, we must load a
6803 different font. */
6804 if (!SINGLE_BYTE_CHAR_P (c))
6805 {
6806 bcopy (base_face, face, sizeof *face);
6807 face->gc = 0;
6808
6809 /* Don't try to free the colors copied bitwise from BASE_FACE. */
6810 face->colors_copied_bitwise_p = 1;
6811
6812 /* to force realize_face to load font */
6813 face->font = NULL;
6814 return face;
6815 }
6816
6817 /* Now we are realizing a face for ASCII (and unibyte) characters. */
6818
6819 /* Determine the font to use. Most of the time, the font will be
6820 the same as the font of the default face, so try that first. */
6821 default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
6822 if (default_face
6823 && FACE_SUITABLE_FOR_CHAR_P (default_face, c)
6824 && lface_same_font_attributes_p (default_face->lface, attrs))
6825 {
6826 face->font = default_face->font;
6827 face->fontset = default_face->fontset;
6828 face->font_info_id = default_face->font_info_id;
6829 face->font_name = default_face->font_name;
6830 face->ascii_face = face;
6831
6832 /* But, as we can't share the fontset, make a new realized
6833 fontset that has the same base fontset as of the default
6834 face. */
6835 face->fontset
6836 = make_fontset_for_ascii_face (f, default_face->fontset);
6837 }
6838 else
6839 {
6840 /* If the face attribute ATTRS specifies a fontset, use it as
6841 the base of a new realized fontset. Otherwise, use the same
6842 base fontset as of the default face. The base determines
6843 registry and encoding of a font. It may also determine
6844 foundry and family. The other fields of font name pattern
6845 are constructed from ATTRS. */
6846 int fontset = face_fontset (attrs);
6847
6848 if ((fontset == -1) && default_face)
6849 fontset = default_face->fontset;
6850 face->fontset = make_fontset_for_ascii_face (f, fontset);
6851 face->font = NULL; /* to force realize_face to load font */
6852 }
6853
6854 /* Load colors, and set remaining attributes. */
6855
6856 load_face_colors (f, face, attrs);
6857
6858 /* Set up box. */
6859 box = attrs[LFACE_BOX_INDEX];
6860 if (STRINGP (box))
6861 {
6862 /* A simple box of line width 1 drawn in color given by
6863 the string. */
6864 face->box_color = load_color (f, face, attrs[LFACE_BOX_INDEX],
6865 LFACE_BOX_INDEX);
6866 face->box = FACE_SIMPLE_BOX;
6867 face->box_line_width = 1;
6868 }
6869 else if (INTEGERP (box))
6870 {
6871 /* Simple box of specified line width in foreground color of the
6872 face. */
6873 xassert (XINT (box) != 0);
6874 face->box = FACE_SIMPLE_BOX;
6875 face->box_line_width = XINT (box);
6876 face->box_color = face->foreground;
6877 face->box_color_defaulted_p = 1;
6878 }
6879 else if (CONSP (box))
6880 {
6881 /* `(:width WIDTH :color COLOR :shadow SHADOW)'. SHADOW
6882 being one of `raised' or `sunken'. */
6883 face->box = FACE_SIMPLE_BOX;
6884 face->box_color = face->foreground;
6885 face->box_color_defaulted_p = 1;
6886 face->box_line_width = 1;
6887
6888 while (CONSP (box))
6889 {
6890 Lisp_Object keyword, value;
6891
6892 keyword = XCAR (box);
6893 box = XCDR (box);
6894
6895 if (!CONSP (box))
6896 break;
6897 value = XCAR (box);
6898 box = XCDR (box);
6899
6900 if (EQ (keyword, QCline_width))
6901 {
6902 if (INTEGERP (value) && XINT (value) != 0)
6903 face->box_line_width = XINT (value);
6904 }
6905 else if (EQ (keyword, QCcolor))
6906 {
6907 if (STRINGP (value))
6908 {
6909 face->box_color = load_color (f, face, value,
6910 LFACE_BOX_INDEX);
6911 face->use_box_color_for_shadows_p = 1;
6912 }
6913 }
6914 else if (EQ (keyword, QCstyle))
6915 {
6916 if (EQ (value, Qreleased_button))
6917 face->box = FACE_RAISED_BOX;
6918 else if (EQ (value, Qpressed_button))
6919 face->box = FACE_SUNKEN_BOX;
6920 }
6921 }
6922 }
6923
6924 /* Text underline, overline, strike-through. */
6925
6926 if (EQ (attrs[LFACE_UNDERLINE_INDEX], Qt))
6927 {
6928 /* Use default color (same as foreground color). */
6929 face->underline_p = 1;
6930 face->underline_defaulted_p = 1;
6931 face->underline_color = 0;
6932 }
6933 else if (STRINGP (attrs[LFACE_UNDERLINE_INDEX]))
6934 {
6935 /* Use specified color. */
6936 face->underline_p = 1;
6937 face->underline_defaulted_p = 0;
6938 face->underline_color
6939 = load_color (f, face, attrs[LFACE_UNDERLINE_INDEX],
6940 LFACE_UNDERLINE_INDEX);
6941 }
6942 else if (NILP (attrs[LFACE_UNDERLINE_INDEX]))
6943 {
6944 face->underline_p = 0;
6945 face->underline_defaulted_p = 0;
6946 face->underline_color = 0;
6947 }
6948
6949 overline = attrs[LFACE_OVERLINE_INDEX];
6950 if (STRINGP (overline))
6951 {
6952 face->overline_color
6953 = load_color (f, face, attrs[LFACE_OVERLINE_INDEX],
6954 LFACE_OVERLINE_INDEX);
6955 face->overline_p = 1;
6956 }
6957 else if (EQ (overline, Qt))
6958 {
6959 face->overline_color = face->foreground;
6960 face->overline_color_defaulted_p = 1;
6961 face->overline_p = 1;
6962 }
6963
6964 strike_through = attrs[LFACE_STRIKE_THROUGH_INDEX];
6965 if (STRINGP (strike_through))
6966 {
6967 face->strike_through_color
6968 = load_color (f, face, attrs[LFACE_STRIKE_THROUGH_INDEX],
6969 LFACE_STRIKE_THROUGH_INDEX);
6970 face->strike_through_p = 1;
6971 }
6972 else if (EQ (strike_through, Qt))
6973 {
6974 face->strike_through_color = face->foreground;
6975 face->strike_through_color_defaulted_p = 1;
6976 face->strike_through_p = 1;
6977 }
6978
6979 stipple = attrs[LFACE_STIPPLE_INDEX];
6980 if (!NILP (stipple))
6981 face->stipple = load_pixmap (f, stipple, &face->pixmap_w, &face->pixmap_h);
6982
6983 xassert (FACE_SUITABLE_FOR_CHAR_P (face, c));
6984 return face;
6985#endif /* HAVE_WINDOW_SYSTEM */
6986}
6987
6988
6989/* Map a specified color of face FACE on frame F to a tty color index.
6990 IDX is either LFACE_FOREGROUND_INDEX or LFACE_BACKGROUND_INDEX, and
6991 specifies which color to map. Set *DEFAULTED to 1 if mapping to the
6992 default foreground/background colors. */
6993
6994static void
6995map_tty_color (f, face, idx, defaulted)
6996 struct frame *f;
6997 struct face *face;
6998 enum lface_attribute_index idx;
6999 int *defaulted;
7000{
7001 Lisp_Object frame, color, def;
7002 int foreground_p = idx == LFACE_FOREGROUND_INDEX;
7003 unsigned long default_pixel, default_other_pixel, pixel;
7004
7005 xassert (idx == LFACE_FOREGROUND_INDEX || idx == LFACE_BACKGROUND_INDEX);
7006
7007 if (foreground_p)
7008 {
7009 pixel = default_pixel = FACE_TTY_DEFAULT_FG_COLOR;
7010 default_other_pixel = FACE_TTY_DEFAULT_BG_COLOR;
7011 }
7012 else
7013 {
7014 pixel = default_pixel = FACE_TTY_DEFAULT_BG_COLOR;
7015 default_other_pixel = FACE_TTY_DEFAULT_FG_COLOR;
7016 }
7017
7018 XSETFRAME (frame, f);
7019 color = face->lface[idx];
7020
7021 if (STRINGP (color)
7022 && SCHARS (color)
7023 && CONSP (Vtty_defined_color_alist)
7024 && (def = assq_no_quit (color, call1 (Qtty_color_alist, frame)),
7025 CONSP (def)))
7026 {
7027 /* Associations in tty-defined-color-alist are of the form
7028 (NAME INDEX R G B). We need the INDEX part. */
7029 pixel = XINT (XCAR (XCDR (def)));
7030 }
7031
7032 if (pixel == default_pixel && STRINGP (color))
7033 {
7034 pixel = load_color (f, face, color, idx);
7035
7036#if defined (MSDOS) || defined (WINDOWSNT)
7037 /* If the foreground of the default face is the default color,
7038 use the foreground color defined by the frame. */
7039#ifdef MSDOS
7040 if (FRAME_MSDOS_P (f))
7041 {
7042#endif /* MSDOS */
7043 if (pixel == default_pixel
7044 || pixel == FACE_TTY_DEFAULT_COLOR)
7045 {
7046 if (foreground_p)
7047 pixel = FRAME_FOREGROUND_PIXEL (f);
7048 else
7049 pixel = FRAME_BACKGROUND_PIXEL (f);
7050 face->lface[idx] = tty_color_name (f, pixel);
7051 *defaulted = 1;
7052 }
7053 else if (pixel == default_other_pixel)
7054 {
7055 if (foreground_p)
7056 pixel = FRAME_BACKGROUND_PIXEL (f);
7057 else
7058 pixel = FRAME_FOREGROUND_PIXEL (f);
7059 face->lface[idx] = tty_color_name (f, pixel);
7060 *defaulted = 1;
7061 }
7062#ifdef MSDOS
7063 }
7064#endif
7065#endif /* MSDOS or WINDOWSNT */
7066 }
7067
7068 if (foreground_p)
7069 face->foreground = pixel;
7070 else
7071 face->background = pixel;
7072}
7073
7074
7075/* Realize the fully-specified face with attributes ATTRS in face
7076 cache CACHE for character C. Do it for TTY frame CACHE->f. Value is a
7077 pointer to the newly created realized face. */
7078
7079static struct face *
7080realize_tty_face (cache, attrs, c)
7081 struct face_cache *cache;
7082 Lisp_Object *attrs;
7083 int c;
7084{
7085 struct face *face;
7086 int weight, slant;
7087 int face_colors_defaulted = 0;
7088 struct frame *f = cache->f;
7089
7090 /* Frame must be a termcap frame. */
7091 xassert (FRAME_TERMCAP_P (cache->f) || FRAME_MSDOS_P (cache->f));
7092
7093 /* Allocate a new realized face. */
7094 face = make_realized_face (attrs);
7095 face->font_name = FRAME_MSDOS_P (cache->f) ? "ms-dos" : "tty";
7096
7097 /* Map face attributes to TTY appearances. We map slant to
7098 dimmed text because we want italic text to appear differently
7099 and because dimmed text is probably used infrequently. */
7100 weight = face_numeric_weight (attrs[LFACE_WEIGHT_INDEX]);
7101 slant = face_numeric_slant (attrs[LFACE_SLANT_INDEX]);
7102
7103 if (weight > XLFD_WEIGHT_MEDIUM)
7104 face->tty_bold_p = 1;
7105 if (weight < XLFD_WEIGHT_MEDIUM || slant != XLFD_SLANT_ROMAN)
7106 face->tty_dim_p = 1;
7107 if (!NILP (attrs[LFACE_UNDERLINE_INDEX]))
7108 face->tty_underline_p = 1;
7109 if (!NILP (attrs[LFACE_INVERSE_INDEX]))
7110 face->tty_reverse_p = 1;
7111
7112 /* Map color names to color indices. */
7113 map_tty_color (f, face, LFACE_FOREGROUND_INDEX, &face_colors_defaulted);
7114 map_tty_color (f, face, LFACE_BACKGROUND_INDEX, &face_colors_defaulted);
7115
7116 /* Swap colors if face is inverse-video. If the colors are taken
7117 from the frame colors, they are already inverted, since the
7118 frame-creation function calls x-handle-reverse-video. */
7119 if (face->tty_reverse_p && !face_colors_defaulted)
7120 {
7121 unsigned long tem = face->foreground;
7122 face->foreground = face->background;
7123 face->background = tem;
7124 }
7125
7126 if (tty_suppress_bold_inverse_default_colors_p
7127 && face->tty_bold_p
7128 && face->background == FACE_TTY_DEFAULT_FG_COLOR
7129 && face->foreground == FACE_TTY_DEFAULT_BG_COLOR)
7130 face->tty_bold_p = 0;
7131
7132 return face;
7133}
7134
7135
7136DEFUN ("tty-suppress-bold-inverse-default-colors",
7137 Ftty_suppress_bold_inverse_default_colors,
7138 Stty_suppress_bold_inverse_default_colors, 1, 1, 0,
7139 doc: /* Suppress/allow boldness of faces with inverse default colors.
7140SUPPRESS non-nil means suppress it.
7141This affects bold faces on TTYs whose foreground is the default background
7142color of the display and whose background is the default foreground color.
7143For such faces, the bold face attribute is ignored if this variable
7144is non-nil. */)
7145 (suppress)
7146 Lisp_Object suppress;
7147{
7148 tty_suppress_bold_inverse_default_colors_p = !NILP (suppress);
7149 ++face_change_count;
7150 return suppress;
7151}
7152
7153
7154\f
7155/***********************************************************************
7156 Computing Faces
7157 ***********************************************************************/
7158
7159/* Return the ID of the face to use to display character CH with face
7160 property PROP on frame F in current_buffer. */
7161
7162int
7163compute_char_face (f, ch, prop)
7164 struct frame *f;
7165 int ch;
7166 Lisp_Object prop;
7167{
7168 int face_id;
7169
7170 if (NILP (current_buffer->enable_multibyte_characters))
7171 ch = 0;
7172
7173 if (NILP (prop))
7174 {
7175 struct face *face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
7176 face_id = FACE_FOR_CHAR (f, face, ch);
7177 }
7178 else
7179 {
7180 Lisp_Object attrs[LFACE_VECTOR_SIZE];
7181 struct face *default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
7182 bcopy (default_face->lface, attrs, sizeof attrs);
7183 merge_face_vector_with_property (f, attrs, prop);
7184 face_id = lookup_face (f, attrs, ch, NULL);
7185 }
7186
7187 return face_id;
7188}
7189
7190/* Return the face ID associated with buffer position POS for
7191 displaying ASCII characters. Return in *ENDPTR the position at
7192 which a different face is needed, as far as text properties and
7193 overlays are concerned. W is a window displaying current_buffer.
7194
7195 REGION_BEG, REGION_END delimit the region, so it can be
7196 highlighted.
7197
7198 LIMIT is a position not to scan beyond. That is to limit the time
7199 this function can take.
7200
7201 If MOUSE is non-zero, use the character's mouse-face, not its face.
7202
7203 The face returned is suitable for displaying ASCII characters. */
7204
7205int
7206face_at_buffer_position (w, pos, region_beg, region_end,
7207 endptr, limit, mouse)
7208 struct window *w;
7209 int pos;
7210 int region_beg, region_end;
7211 int *endptr;
7212 int limit;
7213 int mouse;
7214{
7215 struct frame *f = XFRAME (w->frame);
7216 Lisp_Object attrs[LFACE_VECTOR_SIZE];
7217 Lisp_Object prop, position;
7218 int i, noverlays;
7219 Lisp_Object *overlay_vec;
7220 Lisp_Object frame;
7221 int endpos;
7222 Lisp_Object propname = mouse ? Qmouse_face : Qface;
7223 Lisp_Object limit1, end;
7224 struct face *default_face;
7225
7226 /* W must display the current buffer. We could write this function
7227 to use the frame and buffer of W, but right now it doesn't. */
7228 /* xassert (XBUFFER (w->buffer) == current_buffer); */
7229
7230 XSETFRAME (frame, f);
7231 XSETFASTINT (position, pos);
7232
7233 endpos = ZV;
7234 if (pos < region_beg && region_beg < endpos)
7235 endpos = region_beg;
7236
7237 /* Get the `face' or `mouse_face' text property at POS, and
7238 determine the next position at which the property changes. */
7239 prop = Fget_text_property (position, propname, w->buffer);
7240 XSETFASTINT (limit1, (limit < endpos ? limit : endpos));
7241 end = Fnext_single_property_change (position, propname, w->buffer, limit1);
7242 if (INTEGERP (end))
7243 endpos = XINT (end);
7244
7245 /* Look at properties from overlays. */
7246 {
7247 int next_overlay;
7248 int len;
7249
7250 /* First try with room for 40 overlays. */
7251 len = 40;
7252 overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object));
7253 noverlays = overlays_at (pos, 0, &overlay_vec, &len,
7254 &next_overlay, NULL, 0);
7255
7256 /* If there are more than 40, make enough space for all, and try
7257 again. */
7258 if (noverlays > len)
7259 {
7260 len = noverlays;
7261 overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object));
7262 noverlays = overlays_at (pos, 0, &overlay_vec, &len,
7263 &next_overlay, NULL, 0);
7264 }
7265
7266 if (next_overlay < endpos)
7267 endpos = next_overlay;
7268 }
7269
7270 *endptr = endpos;
7271
7272 default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
7273
7274 /* Optimize common cases where we can use the default face. */
7275 if (noverlays == 0
7276 && NILP (prop)
7277 && !(pos >= region_beg && pos < region_end))
7278 return DEFAULT_FACE_ID;
7279
7280 /* Begin with attributes from the default face. */
7281 bcopy (default_face->lface, attrs, sizeof attrs);
7282
7283 /* Merge in attributes specified via text properties. */
7284 if (!NILP (prop))
7285 merge_face_vector_with_property (f, attrs, prop);
7286
7287 /* Now merge the overlay data. */
7288 noverlays = sort_overlays (overlay_vec, noverlays, w);
7289 for (i = 0; i < noverlays; i++)
7290 {
7291 Lisp_Object oend;
7292 int oendpos;
7293
7294 prop = Foverlay_get (overlay_vec[i], propname);
7295 if (!NILP (prop))
7296 merge_face_vector_with_property (f, attrs, prop);
7297
7298 oend = OVERLAY_END (overlay_vec[i]);
7299 oendpos = OVERLAY_POSITION (oend);
7300 if (oendpos < endpos)
7301 endpos = oendpos;
7302 }
7303
7304 /* If in the region, merge in the region face. */
7305 if (pos >= region_beg && pos < region_end)
7306 {
7307 Lisp_Object region_face = lface_from_face_name (f, Qregion, 0);
7308 merge_face_vectors (f, XVECTOR (region_face)->contents, attrs, Qnil);
7309
7310 if (region_end < endpos)
7311 endpos = region_end;
7312 }
7313
7314 *endptr = endpos;
7315
7316 /* Look up a realized face with the given face attributes,
7317 or realize a new one for ASCII characters. */
7318 return lookup_face (f, attrs, 0, NULL);
7319}
7320
7321
7322/* Compute the face at character position POS in Lisp string STRING on
7323 window W, for ASCII characters.
7324
7325 If STRING is an overlay string, it comes from position BUFPOS in
7326 current_buffer, otherwise BUFPOS is zero to indicate that STRING is
7327 not an overlay string. W must display the current buffer.
7328 REGION_BEG and REGION_END give the start and end positions of the
7329 region; both are -1 if no region is visible.
7330
7331 BASE_FACE_ID is the id of a face to merge with. For strings coming
7332 from overlays or the `display' property it is the face at BUFPOS.
7333
7334 If MOUSE_P is non-zero, use the character's mouse-face, not its face.
7335
7336 Set *ENDPTR to the next position where to check for faces in
7337 STRING; -1 if the face is constant from POS to the end of the
7338 string.
7339
7340 Value is the id of the face to use. The face returned is suitable
7341 for displaying ASCII characters. */
7342
7343int
7344face_at_string_position (w, string, pos, bufpos, region_beg,
7345 region_end, endptr, base_face_id, mouse_p)
7346 struct window *w;
7347 Lisp_Object string;
7348 int pos, bufpos;
7349 int region_beg, region_end;
7350 int *endptr;
7351 enum face_id base_face_id;
7352 int mouse_p;
7353{
7354 Lisp_Object prop, position, end, limit;
7355 struct frame *f = XFRAME (WINDOW_FRAME (w));
7356 Lisp_Object attrs[LFACE_VECTOR_SIZE];
7357 struct face *base_face;
7358 int multibyte_p = STRING_MULTIBYTE (string);
7359 Lisp_Object prop_name = mouse_p ? Qmouse_face : Qface;
7360
7361 /* Get the value of the face property at the current position within
7362 STRING. Value is nil if there is no face property. */
7363 XSETFASTINT (position, pos);
7364 prop = Fget_text_property (position, prop_name, string);
7365
7366 /* Get the next position at which to check for faces. Value of end
7367 is nil if face is constant all the way to the end of the string.
7368 Otherwise it is a string position where to check faces next.
7369 Limit is the maximum position up to which to check for property
7370 changes in Fnext_single_property_change. Strings are usually
7371 short, so set the limit to the end of the string. */
7372 XSETFASTINT (limit, SCHARS (string));
7373 end = Fnext_single_property_change (position, prop_name, string, limit);
7374 if (INTEGERP (end))
7375 *endptr = XFASTINT (end);
7376 else
7377 *endptr = -1;
7378
7379 base_face = FACE_FROM_ID (f, base_face_id);
7380 xassert (base_face);
7381
7382 /* Optimize the default case that there is no face property and we
7383 are not in the region. */
7384 if (NILP (prop)
7385 && (base_face_id != DEFAULT_FACE_ID
7386 /* BUFPOS <= 0 means STRING is not an overlay string, so
7387 that the region doesn't have to be taken into account. */
7388 || bufpos <= 0
7389 || bufpos < region_beg
7390 || bufpos >= region_end)
7391 && (multibyte_p
7392 /* We can't realize faces for different charsets differently
7393 if we don't have fonts, so we can stop here if not working
7394 on a window-system frame. */
7395 || !FRAME_WINDOW_P (f)
7396 || FACE_SUITABLE_FOR_CHAR_P (base_face, 0)))
7397 return base_face->id;
7398
7399 /* Begin with attributes from the base face. */
7400 bcopy (base_face->lface, attrs, sizeof attrs);
7401
7402 /* Merge in attributes specified via text properties. */
7403 if (!NILP (prop))
7404 merge_face_vector_with_property (f, attrs, prop);
7405
7406 /* If in the region, merge in the region face. */
7407 if (bufpos
7408 && bufpos >= region_beg
7409 && bufpos < region_end)
7410 {
7411 Lisp_Object region_face = lface_from_face_name (f, Qregion, 0);
7412 merge_face_vectors (f, XVECTOR (region_face)->contents, attrs, Qnil);
7413 }
7414
7415 /* Look up a realized face with the given face attributes,
7416 or realize a new one for ASCII characters. */
7417 return lookup_face (f, attrs, 0, NULL);
7418}
7419
7420
7421\f
7422/***********************************************************************
7423 Tests
7424 ***********************************************************************/
7425
7426#if GLYPH_DEBUG
7427
7428/* Print the contents of the realized face FACE to stderr. */
7429
7430static void
7431dump_realized_face (face)
7432 struct face *face;
7433{
7434 fprintf (stderr, "ID: %d\n", face->id);
7435#ifdef HAVE_X_WINDOWS
7436 fprintf (stderr, "gc: %d\n", (int) face->gc);
7437#endif
7438 fprintf (stderr, "foreground: 0x%lx (%s)\n",
7439 face->foreground,
7440 SDATA (face->lface[LFACE_FOREGROUND_INDEX]));
7441 fprintf (stderr, "background: 0x%lx (%s)\n",
7442 face->background,
7443 SDATA (face->lface[LFACE_BACKGROUND_INDEX]));
7444 fprintf (stderr, "font_name: %s (%s)\n",
7445 face->font_name,
7446 SDATA (face->lface[LFACE_FAMILY_INDEX]));
7447#ifdef HAVE_X_WINDOWS
7448 fprintf (stderr, "font = %p\n", face->font);
7449#endif
7450 fprintf (stderr, "font_info_id = %d\n", face->font_info_id);
7451 fprintf (stderr, "fontset: %d\n", face->fontset);
7452 fprintf (stderr, "underline: %d (%s)\n",
7453 face->underline_p,
7454 SDATA (Fsymbol_name (face->lface[LFACE_UNDERLINE_INDEX])));
7455 fprintf (stderr, "hash: %d\n", face->hash);
7456 fprintf (stderr, "charset: %d\n", face->charset);
7457}
7458
7459
7460DEFUN ("dump-face", Fdump_face, Sdump_face, 0, 1, 0, doc: /* */)
7461 (n)
7462 Lisp_Object n;
7463{
7464 if (NILP (n))
7465 {
7466 int i;
7467
7468 fprintf (stderr, "font selection order: ");
7469 for (i = 0; i < DIM (font_sort_order); ++i)
7470 fprintf (stderr, "%d ", font_sort_order[i]);
7471 fprintf (stderr, "\n");
7472
7473 fprintf (stderr, "alternative fonts: ");
7474 debug_print (Vface_alternative_font_family_alist);
7475 fprintf (stderr, "\n");
7476
7477 for (i = 0; i < FRAME_FACE_CACHE (SELECTED_FRAME ())->used; ++i)
7478 Fdump_face (make_number (i));
7479 }
7480 else
7481 {
7482 struct face *face;
7483 CHECK_NUMBER (n);
7484 face = FACE_FROM_ID (SELECTED_FRAME (), XINT (n));
7485 if (face == NULL)
7486 error ("Not a valid face");
7487 dump_realized_face (face);
7488 }
7489
7490 return Qnil;
7491}
7492
7493
7494DEFUN ("show-face-resources", Fshow_face_resources, Sshow_face_resources,
7495 0, 0, 0, doc: /* */)
7496 ()
7497{
7498 fprintf (stderr, "number of colors = %d\n", ncolors_allocated);
7499 fprintf (stderr, "number of pixmaps = %d\n", npixmaps_allocated);
7500 fprintf (stderr, "number of GCs = %d\n", ngcs);
7501 return Qnil;
7502}
7503
7504#endif /* GLYPH_DEBUG != 0 */
7505
7506
7507\f
7508/***********************************************************************
7509 Initialization
7510 ***********************************************************************/
7511
7512void
7513syms_of_xfaces ()
7514{
7515 Qface = intern ("face");
7516 staticpro (&Qface);
7517 Qbitmap_spec_p = intern ("bitmap-spec-p");
7518 staticpro (&Qbitmap_spec_p);
7519 Qframe_update_face_colors = intern ("frame-update-face-colors");
7520 staticpro (&Qframe_update_face_colors);
7521
7522 /* Lisp face attribute keywords. */
7523 QCfamily = intern (":family");
7524 staticpro (&QCfamily);
7525 QCheight = intern (":height");
7526 staticpro (&QCheight);
7527 QCweight = intern (":weight");
7528 staticpro (&QCweight);
7529 QCslant = intern (":slant");
7530 staticpro (&QCslant);
7531 QCunderline = intern (":underline");
7532 staticpro (&QCunderline);
7533 QCinverse_video = intern (":inverse-video");
7534 staticpro (&QCinverse_video);
7535 QCreverse_video = intern (":reverse-video");
7536 staticpro (&QCreverse_video);
7537 QCforeground = intern (":foreground");
7538 staticpro (&QCforeground);
7539 QCbackground = intern (":background");
7540 staticpro (&QCbackground);
7541 QCstipple = intern (":stipple");;
7542 staticpro (&QCstipple);
7543 QCwidth = intern (":width");
7544 staticpro (&QCwidth);
7545 QCfont = intern (":font");
7546 staticpro (&QCfont);
7547 QCbold = intern (":bold");
7548 staticpro (&QCbold);
7549 QCitalic = intern (":italic");
7550 staticpro (&QCitalic);
7551 QCoverline = intern (":overline");
7552 staticpro (&QCoverline);
7553 QCstrike_through = intern (":strike-through");
7554 staticpro (&QCstrike_through);
7555 QCbox = intern (":box");
7556 staticpro (&QCbox);
7557 QCinherit = intern (":inherit");
7558 staticpro (&QCinherit);
7559
7560 /* Symbols used for Lisp face attribute values. */
7561 QCcolor = intern (":color");
7562 staticpro (&QCcolor);
7563 QCline_width = intern (":line-width");
7564 staticpro (&QCline_width);
7565 QCstyle = intern (":style");
7566 staticpro (&QCstyle);
7567 Qreleased_button = intern ("released-button");
7568 staticpro (&Qreleased_button);
7569 Qpressed_button = intern ("pressed-button");
7570 staticpro (&Qpressed_button);
7571 Qnormal = intern ("normal");
7572 staticpro (&Qnormal);
7573 Qultra_light = intern ("ultra-light");
7574 staticpro (&Qultra_light);
7575 Qextra_light = intern ("extra-light");
7576 staticpro (&Qextra_light);
7577 Qlight = intern ("light");
7578 staticpro (&Qlight);
7579 Qsemi_light = intern ("semi-light");
7580 staticpro (&Qsemi_light);
7581 Qsemi_bold = intern ("semi-bold");
7582 staticpro (&Qsemi_bold);
7583 Qbold = intern ("bold");
7584 staticpro (&Qbold);
7585 Qextra_bold = intern ("extra-bold");
7586 staticpro (&Qextra_bold);
7587 Qultra_bold = intern ("ultra-bold");
7588 staticpro (&Qultra_bold);
7589 Qoblique = intern ("oblique");
7590 staticpro (&Qoblique);
7591 Qitalic = intern ("italic");
7592 staticpro (&Qitalic);
7593 Qreverse_oblique = intern ("reverse-oblique");
7594 staticpro (&Qreverse_oblique);
7595 Qreverse_italic = intern ("reverse-italic");
7596 staticpro (&Qreverse_italic);
7597 Qultra_condensed = intern ("ultra-condensed");
7598 staticpro (&Qultra_condensed);
7599 Qextra_condensed = intern ("extra-condensed");
7600 staticpro (&Qextra_condensed);
7601 Qcondensed = intern ("condensed");
7602 staticpro (&Qcondensed);
7603 Qsemi_condensed = intern ("semi-condensed");
7604 staticpro (&Qsemi_condensed);
7605 Qsemi_expanded = intern ("semi-expanded");
7606 staticpro (&Qsemi_expanded);
7607 Qexpanded = intern ("expanded");
7608 staticpro (&Qexpanded);
7609 Qextra_expanded = intern ("extra-expanded");
7610 staticpro (&Qextra_expanded);
7611 Qultra_expanded = intern ("ultra-expanded");
7612 staticpro (&Qultra_expanded);
7613 Qbackground_color = intern ("background-color");
7614 staticpro (&Qbackground_color);
7615 Qforeground_color = intern ("foreground-color");
7616 staticpro (&Qforeground_color);
7617 Qunspecified = intern ("unspecified");
7618 staticpro (&Qunspecified);
7619
7620 Qface_alias = intern ("face-alias");
7621 staticpro (&Qface_alias);
7622 Qdefault = intern ("default");
7623 staticpro (&Qdefault);
7624 Qtool_bar = intern ("tool-bar");
7625 staticpro (&Qtool_bar);
7626 Qregion = intern ("region");
7627 staticpro (&Qregion);
7628 Qfringe = intern ("fringe");
7629 staticpro (&Qfringe);
7630 Qheader_line = intern ("header-line");
7631 staticpro (&Qheader_line);
7632 Qscroll_bar = intern ("scroll-bar");
7633 staticpro (&Qscroll_bar);
7634 Qmenu = intern ("menu");
7635 staticpro (&Qmenu);
7636 Qcursor = intern ("cursor");
7637 staticpro (&Qcursor);
7638 Qborder = intern ("border");
7639 staticpro (&Qborder);
7640 Qmouse = intern ("mouse");
7641 staticpro (&Qmouse);
7642 Qmode_line_inactive = intern ("mode-line-inactive");
7643 staticpro (&Qmode_line_inactive);
7644 Qtty_color_desc = intern ("tty-color-desc");
7645 staticpro (&Qtty_color_desc);
7646 Qtty_color_standard_values = intern ("tty-color-standard-values");
7647 staticpro (&Qtty_color_standard_values);
7648 Qtty_color_by_index = intern ("tty-color-by-index");
7649 staticpro (&Qtty_color_by_index);
7650 Qtty_color_alist = intern ("tty-color-alist");
7651 staticpro (&Qtty_color_alist);
7652 Qscalable_fonts_allowed = intern ("scalable-fonts-allowed");
7653 staticpro (&Qscalable_fonts_allowed);
7654
7655 Vparam_value_alist = Fcons (Fcons (Qnil, Qnil), Qnil);
7656 staticpro (&Vparam_value_alist);
7657 Vface_alternative_font_family_alist = Qnil;
7658 staticpro (&Vface_alternative_font_family_alist);
7659 Vface_alternative_font_registry_alist = Qnil;
7660 staticpro (&Vface_alternative_font_registry_alist);
7661
7662 defsubr (&Sinternal_make_lisp_face);
7663 defsubr (&Sinternal_lisp_face_p);
7664 defsubr (&Sinternal_set_lisp_face_attribute);
7665#ifdef HAVE_WINDOW_SYSTEM
7666 defsubr (&Sinternal_set_lisp_face_attribute_from_resource);
7667#endif
7668 defsubr (&Scolor_gray_p);
7669 defsubr (&Scolor_supported_p);
7670 defsubr (&Sface_attribute_relative_p);
7671 defsubr (&Smerge_face_attribute);
7672 defsubr (&Sinternal_get_lisp_face_attribute);
7673 defsubr (&Sinternal_lisp_face_attribute_values);
7674 defsubr (&Sinternal_lisp_face_equal_p);
7675 defsubr (&Sinternal_lisp_face_empty_p);
7676 defsubr (&Sinternal_copy_lisp_face);
7677 defsubr (&Sinternal_merge_in_global_face);
7678 defsubr (&Sface_font);
7679 defsubr (&Sframe_face_alist);
7680 defsubr (&Stty_supports_face_attributes_p);
7681 defsubr (&Scolor_distance);
7682 defsubr (&Sinternal_set_font_selection_order);
7683 defsubr (&Sinternal_set_alternative_font_family_alist);
7684 defsubr (&Sinternal_set_alternative_font_registry_alist);
7685 defsubr (&Sface_attributes_as_vector);
7686#if GLYPH_DEBUG
7687 defsubr (&Sdump_face);
7688 defsubr (&Sshow_face_resources);
7689#endif /* GLYPH_DEBUG */
7690 defsubr (&Sclear_face_cache);
7691 defsubr (&Stty_suppress_bold_inverse_default_colors);
7692
7693#if defined DEBUG_X_COLORS && defined HAVE_X_WINDOWS
7694 defsubr (&Sdump_colors);
7695#endif
7696
7697 DEFVAR_LISP ("font-list-limit", &Vfont_list_limit,
7698 doc: /* *Limit for font matching.
7699If an integer > 0, font matching functions won't load more than
7700that number of fonts when searching for a matching font. */);
7701 Vfont_list_limit = make_number (DEFAULT_FONT_LIST_LIMIT);
7702
7703 DEFVAR_LISP ("face-new-frame-defaults", &Vface_new_frame_defaults,
7704 doc: /* List of global face definitions (for internal use only.) */);
7705 Vface_new_frame_defaults = Qnil;
7706
7707 DEFVAR_LISP ("face-default-stipple", &Vface_default_stipple,
7708 doc: /* *Default stipple pattern used on monochrome displays.
7709This stipple pattern is used on monochrome displays
7710instead of shades of gray for a face background color.
7711See `set-face-stipple' for possible values for this variable. */);
7712 Vface_default_stipple = build_string ("gray3");
7713
7714 DEFVAR_LISP ("tty-defined-color-alist", &Vtty_defined_color_alist,
7715 doc: /* An alist of defined terminal colors and their RGB values. */);
7716 Vtty_defined_color_alist = Qnil;
7717
7718 DEFVAR_LISP ("scalable-fonts-allowed", &Vscalable_fonts_allowed,
7719 doc: /* Allowed scalable fonts.
7720A value of nil means don't allow any scalable fonts.
7721A value of t means allow any scalable font.
7722Otherwise, value must be a list of regular expressions. A font may be
7723scaled if its name matches a regular expression in the list.
7724Note that if value is nil, a scalable font might still be used, if no
7725other font of the appropriate family and registry is available. */);
7726 Vscalable_fonts_allowed = Qnil;
7727
7728 DEFVAR_LISP ("face-ignored-fonts", &Vface_ignored_fonts,
7729 doc: /* List of ignored fonts.
7730Each element is a regular expression that matches names of fonts to
7731ignore. */);
7732 Vface_ignored_fonts = Qnil;
7733
7734 DEFVAR_LISP ("face-font-rescale-alist", &Vface_font_rescale_alist,
7735 doc: /* Alist of fonts vs the rescaling factors.
7736Each element is a cons (FONT-NAME-PATTERN . RESCALE-RATIO), where
7737FONT-NAME-PATTERN is a regular expression matching a font name, and
7738RESCALE-RATIO is a floating point number to specify how much larger
7739\(or smaller) font we should use. For instance, if a face requests
7740a font of 10 point, we actually use a font of 10 * RESCALE-RATIO point. */);
7741 Vface_font_rescale_alist = Qnil;
7742
7743#ifdef HAVE_WINDOW_SYSTEM
7744 defsubr (&Sbitmap_spec_p);
7745 defsubr (&Sx_list_fonts);
7746 defsubr (&Sinternal_face_x_get_resource);
7747 defsubr (&Sx_family_fonts);
7748 defsubr (&Sx_font_family_list);
7749#endif /* HAVE_WINDOW_SYSTEM */
7750}
7751
7752/* arch-tag: 8a0f7598-5517-408d-9ab3-1da6fcd4c749
7753 (do not change this comment) */