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