5f79527a9040197c597e3d0cdab1a9a7aed3e46a
[chise/xemacs-chise.git.1] / lisp / cus-face.el
1 ;;; cus-face.el -- Support for Custom faces.
2 ;;
3 ;; Copyright (C) 1996, 1997 Free Software Foundation, Inc.
4 ;;
5 ;; Author: Per Abrahamsen <abraham@dina.kvl.dk>
6 ;; Maintainer: Hrvoje Niksic <hniksic@xemacs.org>
7 ;; Keywords: help, faces
8 ;; Version: 1.9960-x
9 ;; X-URL: http://www.dina.kvl.dk/~abraham/custom/
10
11 ;;; Commentary:
12 ;;
13 ;; See `custom.el'.
14
15 ;; This file should probably be dissolved, and code moved to faces.el,
16 ;; like Stallman did.
17
18 ;;; Code:
19
20 (require 'custom)
21
22 ;; To elude the warnings for font functions.
23 (eval-when-compile
24   (require 'font))
25
26 ;;; Declaring a face.
27
28 ;;;###autoload
29 (defun custom-declare-face (face spec doc &rest args)
30   "Like `defface', but FACE is evaluated as a normal argument."
31   ;; (when (fboundp 'pureload)
32     ;; (error "Attempt to declare a face during dump"))
33   ;; #### should we possibly reset force-face here?
34   (unless (get face 'face-defface-spec)
35     (put face 'face-defface-spec spec)
36     (unless (find-face face)
37       ;; If the user has already created the face, respect that.
38       (let ((value (or (get face 'saved-face) spec))
39             (frames (relevant-custom-frames))
40             frame)
41         ;; Create global face.
42         (make-empty-face face)
43         (face-display-set face value nil '(custom))
44         ;; Create frame local faces
45         (while frames
46           (setq frame (car frames)
47                 frames (cdr frames))
48           (face-display-set face value frame '(custom)))
49         (init-face-from-resources face)))
50     (when (and doc (null (face-doc-string face)))
51       (set-face-doc-string face doc))
52     (custom-handle-all-keywords face args 'custom-face)
53     (run-hooks 'custom-define-hook))
54   face)
55
56 ;;; Font Attributes.
57
58 ;; Consider adding the stuff in the XML font model here.
59 (defconst custom-face-attributes
60   '((:foreground (color :tag "Foreground"
61                         :value ""
62                         :help-echo "Set foreground color.")
63                  set-face-foreground face-foreground-name)
64     (:background (color :tag "Background"
65                         :value ""
66                         :help-echo "Set background color.")
67                  set-face-background face-background-name)
68     (:size (editable-field :format "Size: %v"
69                            :help-echo "\
70 Text size (e.g. 9pt or 2mm).")
71            custom-set-face-font-size custom-face-font-size)
72     (:family (editable-field :format "Font Family: %v"
73                              :help-echo "\
74 Name of font family to use (e.g. times).")
75              custom-set-face-font-family custom-face-font-family)
76     (:background-pixmap (editable-field :format "Background pixmap: %v"
77                                         :help-echo "\
78 Name of background pixmap file.")
79               set-face-background-pixmap custom-face-background-pixmap)
80     (:dim (toggle :format "%[Dim%]: %v\n"
81                   :help-echo "Control whether the text should be dimmed.")
82           set-face-dim-p face-dim-p)
83     (:bold (toggle :format "%[Bold%]: %v\n"
84                    :help-echo "Control whether a bold font should be used.")
85            custom-set-face-bold custom-face-bold)
86     (:italic (toggle :format "%[Italic%]: %v\n"
87                      :help-echo "\
88 Control whether an italic font should be used.")
89              custom-set-face-italic custom-face-italic)
90     (:underline (toggle :format "%[Underline%]: %v\n"
91                         :help-echo "\
92 Control whether the text should be underlined.")
93                 set-face-underline-p face-underline-p)
94     (:strikethru (toggle :format "%[Strikethru%]: %v\n"
95                          :help-echo "\
96 Control whether the text should be strikethru.")
97                  set-face-strikethru-p face-strikethru-p)
98     (:inverse-video (toggle :format "%[Inverse Video%]: %v\n"
99                             :help-echo "\
100 Control whether the text should be inverted.  Works only on TTY-s")
101                     set-face-reverse-p face-reverse-p))
102   "Alist of face attributes.
103
104 The elements are lists of the form (KEY TYPE SET GET) where:
105  KEY is a symbol identifying the attribute.
106  TYPE is a widget type for editing the attribute.
107  SET is a function for setting the attribute value.
108  GET is a function for getting the attribute value.
109
110 The SET function should take three arguments: the face to modify, the
111 value of the attribute, and optionally the frame where the face should
112 be changed.
113
114 The GET function should take two arguments, the face to examine, and
115 optionally the frame where the face should be examined.")
116
117 (defun face-custom-attributes-set (face frame tags &rest atts)
118   "For FACE on FRAME set the attributes [KEYWORD VALUE]....
119 Each keyword should be listed in `custom-face-attributes'.
120
121 If FRAME is nil, set the default face."
122   (while atts
123     (let* ((name (nth 0 atts))
124            (value (nth 1 atts))
125            (fun (nth 2 (assq name custom-face-attributes))))
126       (setq atts (cdr (cdr atts)))
127       (condition-case nil
128           (funcall fun face value frame tags)
129         (error nil)))))
130
131 (defun face-custom-attributes-get (face frame)
132   "For FACE on FRAME get the attributes [KEYWORD VALUE]....
133 Each keyword should be listed in `custom-face-attributes'.
134
135 If FRAME is nil, use the default face."
136   (condition-case nil
137       ;; Attempt to get `font.el' from w3.
138       (require 'font)
139     (error nil))
140   (let ((atts custom-face-attributes)
141         att result get)
142     (while atts
143       (setq att (car atts)
144             atts (cdr atts)
145             get (nth 3 att))
146       (condition-case nil
147           ;; This may fail if w3 doesn't exist.
148           (when get
149             (let ((answer (funcall get face frame)))
150               (unless (equal answer (funcall get 'default frame))
151                 (when (widget-apply (nth 1 att) :match answer)
152                   (setq result (cons (nth 0 att) (cons answer result)))))))
153         (error nil)))
154     result))
155
156 (defsubst custom-face-get-spec (symbol)
157   (or (get symbol 'customized-face)
158       (get symbol 'saved-face)
159       (get symbol 'face-defface-spec)
160       ;; Attempt to construct it.
161       (list (list t (face-custom-attributes-get
162                      symbol (selected-frame))))))
163
164 (defun custom-set-face-bold (face value &optional frame tags)
165   "Set the bold property of FACE to VALUE."
166   (if value
167       (make-face-bold face frame tags)
168     (make-face-unbold face frame tags)))
169
170 ;; Really, we should get rid of these font.el dependencies...  They
171 ;; are still presenting a problem with dumping the faces (font.el is
172 ;; too bloated for us to dump).  I am thinking about hacking up
173 ;; font-like functionality myself for the sake of this file.  It will
174 ;; probably be to-the-point and more efficient.
175
176 (defun custom-face-bold (face &rest args)
177   "Return non-nil if the font of FACE is bold."
178   (let* ((font (apply 'face-font-name face args))
179          ;; Gag
180          (fontobj (font-create-object font)))
181     (font-bold-p fontobj)))
182
183 (defun custom-set-face-italic (face value &optional frame tags)
184   "Set the italic property of FACE to VALUE."
185   (if value
186       (make-face-italic face frame tags)
187     (make-face-unitalic face frame tags)))
188
189 (defun custom-face-italic (face &rest args)
190   "Return non-nil if the font of FACE is italic."
191   (let* ((font (apply 'face-font-name face args))
192          ;; Gag
193          (fontobj (font-create-object font)))
194     (font-italic-p fontobj)))
195
196 (defun custom-face-background-pixmap (face &rest args)
197   "Return the name of the background pixmap file used for FACE."
198   (let ((image  (apply 'specifier-instance
199                        (face-background-pixmap face) args)))
200     (and image
201          (image-instance-file-name image))))
202
203 (defun custom-set-face-font-size (face size &optional locale tags)
204   "Set the font of FACE to SIZE."
205   ;; #### should this call have tags in it?
206   (let* ((font (apply 'face-font-name face (list locale)))
207          ;; Gag
208          (fontobj (font-create-object font)))
209     (set-font-size fontobj size)
210     (apply 'font-set-face-font face fontobj locale tags)))
211
212 (defun custom-face-font-size (face &rest args)
213   "Return the size of the font of FACE as a string."
214   (let* ((font (apply 'face-font-name face args))
215          ;; Gag
216          (fontobj (font-create-object font)))
217     (format "%s" (font-size fontobj))))
218
219 (defun custom-set-face-font-family (face family &optional locale tags)
220   "Set the font of FACE to FAMILY."
221   ;; #### should this call have tags in it?
222   (let* ((font (apply 'face-font-name face (list locale)))
223          ;; Gag
224          (fontobj (font-create-object font)))
225     (set-font-family fontobj family)
226     (apply 'font-set-face-font face fontobj locale tags)))
227
228 (defun custom-face-font-family (face &rest args)
229   "Return the name of the font family of FACE."
230   (let* ((font (apply 'face-font-name face args))
231          ;; Gag
232          (fontobj (font-create-object font)))
233     (font-family fontobj)))
234
235 ;;;###autoload
236 (defun custom-set-face-update-spec (face display plist)
237   "Customize the FACE for display types matching DISPLAY, merging
238   in the new items from PLIST."
239   (let ((spec (face-spec-update-all-matching (custom-face-get-spec face)
240                                              display plist)))
241     (put face 'customized-face spec)
242     (face-spec-set face spec nil '(custom))))
243
244 ;;; Initializing.
245
246 ;;;###autoload
247 (defun custom-set-faces (&rest args)
248   "Initialize faces according to user preferences.
249 This asociates the setting with the USER theme.
250 The arguments should be a list where each entry has the form:
251
252   (FACE SPEC [NOW [COMMENT]])
253
254 SPEC will be stored as the saved value for FACE.  If NOW is present
255 and non-nil, FACE will also be created according to SPEC.
256 COMMENT is a string comment about FACE.
257
258 See `defface' for the format of SPEC."
259   (apply #'custom-theme-set-faces 'user args))
260
261 ;;;###autoload
262 (defun custom-theme-set-faces (theme &rest args)
263   "Initialize faces according to settings specified by args.
264 Records the settings as belonging to THEME.
265
266 See `custom-set-faces' for a description of the arguments ARGS."
267   (custom-check-theme theme)
268   (let ((immediate (get theme 'theme-immediate)))
269     (while args
270       (let ((entry (car args)))
271         (if (listp entry)
272             (let ((face (nth 0 entry))
273                   (spec (nth 1 entry))
274                   (now (nth 2 entry))
275                   (comment (nth 3 entry)))
276               (put face 'saved-face spec)
277               (custom-push-theme 'theme-face face theme 'set spec)
278               (put face 'saved-face-comment comment)
279               (when (or now immediate)
280                 (put face 'force-face (if now 'rogue 'immediate)))
281               (when (or now immediate (find-face face))
282                 (put face 'face-comment comment)
283                 (unless (find-face face)
284                   (make-empty-face face))
285                 (face-spec-set face spec nil '(custom)))
286               (setq args (cdr args)))
287           ;; Old format, a plist of FACE SPEC pairs.
288           (let ((face (nth 0 args))
289                 (spec (nth 1 args)))
290             (put face 'saved-face spec)
291             (custom-push-theme 'theme-face face theme 'set spec))
292           (setq args (cdr (cdr args))))))))
293
294 ;;;###autoload
295 (defun custom-theme-face-value (face theme)
296   "Return spec of FACE in THEME if the THEME modifies the
297 FACE.  Nil otherwise."
298   (car-safe (custom-theme-value theme (get face 'theme-face))))
299
300 (defun custom-theme-reset-internal-face (face to-theme)
301   (let ((spec (custom-theme-face-value face to-theme))
302         was-in-theme)
303     (setq was-in-theme spec)
304     (setq spec (or spec (get face 'standard-value)))
305     (when spec
306       (put face 'save-face was-in-theme)
307       (when (or (get face 'force-face) (find-face face))
308               (unless (find-face face)
309                 (make-empty-face face))
310               (face-spec-set face spec)))
311     spec))
312
313 ;;;###autoload
314 (defun custom-theme-reset-faces (theme &rest args)
315   (custom-check-theme theme)
316   "Reset the value of the face to values previously defined.
317 Associate this setting with THEME.
318
319 ARGS is a list of lists of the form
320
321     (face to-theme)
322
323 This means reset face to its value in to-theme."
324   (mapc #'(lambda (arg)
325             (apply #'custom-theme-reset-internal-face arg)
326             (custom-push-theme (car arg) 'theme-face theme 'reset (cadr arg)))
327         args))
328
329 ;;;###autoload
330 (defun custom-reset-faces (&rest args)
331   "Reset the value of the face to values previously defined.
332 Associate this setting with the 'user' theme.
333
334 ARGS is defined as for `custom-theme-reset-faces'."
335   (apply #'custom-theme-reset-faces 'user args))
336
337
338 ;;; The End.
339
340 (provide 'cus-face)
341
342 ;; cus-face.el ends here