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