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