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