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