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