]> code.delx.au - gnu-emacs/blob - lisp/faces.el
* lisp/faces.el: Remove duplicated functions from previous patch.
[gnu-emacs] / lisp / faces.el
1 ;;; faces.el --- Lisp faces
2
3 ;; Copyright (C) 1992-1996, 1998-2016 Free Software Foundation, Inc.
4
5 ;; Maintainer: emacs-devel@gnu.org
6 ;; Keywords: internal
7 ;; Package: emacs
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23
24 ;;; Commentary:
25
26 ;;; Code:
27
28 (defcustom term-file-prefix (purecopy "term/")
29 "If non-nil, Emacs startup performs terminal-specific initialization.
30 It does this by: (load (concat term-file-prefix (getenv \"TERM\")))
31
32 You may set this variable to nil in your init file if you do not wish
33 the terminal-initialization file to be loaded."
34 :type '(choice (const :tag "No terminal-specific initialization" nil)
35 (string :tag "Name of directory with term files"))
36 :group 'terminals)
37
38 (defcustom term-file-aliases
39 '(("apollo" . "vt100")
40 ("vt102" . "vt100")
41 ("vt125" . "vt100")
42 ("vt201" . "vt200")
43 ("vt220" . "vt200")
44 ("vt240" . "vt200")
45 ("vt300" . "vt200")
46 ("vt320" . "vt200")
47 ("vt400" . "vt200")
48 ("vt420" . "vt200")
49 )
50 "Alist of terminal type aliases.
51 Entries are of the form (TYPE . ALIAS), where both elements are strings.
52 This means to treat a terminal of type TYPE as if it were of type ALIAS."
53 :type '(alist :key-type (string :tag "Terminal")
54 :value-type (string :tag "Alias"))
55 :group 'terminals
56 :version "25.1")
57
58 (declare-function xw-defined-colors "term/common-win" (&optional frame))
59
60 (defvar help-xref-stack-item)
61
62 (defvar face-name-history nil
63 "History list for some commands that read face names.
64 Maximum length of the history list is determined by the value
65 of `history-length', which see.")
66
67 \f
68 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
69 ;;; Font selection.
70 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
71
72 (defgroup font-selection nil
73 "Influencing face font selection."
74 :group 'faces)
75
76
77 (defcustom face-font-selection-order
78 '(:width :height :weight :slant)
79 "A list specifying how face font selection chooses fonts.
80 Each of the four symbols `:width', `:height', `:weight', and `:slant'
81 must appear once in the list, and the list must not contain any other
82 elements. Font selection first tries to find a best matching font
83 for those face attributes that appear before in the list. For
84 example, if `:slant' appears before `:height', font selection first
85 tries to find a font with a suitable slant, even if this results in
86 a font height that isn't optimal."
87 :tag "Font selection order"
88 :type '(list symbol symbol symbol symbol)
89 :group 'font-selection
90 :set #'(lambda (symbol value)
91 (set-default symbol value)
92 (internal-set-font-selection-order value)))
93
94
95 ;; In the absence of Fontconfig support, Monospace and Sans Serif are
96 ;; unavailable, and we fall back on the courier and helv families,
97 ;; which are generally available.
98 (defcustom face-font-family-alternatives
99 (mapcar (lambda (arg) (mapcar 'purecopy arg))
100 '(("Monospace" "courier" "fixed")
101 ("courier" "CMU Typewriter Text" "fixed")
102 ("Sans Serif" "helv" "helvetica" "arial" "fixed")
103 ("helv" "helvetica" "arial" "fixed")))
104 "Alist of alternative font family names.
105 Each element has the form (FAMILY ALTERNATIVE1 ALTERNATIVE2 ...).
106 If fonts of family FAMILY can't be loaded, try ALTERNATIVE1, then
107 ALTERNATIVE2 etc."
108 :tag "Alternative font families to try"
109 :type '(repeat (repeat string))
110 :group 'font-selection
111 :set #'(lambda (symbol value)
112 (set-default symbol value)
113 (internal-set-alternative-font-family-alist value)))
114
115
116 ;; This is defined originally in xfaces.c.
117 (defcustom face-font-registry-alternatives
118 (mapcar (lambda (arg) (mapcar 'purecopy arg))
119 (if (featurep 'w32)
120 '(("iso8859-1" "ms-oemlatin")
121 ("gb2312.1980" "gb2312" "gbk" "gb18030")
122 ("jisx0208.1990" "jisx0208.1983" "jisx0208.1978")
123 ("ksc5601.1989" "ksx1001.1992" "ksc5601.1987")
124 ("muletibetan-2" "muletibetan-0"))
125 '(("gb2312.1980" "gb2312.80&gb8565.88" "gbk" "gb18030")
126 ("jisx0208.1990" "jisx0208.1983" "jisx0208.1978")
127 ("ksc5601.1989" "ksx1001.1992" "ksc5601.1987")
128 ("muletibetan-2" "muletibetan-0"))))
129 "Alist of alternative font registry names.
130 Each element has the form (REGISTRY ALTERNATIVE1 ALTERNATIVE2 ...).
131 If fonts of registry REGISTRY can be loaded, font selection
132 tries to find a best matching font among all fonts of registry
133 REGISTRY, ALTERNATIVE1, ALTERNATIVE2, and etc."
134 :tag "Alternative font registries to try"
135 :type '(repeat (repeat string))
136 :version "21.1"
137 :group 'font-selection
138 :set #'(lambda (symbol value)
139 (set-default symbol value)
140 (internal-set-alternative-font-registry-alist value)))
141
142 \f
143 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
144 ;;; Creation, copying.
145 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
146
147
148 (defun face-list ()
149 "Return a list of all defined faces."
150 (mapcar #'car face-new-frame-defaults))
151
152 (defun make-face (face)
153 "Define a new face with name FACE, a symbol.
154 Do not call this directly from Lisp code; use `defface' instead.
155
156 If FACE is already known as a face, leave it unmodified. Return FACE."
157 (interactive (list (read-from-minibuffer
158 "Make face: " nil nil t 'face-name-history)))
159 (unless (facep face)
160 ;; Make frame-local faces (this also makes the global one).
161 (dolist (frame (frame-list))
162 (internal-make-lisp-face face frame))
163 ;; Add the face to the face menu.
164 (when (fboundp 'facemenu-add-new-face)
165 (facemenu-add-new-face face))
166 ;; Define frame-local faces for all frames from X resources.
167 (make-face-x-resource-internal face))
168 face)
169
170 (defun make-empty-face (face)
171 "Define a new, empty face with name FACE.
172 Do not call this directly from Lisp code; use `defface' instead."
173 (interactive (list (read-from-minibuffer
174 "Make empty face: " nil nil t 'face-name-history)))
175 (make-face face))
176
177 (defun copy-face (old-face new-face &optional frame new-frame)
178 "Define a face named NEW-FACE, which is a copy of OLD-FACE.
179 This function does not copy face customization data, so NEW-FACE
180 will not be made customizable. Most Lisp code should not call
181 this function; use `defface' with :inherit instead.
182
183 If NEW-FACE already exists as a face, modify it to be like
184 OLD-FACE. If NEW-FACE doesn't already exist, create it.
185
186 If the optional argument FRAME is a frame, change NEW-FACE on
187 FRAME only. If FRAME is t, copy the frame-independent default
188 specification for OLD-FACE to NEW-FACE. If FRAME is nil, copy
189 the defaults as well as the faces on each existing frame.
190
191 If the optional fourth argument NEW-FRAME is given, copy the
192 information from face OLD-FACE on frame FRAME to NEW-FACE on
193 frame NEW-FRAME. In this case, FRAME must not be nil."
194 (let ((inhibit-quit t))
195 (if (null frame)
196 (progn
197 (when new-frame
198 (error "Copying face %s from all frames to one frame"
199 old-face))
200 (make-empty-face new-face)
201 (dolist (frame (frame-list))
202 (copy-face old-face new-face frame))
203 (copy-face old-face new-face t))
204 (make-empty-face new-face)
205 (internal-copy-lisp-face old-face new-face frame new-frame))
206 new-face))
207
208 \f
209 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
210 ;;; Predicates, type checks.
211 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
212
213 (defun facep (face)
214 "Return non-nil if FACE is a face name; nil otherwise.
215 A face name can be a string or a symbol."
216 (internal-lisp-face-p face))
217
218
219 (defun check-face (face)
220 "Signal an error if FACE doesn't name a face.
221 Value is FACE."
222 (unless (facep face)
223 (error "Not a face: %s" face))
224 face)
225
226
227 ;; The ID returned is not to be confused with the internally used IDs
228 ;; of realized faces. The ID assigned to Lisp faces is used to
229 ;; support faces in display table entries.
230
231 (defun face-id (face &optional _frame)
232 "Return the internal ID of face with name FACE.
233 If FACE is a face-alias, return the ID of the target face.
234 The optional argument FRAME is ignored, since the internal face ID
235 of a face name is the same for all frames."
236 (check-face face)
237 (or (get face 'face)
238 (face-id (get face 'face-alias))))
239
240 (defun face-equal (face1 face2 &optional frame)
241 "Non-nil if faces FACE1 and FACE2 are equal.
242 Faces are considered equal if all their attributes are equal.
243 If the optional argument FRAME is given, report on FACE1 and FACE2 in that frame.
244 If FRAME is t, report on the defaults for FACE1 and FACE2 (for new frames).
245 If FRAME is omitted or nil, use the selected frame."
246 (internal-lisp-face-equal-p face1 face2 frame))
247
248
249 (defun face-differs-from-default-p (face &optional frame)
250 "Return non-nil if FACE displays differently from the default face.
251 If the optional argument FRAME is given, report on face FACE in that frame.
252 If FRAME is t, report on the defaults for face FACE (for new frames).
253 If FRAME is omitted or nil, use the selected frame."
254 (let ((attrs
255 (delq :inherit (mapcar 'car face-attribute-name-alist)))
256 (differs nil))
257 (while (and attrs (not differs))
258 (let* ((attr (pop attrs))
259 (attr-val (face-attribute face attr frame t)))
260 (when (and
261 (not (eq attr-val 'unspecified))
262 (display-supports-face-attributes-p (list attr attr-val)
263 frame))
264 (setq differs attr))))
265 differs))
266
267
268 (defun face-nontrivial-p (face &optional frame)
269 "True if face FACE has some non-nil attribute.
270 If the optional argument FRAME is given, report on face FACE in that frame.
271 If FRAME is t, report on the defaults for face FACE (for new frames).
272 If FRAME is omitted or nil, use the selected frame."
273 (not (internal-lisp-face-empty-p face frame)))
274
275
276 (defun face-list-p (face-or-list)
277 "True if FACE-OR-LIST is a list of faces.
278 Return nil if FACE-OR-LIST is a non-nil atom, or a cons cell whose car
279 is either `foreground-color', `background-color', or a keyword."
280 ;; The logic of merge_face_ref (xfaces.c) is recreated here.
281 (and (listp face-or-list)
282 (not (memq (car face-or-list)
283 '(foreground-color background-color)))
284 (not (keywordp (car face-or-list)))))
285
286
287 \f
288 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
289 ;;; Setting face attributes from X resources.
290 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
291
292 (defcustom face-x-resources
293 (mapcar
294 (lambda (arg)
295 ;; FIXME; can we purecopy some of the conses too?
296 (cons (car arg)
297 (cons (purecopy (car (cdr arg))) (purecopy (cdr (cdr arg))))))
298 '((:family (".attributeFamily" . "Face.AttributeFamily"))
299 (:foundry (".attributeFoundry" . "Face.AttributeFoundry"))
300 (:width (".attributeWidth" . "Face.AttributeWidth"))
301 (:height (".attributeHeight" . "Face.AttributeHeight"))
302 (:weight (".attributeWeight" . "Face.AttributeWeight"))
303 (:slant (".attributeSlant" . "Face.AttributeSlant"))
304 (:foreground (".attributeForeground" . "Face.AttributeForeground"))
305 (:distant-foreground
306 (".attributeDistantForeground" . "Face.AttributeDistantForeground"))
307 (:background (".attributeBackground" . "Face.AttributeBackground"))
308 (:overline (".attributeOverline" . "Face.AttributeOverline"))
309 (:strike-through (".attributeStrikeThrough" . "Face.AttributeStrikeThrough"))
310 (:box (".attributeBox" . "Face.AttributeBox"))
311 (:underline (".attributeUnderline" . "Face.AttributeUnderline"))
312 (:inverse-video (".attributeInverse" . "Face.AttributeInverse"))
313 (:stipple
314 (".attributeStipple" . "Face.AttributeStipple")
315 (".attributeBackgroundPixmap" . "Face.AttributeBackgroundPixmap"))
316 (:bold (".attributeBold" . "Face.AttributeBold"))
317 (:italic (".attributeItalic" . "Face.AttributeItalic"))
318 (:font (".attributeFont" . "Face.AttributeFont"))
319 (:inherit (".attributeInherit" . "Face.AttributeInherit"))))
320 "List of X resources and classes for face attributes.
321 Each element has the form (ATTRIBUTE ENTRY1 ENTRY2...) where ATTRIBUTE is
322 the name of a face attribute, and each ENTRY is a cons of the form
323 \(RESOURCE . CLASS) with RESOURCE being the resource and CLASS being the
324 X resource class for the attribute."
325 :type '(repeat (cons symbol (repeat (cons string string))))
326 :group 'faces)
327
328
329 (declare-function internal-face-x-get-resource "xfaces.c"
330 (resource class &optional frame))
331
332 (declare-function internal-set-lisp-face-attribute-from-resource "xfaces.c"
333 (face attr value &optional frame))
334
335 (defun set-face-attribute-from-resource (face attribute resource class frame)
336 "Set FACE's ATTRIBUTE from X resource RESOURCE, class CLASS on FRAME.
337 Value is the attribute value specified by the resource, or nil
338 if not present. This function displays a message if the resource
339 specifies an invalid attribute."
340 (let* ((face-name (face-name face))
341 (value (internal-face-x-get-resource (concat face-name resource)
342 class frame)))
343 (when value
344 (condition-case ()
345 (internal-set-lisp-face-attribute-from-resource
346 face attribute (downcase value) frame)
347 (error
348 (message "Face %s, frame %s: invalid attribute %s %s from X resource"
349 face-name frame attribute value))))
350 value))
351
352
353 (defun set-face-attributes-from-resources (face frame)
354 "Set attributes of FACE from X resources for FRAME."
355 (when (memq (framep frame) '(x w32))
356 (dolist (definition face-x-resources)
357 (let ((attribute (car definition)))
358 (dolist (entry (cdr definition))
359 (set-face-attribute-from-resource face attribute (car entry)
360 (cdr entry) frame))))))
361
362
363 (defun make-face-x-resource-internal (face &optional frame)
364 "Fill frame-local FACE on FRAME from X resources.
365 FRAME nil or not specified means do it for all frames.
366
367 If `inhibit-x-resources' is non-nil, this function does nothing."
368 (unless inhibit-x-resources
369 (dolist (frame (if (null frame) (frame-list) (list frame)))
370 ;; `x-create-frame' already took care of correctly handling
371 ;; the reverse video case-- do _not_ touch the default face
372 (unless (and (eq face 'default)
373 (frame-parameter frame 'reverse))
374 (set-face-attributes-from-resources face frame)))))
375
376
377 \f
378 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
379 ;;; Retrieving face attributes.
380 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
381
382 (defun face-name (face)
383 "Return the name of face FACE."
384 (symbol-name (check-face face)))
385
386
387 (defun face-all-attributes (face &optional frame)
388 "Return an alist stating the attributes of FACE.
389 Each element of the result has the form (ATTR-NAME . ATTR-VALUE).
390 If FRAME is omitted or nil the value describes the default attributes,
391 but if you specify FRAME, the value describes the attributes
392 of FACE on FRAME."
393 (mapcar (lambda (pair)
394 (let ((attr (car pair)))
395 (cons attr (face-attribute face attr (or frame t)))))
396 face-attribute-name-alist))
397
398 (defun face-attribute (face attribute &optional frame inherit)
399 "Return the value of FACE's ATTRIBUTE on FRAME.
400 If the optional argument FRAME is given, report on face FACE in that frame.
401 If FRAME is t, report on the defaults for face FACE (for new frames).
402 If FRAME is omitted or nil, use the selected frame.
403
404 If INHERIT is nil, only attributes directly defined by FACE are considered,
405 so the return value may be `unspecified', or a relative value.
406 If INHERIT is non-nil, FACE's definition of ATTRIBUTE is merged with the
407 faces specified by its `:inherit' attribute; however the return value
408 may still be `unspecified' or relative.
409 If INHERIT is a face or a list of faces, then the result is further merged
410 with that face (or faces), until it becomes specified and absolute.
411
412 To ensure that the return value is always specified and absolute, use a
413 value of `default' for INHERIT; this will resolve any unspecified or
414 relative values by merging with the `default' face (which is always
415 completely specified)."
416 (let ((value (internal-get-lisp-face-attribute face attribute frame)))
417 (when (and inherit (face-attribute-relative-p attribute value))
418 ;; VALUE is relative, so merge with inherited faces
419 (let ((inh-from (face-attribute face :inherit frame)))
420 (unless (or (null inh-from) (eq inh-from 'unspecified))
421 (condition-case nil
422 (setq value
423 (face-attribute-merged-with attribute value inh-from frame))
424 ;; The `inherit' attribute may point to non existent faces.
425 (error nil)))))
426 (when (and inherit
427 (not (eq inherit t))
428 (face-attribute-relative-p attribute value))
429 ;; We should merge with INHERIT as well
430 (setq value (face-attribute-merged-with attribute value inherit frame)))
431 value))
432
433 (defun face-attribute-merged-with (attribute value faces &optional frame)
434 "Merges ATTRIBUTE, initially VALUE, with faces from FACES until absolute.
435 FACES may be either a single face or a list of faces.
436 [This is an internal function.]"
437 (cond ((not (face-attribute-relative-p attribute value))
438 value)
439 ((null faces)
440 value)
441 ((consp faces)
442 (face-attribute-merged-with
443 attribute
444 (face-attribute-merged-with attribute value (car faces) frame)
445 (cdr faces)
446 frame))
447 (t
448 (merge-face-attribute attribute
449 value
450 (face-attribute faces attribute frame t)))))
451
452
453 (defmacro face-attribute-specified-or (value &rest body)
454 "Return VALUE, unless it's `unspecified', in which case evaluate BODY and return the result."
455 (let ((temp (make-symbol "value")))
456 `(let ((,temp ,value))
457 (if (not (eq ,temp 'unspecified))
458 ,temp
459 ,@body))))
460
461 (defun face-foreground (face &optional frame inherit)
462 "Return the foreground color name of FACE, or nil if unspecified.
463 If the optional argument FRAME is given, report on face FACE in that frame.
464 If FRAME is t, report on the defaults for face FACE (for new frames).
465 If FRAME is omitted or nil, use the selected frame.
466
467 If INHERIT is nil, only a foreground color directly defined by FACE is
468 considered, so the return value may be nil.
469 If INHERIT is t, and FACE doesn't define a foreground color, then any
470 foreground color that FACE inherits through its `:inherit' attribute
471 is considered as well; however the return value may still be nil.
472 If INHERIT is a face or a list of faces, then it is used to try to
473 resolve an unspecified foreground color.
474
475 To ensure that a valid color is always returned, use a value of
476 `default' for INHERIT; this will resolve any unspecified values by
477 merging with the `default' face (which is always completely specified)."
478 (face-attribute-specified-or (face-attribute face :foreground frame inherit)
479 nil))
480
481 (defun face-background (face &optional frame inherit)
482 "Return the background color name of FACE, or nil if unspecified.
483 If the optional argument FRAME is given, report on face FACE in that frame.
484 If FRAME is t, report on the defaults for face FACE (for new frames).
485 If FRAME is omitted or nil, use the selected frame.
486
487 If INHERIT is nil, only a background color directly defined by FACE is
488 considered, so the return value may be nil.
489 If INHERIT is t, and FACE doesn't define a background color, then any
490 background color that FACE inherits through its `:inherit' attribute
491 is considered as well; however the return value may still be nil.
492 If INHERIT is a face or a list of faces, then it is used to try to
493 resolve an unspecified background color.
494
495 To ensure that a valid color is always returned, use a value of
496 `default' for INHERIT; this will resolve any unspecified values by
497 merging with the `default' face (which is always completely specified)."
498 (face-attribute-specified-or (face-attribute face :background frame inherit)
499 nil))
500
501 (defun face-stipple (face &optional frame inherit)
502 "Return the stipple pixmap name of FACE, or nil if unspecified.
503 If the optional argument FRAME is given, report on face FACE in that frame.
504 If FRAME is t, report on the defaults for face FACE (for new frames).
505 If FRAME is omitted or nil, use the selected frame.
506
507 If INHERIT is nil, only a stipple directly defined by FACE is
508 considered, so the return value may be nil.
509 If INHERIT is t, and FACE doesn't define a stipple, then any stipple
510 that FACE inherits through its `:inherit' attribute is considered as
511 well; however the return value may still be nil.
512 If INHERIT is a face or a list of faces, then it is used to try to
513 resolve an unspecified stipple.
514
515 To ensure that a valid stipple or nil is always returned, use a value of
516 `default' for INHERIT; this will resolve any unspecified values by merging
517 with the `default' face (which is always completely specified)."
518 (face-attribute-specified-or (face-attribute face :stipple frame inherit)
519 nil))
520
521
522 (defalias 'face-background-pixmap 'face-stipple)
523
524
525 (defun face-underline-p (face &optional frame inherit)
526 "Return non-nil if FACE specifies a non-nil underlining.
527 If the optional argument FRAME is given, report on face FACE in that frame.
528 If FRAME is t, report on the defaults for face FACE (for new frames).
529 If FRAME is omitted or nil, use the selected frame.
530 Optional argument INHERIT is passed to `face-attribute'."
531 (face-attribute-specified-or
532 (face-attribute face :underline frame inherit) nil))
533
534
535 (defun face-inverse-video-p (face &optional frame inherit)
536 "Return non-nil if FACE specifies a non-nil inverse-video.
537 If the optional argument FRAME is given, report on face FACE in that frame.
538 If FRAME is t, report on the defaults for face FACE (for new frames).
539 If FRAME is omitted or nil, use the selected frame.
540 Optional argument INHERIT is passed to `face-attribute'."
541 (eq (face-attribute face :inverse-video frame inherit) t))
542
543
544 (defun face-bold-p (face &optional frame inherit)
545 "Return non-nil if the font of FACE is bold on FRAME.
546 If the optional argument FRAME is given, report on face FACE in that frame.
547 If FRAME is t, report on the defaults for face FACE (for new frames).
548 If FRAME is omitted or nil, use the selected frame.
549 Optional argument INHERIT is passed to `face-attribute'.
550 Use `face-attribute' for finer control."
551 (let ((bold (face-attribute face :weight frame inherit)))
552 (memq bold '(semi-bold bold extra-bold ultra-bold))))
553
554
555 (defun face-italic-p (face &optional frame inherit)
556 "Return non-nil if the font of FACE is italic on FRAME.
557 If the optional argument FRAME is given, report on face FACE in that frame.
558 If FRAME is t, report on the defaults for face FACE (for new frames).
559 If FRAME is omitted or nil, use the selected frame.
560 Optional argument INHERIT is passed to `face-attribute'.
561 Use `face-attribute' for finer control."
562 (let ((italic (face-attribute face :slant frame inherit)))
563 (memq italic '(italic oblique))))
564
565
566 \f
567 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
568 ;;; Face documentation.
569 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
570
571 (defun face-documentation (face)
572 "Get the documentation string for FACE.
573 If FACE is a face-alias, get the documentation for the target face."
574 (let ((alias (get face 'face-alias)))
575 (if alias
576 (let ((doc (get alias 'face-documentation)))
577 (format "%s is an alias for the face `%s'.%s" face alias
578 (if doc (format "\n%s" doc)
579 "")))
580 (get face 'face-documentation))))
581
582
583 (defun set-face-documentation (face string)
584 "Set the documentation string for FACE to STRING."
585 ;; Perhaps the text should go in DOC.
586 (put face 'face-documentation (purecopy string)))
587
588
589 (defalias 'face-doc-string 'face-documentation)
590 (defalias 'set-face-doc-string 'set-face-documentation)
591
592
593 \f
594 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
595 ;; Setting face attributes.
596 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
597
598
599 (defun set-face-attribute (face frame &rest args)
600 "Set attributes of FACE on FRAME from ARGS.
601 This function overrides the face attributes specified by FACE's
602 face spec. It is mostly intended for internal use only.
603
604 If FRAME is nil, set the attributes for all existing frames, as
605 well as the default for new frames. If FRAME is t, change the
606 default for new frames only.
607
608 ARGS must come in pairs ATTRIBUTE VALUE. ATTRIBUTE must be a
609 valid face attribute name. All attributes can be set to
610 `unspecified'; this fact is not further mentioned below.
611
612 The following attributes are recognized:
613
614 `:family'
615
616 VALUE must be a string specifying the font family
617 \(e.g. \"Monospace\") or a fontset.
618
619 `:foundry'
620
621 VALUE must be a string specifying the font foundry,
622 e.g., \"adobe\". If a font foundry is specified, wild-cards `*'
623 and `?' are allowed.
624
625 `:width'
626
627 VALUE specifies the relative proportionate width of the font to use.
628 It must be one of the symbols `ultra-condensed', `extra-condensed',
629 `condensed', `semi-condensed', `normal', `semi-expanded', `expanded',
630 `extra-expanded', or `ultra-expanded'.
631
632 `:height'
633
634 VALUE specifies the relative or absolute height of the font. An
635 absolute height is an integer, and specifies font height in units
636 of 1/10 pt. A relative height is either a floating point number,
637 which specifies a scaling factor for the underlying face height;
638 or a function that takes a single argument (the underlying face
639 height) and returns the new height. Note that for the `default'
640 face, you must specify an absolute height (since there is nothing
641 for it to be relative to).
642
643 `:weight'
644
645 VALUE specifies the weight of the font to use. It must be one of the
646 symbols `ultra-bold', `extra-bold', `bold', `semi-bold', `normal',
647 `semi-light', `light', `extra-light', `ultra-light'.
648
649 `:slant'
650
651 VALUE specifies the slant of the font to use. It must be one of the
652 symbols `italic', `oblique', `normal', `reverse-italic', or
653 `reverse-oblique'.
654
655 `:foreground', `:background'
656
657 VALUE must be a color name, a string.
658
659 `:underline'
660
661 VALUE specifies whether characters in FACE should be underlined.
662 If VALUE is t, underline with foreground color of the face.
663 If VALUE is a string, underline with that color.
664 If VALUE is nil, explicitly don't underline.
665
666 Otherwise, VALUE must be a property list of the form:
667
668 `(:color COLOR :style STYLE)'.
669
670 COLOR can be a either a color name string or `foreground-color'.
671 STYLE can be either `line' or `wave'.
672 If a keyword/value pair is missing from the property list, a
673 default value will be used for the value.
674 The default value of COLOR is the foreground color of the face.
675 The default value of STYLE is `line'.
676
677 `:overline'
678
679 VALUE specifies whether characters in FACE should be overlined. If
680 VALUE is t, overline with foreground color of the face. If VALUE is a
681 string, overline with that color. If VALUE is nil, explicitly don't
682 overline.
683
684 `:strike-through'
685
686 VALUE specifies whether characters in FACE should be drawn with a line
687 striking through them. If VALUE is t, use the foreground color of the
688 face. If VALUE is a string, strike-through with that color. If VALUE
689 is nil, explicitly don't strike through.
690
691 `:box'
692
693 VALUE specifies whether characters in FACE should have a box drawn
694 around them. If VALUE is nil, explicitly don't draw boxes. If
695 VALUE is t, draw a box with lines of width 1 in the foreground color
696 of the face. If VALUE is a string, the string must be a color name,
697 and the box is drawn in that color with a line width of 1. Otherwise,
698 VALUE must be a property list of the form `(:line-width WIDTH
699 :color COLOR :style STYLE)'. If a keyword/value pair is missing from
700 the property list, a default value will be used for the value, as
701 specified below. WIDTH specifies the width of the lines to draw; it
702 defaults to 1. If WIDTH is negative, the absolute value is the width
703 of the lines, and draw top/bottom lines inside the characters area,
704 not around it. COLOR is the name of the color to draw in, default is
705 the foreground color of the face for simple boxes, and the background
706 color of the face for 3D boxes. STYLE specifies whether a 3D box
707 should be draw. If STYLE is `released-button', draw a box looking
708 like a released 3D button. If STYLE is `pressed-button' draw a box
709 that appears like a pressed button. If STYLE is nil, the default if
710 the property list doesn't contain a style specification, draw a 2D
711 box.
712
713 `:inverse-video'
714
715 VALUE specifies whether characters in FACE should be displayed in
716 inverse video. VALUE must be one of t or nil.
717
718 `:stipple'
719
720 If VALUE is a string, it must be the name of a file of pixmap data.
721 The directories listed in the `x-bitmap-file-path' variable are
722 searched. Alternatively, VALUE may be a list of the form (WIDTH
723 HEIGHT DATA) where WIDTH and HEIGHT are the size in pixels, and DATA
724 is a string containing the raw bits of the bitmap. VALUE nil means
725 explicitly don't use a stipple pattern.
726
727 For convenience, attributes `:family', `:foundry', `:width',
728 `:height', `:weight', and `:slant' may also be set in one step
729 from an X font name:
730
731 `:font'
732
733 Set font-related face attributes from VALUE. VALUE must be a
734 valid font name or font object. Setting this attribute will also
735 set the `:family', `:foundry', `:width', `:height', `:weight',
736 and `:slant' attributes.
737
738 `:inherit'
739
740 VALUE is the name of a face from which to inherit attributes, or
741 a list of face names. Attributes from inherited faces are merged
742 into the face like an underlying face would be, with higher
743 priority than underlying faces.
744
745 For backward compatibility, the keywords `:bold' and `:italic'
746 can be used to specify weight and slant respectively. This usage
747 is considered obsolete. For these two keywords, the VALUE must
748 be either t or nil. A value of t for `:bold' is equivalent to
749 setting `:weight' to `bold', and a value of t for `:italic' is
750 equivalent to setting `:slant' to `italic'. But if `:weight' is
751 specified in the face spec, `:bold' is ignored, and if `:slant'
752 is specified, `:italic' is ignored."
753 (setq args (purecopy args))
754 (let ((where (if (null frame) 0 frame))
755 (spec args)
756 family foundry orig-family orig-foundry)
757 ;; If we set the new-frame defaults, this face is modified outside Custom.
758 (if (memq where '(0 t))
759 (put (or (get face 'face-alias) face) 'face-modified t))
760 ;; If family and/or foundry are specified, set it first. Certain
761 ;; face attributes, e.g. :weight semi-condensed, are not supported
762 ;; in every font. See bug#1127.
763 (while spec
764 (cond ((eq (car spec) :family)
765 (setq family (cadr spec)))
766 ((eq (car spec) :foundry)
767 (setq foundry (cadr spec))))
768 (setq spec (cddr spec)))
769 (when (or family foundry)
770 (when (and (stringp family)
771 (string-match "\\([^-]*\\)-\\([^-]*\\)" family))
772 (setq orig-foundry foundry
773 orig-family family)
774 (unless foundry
775 (setq foundry (match-string 1 family)))
776 (setq family (match-string 2 family))
777 ;; Reject bogus "families" that are all-digits -- those are some
778 ;; weird font names, like Foobar-12, that end in a number.
779 (when (string-match "\\`[0-9]*\\'" family)
780 (setq family orig-family)
781 (setq foundry orig-foundry)))
782 (when (or (stringp family) (eq family 'unspecified))
783 (internal-set-lisp-face-attribute face :family (purecopy family)
784 where))
785 (when (or (stringp foundry) (eq foundry 'unspecified))
786 (internal-set-lisp-face-attribute face :foundry (purecopy foundry)
787 where)))
788 (while args
789 (unless (memq (car args) '(:family :foundry))
790 (internal-set-lisp-face-attribute face (car args)
791 (purecopy (cadr args))
792 where))
793 (setq args (cddr args)))))
794
795 (defun make-face-bold (face &optional frame _noerror)
796 "Make the font of FACE be bold, if possible.
797 FRAME nil or not specified means change face on all frames.
798 Argument NOERROR is ignored and retained for compatibility.
799 Use `set-face-attribute' for finer control of the font weight."
800 (interactive (list (read-face-name "Make which face bold"
801 (face-at-point t))))
802 (set-face-attribute face frame :weight 'bold))
803
804
805 (defun make-face-unbold (face &optional frame _noerror)
806 "Make the font of FACE be non-bold, if possible.
807 FRAME nil or not specified means change face on all frames.
808 Argument NOERROR is ignored and retained for compatibility."
809 (interactive (list (read-face-name "Make which face non-bold"
810 (face-at-point t))))
811 (set-face-attribute face frame :weight 'normal))
812
813
814 (defun make-face-italic (face &optional frame _noerror)
815 "Make the font of FACE be italic, if possible.
816 FRAME nil or not specified means change face on all frames.
817 Argument NOERROR is ignored and retained for compatibility.
818 Use `set-face-attribute' for finer control of the font slant."
819 (interactive (list (read-face-name "Make which face italic"
820 (face-at-point t))))
821 (set-face-attribute face frame :slant 'italic))
822
823
824 (defun make-face-unitalic (face &optional frame _noerror)
825 "Make the font of FACE be non-italic, if possible.
826 FRAME nil or not specified means change face on all frames.
827 Argument NOERROR is ignored and retained for compatibility."
828 (interactive (list (read-face-name "Make which face non-italic"
829 (face-at-point t))))
830 (set-face-attribute face frame :slant 'normal))
831
832
833 (defun make-face-bold-italic (face &optional frame _noerror)
834 "Make the font of FACE be bold and italic, if possible.
835 FRAME nil or not specified means change face on all frames.
836 Argument NOERROR is ignored and retained for compatibility.
837 Use `set-face-attribute' for finer control of font weight and slant."
838 (interactive (list (read-face-name "Make which face bold-italic"
839 (face-at-point t))))
840 (set-face-attribute face frame :weight 'bold :slant 'italic))
841
842
843 (defun set-face-font (face font &optional frame)
844 "Change font-related attributes of FACE to those of FONT (a string).
845 FRAME nil or not specified means change face on all frames.
846 This sets the attributes `:family', `:foundry', `:width',
847 `:height', `:weight', and `:slant'. When called interactively,
848 prompt for the face and font."
849 (interactive (read-face-and-attribute :font))
850 (set-face-attribute face frame :font font))
851
852
853 ;; Implementation note: Emulating gray background colors with a
854 ;; stipple pattern is now part of the face realization process, and is
855 ;; done in C depending on the frame on which the face is realized.
856
857 (defun set-face-background (face color &optional frame)
858 "Change the background color of face FACE to COLOR (a string).
859 FRAME nil or not specified means change face on all frames.
860 COLOR can be a system-defined color name (see `list-colors-display')
861 or a hex spec of the form #RRGGBB.
862 When called interactively, prompts for the face and color."
863 (interactive (read-face-and-attribute :background))
864 (set-face-attribute face frame :background (or color 'unspecified)))
865
866
867 (defun set-face-foreground (face color &optional frame)
868 "Change the foreground color of face FACE to COLOR (a string).
869 FRAME nil or not specified means change face on all frames.
870 COLOR can be a system-defined color name (see `list-colors-display')
871 or a hex spec of the form #RRGGBB.
872 When called interactively, prompts for the face and color."
873 (interactive (read-face-and-attribute :foreground))
874 (set-face-attribute face frame :foreground (or color 'unspecified)))
875
876
877 (defun set-face-stipple (face stipple &optional frame)
878 "Change the stipple pixmap of face FACE to STIPPLE.
879 FRAME nil or not specified means change face on all frames.
880 STIPPLE should be a string, the name of a file of pixmap data.
881 The directories listed in the `x-bitmap-file-path' variable are searched.
882
883 Alternatively, STIPPLE may be a list of the form (WIDTH HEIGHT DATA)
884 where WIDTH and HEIGHT are the size in pixels,
885 and DATA is a string, containing the raw bits of the bitmap."
886 (interactive (read-face-and-attribute :stipple))
887 (set-face-attribute face frame :stipple (or stipple 'unspecified)))
888
889
890 (defun set-face-underline (face underline &optional frame)
891 "Specify whether face FACE is underlined.
892 UNDERLINE nil means FACE explicitly doesn't underline.
893 UNDERLINE t means FACE underlines with its foreground color.
894 If UNDERLINE is a string, underline with that color.
895
896 UNDERLINE may also be a list of the form (:color COLOR :style STYLE),
897 where COLOR is a string or `foreground-color', and STYLE is either
898 `line' or `wave'. :color may be omitted, which means to use the
899 foreground color. :style may be omitted, which means to use a line.
900
901 FRAME nil or not specified means change face on all frames.
902 Use `set-face-attribute' to \"unspecify\" underlining."
903 (interactive (read-face-and-attribute :underline))
904 (set-face-attribute face frame :underline underline))
905
906 (define-obsolete-function-alias 'set-face-underline-p
907 'set-face-underline "24.3")
908
909
910 (defun set-face-inverse-video (face inverse-video-p &optional frame)
911 "Specify whether face FACE is in inverse video.
912 INVERSE-VIDEO-P non-nil means FACE displays explicitly in inverse video.
913 INVERSE-VIDEO-P nil means FACE explicitly is not in inverse video.
914 FRAME nil or not specified means change face on all frames.
915 Use `set-face-attribute' to \"unspecify\" the inverse video attribute."
916 (interactive
917 (let ((list (read-face-and-attribute :inverse-video)))
918 (list (car list) (if (cadr list) t))))
919 (set-face-attribute face frame :inverse-video inverse-video-p))
920
921 (define-obsolete-function-alias 'set-face-inverse-video-p
922 'set-face-inverse-video "24.4")
923
924 (defun set-face-bold (face bold-p &optional frame)
925 "Specify whether face FACE is bold.
926 BOLD-P non-nil means FACE should explicitly display bold.
927 BOLD-P nil means FACE should explicitly display non-bold.
928 FRAME nil or not specified means change face on all frames.
929 Use `set-face-attribute' or `modify-face' for finer control."
930 (if (null bold-p)
931 (make-face-unbold face frame)
932 (make-face-bold face frame)))
933
934 (define-obsolete-function-alias 'set-face-bold-p 'set-face-bold "24.4")
935
936
937 (defun set-face-italic (face italic-p &optional frame)
938 "Specify whether face FACE is italic.
939 ITALIC-P non-nil means FACE should explicitly display italic.
940 ITALIC-P nil means FACE should explicitly display non-italic.
941 FRAME nil or not specified means change face on all frames.
942 Use `set-face-attribute' or `modify-face' for finer control."
943 (if (null italic-p)
944 (make-face-unitalic face frame)
945 (make-face-italic face frame)))
946
947 (define-obsolete-function-alias 'set-face-italic-p 'set-face-italic "24.4")
948
949
950 (defalias 'set-face-background-pixmap 'set-face-stipple)
951
952
953 (defun invert-face (face &optional frame)
954 "Swap the foreground and background colors of FACE.
955 If FRAME is omitted or nil, it means change face on all frames.
956 If FACE specifies neither foreground nor background color,
957 set its foreground and background to the background and foreground
958 of the default face. Value is FACE."
959 (interactive (list (read-face-name "Invert face" (face-at-point t))))
960 (let ((fg (face-attribute face :foreground frame))
961 (bg (face-attribute face :background frame)))
962 (if (not (and (eq fg 'unspecified) (eq bg 'unspecified)))
963 (set-face-attribute face frame :foreground bg :background fg)
964 (set-face-attribute face frame
965 :foreground
966 (face-attribute 'default :background frame)
967 :background
968 (face-attribute 'default :foreground frame))))
969 face)
970
971 \f
972 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
973 ;;; Interactively modifying faces.
974 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
975
976 (defvar crm-separator) ; from crm.el
977
978 (defun read-face-name (prompt &optional default multiple)
979 "Read one or more face names, prompting with PROMPT.
980 PROMPT should not end in a space or a colon.
981
982 Return DEFAULT if the user enters the empty string.
983 If DEFAULT is non-nil, it should be a single face or a list of face names
984 \(symbols or strings). In the latter case, return the `car' of DEFAULT
985 \(if MULTIPLE is nil, see below), or DEFAULT (if MULTIPLE is non-nil).
986
987 If MULTIPLE is non-nil, this function uses `completing-read-multiple'
988 to read multiple faces with \"[ \\t]*,[ \\t]*\" as the separator regexp
989 and it returns a list of face names. Otherwise, it reads and returns
990 a single face name."
991 (if (and default (not (stringp default)))
992 (setq default
993 (cond ((symbolp default)
994 (symbol-name default))
995 (multiple
996 (mapconcat (lambda (f) (if (symbolp f) (symbol-name f) f))
997 default ", "))
998 ;; If we only want one, and the default is more than one,
999 ;; discard the unwanted ones.
1000 (t (symbol-name (car default))))))
1001 (when (and default (not multiple))
1002 (require 'crm)
1003 ;; For compatibility with `completing-read-multiple' use `crm-separator'
1004 ;; to define DEFAULT if MULTIPLE is nil.
1005 (setq default (car (split-string default crm-separator t))))
1006
1007 (let ((prompt (if default
1008 (format-message "%s (default `%s'): " prompt default)
1009 (format "%s: " prompt)))
1010 aliasfaces nonaliasfaces faces)
1011 ;; Build up the completion tables.
1012 (mapatoms (lambda (s)
1013 (if (facep s)
1014 (if (get s 'face-alias)
1015 (push (symbol-name s) aliasfaces)
1016 (push (symbol-name s) nonaliasfaces)))))
1017 (if multiple
1018 (progn
1019 (dolist (face (completing-read-multiple
1020 prompt
1021 (completion-table-in-turn nonaliasfaces aliasfaces)
1022 nil t nil 'face-name-history default))
1023 ;; Ignore elements that are not faces
1024 ;; (for example, because DEFAULT was "all faces")
1025 (if (facep face) (push (intern face) faces)))
1026 (nreverse faces))
1027 (let ((face (completing-read
1028 prompt
1029 (completion-table-in-turn nonaliasfaces aliasfaces)
1030 nil t nil 'face-name-history default)))
1031 (if (facep face) (intern face))))))
1032
1033 ;; Not defined without X, but behind window-system test.
1034 (defvar x-bitmap-file-path)
1035
1036 (defun face-valid-attribute-values (attribute &optional frame)
1037 "Return valid values for face attribute ATTRIBUTE.
1038 The optional argument FRAME is used to determine available fonts
1039 and colors. If it is nil or not specified, the selected frame is used.
1040 Value is an alist of (NAME . VALUE) if ATTRIBUTE expects a value out
1041 of a set of discrete values. Value is `integerp' if ATTRIBUTE expects
1042 an integer value."
1043 (let ((valid
1044 (pcase attribute
1045 (`:family
1046 (if (window-system frame)
1047 (mapcar (lambda (x) (cons x x))
1048 (font-family-list))
1049 ;; Only one font on TTYs.
1050 (list (cons "default" "default"))))
1051 (`:foundry
1052 (list nil))
1053 (`:width
1054 (mapcar #'(lambda (x) (cons (symbol-name (aref x 1)) (aref x 1)))
1055 font-width-table))
1056 (`:weight
1057 (mapcar #'(lambda (x) (cons (symbol-name (aref x 1)) (aref x 1)))
1058 font-weight-table))
1059 (`:slant
1060 (mapcar #'(lambda (x) (cons (symbol-name (aref x 1)) (aref x 1)))
1061 font-slant-table))
1062 (`:inverse-video
1063 (mapcar #'(lambda (x) (cons (symbol-name x) x))
1064 (internal-lisp-face-attribute-values attribute)))
1065 ((or `:underline `:overline `:strike-through `:box)
1066 (if (window-system frame)
1067 (nconc (mapcar #'(lambda (x) (cons (symbol-name x) x))
1068 (internal-lisp-face-attribute-values attribute))
1069 (mapcar #'(lambda (c) (cons c c))
1070 (defined-colors frame)))
1071 (mapcar #'(lambda (x) (cons (symbol-name x) x))
1072 (internal-lisp-face-attribute-values attribute))))
1073 ((or `:foreground `:background)
1074 (mapcar #'(lambda (c) (cons c c))
1075 (defined-colors frame)))
1076 (`:height
1077 'integerp)
1078 (`:stipple
1079 (and (memq (window-system frame) '(x ns)) ; No stipple on w32
1080 (mapcar #'list
1081 (apply #'nconc
1082 (mapcar (lambda (dir)
1083 (and (file-readable-p dir)
1084 (file-directory-p dir)
1085 (directory-files dir)))
1086 x-bitmap-file-path)))))
1087 (`:inherit
1088 (cons '("none" . nil)
1089 (mapcar #'(lambda (c) (cons (symbol-name c) c))
1090 (face-list))))
1091 (_
1092 (error "Internal error")))))
1093 (if (and (listp valid) (not (memq attribute '(:inherit))))
1094 (nconc (list (cons "unspecified" 'unspecified)) valid)
1095 valid)))
1096
1097
1098 (defconst face-attribute-name-alist
1099 '((:family . "font family")
1100 (:foundry . "font foundry")
1101 (:width . "character set width")
1102 (:height . "height in 1/10 pt")
1103 (:weight . "weight")
1104 (:slant . "slant")
1105 (:underline . "underline")
1106 (:overline . "overline")
1107 (:strike-through . "strike-through")
1108 (:box . "box")
1109 (:inverse-video . "inverse-video display")
1110 (:foreground . "foreground color")
1111 (:background . "background color")
1112 (:stipple . "background stipple")
1113 (:inherit . "inheritance"))
1114 "An alist of descriptive names for face attributes.
1115 Each element has the form (ATTRIBUTE-NAME . DESCRIPTION) where
1116 ATTRIBUTE-NAME is a face attribute name (a keyword symbol), and
1117 DESCRIPTION is a descriptive name for ATTRIBUTE-NAME.")
1118
1119
1120 (defun face-descriptive-attribute-name (attribute)
1121 "Return a descriptive name for ATTRIBUTE."
1122 (cdr (assq attribute face-attribute-name-alist)))
1123
1124
1125 (defun face-read-string (face default name &optional completion-alist)
1126 "Interactively read a face attribute string value.
1127 FACE is the face whose attribute is read. If non-nil, DEFAULT is the
1128 default string to return if no new value is entered. NAME is a
1129 descriptive name of the attribute for prompting. COMPLETION-ALIST is an
1130 alist of valid values, if non-nil.
1131
1132 Entering nothing accepts the default string DEFAULT.
1133 Value is the new attribute value."
1134 ;; Capitalize NAME (we don't use `capitalize' because that capitalizes
1135 ;; each word in a string separately).
1136 (setq name (concat (upcase (substring name 0 1)) (substring name 1)))
1137 (let* ((completion-ignore-case t)
1138 (value (completing-read
1139 (format-message (if default
1140 "%s for face `%s' (default %s): "
1141 "%s for face `%s': ")
1142 name face default)
1143 completion-alist nil nil nil nil default)))
1144 (if (equal value "") default value)))
1145
1146
1147 (defun face-read-integer (face default name)
1148 "Interactively read an integer face attribute value.
1149 FACE is the face whose attribute is read. DEFAULT is the default
1150 value to return if no new value is entered. NAME is a descriptive
1151 name of the attribute for prompting. Value is the new attribute value."
1152 (let ((new-value
1153 (face-read-string face
1154 (format "%s" default)
1155 name
1156 (list (cons "unspecified" 'unspecified)))))
1157 (cond ((equal new-value "unspecified")
1158 'unspecified)
1159 ((member new-value '("unspecified-fg" "unspecified-bg"))
1160 new-value)
1161 (t
1162 (string-to-number new-value)))))
1163
1164
1165 ;; FIXME this does allow you to enter the list forms of :box,
1166 ;; :stipple, or :underline, because face-valid-attribute-values does
1167 ;; not return those forms.
1168 (defun read-face-attribute (face attribute &optional frame)
1169 "Interactively read a new value for FACE's ATTRIBUTE.
1170 Optional argument FRAME nil or unspecified means read an attribute value
1171 of a global face. Value is the new attribute value."
1172 (let* ((old-value (face-attribute face attribute frame))
1173 (attribute-name (face-descriptive-attribute-name attribute))
1174 (valid (face-valid-attribute-values attribute frame))
1175 new-value)
1176 ;; Represent complex attribute values as strings by printing them
1177 ;; out. Stipple can be a vector; (WIDTH HEIGHT DATA). Box can be
1178 ;; a list `(:width WIDTH :color COLOR)' or `(:width WIDTH :shadow
1179 ;; SHADOW)'. Underline can be `(:color COLOR :style STYLE)'.
1180 (and (memq attribute '(:box :stipple :underline))
1181 (or (consp old-value)
1182 (vectorp old-value))
1183 (setq old-value (prin1-to-string old-value)))
1184 (cond ((listp valid)
1185 (let ((default
1186 (or (car (rassoc old-value valid))
1187 (format "%s" old-value))))
1188 (setq new-value
1189 (face-read-string face default attribute-name valid))
1190 (if (equal new-value default)
1191 ;; Nothing changed, so don't bother with all the stuff
1192 ;; below. In particular, this avoids a non-tty color
1193 ;; from being canonicalized for a tty when the user
1194 ;; just uses the default.
1195 (setq new-value old-value)
1196 ;; Terminal frames can support colors that don't appear
1197 ;; explicitly in VALID, using color approximation code
1198 ;; in tty-colors.el.
1199 (when (and (memq attribute '(:foreground :background))
1200 (not (memq (window-system frame) '(x w32 ns)))
1201 (not (member new-value
1202 '("unspecified"
1203 "unspecified-fg" "unspecified-bg"))))
1204 (setq new-value (car (tty-color-desc new-value frame))))
1205 (when (assoc new-value valid)
1206 (setq new-value (cdr (assoc new-value valid)))))))
1207 ((eq valid 'integerp)
1208 (setq new-value (face-read-integer face old-value attribute-name)))
1209 (t (error "Internal error")))
1210 ;; Convert stipple and box value text we read back to a list or
1211 ;; vector if it looks like one. This makes the assumption that a
1212 ;; pixmap file name won't start with an open-paren.
1213 (and (memq attribute '(:stipple :box :underline))
1214 (stringp new-value)
1215 (string-match-p "^[[(]" new-value)
1216 (setq new-value (read new-value)))
1217 new-value))
1218
1219 (declare-function fontset-list "fontset.c" ())
1220 (declare-function x-list-fonts "xfaces.c"
1221 (pattern &optional face frame maximum width))
1222
1223 (defun read-face-font (face &optional frame)
1224 "Read the name of a font for FACE on FRAME.
1225 If optional argument FRAME is nil or omitted, use the selected frame."
1226 (let ((completion-ignore-case t))
1227 (completing-read (format-message
1228 "Set font attributes of face `%s' from font: " face)
1229 (append (fontset-list) (x-list-fonts "*" nil frame)))))
1230
1231
1232 (defun read-all-face-attributes (face &optional frame)
1233 "Interactively read all attributes for FACE.
1234 If optional argument FRAME is nil or omitted, use the selected frame.
1235 Value is a property list of attribute names and new values."
1236 (let (result)
1237 (dolist (attribute face-attribute-name-alist result)
1238 (setq result (cons (car attribute)
1239 (cons (read-face-attribute face (car attribute) frame)
1240 result))))))
1241
1242 (defun modify-face (&optional face foreground background stipple
1243 bold-p italic-p underline inverse-p frame)
1244 "Modify attributes of faces interactively.
1245 If optional argument FRAME is nil or omitted, modify the face used
1246 for newly created frame, i.e. the global face.
1247 For non-interactive use, `set-face-attribute' is preferred.
1248 When called from Lisp, if FACE is nil, all arguments but FRAME are ignored
1249 and the face and its settings are obtained by querying the user."
1250 (interactive)
1251 (if face
1252 (set-face-attribute face frame
1253 :foreground (or foreground 'unspecified)
1254 :background (or background 'unspecified)
1255 :stipple stipple
1256 :weight (if bold-p 'bold 'normal)
1257 :slant (if italic-p 'italic 'normal)
1258 :underline underline
1259 :inverse-video inverse-p)
1260 (setq face (read-face-name "Modify face" (face-at-point t)))
1261 (apply #'set-face-attribute face frame
1262 (read-all-face-attributes face frame))))
1263
1264 (defun read-face-and-attribute (attribute &optional frame)
1265 "Read face name and face attribute value.
1266 ATTRIBUTE is the attribute whose new value is read.
1267 FRAME nil or unspecified means read attribute value of global face.
1268 Value is a list (FACE NEW-VALUE) where FACE is the face read
1269 \(a symbol), and NEW-VALUE is value read."
1270 (cond ((eq attribute :font)
1271 (let* ((prompt "Set font-related attributes of face")
1272 (face (read-face-name prompt (face-at-point t)))
1273 (font (read-face-font face frame)))
1274 (list face font)))
1275 (t
1276 (let* ((attribute-name (face-descriptive-attribute-name attribute))
1277 (prompt (format "Set %s of face" attribute-name))
1278 (face (read-face-name prompt (face-at-point t)))
1279 (new-value (read-face-attribute face attribute frame)))
1280 (list face new-value)))))
1281
1282
1283 \f
1284 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1285 ;;; Listing faces.
1286 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1287
1288 (defconst list-faces-sample-text
1289 "abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ"
1290 "Text string to display as the sample text for `list-faces-display'.")
1291
1292
1293 ;; The name list-faces would be more consistent, but let's avoid a
1294 ;; conflict with Lucid, which uses that name differently.
1295
1296 (defvar help-xref-stack)
1297 (defun list-faces-display (&optional regexp)
1298 "List all faces, using the same sample text in each.
1299 The sample text is a string that comes from the variable
1300 `list-faces-sample-text'.
1301
1302 If REGEXP is non-nil, list only those faces with names matching
1303 this regular expression. When called interactively with a prefix
1304 argument, prompt for a regular expression using `read-regexp'."
1305 (interactive (list (and current-prefix-arg
1306 (read-regexp "List faces matching regexp"))))
1307 (let ((all-faces (zerop (length regexp)))
1308 (frame (selected-frame))
1309 (max-length 0)
1310 faces line-format
1311 disp-frame window face-name)
1312 ;; We filter and take the max length in one pass
1313 (setq faces
1314 (delq nil
1315 (mapcar (lambda (f)
1316 (let ((s (symbol-name f)))
1317 (when (or all-faces (string-match-p regexp s))
1318 (setq max-length (max (length s) max-length))
1319 f)))
1320 (sort (face-list) #'string-lessp))))
1321 (unless faces
1322 (error "No faces matching \"%s\"" regexp))
1323 (setq max-length (1+ max-length)
1324 line-format (format "%%-%ds" max-length))
1325 (with-help-window "*Faces*"
1326 (with-current-buffer standard-output
1327 (setq truncate-lines t)
1328 (insert
1329 (substitute-command-keys
1330 (concat
1331 "\\<help-mode-map>Use "
1332 (if (display-mouse-p) "\\[help-follow-mouse] or ")
1333 "\\[help-follow] on a face name to customize it\n"
1334 "or on its sample text for a description of the face.\n\n")))
1335 (setq help-xref-stack nil)
1336 (dolist (face faces)
1337 (setq face-name (symbol-name face))
1338 (insert (format line-format face-name))
1339 ;; Hyperlink to a customization buffer for the face. Using
1340 ;; the help xref mechanism may not be the best way.
1341 (save-excursion
1342 (save-match-data
1343 (search-backward face-name)
1344 (setq help-xref-stack-item `(list-faces-display ,regexp))
1345 (help-xref-button 0 'help-customize-face face)))
1346 (let ((beg (point))
1347 (line-beg (line-beginning-position)))
1348 (insert list-faces-sample-text)
1349 ;; Hyperlink to a help buffer for the face.
1350 (save-excursion
1351 (save-match-data
1352 (search-backward list-faces-sample-text)
1353 (help-xref-button 0 'help-face face)))
1354 (insert "\n")
1355 (put-text-property beg (1- (point)) 'face face)
1356 ;; Make all face commands default to the proper face
1357 ;; anywhere in the line.
1358 (put-text-property line-beg (1- (point)) 'read-face-name face)
1359 ;; If the sample text has multiple lines, line up all of them.
1360 (goto-char beg)
1361 (forward-line 1)
1362 (while (not (eobp))
1363 (insert-char ?\s max-length)
1364 (forward-line 1))))
1365 (goto-char (point-min))))
1366 ;; If the *Faces* buffer appears in a different frame,
1367 ;; copy all the face definitions from FRAME,
1368 ;; so that the display will reflect the frame that was selected.
1369 (setq window (get-buffer-window (get-buffer "*Faces*") t))
1370 (setq disp-frame (if window (window-frame window)
1371 (car (frame-list))))
1372 (or (eq frame disp-frame)
1373 (dolist (face (face-list))
1374 (copy-face face face frame disp-frame)))))
1375
1376
1377 (defun describe-face (face &optional frame)
1378 "Display the properties of face FACE on FRAME.
1379 Interactively, FACE defaults to the faces of the character after point
1380 and FRAME defaults to the selected frame.
1381
1382 If the optional argument FRAME is given, report on face FACE in that frame.
1383 If FRAME is t, report on the defaults for face FACE (for new frames).
1384 If FRAME is omitted or nil, use the selected frame."
1385 (interactive (list (read-face-name "Describe face"
1386 (or (face-at-point t) 'default)
1387 t)))
1388 (let* ((attrs '((:family . "Family")
1389 (:foundry . "Foundry")
1390 (:width . "Width")
1391 (:height . "Height")
1392 (:weight . "Weight")
1393 (:slant . "Slant")
1394 (:foreground . "Foreground")
1395 (:distant-foreground . "DistantForeground")
1396 (:background . "Background")
1397 (:underline . "Underline")
1398 (:overline . "Overline")
1399 (:strike-through . "Strike-through")
1400 (:box . "Box")
1401 (:inverse-video . "Inverse")
1402 (:stipple . "Stipple")
1403 (:font . "Font")
1404 (:fontset . "Fontset")
1405 (:inherit . "Inherit")))
1406 (max-width (apply #'max (mapcar #'(lambda (x) (length (cdr x)))
1407 attrs))))
1408 (help-setup-xref (list #'describe-face face)
1409 (called-interactively-p 'interactive))
1410 (unless face
1411 (setq face 'default))
1412 (if (not (listp face))
1413 (setq face (list face)))
1414 (with-help-window (help-buffer)
1415 (with-current-buffer standard-output
1416 (dolist (f face)
1417 (if (stringp f) (setq f (intern f)))
1418 ;; We may get called for anonymous faces (i.e., faces
1419 ;; expressed using prop-value plists). Those can't be
1420 ;; usefully customized, so ignore them.
1421 (when (symbolp f)
1422 (insert "Face: " (symbol-name f))
1423 (if (not (facep f))
1424 (insert " undefined face.\n")
1425 (let ((customize-label "customize this face")
1426 file-name)
1427 (insert (concat " (" (propertize "sample" 'font-lock-face f) ")"))
1428 (princ (concat " (" customize-label ")\n"))
1429 ;; FIXME not sure how much of this belongs here, and
1430 ;; how much in `face-documentation'. The latter is
1431 ;; not used much, but needs to return nil for
1432 ;; undocumented faces.
1433 (let ((alias (get f 'face-alias))
1434 (face f)
1435 obsolete)
1436 (when alias
1437 (setq face alias)
1438 (insert
1439 (format-message
1440 "\n %s is an alias for the face `%s'.\n%s"
1441 f alias
1442 (if (setq obsolete (get f 'obsolete-face))
1443 (format-message
1444 " This face is obsolete%s; use `%s' instead.\n"
1445 (if (stringp obsolete)
1446 (format " since %s" obsolete)
1447 "")
1448 alias)
1449 ""))))
1450 (insert "\nDocumentation:\n"
1451 (substitute-command-keys
1452 (or (face-documentation face)
1453 "Not documented as a face."))
1454 "\n\n"))
1455 (with-current-buffer standard-output
1456 (save-excursion
1457 (re-search-backward
1458 (concat "\\(" customize-label "\\)") nil t)
1459 (help-xref-button 1 'help-customize-face f)))
1460 (setq file-name (find-lisp-object-file-name f 'defface))
1461 (when file-name
1462 (princ (substitute-command-keys "Defined in `"))
1463 (princ (file-name-nondirectory file-name))
1464 (princ (substitute-command-keys "'"))
1465 ;; Make a hyperlink to the library.
1466 (save-excursion
1467 (re-search-backward
1468 (substitute-command-keys "`\\([^`']+\\)'") nil t)
1469 (help-xref-button 1 'help-face-def f file-name))
1470 (princ ".")
1471 (terpri)
1472 (terpri))
1473 (dolist (a attrs)
1474 (let ((attr (face-attribute f (car a) frame)))
1475 (insert (make-string (- max-width (length (cdr a))) ?\s)
1476 (cdr a) ": " (format "%s" attr))
1477 (if (and (eq (car a) :inherit)
1478 (not (eq attr 'unspecified)))
1479 ;; Make a hyperlink to the parent face.
1480 (save-excursion
1481 (re-search-backward ": \\([^:]+\\)" nil t)
1482 (help-xref-button 1 'help-face attr)))
1483 (insert "\n")))))
1484 (terpri)))))))
1485
1486 \f
1487 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1488 ;;; Face specifications (defface).
1489 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1490
1491 ;; Parameter FRAME Is kept for call compatibility to with previous
1492 ;; face implementation.
1493
1494 (defun face-attr-construct (face &optional _frame)
1495 "Return a `defface'-style attribute list for FACE.
1496 Value is a property list of pairs ATTRIBUTE VALUE for all specified
1497 face attributes of FACE where ATTRIBUTE is the attribute name and
1498 VALUE is the specified value of that attribute.
1499 Argument FRAME is ignored and retained for compatibility."
1500 (let (result)
1501 (dolist (entry face-attribute-name-alist result)
1502 (let* ((attribute (car entry))
1503 (value (face-attribute face attribute)))
1504 (unless (eq value 'unspecified)
1505 (setq result (nconc (list attribute value) result)))))))
1506
1507
1508 (defun face-spec-set-match-display (display frame)
1509 "Non-nil if DISPLAY matches FRAME.
1510 DISPLAY is part of a spec such as can be used in `defface'.
1511 If FRAME is nil, the current FRAME is used."
1512 (let* ((conjuncts display)
1513 conjunct req options
1514 ;; t means we have succeeded against all the conjuncts in
1515 ;; DISPLAY that have been tested so far.
1516 (match t))
1517 (if (eq conjuncts t)
1518 (setq conjuncts nil))
1519 (while (and conjuncts match)
1520 (setq conjunct (car conjuncts)
1521 conjuncts (cdr conjuncts)
1522 req (car conjunct)
1523 options (cdr conjunct)
1524 match (cond ((eq req 'type)
1525 (or (memq (window-system frame) options)
1526 (and (memq 'graphic options)
1527 (memq (window-system frame) '(x w32 ns)))
1528 ;; FIXME: This should be revisited to use
1529 ;; display-graphic-p, provided that the
1530 ;; color selection depends on the number
1531 ;; of supported colors, and all defface's
1532 ;; are changed to look at number of colors
1533 ;; instead of (type graphic) etc.
1534 (if (null (window-system frame))
1535 (memq 'tty options)
1536 (or (and (memq 'motif options)
1537 (featurep 'motif))
1538 (and (memq 'gtk options)
1539 (featurep 'gtk))
1540 (and (memq 'lucid options)
1541 (featurep 'x-toolkit)
1542 (not (featurep 'motif))
1543 (not (featurep 'gtk)))
1544 (and (memq 'x-toolkit options)
1545 (featurep 'x-toolkit))))))
1546 ((eq req 'min-colors)
1547 (>= (display-color-cells frame) (car options)))
1548 ((eq req 'class)
1549 (memq (frame-parameter frame 'display-type) options))
1550 ((eq req 'background)
1551 (memq (frame-parameter frame 'background-mode)
1552 options))
1553 ((eq req 'supports)
1554 (display-supports-face-attributes-p options frame))
1555 (t (error "Unknown req `%S' with options `%S'"
1556 req options)))))
1557 match))
1558
1559
1560 (defun face-spec-choose (spec &optional frame no-match-retval)
1561 "Return the proper attributes for FRAME, out of SPEC.
1562
1563 If no match is found or SPEC is nil, return nil, unless NO-MATCH-RETVAL
1564 is given, in which case return its value instead."
1565 (unless frame
1566 (setq frame (selected-frame)))
1567 (let ((tail spec)
1568 result defaults match-found)
1569 (while tail
1570 (let* ((entry (pop tail))
1571 (display (car entry))
1572 (attrs (cdr entry))
1573 thisval)
1574 ;; Get the attributes as actually specified by this alternative.
1575 (setq thisval
1576 (if (null (cdr attrs)) ;; was (listp (car attrs))
1577 ;; Old-style entry, the attribute list is the
1578 ;; first element.
1579 (car attrs)
1580 attrs))
1581
1582 ;; If the condition is `default', that sets the default
1583 ;; for following conditions.
1584 (if (eq display 'default)
1585 (setq defaults thisval)
1586 ;; Otherwise, if it matches, use it.
1587 (when (face-spec-set-match-display display frame)
1588 (setq result thisval
1589 tail nil
1590 match-found t)))))
1591 ;; If defaults have been found, it's safe to just append those to the result
1592 ;; list (which at this point will be either nil or contain actual specs) and
1593 ;; return it to the caller. Since there will most definitely be something to
1594 ;; return in this case, there's no need to know/check if a match was found.
1595 (if defaults
1596 (append result defaults)
1597 (if match-found
1598 result
1599 no-match-retval))))
1600
1601 ;; When over 80 faces get processed at frame creation time, all but
1602 ;; one specifying all attributes as "unspecified", generating this
1603 ;; list every time means a lot of consing.
1604 (defconst face--attributes-unspecified
1605 (apply 'append
1606 (mapcar (lambda (x) (list (car x) 'unspecified))
1607 face-attribute-name-alist)))
1608
1609 (defun face-spec-reset-face (face &optional frame)
1610 "Reset all attributes of FACE on FRAME to unspecified."
1611 (apply 'set-face-attribute face frame
1612 (if (eq face 'default)
1613 ;; For the default face, avoid making any attribute
1614 ;; unspecified. Instead, set attributes to default values
1615 ;; (see also realize_default_face in xfaces.c).
1616 (append
1617 '(:underline nil :overline nil :strike-through nil
1618 :box nil :inverse-video nil :stipple nil :inherit nil)
1619 ;; `display-graphic-p' is unavailable when running
1620 ;; temacs, prior to loading frame.el.
1621 (when (fboundp 'display-graphic-p)
1622 (unless (display-graphic-p frame)
1623 `(:family "default" :foundry "default" :width normal
1624 :height 1 :weight normal :slant normal
1625 :foreground ,(if (frame-parameter nil 'reverse)
1626 "unspecified-bg"
1627 "unspecified-fg")
1628 :background ,(if (frame-parameter nil 'reverse)
1629 "unspecified-fg"
1630 "unspecified-bg")))))
1631 ;; For all other faces, unspecify all attributes.
1632 face--attributes-unspecified)))
1633
1634 (defun face-spec-set (face spec &optional spec-type)
1635 "Set the face spec SPEC for FACE.
1636 See `defface' for the format of SPEC.
1637
1638 The appearance of each face is controlled by its specs (set via
1639 this function), and by the internal frame-specific face
1640 attributes (set via `set-face-attribute').
1641
1642 This function also defines FACE as a valid face name if it is not
1643 already one, and (re)calculates its attributes on existing
1644 frames.
1645
1646 The argument SPEC-TYPE determines which spec to set:
1647 nil or `face-override-spec' means the override spec (which is
1648 usually what you want if calling this function outside of
1649 Custom code);
1650 `customized-face' or `saved-face' means the customized spec or
1651 the saved custom spec;
1652 `face-defface-spec' means the default spec
1653 (usually set only via `defface');
1654 `reset' means to ignore SPEC, but clear the `customized-face'
1655 and `face-override-spec' specs;
1656 Any other value means not to set any spec, but to run the
1657 function for its other effects."
1658 (if (get face 'face-alias)
1659 (setq face (get face 'face-alias)))
1660 ;; Save SPEC to the relevant symbol property.
1661 (unless spec-type
1662 (setq spec-type 'face-override-spec))
1663 (if (memq spec-type '(face-defface-spec face-override-spec
1664 customized-face saved-face))
1665 (put face spec-type spec))
1666 (if (memq spec-type '(reset saved-face))
1667 (put face 'customized-face nil))
1668 ;; Setting the face spec via Custom empties out any override spec,
1669 ;; similar to how setting a variable via Custom changes its values.
1670 (if (memq spec-type '(customized-face saved-face reset))
1671 (put face 'face-override-spec nil))
1672 ;; If we reset the face based on its custom spec, it is unmodified
1673 ;; as far as Custom is concerned.
1674 (unless (eq face 'face-override-spec)
1675 (put face 'face-modified nil))
1676 ;; Initialize the face if it does not exist, then recalculate.
1677 (make-empty-face face)
1678 (dolist (frame (frame-list))
1679 (face-spec-recalc face frame)))
1680
1681 (defun face-spec-recalc (face frame)
1682 "Reset the face attributes of FACE on FRAME according to its specs.
1683 The following sources are applied in this order:
1684
1685 face reset to default values if it's the default face, otherwise set
1686 to unspecified (through `face-spec-reset-face')
1687 |
1688 (theme and user customization)
1689 or: if none of the above exist, and none match the current frame or
1690 inherited from the defface spec instead of overwriting it
1691 entirely, the following is applied instead:
1692 (defface default spec)
1693 (X resources (if applicable))
1694 |
1695 defface override spec"
1696 (while (get face 'face-alias)
1697 (setq face (get face 'face-alias)))
1698 (face-spec-reset-face face frame)
1699 ;; If FACE is customized or themed, set the custom spec from
1700 ;; `theme-face' records.
1701 (let ((theme-faces (get face 'theme-face))
1702 (no-match-found 0)
1703 spec theme-face-applied)
1704 (if theme-faces
1705 (dolist (elt (reverse theme-faces))
1706 (setq spec (face-spec-choose (cadr elt) frame no-match-found))
1707 (unless (eq spec no-match-found)
1708 (face-spec-set-2 face frame spec)
1709 (setq theme-face-applied t))))
1710 ;; If there was a spec applicable to FRAME, that overrides the
1711 ;; defface spec entirely (rather than inheriting from it). If
1712 ;; there was no spec applicable to FRAME, apply the defface spec
1713 ;; as well as any applicable X resources.
1714 (unless theme-face-applied
1715 (setq spec (face-spec-choose (face-default-spec face) frame))
1716 (face-spec-set-2 face frame spec)
1717 (make-face-x-resource-internal face frame))
1718 (setq spec (face-spec-choose (get face 'face-override-spec) frame))
1719 (face-spec-set-2 face frame spec)))
1720
1721 (defun face-spec-set-2 (face frame spec)
1722 "Set the face attributes of FACE on FRAME according to SPEC."
1723 (let (attrs)
1724 (while spec
1725 (when (assq (car spec) face-x-resources)
1726 (push (car spec) attrs)
1727 (push (cadr spec) attrs))
1728 (setq spec (cddr spec)))
1729 (apply 'set-face-attribute face frame (nreverse attrs))))
1730
1731 (defun face-attr-match-p (face attrs &optional frame)
1732 "Return t if attributes of FACE match values in plist ATTRS.
1733 Optional parameter FRAME is the frame whose definition of FACE
1734 is used. If nil or omitted, use the selected frame."
1735 (unless frame
1736 (setq frame (selected-frame)))
1737 (let* ((list face-attribute-name-alist)
1738 (match t)
1739 (bold (and (plist-member attrs :bold)
1740 (not (plist-member attrs :weight))))
1741 (italic (and (plist-member attrs :italic)
1742 (not (plist-member attrs :slant))))
1743 (plist (if (or bold italic)
1744 (copy-sequence attrs)
1745 attrs)))
1746 ;; Handle the Emacs 20 :bold and :italic properties.
1747 (if bold
1748 (plist-put plist :weight (if bold 'bold 'normal)))
1749 (if italic
1750 (plist-put plist :slant (if italic 'italic 'normal)))
1751 (while (and match list)
1752 (let* ((attr (caar list))
1753 (specified-value
1754 (if (plist-member plist attr)
1755 (plist-get plist attr)
1756 'unspecified))
1757 (value-now (face-attribute face attr frame)))
1758 (setq match (equal specified-value value-now))
1759 (setq list (cdr list))))
1760 match))
1761
1762 (defsubst face-spec-match-p (face spec &optional frame)
1763 "Return t if FACE, on FRAME, matches what SPEC says it should look like."
1764 (face-attr-match-p face (face-spec-choose spec frame) frame))
1765
1766 (defsubst face-default-spec (face)
1767 "Return the default face-spec for FACE, ignoring any user customization.
1768 If there is no default for FACE, return nil."
1769 (get face 'face-defface-spec))
1770
1771 (defsubst face-user-default-spec (face)
1772 "Return the user's customized face-spec for FACE, or the default if none.
1773 If there is neither a user setting nor a default for FACE, return nil."
1774 (or (get face 'customized-face)
1775 (get face 'saved-face)
1776 (face-default-spec face)))
1777
1778 \f
1779 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1780 ;;; Frame-type independent color support.
1781 ;;; We keep the old x-* names as aliases for back-compatibility.
1782 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1783
1784 (defun defined-colors (&optional frame)
1785 "Return a list of colors supported for a particular frame.
1786 The argument FRAME specifies which frame to try.
1787 The value may be different for frames on different display types.
1788 If FRAME doesn't support colors, the value is nil.
1789 If FRAME is nil, that stands for the selected frame."
1790 (if (memq (framep (or frame (selected-frame))) '(x w32 ns))
1791 (xw-defined-colors frame)
1792 (mapcar 'car (tty-color-alist frame))))
1793 (defalias 'x-defined-colors 'defined-colors)
1794
1795 (defun defined-colors-with-face-attributes (&optional frame)
1796 "Return a list of colors supported for a particular frame.
1797 See `defined-colors' for arguments and return value. In contrast
1798 to `define-colors' the elements of the returned list are color
1799 strings with text properties, that make the color names render
1800 with the color they represent as background color."
1801 (mapcar
1802 (lambda (color-name)
1803 (let ((foreground (readable-foreground-color color-name))
1804 (color (copy-sequence color-name)))
1805 (propertize color 'face (list :foreground foreground
1806 :background color))))
1807 (defined-colors frame)))
1808
1809 (defun readable-foreground-color (color)
1810 "Return a readable foreground color for background COLOR."
1811 (let* ((rgb (color-values color))
1812 (max (apply #'max rgb))
1813 (black (car (color-values "black")))
1814 (white (car (color-values "white"))))
1815 ;; Select black or white depending on which one is less similar to
1816 ;; the brightest component.
1817 (if (> (abs (- max black)) (abs (- max white)))
1818 "black"
1819 "white")))
1820
1821 (declare-function xw-color-defined-p "xfns.c" (color &optional frame))
1822
1823 (defun color-defined-p (color &optional frame)
1824 "Return non-nil if COLOR is supported on frame FRAME.
1825 COLOR should be a string naming a color (e.g. \"white\"), or a
1826 string specifying a color's RGB components (e.g. \"#ff12ec\"), or
1827 the symbol `unspecified'.
1828
1829 This function returns nil if COLOR is the symbol `unspecified',
1830 or one of the strings \"unspecified-fg\" or \"unspecified-bg\".
1831
1832 If FRAME is omitted or nil, use the selected frame."
1833 (unless (member color '(unspecified "unspecified-bg" "unspecified-fg"))
1834 (if (member (framep (or frame (selected-frame))) '(x w32 ns))
1835 (xw-color-defined-p color frame)
1836 (numberp (tty-color-translate color frame)))))
1837 (defalias 'x-color-defined-p 'color-defined-p)
1838
1839 (declare-function xw-color-values "xfns.c" (color &optional frame))
1840
1841 (defun color-values (color &optional frame)
1842 "Return a description of the color named COLOR on frame FRAME.
1843 COLOR should be a string naming a color (e.g. \"white\"), or a
1844 string specifying a color's RGB components (e.g. \"#ff12ec\").
1845
1846 Return a list of three integers, (RED GREEN BLUE), each between 0
1847 and either 65280 or 65535 (the maximum depends on the system).
1848 Use `color-name-to-rgb' if you want RGB floating-point values
1849 normalized to 1.0.
1850
1851 If FRAME is omitted or nil, use the selected frame.
1852 If FRAME cannot display COLOR, the value is nil.
1853
1854 COLOR can also be the symbol `unspecified' or one of the strings
1855 \"unspecified-fg\" or \"unspecified-bg\", in which case the
1856 return value is nil."
1857 (cond
1858 ((member color '(unspecified "unspecified-fg" "unspecified-bg"))
1859 nil)
1860 ((memq (framep (or frame (selected-frame))) '(x w32 ns))
1861 (xw-color-values color frame))
1862 (t
1863 (tty-color-values color frame))))
1864
1865 (defalias 'x-color-values 'color-values)
1866
1867 (declare-function xw-display-color-p "xfns.c" (&optional terminal))
1868
1869 (defun display-color-p (&optional display)
1870 "Return t if DISPLAY supports color.
1871 The optional argument DISPLAY specifies which display to ask about.
1872 DISPLAY should be either a frame or a display name (a string).
1873 If omitted or nil, that stands for the selected frame's display."
1874 (if (memq (framep-on-display display) '(x w32 ns))
1875 (xw-display-color-p display)
1876 (tty-display-color-p display)))
1877 (defalias 'x-display-color-p 'display-color-p)
1878
1879 (declare-function x-display-grayscale-p "xfns.c" (&optional terminal))
1880
1881 (defun display-grayscale-p (&optional display)
1882 "Return non-nil if frames on DISPLAY can display shades of gray.
1883 DISPLAY should be either a frame or a display name (a string).
1884 If omitted or nil, that stands for the selected frame's display."
1885 (let ((frame-type (framep-on-display display)))
1886 (cond
1887 ((memq frame-type '(x w32 ns))
1888 (x-display-grayscale-p display))
1889 (t
1890 (> (tty-color-gray-shades display) 2)))))
1891
1892 (defun read-color (&optional prompt convert-to-RGB allow-empty-name msg)
1893 "Read a color name or RGB triplet.
1894 Completion is available for color names, but not for RGB triplets.
1895
1896 RGB triplets have the form \"#RRGGBB\". Each of the R, G, and B
1897 components can have one to four digits, but all three components
1898 must have the same number of digits. Each digit is a hex value
1899 between 0 and F; either upper case or lower case for A through F
1900 are acceptable.
1901
1902 In addition to standard color names and RGB hex values, the
1903 following are available as color candidates. In each case, the
1904 corresponding color is used.
1905
1906 * `foreground at point' - foreground under the cursor
1907 * `background at point' - background under the cursor
1908
1909 Optional arg PROMPT is the prompt; if nil, use a default prompt.
1910
1911 Interactively, or with optional arg CONVERT-TO-RGB-P non-nil,
1912 convert an input color name to an RGB hex string. Return the RGB
1913 hex string.
1914
1915 If optional arg ALLOW-EMPTY-NAME is non-nil, the user is allowed
1916 to enter an empty color name (the empty string).
1917
1918 Interactively, or with optional arg MSG non-nil, print the
1919 resulting color name in the echo area."
1920 (interactive "i\np\ni\np") ; Always convert to RGB interactively.
1921 (let* ((completion-ignore-case t)
1922 (colors (or facemenu-color-alist
1923 (append '("foreground at point" "background at point")
1924 (if allow-empty-name '(""))
1925 (if (display-color-p)
1926 (defined-colors-with-face-attributes)
1927 (defined-colors)))))
1928 (color (completing-read
1929 (or prompt "Color (name or #RGB triplet): ")
1930 ;; Completing function for reading colors, accepting
1931 ;; both color names and RGB triplets.
1932 (lambda (string pred flag)
1933 (cond
1934 ((null flag) ; Try completion.
1935 (or (try-completion string colors pred)
1936 (if (color-defined-p string)
1937 string)))
1938 ((eq flag t) ; List all completions.
1939 (or (all-completions string colors pred)
1940 (if (color-defined-p string)
1941 (list string))))
1942 ((eq flag 'lambda) ; Test completion.
1943 (or (member string colors)
1944 (color-defined-p string)))))
1945 nil t)))
1946
1947 ;; Process named colors.
1948 (when (member color colors)
1949 (cond ((string-equal color "foreground at point")
1950 (setq color (foreground-color-at-point)))
1951 ((string-equal color "background at point")
1952 (setq color (background-color-at-point))))
1953 (when (and convert-to-RGB
1954 (not (string-equal color "")))
1955 (let ((components (x-color-values color)))
1956 (unless (string-match-p "^#\\(?:[a-fA-F0-9][a-fA-F0-9][a-fA-F0-9]\\)+$" color)
1957 (setq color (format "#%04X%04X%04X"
1958 (logand 65535 (nth 0 components))
1959 (logand 65535 (nth 1 components))
1960 (logand 65535 (nth 2 components))))))))
1961 (when msg (message "Color: `%s'" color))
1962 color))
1963
1964 (defun face-at-point (&optional thing multiple)
1965 "Return the face of the character after point.
1966 If it has more than one face, return the first one.
1967 If THING is non-nil try first to get a face name from the buffer.
1968 IF MULTIPLE is non-nil, return a list of all faces.
1969 Return nil if there is no face."
1970 (let (faces)
1971 (if thing
1972 ;; Try to get a face name from the buffer.
1973 (let ((face (intern-soft (thing-at-point 'symbol))))
1974 (if (facep face)
1975 (push face faces))))
1976 ;; Add the named faces that the `read-face-name' or `face' property uses.
1977 (let ((faceprop (or (get-char-property (point) 'read-face-name)
1978 (get-char-property (point) 'face))))
1979 (cond ((facep faceprop)
1980 (push faceprop faces))
1981 ((face-list-p faceprop)
1982 (dolist (face faceprop)
1983 (if (facep face)
1984 (push face faces))))))
1985 (if multiple
1986 (delete-dups (nreverse faces))
1987 (car (last faces)))))
1988
1989 (defun faces--attribute-at-point (attribute &optional attribute-unnamed)
1990 "Return the face ATTRIBUTE at point.
1991 ATTRIBUTE is a keyword.
1992 If ATTRIBUTE-UNNAMED is non-nil, it is a symbol to look for in
1993 unnamed faces (e.g, `foreground-color')."
1994 ;; `face-at-point' alone is not sufficient. It only gets named faces.
1995 ;; Need also pick up any face properties that are not associated with named faces.
1996 (let ((faces (or (get-char-property (point) 'read-face-name)
1997 ;; If `font-lock-mode' is on, `font-lock-face' takes precedence.
1998 (and font-lock-mode
1999 (get-char-property (point) 'font-lock-face))
2000 (get-char-property (point) 'face)))
2001 (found nil))
2002 (dolist (face (if (face-list-p faces)
2003 faces
2004 (list faces)))
2005 (cond (found)
2006 ((and face (symbolp face))
2007 (let ((value (face-attribute-specified-or
2008 (face-attribute face attribute nil t)
2009 nil)))
2010 (unless (member value '(nil "unspecified-fg" "unspecified-bg"))
2011 (setq found value))))
2012 ((consp face)
2013 (setq found (cond ((and attribute-unnamed
2014 (memq attribute-unnamed face))
2015 (cdr (memq attribute-unnamed face)))
2016 ((memq attribute face) (cadr (memq attribute face))))))))
2017 (or found
2018 (face-attribute 'default attribute))))
2019
2020 (defun foreground-color-at-point ()
2021 "Return the foreground color of the character after point."
2022 (faces--attribute-at-point :foreground 'foreground-color))
2023
2024 (defun background-color-at-point ()
2025 "Return the background color of the character after point."
2026 (faces--attribute-at-point :background 'background-color))
2027
2028 \f
2029 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2030 ;;; Frame creation.
2031 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2032
2033 (declare-function x-display-list "xfns.c" ())
2034 (declare-function x-open-connection "xfns.c"
2035 (display &optional xrm-string must-succeed))
2036 (declare-function x-get-resource "frame.c"
2037 (attribute class &optional component subclass))
2038 (declare-function x-parse-geometry "frame.c" (string))
2039 (defvar x-display-name)
2040
2041 (defun x-handle-named-frame-geometry (parameters)
2042 "Add geometry parameters for a named frame to parameter list PARAMETERS.
2043 Value is the new parameter list."
2044 ;; Note that `x-resource-name' has a global meaning.
2045 (let ((x-resource-name (cdr (assq 'name parameters))))
2046 (when x-resource-name
2047 ;; Before checking X resources, we must have an X connection.
2048 (or (window-system)
2049 (x-display-list)
2050 (x-open-connection (or (cdr (assq 'display parameters))
2051 x-display-name)))
2052 (let (res-geometry parsed)
2053 (and (setq res-geometry (x-get-resource "geometry" "Geometry"))
2054 (setq parsed (x-parse-geometry res-geometry))
2055 (setq parameters
2056 (append parameters parsed
2057 ;; If the resource specifies a position,
2058 ;; take note of that.
2059 (if (or (assq 'top parsed) (assq 'left parsed))
2060 '((user-position . t) (user-size . t)))))))))
2061 parameters)
2062
2063
2064 (defun x-handle-reverse-video (frame parameters)
2065 "Handle the reverse-video frame parameter and X resource.
2066 `x-create-frame' does not handle this one."
2067 (when (cdr (or (assq 'reverse parameters)
2068 (let ((resource (x-get-resource "reverseVideo"
2069 "ReverseVideo")))
2070 (if resource
2071 (cons nil (member (downcase resource)
2072 '("on" "true")))))))
2073 (let* ((params (frame-parameters frame))
2074 (bg (cdr (assq 'foreground-color params)))
2075 (fg (cdr (assq 'background-color params))))
2076 (modify-frame-parameters frame
2077 (list (cons 'foreground-color fg)
2078 (cons 'background-color bg)))
2079 (if (equal bg (cdr (assq 'border-color params)))
2080 (modify-frame-parameters frame
2081 (list (cons 'border-color fg))))
2082 (if (equal bg (cdr (assq 'mouse-color params)))
2083 (modify-frame-parameters frame
2084 (list (cons 'mouse-color fg))))
2085 (if (equal bg (cdr (assq 'cursor-color params)))
2086 (modify-frame-parameters frame
2087 (list (cons 'cursor-color fg)))))))
2088
2089 (declare-function x-create-frame "xfns.c" (parms))
2090 (declare-function x-setup-function-keys "term/common-win" (frame))
2091
2092 (defun x-create-frame-with-faces (&optional parameters)
2093 "Create and return a frame with frame parameters PARAMETERS.
2094 If PARAMETERS specify a frame name, handle X geometry resources
2095 for that name. If PARAMETERS includes a `reverse' parameter, or
2096 the X resource \"reverseVideo\" is present, handle that."
2097 (setq parameters (x-handle-named-frame-geometry parameters))
2098 (let* ((params (copy-tree parameters))
2099 (visibility-spec (assq 'visibility parameters))
2100 (delayed-params '(foreground-color background-color font
2101 border-color cursor-color mouse-color
2102 visibility scroll-bar-foreground
2103 scroll-bar-background))
2104 frame success)
2105 (dolist (param delayed-params)
2106 (setq params (assq-delete-all param params)))
2107 (setq frame (x-create-frame `((visibility . nil) . ,params)))
2108 (unwind-protect
2109 (progn
2110 (x-setup-function-keys frame)
2111 (x-handle-reverse-video frame parameters)
2112 (frame-set-background-mode frame t)
2113 (face-set-after-frame-default frame parameters)
2114 (if (null visibility-spec)
2115 (make-frame-visible frame)
2116 (modify-frame-parameters frame (list visibility-spec)))
2117 (setq success t))
2118 (unless success
2119 (delete-frame frame)))
2120 frame))
2121
2122 (defun face-set-after-frame-default (frame &optional parameters)
2123 "Initialize the frame-local faces of FRAME.
2124 Calculate the face definitions using the face specs, custom theme
2125 settings, X resources, and `face-new-frame-defaults'.
2126 Finally, apply any relevant face attributes found amongst the
2127 frame parameters in PARAMETERS."
2128 ;; The `reverse' is so that `default' goes first.
2129 (dolist (face (nreverse (face-list)))
2130 (condition-case ()
2131 (progn
2132 ;; Initialize faces from face spec and custom theme.
2133 (face-spec-recalc face frame)
2134 ;; Apply attributes specified by face-new-frame-defaults
2135 (internal-merge-in-global-face face frame))
2136 ;; Don't let invalid specs prevent frame creation.
2137 (error nil)))
2138
2139 ;; Apply attributes specified by frame parameters.
2140 (let ((face-params '((foreground-color default :foreground)
2141 (background-color default :background)
2142 (font default :font)
2143 (border-color border :background)
2144 (cursor-color cursor :background)
2145 (scroll-bar-foreground scroll-bar :foreground)
2146 (scroll-bar-background scroll-bar :background)
2147 (mouse-color mouse :background))))
2148 (dolist (param face-params)
2149 (let* ((param-name (nth 0 param))
2150 (value (cdr (assq param-name parameters))))
2151 (if value
2152 (set-face-attribute (nth 1 param) frame
2153 (nth 2 param) value))))))
2154
2155 (defun tty-handle-reverse-video (frame parameters)
2156 "Handle the reverse-video frame parameter for terminal frames."
2157 (when (cdr (assq 'reverse parameters))
2158 (let* ((params (frame-parameters frame))
2159 (bg (cdr (assq 'foreground-color params)))
2160 (fg (cdr (assq 'background-color params))))
2161 (modify-frame-parameters frame
2162 (list (cons 'foreground-color fg)
2163 (cons 'background-color bg)))
2164 (if (equal bg (cdr (assq 'mouse-color params)))
2165 (modify-frame-parameters frame
2166 (list (cons 'mouse-color fg))))
2167 (if (equal bg (cdr (assq 'cursor-color params)))
2168 (modify-frame-parameters frame
2169 (list (cons 'cursor-color fg)))))))
2170
2171
2172 (defun tty-create-frame-with-faces (&optional parameters)
2173 "Create and return a frame from optional frame parameters PARAMETERS.
2174 If PARAMETERS contains a `reverse' parameter, handle that."
2175 (let ((frame (make-terminal-frame parameters))
2176 success)
2177 (unwind-protect
2178 (with-selected-frame frame
2179 (tty-handle-reverse-video frame (frame-parameters frame))
2180
2181 (unless (terminal-parameter frame 'terminal-initted)
2182 (set-terminal-parameter frame 'terminal-initted t)
2183 (set-locale-environment nil frame)
2184 (tty-run-terminal-initialization frame nil t))
2185 (frame-set-background-mode frame t)
2186 (face-set-after-frame-default frame parameters)
2187 (setq success t))
2188 (unless success
2189 (delete-frame frame)))
2190 frame))
2191
2192 (defun tty-find-type (pred type)
2193 "Return the longest prefix of TYPE to which PRED returns non-nil.
2194 TYPE should be a tty type name such as \"xterm-16color\".
2195
2196 The function tries only those prefixes that are followed by a
2197 dash or underscore in the original type name, like \"xterm\" in
2198 the above example."
2199 (let (hyphend)
2200 (while (and type
2201 (not (funcall pred type)))
2202 ;; Strip off last hyphen and what follows, then try again
2203 (setq type
2204 (if (setq hyphend (string-match-p "[-_][^-_]+$" type))
2205 (substring type 0 hyphend)
2206 nil))))
2207 type)
2208
2209 (defvar tty-setup-hook nil
2210 "Hook run after running the initialization function of a new text terminal.
2211 Specifically, `tty-run-terminal-initialization' runs this.
2212 This can be used to fine tune the `input-decode-map', for example.")
2213
2214 (defun tty-run-terminal-initialization (frame &optional type run-hook)
2215 "Run the special initialization code for the terminal type of FRAME.
2216 The optional TYPE parameter may be used to override the autodetected
2217 terminal type to a different value.
2218
2219 This consults `term-file-aliases' to map terminal types to their aliases.
2220
2221 If optional argument RUN-HOOK is non-nil, then as a final step,
2222 this runs the hook `tty-setup-hook'.
2223
2224 If you set `term-file-prefix' to nil, this function does nothing."
2225 (setq type (or type (tty-type frame)))
2226 (let ((alias (tty-find-type
2227 (lambda (typ) (assoc typ term-file-aliases)) type)))
2228 (if alias (setq type (cdr (assoc alias term-file-aliases)))))
2229 ;; Load library for our terminal type.
2230 ;; User init file can set term-file-prefix to nil to prevent this.
2231 (with-selected-frame frame
2232 (unless (null term-file-prefix)
2233 (let* (term-init-func)
2234 ;; First, load the terminal initialization file, if it is
2235 ;; available and it hasn't been loaded already.
2236 (tty-find-type #'(lambda (type)
2237 (let ((file (locate-library (concat term-file-prefix type))))
2238 (and file
2239 (or (assoc file load-history)
2240 (load file t t)))))
2241 type)
2242 ;; Next, try to find a matching initialization function, and call it.
2243 (tty-find-type #'(lambda (type)
2244 (fboundp (setq term-init-func
2245 (intern (concat "terminal-init-" type)))))
2246 type)
2247 (when (fboundp term-init-func)
2248 (funcall term-init-func))
2249 (set-terminal-parameter frame 'terminal-initted term-init-func)
2250 (if run-hook (run-hooks 'tty-setup-hook))))))
2251
2252 ;; Called from C function init_display to initialize faces of the
2253 ;; dumped terminal frame on startup.
2254
2255 (defun tty-set-up-initial-frame-faces ()
2256 (let ((frame (selected-frame)))
2257 (frame-set-background-mode frame t)
2258 (face-set-after-frame-default frame)))
2259
2260 \f
2261 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2262 ;;; Standard faces.
2263 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2264
2265 (defgroup basic-faces nil
2266 "The standard faces of Emacs."
2267 :group 'faces)
2268
2269 (defface default
2270 '((t nil)) ; If this were nil, face-defface-spec would not be set.
2271 "Basic default face."
2272 :group 'basic-faces)
2273
2274 (defface bold
2275 '((t :weight bold))
2276 "Basic bold face."
2277 :group 'basic-faces)
2278
2279 (defface italic
2280 '((((supports :slant italic))
2281 :slant italic)
2282 (((supports :underline t))
2283 :underline t)
2284 (t
2285 ;; Default to italic, even if it doesn't appear to be supported,
2286 ;; because in some cases the display engine will do its own
2287 ;; workaround (to `dim' on ttys).
2288 :slant italic))
2289 "Basic italic face."
2290 :group 'basic-faces)
2291
2292 (defface bold-italic
2293 '((t :weight bold :slant italic))
2294 "Basic bold-italic face."
2295 :group 'basic-faces)
2296
2297 (defface underline
2298 '((((supports :underline t))
2299 :underline t)
2300 (((supports :weight bold))
2301 :weight bold)
2302 (t :underline t))
2303 "Basic underlined face."
2304 :group 'basic-faces)
2305
2306 (defface fixed-pitch
2307 '((t :family "Monospace"))
2308 "The basic fixed-pitch face."
2309 :group 'basic-faces)
2310
2311 (defface variable-pitch
2312 '((t :family "Sans Serif"))
2313 "The basic variable-pitch face."
2314 :group 'basic-faces)
2315
2316 (defface shadow
2317 '((((class color grayscale) (min-colors 88) (background light))
2318 :foreground "grey50")
2319 (((class color grayscale) (min-colors 88) (background dark))
2320 :foreground "grey70")
2321 (((class color) (min-colors 8) (background light))
2322 :foreground "green")
2323 (((class color) (min-colors 8) (background dark))
2324 :foreground "yellow"))
2325 "Basic face for shadowed text."
2326 :group 'basic-faces
2327 :version "22.1")
2328
2329 (defface link
2330 '((((class color) (min-colors 88) (background light))
2331 :foreground "RoyalBlue3" :underline t)
2332 (((class color) (background light))
2333 :foreground "blue" :underline t)
2334 (((class color) (min-colors 88) (background dark))
2335 :foreground "cyan1" :underline t)
2336 (((class color) (background dark))
2337 :foreground "cyan" :underline t)
2338 (t :inherit underline))
2339 "Basic face for unvisited links."
2340 :group 'basic-faces
2341 :version "22.1")
2342
2343 (defface link-visited
2344 '((default :inherit link)
2345 (((class color) (background light)) :foreground "magenta4")
2346 (((class color) (background dark)) :foreground "violet"))
2347 "Basic face for visited links."
2348 :group 'basic-faces
2349 :version "22.1")
2350
2351 (defface highlight
2352 '((((class color) (min-colors 88) (background light))
2353 :background "darkseagreen2")
2354 (((class color) (min-colors 88) (background dark))
2355 :background "darkolivegreen")
2356 (((class color) (min-colors 16) (background light))
2357 :background "darkseagreen2")
2358 (((class color) (min-colors 16) (background dark))
2359 :background "darkolivegreen")
2360 (((class color) (min-colors 8))
2361 :background "green" :foreground "black")
2362 (t :inverse-video t))
2363 "Basic face for highlighting."
2364 :group 'basic-faces)
2365
2366 ;; Region face: under NS, default to the system-defined selection
2367 ;; color (optimized for the fixed white background of other apps),
2368 ;; if background is light.
2369 (defface region
2370 '((((class color) (min-colors 88) (background dark))
2371 :background "blue3")
2372 (((class color) (min-colors 88) (background light) (type gtk))
2373 :distant-foreground "gtk_selection_fg_color"
2374 :background "gtk_selection_bg_color")
2375 (((class color) (min-colors 88) (background light) (type ns))
2376 :distant-foreground "ns_selection_fg_color"
2377 :background "ns_selection_bg_color")
2378 (((class color) (min-colors 88) (background light))
2379 :background "lightgoldenrod2")
2380 (((class color) (min-colors 16) (background dark))
2381 :background "blue3")
2382 (((class color) (min-colors 16) (background light))
2383 :background "lightgoldenrod2")
2384 (((class color) (min-colors 8))
2385 :background "blue" :foreground "white")
2386 (((type tty) (class mono))
2387 :inverse-video t)
2388 (t :background "gray"))
2389 "Basic face for highlighting the region."
2390 :version "21.1"
2391 :group 'basic-faces)
2392
2393 (defface secondary-selection
2394 '((((class color) (min-colors 88) (background light))
2395 :background "yellow1")
2396 (((class color) (min-colors 88) (background dark))
2397 :background "SkyBlue4")
2398 (((class color) (min-colors 16) (background light))
2399 :background "yellow")
2400 (((class color) (min-colors 16) (background dark))
2401 :background "SkyBlue4")
2402 (((class color) (min-colors 8))
2403 :background "cyan" :foreground "black")
2404 (t :inverse-video t))
2405 "Basic face for displaying the secondary selection."
2406 :group 'basic-faces)
2407
2408 (defface trailing-whitespace
2409 '((((class color) (background light))
2410 :background "red1")
2411 (((class color) (background dark))
2412 :background "red1")
2413 (t :inverse-video t))
2414 "Basic face for highlighting trailing whitespace."
2415 :version "21.1"
2416 :group 'basic-faces)
2417
2418 (defface escape-glyph
2419 '((((background dark)) :foreground "cyan")
2420 ;; See the comment in minibuffer-prompt for
2421 ;; the reason not to use blue on MS-DOS.
2422 (((type pc)) :foreground "magenta")
2423 ;; red4 is too dark, but some say blue is too loud.
2424 ;; brown seems to work ok. -- rms.
2425 (t :foreground "brown"))
2426 "Face for characters displayed as sequences using `^' or `\\'."
2427 :group 'basic-faces
2428 :version "22.1")
2429
2430 (defface nobreak-space
2431 '((((class color) (min-colors 88)) :inherit escape-glyph :underline t)
2432 (((class color) (min-colors 8)) :background "magenta")
2433 (t :inverse-video t))
2434 "Face for displaying nobreak space."
2435 :group 'basic-faces
2436 :version "22.1")
2437
2438 (defgroup mode-line-faces nil
2439 "Faces used in the mode line."
2440 :group 'mode-line
2441 :group 'faces
2442 :version "22.1")
2443
2444 (defface mode-line
2445 '((((class color) (min-colors 88))
2446 :box (:line-width -1 :style released-button)
2447 :background "grey75" :foreground "black")
2448 (t
2449 :inverse-video t))
2450 "Basic mode line face for selected window."
2451 :version "21.1"
2452 :group 'mode-line-faces
2453 :group 'basic-faces)
2454
2455 (defface mode-line-inactive
2456 '((default
2457 :inherit mode-line)
2458 (((class color) (min-colors 88) (background light))
2459 :weight light
2460 :box (:line-width -1 :color "grey75" :style nil)
2461 :foreground "grey20" :background "grey90")
2462 (((class color) (min-colors 88) (background dark) )
2463 :weight light
2464 :box (:line-width -1 :color "grey40" :style nil)
2465 :foreground "grey80" :background "grey30"))
2466 "Basic mode line face for non-selected windows."
2467 :version "22.1"
2468 :group 'mode-line-faces
2469 :group 'basic-faces)
2470 (define-obsolete-face-alias 'modeline-inactive 'mode-line-inactive "22.1")
2471
2472 (defface mode-line-highlight
2473 '((((class color) (min-colors 88))
2474 :box (:line-width 2 :color "grey40" :style released-button))
2475 (t
2476 :inherit highlight))
2477 "Basic mode line face for highlighting."
2478 :version "22.1"
2479 :group 'mode-line-faces
2480 :group 'basic-faces)
2481 (define-obsolete-face-alias 'modeline-highlight 'mode-line-highlight "22.1")
2482
2483 (defface mode-line-emphasis
2484 '((t (:weight bold)))
2485 "Face used to emphasize certain mode line features.
2486 Use the face `mode-line-highlight' for features that can be selected."
2487 :version "23.1"
2488 :group 'mode-line-faces
2489 :group 'basic-faces)
2490
2491 (defface mode-line-buffer-id
2492 '((t (:weight bold)))
2493 "Face used for buffer identification parts of the mode line."
2494 :version "22.1"
2495 :group 'mode-line-faces
2496 :group 'basic-faces)
2497 (define-obsolete-face-alias 'modeline-buffer-id 'mode-line-buffer-id "22.1")
2498
2499 (defface header-line
2500 '((default
2501 :inherit mode-line)
2502 (((type tty))
2503 ;; This used to be `:inverse-video t', but that doesn't look very
2504 ;; good when combined with inverse-video mode-lines and multiple
2505 ;; windows. Underlining looks better, and is more consistent with
2506 ;; the window-system face variants, which deemphasize the
2507 ;; header-line in relation to the mode-line face. If a terminal
2508 ;; can't underline, then the header-line will end up without any
2509 ;; highlighting; this may be too confusing in general, although it
2510 ;; happens to look good with the only current use of header-lines,
2511 ;; the info browser. XXX
2512 :inverse-video nil ;Override the value inherited from mode-line.
2513 :underline t)
2514 (((class color grayscale) (background light))
2515 :background "grey90" :foreground "grey20"
2516 :box nil)
2517 (((class color grayscale) (background dark))
2518 :background "grey20" :foreground "grey90"
2519 :box nil)
2520 (((class mono) (background light))
2521 :background "white" :foreground "black"
2522 :inverse-video nil
2523 :box nil
2524 :underline t)
2525 (((class mono) (background dark))
2526 :background "black" :foreground "white"
2527 :inverse-video nil
2528 :box nil
2529 :underline t))
2530 "Basic header-line face."
2531 :version "21.1"
2532 :group 'basic-faces)
2533
2534 (defface vertical-border
2535 '((((type tty)) :inherit mode-line-inactive))
2536 "Face used for vertical window dividers on ttys."
2537 :version "22.1"
2538 :group 'basic-faces)
2539
2540 (defface window-divider '((t :foreground "gray60"))
2541 "Basic face for window dividers.
2542 When a divider is less than 3 pixels wide, it is drawn solidly
2543 with the foreground of this face. For larger dividers this face
2544 is used for the inner part while the first pixel line/column is
2545 drawn with the `window-divider-first-pixel' face and the last
2546 pixel line/column with the `window-divider-last-pixel' face."
2547 :version "24.4"
2548 :group 'window-divider
2549 :group 'basic-faces)
2550
2551 (defface window-divider-first-pixel
2552 '((t :foreground "gray80"))
2553 "Basic face for first pixel line/column of window dividers.
2554 When a divider is at least 3 pixels wide, its first pixel
2555 line/column is drawn with the foreground of this face. If you do
2556 not want to accentuate the first pixel line/column, set this to
2557 the same as `window-divider' face."
2558 :version "24.4"
2559 :group 'window-divider
2560 :group 'basic-faces)
2561
2562 (defface window-divider-last-pixel
2563 '((t :foreground "gray40"))
2564 "Basic face for last pixel line/column of window dividers.
2565 When a divider is at least 3 pixels wide, its last pixel
2566 line/column is drawn with the foreground of this face. If you do
2567 not want to accentuate the last pixel line/column, set this to
2568 the same as `window-divider' face."
2569 :version "24.4"
2570 :group 'window-divider
2571 :group 'basic-faces)
2572
2573 (defface minibuffer-prompt
2574 '((((background dark)) :foreground "cyan")
2575 ;; Don't use blue because many users of the MS-DOS port customize
2576 ;; their foreground color to be blue.
2577 (((type pc)) :foreground "magenta")
2578 (t :foreground "medium blue"))
2579 "Face for minibuffer prompts.
2580 By default, Emacs automatically adds this face to the value of
2581 `minibuffer-prompt-properties', which is a list of text properties
2582 used to display the prompt text."
2583 :version "22.1"
2584 :group 'basic-faces)
2585
2586 (setq minibuffer-prompt-properties
2587 (append minibuffer-prompt-properties (list 'face 'minibuffer-prompt)))
2588
2589 (defface fringe
2590 '((((class color) (background light))
2591 :background "grey95")
2592 (((class color) (background dark))
2593 :background "grey10")
2594 (t
2595 :background "gray"))
2596 "Basic face for the fringes to the left and right of windows under X."
2597 :version "21.1"
2598 :group 'frames
2599 :group 'basic-faces)
2600
2601 (defface scroll-bar '((t nil))
2602 "Basic face for the scroll bar colors under X."
2603 :version "21.1"
2604 :group 'frames
2605 :group 'basic-faces)
2606
2607 (defface border '((t nil))
2608 "Basic face for the frame border under X."
2609 :version "21.1"
2610 :group 'frames
2611 :group 'basic-faces)
2612
2613 (defface cursor
2614 '((((background light)) :background "black")
2615 (((background dark)) :background "white"))
2616 "Basic face for the cursor color under X.
2617 Currently, only the `:background' attribute is meaningful; all
2618 other attributes are ignored. The cursor foreground color is
2619 taken from the background color of the underlying text.
2620
2621 Note: Other faces cannot inherit from the cursor face."
2622 :version "21.1"
2623 :group 'cursor
2624 :group 'basic-faces)
2625
2626 (put 'cursor 'face-no-inherit t)
2627
2628 (defface mouse '((t nil))
2629 "Basic face for the mouse color under X."
2630 :version "21.1"
2631 :group 'mouse
2632 :group 'basic-faces)
2633
2634 (defface tool-bar
2635 '((default
2636 :box (:line-width 1 :style released-button)
2637 :foreground "black")
2638 (((type x w32 ns) (class color))
2639 :background "grey75")
2640 (((type x) (class mono))
2641 :background "grey"))
2642 "Basic tool-bar face."
2643 :version "21.1"
2644 :group 'basic-faces)
2645
2646 (defface menu
2647 '((((type tty))
2648 :inverse-video t)
2649 (((type x-toolkit))
2650 )
2651 (t
2652 :inverse-video t))
2653 "Basic face for the font and colors of the menu bar and popup menus."
2654 :version "21.1"
2655 :group 'menu
2656 :group 'basic-faces)
2657
2658 (defface help-argument-name '((t :inherit italic))
2659 "Face to highlight argument names in *Help* buffers."
2660 :group 'help)
2661
2662 (defface glyphless-char
2663 '((((type tty)) :inherit underline)
2664 (((type pc)) :inherit escape-glyph)
2665 (t :height 0.6))
2666 "Face for displaying non-graphic characters (e.g. U+202A (LRE)).
2667 It is used for characters of no fonts too."
2668 :version "24.1"
2669 :group 'basic-faces)
2670
2671 (defface error
2672 '((default :weight bold)
2673 (((class color) (min-colors 88) (background light)) :foreground "Red1")
2674 (((class color) (min-colors 88) (background dark)) :foreground "Pink")
2675 (((class color) (min-colors 16) (background light)) :foreground "Red1")
2676 (((class color) (min-colors 16) (background dark)) :foreground "Pink")
2677 (((class color) (min-colors 8)) :foreground "red")
2678 (t :inverse-video t))
2679 "Basic face used to highlight errors and to denote failure."
2680 :version "24.1"
2681 :group 'basic-faces)
2682
2683 (defface warning
2684 '((default :weight bold)
2685 (((class color) (min-colors 16)) :foreground "DarkOrange")
2686 (((class color)) :foreground "yellow"))
2687 "Basic face used to highlight warnings."
2688 :version "24.1"
2689 :group 'basic-faces)
2690
2691 (defface success
2692 '((default :weight bold)
2693 (((class color) (min-colors 16) (background light)) :foreground "ForestGreen")
2694 (((class color) (min-colors 88) (background dark)) :foreground "Green1")
2695 (((class color) (min-colors 16) (background dark)) :foreground "Green")
2696 (((class color)) :foreground "green"))
2697 "Basic face used to indicate successful operation."
2698 :version "24.1"
2699 :group 'basic-faces)
2700
2701 (defface read-multiple-choice-face
2702 '((t (:inherit underline
2703 :weight bold)))
2704 "Face for the symbol name in Apropos output."
2705 :group 'basic-faces
2706 :version "25.2")
2707
2708 ;; Faces for TTY menus.
2709 (defface tty-menu-enabled-face
2710 '((t
2711 :foreground "yellow" :background "blue" :weight bold))
2712 "Face for displaying enabled items in TTY menus."
2713 :group 'basic-faces)
2714
2715 (defface tty-menu-disabled-face
2716 '((((class color) (min-colors 16))
2717 :foreground "lightgray" :background "blue")
2718 (t
2719 :foreground "white" :background "blue"))
2720 "Face for displaying disabled items in TTY menus."
2721 :group 'basic-faces)
2722
2723 (defface tty-menu-selected-face
2724 '((t :background "red"))
2725 "Face for displaying the currently selected item in TTY menus."
2726 :group 'basic-faces)
2727
2728 (defgroup paren-showing-faces nil
2729 "Faces used to highlight paren matches."
2730 :group 'paren-showing
2731 :group 'faces
2732 :version "22.1")
2733
2734 (defface show-paren-match
2735 '((((class color) (background light))
2736 :background "turquoise") ; looks OK on tty (becomes cyan)
2737 (((class color) (background dark))
2738 :background "steelblue3") ; looks OK on tty (becomes blue)
2739 (((background dark) (min-colors 4))
2740 :background "grey50")
2741 (((background light) (min-colors 4))
2742 :background "gray")
2743 (t
2744 :inherit underline))
2745 "Face used for a matching paren."
2746 :group 'paren-showing-faces)
2747
2748 (defface show-paren-mismatch
2749 '((((class color)) (:foreground "white" :background "purple"))
2750 (t (:inverse-video t)))
2751 "Face used for a mismatching paren."
2752 :group 'paren-showing-faces)
2753
2754 \f
2755 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2756 ;;; Manipulating font names.
2757 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2758
2759 ;; This is here for compatibility with Emacs 20.2. For example,
2760 ;; international/fontset.el uses x-resolve-font-name. The following
2761 ;; functions are not used in the face implementation itself.
2762
2763 (defvar x-font-regexp nil)
2764 (defvar x-font-regexp-head nil)
2765 (defvar x-font-regexp-weight nil)
2766 (defvar x-font-regexp-slant nil)
2767
2768 (defconst x-font-regexp-weight-subnum 1)
2769 (defconst x-font-regexp-slant-subnum 2)
2770 (defconst x-font-regexp-swidth-subnum 3)
2771 (defconst x-font-regexp-adstyle-subnum 4)
2772
2773 ;;; Regexps matching font names in "Host Portable Character Representation."
2774 ;;;
2775 (let ((- "[-?]")
2776 (foundry "[^-]+")
2777 (family "[^-]+")
2778 (weight "\\(bold\\|demibold\\|medium\\)") ; 1
2779 ; (weight\? "\\(\\*\\|bold\\|demibold\\|medium\\|\\)") ; 1
2780 (weight\? "\\([^-]*\\)") ; 1
2781 (slant "\\([ior]\\)") ; 2
2782 ; (slant\? "\\([ior?*]?\\)") ; 2
2783 (slant\? "\\([^-]?\\)") ; 2
2784 ; (swidth "\\(\\*\\|normal\\|semicondensed\\|\\)") ; 3
2785 (swidth "\\([^-]*\\)") ; 3
2786 ; (adstyle "\\(\\*\\|sans\\|\\)") ; 4
2787 (adstyle "\\([^-]*\\)") ; 4
2788 (pixelsize "[0-9]+")
2789 (pointsize "[0-9][0-9]+")
2790 (resx "[0-9][0-9]+")
2791 (resy "[0-9][0-9]+")
2792 (spacing "[cmp?*]")
2793 (avgwidth "[0-9]+")
2794 (registry "[^-]+")
2795 (encoding "[^-]+")
2796 )
2797 (setq x-font-regexp
2798 (purecopy (concat "\\`\\*?[-?*]"
2799 foundry - family - weight\? - slant\? - swidth - adstyle -
2800 pixelsize - pointsize - resx - resy - spacing - avgwidth -
2801 registry - encoding "\\*?\\'"
2802 )))
2803 (setq x-font-regexp-head
2804 (purecopy (concat "\\`[-?*]" foundry - family - weight\? - slant\?
2805 "\\([-*?]\\|\\'\\)")))
2806 (setq x-font-regexp-slant (purecopy (concat - slant -)))
2807 (setq x-font-regexp-weight (purecopy (concat - weight -)))
2808 nil)
2809
2810
2811 (defun x-resolve-font-name (pattern &optional face frame)
2812 "Return a font name matching PATTERN.
2813 All wildcards in PATTERN are instantiated.
2814 If PATTERN is nil, return the name of the frame's base font, which never
2815 contains wildcards.
2816 Given optional arguments FACE and FRAME, return a font which is
2817 also the same size as FACE on FRAME, or fail."
2818 (and (eq frame t)
2819 (setq frame nil))
2820 (if pattern
2821 ;; Note that x-list-fonts has code to handle a face with nil as its font.
2822 (let ((fonts (x-list-fonts pattern face frame 1)))
2823 (or fonts
2824 (if face
2825 (if (string-match-p "\\*" pattern)
2826 (if (null (face-font face))
2827 (error "No matching fonts are the same height as the frame default font")
2828 (error "No matching fonts are the same height as face `%s'" face))
2829 (if (null (face-font face))
2830 (error "Height of font `%s' doesn't match the frame default font"
2831 pattern)
2832 (error "Height of font `%s' doesn't match face `%s'"
2833 pattern face)))
2834 (error "No fonts match `%s'" pattern)))
2835 (car fonts))
2836 (cdr (assq 'font (frame-parameters (selected-frame))))))
2837
2838 (defcustom font-list-limit 100
2839 "This variable is obsolete and has no effect."
2840 :type 'integer
2841 :group 'display)
2842 (make-obsolete-variable 'font-list-limit nil "24.3")
2843
2844 (provide 'faces)
2845
2846 ;;; faces.el ends here