Undo the DEFUN->DEFUE change.
[bpt/emacs.git] / src / xfaces.c
CommitLineData
82641697 1/* xfaces.c -- "Face" primitives.
e9bffc61 2
95df8112 3Copyright (C) 1993-1994, 1998-2011 Free Software Foundation, Inc.
7b7739b1 4
c115973b
JB
5This file is part of GNU Emacs.
6
9ec0b715 7GNU Emacs is free software: you can redistribute it and/or modify
c115973b 8it under the terms of the GNU General Public License as published by
9ec0b715
GM
9the Free Software Foundation, either version 3 of the License, or
10(at your option) any later version.
c115973b
JB
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
9ec0b715 18along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
c115973b 19
82641697
GM
20/* New face implementation by Gerd Moellmann <gerd@gnu.org>. */
21
22/* Faces.
23
24 When using Emacs with X, the display style of characters can be
25 changed by defining `faces'. Each face can specify the following
26 display attributes:
27
39506348 28 1. Font family name.
178c5d9c 29
53aaf1e2
KH
30 2. Font foundary name.
31
32 3. Relative proportionate width, aka character set width or set
82641697 33 width (swidth), e.g. `semi-compressed'.
178c5d9c 34
53aaf1e2 35 4. Font height in 1/10pt.
178c5d9c 36
53aaf1e2 37 5. Font weight, e.g. `bold'.
178c5d9c 38
53aaf1e2 39 6. Font slant, e.g. `italic'.
178c5d9c 40
53aaf1e2 41 7. Foreground color.
178c5d9c 42
53aaf1e2 43 8. Background color.
82641697 44
53aaf1e2 45 9. Whether or not characters should be underlined, and in what color.
82641697 46
53aaf1e2 47 10. Whether or not characters should be displayed in inverse video.
82641697 48
53aaf1e2 49 11. A background stipple, a bitmap.
82641697 50
53aaf1e2 51 12. Whether or not characters should be overlined, and in what color.
82641697 52
53aaf1e2 53 13. Whether or not characters should be strike-through, and in what
82641697
GM
54 color.
55
53aaf1e2 56 14. Whether or not a box should be drawn around characters, the box
82641697
GM
57 type, and, for simple boxes, in what color.
58
53aaf1e2 59 15. Font-spec, or nil. This is a special attribute.
2dee4c0b
KH
60
61 A font-spec is a collection of font attributes (specs).
62
63 When this attribute is specified, the face uses a font matching
64 with the specs as is except for what overwritten by the specs in
65 the fontset (see below). In addition, the other font-related
66 attributes (1st thru 5th) are updated from the spec.
67
39506348 68 On the other hand, if one of the other font-related attributes are
2dee4c0b 69 specified, the correspoinding specs in this attribute is set to nil.
39506348 70
2c20458f
MB
71 15. A face name or list of face names from which to inherit attributes.
72
a08332c0
GM
73 16. A specified average font width, which is invisible from Lisp,
74 and is used to ensure that a font specified on the command line,
75 for example, can be matched exactly.
76
2dee4c0b
KH
77 17. A fontset name. This is another special attribute.
78
79 A fontset is a mappings from characters to font-specs, and the
80 specs overwrite the font-spec in the 14th attribute.
81
763bc839 82
82641697
GM
83 Faces are frame-local by nature because Emacs allows to define the
84 same named face (face names are symbols) differently for different
85 frames. Each frame has an alist of face definitions for all named
86 faces. The value of a named face in such an alist is a Lisp vector
39506348
KH
87 with the symbol `face' in slot 0, and a slot for each of the face
88 attributes mentioned above.
82641697
GM
89
90 There is also a global face alist `Vface_new_frame_defaults'. Face
91 definitions from this list are used to initialize faces of newly
92 created frames.
178c5d9c 93
82641697 94 A face doesn't have to specify all attributes. Those not specified
39506348
KH
95 have a value of `unspecified'. Faces specifying all attributes but
96 the 14th are called `fully-specified'.
82641697
GM
97
98
99 Face merging.
100
101 The display style of a given character in the text is determined by
102 combining several faces. This process is called `face merging'.
103 Any aspect of the display style that isn't specified by overlays or
104 text properties is taken from the `default' face. Since it is made
105 sure that the default face is always fully-specified, face merging
106 always results in a fully-specified face.
107
108
109 Face realization.
178c5d9c 110
82641697
GM
111 After all face attributes for a character have been determined by
112 merging faces of that character, that face is `realized'. The
113 realization process maps face attributes to what is physically
114 available on the system where Emacs runs. The result is a
115 `realized face' in form of a struct face which is stored in the
116 face cache of the frame on which it was realized.
117
39506348
KH
118 Face realization is done in the context of the character to display
119 because different fonts may be used for different characters. In
120 other words, for characters that have different font
121 specifications, different realized faces are needed to display
82641697
GM
122 them.
123
39506348
KH
124 Font specification is done by fontsets. See the comment in
125 fontset.c for the details. In the current implementation, all ASCII
126 characters share the same font in a fontset.
127
128 Faces are at first realized for ASCII characters, and, at that
129 time, assigned a specific realized fontset. Hereafter, we call
130 such a face as `ASCII face'. When a face for a multibyte character
131 is realized, it inherits (thus shares) a fontset of an ASCII face
132 that has the same attributes other than font-related ones.
133
763bc839 134 Thus, all realized faces have a realized fontset.
82641697
GM
135
136
137 Unibyte text.
138
39506348
KH
139 Unibyte text (i.e. raw 8-bit characters) is displayed with the same
140 font as ASCII characters. That is because it is expected that
141 unibyte text users specify a font that is suitable both for ASCII
142 and raw 8-bit characters.
143
82641697
GM
144
145 Font selection.
146
147 Font selection tries to find the best available matching font for a
39506348 148 given (character, face) combination.
82641697 149
39506348
KH
150 If the face specifies a fontset name, that fontset determines a
151 pattern for fonts of the given character. If the face specifies a
152 font name or the other font-related attributes, a fontset is
153 realized from the default fontset. In that case, that
154 specification determines a pattern for ASCII characters and the
155 default fontset determines a pattern for multibyte characters.
82641697
GM
156
157 Available fonts on the system on which Emacs runs are then matched
158 against the font pattern. The result of font selection is the best
159 match for the given face attributes in this font list.
160
161 Font selection can be influenced by the user.
162
163 1. The user can specify the relative importance he gives the face
164 attributes width, height, weight, and slant by setting
165 face-font-selection-order (faces.el) to a list of face attribute
166 names. The default is '(:width :height :weight :slant), and means
167 that font selection first tries to find a good match for the font
168 width specified by a face, then---within fonts with that
169 width---tries to find a best match for the specified font height,
170 etc.
171
c824bfbc 172 2. Setting face-font-family-alternatives allows the user to
82641697
GM
173 specify alternative font families to try if a family specified by a
174 face doesn't exist.
175
c824bfbc
KH
176 3. Setting face-font-registry-alternatives allows the user to
177 specify all alternative font registries to try for a face
178 specifying a registry.
179
180 4. Setting face-ignored-fonts allows the user to ignore specific
181 fonts.
182
82641697 183
ec7a10e3 184 Character composition.
39506348
KH
185
186 Usually, the realization process is already finished when Emacs
187 actually reflects the desired glyph matrix on the screen. However,
188 on displaying a composition (sequence of characters to be composed
189 on the screen), a suitable font for the components of the
190 composition is selected and realized while drawing them on the
191 screen, i.e. the realization process is delayed but in principle
192 the same.
82641697 193
178c5d9c 194
82641697
GM
195 Initialization of basic faces.
196
197 The faces `default', `modeline' are considered `basic faces'.
198 When redisplay happens the first time for a newly created frame,
199 basic faces are realized for CHARSET_ASCII. Frame parameters are
200 used to fill in unspecified attributes of the default face. */
201
68c45bf0 202#include <config.h>
6b61353c 203#include <stdio.h>
c115973b
JB
204#include <sys/types.h>
205#include <sys/stat.h>
4d553a13 206#include <stdio.h> /* This needs to be before termchar.h */
d7306fe6 207#include <setjmp.h>
7ee72033 208
c115973b 209#include "lisp.h"
81b39386 210#include "character.h"
a8517066 211#include "charset.h"
9763806e 212#include "keyboard.h"
b5c53576 213#include "frame.h"
428a555e 214#include "termhooks.h"
b5c53576 215
87485d6f 216#ifdef HAVE_X_WINDOWS
c115973b 217#include "xterm.h"
c7ae3284
GM
218#ifdef USE_MOTIF
219#include <Xm/Xm.h>
220#include <Xm/XmStrDefs.h>
221#endif /* USE_MOTIF */
d12d0a9b 222#endif /* HAVE_X_WINDOWS */
82641697 223
87485d6f
MW
224#ifdef MSDOS
225#include "dosfns.h"
226#endif
82641697 227
c3cee013
JR
228#ifdef WINDOWSNT
229#include "w32term.h"
230#include "fontset.h"
231/* Redefine X specifics to W32 equivalents to avoid cluttering the
232 code with #ifdef blocks. */
9763806e 233#undef FRAME_X_DISPLAY_INFO
c3cee013
JR
234#define FRAME_X_DISPLAY_INFO FRAME_W32_DISPLAY_INFO
235#define x_display_info w32_display_info
236#define FRAME_X_FONT_TABLE FRAME_W32_FONT_TABLE
237#define check_x check_w32
c3cee013 238#define GCGraphicsExposures 0
d12d0a9b 239#endif /* WINDOWSNT */
c3cee013 240
edfda783
AR
241#ifdef HAVE_NS
242#include "nsterm.h"
243#undef FRAME_X_DISPLAY_INFO
244#define FRAME_X_DISPLAY_INFO FRAME_NS_DISPLAY_INFO
245#define x_display_info ns_display_info
246#define FRAME_X_FONT_TABLE FRAME_NS_FONT_TABLE
247#define check_x check_ns
edfda783
AR
248#define GCGraphicsExposures 0
249#endif /* HAVE_NS */
250
c115973b 251#include "buffer.h"
f211082d 252#include "dispextern.h"
357f32fc 253#include "blockinput.h"
b6d40e46 254#include "window.h"
bde7c500 255#include "intervals.h"
28d440ab 256#include "termchar.h"
c115973b 257
426b2119 258#include "font.h"
ad00e1a3 259#ifdef HAVE_WINDOW_SYSTEM
2dee4c0b
KH
260#include "fontset.h"
261#endif /* HAVE_WINDOW_SYSTEM */
426b2119 262
87485d6f 263#ifdef HAVE_X_WINDOWS
82641697
GM
264
265/* Compensate for a bug in Xos.h on some systems, on which it requires
657070ac
JB
266 time.h. On some such systems, Xos.h tries to redefine struct
267 timeval and struct timezone if USG is #defined while it is
268 #included. */
657070ac 269
82641697 270#ifdef XOS_NEEDS_TIME_H
e11d186d 271#include <time.h>
657070ac
JB
272#undef USG
273#include <X11/Xos.h>
274#define USG
e11d186d 275#define __TIMEVAL__
82641697
GM
276#else /* not XOS_NEEDS_TIME_H */
277#include <X11/Xos.h>
278#endif /* not XOS_NEEDS_TIME_H */
e11d186d 279
82641697 280#endif /* HAVE_X_WINDOWS */
7a4d2269 281
82641697 282#include <ctype.h>
c115973b 283
c660ce4e
GM
284/* Number of pt per inch (from the TeXbook). */
285
286#define PT_PER_INCH 72.27
287
82641697
GM
288/* Non-zero if face attribute ATTR is unspecified. */
289
290#define UNSPECIFIEDP(ATTR) EQ ((ATTR), Qunspecified)
291
2ff10663
CY
292/* Non-zero if face attribute ATTR is `ignore-defface'. */
293
294#define IGNORE_DEFFACE_P(ATTR) EQ ((ATTR), Qignore_defface)
295
82641697
GM
296/* Value is the number of elements of VECTOR. */
297
298#define DIM(VECTOR) (sizeof (VECTOR) / sizeof *(VECTOR))
299
178c5d9c 300/* Size of hash table of realized faces in face caches (should be a
82641697
GM
301 prime number). */
302
303#define FACE_CACHE_BUCKETS_SIZE 1001
304
305/* Keyword symbols used for face attribute names. */
306
955cbe7b
PE
307Lisp_Object QCfamily, QCheight, QCweight, QCslant;
308static Lisp_Object QCunderline;
309static Lisp_Object QCinverse_video, QCstipple;
310Lisp_Object QCforeground, QCbackground;
311Lisp_Object QCwidth;
312static Lisp_Object QCfont, QCbold, QCitalic;
313static Lisp_Object QCreverse_video;
314static Lisp_Object QCoverline, QCstrike_through, QCbox, QCinherit;
315static Lisp_Object QCfontset;
82641697
GM
316
317/* Symbols used for attribute values. */
318
955cbe7b
PE
319Lisp_Object Qnormal;
320static Lisp_Object Qbold, Qultra_light, Qextra_light, Qlight;
321static Lisp_Object Qsemi_light, Qsemi_bold, Qextra_bold, Qultra_bold;
322static Lisp_Object Qoblique, Qitalic, Qreverse_oblique, Qreverse_italic;
323static Lisp_Object Qultra_condensed, Qextra_condensed, Qcondensed;
324static Lisp_Object Qsemi_condensed, Qsemi_expanded, Qexpanded, Qextra_expanded;
325static Lisp_Object Qultra_expanded;
326static Lisp_Object Qreleased_button, Qpressed_button;
327static Lisp_Object QCstyle, QCcolor, QCline_width;
328static Lisp_Object Qunspecified;
329static Lisp_Object Qignore_defface;
ef917393
EZ
330
331char unspecified_fg[] = "unspecified-fg", unspecified_bg[] = "unspecified-bg";
82641697 332
92610620 333/* The name of the function to call when the background of the frame
c20577bc 334 has changed, frame_set_background_mode. */
92610620 335
c20577bc 336Lisp_Object Qframe_set_background_mode;
92610620 337
82641697
GM
338/* Names of basic faces. */
339
955cbe7b
PE
340Lisp_Object Qdefault, Qtool_bar, Qfringe;
341static Lisp_Object Qregion;
342Lisp_Object Qheader_line, Qscroll_bar, Qcursor;
343static Lisp_Object Qborder, Qmouse, Qmenu;
344Lisp_Object Qmode_line_inactive;
345static Lisp_Object Qvertical_border;
8bd201d6 346
92610620
GM
347/* The symbol `face-alias'. A symbols having that property is an
348 alias for another face. Value of the property is the name of
349 the aliased face. */
350
955cbe7b 351static Lisp_Object Qface_alias;
92610620 352
82641697
GM
353/* Alist of alternative font families. Each element is of the form
354 (FAMILY FAMILY1 FAMILY2 ...). If fonts of FAMILY can't be loaded,
355 try FAMILY1, then FAMILY2, ... */
356
357Lisp_Object Vface_alternative_font_family_alist;
358
32fcc231
GM
359/* Alist of alternative font registries. Each element is of the form
360 (REGISTRY REGISTRY1 REGISTRY2...). If fonts of REGISTRY can't be
361 loaded, try REGISTRY1, then REGISTRY2, ... */
362
363Lisp_Object Vface_alternative_font_registry_alist;
364
82641697
GM
365/* Allowed scalable fonts. A value of nil means don't allow any
366 scalable fonts. A value of t means allow the use of any scalable
367 font. Otherwise, value must be a list of regular expressions. A
368 font may be scaled if its name matches a regular expression in the
369 list. */
370
955cbe7b 371static Lisp_Object Qscalable_fonts_allowed;
c824bfbc 372
057df17c
GM
373#define DEFAULT_FONT_LIST_LIMIT 100
374
82641697
GM
375/* The symbols `foreground-color' and `background-color' which can be
376 used as part of a `face' property. This is for compatibility with
377 Emacs 20.2. */
378
379Lisp_Object Qforeground_color, Qbackground_color;
380
381/* The symbols `face' and `mouse-face' used as text properties. */
7b7739b1 382
ff83dbb1 383Lisp_Object Qface;
82641697 384
46b00436
KS
385/* Property for basic faces which other faces cannot inherit. */
386
955cbe7b 387static Lisp_Object Qface_no_inherit;
46b00436 388
82641697
GM
389/* Error symbol for wrong_type_argument in load_pixmap. */
390
955cbe7b 391static Lisp_Object Qbitmap_spec_p;
f211082d 392
82641697 393/* The next ID to assign to Lisp faces. */
cb637678 394
82641697 395static int next_lface_id;
c115973b 396
82641697 397/* A vector mapping Lisp face Id's to face names. */
c115973b 398
82641697
GM
399static Lisp_Object *lface_id_to_name;
400static int lface_id_to_name_size;
c115973b 401
ae4b4ba5
GM
402/* TTY color-related functions (defined in tty-colors.el). */
403
955cbe7b 404static Lisp_Object Qtty_color_desc, Qtty_color_by_index, Qtty_color_standard_values;
82641697 405
ae4b4ba5
GM
406/* The name of the function used to compute colors on TTYs. */
407
955cbe7b 408static Lisp_Object Qtty_color_alist;
ae4b4ba5 409
82641697
GM
410/* Counter for calls to clear_face_cache. If this counter reaches
411 CLEAR_FONT_TABLE_COUNT, and a frame has more than
412 CLEAR_FONT_TABLE_NFONTS load, unused fonts are freed. */
413
414static int clear_font_table_count;
415#define CLEAR_FONT_TABLE_COUNT 100
416#define CLEAR_FONT_TABLE_NFONTS 10
417
418/* Non-zero means face attributes have been changed since the last
419 redisplay. Used in redisplay_internal. */
420
421int face_change_count;
422
a4a76b61
GM
423/* Non-zero means don't display bold text if a face's foreground
424 and background colors are the inverse of the default colors of the
425 display. This is a kluge to suppress `bold black' foreground text
426 which is hard to read on an LCD monitor. */
427
435f4c28 428static int tty_suppress_bold_inverse_default_colors_p;
a4a76b61 429
dbc968b8
GM
430/* A list of the form `((x . y))' used to avoid consing in
431 Finternal_set_lisp_face_attribute. */
432
433static Lisp_Object Vparam_value_alist;
434
82641697
GM
435/* The total number of colors currently allocated. */
436
437#if GLYPH_DEBUG
438static int ncolors_allocated;
439static int npixmaps_allocated;
440static int ngcs;
441#endif
442
ceeda019
GM
443/* Non-zero means the definition of the `menu' face for new frames has
444 been changed. */
445
435f4c28 446static int menu_face_changed_default;
82641697
GM
447
448\f
449/* Function prototypes. */
450
82641697 451struct table_entry;
a0a23346 452struct named_merge_point;
82641697 453
f57e2426
J
454static void map_tty_color (struct frame *, struct face *,
455 enum lface_attribute_index, int *);
456static Lisp_Object resolve_face_name (Lisp_Object, int);
f57e2426
J
457static void set_font_frame_param (Lisp_Object, Lisp_Object);
458static int get_lface_attributes (struct frame *, Lisp_Object, Lisp_Object *,
459 int, struct named_merge_point *);
460static int load_pixmap (struct frame *, Lisp_Object, unsigned *, unsigned *);
461static struct frame *frame_or_selected_frame (Lisp_Object, int);
462static void load_face_colors (struct frame *, struct face *, Lisp_Object *);
463static void free_face_colors (struct frame *, struct face *);
eec47d6b 464static int face_color_gray_p (struct frame *, const char *);
f57e2426
J
465static struct face *realize_face (struct face_cache *, Lisp_Object *,
466 int);
467static struct face *realize_non_ascii_face (struct frame *, Lisp_Object,
468 struct face *);
469static struct face *realize_x_face (struct face_cache *, Lisp_Object *);
470static struct face *realize_tty_face (struct face_cache *, Lisp_Object *);
471static int realize_basic_faces (struct frame *);
472static int realize_default_face (struct frame *);
473static void realize_named_face (struct frame *, Lisp_Object, int);
474static int lface_fully_specified_p (Lisp_Object *);
475static int lface_equal_p (Lisp_Object *, Lisp_Object *);
476static unsigned hash_string_case_insensitive (Lisp_Object);
477static unsigned lface_hash (Lisp_Object *);
478static int lface_same_font_attributes_p (Lisp_Object *, Lisp_Object *);
479static struct face_cache *make_face_cache (struct frame *);
480static void clear_face_gcs (struct face_cache *);
481static void free_face_cache (struct face_cache *);
482static int face_fontset (Lisp_Object *);
483static void merge_face_vectors (struct frame *, Lisp_Object *, Lisp_Object*,
484 struct named_merge_point *);
485static int merge_face_ref (struct frame *, Lisp_Object, Lisp_Object *,
486 int, struct named_merge_point *);
487static int set_lface_from_font (struct frame *, Lisp_Object, Lisp_Object,
488 int);
489static Lisp_Object lface_from_face_name (struct frame *, Lisp_Object, int);
490static struct face *make_realized_face (Lisp_Object *);
491static void cache_face (struct face_cache *, struct face *, unsigned);
492static void uncache_face (struct face_cache *, struct face *);
82641697 493
c3cee013 494#ifdef HAVE_WINDOW_SYSTEM
82641697 495
f57e2426
J
496static GC x_create_gc (struct frame *, unsigned long, XGCValues *);
497static void x_free_gc (struct frame *, GC);
82641697 498
bce72079 499#ifdef USE_X_TOOLKIT
f57e2426 500static void x_update_menu_appearance (struct frame *);
9180dc8c 501
f57e2426 502extern void free_frame_menubar (struct frame *);
bce72079
GM
503#endif /* USE_X_TOOLKIT */
504
c3cee013 505#endif /* HAVE_WINDOW_SYSTEM */
c115973b 506
cb637678 507\f
82641697
GM
508/***********************************************************************
509 Utilities
510 ***********************************************************************/
c115973b 511
87485d6f 512#ifdef HAVE_X_WINDOWS
cb637678 513
a435fc2a
GM
514#ifdef DEBUG_X_COLORS
515
516/* The following is a poor mans infrastructure for debugging X color
517 allocation problems on displays with PseudoColor-8. Some X servers
518 like 3.3.5 XF86_SVGA with Matrox cards apparently don't implement
519 color reference counts completely so that they don't signal an
520 error when a color is freed whose reference count is already 0.
521 Other X servers do. To help me debug this, the following code
522 implements a simple reference counting schema of its own, for a
523 single display/screen. --gerd. */
524
525/* Reference counts for pixel colors. */
526
527int color_count[256];
528
529/* Register color PIXEL as allocated. */
530
531void
532register_color (pixel)
533 unsigned long pixel;
534{
535 xassert (pixel < 256);
536 ++color_count[pixel];
537}
538
539
540/* Register color PIXEL as deallocated. */
541
542void
543unregister_color (pixel)
544 unsigned long pixel;
545{
546 xassert (pixel < 256);
547 if (color_count[pixel] > 0)
548 --color_count[pixel];
549 else
550 abort ();
551}
552
553
554/* Register N colors from PIXELS as deallocated. */
555
556void
557unregister_colors (pixels, n)
558 unsigned long *pixels;
559 int n;
560{
561 int i;
562 for (i = 0; i < n; ++i)
563 unregister_color (pixels[i]);
564}
565
08dc08dc 566
a7ca3326 567DEFUN ("dump-colors", Fdump_colors, Sdump_colors, 0, 0, 0,
7ee72033 568 doc: /* Dump currently allocated colors to stderr. */)
5842a27b 569 (void)
08dc08dc
GM
570{
571 int i, n;
572
573 fputc ('\n', stderr);
178c5d9c 574
08dc08dc
GM
575 for (i = n = 0; i < sizeof color_count / sizeof color_count[0]; ++i)
576 if (color_count[i])
577 {
578 fprintf (stderr, "%3d: %5d", i, color_count[i]);
579 ++n;
580 if (n % 5 == 0)
581 fputc ('\n', stderr);
582 else
583 fputc ('\t', stderr);
584 }
585
586 if (n % 5 != 0)
587 fputc ('\n', stderr);
588 return Qnil;
589}
590
a435fc2a
GM
591#endif /* DEBUG_X_COLORS */
592
d12d0a9b 593
1f847cf8
GM
594/* Free colors used on frame F. PIXELS is an array of NPIXELS pixel
595 color values. Interrupt input must be blocked when this function
596 is called. */
597
598void
971de7fb 599x_free_colors (struct frame *f, long unsigned int *pixels, int npixels)
1f847cf8
GM
600{
601 int class = FRAME_X_DISPLAY_INFO (f)->visual->class;
602
603 /* If display has an immutable color map, freeing colors is not
604 necessary and some servers don't allow it. So don't do it. */
605 if (class != StaticColor && class != StaticGray && class != TrueColor)
606 {
a435fc2a 607#ifdef DEBUG_X_COLORS
08dc08dc 608 unregister_colors (pixels, npixels);
a435fc2a 609#endif
513c5806
GM
610 XFreeColors (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f),
611 pixels, npixels, 0);
08dc08dc
GM
612 }
613}
614
615
435f4c28
PE
616#ifdef USE_X_TOOLKIT
617
08dc08dc
GM
618/* Free colors used on frame F. PIXELS is an array of NPIXELS pixel
619 color values. Interrupt input must be blocked when this function
620 is called. */
621
622void
971de7fb 623x_free_dpy_colors (Display *dpy, Screen *screen, Colormap cmap, long unsigned int *pixels, int npixels)
08dc08dc
GM
624{
625 struct x_display_info *dpyinfo = x_display_info_for_display (dpy);
626 int class = dpyinfo->visual->class;
627
628 /* If display has an immutable color map, freeing colors is not
629 necessary and some servers don't allow it. So don't do it. */
630 if (class != StaticColor && class != StaticGray && class != TrueColor)
631 {
a435fc2a 632#ifdef DEBUG_X_COLORS
08dc08dc 633 unregister_colors (pixels, npixels);
a435fc2a 634#endif
513c5806 635 XFreeColors (dpy, cmap, pixels, npixels, 0);
1f847cf8
GM
636 }
637}
435f4c28 638#endif /* USE_X_TOOLKIT */
08dc08dc 639
82641697
GM
640/* Create and return a GC for use on frame F. GC values and mask
641 are given by XGCV and MASK. */
642
643static INLINE GC
971de7fb 644x_create_gc (struct frame *f, long unsigned int mask, XGCValues *xgcv)
c115973b
JB
645{
646 GC gc;
82641697
GM
647 BLOCK_INPUT;
648 gc = XCreateGC (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), mask, xgcv);
649 UNBLOCK_INPUT;
650 IF_DEBUG (++ngcs);
651 return gc;
652}
c115973b 653
42120bc7 654
82641697
GM
655/* Free GC which was used on frame F. */
656
657static INLINE void
971de7fb 658x_free_gc (struct frame *f, GC gc)
82641697 659{
ed0c79c6 660 eassert (interrupt_input_blocked);
a6d8ba25 661 IF_DEBUG (xassert (--ngcs >= 0));
82641697 662 XFreeGC (FRAME_X_DISPLAY (f), gc);
82641697 663}
660ed669 664
82641697 665#endif /* HAVE_X_WINDOWS */
660ed669 666
c3cee013
JR
667#ifdef WINDOWSNT
668/* W32 emulation of GCs */
669
670static INLINE GC
7c3320d8 671x_create_gc (struct frame *f, unsigned long mask, XGCValues *xgcv)
c3cee013
JR
672{
673 GC gc;
674 BLOCK_INPUT;
675 gc = XCreateGC (NULL, FRAME_W32_WINDOW (f), mask, xgcv);
676 UNBLOCK_INPUT;
677 IF_DEBUG (++ngcs);
678 return gc;
679}
680
681
682/* Free GC which was used on frame F. */
683
684static INLINE void
7c3320d8 685x_free_gc (struct frame *f, GC gc)
c3cee013 686{
a6d8ba25 687 IF_DEBUG (xassert (--ngcs >= 0));
c3cee013 688 xfree (gc);
c3cee013
JR
689}
690
691#endif /* WINDOWSNT */
660ed669 692
edfda783
AR
693#ifdef HAVE_NS
694/* NS emulation of GCs */
695
696static INLINE GC
3d608a86
J
697x_create_gc (struct frame *f,
698 unsigned long mask,
699 XGCValues *xgcv)
edfda783
AR
700{
701 GC gc = xmalloc (sizeof (*gc));
702 if (gc)
72af86bd 703 memcpy (gc, xgcv, sizeof (XGCValues));
edfda783
AR
704 return gc;
705}
706
707static INLINE void
3d608a86 708x_free_gc (struct frame *f, GC gc)
edfda783 709{
5f445726 710 xfree (gc);
edfda783
AR
711}
712#endif /* HAVE_NS */
713
05131107
JR
714/* Like strcasecmp/stricmp. Used to compare parts of font names which
715 are in ISO8859-1. */
82641697
GM
716
717int
25a48bd0 718xstrcasecmp (const char *s1, const char *s2)
82641697
GM
719{
720 while (*s1 && *s2)
95887807 721 {
25a48bd0
PE
722 unsigned char b1 = *s1;
723 unsigned char b2 = *s2;
724 unsigned char c1 = tolower (b1);
725 unsigned char c2 = tolower (b2);
82641697
GM
726 if (c1 != c2)
727 return c1 < c2 ? -1 : 1;
728 ++s1, ++s2;
95887807 729 }
cd0bb842 730
82641697
GM
731 if (*s1 == 0)
732 return *s2 == 0 ? 0 : -1;
733 return 1;
734}
660ed669 735
660ed669 736
c0617987
GM
737/* If FRAME is nil, return a pointer to the selected frame.
738 Otherwise, check that FRAME is a live frame, and return a pointer
739 to it. NPARAM is the parameter number of FRAME, for
740 CHECK_LIVE_FRAME. This is here because it's a frequent pattern in
741 Lisp function definitions. */
82641697
GM
742
743static INLINE struct frame *
971de7fb 744frame_or_selected_frame (Lisp_Object frame, int nparam)
82641697 745{
82641697 746 if (NILP (frame))
c0617987 747 frame = selected_frame;
178c5d9c 748
b7826503 749 CHECK_LIVE_FRAME (frame);
c0617987 750 return XFRAME (frame);
42120bc7 751}
82641697 752
42120bc7 753\f
82641697
GM
754/***********************************************************************
755 Frames and faces
756 ***********************************************************************/
cd0bb842 757
82641697 758/* Initialize face cache and basic faces for frame F. */
cb637678 759
82641697 760void
971de7fb 761init_frame_faces (struct frame *f)
cb637678 762{
82641697
GM
763 /* Make a face cache, if F doesn't have one. */
764 if (FRAME_FACE_CACHE (f) == NULL)
765 FRAME_FACE_CACHE (f) = make_face_cache (f);
178c5d9c 766
c3cee013 767#ifdef HAVE_WINDOW_SYSTEM
82641697 768 /* Make the image cache. */
c3cee013 769 if (FRAME_WINDOW_P (f))
82641697 770 {
91c37b7e
CY
771 /* We initialize the image cache when creating the first frame
772 on a terminal, and not during terminal creation. This way,
773 `x-open-connection' on a tty won't create an image cache. */
354884c4 774 if (FRAME_IMAGE_CACHE (f) == NULL)
354884c4
SM
775 FRAME_IMAGE_CACHE (f) = make_image_cache ();
776 ++FRAME_IMAGE_CACHE (f)->refcount;
82641697 777 }
c3cee013 778#endif /* HAVE_WINDOW_SYSTEM */
cb637678 779
178c5d9c 780 /* Realize basic faces. Must have enough information in frame
82641697
GM
781 parameters to realize basic faces at this point. */
782#ifdef HAVE_X_WINDOWS
783 if (!FRAME_X_P (f) || FRAME_X_WINDOW (f))
c3cee013
JR
784#endif
785#ifdef WINDOWSNT
786 if (!FRAME_WINDOW_P (f) || FRAME_W32_WINDOW (f))
f00691a3 787#endif
edfda783
AR
788#ifdef HAVE_NS
789 if (!FRAME_NS_P (f) || FRAME_NS_WINDOW (f))
82641697
GM
790#endif
791 if (!realize_basic_faces (f))
edfda783 792 abort ();
82641697 793}
cb637678 794
cb637678 795
e2749141 796/* Free face cache of frame F. Called from delete_frame. */
cb637678 797
82641697 798void
971de7fb 799free_frame_faces (struct frame *f)
cb637678 800{
82641697 801 struct face_cache *face_cache = FRAME_FACE_CACHE (f);
178c5d9c 802
82641697
GM
803 if (face_cache)
804 {
805 free_face_cache (face_cache);
806 FRAME_FACE_CACHE (f) = NULL;
807 }
660ed669 808
c3cee013
JR
809#ifdef HAVE_WINDOW_SYSTEM
810 if (FRAME_WINDOW_P (f))
195f798e 811 {
354884c4 812 struct image_cache *image_cache = FRAME_IMAGE_CACHE (f);
82641697 813 if (image_cache)
195f798e 814 {
82641697
GM
815 --image_cache->refcount;
816 if (image_cache->refcount == 0)
817 free_image_cache (f);
195f798e
RS
818 }
819 }
c3cee013 820#endif /* HAVE_WINDOW_SYSTEM */
cb637678
JB
821}
822
82641697 823
8bd201d6
GM
824/* Clear face caches, and recompute basic faces for frame F. Call
825 this after changing frame parameters on which those faces depend,
826 or when realized faces have been freed due to changing attributes
827 of named faces. */
82641697
GM
828
829void
971de7fb 830recompute_basic_faces (struct frame *f)
cb637678 831{
82641697
GM
832 if (FRAME_FACE_CACHE (f))
833 {
8bd201d6 834 clear_face_cache (0);
18df9369
GM
835 if (!realize_basic_faces (f))
836 abort ();
82641697
GM
837 }
838}
cb637678 839
cb637678 840
82641697
GM
841/* Clear the face caches of all frames. CLEAR_FONTS_P non-zero means
842 try to free unused fonts, too. */
cb637678 843
adfea139 844void
971de7fb 845clear_face_cache (int clear_fonts_p)
cb637678 846{
c3cee013 847#ifdef HAVE_WINDOW_SYSTEM
82641697 848 Lisp_Object tail, frame;
828e66d1 849
82641697
GM
850 if (clear_fonts_p
851 || ++clear_font_table_count == CLEAR_FONT_TABLE_COUNT)
828e66d1 852 {
2dee4c0b
KH
853#if 0
854 /* Not yet implemented. */
855 clear_font_cache (frame);
856#endif
857
82641697
GM
858 /* From time to time see if we can unload some fonts. This also
859 frees all realized faces on all frames. Fonts needed by
860 faces will be loaded again when faces are realized again. */
861 clear_font_table_count = 0;
195f798e 862
82641697 863 FOR_EACH_FRAME (tail, frame)
195f798e 864 {
d5641fc5 865 struct frame *f = XFRAME (frame);
c3cee013 866 if (FRAME_WINDOW_P (f)
82641697 867 && FRAME_X_DISPLAY_INFO (f)->n_fonts > CLEAR_FONT_TABLE_NFONTS)
d5641fc5 868 free_all_realized_faces (frame);
82641697
GM
869 }
870 }
871 else
872 {
873 /* Clear GCs of realized faces. */
874 FOR_EACH_FRAME (tail, frame)
875 {
071048a3 876 struct frame *f = XFRAME (frame);
c3cee013 877 if (FRAME_WINDOW_P (f))
82641697 878 clear_face_gcs (FRAME_FACE_CACHE (f));
195f798e 879 }
a2bc5bdd 880 clear_image_caches (Qnil);
828e66d1 881 }
c3cee013 882#endif /* HAVE_WINDOW_SYSTEM */
cd0bb842
RS
883}
884
82641697 885
a7ca3326 886DEFUN ("clear-face-cache", Fclear_face_cache, Sclear_face_cache, 0, 1, 0,
7ee72033
MB
887 doc: /* Clear face caches on all frames.
888Optional THOROUGHLY non-nil means try to free unused fonts, too. */)
5842a27b 889 (Lisp_Object thoroughly)
cd0bb842 890{
6a3f48c7 891 clear_face_cache (!NILP (thoroughly));
ae4b4ba5
GM
892 ++face_change_count;
893 ++windows_or_buffers_changed;
82641697
GM
894 return Qnil;
895}
896
82641697
GM
897\f
898/***********************************************************************
899 X Pixmaps
900 ***********************************************************************/
901
c3cee013 902#ifdef HAVE_WINDOW_SYSTEM
82641697 903
fef04523 904DEFUN ("bitmap-spec-p", Fbitmap_spec_p, Sbitmap_spec_p, 1, 1, 0,
7ee72033 905 doc: /* Value is non-nil if OBJECT is a valid bitmap specification.
228299fa
GM
906A bitmap specification is either a string, a file name, or a list
907\(WIDTH HEIGHT DATA) where WIDTH is the pixel width of the bitmap,
908HEIGHT is its height, and DATA is a string containing the bits of
909the pixmap. Bits are stored row by row, each row occupies
7ee72033 910\(WIDTH + 7)/8 bytes. */)
5842a27b 911 (Lisp_Object object)
82641697 912{
c7ae3284 913 int pixmap_p = 0;
178c5d9c 914
c7ae3284
GM
915 if (STRINGP (object))
916 /* If OBJECT is a string, it's a file name. */
917 pixmap_p = 1;
918 else if (CONSP (object))
919 {
920 /* Otherwise OBJECT must be (WIDTH HEIGHT DATA), WIDTH and
921 HEIGHT must be integers > 0, and DATA must be string large
922 enough to hold a bitmap of the specified size. */
923 Lisp_Object width, height, data;
924
925 height = width = data = Qnil;
178c5d9c 926
c7ae3284
GM
927 if (CONSP (object))
928 {
929 width = XCAR (object);
930 object = XCDR (object);
931 if (CONSP (object))
932 {
933 height = XCAR (object);
934 object = XCDR (object);
935 if (CONSP (object))
936 data = XCAR (object);
937 }
938 }
cd0bb842 939
c7ae3284
GM
940 if (NATNUMP (width) && NATNUMP (height) && STRINGP (data))
941 {
942 int bytes_per_row = ((XFASTINT (width) + BITS_PER_CHAR - 1)
943 / BITS_PER_CHAR);
d5db4077 944 if (SBYTES (data) >= bytes_per_row * XINT (height))
c7ae3284
GM
945 pixmap_p = 1;
946 }
947 }
948
949 return pixmap_p ? Qt : Qnil;
cd0bb842
RS
950}
951
cd0bb842 952
82641697
GM
953/* Load a bitmap according to NAME (which is either a file name or a
954 pixmap spec) for use on frame F. Value is the bitmap_id (see
955 xfns.c). If NAME is nil, return with a bitmap id of zero. If
956 bitmap cannot be loaded, display a message saying so, and return
957 zero. Store the bitmap width in *W_PTR and its height in *H_PTR,
958 if these pointers are not null. */
cd0bb842 959
82641697 960static int
971de7fb 961load_pixmap (FRAME_PTR f, Lisp_Object name, unsigned int *w_ptr, unsigned int *h_ptr)
cd0bb842
RS
962{
963 int bitmap_id;
cd0bb842
RS
964
965 if (NILP (name))
82641697 966 return 0;
cd0bb842 967
d5ddd1a3 968 CHECK_TYPE (!NILP (Fbitmap_spec_p (name)), Qbitmap_spec_p, name);
cd0bb842
RS
969
970 BLOCK_INPUT;
cd0bb842
RS
971 if (CONSP (name))
972 {
973 /* Decode a bitmap spec into a bitmap. */
974
975 int h, w;
976 Lisp_Object bits;
977
978 w = XINT (Fcar (name));
979 h = XINT (Fcar (Fcdr (name)));
980 bits = Fcar (Fcdr (Fcdr (name)));
981
42a5b22f 982 bitmap_id = x_create_bitmap_from_data (f, SSDATA (bits),
cd0bb842
RS
983 w, h);
984 }
985 else
986 {
987 /* It must be a string -- a file name. */
988 bitmap_id = x_create_bitmap_from_file (f, name);
989 }
990 UNBLOCK_INPUT;
991
7812a96f 992 if (bitmap_id < 0)
82641697 993 {
2eb582ae 994 add_to_log ("Invalid or undefined bitmap `%s'", name, Qnil);
82641697 995 bitmap_id = 0;
cd0bb842 996
82641697
GM
997 if (w_ptr)
998 *w_ptr = 0;
999 if (h_ptr)
1000 *h_ptr = 0;
1001 }
1002 else
1003 {
1004#if GLYPH_DEBUG
1005 ++npixmaps_allocated;
1006#endif
1007 if (w_ptr)
1008 *w_ptr = x_bitmap_width (f, bitmap_id);
1009
1010 if (h_ptr)
1011 *h_ptr = x_bitmap_height (f, bitmap_id);
1012 }
cd0bb842
RS
1013
1014 return bitmap_id;
cb637678 1015}
87485d6f 1016
c3cee013 1017#endif /* HAVE_WINDOW_SYSTEM */
82641697 1018
87485d6f 1019
82641697 1020\f
82641697
GM
1021/***********************************************************************
1022 X Colors
1023 ***********************************************************************/
1024
b35df831
MB
1025/* Parse RGB_LIST, and fill in the RGB fields of COLOR.
1026 RGB_LIST should contain (at least) 3 lisp integers.
1027 Return 0 if there's a problem with RGB_LIST, otherwise return 1. */
1028
1029static int
971de7fb 1030parse_rgb_list (Lisp_Object rgb_list, XColor *color)
b35df831
MB
1031{
1032#define PARSE_RGB_LIST_FIELD(field) \
1033 if (CONSP (rgb_list) && INTEGERP (XCAR (rgb_list))) \
1034 { \
1035 color->field = XINT (XCAR (rgb_list)); \
1036 rgb_list = XCDR (rgb_list); \
1037 } \
1038 else \
1039 return 0;
1040
1041 PARSE_RGB_LIST_FIELD (red);
1042 PARSE_RGB_LIST_FIELD (green);
1043 PARSE_RGB_LIST_FIELD (blue);
1044
1045 return 1;
1046}
1047
1048
1049/* Lookup on frame F the color described by the lisp string COLOR.
1050 The resulting tty color is returned in TTY_COLOR; if STD_COLOR is
1051 non-zero, then the `standard' definition of the same color is
1052 returned in it. */
1053
1054static int
971de7fb 1055tty_lookup_color (struct frame *f, Lisp_Object color, XColor *tty_color, XColor *std_color)
b35df831
MB
1056{
1057 Lisp_Object frame, color_desc;
1058
1059 if (!STRINGP (color) || NILP (Ffboundp (Qtty_color_desc)))
1060 return 0;
1061
1062 XSETFRAME (frame, f);
1063
1064 color_desc = call2 (Qtty_color_desc, color, frame);
1065 if (CONSP (color_desc) && CONSP (XCDR (color_desc)))
1066 {
1067 Lisp_Object rgb;
1068
1069 if (! INTEGERP (XCAR (XCDR (color_desc))))
1070 return 0;
1071
1072 tty_color->pixel = XINT (XCAR (XCDR (color_desc)));
1073
1074 rgb = XCDR (XCDR (color_desc));
1075 if (! parse_rgb_list (rgb, tty_color))
1076 return 0;
1077
1078 /* Should we fill in STD_COLOR too? */
1079 if (std_color)
1080 {
1081 /* Default STD_COLOR to the same as TTY_COLOR. */
1082 *std_color = *tty_color;
1083
1084 /* Do a quick check to see if the returned descriptor is
1085 actually _exactly_ equal to COLOR, otherwise we have to
1086 lookup STD_COLOR separately. If it's impossible to lookup
1087 a standard color, we just give up and use TTY_COLOR. */
1088 if ((!STRINGP (XCAR (color_desc))
1089 || NILP (Fstring_equal (color, XCAR (color_desc))))
51f86bfc 1090 && !NILP (Ffboundp (Qtty_color_standard_values)))
b35df831
MB
1091 {
1092 /* Look up STD_COLOR separately. */
1093 rgb = call1 (Qtty_color_standard_values, color);
1094 if (! parse_rgb_list (rgb, std_color))
1095 return 0;
1096 }
1097 }
1098
1099 return 1;
1100 }
1101 else if (NILP (Fsymbol_value (intern ("tty-defined-color-alist"))))
1102 /* We were called early during startup, and the colors are not
1103 yet set up in tty-defined-color-alist. Don't return a failure
1104 indication, since this produces the annoying "Unable to
1105 load color" messages in the *Messages* buffer. */
1106 return 1;
1107 else
1108 /* tty-color-desc seems to have returned a bad value. */
1109 return 0;
1110}
1111
2d764c78 1112/* A version of defined_color for non-X frames. */
08dc08dc 1113
6b463e58 1114static int
eec47d6b
DN
1115tty_defined_color (struct frame *f, const char *color_name,
1116 XColor *color_def, int alloc)
2d764c78 1117{
2d764c78
EZ
1118 int status = 1;
1119
b35df831 1120 /* Defaults. */
177c0ea7 1121 color_def->pixel = FACE_TTY_DEFAULT_COLOR;
b35df831
MB
1122 color_def->red = 0;
1123 color_def->blue = 0;
1124 color_def->green = 0;
a61c12d5 1125
b35df831 1126 if (*color_name)
3062711f 1127 status = tty_lookup_color (f, build_string (color_name), color_def, NULL);
b35df831
MB
1128
1129 if (color_def->pixel == FACE_TTY_DEFAULT_COLOR && *color_name)
f9d2fdc4
EZ
1130 {
1131 if (strcmp (color_name, "unspecified-fg") == 0)
b35df831 1132 color_def->pixel = FACE_TTY_DEFAULT_FG_COLOR;
f9d2fdc4 1133 else if (strcmp (color_name, "unspecified-bg") == 0)
b35df831 1134 color_def->pixel = FACE_TTY_DEFAULT_BG_COLOR;
f9d2fdc4
EZ
1135 }
1136
b35df831 1137 if (color_def->pixel != FACE_TTY_DEFAULT_COLOR)
3b451f74
EZ
1138 status = 1;
1139
2d764c78
EZ
1140 return status;
1141}
1142
08dc08dc
GM
1143
1144/* Decide if color named COLOR_NAME is valid for the display
1145 associated with the frame F; if so, return the rgb values in
1146 COLOR_DEF. If ALLOC is nonzero, allocate a new colormap cell.
2d764c78
EZ
1147
1148 This does the right thing for any type of frame. */
08dc08dc 1149
435f4c28 1150static int
eec47d6b 1151defined_color (struct frame *f, const char *color_name, XColor *color_def, int alloc)
2d764c78
EZ
1152{
1153 if (!FRAME_WINDOW_P (f))
1154 return tty_defined_color (f, color_name, color_def, alloc);
82641697 1155#ifdef HAVE_X_WINDOWS
2d764c78
EZ
1156 else if (FRAME_X_P (f))
1157 return x_defined_color (f, color_name, color_def, alloc);
1158#endif
1159#ifdef WINDOWSNT
1160 else if (FRAME_W32_P (f))
2d764c78
EZ
1161 return w32_defined_color (f, color_name, color_def, alloc);
1162#endif
edfda783
AR
1163#ifdef HAVE_NS
1164 else if (FRAME_NS_P (f))
1165 return ns_defined_color (f, color_name, color_def, alloc, 1);
2d764c78
EZ
1166#endif
1167 else
1168 abort ();
1169}
1170
08dc08dc
GM
1171
1172/* Given the index IDX of a tty color on frame F, return its name, a
1173 Lisp string. */
2d764c78
EZ
1174
1175Lisp_Object
971de7fb 1176tty_color_name (struct frame *f, int idx)
2d764c78 1177{
2d764c78
EZ
1178 if (idx >= 0 && !NILP (Ffboundp (Qtty_color_by_index)))
1179 {
a61c12d5
EZ
1180 Lisp_Object frame;
1181 Lisp_Object coldesc;
1182
1183 XSETFRAME (frame, f);
1184 coldesc = call2 (Qtty_color_by_index, make_number (idx), frame);
2d764c78
EZ
1185
1186 if (!NILP (coldesc))
1187 return XCAR (coldesc);
1188 }
1189#ifdef MSDOS
1190 /* We can have an MSDOG frame under -nw for a short window of
1191 opportunity before internal_terminal_init is called. DTRT. */
1192 if (FRAME_MSDOS_P (f) && !inhibit_window_system)
1193 return msdos_stdcolor_name (idx);
1194#endif
1195
ef917393
EZ
1196 if (idx == FACE_TTY_DEFAULT_FG_COLOR)
1197 return build_string (unspecified_fg);
1198 if (idx == FACE_TTY_DEFAULT_BG_COLOR)
1199 return build_string (unspecified_bg);
c3cee013 1200
ef917393 1201 return Qunspecified;
2d764c78 1202}
82641697 1203
08dc08dc 1204
82641697 1205/* Return non-zero if COLOR_NAME is a shade of gray (or white or
71433d39
RS
1206 black) on frame F.
1207
1208 The criterion implemented here is not a terribly sophisticated one. */
82641697
GM
1209
1210static int
eec47d6b 1211face_color_gray_p (struct frame *f, const char *color_name)
82641697
GM
1212{
1213 XColor color;
1214 int gray_p;
1215
1216 if (defined_color (f, color_name, &color, 0))
71433d39
RS
1217 gray_p = (/* Any color sufficiently close to black counts as grey. */
1218 (color.red < 5000 && color.green < 5000 && color.blue < 5000)
1219 ||
1ea40aa2 1220 ((eabs (color.red - color.green)
71433d39 1221 < max (color.red, color.green) / 20)
1ea40aa2 1222 && (eabs (color.green - color.blue)
71433d39 1223 < max (color.green, color.blue) / 20)
1ea40aa2 1224 && (eabs (color.blue - color.red)
71433d39 1225 < max (color.blue, color.red) / 20)));
87485d6f 1226 else
82641697 1227 gray_p = 0;
178c5d9c 1228
82641697 1229 return gray_p;
87485d6f 1230}
87485d6f 1231
cb637678 1232
82641697
GM
1233/* Return non-zero if color COLOR_NAME can be displayed on frame F.
1234 BACKGROUND_P non-zero means the color will be used as background
1235 color. */
1236
1237static int
eec47d6b 1238face_color_supported_p (struct frame *f, const char *color_name, int background_p)
82641697
GM
1239{
1240 Lisp_Object frame;
2d764c78 1241 XColor not_used;
82641697
GM
1242
1243 XSETFRAME (frame, f);
6b61353c 1244 return
6a46b96b 1245#ifdef HAVE_WINDOW_SYSTEM
6b61353c
KH
1246 FRAME_WINDOW_P (f)
1247 ? (!NILP (Fxw_display_color_p (frame))
05131107
JR
1248 || xstrcasecmp (color_name, "black") == 0
1249 || xstrcasecmp (color_name, "white") == 0
6b61353c
KH
1250 || (background_p
1251 && face_color_gray_p (f, color_name))
1252 || (!NILP (Fx_display_grayscale_p (frame))
1253 && face_color_gray_p (f, color_name)))
1254 :
1255#endif
1256 tty_defined_color (f, color_name, &not_used, 0);
2d764c78 1257}
82641697
GM
1258
1259
da47150d 1260DEFUN ("color-gray-p", Fcolor_gray_p, Scolor_gray_p, 1, 2, 0,
7ee72033 1261 doc: /* Return non-nil if COLOR is a shade of gray (or white or black).
228299fa 1262FRAME specifies the frame and thus the display for interpreting COLOR.
7ee72033 1263If FRAME is nil or omitted, use the selected frame. */)
5842a27b 1264 (Lisp_Object color, Lisp_Object frame)
cb637678 1265{
2d764c78
EZ
1266 struct frame *f;
1267
b7826503 1268 CHECK_STRING (color);
6b61353c
KH
1269 if (NILP (frame))
1270 frame = selected_frame;
1271 else
1272 CHECK_FRAME (frame);
2d764c78 1273 f = XFRAME (frame);
42a5b22f 1274 return face_color_gray_p (f, SSDATA (color)) ? Qt : Qnil;
82641697 1275}
660ed669 1276
fffc2367 1277
da47150d 1278DEFUN ("color-supported-p", Fcolor_supported_p,
2e1bb1c3 1279 Scolor_supported_p, 1, 3, 0,
7ee72033 1280 doc: /* Return non-nil if COLOR can be displayed on FRAME.
228299fa 1281BACKGROUND-P non-nil means COLOR is used as a background.
fc820cc5 1282Otherwise, this function tells whether it can be used as a foreground.
228299fa 1283If FRAME is nil or omitted, use the selected frame.
7ee72033 1284COLOR must be a valid color name. */)
5842a27b 1285 (Lisp_Object color, Lisp_Object frame, Lisp_Object background_p)
82641697 1286{
2d764c78
EZ
1287 struct frame *f;
1288
b7826503 1289 CHECK_STRING (color);
6b61353c
KH
1290 if (NILP (frame))
1291 frame = selected_frame;
1292 else
1293 CHECK_FRAME (frame);
2d764c78 1294 f = XFRAME (frame);
42a5b22f 1295 if (face_color_supported_p (f, SSDATA (color), !NILP (background_p)))
82641697
GM
1296 return Qt;
1297 return Qnil;
1298}
7b37f67b 1299
08dc08dc 1300
82641697
GM
1301/* Load color with name NAME for use by face FACE on frame F.
1302 TARGET_INDEX must be one of LFACE_FOREGROUND_INDEX,
1303 LFACE_BACKGROUND_INDEX, LFACE_UNDERLINE_INDEX, LFACE_OVERLINE_INDEX,
1304 LFACE_STRIKE_THROUGH_INDEX, or LFACE_BOX_INDEX. Value is the
1305 pixel color. If color cannot be loaded, display a message, and
1306 return the foreground, background or underline color of F, but
1307 record that fact in flags of the face so that we don't try to free
1308 these colors. */
1309
44747bd0 1310unsigned long
971de7fb 1311load_color (struct frame *f, struct face *face, Lisp_Object name, enum lface_attribute_index target_index)
82641697
GM
1312{
1313 XColor color;
178c5d9c 1314
82641697
GM
1315 xassert (STRINGP (name));
1316 xassert (target_index == LFACE_FOREGROUND_INDEX
1317 || target_index == LFACE_BACKGROUND_INDEX
1318 || target_index == LFACE_UNDERLINE_INDEX
1319 || target_index == LFACE_OVERLINE_INDEX
1320 || target_index == LFACE_STRIKE_THROUGH_INDEX
1321 || target_index == LFACE_BOX_INDEX);
178c5d9c 1322
82641697
GM
1323 /* if the color map is full, defined_color will return a best match
1324 to the values in an existing cell. */
42a5b22f 1325 if (!defined_color (f, SSDATA (name), &color, 1))
82641697 1326 {
2d764c78 1327 add_to_log ("Unable to load color \"%s\"", name, Qnil);
178c5d9c 1328
82641697 1329 switch (target_index)
1120eb5e 1330 {
82641697
GM
1331 case LFACE_FOREGROUND_INDEX:
1332 face->foreground_defaulted_p = 1;
1333 color.pixel = FRAME_FOREGROUND_PIXEL (f);
1334 break;
178c5d9c 1335
82641697
GM
1336 case LFACE_BACKGROUND_INDEX:
1337 face->background_defaulted_p = 1;
1338 color.pixel = FRAME_BACKGROUND_PIXEL (f);
1339 break;
178c5d9c 1340
82641697
GM
1341 case LFACE_UNDERLINE_INDEX:
1342 face->underline_defaulted_p = 1;
1343 color.pixel = FRAME_FOREGROUND_PIXEL (f);
1344 break;
178c5d9c 1345
82641697
GM
1346 case LFACE_OVERLINE_INDEX:
1347 face->overline_color_defaulted_p = 1;
1348 color.pixel = FRAME_FOREGROUND_PIXEL (f);
1120eb5e 1349 break;
178c5d9c 1350
82641697
GM
1351 case LFACE_STRIKE_THROUGH_INDEX:
1352 face->strike_through_color_defaulted_p = 1;
1353 color.pixel = FRAME_FOREGROUND_PIXEL (f);
1354 break;
178c5d9c 1355
82641697
GM
1356 case LFACE_BOX_INDEX:
1357 face->box_color_defaulted_p = 1;
1358 color.pixel = FRAME_FOREGROUND_PIXEL (f);
1359 break;
1360
1361 default:
1362 abort ();
1120eb5e 1363 }
82641697
GM
1364 }
1365#if GLYPH_DEBUG
1366 else
1367 ++ncolors_allocated;
1368#endif
178c5d9c 1369
82641697
GM
1370 return color.pixel;
1371}
1120eb5e 1372
08dc08dc 1373
c3cee013 1374#ifdef HAVE_WINDOW_SYSTEM
1120eb5e 1375
82641697
GM
1376/* Load colors for face FACE which is used on frame F. Colors are
1377 specified by slots LFACE_BACKGROUND_INDEX and LFACE_FOREGROUND_INDEX
1378 of ATTRS. If the background color specified is not supported on F,
1379 try to emulate gray colors with a stipple from Vface_default_stipple. */
1380
1381static void
971de7fb 1382load_face_colors (struct frame *f, struct face *face, Lisp_Object *attrs)
82641697
GM
1383{
1384 Lisp_Object fg, bg;
1385
1386 bg = attrs[LFACE_BACKGROUND_INDEX];
1387 fg = attrs[LFACE_FOREGROUND_INDEX];
1388
1389 /* Swap colors if face is inverse-video. */
1390 if (EQ (attrs[LFACE_INVERSE_INDEX], Qt))
1391 {
1392 Lisp_Object tmp;
1393 tmp = fg;
1394 fg = bg;
1395 bg = tmp;
1396 }
1397
1398 /* Check for support for foreground, not for background because
1399 face_color_supported_p is smart enough to know that grays are
1400 "supported" as background because we are supposed to use stipple
1401 for them. */
42a5b22f 1402 if (!face_color_supported_p (f, SSDATA (bg), 0)
fef04523 1403 && !NILP (Fbitmap_spec_p (Vface_default_stipple)))
82641697
GM
1404 {
1405 x_destroy_bitmap (f, face->stipple);
1406 face->stipple = load_pixmap (f, Vface_default_stipple,
1407 &face->pixmap_w, &face->pixmap_h);
1408 }
82641697 1409
be8a72f4 1410 face->background = load_color (f, face, bg, LFACE_BACKGROUND_INDEX);
82641697 1411 face->foreground = load_color (f, face, fg, LFACE_FOREGROUND_INDEX);
cb637678
JB
1412}
1413
660ed669 1414
82641697 1415/* Free color PIXEL on frame F. */
cd0bb842 1416
cb637678 1417void
971de7fb 1418unload_color (struct frame *f, long unsigned int pixel)
cb637678 1419{
c3cee013 1420#ifdef HAVE_X_WINDOWS
30a7ac22
GM
1421 if (pixel != -1)
1422 {
1423 BLOCK_INPUT;
1424 x_free_colors (f, &pixel, 1);
1425 UNBLOCK_INPUT;
1426 }
c3cee013 1427#endif
82641697
GM
1428}
1429
1430
1431/* Free colors allocated for FACE. */
1432
1433static void
971de7fb 1434free_face_colors (struct frame *f, struct face *face)
82641697 1435{
edfda783 1436/* PENDING(NS): need to do something here? */
c3cee013 1437#ifdef HAVE_X_WINDOWS
28a072fe
GM
1438 if (face->colors_copied_bitwise_p)
1439 return;
1440
08dc08dc 1441 BLOCK_INPUT;
178c5d9c 1442
08dc08dc
GM
1443 if (!face->foreground_defaulted_p)
1444 {
1445 x_free_colors (f, &face->foreground, 1);
1446 IF_DEBUG (--ncolors_allocated);
1447 }
178c5d9c 1448
08dc08dc
GM
1449 if (!face->background_defaulted_p)
1450 {
1451 x_free_colors (f, &face->background, 1);
1452 IF_DEBUG (--ncolors_allocated);
1453 }
82641697 1454
08dc08dc
GM
1455 if (face->underline_p
1456 && !face->underline_defaulted_p)
1457 {
1458 x_free_colors (f, &face->underline_color, 1);
1459 IF_DEBUG (--ncolors_allocated);
1460 }
82641697 1461
08dc08dc
GM
1462 if (face->overline_p
1463 && !face->overline_color_defaulted_p)
1464 {
1465 x_free_colors (f, &face->overline_color, 1);
1466 IF_DEBUG (--ncolors_allocated);
1467 }
82641697 1468
08dc08dc
GM
1469 if (face->strike_through_p
1470 && !face->strike_through_color_defaulted_p)
1471 {
1472 x_free_colors (f, &face->strike_through_color, 1);
1473 IF_DEBUG (--ncolors_allocated);
1474 }
82641697 1475
08dc08dc
GM
1476 if (face->box != FACE_NO_BOX
1477 && !face->box_color_defaulted_p)
1478 {
1479 x_free_colors (f, &face->box_color, 1);
1480 IF_DEBUG (--ncolors_allocated);
82641697 1481 }
08dc08dc
GM
1482
1483 UNBLOCK_INPUT;
2d764c78 1484#endif /* HAVE_X_WINDOWS */
c3cee013 1485}
08dc08dc 1486
c3cee013 1487#endif /* HAVE_WINDOW_SYSTEM */
82641697
GM
1488
1489
1490\f
1491/***********************************************************************
1492 XLFD Font Names
1493 ***********************************************************************/
1494
1495/* An enumerator for each field of an XLFD font name. */
1496
1497enum xlfd_field
1498{
1499 XLFD_FOUNDRY,
1500 XLFD_FAMILY,
1501 XLFD_WEIGHT,
1502 XLFD_SLANT,
1503 XLFD_SWIDTH,
1504 XLFD_ADSTYLE,
1505 XLFD_PIXEL_SIZE,
1506 XLFD_POINT_SIZE,
1507 XLFD_RESX,
1508 XLFD_RESY,
1509 XLFD_SPACING,
1510 XLFD_AVGWIDTH,
1511 XLFD_REGISTRY,
1512 XLFD_ENCODING,
1513 XLFD_LAST
1514};
1515
178c5d9c 1516/* An enumerator for each possible slant value of a font. Taken from
82641697
GM
1517 the XLFD specification. */
1518
1519enum xlfd_slant
1520{
1521 XLFD_SLANT_UNKNOWN,
1522 XLFD_SLANT_ROMAN,
1523 XLFD_SLANT_ITALIC,
1524 XLFD_SLANT_OBLIQUE,
1525 XLFD_SLANT_REVERSE_ITALIC,
1526 XLFD_SLANT_REVERSE_OBLIQUE,
1527 XLFD_SLANT_OTHER
1528};
1529
1530/* Relative font weight according to XLFD documentation. */
1531
1532enum xlfd_weight
1533{
1534 XLFD_WEIGHT_UNKNOWN,
1535 XLFD_WEIGHT_ULTRA_LIGHT, /* 10 */
1536 XLFD_WEIGHT_EXTRA_LIGHT, /* 20 */
1537 XLFD_WEIGHT_LIGHT, /* 30 */
1538 XLFD_WEIGHT_SEMI_LIGHT, /* 40: SemiLight, Book, ... */
1539 XLFD_WEIGHT_MEDIUM, /* 50: Medium, Normal, Regular, ... */
1540 XLFD_WEIGHT_SEMI_BOLD, /* 60: SemiBold, DemiBold, ... */
1541 XLFD_WEIGHT_BOLD, /* 70: Bold, ... */
1542 XLFD_WEIGHT_EXTRA_BOLD, /* 80: ExtraBold, Heavy, ... */
1543 XLFD_WEIGHT_ULTRA_BOLD /* 90: UltraBold, Black, ... */
1544};
1545
1546/* Relative proportionate width. */
1547
1548enum xlfd_swidth
1549{
1550 XLFD_SWIDTH_UNKNOWN,
1551 XLFD_SWIDTH_ULTRA_CONDENSED, /* 10 */
1552 XLFD_SWIDTH_EXTRA_CONDENSED, /* 20 */
1553 XLFD_SWIDTH_CONDENSED, /* 30: Condensed, Narrow, Compressed, ... */
1554 XLFD_SWIDTH_SEMI_CONDENSED, /* 40: semicondensed */
1555 XLFD_SWIDTH_MEDIUM, /* 50: Medium, Normal, Regular, ... */
1556 XLFD_SWIDTH_SEMI_EXPANDED, /* 60: SemiExpanded, DemiExpanded, ... */
1557 XLFD_SWIDTH_EXPANDED, /* 70: Expanded... */
1558 XLFD_SWIDTH_EXTRA_EXPANDED, /* 80: ExtraExpanded, Wide... */
1559 XLFD_SWIDTH_ULTRA_EXPANDED /* 90: UltraExpanded... */
1560};
1561
82641697
GM
1562/* Order by which font selection chooses fonts. The default values
1563 mean `first, find a best match for the font width, then for the
1564 font height, then for weight, then for slant.' This variable can be
1565 set via set-face-font-sort-order. */
1566
1567static int font_sort_order[4];
82641697 1568
2dee4c0b
KH
1569#ifdef HAVE_WINDOW_SYSTEM
1570
2dee4c0b 1571static enum font_property_index font_props_for_sorting[FONT_SIZE_INDEX];
82641697 1572
2dee4c0b 1573static int
971de7fb 1574compare_fonts_by_sort_order (const void *v1, const void *v2)
2dee4c0b
KH
1575{
1576 Lisp_Object font1 = *(Lisp_Object *) v1;
1577 Lisp_Object font2 = *(Lisp_Object *) v2;
1578 int i;
d5ab09cd 1579
2dee4c0b
KH
1580 for (i = 0; i < FONT_SIZE_INDEX; i++)
1581 {
1582 enum font_property_index idx = font_props_for_sorting[i];
1583 Lisp_Object val1 = AREF (font1, idx), val2 = AREF (font2, idx);
1584 int result;
82641697 1585
2dee4c0b
KH
1586 if (idx <= FONT_REGISTRY_INDEX)
1587 {
1588 if (STRINGP (val1))
42a5b22f 1589 result = STRINGP (val2) ? strcmp (SSDATA (val1), SSDATA (val2)) : -1;
2dee4c0b
KH
1590 else
1591 result = STRINGP (val2) ? 1 : 0;
1592 }
1593 else
1594 {
1595 if (INTEGERP (val1))
1596 result = INTEGERP (val2) ? XINT (val1) - XINT (val2) : -1;
1597 else
1598 result = INTEGERP (val2) ? 1 : 0;
1599 }
1600 if (result)
1601 return result;
1602 }
1603 return 0;
82641697
GM
1604}
1605
2dee4c0b
KH
1606DEFUN ("x-family-fonts", Fx_family_fonts, Sx_family_fonts, 0, 2, 0,
1607 doc: /* Return a list of available fonts of family FAMILY on FRAME.
1608If FAMILY is omitted or nil, list all families.
1609Otherwise, FAMILY must be a string, possibly containing wildcards
1610`?' and `*'.
1611If FRAME is omitted or nil, use the selected frame.
1612Each element of the result is a vector [FAMILY WIDTH POINT-SIZE WEIGHT
1613SLANT FIXED-P FULL REGISTRY-AND-ENCODING].
1614FAMILY is the font family name. POINT-SIZE is the size of the
1615font in 1/10 pt. WIDTH, WEIGHT, and SLANT are symbols describing the
1616width, weight and slant of the font. These symbols are the same as for
1617face attributes. FIXED-P is non-nil if the font is fixed-pitch.
1618FULL is the full name of the font, and REGISTRY-AND-ENCODING is a string
1619giving the registry and encoding of the font.
1620The result list is sorted according to the current setting of
1621the face font sort order. */)
5842a27b 1622 (Lisp_Object family, Lisp_Object frame)
2dee4c0b 1623{
022eef62
CY
1624 Lisp_Object font_spec, list, *drivers, vec;
1625 int i, nfonts, ndrivers;
2dee4c0b 1626 Lisp_Object result;
82641697 1627
62057df6
KH
1628 if (NILP (frame))
1629 frame = selected_frame;
1630 CHECK_LIVE_FRAME (frame);
1631
1632 font_spec = Ffont_spec (0, NULL);
2dee4c0b
KH
1633 if (!NILP (family))
1634 {
1635 CHECK_STRING (family);
6b1f69f1 1636 font_parse_family_registry (family, Qnil, font_spec);
2dee4c0b 1637 }
022eef62
CY
1638
1639 list = font_list_entities (frame, font_spec);
1640 if (NILP (list))
2dee4c0b 1641 return Qnil;
022eef62
CY
1642
1643 /* Sort the font entities. */
1644 for (i = 0; i < 4; i++)
1645 switch (font_sort_order[i])
1646 {
1647 case XLFD_SWIDTH:
1648 font_props_for_sorting[i] = FONT_WIDTH_INDEX; break;
1649 case XLFD_POINT_SIZE:
1650 font_props_for_sorting[i] = FONT_SIZE_INDEX; break;
1651 case XLFD_WEIGHT:
1652 font_props_for_sorting[i] = FONT_WEIGHT_INDEX; break;
1653 default:
1654 font_props_for_sorting[i] = FONT_SLANT_INDEX; break;
1655 }
1656 font_props_for_sorting[i++] = FONT_FAMILY_INDEX;
1657 font_props_for_sorting[i++] = FONT_FOUNDRY_INDEX;
1658 font_props_for_sorting[i++] = FONT_ADSTYLE_INDEX;
1659 font_props_for_sorting[i++] = FONT_REGISTRY_INDEX;
1660
1661 ndrivers = XINT (Flength (list));
1662 drivers = alloca (sizeof (Lisp_Object) * ndrivers);
1663 for (i = 0; i < ndrivers; i++, list = XCDR (list))
1664 drivers[i] = XCAR (list);
1665 vec = Fvconcat (ndrivers, drivers);
1666 nfonts = ASIZE (vec);
1667
1668 qsort (XVECTOR (vec)->contents, nfonts, sizeof (Lisp_Object),
1669 compare_fonts_by_sort_order);
82641697 1670
2dee4c0b
KH
1671 result = Qnil;
1672 for (i = nfonts - 1; i >= 0; --i)
1673 {
1674 Lisp_Object font = AREF (vec, i);
1675 Lisp_Object v = Fmake_vector (make_number (8), Qnil);
1676 int point;
1677 Lisp_Object spacing;
1678
1679 ASET (v, 0, AREF (font, FONT_FAMILY_INDEX));
1680 ASET (v, 1, FONT_WIDTH_SYMBOLIC (font));
1681 point = PIXEL_TO_POINT (XINT (AREF (font, FONT_SIZE_INDEX)) * 10,
62057df6 1682 XFRAME (frame)->resy);
2dee4c0b
KH
1683 ASET (v, 2, make_number (point));
1684 ASET (v, 3, FONT_WEIGHT_SYMBOLIC (font));
1685 ASET (v, 4, FONT_SLANT_SYMBOLIC (font));
1686 spacing = Ffont_get (font, QCspacing);
1687 ASET (v, 5, (NILP (spacing) || EQ (spacing, Qp)) ? Qnil : Qt);
62057df6 1688 ASET (v, 6, Ffont_xlfd_name (font, Qnil));
2dee4c0b 1689 ASET (v, 7, AREF (font, FONT_REGISTRY_INDEX));
82641697 1690
2dee4c0b
KH
1691 result = Fcons (v, result);
1692 }
82641697 1693
2dee4c0b 1694 return result;
82641697
GM
1695}
1696
2dee4c0b
KH
1697DEFUN ("x-list-fonts", Fx_list_fonts, Sx_list_fonts, 1, 5, 0,
1698 doc: /* Return a list of the names of available fonts matching PATTERN.
1699If optional arguments FACE and FRAME are specified, return only fonts
1700the same size as FACE on FRAME.
21bdb81a
CY
1701
1702PATTERN should be a string containing a font name in the XLFD,
1703Fontconfig, or GTK format. A font name given in the XLFD format may
1704contain wildcard characters:
2dee4c0b
KH
1705 the * character matches any substring, and
1706 the ? character matches any single character.
1707 PATTERN is case-insensitive.
2dee4c0b
KH
1708
1709The return value is a list of strings, suitable as arguments to
d5ab09cd 1710`set-face-font'.
82641697 1711
2dee4c0b
KH
1712Fonts Emacs can't use may or may not be excluded
1713even if they match PATTERN and FACE.
1714The optional fourth argument MAXIMUM sets a limit on how many
1715fonts to match. The first MAXIMUM fonts are reported.
1716The optional fifth argument WIDTH, if specified, is a number of columns
1717occupied by a character of a font. In that case, return only fonts
1718the WIDTH times as wide as FACE on FRAME. */)
5842a27b 1719 (Lisp_Object pattern, Lisp_Object face, Lisp_Object frame, Lisp_Object maximum, Lisp_Object width)
82641697 1720{
2dee4c0b 1721 struct frame *f;
1e9966ea 1722 int size, avgwidth IF_LINT (= 0);
82641697 1723
2dee4c0b
KH
1724 check_x ();
1725 CHECK_STRING (pattern);
82641697 1726
2dee4c0b
KH
1727 if (! NILP (maximum))
1728 CHECK_NATNUM (maximum);
82641697 1729
2dee4c0b
KH
1730 if (!NILP (width))
1731 CHECK_NUMBER (width);
82641697 1732
2dee4c0b
KH
1733 /* We can't simply call check_x_frame because this function may be
1734 called before any frame is created. */
1735 if (NILP (frame))
1736 frame = selected_frame;
1737 f = frame_or_selected_frame (frame, 2);
1738 if (! FRAME_WINDOW_P (f))
1739 {
1740 /* Perhaps we have not yet created any frame. */
1741 f = NULL;
1742 frame = Qnil;
1743 face = Qnil;
1744 }
82641697 1745
2dee4c0b 1746 /* Determine the width standard for comparison with the fonts we find. */
82641697 1747
2dee4c0b
KH
1748 if (NILP (face))
1749 size = 0;
1750 else
1751 {
1752 /* This is of limited utility since it works with character
1753 widths. Keep it for compatibility. --gerd. */
1754 int face_id = lookup_named_face (f, face, 0);
071048a3
PE
1755 struct face *width_face = (face_id < 0
1756 ? NULL
1757 : FACE_FROM_ID (f, face_id));
82641697 1758
071048a3 1759 if (width_face && width_face->font)
2dee4c0b 1760 {
071048a3
PE
1761 size = width_face->font->pixel_size;
1762 avgwidth = width_face->font->average_width;
2dee4c0b
KH
1763 }
1764 else
1765 {
1766 size = FRAME_FONT (f)->pixel_size;
1767 avgwidth = FRAME_FONT (f)->average_width;
1768 }
1769 if (!NILP (width))
1770 avgwidth *= XINT (width);
1771 }
82641697 1772
2dee4c0b
KH
1773 {
1774 Lisp_Object font_spec;
a4eec626 1775 Lisp_Object args[2], tail;
82641697 1776
2dee4c0b 1777 font_spec = font_spec_from_name (pattern);
21bdb81a
CY
1778 if (!FONTP (font_spec))
1779 signal_error ("Invalid font name", pattern);
1780
2dee4c0b
KH
1781 if (size)
1782 {
1783 Ffont_put (font_spec, QCsize, make_number (size));
1784 Ffont_put (font_spec, QCavgwidth, make_number (avgwidth));
1785 }
34e97272 1786 args[0] = Flist_fonts (font_spec, frame, maximum, font_spec);
a4eec626 1787 for (tail = args[0]; CONSP (tail); tail = XCDR (tail))
493dcf2c
KH
1788 {
1789 Lisp_Object font_entity;
1790
1791 font_entity = XCAR (tail);
1792 if ((NILP (AREF (font_entity, FONT_SIZE_INDEX))
1793 || XINT (AREF (font_entity, FONT_SIZE_INDEX)) == 0)
1794 && ! NILP (AREF (font_spec, FONT_SIZE_INDEX)))
1795 {
1796 /* This is a scalable font. For backward compatibility,
1797 we set the specified size. */
92470028 1798 font_entity = copy_font_spec (font_entity);
493dcf2c
KH
1799 ASET (font_entity, FONT_SIZE_INDEX,
1800 AREF (font_spec, FONT_SIZE_INDEX));
1801 }
1802 XSETCAR (tail, Ffont_xlfd_name (font_entity, Qnil));
1803 }
2dee4c0b
KH
1804 if (NILP (frame))
1805 /* We don't have to check fontsets. */
1806 return args[0];
1807 args[1] = list_fontsets (f, pattern, size);
1808 return Fnconc (2, args);
1809 }
82641697 1810}
178c5d9c 1811
2dee4c0b 1812#endif /* HAVE_WINDOW_SYSTEM */
82641697 1813
82641697
GM
1814\f
1815/***********************************************************************
1816 Lisp Faces
1817 ***********************************************************************/
1818
a08332c0
GM
1819/* Access face attributes of face LFACE, a Lisp vector. */
1820
1821#define LFACE_FAMILY(LFACE) AREF ((LFACE), LFACE_FAMILY_INDEX)
53aaf1e2 1822#define LFACE_FOUNDRY(LFACE) AREF ((LFACE), LFACE_FOUNDRY_INDEX)
a08332c0
GM
1823#define LFACE_HEIGHT(LFACE) AREF ((LFACE), LFACE_HEIGHT_INDEX)
1824#define LFACE_WEIGHT(LFACE) AREF ((LFACE), LFACE_WEIGHT_INDEX)
1825#define LFACE_SLANT(LFACE) AREF ((LFACE), LFACE_SLANT_INDEX)
1826#define LFACE_UNDERLINE(LFACE) AREF ((LFACE), LFACE_UNDERLINE_INDEX)
1827#define LFACE_INVERSE(LFACE) AREF ((LFACE), LFACE_INVERSE_INDEX)
1828#define LFACE_FOREGROUND(LFACE) AREF ((LFACE), LFACE_FOREGROUND_INDEX)
1829#define LFACE_BACKGROUND(LFACE) AREF ((LFACE), LFACE_BACKGROUND_INDEX)
1830#define LFACE_STIPPLE(LFACE) AREF ((LFACE), LFACE_STIPPLE_INDEX)
1831#define LFACE_SWIDTH(LFACE) AREF ((LFACE), LFACE_SWIDTH_INDEX)
1832#define LFACE_OVERLINE(LFACE) AREF ((LFACE), LFACE_OVERLINE_INDEX)
1833#define LFACE_STRIKE_THROUGH(LFACE) AREF ((LFACE), LFACE_STRIKE_THROUGH_INDEX)
1834#define LFACE_BOX(LFACE) AREF ((LFACE), LFACE_BOX_INDEX)
1835#define LFACE_FONT(LFACE) AREF ((LFACE), LFACE_FONT_INDEX)
1836#define LFACE_INHERIT(LFACE) AREF ((LFACE), LFACE_INHERIT_INDEX)
763bc839 1837#define LFACE_FONTSET(LFACE) AREF ((LFACE), LFACE_FONTSET_INDEX)
82641697 1838
73719eba 1839#if XASSERTS
82641697
GM
1840/* Non-zero if LFACE is a Lisp face. A Lisp face is a vector of size
1841 LFACE_VECTOR_SIZE which has the symbol `face' in slot 0. */
1842
1843#define LFACEP(LFACE) \
1844 (VECTORP (LFACE) \
1845 && XVECTOR (LFACE)->size == LFACE_VECTOR_SIZE \
a08332c0 1846 && EQ (AREF (LFACE, 0), Qface))
73719eba 1847#endif
82641697 1848
178c5d9c 1849
82641697
GM
1850#if GLYPH_DEBUG
1851
1852/* Check consistency of Lisp face attribute vector ATTRS. */
1853
1854static void
1855check_lface_attrs (attrs)
1856 Lisp_Object *attrs;
1857{
1858 xassert (UNSPECIFIEDP (attrs[LFACE_FAMILY_INDEX])
2ff10663 1859 || IGNORE_DEFFACE_P (attrs[LFACE_FAMILY_INDEX])
82641697 1860 || STRINGP (attrs[LFACE_FAMILY_INDEX]));
53aaf1e2
KH
1861 xassert (UNSPECIFIEDP (attrs[LFACE_FOUNDRY_INDEX])
1862 || IGNORE_DEFFACE_P (attrs[LFACE_FOUNDRY_INDEX])
1863 || STRINGP (attrs[LFACE_FOUNDRY_INDEX]));
82641697 1864 xassert (UNSPECIFIEDP (attrs[LFACE_SWIDTH_INDEX])
2ff10663 1865 || IGNORE_DEFFACE_P (attrs[LFACE_SWIDTH_INDEX])
82641697
GM
1866 || SYMBOLP (attrs[LFACE_SWIDTH_INDEX]));
1867 xassert (UNSPECIFIEDP (attrs[LFACE_HEIGHT_INDEX])
2ff10663 1868 || IGNORE_DEFFACE_P (attrs[LFACE_HEIGHT_INDEX])
2c20458f
MB
1869 || INTEGERP (attrs[LFACE_HEIGHT_INDEX])
1870 || FLOATP (attrs[LFACE_HEIGHT_INDEX])
1871 || FUNCTIONP (attrs[LFACE_HEIGHT_INDEX]));
82641697 1872 xassert (UNSPECIFIEDP (attrs[LFACE_WEIGHT_INDEX])
2ff10663 1873 || IGNORE_DEFFACE_P (attrs[LFACE_WEIGHT_INDEX])
82641697
GM
1874 || SYMBOLP (attrs[LFACE_WEIGHT_INDEX]));
1875 xassert (UNSPECIFIEDP (attrs[LFACE_SLANT_INDEX])
2ff10663 1876 || IGNORE_DEFFACE_P (attrs[LFACE_SLANT_INDEX])
82641697
GM
1877 || SYMBOLP (attrs[LFACE_SLANT_INDEX]));
1878 xassert (UNSPECIFIEDP (attrs[LFACE_UNDERLINE_INDEX])
2ff10663 1879 || IGNORE_DEFFACE_P (attrs[LFACE_UNDERLINE_INDEX])
82641697
GM
1880 || SYMBOLP (attrs[LFACE_UNDERLINE_INDEX])
1881 || STRINGP (attrs[LFACE_UNDERLINE_INDEX]));
1882 xassert (UNSPECIFIEDP (attrs[LFACE_OVERLINE_INDEX])
2ff10663 1883 || IGNORE_DEFFACE_P (attrs[LFACE_OVERLINE_INDEX])
82641697
GM
1884 || SYMBOLP (attrs[LFACE_OVERLINE_INDEX])
1885 || STRINGP (attrs[LFACE_OVERLINE_INDEX]));
1886 xassert (UNSPECIFIEDP (attrs[LFACE_STRIKE_THROUGH_INDEX])
2ff10663 1887 || IGNORE_DEFFACE_P (attrs[LFACE_STRIKE_THROUGH_INDEX])
82641697
GM
1888 || SYMBOLP (attrs[LFACE_STRIKE_THROUGH_INDEX])
1889 || STRINGP (attrs[LFACE_STRIKE_THROUGH_INDEX]));
1890 xassert (UNSPECIFIEDP (attrs[LFACE_BOX_INDEX])
2ff10663 1891 || IGNORE_DEFFACE_P (attrs[LFACE_BOX_INDEX])
82641697
GM
1892 || SYMBOLP (attrs[LFACE_BOX_INDEX])
1893 || STRINGP (attrs[LFACE_BOX_INDEX])
1894 || INTEGERP (attrs[LFACE_BOX_INDEX])
1895 || CONSP (attrs[LFACE_BOX_INDEX]));
1896 xassert (UNSPECIFIEDP (attrs[LFACE_INVERSE_INDEX])
2ff10663 1897 || IGNORE_DEFFACE_P (attrs[LFACE_INVERSE_INDEX])
82641697
GM
1898 || SYMBOLP (attrs[LFACE_INVERSE_INDEX]));
1899 xassert (UNSPECIFIEDP (attrs[LFACE_FOREGROUND_INDEX])
2ff10663 1900 || IGNORE_DEFFACE_P (attrs[LFACE_FOREGROUND_INDEX])
82641697
GM
1901 || STRINGP (attrs[LFACE_FOREGROUND_INDEX]));
1902 xassert (UNSPECIFIEDP (attrs[LFACE_BACKGROUND_INDEX])
2ff10663 1903 || IGNORE_DEFFACE_P (attrs[LFACE_BACKGROUND_INDEX])
82641697 1904 || STRINGP (attrs[LFACE_BACKGROUND_INDEX]));
2c20458f 1905 xassert (UNSPECIFIEDP (attrs[LFACE_INHERIT_INDEX])
2ff10663 1906 || IGNORE_DEFFACE_P (attrs[LFACE_INHERIT_INDEX])
2c20458f
MB
1907 || NILP (attrs[LFACE_INHERIT_INDEX])
1908 || SYMBOLP (attrs[LFACE_INHERIT_INDEX])
1909 || CONSP (attrs[LFACE_INHERIT_INDEX]));
82641697
GM
1910#ifdef HAVE_WINDOW_SYSTEM
1911 xassert (UNSPECIFIEDP (attrs[LFACE_STIPPLE_INDEX])
2ff10663 1912 || IGNORE_DEFFACE_P (attrs[LFACE_STIPPLE_INDEX])
82641697 1913 || SYMBOLP (attrs[LFACE_STIPPLE_INDEX])
fef04523 1914 || !NILP (Fbitmap_spec_p (attrs[LFACE_STIPPLE_INDEX])));
39506348 1915 xassert (UNSPECIFIEDP (attrs[LFACE_FONT_INDEX])
2ff10663 1916 || IGNORE_DEFFACE_P (attrs[LFACE_FONT_INDEX])
2dee4c0b 1917 || FONTP (attrs[LFACE_FONT_INDEX]));
763bc839
KH
1918 xassert (UNSPECIFIEDP (attrs[LFACE_FONTSET_INDEX])
1919 || STRINGP (attrs[LFACE_FONTSET_INDEX]));
82641697
GM
1920#endif
1921}
1922
1923
1924/* Check consistency of attributes of Lisp face LFACE (a Lisp vector). */
1925
1926static void
1927check_lface (lface)
1928 Lisp_Object lface;
1929{
1930 if (!NILP (lface))
1931 {
1932 xassert (LFACEP (lface));
1933 check_lface_attrs (XVECTOR (lface)->contents);
1934 }
1935}
1936
1937#else /* GLYPH_DEBUG == 0 */
1938
1939#define check_lface_attrs(attrs) (void) 0
1940#define check_lface(lface) (void) 0
1941
1942#endif /* GLYPH_DEBUG == 0 */
1943
1944
a0a23346
MB
1945\f
1946/* Face-merge cycle checking. */
1947
f2cec7a9
MB
1948enum named_merge_point_kind
1949{
1950 NAMED_MERGE_POINT_NORMAL,
1951 NAMED_MERGE_POINT_REMAP
1952};
1953
a0a23346
MB
1954/* A `named merge point' is simply a point during face-merging where we
1955 look up a face by name. We keep a stack of which named lookups we're
1956 currently processing so that we can easily detect cycles, using a
1957 linked- list of struct named_merge_point structures, typically
1958 allocated on the stack frame of the named lookup functions which are
1959 active (so no consing is required). */
1960struct named_merge_point
1961{
1962 Lisp_Object face_name;
f2cec7a9 1963 enum named_merge_point_kind named_merge_point_kind;
a0a23346
MB
1964 struct named_merge_point *prev;
1965};
1966
1967
1968/* If a face merging cycle is detected for FACE_NAME, return 0,
1969 otherwise add NEW_NAMED_MERGE_POINT, which is initialized using
f2cec7a9
MB
1970 FACE_NAME and NAMED_MERGE_POINT_KIND, as the head of the linked list
1971 pointed to by NAMED_MERGE_POINTS, and return 1. */
a0a23346
MB
1972
1973static INLINE int
1974push_named_merge_point (struct named_merge_point *new_named_merge_point,
1975 Lisp_Object face_name,
f2cec7a9 1976 enum named_merge_point_kind named_merge_point_kind,
a0a23346
MB
1977 struct named_merge_point **named_merge_points)
1978{
1979 struct named_merge_point *prev;
1980
1981 for (prev = *named_merge_points; prev; prev = prev->prev)
1982 if (EQ (face_name, prev->face_name))
f2cec7a9
MB
1983 {
1984 if (prev->named_merge_point_kind == named_merge_point_kind)
1985 /* A cycle, so fail. */
1986 return 0;
1987 else if (prev->named_merge_point_kind == NAMED_MERGE_POINT_REMAP)
1988 /* A remap `hides ' any previous normal merge points
1989 (because the remap means that it's actually different face),
1990 so as we know the current merge point must be normal, we
1991 can just assume it's OK. */
1992 break;
1993 }
a0a23346
MB
1994
1995 new_named_merge_point->face_name = face_name;
f2cec7a9 1996 new_named_merge_point->named_merge_point_kind = named_merge_point_kind;
a0a23346
MB
1997 new_named_merge_point->prev = *named_merge_points;
1998
1999 *named_merge_points = new_named_merge_point;
2000
2001 return 1;
2002}
2003
2004\f
2005
2ed82a63 2006#if 0 /* Seems to be unused. */
91fd98fc
KL
2007static Lisp_Object
2008internal_resolve_face_name (nargs, args)
2009 int nargs;
2010 Lisp_Object *args;
2011{
2ed82a63 2012 return Fget (args[0], args[1]);
91fd98fc
KL
2013}
2014
2015static Lisp_Object
2016resolve_face_name_error (ignore)
2017 Lisp_Object ignore;
2018{
2019 return Qnil;
2020}
2ed82a63 2021#endif
a0a23346 2022
39506348 2023/* Resolve face name FACE_NAME. If FACE_NAME is a string, intern it
d1bf13b3
KS
2024 to make it a symbol. If FACE_NAME is an alias for another face,
2025 return that face's name.
2026
2027 Return default face in case of errors. */
c7ae3284
GM
2028
2029static Lisp_Object
971de7fb 2030resolve_face_name (Lisp_Object face_name, int signal_p)
c7ae3284 2031{
d1bf13b3
KS
2032 Lisp_Object orig_face;
2033 Lisp_Object tortoise, hare;
178c5d9c 2034
c7ae3284 2035 if (STRINGP (face_name))
42a5b22f 2036 face_name = intern (SSDATA (face_name));
c7ae3284 2037
d1bf13b3
KS
2038 if (NILP (face_name) || !SYMBOLP (face_name))
2039 return face_name;
2040
2041 orig_face = face_name;
2042 tortoise = hare = face_name;
2043
2044 while (1)
c7ae3284 2045 {
d1bf13b3
KS
2046 face_name = hare;
2047 hare = Fget (hare, Qface_alias);
2048 if (NILP (hare) || !SYMBOLP (hare))
c7ae3284 2049 break;
d1bf13b3
KS
2050
2051 face_name = hare;
2052 hare = Fget (hare, Qface_alias);
2053 if (NILP (hare) || !SYMBOLP (hare))
f3745204 2054 break;
d1bf13b3
KS
2055
2056 tortoise = Fget (tortoise, Qface_alias);
2057 if (EQ (hare, tortoise))
2058 {
2059 if (signal_p)
8009eb44 2060 xsignal1 (Qcircular_list, orig_face);
d1bf13b3
KS
2061 return Qdefault;
2062 }
c7ae3284
GM
2063 }
2064
2065 return face_name;
2066}
2067
2068
82641697 2069/* Return the face definition of FACE_NAME on frame F. F null means
45d9f1ef
GM
2070 return the definition for new frames. FACE_NAME may be a string or
2071 a symbol (apparently Emacs 20.2 allowed strings as face names in
f2cec7a9
MB
2072 face text properties; Ediff uses that). If SIGNAL_P is non-zero,
2073 signal an error if FACE_NAME is not a valid face name. If SIGNAL_P
2074 is zero, value is nil if FACE_NAME is not a valid face name. */
82641697 2075static INLINE Lisp_Object
971de7fb 2076lface_from_face_name_no_resolve (struct frame *f, Lisp_Object face_name, int signal_p)
82641697 2077{
c7ae3284 2078 Lisp_Object lface;
82641697
GM
2079
2080 if (f)
2081 lface = assq_no_quit (face_name, f->face_alist);
2082 else
2083 lface = assq_no_quit (face_name, Vface_new_frame_defaults);
2084
2085 if (CONSP (lface))
2086 lface = XCDR (lface);
2087 else if (signal_p)
2088 signal_error ("Invalid face", face_name);
2089
2090 check_lface (lface);
f2cec7a9 2091
82641697
GM
2092 return lface;
2093}
2094
f2cec7a9
MB
2095/* Return the face definition of FACE_NAME on frame F. F null means
2096 return the definition for new frames. FACE_NAME may be a string or
2097 a symbol (apparently Emacs 20.2 allowed strings as face names in
2098 face text properties; Ediff uses that). If FACE_NAME is an alias
2099 for another face, return that face's definition. If SIGNAL_P is
2100 non-zero, signal an error if FACE_NAME is not a valid face name.
2101 If SIGNAL_P is zero, value is nil if FACE_NAME is not a valid face
2102 name. */
2103static INLINE Lisp_Object
971de7fb 2104lface_from_face_name (struct frame *f, Lisp_Object face_name, int signal_p)
f2cec7a9
MB
2105{
2106 face_name = resolve_face_name (face_name, signal_p);
2107 return lface_from_face_name_no_resolve (f, face_name, signal_p);
2108}
2109
82641697 2110
e7d7fd8c
MB
2111/* Get face attributes of face FACE_NAME from frame-local faces on
2112 frame F. Store the resulting attributes in ATTRS which must point
2113 to a vector of Lisp_Objects of size LFACE_VECTOR_SIZE. If SIGNAL_P
2114 is non-zero, signal an error if FACE_NAME does not name a face.
2115 Otherwise, value is zero if FACE_NAME is not a face. */
2116
2117static INLINE int
971de7fb 2118get_lface_attributes_no_remap (struct frame *f, Lisp_Object face_name, Lisp_Object *attrs, int signal_p)
e7d7fd8c
MB
2119{
2120 Lisp_Object lface;
e7d7fd8c 2121
f2cec7a9
MB
2122 lface = lface_from_face_name_no_resolve (f, face_name, signal_p);
2123
2124 if (! NILP (lface))
72af86bd
AS
2125 memcpy (attrs, XVECTOR (lface)->contents,
2126 LFACE_VECTOR_SIZE * sizeof *attrs);
f2cec7a9
MB
2127
2128 return !NILP (lface);
2129}
2130
2131/* Get face attributes of face FACE_NAME from frame-local faces on frame
2132 F. Store the resulting attributes in ATTRS which must point to a
2133 vector of Lisp_Objects of size LFACE_VECTOR_SIZE. If FACE_NAME is an
2134 alias for another face, use that face's definition. If SIGNAL_P is
2135 non-zero, signal an error if FACE_NAME does not name a face.
2136 Otherwise, value is zero if FACE_NAME is not a face. */
2137
2138static INLINE int
971de7fb 2139get_lface_attributes (struct frame *f, Lisp_Object face_name, Lisp_Object *attrs, int signal_p, struct named_merge_point *named_merge_points)
f2cec7a9
MB
2140{
2141 Lisp_Object face_remapping;
2142
2143 face_name = resolve_face_name (face_name, signal_p);
2144
2145 /* See if SYMBOL has been remapped to some other face (usually this
2146 is done buffer-locally). */
2147 face_remapping = assq_no_quit (face_name, Vface_remapping_alist);
2148 if (CONSP (face_remapping))
e7d7fd8c 2149 {
f2cec7a9
MB
2150 struct named_merge_point named_merge_point;
2151
2152 if (push_named_merge_point (&named_merge_point,
2153 face_name, NAMED_MERGE_POINT_REMAP,
2154 &named_merge_points))
2155 {
2156 int i;
2157
2158 for (i = 1; i < LFACE_VECTOR_SIZE; ++i)
2159 attrs[i] = Qunspecified;
2160
2161 return merge_face_ref (f, XCDR (face_remapping), attrs,
2162 signal_p, named_merge_points);
2163 }
e7d7fd8c 2164 }
e7d7fd8c 2165
f2cec7a9
MB
2166 /* Default case, no remapping. */
2167 return get_lface_attributes_no_remap (f, face_name, attrs, signal_p);
e7d7fd8c
MB
2168}
2169
2170
82641697
GM
2171/* Non-zero if all attributes in face attribute vector ATTRS are
2172 specified, i.e. are non-nil. */
2173
2174static int
971de7fb 2175lface_fully_specified_p (Lisp_Object *attrs)
82641697
GM
2176{
2177 int i;
2178
2179 for (i = 1; i < LFACE_VECTOR_SIZE; ++i)
2dee4c0b 2180 if (i != LFACE_FONT_INDEX && i != LFACE_INHERIT_INDEX)
9e2a2647 2181 if ((UNSPECIFIEDP (attrs[i]) || IGNORE_DEFFACE_P (attrs[i])))
6288c62f 2182 break;
82641697
GM
2183
2184 return i == LFACE_VECTOR_SIZE;
2185}
2186
c3cee013 2187#ifdef HAVE_WINDOW_SYSTEM
82641697 2188
2dee4c0b
KH
2189/* Set font-related attributes of Lisp face LFACE from FONT-OBJECT.
2190 If FORCE_P is zero, set only unspecified attributes of LFACE. The
2191 exception is `font' attribute. It is set to FONT_OBJECT regardless
2192 of FORCE_P. */
178c5d9c 2193
82641697 2194static int
971de7fb 2195set_lface_from_font (struct frame *f, Lisp_Object lface, Lisp_Object font_object, int force_p)
f4d3bea3 2196{
f4d3bea3 2197 Lisp_Object val;
2dee4c0b 2198 struct font *font = XFONT_OBJECT (font_object);
f4d3bea3
KH
2199
2200 /* Set attributes only if unspecified, otherwise face defaults for
2201 new frames would never take effect. If the font doesn't have a
2202 specific property, set a normal value for that. */
2203
2204 if (force_p || UNSPECIFIEDP (LFACE_FAMILY (lface)))
2205 {
2dee4c0b 2206 Lisp_Object family = AREF (font_object, FONT_FAMILY_INDEX);
f4d3bea3 2207
53aaf1e2
KH
2208 LFACE_FAMILY (lface) = SYMBOL_NAME (family);
2209 }
2210
2211 if (force_p || UNSPECIFIEDP (LFACE_FOUNDRY (lface)))
2212 {
2213 Lisp_Object foundry = AREF (font_object, FONT_FOUNDRY_INDEX);
2214
2215 LFACE_FOUNDRY (lface) = SYMBOL_NAME (foundry);
f4d3bea3
KH
2216 }
2217
2218 if (force_p || UNSPECIFIEDP (LFACE_HEIGHT (lface)))
2219 {
2dee4c0b 2220 int pt = PIXEL_TO_POINT (font->pixel_size * 10, f->resy);
f4d3bea3
KH
2221
2222 xassert (pt > 0);
2223 LFACE_HEIGHT (lface) = make_number (pt);
2224 }
2225
f4d3bea3
KH
2226 if (force_p || UNSPECIFIEDP (LFACE_WEIGHT (lface)))
2227 {
2dee4c0b
KH
2228 val = FONT_WEIGHT_FOR_FACE (font_object);
2229 LFACE_WEIGHT (lface) = ! NILP (val) ? val :Qnormal;
f4d3bea3
KH
2230 }
2231 if (force_p || UNSPECIFIEDP (LFACE_SLANT (lface)))
2232 {
2dee4c0b
KH
2233 val = FONT_SLANT_FOR_FACE (font_object);
2234 LFACE_SLANT (lface) = ! NILP (val) ? val : Qnormal;
f4d3bea3
KH
2235 }
2236 if (force_p || UNSPECIFIEDP (LFACE_SWIDTH (lface)))
2237 {
2dee4c0b
KH
2238 val = FONT_WIDTH_FOR_FACE (font_object);
2239 LFACE_SWIDTH (lface) = ! NILP (val) ? val : Qnormal;
f4d3bea3
KH
2240 }
2241
2dee4c0b
KH
2242 LFACE_FONT (lface) = font_object;
2243 return 1;
f4d3bea3 2244}
f4d3bea3 2245
c3cee013 2246#endif /* HAVE_WINDOW_SYSTEM */
82641697
GM
2247
2248
2c20458f
MB
2249/* Merges the face height FROM with the face height TO, and returns the
2250 merged height. If FROM is an invalid height, then INVALID is
cdfaafa9
MB
2251 returned instead. FROM and TO may be either absolute face heights or
2252 `relative' heights; the returned value is always an absolute height
fe69cf00 2253 unless both FROM and TO are relative. */
2c20458f 2254
6b463e58 2255static Lisp_Object
971de7fb 2256merge_face_heights (Lisp_Object from, Lisp_Object to, Lisp_Object invalid)
2c20458f 2257{
cdfaafa9 2258 Lisp_Object result = invalid;
2c20458f
MB
2259
2260 if (INTEGERP (from))
cdfaafa9
MB
2261 /* FROM is absolute, just use it as is. */
2262 result = from;
2263 else if (FLOATP (from))
2264 /* FROM is a scale, use it to adjust TO. */
2265 {
2266 if (INTEGERP (to))
2267 /* relative X absolute => absolute */
c319cf24 2268 result = make_number ((EMACS_INT)(XFLOAT_DATA (from) * XINT (to)));
cdfaafa9
MB
2269 else if (FLOATP (to))
2270 /* relative X relative => relative */
2271 result = make_float (XFLOAT_DATA (from) * XFLOAT_DATA (to));
a0a23346
MB
2272 else if (UNSPECIFIEDP (to))
2273 result = from;
2c20458f 2274 }
2c20458f 2275 else if (FUNCTIONP (from))
cdfaafa9 2276 /* FROM is a function, which use to adjust TO. */
2c20458f
MB
2277 {
2278 /* Call function with current height as argument.
2279 From is the new height. */
cdfaafa9 2280 Lisp_Object args[2];
2c20458f
MB
2281
2282 args[0] = from;
2283 args[1] = to;
cdfaafa9 2284 result = safe_call (2, args);
2c20458f 2285
cdfaafa9
MB
2286 /* Ensure that if TO was absolute, so is the result. */
2287 if (INTEGERP (to) && !INTEGERP (result))
2288 result = invalid;
2c20458f
MB
2289 }
2290
cdfaafa9 2291 return result;
2c20458f
MB
2292}
2293
2294
2295/* Merge two Lisp face attribute vectors on frame F, FROM and TO, and
613fa7f2 2296 store the resulting attributes in TO, which must be already be
e7d7fd8c
MB
2297 completely specified and contain only absolute attributes. Every
2298 specified attribute of FROM overrides the corresponding attribute of
2299 TO; relative attributes in FROM are merged with the absolute value in
2300 TO and replace it. NAMED_MERGE_POINTS is used internally to detect
f2cec7a9
MB
2301 loops in face inheritance/remapping; it should be 0 when called from
2302 other places. */
82641697
GM
2303
2304static INLINE void
971de7fb 2305merge_face_vectors (struct frame *f, Lisp_Object *from, Lisp_Object *to, struct named_merge_point *named_merge_points)
82641697
GM
2306{
2307 int i;
2c20458f
MB
2308
2309 /* If FROM inherits from some other faces, merge their attributes into
2310 TO before merging FROM's direct attributes. Note that an :inherit
2311 attribute of `unspecified' is the same as one of nil; we never
2312 merge :inherit attributes, so nil is more correct, but lots of
2313 other code uses `unspecified' as a generic value for face attributes. */
2314 if (!UNSPECIFIEDP (from[LFACE_INHERIT_INDEX])
2315 && !NILP (from[LFACE_INHERIT_INDEX]))
a0a23346 2316 merge_face_ref (f, from[LFACE_INHERIT_INDEX], to, 0, named_merge_points);
2c20458f 2317
2dee4c0b
KH
2318 i = LFACE_FONT_INDEX;
2319 if (!UNSPECIFIEDP (from[i]))
2320 {
2321 if (!UNSPECIFIEDP (to[i]))
92470028 2322 to[i] = merge_font_spec (from[i], to[i]);
2dee4c0b 2323 else
92470028 2324 to[i] = copy_font_spec (from[i]);
89dc9a8e
KH
2325 if (! NILP (AREF (to[i], FONT_FOUNDRY_INDEX)))
2326 to[LFACE_FOUNDRY_INDEX] = SYMBOL_NAME (AREF (to[i], FONT_FOUNDRY_INDEX));
2327 if (! NILP (AREF (to[i], FONT_FAMILY_INDEX)))
2328 to[LFACE_FAMILY_INDEX] = SYMBOL_NAME (AREF (to[i], FONT_FAMILY_INDEX));
2329 if (! NILP (AREF (to[i], FONT_WEIGHT_INDEX)))
2330 to[LFACE_WEIGHT_INDEX] = FONT_WEIGHT_FOR_FACE (to[i]);
2331 if (! NILP (AREF (to[i], FONT_SLANT_INDEX)))
2332 to[LFACE_SLANT_INDEX] = FONT_SLANT_FOR_FACE (to[i]);
2333 if (! NILP (AREF (to[i], FONT_WIDTH_INDEX)))
2334 to[LFACE_SWIDTH_INDEX] = FONT_WIDTH_FOR_FACE (to[i]);
2dee4c0b
KH
2335 ASET (to[i], FONT_SIZE_INDEX, Qnil);
2336 }
87188200 2337
82641697
GM
2338 for (i = 1; i < LFACE_VECTOR_SIZE; ++i)
2339 if (!UNSPECIFIEDP (from[i]))
ab8469eb
PJ
2340 {
2341 if (i == LFACE_HEIGHT_INDEX && !INTEGERP (from[i]))
2dee4c0b
KH
2342 {
2343 to[i] = merge_face_heights (from[i], to[i], to[i]);
2344 font_clear_prop (to, FONT_SIZE_INDEX);
2345 }
89dc9a8e
KH
2346 else if (i != LFACE_FONT_INDEX
2347 && ! EQ (to[i], from[i]))
2dee4c0b
KH
2348 {
2349 to[i] = from[i];
2350 if (i >= LFACE_FAMILY_INDEX && i <=LFACE_SLANT_INDEX)
2351 font_clear_prop (to,
2352 (i == LFACE_FAMILY_INDEX ? FONT_FAMILY_INDEX
53aaf1e2 2353 : i == LFACE_FOUNDRY_INDEX ? FONT_FOUNDRY_INDEX
2dee4c0b
KH
2354 : i == LFACE_SWIDTH_INDEX ? FONT_WIDTH_INDEX
2355 : i == LFACE_HEIGHT_INDEX ? FONT_SIZE_INDEX
2356 : i == LFACE_WEIGHT_INDEX ? FONT_WEIGHT_INDEX
2357 : FONT_SLANT_INDEX));
2358 }
ab8469eb 2359 }
2c20458f
MB
2360
2361 /* TO is always an absolute face, which should inherit from nothing.
2362 We blindly copy the :inherit attribute above and fix it up here. */
2363 to[LFACE_INHERIT_INDEX] = Qnil;
2364}
2365
a0a23346
MB
2366/* Merge the named face FACE_NAME on frame F, into the vector of face
2367 attributes TO. NAMED_MERGE_POINTS is used to detect loops in face
2368 inheritance. Returns true if FACE_NAME is a valid face name and
2369 merging succeeded. */
6288c62f 2370
a0a23346 2371static int
971de7fb 2372merge_named_face (struct frame *f, Lisp_Object face_name, Lisp_Object *to, struct named_merge_point *named_merge_points)
2c20458f 2373{
a0a23346 2374 struct named_merge_point named_merge_point;
2c20458f 2375
a0a23346 2376 if (push_named_merge_point (&named_merge_point,
f2cec7a9
MB
2377 face_name, NAMED_MERGE_POINT_NORMAL,
2378 &named_merge_points))
2c20458f 2379 {
e1e419ec 2380 struct gcpro gcpro1;
e7d7fd8c 2381 Lisp_Object from[LFACE_VECTOR_SIZE];
f2cec7a9 2382 int ok = get_lface_attributes (f, face_name, from, 0, named_merge_points);
2c20458f 2383
e7d7fd8c
MB
2384 if (ok)
2385 {
2386 GCPRO1 (named_merge_point.face_name);
2387 merge_face_vectors (f, from, to, named_merge_points);
2388 UNGCPRO;
2389 }
2390
2391 return ok;
2c20458f 2392 }
a0a23346
MB
2393 else
2394 return 0;
82641697
GM
2395}
2396
2397
a0a23346
MB
2398/* Merge face attributes from the lisp `face reference' FACE_REF on
2399 frame F into the face attribute vector TO. If ERR_MSGS is non-zero,
2400 problems with FACE_REF cause an error message to be shown. Return
2401 non-zero if no errors occurred (regardless of the value of ERR_MSGS).
2402 NAMED_MERGE_POINTS is used to detect loops in face inheritance or
2403 list structure; it may be 0 for most callers.
2404
2405 FACE_REF may be a single face specification or a list of such
2406 specifications. Each face specification can be:
82641697
GM
2407
2408 1. A symbol or string naming a Lisp face.
2409
2410 2. A property list of the form (KEYWORD VALUE ...) where each
2411 KEYWORD is a face attribute name, and value is an appropriate value
2412 for that attribute.
2413
2414 3. Conses or the form (FOREGROUND-COLOR . COLOR) or
2415 (BACKGROUND-COLOR . COLOR) where COLOR is a color name. This is
2416 for compatibility with 20.2.
2417
2418 Face specifications earlier in lists take precedence over later
2419 specifications. */
178c5d9c 2420
a0a23346 2421static int
971de7fb 2422merge_face_ref (struct frame *f, Lisp_Object face_ref, Lisp_Object *to, int err_msgs, struct named_merge_point *named_merge_points)
82641697 2423{
a0a23346
MB
2424 int ok = 1; /* Succeed without an error? */
2425
2426 if (CONSP (face_ref))
82641697 2427 {
a0a23346 2428 Lisp_Object first = XCAR (face_ref);
178c5d9c 2429
82641697
GM
2430 if (EQ (first, Qforeground_color)
2431 || EQ (first, Qbackground_color))
2432 {
2433 /* One of (FOREGROUND-COLOR . COLOR) or (BACKGROUND-COLOR
2434 . COLOR). COLOR must be a string. */
a0a23346 2435 Lisp_Object color_name = XCDR (face_ref);
82641697
GM
2436 Lisp_Object color = first;
2437
2438 if (STRINGP (color_name))
2439 {
2440 if (EQ (color, Qforeground_color))
2441 to[LFACE_FOREGROUND_INDEX] = color_name;
2442 else
2443 to[LFACE_BACKGROUND_INDEX] = color_name;
2444 }
2445 else
a0a23346
MB
2446 {
2447 if (err_msgs)
2448 add_to_log ("Invalid face color", color_name, Qnil);
2449 ok = 0;
2450 }
82641697
GM
2451 }
2452 else if (SYMBOLP (first)
d5db4077 2453 && *SDATA (SYMBOL_NAME (first)) == ':')
82641697
GM
2454 {
2455 /* Assume this is the property list form. */
a0a23346 2456 while (CONSP (face_ref) && CONSP (XCDR (face_ref)))
82641697 2457 {
a0a23346
MB
2458 Lisp_Object keyword = XCAR (face_ref);
2459 Lisp_Object value = XCAR (XCDR (face_ref));
2460 int err = 0;
82641697 2461
d9639b25
RS
2462 /* Specifying `unspecified' is a no-op. */
2463 if (EQ (value, Qunspecified))
2464 ;
2465 else if (EQ (keyword, QCfamily))
82641697
GM
2466 {
2467 if (STRINGP (value))
2dee4c0b
KH
2468 {
2469 to[LFACE_FAMILY_INDEX] = value;
2470 font_clear_prop (to, FONT_FAMILY_INDEX);
2471 }
82641697 2472 else
a0a23346 2473 err = 1;
82641697 2474 }
53aaf1e2
KH
2475 else if (EQ (keyword, QCfoundry))
2476 {
2477 if (STRINGP (value))
2478 {
2479 to[LFACE_FOUNDRY_INDEX] = value;
2480 font_clear_prop (to, FONT_FOUNDRY_INDEX);
2481 }
2482 else
2483 err = 1;
2484 }
82641697
GM
2485 else if (EQ (keyword, QCheight))
2486 {
2c20458f 2487 Lisp_Object new_height =
e1e419ec 2488 merge_face_heights (value, to[LFACE_HEIGHT_INDEX], Qnil);
2c20458f 2489
a0a23346 2490 if (! NILP (new_height))
2dee4c0b
KH
2491 {
2492 to[LFACE_HEIGHT_INDEX] = new_height;
2493 font_clear_prop (to, FONT_SIZE_INDEX);
2494 }
a0a23346
MB
2495 else
2496 err = 1;
82641697
GM
2497 }
2498 else if (EQ (keyword, QCweight))
2499 {
2dee4c0b
KH
2500 if (SYMBOLP (value) && FONT_WEIGHT_NAME_NUMERIC (value) >= 0)
2501 {
2502 to[LFACE_WEIGHT_INDEX] = value;
2503 font_clear_prop (to, FONT_WEIGHT_INDEX);
2504 }
82641697 2505 else
a0a23346 2506 err = 1;
82641697
GM
2507 }
2508 else if (EQ (keyword, QCslant))
2509 {
2dee4c0b
KH
2510 if (SYMBOLP (value) && FONT_SLANT_NAME_NUMERIC (value) >= 0)
2511 {
2512 to[LFACE_SLANT_INDEX] = value;
2513 font_clear_prop (to, FONT_SLANT_INDEX);
2514 }
82641697 2515 else
a0a23346 2516 err = 1;
82641697
GM
2517 }
2518 else if (EQ (keyword, QCunderline))
2519 {
2520 if (EQ (value, Qt)
2521 || NILP (value)
2522 || STRINGP (value))
2523 to[LFACE_UNDERLINE_INDEX] = value;
2524 else
a0a23346 2525 err = 1;
82641697
GM
2526 }
2527 else if (EQ (keyword, QCoverline))
2528 {
2529 if (EQ (value, Qt)
2530 || NILP (value)
2531 || STRINGP (value))
2532 to[LFACE_OVERLINE_INDEX] = value;
2533 else
a0a23346 2534 err = 1;
82641697
GM
2535 }
2536 else if (EQ (keyword, QCstrike_through))
2537 {
2538 if (EQ (value, Qt)
2539 || NILP (value)
2540 || STRINGP (value))
2541 to[LFACE_STRIKE_THROUGH_INDEX] = value;
2542 else
a0a23346 2543 err = 1;
82641697
GM
2544 }
2545 else if (EQ (keyword, QCbox))
2546 {
2547 if (EQ (value, Qt))
2548 value = make_number (1);
2549 if (INTEGERP (value)
2550 || STRINGP (value)
2551 || CONSP (value)
2552 || NILP (value))
2553 to[LFACE_BOX_INDEX] = value;
2554 else
a0a23346 2555 err = 1;
82641697
GM
2556 }
2557 else if (EQ (keyword, QCinverse_video)
2558 || EQ (keyword, QCreverse_video))
2559 {
2560 if (EQ (value, Qt) || NILP (value))
2561 to[LFACE_INVERSE_INDEX] = value;
2562 else
a0a23346 2563 err = 1;
82641697
GM
2564 }
2565 else if (EQ (keyword, QCforeground))
2566 {
2567 if (STRINGP (value))
2568 to[LFACE_FOREGROUND_INDEX] = value;
2569 else
a0a23346 2570 err = 1;
82641697
GM
2571 }
2572 else if (EQ (keyword, QCbackground))
2573 {
2574 if (STRINGP (value))
2575 to[LFACE_BACKGROUND_INDEX] = value;
2576 else
a0a23346 2577 err = 1;
82641697
GM
2578 }
2579 else if (EQ (keyword, QCstipple))
2580 {
edfda783 2581#if defined(HAVE_X_WINDOWS) || defined(HAVE_NS)
fef04523 2582 Lisp_Object pixmap_p = Fbitmap_spec_p (value);
82641697
GM
2583 if (!NILP (pixmap_p))
2584 to[LFACE_STIPPLE_INDEX] = value;
2585 else
a0a23346 2586 err = 1;
82641697
GM
2587#endif
2588 }
2589 else if (EQ (keyword, QCwidth))
2590 {
2dee4c0b
KH
2591 if (SYMBOLP (value) && FONT_WIDTH_NAME_NUMERIC (value) >= 0)
2592 {
2593 to[LFACE_SWIDTH_INDEX] = value;
2594 font_clear_prop (to, FONT_WIDTH_INDEX);
2595 }
82641697 2596 else
a0a23346 2597 err = 1;
82641697 2598 }
2c20458f
MB
2599 else if (EQ (keyword, QCinherit))
2600 {
a0a23346
MB
2601 /* This is not really very useful; it's just like a
2602 normal face reference. */
2603 if (! merge_face_ref (f, value, to,
2604 err_msgs, named_merge_points))
2605 err = 1;
2c20458f 2606 }
82641697 2607 else
a0a23346 2608 err = 1;
82641697 2609
a0a23346
MB
2610 if (err)
2611 {
2612 add_to_log ("Invalid face attribute %S %S", keyword, value);
2613 ok = 0;
2614 }
82641697 2615
a0a23346 2616 face_ref = XCDR (XCDR (face_ref));
82641697
GM
2617 }
2618 }
2619 else
2620 {
a0a23346
MB
2621 /* This is a list of face refs. Those at the beginning of the
2622 list take precedence over what follows, so we have to merge
2623 from the end backwards. */
2624 Lisp_Object next = XCDR (face_ref);
2625
2626 if (! NILP (next))
2627 ok = merge_face_ref (f, next, to, err_msgs, named_merge_points);
2628
2629 if (! merge_face_ref (f, first, to, err_msgs, named_merge_points))
2630 ok = 0;
82641697
GM
2631 }
2632 }
2633 else
2634 {
a0a23346
MB
2635 /* FACE_REF ought to be a face name. */
2636 ok = merge_named_face (f, face_ref, to, named_merge_points);
2637 if (!ok && err_msgs)
2638 add_to_log ("Invalid face reference: %s", face_ref, Qnil);
82641697 2639 }
a0a23346
MB
2640
2641 return ok;
82641697
GM
2642}
2643
2644
2645DEFUN ("internal-make-lisp-face", Finternal_make_lisp_face,
2646 Sinternal_make_lisp_face, 1, 2, 0,
7ee72033 2647 doc: /* Make FACE, a symbol, a Lisp face with all attributes nil.
228299fa
GM
2648If FACE was not known as a face before, create a new one.
2649If optional argument FRAME is specified, make a frame-local face
2650for that frame. Otherwise operate on the global face definition.
7ee72033 2651Value is a vector of face attributes. */)
5842a27b 2652 (Lisp_Object face, Lisp_Object frame)
82641697
GM
2653{
2654 Lisp_Object global_lface, lface;
2655 struct frame *f;
2656 int i;
2657
b7826503 2658 CHECK_SYMBOL (face);
82641697 2659 global_lface = lface_from_face_name (NULL, face, 0);
178c5d9c 2660
82641697
GM
2661 if (!NILP (frame))
2662 {
b7826503 2663 CHECK_LIVE_FRAME (frame);
82641697
GM
2664 f = XFRAME (frame);
2665 lface = lface_from_face_name (f, face, 0);
2666 }
2667 else
2668 f = NULL, lface = Qnil;
2669
2670 /* Add a global definition if there is none. */
2671 if (NILP (global_lface))
2672 {
2673 global_lface = Fmake_vector (make_number (LFACE_VECTOR_SIZE),
2674 Qunspecified);
dfae5f9a 2675 ASET (global_lface, 0, Qface);
178c5d9c 2676 Vface_new_frame_defaults = Fcons (Fcons (face, global_lface),
82641697 2677 Vface_new_frame_defaults);
178c5d9c 2678
82641697
GM
2679 /* Assign the new Lisp face a unique ID. The mapping from Lisp
2680 face id to Lisp face is given by the vector lface_id_to_name.
2681 The mapping from Lisp face to Lisp face id is given by the
2682 property `face' of the Lisp face name. */
2683 if (next_lface_id == lface_id_to_name_size)
2684 {
2685 int new_size = max (50, 2 * lface_id_to_name_size);
2686 int sz = new_size * sizeof *lface_id_to_name;
2687 lface_id_to_name = (Lisp_Object *) xrealloc (lface_id_to_name, sz);
2688 lface_id_to_name_size = new_size;
2689 }
178c5d9c 2690
82641697
GM
2691 lface_id_to_name[next_lface_id] = face;
2692 Fput (face, Qface, make_number (next_lface_id));
2693 ++next_lface_id;
2694 }
2695 else if (f == NULL)
2696 for (i = 1; i < LFACE_VECTOR_SIZE; ++i)
dfae5f9a 2697 ASET (global_lface, i, Qunspecified);
178c5d9c 2698
82641697
GM
2699 /* Add a frame-local definition. */
2700 if (f)
2701 {
2702 if (NILP (lface))
2703 {
2704 lface = Fmake_vector (make_number (LFACE_VECTOR_SIZE),
2705 Qunspecified);
dfae5f9a 2706 ASET (lface, 0, Qface);
82641697
GM
2707 f->face_alist = Fcons (Fcons (face, lface), f->face_alist);
2708 }
2709 else
2710 for (i = 1; i < LFACE_VECTOR_SIZE; ++i)
dfae5f9a 2711 ASET (lface, i, Qunspecified);
82641697
GM
2712 }
2713 else
2714 lface = global_lface;
2715
33565969
RS
2716 /* Changing a named face means that all realized faces depending on
2717 that face are invalid. Since we cannot tell which realized faces
2718 depend on the face, make sure they are all removed. This is done
2719 by incrementing face_change_count. The next call to
2720 init_iterator will then free realized faces. */
46b00436
KS
2721 if (NILP (Fget (face, Qface_no_inherit)))
2722 {
2723 ++face_change_count;
2724 ++windows_or_buffers_changed;
2725 }
33565969 2726
82641697
GM
2727 xassert (LFACEP (lface));
2728 check_lface (lface);
2729 return lface;
2730}
2731
2732
2733DEFUN ("internal-lisp-face-p", Finternal_lisp_face_p,
2734 Sinternal_lisp_face_p, 1, 2, 0,
7ee72033 2735 doc: /* Return non-nil if FACE names a face.
b84ce3c5 2736FACE should be a symbol or string.
1d256714 2737If optional second argument FRAME is non-nil, check for the
228299fa 2738existence of a frame-local face with name FACE on that frame.
7ee72033 2739Otherwise check for the existence of a global face. */)
5842a27b 2740 (Lisp_Object face, Lisp_Object frame)
82641697
GM
2741{
2742 Lisp_Object lface;
178c5d9c 2743
65fddb74
JB
2744 face = resolve_face_name (face, 1);
2745
82641697
GM
2746 if (!NILP (frame))
2747 {
b7826503 2748 CHECK_LIVE_FRAME (frame);
82641697
GM
2749 lface = lface_from_face_name (XFRAME (frame), face, 0);
2750 }
2751 else
2752 lface = lface_from_face_name (NULL, face, 0);
2753
2754 return lface;
2755}
2756
2757
2758DEFUN ("internal-copy-lisp-face", Finternal_copy_lisp_face,
2759 Sinternal_copy_lisp_face, 4, 4, 0,
7ee72033 2760 doc: /* Copy face FROM to TO.
5e9bab6f
RS
2761If FRAME is t, copy the global face definition of FROM.
2762Otherwise, copy the frame-local definition of FROM on FRAME.
2763If NEW-FRAME is a frame, copy that data into the frame-local
d5ab09cd 2764definition of TO on NEW-FRAME. If NEW-FRAME is nil,
5e9bab6f 2765FRAME controls where the data is copied to.
228299fa 2766
5e9bab6f 2767The value is TO. */)
5842a27b 2768 (Lisp_Object from, Lisp_Object to, Lisp_Object frame, Lisp_Object new_frame)
82641697
GM
2769{
2770 Lisp_Object lface, copy;
178c5d9c 2771
b7826503
PJ
2772 CHECK_SYMBOL (from);
2773 CHECK_SYMBOL (to);
82641697
GM
2774
2775 if (EQ (frame, Qt))
2776 {
2777 /* Copy global definition of FROM. We don't make copies of
2778 strings etc. because 20.2 didn't do it either. */
2779 lface = lface_from_face_name (NULL, from, 1);
2780 copy = Finternal_make_lisp_face (to, Qnil);
2781 }
2782 else
2783 {
2784 /* Copy frame-local definition of FROM. */
5e9bab6f
RS
2785 if (NILP (new_frame))
2786 new_frame = frame;
b7826503
PJ
2787 CHECK_LIVE_FRAME (frame);
2788 CHECK_LIVE_FRAME (new_frame);
82641697
GM
2789 lface = lface_from_face_name (XFRAME (frame), from, 1);
2790 copy = Finternal_make_lisp_face (to, new_frame);
2791 }
178c5d9c 2792
72af86bd
AS
2793 memcpy (XVECTOR (copy)->contents, XVECTOR (lface)->contents,
2794 LFACE_VECTOR_SIZE * sizeof (Lisp_Object));
178c5d9c 2795
33565969
RS
2796 /* Changing a named face means that all realized faces depending on
2797 that face are invalid. Since we cannot tell which realized faces
2798 depend on the face, make sure they are all removed. This is done
2799 by incrementing face_change_count. The next call to
2800 init_iterator will then free realized faces. */
46b00436
KS
2801 if (NILP (Fget (to, Qface_no_inherit)))
2802 {
2803 ++face_change_count;
2804 ++windows_or_buffers_changed;
2805 }
33565969 2806
82641697
GM
2807 return to;
2808}
2809
2810
2811DEFUN ("internal-set-lisp-face-attribute", Finternal_set_lisp_face_attribute,
2812 Sinternal_set_lisp_face_attribute, 3, 4, 0,
7ee72033 2813 doc: /* Set attribute ATTR of FACE to VALUE.
228299fa
GM
2814FRAME being a frame means change the face on that frame.
2815FRAME nil means change the face of the selected frame.
2816FRAME t means change the default for new frames.
2817FRAME 0 means change the face on all frames, and change the default
7ee72033 2818 for new frames. */)
5842a27b 2819 (Lisp_Object face, Lisp_Object attr, Lisp_Object value, Lisp_Object frame)
82641697
GM
2820{
2821 Lisp_Object lface;
2822 Lisp_Object old_value = Qnil;
2dee4c0b
KH
2823 /* Set one of enum font_property_index (> 0) if ATTR is one of
2824 font-related attributes other than QCfont and QCfontset. */
2825 enum font_property_index prop_index = 0;
178c5d9c 2826
b7826503
PJ
2827 CHECK_SYMBOL (face);
2828 CHECK_SYMBOL (attr);
82641697 2829
d1bf13b3 2830 face = resolve_face_name (face, 1);
c7ae3284 2831
628436fb
GM
2832 /* If FRAME is 0, change face on all frames, and change the
2833 default for new frames. */
2834 if (INTEGERP (frame) && XINT (frame) == 0)
2835 {
2836 Lisp_Object tail;
d12d0a9b 2837 Finternal_set_lisp_face_attribute (face, attr, value, Qt);
628436fb
GM
2838 FOR_EACH_FRAME (tail, frame)
2839 Finternal_set_lisp_face_attribute (face, attr, value, frame);
d12d0a9b 2840 return face;
628436fb
GM
2841 }
2842
82641697
GM
2843 /* Set lface to the Lisp attribute vector of FACE. */
2844 if (EQ (frame, Qt))
0268cef3
CY
2845 {
2846 lface = lface_from_face_name (NULL, face, 1);
67d23e01
CY
2847
2848 /* When updating face-new-frame-defaults, we put :ignore-defface
2849 where the caller wants `unspecified'. This forces the frame
2850 defaults to ignore the defface value. Otherwise, the defface
2851 will take effect, which is generally not what is intended.
2852 The value of that attribute will be inherited from some other
2853 face during face merging. See internal_merge_in_global_face. */
0268cef3 2854 if (UNSPECIFIEDP (value))
67d23e01 2855 value = Qignore_defface;
0268cef3 2856 }
82641697
GM
2857 else
2858 {
2859 if (NILP (frame))
c0617987 2860 frame = selected_frame;
178c5d9c 2861
b7826503 2862 CHECK_LIVE_FRAME (frame);
82641697 2863 lface = lface_from_face_name (XFRAME (frame), face, 0);
178c5d9c 2864
82641697
GM
2865 /* If a frame-local face doesn't exist yet, create one. */
2866 if (NILP (lface))
2867 lface = Finternal_make_lisp_face (face, frame);
2868 }
2869
2870 if (EQ (attr, QCfamily))
2871 {
2ff10663 2872 if (!UNSPECIFIEDP (value) && !IGNORE_DEFFACE_P (value))
82641697 2873 {
b7826503 2874 CHECK_STRING (value);
d5db4077 2875 if (SCHARS (value) == 0)
82641697
GM
2876 signal_error ("Invalid face family", value);
2877 }
2878 old_value = LFACE_FAMILY (lface);
2879 LFACE_FAMILY (lface) = value;
2dee4c0b 2880 prop_index = FONT_FAMILY_INDEX;
82641697 2881 }
53aaf1e2
KH
2882 else if (EQ (attr, QCfoundry))
2883 {
2884 if (!UNSPECIFIEDP (value) && !IGNORE_DEFFACE_P (value))
2885 {
2886 CHECK_STRING (value);
2887 if (SCHARS (value) == 0)
2888 signal_error ("Invalid face foundry", value);
2889 }
2890 old_value = LFACE_FOUNDRY (lface);
2891 LFACE_FOUNDRY (lface) = value;
2892 prop_index = FONT_FOUNDRY_INDEX;
2893 }
82641697
GM
2894 else if (EQ (attr, QCheight))
2895 {
2ff10663 2896 if (!UNSPECIFIEDP (value) && !IGNORE_DEFFACE_P (value))
82641697 2897 {
e66d5363
CY
2898 if (EQ (face, Qdefault))
2899 {
2900 /* The default face must have an absolute size. */
2901 if (!INTEGERP (value) || XINT (value) <= 0)
95838641 2902 signal_error ("Default face height not absolute and positive", value);
e66d5363
CY
2903 }
2904 else
2905 {
2906 /* For non-default faces, do a test merge with a random
2907 height to see if VALUE's ok. */
2908 Lisp_Object test = merge_face_heights (value,
2909 make_number (10),
2910 Qnil);
2911 if (!INTEGERP (test) || XINT (test) <= 0)
95838641 2912 signal_error ("Face height does not produce a positive integer", value);
e66d5363 2913 }
82641697 2914 }
2c20458f 2915
82641697
GM
2916 old_value = LFACE_HEIGHT (lface);
2917 LFACE_HEIGHT (lface) = value;
2dee4c0b 2918 prop_index = FONT_SIZE_INDEX;
82641697
GM
2919 }
2920 else if (EQ (attr, QCweight))
2921 {
2ff10663 2922 if (!UNSPECIFIEDP (value) && !IGNORE_DEFFACE_P (value))
82641697 2923 {
b7826503 2924 CHECK_SYMBOL (value);
2dee4c0b 2925 if (FONT_WEIGHT_NAME_NUMERIC (value) < 0)
82641697
GM
2926 signal_error ("Invalid face weight", value);
2927 }
2928 old_value = LFACE_WEIGHT (lface);
2929 LFACE_WEIGHT (lface) = value;
2dee4c0b 2930 prop_index = FONT_WEIGHT_INDEX;
82641697
GM
2931 }
2932 else if (EQ (attr, QCslant))
2933 {
2ff10663 2934 if (!UNSPECIFIEDP (value) && !IGNORE_DEFFACE_P (value))
82641697 2935 {
b7826503 2936 CHECK_SYMBOL (value);
2dee4c0b 2937 if (FONT_SLANT_NAME_NUMERIC (value) < 0)
82641697
GM
2938 signal_error ("Invalid face slant", value);
2939 }
2940 old_value = LFACE_SLANT (lface);
2941 LFACE_SLANT (lface) = value;
2dee4c0b 2942 prop_index = FONT_SLANT_INDEX;
82641697
GM
2943 }
2944 else if (EQ (attr, QCunderline))
2945 {
2ff10663 2946 if (!UNSPECIFIEDP (value) && !IGNORE_DEFFACE_P (value))
82641697
GM
2947 if ((SYMBOLP (value)
2948 && !EQ (value, Qt)
2949 && !EQ (value, Qnil))
2950 /* Underline color. */
2951 || (STRINGP (value)
d5db4077 2952 && SCHARS (value) == 0))
82641697 2953 signal_error ("Invalid face underline", value);
178c5d9c 2954
82641697
GM
2955 old_value = LFACE_UNDERLINE (lface);
2956 LFACE_UNDERLINE (lface) = value;
2957 }
2958 else if (EQ (attr, QCoverline))
2959 {
2ff10663 2960 if (!UNSPECIFIEDP (value) && !IGNORE_DEFFACE_P (value))
82641697
GM
2961 if ((SYMBOLP (value)
2962 && !EQ (value, Qt)
2963 && !EQ (value, Qnil))
2964 /* Overline color. */
2965 || (STRINGP (value)
d5db4077 2966 && SCHARS (value) == 0))
82641697 2967 signal_error ("Invalid face overline", value);
178c5d9c 2968
82641697
GM
2969 old_value = LFACE_OVERLINE (lface);
2970 LFACE_OVERLINE (lface) = value;
2971 }
2972 else if (EQ (attr, QCstrike_through))
2973 {
2ff10663 2974 if (!UNSPECIFIEDP (value) && !IGNORE_DEFFACE_P (value))
82641697
GM
2975 if ((SYMBOLP (value)
2976 && !EQ (value, Qt)
2977 && !EQ (value, Qnil))
2978 /* Strike-through color. */
2979 || (STRINGP (value)
d5db4077 2980 && SCHARS (value) == 0))
82641697 2981 signal_error ("Invalid face strike-through", value);
178c5d9c 2982
82641697
GM
2983 old_value = LFACE_STRIKE_THROUGH (lface);
2984 LFACE_STRIKE_THROUGH (lface) = value;
2985 }
2986 else if (EQ (attr, QCbox))
2987 {
2988 int valid_p;
178c5d9c 2989
82641697
GM
2990 /* Allow t meaning a simple box of width 1 in foreground color
2991 of the face. */
2992 if (EQ (value, Qt))
2993 value = make_number (1);
2994
2ff10663 2995 if (UNSPECIFIEDP (value) || IGNORE_DEFFACE_P (value))
82641697
GM
2996 valid_p = 1;
2997 else if (NILP (value))
2998 valid_p = 1;
2999 else if (INTEGERP (value))
89624b8b 3000 valid_p = XINT (value) != 0;
82641697 3001 else if (STRINGP (value))
d5db4077 3002 valid_p = SCHARS (value) > 0;
82641697
GM
3003 else if (CONSP (value))
3004 {
3005 Lisp_Object tem;
178c5d9c 3006
82641697
GM
3007 tem = value;
3008 while (CONSP (tem))
3009 {
3010 Lisp_Object k, v;
3011
3012 k = XCAR (tem);
3013 tem = XCDR (tem);
3014 if (!CONSP (tem))
3015 break;
3016 v = XCAR (tem);
3017 tem = XCDR (tem);
178c5d9c 3018
82641697
GM
3019 if (EQ (k, QCline_width))
3020 {
89624b8b 3021 if (!INTEGERP (v) || XINT (v) == 0)
82641697
GM
3022 break;
3023 }
3024 else if (EQ (k, QCcolor))
3025 {
91c212f1 3026 if (!NILP (v) && (!STRINGP (v) || SCHARS (v) == 0))
82641697
GM
3027 break;
3028 }
3029 else if (EQ (k, QCstyle))
3030 {
3031 if (!EQ (v, Qpressed_button) && !EQ (v, Qreleased_button))
3032 break;
3033 }
3034 else
3035 break;
3036 }
3037
3038 valid_p = NILP (tem);
3039 }
3040 else
3041 valid_p = 0;
3042
3043 if (!valid_p)
3044 signal_error ("Invalid face box", value);
178c5d9c 3045
82641697
GM
3046 old_value = LFACE_BOX (lface);
3047 LFACE_BOX (lface) = value;
3048 }
3049 else if (EQ (attr, QCinverse_video)
3050 || EQ (attr, QCreverse_video))
3051 {
2ff10663 3052 if (!UNSPECIFIEDP (value) && !IGNORE_DEFFACE_P (value))
82641697 3053 {
b7826503 3054 CHECK_SYMBOL (value);
82641697
GM
3055 if (!EQ (value, Qt) && !NILP (value))
3056 signal_error ("Invalid inverse-video face attribute value", value);
3057 }
3058 old_value = LFACE_INVERSE (lface);
3059 LFACE_INVERSE (lface) = value;
3060 }
3061 else if (EQ (attr, QCforeground))
3062 {
ca6888b6
CY
3063 /* Compatibility with 20.x. */
3064 if (NILP (value))
3065 value = Qunspecified;
2ff10663 3066 if (!UNSPECIFIEDP (value) && !IGNORE_DEFFACE_P (value))
82641697
GM
3067 {
3068 /* Don't check for valid color names here because it depends
3069 on the frame (display) whether the color will be valid
3070 when the face is realized. */
b7826503 3071 CHECK_STRING (value);
d5db4077 3072 if (SCHARS (value) == 0)
82641697
GM
3073 signal_error ("Empty foreground color value", value);
3074 }
3075 old_value = LFACE_FOREGROUND (lface);
3076 LFACE_FOREGROUND (lface) = value;
3077 }
3078 else if (EQ (attr, QCbackground))
3079 {
ca6888b6
CY
3080 /* Compatibility with 20.x. */
3081 if (NILP (value))
3082 value = Qunspecified;
2ff10663 3083 if (!UNSPECIFIEDP (value) && !IGNORE_DEFFACE_P (value))
82641697
GM
3084 {
3085 /* Don't check for valid color names here because it depends
3086 on the frame (display) whether the color will be valid
3087 when the face is realized. */
b7826503 3088 CHECK_STRING (value);
d5db4077 3089 if (SCHARS (value) == 0)
82641697
GM
3090 signal_error ("Empty background color value", value);
3091 }
3092 old_value = LFACE_BACKGROUND (lface);
3093 LFACE_BACKGROUND (lface) = value;
3094 }
3095 else if (EQ (attr, QCstipple))
3096 {
edfda783 3097#if defined(HAVE_X_WINDOWS) || defined(HAVE_NS)
2ff10663 3098 if (!UNSPECIFIEDP (value) && !IGNORE_DEFFACE_P (value)
82641697 3099 && !NILP (value)
fef04523 3100 && NILP (Fbitmap_spec_p (value)))
82641697
GM
3101 signal_error ("Invalid stipple attribute", value);
3102 old_value = LFACE_STIPPLE (lface);
3103 LFACE_STIPPLE (lface) = value;
edfda783 3104#endif /* HAVE_X_WINDOWS || HAVE_NS */
82641697
GM
3105 }
3106 else if (EQ (attr, QCwidth))
3107 {
2ff10663 3108 if (!UNSPECIFIEDP (value) && !IGNORE_DEFFACE_P (value))
82641697 3109 {
b7826503 3110 CHECK_SYMBOL (value);
2dee4c0b 3111 if (FONT_WIDTH_NAME_NUMERIC (value) < 0)
82641697
GM
3112 signal_error ("Invalid face width", value);
3113 }
3114 old_value = LFACE_SWIDTH (lface);
3115 LFACE_SWIDTH (lface) = value;
2dee4c0b 3116 prop_index = FONT_WIDTH_INDEX;
82641697 3117 }
2dee4c0b 3118 else if (EQ (attr, QCfont))
82641697 3119 {
c3cee013 3120#ifdef HAVE_WINDOW_SYSTEM
3d90c96c 3121 if (EQ (frame, Qt) || FRAME_WINDOW_P (XFRAME (frame)))
96fbd2c6 3122 {
2dee4c0b 3123 if (!UNSPECIFIEDP (value) && !IGNORE_DEFFACE_P (value))
f4d3bea3 3124 {
2dee4c0b
KH
3125 FRAME_PTR f;
3126
3127 old_value = LFACE_FONT (lface);
3128 if (! FONTP (value))
f4d3bea3 3129 {
2dee4c0b
KH
3130 if (STRINGP (value))
3131 {
21bdb81a
CY
3132 Lisp_Object name = value;
3133 int fontset = fs_query_fontset (name, 0);
2dee4c0b
KH
3134
3135 if (fontset >= 0)
21bdb81a
CY
3136 name = fontset_ascii (fontset);
3137 value = font_spec_from_name (name);
3138 if (!FONTP (value))
3139 signal_error ("Invalid font name", name);
2dee4c0b
KH
3140 }
3141 else
3142 signal_error ("Invalid font or font-spec", value);
f4d3bea3 3143 }
2dee4c0b
KH
3144 if (EQ (frame, Qt))
3145 f = XFRAME (selected_frame);
f4d3bea3 3146 else
2dee4c0b
KH
3147 f = XFRAME (frame);
3148 if (! FONT_OBJECT_P (value))
f4d3bea3 3149 {
2dee4c0b 3150 Lisp_Object *attrs = XVECTOR (lface)->contents;
f4d3bea3
KH
3151 Lisp_Object font_object;
3152
2dee4c0b 3153 font_object = font_load_for_lface (f, attrs, value);
db1c10a2 3154 if (NILP (font_object))
2dee4c0b
KH
3155 signal_error ("Font not available", value);
3156 value = font_object;
f4d3bea3 3157 }
2dee4c0b 3158 set_lface_from_font (f, lface, value, 1);
f4d3bea3
KH
3159 }
3160 else
2dee4c0b
KH
3161 LFACE_FONT (lface) = value;
3162 }
3163#endif /* HAVE_WINDOW_SYSTEM */
3164 }
3165 else if (EQ (attr, QCfontset))
3166 {
3167#ifdef HAVE_WINDOW_SYSTEM
3168 if (EQ (frame, Qt) || FRAME_WINDOW_P (XFRAME (frame)))
3169 {
3170 Lisp_Object tmp;
39506348 3171
2dee4c0b
KH
3172 old_value = LFACE_FONTSET (lface);
3173 tmp = Fquery_fontset (value, Qnil);
3174 if (NILP (tmp))
3175 signal_error ("Invalid fontset name", value);
3176 LFACE_FONTSET (lface) = value = tmp;
96fbd2c6 3177 }
c3cee013 3178#endif /* HAVE_WINDOW_SYSTEM */
82641697 3179 }
2c20458f
MB
3180 else if (EQ (attr, QCinherit))
3181 {
3182 Lisp_Object tail;
3183 if (SYMBOLP (value))
3184 tail = Qnil;
3185 else
3186 for (tail = value; CONSP (tail); tail = XCDR (tail))
3187 if (!SYMBOLP (XCAR (tail)))
3188 break;
3189 if (NILP (tail))
3190 LFACE_INHERIT (lface) = value;
3191 else
6288c62f 3192 signal_error ("Invalid face inheritance", value);
2c20458f 3193 }
82641697
GM
3194 else if (EQ (attr, QCbold))
3195 {
3196 old_value = LFACE_WEIGHT (lface);
3197 LFACE_WEIGHT (lface) = NILP (value) ? Qnormal : Qbold;
2dee4c0b 3198 prop_index = FONT_WEIGHT_INDEX;
82641697
GM
3199 }
3200 else if (EQ (attr, QCitalic))
3201 {
2dee4c0b 3202 attr = QCslant;
82641697
GM
3203 old_value = LFACE_SLANT (lface);
3204 LFACE_SLANT (lface) = NILP (value) ? Qnormal : Qitalic;
2dee4c0b 3205 prop_index = FONT_SLANT_INDEX;
82641697
GM
3206 }
3207 else
3208 signal_error ("Invalid face attribute name", attr);
3209
2dee4c0b 3210 if (prop_index)
e69a00b7
CY
3211 {
3212 /* If a font-related attribute other than QCfont and QCfontset
3213 is specified, and if the original QCfont attribute has a font
3214 (font-spec or font-object), set the corresponding property in
3215 the font to nil so that the font selector doesn't think that
3216 the attribute is mandatory. Also, clear the average
3217 width. */
3218 font_clear_prop (XVECTOR (lface)->contents, prop_index);
e69a00b7 3219 }
39506348 3220
82641697
GM
3221 /* Changing a named face means that all realized faces depending on
3222 that face are invalid. Since we cannot tell which realized faces
3223 depend on the face, make sure they are all removed. This is done
3224 by incrementing face_change_count. The next call to
3225 init_iterator will then free realized faces. */
3226 if (!EQ (frame, Qt)
46b00436 3227 && NILP (Fget (face, Qface_no_inherit))
2dee4c0b 3228 && NILP (Fequal (old_value, value)))
82641697
GM
3229 {
3230 ++face_change_count;
3231 ++windows_or_buffers_changed;
3232 }
3233
2ff10663 3234 if (!UNSPECIFIEDP (value) && !IGNORE_DEFFACE_P (value)
82641697 3235 && NILP (Fequal (old_value, value)))
8bd201d6
GM
3236 {
3237 Lisp_Object param;
3238
3239 param = Qnil;
178c5d9c 3240
8bd201d6
GM
3241 if (EQ (face, Qdefault))
3242 {
b9c769f8 3243#ifdef HAVE_WINDOW_SYSTEM
8bd201d6
GM
3244 /* Changed font-related attributes of the `default' face are
3245 reflected in changed `font' frame parameters. */
ceeda019 3246 if (FRAMEP (frame)
2dee4c0b 3247 && (prop_index || EQ (attr, QCfont))
8bd201d6
GM
3248 && lface_fully_specified_p (XVECTOR (lface)->contents))
3249 set_font_frame_param (frame, lface);
b9c769f8
EZ
3250 else
3251#endif /* HAVE_WINDOW_SYSTEM */
3252
3253 if (EQ (attr, QCforeground))
8bd201d6
GM
3254 param = Qforeground_color;
3255 else if (EQ (attr, QCbackground))
3256 param = Qbackground_color;
3257 }
b9c769f8 3258#ifdef HAVE_WINDOW_SYSTEM
c3cee013 3259#ifndef WINDOWSNT
8bd201d6
GM
3260 else if (EQ (face, Qscroll_bar))
3261 {
3262 /* Changing the colors of `scroll-bar' sets frame parameters
3263 `scroll-bar-foreground' and `scroll-bar-background'. */
3264 if (EQ (attr, QCforeground))
3265 param = Qscroll_bar_foreground;
3266 else if (EQ (attr, QCbackground))
3267 param = Qscroll_bar_background;
3268 }
d12d0a9b 3269#endif /* not WINDOWSNT */
8bd201d6
GM
3270 else if (EQ (face, Qborder))
3271 {
3272 /* Changing background color of `border' sets frame parameter
3273 `border-color'. */
3274 if (EQ (attr, QCbackground))
3275 param = Qborder_color;
3276 }
3277 else if (EQ (face, Qcursor))
3278 {
3279 /* Changing background color of `cursor' sets frame parameter
3280 `cursor-color'. */
3281 if (EQ (attr, QCbackground))
3282 param = Qcursor_color;
3283 }
3284 else if (EQ (face, Qmouse))
3285 {
3286 /* Changing background color of `mouse' sets frame parameter
3287 `mouse-color'. */
3288 if (EQ (attr, QCbackground))
3289 param = Qmouse_color;
3290 }
b9c769f8 3291#endif /* HAVE_WINDOW_SYSTEM */
563f68f1 3292 else if (EQ (face, Qmenu))
ceeda019
GM
3293 {
3294 /* Indicate that we have to update the menu bar when
3295 realizing faces on FRAME. FRAME t change the
3296 default for new frames. We do this by setting
3297 setting the flag in new face caches */
3298 if (FRAMEP (frame))
3299 {
3300 struct frame *f = XFRAME (frame);
3301 if (FRAME_FACE_CACHE (f) == NULL)
3302 FRAME_FACE_CACHE (f) = make_face_cache (f);
3303 FRAME_FACE_CACHE (f)->menu_face_changed_p = 1;
3304 }
3305 else
3306 menu_face_changed_default = 1;
3307 }
8bd201d6 3308
39506348 3309 if (!NILP (param))
ab8469eb
PJ
3310 {
3311 if (EQ (frame, Qt))
3312 /* Update `default-frame-alist', which is used for new frames. */
3313 {
3314 store_in_alist (&Vdefault_frame_alist, param, value);
3315 }
3316 else
3317 /* Update the current frame's parameters. */
3318 {
3319 Lisp_Object cons;
3320 cons = XCAR (Vparam_value_alist);
3321 XSETCAR (cons, param);
3322 XSETCDR (cons, value);
3323 Fmodify_frame_parameters (frame, Vparam_value_alist);
3324 }
3325 }
8bd201d6 3326 }
82641697 3327
82641697
GM
3328 return face;
3329}
3330
3331
8bd201d6
GM
3332/* Update the corresponding face when frame parameter PARAM on frame F
3333 has been assigned the value NEW_VALUE. */
3334
3335void
971de7fb 3336update_face_from_frame_parameter (struct frame *f, Lisp_Object param, Lisp_Object new_value)
8bd201d6 3337{
46b00436 3338 Lisp_Object face = Qnil;
8bd201d6
GM
3339 Lisp_Object lface;
3340
3341 /* If there are no faces yet, give up. This is the case when called
3342 from Fx_create_frame, and we do the necessary things later in
92610620 3343 face-set-after-frame-defaults. */
8bd201d6
GM
3344 if (NILP (f->face_alist))
3345 return;
178c5d9c 3346
8bd201d6
GM
3347 if (EQ (param, Qforeground_color))
3348 {
46b00436
KS
3349 face = Qdefault;
3350 lface = lface_from_face_name (f, face, 1);
8bd201d6
GM
3351 LFACE_FOREGROUND (lface) = (STRINGP (new_value)
3352 ? new_value : Qunspecified);
3353 realize_basic_faces (f);
3354 }
3355 else if (EQ (param, Qbackground_color))
3356 {
92610620
GM
3357 Lisp_Object frame;
3358
3359 /* Changing the background color might change the background
c20577bc 3360 mode, so that we have to load new defface specs.
f2cec7a9 3361 Call frame-update-face-colors to do that. */
92610620 3362 XSETFRAME (frame, f);
c20577bc 3363 call1 (Qframe_set_background_mode, frame);
178c5d9c 3364
46b00436
KS
3365 face = Qdefault;
3366 lface = lface_from_face_name (f, face, 1);
8bd201d6
GM
3367 LFACE_BACKGROUND (lface) = (STRINGP (new_value)
3368 ? new_value : Qunspecified);
3369 realize_basic_faces (f);
3370 }
76ea4cc9 3371#ifdef HAVE_WINDOW_SYSTEM
46b00436 3372 else if (EQ (param, Qborder_color))
8bd201d6 3373 {
46b00436
KS
3374 face = Qborder;
3375 lface = lface_from_face_name (f, face, 1);
8bd201d6
GM
3376 LFACE_BACKGROUND (lface) = (STRINGP (new_value)
3377 ? new_value : Qunspecified);
3378 }
3379 else if (EQ (param, Qcursor_color))
3380 {
46b00436
KS
3381 face = Qcursor;
3382 lface = lface_from_face_name (f, face, 1);
8bd201d6
GM
3383 LFACE_BACKGROUND (lface) = (STRINGP (new_value)
3384 ? new_value : Qunspecified);
3385 }
3386 else if (EQ (param, Qmouse_color))
3387 {
46b00436
KS
3388 face = Qmouse;
3389 lface = lface_from_face_name (f, face, 1);
8bd201d6
GM
3390 LFACE_BACKGROUND (lface) = (STRINGP (new_value)
3391 ? new_value : Qunspecified);
3392 }
76ea4cc9 3393#endif
46b00436
KS
3394
3395 /* Changing a named face means that all realized faces depending on
3396 that face are invalid. Since we cannot tell which realized faces
3397 depend on the face, make sure they are all removed. This is done
3398 by incrementing face_change_count. The next call to
3399 init_iterator will then free realized faces. */
3400 if (!NILP (face)
3401 && NILP (Fget (face, Qface_no_inherit)))
3402 {
3403 ++face_change_count;
3404 ++windows_or_buffers_changed;
3405 }
8bd201d6
GM
3406}
3407
3408
76ea4cc9
EZ
3409#ifdef HAVE_WINDOW_SYSTEM
3410
3411/* Set the `font' frame parameter of FRAME determined from the
3412 font-object set in `default' face attributes LFACE. */
3413
3414static void
971de7fb 3415set_font_frame_param (Lisp_Object frame, Lisp_Object lface)
76ea4cc9
EZ
3416{
3417 struct frame *f = XFRAME (frame);
3418 Lisp_Object font;
3419
3420 if (FRAME_WINDOW_P (f)
3421 /* Don't do anything if the font is `unspecified'. This can
3422 happen during frame creation. */
3423 && (font = LFACE_FONT (lface),
3424 ! UNSPECIFIEDP (font)))
3425 {
3426 if (FONT_SPEC_P (font))
3427 {
3428 font = font_load_for_lface (f, XVECTOR (lface)->contents, font);
3429 if (NILP (font))
3430 return;
3431 LFACE_FONT (lface) = font;
3432 }
3433 f->default_face_done_p = 0;
3434 Fmodify_frame_parameters (frame, Fcons (Fcons (Qfont, font), Qnil));
3435 }
3436}
3437
3438
82641697
GM
3439/* Get the value of X resource RESOURCE, class CLASS for the display
3440 of frame FRAME. This is here because ordinary `x-get-resource'
3441 doesn't take a frame argument. */
3442
3443DEFUN ("internal-face-x-get-resource", Finternal_face_x_get_resource,
7ee72033 3444 Sinternal_face_x_get_resource, 3, 3, 0, doc: /* */)
5842a27b 3445 (Lisp_Object resource, Lisp_Object class, Lisp_Object frame)
82641697 3446{
c3cee013 3447 Lisp_Object value = Qnil;
b7826503
PJ
3448 CHECK_STRING (resource);
3449 CHECK_STRING (class);
3450 CHECK_LIVE_FRAME (frame);
82641697
GM
3451 BLOCK_INPUT;
3452 value = display_x_get_resource (FRAME_X_DISPLAY_INFO (XFRAME (frame)),
3453 resource, class, Qnil, Qnil);
3454 UNBLOCK_INPUT;
3455 return value;
3456}
3457
3458
3459/* Return resource string VALUE as a boolean value, i.e. nil, or t.
3460 If VALUE is "on" or "true", return t. If VALUE is "off" or
3461 "false", return nil. Otherwise, if SIGNAL_P is non-zero, signal an
3462 error; if SIGNAL_P is zero, return 0. */
178c5d9c 3463
82641697 3464static Lisp_Object
971de7fb 3465face_boolean_x_resource_value (Lisp_Object value, int signal_p)
82641697
GM
3466{
3467 Lisp_Object result = make_number (0);
3468
3469 xassert (STRINGP (value));
178c5d9c 3470
25a48bd0
PE
3471 if (xstrcasecmp (SSDATA (value), "on") == 0
3472 || xstrcasecmp (SSDATA (value), "true") == 0)
82641697 3473 result = Qt;
25a48bd0
PE
3474 else if (xstrcasecmp (SSDATA (value), "off") == 0
3475 || xstrcasecmp (SSDATA (value), "false") == 0)
82641697 3476 result = Qnil;
25a48bd0 3477 else if (xstrcasecmp (SSDATA (value), "unspecified") == 0)
82641697
GM
3478 result = Qunspecified;
3479 else if (signal_p)
3480 signal_error ("Invalid face attribute value from X resource", value);
3481
3482 return result;
3483}
3484
3485
3486DEFUN ("internal-set-lisp-face-attribute-from-resource",
3487 Finternal_set_lisp_face_attribute_from_resource,
3488 Sinternal_set_lisp_face_attribute_from_resource,
7ee72033 3489 3, 4, 0, doc: /* */)
5842a27b 3490 (Lisp_Object face, Lisp_Object attr, Lisp_Object value, Lisp_Object frame)
82641697 3491{
b7826503
PJ
3492 CHECK_SYMBOL (face);
3493 CHECK_SYMBOL (attr);
3494 CHECK_STRING (value);
82641697 3495
25a48bd0 3496 if (xstrcasecmp (SSDATA (value), "unspecified") == 0)
82641697
GM
3497 value = Qunspecified;
3498 else if (EQ (attr, QCheight))
3499 {
3500 value = Fstring_to_number (value, make_number (10));
3501 if (XINT (value) <= 0)
3502 signal_error ("Invalid face height from X resource", value);
3503 }
3504 else if (EQ (attr, QCbold) || EQ (attr, QCitalic))
3505 value = face_boolean_x_resource_value (value, 1);
3506 else if (EQ (attr, QCweight) || EQ (attr, QCslant) || EQ (attr, QCwidth))
42a5b22f 3507 value = intern (SSDATA (value));
82641697
GM
3508 else if (EQ (attr, QCreverse_video) || EQ (attr, QCinverse_video))
3509 value = face_boolean_x_resource_value (value, 1);
3510 else if (EQ (attr, QCunderline)
3511 || EQ (attr, QCoverline)
27188d11 3512 || EQ (attr, QCstrike_through))
82641697
GM
3513 {
3514 Lisp_Object boolean_value;
3515
3516 /* If the result of face_boolean_x_resource_value is t or nil,
3517 VALUE does NOT specify a color. */
3518 boolean_value = face_boolean_x_resource_value (value, 0);
3519 if (SYMBOLP (boolean_value))
3520 value = boolean_value;
3521 }
0ad040ff 3522 else if (EQ (attr, QCbox) || EQ (attr, QCinherit))
27188d11 3523 value = Fcar (Fread_from_string (value, Qnil, Qnil));
82641697
GM
3524
3525 return Finternal_set_lisp_face_attribute (face, attr, value, frame);
3526}
3527
c3cee013 3528#endif /* HAVE_WINDOW_SYSTEM */
82641697 3529
c7ae3284
GM
3530\f
3531/***********************************************************************
3532 Menu face
3533 ***********************************************************************/
3534
bce72079 3535#if defined HAVE_X_WINDOWS && defined USE_X_TOOLKIT
c7ae3284 3536
bce72079
GM
3537/* Make menus on frame F appear as specified by the `menu' face. */
3538
3539static void
ebd15611 3540x_update_menu_appearance (struct frame *f)
c7ae3284 3541{
a03ad468 3542 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
bce72079 3543 XrmDatabase rdb;
178c5d9c 3544
bce72079
GM
3545 if (dpyinfo
3546 && (rdb = XrmGetDatabase (FRAME_X_DISPLAY (f)),
3547 rdb != NULL))
c7ae3284 3548 {
bce72079
GM
3549 char line[512];
3550 Lisp_Object lface = lface_from_face_name (f, Qmenu, 1);
3551 struct face *face = FACE_FROM_ID (f, MENU_FACE_ID);
42a5b22f 3552 const char *myname = SSDATA (Vx_resource_name);
bce72079 3553 int changed_p = 0;
8ad582ac
GM
3554#ifdef USE_MOTIF
3555 const char *popup_path = "popup_menu";
3556#else
3557 const char *popup_path = "menu.popup";
3558#endif
177c0ea7 3559
bce72079
GM
3560 if (STRINGP (LFACE_FOREGROUND (lface)))
3561 {
8ad582ac
GM
3562 sprintf (line, "%s.%s*foreground: %s",
3563 myname, popup_path,
d5db4077 3564 SDATA (LFACE_FOREGROUND (lface)));
bce72079
GM
3565 XrmPutLineResource (&rdb, line);
3566 sprintf (line, "%s.pane.menubar*foreground: %s",
d5db4077 3567 myname, SDATA (LFACE_FOREGROUND (lface)));
bce72079
GM
3568 XrmPutLineResource (&rdb, line);
3569 changed_p = 1;
3570 }
178c5d9c 3571
bce72079
GM
3572 if (STRINGP (LFACE_BACKGROUND (lface)))
3573 {
8ad582ac
GM
3574 sprintf (line, "%s.%s*background: %s",
3575 myname, popup_path,
d5db4077 3576 SDATA (LFACE_BACKGROUND (lface)));
bce72079
GM
3577 XrmPutLineResource (&rdb, line);
3578 sprintf (line, "%s.pane.menubar*background: %s",
d5db4077 3579 myname, SDATA (LFACE_BACKGROUND (lface)));
bce72079
GM
3580 XrmPutLineResource (&rdb, line);
3581 changed_p = 1;
3582 }
177c0ea7 3583
2dee4c0b 3584 if (face->font
23888717
CY
3585 /* On Solaris 5.8, it's been reported that the `menu' face
3586 can be unspecified here, during startup. Why this
3587 happens remains unknown. -- cyd */
3588 && FONTP (LFACE_FONT (lface))
bce72079 3589 && (!UNSPECIFIEDP (LFACE_FAMILY (lface))
53aaf1e2 3590 || !UNSPECIFIEDP (LFACE_FOUNDRY (lface))
bce72079 3591 || !UNSPECIFIEDP (LFACE_SWIDTH (lface))
bce72079
GM
3592 || !UNSPECIFIEDP (LFACE_WEIGHT (lface))
3593 || !UNSPECIFIEDP (LFACE_SLANT (lface))
3594 || !UNSPECIFIEDP (LFACE_HEIGHT (lface))))
3595 {
47ae3723 3596 Lisp_Object xlfd = Ffont_xlfd_name (LFACE_FONT (lface), Qnil);
a03ad468 3597#ifdef USE_MOTIF
bce72079 3598 const char *suffix = "List";
211f2210 3599 Bool motif = True;
a2d7e722
JD
3600#else
3601#if defined HAVE_X_I18N
3602
3603 const char *suffix = "Set";
a03ad468 3604#else
bce72079 3605 const char *suffix = "";
a2d7e722 3606#endif
211f2210 3607 Bool motif = False;
2defe37f 3608#endif
2dee4c0b
KH
3609
3610 if (! NILP (xlfd))
3611 {
211f2210 3612#if defined HAVE_X_I18N
42a5b22f 3613 char *fontsetname = xic_create_fontsetname (SSDATA (xlfd), motif);
2defe37f 3614#else
51b59d79 3615 char *fontsetname = SSDATA (xlfd);
bce72079 3616#endif
2dee4c0b
KH
3617 sprintf (line, "%s.pane.menubar*font%s: %s",
3618 myname, suffix, fontsetname);
3619 XrmPutLineResource (&rdb, line);
3620 sprintf (line, "%s.%s*font%s: %s",
3621 myname, popup_path, suffix, fontsetname);
3622 XrmPutLineResource (&rdb, line);
3623 changed_p = 1;
51b59d79 3624 if (fontsetname != SSDATA (xlfd))
2dee4c0b
KH
3625 xfree (fontsetname);
3626 }
bce72079 3627 }
c7ae3284 3628
bce72079 3629 if (changed_p && f->output_data.x->menubar_widget)
ac17f0bf 3630 free_frame_menubar (f);
c7ae3284
GM
3631 }
3632}
3633
bce72079 3634#endif /* HAVE_X_WINDOWS && USE_X_TOOLKIT */
82641697
GM
3635
3636
177c0ea7 3637DEFUN ("face-attribute-relative-p", Fface_attribute_relative_p,
cdfaafa9
MB
3638 Sface_attribute_relative_p,
3639 2, 2, 0,
2d6228e7
RS
3640 doc: /* Check whether a face attribute value is relative.
3641Specifically, this function returns t if the attribute ATTRIBUTE
3642with the value VALUE is relative.
3643
3644A relative value is one that doesn't entirely override whatever is
3645inherited from another face. For most possible attributes,
3646the only relative value that users see is `unspecified'.
3647However, for :height, floating point values are also relative. */)
5842a27b 3648 (Lisp_Object attribute, Lisp_Object value)
cdfaafa9 3649{
05338727 3650 if (EQ (value, Qunspecified) || (EQ (value, Qignore_defface)))
cdfaafa9
MB
3651 return Qt;
3652 else if (EQ (attribute, QCheight))
3653 return INTEGERP (value) ? Qnil : Qt;
3654 else
3655 return Qnil;
3656}
3657
3658DEFUN ("merge-face-attribute", Fmerge_face_attribute, Smerge_face_attribute,
3659 3, 3, 0,
3660 doc: /* Return face ATTRIBUTE VALUE1 merged with VALUE2.
3661If VALUE1 or VALUE2 are absolute (see `face-attribute-relative-p'), then
3662the result will be absolute, otherwise it will be relative. */)
5842a27b 3663 (Lisp_Object attribute, Lisp_Object value1, Lisp_Object value2)
cdfaafa9 3664{
05338727 3665 if (EQ (value1, Qunspecified) || EQ (value1, Qignore_defface))
cdfaafa9
MB
3666 return value2;
3667 else if (EQ (attribute, QCheight))
e1e419ec 3668 return merge_face_heights (value1, value2, value1);
cdfaafa9
MB
3669 else
3670 return value1;
3671}
3672
82641697
GM
3673
3674DEFUN ("internal-get-lisp-face-attribute", Finternal_get_lisp_face_attribute,
3675 Sinternal_get_lisp_face_attribute,
3676 2, 3, 0,
7ee72033 3677 doc: /* Return face attribute KEYWORD of face SYMBOL.
228299fa
GM
3678If SYMBOL does not name a valid Lisp face or KEYWORD isn't a valid
3679face attribute name, signal an error.
7fc92635
JB
3680If the optional argument FRAME is given, report on face SYMBOL in that
3681frame. If FRAME is t, report on the defaults for face SYMBOL (for new
7ee72033 3682frames). If FRAME is omitted or nil, use the selected frame. */)
5842a27b 3683 (Lisp_Object symbol, Lisp_Object keyword, Lisp_Object frame)
82641697
GM
3684{
3685 Lisp_Object lface, value = Qnil;
178c5d9c 3686
b7826503
PJ
3687 CHECK_SYMBOL (symbol);
3688 CHECK_SYMBOL (keyword);
82641697
GM
3689
3690 if (EQ (frame, Qt))
3691 lface = lface_from_face_name (NULL, symbol, 1);
3692 else
3693 {
3694 if (NILP (frame))
c0617987 3695 frame = selected_frame;
b7826503 3696 CHECK_LIVE_FRAME (frame);
82641697
GM
3697 lface = lface_from_face_name (XFRAME (frame), symbol, 1);
3698 }
3699
3700 if (EQ (keyword, QCfamily))
3701 value = LFACE_FAMILY (lface);
53aaf1e2
KH
3702 else if (EQ (keyword, QCfoundry))
3703 value = LFACE_FOUNDRY (lface);
82641697
GM
3704 else if (EQ (keyword, QCheight))
3705 value = LFACE_HEIGHT (lface);
3706 else if (EQ (keyword, QCweight))
3707 value = LFACE_WEIGHT (lface);
3708 else if (EQ (keyword, QCslant))
3709 value = LFACE_SLANT (lface);
3710 else if (EQ (keyword, QCunderline))
3711 value = LFACE_UNDERLINE (lface);
3712 else if (EQ (keyword, QCoverline))
3713 value = LFACE_OVERLINE (lface);
3714 else if (EQ (keyword, QCstrike_through))
3715 value = LFACE_STRIKE_THROUGH (lface);
3716 else if (EQ (keyword, QCbox))
3717 value = LFACE_BOX (lface);
3718 else if (EQ (keyword, QCinverse_video)
3719 || EQ (keyword, QCreverse_video))
3720 value = LFACE_INVERSE (lface);
3721 else if (EQ (keyword, QCforeground))
3722 value = LFACE_FOREGROUND (lface);
3723 else if (EQ (keyword, QCbackground))
3724 value = LFACE_BACKGROUND (lface);
3725 else if (EQ (keyword, QCstipple))
3726 value = LFACE_STIPPLE (lface);
3727 else if (EQ (keyword, QCwidth))
3728 value = LFACE_SWIDTH (lface);
2c20458f
MB
3729 else if (EQ (keyword, QCinherit))
3730 value = LFACE_INHERIT (lface);
39506348
KH
3731 else if (EQ (keyword, QCfont))
3732 value = LFACE_FONT (lface);
763bc839
KH
3733 else if (EQ (keyword, QCfontset))
3734 value = LFACE_FONTSET (lface);
82641697
GM
3735 else
3736 signal_error ("Invalid face attribute name", keyword);
3737
0268cef3
CY
3738 if (IGNORE_DEFFACE_P (value))
3739 return Qunspecified;
3740
82641697
GM
3741 return value;
3742}
3743
3744
3745DEFUN ("internal-lisp-face-attribute-values",
3746 Finternal_lisp_face_attribute_values,
3747 Sinternal_lisp_face_attribute_values, 1, 1, 0,
7ee72033
MB
3748 doc: /* Return a list of valid discrete values for face attribute ATTR.
3749Value is nil if ATTR doesn't have a discrete set of valid values. */)
5842a27b 3750 (Lisp_Object attr)
82641697
GM
3751{
3752 Lisp_Object result = Qnil;
178c5d9c 3753
b7826503 3754 CHECK_SYMBOL (attr);
178c5d9c 3755
2dee4c0b 3756 if (EQ (attr, QCunderline))
82641697
GM
3757 result = Fcons (Qt, Fcons (Qnil, Qnil));
3758 else if (EQ (attr, QCoverline))
3759 result = Fcons (Qt, Fcons (Qnil, Qnil));
3760 else if (EQ (attr, QCstrike_through))
3761 result = Fcons (Qt, Fcons (Qnil, Qnil));
3762 else if (EQ (attr, QCinverse_video) || EQ (attr, QCreverse_video))
3763 result = Fcons (Qt, Fcons (Qnil, Qnil));
3764
3765 return result;
3766}
178c5d9c 3767
82641697
GM
3768
3769DEFUN ("internal-merge-in-global-face", Finternal_merge_in_global_face,
178c5d9c 3770 Sinternal_merge_in_global_face, 2, 2, 0,
e3cd9e7f 3771 doc: /* Add attributes from frame-default definition of FACE to FACE on FRAME.
7ee72033 3772Default face attributes override any local face attributes. */)
5842a27b 3773 (Lisp_Object face, Lisp_Object frame)
82641697 3774{
aad40737
MB
3775 int i;
3776 Lisp_Object global_lface, local_lface, *gvec, *lvec;
8d3810fd 3777 struct frame *f = XFRAME (frame);
aad40737 3778
b7826503 3779 CHECK_LIVE_FRAME (frame);
82641697 3780 global_lface = lface_from_face_name (NULL, face, 1);
8d3810fd 3781 local_lface = lface_from_face_name (f, face, 0);
82641697
GM
3782 if (NILP (local_lface))
3783 local_lface = Finternal_make_lisp_face (face, frame);
aad40737 3784
cec33c90
SM
3785 /* Make every specified global attribute override the local one.
3786 BEWARE!! This is only used from `face-set-after-frame-default' where
3787 the local frame is defined from default specs in `face-defface-spec'
3788 and those should be overridden by global settings. Hence the strange
3789 "global before local" priority. */
aad40737
MB
3790 lvec = XVECTOR (local_lface)->contents;
3791 gvec = XVECTOR (global_lface)->contents;
3792 for (i = 1; i < LFACE_VECTOR_SIZE; ++i)
8d3810fd
CY
3793 if (IGNORE_DEFFACE_P (gvec[i]))
3794 lvec[i] = Qunspecified;
3795 else if (! UNSPECIFIEDP (gvec[i]))
3796 lvec[i] = gvec[i];
3797
fa9fa316 3798 /* If the default face was changed, update the face cache and the
811029d3 3799 `font' frame parameter. */
8d3810fd
CY
3800 if (EQ (face, Qdefault))
3801 {
3802 struct face_cache *c = FRAME_FACE_CACHE (f);
3803 struct face *newface, *oldface = FACE_FROM_ID (f, DEFAULT_FACE_ID);
3804 Lisp_Object attrs[LFACE_VECTOR_SIZE];
3805
0421a7a7
CY
3806 /* This can be NULL (e.g., in batch mode). */
3807 if (oldface)
8d3810fd 3808 {
fa9fa316
CY
3809 /* Ensure that the face vector is fully specified by merging
3810 the previously-cached vector. */
72af86bd 3811 memcpy (attrs, oldface->lface, sizeof attrs);
0421a7a7 3812 merge_face_vectors (f, lvec, attrs, 0);
72af86bd 3813 memcpy (lvec, attrs, sizeof attrs);
fa9fa316 3814 newface = realize_face (c, lvec, DEFAULT_FACE_ID);
0421a7a7
CY
3815
3816 if ((! UNSPECIFIEDP (gvec[LFACE_FAMILY_INDEX])
3817 || ! UNSPECIFIEDP (gvec[LFACE_FOUNDRY_INDEX])
3818 || ! UNSPECIFIEDP (gvec[LFACE_HEIGHT_INDEX])
3819 || ! UNSPECIFIEDP (gvec[LFACE_WEIGHT_INDEX])
3820 || ! UNSPECIFIEDP (gvec[LFACE_SLANT_INDEX])
3821 || ! UNSPECIFIEDP (gvec[LFACE_SWIDTH_INDEX])
3822 || ! UNSPECIFIEDP (gvec[LFACE_FONT_INDEX]))
3823 && newface->font)
3824 {
3825 Lisp_Object name = newface->font->props[FONT_NAME_INDEX];
3826 Fmodify_frame_parameters (frame, Fcons (Fcons (Qfont, name),
3827 Qnil));
3828 }
8d3810fd
CY
3829 }
3830 }
334a2e2a
GM
3831
3832 return Qnil;
82641697
GM
3833}
3834
3835
3836/* The following function is implemented for compatibility with 20.2.
3837 The function is used in x-resolve-fonts when it is asked to
3838 return fonts with the same size as the font of a face. This is
3839 done in fontset.el. */
3840
2db4bfe5 3841DEFUN ("face-font", Fface_font, Sface_font, 1, 3, 0,
e3cd9e7f 3842 doc: /* Return the font name of face FACE, or nil if it is unspecified.
2db4bfe5 3843The font name is, by default, for ASCII characters.
228299fa
GM
3844If the optional argument FRAME is given, report on face FACE in that frame.
3845If FRAME is t, report on the defaults for face FACE (for new frames).
3846 The font default for a face is either nil, or a list
3847 of the form (bold), (italic) or (bold italic).
2db4bfe5
KH
3848If FRAME is omitted or nil, use the selected frame. And, in this case,
3849if the optional third argument CHARACTER is given,
3850return the font name used for CHARACTER. */)
5842a27b 3851 (Lisp_Object face, Lisp_Object frame, Lisp_Object character)
82641697
GM
3852{
3853 if (EQ (frame, Qt))
3854 {
3855 Lisp_Object result = Qnil;
3856 Lisp_Object lface = lface_from_face_name (NULL, face, 1);
3857
3858 if (!UNSPECIFIEDP (LFACE_WEIGHT (lface))
3859 && !EQ (LFACE_WEIGHT (lface), Qnormal))
3860 result = Fcons (Qbold, result);
178c5d9c 3861
0f2c6573 3862 if (!UNSPECIFIEDP (LFACE_SLANT (lface))
82641697
GM
3863 && !EQ (LFACE_SLANT (lface), Qnormal))
3864 result = Fcons (Qitalic, result);
178c5d9c 3865
82641697
GM
3866 return result;
3867 }
3868 else
3869 {
3870 struct frame *f = frame_or_selected_frame (frame, 1);
000fc2b1 3871 int face_id = lookup_named_face (f, face, 1);
071048a3 3872 struct face *fface = FACE_FROM_ID (f, face_id);
2db4bfe5 3873
071048a3 3874 if (! fface)
2db4bfe5 3875 return Qnil;
a1a552b3 3876#ifdef HAVE_WINDOW_SYSTEM
75dad34a 3877 if (FRAME_WINDOW_P (f) && !NILP (character))
a1a552b3
KH
3878 {
3879 CHECK_CHARACTER (character);
071048a3
PE
3880 face_id = FACE_FOR_CHAR (f, fface, XINT (character), -1, Qnil);
3881 fface = FACE_FROM_ID (f, face_id);
a1a552b3 3882 }
071048a3
PE
3883 return (fface->font
3884 ? fface->font->props[FONT_NAME_INDEX]
2dee4c0b 3885 : Qnil);
1ccdfd33
EZ
3886#else /* !HAVE_WINDOW_SYSTEM */
3887 return build_string (FRAME_MSDOS_P (f)
3888 ? "ms-dos"
3889 : FRAME_W32_P (f) ? "w32term"
3890 :"tty");
3891#endif
82641697
GM
3892 }
3893}
3894
3895
9717e36c 3896/* Compare face-attribute values v1 and v2 for equality. Value is non-zero if
82641697
GM
3897 all attributes are `equal'. Tries to be fast because this function
3898 is called quite often. */
3899
3900static INLINE int
971de7fb 3901face_attr_equal_p (Lisp_Object v1, Lisp_Object v2)
82641697 3902{
9717e36c
MB
3903 /* Type can differ, e.g. when one attribute is unspecified, i.e. nil,
3904 and the other is specified. */
3905 if (XTYPE (v1) != XTYPE (v2))
3906 return 0;
82641697 3907
9717e36c
MB
3908 if (EQ (v1, v2))
3909 return 1;
82641697 3910
9717e36c
MB
3911 switch (XTYPE (v1))
3912 {
3913 case Lisp_String:
3914 if (SBYTES (v1) != SBYTES (v2))
3915 return 0;
82641697 3916
72af86bd 3917 return memcmp (SDATA (v1), SDATA (v2), SBYTES (v1)) == 0;
178c5d9c 3918
2de9f71c 3919 case_Lisp_Int:
9717e36c
MB
3920 case Lisp_Symbol:
3921 return 0;
178c5d9c 3922
9717e36c
MB
3923 default:
3924 return !NILP (Fequal (v1, v2));
82641697 3925 }
9717e36c
MB
3926}
3927
3928
3929/* Compare face vectors V1 and V2 for equality. Value is non-zero if
3930 all attributes are `equal'. Tries to be fast because this function
3931 is called quite often. */
3932
3933static INLINE int
971de7fb 3934lface_equal_p (Lisp_Object *v1, Lisp_Object *v2)
9717e36c
MB
3935{
3936 int i, equal_p = 1;
3937
3938 for (i = 1; i < LFACE_VECTOR_SIZE && equal_p; ++i)
3939 equal_p = face_attr_equal_p (v1[i], v2[i]);
178c5d9c 3940
82641697
GM
3941 return equal_p;
3942}
3943
3944
3945DEFUN ("internal-lisp-face-equal-p", Finternal_lisp_face_equal_p,
3946 Sinternal_lisp_face_equal_p, 2, 3, 0,
7ee72033 3947 doc: /* True if FACE1 and FACE2 are equal.
03f11322
JB
3948If the optional argument FRAME is given, report on FACE1 and FACE2 in that frame.
3949If FRAME is t, report on the defaults for FACE1 and FACE2 (for new frames).
7ee72033 3950If FRAME is omitted or nil, use the selected frame. */)
5842a27b 3951 (Lisp_Object face1, Lisp_Object face2, Lisp_Object frame)
82641697
GM
3952{
3953 int equal_p;
7b953c9c 3954 struct frame *f;
82641697 3955 Lisp_Object lface1, lface2;
178c5d9c 3956
7b953c9c
MB
3957 if (EQ (frame, Qt))
3958 f = NULL;
3959 else
3960 /* Don't use check_x_frame here because this function is called
3961 before X frames exist. At that time, if FRAME is nil,
3962 selected_frame will be used which is the frame dumped with
3963 Emacs. That frame is not an X frame. */
3964 f = frame_or_selected_frame (frame, 2);
3965
03f11322
JB
3966 lface1 = lface_from_face_name (f, face1, 1);
3967 lface2 = lface_from_face_name (f, face2, 1);
82641697
GM
3968 equal_p = lface_equal_p (XVECTOR (lface1)->contents,
3969 XVECTOR (lface2)->contents);
3970 return equal_p ? Qt : Qnil;
3971}
3972
178c5d9c 3973
82641697
GM
3974DEFUN ("internal-lisp-face-empty-p", Finternal_lisp_face_empty_p,
3975 Sinternal_lisp_face_empty_p, 1, 2, 0,
7ee72033 3976 doc: /* True if FACE has no attribute specified.
228299fa
GM
3977If the optional argument FRAME is given, report on face FACE in that frame.
3978If FRAME is t, report on the defaults for face FACE (for new frames).
7ee72033 3979If FRAME is omitted or nil, use the selected frame. */)
5842a27b 3980 (Lisp_Object face, Lisp_Object frame)
82641697
GM
3981{
3982 struct frame *f;
3983 Lisp_Object lface;
3984 int i;
3985
3986 if (NILP (frame))
c0617987 3987 frame = selected_frame;
b7826503 3988 CHECK_LIVE_FRAME (frame);
c0617987 3989 f = XFRAME (frame);
178c5d9c 3990
82641697
GM
3991 if (EQ (frame, Qt))
3992 lface = lface_from_face_name (NULL, face, 1);
3993 else
3994 lface = lface_from_face_name (f, face, 1);
3995
3996 for (i = 1; i < LFACE_VECTOR_SIZE; ++i)
a08332c0 3997 if (!UNSPECIFIEDP (AREF (lface, i)))
82641697 3998 break;
178c5d9c 3999
82641697
GM
4000 return i == LFACE_VECTOR_SIZE ? Qt : Qnil;
4001}
4002
4003
4004DEFUN ("frame-face-alist", Fframe_face_alist, Sframe_face_alist,
178c5d9c 4005 0, 1, 0,
7ee72033
MB
4006 doc: /* Return an alist of frame-local faces defined on FRAME.
4007For internal use only. */)
5842a27b 4008 (Lisp_Object frame)
82641697
GM
4009{
4010 struct frame *f = frame_or_selected_frame (frame, 0);
4011 return f->face_alist;
4012}
4013
4014
4015/* Return a hash code for Lisp string STRING with case ignored. Used
4016 below in computing a hash value for a Lisp face. */
4017
4018static INLINE unsigned
971de7fb 4019hash_string_case_insensitive (Lisp_Object string)
82641697 4020{
53c208f6 4021 const unsigned char *s;
82641697
GM
4022 unsigned hash = 0;
4023 xassert (STRINGP (string));
d5db4077 4024 for (s = SDATA (string); *s; ++s)
82641697
GM
4025 hash = (hash << 1) ^ tolower (*s);
4026 return hash;
4027}
4028
4029
4030/* Return a hash code for face attribute vector V. */
4031
4032static INLINE unsigned
971de7fb 4033lface_hash (Lisp_Object *v)
82641697
GM
4034{
4035 return (hash_string_case_insensitive (v[LFACE_FAMILY_INDEX])
53aaf1e2 4036 ^ hash_string_case_insensitive (v[LFACE_FOUNDRY_INDEX])
82641697
GM
4037 ^ hash_string_case_insensitive (v[LFACE_FOREGROUND_INDEX])
4038 ^ hash_string_case_insensitive (v[LFACE_BACKGROUND_INDEX])
a2bc5bdd
SM
4039 ^ XHASH (v[LFACE_WEIGHT_INDEX])
4040 ^ XHASH (v[LFACE_SLANT_INDEX])
4041 ^ XHASH (v[LFACE_SWIDTH_INDEX])
4042 ^ XHASH (v[LFACE_HEIGHT_INDEX]));
82641697
GM
4043}
4044
4045
4046/* Return non-zero if LFACE1 and LFACE2 specify the same font (without
4047 considering charsets/registries). They do if they specify the same
2dee4c0b 4048 family, point size, weight, width, slant, and font. Both
763bc839 4049 LFACE1 and LFACE2 must be fully-specified. */
82641697
GM
4050
4051static INLINE int
971de7fb 4052lface_same_font_attributes_p (Lisp_Object *lface1, Lisp_Object *lface2)
82641697
GM
4053{
4054 xassert (lface_fully_specified_p (lface1)
4055 && lface_fully_specified_p (lface2));
25a48bd0
PE
4056 return (xstrcasecmp (SSDATA (lface1[LFACE_FAMILY_INDEX]),
4057 SSDATA (lface2[LFACE_FAMILY_INDEX])) == 0
4058 && xstrcasecmp (SSDATA (lface1[LFACE_FOUNDRY_INDEX]),
4059 SSDATA (lface2[LFACE_FOUNDRY_INDEX])) == 0
2c20458f 4060 && EQ (lface1[LFACE_HEIGHT_INDEX], lface2[LFACE_HEIGHT_INDEX])
82641697
GM
4061 && EQ (lface1[LFACE_SWIDTH_INDEX], lface2[LFACE_SWIDTH_INDEX])
4062 && EQ (lface1[LFACE_WEIGHT_INDEX], lface2[LFACE_WEIGHT_INDEX])
39506348 4063 && EQ (lface1[LFACE_SLANT_INDEX], lface2[LFACE_SLANT_INDEX])
2dee4c0b 4064 && EQ (lface1[LFACE_FONT_INDEX], lface2[LFACE_FONT_INDEX])
763bc839
KH
4065 && (EQ (lface1[LFACE_FONTSET_INDEX], lface2[LFACE_FONTSET_INDEX])
4066 || (STRINGP (lface1[LFACE_FONTSET_INDEX])
4067 && STRINGP (lface2[LFACE_FONTSET_INDEX])
25a48bd0
PE
4068 && ! xstrcasecmp (SSDATA (lface1[LFACE_FONTSET_INDEX]),
4069 SSDATA (lface2[LFACE_FONTSET_INDEX]))))
763bc839 4070 );
82641697
GM
4071}
4072
4073
4074\f
4075/***********************************************************************
4076 Realized Faces
4077 ***********************************************************************/
4078
4079/* Allocate and return a new realized face for Lisp face attribute
39506348 4080 vector ATTR. */
82641697
GM
4081
4082static struct face *
971de7fb 4083make_realized_face (Lisp_Object *attr)
82641697
GM
4084{
4085 struct face *face = (struct face *) xmalloc (sizeof *face);
72af86bd 4086 memset (face, 0, sizeof *face);
39506348 4087 face->ascii_face = face;
72af86bd 4088 memcpy (face->lface, attr, sizeof face->lface);
82641697
GM
4089 return face;
4090}
4091
4092
4093/* Free realized face FACE, including its X resources. FACE may
4094 be null. */
4095
435f4c28 4096static void
971de7fb 4097free_realized_face (struct frame *f, struct face *face)
82641697
GM
4098{
4099 if (face)
4100 {
c3cee013
JR
4101#ifdef HAVE_WINDOW_SYSTEM
4102 if (FRAME_WINDOW_P (f))
82641697 4103 {
39506348
KH
4104 /* Free fontset of FACE if it is ASCII face. */
4105 if (face->fontset >= 0 && face == face->ascii_face)
4106 free_face_fontset (f, face);
82641697
GM
4107 if (face->gc)
4108 {
985773c9 4109 BLOCK_INPUT;
2dee4c0b 4110 if (face->font)
426b2119 4111 font_done_for_face (f, face);
82641697
GM
4112 x_free_gc (f, face->gc);
4113 face->gc = 0;
ed0c79c6 4114 UNBLOCK_INPUT;
82641697 4115 }
178c5d9c 4116
82641697
GM
4117 free_face_colors (f, face);
4118 x_destroy_bitmap (f, face->stipple);
4119 }
c3cee013 4120#endif /* HAVE_WINDOW_SYSTEM */
82641697
GM
4121
4122 xfree (face);
4123 }
4124}
4125
4126
4127/* Prepare face FACE for subsequent display on frame F. This
4128 allocated GCs if they haven't been allocated yet or have been freed
4129 by clearing the face cache. */
4130
4131void
971de7fb 4132prepare_face_for_display (struct frame *f, struct face *face)
82641697 4133{
c3cee013
JR
4134#ifdef HAVE_WINDOW_SYSTEM
4135 xassert (FRAME_WINDOW_P (f));
178c5d9c 4136
82641697
GM
4137 if (face->gc == 0)
4138 {
4139 XGCValues xgcv;
4140 unsigned long mask = GCForeground | GCBackground | GCGraphicsExposures;
4141
4142 xgcv.foreground = face->foreground;
4143 xgcv.background = face->background;
c3cee013 4144#ifdef HAVE_X_WINDOWS
82641697 4145 xgcv.graphics_exposures = False;
c3cee013 4146#endif
82641697
GM
4147
4148 BLOCK_INPUT;
c3cee013 4149#ifdef HAVE_X_WINDOWS
82641697
GM
4150 if (face->stipple)
4151 {
be8a72f4 4152 xgcv.fill_style = FillOpaqueStippled;
82641697
GM
4153 xgcv.stipple = x_bitmap_pixmap (f, face->stipple);
4154 mask |= GCFillStyle | GCStipple;
4155 }
c3cee013 4156#endif
82641697 4157 face->gc = x_create_gc (f, mask, &xgcv);
2dee4c0b 4158 if (face->font)
426b2119 4159 font_prepare_for_face (f, face);
82641697
GM
4160 UNBLOCK_INPUT;
4161 }
c3cee013 4162#endif /* HAVE_WINDOW_SYSTEM */
82641697
GM
4163}
4164
82641697 4165\f
b35df831
MB
4166/* Returns the `distance' between the colors X and Y. */
4167
4168static int
971de7fb 4169color_distance (XColor *x, XColor *y)
b35df831
MB
4170{
4171 /* This formula is from a paper title `Colour metric' by Thiadmer Riemersma.
4172 Quoting from that paper:
4173
4174 This formula has results that are very close to L*u*v* (with the
4175 modified lightness curve) and, more importantly, it is a more even
4176 algorithm: it does not have a range of colours where it suddenly
4177 gives far from optimal results.
4178
4179 See <http://www.compuphase.com/cmetric.htm> for more info. */
4180
4181 long r = (x->red - y->red) >> 8;
4182 long g = (x->green - y->green) >> 8;
4183 long b = (x->blue - y->blue) >> 8;
4184 long r_mean = (x->red + y->red) >> 9;
4185
4186 return
4187 (((512 + r_mean) * r * r) >> 8)
4188 + 4 * g * g
4189 + (((767 - r_mean) * b * b) >> 8);
4190}
4191
4192
4193DEFUN ("color-distance", Fcolor_distance, Scolor_distance, 2, 3, 0,
4194 doc: /* Return an integer distance between COLOR1 and COLOR2 on FRAME.
4195COLOR1 and COLOR2 may be either strings containing the color name,
4196or lists of the form (RED GREEN BLUE).
4197If FRAME is unspecified or nil, the current frame is used. */)
5842a27b 4198 (Lisp_Object color1, Lisp_Object color2, Lisp_Object frame)
b35df831
MB
4199{
4200 struct frame *f;
4201 XColor cdef1, cdef2;
4202
4203 if (NILP (frame))
4204 frame = selected_frame;
4205 CHECK_LIVE_FRAME (frame);
4206 f = XFRAME (frame);
4207
6c8e1d62 4208 if (!(CONSP (color1) && parse_rgb_list (color1, &cdef1))
42a5b22f 4209 && !(STRINGP (color1) && defined_color (f, SSDATA (color1), &cdef1, 0)))
b35df831 4210 signal_error ("Invalid color", color1);
6c8e1d62 4211 if (!(CONSP (color2) && parse_rgb_list (color2, &cdef2))
42a5b22f 4212 && !(STRINGP (color2) && defined_color (f, SSDATA (color2), &cdef2, 0)))
b35df831
MB
4213 signal_error ("Invalid color", color2);
4214
4215 return make_number (color_distance (&cdef1, &cdef2));
4216}
4217
4218\f
82641697
GM
4219/***********************************************************************
4220 Face Cache
4221 ***********************************************************************/
4222
4223/* Return a new face cache for frame F. */
4224
4225static struct face_cache *
971de7fb 4226make_face_cache (struct frame *f)
82641697
GM
4227{
4228 struct face_cache *c;
4229 int size;
4230
4231 c = (struct face_cache *) xmalloc (sizeof *c);
72af86bd 4232 memset (c, 0, sizeof *c);
82641697
GM
4233 size = FACE_CACHE_BUCKETS_SIZE * sizeof *c->buckets;
4234 c->buckets = (struct face **) xmalloc (size);
72af86bd 4235 memset (c->buckets, 0, size);
82641697
GM
4236 c->size = 50;
4237 c->faces_by_id = (struct face **) xmalloc (c->size * sizeof *c->faces_by_id);
4238 c->f = f;
ceeda019 4239 c->menu_face_changed_p = menu_face_changed_default;
82641697
GM
4240 return c;
4241}
4242
4243
4244/* Clear out all graphics contexts for all realized faces, except for
4245 the basic faces. This should be done from time to time just to avoid
4246 keeping too many graphics contexts that are no longer needed. */
4247
4248static void
971de7fb 4249clear_face_gcs (struct face_cache *c)
82641697 4250{
c3cee013 4251 if (c && FRAME_WINDOW_P (c->f))
82641697 4252 {
c3cee013 4253#ifdef HAVE_WINDOW_SYSTEM
82641697
GM
4254 int i;
4255 for (i = BASIC_FACE_ID_SENTINEL; i < c->used; ++i)
4256 {
4257 struct face *face = c->faces_by_id[i];
4258 if (face && face->gc)
4259 {
985773c9 4260 BLOCK_INPUT;
2dee4c0b 4261 if (face->font)
426b2119 4262 font_done_for_face (c->f, face);
82641697
GM
4263 x_free_gc (c->f, face->gc);
4264 face->gc = 0;
ed0c79c6 4265 UNBLOCK_INPUT;
82641697
GM
4266 }
4267 }
c3cee013 4268#endif /* HAVE_WINDOW_SYSTEM */
82641697
GM
4269 }
4270}
4271
4272
7fc92635
JB
4273/* Free all realized faces in face cache C, including basic faces.
4274 C may be null. If faces are freed, make sure the frame's current
82641697
GM
4275 matrix is marked invalid, so that a display caused by an expose
4276 event doesn't try to use faces we destroyed. */
4277
4278static void
971de7fb 4279free_realized_faces (struct face_cache *c)
82641697
GM
4280{
4281 if (c && c->used)
4282 {
4283 int i, size;
4284 struct frame *f = c->f;
4285
84ec3b4b
GM
4286 /* We must block input here because we can't process X events
4287 safely while only some faces are freed, or when the frame's
4288 current matrix still references freed faces. */
4289 BLOCK_INPUT;
4290
82641697
GM
4291 for (i = 0; i < c->used; ++i)
4292 {
4293 free_realized_face (f, c->faces_by_id[i]);
4294 c->faces_by_id[i] = NULL;
4295 }
178c5d9c 4296
82641697
GM
4297 c->used = 0;
4298 size = FACE_CACHE_BUCKETS_SIZE * sizeof *c->buckets;
72af86bd 4299 memset (c->buckets, 0, size);
82641697
GM
4300
4301 /* Must do a thorough redisplay the next time. Mark current
4302 matrices as invalid because they will reference faces freed
4303 above. This function is also called when a frame is
4304 destroyed. In this case, the root window of F is nil. */
4305 if (WINDOWP (f->root_window))
4306 {
4307 clear_current_matrices (f);
4308 ++windows_or_buffers_changed;
4309 }
84ec3b4b
GM
4310
4311 UNBLOCK_INPUT;
82641697
GM
4312 }
4313}
4314
4315
4316/* Free all realized faces on FRAME or on all frames if FRAME is nil.
4317 This is done after attributes of a named face have been changed,
4318 because we can't tell which realized faces depend on that face. */
4319
4320void
971de7fb 4321free_all_realized_faces (Lisp_Object frame)
82641697
GM
4322{
4323 if (NILP (frame))
4324 {
4325 Lisp_Object rest;
4326 FOR_EACH_FRAME (rest, frame)
4327 free_realized_faces (FRAME_FACE_CACHE (XFRAME (frame)));
4328 }
4329 else
4330 free_realized_faces (FRAME_FACE_CACHE (XFRAME (frame)));
4331}
4332
4333
4334/* Free face cache C and faces in it, including their X resources. */
4335
4336static void
971de7fb 4337free_face_cache (struct face_cache *c)
82641697
GM
4338{
4339 if (c)
4340 {
4341 free_realized_faces (c);
4342 xfree (c->buckets);
4343 xfree (c->faces_by_id);
4344 xfree (c);
4345 }
4346}
4347
4348
4349/* Cache realized face FACE in face cache C. HASH is the hash value
af53b43c
KH
4350 of FACE. If FACE is for ASCII characters (i.e. FACE->ascii_face ==
4351 FACE), insert the new face to the beginning of the collision list
4352 of the face hash table of C. Otherwise, add the new face to the
4353 end of the collision list. This way, lookup_face can quickly find
4354 that a requested face is not cached. */
82641697
GM
4355
4356static void
971de7fb 4357cache_face (struct face_cache *c, struct face *face, unsigned int hash)
82641697
GM
4358{
4359 int i = hash % FACE_CACHE_BUCKETS_SIZE;
4360
4361 face->hash = hash;
4362
af53b43c 4363 if (face->ascii_face != face)
82641697
GM
4364 {
4365 struct face *last = c->buckets[i];
4366 if (last)
4367 {
4368 while (last->next)
4369 last = last->next;
4370 last->next = face;
4371 face->prev = last;
4372 face->next = NULL;
4373 }
4374 else
4375 {
4376 c->buckets[i] = face;
4377 face->prev = face->next = NULL;
4378 }
4379 }
4380 else
4381 {
4382 face->prev = NULL;
4383 face->next = c->buckets[i];
4384 if (face->next)
4385 face->next->prev = face;
4386 c->buckets[i] = face;
4387 }
4388
4389 /* Find a free slot in C->faces_by_id and use the index of the free
4390 slot as FACE->id. */
4391 for (i = 0; i < c->used; ++i)
4392 if (c->faces_by_id[i] == NULL)
4393 break;
4394 face->id = i;
178c5d9c 4395
82641697 4396 /* Maybe enlarge C->faces_by_id. */
6b61353c 4397 if (i == c->used)
82641697 4398 {
6b61353c
KH
4399 if (c->used == c->size)
4400 {
4401 int new_size, sz;
4402 new_size = min (2 * c->size, MAX_FACE_ID);
4403 if (new_size == c->size)
4404 abort (); /* Alternatives? ++kfs */
4405 sz = new_size * sizeof *c->faces_by_id;
4406 c->faces_by_id = (struct face **) xrealloc (c->faces_by_id, sz);
4407 c->size = new_size;
4408 }
4409 c->used++;
82641697
GM
4410 }
4411
4412#if GLYPH_DEBUG
4413 /* Check that FACE got a unique id. */
4414 {
4415 int j, n;
4416 struct face *face;
4417
4418 for (j = n = 0; j < FACE_CACHE_BUCKETS_SIZE; ++j)
4419 for (face = c->buckets[j]; face; face = face->next)
4420 if (face->id == i)
4421 ++n;
4422
4423 xassert (n == 1);
4424 }
4425#endif /* GLYPH_DEBUG */
178c5d9c 4426
82641697 4427 c->faces_by_id[i] = face;
82641697
GM
4428}
4429
4430
4431/* Remove face FACE from cache C. */
4432
4433static void
971de7fb 4434uncache_face (struct face_cache *c, struct face *face)
82641697
GM
4435{
4436 int i = face->hash % FACE_CACHE_BUCKETS_SIZE;
178c5d9c 4437
82641697
GM
4438 if (face->prev)
4439 face->prev->next = face->next;
4440 else
4441 c->buckets[i] = face->next;
178c5d9c 4442
82641697
GM
4443 if (face->next)
4444 face->next->prev = face->prev;
178c5d9c 4445
82641697
GM
4446 c->faces_by_id[face->id] = NULL;
4447 if (face->id == c->used)
4448 --c->used;
4449}
4450
4451
4452/* Look up a realized face with face attributes ATTR in the face cache
af53b43c
KH
4453 of frame F. The face will be used to display ASCII characters.
4454 Value is the ID of the face found. If no suitable face is found,
4455 realize a new one. */
82641697 4456
b6557553 4457static INLINE int
971de7fb 4458lookup_face (struct frame *f, Lisp_Object *attr)
82641697 4459{
39506348 4460 struct face_cache *cache = FRAME_FACE_CACHE (f);
82641697
GM
4461 unsigned hash;
4462 int i;
4463 struct face *face;
4464
39506348 4465 xassert (cache != NULL);
82641697
GM
4466 check_lface_attrs (attr);
4467
4468 /* Look up ATTR in the face cache. */
4469 hash = lface_hash (attr);
4470 i = hash % FACE_CACHE_BUCKETS_SIZE;
178c5d9c 4471
39506348 4472 for (face = cache->buckets[i]; face; face = face->next)
af53b43c
KH
4473 {
4474 if (face->ascii_face != face)
4475 {
4476 /* There's no more ASCII face. */
4477 face = NULL;
4478 break;
4479 }
4480 if (face->hash == hash
4481 && lface_equal_p (face->lface, attr))
4482 break;
4483 }
82641697
GM
4484
4485 /* If not found, realize a new face. */
4486 if (face == NULL)
af53b43c 4487 face = realize_face (cache, attr, -1);
82641697
GM
4488
4489#if GLYPH_DEBUG
4490 xassert (face == FACE_FROM_ID (f, face->id));
82641697 4491#endif /* GLYPH_DEBUG */
178c5d9c 4492
82641697
GM
4493 return face->id;
4494}
4495
2dee4c0b
KH
4496#ifdef HAVE_WINDOW_SYSTEM
4497/* Look up a realized face that has the same attributes as BASE_FACE
4498 except for the font in the face cache of frame F. If FONT-OBJECT
4499 is not nil, it is an already opened font. If FONT-OBJECT is nil,
4500 the face has no font. Value is the ID of the face found. If no
4501 suitable face is found, realize a new one. */
426b2119 4502
426b2119 4503int
971de7fb 4504face_for_font (struct frame *f, Lisp_Object font_object, struct face *base_face)
426b2119
KH
4505{
4506 struct face_cache *cache = FRAME_FACE_CACHE (f);
4507 unsigned hash;
4508 int i;
4509 struct face *face;
4510
4511 xassert (cache != NULL);
4512 base_face = base_face->ascii_face;
4513 hash = lface_hash (base_face->lface);
4514 i = hash % FACE_CACHE_BUCKETS_SIZE;
4515
4516 for (face = cache->buckets[i]; face; face = face->next)
4517 {
4518 if (face->ascii_face == face)
4519 continue;
4520 if (face->ascii_face == base_face
2dee4c0b
KH
4521 && face->font == (NILP (font_object) ? NULL
4522 : XFONT_OBJECT (font_object))
4523 && lface_equal_p (face->lface, base_face->lface))
426b2119
KH
4524 return face->id;
4525 }
4526
4527 /* If not found, realize a new face. */
2dee4c0b 4528 face = realize_non_ascii_face (f, font_object, base_face);
426b2119
KH
4529 return face->id;
4530}
8c6204de 4531#endif /* HAVE_WINDOW_SYSTEM */
82641697 4532
82641697 4533/* Return the face id of the realized face for named face SYMBOL on
af53b43c
KH
4534 frame F suitable for displaying ASCII characters. Value is -1 if
4535 the face couldn't be determined, which might happen if the default
4536 face isn't realized and cannot be realized. */
82641697
GM
4537
4538int
971de7fb 4539lookup_named_face (struct frame *f, Lisp_Object symbol, int signal_p)
82641697 4540{
e7d7fd8c
MB
4541 Lisp_Object attrs[LFACE_VECTOR_SIZE];
4542 Lisp_Object symbol_attrs[LFACE_VECTOR_SIZE];
82641697
GM
4543 struct face *default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
4544
b5de343d
GM
4545 if (default_face == NULL)
4546 {
4547 if (!realize_basic_faces (f))
4548 return -1;
4549 default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
418ca4d2
RS
4550 if (default_face == NULL)
4551 abort (); /* realize_basic_faces must have set it up */
b5de343d
GM
4552 }
4553
f2cec7a9 4554 if (! get_lface_attributes (f, symbol, symbol_attrs, signal_p, 0))
2272e967
KS
4555 return -1;
4556
72af86bd 4557 memcpy (attrs, default_face->lface, sizeof attrs);
e7d7fd8c 4558 merge_face_vectors (f, symbol_attrs, attrs, 0);
a0a23346 4559
af53b43c 4560 return lookup_face (f, attrs);
82641697
GM
4561}
4562
4563
f2cec7a9
MB
4564/* Return the display face-id of the basic face who's canonical face-id
4565 is FACE_ID. The return value will usually simply be FACE_ID, unless that
4566 basic face has bee remapped via Vface_remapping_alist. This function is
4567 conservative: if something goes wrong, it will simply return FACE_ID
4568 rather than signal an error. */
4569
4570int
971de7fb 4571lookup_basic_face (struct frame *f, int face_id)
f2cec7a9
MB
4572{
4573 Lisp_Object name, mapping;
4574 int remapped_face_id;
4575
4576 if (NILP (Vface_remapping_alist))
4577 return face_id; /* Nothing to do. */
4578
4579 switch (face_id)
4580 {
4581 case DEFAULT_FACE_ID: name = Qdefault; break;
4582 case MODE_LINE_FACE_ID: name = Qmode_line; break;
4583 case MODE_LINE_INACTIVE_FACE_ID: name = Qmode_line_inactive; break;
4584 case HEADER_LINE_FACE_ID: name = Qheader_line; break;
4585 case TOOL_BAR_FACE_ID: name = Qtool_bar; break;
4586 case FRINGE_FACE_ID: name = Qfringe; break;
4587 case SCROLL_BAR_FACE_ID: name = Qscroll_bar; break;
4588 case BORDER_FACE_ID: name = Qborder; break;
4589 case CURSOR_FACE_ID: name = Qcursor; break;
4590 case MOUSE_FACE_ID: name = Qmouse; break;
4591 case MENU_FACE_ID: name = Qmenu; break;
4592
4593 default:
4594 abort (); /* the caller is supposed to pass us a basic face id */
4595 }
4596
4597 /* Do a quick scan through Vface_remapping_alist, and return immediately
4598 if there is no remapping for face NAME. This is just an optimization
4599 for the very common no-remapping case. */
4600 mapping = assq_no_quit (name, Vface_remapping_alist);
4601 if (NILP (mapping))
4602 return face_id; /* Give up. */
4603
4604 /* If there is a remapping entry, lookup the face using NAME, which will
4605 handle the remapping too. */
4606 remapped_face_id = lookup_named_face (f, name, 0);
4607 if (remapped_face_id < 0)
4608 return face_id; /* Give up. */
4609
4610 return remapped_face_id;
4611}
4612
4613
82641697
GM
4614/* Return a face for charset ASCII that is like the face with id
4615 FACE_ID on frame F, but has a font that is STEPS steps smaller.
4616 STEPS < 0 means larger. Value is the id of the face. */
4617
4618int
971de7fb 4619smaller_face (struct frame *f, int face_id, int steps)
39506348 4620{
c3cee013 4621#ifdef HAVE_WINDOW_SYSTEM
82641697
GM
4622 struct face *face;
4623 Lisp_Object attrs[LFACE_VECTOR_SIZE];
4624 int pt, last_pt, last_height;
4625 int delta;
4626 int new_face_id;
4627 struct face *new_face;
4628
4629 /* If not called for an X frame, just return the original face. */
4630 if (FRAME_TERMCAP_P (f))
4631 return face_id;
4632
4633 /* Try in increments of 1/2 pt. */
4634 delta = steps < 0 ? 5 : -5;
1ea40aa2 4635 steps = eabs (steps);
178c5d9c 4636
82641697 4637 face = FACE_FROM_ID (f, face_id);
72af86bd 4638 memcpy (attrs, face->lface, sizeof attrs);
82641697
GM
4639 pt = last_pt = XFASTINT (attrs[LFACE_HEIGHT_INDEX]);
4640 new_face_id = face_id;
4641 last_height = FONT_HEIGHT (face->font);
4642
4643 while (steps
4644 && pt + delta > 0
4645 /* Give up if we cannot find a font within 10pt. */
1ea40aa2 4646 && eabs (last_pt - pt) < 100)
82641697
GM
4647 {
4648 /* Look up a face for a slightly smaller/larger font. */
4649 pt += delta;
4650 attrs[LFACE_HEIGHT_INDEX] = make_number (pt);
af53b43c 4651 new_face_id = lookup_face (f, attrs);
82641697
GM
4652 new_face = FACE_FROM_ID (f, new_face_id);
4653
4654 /* If height changes, count that as one step. */
b4c3ca09
GM
4655 if ((delta < 0 && FONT_HEIGHT (new_face->font) < last_height)
4656 || (delta > 0 && FONT_HEIGHT (new_face->font) > last_height))
82641697
GM
4657 {
4658 --steps;
4659 last_height = FONT_HEIGHT (new_face->font);
4660 last_pt = pt;
4661 }
4662 }
4663
4664 return new_face_id;
4665
c3cee013 4666#else /* not HAVE_WINDOW_SYSTEM */
82641697
GM
4667
4668 return face_id;
178c5d9c 4669
c3cee013 4670#endif /* not HAVE_WINDOW_SYSTEM */
82641697
GM
4671}
4672
4673
4674/* Return a face for charset ASCII that is like the face with id
4675 FACE_ID on frame F, but has height HEIGHT. */
4676
4677int
971de7fb 4678face_with_height (struct frame *f, int face_id, int height)
82641697 4679{
c3cee013 4680#ifdef HAVE_WINDOW_SYSTEM
82641697
GM
4681 struct face *face;
4682 Lisp_Object attrs[LFACE_VECTOR_SIZE];
4683
4684 if (FRAME_TERMCAP_P (f)
4685 || height <= 0)
4686 return face_id;
4687
4688 face = FACE_FROM_ID (f, face_id);
72af86bd 4689 memcpy (attrs, face->lface, sizeof attrs);
82641697 4690 attrs[LFACE_HEIGHT_INDEX] = make_number (height);
a8c0cc18 4691 font_clear_prop (attrs, FONT_SIZE_INDEX);
af53b43c 4692 face_id = lookup_face (f, attrs);
c3cee013 4693#endif /* HAVE_WINDOW_SYSTEM */
178c5d9c 4694
82641697
GM
4695 return face_id;
4696}
4697
b5de343d 4698
44747bd0 4699/* Return the face id of the realized face for named face SYMBOL on
af53b43c
KH
4700 frame F suitable for displaying ASCII characters, and use
4701 attributes of the face FACE_ID for attributes that aren't
4702 completely specified by SYMBOL. This is like lookup_named_face,
4703 except that the default attributes come from FACE_ID, not from the
4704 default face. FACE_ID is assumed to be already realized. */
44747bd0
EZ
4705
4706int
971de7fb 4707lookup_derived_face (struct frame *f, Lisp_Object symbol, int face_id, int signal_p)
44747bd0 4708{
e7d7fd8c 4709 Lisp_Object attrs[LFACE_VECTOR_SIZE];
44747bd0
EZ
4710 Lisp_Object symbol_attrs[LFACE_VECTOR_SIZE];
4711 struct face *default_face = FACE_FROM_ID (f, face_id);
4712
4713 if (!default_face)
4714 abort ();
4715
d8453278
CY
4716 if (!get_lface_attributes (f, symbol, symbol_attrs, signal_p, 0))
4717 return -1;
4718
72af86bd 4719 memcpy (attrs, default_face->lface, sizeof attrs);
e7d7fd8c 4720 merge_face_vectors (f, symbol_attrs, attrs, 0);
af53b43c 4721 return lookup_face (f, attrs);
44747bd0
EZ
4722}
4723
f6608d5c
RS
4724DEFUN ("face-attributes-as-vector", Fface_attributes_as_vector,
4725 Sface_attributes_as_vector, 1, 1, 0,
4bb962be 4726 doc: /* Return a vector of face attributes corresponding to PLIST. */)
5842a27b 4727 (Lisp_Object plist)
f6608d5c
RS
4728{
4729 Lisp_Object lface;
4730 lface = Fmake_vector (make_number (LFACE_VECTOR_SIZE),
4731 Qunspecified);
a0a23346
MB
4732 merge_face_ref (XFRAME (selected_frame), plist, XVECTOR (lface)->contents,
4733 1, 0);
f6608d5c
RS
4734 return lface;
4735}
4736
82641697
GM
4737
4738\f
9717e36c
MB
4739/***********************************************************************
4740 Face capability testing
4741 ***********************************************************************/
4742
4743
4744/* If the distance (as returned by color_distance) between two colors is
4745 less than this, then they are considered the same, for determining
4746 whether a color is supported or not. The range of values is 0-65535. */
4747
4748#define TTY_SAME_COLOR_THRESHOLD 10000
4749
ccda4e3c 4750#ifdef HAVE_WINDOW_SYSTEM
9717e36c
MB
4751
4752/* Return non-zero if all the face attributes in ATTRS are supported
4753 on the window-system frame F.
4754
4755 The definition of `supported' is somewhat heuristic, but basically means
4756 that a face containing all the attributes in ATTRS, when merged with the
4757 default face for display, can be represented in a way that's
4758
4759 \(1) different in appearance than the default face, and
8e330b22 4760 \(2) `close in spirit' to what the attributes specify, if not exact. */
9717e36c
MB
4761
4762static int
971de7fb 4763x_supports_face_attributes_p (struct frame *f, Lisp_Object *attrs, struct face *def_face)
9717e36c 4764{
8e330b22 4765 Lisp_Object *def_attrs = def_face->lface;
9717e36c
MB
4766
4767 /* Check that other specified attributes are different that the default
4768 face. */
4769 if ((!UNSPECIFIEDP (attrs[LFACE_UNDERLINE_INDEX])
4770 && face_attr_equal_p (attrs[LFACE_UNDERLINE_INDEX],
4771 def_attrs[LFACE_UNDERLINE_INDEX]))
4772 || (!UNSPECIFIEDP (attrs[LFACE_INVERSE_INDEX])
4773 && face_attr_equal_p (attrs[LFACE_INVERSE_INDEX],
4774 def_attrs[LFACE_INVERSE_INDEX]))
4775 || (!UNSPECIFIEDP (attrs[LFACE_FOREGROUND_INDEX])
4776 && face_attr_equal_p (attrs[LFACE_FOREGROUND_INDEX],
4777 def_attrs[LFACE_FOREGROUND_INDEX]))
4778 || (!UNSPECIFIEDP (attrs[LFACE_BACKGROUND_INDEX])
4779 && face_attr_equal_p (attrs[LFACE_BACKGROUND_INDEX],
4780 def_attrs[LFACE_BACKGROUND_INDEX]))
4781 || (!UNSPECIFIEDP (attrs[LFACE_STIPPLE_INDEX])
4782 && face_attr_equal_p (attrs[LFACE_STIPPLE_INDEX],
4783 def_attrs[LFACE_STIPPLE_INDEX]))
4784 || (!UNSPECIFIEDP (attrs[LFACE_OVERLINE_INDEX])
4785 && face_attr_equal_p (attrs[LFACE_OVERLINE_INDEX],
4786 def_attrs[LFACE_OVERLINE_INDEX]))
4787 || (!UNSPECIFIEDP (attrs[LFACE_STRIKE_THROUGH_INDEX])
4788 && face_attr_equal_p (attrs[LFACE_STRIKE_THROUGH_INDEX],
4789 def_attrs[LFACE_STRIKE_THROUGH_INDEX]))
4790 || (!UNSPECIFIEDP (attrs[LFACE_BOX_INDEX])
4791 && face_attr_equal_p (attrs[LFACE_BOX_INDEX],
4792 def_attrs[LFACE_BOX_INDEX])))
4793 return 0;
4794
4795 /* Check font-related attributes, as those are the most commonly
4796 "unsupported" on a window-system (because of missing fonts). */
4797 if (!UNSPECIFIEDP (attrs[LFACE_FAMILY_INDEX])
53aaf1e2 4798 || !UNSPECIFIEDP (attrs[LFACE_FOUNDRY_INDEX])
9717e36c
MB
4799 || !UNSPECIFIEDP (attrs[LFACE_HEIGHT_INDEX])
4800 || !UNSPECIFIEDP (attrs[LFACE_WEIGHT_INDEX])
4801 || !UNSPECIFIEDP (attrs[LFACE_SLANT_INDEX])
2dee4c0b 4802 || !UNSPECIFIEDP (attrs[LFACE_SWIDTH_INDEX]))
9717e36c 4803 {
327719ee 4804 int face_id;
9717e36c
MB
4805 struct face *face;
4806 Lisp_Object merged_attrs[LFACE_VECTOR_SIZE];
2dee4c0b 4807 int i;
9717e36c 4808
72af86bd 4809 memcpy (merged_attrs, def_attrs, sizeof merged_attrs);
9717e36c 4810
a0a23346 4811 merge_face_vectors (f, attrs, merged_attrs, 0);
9717e36c 4812
327719ee
MB
4813 face_id = lookup_face (f, merged_attrs);
4814 face = FACE_FROM_ID (f, face_id);
9717e36c
MB
4815
4816 if (! face)
2010ba8c 4817 error ("Cannot make face");
9717e36c 4818
4fc1984a
KH
4819 /* If the font is the same, or no font is found, then not
4820 supported. */
4821 if (face->font == def_face->font
4822 || ! face->font)
9717e36c 4823 return 0;
2dee4c0b
KH
4824 for (i = FONT_TYPE_INDEX; i <= FONT_SIZE_INDEX; i++)
4825 if (! EQ (face->font->props[i], def_face->font->props[i]))
4826 {
4827 Lisp_Object s1, s2;
4828
4829 if (i < FONT_FOUNDRY_INDEX || i > FONT_REGISTRY_INDEX
4830 || face->font->driver->case_sensitive)
4831 return 1;
4832 s1 = SYMBOL_NAME (face->font->props[i]);
4833 s2 = SYMBOL_NAME (def_face->font->props[i]);
4834 if (! EQ (Fcompare_strings (s1, make_number (0), Qnil,
4835 s2, make_number (0), Qnil, Qt), Qt))
4836 return 1;
4837 }
4838 return 0;
9717e36c
MB
4839 }
4840
4841 /* Everything checks out, this face is supported. */
4842 return 1;
4843}
4844
ccda4e3c 4845#endif /* HAVE_WINDOW_SYSTEM */
9717e36c
MB
4846
4847/* Return non-zero if all the face attributes in ATTRS are supported
4848 on the tty frame F.
4849
4850 The definition of `supported' is somewhat heuristic, but basically means
4851 that a face containing all the attributes in ATTRS, when merged
4852 with the default face for display, can be represented in a way that's
4853
4854 \(1) different in appearance than the default face, and
4855 \(2) `close in spirit' to what the attributes specify, if not exact.
4856
4857 Point (2) implies that a `:weight black' attribute will be satisfied
4858 by any terminal that can display bold, and a `:foreground "yellow"' as
4859 long as the terminal can display a yellowish color, but `:slant italic'
4860 will _not_ be satisfied by the tty display code's automatic
4861 substitution of a `dim' face for italic. */
4862
4863static int
971de7fb 4864tty_supports_face_attributes_p (struct frame *f, Lisp_Object *attrs, struct face *def_face)
9717e36c 4865{
734e9514 4866 int weight;
9717e36c
MB
4867 Lisp_Object val, fg, bg;
4868 XColor fg_tty_color, fg_std_color;
4869 XColor bg_tty_color, bg_std_color;
4870 unsigned test_caps = 0;
8e330b22 4871 Lisp_Object *def_attrs = def_face->lface;
9717e36c 4872
9717e36c 4873
8e330b22
MB
4874 /* First check some easy-to-check stuff; ttys support none of the
4875 following attributes, so we can just return false if any are requested
4876 (even if `nominal' values are specified, we should still return false,
4877 as that will be the same value that the default face uses). We
4878 consider :slant unsupportable on ttys, even though the face code
4879 actually `fakes' them using a dim attribute if possible. This is
4880 because the faked result is too different from what the face
4881 specifies. */
4882 if (!UNSPECIFIEDP (attrs[LFACE_FAMILY_INDEX])
53aaf1e2 4883 || !UNSPECIFIEDP (attrs[LFACE_FOUNDRY_INDEX])
8e330b22
MB
4884 || !UNSPECIFIEDP (attrs[LFACE_STIPPLE_INDEX])
4885 || !UNSPECIFIEDP (attrs[LFACE_HEIGHT_INDEX])
4886 || !UNSPECIFIEDP (attrs[LFACE_SWIDTH_INDEX])
4887 || !UNSPECIFIEDP (attrs[LFACE_OVERLINE_INDEX])
4888 || !UNSPECIFIEDP (attrs[LFACE_STRIKE_THROUGH_INDEX])
4889 || !UNSPECIFIEDP (attrs[LFACE_BOX_INDEX])
4890 || !UNSPECIFIEDP (attrs[LFACE_SLANT_INDEX]))
9717e36c
MB
4891 return 0;
4892
4893
4894 /* Test for terminal `capabilities' (non-color character attributes). */
4895
4896 /* font weight (bold/dim) */
337fbd17
CY
4897 val = attrs[LFACE_WEIGHT_INDEX];
4898 if (!UNSPECIFIEDP (val)
4899 && (weight = FONT_WEIGHT_NAME_NUMERIC (val), weight >= 0))
9717e36c 4900 {
2dee4c0b 4901 int def_weight = FONT_WEIGHT_NAME_NUMERIC (def_attrs[LFACE_WEIGHT_INDEX]);
8e330b22 4902
2dee4c0b 4903 if (weight > 100)
8e330b22 4904 {
2dee4c0b 4905 if (def_weight > 100)
8e330b22
MB
4906 return 0; /* same as default */
4907 test_caps = TTY_CAP_BOLD;
4908 }
2dee4c0b 4909 else if (weight < 100)
8e330b22 4910 {
2dee4c0b 4911 if (def_weight < 100)
8e330b22
MB
4912 return 0; /* same as default */
4913 test_caps = TTY_CAP_DIM;
4914 }
2dee4c0b 4915 else if (def_weight == 100)
8e330b22 4916 return 0; /* same as default */
9717e36c
MB
4917 }
4918
4919 /* underlining */
4920 val = attrs[LFACE_UNDERLINE_INDEX];
8e330b22 4921 if (!UNSPECIFIEDP (val))
9717e36c
MB
4922 {
4923 if (STRINGP (val))
8e330b22
MB
4924 return 0; /* ttys can't use colored underlines */
4925 else if (face_attr_equal_p (val, def_attrs[LFACE_UNDERLINE_INDEX]))
4926 return 0; /* same as default */
9717e36c
MB
4927 else
4928 test_caps |= TTY_CAP_UNDERLINE;
4929 }
4930
4931 /* inverse video */
4932 val = attrs[LFACE_INVERSE_INDEX];
8e330b22
MB
4933 if (!UNSPECIFIEDP (val))
4934 {
a13ab63f 4935 if (face_attr_equal_p (val, def_attrs[LFACE_INVERSE_INDEX]))
8e330b22
MB
4936 return 0; /* same as default */
4937 else
4938 test_caps |= TTY_CAP_INVERSE;
4939 }
9717e36c
MB
4940
4941
4942 /* Color testing. */
4943
4944 /* Default the color indices in FG_TTY_COLOR and BG_TTY_COLOR, since
4945 we use them when calling `tty_capable_p' below, even if the face
4946 specifies no colors. */
4947 fg_tty_color.pixel = FACE_TTY_DEFAULT_FG_COLOR;
4948 bg_tty_color.pixel = FACE_TTY_DEFAULT_BG_COLOR;
4949
4950 /* Check if foreground color is close enough. */
4951 fg = attrs[LFACE_FOREGROUND_INDEX];
4952 if (STRINGP (fg))
4953 {
8e330b22
MB
4954 Lisp_Object def_fg = def_attrs[LFACE_FOREGROUND_INDEX];
4955
4956 if (face_attr_equal_p (fg, def_fg))
4957 return 0; /* same as default */
4958 else if (! tty_lookup_color (f, fg, &fg_tty_color, &fg_std_color))
4959 return 0; /* not a valid color */
9717e36c
MB
4960 else if (color_distance (&fg_tty_color, &fg_std_color)
4961 > TTY_SAME_COLOR_THRESHOLD)
8e330b22
MB
4962 return 0; /* displayed color is too different */
4963 else
4964 /* Make sure the color is really different than the default. */
4965 {
4966 XColor def_fg_color;
4967 if (tty_lookup_color (f, def_fg, &def_fg_color, 0)
4968 && (color_distance (&fg_tty_color, &def_fg_color)
4969 <= TTY_SAME_COLOR_THRESHOLD))
4970 return 0;
4971 }
9717e36c
MB
4972 }
4973
4974 /* Check if background color is close enough. */
4975 bg = attrs[LFACE_BACKGROUND_INDEX];
4976 if (STRINGP (bg))
4977 {
a13ab63f 4978 Lisp_Object def_bg = def_attrs[LFACE_BACKGROUND_INDEX];
8e330b22
MB
4979
4980 if (face_attr_equal_p (bg, def_bg))
4981 return 0; /* same as default */
4982 else if (! tty_lookup_color (f, bg, &bg_tty_color, &bg_std_color))
4983 return 0; /* not a valid color */
9717e36c
MB
4984 else if (color_distance (&bg_tty_color, &bg_std_color)
4985 > TTY_SAME_COLOR_THRESHOLD)
8e330b22
MB
4986 return 0; /* displayed color is too different */
4987 else
4988 /* Make sure the color is really different than the default. */
4989 {
4990 XColor def_bg_color;
4991 if (tty_lookup_color (f, def_bg, &def_bg_color, 0)
4992 && (color_distance (&bg_tty_color, &def_bg_color)
4993 <= TTY_SAME_COLOR_THRESHOLD))
4994 return 0;
4995 }
9717e36c
MB
4996 }
4997
4998 /* If both foreground and background are requested, see if the
4999 distance between them is OK. We just check to see if the distance
5000 between the tty's foreground and background is close enough to the
5001 distance between the standard foreground and background. */
5002 if (STRINGP (fg) && STRINGP (bg))
5003 {
5004 int delta_delta
5005 = (color_distance (&fg_std_color, &bg_std_color)
5006 - color_distance (&fg_tty_color, &bg_tty_color));
5007 if (delta_delta > TTY_SAME_COLOR_THRESHOLD
5008 || delta_delta < -TTY_SAME_COLOR_THRESHOLD)
5009 return 0;
5010 }
5011
5012
5013 /* See if the capabilities we selected above are supported, with the
5014 given colors. */
5015 if (test_caps != 0 &&
3d63dd9d 5016 ! tty_capable_p (FRAME_TTY (f), test_caps, fg_tty_color.pixel, bg_tty_color.pixel))
9717e36c
MB
5017 return 0;
5018
5019
5020 /* Hmmm, everything checks out, this terminal must support this face. */
5021 return 1;
5022}
5023
5024
5025DEFUN ("display-supports-face-attributes-p",
5026 Fdisplay_supports_face_attributes_p, Sdisplay_supports_face_attributes_p,
5027 1, 2, 0,
5028 doc: /* Return non-nil if all the face attributes in ATTRIBUTES are supported.
5029The optional argument DISPLAY can be a display name, a frame, or
9fed2905 5030nil (meaning the selected frame's display).
9717e36c
MB
5031
5032The definition of `supported' is somewhat heuristic, but basically means
5033that a face containing all the attributes in ATTRIBUTES, when merged
5034with the default face for display, can be represented in a way that's
5035
5036 \(1) different in appearance than the default face, and
5037 \(2) `close in spirit' to what the attributes specify, if not exact.
5038
5039Point (2) implies that a `:weight black' attribute will be satisfied by
5040any display that can display bold, and a `:foreground \"yellow\"' as long
5041as it can display a yellowish color, but `:slant italic' will _not_ be
5042satisfied by the tty display code's automatic substitution of a `dim'
9fed2905 5043face for italic. */)
5842a27b 5044 (Lisp_Object attributes, Lisp_Object display)
9717e36c 5045{
221439a0 5046 int supports = 0, i;
9717e36c
MB
5047 Lisp_Object frame;
5048 struct frame *f;
8e330b22 5049 struct face *def_face;
9717e36c
MB
5050 Lisp_Object attrs[LFACE_VECTOR_SIZE];
5051
0722292b
MB
5052 if (noninteractive || !initialized)
5053 /* We may not be able to access low-level face information in batch
5054 mode, or before being dumped, and this function is not going to
5055 be very useful in those cases anyway, so just give up. */
5056 return Qnil;
5057
9717e36c
MB
5058 if (NILP (display))
5059 frame = selected_frame;
5060 else if (FRAMEP (display))
5061 frame = display;
5062 else
5063 {
5064 /* Find any frame on DISPLAY. */
5065 Lisp_Object fl_tail;
5066
5067 frame = Qnil;
5068 for (fl_tail = Vframe_list; CONSP (fl_tail); fl_tail = XCDR (fl_tail))
5069 {
5070 frame = XCAR (fl_tail);
5071 if (!NILP (Fequal (Fcdr (Fassq (Qdisplay,
5072 XFRAME (frame)->param_alist)),
5073 display)))
5074 break;
5075 }
5076 }
5077
5078 CHECK_LIVE_FRAME (frame);
5079 f = XFRAME (frame);
5080
5081 for (i = 0; i < LFACE_VECTOR_SIZE; i++)
5082 attrs[i] = Qunspecified;
a0a23346 5083 merge_face_ref (f, attributes, attrs, 1, 0);
9717e36c 5084
8e330b22
MB
5085 def_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
5086 if (def_face == NULL)
5087 {
5088 if (! realize_basic_faces (f))
734e9514 5089 error ("Cannot realize default face");
8e330b22 5090 def_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
418ca4d2
RS
5091 if (def_face == NULL)
5092 abort (); /* realize_basic_faces must have set it up */
8e330b22
MB
5093 }
5094
9717e36c
MB
5095 /* Dispatch to the appropriate handler. */
5096 if (FRAME_TERMCAP_P (f) || FRAME_MSDOS_P (f))
8e330b22 5097 supports = tty_supports_face_attributes_p (f, attrs, def_face);
ccda4e3c 5098#ifdef HAVE_WINDOW_SYSTEM
9717e36c 5099 else
8e330b22
MB
5100 supports = x_supports_face_attributes_p (f, attrs, def_face);
5101#endif
9717e36c
MB
5102
5103 return supports ? Qt : Qnil;
5104}
5105
5106\f
82641697
GM
5107/***********************************************************************
5108 Font selection
5109 ***********************************************************************/
5110
2c7d1565 5111DEFUN ("internal-set-font-selection-order",
82641697
GM
5112 Finternal_set_font_selection_order,
5113 Sinternal_set_font_selection_order, 1, 1, 0,
7ee72033 5114 doc: /* Set font selection order for face font selection to ORDER.
228299fa
GM
5115ORDER must be a list of length 4 containing the symbols `:width',
5116`:height', `:weight', and `:slant'. Face attributes appearing
5117first in ORDER are matched first, e.g. if `:height' appears before
5118`:weight' in ORDER, font selection first tries to find a font with
5119a suitable height, and then tries to match the font weight.
7ee72033 5120Value is ORDER. */)
5842a27b 5121 (Lisp_Object order)
82641697
GM
5122{
5123 Lisp_Object list;
5124 int i;
a08332c0 5125 int indices[DIM (font_sort_order)];
178c5d9c 5126
b7826503 5127 CHECK_LIST (order);
72af86bd 5128 memset (indices, 0, sizeof indices);
82641697
GM
5129 i = 0;
5130
5131 for (list = order;
5132 CONSP (list) && i < DIM (indices);
5133 list = XCDR (list), ++i)
5134 {
5135 Lisp_Object attr = XCAR (list);
5136 int xlfd;
5137
5138 if (EQ (attr, QCwidth))
5139 xlfd = XLFD_SWIDTH;
5140 else if (EQ (attr, QCheight))
5141 xlfd = XLFD_POINT_SIZE;
5142 else if (EQ (attr, QCweight))
5143 xlfd = XLFD_WEIGHT;
5144 else if (EQ (attr, QCslant))
5145 xlfd = XLFD_SLANT;
5146 else
5147 break;
5148
5149 if (indices[i] != 0)
5150 break;
5151 indices[i] = xlfd;
5152 }
5153
a08332c0 5154 if (!NILP (list) || i != DIM (indices))
82641697 5155 signal_error ("Invalid font sort order", order);
a08332c0
GM
5156 for (i = 0; i < DIM (font_sort_order); ++i)
5157 if (indices[i] == 0)
5158 signal_error ("Invalid font sort order", order);
82641697 5159
72af86bd 5160 if (memcmp (indices, font_sort_order, sizeof indices) != 0)
82641697 5161 {
72af86bd 5162 memcpy (font_sort_order, indices, sizeof font_sort_order);
82641697
GM
5163 free_all_realized_faces (Qnil);
5164 }
178c5d9c 5165
2dee4c0b 5166 font_update_sort_order (font_sort_order);
426b2119 5167
82641697
GM
5168 return Qnil;
5169}
5170
5171
5172DEFUN ("internal-set-alternative-font-family-alist",
5173 Finternal_set_alternative_font_family_alist,
5174 Sinternal_set_alternative_font_family_alist, 1, 1, 0,
c71f3632 5175 doc: /* Define alternative font families to try in face font selection.
228299fa
GM
5176ALIST is an alist of (FAMILY ALTERNATIVE1 ALTERNATIVE2 ...) entries.
5177Each ALTERNATIVE is tried in order if no fonts of font family FAMILY can
7ee72033 5178be found. Value is ALIST. */)
5842a27b 5179 (Lisp_Object alist)
82641697 5180{
a77d5bb2 5181 Lisp_Object entry, tail, tail2;
53aaf1e2 5182
b7826503 5183 CHECK_LIST (alist);
53aaf1e2
KH
5184 alist = Fcopy_sequence (alist);
5185 for (tail = alist; CONSP (tail); tail = XCDR (tail))
a77d5bb2
CY
5186 {
5187 entry = XCAR (tail);
5188 CHECK_LIST (entry);
5189 entry = Fcopy_sequence (entry);
5190 XSETCAR (tail, entry);
5191 for (tail2 = entry; CONSP (tail2); tail2 = XCDR (tail2))
5192 XSETCAR (tail2, Fintern (XCAR (tail2), Qnil));
5193 }
5194
82641697
GM
5195 Vface_alternative_font_family_alist = alist;
5196 free_all_realized_faces (Qnil);
5197 return alist;
5198}
5199
5200
32fcc231
GM
5201DEFUN ("internal-set-alternative-font-registry-alist",
5202 Finternal_set_alternative_font_registry_alist,
5203 Sinternal_set_alternative_font_registry_alist, 1, 1, 0,
e3cd9e7f 5204 doc: /* Define alternative font registries to try in face font selection.
228299fa
GM
5205ALIST is an alist of (REGISTRY ALTERNATIVE1 ALTERNATIVE2 ...) entries.
5206Each ALTERNATIVE is tried in order if no fonts of font registry REGISTRY can
7ee72033 5207be found. Value is ALIST. */)
5842a27b 5208 (Lisp_Object alist)
32fcc231 5209{
a77d5bb2 5210 Lisp_Object entry, tail, tail2;
53aaf1e2 5211
b7826503 5212 CHECK_LIST (alist);
53aaf1e2
KH
5213 alist = Fcopy_sequence (alist);
5214 for (tail = alist; CONSP (tail); tail = XCDR (tail))
a77d5bb2
CY
5215 {
5216 entry = XCAR (tail);
5217 CHECK_LIST (entry);
5218 entry = Fcopy_sequence (entry);
5219 XSETCAR (tail, entry);
5220 for (tail2 = entry; CONSP (tail2); tail2 = XCDR (tail2))
5221 XSETCAR (tail2, Fdowncase (XCAR (tail2)));
5222 }
32fcc231
GM
5223 Vface_alternative_font_registry_alist = alist;
5224 free_all_realized_faces (Qnil);
5225 return alist;
5226}
5227
5228
c3cee013 5229#ifdef HAVE_WINDOW_SYSTEM
82641697 5230
39506348
KH
5231/* Return the fontset id of the base fontset name or alias name given
5232 by the fontset attribute of ATTRS. Value is -1 if the fontset
5233 attribute of ATTRS doesn't name a fontset. */
82641697
GM
5234
5235static int
971de7fb 5236face_fontset (Lisp_Object *attrs)
82641697 5237{
39506348 5238 Lisp_Object name;
178c5d9c 5239
763bc839 5240 name = attrs[LFACE_FONTSET_INDEX];
39506348
KH
5241 if (!STRINGP (name))
5242 return -1;
5243 return fs_query_fontset (name, 0);
82641697
GM
5244}
5245
c3cee013 5246#endif /* HAVE_WINDOW_SYSTEM */
82641697
GM
5247
5248
5249\f
5250/***********************************************************************
5251 Face Realization
5252 ***********************************************************************/
5253
5254/* Realize basic faces on frame F. Value is zero if frame parameters
5255 of F don't contain enough information needed to realize the default
5256 face. */
5257
5258static int
971de7fb 5259realize_basic_faces (struct frame *f)
82641697
GM
5260{
5261 int success_p = 0;
331379bf 5262 int count = SPECPDL_INDEX ();
17e8204b 5263
04386463
GM
5264 /* Block input here so that we won't be surprised by an X expose
5265 event, for instance, without having the faces set up. */
17e8204b 5266 BLOCK_INPUT;
eeffb293 5267 specbind (Qscalable_fonts_allowed, Qt);
178c5d9c 5268
82641697
GM
5269 if (realize_default_face (f))
5270 {
92610620 5271 realize_named_face (f, Qmode_line, MODE_LINE_FACE_ID);
039b6394 5272 realize_named_face (f, Qmode_line_inactive, MODE_LINE_INACTIVE_FACE_ID);
9ea173e8 5273 realize_named_face (f, Qtool_bar, TOOL_BAR_FACE_ID);
4e50fa8b 5274 realize_named_face (f, Qfringe, FRINGE_FACE_ID);
045dee35 5275 realize_named_face (f, Qheader_line, HEADER_LINE_FACE_ID);
8bd201d6
GM
5276 realize_named_face (f, Qscroll_bar, SCROLL_BAR_FACE_ID);
5277 realize_named_face (f, Qborder, BORDER_FACE_ID);
5278 realize_named_face (f, Qcursor, CURSOR_FACE_ID);
5279 realize_named_face (f, Qmouse, MOUSE_FACE_ID);
c7ae3284 5280 realize_named_face (f, Qmenu, MENU_FACE_ID);
53abc3bf 5281 realize_named_face (f, Qvertical_border, VERTICAL_BORDER_FACE_ID);
563f68f1 5282
b5de343d 5283 /* Reflect changes in the `menu' face in menu bars. */
ceeda019 5284 if (FRAME_FACE_CACHE (f)->menu_face_changed_p)
563f68f1 5285 {
ceeda019 5286 FRAME_FACE_CACHE (f)->menu_face_changed_p = 0;
563f68f1 5287#ifdef USE_X_TOOLKIT
daf01701
KL
5288 if (FRAME_WINDOW_P (f))
5289 x_update_menu_appearance (f);
a03ad468 5290#endif
563f68f1 5291 }
177c0ea7 5292
82641697
GM
5293 success_p = 1;
5294 }
5295
eeffb293 5296 unbind_to (count, Qnil);
17e8204b 5297 UNBLOCK_INPUT;
82641697
GM
5298 return success_p;
5299}
5300
5301
5302/* Realize the default face on frame F. If the face is not fully
5303 specified, make it fully-specified. Attributes of the default face
5304 that are not explicitly specified are taken from frame parameters. */
5305
5306static int
971de7fb 5307realize_default_face (struct frame *f)
82641697
GM
5308{
5309 struct face_cache *c = FRAME_FACE_CACHE (f);
5310 Lisp_Object lface;
5311 Lisp_Object attrs[LFACE_VECTOR_SIZE];
82641697 5312 struct face *face;
82641697
GM
5313
5314 /* If the `default' face is not yet known, create it. */
5315 lface = lface_from_face_name (f, Qdefault, 0);
5316 if (NILP (lface))
07446869
GM
5317 {
5318 Lisp_Object frame;
5319 XSETFRAME (frame, f);
5320 lface = Finternal_make_lisp_face (Qdefault, frame);
5321 }
5322
c3cee013
JR
5323#ifdef HAVE_WINDOW_SYSTEM
5324 if (FRAME_WINDOW_P (f))
82641697 5325 {
2dee4c0b
KH
5326 Lisp_Object font_object;
5327
5328 XSETFONT (font_object, FRAME_FONT (f));
5329 set_lface_from_font (f, lface, font_object, f->default_face_done_p);
5330 LFACE_FONTSET (lface) = fontset_name (FRAME_FONTSET (f));
a5f696ac 5331 f->default_face_done_p = 1;
82641697 5332 }
c3cee013 5333#endif /* HAVE_WINDOW_SYSTEM */
82641697 5334
44747bd0 5335 if (!FRAME_WINDOW_P (f))
82641697
GM
5336 {
5337 LFACE_FAMILY (lface) = build_string ("default");
53aaf1e2 5338 LFACE_FOUNDRY (lface) = LFACE_FAMILY (lface);
82641697
GM
5339 LFACE_SWIDTH (lface) = Qnormal;
5340 LFACE_HEIGHT (lface) = make_number (1);
c1e7532d
EZ
5341 if (UNSPECIFIEDP (LFACE_WEIGHT (lface)))
5342 LFACE_WEIGHT (lface) = Qnormal;
5343 if (UNSPECIFIEDP (LFACE_SLANT (lface)))
5344 LFACE_SLANT (lface) = Qnormal;
70d6ecc6
KH
5345 if (UNSPECIFIEDP (LFACE_FONTSET (lface)))
5346 LFACE_FONTSET (lface) = Qnil;
82641697 5347 }
178c5d9c 5348
82641697
GM
5349 if (UNSPECIFIEDP (LFACE_UNDERLINE (lface)))
5350 LFACE_UNDERLINE (lface) = Qnil;
178c5d9c 5351
82641697
GM
5352 if (UNSPECIFIEDP (LFACE_OVERLINE (lface)))
5353 LFACE_OVERLINE (lface) = Qnil;
178c5d9c 5354
82641697
GM
5355 if (UNSPECIFIEDP (LFACE_STRIKE_THROUGH (lface)))
5356 LFACE_STRIKE_THROUGH (lface) = Qnil;
178c5d9c 5357
82641697
GM
5358 if (UNSPECIFIEDP (LFACE_BOX (lface)))
5359 LFACE_BOX (lface) = Qnil;
178c5d9c 5360
82641697
GM
5361 if (UNSPECIFIEDP (LFACE_INVERSE (lface)))
5362 LFACE_INVERSE (lface) = Qnil;
178c5d9c 5363
82641697
GM
5364 if (UNSPECIFIEDP (LFACE_FOREGROUND (lface)))
5365 {
5366 /* This function is called so early that colors are not yet
5367 set in the frame parameter list. */
5368 Lisp_Object color = Fassq (Qforeground_color, f->param_alist);
178c5d9c 5369
82641697
GM
5370 if (CONSP (color) && STRINGP (XCDR (color)))
5371 LFACE_FOREGROUND (lface) = XCDR (color);
c3cee013 5372 else if (FRAME_WINDOW_P (f))
82641697 5373 return 0;
3224dac1 5374 else if (FRAME_INITIAL_P (f) || FRAME_TERMCAP_P (f) || FRAME_MSDOS_P (f))
ef917393 5375 LFACE_FOREGROUND (lface) = build_string (unspecified_fg);
f9d2fdc4 5376 else
82641697
GM
5377 abort ();
5378 }
178c5d9c 5379
82641697
GM
5380 if (UNSPECIFIEDP (LFACE_BACKGROUND (lface)))
5381 {
5382 /* This function is called so early that colors are not yet
5383 set in the frame parameter list. */
5384 Lisp_Object color = Fassq (Qbackground_color, f->param_alist);
5385 if (CONSP (color) && STRINGP (XCDR (color)))
5386 LFACE_BACKGROUND (lface) = XCDR (color);
c3cee013 5387 else if (FRAME_WINDOW_P (f))
82641697 5388 return 0;
3224dac1 5389 else if (FRAME_INITIAL_P (f) || FRAME_TERMCAP_P (f) || FRAME_MSDOS_P (f))
ef917393 5390 LFACE_BACKGROUND (lface) = build_string (unspecified_bg);
f9d2fdc4 5391 else
82641697
GM
5392 abort ();
5393 }
178c5d9c 5394
82641697
GM
5395 if (UNSPECIFIEDP (LFACE_STIPPLE (lface)))
5396 LFACE_STIPPLE (lface) = Qnil;
5397
5398 /* Realize the face; it must be fully-specified now. */
5399 xassert (lface_fully_specified_p (XVECTOR (lface)->contents));
5400 check_lface (lface);
72af86bd 5401 memcpy (attrs, XVECTOR (lface)->contents, sizeof attrs);
af53b43c 5402 face = realize_face (c, attrs, DEFAULT_FACE_ID);
4da9c136
KH
5403
5404#ifdef HAVE_WINDOW_SYSTEM
41a9b76e 5405#ifdef HAVE_X_WINDOWS
361c0d6e 5406 if (FRAME_X_P (f) && face->font != FRAME_FONT (f))
73158a39
CY
5407 {
5408 /* This can happen when making a frame on a display that does
974b73e8 5409 not support the default font. */
73158a39 5410 if (!face->font)
974b73e8 5411 return 0;
d5ab09cd 5412
73158a39 5413 /* Otherwise, the font specified for the frame was not
974b73e8
KL
5414 acceptable as a font for the default face (perhaps because
5415 auto-scaled fonts are rejected), so we must adjust the frame
5416 font. */
2dee4c0b 5417 x_set_font (f, LFACE_FONT (lface), Qnil);
73158a39 5418 }
4da9c136
KH
5419#endif /* HAVE_X_WINDOWS */
5420#endif /* HAVE_WINDOW_SYSTEM */
82641697
GM
5421 return 1;
5422}
5423
5424
5425/* Realize basic faces other than the default face in face cache C.
5426 SYMBOL is the face name, ID is the face id the realized face must
5427 have. The default face must have been realized already. */
5428
5429static void
971de7fb 5430realize_named_face (struct frame *f, Lisp_Object symbol, int id)
82641697 5431{
e7d7fd8c 5432 struct face_cache *c = FRAME_FACE_CACHE (f);
82641697
GM
5433 Lisp_Object lface = lface_from_face_name (f, symbol, 0);
5434 Lisp_Object attrs[LFACE_VECTOR_SIZE];
e7d7fd8c 5435 Lisp_Object symbol_attrs[LFACE_VECTOR_SIZE];
82641697
GM
5436
5437 /* The default face must exist and be fully specified. */
f2cec7a9 5438 get_lface_attributes_no_remap (f, Qdefault, attrs, 1);
82641697
GM
5439 check_lface_attrs (attrs);
5440 xassert (lface_fully_specified_p (attrs));
5441
e7d7fd8c 5442 /* If SYMBOL isn't know as a face, create it. */
82641697
GM
5443 if (NILP (lface))
5444 {
5445 Lisp_Object frame;
5446 XSETFRAME (frame, f);
5447 lface = Finternal_make_lisp_face (symbol, frame);
5448 }
5449
5450 /* Merge SYMBOL's face with the default face. */
f2cec7a9 5451 get_lface_attributes_no_remap (f, symbol, symbol_attrs, 1);
e7d7fd8c
MB
5452 merge_face_vectors (f, symbol_attrs, attrs, 0);
5453
5454 /* Realize the face. */
a5a62657 5455 realize_face (c, attrs, id);
82641697
GM
5456}
5457
5458
5459/* Realize the fully-specified face with attributes ATTRS in face
af53b43c
KH
5460 cache CACHE for ASCII characters. If FORMER_FACE_ID is
5461 non-negative, it is an ID of face to remove before caching the new
5462 face. Value is a pointer to the newly created realized face. */
82641697
GM
5463
5464static struct face *
971de7fb 5465realize_face (struct face_cache *cache, Lisp_Object *attrs, int former_face_id)
82641697
GM
5466{
5467 struct face *face;
178c5d9c 5468
82641697 5469 /* LFACE must be fully specified. */
39506348 5470 xassert (cache != NULL);
82641697
GM
5471 check_lface_attrs (attrs);
5472
39506348
KH
5473 if (former_face_id >= 0 && cache->used > former_face_id)
5474 {
5475 /* Remove the former face. */
5476 struct face *former_face = cache->faces_by_id[former_face_id];
5477 uncache_face (cache, former_face);
5478 free_realized_face (cache->f, former_face);
7c33a057 5479 SET_FRAME_GARBAGED (cache->f);
39506348
KH
5480 }
5481
5482 if (FRAME_WINDOW_P (cache->f))
af53b43c 5483 face = realize_x_face (cache, attrs);
e689ec06 5484 else if (FRAME_TERMCAP_P (cache->f) || FRAME_MSDOS_P (cache->f))
af53b43c 5485 face = realize_tty_face (cache, attrs);
d448e982
KL
5486 else if (FRAME_INITIAL_P (cache->f))
5487 {
5488 /* Create a dummy face. */
5489 face = make_realized_face (attrs);
5490 }
82641697
GM
5491 else
5492 abort ();
5493
39506348
KH
5494 /* Insert the new face. */
5495 cache_face (cache, face, lface_hash (attrs));
af53b43c
KH
5496 return face;
5497}
5498
5499
8c6204de 5500#ifdef HAVE_WINDOW_SYSTEM
2dee4c0b
KH
5501/* Realize the fully-specified face that uses FONT-OBJECT and has the
5502 same attributes as BASE_FACE except for the font on frame F.
5503 FONT-OBJECT may be nil, in which case, realized a face of
5504 no-font. */
af53b43c
KH
5505
5506static struct face *
971de7fb 5507realize_non_ascii_face (struct frame *f, Lisp_Object font_object, struct face *base_face)
af53b43c
KH
5508{
5509 struct face_cache *cache = FRAME_FACE_CACHE (f);
8f924df7 5510 struct face *face;
af53b43c
KH
5511
5512 face = (struct face *) xmalloc (sizeof *face);
5513 *face = *base_face;
5514 face->gc = 0;
bdd10de6 5515 face->extra = NULL;
2dee4c0b
KH
5516 face->overstrike
5517 = (! NILP (font_object)
5518 && FONT_WEIGHT_NAME_NUMERIC (face->lface[LFACE_WEIGHT_INDEX]) > 100
5519 && FONT_WEIGHT_NUMERIC (font_object) <= 100);
af53b43c
KH
5520
5521 /* Don't try to free the colors copied bitwise from BASE_FACE. */
5522 face->colors_copied_bitwise_p = 1;
2dee4c0b 5523 face->font = NILP (font_object) ? NULL : XFONT_OBJECT (font_object);
af53b43c
KH
5524 face->gc = 0;
5525
5526 cache_face (cache, face, face->hash);
5527
82641697
GM
5528 return face;
5529}
8c6204de 5530#endif /* HAVE_WINDOW_SYSTEM */
82641697
GM
5531
5532
5533/* Realize the fully-specified face with attributes ATTRS in face
af53b43c
KH
5534 cache CACHE for ASCII characters. Do it for X frame CACHE->f. If
5535 the new face doesn't share font with the default face, a fontname
5536 is allocated from the heap and set in `font_name' of the new face,
5537 but it is not yet loaded here. Value is a pointer to the newly
5538 created realized face. */
82641697
GM
5539
5540static struct face *
971de7fb 5541realize_x_face (struct face_cache *cache, Lisp_Object *attrs)
82641697 5542{
7d603e3f 5543 struct face *face = NULL;
c3cee013 5544#ifdef HAVE_WINDOW_SYSTEM
7d603e3f 5545 struct face *default_face;
78d2079c 5546 struct frame *f;
82641697 5547 Lisp_Object stipple, overline, strike_through, box;
82641697 5548
39506348 5549 xassert (FRAME_WINDOW_P (cache->f));
82641697
GM
5550
5551 /* Allocate a new realized face. */
39506348 5552 face = make_realized_face (attrs);
af53b43c 5553 face->ascii_face = face;
39506348
KH
5554
5555 f = cache->f;
5556
82641697
GM
5557 /* Determine the font to use. Most of the time, the font will be
5558 the same as the font of the default face, so try that first. */
5559 default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
5560 if (default_face
82641697
GM
5561 && lface_same_font_attributes_p (default_face->lface, attrs))
5562 {
5563 face->font = default_face->font;
76f54ecc
KH
5564 face->fontset
5565 = make_fontset_for_ascii_face (f, default_face->fontset, face);
82641697
GM
5566 }
5567 else
5568 {
39506348 5569 /* If the face attribute ATTRS specifies a fontset, use it as
fc8c4797
KH
5570 the base of a new realized fontset. Otherwise, use the same
5571 base fontset as of the default face. The base determines
5572 registry and encoding of a font. It may also determine
5573 foundry and family. The other fields of font name pattern
5574 are constructed from ATTRS. */
5575 int fontset = face_fontset (attrs);
5576
af53b43c
KH
5577 /* If we are realizing the default face, ATTRS should specify a
5578 fontset. In other words, if FONTSET is -1, we are not
5579 realizing the default face, thus the default face should have
5580 already been realized. */
5581 if (fontset == -1)
d78494f9
CY
5582 {
5583 if (default_face)
5584 fontset = default_face->fontset;
5585 if (fontset == -1)
5586 abort ();
5587 }
2dee4c0b
KH
5588 if (! FONT_OBJECT_P (attrs[LFACE_FONT_INDEX]))
5589 attrs[LFACE_FONT_INDEX]
5590 = font_load_for_lface (f, attrs, attrs[LFACE_FONT_INDEX]);
5591 if (FONT_OBJECT_P (attrs[LFACE_FONT_INDEX]))
5592 {
5593 face->font = XFONT_OBJECT (attrs[LFACE_FONT_INDEX]);
5594 face->fontset = make_fontset_for_ascii_face (f, fontset, face);
5595 }
426b2119 5596 else
2dee4c0b
KH
5597 {
5598 face->font = NULL;
5599 face->fontset = -1;
5600 }
82641697
GM
5601 }
5602
2dee4c0b
KH
5603 if (face->font
5604 && FONT_WEIGHT_NAME_NUMERIC (attrs[LFACE_WEIGHT_INDEX]) > 100
5605 && FONT_WEIGHT_NUMERIC (attrs[LFACE_FONT_INDEX]) <= 100)
5606 face->overstrike = 1;
5607
82641697 5608 /* Load colors, and set remaining attributes. */
178c5d9c 5609
82641697 5610 load_face_colors (f, face, attrs);
660ed669 5611
82641697
GM
5612 /* Set up box. */
5613 box = attrs[LFACE_BOX_INDEX];
5614 if (STRINGP (box))
cb637678 5615 {
82641697
GM
5616 /* A simple box of line width 1 drawn in color given by
5617 the string. */
5618 face->box_color = load_color (f, face, attrs[LFACE_BOX_INDEX],
5619 LFACE_BOX_INDEX);
5620 face->box = FACE_SIMPLE_BOX;
5621 face->box_line_width = 1;
cb637678 5622 }
82641697 5623 else if (INTEGERP (box))
42120bc7 5624 {
82641697
GM
5625 /* Simple box of specified line width in foreground color of the
5626 face. */
89624b8b 5627 xassert (XINT (box) != 0);
82641697 5628 face->box = FACE_SIMPLE_BOX;
89624b8b 5629 face->box_line_width = XINT (box);
82641697
GM
5630 face->box_color = face->foreground;
5631 face->box_color_defaulted_p = 1;
5632 }
5633 else if (CONSP (box))
5634 {
5635 /* `(:width WIDTH :color COLOR :shadow SHADOW)'. SHADOW
5636 being one of `raised' or `sunken'. */
5637 face->box = FACE_SIMPLE_BOX;
5638 face->box_color = face->foreground;
5639 face->box_color_defaulted_p = 1;
5640 face->box_line_width = 1;
5641
5642 while (CONSP (box))
42120bc7 5643 {
82641697
GM
5644 Lisp_Object keyword, value;
5645
5646 keyword = XCAR (box);
5647 box = XCDR (box);
5648
5649 if (!CONSP (box))
5650 break;
5651 value = XCAR (box);
5652 box = XCDR (box);
5653
5654 if (EQ (keyword, QCline_width))
5655 {
89624b8b
KH
5656 if (INTEGERP (value) && XINT (value) != 0)
5657 face->box_line_width = XINT (value);
82641697
GM
5658 }
5659 else if (EQ (keyword, QCcolor))
5660 {
5661 if (STRINGP (value))
5662 {
5663 face->box_color = load_color (f, face, value,
5664 LFACE_BOX_INDEX);
5665 face->use_box_color_for_shadows_p = 1;
5666 }
5667 }
5668 else if (EQ (keyword, QCstyle))
a8517066 5669 {
82641697
GM
5670 if (EQ (value, Qreleased_button))
5671 face->box = FACE_RAISED_BOX;
5672 else if (EQ (value, Qpressed_button))
5673 face->box = FACE_SUNKEN_BOX;
a8517066 5674 }
42120bc7
RS
5675 }
5676 }
195f798e 5677
82641697 5678 /* Text underline, overline, strike-through. */
178c5d9c 5679
82641697 5680 if (EQ (attrs[LFACE_UNDERLINE_INDEX], Qt))
178c5d9c 5681 {
82641697
GM
5682 /* Use default color (same as foreground color). */
5683 face->underline_p = 1;
5684 face->underline_defaulted_p = 1;
5685 face->underline_color = 0;
5686 }
5687 else if (STRINGP (attrs[LFACE_UNDERLINE_INDEX]))
195f798e 5688 {
82641697
GM
5689 /* Use specified color. */
5690 face->underline_p = 1;
5691 face->underline_defaulted_p = 0;
5692 face->underline_color
5693 = load_color (f, face, attrs[LFACE_UNDERLINE_INDEX],
5694 LFACE_UNDERLINE_INDEX);
195f798e 5695 }
82641697 5696 else if (NILP (attrs[LFACE_UNDERLINE_INDEX]))
7b00de84 5697 {
82641697
GM
5698 face->underline_p = 0;
5699 face->underline_defaulted_p = 0;
5700 face->underline_color = 0;
7b00de84
JB
5701 }
5702
82641697
GM
5703 overline = attrs[LFACE_OVERLINE_INDEX];
5704 if (STRINGP (overline))
cb637678 5705 {
82641697
GM
5706 face->overline_color
5707 = load_color (f, face, attrs[LFACE_OVERLINE_INDEX],
5708 LFACE_OVERLINE_INDEX);
5709 face->overline_p = 1;
cb637678 5710 }
82641697 5711 else if (EQ (overline, Qt))
cb637678 5712 {
82641697
GM
5713 face->overline_color = face->foreground;
5714 face->overline_color_defaulted_p = 1;
5715 face->overline_p = 1;
cb637678
JB
5716 }
5717
82641697
GM
5718 strike_through = attrs[LFACE_STRIKE_THROUGH_INDEX];
5719 if (STRINGP (strike_through))
5720 {
5721 face->strike_through_color
5722 = load_color (f, face, attrs[LFACE_STRIKE_THROUGH_INDEX],
5723 LFACE_STRIKE_THROUGH_INDEX);
5724 face->strike_through_p = 1;
5725 }
5726 else if (EQ (strike_through, Qt))
5727 {
5728 face->strike_through_color = face->foreground;
5729 face->strike_through_color_defaulted_p = 1;
5730 face->strike_through_p = 1;
5731 }
867dd159 5732
82641697
GM
5733 stipple = attrs[LFACE_STIPPLE_INDEX];
5734 if (!NILP (stipple))
5735 face->stipple = load_pixmap (f, stipple, &face->pixmap_w, &face->pixmap_h);
c3cee013 5736#endif /* HAVE_WINDOW_SYSTEM */
660ed669 5737
82641697 5738 return face;
660ed669
JB
5739}
5740
729425b1 5741
ae4b4ba5
GM
5742/* Map a specified color of face FACE on frame F to a tty color index.
5743 IDX is either LFACE_FOREGROUND_INDEX or LFACE_BACKGROUND_INDEX, and
5744 specifies which color to map. Set *DEFAULTED to 1 if mapping to the
5745 default foreground/background colors. */
5746
5747static void
971de7fb 5748map_tty_color (struct frame *f, struct face *face, enum lface_attribute_index idx, int *defaulted)
ae4b4ba5
GM
5749{
5750 Lisp_Object frame, color, def;
5751 int foreground_p = idx == LFACE_FOREGROUND_INDEX;
a5a62657
PE
5752 unsigned long default_pixel =
5753 foreground_p ? FACE_TTY_DEFAULT_FG_COLOR : FACE_TTY_DEFAULT_BG_COLOR;
5754 unsigned long pixel = default_pixel;
5755#ifdef MSDOS
5756 unsigned long default_other_pixel =
5757 foreground_p ? FACE_TTY_DEFAULT_BG_COLOR : FACE_TTY_DEFAULT_FG_COLOR;
5758#endif
ae4b4ba5
GM
5759
5760 xassert (idx == LFACE_FOREGROUND_INDEX || idx == LFACE_BACKGROUND_INDEX);
5761
ae4b4ba5
GM
5762 XSETFRAME (frame, f);
5763 color = face->lface[idx];
177c0ea7 5764
ae4b4ba5 5765 if (STRINGP (color)
d5db4077 5766 && SCHARS (color)
ae4b4ba5
GM
5767 && CONSP (Vtty_defined_color_alist)
5768 && (def = assq_no_quit (color, call1 (Qtty_color_alist, frame)),
5769 CONSP (def)))
5770 {
5771 /* Associations in tty-defined-color-alist are of the form
5772 (NAME INDEX R G B). We need the INDEX part. */
5773 pixel = XINT (XCAR (XCDR (def)));
5774 }
5775
5776 if (pixel == default_pixel && STRINGP (color))
5777 {
5778 pixel = load_color (f, face, color, idx);
5779
8d05ec51 5780#ifdef MSDOS
ae4b4ba5
GM
5781 /* If the foreground of the default face is the default color,
5782 use the foreground color defined by the frame. */
ae4b4ba5
GM
5783 if (FRAME_MSDOS_P (f))
5784 {
ae4b4ba5
GM
5785 if (pixel == default_pixel
5786 || pixel == FACE_TTY_DEFAULT_COLOR)
5787 {
5788 if (foreground_p)
5789 pixel = FRAME_FOREGROUND_PIXEL (f);
5790 else
5791 pixel = FRAME_BACKGROUND_PIXEL (f);
5792 face->lface[idx] = tty_color_name (f, pixel);
5793 *defaulted = 1;
5794 }
5795 else if (pixel == default_other_pixel)
5796 {
5797 if (foreground_p)
5798 pixel = FRAME_BACKGROUND_PIXEL (f);
5799 else
5800 pixel = FRAME_FOREGROUND_PIXEL (f);
5801 face->lface[idx] = tty_color_name (f, pixel);
5802 *defaulted = 1;
5803 }
8d05ec51
JR
5804 }
5805#endif /* MSDOS */
ae4b4ba5
GM
5806 }
5807
5808 if (foreground_p)
5809 face->foreground = pixel;
5810 else
5811 face->background = pixel;
5812}
5813
5814
82641697 5815/* Realize the fully-specified face with attributes ATTRS in face
af53b43c
KH
5816 cache CACHE for ASCII characters. Do it for TTY frame CACHE->f.
5817 Value is a pointer to the newly created realized face. */
a8517066 5818
82641697 5819static struct face *
971de7fb 5820realize_tty_face (struct face_cache *cache, Lisp_Object *attrs)
82641697
GM
5821{
5822 struct face *face;
5823 int weight, slant;
2d764c78 5824 int face_colors_defaulted = 0;
ae4b4ba5 5825 struct frame *f = cache->f;
729425b1 5826
82641697 5827 /* Frame must be a termcap frame. */
e689ec06 5828 xassert (FRAME_TERMCAP_P (cache->f) || FRAME_MSDOS_P (cache->f));
178c5d9c 5829
82641697 5830 /* Allocate a new realized face. */
39506348 5831 face = make_realized_face (attrs);
2dee4c0b 5832#if 0
e689ec06 5833 face->font_name = FRAME_MSDOS_P (cache->f) ? "ms-dos" : "tty";
2dee4c0b 5834#endif
82641697 5835
178c5d9c 5836 /* Map face attributes to TTY appearances. We map slant to
82641697
GM
5837 dimmed text because we want italic text to appear differently
5838 and because dimmed text is probably used infrequently. */
2dee4c0b
KH
5839 weight = FONT_WEIGHT_NAME_NUMERIC (attrs[LFACE_WEIGHT_INDEX]);
5840 slant = FONT_SLANT_NAME_NUMERIC (attrs[LFACE_SLANT_INDEX]);
5841 if (weight > 100)
82641697 5842 face->tty_bold_p = 1;
2dee4c0b 5843 if (weight < 100 || slant != 100)
82641697
GM
5844 face->tty_dim_p = 1;
5845 if (!NILP (attrs[LFACE_UNDERLINE_INDEX]))
5846 face->tty_underline_p = 1;
5847 if (!NILP (attrs[LFACE_INVERSE_INDEX]))
5848 face->tty_reverse_p = 1;
5849
5850 /* Map color names to color indices. */
ae4b4ba5
GM
5851 map_tty_color (f, face, LFACE_FOREGROUND_INDEX, &face_colors_defaulted);
5852 map_tty_color (f, face, LFACE_BACKGROUND_INDEX, &face_colors_defaulted);
177c0ea7 5853
2d764c78
EZ
5854 /* Swap colors if face is inverse-video. If the colors are taken
5855 from the frame colors, they are already inverted, since the
5856 frame-creation function calls x-handle-reverse-video. */
5857 if (face->tty_reverse_p && !face_colors_defaulted)
44747bd0
EZ
5858 {
5859 unsigned long tem = face->foreground;
44747bd0
EZ
5860 face->foreground = face->background;
5861 face->background = tem;
5862 }
44747bd0 5863
a4a76b61
GM
5864 if (tty_suppress_bold_inverse_default_colors_p
5865 && face->tty_bold_p
5866 && face->background == FACE_TTY_DEFAULT_FG_COLOR
5867 && face->foreground == FACE_TTY_DEFAULT_BG_COLOR)
5868 face->tty_bold_p = 0;
5869
82641697 5870 return face;
729425b1 5871}
867dd159 5872
82641697 5873
a4a76b61
GM
5874DEFUN ("tty-suppress-bold-inverse-default-colors",
5875 Ftty_suppress_bold_inverse_default_colors,
5876 Stty_suppress_bold_inverse_default_colors, 1, 1, 0,
e3cd9e7f 5877 doc: /* Suppress/allow boldness of faces with inverse default colors.
228299fa
GM
5878SUPPRESS non-nil means suppress it.
5879This affects bold faces on TTYs whose foreground is the default background
5880color of the display and whose background is the default foreground color.
5881For such faces, the bold face attribute is ignored if this variable
7ee72033 5882is non-nil. */)
5842a27b 5883 (Lisp_Object suppress)
a4a76b61
GM
5884{
5885 tty_suppress_bold_inverse_default_colors_p = !NILP (suppress);
5886 ++face_change_count;
5887 return suppress;
5888}
5889
5890
82641697
GM
5891\f
5892/***********************************************************************
5893 Computing Faces
5894 ***********************************************************************/
5895
5896/* Return the ID of the face to use to display character CH with face
5897 property PROP on frame F in current_buffer. */
2e16580f
RS
5898
5899int
971de7fb 5900compute_char_face (struct frame *f, int ch, Lisp_Object prop)
2e16580f 5901{
82641697 5902 int face_id;
39506348 5903
4b4deea2 5904 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
522d42f7 5905 ch = 0;
178c5d9c 5906
82641697 5907 if (NILP (prop))
39506348
KH
5908 {
5909 struct face *face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
779c6fb6 5910 face_id = FACE_FOR_CHAR (f, face, ch, -1, Qnil);
39506348 5911 }
82641697 5912 else
2e16580f 5913 {
82641697
GM
5914 Lisp_Object attrs[LFACE_VECTOR_SIZE];
5915 struct face *default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
72af86bd 5916 memcpy (attrs, default_face->lface, sizeof attrs);
a0a23346 5917 merge_face_ref (f, prop, attrs, 1, 0);
af53b43c 5918 face_id = lookup_face (f, attrs);
2e16580f
RS
5919 }
5920
82641697 5921 return face_id;
2e16580f 5922}
bc0db68d 5923
82641697
GM
5924/* Return the face ID associated with buffer position POS for
5925 displaying ASCII characters. Return in *ENDPTR the position at
5926 which a different face is needed, as far as text properties and
5927 overlays are concerned. W is a window displaying current_buffer.
5928
5929 REGION_BEG, REGION_END delimit the region, so it can be
5930 highlighted.
6f134486 5931
82641697
GM
5932 LIMIT is a position not to scan beyond. That is to limit the time
5933 this function can take.
5934
5935 If MOUSE is non-zero, use the character's mouse-face, not its face.
5936
6970f632
CY
5937 BASE_FACE_ID, if non-negative, specifies a base face id to use
5938 instead of DEFAULT_FACE_ID.
5939
39506348 5940 The face returned is suitable for displaying ASCII characters. */
bc0db68d 5941
cb637678 5942int
d5a3eaaf
AS
5943face_at_buffer_position (struct window *w, EMACS_INT pos,
5944 EMACS_INT region_beg, EMACS_INT region_end,
5945 EMACS_INT *endptr, EMACS_INT limit,
5946 int mouse, int base_face_id)
7b7739b1 5947{
82641697
GM
5948 struct frame *f = XFRAME (w->frame);
5949 Lisp_Object attrs[LFACE_VECTOR_SIZE];
b6d40e46 5950 Lisp_Object prop, position;
82641697 5951 int i, noverlays;
7b7739b1 5952 Lisp_Object *overlay_vec;
f211082d 5953 Lisp_Object frame;
0f8b27ea 5954 EMACS_INT endpos;
82641697
GM
5955 Lisp_Object propname = mouse ? Qmouse_face : Qface;
5956 Lisp_Object limit1, end;
5957 struct face *default_face;
f6b98e0b
JB
5958
5959 /* W must display the current buffer. We could write this function
5960 to use the frame and buffer of W, but right now it doesn't. */
060fb5c1 5961 /* xassert (XBUFFER (w->buffer) == current_buffer); */
f211082d 5962
ac22a6c4 5963 XSETFRAME (frame, f);
82641697 5964 XSETFASTINT (position, pos);
7b7739b1 5965
f6b98e0b 5966 endpos = ZV;
bc0db68d
RS
5967 if (pos < region_beg && region_beg < endpos)
5968 endpos = region_beg;
f6b98e0b 5969
82641697
GM
5970 /* Get the `face' or `mouse_face' text property at POS, and
5971 determine the next position at which the property changes. */
6f134486 5972 prop = Fget_text_property (position, propname, w->buffer);
82641697
GM
5973 XSETFASTINT (limit1, (limit < endpos ? limit : endpos));
5974 end = Fnext_single_property_change (position, propname, w->buffer, limit1);
5975 if (INTEGERP (end))
5976 endpos = XINT (end);
6f134486 5977
82641697 5978 /* Look at properties from overlays. */
b6d40e46 5979 {
a2bc5bdd 5980 EMACS_INT next_overlay;
b6d40e46 5981
0bc90bba 5982 GET_OVERLAYS_AT (pos, overlay_vec, noverlays, &next_overlay, 0);
f6b98e0b
JB
5983 if (next_overlay < endpos)
5984 endpos = next_overlay;
b6d40e46
JB
5985 }
5986
5987 *endptr = endpos;
7b7739b1 5988
6970f632
CY
5989 default_face = FACE_FROM_ID (f, base_face_id >= 0 ? base_face_id
5990 : NILP (Vface_remapping_alist) ? DEFAULT_FACE_ID
5991 : lookup_basic_face (f, DEFAULT_FACE_ID));
178c5d9c 5992
82641697
GM
5993 /* Optimize common cases where we can use the default face. */
5994 if (noverlays == 0
5995 && NILP (prop)
39506348 5996 && !(pos >= region_beg && pos < region_end))
f2cec7a9 5997 return default_face->id;
82641697
GM
5998
5999 /* Begin with attributes from the default face. */
72af86bd 6000 memcpy (attrs, default_face->lface, sizeof attrs);
82641697
GM
6001
6002 /* Merge in attributes specified via text properties. */
6003 if (!NILP (prop))
a0a23346 6004 merge_face_ref (f, prop, attrs, 1, 0);
82641697
GM
6005
6006 /* Now merge the overlay data. */
18195655 6007 noverlays = sort_overlays (overlay_vec, noverlays, w);
18195655 6008 for (i = 0; i < noverlays; i++)
4699e6d2 6009 {
18195655
RS
6010 Lisp_Object oend;
6011 int oendpos;
6012
6013 prop = Foverlay_get (overlay_vec[i], propname);
82641697 6014 if (!NILP (prop))
a0a23346 6015 merge_face_ref (f, prop, attrs, 1, 0);
18195655
RS
6016
6017 oend = OVERLAY_END (overlay_vec[i]);
6018 oendpos = OVERLAY_POSITION (oend);
6019 if (oendpos < endpos)
6020 endpos = oendpos;
6021 }
6022
82641697 6023 /* If in the region, merge in the region face. */
18195655
RS
6024 if (pos >= region_beg && pos < region_end)
6025 {
a0a23346 6026 merge_named_face (f, Qregion, attrs, 0);
178c5d9c 6027
18195655
RS
6028 if (region_end < endpos)
6029 endpos = region_end;
18195655
RS
6030 }
6031
6032 *endptr = endpos;
6033
82641697 6034 /* Look up a realized face with the given face attributes,
39506348 6035 or realize a new one for ASCII characters. */
af53b43c 6036 return lookup_face (f, attrs);
18195655
RS
6037}
6038
a193ecf1
RS
6039/* Return the face ID at buffer position POS for displaying ASCII
6040 characters associated with overlay strings for overlay OVERLAY.
6041
6042 Like face_at_buffer_position except for OVERLAY. Currently it
6043 simply disregards the `face' properties of all overlays. */
03e1d617
RS
6044
6045int
d5a3eaaf
AS
6046face_for_overlay_string (struct window *w, EMACS_INT pos,
6047 EMACS_INT region_beg, EMACS_INT region_end,
6048 EMACS_INT *endptr, EMACS_INT limit,
6049 int mouse, Lisp_Object overlay)
03e1d617
RS
6050{
6051 struct frame *f = XFRAME (w->frame);
6052 Lisp_Object attrs[LFACE_VECTOR_SIZE];
6053 Lisp_Object prop, position;
03e1d617
RS
6054 Lisp_Object frame;
6055 int endpos;
6056 Lisp_Object propname = mouse ? Qmouse_face : Qface;
6057 Lisp_Object limit1, end;
6058 struct face *default_face;
6059
6060 /* W must display the current buffer. We could write this function
6061 to use the frame and buffer of W, but right now it doesn't. */
6062 /* xassert (XBUFFER (w->buffer) == current_buffer); */
6063
6064 XSETFRAME (frame, f);
6065 XSETFASTINT (position, pos);
6066
6067 endpos = ZV;
6068 if (pos < region_beg && region_beg < endpos)
6069 endpos = region_beg;
6070
6071 /* Get the `face' or `mouse_face' text property at POS, and
6072 determine the next position at which the property changes. */
6073 prop = Fget_text_property (position, propname, w->buffer);
6074 XSETFASTINT (limit1, (limit < endpos ? limit : endpos));
6075 end = Fnext_single_property_change (position, propname, w->buffer, limit1);
6076 if (INTEGERP (end))
6077 endpos = XINT (end);
6078
6079 *endptr = endpos;
6080
6081 default_face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
6082
6083 /* Optimize common cases where we can use the default face. */
6084 if (NILP (prop)
6085 && !(pos >= region_beg && pos < region_end))
6086 return DEFAULT_FACE_ID;
6087
6088 /* Begin with attributes from the default face. */
72af86bd 6089 memcpy (attrs, default_face->lface, sizeof attrs);
03e1d617
RS
6090
6091 /* Merge in attributes specified via text properties. */
6092 if (!NILP (prop))
6093 merge_face_ref (f, prop, attrs, 1, 0);
6094
6095 /* If in the region, merge in the region face. */
6096 if (pos >= region_beg && pos < region_end)
6097 {
6098 merge_named_face (f, Qregion, attrs, 0);
6099
6100 if (region_end < endpos)
6101 endpos = region_end;
6102 }
6103
6104 *endptr = endpos;
6105
6106 /* Look up a realized face with the given face attributes,
6107 or realize a new one for ASCII characters. */
ce9c2e7b 6108 return lookup_face (f, attrs);
03e1d617
RS
6109}
6110
60573a90 6111
82641697 6112/* Compute the face at character position POS in Lisp string STRING on
39506348 6113 window W, for ASCII characters.
7b7739b1 6114
82641697
GM
6115 If STRING is an overlay string, it comes from position BUFPOS in
6116 current_buffer, otherwise BUFPOS is zero to indicate that STRING is
6117 not an overlay string. W must display the current buffer.
6118 REGION_BEG and REGION_END give the start and end positions of the
8714a182
GM
6119 region; both are -1 if no region is visible.
6120
6121 BASE_FACE_ID is the id of a face to merge with. For strings coming
6122 from overlays or the `display' property it is the face at BUFPOS.
178c5d9c 6123
48a4ca99
GM
6124 If MOUSE_P is non-zero, use the character's mouse-face, not its face.
6125
82641697
GM
6126 Set *ENDPTR to the next position where to check for faces in
6127 STRING; -1 if the face is constant from POS to the end of the
6128 string.
18195655 6129
82641697 6130 Value is the id of the face to use. The face returned is suitable
39506348 6131 for displaying ASCII characters. */
fffc2367 6132
82641697 6133int
d5a3eaaf
AS
6134face_at_string_position (struct window *w, Lisp_Object string,
6135 EMACS_INT pos, EMACS_INT bufpos,
6136 EMACS_INT region_beg, EMACS_INT region_end,
6137 EMACS_INT *endptr, enum face_id base_face_id,
6138 int mouse_p)
660ed669 6139{
82641697
GM
6140 Lisp_Object prop, position, end, limit;
6141 struct frame *f = XFRAME (WINDOW_FRAME (w));
6142 Lisp_Object attrs[LFACE_VECTOR_SIZE];
6143 struct face *base_face;
6144 int multibyte_p = STRING_MULTIBYTE (string);
48a4ca99 6145 Lisp_Object prop_name = mouse_p ? Qmouse_face : Qface;
82641697
GM
6146
6147 /* Get the value of the face property at the current position within
6148 STRING. Value is nil if there is no face property. */
6149 XSETFASTINT (position, pos);
48a4ca99 6150 prop = Fget_text_property (position, prop_name, string);
82641697
GM
6151
6152 /* Get the next position at which to check for faces. Value of end
6153 is nil if face is constant all the way to the end of the string.
6154 Otherwise it is a string position where to check faces next.
6155 Limit is the maximum position up to which to check for property
6156 changes in Fnext_single_property_change. Strings are usually
6157 short, so set the limit to the end of the string. */
d5db4077 6158 XSETFASTINT (limit, SCHARS (string));
48a4ca99 6159 end = Fnext_single_property_change (position, prop_name, string, limit);
82641697
GM
6160 if (INTEGERP (end))
6161 *endptr = XFASTINT (end);
6162 else
6163 *endptr = -1;
6164
6165 base_face = FACE_FROM_ID (f, base_face_id);
6166 xassert (base_face);
6167
6168 /* Optimize the default case that there is no face property and we
6169 are not in the region. */
6170 if (NILP (prop)
6171 && (base_face_id != DEFAULT_FACE_ID
6172 /* BUFPOS <= 0 means STRING is not an overlay string, so
6173 that the region doesn't have to be taken into account. */
6174 || bufpos <= 0
6175 || bufpos < region_beg
6176 || bufpos >= region_end)
6177 && (multibyte_p
6178 /* We can't realize faces for different charsets differently
6179 if we don't have fonts, so we can stop here if not working
6180 on a window-system frame. */
6181 || !FRAME_WINDOW_P (f)
239f9db9 6182 || FACE_SUITABLE_FOR_ASCII_CHAR_P (base_face, 0)))
82641697
GM
6183 return base_face->id;
6184
6185 /* Begin with attributes from the base face. */
72af86bd 6186 memcpy (attrs, base_face->lface, sizeof attrs);
82641697
GM
6187
6188 /* Merge in attributes specified via text properties. */
6189 if (!NILP (prop))
a0a23346 6190 merge_face_ref (f, prop, attrs, 1, 0);
82641697
GM
6191
6192 /* If in the region, merge in the region face. */
6193 if (bufpos
6194 && bufpos >= region_beg
6195 && bufpos < region_end)
a0a23346 6196 merge_named_face (f, Qregion, attrs, 0);
660ed669 6197
82641697 6198 /* Look up a realized face with the given face attributes,
39506348 6199 or realize a new one for ASCII characters. */
af53b43c 6200 return lookup_face (f, attrs);
660ed669
JB
6201}
6202
6203
fd998c7f
KS
6204/* Merge a face into a realized face.
6205
6206 F is frame where faces are (to be) realized.
6207
dc91a0ed
KS
6208 FACE_NAME is named face to merge.
6209
6210 If FACE_NAME is nil, FACE_ID is face_id of realized face to merge.
6211
6212 If FACE_NAME is t, FACE_ID is lface_id of face to merge.
fd998c7f
KS
6213
6214 BASE_FACE_ID is realized face to merge into.
6215
dc91a0ed 6216 Return new face id.
fd998c7f
KS
6217*/
6218
6219int
971de7fb 6220merge_faces (struct frame *f, Lisp_Object face_name, int face_id, int base_face_id)
fd998c7f
KS
6221{
6222 Lisp_Object attrs[LFACE_VECTOR_SIZE];
6223 struct face *base_face;
6224
6225 base_face = FACE_FROM_ID (f, base_face_id);
6226 if (!base_face)
6227 return base_face_id;
6228
dc91a0ed
KS
6229 if (EQ (face_name, Qt))
6230 {
6231 if (face_id < 0 || face_id >= lface_id_to_name_size)
6232 return base_face_id;
6233 face_name = lface_id_to_name[face_id];
d8453278
CY
6234 /* When called during make-frame, lookup_derived_face may fail
6235 if the faces are uninitialized. Don't signal an error. */
6236 face_id = lookup_derived_face (f, face_name, base_face_id, 0);
6237 return (face_id >= 0 ? face_id : base_face_id);
dc91a0ed
KS
6238 }
6239
fd998c7f 6240 /* Begin with attributes from the base face. */
72af86bd 6241 memcpy (attrs, base_face->lface, sizeof attrs);
fd998c7f
KS
6242
6243 if (!NILP (face_name))
6244 {
6245 if (!merge_named_face (f, face_name, attrs, 0))
6246 return base_face_id;
6247 }
6248 else
6249 {
6250 struct face *face;
dc91a0ed
KS
6251 if (face_id < 0)
6252 return base_face_id;
fd998c7f
KS
6253 face = FACE_FROM_ID (f, face_id);
6254 if (!face)
6255 return base_face_id;
6256 merge_face_vectors (f, face->lface, attrs, 0);
6257 }
6258
6259 /* Look up a realized face with the given face attributes,
6260 or realize a new one for ASCII characters. */
0e3ae538 6261 return lookup_face (f, attrs);
fd998c7f
KS
6262}
6263
c115973b 6264\f
7ded3383
AR
6265
6266#ifndef HAVE_X_WINDOWS
6267DEFUN ("x-load-color-file", Fx_load_color_file,
6268 Sx_load_color_file, 1, 1, 0,
6269 doc: /* Create an alist of color entries from an external file.
6270
6271The file should define one named RGB color per line like so:
6272 R G B name
6273where R,G,B are numbers between 0 and 255 and name is an arbitrary string. */)
5842a27b 6274 (Lisp_Object filename)
7ded3383
AR
6275{
6276 FILE *fp;
6277 Lisp_Object cmap = Qnil;
6278 Lisp_Object abspath;
6279
6280 CHECK_STRING (filename);
6281 abspath = Fexpand_file_name (filename, Qnil);
6282
45763476 6283 fp = fopen (SDATA (abspath), "rt");
7ded3383
AR
6284 if (fp)
6285 {
6286 char buf[512];
6287 int red, green, blue;
6288 int num;
6289
6290 BLOCK_INPUT;
6291
6292 while (fgets (buf, sizeof (buf), fp) != NULL) {
6293 if (sscanf (buf, "%u %u %u %n", &red, &green, &blue, &num) == 3)
6294 {
6295 char *name = buf + num;
6296 num = strlen (name) - 1;
40aa3f13 6297 if (num >= 0 && name[num] == '\n')
7ded3383
AR
6298 name[num] = 0;
6299 cmap = Fcons (Fcons (build_string (name),
dee8cd43
JB
6300#ifdef WINDOWSNT
6301 make_number (RGB (red, green, blue))),
ebadbfa6 6302#else
dee8cd43 6303 make_number ((red << 16) | (green << 8) | blue)),
ebadbfa6 6304#endif
7ded3383
AR
6305 cmap);
6306 }
6307 }
6308 fclose (fp);
6309
6310 UNBLOCK_INPUT;
6311 }
6312
6313 return cmap;
6314}
6315#endif
6316
6317\f
82641697
GM
6318/***********************************************************************
6319 Tests
6320 ***********************************************************************/
c115973b 6321
82641697 6322#if GLYPH_DEBUG
c115973b 6323
82641697 6324/* Print the contents of the realized face FACE to stderr. */
c115973b 6325
82641697
GM
6326static void
6327dump_realized_face (face)
6328 struct face *face;
6329{
6330 fprintf (stderr, "ID: %d\n", face->id);
6331#ifdef HAVE_X_WINDOWS
2defe37f 6332 fprintf (stderr, "gc: %ld\n", (long) face->gc);
82641697
GM
6333#endif
6334 fprintf (stderr, "foreground: 0x%lx (%s)\n",
6335 face->foreground,
d5db4077 6336 SDATA (face->lface[LFACE_FOREGROUND_INDEX]));
82641697
GM
6337 fprintf (stderr, "background: 0x%lx (%s)\n",
6338 face->background,
d5db4077 6339 SDATA (face->lface[LFACE_BACKGROUND_INDEX]));
2dee4c0b
KH
6340 if (face->font)
6341 fprintf (stderr, "font_name: %s (%s)\n",
6342 SDATA (face->font->props[FONT_NAME_INDEX]),
6343 SDATA (face->lface[LFACE_FAMILY_INDEX]));
82641697
GM
6344#ifdef HAVE_X_WINDOWS
6345 fprintf (stderr, "font = %p\n", face->font);
6346#endif
82641697
GM
6347 fprintf (stderr, "fontset: %d\n", face->fontset);
6348 fprintf (stderr, "underline: %d (%s)\n",
6349 face->underline_p,
d5db4077 6350 SDATA (Fsymbol_name (face->lface[LFACE_UNDERLINE_INDEX])));
82641697 6351 fprintf (stderr, "hash: %d\n", face->hash);
c115973b
JB
6352}
6353
6354
a7ca3326 6355DEFUN ("dump-face", Fdump_face, Sdump_face, 0, 1, 0, doc: /* */)
5842a27b 6356 (Lisp_Object n)
c115973b 6357{
82641697 6358 if (NILP (n))
c115973b 6359 {
82641697 6360 int i;
178c5d9c 6361
82641697
GM
6362 fprintf (stderr, "font selection order: ");
6363 for (i = 0; i < DIM (font_sort_order); ++i)
6364 fprintf (stderr, "%d ", font_sort_order[i]);
6365 fprintf (stderr, "\n");
6366
6367 fprintf (stderr, "alternative fonts: ");
6368 debug_print (Vface_alternative_font_family_alist);
6369 fprintf (stderr, "\n");
178c5d9c 6370
c0617987 6371 for (i = 0; i < FRAME_FACE_CACHE (SELECTED_FRAME ())->used; ++i)
82641697 6372 Fdump_face (make_number (i));
c115973b
JB
6373 }
6374 else
f5e278c7 6375 {
82641697 6376 struct face *face;
b7826503 6377 CHECK_NUMBER (n);
c0617987 6378 face = FACE_FROM_ID (SELECTED_FRAME (), XINT (n));
82641697
GM
6379 if (face == NULL)
6380 error ("Not a valid face");
6381 dump_realized_face (face);
f5e278c7 6382 }
178c5d9c 6383
c115973b
JB
6384 return Qnil;
6385}
b5c53576 6386
b5c53576 6387
a7ca3326 6388DEFUN ("show-face-resources", Fshow_face_resources, Sshow_face_resources,
7ee72033 6389 0, 0, 0, doc: /* */)
5842a27b 6390 (void)
b5c53576 6391{
82641697
GM
6392 fprintf (stderr, "number of colors = %d\n", ncolors_allocated);
6393 fprintf (stderr, "number of pixmaps = %d\n", npixmaps_allocated);
6394 fprintf (stderr, "number of GCs = %d\n", ngcs);
6395 return Qnil;
b5c53576
RS
6396}
6397
82641697
GM
6398#endif /* GLYPH_DEBUG != 0 */
6399
b5c53576 6400
c115973b 6401\f
82641697
GM
6402/***********************************************************************
6403 Initialization
6404 ***********************************************************************/
cb637678 6405
c115973b 6406void
971de7fb 6407syms_of_xfaces (void)
c115973b 6408{
d67b4f80 6409 Qface = intern_c_string ("face");
f211082d 6410 staticpro (&Qface);
d67b4f80 6411 Qface_no_inherit = intern_c_string ("face-no-inherit");
46b00436 6412 staticpro (&Qface_no_inherit);
d67b4f80 6413 Qbitmap_spec_p = intern_c_string ("bitmap-spec-p");
fef04523 6414 staticpro (&Qbitmap_spec_p);
d67b4f80 6415 Qframe_set_background_mode = intern_c_string ("frame-set-background-mode");
c20577bc 6416 staticpro (&Qframe_set_background_mode);
178c5d9c 6417
82641697 6418 /* Lisp face attribute keywords. */
d67b4f80 6419 QCfamily = intern_c_string (":family");
82641697 6420 staticpro (&QCfamily);
d67b4f80 6421 QCheight = intern_c_string (":height");
82641697 6422 staticpro (&QCheight);
d67b4f80 6423 QCweight = intern_c_string (":weight");
82641697 6424 staticpro (&QCweight);
d67b4f80 6425 QCslant = intern_c_string (":slant");
82641697 6426 staticpro (&QCslant);
d67b4f80 6427 QCunderline = intern_c_string (":underline");
82641697 6428 staticpro (&QCunderline);
d67b4f80 6429 QCinverse_video = intern_c_string (":inverse-video");
178c5d9c 6430 staticpro (&QCinverse_video);
d67b4f80 6431 QCreverse_video = intern_c_string (":reverse-video");
82641697 6432 staticpro (&QCreverse_video);
d67b4f80 6433 QCforeground = intern_c_string (":foreground");
82641697 6434 staticpro (&QCforeground);
d67b4f80 6435 QCbackground = intern_c_string (":background");
82641697 6436 staticpro (&QCbackground);
d67b4f80 6437 QCstipple = intern_c_string (":stipple");
82641697 6438 staticpro (&QCstipple);
d67b4f80 6439 QCwidth = intern_c_string (":width");
82641697 6440 staticpro (&QCwidth);
d67b4f80 6441 QCfont = intern_c_string (":font");
82641697 6442 staticpro (&QCfont);
d67b4f80 6443 QCfontset = intern_c_string (":fontset");
763bc839 6444 staticpro (&QCfontset);
d67b4f80 6445 QCbold = intern_c_string (":bold");
82641697 6446 staticpro (&QCbold);
d67b4f80 6447 QCitalic = intern_c_string (":italic");
82641697 6448 staticpro (&QCitalic);
d67b4f80 6449 QCoverline = intern_c_string (":overline");
82641697 6450 staticpro (&QCoverline);
d67b4f80 6451 QCstrike_through = intern_c_string (":strike-through");
82641697 6452 staticpro (&QCstrike_through);
d67b4f80 6453 QCbox = intern_c_string (":box");
82641697 6454 staticpro (&QCbox);
d67b4f80 6455 QCinherit = intern_c_string (":inherit");
2c20458f 6456 staticpro (&QCinherit);
82641697
GM
6457
6458 /* Symbols used for Lisp face attribute values. */
d67b4f80 6459 QCcolor = intern_c_string (":color");
82641697 6460 staticpro (&QCcolor);
d67b4f80 6461 QCline_width = intern_c_string (":line-width");
82641697 6462 staticpro (&QCline_width);
d67b4f80 6463 QCstyle = intern_c_string (":style");
82641697 6464 staticpro (&QCstyle);
d67b4f80 6465 Qreleased_button = intern_c_string ("released-button");
82641697 6466 staticpro (&Qreleased_button);
d67b4f80 6467 Qpressed_button = intern_c_string ("pressed-button");
82641697 6468 staticpro (&Qpressed_button);
d67b4f80 6469 Qnormal = intern_c_string ("normal");
82641697 6470 staticpro (&Qnormal);
d67b4f80 6471 Qultra_light = intern_c_string ("ultra-light");
82641697 6472 staticpro (&Qultra_light);
d67b4f80 6473 Qextra_light = intern_c_string ("extra-light");
82641697 6474 staticpro (&Qextra_light);
d67b4f80 6475 Qlight = intern_c_string ("light");
82641697 6476 staticpro (&Qlight);
d67b4f80 6477 Qsemi_light = intern_c_string ("semi-light");
82641697 6478 staticpro (&Qsemi_light);
d67b4f80 6479 Qsemi_bold = intern_c_string ("semi-bold");
82641697 6480 staticpro (&Qsemi_bold);
d67b4f80 6481 Qbold = intern_c_string ("bold");
82641697 6482 staticpro (&Qbold);
d67b4f80 6483 Qextra_bold = intern_c_string ("extra-bold");
82641697 6484 staticpro (&Qextra_bold);
d67b4f80 6485 Qultra_bold = intern_c_string ("ultra-bold");
82641697 6486 staticpro (&Qultra_bold);
d67b4f80 6487 Qoblique = intern_c_string ("oblique");
82641697 6488 staticpro (&Qoblique);
d67b4f80 6489 Qitalic = intern_c_string ("italic");
82641697 6490 staticpro (&Qitalic);
d67b4f80 6491 Qreverse_oblique = intern_c_string ("reverse-oblique");
82641697 6492 staticpro (&Qreverse_oblique);
d67b4f80 6493 Qreverse_italic = intern_c_string ("reverse-italic");
82641697 6494 staticpro (&Qreverse_italic);
d67b4f80 6495 Qultra_condensed = intern_c_string ("ultra-condensed");
82641697 6496 staticpro (&Qultra_condensed);
d67b4f80 6497 Qextra_condensed = intern_c_string ("extra-condensed");
82641697 6498 staticpro (&Qextra_condensed);
d67b4f80 6499 Qcondensed = intern_c_string ("condensed");
82641697 6500 staticpro (&Qcondensed);
d67b4f80 6501 Qsemi_condensed = intern_c_string ("semi-condensed");
82641697 6502 staticpro (&Qsemi_condensed);
d67b4f80 6503 Qsemi_expanded = intern_c_string ("semi-expanded");
82641697 6504 staticpro (&Qsemi_expanded);
d67b4f80 6505 Qexpanded = intern_c_string ("expanded");
82641697 6506 staticpro (&Qexpanded);
d67b4f80 6507 Qextra_expanded = intern_c_string ("extra-expanded");
82641697 6508 staticpro (&Qextra_expanded);
d67b4f80 6509 Qultra_expanded = intern_c_string ("ultra-expanded");
82641697 6510 staticpro (&Qultra_expanded);
d67b4f80 6511 Qbackground_color = intern_c_string ("background-color");
82641697 6512 staticpro (&Qbackground_color);
d67b4f80 6513 Qforeground_color = intern_c_string ("foreground-color");
82641697 6514 staticpro (&Qforeground_color);
d67b4f80 6515 Qunspecified = intern_c_string ("unspecified");
82641697 6516 staticpro (&Qunspecified);
d67b4f80 6517 Qignore_defface = intern_c_string (":ignore-defface");
2ff10663 6518 staticpro (&Qignore_defface);
82641697 6519
d67b4f80 6520 Qface_alias = intern_c_string ("face-alias");
92610620 6521 staticpro (&Qface_alias);
d67b4f80 6522 Qdefault = intern_c_string ("default");
82641697 6523 staticpro (&Qdefault);
d67b4f80 6524 Qtool_bar = intern_c_string ("tool-bar");
9ea173e8 6525 staticpro (&Qtool_bar);
d67b4f80 6526 Qregion = intern_c_string ("region");
82641697 6527 staticpro (&Qregion);
d67b4f80 6528 Qfringe = intern_c_string ("fringe");
8bd201d6 6529 staticpro (&Qfringe);
d67b4f80 6530 Qheader_line = intern_c_string ("header-line");
045dee35 6531 staticpro (&Qheader_line);
d67b4f80 6532 Qscroll_bar = intern_c_string ("scroll-bar");
8bd201d6 6533 staticpro (&Qscroll_bar);
d67b4f80 6534 Qmenu = intern_c_string ("menu");
c7ae3284 6535 staticpro (&Qmenu);
d67b4f80 6536 Qcursor = intern_c_string ("cursor");
8bd201d6 6537 staticpro (&Qcursor);
d67b4f80 6538 Qborder = intern_c_string ("border");
8bd201d6 6539 staticpro (&Qborder);
d67b4f80 6540 Qmouse = intern_c_string ("mouse");
8bd201d6 6541 staticpro (&Qmouse);
d67b4f80 6542 Qmode_line_inactive = intern_c_string ("mode-line-inactive");
039b6394 6543 staticpro (&Qmode_line_inactive);
d67b4f80 6544 Qvertical_border = intern_c_string ("vertical-border");
53abc3bf 6545 staticpro (&Qvertical_border);
d67b4f80 6546 Qtty_color_desc = intern_c_string ("tty-color-desc");
2d764c78 6547 staticpro (&Qtty_color_desc);
d67b4f80 6548 Qtty_color_standard_values = intern_c_string ("tty-color-standard-values");
b35df831 6549 staticpro (&Qtty_color_standard_values);
d67b4f80 6550 Qtty_color_by_index = intern_c_string ("tty-color-by-index");
2d764c78 6551 staticpro (&Qtty_color_by_index);
d67b4f80 6552 Qtty_color_alist = intern_c_string ("tty-color-alist");
ae4b4ba5 6553 staticpro (&Qtty_color_alist);
d67b4f80 6554 Qscalable_fonts_allowed = intern_c_string ("scalable-fonts-allowed");
eeffb293 6555 staticpro (&Qscalable_fonts_allowed);
82641697 6556
dbc968b8
GM
6557 Vparam_value_alist = Fcons (Fcons (Qnil, Qnil), Qnil);
6558 staticpro (&Vparam_value_alist);
434b9cc5
GM
6559 Vface_alternative_font_family_alist = Qnil;
6560 staticpro (&Vface_alternative_font_family_alist);
32fcc231
GM
6561 Vface_alternative_font_registry_alist = Qnil;
6562 staticpro (&Vface_alternative_font_registry_alist);
434b9cc5 6563
82641697
GM
6564 defsubr (&Sinternal_make_lisp_face);
6565 defsubr (&Sinternal_lisp_face_p);
6566 defsubr (&Sinternal_set_lisp_face_attribute);
c3cee013 6567#ifdef HAVE_WINDOW_SYSTEM
82641697 6568 defsubr (&Sinternal_set_lisp_face_attribute_from_resource);
42608ba8 6569#endif
ea4fa0af
GM
6570 defsubr (&Scolor_gray_p);
6571 defsubr (&Scolor_supported_p);
7ded3383
AR
6572#ifndef HAVE_X_WINDOWS
6573 defsubr (&Sx_load_color_file);
6574#endif
cdfaafa9
MB
6575 defsubr (&Sface_attribute_relative_p);
6576 defsubr (&Smerge_face_attribute);
82641697
GM
6577 defsubr (&Sinternal_get_lisp_face_attribute);
6578 defsubr (&Sinternal_lisp_face_attribute_values);
6579 defsubr (&Sinternal_lisp_face_equal_p);
6580 defsubr (&Sinternal_lisp_face_empty_p);
6581 defsubr (&Sinternal_copy_lisp_face);
6582 defsubr (&Sinternal_merge_in_global_face);
6583 defsubr (&Sface_font);
6584 defsubr (&Sframe_face_alist);
9717e36c 6585 defsubr (&Sdisplay_supports_face_attributes_p);
b35df831 6586 defsubr (&Scolor_distance);
82641697
GM
6587 defsubr (&Sinternal_set_font_selection_order);
6588 defsubr (&Sinternal_set_alternative_font_family_alist);
32fcc231 6589 defsubr (&Sinternal_set_alternative_font_registry_alist);
f6608d5c 6590 defsubr (&Sface_attributes_as_vector);
82641697
GM
6591#if GLYPH_DEBUG
6592 defsubr (&Sdump_face);
6593 defsubr (&Sshow_face_resources);
6594#endif /* GLYPH_DEBUG */
6595 defsubr (&Sclear_face_cache);
a4a76b61 6596 defsubr (&Stty_suppress_bold_inverse_default_colors);
82641697 6597
38426dee 6598#if defined DEBUG_X_COLORS && defined HAVE_X_WINDOWS
08dc08dc
GM
6599 defsubr (&Sdump_colors);
6600#endif
6601
29208e82 6602 DEFVAR_LISP ("font-list-limit", Vfont_list_limit,
7ee72033 6603 doc: /* *Limit for font matching.
228299fa
GM
6604If an integer > 0, font matching functions won't load more than
6605that number of fonts when searching for a matching font. */);
057df17c
GM
6606 Vfont_list_limit = make_number (DEFAULT_FONT_LIST_LIMIT);
6607
29208e82 6608 DEFVAR_LISP ("face-new-frame-defaults", Vface_new_frame_defaults,
7ee72033 6609 doc: /* List of global face definitions (for internal use only.) */);
82641697 6610 Vface_new_frame_defaults = Qnil;
178c5d9c 6611
29208e82 6612 DEFVAR_LISP ("face-default-stipple", Vface_default_stipple,
7ee72033 6613 doc: /* *Default stipple pattern used on monochrome displays.
228299fa
GM
6614This stipple pattern is used on monochrome displays
6615instead of shades of gray for a face background color.
6616See `set-face-stipple' for possible values for this variable. */);
a4ada374 6617 Vface_default_stipple = make_pure_c_string ("gray3");
82641697 6618
29208e82 6619 DEFVAR_LISP ("tty-defined-color-alist", Vtty_defined_color_alist,
46710489
GM
6620 doc: /* An alist of defined terminal colors and their RGB values.
6621See the docstring of `tty-color-alist' for the details. */);
ae4b4ba5
GM
6622 Vtty_defined_color_alist = Qnil;
6623
29208e82 6624 DEFVAR_LISP ("scalable-fonts-allowed", Vscalable_fonts_allowed,
7ee72033 6625 doc: /* Allowed scalable fonts.
228299fa
GM
6626A value of nil means don't allow any scalable fonts.
6627A value of t means allow any scalable font.
6628Otherwise, value must be a list of regular expressions. A font may be
6629scaled if its name matches a regular expression in the list.
6630Note that if value is nil, a scalable font might still be used, if no
6631other font of the appropriate family and registry is available. */);
3cf80731 6632 Vscalable_fonts_allowed = Qnil;
b5c53576 6633
29208e82 6634 DEFVAR_LISP ("face-ignored-fonts", Vface_ignored_fonts,
7ee72033 6635 doc: /* List of ignored fonts.
228299fa
GM
6636Each element is a regular expression that matches names of fonts to
6637ignore. */);
c824bfbc
KH
6638 Vface_ignored_fonts = Qnil;
6639
29208e82 6640 DEFVAR_LISP ("face-remapping-alist", Vface_remapping_alist,
f2cec7a9
MB
6641 doc: /* Alist of face remappings.
6642Each element is of the form:
6643
6644 (FACE REPLACEMENT...),
6645
6646which causes display of the face FACE to use REPLACEMENT... instead.
635c0aa1
CY
6647REPLACEMENT... is interpreted the same way as the value of a `face'
6648text property: it may be (1) A face name, (2) A list of face names,
6649(3) A property-list of face attribute/value pairs, or (4) A list of
6650face names or lists containing face attribute/value pairs.
f2cec7a9
MB
6651
6652Multiple entries in REPLACEMENT... are merged together to form the final
6653result, with faces or attributes earlier in the list taking precedence
6654over those that are later.
6655
6656Face-name remapping cycles are suppressed; recursive references use the
6657underlying face instead of the remapped face. So a remapping of the form:
6658
6659 (FACE EXTRA-FACE... FACE)
6660
6661or:
6662
6663 (FACE (FACE-ATTR VAL ...) FACE)
6664
6665will cause EXTRA-FACE... or (FACE-ATTR VAL ...) to be _merged_ with the
6666existing definition of FACE. Note that for the default face, this isn't
6667necessary, as every face inherits from the default face.
6668
6669Making this variable buffer-local is a good way to allow buffer-specific
6670face definitions. For instance, the mode my-mode could define a face
6671`my-mode-default', and then in the mode setup function, do:
6672
6673 (set (make-local-variable 'face-remapping-alist)
635c0aa1
CY
6674 '((default my-mode-default)))).
6675
6676Because Emacs normally only redraws screen areas when the underlying
6677buffer contents change, you may need to call `redraw-display' after
6678changing this variable for it to take effect. */);
f2cec7a9
MB
6679 Vface_remapping_alist = Qnil;
6680
29208e82 6681 DEFVAR_LISP ("face-font-rescale-alist", Vface_font_rescale_alist,
f70400f2 6682 doc: /* Alist of fonts vs the rescaling factors.
96f9306b
KH
6683Each element is a cons (FONT-PATTERN . RESCALE-RATIO), where
6684FONT-PATTERN is a font-spec or a regular expression matching a font name, and
f70400f2
KH
6685RESCALE-RATIO is a floating point number to specify how much larger
6686\(or smaller) font we should use. For instance, if a face requests
6687a font of 10 point, we actually use a font of 10 * RESCALE-RATIO point. */);
6688 Vface_font_rescale_alist = Qnil;
6689
c3cee013 6690#ifdef HAVE_WINDOW_SYSTEM
fef04523 6691 defsubr (&Sbitmap_spec_p);
82641697
GM
6692 defsubr (&Sx_list_fonts);
6693 defsubr (&Sinternal_face_x_get_resource);
92610620 6694 defsubr (&Sx_family_fonts);
32247e3d 6695#endif
c115973b 6696}