auto upstream
[emacs.git] / lisp / cus-face.el
blobe1f1668d1ad33f2eac3bb00cb621bdb1a207e851
1 ;;; cus-face.el --- customization support for faces
2 ;;
3 ;; Copyright (C) 1996-1997, 1999-2013 Free Software Foundation, Inc.
4 ;;
5 ;; Author: Per Abrahamsen <abraham@dina.kvl.dk>
6 ;; Keywords: help, faces
7 ;; Package: emacs
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;;; Commentary:
26 ;; See `custom.el'.
28 ;;; Code:
30 (defalias 'custom-facep 'facep)
32 ;;; Declaring a face.
34 (defun custom-declare-face (face spec doc &rest args)
35 "Like `defface', but with FACE evaluated as a normal argument."
36 (unless (get face 'face-defface-spec)
37 (face-spec-set face (purecopy spec) 'face-defface-spec)
38 (push (cons 'defface face) current-load-list)
39 (when doc
40 (set-face-documentation face (purecopy doc)))
41 (custom-handle-all-keywords face args 'custom-face)
42 (run-hooks 'custom-define-hook))
43 face)
45 ;;; Face attributes.
47 (defconst custom-face-attributes
48 '((:family
49 (string :tag "Font Family"
50 :help-echo "Font family or fontset alias name."))
52 (:foundry
53 (string :tag "Font Foundry"
54 :help-echo "Font foundry name."))
56 (:width
57 (choice :tag "Width"
58 :help-echo "Font width."
59 :value normal ; default
60 (const :tag "compressed" condensed)
61 (const :tag "condensed" condensed)
62 (const :tag "demiexpanded" semi-expanded)
63 (const :tag "expanded" expanded)
64 (const :tag "extracondensed" extra-condensed)
65 (const :tag "extraexpanded" extra-expanded)
66 (const :tag "medium" normal)
67 (const :tag "narrow" condensed)
68 (const :tag "normal" normal)
69 (const :tag "regular" normal)
70 (const :tag "semicondensed" semi-condensed)
71 (const :tag "semiexpanded" semi-expanded)
72 (const :tag "ultracondensed" ultra-condensed)
73 (const :tag "ultraexpanded" ultra-expanded)
74 (const :tag "wide" extra-expanded)))
76 (:height
77 (choice :tag "Height"
78 :help-echo "Face's font height."
79 :value 1.0 ; default
80 (integer :tag "Height in 1/10 pt")
81 (number :tag "Scale" 1.0)))
83 (:weight
84 (choice :tag "Weight"
85 :help-echo "Font weight."
86 :value normal ; default
87 (const :tag "black" ultra-bold)
88 (const :tag "bold" bold)
89 (const :tag "book" semi-light)
90 (const :tag "demibold" semi-bold)
91 (const :tag "extralight" extra-light)
92 (const :tag "extrabold" extra-bold)
93 (const :tag "heavy" extra-bold)
94 (const :tag "light" light)
95 (const :tag "medium" normal)
96 (const :tag "normal" normal)
97 (const :tag "regular" normal)
98 (const :tag "semibold" semi-bold)
99 (const :tag "semilight" semi-light)
100 (const :tag "ultralight" ultra-light)
101 (const :tag "ultrabold" ultra-bold)
102 (const :tag "thin" thin)))
104 (:slant
105 (choice :tag "Slant"
106 :help-echo "Font slant."
107 :value normal ; default
108 (const :tag "italic" italic)
109 (const :tag "oblique" oblique)
110 (const :tag "normal" normal)
111 (const :tag "roman" roman)))
113 (:underline
114 (choice :tag "Underline"
115 :help-echo "Control text underlining."
116 (const :tag "Off" nil)
117 (list :tag "On"
118 :value (:color foreground-color :style line)
119 (const :format "" :value :color)
120 (choice :tag "Color"
121 (const :tag "Foreground Color" foreground-color)
122 color)
123 (const :format "" :value :style)
124 (choice :tag "Style"
125 (const :tag "Line" line)
126 (const :tag "Wave" wave))))
127 ;; filter to make value suitable for customize
128 (lambda (real-value)
129 (and real-value
130 (let ((color
131 (or (and (consp real-value) (plist-get real-value :color))
132 (and (stringp real-value) real-value)
133 'foreground-color))
134 (style
135 (or (and (consp real-value) (plist-get real-value :style))
136 'line)))
137 (list :color color :style style))))
138 ;; filter to make customized-value suitable for storing
139 (lambda (cus-value)
140 (and cus-value
141 (let ((color (plist-get cus-value :color))
142 (style (plist-get cus-value :style)))
143 (cond ((eq style 'line)
144 ;; Use simple value for default style
145 (if (eq color 'foreground-color) t color))
147 `(:color ,color :style ,style)))))))
149 (:overline
150 (choice :tag "Overline"
151 :help-echo "Control text overlining."
152 (const :tag "Off" nil)
153 (const :tag "On" t)
154 (color :tag "Colored")))
156 (:strike-through
157 (choice :tag "Strike-through"
158 :help-echo "Control text strike-through."
159 (const :tag "Off" nil)
160 (const :tag "On" t)
161 (color :tag "Colored")))
163 (:box
164 ;; Fixme: this can probably be done better.
165 (choice :tag "Box around text"
166 :help-echo "Control box around text."
167 (const :tag "Off" nil)
168 (list :tag "Box"
169 :value (:line-width 2 :color "grey75" :style released-button)
170 (const :format "" :value :line-width)
171 (integer :tag "Width")
172 (const :format "" :value :color)
173 (choice :tag "Color" (const :tag "*" nil) color)
174 (const :format "" :value :style)
175 (choice :tag "Style"
176 (const :tag "Raised" released-button)
177 (const :tag "Sunken" pressed-button)
178 (const :tag "None" nil))))
179 ;; filter to make value suitable for customize
180 (lambda (real-value)
181 (and real-value
182 (let ((lwidth
183 (or (and (consp real-value)
184 (plist-get real-value :line-width))
185 (and (integerp real-value) real-value)
187 (color
188 (or (and (consp real-value) (plist-get real-value :color))
189 (and (stringp real-value) real-value)
190 nil))
191 (style
192 (and (consp real-value) (plist-get real-value :style))))
193 (list :line-width lwidth :color color :style style))))
194 ;; filter to make customized-value suitable for storing
195 (lambda (cus-value)
196 (and cus-value
197 (let ((lwidth (plist-get cus-value :line-width))
198 (color (plist-get cus-value :color))
199 (style (plist-get cus-value :style)))
200 (cond ((and (null color) (null style))
201 lwidth)
202 ((and (null lwidth) (null style))
203 ;; actually can't happen, because LWIDTH is always an int
204 color)
206 ;; Keep as a plist, but remove null entries
207 (nconc (and lwidth `(:line-width ,lwidth))
208 (and color `(:color ,color))
209 (and style `(:style ,style)))))))))
211 (:inverse-video
212 (choice :tag "Inverse-video"
213 :help-echo "Control whether text should be in inverse-video."
214 (const :tag "Off" nil)
215 (const :tag "On" t)))
217 (:foreground
218 (color :tag "Foreground"
219 :help-echo "Set foreground color (name or #RRGGBB hex spec)."))
221 (:background
222 (color :tag "Background"
223 :help-echo "Set background color (name or #RRGGBB hex spec)."))
225 (:stipple
226 (choice :tag "Stipple"
227 :help-echo "Background bit-mask"
228 (const :tag "None" nil)
229 (file :tag "File"
230 :help-echo "Name of bitmap file."
231 :must-match t)))
233 (:inherit
234 (repeat :tag "Inherit"
235 :help-echo "List of faces to inherit attributes from."
236 (face :Tag "Face" default))
237 ;; filter to make value suitable for customize
238 (lambda (real-value)
239 (cond ((or (null real-value) (eq real-value 'unspecified))
240 nil)
241 ((symbolp real-value)
242 (list real-value))
244 real-value)))
245 ;; filter to make customized-value suitable for storing
246 (lambda (cus-value)
247 (if (and (consp cus-value) (null (cdr cus-value)))
248 (car cus-value)
249 cus-value))))
251 "Alist of face attributes.
253 The elements are of the form (KEY TYPE PRE-FILTER POST-FILTER),
254 where KEY is the name of the attribute, TYPE is a widget type for
255 editing the attribute, PRE-FILTER is a function to make the attribute's
256 value suitable for the customization widget, and POST-FILTER is a
257 function to make the customized value suitable for storing. PRE-FILTER
258 and POST-FILTER are optional.
260 The PRE-FILTER should take a single argument, the attribute value as
261 stored, and should return a value for customization (using the
262 customization type TYPE).
264 The POST-FILTER should also take a single argument, the value after
265 being customized, and should return a value suitable for setting the
266 given face attribute.")
268 (defun custom-face-attributes-get (face frame)
269 "For FACE on FRAME, return an alternating list describing its attributes.
270 The list has the form (KEYWORD VALUE KEYWORD VALUE...).
271 Each keyword should be listed in `custom-face-attributes'.
273 If FRAME is nil, use the global defaults for FACE."
274 (let ((attrs custom-face-attributes)
275 plist)
276 (while attrs
277 (let* ((attribute (car (car attrs)))
278 (value (face-attribute face attribute frame)))
279 (setq attrs (cdr attrs))
280 (unless (or (eq value 'unspecified)
281 (and (null value) (memq attribute '(:inherit))))
282 (setq plist (cons attribute (cons value plist))))))
283 plist))
285 ;;; Initializing.
287 (defun custom-set-faces (&rest args)
288 "Initialize faces according to user preferences.
289 This associates the settings with the `user' theme.
290 The arguments should be a list where each entry has the form:
292 (FACE SPEC [NOW [COMMENT]])
294 SPEC is stored as the saved value for FACE, as well as the value for the
295 `user' theme. The `user' theme is one of the default themes known to Emacs.
296 See `custom-known-themes' for more information on the known themes.
297 See `custom-theme-set-faces' for more information on the interplay
298 between themes and faces.
299 See `defface' for the format of SPEC.
301 If NOW is present and non-nil, FACE is created now, according to SPEC.
302 COMMENT is a string comment about FACE."
303 (apply 'custom-theme-set-faces 'user args))
305 (defun custom-theme-set-faces (theme &rest args)
306 "Initialize faces for theme THEME.
307 The arguments should be a list where each entry has the form:
309 (FACE SPEC [NOW [COMMENT]])
311 SPEC is stored as the saved value for FACE, as well as the value for the
312 `user' theme. The `user' theme is one of the default themes known to Emacs.
313 See `custom-known-themes' for more information on the known themes.
314 See `custom-theme-set-faces' for more information on the interplay
315 between themes and faces.
316 See `defface' for the format of SPEC.
318 If NOW is present and non-nil, FACE is created now, according to SPEC.
319 COMMENT is a string comment about FACE.
321 Several properties of THEME and FACE are used in the process:
323 If THEME property `theme-immediate' is non-nil, this is equivalent of
324 providing the NOW argument to all faces in the argument list: FACE is
325 created now.
327 SPEC itself is saved in FACE property `saved-face' and it is stored in
328 FACE's list property `theme-face' \(using `custom-push-theme')."
329 (custom-check-theme theme)
330 (let ((immediate (get theme 'theme-immediate)))
331 (dolist (entry args)
332 (unless (listp entry)
333 (error "Incompatible Custom theme spec"))
334 (let ((face (car entry))
335 (spec (nth 1 entry)))
336 ;; If FACE is actually an alias, customize the face it
337 ;; is aliased to.
338 (if (get face 'face-alias)
339 (setq face (get face 'face-alias)))
340 (if custom--inhibit-theme-enable
341 ;; Just update theme settings.
342 (custom-push-theme 'theme-face face theme 'set spec)
343 ;; Update theme settings and set the face spec.
344 (let ((now (nth 2 entry))
345 (comment (nth 3 entry))
346 (oldspec (get face 'theme-face)))
347 (when (not (and oldspec (eq 'user (caar oldspec))))
348 (put face 'saved-face spec)
349 (put face 'saved-face-comment comment))
350 (custom-push-theme 'theme-face face theme 'set spec)
351 (when (or now immediate)
352 (put face 'force-face (if now 'rogue 'immediate)))
353 (when (or now immediate (facep face))
354 (put face 'face-comment comment)
355 (face-spec-set face spec t))))))))
357 ;; XEmacs compatibility function. In XEmacs, when you reset a Custom
358 ;; Theme, you have to specify the theme to reset it to. We just apply
359 ;; the next theme.
360 (defun custom-theme-reset-faces (theme &rest args)
361 "Reset the specs in THEME of some faces to their specs in other themes.
362 Each of the arguments ARGS has this form:
364 (FACE IGNORED)
366 This means reset FACE. The argument IGNORED is ignored."
367 (custom-check-theme theme)
368 (dolist (arg args)
369 (custom-push-theme 'theme-face (car arg) theme 'reset)))
371 (defun custom-reset-faces (&rest args)
372 "Reset the specs of some faces to their specs in specified themes.
373 This creates settings in the `user' theme.
375 Each of the arguments ARGS has this form:
377 (FACE FROM-THEME)
379 This means reset FACE to its value in FROM-THEME."
380 (apply 'custom-theme-reset-faces 'user args))
382 ;;; The End.
384 (provide 'cus-face)
386 ;;; cus-face.el ends here