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