Update years in copyright notice; nfc.
[bpt/emacs.git] / lisp / cus-face.el
CommitLineData
e8af40ee 1;;; cus-face.el --- customization support for faces
d543e20b 2;;
0d30b337 3;; Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004,
aaef169d 4;; 2005, 2006 Free Software Foundation, Inc.
d543e20b
PA
5;;
6;; Author: Per Abrahamsen <abraham@dina.kvl.dk>
7;; Keywords: help, faces
d543e20b 8
6c283d44 9;; This file is part of GNU Emacs.
d543e20b 10
6c283d44
RS
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 2, or (at your option)
14;; any later version.
d543e20b 15
6c283d44
RS
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.
d543e20b 20
6c283d44
RS
21;; You should have received a copy of the GNU General Public License
22;; along with GNU Emacs; see the file COPYING. If not, write to the
086add15
LK
23;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24;; Boston, MA 02110-1301, USA.
d543e20b 25
6c283d44
RS
26;;; Commentary:
27;;
28;; See `custom.el'.
d543e20b 29
6c283d44 30;;; Code:
d543e20b 31
da0b1f56 32(defalias 'custom-facep 'facep)
ccd0d40c 33
d543e20b
PA
34;;; Declaring a face.
35
36;;;###autoload
37(defun custom-declare-face (face spec doc &rest args)
38 "Like `defface', but FACE is evaluated as a normal argument."
6c283d44 39 (unless (get face 'face-defface-spec)
d543e20b 40 (when (fboundp 'facep)
6c283d44 41 (unless (facep face)
d543e20b 42 ;; If the user has already created the face, respect that.
f4db5253 43 (let ((value (or (get face 'saved-face) spec)))
d543e20b
PA
44 ;; Create global face.
45 (make-empty-face face)
b5188bcd 46 ;; Create frame-local faces
f4db5253 47 (dolist (frame (frame-list))
971e48ca
RS
48 (face-spec-set face value frame)))
49 ;; When making a face after frames already exist
1505621c 50 (if (memq window-system '(x w32 mac))
971e48ca 51 (make-face-x-resource-internal face))))
b5188bcd
RS
52 ;; Don't record SPEC until we see it causes no errors.
53 (put face 'face-defface-spec spec)
4829145a 54 (push (cons 'defface face) current-load-list)
209ddde3 55 (when (and doc (null (face-documentation face)))
08449ec1 56 (set-face-documentation face (purecopy doc)))
d543e20b
PA
57 (custom-handle-all-keywords face args 'custom-face)
58 (run-hooks 'custom-define-hook))
59 face)
60
da0b1f56
GM
61;;; Face attributes.
62
1265f177 63;;;###autoload
d543e20b 64(defconst custom-face-attributes
da0b1f56 65 '((:family
c165ad40
MB
66 (string :tag "Font Family"
67 :help-echo "Font family or fontset alias name."))
a3997907 68
da0b1f56
GM
69 (:width
70 (choice :tag "Width"
71 :help-echo "Font width."
c165ad40 72 :value normal ; default
da0b1f56
GM
73 (const :tag "compressed" condensed)
74 (const :tag "condensed" condensed)
75 (const :tag "demiexpanded" semi-expanded)
76 (const :tag "expanded" expanded)
77 (const :tag "extracondensed" extra-condensed)
78 (const :tag "extraexpanded" extra-expanded)
79 (const :tag "medium" normal)
80 (const :tag "narrow" condensed)
81 (const :tag "normal" normal)
82 (const :tag "regular" normal)
83 (const :tag "semicondensed" semi-condensed)
84 (const :tag "semiexpanded" semi-expanded)
85 (const :tag "ultracondensed" ultra-condensed)
86 (const :tag "ultraexpanded" ultra-expanded)
51a1edab 87 (const :tag "wide" extra-expanded)))
71296446 88
da0b1f56
GM
89 (:height
90 (choice :tag "Height"
91 :help-echo "Face's font height."
c165ad40 92 :value 1.0 ; default
6bca3005 93 (integer :tag "Height in 1/10 pt")
51a1edab 94 (number :tag "Scale" 1.0)))
6bca3005 95
da0b1f56
GM
96 (:weight
97 (choice :tag "Weight"
98 :help-echo "Font weight."
c165ad40 99 :value normal ; default
992f7c96 100 (const :tag "black" ultra-bold)
da0b1f56
GM
101 (const :tag "bold" bold)
102 (const :tag "book" semi-light)
103 (const :tag "demibold" semi-bold)
104 (const :tag "extralight" extra-light)
105 (const :tag "extrabold" extra-bold)
106 (const :tag "heavy" extra-bold)
107 (const :tag "light" light)
108 (const :tag "medium" normal)
109 (const :tag "normal" normal)
110 (const :tag "regular" normal)
111 (const :tag "semibold" semi-bold)
112 (const :tag "semilight" semi-light)
113 (const :tag "ultralight" ultra-light)
51a1edab 114 (const :tag "ultrabold" ultra-bold)))
71296446 115
da0b1f56
GM
116 (:slant
117 (choice :tag "Slant"
118 :help-echo "Font slant."
c165ad40 119 :value normal ; default
da0b1f56
GM
120 (const :tag "italic" italic)
121 (const :tag "oblique" oblique)
51a1edab 122 (const :tag "normal" normal)))
71296446 123
da0b1f56
GM
124 (:underline
125 (choice :tag "Underline"
126 :help-echo "Control text underlining."
c165ad40 127 (const :tag "Off" nil)
da0b1f56 128 (const :tag "On" t)
51a1edab 129 (color :tag "Colored")))
71296446 130
da0b1f56
GM
131 (:overline
132 (choice :tag "Overline"
133 :help-echo "Control text overlining."
c165ad40 134 (const :tag "Off" nil)
da0b1f56 135 (const :tag "On" t)
51a1edab 136 (color :tag "Colored")))
71296446 137
da0b1f56
GM
138 (:strike-through
139 (choice :tag "Strike-through"
140 :help-echo "Control text strike-through."
c165ad40 141 (const :tag "Off" nil)
da0b1f56 142 (const :tag "On" t)
51a1edab 143 (color :tag "Colored")))
71296446 144
da0b1f56 145 (:box
1743c17a 146 ;; Fixme: this can probably be done better.
da0b1f56
GM
147 (choice :tag "Box around text"
148 :help-echo "Control box around text."
c165ad40 149 (const :tag "Off" nil)
da0b1f56 150 (list :tag "Box"
36b80a0d 151 :value (:line-width 2 :color "grey75" :style released-button)
1743c17a 152 (const :format "" :value :line-width)
da0b1f56 153 (integer :tag "Width")
1743c17a
DL
154 (const :format "" :value :color)
155 (choice :tag "Color" (const :tag "*" nil) color)
156 (const :format "" :value :style)
157 (choice :tag "Style"
158 (const :tag "Raised" released-button)
159 (const :tag "Sunken" pressed-button)
160 (const :tag "None" nil))))
51a1edab
MB
161 ;; filter to make value suitable for customize
162 (lambda (real-value)
c165ad40
MB
163 (and real-value
164 (let ((lwidth
165 (or (and (consp real-value)
166 (plist-get real-value :line-width))
167 (and (integerp real-value) real-value)
168 1))
169 (color
170 (or (and (consp real-value) (plist-get real-value :color))
171 (and (stringp real-value) real-value)
172 nil))
173 (style
174 (and (consp real-value) (plist-get real-value :style))))
175 (list :line-width lwidth :color color :style style))))
36b80a0d
MB
176 ;; filter to make customized-value suitable for storing
177 (lambda (cus-value)
c165ad40
MB
178 (and cus-value
179 (let ((lwidth (plist-get cus-value :line-width))
180 (color (plist-get cus-value :color))
181 (style (plist-get cus-value :style)))
182 (cond ((and (null color) (null style))
183 lwidth)
184 ((and (null lwidth) (null style))
185 ;; actually can't happen, because LWIDTH is always an int
186 color)
187 (t
188 ;; Keep as a plist, but remove null entries
189 (nconc (and lwidth `(:line-width ,lwidth))
190 (and color `(:color ,color))
191 (and style `(:style ,style)))))))))
71296446 192
da0b1f56
GM
193 (:inverse-video
194 (choice :tag "Inverse-video"
195 :help-echo "Control whether text should be in inverse-video."
c165ad40
MB
196 (const :tag "Off" nil)
197 (const :tag "On" t)))
71296446 198
da0b1f56 199 (:foreground
c165ad40 200 (color :tag "Foreground"
4bbe6176 201 :help-echo "Set foreground color (name or #RRGGBB hex spec)."))
71296446 202
da0b1f56 203 (:background
c165ad40 204 (color :tag "Background"
4bbe6176 205 :help-echo "Set background color (name or #RRGGBB hex spec)."))
71296446 206
da0b1f56
GM
207 (:stipple
208 (choice :tag "Stipple"
675f1fcb 209 :help-echo "Background bit-mask"
c165ad40 210 (const :tag "None" nil)
675f1fcb
MB
211 (file :tag "File"
212 :help-echo "Name of bitmap file."
213 :must-match t)))
6bca3005
MB
214
215 (:inherit
216 (repeat :tag "Inherit"
217 :help-echo "List of faces to inherit attributes from."
218 (face :Tag "Face" default))
51a1edab
MB
219 ;; filter to make value suitable for customize
220 (lambda (real-value)
221 (cond ((or (null real-value) (eq real-value 'unspecified))
222 nil)
223 ((symbolp real-value)
224 (list real-value))
225 (t
226 real-value)))
227 ;; filter to make customized-value suitable for storing
228 (lambda (cus-value)
229 (if (and (consp cus-value) (null (cdr cus-value)))
230 (car cus-value)
231 cus-value))))
71296446 232
da0b1f56
GM
233 "Alist of face attributes.
234
51a1edab
MB
235The elements are of the form (KEY TYPE PRE-FILTER POST-FILTER),
236where KEY is the name of the attribute, TYPE is a widget type for
237editing the attribute, PRE-FILTER is a function to make the attribute's
238value suitable for the customization widget, and POST-FILTER is a
239function to make the customized value suitable for storing. PRE-FILTER
240and POST-FILTER are optional.
d543e20b 241
51a1edab
MB
242The PRE-FILTER should take a single argument, the attribute value as
243stored, and should return a value for customization (using the
244customization type TYPE).
d543e20b 245
51a1edab
MB
246The POST-FILTER should also take a single argument, the value after
247being customized, and should return a value suitable for setting the
248given face attribute.")
d543e20b
PA
249
250(defun custom-face-attributes-get (face frame)
6c283d44
RS
251 "For FACE on FRAME, return an alternating list describing its attributes.
252The list has the form (KEYWORD VALUE KEYWORD VALUE...).
d543e20b
PA
253Each keyword should be listed in `custom-face-attributes'.
254
6c283d44 255If FRAME is nil, use the global defaults for FACE."
da0b1f56
GM
256 (let ((attrs custom-face-attributes)
257 plist)
258 (while attrs
259 (let* ((attribute (car (car attrs)))
260 (value (face-attribute face attribute frame)))
261 (setq attrs (cdr attrs))
6bca3005
MB
262 (unless (or (eq value 'unspecified)
263 (and (null value) (memq attribute '(:inherit))))
da0b1f56
GM
264 (setq plist (cons attribute (cons value plist))))))
265 plist))
d543e20b 266
d543e20b
PA
267;;; Initializing.
268
d543e20b
PA
269;;;###autoload
270(defun custom-set-faces (&rest args)
271 "Initialize faces according to user preferences.
a3997907
RS
272This associates the settings with the `user' theme.
273The arguments should be a list where each entry has the form:
274
275 (FACE SPEC [NOW [COMMENT]])
276
277SPEC is stored as the saved value for FACE, as well as the value for the
278`user' theme. The `user' theme is one of the default themes known to Emacs.
279See `custom-known-themes' for more information on the known themes.
280See `custom-theme-set-faces' for more information on the interplay
281between themes and faces.
282See `defface' for the format of SPEC.
283
284If NOW is present and non-nil, FACE is created now, according to SPEC.
285COMMENT is a string comment about FACE."
286 (apply 'custom-theme-set-faces 'user args))
287
288(defun custom-theme-set-faces (theme &rest args)
289 "Initialize faces for theme THEME.
d543e20b
PA
290The arguments should be a list where each entry has the form:
291
1743c17a 292 (FACE SPEC [NOW [COMMENT]])
d543e20b 293
a3997907
RS
294SPEC 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.
296See `custom-known-themes' for more information on the known themes.
297See `custom-theme-set-faces' for more information on the interplay
298between themes and faces.
299See `defface' for the format of SPEC.
300
6c283d44 301If NOW is present and non-nil, FACE is created now, according to SPEC.
1743c17a 302COMMENT is a string comment about FACE.
d543e20b 303
a3997907
RS
304Several properties of THEME and FACE are used in the process:
305
306If THEME property `theme-immediate' is non-nil, this is equivalent of
307providing the NOW argument to all faces in the argument list: FACE is
308created now. The only difference is FACE property `force-face': if NOW
309is non-nil, FACE property `force-face' is set to the symbol `rogue', else
310if THEME property `theme-immediate' is non-nil, FACE property `force-face'
311is set to the symbol `immediate'.
312
313SPEC itself is saved in FACE property `saved-face' and it is stored in
314FACE's list property `theme-face' \(using `custom-push-theme')."
315 (custom-check-theme theme)
316 (let ((immediate (get theme 'theme-immediate)))
317 (while args
318 (let ((entry (car args)))
319 (if (listp entry)
320 (let ((face (nth 0 entry))
321 (spec (nth 1 entry))
322 (now (nth 2 entry))
e335f09e
CY
323 (comment (nth 3 entry))
324 oldspec)
403546cb
LT
325 ;; If FACE is actually an alias, customize the face it
326 ;; is aliased to.
327 (if (get face 'face-alias)
328 (setq face (get face 'face-alias)))
e335f09e
CY
329
330 (setq oldspec (get face 'theme-face))
331 (when (not (and oldspec (eq 'user (caar oldspec))))
332 (put face 'saved-face spec)
333 (put face 'saved-face-comment comment))
334
a3997907
RS
335 (custom-push-theme 'theme-face face theme 'set spec)
336 (when (or now immediate)
337 (put face 'force-face (if now 'rogue 'immediate)))
338 (when (or now immediate (facep face))
339 (unless (facep face)
340 (make-empty-face face))
341 (put face 'face-comment comment)
342 (face-spec-set face spec))
d543e20b
PA
343 (setq args (cdr args)))
344 ;; Old format, a plist of FACE SPEC pairs.
345 (let ((face (nth 0 args))
346 (spec (nth 1 args)))
403546cb
LT
347 (if (get face 'face-alias)
348 (setq face (get face 'face-alias)))
a3997907
RS
349 (put face 'saved-face spec)
350 (custom-push-theme 'theme-face face theme 'set spec))
351 (setq args (cdr (cdr args))))))))
352
d358aa10
CY
353;; XEmacs compability function. In XEmacs, when you reset a Custom
354;; Theme, you have to specify the theme to reset it to. We just apply
355;; the next theme.
a3997907
RS
356;;;###autoload
357(defun custom-theme-reset-faces (theme &rest args)
2c9e973f
RS
358 "Reset the specs in THEME of some faces to their specs in other themes.
359Each of the arguments ARGS has this form:
a3997907 360
d358aa10 361 (FACE IGNORED)
a3997907 362
d358aa10 363This means reset FACE. The argument IGNORED is ignored."
a3997907 364 (custom-check-theme theme)
2c9e973f 365 (dolist (arg args)
d358aa10 366 (custom-push-theme 'theme-face (car arg) theme 'reset)))
a3997907
RS
367
368;;;###autoload
369(defun custom-reset-faces (&rest args)
2c9e973f
RS
370 "Reset the specs of some faces to their specs in specified themes.
371This creates settings in the `user' theme.
372
373Each of the arguments ARGS has this form:
374
375 (FACE FROM-THEME)
a3997907 376
2c9e973f 377This means reset FACE to its value in FROM-THEME."
a3997907 378 (apply 'custom-theme-reset-faces 'user args))
d543e20b
PA
379
380;;; The End.
381
382(provide 'cus-face)
383
ab5796a9 384;;; arch-tag: 9a5c4b63-0d27-4c92-a5af-f2c7ed764c2b
1743c17a 385;;; cus-face.el ends here