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