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