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