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