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