428
|
1 ;;; faces.el --- Lisp interface to the C "face" structure
|
|
2
|
|
3 ;; Copyright (C) 1992-4, 1997 Free Software Foundation, Inc.
|
|
4 ;; Copyright (C) 1995 Board of Trustees, University of Illinois
|
|
5 ;; Copyright (C) 1995, 1996 Ben Wing
|
|
6
|
|
7 ;; Author: Ben Wing <ben@xemacs.org>
|
|
8 ;; Keywords: faces, internal, dumped
|
|
9
|
|
10 ;; This file is part of XEmacs.
|
|
11
|
|
12 ;; XEmacs is free software; you can redistribute it and/or modify it
|
|
13 ;; under the terms of the GNU General Public License as published by
|
|
14 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
15 ;; any later version.
|
|
16
|
|
17 ;; XEmacs is distributed in the hope that it will be useful, but
|
|
18 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
20 ;; General Public License for more details.
|
|
21
|
|
22 ;; You should have received a copy of the GNU General Public License
|
|
23 ;; along with XEmacs; see the file COPYING. If not, write to the
|
|
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
25 ;; Boston, MA 02111-1307, USA.
|
|
26
|
|
27 ;;; Synched up with: Not synched with FSF. Almost completely divergent.
|
|
28
|
|
29 ;;; Commentary:
|
|
30
|
|
31 ;; This file is dumped with XEmacs.
|
|
32
|
|
33 ;; face implementation #1 (used Lisp vectors and parallel C vectors;
|
|
34 ;; FSFmacs still uses this) authored by Jamie Zawinski <jwz@jwz.org>
|
|
35 ;; pre Lucid-Emacs 19.0.
|
|
36
|
|
37 ;; face implementation #2 (used one face object per frame per face)
|
|
38 ;; authored by Jamie Zawinski for 19.9.
|
|
39
|
|
40 ;; face implementation #3 (use one face object per face) originally
|
|
41 ;; authored for 19.12 by Chuck Thompson <cthomp@cs.uiuc.edu>,
|
|
42 ;; rewritten by Ben Wing with the advent of specifiers.
|
|
43
|
|
44
|
|
45 ;;; Some stuff in FSF's faces.el is in our x-faces.el.
|
|
46
|
|
47 ;;; Code:
|
|
48
|
|
49 (defgroup faces nil
|
|
50 "Support for multiple text attributes (fonts, colors, ...)
|
|
51 Such a collection of attributes is called a \"face\"."
|
|
52 :group 'emacs)
|
|
53
|
|
54
|
|
55 (defun read-face-name (prompt)
|
|
56 (let (face)
|
|
57 (while (= (length face) 0) ; nil or ""
|
|
58 (setq face (completing-read prompt
|
|
59 (mapcar (lambda (x) (list (symbol-name x)))
|
|
60 (face-list))
|
|
61 nil t)))
|
|
62 (intern face)))
|
|
63
|
|
64 (defun face-interactive (what &optional bool)
|
|
65 (let* ((fn (intern (concat "face-" what "-instance")))
|
|
66 (face (read-face-name (format "Set %s of face: " what)))
|
|
67 (default (if (fboundp fn)
|
|
68 ;; #### we should distinguish here between
|
|
69 ;; explicitly setting the value to be the
|
|
70 ;; same as the default face's value, and
|
|
71 ;; not setting a value at all.
|
|
72 (funcall fn face)))
|
|
73 (value (if bool
|
|
74 (y-or-n-p (format "Should face %s be %s? "
|
|
75 (symbol-name face) bool))
|
|
76 (read-string (format "Set %s of face %s to: "
|
|
77 what (symbol-name face))
|
|
78 (cond ((font-instance-p default)
|
|
79 (font-instance-name default))
|
|
80 ((color-instance-p default)
|
|
81 (color-instance-name default))
|
|
82 ((image-instance-p default)
|
|
83 (image-instance-file-name default))
|
|
84 (t default))))))
|
|
85 (list face (if (equal value "") nil value))))
|
|
86
|
|
87 (defconst built-in-face-specifiers
|
|
88 (built-in-face-specifiers)
|
|
89 "A list of the built-in face properties that are specifiers.")
|
|
90
|
|
91 (defun face-property (face property &optional locale tag-set exact-p)
|
|
92 "Return FACE's value of the given PROPERTY.
|
|
93
|
|
94 If LOCALE is omitted, the FACE's actual value for PROPERTY will be
|
|
95 returned. For built-in properties, this will be a specifier object
|
|
96 of a type appropriate to the property (e.g. a font or color
|
|
97 specifier). For other properties, this could be anything.
|
|
98
|
|
99 If LOCALE is supplied, then instead of returning the actual value,
|
|
100 the specification(s) for the given locale or locale type will
|
|
101 be returned. This will only work if the actual value of
|
|
102 PROPERTY is a specifier (this will always be the case for built-in
|
|
103 properties, but not or not may apply to user-defined properties).
|
|
104 If the actual value of PROPERTY is not a specifier, this value
|
|
105 will simply be returned regardless of LOCALE.
|
|
106
|
|
107 The return value will be a list of instantiators (e.g. strings
|
|
108 specifying a font or color name), or a list of specifications, each
|
|
109 of which is a cons of a locale and a list of instantiators.
|
|
110 Specifically, if LOCALE is a particular locale (a buffer, window,
|
|
111 frame, device, or 'global), a list of instantiators for that locale
|
|
112 will be returned. Otherwise, if LOCALE is a locale type (one of
|
|
113 the symbols 'buffer, 'window, 'frame, or 'device), the specifications
|
|
114 for all locales of that type will be returned. Finally, if LOCALE is
|
|
115 'all, the specifications for all locales of all types will be returned.
|
|
116
|
|
117 The specifications in a specifier determine what the value of
|
|
118 PROPERTY will be in a particular \"domain\" or set of circumstances,
|
|
119 which is typically a particular Emacs window along with the buffer
|
442
|
120 it contains and the frame and device it lies within. The value is
|
|
121 derived from the instantiator associated with the most specific
|
428
|
122 locale (in the order buffer, window, frame, device, and 'global)
|
|
123 that matches the domain in question. In other words, given a domain
|
442
|
124 (i.e. an Emacs window, usually), the specifier for PROPERTY will
|
|
125 first be searched for a specification whose locale is the buffer
|
|
126 contained within that window; then for a specification whose locale
|
|
127 is the window itself; then for a specification whose locale is the
|
|
128 frame that the window is contained within; etc. The first
|
|
129 instantiator that is valid for the domain (usually this means that
|
|
130 the instantiator is recognized by the device [i.e. MS Windows, the X
|
|
131 server or TTY device] that the domain is on. The function
|
|
132 `face-property-instance' actually does all this, and is used to
|
|
133 determine how to display the face.
|
428
|
134
|
|
135 See `set-face-property' for the built-in property-names."
|
|
136
|
|
137 (setq face (get-face face))
|
|
138 (let ((value (get face property)))
|
|
139 (if (and locale
|
|
140 (or (memq property built-in-face-specifiers)
|
|
141 (specifierp value)))
|
|
142 (setq value (specifier-specs value locale tag-set exact-p)))
|
|
143 value))
|
|
144
|
|
145 (defun convert-face-property-into-specifier (face property)
|
|
146 "Convert PROPERTY on FACE into a specifier, if it's not already."
|
|
147 (setq face (get-face face))
|
|
148 (let ((specifier (get face property)))
|
|
149 ;; if a user-property does not have a specifier but a
|
|
150 ;; locale was specified, put a specifier there.
|
|
151 ;; If there was already a value there, convert it to a
|
|
152 ;; specifier with the value as its 'global instantiator.
|
|
153 (unless (specifierp specifier)
|
|
154 (let ((new-specifier (make-specifier 'generic)))
|
|
155 (if (or (not (null specifier))
|
|
156 ;; make sure the nil returned from `get' wasn't
|
|
157 ;; actually the value of the property
|
|
158 (null (get face property t)))
|
|
159 (add-spec-to-specifier new-specifier specifier))
|
|
160 (setq specifier new-specifier)
|
|
161 (put face property specifier)))))
|
|
162
|
|
163 (defun face-property-instance (face property
|
|
164 &optional domain default no-fallback)
|
|
165 "Return the instance of FACE's PROPERTY in the specified DOMAIN.
|
|
166
|
|
167 Under most circumstances, DOMAIN will be a particular window,
|
|
168 and the returned instance describes how the specified property
|
|
169 actually is displayed for that window and the particular buffer
|
|
170 in it. Note that this may not be the same as how the property
|
|
171 appears when the buffer is displayed in a different window or
|
|
172 frame, or how the property appears in the same window if you
|
|
173 switch to another buffer in that window; and in those cases,
|
|
174 the returned instance would be different.
|
|
175
|
|
176 The returned instance will typically be a color-instance,
|
|
177 font-instance, or pixmap-instance object, and you can query
|
|
178 it using the appropriate object-specific functions. For example,
|
|
179 you could use `color-instance-rgb-components' to find out the
|
|
180 RGB (red, green, and blue) components of how the 'background
|
|
181 property of the 'highlight face is displayed in a particular
|
|
182 window. The results might be different from the results
|
|
183 you would get for another window (perhaps the user
|
|
184 specified a different color for the frame that window is on;
|
|
185 or perhaps the same color was specified but the window is
|
|
186 on a different X server, and that X server has different RGB
|
|
187 values for the color from this one).
|
|
188
|
|
189 DOMAIN defaults to the selected window if omitted.
|
|
190
|
|
191 DOMAIN can be a frame or device, instead of a window. The value
|
|
192 returned for a such a domain is used in special circumstances
|
|
193 when a more specific domain does not apply; for example, a frame
|
|
194 value might be used for coloring a toolbar, which is conceptually
|
|
195 attached to a frame rather than a particular window. The value
|
|
196 is also useful in determining what the value would be for a
|
|
197 particular window within the frame or device, if it is not
|
|
198 overridden by a more specific specification.
|
|
199
|
|
200 If PROPERTY does not name a built-in property, its value will
|
|
201 simply be returned unless it is a specifier object, in which case
|
|
202 it will be instanced using `specifier-instance'.
|
|
203
|
|
204 Optional arguments DEFAULT and NO-FALLBACK are the same as in
|
|
205 `specifier-instance'."
|
|
206
|
|
207 (setq face (get-face face))
|
|
208 (let ((value (get face property)))
|
|
209 (if (specifierp value)
|
|
210 (setq value (specifier-instance value domain default no-fallback)))
|
|
211 value))
|
|
212
|
|
213 (defun face-property-matching-instance (face property matchspec
|
|
214 &optional domain default
|
|
215 no-fallback)
|
|
216 "Return the instance of FACE's PROPERTY matching MATCHSPEC in DOMAIN.
|
|
217 Currently the only useful value for MATCHSPEC is a charset, when used
|
|
218 in conjunction with the face's font; this allows you to retrieve a
|
|
219 font that can be used to display a particular charset, rather than just
|
|
220 any font.
|
|
221
|
|
222 Other than MATCHSPEC, this function is identical to `face-property-instance'.
|
|
223 See also `specifier-matching-instance' for a fuller description of the
|
|
224 matching process."
|
|
225
|
|
226 (setq face (get-face face))
|
|
227 (let ((value (get face property)))
|
|
228 (if (specifierp value)
|
|
229 (setq value (specifier-matching-instance value matchspec domain
|
|
230 default no-fallback)))
|
|
231 value))
|
|
232
|
|
233 (defun set-face-property (face property value &optional locale tag-set
|
|
234 how-to-add)
|
|
235 "Change a property of FACE.
|
|
236
|
|
237 NOTE: If you want to remove a property from a face, use `remove-face-property'
|
|
238 rather than attempting to set a value of nil for the property.
|
|
239
|
|
240 For built-in properties, the actual value of the property is a
|
|
241 specifier and you cannot change this; but you can change the
|
|
242 specifications within the specifier, and that is what this function
|
|
243 will do. For user-defined properties, you can use this function
|
|
244 to either change the actual value of the property or, if this value
|
|
245 is a specifier, change the specifications within it.
|
|
246
|
|
247 If PROPERTY is a built-in property, the specifications to be added to
|
|
248 this property can be supplied in many different ways:
|
|
249
|
|
250 -- If VALUE is a simple instantiator (e.g. a string naming a font or
|
|
251 color) or a list of instantiators, then the instantiator(s) will
|
|
252 be added as a specification of the property for the given LOCALE
|
|
253 (which defaults to 'global if omitted).
|
|
254 -- If VALUE is a list of specifications (each of which is a cons of
|
|
255 a locale and a list of instantiators), then LOCALE must be nil
|
|
256 (it does not make sense to explicitly specify a locale in this
|
|
257 case), and specifications will be added as given.
|
|
258 -- If VALUE is a specifier (as would be returned by `face-property'
|
|
259 if no LOCALE argument is given), then some or all of the
|
|
260 specifications in the specifier will be added to the property.
|
|
261 In this case, the function is really equivalent to
|
|
262 `copy-specifier' and LOCALE has the same semantics (if it is
|
|
263 a particular locale, the specification for the locale will be
|
|
264 copied; if a locale type, specifications for all locales of
|
|
265 that type will be copied; if nil or 'all, then all
|
|
266 specifications will be copied).
|
|
267
|
|
268 HOW-TO-ADD should be either nil or one of the symbols 'prepend,
|
|
269 'append, 'remove-tag-set-prepend, 'remove-tag-set-append, 'remove-locale,
|
|
270 'remove-locale-type, or 'remove-all. See `copy-specifier' and
|
|
271 `add-spec-to-specifier' for a description of what each of
|
|
272 these means. Most of the time, you do not need to worry about
|
|
273 this argument; the default behavior usually is fine.
|
|
274
|
|
275 In general, it is OK to pass an instance object (e.g. as returned
|
|
276 by `face-property-instance') as an instantiator in place of
|
|
277 an actual instantiator. In such a case, the instantiator used
|
|
278 to create that instance object will be used (for example, if
|
|
279 you set a font-instance object as the value of the 'font
|
|
280 property, then the font name used to create that object will
|
|
281 be used instead). If some cases, however, doing this
|
|
282 conversion does not make sense, and this will be noted in
|
|
283 the documentation for particular types of instance objects.
|
|
284
|
|
285 If PROPERTY is not a built-in property, then this function will
|
|
286 simply set its value if LOCALE is nil. However, if LOCALE is
|
|
287 given, then this function will attempt to add VALUE as the
|
|
288 instantiator for the given LOCALE, using `add-spec-to-specifier'.
|
|
289 If the value of the property is not a specifier, it will
|
|
290 automatically be converted into a 'generic specifier.
|
|
291
|
|
292
|
|
293 The following symbols have predefined meanings:
|
|
294
|
|
295 foreground The foreground color of the face.
|
442
|
296 For valid instantiators, see `make-color-specifier'.
|
428
|
297
|
|
298 background The background color of the face.
|
442
|
299 For valid instantiators, see `make-color-specifier'.
|
428
|
300
|
|
301 font The font used to display text covered by this face.
|
442
|
302 For valid instantiators, see `make-font-specifier'.
|
428
|
303
|
|
304 display-table The display table of the face.
|
|
305 This should be a vector of 256 elements.
|
|
306
|
|
307 background-pixmap The pixmap displayed in the background of the face.
|
442
|
308 Only used by faces on X and MS Windows devices.
|
|
309 For valid instantiators, see `make-image-specifier'.
|
428
|
310
|
|
311 underline Underline all text covered by this face.
|
442
|
312 For valid instantiators, see `make-face-boolean-specifier'.
|
428
|
313
|
|
314 strikethru Draw a line through all text covered by this face.
|
442
|
315 For valid instantiators, see `make-face-boolean-specifier'.
|
428
|
316
|
|
317 highlight Highlight all text covered by this face.
|
|
318 Only used by faces on TTY devices.
|
442
|
319 For valid instantiators, see `make-face-boolean-specifier'.
|
428
|
320
|
|
321 dim Dim all text covered by this face.
|
442
|
322 For valid instantiators, see `make-face-boolean-specifier'.
|
428
|
323
|
|
324 blinking Blink all text covered by this face.
|
|
325 Only used by faces on TTY devices.
|
442
|
326 For valid instantiators, see `make-face-boolean-specifier'.
|
428
|
327
|
|
328 reverse Reverse the foreground and background colors.
|
|
329 Only used by faces on TTY devices.
|
442
|
330 For valid instantiators, see `make-face-boolean-specifier'.
|
428
|
331
|
|
332 doc-string Description of what the face's normal use is.
|
|
333 NOTE: This is not a specifier, unlike all
|
|
334 the other built-in properties, and cannot
|
|
335 contain locale-specific values."
|
|
336
|
|
337 (setq face (get-face face))
|
|
338 (if (memq property built-in-face-specifiers)
|
|
339 (set-specifier (get face property) value locale tag-set how-to-add)
|
|
340
|
|
341 ;; This section adds user defined properties.
|
|
342 (if (not locale)
|
|
343 (put face property value)
|
|
344 (convert-face-property-into-specifier face property)
|
|
345 (add-spec-to-specifier (get face property) value locale tag-set
|
|
346 how-to-add)))
|
|
347 value)
|
|
348
|
|
349 (defun remove-face-property (face property &optional locale tag-set exact-p)
|
|
350 "Remove a property from FACE.
|
|
351 For built-in properties, this is analogous to `remove-specifier'.
|
|
352 See `remove-specifier' for the meaning of the LOCALE, TAG-SET, and EXACT-P
|
|
353 arguments."
|
|
354 (or locale (setq locale 'all))
|
|
355 (if (memq property built-in-face-specifiers)
|
|
356 (remove-specifier (face-property face property) locale tag-set exact-p)
|
|
357 (if (eq locale 'all)
|
|
358 (remprop (get-face face) property)
|
|
359 (convert-face-property-into-specifier face property)
|
|
360 (remove-specifier (face-property face property) locale tag-set
|
|
361 exact-p))))
|
|
362
|
|
363 (defun reset-face (face &optional locale tag-set exact-p)
|
|
364 "Clear all existing built-in specifications from FACE.
|
|
365 This makes FACE inherit all its display properties from 'default.
|
|
366 WARNING: Be absolutely sure you want to do this!!! It is a dangerous
|
|
367 operation and is not undoable.
|
|
368
|
|
369 The arguments LOCALE, TAG-SET and EXACT-P are the same as for
|
|
370 `remove-specifier'."
|
|
371 (mapc (lambda (x)
|
|
372 (remove-specifier (face-property face x) locale tag-set exact-p))
|
|
373 built-in-face-specifiers)
|
|
374 nil)
|
|
375
|
|
376 (defun set-face-parent (face parent &optional locale tag-set how-to-add)
|
|
377 "Set the parent of FACE to PARENT, for all properties.
|
|
378 This makes all properties of FACE inherit from PARENT."
|
|
379 (setq parent (get-face parent))
|
|
380 (mapcar (lambda (x)
|
|
381 (set-face-property face x (vector parent) locale tag-set
|
|
382 how-to-add))
|
|
383 (delq 'display-table
|
|
384 (delq 'background-pixmap
|
|
385 (copy-sequence built-in-face-specifiers))))
|
|
386 (set-face-background-pixmap face (vector 'inherit ':face parent)
|
|
387 locale tag-set how-to-add)
|
|
388 nil)
|
|
389
|
|
390 (defun face-doc-string (face)
|
|
391 "Return the documentation string for FACE."
|
|
392 (face-property face 'doc-string))
|
|
393
|
|
394 (defun set-face-doc-string (face doc-string)
|
|
395 "Change the documentation string of FACE to DOC-STRING."
|
|
396 (interactive (face-interactive "doc-string"))
|
|
397 (set-face-property face 'doc-string doc-string))
|
|
398
|
|
399 (defun face-font-name (face &optional domain charset)
|
|
400 "Return the font name of FACE in DOMAIN, or nil if it is unspecified.
|
|
401 DOMAIN is as in `face-font-instance'."
|
|
402 (let ((f (face-font-instance face domain charset)))
|
|
403 (and f (font-instance-name f))))
|
|
404
|
|
405 (defun face-font (face &optional locale tag-set exact-p)
|
|
406 "Return the font of FACE in LOCALE, or nil if it is unspecified.
|
|
407
|
|
408 FACE may be either a face object or a symbol representing a face.
|
|
409
|
|
410 LOCALE may be a locale (the instantiators for that particular locale
|
|
411 will be returned), a locale type (the specifications for all locales
|
|
412 of that type will be returned), 'all (all specifications will be
|
|
413 returned), or nil (the actual specifier object will be returned).
|
|
414
|
|
415 See `face-property' for more information."
|
|
416 (face-property face 'font locale tag-set exact-p))
|
|
417
|
|
418 (defun face-font-instance (face &optional domain charset)
|
|
419 "Return the instance of FACE's font in DOMAIN.
|
|
420
|
|
421 FACE may be either a face object or a symbol representing a face.
|
|
422
|
|
423 Normally DOMAIN will be a window or nil (meaning the selected window),
|
|
424 and an instance object describing how the font appears in that
|
|
425 particular window and buffer will be returned.
|
|
426
|
|
427 See `face-property-instance' for more information."
|
|
428 (if charset
|
|
429 (face-property-matching-instance face 'font charset domain)
|
|
430 (face-property-instance face 'font domain)))
|
|
431
|
|
432 (defun set-face-font (face font &optional locale tag-set how-to-add)
|
|
433 "Change the font of FACE to FONT in LOCALE.
|
|
434
|
|
435 FACE may be either a face object or a symbol representing a face.
|
|
436
|
442
|
437 FONT should be an instantiator (see `make-font-specifier'), a list of
|
428
|
438 instantiators, an alist of specifications (each mapping a
|
|
439 locale to an instantiator list), or a font specifier object.
|
|
440
|
|
441 If FONT is an alist, LOCALE must be omitted. If FONT is a
|
|
442 specifier object, LOCALE can be a locale, a locale type, 'all,
|
|
443 or nil; see `copy-specifier' for its semantics. Otherwise LOCALE
|
|
444 specifies the locale under which the specified instantiator(s)
|
|
445 will be added, and defaults to 'global.
|
|
446
|
|
447 See `set-face-property' for more information."
|
|
448 (interactive (face-interactive "font"))
|
|
449 (set-face-property face 'font font locale tag-set how-to-add))
|
|
450
|
|
451 (defun face-foreground (face &optional locale tag-set exact-p)
|
|
452 "Return the foreground of FACE in LOCALE, or nil if it is unspecified.
|
|
453
|
|
454 FACE may be either a face object or a symbol representing a face.
|
|
455
|
|
456 LOCALE may be a locale (the instantiators for that particular locale
|
|
457 will be returned), a locale type (the specifications for all locales
|
|
458 of that type will be returned), 'all (all specifications will be
|
|
459 returned), or nil (the actual specifier object will be returned).
|
|
460
|
|
461 See `face-property' for more information."
|
|
462 (face-property face 'foreground locale tag-set exact-p))
|
|
463
|
|
464 (defun face-foreground-instance (face &optional domain default no-fallback)
|
|
465 "Return the instance of FACE's foreground in DOMAIN.
|
|
466
|
|
467 FACE may be either a face object or a symbol representing a face.
|
|
468
|
|
469 Normally DOMAIN will be a window or nil (meaning the selected window),
|
|
470 and an instance object describing how the foreground appears in that
|
|
471 particular window and buffer will be returned.
|
|
472
|
|
473 See `face-property-instance' for more information."
|
|
474 (face-property-instance face 'foreground domain default no-fallback))
|
|
475
|
|
476 (defun face-foreground-name (face &optional domain default no-fallback)
|
|
477 "Return the name of FACE's foreground color in DOMAIN.
|
|
478
|
|
479 FACE may be either a face object or a symbol representing a face.
|
|
480
|
|
481 Normally DOMAIN will be a window or nil (meaning the selected window),
|
|
482 and an instance object describing how the background appears in that
|
|
483 particular window and buffer will be returned.
|
|
484
|
|
485 See `face-property-instance' for more information."
|
|
486 (color-instance-name (face-foreground-instance
|
|
487 face domain default no-fallback)))
|
|
488
|
|
489 (defun set-face-foreground (face color &optional locale tag-set how-to-add)
|
|
490 "Change the foreground color of FACE to COLOR in LOCALE.
|
|
491
|
|
492 FACE may be either a face object or a symbol representing a face.
|
|
493
|
442
|
494 COLOR should be an instantiator (see `make-color-specifier'), a list of
|
428
|
495 instantiators, an alist of specifications (each mapping a locale to
|
|
496 an instantiator list), or a color specifier object.
|
|
497
|
|
498 If COLOR is an alist, LOCALE must be omitted. If COLOR is a
|
|
499 specifier object, LOCALE can be a locale, a locale type, 'all,
|
|
500 or nil; see `copy-specifier' for its semantics. Otherwise LOCALE
|
|
501 specifies the locale under which the specified instantiator(s)
|
|
502 will be added, and defaults to 'global.
|
|
503
|
|
504 See `set-face-property' for more information."
|
|
505 (interactive (face-interactive "foreground"))
|
|
506 (set-face-property face 'foreground color locale tag-set how-to-add))
|
|
507
|
|
508 (defun face-background (face &optional locale tag-set exact-p)
|
|
509 "Return the background color of FACE in LOCALE, or nil if it is unspecified.
|
|
510
|
|
511 FACE may be either a face object or a symbol representing a face.
|
|
512
|
|
513 LOCALE may be a locale (the instantiators for that particular locale
|
|
514 will be returned), a locale type (the specifications for all locales
|
|
515 of that type will be returned), 'all (all specifications will be
|
|
516 returned), or nil (the actual specifier object will be returned).
|
|
517
|
|
518 See `face-property' for more information."
|
|
519 (face-property face 'background locale tag-set exact-p))
|
|
520
|
|
521 (defun face-background-instance (face &optional domain default no-fallback)
|
|
522 "Return the instance of FACE's background in DOMAIN.
|
|
523
|
|
524 FACE may be either a face object or a symbol representing a face.
|
|
525
|
|
526 Normally DOMAIN will be a window or nil (meaning the selected window),
|
|
527 and an instance object describing how the background appears in that
|
|
528 particular window and buffer will be returned.
|
|
529
|
|
530 See `face-property-instance' for more information."
|
|
531 (face-property-instance face 'background domain default no-fallback))
|
|
532
|
|
533 (defun face-background-name (face &optional domain default no-fallback)
|
|
534 "Return the name of FACE's background color in DOMAIN.
|
|
535
|
|
536 FACE may be either a face object or a symbol representing a face.
|
|
537
|
|
538 Normally DOMAIN will be a window or nil (meaning the selected window),
|
|
539 and an instance object describing how the background appears in that
|
|
540 particular window and buffer will be returned.
|
|
541
|
|
542 See `face-property-instance' for more information."
|
|
543 (color-instance-name (face-background-instance
|
|
544 face domain default no-fallback)))
|
|
545
|
|
546 (defun set-face-background (face color &optional locale tag-set how-to-add)
|
|
547 "Change the background color of FACE to COLOR in LOCALE.
|
|
548
|
|
549 FACE may be either a face object or a symbol representing a face.
|
|
550
|
442
|
551 COLOR should be an instantiator (see `make-color-specifier'), a list of
|
428
|
552 instantiators, an alist of specifications (each mapping a locale to
|
|
553 an instantiator list), or a color specifier object.
|
|
554
|
|
555 If COLOR is an alist, LOCALE must be omitted. If COLOR is a
|
|
556 specifier object, LOCALE can be a locale, a locale type, 'all,
|
|
557 or nil; see `copy-specifier' for its semantics. Otherwise LOCALE
|
|
558 specifies the locale under which the specified instantiator(s)
|
|
559 will be added, and defaults to 'global.
|
|
560
|
|
561 See `set-face-property' for more information."
|
|
562 (interactive (face-interactive "background"))
|
|
563 (set-face-property face 'background color locale tag-set how-to-add))
|
|
564
|
|
565 (defun face-background-pixmap (face &optional locale tag-set exact-p)
|
|
566 "Return the background pixmap of FACE in LOCALE, or nil if it is unspecified.
|
|
567 This property is only used on window system devices.
|
|
568
|
|
569 FACE may be either a face object or a symbol representing a face.
|
|
570
|
|
571 LOCALE may be a locale (the instantiators for that particular locale
|
|
572 will be returned), a locale type (the specifications for all locales
|
|
573 of that type will be returned), 'all (all specifications will be
|
|
574 returned), or nil (the actual specifier object will be returned).
|
|
575
|
|
576 See `face-property' for more information."
|
|
577 (face-property face 'background-pixmap locale tag-set exact-p))
|
|
578
|
|
579 (defun face-background-pixmap-instance (face &optional domain default
|
|
580 no-fallback)
|
|
581 "Return the instance of FACE's background pixmap in DOMAIN.
|
|
582
|
|
583 FACE may be either a face object or a symbol representing a face.
|
|
584
|
|
585 Normally DOMAIN will be a window or nil (meaning the selected window),
|
|
586 and an instance object describing how the background appears in that
|
|
587 particular window and buffer will be returned.
|
|
588
|
|
589 See `face-property-instance' for more information."
|
|
590 (face-property-instance face 'background-pixmap domain default no-fallback))
|
|
591
|
|
592 (defun set-face-background-pixmap (face pixmap &optional locale tag-set
|
|
593 how-to-add)
|
|
594 "Change the background pixmap of FACE to PIXMAP in LOCALE.
|
|
595 This property is only used on window system devices.
|
|
596
|
|
597 FACE may be either a face object or a symbol representing a face.
|
|
598
|
442
|
599 PIXMAP should be an instantiator (see `make-image-specifier'), a list
|
428
|
600 of instantiators, an alist of specifications (each mapping a locale
|
|
601 to an instantiator list), or an image specifier object.
|
|
602
|
|
603 If PIXMAP is an alist, LOCALE must be omitted. If PIXMAP is a
|
|
604 specifier object, LOCALE can be a locale, a locale type, 'all,
|
|
605 or nil; see `copy-specifier' for its semantics. Otherwise LOCALE
|
|
606 specifies the locale under which the specified instantiator(s)
|
|
607 will be added, and defaults to 'global.
|
|
608
|
|
609 See `set-face-property' for more information."
|
|
610 (interactive (face-interactive "background-pixmap"))
|
|
611 (set-face-property face 'background-pixmap pixmap locale tag-set how-to-add))
|
|
612
|
|
613 (defun face-display-table (face &optional locale tag-set exact-p)
|
|
614 "Return the display table of FACE in LOCALE.
|
|
615
|
|
616 A vector (as returned by `make-display-table') will be returned.
|
|
617
|
|
618 LOCALE may be a locale (the instantiators for that particular locale
|
|
619 will be returned), a locale type (the specifications for all locales
|
|
620 of that type will be returned), 'all (all specifications will be
|
|
621 returned), or nil (the actual specifier object will be returned).
|
|
622
|
|
623 See `face-property' for more information."
|
|
624 (face-property face 'display-table locale tag-set exact-p))
|
|
625
|
|
626 (defun face-display-table-instance (face &optional domain default no-fallback)
|
|
627 "Return the instance of FACE's display table in DOMAIN.
|
|
628 A vector (as returned by `make-display-table') will be returned.
|
|
629
|
|
630 See `face-property-instance' for the semantics of the DOMAIN argument."
|
|
631 (face-property-instance face 'display-table domain default no-fallback))
|
|
632
|
|
633 (defun set-face-display-table (face display-table &optional locale tag-set
|
|
634 how-to-add)
|
|
635 "Change the display table of FACE to DISPLAY-TABLE in LOCALE.
|
|
636 DISPLAY-TABLE should be a vector as returned by `make-display-table'.
|
|
637
|
|
638 See `set-face-property' for the semantics of the LOCALE, TAG-SET, and
|
|
639 HOW-TO-ADD arguments."
|
|
640 (interactive (face-interactive "display-table"))
|
|
641 (set-face-property face 'display-table display-table locale tag-set
|
|
642 how-to-add))
|
|
643
|
|
644 ;; The following accessors and mutators are, IMHO, good
|
|
645 ;; implementation. Cf. with `make-face-bold'.
|
|
646
|
|
647 (defun face-underline-p (face &optional domain default no-fallback)
|
|
648 "Return t if FACE is underlined in DOMAIN.
|
|
649 See `face-property-instance' for the semantics of the DOMAIN argument."
|
|
650 (face-property-instance face 'underline domain default no-fallback))
|
|
651
|
|
652 (defun set-face-underline-p (face underline-p &optional locale tag-set
|
|
653 how-to-add)
|
|
654 "Change the underline property of FACE to UNDERLINE-P.
|
|
655 UNDERLINE-P is normally a face-boolean instantiator; see
|
442
|
656 `make-face-boolean-specifier'.
|
428
|
657 See `set-face-property' for the semantics of the LOCALE, TAG-SET, and
|
|
658 HOW-TO-ADD arguments."
|
|
659 (interactive (face-interactive "underline-p" "underlined"))
|
|
660 (set-face-property face 'underline underline-p locale tag-set how-to-add))
|
|
661
|
|
662 (defun face-strikethru-p (face &optional domain default no-fallback)
|
|
663 "Return t if FACE is strikethru-d (i.e. struck through) in DOMAIN.
|
|
664 See `face-property-instance' for the semantics of the DOMAIN argument."
|
|
665 (face-property-instance face 'strikethru domain default no-fallback))
|
|
666
|
|
667 (defun set-face-strikethru-p (face strikethru-p &optional locale tag-set
|
|
668 how-to-add)
|
|
669 "Change whether FACE is strikethru-d (i.e. struck through) in LOCALE.
|
|
670 STRIKETHRU-P is normally a face-boolean instantiator; see
|
442
|
671 `make-face-boolean-specifier'.
|
428
|
672 See `set-face-property' for the semantics of the LOCALE, TAG-SET, and
|
|
673 HOW-TO-ADD arguments."
|
|
674 (interactive (face-interactive "strikethru-p" "strikethru-d"))
|
|
675 (set-face-property face 'strikethru strikethru-p locale tag-set how-to-add))
|
|
676
|
|
677 (defun face-highlight-p (face &optional domain default no-fallback)
|
|
678 "Return t if FACE is highlighted in DOMAIN (TTY domains only).
|
|
679 See `face-property-instance' for the semantics of the DOMAIN argument."
|
|
680 (face-property-instance face 'highlight domain default no-fallback))
|
|
681
|
|
682 (defun set-face-highlight-p (face highlight-p &optional locale tag-set
|
|
683 how-to-add)
|
|
684 "Change whether FACE is highlighted in LOCALE (TTY locales only).
|
|
685 HIGHLIGHT-P is normally a face-boolean instantiator; see
|
442
|
686 `make-face-boolean-specifier'.
|
428
|
687 See `set-face-property' for the semantics of the LOCALE, TAG-SET, and
|
|
688 HOW-TO-ADD arguments."
|
|
689 (interactive (face-interactive "highlight-p" "highlighted"))
|
|
690 (set-face-property face 'highlight highlight-p locale tag-set how-to-add))
|
|
691
|
|
692 (defun face-dim-p (face &optional domain default no-fallback)
|
|
693 "Return t if FACE is dimmed in DOMAIN.
|
|
694 See `face-property-instance' for the semantics of the DOMAIN argument."
|
|
695 (face-property-instance face 'dim domain default no-fallback))
|
|
696
|
|
697 (defun set-face-dim-p (face dim-p &optional locale tag-set how-to-add)
|
|
698 "Change whether FACE is dimmed in LOCALE.
|
|
699 DIM-P is normally a face-boolean instantiator; see
|
442
|
700 `make-face-boolean-specifier'.
|
428
|
701 See `set-face-property' for the semantics of the LOCALE, TAG-SET, and
|
|
702 HOW-TO-ADD arguments."
|
|
703 (interactive (face-interactive "dim-p" "dimmed"))
|
|
704 (set-face-property face 'dim dim-p locale tag-set how-to-add))
|
|
705
|
|
706 (defun face-blinking-p (face &optional domain default no-fallback)
|
|
707 "Return t if FACE is blinking in DOMAIN (TTY domains only).
|
|
708 See `face-property-instance' for the semantics of the DOMAIN argument."
|
|
709 (face-property-instance face 'blinking domain default no-fallback))
|
|
710
|
|
711 (defun set-face-blinking-p (face blinking-p &optional locale tag-set
|
|
712 how-to-add)
|
|
713 "Change whether FACE is blinking in LOCALE (TTY locales only).
|
|
714 BLINKING-P is normally a face-boolean instantiator; see
|
442
|
715 `make-face-boolean-specifier'.
|
428
|
716 See `set-face-property' for the semantics of the LOCALE, TAG-SET, and
|
|
717 HOW-TO-ADD arguments."
|
|
718 (interactive (face-interactive "blinking-p" "blinking"))
|
|
719 (set-face-property face 'blinking blinking-p locale tag-set how-to-add))
|
|
720
|
|
721 (defun face-reverse-p (face &optional domain default no-fallback)
|
|
722 "Return t if FACE is reversed in DOMAIN (TTY domains only).
|
|
723 See `face-property-instance' for the semantics of the DOMAIN argument."
|
|
724 (face-property-instance face 'reverse domain default no-fallback))
|
|
725
|
|
726 (defun set-face-reverse-p (face reverse-p &optional locale tag-set how-to-add)
|
|
727 "Change whether FACE is reversed in LOCALE (TTY locales only).
|
|
728 REVERSE-P is normally a face-boolean instantiator; see
|
442
|
729 `make-face-boolean-specifier'.
|
428
|
730 See `set-face-property' for the semantics of the LOCALE, TAG-SET, and
|
|
731 HOW-TO-ADD arguments."
|
|
732 (interactive (face-interactive "reverse-p" "reversed"))
|
|
733 (set-face-property face 'reverse reverse-p locale tag-set how-to-add))
|
|
734
|
|
735
|
|
736 (defun face-property-equal (face1 face2 prop domain)
|
|
737 (equal (face-property-instance face1 prop domain)
|
|
738 (face-property-instance face2 prop domain)))
|
|
739
|
|
740 (defun face-equal-loop (props face1 face2 domain)
|
|
741 (while (and props
|
|
742 (face-property-equal face1 face2 (car props) domain))
|
|
743 (setq props (cdr props)))
|
|
744 (null props))
|
|
745
|
|
746 (defun face-equal (face1 face2 &optional domain)
|
|
747 "Return t if FACE1 and FACE2 will display in the same way in DOMAIN.
|
|
748 See `face-property-instance' for the semantics of the DOMAIN argument."
|
|
749 (if (null domain) (setq domain (selected-window)))
|
|
750 (if (not (valid-specifier-domain-p domain))
|
|
751 (error "Invalid specifier domain"))
|
|
752 (let ((device (dfw-device domain))
|
|
753 (common-props '(foreground background font display-table underline
|
|
754 dim))
|
|
755 (win-props '(background-pixmap strikethru))
|
|
756 (tty-props '(highlight blinking reverse)))
|
|
757
|
|
758 ;; First check the properties which are used in common between the
|
|
759 ;; x and tty devices. Then, check those properties specific to
|
|
760 ;; the particular device type.
|
|
761 (and (face-equal-loop common-props face1 face2 domain)
|
|
762 (cond ((eq 'tty (device-type device))
|
|
763 (face-equal-loop tty-props face1 face2 domain))
|
462
|
764 ;; #### Why isn't this (console-on-window-system-p (device-console device))?
|
|
765 ;; #### FIXME!
|
428
|
766 ((or (eq 'x (device-type device))
|
462
|
767 (eq 'gtk (device-type device))
|
428
|
768 (eq 'mswindows (device-type device)))
|
|
769 (face-equal-loop win-props face1 face2 domain))
|
|
770 (t t)))))
|
|
771
|
|
772 (defun face-differs-from-default-p (face &optional domain)
|
|
773 "Return t if FACE will display differently from the default face in DOMAIN.
|
|
774 See `face-property-instance' for the semantics of the DOMAIN argument."
|
|
775 (not (face-equal face 'default domain)))
|
|
776
|
|
777 ; moved from x-faces.el
|
|
778 (defun try-font-name (name &optional device)
|
|
779 ;; yes, name really should be here twice.
|
|
780 (and name (make-font-instance name device t) name))
|
|
781
|
|
782
|
|
783 ;; This function is a terrible, disgusting hack!!!! Need to
|
|
784 ;; separate out the font elements as separate face properties!
|
|
785
|
|
786 ;; WE DEMAND LEXICAL SCOPING!!!
|
|
787 ;; WE DEMAND LEXICAL SCOPING!!!
|
|
788 ;; WE DEMAND LEXICAL SCOPING!!!
|
|
789 ;; WE DEMAND LEXICAL SCOPING!!!
|
|
790 ;; WE DEMAND LEXICAL SCOPING!!!
|
|
791 ;; WE DEMAND LEXICAL SCOPING!!!
|
|
792 ;; WE DEMAND LEXICAL SCOPING!!!
|
|
793 ;; WE DEMAND LEXICAL SCOPING!!!
|
|
794 ;; WE DEMAND LEXICAL SCOPING!!!
|
|
795 ;; WE DEMAND LEXICAL SCOPING!!!
|
|
796 ;; WE DEMAND LEXICAL SCOPING!!!
|
|
797 ;; WE DEMAND LEXICAL SCOPING!!!
|
|
798 ;; WE DEMAND LEXICAL SCOPING!!!
|
|
799 ;; WE DEMAND LEXICAL SCOPING!!!
|
|
800 ;; WE DEMAND LEXICAL SCOPING!!!
|
442
|
801 (defun frob-face-property (face property func device-tags &optional
|
|
802 locale tags)
|
428
|
803 "Change the specifier for FACE's PROPERTY according to FUNC, in LOCALE.
|
|
804 This function is ugly and messy and is primarily used as an internal
|
|
805 helper function for `make-face-bold' et al., so you probably don't
|
|
806 want to use it or read the rest of the documentation. But if you do ...
|
|
807
|
|
808 FUNC should be a function of two arguments (an instance and a device)
|
|
809 that returns a modified name that is valid for the given device.
|
|
810 If LOCALE specifies a valid domain (i.e. a window, frame, or device),
|
|
811 this function instantiates the specifier over that domain, applies FUNC
|
|
812 to the resulting instance, and adds the result back as an instantiator
|
|
813 for that locale. Otherwise, LOCALE should be a locale, locale type, or
|
|
814 'all (defaults to 'all if omitted). For each specification thusly
|
|
815 included: if the locale given is a valid domain, FUNC will be
|
|
816 iterated over all valid instantiators for the device of the domain
|
|
817 until a non-nil result is found (if there is no such result, the
|
|
818 first valid instantiator is used), and that result substituted for
|
|
819 the specification; otherwise, the process just outlined is
|
|
820 iterated over each existing device and the concatenated results
|
442
|
821 substituted for the specification.
|
|
822
|
|
823 DEVICE-TAGS is a list of tags that each device must match in order for
|
|
824 the function to be called on it."
|
428
|
825 (let ((sp (face-property face property))
|
|
826 temp-sp)
|
|
827 (if (valid-specifier-domain-p locale)
|
|
828 ;; this is easy.
|
|
829 (let* ((inst (face-property-instance face property locale))
|
442
|
830 (name (and inst
|
|
831 (device-matches-specifier-tag-set-p
|
|
832 (dfw-device locale) device-tags)
|
|
833 (funcall func inst (dfw-device locale)))))
|
428
|
834 (when name
|
|
835 (add-spec-to-specifier sp name locale tags)))
|
|
836 ;; otherwise, map over all specifications ...
|
|
837 ;; but first, some further kludging:
|
|
838 ;; (1) if we're frobbing the global property, make sure
|
|
839 ;; that something is there (copy from the default face,
|
|
840 ;; if necessary). Otherwise, something like
|
|
841 ;; (make-face-larger 'modeline)
|
|
842 ;; won't do anything at all if the modeline simply
|
|
843 ;; inherits its font from 'default.
|
|
844 ;; (2) if we're frobbing a particular locale, nothing would
|
|
845 ;; happen if that locale has no instantiators. So signal
|
|
846 ;; an error to indicate this.
|
|
847
|
444
|
848
|
428
|
849 (setq temp-sp (copy-specifier sp))
|
|
850 (if (and (or (eq locale 'global) (eq locale 'all) (not locale))
|
|
851 (not (face-property face property 'global)))
|
|
852 (copy-specifier (face-property 'default property)
|
444
|
853 temp-sp 'global))
|
428
|
854 (if (and (valid-specifier-locale-p locale)
|
|
855 (not (specifier-specs temp-sp locale)))
|
|
856 (error "Property must have a specification in locale %S" locale))
|
|
857 (map-specifier
|
|
858 temp-sp
|
|
859 (lambda (sp-arg locale inst-list func)
|
|
860 (let* ((device (dfw-device locale))
|
|
861 ;; if a device can be derived from the locale,
|
|
862 ;; call frob-face-property-1 for that device.
|
|
863 ;; Otherwise map frob-face-property-1 over each device.
|
|
864 (result
|
|
865 (if device
|
442
|
866 (list (and (device-matches-specifier-tag-set-p
|
|
867 device device-tags)
|
|
868 (frob-face-property-1 sp-arg device inst-list
|
|
869 func)))
|
428
|
870 (mapcar (lambda (device)
|
442
|
871 (and (device-matches-specifier-tag-set-p
|
|
872 device device-tags)
|
|
873 (frob-face-property-1 sp-arg device
|
|
874 inst-list func)))
|
428
|
875 (device-list))))
|
|
876 new-result)
|
|
877 ;; remove duplicates and nils from the obtained list of
|
|
878 ;; instantiators. Also add tags amd remove 'defaults'.
|
|
879 (mapcar (lambda (arg)
|
|
880 (when arg
|
|
881 (if (not (consp arg))
|
|
882 (setq arg (cons tags arg))
|
|
883 (setcar arg (append tags (delete 'default
|
|
884 (car arg))))))
|
442
|
885 (when (and arg (not (member arg new-result)))
|
428
|
886 (setq new-result (cons arg new-result))))
|
|
887 result)
|
|
888 ;; add back in.
|
|
889 (add-spec-list-to-specifier sp (list (cons locale new-result)))
|
|
890 ;; tell map-specifier to keep going.
|
|
891 nil))
|
|
892 locale
|
|
893 func))))
|
|
894
|
|
895 (defun frob-face-property-1 (sp device inst-list func)
|
|
896 (let
|
|
897 (first-valid result)
|
|
898 (while (and inst-list (not result))
|
|
899 (let* ((inst-pair (car inst-list))
|
|
900 (tag-set (car inst-pair))
|
|
901 (sp-inst (specifier-instance-from-inst-list
|
|
902 sp device (list inst-pair))))
|
|
903 (if sp-inst
|
|
904 (progn
|
|
905 (if (not first-valid)
|
|
906 (setq first-valid inst-pair))
|
|
907 (setq result (funcall func sp-inst device))
|
|
908 (if result
|
|
909 (setq result (cons tag-set result))))))
|
|
910 (setq inst-list (cdr inst-list)))
|
|
911 (or result first-valid)))
|
|
912
|
452
|
913 (defcustom face-frob-from-locale-first nil
|
|
914 "*If non nil, use kludgy way of frobbing fonts suitable for non-mule
|
|
915 multi-charset environments."
|
|
916 :group 'faces
|
|
917 :type 'boolean)
|
|
918
|
428
|
919 (defun frob-face-font-2 (face locale tags unfrobbed-face frobbed-face
|
442
|
920 tty-thunk ws-thunk standard-face-mapping)
|
428
|
921 ;; another kludge to make things more intuitive. If we're
|
|
922 ;; inheriting from a standard face in this locale, frob the
|
442
|
923 ;; inheritance as appropriate. Else, if, after the first
|
|
924 ;; window-system frobbing pass, the face hasn't changed and still
|
|
925 ;; looks like the standard unfrobbed face (e.g. 'default), make it
|
|
926 ;; inherit from the standard frobbed face (e.g. 'bold). Regardless
|
|
927 ;; of things, do the TTY frobbing.
|
428
|
928
|
|
929 ;; yuck -- The LOCALE argument to make-face-bold is not actually a locale,
|
|
930 ;; but is a "locale, locale-type, or nil for all". So ... do our extra
|
|
931 ;; frobbing only if it's actually a locale; or for nil, do the frobbing
|
|
932 ;; on 'global. This specifier stuff needs some rethinking.
|
|
933 (let* ((the-locale (cond ((null locale) 'global)
|
|
934 ((valid-specifier-locale-p locale) locale)
|
|
935 (t nil)))
|
452
|
936 (spec-list
|
|
937 (and
|
|
938 the-locale
|
|
939 (specifier-spec-list (get (get-face face) 'font) the-locale tags t)))
|
|
940 (change-it
|
|
941 (and
|
|
942 spec-list
|
|
943 (cdr (assoc (cdadar spec-list) standard-face-mapping)))))
|
428
|
944 (if (and change-it
|
|
945 (not (memq (face-name (find-face face))
|
|
946 '(default bold italic bold-italic))))
|
|
947 (progn
|
|
948 (or (equal change-it t)
|
452
|
949 (set-face-property face 'font change-it the-locale tags))
|
428
|
950 (funcall tty-thunk))
|
|
951 (let* ((domain (cond ((null the-locale) nil)
|
|
952 ((valid-specifier-domain-p the-locale) the-locale)
|
|
953 ;; OK, this next one is truly a kludge, but
|
|
954 ;; it results in more intuitive behavior most
|
|
955 ;; of the time. (really!)
|
|
956 ((or (eq the-locale 'global) (eq the-locale 'all))
|
|
957 (selected-device))
|
|
958 (t nil)))
|
|
959 (inst (and domain (face-property-instance face 'font domain))))
|
|
960 ;; If it's reasonable to do the inherit-from-standard-face trick,
|
|
961 ;; and it's called for, then do it now.
|
452
|
962 (if (and
|
|
963 face-frob-from-locale-first
|
|
964 (eq the-locale 'global)
|
|
965 domain
|
|
966 (equal inst (face-property-instance face 'font domain))
|
|
967 ;; don't do it for standard faces, or you'll get inheritance loops.
|
|
968 ;; #### This makes XEmacs seg fault! fix this bug.
|
|
969 (not (memq (face-name (find-face face))
|
|
970 '(default bold italic bold-italic)))
|
|
971 (equal (face-property-instance face 'font domain)
|
|
972 (face-property-instance unfrobbed-face 'font domain)))
|
428
|
973 (set-face-property face 'font (vector frobbed-face)
|
452
|
974 the-locale tags)
|
|
975 ;; and only otherwise try to build new property value artificially
|
|
976 (funcall tty-thunk)
|
|
977 (funcall ws-thunk)
|
|
978 (and
|
|
979 domain
|
|
980 (equal inst (face-property-instance face 'font domain))
|
|
981 ;; don't do it for standard faces, or you'll get inheritance loops.
|
|
982 ;; #### This makes XEmacs seg fault! fix this bug.
|
|
983 (not (memq (face-name (find-face face))
|
|
984 '(default bold italic bold-italic)))
|
|
985 (equal (face-property-instance face 'font domain)
|
|
986 (face-property-instance unfrobbed-face 'font domain))
|
|
987 (set-face-property face 'font (vector frobbed-face) the-locale tags)))))))
|
428
|
988
|
|
989 (defun make-face-bold (face &optional locale tags)
|
|
990 "Make FACE bold in LOCALE, if possible.
|
442
|
991 This will attempt to make the font bold for X/MSW locales and will set the
|
428
|
992 highlight flag for TTY locales.
|
|
993
|
|
994 If LOCALE is nil, omitted, or `all', this will attempt to frob all
|
|
995 font specifications for FACE to make them appear bold. Similarly, if
|
|
996 LOCALE is a locale type, this frobs all font specifications for locales
|
|
997 of that type. If LOCALE is a particular locale, what happens depends on
|
|
998 what sort of locale is given. If you gave a device, frame, or window,
|
|
999 then it's always possible to determine what the font actually will be,
|
|
1000 so this is determined and the resulting font is frobbed and added back as a
|
|
1001 specification for this locale. If LOCALE is a buffer, however, you can't
|
|
1002 determine what the font will actually be unless there's actually a
|
|
1003 specification given for that particular buffer (otherwise, it depends
|
|
1004 on what window and frame the buffer appears in, and might not even be
|
|
1005 well-defined if the buffer appears multiple times in different places);
|
|
1006 therefore you will get an error unless there's a specification for the
|
|
1007 buffer.
|
|
1008
|
|
1009 Finally, in some cases (specifically, when LOCALE is not a locale type),
|
|
1010 if the frobbing didn't actually make the font look any different
|
|
1011 \(this happens, for example, if your font specification is already bold
|
|
1012 or has no bold equivalent), and currently looks like the font of the
|
|
1013 'default face, it is set to inherit from the 'bold face. This is kludgy
|
|
1014 but it makes `make-face-bold' have more intuitive behavior in many
|
|
1015 circumstances."
|
|
1016 (interactive (list (read-face-name "Make which face bold: ")))
|
|
1017 (frob-face-font-2
|
|
1018 face locale tags 'default 'bold
|
|
1019 (lambda ()
|
|
1020 ;; handle TTY specific entries
|
|
1021 (when (featurep 'tty)
|
|
1022 (set-face-highlight-p face t locale (cons 'tty tags))))
|
|
1023 (lambda ()
|
462
|
1024 ;; handle window-system specific entries
|
|
1025 (when (featurep 'gtk)
|
|
1026 (frob-face-property face 'font 'gtk-make-font-bold
|
|
1027 '(gtk) locale tags))
|
428
|
1028 (when (featurep 'x)
|
442
|
1029 (frob-face-property face 'font 'x-make-font-bold
|
|
1030 '(x) locale tags))
|
428
|
1031 (when (featurep 'mswindows)
|
442
|
1032 (frob-face-property face 'font 'mswindows-make-font-bold
|
484
|
1033 '(mswindows) locale tags)
|
|
1034 (frob-face-property face 'font 'mswindows-make-font-bold
|
|
1035 '(msprinter) locale tags))
|
428
|
1036 )
|
|
1037 '(([default] . [bold])
|
|
1038 ([bold] . t)
|
|
1039 ([italic] . [bold-italic])
|
|
1040 ([bold-italic] . t))))
|
|
1041
|
|
1042 (defun make-face-italic (face &optional locale tags)
|
|
1043 "Make FACE italic in LOCALE, if possible.
|
442
|
1044 This will attempt to make the font italic for X/MS Windows locales and
|
|
1045 will set the underline flag for TTY locales. See `make-face-bold' for
|
|
1046 the semantics of the LOCALE argument and for more specifics on exactly
|
|
1047 how this function works."
|
428
|
1048 (interactive (list (read-face-name "Make which face italic: ")))
|
|
1049 (frob-face-font-2
|
|
1050 face locale tags 'default 'italic
|
|
1051 (lambda ()
|
|
1052 ;; handle TTY specific entries
|
|
1053 (when (featurep 'tty)
|
|
1054 (set-face-underline-p face t locale (cons 'tty tags))))
|
|
1055 (lambda ()
|
462
|
1056 ;; handle window-system specific entries
|
|
1057 (when (featurep 'gtk)
|
|
1058 (frob-face-property face 'font 'gtk-make-font-italic
|
|
1059 '(gtk) locale tags))
|
428
|
1060 (when (featurep 'x)
|
442
|
1061 (frob-face-property face 'font 'x-make-font-italic
|
|
1062 '(x) locale tags))
|
428
|
1063 (when (featurep 'mswindows)
|
442
|
1064 (frob-face-property face 'font 'mswindows-make-font-italic
|
484
|
1065 '(mswindows) locale tags)
|
|
1066 (frob-face-property face 'font 'mswindows-make-font-italic
|
|
1067 '(msprinter) locale tags))
|
428
|
1068 )
|
|
1069 '(([default] . [italic])
|
|
1070 ([bold] . [bold-italic])
|
|
1071 ([italic] . t)
|
|
1072 ([bold-italic] . t))))
|
|
1073
|
|
1074 (defun make-face-bold-italic (face &optional locale tags)
|
|
1075 "Make FACE bold and italic in LOCALE, if possible.
|
442
|
1076 This will attempt to make the font bold-italic for X/MS Windows
|
|
1077 locales and will set the highlight and underline flags for TTY
|
|
1078 locales. See `make-face-bold' for the semantics of the LOCALE
|
|
1079 argument and for more specifics on exactly how this function works."
|
428
|
1080 (interactive (list (read-face-name "Make which face bold-italic: ")))
|
|
1081 (frob-face-font-2
|
|
1082 face locale tags 'default 'bold-italic
|
|
1083 (lambda ()
|
|
1084 ;; handle TTY specific entries
|
|
1085 (when (featurep 'tty)
|
|
1086 (set-face-highlight-p face t locale (cons 'tty tags))
|
|
1087 (set-face-underline-p face t locale (cons 'tty tags))))
|
|
1088 (lambda ()
|
462
|
1089 ;; handle window-system specific entries
|
|
1090 (when (featurep 'gtk)
|
|
1091 (frob-face-property face 'font 'gtk-make-font-bold-italic
|
|
1092 '(gtk) locale tags))
|
428
|
1093 (when (featurep 'x)
|
442
|
1094 (frob-face-property face 'font 'x-make-font-bold-italic
|
|
1095 '(x) locale tags))
|
428
|
1096 (when (featurep 'mswindows)
|
442
|
1097 (frob-face-property face 'font 'mswindows-make-font-bold-italic
|
484
|
1098 '(mswindows) locale tags)
|
|
1099 (frob-face-property face 'font 'mswindows-make-font-bold-italic
|
|
1100 '(msprinter) locale tags))
|
428
|
1101 )
|
|
1102 '(([default] . [italic])
|
|
1103 ([bold] . [bold-italic])
|
|
1104 ([italic] . [bold-italic])
|
|
1105 ([bold-italic] . t))))
|
|
1106
|
|
1107 (defun make-face-unbold (face &optional locale tags)
|
|
1108 "Make FACE non-bold in LOCALE, if possible.
|
442
|
1109 This will attempt to make the font non-bold for X/MS Windows locales
|
|
1110 and will unset the highlight flag for TTY locales. See
|
|
1111 `make-face-bold' for the semantics of the LOCALE argument and for more
|
|
1112 specifics on exactly how this function works."
|
428
|
1113 (interactive (list (read-face-name "Make which face non-bold: ")))
|
|
1114 (frob-face-font-2
|
|
1115 face locale tags 'bold 'default
|
|
1116 (lambda ()
|
|
1117 ;; handle TTY specific entries
|
|
1118 (when (featurep 'tty)
|
|
1119 (set-face-highlight-p face nil locale (cons 'tty tags))))
|
|
1120 (lambda ()
|
462
|
1121 ;; handle window-system specific entries
|
|
1122 (when (featurep 'gtk)
|
|
1123 (frob-face-property face 'font 'gtk-make-font-unbold
|
|
1124 '(gtk) locale tags))
|
428
|
1125 (when (featurep 'x)
|
442
|
1126 (frob-face-property face 'font 'x-make-font-unbold
|
|
1127 '(x) locale tags))
|
428
|
1128 (when (featurep 'mswindows)
|
442
|
1129 (frob-face-property face 'font 'mswindows-make-font-unbold
|
484
|
1130 '(mswindows) locale tags)
|
|
1131 (frob-face-property face 'font 'mswindows-make-font-unbold
|
|
1132 '(msprinter) locale tags))
|
428
|
1133 )
|
|
1134 '(([default] . t)
|
|
1135 ([bold] . [default])
|
|
1136 ([italic] . t)
|
|
1137 ([bold-italic] . [italic]))))
|
|
1138
|
|
1139 (defun make-face-unitalic (face &optional locale tags)
|
|
1140 "Make FACE non-italic in LOCALE, if possible.
|
442
|
1141 This will attempt to make the font non-italic for X/MS Windows locales
|
|
1142 and will unset the underline flag for TTY locales. See
|
|
1143 `make-face-bold' for the semantics of the LOCALE argument and for more
|
|
1144 specifics on exactly how this function works."
|
428
|
1145 (interactive (list (read-face-name "Make which face non-italic: ")))
|
|
1146 (frob-face-font-2
|
|
1147 face locale tags 'italic 'default
|
|
1148 (lambda ()
|
|
1149 ;; handle TTY specific entries
|
|
1150 (when (featurep 'tty)
|
|
1151 (set-face-underline-p face nil locale (cons 'tty tags))))
|
|
1152 (lambda ()
|
462
|
1153 ;; handle window-system specific entries
|
|
1154 (when (featurep 'gtk)
|
|
1155 (frob-face-property face 'font 'gtk-make-font-unitalic
|
|
1156 '(gtk) locale tags))
|
428
|
1157 (when (featurep 'x)
|
442
|
1158 (frob-face-property face 'font 'x-make-font-unitalic
|
|
1159 '(x) locale tags))
|
428
|
1160 (when (featurep 'mswindows)
|
442
|
1161 (frob-face-property face 'font 'mswindows-make-font-unitalic
|
484
|
1162 '(mswindows) locale tags)
|
|
1163 (frob-face-property face 'font 'mswindows-make-font-unitalic
|
|
1164 '(msprinter) locale tags))
|
428
|
1165 )
|
|
1166 '(([default] . t)
|
|
1167 ([bold] . t)
|
|
1168 ([italic] . [default])
|
|
1169 ([bold-italic] . [bold]))))
|
|
1170
|
|
1171
|
|
1172 ;; Why do the following two functions lose so badly in so many
|
|
1173 ;; circumstances?
|
|
1174
|
|
1175 (defun make-face-smaller (face &optional locale)
|
|
1176 "Make the font of FACE be smaller, if possible.
|
|
1177 LOCALE works as in `make-face-bold' et al., but the ``inheriting-
|
|
1178 from-the-bold-face'' operations described there are not done
|
|
1179 because they don't make sense in this context."
|
|
1180 (interactive (list (read-face-name "Shrink which face: ")))
|
|
1181 ;; handle X specific entries
|
|
1182 (when (featurep 'x)
|
442
|
1183 (frob-face-property face 'font 'x-find-smaller-font
|
|
1184 '(x) locale))
|
428
|
1185 (when (featurep 'mswindows)
|
442
|
1186 (frob-face-property face 'font 'mswindows-find-smaller-font
|
484
|
1187 '(mswindows) locale)
|
|
1188 (frob-face-property face 'font 'mswindows-find-smaller-font
|
|
1189 '(msprinter) locale)))
|
428
|
1190
|
|
1191 (defun make-face-larger (face &optional locale)
|
|
1192 "Make the font of FACE be larger, if possible.
|
|
1193 See `make-face-smaller' for the semantics of the LOCALE argument."
|
|
1194 (interactive (list (read-face-name "Enlarge which face: ")))
|
|
1195 ;; handle X specific entries
|
|
1196 (when (featurep 'x)
|
442
|
1197 (frob-face-property face 'font 'x-find-larger-font
|
|
1198 '(x) locale))
|
428
|
1199 (when (featurep 'mswindows)
|
442
|
1200 (frob-face-property face 'font 'mswindows-find-larger-font
|
484
|
1201 '(mswindows) locale)
|
|
1202 (frob-face-property face 'font 'mswindows-find-larger-font
|
|
1203 '(msprinter) locale)))
|
428
|
1204
|
|
1205 (defun invert-face (face &optional locale)
|
|
1206 "Swap the foreground and background colors of the face."
|
|
1207 (interactive (list (read-face-name "Invert face: ")))
|
|
1208 (if (valid-specifier-domain-p locale)
|
|
1209 (let ((foreface (face-foreground-instance face locale)))
|
|
1210 (set-face-foreground face (face-background-instance face locale)
|
|
1211 locale)
|
|
1212 (set-face-background face foreface locale))
|
|
1213 (let ((forespec (copy-specifier (face-foreground face) nil locale)))
|
|
1214 (copy-specifier (face-background face) (face-foreground face) locale)
|
|
1215 (copy-specifier forespec (face-background face) locale))))
|
|
1216
|
|
1217
|
|
1218 ;;; Convenience functions
|
|
1219
|
|
1220 (defun face-ascent (face &optional domain charset)
|
|
1221 "Return the ascent of FACE in DOMAIN.
|
|
1222 See `face-property-instance' for the semantics of the DOMAIN argument."
|
|
1223 (font-ascent (face-font face) domain charset))
|
|
1224
|
|
1225 (defun face-descent (face &optional domain charset)
|
|
1226 "Return the descent of FACE in DOMAIN.
|
|
1227 See `face-property-instance' for the semantics of the DOMAIN argument."
|
|
1228 (font-descent (face-font face) domain charset))
|
|
1229
|
|
1230 (defun face-width (face &optional domain charset)
|
|
1231 "Return the width of FACE in DOMAIN.
|
|
1232 See `face-property-instance' for the semantics of the DOMAIN argument."
|
|
1233 (font-width (face-font face) domain charset))
|
|
1234
|
|
1235 (defun face-height (face &optional domain charset)
|
|
1236 "Return the height of FACE in DOMAIN.
|
|
1237 See `face-property-instance' for the semantics of the DOMAIN argument."
|
|
1238 (+ (face-ascent face domain charset) (face-descent face domain charset)))
|
|
1239
|
|
1240 (defun face-proportional-p (face &optional domain charset)
|
|
1241 "Return t if FACE is proportional in DOMAIN.
|
|
1242 See `face-property-instance' for the semantics of the DOMAIN argument."
|
|
1243 (font-proportional-p (face-font face) domain charset))
|
|
1244
|
|
1245
|
|
1246 ;; Functions that used to be in cus-face.el, but logically go here.
|
|
1247
|
|
1248 (defcustom frame-background-mode nil
|
|
1249 "*The brightness of the background.
|
|
1250 Set this to the symbol dark if your background color is dark, light if
|
|
1251 your background is light, or nil (default) if you want Emacs to
|
|
1252 examine the brightness for you."
|
|
1253 :group 'faces
|
|
1254 :type '(choice (choice-item dark)
|
|
1255 (choice-item light)
|
|
1256 (choice-item :tag "Auto" nil)))
|
|
1257
|
|
1258 ;; The old variable that many people still have in .emacs files.
|
|
1259 (define-obsolete-variable-alias 'custom-background-mode
|
|
1260 'frame-background-mode)
|
|
1261
|
|
1262 (defun get-frame-background-mode (frame)
|
|
1263 "Detect background mode for FRAME."
|
|
1264 (let* ((color-instance (face-background-instance 'default frame))
|
|
1265 (mode (condition-case nil
|
|
1266 (if (< (apply '+ (color-instance-rgb-components
|
|
1267 color-instance)) 65536)
|
|
1268 'dark 'light)
|
|
1269 ;; Here, we get an error on a TTY. As we don't have
|
|
1270 ;; a good way of detecting whether a TTY is light or
|
|
1271 ;; dark, we'll guess it's dark.
|
|
1272 (error 'dark))))
|
|
1273 (set-frame-property frame 'background-mode mode)
|
|
1274 mode))
|
|
1275
|
|
1276 (defun extract-custom-frame-properties (frame)
|
|
1277 "Return a plist with the frame properties of FRAME used by custom."
|
|
1278 (list 'type (or (frame-property frame 'display-type)
|
|
1279 (device-type (frame-device frame)))
|
|
1280 'class (device-class (frame-device frame))
|
|
1281 'background (or frame-background-mode
|
|
1282 (frame-property frame 'background-mode)
|
|
1283 (get-frame-background-mode frame))))
|
|
1284
|
|
1285 (defcustom init-face-from-resources t
|
|
1286 "If non nil, attempt to initialize faces from the resource database."
|
|
1287 :group 'faces
|
|
1288 :type 'boolean)
|
|
1289
|
|
1290 ;; Old name, used by custom. Also, FSFmacs name.
|
|
1291 (defvaralias 'initialize-face-resources 'init-face-from-resources)
|
|
1292
|
|
1293 ;; Make sure all custom setting are added with this tag so we can
|
|
1294 ;; identify-them
|
|
1295 (define-specifier-tag 'custom)
|
|
1296
|
|
1297 (defun face-spec-set (face spec &optional frame tags)
|
|
1298 "Set FACE's face attributes according to the first matching entry in SPEC.
|
|
1299 If optional FRAME is non-nil, set it for that frame only.
|
|
1300 If it is nil, then apply SPEC to each frame individually.
|
|
1301 See `defface' for information about SPEC."
|
|
1302 (if frame
|
|
1303 (progn
|
|
1304 (reset-face face frame tags)
|
|
1305 (face-display-set face spec frame tags)
|
|
1306 (init-face-from-resources face frame))
|
|
1307 (let ((frames (relevant-custom-frames)))
|
|
1308 (reset-face face nil tags)
|
|
1309 ;; This should not be needed. We only remove our own specifiers
|
|
1310 ;; (if (and (eq 'default face) (featurep 'x))
|
|
1311 ;; (x-init-global-faces))
|
|
1312 (face-display-set face spec nil tags)
|
|
1313 (while frames
|
|
1314 (face-display-set face spec (car frames) tags)
|
|
1315 (pop frames))
|
|
1316 (init-face-from-resources face))))
|
|
1317
|
|
1318 (defun face-display-set (face spec &optional frame tags)
|
|
1319 "Set FACE to the attributes to the first matching entry in SPEC.
|
|
1320 Iff optional FRAME is non-nil, set it for that frame only.
|
|
1321 See `defface' for information about SPEC."
|
|
1322 (while spec
|
|
1323 (let ((display (caar spec))
|
|
1324 (atts (cadar spec)))
|
|
1325 (pop spec)
|
|
1326 (when (face-spec-set-match-display display frame)
|
|
1327 ;; Avoid creating frame local duplicates of the global face.
|
|
1328 (unless (and frame (eq display (get face 'custom-face-display)))
|
|
1329 (apply 'face-custom-attributes-set face frame tags atts))
|
|
1330 (unless frame
|
|
1331 (put face 'custom-face-display display))
|
|
1332 (setq spec nil)))))
|
|
1333
|
|
1334 (defvar default-custom-frame-properties nil
|
|
1335 "The frame properties used for the global faces.
|
442
|
1336 Frames not matching these properties should have frame local faces.
|
428
|
1337 The value should be nil, if uninitialized, or a plist otherwise.
|
|
1338 See `defface' for a list of valid keys and values for the plist.")
|
|
1339
|
|
1340 (defun get-custom-frame-properties (&optional frame)
|
|
1341 "Return a plist with the frame properties of FRAME used by custom.
|
|
1342 If FRAME is nil, return the default frame properties."
|
|
1343 (cond (frame
|
|
1344 ;; Try to get from cache.
|
|
1345 (let ((cache (frame-property frame 'custom-properties)))
|
|
1346 (unless cache
|
|
1347 ;; Oh well, get it then.
|
|
1348 (setq cache (extract-custom-frame-properties frame))
|
|
1349 ;; and cache it...
|
|
1350 (set-frame-property frame 'custom-properties cache))
|
|
1351 cache))
|
|
1352 (default-custom-frame-properties)
|
|
1353 (t
|
|
1354 (setq default-custom-frame-properties
|
|
1355 (extract-custom-frame-properties (selected-frame))))))
|
|
1356
|
|
1357 (defun face-spec-update-all-matching (spec display plist)
|
|
1358 "Update all entries in the face spec that could match display to
|
444
|
1359 have the entries from the new plist and return the new spec."
|
428
|
1360 (mapcar
|
|
1361 (lambda (e)
|
|
1362 (let ((entries (car e))
|
|
1363 (options (cadr e))
|
|
1364 (match t)
|
|
1365 dplist
|
|
1366 (new-options plist)
|
|
1367 )
|
|
1368 (unless (eq display t)
|
|
1369 (mapc (lambda (arg)
|
|
1370 (setq dplist (plist-put dplist (car arg) (cadr arg))))
|
|
1371 display))
|
|
1372 (unless (eq entries t)
|
|
1373 (mapc (lambda (arg)
|
|
1374 (setq match (and match (eq (cadr arg)
|
|
1375 (plist-get
|
|
1376 dplist (car arg)
|
|
1377 (cadr arg))))))
|
|
1378 entries))
|
|
1379 (if (not match)
|
|
1380 e
|
|
1381 (while new-options
|
|
1382 (setq options
|
|
1383 (plist-put options (car new-options) (cadr new-options)))
|
|
1384 (setq new-options (cddr new-options)))
|
|
1385 (list entries options))))
|
|
1386 (copy-sequence spec)))
|
444
|
1387
|
|
1388
|
428
|
1389
|
|
1390 (defun face-spec-set-match-display (display &optional frame)
|
|
1391 "Return non-nil if DISPLAY matches FRAME.
|
|
1392 DISPLAY is part of a spec such as can be used in `defface'.
|
|
1393 If FRAME is nil or omitted, the selected frame is used."
|
|
1394 (if (eq display t)
|
|
1395 t
|
|
1396 (let* ((props (get-custom-frame-properties frame))
|
|
1397 (type (plist-get props 'type))
|
|
1398 (class (plist-get props 'class))
|
|
1399 (background (plist-get props 'background))
|
|
1400 (match t)
|
|
1401 (entries display)
|
|
1402 entry req options)
|
|
1403 (while (and entries match)
|
|
1404 (setq entry (car entries)
|
|
1405 entries (cdr entries)
|
|
1406 req (car entry)
|
|
1407 options (cdr entry)
|
|
1408 match (case req
|
|
1409 (type (memq type options))
|
|
1410 (class (memq class options))
|
|
1411 (background (memq background options))
|
|
1412 (t (warn "Unknown req `%S' with options `%S'"
|
|
1413 req options)
|
|
1414 nil))))
|
|
1415 match)))
|
|
1416
|
|
1417 (defun relevant-custom-frames ()
|
|
1418 "List of frames whose custom properties differ from the default."
|
|
1419 (let ((relevant nil)
|
|
1420 (default (get-custom-frame-properties))
|
|
1421 (frames (frame-list))
|
|
1422 frame)
|
|
1423 (while frames
|
|
1424 (setq frame (car frames)
|
|
1425 frames (cdr frames))
|
|
1426 (unless (equal default (get-custom-frame-properties frame))
|
|
1427 (push frame relevant)))
|
|
1428 relevant))
|
|
1429
|
|
1430 (defun initialize-custom-faces (&optional frame)
|
|
1431 "Initialize all custom faces for FRAME.
|
|
1432 If FRAME is nil or omitted, initialize them for all frames."
|
|
1433 (mapc (lambda (symbol)
|
|
1434 (let ((spec (or (get symbol 'saved-face)
|
|
1435 (get symbol 'face-defface-spec))))
|
|
1436 (when spec
|
|
1437 ;; No need to init-face-from-resources -- code in
|
|
1438 ;; `init-frame-faces' does it already.
|
|
1439 (face-display-set symbol spec frame))))
|
|
1440 (face-list)))
|
|
1441
|
|
1442 (defun custom-initialize-frame (frame)
|
|
1443 "Initialize frame-local custom faces for FRAME if necessary."
|
|
1444 (unless (equal (get-custom-frame-properties)
|
|
1445 (get-custom-frame-properties frame))
|
|
1446 (initialize-custom-faces frame)))
|
|
1447
|
440
|
1448 (defun startup-initialize-custom-faces ()
|
|
1449 "Reset faces created by defface. Only called at startup.
|
|
1450 Don't use this function in your program."
|
|
1451 (when default-custom-frame-properties
|
|
1452 ;; Reset default value to the actual frame, not stream.
|
|
1453 (setq default-custom-frame-properties
|
|
1454 (extract-custom-frame-properties (selected-frame)))
|
|
1455 ;; like initialize-custom-faces but removes property first.
|
|
1456 (mapc (lambda (symbol)
|
|
1457 (let ((spec (or (get symbol 'saved-face)
|
|
1458 (get symbol 'face-defface-spec))))
|
|
1459 (when spec
|
|
1460 ;; Reset faces created during auto-autoloads loading.
|
|
1461 (reset-face symbol)
|
|
1462 ;; And set it according to the spec.
|
|
1463 (face-display-set symbol spec nil))))
|
|
1464 (face-list))))
|
|
1465
|
428
|
1466
|
|
1467 (defun make-empty-face (name &optional doc-string temporary)
|
|
1468 "Like `make-face', but doesn't query the resource database."
|
|
1469 (let ((init-face-from-resources nil))
|
|
1470 (make-face name doc-string temporary)))
|
|
1471
|
|
1472 (defun init-face-from-resources (face &optional locale)
|
|
1473 "Initialize FACE from the resource database.
|
|
1474 If LOCALE is specified, it should be a frame, device, or 'global, and
|
|
1475 the face will be resourced over that locale. Otherwise, the face will
|
|
1476 be resourced over all possible locales (i.e. all frames, all devices,
|
|
1477 and 'global)."
|
|
1478 (cond ((null init-face-from-resources)
|
|
1479 ;; Do nothing.
|
|
1480 )
|
|
1481 ((not locale)
|
|
1482 ;; Global, set for all frames.
|
|
1483 (progn
|
|
1484 (init-face-from-resources face 'global)
|
|
1485 (let ((devices (device-list)))
|
|
1486 (while devices
|
|
1487 (init-face-from-resources face (car devices))
|
|
1488 (setq devices (cdr devices))))
|
|
1489 (let ((frames (frame-list)))
|
|
1490 (while frames
|
|
1491 (init-face-from-resources face (car frames))
|
|
1492 (setq frames (cdr frames))))))
|
|
1493 (t
|
|
1494 ;; Specific.
|
|
1495 (let ((devtype (cond ((devicep locale) (device-type locale))
|
|
1496 ((framep locale) (frame-type locale))
|
|
1497 (t nil))))
|
|
1498 (cond ((or (and (not devtype) (featurep 'x)) (eq 'x devtype))
|
502
|
1499 (declare-fboundp (x-init-face-from-resources face locale)))
|
428
|
1500 ((or (not devtype) (eq 'tty devtype))
|
|
1501 ;; Nothing to do for TTYs?
|
|
1502 ))))))
|
|
1503
|
|
1504 (defun init-device-faces (device)
|
|
1505 ;; First, add any device-local face resources.
|
|
1506 (when init-face-from-resources
|
|
1507 (loop for face in (face-list) do
|
|
1508 (init-face-from-resources face device))
|
|
1509 ;; Then do any device-specific initialization.
|
|
1510 (cond ((eq 'x (device-type device))
|
502
|
1511 (declare-fboundp (x-init-device-faces device)))
|
462
|
1512 ((eq 'gtk (device-type device))
|
502
|
1513 (declare-fboundp (gtk-init-device-faces device)))
|
428
|
1514 ((eq 'mswindows (device-type device))
|
502
|
1515 (declare-fboundp (mswindows-init-device-faces device)))
|
428
|
1516 ;; Nothing to do for TTYs?
|
|
1517 )
|
|
1518 (or (eq 'stream (device-type device))
|
|
1519 (init-other-random-faces device))))
|
|
1520
|
|
1521 (defun init-frame-faces (frame)
|
|
1522 (when init-face-from-resources
|
|
1523 ;; First, add any frame-local face resources.
|
|
1524 (loop for face in (face-list) do
|
|
1525 (init-face-from-resources face frame))
|
|
1526 ;; Then do any frame-specific initialization.
|
|
1527 (cond ((eq 'x (frame-type frame))
|
502
|
1528 (declare-fboundp (x-init-frame-faces frame)))
|
462
|
1529 ((eq 'gtk (frame-type frame))
|
502
|
1530 (declare-fboundp (gtk-init-frame-faces frame)))
|
428
|
1531 ((eq 'mswindows (frame-type frame))
|
502
|
1532 (declare-fboundp (mswindows-init-frame-faces frame)))
|
428
|
1533 ;; Is there anything which should be done for TTY's?
|
|
1534 )))
|
|
1535
|
|
1536 ;; #### This is somewhat X-specific, and is called when the first
|
|
1537 ;; X device is created (even if there were TTY devices created
|
|
1538 ;; beforehand). The concept of resources has not been generalized
|
|
1539 ;; outside of X-specificness, so we have to live with this
|
|
1540 ;; breach of device-independence.
|
|
1541
|
|
1542 (defun init-global-faces ()
|
|
1543 ;; Look for global face resources.
|
|
1544 (loop for face in (face-list) do
|
|
1545 (init-face-from-resources face 'global))
|
|
1546 ;; Further X frobbing.
|
502
|
1547 (and (featurep 'x) (declare-fboundp (x-init-global-faces)))
|
|
1548 (and (featurep 'gtk) (declare-fboundp (gtk-init-global-faces)))
|
462
|
1549
|
428
|
1550 ;; for bold and the like, make the global specification be bold etc.
|
|
1551 ;; if the user didn't already specify a value. These will also be
|
|
1552 ;; frobbed further in init-other-random-faces.
|
|
1553 (unless (face-font 'bold 'global)
|
|
1554 (make-face-bold 'bold 'global))
|
|
1555 ;;
|
|
1556 (unless (face-font 'italic 'global)
|
|
1557 (make-face-italic 'italic 'global))
|
|
1558 ;;
|
|
1559 (unless (face-font 'bold-italic 'global)
|
|
1560 (make-face-bold-italic 'bold-italic 'global)
|
|
1561 (unless (face-font 'bold-italic 'global)
|
|
1562 (copy-face 'bold 'bold-italic)
|
|
1563 (make-face-italic 'bold-italic)))
|
|
1564
|
|
1565 (when (face-equal 'bold 'bold-italic)
|
|
1566 (copy-face 'italic 'bold-italic)
|
|
1567 (make-face-bold 'bold-italic))
|
|
1568 ;;
|
|
1569 ;; Nothing more to be done for X or TTY's?
|
|
1570 )
|
|
1571
|
|
1572
|
|
1573 ;; These warnings are there for a reason. Just specify your fonts
|
|
1574 ;; correctly. Deal with it. Additionally, one can use
|
|
1575 ;; `log-warning-minimum-level' instead of this.
|
|
1576 ;(defvar inhibit-font-complaints nil
|
|
1577 ; "Whether to suppress complaints about incomplete sets of fonts.")
|
|
1578
|
|
1579 (defun face-complain-about-font (face device)
|
|
1580 (if (symbolp face) (setq face (symbol-name face)))
|
|
1581 ;; (if (not inhibit-font-complaints)
|
|
1582 (display-warning
|
|
1583 'font
|
|
1584 (let ((default-name (face-font-name 'default device)))
|
|
1585 (format "%s: couldn't deduce %s %s version of the font
|
|
1586 %S.
|
|
1587
|
|
1588 Please specify X resources to make the %s face
|
|
1589 visually distinguishable from the default face.
|
|
1590 For example, you could add one of the following to $HOME/Emacs:
|
|
1591
|
|
1592 Emacs.%s.attributeFont: -dt-*-medium-i-*
|
|
1593 or
|
|
1594 Emacs.%s.attributeForeground: hotpink\n"
|
|
1595 invocation-name
|
|
1596 (if (string-match "\\`[aeiouAEIOU]" face) "an" "a")
|
|
1597 face
|
|
1598 default-name
|
|
1599 face
|
|
1600 face
|
|
1601 face
|
|
1602 ))))
|
|
1603
|
|
1604
|
|
1605 ;; #### This is quite a mess. We should use the custom mechanism for
|
|
1606 ;; most of this stuff. Currently we don't do it, because Custom
|
|
1607 ;; doesn't use specifiers (yet.) FSF does it the Right Way.
|
|
1608
|
|
1609 ;; For instance, the definition of `bold' should be something like
|
|
1610 ;; (defface bold ((t (:bold t))) "Bold text.") -- and `:bold t' should
|
|
1611 ;; make sure that everything works properly.
|
|
1612
|
|
1613 (defun init-other-random-faces (device)
|
|
1614 "Initialize the colors and fonts of the bold, italic, bold-italic,
|
|
1615 zmacs-region, list-mode-item-selected, highlight, primary-selection,
|
|
1616 secondary-selection, and isearch faces when each device is created. If
|
|
1617 you want to add code to do stuff like this, use the create-device-hook."
|
|
1618
|
|
1619 ;; try to make 'bold look different from the default on this device.
|
|
1620 ;; If that doesn't work at all, then issue a warning.
|
|
1621 (unless (face-differs-from-default-p 'bold device)
|
|
1622 (make-face-bold 'bold device)
|
|
1623 (unless (face-differs-from-default-p 'bold device)
|
|
1624 (make-face-unbold 'bold device)
|
|
1625 (unless (face-differs-from-default-p 'bold device)
|
|
1626 ;; the luser specified one of the bogus font names
|
|
1627 (face-complain-about-font 'bold device))))
|
|
1628
|
|
1629 ;; Similar for italic.
|
|
1630 ;; It's unreasonable to expect to be able to make a font italic all
|
|
1631 ;; the time. For many languages, italic is an alien concept.
|
|
1632 ;; Basically, because italic is not a globally meaningful concept,
|
440
|
1633 ;; the use of the italic face should really be obsoleted.
|
428
|
1634
|
|
1635 ;; I disagree with above. In many languages, the concept of capital
|
|
1636 ;; letters is just as alien, and yet we use them. Italic is here to
|
|
1637 ;; stay. -hniksic
|
|
1638
|
|
1639 ;; In a Solaris Japanese environment, there just aren't any italic
|
|
1640 ;; fonts - period. CDE recognizes this reality, and fonts
|
|
1641 ;; -dt-interface user-medium-r-normal-*-*-*-*-*-*-*-*-* don't come
|
|
1642 ;; in italic versions. So we first try to make the font bold before
|
|
1643 ;; complaining.
|
|
1644 (unless (face-differs-from-default-p 'italic device)
|
|
1645 (make-face-italic 'italic device)
|
|
1646 (unless (face-differs-from-default-p 'italic device)
|
|
1647 (make-face-bold 'italic device)
|
|
1648 (unless (face-differs-from-default-p 'italic device)
|
|
1649 (face-complain-about-font 'italic device))))
|
|
1650
|
|
1651 ;; similar for bold-italic.
|
|
1652 (unless (face-differs-from-default-p 'bold-italic device)
|
|
1653 (make-face-bold-italic 'bold-italic device)
|
|
1654 ;; if we couldn't get a bold-italic version, try just bold.
|
|
1655 (unless (face-differs-from-default-p 'bold-italic device)
|
|
1656 (make-face-bold 'bold-italic device)
|
|
1657 ;; if we couldn't get bold or bold-italic, then that's probably because
|
|
1658 ;; the default font is bold, so make the `bold-italic' face be unbold.
|
|
1659 (unless (face-differs-from-default-p 'bold-italic device)
|
|
1660 (make-face-unbold 'bold-italic device)
|
|
1661 (make-face-italic 'bold-italic device)
|
|
1662 (unless (face-differs-from-default-p 'bold-italic device)
|
|
1663 ;; if that didn't work, try plain italic
|
|
1664 ;; (can this ever happen? what the hell.)
|
|
1665 (make-face-italic 'bold-italic device)
|
|
1666 (unless (face-differs-from-default-p 'bold-italic device)
|
|
1667 ;; then bitch and moan.
|
|
1668 (face-complain-about-font 'bold-italic device))))))
|
|
1669
|
|
1670 ;; Set the text-cursor colors unless already specified.
|
|
1671 (when (and (not (eq 'tty (device-type device)))
|
|
1672 (not (face-background 'text-cursor 'global))
|
|
1673 (face-property-equal 'text-cursor 'default 'background device))
|
|
1674 (set-face-background 'text-cursor [default foreground] 'global
|
|
1675 nil 'append))
|
|
1676 (when (and (not (eq 'tty (device-type device)))
|
|
1677 (not (face-foreground 'text-cursor 'global))
|
|
1678 (face-property-equal 'text-cursor 'default 'foreground device))
|
|
1679 (set-face-foreground 'text-cursor [default background] 'global
|
|
1680 nil 'append))
|
|
1681 )
|
|
1682
|
442
|
1683 ;; New function with 20.1, suggested by Per Abrahamsen, coded by Kyle
|
|
1684 ;; Jones and Hrvoje Niksic.
|
428
|
1685 (defun set-face-stipple (face pixmap &optional frame)
|
|
1686 "Change the stipple pixmap of FACE to PIXMAP.
|
|
1687 This is an Emacs compatibility function; consider using
|
|
1688 set-face-background-pixmap instead.
|
|
1689
|
|
1690 PIXMAP should be a string, the name of a file of pixmap data.
|
442
|
1691 The directories listed in the variables `x-bitmap-file-path' and
|
|
1692 `mswindows-bitmap-file-path' under X and MS Windows respectively
|
|
1693 are searched.
|
428
|
1694
|
|
1695 Alternatively, PIXMAP may be a list of the form (WIDTH HEIGHT
|
|
1696 DATA) where WIDTH and HEIGHT are the size in pixels, and DATA is
|
|
1697 a string, containing the raw bits of the bitmap. XBM data is
|
|
1698 expected in this case, other types of image data will not work.
|
|
1699
|
|
1700 If the optional FRAME argument is provided, change only
|
|
1701 in that frame; otherwise change each frame."
|
|
1702 (while (not (find-face face))
|
446
|
1703 (setq face (wrong-type-argument 'facep face)))
|
502
|
1704 (let ((bitmap-path
|
|
1705 (ecase (console-type)
|
|
1706 (x (declare-boundp x-bitmap-file-path))
|
|
1707 (mswindows (declare-boundp mswindows-bitmap-file-path))))
|
442
|
1708 instantiator)
|
|
1709 (while
|
|
1710 (null
|
|
1711 (setq instantiator
|
|
1712 (cond ((stringp pixmap)
|
|
1713 (let ((file (if (file-name-absolute-p pixmap)
|
|
1714 pixmap
|
|
1715 (locate-file pixmap bitmap-path
|
|
1716 '(".xbm" "")))))
|
|
1717 (and file
|
|
1718 `[xbm :file ,file])))
|
|
1719 ((and (listp pixmap) (= (length pixmap) 3))
|
|
1720 `[xbm :data ,pixmap])
|
|
1721 (t nil))))
|
|
1722 ;; We're signaling a continuable error; let's make sure the
|
|
1723 ;; function `stipple-pixmap-p' at least exists.
|
|
1724 (flet ((stipple-pixmap-p (pixmap)
|
|
1725 (or (stringp pixmap)
|
|
1726 (and (listp pixmap) (= (length pixmap) 3)))))
|
|
1727 (setq pixmap (signal 'wrong-type-argument
|
|
1728 (list 'stipple-pixmap-p pixmap)))))
|
446
|
1729 (check-type frame (or null frame))
|
442
|
1730 (set-face-background-pixmap face instantiator frame)))
|
428
|
1731
|
|
1732
|
|
1733 ;; Create the remaining standard faces now. This way, packages that we dump
|
|
1734 ;; can reference these faces as parents.
|
|
1735 ;;
|
|
1736 ;; The default, modeline, left-margin, right-margin, text-cursor,
|
|
1737 ;; and pointer faces are created in C.
|
|
1738
|
|
1739 (make-face 'bold "Bold text.")
|
|
1740 (make-face 'italic "Italic text.")
|
|
1741 (make-face 'bold-italic "Bold-italic text.")
|
|
1742 (make-face 'underline "Underlined text.")
|
|
1743 (or (face-differs-from-default-p 'underline)
|
|
1744 (set-face-underline-p 'underline t 'global '(default)))
|
|
1745 (make-face 'zmacs-region "Used on highlightes region between point and mark.")
|
|
1746 (make-face 'isearch "Used on region matched by isearch.")
|
|
1747 (make-face 'isearch-secondary "Face to use for highlighting all matches.")
|
|
1748 (make-face 'list-mode-item-selected
|
|
1749 "Face for the selected list item in list-mode.")
|
|
1750 (make-face 'highlight "Highlight face.")
|
|
1751 (make-face 'primary-selection "Primary selection face.")
|
|
1752 (make-face 'secondary-selection "Secondary selection face.")
|
|
1753
|
|
1754 ;; Several useful color faces.
|
|
1755 (eval-when-compile (load "cl-macs"))
|
|
1756 (dolist (color '(red green blue yellow))
|
|
1757 (make-face color (concat (symbol-name color) " text."))
|
|
1758 (set-face-foreground color (symbol-name color) nil 'color))
|
|
1759
|
|
1760 ;; Make some useful faces. This happens very early, before creating
|
|
1761 ;; the first non-stream device.
|
|
1762
|
|
1763 (set-face-background 'text-cursor
|
|
1764 '(((x default) . "Red3")
|
|
1765 ((mswindows default) . "Red3"))
|
|
1766 'global)
|
|
1767
|
|
1768 ;; some older X servers don't recognize "darkseagreen2"
|
|
1769 (set-face-background 'highlight
|
|
1770 '(((x default color) . "darkseagreen2")
|
|
1771 ((x default color) . "green")
|
|
1772 ((x default grayscale) . "gray53")
|
|
1773 ((mswindows default color) . "darkseagreen2")
|
|
1774 ((mswindows default color) . "green")
|
|
1775 ((mswindows default grayscale) . "gray53"))
|
|
1776 'global)
|
|
1777 (set-face-background-pixmap 'highlight
|
|
1778 '(((x default mono) . "gray1")
|
462
|
1779 ;; ((gtk default mono) . "gray1")
|
428
|
1780 ((mswindows default mono) . "gray1"))
|
|
1781 'global)
|
|
1782
|
|
1783 (set-face-background 'zmacs-region
|
|
1784 '(((x default color) . "gray65")
|
|
1785 ((x default grayscale) . "gray65")
|
|
1786 ((mswindows default color) . "gray65")
|
|
1787 ((mswindows default grayscale) . "gray65"))
|
|
1788 'global)
|
|
1789 (set-face-background-pixmap 'zmacs-region
|
|
1790 '(((x default mono) . "gray3")
|
462
|
1791 ;; ((gtk default mono) . "gray3")
|
428
|
1792 ((mswindows default mono) . "gray3"))
|
|
1793 'global)
|
|
1794
|
|
1795 (set-face-background 'list-mode-item-selected
|
|
1796 '(((x default color) . "gray68")
|
|
1797 ((x default grayscale) . "gray68")
|
|
1798 ((x default mono) . [default foreground])
|
462
|
1799 ;; ((gtk default color) . "gray68")
|
|
1800 ;; ((gtk default grayscale) . "gray68")
|
|
1801 ;; ((gtk default mono) . [default foreground])
|
428
|
1802 ((mswindows default color) . "gray68")
|
|
1803 ((mswindows default grayscale) . "gray68")
|
|
1804 ((mswindows default mono) . [default foreground]))
|
|
1805 'global)
|
|
1806 (set-face-foreground 'list-mode-item-selected
|
|
1807 '(((x default mono) . [default background])
|
|
1808 ((mswindows default mono) . [default background]))
|
|
1809 'global)
|
|
1810
|
|
1811 (set-face-background 'primary-selection
|
|
1812 '(((x default color) . "gray65")
|
|
1813 ((x default grayscale) . "gray65")
|
|
1814 ((mswindows default color) . "gray65")
|
|
1815 ((mswindows default grayscale) . "gray65"))
|
|
1816 'global)
|
|
1817 (set-face-background-pixmap 'primary-selection
|
|
1818 '(((x default mono) . "gray3")
|
462
|
1819 ;;((gtk default mono) . "gray3")
|
428
|
1820 ((mswindows default mono) . "gray3"))
|
|
1821 'global)
|
|
1822
|
|
1823 (set-face-background 'secondary-selection
|
|
1824 '(((x default color) . "paleturquoise")
|
|
1825 ((x default color) . "green")
|
|
1826 ((x default grayscale) . "gray53")
|
462
|
1827 ;;((gtk default color) . "paleturquoise")
|
|
1828 ;;((gtk default color) . "green")
|
|
1829 ;;((gtk default grayscale) . "gray53")
|
428
|
1830 ((mswindows default color) . "paleturquoise")
|
|
1831 ((mswindows default color) . "green")
|
|
1832 ((mswindows default grayscale) . "gray53"))
|
|
1833 'global)
|
|
1834 (set-face-background-pixmap 'secondary-selection
|
|
1835 '(((x default mono) . "gray1")
|
462
|
1836 ;;((gtk default mono) . "gray1")
|
428
|
1837 ((mswindows default mono) . "gray1"))
|
|
1838 'global)
|
|
1839
|
|
1840 (set-face-background 'isearch
|
|
1841 '(((x default color) . "paleturquoise")
|
|
1842 ((x default color) . "green")
|
462
|
1843 ;;((gtk default color) . "paleturquoise")
|
|
1844 ;;((gtk default color) . "green")
|
428
|
1845 ((mswindows default color) . "paleturquoise")
|
|
1846 ((mswindows default color) . "green"))
|
|
1847 'global)
|
|
1848
|
|
1849 ;; #### This should really, I mean *really*, be converted to some form
|
|
1850 ;; of `defface' one day.
|
|
1851 (set-face-foreground 'isearch-secondary
|
|
1852 '(((x default color) . "red3")
|
|
1853 ((mswindows default color) . "red3"))
|
|
1854 'global)
|
|
1855
|
|
1856 ;; Define some logical color names to be used when reading the pixmap files.
|
|
1857 (if (featurep 'xpm)
|
|
1858 (setq xpm-color-symbols
|
|
1859 (list
|
444
|
1860 '("foreground" (face-foreground 'default))
|
|
1861 '("background" (face-background 'default))
|
|
1862 '("backgroundToolBarColor"
|
|
1863 (or
|
|
1864 (and
|
|
1865 (featurep 'x)
|
|
1866 (x-get-resource "backgroundToolBarColor"
|
|
1867 "BackgroundToolBarColor" 'string
|
|
1868 nil nil 'warn))
|
428
|
1869
|
444
|
1870 (face-background 'toolbar)))
|
|
1871 '("foregroundToolBarColor"
|
|
1872 (or
|
|
1873 (and
|
|
1874 (featurep 'x)
|
|
1875 (x-get-resource "foregroundToolBarColor"
|
|
1876 "ForegroundToolBarColor" 'string
|
|
1877 nil nil 'warn))
|
|
1878 (face-foreground 'toolbar)))
|
428
|
1879 )))
|
|
1880
|
|
1881 (when (featurep 'tty)
|
|
1882 (set-face-highlight-p 'bold t 'global '(default tty))
|
|
1883 (set-face-underline-p 'italic t 'global '(default tty))
|
|
1884 (set-face-highlight-p 'bold-italic t 'global '(default tty))
|
|
1885 (set-face-underline-p 'bold-italic t 'global '(default tty))
|
|
1886 (set-face-highlight-p 'highlight t 'global '(default tty))
|
|
1887 (set-face-reverse-p 'text-cursor t 'global '(default tty))
|
|
1888 (set-face-reverse-p 'modeline t 'global '(default tty))
|
|
1889 (set-face-reverse-p 'zmacs-region t 'global '(default tty))
|
|
1890 (set-face-reverse-p 'primary-selection t 'global '(default tty))
|
|
1891 (set-face-underline-p 'secondary-selection t 'global '(default tty))
|
|
1892 (set-face-reverse-p 'list-mode-item-selected t 'global '(default tty))
|
|
1893 (set-face-reverse-p 'isearch t 'global '(default tty))
|
|
1894 )
|
|
1895
|
|
1896 ;;; faces.el ends here
|