(exec-suffixes): Initialize to a system-dependent value.
[bpt/emacs.git] / lisp / faces.el
CommitLineData
5f5c8ee5 1;;; faces.el --- Lisp faces
465fceed 2
78ad1cd5 3;; Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
5f5c8ee5 4;; Free Software Foundation, Inc.
465fceed 5
6228c05b
PJ
6;; Maintainer: FSF
7
465fceed
ER
8;; This file is part of GNU Emacs.
9
10;; GNU Emacs is free software; you can redistribute it and/or modify
11;; it under the terms of the GNU General Public License as published by
12;; the Free Software Foundation; either version 2, or (at your option)
13;; any later version.
14
15;; GNU Emacs is distributed in the hope that it will be useful,
16;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18;; GNU General Public License for more details.
19
20;; You should have received a copy of the GNU General Public License
b578f267
EN
21;; along with GNU Emacs; see the file COPYING. If not, write to the
22;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23;; Boston, MA 02111-1307, USA.
465fceed
ER
24
25;;; Commentary:
26
465fceed
ER
27;;; Code:
28
39b3b754 29(eval-when-compile
b5325e78
DL
30 (require 'cl)
31 ;; Warning suppression -- can't require x-win in batch:
32 (autoload 'xw-defined-colors "x-win"))
5f5c8ee5
GM
33
34(require 'cus-face)
35
36\f
37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
38;;; Font selection.
39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
40
41(defgroup font-selection nil
42 "Influencing face font selection."
43 :group 'faces)
44
45
46(defcustom face-font-selection-order
47 '(:width :height :weight :slant)
48 "*A list specifying how face font selection chooses fonts.
49Each of the four symbols `:width', `:height', `:weight', and `:slant'
50must appear once in the list, and the list must not contain any other
51elements. Font selection tries to find a best matching font for
52those face attributes first that appear first in the list. For
53example, if `:slant' appears before `:height', font selection first
54tries to find a font with a suitable slant, even if this results in
55a font height that isn't optimal."
56 :tag "Font selection order."
94354bdd 57 :type '(list symbol symbol symbol symbol)
5f5c8ee5
GM
58 :group 'font-selection
59 :set #'(lambda (symbol value)
60 (set-default symbol value)
61 (internal-set-font-selection-order value)))
62
18f1dcb4
GM
63
64;; This is defined originally in xfaces.c.
5f5c8ee5
GM
65(defcustom face-font-family-alternatives
66 '(("courier" "fixed")
3855860a 67 ("helv" "helvetica" "arial" "fixed"))
5f5c8ee5
GM
68 "*Alist of alternative font family names.
69Each element has the the form (FAMILY ALTERNATIVE1 ALTERNATIVE2 ...).
70If fonts of family FAMILY can't be loaded, try ALTERNATIVE1, then
71ALTERNATIVE2 etc."
72 :tag "Alternative font families to try."
94354bdd 73 :type '(repeat (repeat string))
5f5c8ee5
GM
74 :group 'font-selection
75 :set #'(lambda (symbol value)
76 (set-default symbol value)
77 (internal-set-alternative-font-family-alist value)))
78
79
18f1dcb4
GM
80;; This is defined originally in xfaces.c.
81(defcustom face-font-registry-alternatives
c97db4e4
AI
82 (if (eq system-type 'windows-nt)
83 '(("gb2312.1980" "gb2312")
84 ("jisx0208.1990" "jisx0208.1983" "jisx0208.1978")
85 ("ksc5601.1989" "ksx1001.1992" "ksc5601.1987")
86 ("muletibetan-2" "muletibetan-0"))
87 '(("gb2312.1980" "gb2312.80&gb8565.88" "gbk*")
88 ("jisx0208.1990" "jisx0208.1983" "jisx0208.1978")
89 ("ksc5601.1989" "ksx1001.1992" "ksc5601.1987")
90 ("muletibetan-2" "muletibetan-0")))
18f1dcb4
GM
91 "*Alist of alternative font registry names.
92Each element has the the form (REGISTRY ALTERNATIVE1 ALTERNATIVE2 ...).
8ac2d32f
KH
93If fonts of registry REGISTRY can be loaded, font selection
94tries to find a best matching font among all fonts of registry
95REGISTRY, ALTERNATIVE1, ALTERNATIVE2, and etc."
18f1dcb4
GM
96 :tag "Alternative font registries to try."
97 :type '(repeat (repeat string))
f676894c 98 :version "21.1"
18f1dcb4
GM
99 :group 'font-selection
100 :set #'(lambda (symbol value)
101 (set-default symbol value)
102 (internal-set-alternative-font-registry-alist value)))
103
104
bdda3754 105\f
5f5c8ee5
GM
106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
107;;; Creation, copying.
108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
109
110
111(defun face-list ()
112 "Return a list of all defined face names."
113 (mapcar #'car face-new-frame-defaults))
114
115
116;;; ### If not frame-local initialize by what X resources?
117
118(defun make-face (face &optional no-init-from-resources)
119 "Define a new face with name FACE, a symbol.
120NO-INIT-FROM-RESOURCES non-nil means don't initialize frame-local
121variants of FACE from X resources. (X resources recognized are found
122in the global variable `face-x-resources'.) If FACE is already known
123as a face, leave it unmodified. Value is FACE."
124 (interactive "SMake face: ")
125 (unless (facep face)
126 ;; Make frame-local faces (this also makes the global one).
127 (dolist (frame (frame-list))
128 (internal-make-lisp-face face frame))
129 ;; Add the face to the face menu.
130 (when (fboundp 'facemenu-add-new-face)
131 (facemenu-add-new-face face))
132 ;; Define frame-local faces for all frames from X resources.
133 (unless no-init-from-resources
134 (make-face-x-resource-internal face)))
135 face)
136
137
138(defun make-empty-face (face)
139 "Define a new, empty face with name FACE.
140If the face already exists, it is left unmodified. Value is FACE."
141 (interactive "SMake empty face: ")
142 (make-face face 'no-init-from-resources))
143
144
145(defun copy-face (old-face new-face &optional frame new-frame)
146 "Define a face just like OLD-FACE, with name NEW-FACE.
147
148If NEW-FACE already exists as a face, it is modified to be like
149OLD-FACE. If it doesn't already exist, it is created.
150
151If the optional argument FRAME is given as a frame, NEW-FACE is
152changed on FRAME only.
153If FRAME is t, the frame-independent default specification for OLD-FACE
154is copied to NEW-FACE.
155If FRAME is nil, copying is done for the frame-independent defaults
156and for each existing frame.
157
158If the optional fourth argument NEW-FRAME is given,
159copy the information from face OLD-FACE on frame FRAME
160to NEW-FACE on frame NEW-FRAME."
161 (let ((inhibit-quit t))
162 (if (null frame)
163 (progn
164 (dolist (frame (frame-list))
165 (copy-face old-face new-face frame))
166 (copy-face old-face new-face t))
167 (internal-copy-lisp-face old-face new-face frame new-frame))
168 new-face))
169
170
171\f
172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
173;;; Obsolete functions
174;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
175
176;; The functions in this section are defined because Lisp packages use
177;; them, despite the prefix `internal-' suggesting that they are
70d0c3b0 178;; private to the face implementation.
5f5c8ee5
GM
179
180(defun internal-find-face (name &optional frame)
181 "Retrieve the face named NAME.
182Return nil if there is no such face.
183If the optional argument FRAME is given, this gets the face NAME for
184that frame; otherwise, it uses the selected frame.
185If FRAME is the symbol t, then the global, non-frame face is returned.
186If NAME is already a face, it is simply returned.
187
188This function is defined for compatibility with Emacs 20.2. It
189should not be used anymore."
190 (facep name))
2598a293 191(make-obsolete 'internal-find-face 'facep "21.1")
5f5c8ee5
GM
192
193
194(defun internal-get-face (name &optional frame)
195 "Retrieve the face named NAME; error if there is none.
196If the optional argument FRAME is given, this gets the face NAME for
197that frame; otherwise, it uses the selected frame.
198If FRAME is the symbol t, then the global, non-frame face is returned.
199If NAME is already a face, it is simply returned.
200
201This function is defined for compatibility with Emacs 20.2. It
202should not be used anymore."
203 (or (internal-find-face name frame)
204 (check-face name)))
2598a293 205(make-obsolete 'internal-get-face "See `facep' and `check-face'." "21.1")
5f5c8ee5
GM
206
207\f
208;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
209;;; Predicates, type checks.
210;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
211
212(defun facep (face)
213 "Return non-nil if FACE is a face name."
214 (internal-lisp-face-p face))
215
216
217(defun check-face (face)
218 "Signal an error if FACE doesn't name a face.
219Value is FACE."
220 (unless (facep face)
221 (error "Not a face: %s" face))
222 face)
223
224
225;; The ID returned is not to be confused with the internally used IDs
226;; of realized faces. The ID assigned to Lisp faces is used to
227;; support faces in display table entries.
228
229(defun face-id (face &optional frame)
230 "Return the interNal ID of face with name FACE.
231If optional argument FRAME is nil or omitted, use the selected frame."
232 (check-face face)
233 (get face 'face))
234
235
236(defun face-equal (face1 face2 &optional frame)
237 "Non-nil if faces FACE1 and FACE2 are equal.
238Faces are considered equal if all their attributes are equal.
239If the optional argument FRAME is given, report on face FACE in that frame.
240If FRAME is t, report on the defaults for face FACE (for new frames).
241If FRAME is omitted or nil, use the selected frame."
242 (internal-lisp-face-equal-p face1 face2 frame))
243
244
245(defun face-differs-from-default-p (face &optional frame)
246 "Non-nil if FACE displays differently from the default face.
247If the optional argument FRAME is given, report on face FACE in that frame.
248If FRAME is t, report on the defaults for face FACE (for new frames).
249If FRAME is omitted or nil, use the selected frame.
250A face is considered to be ``the same'' as the default face if it is
251actually specified in the same way (equal attributes) or if it is
252fully-unspecified, and thus inherits the attributes of any face it
253is displayed on top of."
6904df7a
GM
254 (cond ((eq frame t) (setq frame nil))
255 ((null frame) (setq frame (selected-frame))))
256 (let* ((v1 (internal-lisp-face-p face frame))
257 (n (if v1 (length v1) 0))
258 (v2 (internal-lisp-face-p 'default frame))
259 (i 1))
260 (unless v1
261 (error "Not a face: %S" face))
262 (while (and (< i n)
263 (or (eq 'unspecified (aref v1 i))
264 (equal (aref v1 i) (aref v2 i))))
265 (setq i (1+ i)))
266 (< i n)))
5f5c8ee5
GM
267
268
269(defun face-nontrivial-p (face &optional frame)
270 "True if face FACE has some non-nil attribute.
271If the optional argument FRAME is given, report on face FACE in that frame.
272If FRAME is t, report on the defaults for face FACE (for new frames).
273If FRAME is omitted or nil, use the selected frame."
274 (not (internal-lisp-face-empty-p face frame)))
275
276
277\f
278;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
279;;; Setting face attributes from X resources.
280;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
281
282(defcustom face-x-resources
283 '((:family (".attributeFamily" . "Face.AttributeFamily"))
284 (:width (".attributeWidth" . "Face.AttributeWidth"))
285 (:height (".attributeHeight" . "Face.AttributeHeight"))
286 (:weight (".attributeWeight" . "Face.AttributeWeight"))
287 (:slant (".attributeSlant" . "Face.AttributeSlant"))
288 (:foreground (".attributeForeground" . "Face.AttributeForeground"))
289 (:background (".attributeBackground" . "Face.AttributeBackground"))
290 (:overline (".attributeOverline" . "Face.AttributeOverline"))
291 (:strike-through (".attributeStrikeThrough" . "Face.AttributeStrikeThrough"))
292 (:box (".attributeBox" . "Face.AttributeBox"))
293 (:underline (".attributeUnderline" . "Face.AttributeUnderline"))
294 (:inverse-video (".attributeInverse" . "Face.AttributeInverse"))
295 (:stipple
296 (".attributeStipple" . "Face.AttributeStipple")
297 (".attributeBackgroundPixmap" . "Face.AttributeBackgroundPixmap"))
5f5c8ee5
GM
298 (:bold (".attributeBold" . "Face.AttributeBold"))
299 (:italic (".attributeItalic" . "Face.AttributeItalic"))
a0e5a5a4
MB
300 (:font (".attributeFont" . "Face.AttributeFont"))
301 (:inherit (".attributeInherit" . "Face.AttributeInherit")))
5f5c8ee5
GM
302 "*List of X resources and classes for face attributes.
303Each element has the form (ATTRIBUTE ENTRY1 ENTRY2...) where ATTRIBUTE is
304the name of a face attribute, and each ENTRY is a cons of the form
2cb95d1b 305\(RESOURCE . CLASS) with RESOURCE being the resource and CLASS being the
5f5c8ee5 306X resource class for the attribute."
b5325e78 307 :type '(repeat (cons symbol (repeat (cons string string))))
5f5c8ee5
GM
308 :group 'faces)
309
310
311(defun set-face-attribute-from-resource (face attribute resource class frame)
312 "Set FACE's ATTRIBUTE from X resource RESOURCE, class CLASS on FRAME.
313Value is the attribute value specified by the resource, or nil
314if not present. This function displays a message if the resource
315specifies an invalid attribute."
316 (let* ((face-name (face-name face))
317 (value (internal-face-x-get-resource (concat face-name resource)
318 class frame)))
319 (when value
320 (condition-case ()
321 (internal-set-lisp-face-attribute-from-resource
322 face attribute (downcase value) frame)
323 (error
324 (message "Face %s, frame %s: invalid attribute %s %s from X resource"
325 face-name frame attribute value))))
326 value))
327
328
329(defun set-face-attributes-from-resources (face frame)
330 "Set attributes of FACE from X resources for FRAME."
1a578e9b 331 (when (memq (framep frame) '(x w32 mac))
5f5c8ee5
GM
332 (dolist (definition face-x-resources)
333 (let ((attribute (car definition)))
334 (dolist (entry (cdr definition))
335 (set-face-attribute-from-resource face attribute (car entry)
336 (cdr entry) frame))))))
00f51890
SS
337
338
5f5c8ee5
GM
339(defun make-face-x-resource-internal (face &optional frame)
340 "Fill frame-local FACE on FRAME from X resources.
341FRAME nil or not specified means do it for all frames."
342 (if (null frame)
343 (dolist (frame (frame-list))
344 (set-face-attributes-from-resources face frame))
345 (set-face-attributes-from-resources face frame)))
346
347
348\f
349;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
350;;; Retrieving face attributes.
351;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
352
feaad827 353(defun face-name (face)
465fceed 354 "Return the name of face FACE."
5f5c8ee5
GM
355 (symbol-name (check-face face)))
356
357
358(defun face-attribute (face attribute &optional frame)
359 "Return the value of FACE's ATTRIBUTE on FRAME.
360If the optional argument FRAME is given, report on face FACE in that frame.
361If FRAME is t, report on the defaults for face FACE (for new frames).
362If FRAME is omitted or nil, use the selected frame."
363 (internal-get-lisp-face-attribute face attribute frame))
364
365
366(defun face-foreground (face &optional frame)
367 "Return the foreground color name of FACE, or nil if unspecified.
368If the optional argument FRAME is given, report on face FACE in that frame.
369If FRAME is t, report on the defaults for face FACE (for new frames).
370If FRAME is omitted or nil, use the selected frame."
e3fa42c2
GM
371 (let ((value (internal-get-lisp-face-attribute face :foreground frame)))
372 (if (eq value 'unspecified)
00f51890 373 nil
e3fa42c2 374 value)))
5f5c8ee5
GM
375
376
377(defun face-background (face &optional frame)
378 "Return the background color name of FACE, or nil if unspecified.
379If the optional argument FRAME is given, report on face FACE in that frame.
380If FRAME is t, report on the defaults for face FACE (for new frames).
381If FRAME is omitted or nil, use the selected frame."
e3fa42c2
GM
382 (let ((value (internal-get-lisp-face-attribute face :background frame)))
383 (if (eq value 'unspecified)
384 nil
385 value)))
5f5c8ee5
GM
386
387
388(defun face-stipple (face &optional frame)
389 "Return the stipple pixmap name of FACE, or nil if unspecified.
390If the optional argument FRAME is given, report on face FACE in that frame.
391If FRAME is t, report on the defaults for face FACE (for new frames).
392If FRAME is omitted or nil, use the selected frame."
e3fa42c2
GM
393 (let ((value (internal-get-lisp-face-attribute face :stipple frame)))
394 (if (eq value 'unspecified)
395 nil
396 value)))
5f5c8ee5
GM
397
398
399(defalias 'face-background-pixmap 'face-stipple)
400
401
402(defun face-underline-p (face &optional frame)
403 "Return non-nil if FACE is underlined.
404If the optional argument FRAME is given, report on face FACE in that frame.
405If FRAME is t, report on the defaults for face FACE (for new frames).
406If FRAME is omitted or nil, use the selected frame."
407 (eq (face-attribute face :underline frame) t))
408
409
410(defun face-inverse-video-p (face &optional frame)
411 "Return non-nil if FACE is in inverse video on FRAME.
412If the optional argument FRAME is given, report on face FACE in that frame.
413If FRAME is t, report on the defaults for face FACE (for new frames).
414If FRAME is omitted or nil, use the selected frame."
415 (eq (face-attribute face :inverse-video frame) t))
416
417
418(defun face-bold-p (face &optional frame)
419 "Return non-nil if the font of FACE is bold on FRAME.
420If the optional argument FRAME is given, report on face FACE in that frame.
421If FRAME is t, report on the defaults for face FACE (for new frames).
422If FRAME is omitted or nil, use the selected frame.
423Use `face-attribute' for finer control."
424 (let ((bold (face-attribute face :weight frame)))
da2c7b8c 425 (memq bold '(semi-bold bold extra-bold ultra-bold))))
5f5c8ee5
GM
426
427
428(defun face-italic-p (face &optional frame)
429 "Return non-nil if the font of FACE is italic on FRAME.
430If the optional argument FRAME is given, report on face FACE in that frame.
431If FRAME is t, report on the defaults for face FACE (for new frames).
432If FRAME is omitted or nil, use the selected frame.
433Use `face-attribute' for finer control."
434 (let ((italic (face-attribute face :slant frame)))
a48f6020 435 (memq italic '(italic oblique))))
00f51890 436
5f5c8ee5 437
5f5c8ee5
GM
438\f
439;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
440;;; Face documentation.
441;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
442
443(defun face-documentation (face)
444 "Get the documentation string for FACE."
445 (get face 'face-documentation))
446
447
448(defun set-face-documentation (face string)
449 "Set the documentation string for FACE to STRING."
291cfb96 450 ;; Perhaps the text should go in DOC.
49435801 451 (put face 'face-documentation (purecopy string)))
5f5c8ee5
GM
452
453
454(defalias 'face-doc-string 'face-documentation)
455(defalias 'set-face-doc-string 'set-face-documentation)
456
457
458\f
459;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
460;; Setting face attributes.
461;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
462
463
464(defun set-face-attribute (face frame &rest args)
465 "Set attributes of FACE on FRAME from ARGS.
466
467FRAME nil means change attributes on all frames. FRAME t means change
468the default for new frames (this is done automatically each time an
469attribute is changed on all frames).
470
471ARGS must come in pairs ATTRIBUTE VALUE. ATTRIBUTE must be a valid
472face attribute name. All attributes can be set to `unspecified';
473this fact is not further mentioned below.
474
475The following attributes are recognized:
476
477`:family'
478
479VALUE must be a string specifying the font family, e.g. ``courier'',
480or a fontset alias name. If a font family is specified, wild-cards `*'
481and `?' are allowed.
482
483`:width'
484
485VALUE specifies the relative proportionate width of the font to use.
486It must be one of the symbols `ultra-condensed', `extra-condensed',
487`condensed', `semi-condensed', `normal', `semi-expanded', `expanded',
488`extra-expanded', or `ultra-expanded'.
489
490`:height'
491
19feb949
MB
492VALUE must be either an integer specifying the height of the font to use
493in 1/10 pt, a floating point number specifying the amount by which to
494scale any underlying face, or a function, which is called with the old
495height (from the underlying face), and should return the new height.
5f5c8ee5
GM
496
497`:weight'
498
499VALUE specifies the weight of the font to use. It must be one of the
500symbols `ultra-bold', `extra-bold', `bold', `semi-bold', `normal',
501`semi-light', `light', `extra-light', `ultra-light'.
502
503`:slant'
504
505VALUE specifies the slant of the font to use. It must be one of the
506symbols `italic', `oblique', `normal', `reverse-italic', or
507`reverse-oblique'.
508
509`:foreground', `:background'
510
511VALUE must be a color name, a string.
512
513`:underline'
514
515VALUE specifies whether characters in FACE should be underlined. If
516VALUE is t, underline with foreground color of the face. If VALUE is
517a string, underline with that color. If VALUE is nil, explicitly
518don't underline.
519
520`:overline'
521
522VALUE specifies whether characters in FACE should be overlined. If
523VALUE is t, overline with foreground color of the face. If VALUE is a
524string, overline with that color. If VALUE is nil, explicitly don't
525overline.
526
527`:strike-through'
528
529VALUE specifies whether characters in FACE should be drawn with a line
530striking through them. If VALUE is t, use the foreground color of the
531face. If VALUE is a string, strike-through with that color. If VALUE
532is nil, explicitly don't strike through.
533
534`:box'
535
536VALUE specifies whether characters in FACE should have a box drawn
537around them. If VALUE is nil, explicitly don't draw boxes. If
538VALUE is t, draw a box with lines of width 1 in the foreground color
539of the face. If VALUE is a string, the string must be a color name,
540and the box is drawn in that color with a line width of 1. Otherwise,
541VALUE must be a property list of the form `(:line-width WIDTH
542:color COLOR :style STYLE)'. If a keyword/value pair is missing from
543the property list, a default value will be used for the value, as
544specified below. WIDTH specifies the width of the lines to draw; it
0f937ebd
KH
545defaults to 1. If WIDTH is negative, the absolute value is the width
546of the lines, and draw top/bottom lines inside the characters area,
547not around it. COLOR is the name of the color to draw in, default is
5f5c8ee5
GM
548the foreground color of the face for simple boxes, and the background
549color of the face for 3D boxes. STYLE specifies whether a 3D box
550should be draw. If STYLE is `released-button', draw a box looking
551like a released 3D button. If STYLE is `pressed-button' draw a box
552that appears like a pressed button. If STYLE is nil, the default if
553the property list doesn't contain a style specification, draw a 2D
554box.
555
556`:inverse-video'
557
558VALUE specifies whether characters in FACE should be displayed in
70d0c3b0 559inverse video. VALUE must be one of t or nil.
5f5c8ee5
GM
560
561`:stipple'
562
563If VALUE is a string, it must be the name of a file of pixmap data.
564The directories listed in the `x-bitmap-file-path' variable are
565searched. Alternatively, VALUE may be a list of the form (WIDTH
566HEIGHT DATA) where WIDTH and HEIGHT are the size in pixels, and DATA
567is a string containing the raw bits of the bitmap. VALUE nil means
568explicitly don't use a stipple pattern.
569
570For convenience, attributes `:family', `:width', `:height', `:weight',
571and `:slant' may also be set in one step from an X font name:
572
573`:font'
574
575Set font-related face attributes from VALUE. VALUE must be a valid
576XLFD font name. If it is a font name pattern, the first matching font
577will be used.
578
579For compatibility with Emacs 20, keywords `:bold' and `:italic' can
580be used to specify that a bold or italic font should be used. VALUE
19feb949
MB
581must be t or nil in that case. A value of `unspecified' is not allowed.
582
583`:inherit'
584
585VALUE is the name of a face from which to inherit attributes, or a list
586of face names. Attributes from inherited faces are merged into the face
587like an underlying face would be, with higher priority than underlying faces."
70a267c9
GM
588 (let ((where (if (null frame) 0 frame)))
589 (setq args (purecopy args))
590 (while args
591 (internal-set-lisp-face-attribute face (car args)
592 (purecopy (cadr args))
593 where)
594 (setq args (cdr (cdr args))))))
5f5c8ee5
GM
595
596
39cac3e7 597(defun make-face-bold (face &optional frame noerror)
5f5c8ee5
GM
598 "Make the font of FACE be bold, if possible.
599FRAME nil or not specified means change face on all frames.
39cac3e7 600Argument NOERROR is ignored and retained for compatibility.
5f5c8ee5 601Use `set-face-attribute' for finer control of the font weight."
84fe35f0 602 (interactive (list (read-face-name "Make which face bold ")))
5f5c8ee5
GM
603 (set-face-attribute face frame :weight 'bold))
604
605
39cac3e7 606(defun make-face-unbold (face &optional frame noerror)
5f5c8ee5 607 "Make the font of FACE be non-bold, if possible.
39cac3e7
GM
608FRAME nil or not specified means change face on all frames.
609Argument NOERROR is ignored and retained for compatibility."
84fe35f0 610 (interactive (list (read-face-name "Make which face non-bold ")))
5f5c8ee5
GM
611 (set-face-attribute face frame :weight 'normal))
612
00f51890 613
39cac3e7 614(defun make-face-italic (face &optional frame noerror)
5f5c8ee5
GM
615 "Make the font of FACE be italic, if possible.
616FRAME nil or not specified means change face on all frames.
39cac3e7 617Argument NOERROR is ignored and retained for compatibility.
5f5c8ee5 618Use `set-face-attribute' for finer control of the font slant."
84fe35f0 619 (interactive (list (read-face-name "Make which face italic ")))
5f5c8ee5
GM
620 (set-face-attribute face frame :slant 'italic))
621
622
39cac3e7 623(defun make-face-unitalic (face &optional frame noerror)
5f5c8ee5 624 "Make the font of FACE be non-italic, if possible.
70d0c3b0
DL
625FRAME nil or not specified means change face on all frames.
626Argument NOERROR is ignored and retained for compatibility."
84fe35f0 627 (interactive (list (read-face-name "Make which face non-italic ")))
5f5c8ee5
GM
628 (set-face-attribute face frame :slant 'normal))
629
00f51890 630
39cac3e7 631(defun make-face-bold-italic (face &optional frame noerror)
5f5c8ee5
GM
632 "Make the font of FACE be bold and italic, if possible.
633FRAME nil or not specified means change face on all frames.
39cac3e7 634Argument NOERROR is ignored and retained for compatibility.
5f5c8ee5
GM
635Use `set-face-attribute' for finer control of font weight and slant."
636 (interactive (list (read-face-name "Make which face bold-italic: ")))
637 (set-face-attribute face frame :weight 'bold :slant 'italic))
638
639
640(defun set-face-font (face font &optional frame)
641 "Change font-related attributes of FACE to those of FONT (a string).
642FRAME nil or not specified means change face on all frames.
643This sets the attributes `:family', `:width', `:height', `:weight',
644and `:slant'. When called interactively, prompt for the face and font."
645 (interactive (read-face-and-attribute :font))
646 (set-face-attribute face frame :font font))
647
648
649;; Implementation note: Emulating gray background colors with a
650;; stipple pattern is now part of the face realization process, and is
651;; done in C depending on the frame on which the face is realized.
652
653(defun set-face-background (face color &optional frame)
654 "Change the background color of face FACE to COLOR (a string).
655FRAME nil or not specified means change face on all frames.
656When called interactively, prompt for the face and color."
657 (interactive (read-face-and-attribute :background))
78ad1cd5 658 (set-face-attribute face frame :background (or color 'unspecified)))
5f5c8ee5
GM
659
660
661(defun set-face-foreground (face color &optional frame)
662 "Change the foreground color of face FACE to COLOR (a string).
663FRAME nil or not specified means change face on all frames.
664When called interactively, prompt for the face and color."
665 (interactive (read-face-and-attribute :foreground))
78ad1cd5 666 (set-face-attribute face frame :foreground (or color 'unspecified)))
5f5c8ee5
GM
667
668
669(defun set-face-stipple (face stipple &optional frame)
670 "Change the stipple pixmap of face FACE to STIPPLE.
671FRAME nil or not specified means change face on all frames.
70d0c3b0 672STIPPLE should be a string, the name of a file of pixmap data.
5f5c8ee5
GM
673The directories listed in the `x-bitmap-file-path' variable are searched.
674
675Alternatively, STIPPLE may be a list of the form (WIDTH HEIGHT DATA)
676where WIDTH and HEIGHT are the size in pixels,
677and DATA is a string, containing the raw bits of the bitmap."
678 (interactive (read-face-and-attribute :stipple))
78ad1cd5 679 (set-face-attribute face frame :stipple (or stipple 'unspecified)))
5f5c8ee5
GM
680
681
682(defun set-face-underline (face underline &optional frame)
683 "Specify whether face FACE is underlined.
684UNDERLINE nil means FACE explicitly doesn't underline.
685UNDERLINE non-nil means FACE explicitly does underlining
686with the same of the foreground color.
687If UNDERLINE is a string, underline with the color named UNDERLINE.
688FRAME nil or not specified means change face on all frames.
689Use `set-face-attribute' to ``unspecify'' underlining."
690 (interactive
691 (let ((list (read-face-and-attribute :underline)))
692 (list (car list) (eq (car (cdr list)) t))))
693 (set-face-attribute face frame :underline underline))
694
695
696(defun set-face-underline-p (face underline-p &optional frame)
697 "Specify whether face FACE is underlined.
698UNDERLINE-P nil means FACE explicitly doesn't underline.
699UNDERLINE-P non-nil means FACE explicitly does underlining.
700FRAME nil or not specified means change face on all frames.
701Use `set-face-attribute' to ``unspecify'' underlining."
702 (interactive
703 (let ((list (read-face-and-attribute :underline)))
704 (list (car list) (eq (car (cdr list)) t))))
705 (set-face-attribute face frame :underline underline-p))
706
707
708(defun set-face-inverse-video-p (face inverse-video-p &optional frame)
709 "Specify whether face FACE is in inverse video.
710INVERSE-VIDEO-P non-nil means FACE displays explicitly in inverse video.
711INVERSE-VIDEO-P nil means FACE explicitly is not in inverse video.
712FRAME nil or not specified means change face on all frames.
713Use `set-face-attribute' to ``unspecify'' the inverse video attribute."
714 (interactive
715 (let ((list (read-face-and-attribute :inverse-video)))
716 (list (car list) (eq (car (cdr list)) t))))
717 (set-face-attribute face frame :inverse-video inverse-video-p))
718
719
720(defun set-face-bold-p (face bold-p &optional frame)
721 "Specify whether face FACE is bold.
722BOLD-P non-nil means FACE should explicitly display bold.
723BOLD-P nil means FACE should explicitly display non-bold.
724FRAME nil or not specified means change face on all frames.
725Use `set-face-attribute' or `modify-face' for finer control."
726 (if (null bold-p)
727 (make-face-unbold face frame)
728 (make-face-bold face frame)))
729
730
731(defun set-face-italic-p (face italic-p &optional frame)
732 "Specify whether face FACE is italic.
733ITALIC-P non-nil means FACE should explicitly display italic.
734ITALIC-P nil means FACE should explicitly display non-italic.
735FRAME nil or not specified means change face on all frames.
736Use `set-face-attribute' or `modify-face' for finer control."
737 (if (null italic-p)
738 (make-face-unitalic face frame)
739 (make-face-italic face frame)))
740
741
742(defalias 'set-face-background-pixmap 'set-face-stipple)
743
744
745(defun invert-face (face &optional frame)
746 "Swap the foreground and background colors of FACE.
747FRAME nil or not specified means change face on all frames.
748If FACE specifies neither foreground nor background color,
749set its foreground and background to the background and foreground
750of the default face. Value is FACE."
84fe35f0 751 (interactive (list (read-face-name "Invert face ")))
5f5c8ee5
GM
752 (let ((fg (face-attribute face :foreground frame))
753 (bg (face-attribute face :background frame)))
754 (if (or fg bg)
755 (set-face-attribute face frame :foreground bg :background fg)
756 (set-face-attribute face frame
757 :foreground
758 (face-attribute 'default :background frame)
759 :background
760 (face-attribute 'default :foreground frame))))
761 face)
762
763\f
764;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
765;;; Interactively modifying faces.
766;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
767
768(defun read-face-name (prompt)
769 "Read and return a face symbol, prompting with PROMPT.
770Value is a symbol naming a known face."
771 (let ((face-list (mapcar #'(lambda (x) (cons (symbol-name x) x))
772 (face-list)))
84fe35f0 773 (def (thing-at-point 'symbol))
5f5c8ee5 774 face)
84fe35f0 775 (cond ((assoc def face-list)
19feb949 776 (setq prompt (concat prompt " (default " def "): ")))
84fe35f0
DL
777 (t (setq def nil)
778 (setq prompt (concat prompt ": "))))
779 (while (equal "" (setq face (completing-read
780 prompt face-list nil t nil nil def))))
5f5c8ee5
GM
781 (intern face)))
782
783
784(defun face-valid-attribute-values (attribute &optional frame)
785 "Return valid values for face attribute ATTRIBUTE.
786The optional argument FRAME is used to determine available fonts
787and colors. If it is nil or not specified, the selected frame is
788used. Value is an alist of (NAME . VALUE) if ATTRIBUTE expects a value
789out of a set of discrete values. Value is `integerp' if ATTRIBUTE expects
790an integer value."
00f51890
SS
791 (let ((valid
792 (case attribute
793 (:family
794 (if window-system
795 (mapcar #'(lambda (x) (cons (car x) (car x)))
796 (x-font-family-list))
797 ;; Only one font on TTYs.
798 (list (cons "default" "default"))))
799 ((:width :weight :slant :inverse-video)
800 (mapcar #'(lambda (x) (cons (symbol-name x) x))
801 (internal-lisp-face-attribute-values attribute)))
802 ((:underline :overline :strike-through :box)
803 (if window-system
804 (nconc (mapcar #'(lambda (x) (cons (symbol-name x) x))
805 (internal-lisp-face-attribute-values attribute))
806 (mapcar #'(lambda (c) (cons c c))
807 (x-defined-colors frame)))
808 (mapcar #'(lambda (x) (cons (symbol-name x) x))
809 (internal-lisp-face-attribute-values attribute))))
810 ((:foreground :background)
811 (mapcar #'(lambda (c) (cons c c))
812 (defined-colors frame)))
813 ((:height)
814 'integerp)
815 (:stipple
816 (and (memq window-system '(x w32 mac))
817 (mapcar #'list
818 (apply #'nconc
819 (mapcar (lambda (dir)
820 (and (file-readable-p dir)
821 (file-directory-p dir)
822 (directory-files dir)))
823 x-bitmap-file-path)))))
824 (:inherit
825 (cons '("none" . nil)
826 (mapcar #'(lambda (c) (cons (symbol-name c) c))
827 (face-list))))
828 (t
829 (error "Internal error")))))
19feb949 830 (if (and (listp valid) (not (memq attribute '(:inherit))))
fbd5f1cc
GM
831 (nconc (list (cons "unspecified" 'unspecified)) valid)
832 valid)))
5f5c8ee5
GM
833
834
835(defvar face-attribute-name-alist
836 '((:family . "font family")
837 (:width . "character set width")
838 (:height . "height in 1/10 pt")
839 (:weight . "weight")
840 (:slant . "slant")
841 (:underline . "underline")
842 (:overline . "overline")
843 (:strike-through . "strike-through")
844 (:box . "box")
845 (:inverse-video . "inverse-video display")
846 (:foreground . "foreground color")
847 (:background . "background color")
19feb949
MB
848 (:stipple . "background stipple")
849 (:inherit . "inheritance"))
5f5c8ee5
GM
850 "An alist of descriptive names for face attributes.
851Each element has the form (ATTRIBUTE-NAME . DESCRIPTION) where
852ATTRIBUTE-NAME is a face attribute name (a keyword symbol), and
853DESCRIPTION is a descriptive name for ATTRIBUTE-NAME.")
854
855
856(defun face-descriptive-attribute-name (attribute)
857 "Return a descriptive name for ATTRIBUTE."
858 (cdr (assq attribute face-attribute-name-alist)))
859
860
861(defun face-read-string (face default name &optional completion-alist)
862 "Interactively read a face attribute string value.
19feb949
MB
863FACE is the face whose attribute is read. If non-nil, DEFAULT is the
864default string to return if no new value is entered. NAME is a
865descriptive name of the attribute for prompting. COMPLETION-ALIST is an
866alist of valid values, if non-nil.
5f5c8ee5 867
19feb949 868Entering nothing accepts the default string DEFAULT.
5f5c8ee5 869Value is the new attribute value."
19feb949
MB
870 ;; Capitalize NAME (we don't use `capitalize' because that capitalizes
871 ;; each word in a string separately).
872 (setq name (concat (upcase (substring name 0 1)) (substring name 1)))
5f5c8ee5
GM
873 (let* ((completion-ignore-case t)
874 (value (completing-read
875 (if default
19feb949
MB
876 (format "%s for face `%s' (default %s): "
877 name face default)
878 (format "%s for face `%s': " name face))
5f5c8ee5 879 completion-alist)))
fbd5f1cc 880 (if (equal value "") default value)))
5f5c8ee5
GM
881
882
883(defun face-read-integer (face default name)
884 "Interactively read an integer face attribute value.
885FACE is the face whose attribute is read. DEFAULT is the default
886value to return if no new value is entered. NAME is a descriptive
887name of the attribute for prompting. Value is the new attribute value."
fbd5f1cc
GM
888 (let ((new-value
889 (face-read-string face
19feb949 890 (format "%s" default)
fbd5f1cc
GM
891 name
892 (list (cons "unspecified" 'unspecified)))))
19feb949
MB
893 (cond ((equal new-value "unspecified")
894 'unspecified)
895 ((member new-value '("unspecified-fg" "unspecified-bg"))
896 new-value)
897 (t
898 (string-to-int new-value)))))
5f5c8ee5
GM
899
900
901(defun read-face-attribute (face attribute &optional frame)
902 "Interactively read a new value for FACE's ATTRIBUTE.
903Optional argument FRAME nil or unspecified means read an attribute value
904of a global face. Value is the new attribute value."
905 (let* ((old-value (face-attribute face attribute frame))
906 (attribute-name (face-descriptive-attribute-name attribute))
907 (valid (face-valid-attribute-values attribute frame))
908 new-value)
909 ;; Represent complex attribute values as strings by printing them
910 ;; out. Stipple can be a vector; (WIDTH HEIGHT DATA). Box can be
911 ;; a list `(:width WIDTH :color COLOR)' or `(:width WIDTH :shadow
912 ;; SHADOW)'.
913 (when (and (or (eq attribute :stipple)
914 (eq attribute :box))
915 (or (consp old-value)
916 (vectorp old-value)))
917 (setq old-value (prin1-to-string old-value)))
918 (cond ((listp valid)
19feb949
MB
919 (let ((default
920 (or (car (rassoc old-value valid))
921 (format "%s" old-value))))
922 (setq new-value
923 (face-read-string face default attribute-name valid))
924 (if (equal new-value default)
925 ;; Nothing changed, so don't bother with all the stuff
926 ;; below. In particular, this avoids a non-tty color
927 ;; from being canonicalized for a tty when the user
928 ;; just uses the default.
929 (setq new-value old-value)
930 ;; Terminal frames can support colors that don't appear
931 ;; explicitly in VALID, using color approximation code
932 ;; in tty-colors.el.
f9056dd9
MB
933 (when (and (memq attribute '(:foreground :background))
934 (not (memq window-system '(x w32 mac)))
935 (not (member new-value
936 '("unspecified"
937 "unspecified-fg" "unspecified-bg"))))
4385f1b0 938 (setq new-value (car (tty-color-desc new-value frame))))
f9056dd9
MB
939 (when (assoc new-value valid)
940 (setq new-value (cdr (assoc new-value valid)))))))
5f5c8ee5
GM
941 ((eq valid 'integerp)
942 (setq new-value (face-read-integer face old-value attribute-name)))
943 (t (error "Internal error")))
944 ;; Convert stipple and box value text we read back to a list or
945 ;; vector if it looks like one. This makes the assumption that a
946 ;; pixmap file name won't start with an open-paren.
947 (when (and (or (eq attribute :stipple)
948 (eq attribute :box))
949 (stringp new-value)
950 (string-match "^[[(]" new-value))
951 (setq new-value (read new-value)))
952 new-value))
953
954
955(defun read-face-font (face &optional frame)
956 "Read the name of a font for FACE on FRAME.
957If optional argument FRAME Is nil or omitted, use the selected frame."
958 (let ((completion-ignore-case t))
48ec9939 959 (completing-read (format "Set font attributes of face `%s' from font: " face)
b32631c8 960 (mapcar 'list (x-list-fonts "*" nil frame)))))
5f5c8ee5
GM
961
962
963(defun read-all-face-attributes (face &optional frame)
964 "Interactively read all attributes for FACE.
965If optional argument FRAME Is nil or omitted, use the selected frame.
966Value is a property list of attribute names and new values."
967 (let (result)
968 (dolist (attribute face-attribute-name-alist result)
969 (setq result (cons (car attribute)
970 (cons (read-face-attribute face (car attribute) frame)
971 result))))))
972
7cd512f2
SM
973(defun modify-face (&optional face foreground background stipple
974 bold-p italic-p underline-p inverse-p frame)
5f5c8ee5
GM
975 "Modify attributes of faces interactively.
976If optional argument FRAME is nil or omitted, modify the face used
7cd512f2
SM
977for newly created frame, i.e. the global face.
978For non-interactive use, `set-face-attribute' is preferred.
979When called from elisp, if FACE is nil, all arguments but FRAME are ignored
980and the face and its settings are obtained by querying the user."
5f5c8ee5 981 (interactive)
7cd512f2
SM
982 (if face
983 (set-face-attribute face frame
984 :foreground (or foreground 'unspecified)
985 :background (or background 'unspecified)
986 :stipple stipple
987 :bold bold-p
988 :italic italic-p
989 :underline underline-p
990 :inverse-video inverse-p)
991 (setq face (read-face-name "Modify face"))
5f5c8ee5
GM
992 (apply #'set-face-attribute face frame
993 (read-all-face-attributes face frame))))
994
5f5c8ee5
GM
995(defun read-face-and-attribute (attribute &optional frame)
996 "Read face name and face attribute value.
997ATTRIBUTE is the attribute whose new value is read.
998FRAME nil or unspecified means read attribute value of global face.
999Value is a list (FACE NEW-VALUE) where FACE is the face read
7cd512f2 1000\(a symbol), and NEW-VALUE is value read."
5f5c8ee5 1001 (cond ((eq attribute :font)
48ec9939 1002 (let* ((prompt "Set font-related attributes of face")
5f5c8ee5
GM
1003 (face (read-face-name prompt))
1004 (font (read-face-font face frame)))
1005 (list face font)))
1006 (t
1007 (let* ((attribute-name (face-descriptive-attribute-name attribute))
19feb949 1008 (prompt (format "Set %s of face" attribute-name))
5f5c8ee5
GM
1009 (face (read-face-name prompt))
1010 (new-value (read-face-attribute face attribute frame)))
1011 (list face new-value)))))
1012
1013
1014\f
1015;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1016;;; Listing faces.
1017;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1018
1019(defvar list-faces-sample-text
1020 "abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ"
1021 "*Text string to display as the sample text for `list-faces-display'.")
1022
1023
1024;; The name list-faces would be more consistent, but let's avoid a
1025;; conflict with Lucid, which uses that name differently.
1026
1027(defun list-faces-display ()
1028 "List all faces, using the same sample text in each.
1029The sample text is a string that comes from the variable
1030`list-faces-sample-text'."
1031 (interactive)
1032 (let ((faces (sort (face-list) #'string-lessp))
1033 (face nil)
1034 (frame (selected-frame))
84fe35f0 1035 disp-frame window face-name)
5f5c8ee5
GM
1036 (with-output-to-temp-buffer "*Faces*"
1037 (save-excursion
1038 (set-buffer standard-output)
1039 (setq truncate-lines t)
84fe35f0
DL
1040 (insert
1041 (substitute-command-keys
1042 (concat
1043 "Use "
53c80cf6 1044 (if (display-mouse-p) "\\[help-follow-mouse] or ")
32e33f60 1045 "\\[help-follow] on a face name to customize it\n"
84fe35f0
DL
1046 "or on its sample text for a decription of the face.\n\n")))
1047 (setq help-xref-stack nil)
5f5c8ee5
GM
1048 (while faces
1049 (setq face (car faces))
1050 (setq faces (cdr faces))
84fe35f0
DL
1051 (setq face-name (symbol-name face))
1052 (insert (format "%25s " face-name))
1053 ;; Hyperlink to a customization buffer for the face. Using
1054 ;; the help xref mechanism may not be the best way.
1055 (save-excursion
1056 (save-match-data
1057 (search-backward face-name)
8940232b 1058 (help-xref-button 0 'help-customize-face face-name)))
5f5c8ee5
GM
1059 (let ((beg (point)))
1060 (insert list-faces-sample-text)
84fe35f0
DL
1061 ;; Hyperlink to a help buffer for the face.
1062 (save-excursion
1063 (save-match-data
1064 (search-backward list-faces-sample-text)
8940232b 1065 (help-xref-button 0 'help-face face)))
5f5c8ee5
GM
1066 (insert "\n")
1067 (put-text-property beg (1- (point)) 'face face)
1068 ;; If the sample text has multiple lines, line up all of them.
1069 (goto-char beg)
1070 (forward-line 1)
1071 (while (not (eobp))
1072 (insert " ")
1073 (forward-line 1))))
1074 (goto-char (point-min)))
1075 (print-help-return-message))
1076 ;; If the *Faces* buffer appears in a different frame,
1077 ;; copy all the face definitions from FRAME,
1078 ;; so that the display will reflect the frame that was selected.
1079 (setq window (get-buffer-window (get-buffer "*Faces*") t))
1080 (setq disp-frame (if window (window-frame window)
1081 (car (frame-list))))
1082 (or (eq frame disp-frame)
1083 (let ((faces (face-list)))
1084 (while faces
1085 (copy-face (car faces) (car faces) frame disp-frame)
1086 (setq faces (cdr faces)))))))
1087
1088
1089(defun describe-face (face &optional frame)
1090 "Display the properties of face FACE on FRAME.
1091If the optional argument FRAME is given, report on face FACE in that frame.
1092If FRAME is t, report on the defaults for face FACE (for new frames).
1093If FRAME is omitted or nil, use the selected frame."
70d0c3b0 1094 (interactive (list (read-face-name "Describe face")))
5f5c8ee5
GM
1095 (let* ((attrs '((:family . "Family")
1096 (:width . "Width")
1097 (:height . "Height")
1098 (:weight . "Weight")
1099 (:slant . "Slant")
1100 (:foreground . "Foreground")
1101 (:background . "Background")
1102 (:underline . "Underline")
1103 (:overline . "Overline")
1104 (:strike-through . "Strike-through")
1105 (:box . "Box")
1106 (:inverse-video . "Inverse")
b32631c8 1107 (:stipple . "Stipple")
25ac7b52
MB
1108 (:font . "Font or fontset")
1109 (:inherit . "Inherit")))
5f5c8ee5
GM
1110 (max-width (apply #'max (mapcar #'(lambda (x) (length (cdr x)))
1111 attrs))))
2cb95d1b 1112 (help-setup-xref (list #'describe-face face) (interactive-p))
8940232b 1113 (with-output-to-temp-buffer (help-buffer)
5f5c8ee5
GM
1114 (save-excursion
1115 (set-buffer standard-output)
1116 (dolist (a attrs)
1117 (let ((attr (face-attribute face (car a) frame)))
1118 (insert (make-string (- max-width (length (cdr a))) ?\ )
1119 (cdr a) ": " (format "%s" attr) "\n")))
1120 (insert "\nDocumentation:\n\n"
1121 (or (face-documentation face)
70d0c3b0
DL
1122 "not documented as a face."))
1123 (let ((customize-label "customize"))
1124 (terpri)
1125 (terpri)
1126 (princ (concat "You can " customize-label " this face."))
8940232b 1127 (with-current-buffer standard-output
70d0c3b0
DL
1128 (save-excursion
1129 (re-search-backward
1130 (concat "\\(" customize-label "\\)") nil t)
8940232b 1131 (help-xref-button 1 'help-customize-face face)))))
2cb95d1b 1132 (print-help-return-message))))
8940232b 1133
5f5c8ee5
GM
1134\f
1135;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1136;;; Face specifications (defface).
1137;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1138
1139;; Parameter FRAME Is kept for call compatibility to with previous
1140;; face implementation.
1141
1142(defun face-attr-construct (face &optional frame)
1143 "Return a defface-style attribute list for FACE on FRAME.
1144Value is a property list of pairs ATTRIBUTE VALUE for all specified
1145face attributes of FACE where ATTRIBUTE is the attribute name and
1146VALUE is the specified value of that attribute."
1147 (let (result)
1148 (dolist (entry face-attribute-name-alist result)
1149 (let* ((attribute (car entry))
1150 (value (face-attribute face attribute)))
1151 (unless (eq value 'unspecified)
1152 (setq result (nconc (list attribute value) result)))))))
00f51890 1153
5f5c8ee5
GM
1154
1155(defun face-spec-set-match-display (display frame)
1156 "Non-nil if DISPLAY matches FRAME.
1157DISPLAY is part of a spec such as can be used in `defface'.
1158If FRAME is nil, the current FRAME is used."
1159 (let* ((conjuncts display)
1160 conjunct req options
1161 ;; t means we have succeeded against all the conjuncts in
1162 ;; DISPLAY that have been tested so far.
1163 (match t))
1164 (if (eq conjuncts t)
1165 (setq conjuncts nil))
1166 (while (and conjuncts match)
1167 (setq conjunct (car conjuncts)
1168 conjuncts (cdr conjuncts)
1169 req (car conjunct)
1170 options (cdr conjunct)
1171 match (cond ((eq req 'type)
1172 (or (memq window-system options)
1695ca2b
EZ
1173 ;; FIXME: This should be revisited to use
1174 ;; display-graphic-p, provided that the
1175 ;; color selection depends on the number
1176 ;; of supported colors, and all defface's
1177 ;; are changed to look at number of colors
1178 ;; instead of (type graphic) etc.
1179 (and (null window-system)
1180 (memq 'tty options))
ee716db5
GM
1181 (and (memq 'motif options)
1182 (featurep 'motif))
1183 (and (memq 'lucid options)
1184 (featurep 'x-toolkit)
1185 (not (featurep 'motif)))
1186 (and (memq 'x-toolkit options)
1187 (featurep 'x-toolkit))))
5f5c8ee5
GM
1188 ((eq req 'class)
1189 (memq (frame-parameter frame 'display-type) options))
1190 ((eq req 'background)
1191 (memq (frame-parameter frame 'background-mode)
1192 options))
70d0c3b0 1193 (t (error "Unknown req `%S' with options `%S'"
5f5c8ee5
GM
1194 req options)))))
1195 match))
1196
1197
1198(defun face-spec-choose (spec &optional frame)
96c2938f
MB
1199 "Choose the proper attributes for FRAME, out of SPEC.
1200If SPEC is nil, return nil."
5f5c8ee5
GM
1201 (unless frame
1202 (setq frame (selected-frame)))
1203 (let ((tail spec)
1204 result)
1205 (while tail
073f69e6
MB
1206 (let* ((entry (pop tail))
1207 (display (car entry))
1208 (attrs (cdr entry)))
5f5c8ee5 1209 (when (face-spec-set-match-display display frame)
073f69e6
MB
1210 (setq result (if (listp (car attrs))
1211 ;; Old-style entry, the attribute list is the
1212 ;; first element.
1213 (car attrs)
1214 attrs)
1215 tail nil))))
5f5c8ee5
GM
1216 result))
1217
1218
1219(defun face-spec-reset-face (face &optional frame)
1220 "Reset all attributes of FACE on FRAME to unspecified."
bfe27647 1221 (let ((attrs face-attribute-name-alist))
5f5c8ee5
GM
1222 (while attrs
1223 (let ((attr-and-name (car attrs)))
bfe27647
GM
1224 (set-face-attribute face frame (car attr-and-name) 'unspecified))
1225 (setq attrs (cdr attrs)))))
5f5c8ee5
GM
1226
1227
1228(defun face-spec-set (face spec &optional frame)
1229 "Set FACE's attributes according to the first matching entry in SPEC.
1230FRAME is the frame whose frame-local face is set. FRAME nil means
96c2938f
MB
1231do it on all frames. See `defface' for information about SPEC.
1232If SPEC is nil, do nothing."
bfe27647 1233 (let ((attrs (face-spec-choose spec frame)))
10ab7a51
GM
1234 (when attrs
1235 (face-spec-reset-face face frame))
5f5c8ee5
GM
1236 (while attrs
1237 (let ((attribute (car attrs))
1238 (value (car (cdr attrs))))
1239 ;; Support some old-style attribute names and values.
1240 (case attribute
1241 (:bold (setq attribute :weight value (if value 'bold 'normal)))
c9630862 1242 (:italic (setq attribute :slant value (if value 'italic 'normal)))
c2424847 1243 ((:foreground :background)
00f51890 1244 ;; Compatibility with 20.x. Some bogus face specs seem to
c2424847
GM
1245 ;; exist containing things like `:foreground nil'.
1246 (if (null value) (setq value 'unspecified)))
c9630862
GM
1247 (t (unless (assq attribute face-x-resources)
1248 (setq attribute nil))))
1249 (when attribute
bfe27647
GM
1250 (set-face-attribute face frame attribute value)))
1251 (setq attrs (cdr (cdr attrs))))))
5f5c8ee5
GM
1252
1253
1254(defun face-attr-match-p (face attrs &optional frame)
a9de7d29 1255 "Return t if attributes of FACE match values in plist ATTRS.
5f5c8ee5
GM
1256Optional parameter FRAME is the frame whose definition of FACE
1257is used. If nil or omitted, use the selected frame."
1258 (unless frame
1259 (setq frame (selected-frame)))
1260 (let ((list face-attribute-name-alist)
1261 (match t))
1262 (while (and match (not (null list)))
1263 (let* ((attr (car (car list)))
a9de7d29
MB
1264 (specified-value
1265 (if (plist-member attrs attr)
1266 (plist-get attrs attr)
1267 'unspecified))
5f5c8ee5 1268 (value-now (face-attribute face attr frame)))
a9de7d29 1269 (setq match (equal specified-value value-now))
5f5c8ee5
GM
1270 (setq list (cdr list))))
1271 match))
1272
5f5c8ee5
GM
1273(defun face-spec-match-p (face spec &optional frame)
1274 "Return t if FACE, on FRAME, matches what SPEC says it should look like."
1275 (face-attr-match-p face (face-spec-choose spec frame) frame))
1276
94fe8a31 1277(defsubst face-default-spec (face)
96c2938f
MB
1278 "Return the default face-spec for FACE, ignoring any user customization.
1279If there is no default for FACE, return nil."
1280 (get face 'face-defface-spec))
5f5c8ee5 1281
94fe8a31
MB
1282(defsubst face-user-default-spec (face)
1283 "Return the user's customized face-spec for FACE, or the default if none.
7cd512f2 1284If there is neither a user setting nor a default for FACE, return nil."
94fe8a31
MB
1285 (or (get face 'saved-face)
1286 (face-default-spec face)))
1287
5f5c8ee5 1288\f
f795f633
EZ
1289;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1290;;; Frame-type independent color support.
1291;;; We keep the old x-* names as aliases for back-compatibility.
1292;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1293
1294(defun defined-colors (&optional frame)
1295 "Return a list of colors supported for a particular frame.
1296The argument FRAME specifies which frame to try.
1297The value may be different for frames on different display types.
1298If FRAME doesn't support colors, the value is nil."
1a578e9b 1299 (if (memq (framep (or frame (selected-frame))) '(x w32 mac))
f795f633 1300 (xw-defined-colors frame)
37462f4c 1301 (mapcar 'car (tty-color-alist frame))))
f795f633
EZ
1302(defalias 'x-defined-colors 'defined-colors)
1303
1304(defun color-defined-p (color &optional frame)
1305 "Return non-nil if color COLOR is supported on frame FRAME.
1306If FRAME is omitted or nil, use the selected frame.
293b4814
EZ
1307If COLOR is the symbol `unspecified' or one of the strings
1308\"unspecified-fg\" or \"unspecified-bg\", the value is nil."
1e221c16 1309 (if (member color '(unspecified "unspecified-bg" "unspecified-fg"))
f795f633 1310 nil
1a578e9b 1311 (if (member (framep (or frame (selected-frame))) '(x w32 mac))
f795f633 1312 (xw-color-defined-p color frame)
37462f4c 1313 (numberp (tty-color-translate color frame)))))
f795f633
EZ
1314(defalias 'x-color-defined-p 'color-defined-p)
1315
1316(defun color-values (color &optional frame)
1317 "Return a description of the color named COLOR on frame FRAME.
1318The value is a list of integer RGB values--\(RED GREEN BLUE\).
b0285112 1319These values appear to range from 0 65535; white is \(65535 65535 65535\).
f795f633
EZ
1320If FRAME is omitted or nil, use the selected frame.
1321If FRAME cannot display COLOR, the value is nil.
293b4814
EZ
1322If COLOR is the symbol `unspecified' or one of the strings
1323\"unspecified-fg\" or \"unspecified-bg\", the value is nil."
1e221c16 1324 (if (member color '(unspecified "unspecified-fg" "unspecified-bg"))
f795f633 1325 nil
1a578e9b 1326 (if (memq (framep (or frame (selected-frame))) '(x w32 mac))
f795f633
EZ
1327 (xw-color-values color frame)
1328 (tty-color-values color frame))))
1329(defalias 'x-color-values 'color-values)
1330
1331(defun display-color-p (&optional display)
1332 "Return t if DISPLAY supports color.
1333The optional argument DISPLAY specifies which display to ask about.
1334DISPLAY should be either a frame or a display name (a string).
1335If omitted or nil, that stands for the selected frame's display."
1a578e9b 1336 (if (memq (framep-on-display display) '(x w32 mac))
d5179a01
EZ
1337 (xw-display-color-p display)
1338 (tty-display-color-p display)))
f795f633
EZ
1339(defalias 'x-display-color-p 'display-color-p)
1340
d5179a01
EZ
1341(defun display-grayscale-p (&optional display)
1342 "Return non-nil if frames on DISPLAY can display shades of gray."
1343 (let ((frame-type (framep-on-display display)))
1344 (cond
1345 ((memq frame-type '(x w32 mac))
1346 (x-display-grayscale-p display))
1347 (t
1348 (> (tty-color-gray-shades display) 2)))))
1349
f795f633 1350\f
5f5c8ee5
GM
1351;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1352;;; Background mode.
1353;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1354
1355(defcustom frame-background-mode nil
1356 "*The brightness of the background.
1357Set this to the symbol `dark' if your background color is dark, `light' if
1358your background is light, or nil (default) if you want Emacs to
01eac4fd
GM
1359examine the brightness for you. Don't set this variable with `setq';
1360this won't have the expected effect."
5f5c8ee5
GM
1361 :group 'faces
1362 :set #'(lambda (var value)
c20d5073 1363 (set-default var value)
b5325e78 1364 (mapc 'frame-set-background-mode (frame-list)))
5f5c8ee5 1365 :initialize 'custom-initialize-changed
70d0c3b0 1366 :type '(choice (choice-item dark)
5f5c8ee5
GM
1367 (choice-item light)
1368 (choice-item :tag "default" nil)))
1369
1370
1371(defun frame-set-background-mode (frame)
d8abcd91
MB
1372 "Set up display-dependent faces on FRAME.
1373Display-dependent faces are those which have different definitions
1374according to the `background-mode' and `display-type' frame parameters."
5f5c8ee5
GM
1375 (let* ((bg-resource
1376 (and window-system
1377 (x-get-resource ".backgroundMode" "BackgroundMode")))
772139c0 1378 (bg-color (frame-parameter frame 'background-color))
f161d539
MB
1379 (bg-mode
1380 (cond (frame-background-mode)
f161d539
MB
1381 (bg-resource
1382 (intern (downcase bg-resource)))
772139c0
EZ
1383 ((and (null window-system) (null bg-color))
1384 ;; No way to determine this automatically (?).
1385 'dark)
1386 ;; Unspecified frame background color can only happen
1387 ;; on tty's.
1e221c16 1388 ((member bg-color '(unspecified "unspecified-bg"))
772139c0 1389 'dark)
1e221c16 1390 ((equal bg-color "unspecified-fg") ; inverted colors
772139c0
EZ
1391 'light)
1392 ((>= (apply '+ (x-color-values bg-color frame))
f161d539
MB
1393 ;; Just looking at the screen, colors whose
1394 ;; values add up to .6 of the white total
1395 ;; still look dark to me.
1396 (* (apply '+ (x-color-values "white" frame)) .6))
772139c0
EZ
1397 'light)
1398 (t 'dark)))
f161d539
MB
1399 (display-type
1400 (cond ((null window-system)
1401 (if (tty-display-color-p frame) 'color 'mono))
1402 ((x-display-color-p frame)
1403 'color)
1404 ((x-display-grayscale-p frame)
1405 'grayscale)
1406 (t 'mono)))
1407 (old-bg-mode
1408 (frame-parameter frame 'background-mode))
1409 (old-display-type
1410 (frame-parameter frame 'display-type)))
1411
1412 (unless (and (eq bg-mode old-bg-mode) (eq display-type old-display-type))
6e424019
MB
1413 (let ((locally-modified-faces nil))
1414 ;; Before modifying the frame parameters, we collect a list of
1415 ;; faces that don't match what their face-spec says they should
1416 ;; look like; we then avoid changing these faces below. A
1417 ;; negative list is used on the assumption that most faces will
1418 ;; be unmodified, so we can avoid consing in the common case.
1419 (dolist (face (face-list))
1420 (when (not (face-spec-match-p face
1421 (face-user-default-spec face)
1422 (selected-frame)))
1423 (push face locally-modified-faces)))
1424 ;; Now change to the new frame parameters
1425 (modify-frame-parameters frame
1426 (list (cons 'background-mode bg-mode)
1427 (cons 'display-type display-type)))
1428 ;; For all named faces, choose face specs matching the new frame
1429 ;; parameters, unless they have been locally modified.
1430 (dolist (face (face-list))
1431 (unless (memq face locally-modified-faces)
1432 (face-spec-set face (face-user-default-spec face) frame)))))))
5f5c8ee5 1433
5f5c8ee5
GM
1434\f
1435;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1436;;; Frame creation.
1437;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1438
1439(defun x-handle-named-frame-geometry (parameters)
1440 "Add geometry parameters for a named frame to parameter list PARAMETERS.
1441Value is the new parameter list."
1442 (let* ((name (or (cdr (assq 'name parameters))
1443 (cdr (assq 'name default-frame-alist))))
1444 (x-resource-name name)
1445 (res-geometry (if name (x-get-resource "geometry" "Geometry"))))
1446 (when res-geometry
1447 (let ((parsed (x-parse-geometry res-geometry)))
1448 ;; If the resource specifies a position, call the position
1449 ;; and size "user-specified".
1450 (when (or (assq 'top parsed)
1451 (assq 'left parsed))
1452 (setq parsed (append '((user-position . t) (user-size . t)) parsed)))
1453 ;; Put the geometry parameters at the end. Copy
1454 ;; default-frame-alist so that they go after it.
1455 (setq parameters (append parameters default-frame-alist parsed))))
1456 parameters))
1457
1458
1459(defun x-handle-reverse-video (frame parameters)
1460 "Handle the reverse-video frame parameter and X resource.
1461`x-create-frame' does not handle this one."
1462 (when (cdr (or (assq 'reverse parameters)
1463 (assq 'reverse default-frame-alist)
1464 (let ((resource (x-get-resource "reverseVideo"
1465 "ReverseVideo")))
1466 (if resource
1467 (cons nil (member (downcase resource)
1468 '("on" "true")))))))
1469 (let* ((params (frame-parameters frame))
1470 (bg (cdr (assq 'foreground-color params)))
1471 (fg (cdr (assq 'background-color params))))
1472 (modify-frame-parameters frame
1473 (list (cons 'foreground-color fg)
1474 (cons 'background-color bg)))
1475 (if (equal bg (cdr (assq 'border-color params)))
1476 (modify-frame-parameters frame
1477 (list (cons 'border-color fg))))
1478 (if (equal bg (cdr (assq 'mouse-color params)))
1479 (modify-frame-parameters frame
1480 (list (cons 'mouse-color fg))))
1481 (if (equal bg (cdr (assq 'cursor-color params)))
1482 (modify-frame-parameters frame
1483 (list (cons 'cursor-color fg)))))))
1484
1485
1486(defun x-create-frame-with-faces (&optional parameters)
1487 "Create a frame from optional frame parameters PARAMETERS.
1488Parameters not specified by PARAMETERS are taken from
1489`default-frame-alist'. If PARAMETERS specify a frame name,
1490handle X geometry resources for that name. If either PARAMETERS
1491or `default-frame-alist' contains a `reverse' parameter, or
1492the X resource ``reverseVideo'' is present, handle that.
1493Value is the new frame created."
1494 (setq parameters (x-handle-named-frame-geometry parameters))
1495 (let ((visibility-spec (assq 'visibility parameters))
1496 (frame-list (frame-list))
1497 (frame (x-create-frame (cons '(visibility . nil) parameters)))
1498 success)
1499 (unwind-protect
1500 (progn
1501 (x-handle-reverse-video frame parameters)
1502 (frame-set-background-mode frame)
1503 (face-set-after-frame-default frame)
1504 (if (or (null frame-list) (null visibility-spec))
1505 (make-frame-visible frame)
1506 (modify-frame-parameters frame (list visibility-spec)))
1507 (setq success t))
1508 (unless success
1509 (delete-frame frame)))
1510 frame))
1511
1512
1513(defun face-set-after-frame-default (frame)
f1cae29e
GM
1514 "Set frame-local faces of FRAME from face specs and resources.
1515Initialize colors of certain faces from frame parameters."
5f5c8ee5 1516 (dolist (face (face-list))
96c2938f
MB
1517 (face-spec-set face (face-user-default-spec face) frame)
1518 (internal-merge-in-global-face face frame)
2392ccb7
GM
1519 (when (and (memq window-system '(x w32 mac))
1520 (or (not (boundp 'inhibit-default-face-x-resources))
1521 (not (eq face 'default))))
96c2938f 1522 (make-face-x-resource-internal face frame)))
f1cae29e
GM
1523
1524 ;; Initialize attributes from frame parameters.
1525 (let ((params '((foreground-color default :foreground)
1526 (background-color default :background)
1527 (border-color border :background)
1528 (cursor-color cursor :background)
1529 (scroll-bar-foreground scroll-bar :foreground)
1530 (scroll-bar-background scroll-bar :background)
1531 (mouse-color mouse :background))))
bdc03dd9
GM
1532 (dolist (param params)
1533 (let ((frame-param (frame-parameter frame (nth 0 param)))
1534 (face (nth 1 param))
1535 (attr (nth 2 param)))
1536 (when (and frame-param
1537 ;; Don't override face attributes explicitly
1538 ;; specified for new frames.
1539 (eq (face-attribute face attr t) 'unspecified))
1540 (set-face-attribute face frame attr frame-param))))))
1541
5f5c8ee5 1542
53990c84
EZ
1543(defun tty-handle-reverse-video (frame parameters)
1544 "Handle the reverse-video frame parameter for terminal frames."
1545 (when (cdr (or (assq 'reverse parameters)
1546 (assq 'reverse default-frame-alist)))
53990c84
EZ
1547 (let* ((params (frame-parameters frame))
1548 (bg (cdr (assq 'foreground-color params)))
1549 (fg (cdr (assq 'background-color params))))
1550 (modify-frame-parameters frame
1551 (list (cons 'foreground-color fg)
1552 (cons 'background-color bg)))
1553 (if (equal bg (cdr (assq 'mouse-color params)))
1554 (modify-frame-parameters frame
1555 (list (cons 'mouse-color fg))))
1556 (if (equal bg (cdr (assq 'cursor-color params)))
1557 (modify-frame-parameters frame
1558 (list (cons 'cursor-color fg)))))))
1559
5f5c8ee5
GM
1560
1561(defun tty-create-frame-with-faces (&optional parameters)
1562 "Create a frame from optional frame parameters PARAMETERS.
1563Parameters not specified by PARAMETERS are taken from
1564`default-frame-alist'. If either PARAMETERS or `default-frame-alist'
1565contains a `reverse' parameter, handle that. Value is the new frame
1566created."
1567 (let ((frame (make-terminal-frame parameters))
1568 success)
1569 (unwind-protect
1570 (progn
53990c84 1571 (tty-handle-reverse-video frame (frame-parameters frame))
5f5c8ee5
GM
1572 (frame-set-background-mode frame)
1573 (face-set-after-frame-default frame)
1574 (setq success t))
1575 (unless success
1576 (delete-frame frame)))
1577 frame))
465fceed 1578
465fceed 1579
5f5c8ee5
GM
1580;; Called from C function init_display to initialize faces of the
1581;; dumped terminal frame on startup.
465fceed 1582
5f5c8ee5
GM
1583(defun tty-set-up-initial-frame-faces ()
1584 (let ((frame (selected-frame)))
1585 (frame-set-background-mode frame)
1586 (face-set-after-frame-default frame)))
00f51890 1587
465fceed 1588
465fceed 1589
5f5c8ee5
GM
1590\f
1591;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1592;;; Compatiblity with 20.2
1593;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
72418504 1594
5f5c8ee5 1595;; Update a frame's faces when we change its default font.
465fceed 1596
c20d5073 1597(defalias 'frame-update-faces 'ignore)
2598a293 1598(make-obsolete 'frame-update-faces "No longer necessary" "21.1")
e8e4cda0 1599
5f5c8ee5
GM
1600;; Update the colors of FACE, after FRAME's own colors have been
1601;; changed.
1bcb155c 1602
c20d5073 1603(defalias 'frame-update-face-colors 'frame-set-background-mode)
2598a293 1604(make-obsolete 'frame-update-face-colors 'frame-set-background-mode "21.1")
d11fba25 1605
bdda3754 1606\f
5f5c8ee5
GM
1607;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1608;;; Standard faces.
1609;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
465fceed 1610
5f5c8ee5
GM
1611(defgroup basic-faces nil
1612 "The standard faces of Emacs."
1613 :group 'faces)
ef436392 1614
465fceed 1615
5f5c8ee5
GM
1616(defface default
1617 '((t nil))
1618 "Basic default face."
1619 :group 'basic-faces)
465fceed 1620
72418504 1621
3759f14b 1622(defface mode-line
1a578e9b 1623 '((((type x w32 mac) (class color))
a63bcdb8 1624 (:box (:line-width -1 :style released-button)
f6478c66 1625 :background "grey75" :foreground "black"))
5f5c8ee5
GM
1626 (t
1627 (:inverse-video t)))
1628 "Basic mode line face."
a4391cf1 1629 :version "21.1"
84fe35f0 1630 :group 'modeline
5f5c8ee5 1631 :group 'basic-faces)
465fceed 1632
3759f14b
GM
1633;; Make `modeline' an alias for `mode-line', for compatibility.
1634(put 'modeline 'face-alias 'mode-line)
d11fba25 1635
e5e7779f 1636(defface header-line
a114b1ca 1637 '((((type tty))
1cb4393e
MB
1638 ;; This used to be `:inverse-video t', but that doesn't look very
1639 ;; good when combined with inverse-video mode-lines and multiple
1640 ;; windows. Underlining looks better, and is more consistent with
1641 ;; the window-system face variants, which deemphasize the
1642 ;; header-line in relation to the mode-line face. If a terminal
1643 ;; can't underline, then the header-line will end up without any
1644 ;; highlighting; this may be too confusing in general, although it
1645 ;; happens to look good with the only current use of header-lines,
1646 ;; the info browser. XXX
bdab1d43 1647 :underline t)
98490598 1648 (((class color grayscale) (background light))
bdab1d43
MB
1649 :inherit mode-line
1650 :background "grey90" :foreground "grey20"
1651 :box nil)
98490598 1652 (((class color grayscale) (background dark))
bdab1d43
MB
1653 :inherit mode-line
1654 :background "grey20" :foreground "grey90"
1655 :box nil)
98490598 1656 (((class mono) (background light))
bdab1d43
MB
1657 :inherit mode-line
1658 :background "white" :foreground "black"
1659 :inverse-video nil
1660 :box nil
1661 :underline t)
98490598 1662 (((class mono) (background dark))
bdab1d43
MB
1663 :inherit mode-line
1664 :background "black" :foreground "white"
1665 :inverse-video nil
1666 :box nil
1667 :underline t)
5f5c8ee5 1668 (t
bdab1d43 1669 :inverse-video t))
e5e7779f 1670 "Basic header-line face."
a4391cf1 1671 :version "21.1"
5f5c8ee5 1672 :group 'basic-faces)
e8e4cda0 1673
d11fba25 1674
533322cd 1675(defface tool-bar
1a578e9b 1676 '((((type x w32 mac) (class color))
f6478c66
GM
1677 (:box (:line-width 1 :style released-button)
1678 :background "grey75" :foreground "black"))
9668a746 1679 (((type x) (class mono))
f6478c66
GM
1680 (:box (:line-width 1 :style released-button)
1681 :background "grey" :foreground "black"))
5f5c8ee5
GM
1682 (t
1683 ()))
533322cd 1684 "Basic tool-bar face."
a4391cf1 1685 :version "21.1"
5f5c8ee5 1686 :group 'basic-faces)
d11fba25 1687
bdda3754 1688
5f5c8ee5
GM
1689(defface region
1690 '((((type tty) (class color))
1691 (:background "blue" :foreground "white"))
1692 (((type tty) (class mono))
1693 (:inverse-video t))
1694 (((class color) (background dark))
2af966f9 1695 (:background "blue3"))
5f5c8ee5 1696 (((class color) (background light))
442ebe98 1697 (:background "lightgoldenrod2"))
5f5c8ee5 1698 (t (:background "gray")))
62f1e1cd 1699 "Basic face for highlighting the region."
b5325e78 1700 :version "21.1"
5f5c8ee5 1701 :group 'basic-faces)
66a5c2c6 1702
bdda3754 1703
f1cae29e 1704(defface fringe
d6d59057
GM
1705 '((((class color) (background light))
1706 (:background "grey95"))
1707 (((class color) (background dark))
1708 (:background "grey10"))
1709 (t
1710 (:background "gray")))
f1cae29e
GM
1711 "Basic face for the fringes to the left and right of windows under X."
1712 :version "21.1"
84fe35f0 1713 :group 'frames
f1cae29e
GM
1714 :group 'basic-faces)
1715
1716
1717(defface scroll-bar '()
1718 "Basic face for the scroll bar colors under X."
1719 :version "21.1"
84fe35f0 1720 :group 'frames
f1cae29e
GM
1721 :group 'basic-faces)
1722
1723
ee716db5 1724(defface menu
ebd04058
MB
1725 '((((type tty))
1726 :inverse-video t)
1727 (((type x-toolkit))
1728 )
1729 (t
1730 :inverse-video t))
bbf63a7b 1731 "Basic face for the font and colors of the menu bar and popup menus."
ee716db5 1732 :version "21.1"
84fe35f0 1733 :group 'menu
ee716db5
GM
1734 :group 'basic-faces)
1735
1736
f1cae29e
GM
1737(defface border '()
1738 "Basic face for the frame border under X."
1739 :version "21.1"
84fe35f0 1740 :group 'frames
f1cae29e
GM
1741 :group 'basic-faces)
1742
1743
1744(defface cursor '()
1745 "Basic face for the cursor color under X."
1746 :version "21.1"
84fe35f0 1747 :group 'cursor
f1cae29e
GM
1748 :group 'basic-faces)
1749
1750
1751(defface mouse '()
1752 "Basic face for the mouse color under X."
e59176e2 1753 :version "21.1"
84fe35f0 1754 :group 'mouse
5f5c8ee5 1755 :group 'basic-faces)
bdda3754 1756
bdda3754 1757
5f5c8ee5
GM
1758(defface bold '((t (:weight bold)))
1759 "Basic bold face."
1760 :group 'basic-faces)
bdda3754 1761
bdda3754 1762
5f5c8ee5
GM
1763(defface italic '((t (:slant italic)))
1764 "Basic italic font."
1765 :group 'basic-faces)
bdda3754 1766
bdda3754 1767
5f5c8ee5
GM
1768(defface bold-italic '((t (:weight bold :slant italic)))
1769 "Basic bold-italic face."
1770 :group 'basic-faces)
465fceed 1771
17b3a11b 1772
5f5c8ee5
GM
1773(defface underline '((t (:underline t)))
1774 "Basic underlined face."
1775 :group 'basic-faces)
465fceed 1776
2f2ddd1e 1777
5f5c8ee5
GM
1778(defface highlight
1779 '((((type tty) (class color))
1780 (:background "green"))
1781 (((class color) (background light))
1782 (:background "darkseagreen2"))
1783 (((class color) (background dark))
1784 (:background "darkolivegreen"))
1785 (t (:inverse-video t)))
a4391cf1
DL
1786 "Basic face for highlighting."
1787 :group 'basic-faces)
465fceed 1788
465fceed 1789
5f5c8ee5
GM
1790(defface secondary-selection
1791 '((((type tty) (class color))
445a653e 1792 (:background "cyan" :foreground "black"))
5f5c8ee5 1793 (((class color) (background light))
230e947b 1794 (:background "yellow"))
5f5c8ee5 1795 (((class color) (background dark))
690d30e6 1796 (:background "SkyBlue4"))
5f5c8ee5 1797 (t (:inverse-video t)))
a4391cf1
DL
1798 "Basic face for displaying the secondary selection."
1799 :group 'basic-faces)
465fceed 1800
93d6fcef 1801
3855860a 1802(defface fixed-pitch '((t (:family "courier")))
5f5c8ee5
GM
1803 "The basic fixed-pitch face."
1804 :group 'basic-faces)
465fceed 1805
5f5c8ee5 1806
3855860a 1807(defface variable-pitch '((t (:family "helv")))
5f5c8ee5
GM
1808 "The basic variable-pitch face."
1809 :group 'basic-faces)
1810
1811
1812(defface trailing-whitespace
1813 '((((class color) (background light))
1814 (:background "red"))
1815 (((class color) (background dark))
1816 (:background "red"))
1817 (t (:inverse-video t)))
a4391cf1
DL
1818 "Basic face for highlighting trailing whitespace."
1819 :version "21.1"
84fe35f0 1820 :group 'font-lock ; like `show-trailing-whitespace'
a4391cf1 1821 :group 'basic-faces)
465fceed
ER
1822
1823
465fceed 1824\f
5f5c8ee5
GM
1825;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1826;;; Manipulating font names.
1827;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1828
1829;; This is here for compatibilty with Emacs 20.2. For example,
07f27947
DL
1830;; international/fontset.el uses x-resolve-font-name. The following
1831;; functions are not used in the face implementation itself.
465fceed 1832
d7fa5aa2
RS
1833(defvar x-font-regexp nil)
1834(defvar x-font-regexp-head nil)
1835(defvar x-font-regexp-weight nil)
1836(defvar x-font-regexp-slant nil)
465fceed 1837
021ca129
KH
1838(defconst x-font-regexp-weight-subnum 1)
1839(defconst x-font-regexp-slant-subnum 2)
1840(defconst x-font-regexp-swidth-subnum 3)
1841(defconst x-font-regexp-adstyle-subnum 4)
1842
465fceed
ER
1843;;; Regexps matching font names in "Host Portable Character Representation."
1844;;;
1845(let ((- "[-?]")
1846 (foundry "[^-]+")
1847 (family "[^-]+")
1848 (weight "\\(bold\\|demibold\\|medium\\)") ; 1
1849; (weight\? "\\(\\*\\|bold\\|demibold\\|medium\\|\\)") ; 1
1850 (weight\? "\\([^-]*\\)") ; 1
1851 (slant "\\([ior]\\)") ; 2
1852; (slant\? "\\([ior?*]?\\)") ; 2
1853 (slant\? "\\([^-]?\\)") ; 2
1854; (swidth "\\(\\*\\|normal\\|semicondensed\\|\\)") ; 3
1855 (swidth "\\([^-]*\\)") ; 3
1856; (adstyle "\\(\\*\\|sans\\|\\)") ; 4
c8787b81 1857 (adstyle "\\([^-]*\\)") ; 4
465fceed
ER
1858 (pixelsize "[0-9]+")
1859 (pointsize "[0-9][0-9]+")
1860 (resx "[0-9][0-9]+")
1861 (resy "[0-9][0-9]+")
1862 (spacing "[cmp?*]")
1863 (avgwidth "[0-9]+")
1864 (registry "[^-]+")
1865 (encoding "[^-]+")
1866 )
1867 (setq x-font-regexp
1868 (concat "\\`\\*?[-?*]"
1869 foundry - family - weight\? - slant\? - swidth - adstyle -
e20d641f
RS
1870 pixelsize - pointsize - resx - resy - spacing - avgwidth -
1871 registry - encoding "\\*?\\'"
465fceed
ER
1872 ))
1873 (setq x-font-regexp-head
1874 (concat "\\`[-?*]" foundry - family - weight\? - slant\?
1875 "\\([-*?]\\|\\'\\)"))
1876 (setq x-font-regexp-slant (concat - slant -))
1877 (setq x-font-regexp-weight (concat - weight -))
70d0c3b0 1878 nil)
465fceed 1879
5f5c8ee5 1880
281dc1c2
JB
1881(defun x-resolve-font-name (pattern &optional face frame)
1882 "Return a font name matching PATTERN.
ac4c2e6b 1883All wildcards in PATTERN are instantiated.
10d89673
JB
1884If PATTERN is nil, return the name of the frame's base font, which never
1885contains wildcards.
e17dbede
RS
1886Given optional arguments FACE and FRAME, return a font which is
1887also the same size as FACE on FRAME, or fail."
14e6867c
RS
1888 (or (symbolp face)
1889 (setq face (face-name face)))
1890 (and (eq frame t)
1891 (setq frame nil))
10d89673 1892 (if pattern
8db93e45 1893 ;; Note that x-list-fonts has code to handle a face with nil as its font.
abd89b80 1894 (let ((fonts (x-list-fonts pattern face frame 1)))
10d89673
JB
1895 (or fonts
1896 (if face
962a60aa
RS
1897 (if (string-match "\\*" pattern)
1898 (if (null (face-font face))
1899 (error "No matching fonts are the same height as the frame default font")
1900 (error "No matching fonts are the same height as face `%s'" face))
1901 (if (null (face-font face))
1902 (error "Height of font `%s' doesn't match the frame default font"
1903 pattern)
1904 (error "Height of font `%s' doesn't match face `%s'"
1905 pattern face)))
7cf6fac1 1906 (error "No fonts match `%s'" pattern)))
10d89673
JB
1907 (car fonts))
1908 (cdr (assq 'font (frame-parameters (selected-frame))))))
281dc1c2 1909
5f5c8ee5 1910
465fceed 1911(defun x-frob-font-weight (font which)
b7ffee5f
SM
1912 (let ((case-fold-search t))
1913 (cond ((string-match x-font-regexp font)
1914 (concat (substring font 0
1915 (match-beginning x-font-regexp-weight-subnum))
1916 which
1917 (substring font (match-end x-font-regexp-weight-subnum)
1918 (match-beginning x-font-regexp-adstyle-subnum))
1919 ;; Replace the ADD_STYLE_NAME field with *
1920 ;; because the info in it may not be the same
1921 ;; for related fonts.
1922 "*"
1923 (substring font (match-end x-font-regexp-adstyle-subnum))))
528fbf51
RS
1924 ((string-match x-font-regexp-head font)
1925 (concat (substring font 0 (match-beginning 1)) which
1926 (substring font (match-end 1))))
1927 ((string-match x-font-regexp-weight font)
b7ffee5f
SM
1928 (concat (substring font 0 (match-beginning 1)) which
1929 (substring font (match-end 1)))))))
2598a293 1930(make-obsolete 'x-frob-font-weight 'make-face-... "21.1")
5f5c8ee5 1931
465fceed 1932(defun x-frob-font-slant (font which)
b7ffee5f
SM
1933 (let ((case-fold-search t))
1934 (cond ((string-match x-font-regexp font)
1935 (concat (substring font 0
1936 (match-beginning x-font-regexp-slant-subnum))
1937 which
1938 (substring font (match-end x-font-regexp-slant-subnum)
1939 (match-beginning x-font-regexp-adstyle-subnum))
1940 ;; Replace the ADD_STYLE_NAME field with *
1941 ;; because the info in it may not be the same
1942 ;; for related fonts.
1943 "*"
1944 (substring font (match-end x-font-regexp-adstyle-subnum))))
528fbf51
RS
1945 ((string-match x-font-regexp-head font)
1946 (concat (substring font 0 (match-beginning 2)) which
1947 (substring font (match-end 2))))
1948 ((string-match x-font-regexp-slant font)
b7ffee5f
SM
1949 (concat (substring font 0 (match-beginning 1)) which
1950 (substring font (match-end 1)))))))
2598a293 1951(make-obsolete 'x-frob-font-slant 'make-face-... "21.1")
5f5c8ee5 1952
465fceed 1953(defun x-make-font-bold (font)
f3f31ccf
RS
1954 "Given an X font specification, make a bold version of it.
1955If that can't be done, return nil."
465fceed 1956 (x-frob-font-weight font "bold"))
2598a293 1957(make-obsolete 'x-make-font-bold 'make-face-bold "21.1")
5f5c8ee5 1958
465fceed 1959(defun x-make-font-demibold (font)
f3f31ccf
RS
1960 "Given an X font specification, make a demibold version of it.
1961If that can't be done, return nil."
465fceed 1962 (x-frob-font-weight font "demibold"))
2598a293 1963(make-obsolete 'x-make-font-demibold 'make-face-bold "21.1")
5f5c8ee5 1964
465fceed 1965(defun x-make-font-unbold (font)
f3f31ccf
RS
1966 "Given an X font specification, make a non-bold version of it.
1967If that can't be done, return nil."
465fceed 1968 (x-frob-font-weight font "medium"))
2598a293 1969(make-obsolete 'x-make-font-unbold 'make-face-unbold "21.1")
5f5c8ee5 1970
465fceed 1971(defun x-make-font-italic (font)
f3f31ccf
RS
1972 "Given an X font specification, make an italic version of it.
1973If that can't be done, return nil."
465fceed 1974 (x-frob-font-slant font "i"))
2598a293 1975(make-obsolete 'x-make-font-italic 'make-face-italic "21.1")
5f5c8ee5 1976
465fceed 1977(defun x-make-font-oblique (font) ; you say tomayto...
f3f31ccf
RS
1978 "Given an X font specification, make an oblique version of it.
1979If that can't be done, return nil."
465fceed 1980 (x-frob-font-slant font "o"))
2598a293 1981(make-obsolete 'x-make-font-oblique 'make-face-italic "21.1")
5f5c8ee5 1982
465fceed 1983(defun x-make-font-unitalic (font)
f3f31ccf
RS
1984 "Given an X font specification, make a non-italic version of it.
1985If that can't be done, return nil."
465fceed 1986 (x-frob-font-slant font "r"))
2598a293 1987(make-obsolete 'x-make-font-unitalic 'make-face-unitalic "21.1")
5f5c8ee5 1988
b7d7285c
KH
1989(defun x-make-font-bold-italic (font)
1990 "Given an X font specification, make a bold and italic version of it.
1991If that can't be done, return nil."
1992 (and (setq font (x-make-font-bold font))
1993 (x-make-font-italic font)))
2598a293 1994(make-obsolete 'x-make-font-bold-italic 'make-face-bold-italic "21.1")
113ab303 1995
f0138172
JB
1996(provide 'faces)
1997
70d0c3b0 1998;;; faces.el ends here