Use (featurep 'xemacs) instead of the `gnus-xemacs' variable, as the
[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
1160 (let* ((entry (car tail))
1161 (display (nth 0 entry))
1162 (attrs (nth 1 entry)))
1163 (setq tail (cdr tail))
1164 (when (face-spec-set-match-display display frame)
1165 (setq result attrs tail nil))))
1166 result))
1167
1168
1169(defun face-spec-reset-face (face &optional frame)
1170 "Reset all attributes of FACE on FRAME to unspecified."
bfe27647 1171 (let ((attrs face-attribute-name-alist))
5f5c8ee5
GM
1172 (while attrs
1173 (let ((attr-and-name (car attrs)))
bfe27647
GM
1174 (set-face-attribute face frame (car attr-and-name) 'unspecified))
1175 (setq attrs (cdr attrs)))))
5f5c8ee5
GM
1176
1177
1178(defun face-spec-set (face spec &optional frame)
1179 "Set FACE's attributes according to the first matching entry in SPEC.
1180FRAME is the frame whose frame-local face is set. FRAME nil means
96c2938f
MB
1181do it on all frames. See `defface' for information about SPEC.
1182If SPEC is nil, do nothing."
bfe27647 1183 (let ((attrs (face-spec-choose spec frame)))
10ab7a51
GM
1184 (when attrs
1185 (face-spec-reset-face face frame))
5f5c8ee5
GM
1186 (while attrs
1187 (let ((attribute (car attrs))
1188 (value (car (cdr attrs))))
1189 ;; Support some old-style attribute names and values.
1190 (case attribute
1191 (:bold (setq attribute :weight value (if value 'bold 'normal)))
c9630862
GM
1192 (:italic (setq attribute :slant value (if value 'italic 'normal)))
1193 (t (unless (assq attribute face-x-resources)
1194 (setq attribute nil))))
1195 (when attribute
bfe27647
GM
1196 (set-face-attribute face frame attribute value)))
1197 (setq attrs (cdr (cdr attrs))))))
5f5c8ee5
GM
1198
1199
1200(defun face-attr-match-p (face attrs &optional frame)
a9de7d29 1201 "Return t if attributes of FACE match values in plist ATTRS.
5f5c8ee5
GM
1202Optional parameter FRAME is the frame whose definition of FACE
1203is used. If nil or omitted, use the selected frame."
1204 (unless frame
1205 (setq frame (selected-frame)))
1206 (let ((list face-attribute-name-alist)
1207 (match t))
1208 (while (and match (not (null list)))
1209 (let* ((attr (car (car list)))
a9de7d29
MB
1210 (specified-value
1211 (if (plist-member attrs attr)
1212 (plist-get attrs attr)
1213 'unspecified))
5f5c8ee5 1214 (value-now (face-attribute face attr frame)))
a9de7d29 1215 (setq match (equal specified-value value-now))
5f5c8ee5
GM
1216 (setq list (cdr list))))
1217 match))
1218
5f5c8ee5
GM
1219(defun face-spec-match-p (face spec &optional frame)
1220 "Return t if FACE, on FRAME, matches what SPEC says it should look like."
1221 (face-attr-match-p face (face-spec-choose spec frame) frame))
1222
94fe8a31 1223(defsubst face-default-spec (face)
96c2938f
MB
1224 "Return the default face-spec for FACE, ignoring any user customization.
1225If there is no default for FACE, return nil."
1226 (get face 'face-defface-spec))
5f5c8ee5 1227
94fe8a31
MB
1228(defsubst face-user-default-spec (face)
1229 "Return the user's customized face-spec for FACE, or the default if none.
1230If there is neither a user setting or a default for FACE, return nil."
1231 (or (get face 'saved-face)
1232 (face-default-spec face)))
1233
5f5c8ee5 1234\f
f795f633
EZ
1235;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1236;;; Frame-type independent color support.
1237;;; We keep the old x-* names as aliases for back-compatibility.
1238;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1239
1240(defun defined-colors (&optional frame)
1241 "Return a list of colors supported for a particular frame.
1242The argument FRAME specifies which frame to try.
1243The value may be different for frames on different display types.
1244If FRAME doesn't support colors, the value is nil."
1a578e9b 1245 (if (memq (framep (or frame (selected-frame))) '(x w32 mac))
f795f633 1246 (xw-defined-colors frame)
37462f4c 1247 (mapcar 'car (tty-color-alist frame))))
f795f633
EZ
1248(defalias 'x-defined-colors 'defined-colors)
1249
1250(defun color-defined-p (color &optional frame)
1251 "Return non-nil if color COLOR is supported on frame FRAME.
1252If FRAME is omitted or nil, use the selected frame.
293b4814
EZ
1253If COLOR is the symbol `unspecified' or one of the strings
1254\"unspecified-fg\" or \"unspecified-bg\", the value is nil."
1e221c16 1255 (if (member color '(unspecified "unspecified-bg" "unspecified-fg"))
f795f633 1256 nil
1a578e9b 1257 (if (member (framep (or frame (selected-frame))) '(x w32 mac))
f795f633 1258 (xw-color-defined-p color frame)
37462f4c 1259 (numberp (tty-color-translate color frame)))))
f795f633
EZ
1260(defalias 'x-color-defined-p 'color-defined-p)
1261
1262(defun color-values (color &optional frame)
1263 "Return a description of the color named COLOR on frame FRAME.
1264The value is a list of integer RGB values--\(RED GREEN BLUE\).
b0285112 1265These values appear to range from 0 65535; white is \(65535 65535 65535\).
f795f633
EZ
1266If FRAME is omitted or nil, use the selected frame.
1267If FRAME cannot display COLOR, the value is nil.
293b4814
EZ
1268If COLOR is the symbol `unspecified' or one of the strings
1269\"unspecified-fg\" or \"unspecified-bg\", the value is nil."
1e221c16 1270 (if (member color '(unspecified "unspecified-fg" "unspecified-bg"))
f795f633 1271 nil
1a578e9b 1272 (if (memq (framep (or frame (selected-frame))) '(x w32 mac))
f795f633
EZ
1273 (xw-color-values color frame)
1274 (tty-color-values color frame))))
1275(defalias 'x-color-values 'color-values)
1276
1277(defun display-color-p (&optional display)
1278 "Return t if DISPLAY supports color.
1279The optional argument DISPLAY specifies which display to ask about.
1280DISPLAY should be either a frame or a display name (a string).
1281If omitted or nil, that stands for the selected frame's display."
1a578e9b 1282 (if (memq (framep-on-display display) '(x w32 mac))
d5179a01
EZ
1283 (xw-display-color-p display)
1284 (tty-display-color-p display)))
f795f633
EZ
1285(defalias 'x-display-color-p 'display-color-p)
1286
d5179a01
EZ
1287(defun display-grayscale-p (&optional display)
1288 "Return non-nil if frames on DISPLAY can display shades of gray."
1289 (let ((frame-type (framep-on-display display)))
1290 (cond
1291 ((memq frame-type '(x w32 mac))
1292 (x-display-grayscale-p display))
1293 (t
1294 (> (tty-color-gray-shades display) 2)))))
1295
f795f633 1296\f
5f5c8ee5
GM
1297;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1298;;; Background mode.
1299;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1300
1301(defcustom frame-background-mode nil
1302 "*The brightness of the background.
1303Set this to the symbol `dark' if your background color is dark, `light' if
1304your background is light, or nil (default) if you want Emacs to
01eac4fd
GM
1305examine the brightness for you. Don't set this variable with `setq';
1306this won't have the expected effect."
5f5c8ee5
GM
1307 :group 'faces
1308 :set #'(lambda (var value)
c20d5073 1309 (set-default var value)
b5325e78 1310 (mapc 'frame-set-background-mode (frame-list)))
5f5c8ee5 1311 :initialize 'custom-initialize-changed
70d0c3b0 1312 :type '(choice (choice-item dark)
5f5c8ee5
GM
1313 (choice-item light)
1314 (choice-item :tag "default" nil)))
1315
1316
1317(defun frame-set-background-mode (frame)
d8abcd91
MB
1318 "Set up display-dependent faces on FRAME.
1319Display-dependent faces are those which have different definitions
1320according to the `background-mode' and `display-type' frame parameters."
5f5c8ee5
GM
1321 (let* ((bg-resource
1322 (and window-system
1323 (x-get-resource ".backgroundMode" "BackgroundMode")))
772139c0 1324 (bg-color (frame-parameter frame 'background-color))
f161d539
MB
1325 (bg-mode
1326 (cond (frame-background-mode)
f161d539
MB
1327 (bg-resource
1328 (intern (downcase bg-resource)))
772139c0
EZ
1329 ((and (null window-system) (null bg-color))
1330 ;; No way to determine this automatically (?).
1331 'dark)
1332 ;; Unspecified frame background color can only happen
1333 ;; on tty's.
1e221c16 1334 ((member bg-color '(unspecified "unspecified-bg"))
772139c0 1335 'dark)
1e221c16 1336 ((equal bg-color "unspecified-fg") ; inverted colors
772139c0
EZ
1337 'light)
1338 ((>= (apply '+ (x-color-values bg-color frame))
f161d539
MB
1339 ;; Just looking at the screen, colors whose
1340 ;; values add up to .6 of the white total
1341 ;; still look dark to me.
1342 (* (apply '+ (x-color-values "white" frame)) .6))
772139c0
EZ
1343 'light)
1344 (t 'dark)))
f161d539
MB
1345 (display-type
1346 (cond ((null window-system)
1347 (if (tty-display-color-p frame) 'color 'mono))
1348 ((x-display-color-p frame)
1349 'color)
1350 ((x-display-grayscale-p frame)
1351 'grayscale)
1352 (t 'mono)))
1353 (old-bg-mode
1354 (frame-parameter frame 'background-mode))
1355 (old-display-type
1356 (frame-parameter frame 'display-type)))
1357
1358 (unless (and (eq bg-mode old-bg-mode) (eq display-type old-display-type))
1359 (modify-frame-parameters frame
1360 (list (cons 'background-mode bg-mode)
1361 (cons 'display-type display-type)))
1362 ;; For all named faces, choose face specs matching the new frame
1363 ;; parameters.
1364 (dolist (face (face-list))
96c2938f 1365 (face-spec-set face (face-user-default-spec face) frame)))))
5f5c8ee5 1366
5f5c8ee5
GM
1367\f
1368;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1369;;; Frame creation.
1370;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1371
1372(defun x-handle-named-frame-geometry (parameters)
1373 "Add geometry parameters for a named frame to parameter list PARAMETERS.
1374Value is the new parameter list."
1375 (let* ((name (or (cdr (assq 'name parameters))
1376 (cdr (assq 'name default-frame-alist))))
1377 (x-resource-name name)
1378 (res-geometry (if name (x-get-resource "geometry" "Geometry"))))
1379 (when res-geometry
1380 (let ((parsed (x-parse-geometry res-geometry)))
1381 ;; If the resource specifies a position, call the position
1382 ;; and size "user-specified".
1383 (when (or (assq 'top parsed)
1384 (assq 'left parsed))
1385 (setq parsed (append '((user-position . t) (user-size . t)) parsed)))
1386 ;; Put the geometry parameters at the end. Copy
1387 ;; default-frame-alist so that they go after it.
1388 (setq parameters (append parameters default-frame-alist parsed))))
1389 parameters))
1390
1391
1392(defun x-handle-reverse-video (frame parameters)
1393 "Handle the reverse-video frame parameter and X resource.
1394`x-create-frame' does not handle this one."
1395 (when (cdr (or (assq 'reverse parameters)
1396 (assq 'reverse default-frame-alist)
1397 (let ((resource (x-get-resource "reverseVideo"
1398 "ReverseVideo")))
1399 (if resource
1400 (cons nil (member (downcase resource)
1401 '("on" "true")))))))
1402 (let* ((params (frame-parameters frame))
1403 (bg (cdr (assq 'foreground-color params)))
1404 (fg (cdr (assq 'background-color params))))
1405 (modify-frame-parameters frame
1406 (list (cons 'foreground-color fg)
1407 (cons 'background-color bg)))
1408 (if (equal bg (cdr (assq 'border-color params)))
1409 (modify-frame-parameters frame
1410 (list (cons 'border-color fg))))
1411 (if (equal bg (cdr (assq 'mouse-color params)))
1412 (modify-frame-parameters frame
1413 (list (cons 'mouse-color fg))))
1414 (if (equal bg (cdr (assq 'cursor-color params)))
1415 (modify-frame-parameters frame
1416 (list (cons 'cursor-color fg)))))))
1417
1418
1419(defun x-create-frame-with-faces (&optional parameters)
1420 "Create a frame from optional frame parameters PARAMETERS.
1421Parameters not specified by PARAMETERS are taken from
1422`default-frame-alist'. If PARAMETERS specify a frame name,
1423handle X geometry resources for that name. If either PARAMETERS
1424or `default-frame-alist' contains a `reverse' parameter, or
1425the X resource ``reverseVideo'' is present, handle that.
1426Value is the new frame created."
1427 (setq parameters (x-handle-named-frame-geometry parameters))
1428 (let ((visibility-spec (assq 'visibility parameters))
1429 (frame-list (frame-list))
1430 (frame (x-create-frame (cons '(visibility . nil) parameters)))
1431 success)
1432 (unwind-protect
1433 (progn
1434 (x-handle-reverse-video frame parameters)
1435 (frame-set-background-mode frame)
1436 (face-set-after-frame-default frame)
1437 (if (or (null frame-list) (null visibility-spec))
1438 (make-frame-visible frame)
1439 (modify-frame-parameters frame (list visibility-spec)))
1440 (setq success t))
1441 (unless success
1442 (delete-frame frame)))
1443 frame))
1444
1445
1446(defun face-set-after-frame-default (frame)
f1cae29e
GM
1447 "Set frame-local faces of FRAME from face specs and resources.
1448Initialize colors of certain faces from frame parameters."
5f5c8ee5 1449 (dolist (face (face-list))
96c2938f
MB
1450 (face-spec-set face (face-user-default-spec face) frame)
1451 (internal-merge-in-global-face face frame)
1452 (when (memq window-system '(x w32 mac))
1453 (make-face-x-resource-internal face frame)))
f1cae29e
GM
1454
1455 ;; Initialize attributes from frame parameters.
1456 (let ((params '((foreground-color default :foreground)
1457 (background-color default :background)
1458 (border-color border :background)
1459 (cursor-color cursor :background)
1460 (scroll-bar-foreground scroll-bar :foreground)
1461 (scroll-bar-background scroll-bar :background)
1462 (mouse-color mouse :background))))
1463 (while params
1464 (let ((param-name (nth 0 (car params)))
1465 (face (nth 1 (car params)))
1466 (attr (nth 2 (car params)))
1467 value)
1468 (when (setq value (frame-parameter frame param-name))
1469 (set-face-attribute face frame attr value)))
1470 (setq params (cdr params)))))
5f5c8ee5
GM
1471
1472
1473(defun tty-create-frame-with-faces (&optional parameters)
1474 "Create a frame from optional frame parameters PARAMETERS.
1475Parameters not specified by PARAMETERS are taken from
1476`default-frame-alist'. If either PARAMETERS or `default-frame-alist'
1477contains a `reverse' parameter, handle that. Value is the new frame
1478created."
1479 (let ((frame (make-terminal-frame parameters))
1480 success)
1481 (unwind-protect
1482 (progn
1483 (frame-set-background-mode frame)
1484 (face-set-after-frame-default frame)
1485 (setq success t))
1486 (unless success
1487 (delete-frame frame)))
1488 frame))
465fceed 1489
465fceed 1490
5f5c8ee5
GM
1491;; Called from C function init_display to initialize faces of the
1492;; dumped terminal frame on startup.
465fceed 1493
5f5c8ee5
GM
1494(defun tty-set-up-initial-frame-faces ()
1495 (let ((frame (selected-frame)))
1496 (frame-set-background-mode frame)
1497 (face-set-after-frame-default frame)))
1498
465fceed 1499
465fceed 1500
5f5c8ee5
GM
1501\f
1502;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1503;;; Compatiblity with 20.2
1504;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
72418504 1505
5f5c8ee5 1506;; Update a frame's faces when we change its default font.
465fceed 1507
c20d5073 1508(defalias 'frame-update-faces 'ignore)
2598a293 1509(make-obsolete 'frame-update-faces "No longer necessary" "21.1")
e8e4cda0 1510
5f5c8ee5
GM
1511;; Update the colors of FACE, after FRAME's own colors have been
1512;; changed.
1bcb155c 1513
c20d5073 1514(defalias 'frame-update-face-colors 'frame-set-background-mode)
2598a293 1515(make-obsolete 'frame-update-face-colors 'frame-set-background-mode "21.1")
d11fba25 1516
bdda3754 1517\f
5f5c8ee5
GM
1518;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1519;;; Standard faces.
1520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
465fceed 1521
5f5c8ee5
GM
1522(defgroup basic-faces nil
1523 "The standard faces of Emacs."
1524 :group 'faces)
ef436392 1525
465fceed 1526
5f5c8ee5
GM
1527(defface default
1528 '((t nil))
1529 "Basic default face."
1530 :group 'basic-faces)
465fceed 1531
72418504 1532
3759f14b 1533(defface mode-line
1a578e9b 1534 '((((type x w32 mac) (class color))
f6478c66
GM
1535 (:box (:line-width 2 :style released-button)
1536 :background "grey75" :foreground "black"))
5f5c8ee5
GM
1537 (t
1538 (:inverse-video t)))
1539 "Basic mode line face."
a4391cf1 1540 :version "21.1"
84fe35f0 1541 :group 'modeline
5f5c8ee5 1542 :group 'basic-faces)
465fceed 1543
3759f14b
GM
1544;; Make `modeline' an alias for `mode-line', for compatibility.
1545(put 'modeline 'face-alias 'mode-line)
d11fba25 1546
e5e7779f 1547(defface header-line
a114b1ca 1548 '((((type tty))
1cb4393e
MB
1549 ;; This used to be `:inverse-video t', but that doesn't look very
1550 ;; good when combined with inverse-video mode-lines and multiple
1551 ;; windows. Underlining looks better, and is more consistent with
1552 ;; the window-system face variants, which deemphasize the
1553 ;; header-line in relation to the mode-line face. If a terminal
1554 ;; can't underline, then the header-line will end up without any
1555 ;; highlighting; this may be too confusing in general, although it
1556 ;; happens to look good with the only current use of header-lines,
1557 ;; the info browser. XXX
1558 (:underline t))
98490598
MB
1559 (((class color grayscale) (background light))
1560 (:inherit mode-line
1561 :background "grey90" :foreground "grey20"
1562 :box (:line-width 1 :style released-button)))
1563 (((class color grayscale) (background dark))
1564 (:inherit mode-line
1565 :background "grey20" :foreground "grey90"
1566 :box (:line-width 1 :style released-button)))
1567 (((class mono) (background light))
1568 (:inherit mode-line
1569 :background "white" :foreground "black"
1570 :inverse-video nil
1571 :box nil
1572 :underline t))
1573 (((class mono) (background dark))
1574 (:inherit mode-line
1575 :background "black" :foreground "white"
1576 :inverse-video nil
1577 :box nil
1578 :underline t))
5f5c8ee5
GM
1579 (t
1580 (:inverse-video t)))
e5e7779f 1581 "Basic header-line face."
a4391cf1 1582 :version "21.1"
5f5c8ee5 1583 :group 'basic-faces)
e8e4cda0 1584
d11fba25 1585
533322cd 1586(defface tool-bar
1a578e9b 1587 '((((type x w32 mac) (class color))
f6478c66
GM
1588 (:box (:line-width 1 :style released-button)
1589 :background "grey75" :foreground "black"))
9668a746 1590 (((type x) (class mono))
f6478c66
GM
1591 (:box (:line-width 1 :style released-button)
1592 :background "grey" :foreground "black"))
5f5c8ee5
GM
1593 (t
1594 ()))
533322cd 1595 "Basic tool-bar face."
a4391cf1 1596 :version "21.1"
5f5c8ee5 1597 :group 'basic-faces)
d11fba25 1598
bdda3754 1599
5f5c8ee5
GM
1600(defface region
1601 '((((type tty) (class color))
1602 (:background "blue" :foreground "white"))
1603 (((type tty) (class mono))
1604 (:inverse-video t))
1605 (((class color) (background dark))
2af966f9 1606 (:background "blue3"))
5f5c8ee5 1607 (((class color) (background light))
0a9c90a0 1608 (:background "light goldenrod yellow"))
5f5c8ee5 1609 (t (:background "gray")))
62f1e1cd 1610 "Basic face for highlighting the region."
b5325e78 1611 :version "21.1"
5f5c8ee5 1612 :group 'basic-faces)
66a5c2c6 1613
bdda3754 1614
f1cae29e 1615(defface fringe
d6d59057
GM
1616 '((((class color) (background light))
1617 (:background "grey95"))
1618 (((class color) (background dark))
1619 (:background "grey10"))
1620 (t
1621 (:background "gray")))
f1cae29e
GM
1622 "Basic face for the fringes to the left and right of windows under X."
1623 :version "21.1"
84fe35f0 1624 :group 'frames
f1cae29e
GM
1625 :group 'basic-faces)
1626
1627
1628(defface scroll-bar '()
1629 "Basic face for the scroll bar colors under X."
1630 :version "21.1"
84fe35f0 1631 :group 'frames
f1cae29e
GM
1632 :group 'basic-faces)
1633
1634
ee716db5
GM
1635(defface menu
1636 '((((type x-toolkit)) ())
1637 (t (:inverse-video t)))
1638 "Basic menu face."
1639 :version "21.1"
84fe35f0 1640 :group 'menu
ee716db5
GM
1641 :group 'basic-faces)
1642
1643
f1cae29e
GM
1644(defface border '()
1645 "Basic face for the frame border under X."
1646 :version "21.1"
84fe35f0 1647 :group 'frames
f1cae29e
GM
1648 :group 'basic-faces)
1649
1650
1651(defface cursor '()
1652 "Basic face for the cursor color under X."
1653 :version "21.1"
84fe35f0 1654 :group 'cursor
f1cae29e
GM
1655 :group 'basic-faces)
1656
1657
1658(defface mouse '()
1659 "Basic face for the mouse color under X."
e59176e2 1660 :version "21.1"
84fe35f0 1661 :group 'mouse
5f5c8ee5 1662 :group 'basic-faces)
bdda3754 1663
bdda3754 1664
5f5c8ee5
GM
1665(defface bold '((t (:weight bold)))
1666 "Basic bold face."
1667 :group 'basic-faces)
bdda3754 1668
bdda3754 1669
5f5c8ee5
GM
1670(defface italic '((t (:slant italic)))
1671 "Basic italic font."
1672 :group 'basic-faces)
bdda3754 1673
bdda3754 1674
5f5c8ee5
GM
1675(defface bold-italic '((t (:weight bold :slant italic)))
1676 "Basic bold-italic face."
1677 :group 'basic-faces)
465fceed 1678
17b3a11b 1679
5f5c8ee5
GM
1680(defface underline '((t (:underline t)))
1681 "Basic underlined face."
1682 :group 'basic-faces)
465fceed 1683
2f2ddd1e 1684
5f5c8ee5
GM
1685(defface highlight
1686 '((((type tty) (class color))
1687 (:background "green"))
1688 (((class color) (background light))
1689 (:background "darkseagreen2"))
1690 (((class color) (background dark))
1691 (:background "darkolivegreen"))
1692 (t (:inverse-video t)))
a4391cf1
DL
1693 "Basic face for highlighting."
1694 :group 'basic-faces)
465fceed 1695
465fceed 1696
5f5c8ee5
GM
1697(defface secondary-selection
1698 '((((type tty) (class color))
445a653e 1699 (:background "cyan" :foreground "black"))
5f5c8ee5 1700 (((class color) (background light))
230e947b 1701 (:background "yellow"))
5f5c8ee5 1702 (((class color) (background dark))
690d30e6 1703 (:background "SkyBlue4"))
5f5c8ee5 1704 (t (:inverse-video t)))
a4391cf1
DL
1705 "Basic face for displaying the secondary selection."
1706 :group 'basic-faces)
465fceed 1707
93d6fcef 1708
3855860a 1709(defface fixed-pitch '((t (:family "courier")))
5f5c8ee5
GM
1710 "The basic fixed-pitch face."
1711 :group 'basic-faces)
465fceed 1712
5f5c8ee5 1713
3855860a 1714(defface variable-pitch '((t (:family "helv")))
5f5c8ee5
GM
1715 "The basic variable-pitch face."
1716 :group 'basic-faces)
1717
1718
1719(defface trailing-whitespace
1720 '((((class color) (background light))
1721 (:background "red"))
1722 (((class color) (background dark))
1723 (:background "red"))
1724 (t (:inverse-video t)))
a4391cf1
DL
1725 "Basic face for highlighting trailing whitespace."
1726 :version "21.1"
84fe35f0 1727 :group 'font-lock ; like `show-trailing-whitespace'
a4391cf1 1728 :group 'basic-faces)
465fceed
ER
1729
1730
465fceed 1731\f
5f5c8ee5
GM
1732;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1733;;; Manipulating font names.
1734;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1735
1736;; This is here for compatibilty with Emacs 20.2. For example,
07f27947
DL
1737;; international/fontset.el uses x-resolve-font-name. The following
1738;; functions are not used in the face implementation itself.
465fceed 1739
d7fa5aa2
RS
1740(defvar x-font-regexp nil)
1741(defvar x-font-regexp-head nil)
1742(defvar x-font-regexp-weight nil)
1743(defvar x-font-regexp-slant nil)
465fceed 1744
021ca129
KH
1745(defconst x-font-regexp-weight-subnum 1)
1746(defconst x-font-regexp-slant-subnum 2)
1747(defconst x-font-regexp-swidth-subnum 3)
1748(defconst x-font-regexp-adstyle-subnum 4)
1749
465fceed
ER
1750;;; Regexps matching font names in "Host Portable Character Representation."
1751;;;
1752(let ((- "[-?]")
1753 (foundry "[^-]+")
1754 (family "[^-]+")
1755 (weight "\\(bold\\|demibold\\|medium\\)") ; 1
1756; (weight\? "\\(\\*\\|bold\\|demibold\\|medium\\|\\)") ; 1
1757 (weight\? "\\([^-]*\\)") ; 1
1758 (slant "\\([ior]\\)") ; 2
1759; (slant\? "\\([ior?*]?\\)") ; 2
1760 (slant\? "\\([^-]?\\)") ; 2
1761; (swidth "\\(\\*\\|normal\\|semicondensed\\|\\)") ; 3
1762 (swidth "\\([^-]*\\)") ; 3
1763; (adstyle "\\(\\*\\|sans\\|\\)") ; 4
c8787b81 1764 (adstyle "\\([^-]*\\)") ; 4
465fceed
ER
1765 (pixelsize "[0-9]+")
1766 (pointsize "[0-9][0-9]+")
1767 (resx "[0-9][0-9]+")
1768 (resy "[0-9][0-9]+")
1769 (spacing "[cmp?*]")
1770 (avgwidth "[0-9]+")
1771 (registry "[^-]+")
1772 (encoding "[^-]+")
1773 )
1774 (setq x-font-regexp
1775 (concat "\\`\\*?[-?*]"
1776 foundry - family - weight\? - slant\? - swidth - adstyle -
e20d641f
RS
1777 pixelsize - pointsize - resx - resy - spacing - avgwidth -
1778 registry - encoding "\\*?\\'"
465fceed
ER
1779 ))
1780 (setq x-font-regexp-head
1781 (concat "\\`[-?*]" foundry - family - weight\? - slant\?
1782 "\\([-*?]\\|\\'\\)"))
1783 (setq x-font-regexp-slant (concat - slant -))
1784 (setq x-font-regexp-weight (concat - weight -))
70d0c3b0 1785 nil)
465fceed 1786
5f5c8ee5 1787
281dc1c2
JB
1788(defun x-resolve-font-name (pattern &optional face frame)
1789 "Return a font name matching PATTERN.
ac4c2e6b 1790All wildcards in PATTERN are instantiated.
10d89673
JB
1791If PATTERN is nil, return the name of the frame's base font, which never
1792contains wildcards.
e17dbede
RS
1793Given optional arguments FACE and FRAME, return a font which is
1794also the same size as FACE on FRAME, or fail."
14e6867c
RS
1795 (or (symbolp face)
1796 (setq face (face-name face)))
1797 (and (eq frame t)
1798 (setq frame nil))
10d89673 1799 (if pattern
8db93e45 1800 ;; Note that x-list-fonts has code to handle a face with nil as its font.
abd89b80 1801 (let ((fonts (x-list-fonts pattern face frame 1)))
10d89673
JB
1802 (or fonts
1803 (if face
962a60aa
RS
1804 (if (string-match "\\*" pattern)
1805 (if (null (face-font face))
1806 (error "No matching fonts are the same height as the frame default font")
1807 (error "No matching fonts are the same height as face `%s'" face))
1808 (if (null (face-font face))
1809 (error "Height of font `%s' doesn't match the frame default font"
1810 pattern)
1811 (error "Height of font `%s' doesn't match face `%s'"
1812 pattern face)))
7cf6fac1 1813 (error "No fonts match `%s'" pattern)))
10d89673
JB
1814 (car fonts))
1815 (cdr (assq 'font (frame-parameters (selected-frame))))))
281dc1c2 1816
5f5c8ee5 1817
465fceed 1818(defun x-frob-font-weight (font which)
b7ffee5f
SM
1819 (let ((case-fold-search t))
1820 (cond ((string-match x-font-regexp font)
1821 (concat (substring font 0
1822 (match-beginning x-font-regexp-weight-subnum))
1823 which
1824 (substring font (match-end x-font-regexp-weight-subnum)
1825 (match-beginning x-font-regexp-adstyle-subnum))
1826 ;; Replace the ADD_STYLE_NAME field with *
1827 ;; because the info in it may not be the same
1828 ;; for related fonts.
1829 "*"
1830 (substring font (match-end x-font-regexp-adstyle-subnum))))
528fbf51
RS
1831 ((string-match x-font-regexp-head font)
1832 (concat (substring font 0 (match-beginning 1)) which
1833 (substring font (match-end 1))))
1834 ((string-match x-font-regexp-weight font)
b7ffee5f
SM
1835 (concat (substring font 0 (match-beginning 1)) which
1836 (substring font (match-end 1)))))))
2598a293 1837(make-obsolete 'x-frob-font-weight 'make-face-... "21.1")
5f5c8ee5 1838
465fceed 1839(defun x-frob-font-slant (font which)
b7ffee5f
SM
1840 (let ((case-fold-search t))
1841 (cond ((string-match x-font-regexp font)
1842 (concat (substring font 0
1843 (match-beginning x-font-regexp-slant-subnum))
1844 which
1845 (substring font (match-end x-font-regexp-slant-subnum)
1846 (match-beginning x-font-regexp-adstyle-subnum))
1847 ;; Replace the ADD_STYLE_NAME field with *
1848 ;; because the info in it may not be the same
1849 ;; for related fonts.
1850 "*"
1851 (substring font (match-end x-font-regexp-adstyle-subnum))))
528fbf51
RS
1852 ((string-match x-font-regexp-head font)
1853 (concat (substring font 0 (match-beginning 2)) which
1854 (substring font (match-end 2))))
1855 ((string-match x-font-regexp-slant font)
b7ffee5f
SM
1856 (concat (substring font 0 (match-beginning 1)) which
1857 (substring font (match-end 1)))))))
2598a293 1858(make-obsolete 'x-frob-font-slant 'make-face-... "21.1")
5f5c8ee5 1859
465fceed 1860(defun x-make-font-bold (font)
f3f31ccf
RS
1861 "Given an X font specification, make a bold version of it.
1862If that can't be done, return nil."
465fceed 1863 (x-frob-font-weight font "bold"))
2598a293 1864(make-obsolete 'x-make-font-bold 'make-face-bold "21.1")
5f5c8ee5 1865
465fceed 1866(defun x-make-font-demibold (font)
f3f31ccf
RS
1867 "Given an X font specification, make a demibold version of it.
1868If that can't be done, return nil."
465fceed 1869 (x-frob-font-weight font "demibold"))
2598a293 1870(make-obsolete 'x-make-font-demibold 'make-face-bold "21.1")
5f5c8ee5 1871
465fceed 1872(defun x-make-font-unbold (font)
f3f31ccf
RS
1873 "Given an X font specification, make a non-bold version of it.
1874If that can't be done, return nil."
465fceed 1875 (x-frob-font-weight font "medium"))
2598a293 1876(make-obsolete 'x-make-font-unbold 'make-face-unbold "21.1")
5f5c8ee5 1877
465fceed 1878(defun x-make-font-italic (font)
f3f31ccf
RS
1879 "Given an X font specification, make an italic version of it.
1880If that can't be done, return nil."
465fceed 1881 (x-frob-font-slant font "i"))
2598a293 1882(make-obsolete 'x-make-font-italic 'make-face-italic "21.1")
5f5c8ee5 1883
465fceed 1884(defun x-make-font-oblique (font) ; you say tomayto...
f3f31ccf
RS
1885 "Given an X font specification, make an oblique version of it.
1886If that can't be done, return nil."
465fceed 1887 (x-frob-font-slant font "o"))
2598a293 1888(make-obsolete 'x-make-font-oblique 'make-face-italic "21.1")
5f5c8ee5 1889
465fceed 1890(defun x-make-font-unitalic (font)
f3f31ccf
RS
1891 "Given an X font specification, make a non-italic version of it.
1892If that can't be done, return nil."
465fceed 1893 (x-frob-font-slant font "r"))
2598a293 1894(make-obsolete 'x-make-font-unitalic 'make-face-unitalic "21.1")
5f5c8ee5 1895
b7d7285c
KH
1896(defun x-make-font-bold-italic (font)
1897 "Given an X font specification, make a bold and italic version of it.
1898If that can't be done, return nil."
1899 (and (setq font (x-make-font-bold font))
1900 (x-make-font-italic font)))
2598a293 1901(make-obsolete 'x-make-font-bold-italic 'make-face-bold-italic "21.1")
113ab303 1902
f0138172
JB
1903(provide 'faces)
1904
70d0c3b0 1905;;; faces.el ends here