Refill some long/short copyright headers.
[bpt/emacs.git] / lisp / faces.el
CommitLineData
5f5c8ee5 1;;; faces.el --- Lisp faces
465fceed 2
95df8112 3;; Copyright (C) 1992-1996, 1998-2011 Free Software Foundation, Inc.
465fceed 4
6228c05b 5;; Maintainer: FSF
30764597 6;; Keywords: internal
bd78fa1d 7;; Package: emacs
6228c05b 8
465fceed
ER
9;; This file is part of GNU Emacs.
10
eb3fa2cf 11;; GNU Emacs is free software: you can redistribute it and/or modify
465fceed 12;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
13;; the Free Software Foundation, either version 3 of the License, or
14;; (at your option) any later version.
465fceed
ER
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
eb3fa2cf 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
465fceed
ER
23
24;;; Commentary:
25
465fceed
ER
26;;; Code:
27
39b3b754 28(eval-when-compile
f31b1257
DN
29 (require 'cl))
30
c8ccffb1 31(declare-function xw-defined-colors "term/common-win" (&optional frame))
5f5c8ee5 32
b782a458 33(defvar help-xref-stack-item)
2aef0850
JL
34
35(defvar face-name-history nil
36 "History list for some commands that read face names.
37Maximum length of the history list is determined by the value
38of `history-length', which see.")
39
5f5c8ee5
GM
40\f
41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
42;;; Font selection.
43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
44
45(defgroup font-selection nil
46 "Influencing face font selection."
47 :group 'faces)
48
49
50(defcustom face-font-selection-order
51 '(:width :height :weight :slant)
9201cc28 52 "A list specifying how face font selection chooses fonts.
5f5c8ee5
GM
53Each of the four symbols `:width', `:height', `:weight', and `:slant'
54must appear once in the list, and the list must not contain any other
7c626e9d 55elements. Font selection first tries to find a best matching font
b73f65b6 56for those face attributes that appear before in the list. For
5f5c8ee5
GM
57example, if `:slant' appears before `:height', font selection first
58tries to find a font with a suitable slant, even if this results in
59a font height that isn't optimal."
239ad97f 60 :tag "Font selection order"
94354bdd 61 :type '(list symbol symbol symbol symbol)
5f5c8ee5
GM
62 :group 'font-selection
63 :set #'(lambda (symbol value)
64 (set-default symbol value)
65 (internal-set-font-selection-order value)))
66
18f1dcb4 67
ed008205 68;; In the absence of Fontconfig support, Monospace and Sans Serif are
80073c33
CY
69;; unavailable, and we fall back on the courier and helv families,
70;; which are generally available.
5f5c8ee5 71(defcustom face-font-family-alternatives
1e8780b1 72 (mapcar (lambda (arg) (mapcar 'purecopy arg))
d5f57335 73 '(("Monospace" "courier" "fixed")
f37a389e 74 ("courier" "CMU Typewriter Text" "fixed")
ed008205 75 ("Sans Serif" "helv" "helvetica" "arial" "fixed")
1e8780b1 76 ("helv" "helvetica" "arial" "fixed")))
9201cc28 77 "Alist of alternative font family names.
86886bce 78Each element has the form (FAMILY ALTERNATIVE1 ALTERNATIVE2 ...).
5f5c8ee5
GM
79If fonts of family FAMILY can't be loaded, try ALTERNATIVE1, then
80ALTERNATIVE2 etc."
239ad97f 81 :tag "Alternative font families to try"
94354bdd 82 :type '(repeat (repeat string))
5f5c8ee5
GM
83 :group 'font-selection
84 :set #'(lambda (symbol value)
85 (set-default symbol value)
86 (internal-set-alternative-font-family-alist value)))
87
88
18f1dcb4
GM
89;; This is defined originally in xfaces.c.
90(defcustom face-font-registry-alternatives
1e8780b1 91 (mapcar (lambda (arg) (mapcar 'purecopy arg))
c97db4e4 92 (if (eq system-type 'windows-nt)
990d68dd 93 '(("iso8859-1" "ms-oemlatin")
e38c812e 94 ("gb2312.1980" "gb2312" "gbk" "gb18030")
c97db4e4
AI
95 ("jisx0208.1990" "jisx0208.1983" "jisx0208.1978")
96 ("ksc5601.1989" "ksx1001.1992" "ksc5601.1987")
97 ("muletibetan-2" "muletibetan-0"))
e38c812e 98 '(("gb2312.1980" "gb2312.80&gb8565.88" "gbk" "gb18030")
c97db4e4
AI
99 ("jisx0208.1990" "jisx0208.1983" "jisx0208.1978")
100 ("ksc5601.1989" "ksx1001.1992" "ksc5601.1987")
1e8780b1 101 ("muletibetan-2" "muletibetan-0"))))
9201cc28 102 "Alist of alternative font registry names.
86886bce 103Each element has the form (REGISTRY ALTERNATIVE1 ALTERNATIVE2 ...).
8ac2d32f
KH
104If fonts of registry REGISTRY can be loaded, font selection
105tries to find a best matching font among all fonts of registry
106REGISTRY, ALTERNATIVE1, ALTERNATIVE2, and etc."
239ad97f 107 :tag "Alternative font registries to try"
18f1dcb4 108 :type '(repeat (repeat string))
f676894c 109 :version "21.1"
18f1dcb4
GM
110 :group 'font-selection
111 :set #'(lambda (symbol value)
112 (set-default symbol value)
113 (internal-set-alternative-font-registry-alist value)))
114
bdda3754 115\f
5f5c8ee5
GM
116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
117;;; Creation, copying.
118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
119
120
121(defun face-list ()
122 "Return a list of all defined face names."
123 (mapcar #'car face-new-frame-defaults))
124
125
126;;; ### If not frame-local initialize by what X resources?
127
128(defun make-face (face &optional no-init-from-resources)
129 "Define a new face with name FACE, a symbol.
130NO-INIT-FROM-RESOURCES non-nil means don't initialize frame-local
131variants of FACE from X resources. (X resources recognized are found
132in the global variable `face-x-resources'.) If FACE is already known
133as a face, leave it unmodified. Value is FACE."
2aef0850
JL
134 (interactive (list (read-from-minibuffer
135 "Make face: " nil nil t 'face-name-history)))
5f5c8ee5
GM
136 (unless (facep face)
137 ;; Make frame-local faces (this also makes the global one).
138 (dolist (frame (frame-list))
139 (internal-make-lisp-face face frame))
140 ;; Add the face to the face menu.
141 (when (fboundp 'facemenu-add-new-face)
142 (facemenu-add-new-face face))
143 ;; Define frame-local faces for all frames from X resources.
144 (unless no-init-from-resources
145 (make-face-x-resource-internal face)))
146 face)
147
148
149(defun make-empty-face (face)
150 "Define a new, empty face with name FACE.
151If the face already exists, it is left unmodified. Value is FACE."
2aef0850
JL
152 (interactive (list (read-from-minibuffer
153 "Make empty face: " nil nil t 'face-name-history)))
5f5c8ee5
GM
154 (make-face face 'no-init-from-resources))
155
156
157(defun copy-face (old-face new-face &optional frame new-frame)
158 "Define a face just like OLD-FACE, with name NEW-FACE.
159
160If NEW-FACE already exists as a face, it is modified to be like
161OLD-FACE. If it doesn't already exist, it is created.
162
1c521fb0 163If the optional argument FRAME is given as a frame, NEW-FACE is
5f5c8ee5
GM
164changed on FRAME only.
165If FRAME is t, the frame-independent default specification for OLD-FACE
166is copied to NEW-FACE.
167If FRAME is nil, copying is done for the frame-independent defaults
168and for each existing frame.
169
170If the optional fourth argument NEW-FRAME is given,
171copy the information from face OLD-FACE on frame FRAME
341a1bfb 172to NEW-FACE on frame NEW-FRAME. In this case, FRAME may not be nil."
5f5c8ee5
GM
173 (let ((inhibit-quit t))
174 (if (null frame)
175 (progn
341a1bfb
RS
176 (when new-frame
177 (error "Copying face %s from all frames to one frame"
178 old-face))
179 (make-empty-face new-face)
5f5c8ee5
GM
180 (dolist (frame (frame-list))
181 (copy-face old-face new-face frame))
182 (copy-face old-face new-face t))
341a1bfb 183 (make-empty-face new-face)
5f5c8ee5
GM
184 (internal-copy-lisp-face old-face new-face frame new-frame))
185 new-face))
186
5f5c8ee5
GM
187\f
188;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
189;;; Predicates, type checks.
190;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
191
192(defun facep (face)
20d29b0b
RS
193 "Return non-nil if FACE is a face name; nil otherwise.
194A face name can be a string or a symbol."
5f5c8ee5
GM
195 (internal-lisp-face-p face))
196
197
198(defun check-face (face)
199 "Signal an error if FACE doesn't name a face.
200Value is FACE."
201 (unless (facep face)
202 (error "Not a face: %s" face))
203 face)
204
205
206;; The ID returned is not to be confused with the internally used IDs
207;; of realized faces. The ID assigned to Lisp faces is used to
208;; support faces in display table entries.
209
210(defun face-id (face &optional frame)
2df447f2 211 "Return the internal ID of face with name FACE.
b2d5aa46 212If FACE is a face-alias, return the ID of the target face.
9ae89a1a
RS
213The optional argument FRAME is ignored, since the internal face ID
214of a face name is the same for all frames."
5f5c8ee5 215 (check-face face)
b2d5aa46
JB
216 (or (get face 'face)
217 (face-id (get face 'face-alias))))
5f5c8ee5
GM
218
219(defun face-equal (face1 face2 &optional frame)
220 "Non-nil if faces FACE1 and FACE2 are equal.
221Faces are considered equal if all their attributes are equal.
a09be93a
JB
222If the optional argument FRAME is given, report on FACE1 and FACE2 in that frame.
223If FRAME is t, report on the defaults for FACE1 and FACE2 (for new frames).
5f5c8ee5
GM
224If FRAME is omitted or nil, use the selected frame."
225 (internal-lisp-face-equal-p face1 face2 frame))
226
227
228(defun face-differs-from-default-p (face &optional frame)
7e07a66d 229 "Return non-nil if FACE displays differently from the default face.
5f5c8ee5
GM
230If the optional argument FRAME is given, report on face FACE in that frame.
231If FRAME is t, report on the defaults for face FACE (for new frames).
7e07a66d 232If FRAME is omitted or nil, use the selected frame."
1151d617 233 (let ((attrs
833547aa 234 (delq :inherit (mapcar 'car face-attribute-name-alist)))
1151d617
MB
235 (differs nil))
236 (while (and attrs (not differs))
237 (let* ((attr (pop attrs))
238 (attr-val (face-attribute face attr frame t)))
239 (when (and
240 (not (eq attr-val 'unspecified))
241 (display-supports-face-attributes-p (list attr attr-val)
242 frame))
243 (setq differs attr))))
244 differs))
5f5c8ee5
GM
245
246
247(defun face-nontrivial-p (face &optional frame)
248 "True if face FACE has some non-nil attribute.
249If the optional argument FRAME is given, report on face FACE in that frame.
250If FRAME is t, report on the defaults for face FACE (for new frames).
251If FRAME is omitted or nil, use the selected frame."
252 (not (internal-lisp-face-empty-p face frame)))
253
254
255\f
256;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
257;;; Setting face attributes from X resources.
258;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
259
260(defcustom face-x-resources
1e8780b1
DN
261 (mapcar
262 (lambda (arg)
263 ;; FIXME; can we purecopy some of the conses too?
264 (cons (car arg)
265 (cons (purecopy (car (cdr arg))) (purecopy (cdr (cdr arg))))))
5f5c8ee5 266 '((:family (".attributeFamily" . "Face.AttributeFamily"))
fcea6e23 267 (:foundry (".attributeFoundry" . "Face.AttributeFoundry"))
5f5c8ee5
GM
268 (:width (".attributeWidth" . "Face.AttributeWidth"))
269 (:height (".attributeHeight" . "Face.AttributeHeight"))
270 (:weight (".attributeWeight" . "Face.AttributeWeight"))
271 (:slant (".attributeSlant" . "Face.AttributeSlant"))
272 (:foreground (".attributeForeground" . "Face.AttributeForeground"))
273 (:background (".attributeBackground" . "Face.AttributeBackground"))
274 (:overline (".attributeOverline" . "Face.AttributeOverline"))
275 (:strike-through (".attributeStrikeThrough" . "Face.AttributeStrikeThrough"))
276 (:box (".attributeBox" . "Face.AttributeBox"))
277 (:underline (".attributeUnderline" . "Face.AttributeUnderline"))
278 (:inverse-video (".attributeInverse" . "Face.AttributeInverse"))
279 (:stipple
280 (".attributeStipple" . "Face.AttributeStipple")
281 (".attributeBackgroundPixmap" . "Face.AttributeBackgroundPixmap"))
5f5c8ee5
GM
282 (:bold (".attributeBold" . "Face.AttributeBold"))
283 (:italic (".attributeItalic" . "Face.AttributeItalic"))
a0e5a5a4 284 (:font (".attributeFont" . "Face.AttributeFont"))
1e8780b1 285 (:inherit (".attributeInherit" . "Face.AttributeInherit"))))
9201cc28 286 "List of X resources and classes for face attributes.
5f5c8ee5
GM
287Each element has the form (ATTRIBUTE ENTRY1 ENTRY2...) where ATTRIBUTE is
288the name of a face attribute, and each ENTRY is a cons of the form
2cb95d1b 289\(RESOURCE . CLASS) with RESOURCE being the resource and CLASS being the
5f5c8ee5 290X resource class for the attribute."
b5325e78 291 :type '(repeat (cons symbol (repeat (cons string string))))
5f5c8ee5
GM
292 :group 'faces)
293
294
aa360da1
GM
295(declare-function internal-face-x-get-resource "xfaces.c"
296 (resource class frame))
297
298(declare-function internal-set-lisp-face-attribute-from-resource "xfaces.c"
299 (face attr value &optional frame))
300
5f5c8ee5
GM
301(defun set-face-attribute-from-resource (face attribute resource class frame)
302 "Set FACE's ATTRIBUTE from X resource RESOURCE, class CLASS on FRAME.
303Value is the attribute value specified by the resource, or nil
304if not present. This function displays a message if the resource
305specifies an invalid attribute."
306 (let* ((face-name (face-name face))
307 (value (internal-face-x-get-resource (concat face-name resource)
308 class frame)))
309 (when value
310 (condition-case ()
311 (internal-set-lisp-face-attribute-from-resource
312 face attribute (downcase value) frame)
313 (error
314 (message "Face %s, frame %s: invalid attribute %s %s from X resource"
315 face-name frame attribute value))))
316 value))
317
318
319(defun set-face-attributes-from-resources (face frame)
320 "Set attributes of FACE from X resources for FRAME."
e51fe00a 321 (when (memq (framep frame) '(x w32))
5f5c8ee5
GM
322 (dolist (definition face-x-resources)
323 (let ((attribute (car definition)))
324 (dolist (entry (cdr definition))
325 (set-face-attribute-from-resource face attribute (car entry)
326 (cdr entry) frame))))))
00f51890
SS
327
328
5f5c8ee5
GM
329(defun make-face-x-resource-internal (face &optional frame)
330 "Fill frame-local FACE on FRAME from X resources.
331FRAME nil or not specified means do it for all frames."
332 (if (null frame)
333 (dolist (frame (frame-list))
334 (set-face-attributes-from-resources face frame))
335 (set-face-attributes-from-resources face frame)))
336
337
338\f
339;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
340;;; Retrieving face attributes.
341;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
342
feaad827 343(defun face-name (face)
465fceed 344 "Return the name of face FACE."
5f5c8ee5
GM
345 (symbol-name (check-face face)))
346
347
833547aa
RS
348(defun face-all-attributes (face &optional frame)
349 "Return an alist stating the attributes of FACE.
350Each element of the result has the form (ATTR-NAME . ATTR-VALUE).
37766706 351If FRAME is omitted or nil the value describes the default attributes,
833547aa
RS
352but if you specify FRAME, the value describes the attributes
353of FACE on FRAME."
606c9f59
RS
354 (mapcar (lambda (pair)
355 (let ((attr (car pair)))
356 (cons attr (face-attribute face attr (or frame t)))))
833547aa
RS
357 face-attribute-name-alist))
358
c7f814cb 359(defun face-attribute (face attribute &optional frame inherit)
5f5c8ee5
GM
360 "Return the value of FACE's ATTRIBUTE on FRAME.
361If the optional argument FRAME is given, report on face FACE in that frame.
362If FRAME is t, report on the defaults for face FACE (for new frames).
c7f814cb 363If FRAME is omitted or nil, use the selected frame.
5f5c8ee5 364
c7f814cb
MB
365If INHERIT is nil, only attributes directly defined by FACE are considered,
366 so the return value may be `unspecified', or a relative value.
367If INHERIT is non-nil, FACE's definition of ATTRIBUTE is merged with the
368 faces specified by its `:inherit' attribute; however the return value
369 may still be `unspecified' or relative.
370If INHERIT is a face or a list of faces, then the result is further merged
371 with that face (or faces), until it becomes specified and absolute.
372
373To ensure that the return value is always specified and absolute, use a
374value of `default' for INHERIT; this will resolve any unspecified or
375relative values by merging with the `default' face (which is always
376completely specified)."
377 (let ((value (internal-get-lisp-face-attribute face attribute frame)))
378 (when (and inherit (face-attribute-relative-p attribute value))
379 ;; VALUE is relative, so merge with inherited faces
380 (let ((inh-from (face-attribute face :inherit frame)))
381 (unless (or (null inh-from) (eq inh-from 'unspecified))
621e71ee
SM
382 (condition-case nil
383 (setq value
384 (face-attribute-merged-with attribute value inh-from frame))
385 ;; The `inherit' attribute may point to non existent faces.
386 (error nil)))))
c7f814cb
MB
387 (when (and inherit
388 (not (eq inherit t))
389 (face-attribute-relative-p attribute value))
b6b90dfc 390 ;; We should merge with INHERIT as well
c7f814cb
MB
391 (setq value (face-attribute-merged-with attribute value inherit frame)))
392 value))
5f5c8ee5 393
c7f814cb
MB
394(defun face-attribute-merged-with (attribute value faces &optional frame)
395 "Merges ATTRIBUTE, initially VALUE, with faces from FACES until absolute.
396FACES may be either a single face or a list of faces.
522fb950 397\[This is an internal function.]"
c7f814cb
MB
398 (cond ((not (face-attribute-relative-p attribute value))
399 value)
400 ((null faces)
401 value)
402 ((consp faces)
403 (face-attribute-merged-with
404 attribute
405 (face-attribute-merged-with attribute value (car faces) frame)
406 (cdr faces)
407 frame))
408 (t
409 (merge-face-attribute attribute
410 value
411 (face-attribute faces attribute frame t)))))
412
413
414(defmacro face-attribute-specified-or (value &rest body)
415 "Return VALUE, unless it's `unspecified', in which case evaluate BODY and return the result."
416 (let ((temp (make-symbol "value")))
417 `(let ((,temp ,value))
418 (if (not (eq ,temp 'unspecified))
419 ,temp
420 ,@body))))
421
422(defun face-foreground (face &optional frame inherit)
5f5c8ee5
GM
423 "Return the foreground color name of FACE, or nil if unspecified.
424If the optional argument FRAME is given, report on face FACE in that frame.
425If FRAME is t, report on the defaults for face FACE (for new frames).
c7f814cb 426If FRAME is omitted or nil, use the selected frame.
5f5c8ee5 427
c7f814cb
MB
428If INHERIT is nil, only a foreground color directly defined by FACE is
429 considered, so the return value may be nil.
430If INHERIT is t, and FACE doesn't define a foreground color, then any
431 foreground color that FACE inherits through its `:inherit' attribute
432 is considered as well; however the return value may still be nil.
433If INHERIT is a face or a list of faces, then it is used to try to
434 resolve an unspecified foreground color.
435
436To ensure that a valid color is always returned, use a value of
437`default' for INHERIT; this will resolve any unspecified values by
438merging with the `default' face (which is always completely specified)."
439 (face-attribute-specified-or (face-attribute face :foreground frame inherit)
440 nil))
441
442(defun face-background (face &optional frame inherit)
5f5c8ee5
GM
443 "Return the background color name of FACE, or nil if unspecified.
444If the optional argument FRAME is given, report on face FACE in that frame.
445If FRAME is t, report on the defaults for face FACE (for new frames).
c7f814cb 446If FRAME is omitted or nil, use the selected frame.
5f5c8ee5 447
c7f814cb
MB
448If INHERIT is nil, only a background color directly defined by FACE is
449 considered, so the return value may be nil.
450If INHERIT is t, and FACE doesn't define a background color, then any
451 background color that FACE inherits through its `:inherit' attribute
452 is considered as well; however the return value may still be nil.
453If INHERIT is a face or a list of faces, then it is used to try to
454 resolve an unspecified background color.
455
456To ensure that a valid color is always returned, use a value of
457`default' for INHERIT; this will resolve any unspecified values by
458merging with the `default' face (which is always completely specified)."
459 (face-attribute-specified-or (face-attribute face :background frame inherit)
460 nil))
461
462(defun face-stipple (face &optional frame inherit)
5f5c8ee5
GM
463 "Return the stipple pixmap name of FACE, or nil if unspecified.
464If the optional argument FRAME is given, report on face FACE in that frame.
465If FRAME is t, report on the defaults for face FACE (for new frames).
c7f814cb
MB
466If FRAME is omitted or nil, use the selected frame.
467
468If INHERIT is nil, only a stipple directly defined by FACE is
469 considered, so the return value may be nil.
470If INHERIT is t, and FACE doesn't define a stipple, then any stipple
471 that FACE inherits through its `:inherit' attribute is considered as
472 well; however the return value may still be nil.
473If INHERIT is a face or a list of faces, then it is used to try to
474 resolve an unspecified stipple.
475
476To ensure that a valid stipple or nil is always returned, use a value of
477`default' for INHERIT; this will resolve any unspecified values by merging
478with the `default' face (which is always completely specified)."
479 (face-attribute-specified-or (face-attribute face :stipple frame inherit)
480 nil))
5f5c8ee5
GM
481
482
483(defalias 'face-background-pixmap 'face-stipple)
484
485
486(defun face-underline-p (face &optional frame)
487 "Return non-nil if FACE is underlined.
488If the optional argument FRAME is given, report on face FACE in that frame.
489If FRAME is t, report on the defaults for face FACE (for new frames).
490If FRAME is omitted or nil, use the selected frame."
491 (eq (face-attribute face :underline frame) t))
492
493
494(defun face-inverse-video-p (face &optional frame)
495 "Return non-nil if FACE is in inverse video on FRAME.
496If the optional argument FRAME is given, report on face FACE in that frame.
497If FRAME is t, report on the defaults for face FACE (for new frames).
498If FRAME is omitted or nil, use the selected frame."
499 (eq (face-attribute face :inverse-video frame) t))
500
501
502(defun face-bold-p (face &optional frame)
503 "Return non-nil if the font of FACE is bold on FRAME.
504If the optional argument FRAME is given, report on face FACE in that frame.
505If FRAME is t, report on the defaults for face FACE (for new frames).
506If FRAME is omitted or nil, use the selected frame.
507Use `face-attribute' for finer control."
508 (let ((bold (face-attribute face :weight frame)))
da2c7b8c 509 (memq bold '(semi-bold bold extra-bold ultra-bold))))
5f5c8ee5
GM
510
511
512(defun face-italic-p (face &optional frame)
513 "Return non-nil if the font of FACE is italic on FRAME.
514If the optional argument FRAME is given, report on face FACE in that frame.
515If FRAME is t, report on the defaults for face FACE (for new frames).
516If FRAME is omitted or nil, use the selected frame.
517Use `face-attribute' for finer control."
518 (let ((italic (face-attribute face :slant frame)))
a48f6020 519 (memq italic '(italic oblique))))
00f51890 520
5f5c8ee5 521
5f5c8ee5
GM
522\f
523;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
524;;; Face documentation.
525;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
526
527(defun face-documentation (face)
9a558a07
GM
528 "Get the documentation string for FACE.
529If FACE is a face-alias, get the documentation for the target face."
530 (let ((alias (get face 'face-alias))
531 doc)
532 (if alias
533 (progn
534 (setq doc (get alias 'face-documentation))
3446bfc8 535 (format "%s is an alias for the face `%s'.%s" face alias
9a558a07
GM
536 (if doc (format "\n%s" doc)
537 "")))
538 (get face 'face-documentation))))
5f5c8ee5
GM
539
540
541(defun set-face-documentation (face string)
542 "Set the documentation string for FACE to STRING."
291cfb96 543 ;; Perhaps the text should go in DOC.
49435801 544 (put face 'face-documentation (purecopy string)))
5f5c8ee5
GM
545
546
547(defalias 'face-doc-string 'face-documentation)
548(defalias 'set-face-doc-string 'set-face-documentation)
549
550
551\f
552;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
553;; Setting face attributes.
554;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
555
556
557(defun set-face-attribute (face frame &rest args)
558 "Set attributes of FACE on FRAME from ARGS.
559
560FRAME nil means change attributes on all frames. FRAME t means change
561the default for new frames (this is done automatically each time an
562attribute is changed on all frames).
563
564ARGS must come in pairs ATTRIBUTE VALUE. ATTRIBUTE must be a valid
c6f3804c 565face attribute name. All attributes can be set to `unspecified';
5f5c8ee5
GM
566this fact is not further mentioned below.
567
568The following attributes are recognized:
569
570`:family'
571
bfffdd07 572VALUE must be a string specifying the font family, e.g. ``monospace'',
5f5c8ee5
GM
573or a fontset alias name. If a font family is specified, wild-cards `*'
574and `?' are allowed.
575
fcea6e23
KH
576`:foundry'
577
578VALUE must be a string specifying the font foundry,
579e.g. ``adobe''. If a font foundry is specified, wild-cards `*'
580and `?' are allowed.
581
5f5c8ee5
GM
582`:width'
583
584VALUE specifies the relative proportionate width of the font to use.
585It must be one of the symbols `ultra-condensed', `extra-condensed',
586`condensed', `semi-condensed', `normal', `semi-expanded', `expanded',
587`extra-expanded', or `ultra-expanded'.
588
589`:height'
590
19feb949
MB
591VALUE must be either an integer specifying the height of the font to use
592in 1/10 pt, a floating point number specifying the amount by which to
593scale any underlying face, or a function, which is called with the old
594height (from the underlying face), and should return the new height.
5f5c8ee5
GM
595
596`:weight'
597
598VALUE specifies the weight of the font to use. It must be one of the
599symbols `ultra-bold', `extra-bold', `bold', `semi-bold', `normal',
600`semi-light', `light', `extra-light', `ultra-light'.
601
602`:slant'
603
604VALUE specifies the slant of the font to use. It must be one of the
605symbols `italic', `oblique', `normal', `reverse-italic', or
606`reverse-oblique'.
607
608`:foreground', `:background'
609
610VALUE must be a color name, a string.
611
612`:underline'
613
614VALUE specifies whether characters in FACE should be underlined. If
615VALUE is t, underline with foreground color of the face. If VALUE is
616a string, underline with that color. If VALUE is nil, explicitly
617don't underline.
618
619`:overline'
620
621VALUE specifies whether characters in FACE should be overlined. If
622VALUE is t, overline with foreground color of the face. If VALUE is a
623string, overline with that color. If VALUE is nil, explicitly don't
624overline.
625
626`:strike-through'
627
628VALUE specifies whether characters in FACE should be drawn with a line
629striking through them. If VALUE is t, use the foreground color of the
630face. If VALUE is a string, strike-through with that color. If VALUE
631is nil, explicitly don't strike through.
632
633`:box'
634
635VALUE specifies whether characters in FACE should have a box drawn
636around them. If VALUE is nil, explicitly don't draw boxes. If
637VALUE is t, draw a box with lines of width 1 in the foreground color
638of the face. If VALUE is a string, the string must be a color name,
639and the box is drawn in that color with a line width of 1. Otherwise,
640VALUE must be a property list of the form `(:line-width WIDTH
641:color COLOR :style STYLE)'. If a keyword/value pair is missing from
642the property list, a default value will be used for the value, as
643specified below. WIDTH specifies the width of the lines to draw; it
0f937ebd
KH
644defaults to 1. If WIDTH is negative, the absolute value is the width
645of the lines, and draw top/bottom lines inside the characters area,
646not around it. COLOR is the name of the color to draw in, default is
5f5c8ee5
GM
647the foreground color of the face for simple boxes, and the background
648color of the face for 3D boxes. STYLE specifies whether a 3D box
649should be draw. If STYLE is `released-button', draw a box looking
650like a released 3D button. If STYLE is `pressed-button' draw a box
651that appears like a pressed button. If STYLE is nil, the default if
652the property list doesn't contain a style specification, draw a 2D
653box.
654
655`:inverse-video'
656
657VALUE specifies whether characters in FACE should be displayed in
70d0c3b0 658inverse video. VALUE must be one of t or nil.
5f5c8ee5
GM
659
660`:stipple'
661
662If VALUE is a string, it must be the name of a file of pixmap data.
663The directories listed in the `x-bitmap-file-path' variable are
664searched. Alternatively, VALUE may be a list of the form (WIDTH
665HEIGHT DATA) where WIDTH and HEIGHT are the size in pixels, and DATA
666is a string containing the raw bits of the bitmap. VALUE nil means
667explicitly don't use a stipple pattern.
668
fcea6e23
KH
669For convenience, attributes `:family', `:foundry', `:width',
670`:height', `:weight', and `:slant' may also be set in one step
671from an X font name:
5f5c8ee5
GM
672
673`:font'
674
675Set font-related face attributes from VALUE. VALUE must be a valid
676XLFD font name. If it is a font name pattern, the first matching font
677will be used.
678
679For compatibility with Emacs 20, keywords `:bold' and `:italic' can
680be used to specify that a bold or italic font should be used. VALUE
19feb949
MB
681must be t or nil in that case. A value of `unspecified' is not allowed.
682
683`:inherit'
684
685VALUE is the name of a face from which to inherit attributes, or a list
686of face names. Attributes from inherited faces are merged into the face
687like an underlying face would be, with higher priority than underlying faces."
61ab9392
CY
688 (setq args (purecopy args))
689 (let ((where (if (null frame) 0 frame))
690 (spec args)
691 family foundry)
680da3f8
RS
692 ;; If we set the new-frame defaults, this face is modified outside Custom.
693 (if (memq where '(0 t))
9a558a07 694 (put (or (get face 'face-alias) face) 'face-modified t))
61ab9392
CY
695 ;; If family and/or foundry are specified, set it first. Certain
696 ;; face attributes, e.g. :weight semi-condensed, are not supported
697 ;; in every font. See bug#1127.
698 (while spec
699 (cond ((eq (car spec) :family)
700 (setq family (cadr spec)))
701 ((eq (car spec) :foundry)
702 (setq foundry (cadr spec))))
703 (setq spec (cddr spec)))
704 (when (or family foundry)
705 (when (and (stringp family)
706 (string-match "\\([^-]*\\)-\\([^-]*\\)" family))
707 (unless foundry
3a92c095
KH
708 (setq foundry (match-string 1 family)))
709 (setq family (match-string 2 family)))
c917476d 710 (when (or (stringp family) (eq family 'unspecified))
61ab9392
CY
711 (internal-set-lisp-face-attribute face :family (purecopy family)
712 where))
c917476d 713 (when (or (stringp foundry) (eq foundry 'unspecified))
61ab9392
CY
714 (internal-set-lisp-face-attribute face :foundry (purecopy foundry)
715 where)))
70a267c9 716 (while args
61ab9392 717 (unless (memq (car args) '(:family :foundry))
96c1a800
CY
718 (internal-set-lisp-face-attribute face (car args)
719 (purecopy (cadr args))
720 where))
61ab9392 721 (setq args (cddr args)))))
5f5c8ee5 722
39cac3e7 723(defun make-face-bold (face &optional frame noerror)
5f5c8ee5
GM
724 "Make the font of FACE be bold, if possible.
725FRAME nil or not specified means change face on all frames.
39cac3e7 726Argument NOERROR is ignored and retained for compatibility.
5f5c8ee5 727Use `set-face-attribute' for finer control of the font weight."
95125512 728 (interactive (list (read-face-name "Make which face bold")))
5f5c8ee5
GM
729 (set-face-attribute face frame :weight 'bold))
730
731
39cac3e7 732(defun make-face-unbold (face &optional frame noerror)
5f5c8ee5 733 "Make the font of FACE be non-bold, if possible.
39cac3e7
GM
734FRAME nil or not specified means change face on all frames.
735Argument NOERROR is ignored and retained for compatibility."
95125512 736 (interactive (list (read-face-name "Make which face non-bold")))
5f5c8ee5
GM
737 (set-face-attribute face frame :weight 'normal))
738
00f51890 739
39cac3e7 740(defun make-face-italic (face &optional frame noerror)
5f5c8ee5
GM
741 "Make the font of FACE be italic, if possible.
742FRAME nil or not specified means change face on all frames.
39cac3e7 743Argument NOERROR is ignored and retained for compatibility.
5f5c8ee5 744Use `set-face-attribute' for finer control of the font slant."
95125512 745 (interactive (list (read-face-name "Make which face italic")))
5f5c8ee5
GM
746 (set-face-attribute face frame :slant 'italic))
747
748
39cac3e7 749(defun make-face-unitalic (face &optional frame noerror)
5f5c8ee5 750 "Make the font of FACE be non-italic, if possible.
70d0c3b0
DL
751FRAME nil or not specified means change face on all frames.
752Argument NOERROR is ignored and retained for compatibility."
95125512 753 (interactive (list (read-face-name "Make which face non-italic")))
5f5c8ee5
GM
754 (set-face-attribute face frame :slant 'normal))
755
00f51890 756
39cac3e7 757(defun make-face-bold-italic (face &optional frame noerror)
5f5c8ee5
GM
758 "Make the font of FACE be bold and italic, if possible.
759FRAME nil or not specified means change face on all frames.
39cac3e7 760Argument NOERROR is ignored and retained for compatibility.
5f5c8ee5 761Use `set-face-attribute' for finer control of font weight and slant."
95125512 762 (interactive (list (read-face-name "Make which face bold-italic")))
5f5c8ee5
GM
763 (set-face-attribute face frame :weight 'bold :slant 'italic))
764
765
766(defun set-face-font (face font &optional frame)
767 "Change font-related attributes of FACE to those of FONT (a string).
768FRAME nil or not specified means change face on all frames.
fcea6e23
KH
769This sets the attributes `:family', `:foundry', `:width',
770`:height', `:weight', and `:slant'. When called interactively,
771prompt for the face and font."
5f5c8ee5
GM
772 (interactive (read-face-and-attribute :font))
773 (set-face-attribute face frame :font font))
774
775
776;; Implementation note: Emulating gray background colors with a
777;; stipple pattern is now part of the face realization process, and is
778;; done in C depending on the frame on which the face is realized.
779
780(defun set-face-background (face color &optional frame)
781 "Change the background color of face FACE to COLOR (a string).
782FRAME nil or not specified means change face on all frames.
72e6f142
RS
783COLOR can be a system-defined color name (see `list-colors-display')
784or a hex spec of the form #RRGGBB.
785When called interactively, prompts for the face and color."
5f5c8ee5 786 (interactive (read-face-and-attribute :background))
78ad1cd5 787 (set-face-attribute face frame :background (or color 'unspecified)))
5f5c8ee5
GM
788
789
790(defun set-face-foreground (face color &optional frame)
791 "Change the foreground color of face FACE to COLOR (a string).
792FRAME nil or not specified means change face on all frames.
72e6f142
RS
793COLOR can be a system-defined color name (see `list-colors-display')
794or a hex spec of the form #RRGGBB.
795When called interactively, prompts for the face and color."
5f5c8ee5 796 (interactive (read-face-and-attribute :foreground))
78ad1cd5 797 (set-face-attribute face frame :foreground (or color 'unspecified)))
5f5c8ee5
GM
798
799
800(defun set-face-stipple (face stipple &optional frame)
801 "Change the stipple pixmap of face FACE to STIPPLE.
802FRAME nil or not specified means change face on all frames.
70d0c3b0 803STIPPLE should be a string, the name of a file of pixmap data.
5f5c8ee5
GM
804The directories listed in the `x-bitmap-file-path' variable are searched.
805
806Alternatively, STIPPLE may be a list of the form (WIDTH HEIGHT DATA)
807where WIDTH and HEIGHT are the size in pixels,
808and DATA is a string, containing the raw bits of the bitmap."
809 (interactive (read-face-and-attribute :stipple))
78ad1cd5 810 (set-face-attribute face frame :stipple (or stipple 'unspecified)))
5f5c8ee5
GM
811
812
a61afeac 813(defun set-face-underline-p (face underline &optional frame)
5f5c8ee5
GM
814 "Specify whether face FACE is underlined.
815UNDERLINE nil means FACE explicitly doesn't underline.
816UNDERLINE non-nil means FACE explicitly does underlining
817with the same of the foreground color.
818If UNDERLINE is a string, underline with the color named UNDERLINE.
819FRAME nil or not specified means change face on all frames.
5f5c8ee5
GM
820Use `set-face-attribute' to ``unspecify'' underlining."
821 (interactive
822 (let ((list (read-face-and-attribute :underline)))
823 (list (car list) (eq (car (cdr list)) t))))
a61afeac 824 (set-face-attribute face frame :underline underline))
5f5c8ee5 825
9b82fc01
JL
826(define-obsolete-function-alias 'set-face-underline
827 'set-face-underline-p "22.1")
828
5f5c8ee5
GM
829
830(defun set-face-inverse-video-p (face inverse-video-p &optional frame)
831 "Specify whether face FACE is in inverse video.
832INVERSE-VIDEO-P non-nil means FACE displays explicitly in inverse video.
833INVERSE-VIDEO-P nil means FACE explicitly is not in inverse video.
834FRAME nil or not specified means change face on all frames.
835Use `set-face-attribute' to ``unspecify'' the inverse video attribute."
836 (interactive
837 (let ((list (read-face-and-attribute :inverse-video)))
838 (list (car list) (eq (car (cdr list)) t))))
839 (set-face-attribute face frame :inverse-video inverse-video-p))
840
841
842(defun set-face-bold-p (face bold-p &optional frame)
843 "Specify whether face FACE is bold.
844BOLD-P non-nil means FACE should explicitly display bold.
845BOLD-P nil means FACE should explicitly display non-bold.
846FRAME nil or not specified means change face on all frames.
847Use `set-face-attribute' or `modify-face' for finer control."
848 (if (null bold-p)
849 (make-face-unbold face frame)
850 (make-face-bold face frame)))
851
852
853(defun set-face-italic-p (face italic-p &optional frame)
854 "Specify whether face FACE is italic.
855ITALIC-P non-nil means FACE should explicitly display italic.
856ITALIC-P nil means FACE should explicitly display non-italic.
857FRAME nil or not specified means change face on all frames.
858Use `set-face-attribute' or `modify-face' for finer control."
859 (if (null italic-p)
860 (make-face-unitalic face frame)
861 (make-face-italic face frame)))
862
863
864(defalias 'set-face-background-pixmap 'set-face-stipple)
865
866
867(defun invert-face (face &optional frame)
868 "Swap the foreground and background colors of FACE.
e458cb49 869If FRAME is omitted or nil, it means change face on all frames.
5f5c8ee5
GM
870If FACE specifies neither foreground nor background color,
871set its foreground and background to the background and foreground
872of the default face. Value is FACE."
95125512 873 (interactive (list (read-face-name "Invert face")))
5f5c8ee5
GM
874 (let ((fg (face-attribute face :foreground frame))
875 (bg (face-attribute face :background frame)))
e458cb49 876 (if (not (and (eq fg 'unspecified) (eq bg 'unspecified)))
5f5c8ee5
GM
877 (set-face-attribute face frame :foreground bg :background fg)
878 (set-face-attribute face frame
879 :foreground
880 (face-attribute 'default :background frame)
881 :background
882 (face-attribute 'default :foreground frame))))
883 face)
884
885\f
886;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
887;;; Interactively modifying faces.
888;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
889
c91e692b 890(defun read-face-name (prompt &optional default multiple)
a482f364 891 "Read a face, defaulting to the face or faces on the char after point.
c7b93b44 892If it has the property `read-face-name', that overrides the `face' property.
3748d13d
RS
893PROMPT should be a string that describes what the caller will do with the face;
894it should not end in a space.
c91e692b
JL
895The optional argument DEFAULT provides the value to display in the
896minibuffer prompt that is returned if the user just types RET
897unless DEFAULT is a string (in which case nil is returned).
a482f364
RS
898If MULTIPLE is non-nil, return a list of faces (possibly only one).
899Otherwise, return a single face."
900 (let ((faceprop (or (get-char-property (point) 'read-face-name)
901 (get-char-property (point) 'face)))
e3b5b35b
SM
902 (aliasfaces nil)
903 (nonaliasfaces nil)
a482f364 904 faces)
224d108e
JL
905 ;; Try to get a face name from the buffer.
906 (if (memq (intern-soft (thing-at-point 'symbol)) (face-list))
907 (setq faces (list (intern-soft (thing-at-point 'symbol)))))
908 ;; Add the named faces that the `face' property uses.
1bd59f82
RS
909 (if (and (listp faceprop)
910 ;; Don't treat an attribute spec as a list of faces.
911 (not (keywordp (car faceprop)))
912 (not (memq (car faceprop) '(foreground-color background-color))))
a482f364
RS
913 (dolist (f faceprop)
914 (if (symbolp f)
915 (push f faces)))
916 (if (symbolp faceprop)
1bd59f82 917 (push faceprop faces)))
81435dc4 918 (delete-dups faces)
a482f364 919
e3b5b35b
SM
920 ;; Build up the completion tables.
921 (mapatoms (lambda (s)
922 (if (custom-facep s)
923 (if (get s 'face-alias)
924 (push (symbol-name s) aliasfaces)
925 (push (symbol-name s) nonaliasfaces)))))
926
a482f364
RS
927 ;; If we only want one, and the default is more than one,
928 ;; discard the unwanted ones now.
929 (unless multiple
930 (if faces
931 (setq faces (list (car faces)))))
224d108e 932 (require 'crm)
a482f364
RS
933 (let* ((input
934 ;; Read the input.
224d108e 935 (completing-read-multiple
c91e692b
JL
936 (if (or faces default)
937 (format "%s (default `%s'): " prompt
224d108e 938 (if faces (mapconcat 'symbol-name faces ",")
c91e692b 939 default))
3b4ef34b 940 (format "%s: " prompt))
45555ebe 941 (completion-table-in-turn nonaliasfaces aliasfaces)
2aef0850 942 nil t nil 'face-name-history
224d108e 943 (if faces (mapconcat 'symbol-name faces ","))))
a482f364
RS
944 ;; Canonicalize the output.
945 (output
224d108e 946 (cond ((or (equal input "") (equal input '("")))
c91e692b 947 (or faces (unless (stringp default) default)))
224d108e
JL
948 ((stringp input)
949 (mapcar 'intern (split-string input ", *" t)))
950 ((listp input)
951 (mapcar 'intern input))
952 (input))))
a482f364
RS
953 ;; Return either a list of faces or just one face.
954 (if multiple
955 output
956 (car output)))))
957
aa360da1
GM
958;; Not defined without X, but behind window-system test.
959(defvar x-bitmap-file-path)
a482f364 960
5f5c8ee5
GM
961(defun face-valid-attribute-values (attribute &optional frame)
962 "Return valid values for face attribute ATTRIBUTE.
963The optional argument FRAME is used to determine available fonts
c6f3804c
JB
964and colors. If it is nil or not specified, the selected frame is used.
965Value is an alist of (NAME . VALUE) if ATTRIBUTE expects a value out
966of a set of discrete values. Value is `integerp' if ATTRIBUTE expects
5f5c8ee5 967an integer value."
00f51890
SS
968 (let ((valid
969 (case attribute
970 (:family
428a555e 971 (if (window-system frame)
95ac8fbd 972 (mapcar (lambda (x) (cons x x))
6e783e91 973 (font-family-list))
00f51890
SS
974 ;; Only one font on TTYs.
975 (list (cons "default" "default"))))
fcea6e23
KH
976 (:foundry
977 (list nil))
6e783e91 978 (:width
e83eedbf 979 (mapcar #'(lambda (x) (cons (symbol-name (aref x 1)) (aref x 1)))
6e783e91
KH
980 font-width-table))
981 (:weight
e83eedbf 982 (mapcar #'(lambda (x) (cons (symbol-name (aref x 1)) (aref x 1)))
6e783e91
KH
983 font-weight-table))
984 (:slant
e83eedbf 985 (mapcar #'(lambda (x) (cons (symbol-name (aref x 1)) (aref x 1)))
6e783e91
KH
986 font-slant-table))
987 (:inverse-video
988 (mapcar #'(lambda (x) (cons (symbol-name x) x))
989 (internal-lisp-face-attribute-values attribute)))
00f51890 990 ((:underline :overline :strike-through :box)
428a555e 991 (if (window-system frame)
00f51890
SS
992 (nconc (mapcar #'(lambda (x) (cons (symbol-name x) x))
993 (internal-lisp-face-attribute-values attribute))
994 (mapcar #'(lambda (c) (cons c c))
b533d0ae 995 (defined-colors frame)))
00f51890
SS
996 (mapcar #'(lambda (x) (cons (symbol-name x) x))
997 (internal-lisp-face-attribute-values attribute))))
998 ((:foreground :background)
999 (mapcar #'(lambda (c) (cons c c))
1000 (defined-colors frame)))
1001 ((:height)
1002 'integerp)
1003 (:stipple
0db2e6af 1004 (and (memq (window-system frame) '(x ns)) ; No stipple on w32
00f51890
SS
1005 (mapcar #'list
1006 (apply #'nconc
1007 (mapcar (lambda (dir)
1008 (and (file-readable-p dir)
1009 (file-directory-p dir)
1010 (directory-files dir)))
1011 x-bitmap-file-path)))))
1012 (:inherit
1013 (cons '("none" . nil)
1014 (mapcar #'(lambda (c) (cons (symbol-name c) c))
1015 (face-list))))
1016 (t
1017 (error "Internal error")))))
19feb949 1018 (if (and (listp valid) (not (memq attribute '(:inherit))))
fbd5f1cc
GM
1019 (nconc (list (cons "unspecified" 'unspecified)) valid)
1020 valid)))
5f5c8ee5
GM
1021
1022
2f7f4bee 1023(defconst face-attribute-name-alist
5f5c8ee5 1024 '((:family . "font family")
fcea6e23 1025 (:foundry . "font foundry")
5f5c8ee5
GM
1026 (:width . "character set width")
1027 (:height . "height in 1/10 pt")
1028 (:weight . "weight")
1029 (:slant . "slant")
1030 (:underline . "underline")
1031 (:overline . "overline")
1032 (:strike-through . "strike-through")
1033 (:box . "box")
1034 (:inverse-video . "inverse-video display")
1035 (:foreground . "foreground color")
1036 (:background . "background color")
19feb949
MB
1037 (:stipple . "background stipple")
1038 (:inherit . "inheritance"))
5f5c8ee5
GM
1039 "An alist of descriptive names for face attributes.
1040Each element has the form (ATTRIBUTE-NAME . DESCRIPTION) where
1041ATTRIBUTE-NAME is a face attribute name (a keyword symbol), and
1042DESCRIPTION is a descriptive name for ATTRIBUTE-NAME.")
1043
1044
1045(defun face-descriptive-attribute-name (attribute)
1046 "Return a descriptive name for ATTRIBUTE."
1047 (cdr (assq attribute face-attribute-name-alist)))
1048
1049
1050(defun face-read-string (face default name &optional completion-alist)
1051 "Interactively read a face attribute string value.
19feb949
MB
1052FACE is the face whose attribute is read. If non-nil, DEFAULT is the
1053default string to return if no new value is entered. NAME is a
1054descriptive name of the attribute for prompting. COMPLETION-ALIST is an
1055alist of valid values, if non-nil.
5f5c8ee5 1056
19feb949 1057Entering nothing accepts the default string DEFAULT.
5f5c8ee5 1058Value is the new attribute value."
19feb949
MB
1059 ;; Capitalize NAME (we don't use `capitalize' because that capitalizes
1060 ;; each word in a string separately).
1061 (setq name (concat (upcase (substring name 0 1)) (substring name 1)))
5f5c8ee5
GM
1062 (let* ((completion-ignore-case t)
1063 (value (completing-read
1064 (if default
19feb949
MB
1065 (format "%s for face `%s' (default %s): "
1066 name face default)
1067 (format "%s for face `%s': " name face))
d69ab4ba 1068 completion-alist nil nil nil nil default)))
fbd5f1cc 1069 (if (equal value "") default value)))
5f5c8ee5
GM
1070
1071
1072(defun face-read-integer (face default name)
1073 "Interactively read an integer face attribute value.
1074FACE is the face whose attribute is read. DEFAULT is the default
1075value to return if no new value is entered. NAME is a descriptive
1076name of the attribute for prompting. Value is the new attribute value."
fbd5f1cc
GM
1077 (let ((new-value
1078 (face-read-string face
19feb949 1079 (format "%s" default)
fbd5f1cc
GM
1080 name
1081 (list (cons "unspecified" 'unspecified)))))
19feb949
MB
1082 (cond ((equal new-value "unspecified")
1083 'unspecified)
1084 ((member new-value '("unspecified-fg" "unspecified-bg"))
1085 new-value)
1086 (t
027a4b6b 1087 (string-to-number new-value)))))
5f5c8ee5
GM
1088
1089
1090(defun read-face-attribute (face attribute &optional frame)
1091 "Interactively read a new value for FACE's ATTRIBUTE.
1092Optional argument FRAME nil or unspecified means read an attribute value
1093of a global face. Value is the new attribute value."
1094 (let* ((old-value (face-attribute face attribute frame))
1095 (attribute-name (face-descriptive-attribute-name attribute))
1096 (valid (face-valid-attribute-values attribute frame))
1097 new-value)
1098 ;; Represent complex attribute values as strings by printing them
1099 ;; out. Stipple can be a vector; (WIDTH HEIGHT DATA). Box can be
1100 ;; a list `(:width WIDTH :color COLOR)' or `(:width WIDTH :shadow
1101 ;; SHADOW)'.
1102 (when (and (or (eq attribute :stipple)
1103 (eq attribute :box))
1104 (or (consp old-value)
1105 (vectorp old-value)))
1106 (setq old-value (prin1-to-string old-value)))
1107 (cond ((listp valid)
19feb949
MB
1108 (let ((default
1109 (or (car (rassoc old-value valid))
1110 (format "%s" old-value))))
1111 (setq new-value
1112 (face-read-string face default attribute-name valid))
1113 (if (equal new-value default)
1114 ;; Nothing changed, so don't bother with all the stuff
1115 ;; below. In particular, this avoids a non-tty color
1116 ;; from being canonicalized for a tty when the user
1117 ;; just uses the default.
1118 (setq new-value old-value)
1119 ;; Terminal frames can support colors that don't appear
1120 ;; explicitly in VALID, using color approximation code
1121 ;; in tty-colors.el.
f9056dd9 1122 (when (and (memq attribute '(:foreground :background))
9e2a2647 1123 (not (memq (window-system frame) '(x w32 ns)))
f9056dd9
MB
1124 (not (member new-value
1125 '("unspecified"
1126 "unspecified-fg" "unspecified-bg"))))
4385f1b0 1127 (setq new-value (car (tty-color-desc new-value frame))))
f9056dd9
MB
1128 (when (assoc new-value valid)
1129 (setq new-value (cdr (assoc new-value valid)))))))
5f5c8ee5
GM
1130 ((eq valid 'integerp)
1131 (setq new-value (face-read-integer face old-value attribute-name)))
1132 (t (error "Internal error")))
1133 ;; Convert stipple and box value text we read back to a list or
1134 ;; vector if it looks like one. This makes the assumption that a
1135 ;; pixmap file name won't start with an open-paren.
1136 (when (and (or (eq attribute :stipple)
1137 (eq attribute :box))
1138 (stringp new-value)
1139 (string-match "^[[(]" new-value))
1140 (setq new-value (read new-value)))
1141 new-value))
1142
aa360da1
GM
1143(declare-function fontset-list "fontset.c" ())
1144(declare-function x-list-fonts "xfaces.c"
1145 (pattern &optional face frame maximum width))
5f5c8ee5
GM
1146
1147(defun read-face-font (face &optional frame)
1148 "Read the name of a font for FACE on FRAME.
522fb950 1149If optional argument FRAME is nil or omitted, use the selected frame."
5f5c8ee5 1150 (let ((completion-ignore-case t))
48ec9939 1151 (completing-read (format "Set font attributes of face `%s' from font: " face)
6b61353c 1152 (append (fontset-list) (x-list-fonts "*" nil frame)))))
5f5c8ee5
GM
1153
1154
1155(defun read-all-face-attributes (face &optional frame)
1156 "Interactively read all attributes for FACE.
522fb950 1157If optional argument FRAME is nil or omitted, use the selected frame.
5f5c8ee5
GM
1158Value is a property list of attribute names and new values."
1159 (let (result)
1160 (dolist (attribute face-attribute-name-alist result)
1161 (setq result (cons (car attribute)
1162 (cons (read-face-attribute face (car attribute) frame)
1163 result))))))
1164
7cd512f2 1165(defun modify-face (&optional face foreground background stipple
a61afeac 1166 bold-p italic-p underline inverse-p frame)
5f5c8ee5
GM
1167 "Modify attributes of faces interactively.
1168If optional argument FRAME is nil or omitted, modify the face used
7cd512f2
SM
1169for newly created frame, i.e. the global face.
1170For non-interactive use, `set-face-attribute' is preferred.
522fb950 1171When called from Lisp, if FACE is nil, all arguments but FRAME are ignored
7cd512f2 1172and the face and its settings are obtained by querying the user."
5f5c8ee5 1173 (interactive)
7cd512f2
SM
1174 (if face
1175 (set-face-attribute face frame
1176 :foreground (or foreground 'unspecified)
1177 :background (or background 'unspecified)
1178 :stipple stipple
1179 :bold bold-p
1180 :italic italic-p
a61afeac 1181 :underline underline
7cd512f2
SM
1182 :inverse-video inverse-p)
1183 (setq face (read-face-name "Modify face"))
5f5c8ee5
GM
1184 (apply #'set-face-attribute face frame
1185 (read-all-face-attributes face frame))))
1186
5f5c8ee5
GM
1187(defun read-face-and-attribute (attribute &optional frame)
1188 "Read face name and face attribute value.
1189ATTRIBUTE is the attribute whose new value is read.
1190FRAME nil or unspecified means read attribute value of global face.
1191Value is a list (FACE NEW-VALUE) where FACE is the face read
7cd512f2 1192\(a symbol), and NEW-VALUE is value read."
5f5c8ee5 1193 (cond ((eq attribute :font)
48ec9939 1194 (let* ((prompt "Set font-related attributes of face")
5f5c8ee5
GM
1195 (face (read-face-name prompt))
1196 (font (read-face-font face frame)))
1197 (list face font)))
1198 (t
1199 (let* ((attribute-name (face-descriptive-attribute-name attribute))
19feb949 1200 (prompt (format "Set %s of face" attribute-name))
5f5c8ee5
GM
1201 (face (read-face-name prompt))
1202 (new-value (read-face-attribute face attribute frame)))
1203 (list face new-value)))))
1204
1205
1206\f
1207;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1208;;; Listing faces.
1209;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1210
2f7f4bee 1211(defconst list-faces-sample-text
5f5c8ee5
GM
1212 "abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ"
1213 "*Text string to display as the sample text for `list-faces-display'.")
1214
1215
1216;; The name list-faces would be more consistent, but let's avoid a
1217;; conflict with Lucid, which uses that name differently.
1218
645a1038 1219(defvar help-xref-stack)
e2c11e3b 1220(defun list-faces-display (&optional regexp)
5f5c8ee5
GM
1221 "List all faces, using the same sample text in each.
1222The sample text is a string that comes from the variable
e2c11e3b
RS
1223`list-faces-sample-text'.
1224
1225If REGEXP is non-nil, list only those faces with names matching
1226this regular expression. When called interactively with a prefix
1227arg, prompt for a regular expression."
1228 (interactive (list (and current-prefix-arg
2aef0850 1229 (read-regexp "List faces matching regexp"))))
011131fd 1230 (let ((all-faces (zerop (length regexp)))
5f5c8ee5 1231 (frame (selected-frame))
011131fd
JB
1232 (max-length 0)
1233 faces line-format
84fe35f0 1234 disp-frame window face-name)
011131fd
JB
1235 ;; We filter and take the max length in one pass
1236 (setq faces
1237 (delq nil
1238 (mapcar (lambda (f)
1239 (let ((s (symbol-name f)))
1240 (when (or all-faces (string-match regexp s))
1241 (setq max-length (max (length s) max-length))
1242 f)))
1243 (sort (face-list) #'string-lessp))))
1244 (unless faces
1245 (error "No faces matching \"%s\"" regexp))
1246 (setq max-length (1+ max-length)
1247 line-format (format "%%-%ds" max-length))
b766be6a 1248 (with-help-window "*Faces*"
7fdbcd83 1249 (with-current-buffer standard-output
5f5c8ee5 1250 (setq truncate-lines t)
84fe35f0
DL
1251 (insert
1252 (substitute-command-keys
1253 (concat
1254 "Use "
53c80cf6 1255 (if (display-mouse-p) "\\[help-follow-mouse] or ")
32e33f60 1256 "\\[help-follow] on a face name to customize it\n"
46057f5f 1257 "or on its sample text for a description of the face.\n\n")))
84fe35f0 1258 (setq help-xref-stack nil)
e2c11e3b 1259 (dolist (face faces)
84fe35f0 1260 (setq face-name (symbol-name face))
011131fd 1261 (insert (format line-format face-name))
84fe35f0
DL
1262 ;; Hyperlink to a customization buffer for the face. Using
1263 ;; the help xref mechanism may not be the best way.
1264 (save-excursion
1265 (save-match-data
1266 (search-backward face-name)
35a0a8aa 1267 (setq help-xref-stack-item `(list-faces-display ,regexp))
a482f364
RS
1268 (help-xref-button 0 'help-customize-face face)))
1269 (let ((beg (point))
1270 (line-beg (line-beginning-position)))
5f5c8ee5 1271 (insert list-faces-sample-text)
84fe35f0
DL
1272 ;; Hyperlink to a help buffer for the face.
1273 (save-excursion
1274 (save-match-data
1275 (search-backward list-faces-sample-text)
8940232b 1276 (help-xref-button 0 'help-face face)))
5f5c8ee5
GM
1277 (insert "\n")
1278 (put-text-property beg (1- (point)) 'face face)
a482f364
RS
1279 ;; Make all face commands default to the proper face
1280 ;; anywhere in the line.
1281 (put-text-property line-beg (1- (point)) 'read-face-name face)
5f5c8ee5
GM
1282 ;; If the sample text has multiple lines, line up all of them.
1283 (goto-char beg)
1284 (forward-line 1)
1285 (while (not (eobp))
011131fd 1286 (insert-char ?\s max-length)
5f5c8ee5 1287 (forward-line 1))))
b766be6a 1288 (goto-char (point-min))))
5f5c8ee5
GM
1289 ;; If the *Faces* buffer appears in a different frame,
1290 ;; copy all the face definitions from FRAME,
1291 ;; so that the display will reflect the frame that was selected.
1292 (setq window (get-buffer-window (get-buffer "*Faces*") t))
1293 (setq disp-frame (if window (window-frame window)
1294 (car (frame-list))))
1295 (or (eq frame disp-frame)
1296 (let ((faces (face-list)))
1297 (while faces
1298 (copy-face (car faces) (car faces) frame disp-frame)
1299 (setq faces (cdr faces)))))))
1300
e2c11e3b 1301
5f5c8ee5
GM
1302(defun describe-face (face &optional frame)
1303 "Display the properties of face FACE on FRAME.
6afa5404 1304Interactively, FACE defaults to the faces of the character after point
a482f364
RS
1305and FRAME defaults to the selected frame.
1306
5f5c8ee5
GM
1307If the optional argument FRAME is given, report on face FACE in that frame.
1308If FRAME is t, report on the defaults for face FACE (for new frames).
1309If FRAME is omitted or nil, use the selected frame."
c91e692b 1310 (interactive (list (read-face-name "Describe face" 'default t)))
5f5c8ee5 1311 (let* ((attrs '((:family . "Family")
fcea6e23 1312 (:foundry . "Foundry")
5f5c8ee5
GM
1313 (:width . "Width")
1314 (:height . "Height")
1315 (:weight . "Weight")
1316 (:slant . "Slant")
1317 (:foreground . "Foreground")
1318 (:background . "Background")
1319 (:underline . "Underline")
1320 (:overline . "Overline")
1321 (:strike-through . "Strike-through")
1322 (:box . "Box")
1323 (:inverse-video . "Inverse")
b32631c8 1324 (:stipple . "Stipple")
0540dc5e
KH
1325 (:font . "Font")
1326 (:fontset . "Fontset")
25ac7b52 1327 (:inherit . "Inherit")))
5f5c8ee5
GM
1328 (max-width (apply #'max (mapcar #'(lambda (x) (length (cdr x)))
1329 attrs))))
32226619
JB
1330 (help-setup-xref (list #'describe-face face)
1331 (called-interactively-p 'interactive))
a482f364
RS
1332 (unless face
1333 (setq face 'default))
1334 (if (not (listp face))
1335 (setq face (list face)))
b766be6a 1336 (with-help-window (help-buffer)
7fdbcd83 1337 (with-current-buffer standard-output
a482f364 1338 (dolist (f face)
faa3d27b 1339 (if (stringp f) (setq f (intern f)))
0d3b1f4e
CY
1340 ;; We may get called for anonymous faces (i.e., faces
1341 ;; expressed using prop-value plists). Those can't be
1342 ;; usefully customized, so ignore them.
1343 (when (symbolp f)
1344 (insert "Face: " (symbol-name f))
1345 (if (not (facep f))
1346 (insert " undefined face.\n")
1347 (let ((customize-label "customize this face")
1348 file-name)
1349 (insert (concat " (" (propertize "sample" 'font-lock-face f) ")"))
1350 (princ (concat " (" customize-label ")\n"))
3446bfc8
GM
1351 ;; FIXME not sure how much of this belongs here, and
1352 ;; how much in `face-documentation'. The latter is
1353 ;; not used much, but needs to return nil for
1354 ;; undocumented faces.
1355 (let ((alias (get f 'face-alias))
1356 (face f)
1357 obsolete)
1358 (when alias
1359 (setq face alias)
1360 (insert
1361 (format "\n %s is an alias for the face `%s'.\n%s"
1362 f alias
1363 (if (setq obsolete (get f 'obsolete-face))
1364 (format " This face is obsolete%s; use `%s' instead.\n"
1365 (if (stringp obsolete)
1366 (format " since %s" obsolete)
1367 "")
1368 alias)
1369 ""))))
1370 (insert "\nDocumentation:\n"
1371 (or (face-documentation face)
1372 "Not documented as a face.")
1373 "\n\n"))
0d3b1f4e
CY
1374 (with-current-buffer standard-output
1375 (save-excursion
1376 (re-search-backward
1377 (concat "\\(" customize-label "\\)") nil t)
1378 (help-xref-button 1 'help-customize-face f)))
1379 (setq file-name (find-lisp-object-file-name f 'defface))
1380 (when file-name
1381 (princ "Defined in `")
1382 (princ (file-name-nondirectory file-name))
1383 (princ "'")
1384 ;; Make a hyperlink to the library.
1385 (save-excursion
1386 (re-search-backward "`\\([^`']+\\)'" nil t)
1387 (help-xref-button 1 'help-face-def f file-name))
1388 (princ ".")
1389 (terpri)
1390 (terpri))
1391 (dolist (a attrs)
1392 (let ((attr (face-attribute f (car a) frame)))
1393 (insert (make-string (- max-width (length (cdr a))) ?\s)
1394 (cdr a) ": " (format "%s" attr))
1395 (if (and (eq (car a) :inherit)
1396 (not (eq attr 'unspecified)))
1397 ;; Make a hyperlink to the parent face.
1398 (save-excursion
1399 (re-search-backward ": \\([^:]+\\)" nil t)
1400 (help-xref-button 1 'help-face attr)))
1401 (insert "\n")))))
1402 (terpri)))))))
8940232b 1403
5f5c8ee5
GM
1404\f
1405;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1406;;; Face specifications (defface).
1407;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1408
1409;; Parameter FRAME Is kept for call compatibility to with previous
1410;; face implementation.
1411
1412(defun face-attr-construct (face &optional frame)
522fb950 1413 "Return a `defface'-style attribute list for FACE on FRAME.
5f5c8ee5
GM
1414Value is a property list of pairs ATTRIBUTE VALUE for all specified
1415face attributes of FACE where ATTRIBUTE is the attribute name and
1416VALUE is the specified value of that attribute."
1417 (let (result)
1418 (dolist (entry face-attribute-name-alist result)
1419 (let* ((attribute (car entry))
1420 (value (face-attribute face attribute)))
1421 (unless (eq value 'unspecified)
1422 (setq result (nconc (list attribute value) result)))))))
00f51890 1423
5f5c8ee5
GM
1424
1425(defun face-spec-set-match-display (display frame)
1426 "Non-nil if DISPLAY matches FRAME.
1427DISPLAY is part of a spec such as can be used in `defface'.
1428If FRAME is nil, the current FRAME is used."
1429 (let* ((conjuncts display)
1430 conjunct req options
1431 ;; t means we have succeeded against all the conjuncts in
1432 ;; DISPLAY that have been tested so far.
1433 (match t))
1434 (if (eq conjuncts t)
1435 (setq conjuncts nil))
1436 (while (and conjuncts match)
1437 (setq conjunct (car conjuncts)
1438 conjuncts (cdr conjuncts)
1439 req (car conjunct)
1440 options (cdr conjunct)
1441 match (cond ((eq req 'type)
428a555e 1442 (or (memq (window-system frame) options)
1695ca2b
EZ
1443 ;; FIXME: This should be revisited to use
1444 ;; display-graphic-p, provided that the
1445 ;; color selection depends on the number
1446 ;; of supported colors, and all defface's
1447 ;; are changed to look at number of colors
1448 ;; instead of (type graphic) etc.
428a555e 1449 (and (null (window-system frame))
1695ca2b 1450 (memq 'tty options))
ee716db5
GM
1451 (and (memq 'motif options)
1452 (featurep 'motif))
9b44aa8b
JD
1453 (and (memq 'gtk options)
1454 (featurep 'gtk))
ee716db5
GM
1455 (and (memq 'lucid options)
1456 (featurep 'x-toolkit)
9b44aa8b
JD
1457 (not (featurep 'motif))
1458 (not (featurep 'gtk)))
ee716db5
GM
1459 (and (memq 'x-toolkit options)
1460 (featurep 'x-toolkit))))
6b61353c
KH
1461 ((eq req 'min-colors)
1462 (>= (display-color-cells frame) (car options)))
5f5c8ee5
GM
1463 ((eq req 'class)
1464 (memq (frame-parameter frame 'display-type) options))
1465 ((eq req 'background)
1466 (memq (frame-parameter frame 'background-mode)
1467 options))
16320ac7
MB
1468 ((eq req 'supports)
1469 (display-supports-face-attributes-p options frame))
70d0c3b0 1470 (t (error "Unknown req `%S' with options `%S'"
5f5c8ee5
GM
1471 req options)))))
1472 match))
1473
1474
1475(defun face-spec-choose (spec &optional frame)
96c2938f
MB
1476 "Choose the proper attributes for FRAME, out of SPEC.
1477If SPEC is nil, return nil."
5f5c8ee5
GM
1478 (unless frame
1479 (setq frame (selected-frame)))
1480 (let ((tail spec)
cf459bb7 1481 result defaults)
5f5c8ee5 1482 (while tail
073f69e6
MB
1483 (let* ((entry (pop tail))
1484 (display (car entry))
cf459bb7
RS
1485 (attrs (cdr entry))
1486 thisval)
1487 ;; Get the attributes as actually specified by this alternative.
1488 (setq thisval
1489 (if (null (cdr attrs)) ;; was (listp (car attrs))
1490 ;; Old-style entry, the attribute list is the
1491 ;; first element.
1492 (car attrs)
1493 attrs))
1494
1495 ;; If the condition is `default', that sets the default
1496 ;; for following conditions.
1497 (if (eq display 'default)
1498 (setq defaults thisval)
1499 ;; Otherwise, if it matches, use it.
1500 (when (face-spec-set-match-display display frame)
1501 (setq result thisval)
b6b90dfc 1502 (setq tail nil)))))
cf459bb7 1503 (if defaults (append result defaults) result)))
5f5c8ee5
GM
1504
1505
1506(defun face-spec-reset-face (face &optional frame)
1507 "Reset all attributes of FACE on FRAME to unspecified."
4983ddea
CY
1508 (let (reset-args)
1509 (dolist (attr-and-name face-attribute-name-alist)
1510 (push 'unspecified reset-args)
1511 (push (car attr-and-name) reset-args))
1512 (apply 'set-face-attribute face frame reset-args)))
5f5c8ee5 1513
24837f13 1514(defun face-spec-set (face spec &optional for-defface)
a1792b9b 1515 "Set FACE's face spec, which controls its appearance, to SPEC.
24837f13
RS
1516If FOR-DEFFACE is t, set the base spec, the one that `defface'
1517 and Custom set. (In that case, the caller must put it in the
1518 appropriate property, because that depends on the caller.)
1519If FOR-DEFFACE is nil, set the overriding spec (and store it
1520 in the `face-override-spec' property of FACE).
1521
1522The appearance of FACE is controlled by the base spec,
1523by any custom theme specs on top of that, and by the
a1792b9b 1524overriding spec on top of all the rest.
24837f13
RS
1525
1526FOR-DEFFACE can also be a frame, in which case we set the
1527frame-specific attributes of FACE for that frame based on SPEC.
1528That usage is deprecated.
1529
1530See `defface' for information about the format and meaning of SPEC."
1531 (if (framep for-defface)
1532 ;; Handle the deprecated case where third arg is a frame.
1533 (face-spec-set-2 face for-defface spec)
1534 (if for-defface
1535 ;; When we reset the face based on its custom spec, then it is
1536 ;; unmodified as far as Custom is concerned.
1537 (put (or (get face 'face-alias) face) 'face-modified nil)
1538 ;; When we change a face based on a spec from outside custom,
1539 ;; record it for future frames.
1540 (put (or (get face 'face-alias) face) 'face-override-spec spec))
24837f13 1541 ;; Reset each frame according to the rules implied by all its specs.
01d2eac8 1542 (dolist (frame (frame-list))
24837f13
RS
1543 (face-spec-recalc face frame))))
1544
1545(defun face-spec-recalc (face frame)
1546 "Reset the face attributes of FACE on FRAME according to its specs.
1547This applies the defface/custom spec first, then the custom theme specs,
1548then the override spec."
1549 (face-spec-reset-face face frame)
1550 (let ((face-sym (or (get face 'face-alias) face)))
7ecc4011
CY
1551 (or (get face 'customized-face)
1552 (get face 'saved-face)
1553 (face-spec-set-2 face frame (face-default-spec face)))
24837f13
RS
1554 (let ((theme-faces (reverse (get face-sym 'theme-face))))
1555 (dolist (spec theme-faces)
1556 (face-spec-set-2 face frame (cadr spec))))
1557 (face-spec-set-2 face frame (get face-sym 'face-override-spec))))
1558
1559(defun face-spec-set-2 (face frame spec)
1560 "Set the face attributes of FACE on FRAME according to SPEC."
4f77c25d
CY
1561 (let* ((spec (face-spec-choose spec frame))
1562 attrs)
1563 (while spec
1564 (when (assq (car spec) face-x-resources)
1565 (push (car spec) attrs)
1566 (push (cadr spec) attrs))
1567 (setq spec (cddr spec)))
1568 (apply 'set-face-attribute face frame (nreverse attrs))))
5f5c8ee5
GM
1569
1570(defun face-attr-match-p (face attrs &optional frame)
a9de7d29 1571 "Return t if attributes of FACE match values in plist ATTRS.
5f5c8ee5
GM
1572Optional parameter FRAME is the frame whose definition of FACE
1573is used. If nil or omitted, use the selected frame."
1574 (unless frame
1575 (setq frame (selected-frame)))
1576 (let ((list face-attribute-name-alist)
1577 (match t))
4983ddea
CY
1578 (while (and match list)
1579 (let* ((attr (caar list))
a9de7d29
MB
1580 (specified-value
1581 (if (plist-member attrs attr)
1582 (plist-get attrs attr)
1583 'unspecified))
5f5c8ee5 1584 (value-now (face-attribute face attr frame)))
a9de7d29 1585 (setq match (equal specified-value value-now))
5f5c8ee5
GM
1586 (setq list (cdr list))))
1587 match))
1588
4983ddea 1589(defsubst face-spec-match-p (face spec &optional frame)
5f5c8ee5
GM
1590 "Return t if FACE, on FRAME, matches what SPEC says it should look like."
1591 (face-attr-match-p face (face-spec-choose spec frame) frame))
1592
94fe8a31 1593(defsubst face-default-spec (face)
96c2938f
MB
1594 "Return the default face-spec for FACE, ignoring any user customization.
1595If there is no default for FACE, return nil."
1596 (get face 'face-defface-spec))
5f5c8ee5 1597
94fe8a31
MB
1598(defsubst face-user-default-spec (face)
1599 "Return the user's customized face-spec for FACE, or the default if none.
7cd512f2 1600If there is neither a user setting nor a default for FACE, return nil."
e44d251c
JL
1601 (or (get face 'customized-face)
1602 (get face 'saved-face)
94fe8a31
MB
1603 (face-default-spec face)))
1604
5f5c8ee5 1605\f
f795f633
EZ
1606;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1607;;; Frame-type independent color support.
1608;;; We keep the old x-* names as aliases for back-compatibility.
1609;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1610
1611(defun defined-colors (&optional frame)
1612 "Return a list of colors supported for a particular frame.
1613The argument FRAME specifies which frame to try.
1614The value may be different for frames on different display types.
43c58260
RS
1615If FRAME doesn't support colors, the value is nil.
1616If FRAME is nil, that stands for the selected frame."
9e2a2647 1617 (if (memq (framep (or frame (selected-frame))) '(x w32 ns))
f795f633 1618 (xw-defined-colors frame)
37462f4c 1619 (mapcar 'car (tty-color-alist frame))))
f795f633
EZ
1620(defalias 'x-defined-colors 'defined-colors)
1621
aa360da1
GM
1622(declare-function xw-color-defined-p "xfns.c" (color &optional frame))
1623
f795f633
EZ
1624(defun color-defined-p (color &optional frame)
1625 "Return non-nil if color COLOR is supported on frame FRAME.
1626If FRAME is omitted or nil, use the selected frame.
293b4814
EZ
1627If COLOR is the symbol `unspecified' or one of the strings
1628\"unspecified-fg\" or \"unspecified-bg\", the value is nil."
1e221c16 1629 (if (member color '(unspecified "unspecified-bg" "unspecified-fg"))
f795f633 1630 nil
9e2a2647 1631 (if (member (framep (or frame (selected-frame))) '(x w32 ns))
f795f633 1632 (xw-color-defined-p color frame)
37462f4c 1633 (numberp (tty-color-translate color frame)))))
f795f633
EZ
1634(defalias 'x-color-defined-p 'color-defined-p)
1635
aa360da1
GM
1636(declare-function xw-color-values "xfns.c" (color &optional frame))
1637
f795f633
EZ
1638(defun color-values (color &optional frame)
1639 "Return a description of the color named COLOR on frame FRAME.
22bbca61
JB
1640The value is a list of integer RGB values--(RED GREEN BLUE).
1641These values appear to range from 0 to 65280 or 65535, depending
1642on the system; white is \(65280 65280 65280\) or \(65535 65535 65535\).
f795f633
EZ
1643If FRAME is omitted or nil, use the selected frame.
1644If FRAME cannot display COLOR, the value is nil.
293b4814
EZ
1645If COLOR is the symbol `unspecified' or one of the strings
1646\"unspecified-fg\" or \"unspecified-bg\", the value is nil."
1e221c16 1647 (if (member color '(unspecified "unspecified-fg" "unspecified-bg"))
f795f633 1648 nil
9e2a2647 1649 (if (memq (framep (or frame (selected-frame))) '(x w32 ns))
f795f633
EZ
1650 (xw-color-values color frame)
1651 (tty-color-values color frame))))
1652(defalias 'x-color-values 'color-values)
1653
aa360da1
GM
1654(declare-function xw-display-color-p "xfns.c" (&optional terminal))
1655
f795f633
EZ
1656(defun display-color-p (&optional display)
1657 "Return t if DISPLAY supports color.
1658The optional argument DISPLAY specifies which display to ask about.
1659DISPLAY should be either a frame or a display name (a string).
1660If omitted or nil, that stands for the selected frame's display."
9e2a2647 1661 (if (memq (framep-on-display display) '(x w32 ns))
d5179a01
EZ
1662 (xw-display-color-p display)
1663 (tty-display-color-p display)))
f795f633
EZ
1664(defalias 'x-display-color-p 'display-color-p)
1665
aa360da1
GM
1666(declare-function x-display-grayscale-p "xfns.c" (&optional terminal))
1667
d5179a01
EZ
1668(defun display-grayscale-p (&optional display)
1669 "Return non-nil if frames on DISPLAY can display shades of gray."
1670 (let ((frame-type (framep-on-display display)))
1671 (cond
9e2a2647 1672 ((memq frame-type '(x w32 ns))
d5179a01
EZ
1673 (x-display-grayscale-p display))
1674 (t
1675 (> (tty-color-gray-shades display) 2)))))
1676
9317e499
CY
1677(defun read-color (&optional prompt convert-to-RGB allow-empty-name msg)
1678 "Read a color name or RGB triplet of the form \"#RRRRGGGGBBBB\".
1679Completion is available for color names, but not for RGB triplets.
1680
1681RGB triplets have the form #XXXXXXXXXXXX, where each X is a hex
1682digit. The number of Xs must be a multiple of 3, with the same
1683number of Xs for each of red, green, and blue. The order is red,
1684green, blue.
1685
1686In addition to standard color names and RGB hex values, the
1687following are available as color candidates. In each case, the
1688corresponding color is used.
26c07a69
RS
1689
1690 * `foreground at point' - foreground under the cursor
1691 * `background at point' - background under the cursor
1692
9317e499 1693Optional arg PROMPT is the prompt; if nil, use a default prompt.
26c07a69 1694
9317e499
CY
1695Interactively, or with optional arg CONVERT-TO-RGB-P non-nil,
1696convert an input color name to an RGB hex string. Return the RGB
1697hex string.
26c07a69 1698
9317e499
CY
1699If optional arg ALLOW-EMPTY-NAME is non-nil, the user is allowed
1700to enter an empty color name (the empty string).
26c07a69 1701
9317e499
CY
1702Interactively, or with optional arg MSG non-nil, print the
1703resulting color name in the echo area."
26c07a69
RS
1704 (interactive "i\np\ni\np") ; Always convert to RGB interactively.
1705 (let* ((completion-ignore-case t)
9317e499
CY
1706 (colors (or facemenu-color-alist
1707 (append '("foreground at point" "background at point")
1708 (if allow-empty-name '(""))
1709 (defined-colors))))
1710 (color (completing-read
1711 (or prompt "Color (name or #RGB triplet): ")
1712 ;; Completing function for reading colors, accepting
1713 ;; both color names and RGB triplets.
1714 (lambda (string pred flag)
1715 (cond
1716 ((null flag) ; Try completion.
1717 (or (try-completion string colors pred)
1718 (if (color-defined-p string)
1719 string)))
1720 ((eq flag t) ; List all completions.
1721 (or (all-completions string colors pred)
1722 (if (color-defined-p string)
1723 (list string))))
1724 ((eq flag 'lambda) ; Test completion.
1725 (or (memq string colors)
1726 (color-defined-p string)))))
1727 nil t))
1728 hex-string)
1729
1730 ;; Process named colors.
1731 (when (member color colors)
1732 (cond ((string-equal color "foreground at point")
1733 (setq color (foreground-color-at-point)))
1734 ((string-equal color "background at point")
1735 (setq color (background-color-at-point))))
1736 (when (and convert-to-RGB
1737 (not (string-equal color "")))
1738 (let ((components (x-color-values color)))
1739 (unless (string-match "^#\\([a-fA-F0-9][a-fA-F0-9][a-fA-F0-9]\\)+$" color)
1740 (setq color (format "#%04X%04X%04X"
1741 (logand 65535 (nth 0 components))
1742 (logand 65535 (nth 1 components))
1743 (logand 65535 (nth 2 components))))))))
1744 (when msg (message "Color: `%s'" color))
1745 color))
1746
26c07a69
RS
1747
1748(defun face-at-point ()
1749 "Return the face of the character after point.
1750If it has more than one face, return the first one.
1751Return nil if it has no specified face."
1752 (let* ((faceprop (or (get-char-property (point) 'read-face-name)
1753 (get-char-property (point) 'face)
1754 'default))
1755 (face (cond ((symbolp faceprop) faceprop)
1756 ;; List of faces (don't treat an attribute spec).
1757 ;; Just use the first face.
1758 ((and (consp faceprop) (not (keywordp (car faceprop)))
1759 (not (memq (car faceprop)
1760 '(foreground-color background-color))))
1761 (car faceprop))
1762 (t nil)))) ; Invalid face value.
1763 (if (facep face) face nil)))
1764
1765(defun foreground-color-at-point ()
1766 "Return the foreground color of the character after point."
1767 ;; `face-at-point' alone is not sufficient. It only gets named faces.
1768 ;; Need also pick up any face properties that are not associated with named faces.
1769 (let ((face (or (face-at-point)
1770 (get-char-property (point) 'read-face-name)
1771 (get-char-property (point) 'face))))
1772 (cond ((and face (symbolp face))
1773 (let ((value (face-foreground face nil 'default)))
1774 (if (member value '("unspecified-fg" "unspecified-bg"))
1775 nil
1776 value)))
1777 ((consp face)
1778 (cond ((memq 'foreground-color face) (cdr (memq 'foreground-color face)))
1779 ((memq ':foreground face) (cadr (memq ':foreground face)))))
1780 (t nil)))) ; Invalid face value.
1781
1782(defun background-color-at-point ()
1783 "Return the background color of the character after point."
1784 ;; `face-at-point' alone is not sufficient. It only gets named faces.
1785 ;; Need also pick up any face properties that are not associated with named faces.
1786 (let ((face (or (face-at-point)
1787 (get-char-property (point) 'read-face-name)
1788 (get-char-property (point) 'face))))
1789 (cond ((and face (symbolp face))
1790 (let ((value (face-background face nil 'default)))
1791 (if (member value '("unspecified-fg" "unspecified-bg"))
1792 nil
1793 value)))
1794 ((consp face)
1795 (cond ((memq 'background-color face) (cdr (memq 'background-color face)))
1796 ((memq ':background face) (cadr (memq ':background face)))))
1797 (t nil)))) ; Invalid face value.
f795f633 1798\f
5f5c8ee5
GM
1799;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1800;;; Background mode.
1801;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1802
1803(defcustom frame-background-mode nil
9201cc28 1804 "The brightness of the background.
e44d251c 1805Set this to the symbol `dark' if your background color is dark,
d4c6530f
JL
1806`light' if your background is light, or nil (automatic by default)
1807if you want Emacs to examine the brightness for you. Don't set this
1808variable with `setq'; this won't have the expected effect."
5f5c8ee5
GM
1809 :group 'faces
1810 :set #'(lambda (var value)
c20d5073 1811 (set-default var value)
b5325e78 1812 (mapc 'frame-set-background-mode (frame-list)))
5f5c8ee5 1813 :initialize 'custom-initialize-changed
d4c6530f
JL
1814 :type '(choice (const dark)
1815 (const light)
1816 (const :tag "automatic" nil)))
5f5c8ee5
GM
1817
1818
aa360da1
GM
1819(declare-function x-get-resource "frame.c"
1820 (attribute class &optional component subclass))
1821
2d0e0565
CY
1822(defvar inhibit-frame-set-background-mode nil)
1823
4983ddea 1824(defun frame-set-background-mode (frame &optional keep-face-specs)
d8abcd91
MB
1825 "Set up display-dependent faces on FRAME.
1826Display-dependent faces are those which have different definitions
4983ddea
CY
1827according to the `background-mode' and `display-type' frame parameters.
1828
1829If optional arg KEEP-FACE-SPECS is non-nil, don't recalculate
1830face specs for the new background mode."
2d0e0565
CY
1831 (unless inhibit-frame-set-background-mode
1832 (let* ((bg-resource
1833 (and (window-system frame)
1834 (x-get-resource "backgroundMode" "BackgroundMode")))
1835 (bg-color (frame-parameter frame 'background-color))
1836 (terminal-bg-mode (terminal-parameter frame 'background-mode))
1837 (tty-type (tty-type frame))
df93e513
JR
1838 (default-bg-mode
1839 (if (or (window-system frame)
1840 (and tty-type
1841 (string-match "^\\(xterm\\|\\rxvt\\|dtterm\\|eterm\\)"
1842 tty-type)))
1843 'light
1844 'dark))
1845 (non-default-bg-mode (if (eq default-bg-mode 'light) 'dark 'light))
2d0e0565
CY
1846 (bg-mode
1847 (cond (frame-background-mode)
1848 (bg-resource (intern (downcase bg-resource)))
1849 (terminal-bg-mode)
2d0e0565 1850 ((equal bg-color "unspecified-fg") ; inverted colors
df93e513
JR
1851 non-default-bg-mode)
1852 ((not (color-values bg-color frame))
1853 default-bg-mode)
2d0e0565
CY
1854 ((>= (apply '+ (color-values bg-color frame))
1855 ;; Just looking at the screen, colors whose
1856 ;; values add up to .6 of the white total
1857 ;; still look dark to me.
1858 (* (apply '+ (color-values "white" frame)) .6))
1859 'light)
1860 (t 'dark)))
1861 (display-type
1862 (cond ((null (window-system frame))
1863 (if (tty-display-color-p frame) 'color 'mono))
1864 ((display-color-p frame)
1865 'color)
1866 ((x-display-grayscale-p frame)
1867 'grayscale)
1868 (t 'mono)))
1869 (old-bg-mode
1870 (frame-parameter frame 'background-mode))
1871 (old-display-type
1872 (frame-parameter frame 'display-type)))
1873
1874 (unless (and (eq bg-mode old-bg-mode) (eq display-type old-display-type))
1875 (let ((locally-modified-faces nil)
1876 ;; Prevent face-spec-recalc from calling this function
1877 ;; again, resulting in a loop (bug#911).
4983ddea
CY
1878 (inhibit-frame-set-background-mode t)
1879 (params (list (cons 'background-mode bg-mode)
1880 (cons 'display-type display-type))))
1881 (if keep-face-specs
1882 (modify-frame-parameters frame params)
1883 ;; If we are recomputing face specs, first collect a list
1884 ;; of faces that don't match their face-specs. These are
1885 ;; the faces modified on FRAME, and we avoid changing them
1886 ;; below. Use a negative list to avoid consing (we assume
1887 ;; most faces are unmodified).
1888 (dolist (face (face-list))
1889 (and (not (get face 'face-override-spec))
1890 (not (face-spec-match-p face
1891 (face-user-default-spec face)
1892 (selected-frame)))
1893 (push face locally-modified-faces)))
1894 ;; Now change to the new frame parameters
1895 (modify-frame-parameters frame params)
1896 ;; For all unmodified named faces, choose face specs
1897 ;; matching the new frame parameters.
1898 (dolist (face (face-list))
1899 (unless (memq face locally-modified-faces)
1900 (face-spec-recalc face frame)))))))))
5f5c8ee5 1901
5f5c8ee5
GM
1902\f
1903;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1904;;; Frame creation.
1905;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1906
aa360da1
GM
1907(declare-function x-parse-geometry "frame.c" (string))
1908
5f5c8ee5
GM
1909(defun x-handle-named-frame-geometry (parameters)
1910 "Add geometry parameters for a named frame to parameter list PARAMETERS.
1911Value is the new parameter list."
e8a2b2da 1912 ;; Note that `x-resource-name' has a global meaning.
c1ef4455 1913 (let ((x-resource-name (cdr (assq 'name parameters))))
e8a2b2da
CY
1914 (when x-resource-name
1915 ;; Before checking X resources, we must have an X connection.
1916 (or (window-system)
1917 (x-display-list)
1918 (x-open-connection (or (cdr (assq 'display parameters))
1919 x-display-name)))
1920 (let (res-geometry parsed)
1921 (and (setq res-geometry (x-get-resource "geometry" "Geometry"))
1922 (setq parsed (x-parse-geometry res-geometry))
1923 (setq parameters
c1ef4455 1924 (append parameters parsed
e8a2b2da
CY
1925 ;; If the resource specifies a position,
1926 ;; take note of that.
1927 (if (or (assq 'top parsed) (assq 'left parsed))
1928 '((user-position . t) (user-size . t)))))))))
1929 parameters)
5f5c8ee5
GM
1930
1931
1932(defun x-handle-reverse-video (frame parameters)
1933 "Handle the reverse-video frame parameter and X resource.
1934`x-create-frame' does not handle this one."
1935 (when (cdr (or (assq 'reverse parameters)
5f5c8ee5
GM
1936 (let ((resource (x-get-resource "reverseVideo"
1937 "ReverseVideo")))
1938 (if resource
1939 (cons nil (member (downcase resource)
1940 '("on" "true")))))))
1941 (let* ((params (frame-parameters frame))
1942 (bg (cdr (assq 'foreground-color params)))
1943 (fg (cdr (assq 'background-color params))))
1944 (modify-frame-parameters frame
1945 (list (cons 'foreground-color fg)
1946 (cons 'background-color bg)))
1947 (if (equal bg (cdr (assq 'border-color params)))
1948 (modify-frame-parameters frame
1949 (list (cons 'border-color fg))))
1950 (if (equal bg (cdr (assq 'mouse-color params)))
1951 (modify-frame-parameters frame
1952 (list (cons 'mouse-color fg))))
1953 (if (equal bg (cdr (assq 'cursor-color params)))
1954 (modify-frame-parameters frame
1955 (list (cons 'cursor-color fg)))))))
1956
aa360da1 1957(declare-function x-create-frame "xfns.c" (parms))
c8ccffb1 1958(declare-function x-setup-function-keys "term/common-win" (frame))
5f5c8ee5
GM
1959
1960(defun x-create-frame-with-faces (&optional parameters)
c1ef4455
CY
1961 "Create and return a frame with frame parameters PARAMETERS.
1962If PARAMETERS specify a frame name, handle X geometry resources
1963for that name. If PARAMETERS includes a `reverse' parameter, or
1964the X resource ``reverseVideo'' is present, handle that."
5f5c8ee5 1965 (setq parameters (x-handle-named-frame-geometry parameters))
41e6403e
CY
1966 (let* ((params (copy-tree parameters))
1967 (visibility-spec (assq 'visibility parameters))
1968 (delayed-params '(foreground-color background-color font
1969 border-color cursor-color mouse-color
1970 visibility scroll-bar-foreground
1971 scroll-bar-background))
1972 frame success)
1973 (dolist (param delayed-params)
1974 (setq params (assq-delete-all param params)))
1975 (setq frame (x-create-frame `((visibility . nil) . ,params)))
5f5c8ee5
GM
1976 (unwind-protect
1977 (progn
2bb819d5 1978 (x-setup-function-keys frame)
5f5c8ee5 1979 (x-handle-reverse-video frame parameters)
4983ddea 1980 (frame-set-background-mode frame t)
fa7015f4 1981 (face-set-after-frame-default frame parameters)
095fe281 1982 (if (null visibility-spec)
5f5c8ee5
GM
1983 (make-frame-visible frame)
1984 (modify-frame-parameters frame (list visibility-spec)))
1985 (setq success t))
1986 (unless success
1987 (delete-frame frame)))
1988 frame))
1989
fa7015f4
CY
1990(defun face-set-after-frame-default (frame &optional parameters)
1991 "Initialize the frame-local faces of FRAME.
1992Calculate the face definitions using the face specs, custom theme
41e6403e 1993settings, X resources, and `face-new-frame-defaults'.
fa7015f4 1994Finally, apply any relevant face attributes found amongst the
c1ef4455 1995frame parameters in PARAMETERS."
4983ddea
CY
1996 (let ((window-system-p (memq (window-system frame) '(x w32))))
1997 (dolist (face (nreverse (face-list))) ;Why reverse? --Stef
1998 (condition-case ()
1999 (progn
2000 ;; Initialize faces from face spec and custom theme.
2001 (face-spec-recalc face frame)
2002 ;; X resouces for the default face are applied during
2003 ;; `x-create-frame'.
2004 (and (not (eq face 'default)) window-system-p
2005 (make-face-x-resource-internal face frame))
2006 ;; Apply attributes specified by face-new-frame-defaults
2007 (internal-merge-in-global-face face frame))
2008 ;; Don't let invalid specs prevent frame creation.
2009 (error nil))))
2010
fa7015f4 2011 ;; Apply attributes specified by frame parameters.
8db9c5ee 2012 (let ((face-params '((foreground-color default :foreground)
fa7015f4
CY
2013 (background-color default :background)
2014 (font default :font)
2015 (border-color border :background)
2016 (cursor-color cursor :background)
2017 (scroll-bar-foreground scroll-bar :foreground)
2018 (scroll-bar-background scroll-bar :background)
2019 (mouse-color mouse :background))))
8db9c5ee 2020 (dolist (param face-params)
fa7015f4 2021 (let* ((param-name (nth 0 param))
c1ef4455 2022 (value (cdr (assq param-name parameters))))
fa7015f4
CY
2023 (if value
2024 (set-face-attribute (nth 1 param) frame
2025 (nth 2 param) value))))))
5f5c8ee5 2026
53990c84
EZ
2027(defun tty-handle-reverse-video (frame parameters)
2028 "Handle the reverse-video frame parameter for terminal frames."
c1ef4455 2029 (when (cdr (assq 'reverse parameters))
53990c84
EZ
2030 (let* ((params (frame-parameters frame))
2031 (bg (cdr (assq 'foreground-color params)))
2032 (fg (cdr (assq 'background-color params))))
2033 (modify-frame-parameters frame
2034 (list (cons 'foreground-color fg)
2035 (cons 'background-color bg)))
2036 (if (equal bg (cdr (assq 'mouse-color params)))
2037 (modify-frame-parameters frame
2038 (list (cons 'mouse-color fg))))
2039 (if (equal bg (cdr (assq 'cursor-color params)))
2040 (modify-frame-parameters frame
2041 (list (cons 'cursor-color fg)))))))
2042
5f5c8ee5
GM
2043
2044(defun tty-create-frame-with-faces (&optional parameters)
c1ef4455
CY
2045 "Create and return a frame from optional frame parameters PARAMETERS.
2046If PARAMETERS contains a `reverse' parameter, handle that."
5f5c8ee5
GM
2047 (let ((frame (make-terminal-frame parameters))
2048 success)
2049 (unwind-protect
061e4e7f 2050 (with-selected-frame frame
53990c84 2051 (tty-handle-reverse-video frame (frame-parameters frame))
cd85984a 2052
8782c744
SM
2053 (unless (terminal-parameter frame 'terminal-initted)
2054 (set-terminal-parameter frame 'terminal-initted t)
2055 (set-locale-environment nil frame)
2056 (tty-run-terminal-initialization frame))
4983ddea 2057 (frame-set-background-mode frame t)
fa7015f4 2058 (face-set-after-frame-default frame parameters)
5f5c8ee5
GM
2059 (setq success t))
2060 (unless success
2061 (delete-frame frame)))
2062 frame))
465fceed 2063
b34c34da
KL
2064(defun tty-find-type (pred type)
2065 "Return the longest prefix of TYPE to which PRED returns non-nil.
2066TYPE should be a tty type name such as \"xterm-16color\".
2067
2068The function tries only those prefixes that are followed by a
2069dash or underscore in the original type name, like \"xterm\" in
2070the above example."
2071 (let (hyphend)
2072 (while (and type
2073 (not (funcall pred type)))
2074 ;; Strip off last hyphen and what follows, then try again
2075 (setq type
2076 (if (setq hyphend (string-match "[-_][^-_]+$" type))
2077 (substring type 0 hyphend)
2078 nil))))
2079 type)
2080
8cbd7bed
KL
2081(defun tty-run-terminal-initialization (frame &optional type)
2082 "Run the special initialization code for the terminal type of FRAME.
2083The optional TYPE parameter may be used to override the autodetected
2084terminal type to a different value."
2085 (setq type (or type (tty-type frame)))
cd85984a
KL
2086 ;; Load library for our terminal type.
2087 ;; User init file can set term-file-prefix to nil to prevent this.
2088 (with-selected-frame frame
8782c744 2089 (unless (null term-file-prefix)
b34c34da
KL
2090 (let* (term-init-func)
2091 ;; First, load the terminal initialization file, if it is
2092 ;; available and it hasn't been loaded already.
2093 (tty-find-type #'(lambda (type)
2094 (let ((file (locate-library (concat term-file-prefix type))))
2095 (and file
2096 (or (assoc file load-history)
2097 (load file t t)))))
8cbd7bed 2098 type)
b34c34da
KL
2099 ;; Next, try to find a matching initialization function, and call it.
2100 (tty-find-type #'(lambda (type)
2101 (fboundp (setq term-init-func
2102 (intern (concat "terminal-init-" type)))))
8cbd7bed 2103 type)
567c8878 2104 (when (fboundp term-init-func)
b34c34da
KL
2105 (funcall term-init-func))
2106 (set-terminal-parameter frame 'terminal-initted term-init-func)))))
465fceed 2107
5f5c8ee5
GM
2108;; Called from C function init_display to initialize faces of the
2109;; dumped terminal frame on startup.
465fceed 2110
5f5c8ee5
GM
2111(defun tty-set-up-initial-frame-faces ()
2112 (let ((frame (selected-frame)))
4983ddea 2113 (frame-set-background-mode frame t)
5f5c8ee5 2114 (face-set-after-frame-default frame)))
00f51890 2115
465fceed 2116
bdda3754 2117\f
5f5c8ee5
GM
2118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2119;;; Standard faces.
2120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
465fceed 2121
5f5c8ee5
GM
2122(defgroup basic-faces nil
2123 "The standard faces of Emacs."
2124 :group 'faces)
ef436392 2125
bacbbe8f
CY
2126(defface default
2127 '((t nil)) ; If this were nil, face-defface-spec would not be set.
5f5c8ee5
GM
2128 "Basic default face."
2129 :group 'basic-faces)
465fceed 2130
51d44a36
JL
2131(defface bold
2132 '((t :weight bold))
2133 "Basic bold face."
2134 :group 'basic-faces)
2135
2136(defface italic
2137 '((((supports :slant italic))
2138 :slant italic)
2139 (((supports :underline t))
2140 :underline t)
2141 (t
2142 ;; default to italic, even it doesn't appear to be supported,
2143 ;; because in some cases the display engine will do it's own
2144 ;; workaround (to `dim' on ttys)
2145 :slant italic))
2146 "Basic italic face."
2147 :group 'basic-faces)
2148
2149(defface bold-italic
2150 '((t :weight bold :slant italic))
2151 "Basic bold-italic face."
2152 :group 'basic-faces)
2153
2154(defface underline
2155 '((((supports :underline t))
2156 :underline t)
2157 (((supports :weight bold))
2158 :weight bold)
2159 (t :underline t))
2160 "Basic underlined face."
2161 :group 'basic-faces)
2162
2163(defface fixed-pitch
d5f57335 2164 '((t :family "Monospace"))
51d44a36
JL
2165 "The basic fixed-pitch face."
2166 :group 'basic-faces)
2167
2168(defface variable-pitch
ed008205 2169 '((t :family "Sans Serif"))
51d44a36
JL
2170 "The basic variable-pitch face."
2171 :group 'basic-faces)
2172
2173(defface shadow
2174 '((((class color grayscale) (min-colors 88) (background light))
2175 :foreground "grey50")
2176 (((class color grayscale) (min-colors 88) (background dark))
2177 :foreground "grey70")
2178 (((class color) (min-colors 8) (background light))
2179 :foreground "green")
2180 (((class color) (min-colors 8) (background dark))
2181 :foreground "yellow"))
2182 "Basic face for shadowed text."
2183 :group 'basic-faces
2184 :version "22.1")
2185
59746720
JL
2186(defface link
2187 '((((class color) (min-colors 88) (background light))
2188 :foreground "blue1" :underline t)
2189 (((class color) (background light))
2190 :foreground "blue" :underline t)
2191 (((class color) (min-colors 88) (background dark))
2192 :foreground "cyan1" :underline t)
2193 (((class color) (background dark))
2194 :foreground "cyan" :underline t)
2195 (t :inherit underline))
2196 "Basic face for unvisited links."
2197 :group 'basic-faces
2198 :version "22.1")
2199
2200(defface link-visited
2201 '((default :inherit link)
2202 (((class color) (background light)) :foreground "magenta4")
2203 (((class color) (background dark)) :foreground "violet"))
2204 "Basic face for visited links."
2205 :group 'basic-faces
2206 :version "22.1")
2207
51d44a36
JL
2208(defface highlight
2209 '((((class color) (min-colors 88) (background light))
2210 :background "darkseagreen2")
2211 (((class color) (min-colors 88) (background dark))
2212 :background "darkolivegreen")
2213 (((class color) (min-colors 16) (background light))
2214 :background "darkseagreen2")
2215 (((class color) (min-colors 16) (background dark))
2216 :background "darkolivegreen")
2217 (((class color) (min-colors 8))
2218 :background "green" :foreground "black")
2219 (t :inverse-video t))
2220 "Basic face for highlighting."
2221 :group 'basic-faces)
2222
f3e848f4
AR
2223;; Region face: under NS, default to the system-defined selection
2224;; color (optimized for the fixed white background of other apps),
2225;; if background is light.
51d44a36
JL
2226(defface region
2227 '((((class color) (min-colors 88) (background dark))
2228 :background "blue3")
3a46642b
J
2229 (((class color) (min-colors 88) (background light) (type gtk))
2230 :foreground "gtk_selection_fg_color"
2231 :background "gtk_selection_bg_color")
f3e848f4
AR
2232 (((class color) (min-colors 88) (background light) (type ns))
2233 :background "ns_selection_color")
51d44a36
JL
2234 (((class color) (min-colors 88) (background light))
2235 :background "lightgoldenrod2")
2236 (((class color) (min-colors 16) (background dark))
2237 :background "blue3")
2238 (((class color) (min-colors 16) (background light))
2239 :background "lightgoldenrod2")
2240 (((class color) (min-colors 8))
2241 :background "blue" :foreground "white")
2242 (((type tty) (class mono))
2243 :inverse-video t)
2244 (t :background "gray"))
2245 "Basic face for highlighting the region."
2246 :version "21.1"
2247 :group 'basic-faces)
2248
2249(defface secondary-selection
2250 '((((class color) (min-colors 88) (background light))
2251 :background "yellow1")
2252 (((class color) (min-colors 88) (background dark))
2253 :background "SkyBlue4")
2254 (((class color) (min-colors 16) (background light))
2255 :background "yellow")
2256 (((class color) (min-colors 16) (background dark))
2257 :background "SkyBlue4")
2258 (((class color) (min-colors 8))
2259 :background "cyan" :foreground "black")
2260 (t :inverse-video t))
2261 "Basic face for displaying the secondary selection."
2262 :group 'basic-faces)
2263
2264(defface trailing-whitespace
2265 '((((class color) (background light))
2266 :background "red1")
2267 (((class color) (background dark))
2268 :background "red1")
2269 (t :inverse-video t))
2270 "Basic face for highlighting trailing whitespace."
2271 :version "21.1"
d4c6530f 2272 :group 'whitespace-faces ; like `show-trailing-whitespace'
51d44a36
JL
2273 :group 'basic-faces)
2274
2275(defface escape-glyph
2276 '((((background dark)) :foreground "cyan")
2277 ;; See the comment in minibuffer-prompt for
2278 ;; the reason not to use blue on MS-DOS.
2279 (((type pc)) :foreground "magenta")
2280 ;; red4 is too dark, but some say blue is too loud.
2281 ;; brown seems to work ok. -- rms.
2282 (t :foreground "brown"))
1a77c985 2283 "Face for characters displayed as sequences using `^' or `\\'."
51d44a36
JL
2284 :group 'basic-faces
2285 :version "22.1")
2286
2287(defface nobreak-space
2288 '((((class color) (min-colors 88)) :inherit escape-glyph :underline t)
2289 (((class color) (min-colors 8)) :background "magenta")
2290 (t :inverse-video t))
2291 "Face for displaying nobreak space."
2292 :group 'basic-faces
2293 :version "22.1")
72418504 2294
97bca259
JL
2295(defgroup mode-line-faces nil
2296 "Faces used in the mode line."
6d968826 2297 :group 'mode-line
97bca259
JL
2298 :group 'faces
2299 :version "22.1")
2300
3759f14b 2301(defface mode-line
11c2175c 2302 '((((class color) (min-colors 88))
b6b90dfc
SM
2303 :box (:line-width -1 :style released-button)
2304 :background "grey75" :foreground "black")
5f5c8ee5 2305 (t
b6b90dfc 2306 :inverse-video t))
c5752dcb 2307 "Basic mode line face for selected window."
a4391cf1 2308 :version "21.1"
97bca259 2309 :group 'mode-line-faces
5f5c8ee5 2310 :group 'basic-faces)
9f255bc3
GM
2311;; No need to define aliases of this form for new faces.
2312(define-obsolete-face-alias 'modeline 'mode-line "21.1")
465fceed 2313
c5752dcb 2314(defface mode-line-inactive
cf459bb7 2315 '((default
b6b90dfc 2316 :inherit mode-line)
11c2175c 2317 (((class color) (min-colors 88) (background light))
c5752dcb
KS
2318 :weight light
2319 :box (:line-width -1 :color "grey75" :style nil)
2320 :foreground "grey20" :background "grey90")
11c2175c 2321 (((class color) (min-colors 88) (background dark) )
53a2f6e1
MB
2322 :weight light
2323 :box (:line-width -1 :color "grey40" :style nil)
b6b90dfc 2324 :foreground "grey80" :background "grey30"))
c5752dcb 2325 "Basic mode line face for non-selected windows."
bf247b6e 2326 :version "22.1"
97bca259
JL
2327 :group 'mode-line-faces
2328 :group 'basic-faces)
9f255bc3 2329(define-obsolete-face-alias 'modeline-inactive 'mode-line-inactive "22.1")
97bca259
JL
2330
2331(defface mode-line-highlight
2332 '((((class color) (min-colors 88))
2333 :box (:line-width 2 :color "grey40" :style released-button))
2334 (t
2335 :inherit highlight))
2336 "Basic mode line face for highlighting."
2337 :version "22.1"
2338 :group 'mode-line-faces
2339 :group 'basic-faces)
9f255bc3 2340(define-obsolete-face-alias 'modeline-highlight 'mode-line-highlight "22.1")
97bca259 2341
313e2fc4
GM
2342(defface mode-line-emphasis
2343 '((t (:weight bold)))
2344 "Face used to emphasize certain mode line features.
2345Use the face `mode-line-highlight' for features that can be selected."
2346 :version "23.1"
2347 :group 'mode-line-faces
2348 :group 'basic-faces)
2349
97bca259
JL
2350(defface mode-line-buffer-id
2351 '((t (:weight bold)))
2352 "Face used for buffer identification parts of the mode line."
2353 :version "22.1"
2354 :group 'mode-line-faces
c5752dcb 2355 :group 'basic-faces)
9f255bc3 2356(define-obsolete-face-alias 'modeline-buffer-id 'mode-line-buffer-id "22.1")
d11fba25 2357
e5e7779f 2358(defface header-line
cf459bb7 2359 '((default
6b61353c
KH
2360 :inherit mode-line)
2361 (((type tty))
1cb4393e
MB
2362 ;; This used to be `:inverse-video t', but that doesn't look very
2363 ;; good when combined with inverse-video mode-lines and multiple
2364 ;; windows. Underlining looks better, and is more consistent with
2365 ;; the window-system face variants, which deemphasize the
2366 ;; header-line in relation to the mode-line face. If a terminal
2367 ;; can't underline, then the header-line will end up without any
2368 ;; highlighting; this may be too confusing in general, although it
2369 ;; happens to look good with the only current use of header-lines,
2370 ;; the info browser. XXX
6b61353c 2371 :inverse-video nil ;Override the value inherited from mode-line.
a7ac92b6 2372 :underline t)
98490598 2373 (((class color grayscale) (background light))
bdab1d43 2374 :background "grey90" :foreground "grey20"
6b61353c 2375 :box nil)
98490598 2376 (((class color grayscale) (background dark))
bdab1d43 2377 :background "grey20" :foreground "grey90"
6b61353c 2378 :box nil)
98490598 2379 (((class mono) (background light))
bdab1d43
MB
2380 :background "white" :foreground "black"
2381 :inverse-video nil
2382 :box nil
6b61353c 2383 :underline t)
98490598 2384 (((class mono) (background dark))
bdab1d43
MB
2385 :background "black" :foreground "white"
2386 :inverse-video nil
2387 :box nil
6b61353c 2388 :underline t))
e5e7779f 2389 "Basic header-line face."
a4391cf1 2390 :version "21.1"
5f5c8ee5 2391 :group 'basic-faces)
e8e4cda0 2392
51d44a36
JL
2393(defface vertical-border
2394 '((((type tty)) :inherit mode-line-inactive))
2395 "Face used for vertical window dividers on ttys."
2396 :version "22.1"
5f5c8ee5 2397 :group 'basic-faces)
d11fba25 2398
9ed779e8
JL
2399(defface minibuffer-prompt
2400 '((((background dark)) :foreground "cyan")
2401 ;; Don't use blue because many users of the MS-DOS port customize
2402 ;; their foreground color to be blue.
2403 (((type pc)) :foreground "magenta")
c57a1dc6 2404 (t :foreground "medium blue"))
9ed779e8
JL
2405 "Face for minibuffer prompts.
2406By default, Emacs automatically adds this face to the value of
2407`minibuffer-prompt-properties', which is a list of text properties
2408used to display the prompt text."
bf247b6e 2409 :version "22.1"
31cf46d3
RS
2410 :group 'basic-faces)
2411
2412(setq minibuffer-prompt-properties
2413 (append minibuffer-prompt-properties (list 'face 'minibuffer-prompt)))
2414
f1cae29e 2415(defface fringe
d6d59057 2416 '((((class color) (background light))
b6b90dfc
SM
2417 :background "grey95")
2418 (((class color) (background dark))
2419 :background "grey10")
2420 (t
2421 :background "gray"))
f1cae29e
GM
2422 "Basic face for the fringes to the left and right of windows under X."
2423 :version "21.1"
84fe35f0 2424 :group 'frames
f1cae29e
GM
2425 :group 'basic-faces)
2426
d390b4d2 2427(defface scroll-bar '((t nil))
f1cae29e
GM
2428 "Basic face for the scroll bar colors under X."
2429 :version "21.1"
84fe35f0 2430 :group 'frames
f1cae29e
GM
2431 :group 'basic-faces)
2432
d390b4d2 2433(defface border '((t nil))
f1cae29e
GM
2434 "Basic face for the frame border under X."
2435 :version "21.1"
84fe35f0 2436 :group 'frames
f1cae29e
GM
2437 :group 'basic-faces)
2438
4983ddea
CY
2439(defface cursor
2440 '((((background light)) :background "black")
2441 (((background dark)) :background "white"))
8d413c2b
KS
2442 "Basic face for the cursor color under X.
2443Note: Other faces cannot inherit from the cursor face."
f1cae29e 2444 :version "21.1"
84fe35f0 2445 :group 'cursor
f1cae29e
GM
2446 :group 'basic-faces)
2447
8d413c2b 2448(put 'cursor 'face-no-inherit t)
f1cae29e 2449
d390b4d2 2450(defface mouse '((t nil))
f1cae29e 2451 "Basic face for the mouse color under X."
e59176e2 2452 :version "21.1"
84fe35f0 2453 :group 'mouse
5f5c8ee5 2454 :group 'basic-faces)
bdda3754 2455
51d44a36
JL
2456(defface tool-bar
2457 '((default
2458 :box (:line-width 1 :style released-button)
2459 :foreground "black")
9e2a2647 2460 (((type x w32 ns) (class color))
51d44a36
JL
2461 :background "grey75")
2462 (((type x) (class mono))
2463 :background "grey"))
2464 "Basic tool-bar face."
2465 :version "21.1"
5f5c8ee5 2466 :group 'basic-faces)
bdda3754 2467
51d44a36
JL
2468(defface menu
2469 '((((type tty))
2470 :inverse-video t)
2471 (((type x-toolkit))
2472 )
16320ac7 2473 (t
51d44a36
JL
2474 :inverse-video t))
2475 "Basic face for the font and colors of the menu bar and popup menus."
a4391cf1 2476 :version "21.1"
51d44a36 2477 :group 'menu
a4391cf1 2478 :group 'basic-faces)
465fceed 2479
6c58c39c
CY
2480(defface help-argument-name '((((supports :slant italic)) :inherit italic))
2481 "Face to highlight argument names in *Help* buffers."
2482 :group 'help)
b2cca856 2483
b18fad6d
KH
2484(defface glyphless-char
2485 '((((type tty)) :inherit underline)
1cd64aae 2486 (((type pc)) :inherit escape-glyph)
b18fad6d 2487 (t :height 0.6))
b2cca856
KH
2488 "Face for displaying non-graphic characters (e.g. U+202A (LRE)).
2489It is used for characters of no fonts too."
2490 :version "24.1"
2491 :group 'basic-faces)
465fceed 2492\f
5f5c8ee5
GM
2493;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2494;;; Manipulating font names.
2495;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2496
2497;; This is here for compatibilty with Emacs 20.2. For example,
07f27947
DL
2498;; international/fontset.el uses x-resolve-font-name. The following
2499;; functions are not used in the face implementation itself.
465fceed 2500
d7fa5aa2
RS
2501(defvar x-font-regexp nil)
2502(defvar x-font-regexp-head nil)
2503(defvar x-font-regexp-weight nil)
2504(defvar x-font-regexp-slant nil)
465fceed 2505
021ca129
KH
2506(defconst x-font-regexp-weight-subnum 1)
2507(defconst x-font-regexp-slant-subnum 2)
2508(defconst x-font-regexp-swidth-subnum 3)
2509(defconst x-font-regexp-adstyle-subnum 4)
2510
465fceed
ER
2511;;; Regexps matching font names in "Host Portable Character Representation."
2512;;;
2513(let ((- "[-?]")
2514 (foundry "[^-]+")
2515 (family "[^-]+")
2516 (weight "\\(bold\\|demibold\\|medium\\)") ; 1
2517; (weight\? "\\(\\*\\|bold\\|demibold\\|medium\\|\\)") ; 1
2518 (weight\? "\\([^-]*\\)") ; 1
2519 (slant "\\([ior]\\)") ; 2
2520; (slant\? "\\([ior?*]?\\)") ; 2
2521 (slant\? "\\([^-]?\\)") ; 2
2522; (swidth "\\(\\*\\|normal\\|semicondensed\\|\\)") ; 3
2523 (swidth "\\([^-]*\\)") ; 3
2524; (adstyle "\\(\\*\\|sans\\|\\)") ; 4
c8787b81 2525 (adstyle "\\([^-]*\\)") ; 4
465fceed
ER
2526 (pixelsize "[0-9]+")
2527 (pointsize "[0-9][0-9]+")
2528 (resx "[0-9][0-9]+")
2529 (resy "[0-9][0-9]+")
2530 (spacing "[cmp?*]")
2531 (avgwidth "[0-9]+")
2532 (registry "[^-]+")
2533 (encoding "[^-]+")
2534 )
2535 (setq x-font-regexp
1e8780b1 2536 (purecopy (concat "\\`\\*?[-?*]"
465fceed 2537 foundry - family - weight\? - slant\? - swidth - adstyle -
e20d641f
RS
2538 pixelsize - pointsize - resx - resy - spacing - avgwidth -
2539 registry - encoding "\\*?\\'"
1e8780b1 2540 )))
465fceed 2541 (setq x-font-regexp-head
1e8780b1
DN
2542 (purecopy (concat "\\`[-?*]" foundry - family - weight\? - slant\?
2543 "\\([-*?]\\|\\'\\)")))
2544 (setq x-font-regexp-slant (purecopy (concat - slant -)))
2545 (setq x-font-regexp-weight (purecopy (concat - weight -)))
70d0c3b0 2546 nil)
465fceed 2547
5f5c8ee5 2548
281dc1c2
JB
2549(defun x-resolve-font-name (pattern &optional face frame)
2550 "Return a font name matching PATTERN.
ac4c2e6b 2551All wildcards in PATTERN are instantiated.
10d89673
JB
2552If PATTERN is nil, return the name of the frame's base font, which never
2553contains wildcards.
e17dbede
RS
2554Given optional arguments FACE and FRAME, return a font which is
2555also the same size as FACE on FRAME, or fail."
14e6867c
RS
2556 (or (symbolp face)
2557 (setq face (face-name face)))
2558 (and (eq frame t)
2559 (setq frame nil))
10d89673 2560 (if pattern
8db93e45 2561 ;; Note that x-list-fonts has code to handle a face with nil as its font.
abd89b80 2562 (let ((fonts (x-list-fonts pattern face frame 1)))
10d89673
JB
2563 (or fonts
2564 (if face
962a60aa
RS
2565 (if (string-match "\\*" pattern)
2566 (if (null (face-font face))
2567 (error "No matching fonts are the same height as the frame default font")
2568 (error "No matching fonts are the same height as face `%s'" face))
2569 (if (null (face-font face))
2570 (error "Height of font `%s' doesn't match the frame default font"
2571 pattern)
2572 (error "Height of font `%s' doesn't match face `%s'"
2573 pattern face)))
7cf6fac1 2574 (error "No fonts match `%s'" pattern)))
10d89673
JB
2575 (car fonts))
2576 (cdr (assq 'font (frame-parameters (selected-frame))))))
281dc1c2 2577
f0138172
JB
2578(provide 'faces)
2579
70d0c3b0 2580;;; faces.el ends here