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