Merge from emacs-23; up to 2010-06-12T08:59:37Z!albinus@detlef.
[bpt/emacs.git] / lisp / cus-theme.el
1 ;;; cus-theme.el -- custom theme creation user interface
2 ;;
3 ;; Copyright (C) 2001-2011 Free Software Foundation, Inc.
4 ;;
5 ;; Author: Alex Schroeder <alex@gnu.org>
6 ;; Maintainer: FSF
7 ;; Keywords: help, faces
8 ;; Package: emacs
9
10 ;; This file is part of GNU Emacs.
11
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
16
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24
25 ;;; Code:
26
27 (require 'widget)
28 (require 'cus-edit)
29
30 (eval-when-compile
31 (require 'wid-edit))
32
33 (defvar custom-new-theme-mode-map
34 (let ((map (make-keymap)))
35 (set-keymap-parent map widget-keymap)
36 (suppress-keymap map)
37 (define-key map "\C-x\C-s" 'custom-theme-write)
38 (define-key map "n" 'widget-forward)
39 (define-key map "p" 'widget-backward)
40 map)
41 "Keymap for `custom-new-theme-mode'.")
42
43 (define-derived-mode custom-new-theme-mode nil "Custom-Theme"
44 "Major mode for editing Custom themes.
45 Do not call this mode function yourself. It is meant for internal use."
46 (use-local-map custom-new-theme-mode-map)
47 (custom--initialize-widget-variables)
48 (set (make-local-variable 'revert-buffer-function) 'custom-theme-revert))
49 (put 'custom-new-theme-mode 'mode-class 'special)
50
51 (defvar custom-theme-name nil)
52 ;; Each element has the form (VAR CHECKBOX-WIDGET VAR-WIDGET)
53 (defvar custom-theme-variables nil)
54 ;; Each element has the form (FACE CHECKBOX-WIDGET FACE-WIDGET)
55 (defvar custom-theme-faces nil)
56 (defvar custom-theme-description nil)
57 (defvar custom-theme--migrate-settings nil)
58 (defvar custom-theme-insert-variable-marker nil)
59 (defvar custom-theme-insert-face-marker nil)
60
61 (defvar custom-theme--listed-faces '(default cursor fixed-pitch
62 variable-pitch escape-glyph minibuffer-prompt highlight region
63 shadow secondary-selection trailing-whitespace
64 font-lock-builtin-face font-lock-comment-delimiter-face
65 font-lock-comment-face font-lock-constant-face
66 font-lock-doc-face font-lock-function-name-face
67 font-lock-keyword-face font-lock-negation-char-face
68 font-lock-preprocessor-face font-lock-regexp-grouping-backslash
69 font-lock-regexp-grouping-construct font-lock-string-face
70 font-lock-type-face font-lock-variable-name-face
71 font-lock-warning-face button link link-visited fringe
72 header-line tooltip mode-line mode-line-buffer-id
73 mode-line-emphasis mode-line-highlight mode-line-inactive
74 isearch isearch-fail lazy-highlight match next-error
75 query-replace)
76 "Faces listed by default in the *Custom Theme* buffer.")
77
78 (defvar custom-theme--save-name)
79
80 ;;;###autoload
81 (defun customize-create-theme (&optional theme buffer)
82 "Create or edit a custom theme.
83 THEME, if non-nil, should be an existing theme to edit. If THEME
84 is `user', provide an option to remove these as custom settings.
85 BUFFER, if non-nil, should be a buffer to use; the default is
86 named *Custom Theme*."
87 (interactive)
88 (switch-to-buffer (get-buffer-create (or buffer "*Custom Theme*")))
89 (let ((inhibit-read-only t))
90 (erase-buffer)
91 (dolist (ov (overlays-in (point-min) (point-max)))
92 (delete-overlay ov)))
93 (custom-new-theme-mode)
94 (make-local-variable 'custom-theme-name)
95 (set (make-local-variable 'custom-theme--save-name) theme)
96 (set (make-local-variable 'custom-theme-faces) nil)
97 (set (make-local-variable 'custom-theme-variables) nil)
98 (set (make-local-variable 'custom-theme-description) "")
99 (set (make-local-variable 'custom-theme--migrate-settings) nil)
100 (make-local-variable 'custom-theme-insert-face-marker)
101 (make-local-variable 'custom-theme-insert-variable-marker)
102 (make-local-variable 'custom-theme--listed-faces)
103 (when (called-interactively-p 'interactive)
104 (unless (y-or-n-p "Include basic face customizations in this theme? ")
105 (setq custom-theme--listed-faces nil)))
106
107 (if (eq theme 'user)
108 (widget-insert "This buffer contains all the Custom settings you have made.
109 You can convert them into a new custom theme, and optionally
110 remove them from your saved Custom file.\n\n"))
111
112 (widget-create 'push-button
113 :tag " Visit Theme "
114 :help-echo "Insert the settings of a pre-defined theme."
115 :action (lambda (_widget &optional _event)
116 (call-interactively 'custom-theme-visit-theme)))
117 (widget-insert " ")
118 (widget-create 'push-button
119 :tag " Merge Theme "
120 :help-echo "Merge in the settings of a pre-defined theme."
121 :action (lambda (_widget &optional _event)
122 (call-interactively 'custom-theme-merge-theme)))
123 (widget-insert " ")
124 (widget-create 'push-button
125 :tag " Revert "
126 :help-echo "Revert this buffer to its original state."
127 :action (lambda (&rest ignored) (revert-buffer)))
128
129 (widget-insert "\n\nTheme name : ")
130 (setq custom-theme-name
131 (widget-create 'editable-field
132 :value (if (and theme (not (eq theme 'user)))
133 (symbol-name theme)
134 "")))
135 (widget-insert "Description: ")
136 (setq custom-theme-description
137 (widget-create 'text
138 :value (format-time-string "Created %Y-%m-%d.")))
139 (widget-create 'push-button
140 :notify (function custom-theme-write)
141 " Save Theme ")
142 (when (eq theme 'user)
143 (setq custom-theme--migrate-settings t)
144 (widget-insert " ")
145 (widget-create 'checkbox
146 :value custom-theme--migrate-settings
147 :action (lambda (widget &optional event)
148 (when (widget-value widget)
149 (widget-toggle-action widget event)
150 (setq custom-theme--migrate-settings
151 (widget-value widget)))))
152 (widget-insert (propertize " Remove saved theme settings from Custom save file."
153 'face '(variable-pitch (:height 0.9)))))
154
155 (let (vars values faces face-specs)
156
157 ;; Load the theme settings.
158 (when theme
159 (unless (eq theme 'user)
160 (load-theme theme t))
161 (dolist (setting (get theme 'theme-settings))
162 (if (eq (car setting) 'theme-value)
163 (progn (push (nth 1 setting) vars)
164 (push (nth 3 setting) values))
165 (push (nth 1 setting) faces)
166 (push (nth 3 setting) face-specs))))
167
168 ;; If THEME is non-nil, insert all of that theme's faces.
169 ;; Otherwise, insert those in `custom-theme--listed-faces'.
170 (widget-insert "\n\n Theme faces:\n ")
171 (if theme
172 (while faces
173 (custom-theme-add-face-1 (pop faces) (pop face-specs)))
174 (dolist (face custom-theme--listed-faces)
175 (custom-theme-add-face-1 face nil)))
176 (setq custom-theme-insert-face-marker (point-marker))
177 (widget-insert " ")
178 (widget-create 'push-button
179 :tag "Insert Additional Face"
180 :help-echo "Add another face to this theme."
181 :follow-link 'mouse-face
182 :button-face 'custom-link
183 :mouse-face 'highlight
184 :pressed-face 'highlight
185 :action (lambda (_widget &optional _event)
186 (call-interactively 'custom-theme-add-face)))
187
188 ;; If THEME is non-nil, insert all of that theme's variables.
189 (widget-insert "\n\n Theme variables:\n ")
190 (if theme
191 (while vars
192 (if (eq (car vars) 'custom-enabled-themes)
193 (progn (pop vars) (pop values))
194 (custom-theme-add-var-1 (pop vars) (eval (pop values))))))
195 (setq custom-theme-insert-variable-marker (point-marker))
196 (widget-insert " ")
197 (widget-create 'push-button
198 :tag "Insert Variable"
199 :help-echo "Add another variable to this theme."
200 :follow-link 'mouse-face
201 :button-face 'custom-link
202 :mouse-face 'highlight
203 :pressed-face 'highlight
204 :action (lambda (_widget &optional _event)
205 (call-interactively 'custom-theme-add-variable)))
206 (widget-insert ?\n)
207 (widget-setup)
208 (goto-char (point-min))
209 (message "")))
210
211 (defun custom-theme-revert (_ignore-auto noconfirm)
212 (when (or noconfirm (y-or-n-p "Discard current changes? "))
213 (customize-create-theme custom-theme--save-name (current-buffer))))
214
215 ;;; Theme variables
216
217 (defun custom-theme-add-variable (var value)
218 "Add a widget for VAR (a symbol) to the *New Custom Theme* buffer.
219 VALUE should be a value to which to set the widget; when called
220 interactively, this defaults to the current value of VAR."
221 (interactive
222 (let ((v (read-variable "Variable name: ")))
223 (list v (symbol-value v))))
224 (let ((entry (assq var custom-theme-variables)))
225 (cond ((null entry)
226 ;; If VAR is not yet in the buffer, add it.
227 (save-excursion
228 (goto-char custom-theme-insert-variable-marker)
229 (custom-theme-add-var-1 var value)
230 (move-marker custom-theme-insert-variable-marker (point))
231 (widget-setup)))
232 ;; Otherwise, alter that var widget.
233 (t
234 (widget-value-set (nth 1 entry) t)
235 (let ((widget (nth 2 entry)))
236 (widget-put widget :shown-value (list value))
237 (custom-redraw widget))))))
238
239 (defun custom-theme-add-var-1 (symbol val)
240 (widget-insert " ")
241 (push (list symbol
242 (prog1 (widget-create 'checkbox
243 :value t
244 :help-echo "Enable/disable this variable.")
245 (widget-insert " "))
246 (widget-create 'custom-variable
247 :tag (custom-unlispify-tag-name symbol)
248 :value symbol
249 :shown-value (list val)
250 :notify 'ignore
251 :custom-level 0
252 :custom-state 'hidden
253 :custom-style 'simple))
254 custom-theme-variables)
255 (widget-insert " "))
256
257 ;;; Theme faces
258
259 (defun custom-theme-add-face (face &optional spec)
260 "Add a widget for FACE (a symbol) to the *New Custom Theme* buffer.
261 SPEC, if non-nil, should be a face spec to which to set the widget."
262 (interactive (list (read-face-name "Face name" nil nil) nil))
263 (unless (or (facep face) spec)
264 (error "`%s' has no face definition" face))
265 (let ((entry (assq face custom-theme-faces)))
266 (cond ((null entry)
267 ;; If FACE is not yet in the buffer, add it.
268 (save-excursion
269 (goto-char custom-theme-insert-face-marker)
270 (custom-theme-add-face-1 face spec)
271 (move-marker custom-theme-insert-face-marker (point))
272 (widget-setup)))
273 ;; Otherwise, if SPEC is supplied, alter that face widget.
274 (spec
275 (widget-value-set (nth 1 entry) t)
276 (let ((widget (nth 2 entry)))
277 (widget-put widget :shown-value spec)
278 (custom-redraw widget)))
279 ((called-interactively-p 'interactive)
280 (error "`%s' is already present" face)))))
281
282 (defun custom-theme-add-face-1 (symbol spec)
283 (widget-insert " ")
284 (push (list symbol
285 (prog1
286 (widget-create 'checkbox
287 :value t
288 :help-echo "Enable/disable this face.")
289 (widget-insert " "))
290 (widget-create 'custom-face
291 :tag (custom-unlispify-tag-name symbol)
292 :documentation-shown t
293 :value symbol
294 :custom-state 'hidden
295 :custom-style 'simple
296 :shown-value spec
297 :sample-indent 34))
298 custom-theme-faces)
299 (widget-insert " "))
300
301 ;;; Reading and writing
302
303 ;;;###autoload
304 (defun custom-theme-visit-theme (theme)
305 "Set up a Custom buffer to edit custom theme THEME."
306 (interactive
307 (list
308 (intern (completing-read "Find custom theme: "
309 (mapcar 'symbol-name
310 (custom-available-themes))))))
311 (unless (custom-theme-name-valid-p theme)
312 (error "No valid theme named `%s'" theme))
313 (cond ((not (eq major-mode 'custom-new-theme-mode))
314 (customize-create-theme theme))
315 ((y-or-n-p "Discard current changes? ")
316 (setq custom-theme--save-name theme)
317 (custom-theme-revert nil t))))
318
319 (defun custom-theme-merge-theme (theme)
320 "Merge the custom theme THEME's settings into the current buffer."
321 (interactive
322 (list
323 (intern (completing-read "Merge custom theme: "
324 (mapcar 'symbol-name
325 (custom-available-themes))))))
326 (unless (eq theme 'user)
327 (unless (custom-theme-name-valid-p theme)
328 (error "Invalid theme name `%s'" theme))
329 (load-theme theme t))
330 (let ((settings (reverse (get theme 'theme-settings))))
331 (dolist (setting settings)
332 (funcall (if (eq (car setting) 'theme-value)
333 'custom-theme-add-variable
334 'custom-theme-add-face)
335 (nth 1 setting)
336 (nth 3 setting))))
337 theme)
338
339 ;; From cus-edit.el
340 (defvar custom-reset-standard-faces-list)
341 (defvar custom-reset-standard-variables-list)
342
343 (defun custom-theme-write (&rest _ignore)
344 "Write the current custom theme to its theme file."
345 (interactive)
346 (let* ((name (widget-value custom-theme-name))
347 (doc (widget-value custom-theme-description))
348 (vars custom-theme-variables)
349 (faces custom-theme-faces)
350 filename)
351 (when (string-equal name "")
352 (setq name (read-from-minibuffer "Theme name: " (user-login-name)))
353 (widget-value-set custom-theme-name name))
354 (unless (custom-theme-name-valid-p (intern name))
355 (error "Custom themes cannot be named `%s'" name))
356
357 (setq filename (expand-file-name (concat name "-theme.el")
358 custom-theme-directory))
359 (and (file-exists-p filename)
360 (not (y-or-n-p (format "File %s exists. Overwrite? " filename)))
361 (error "Aborted"))
362
363 (with-temp-buffer
364 (emacs-lisp-mode)
365 (unless (file-directory-p custom-theme-directory)
366 (make-directory (file-name-as-directory custom-theme-directory) t))
367 (setq buffer-file-name filename)
368 (erase-buffer)
369 (insert "(deftheme " name)
370 (if doc (insert "\n \"" doc "\""))
371 (insert ")\n")
372 (custom-theme-write-variables name (reverse vars))
373 (custom-theme-write-faces name (reverse faces))
374 (insert "\n(provide-theme '" name ")\n")
375 (save-buffer))
376 (message "Theme written to %s" filename)
377
378 (when custom-theme--migrate-settings
379 ;; Remove these settings from the Custom file.
380 (let ((custom-reset-standard-variables-list '(t))
381 (custom-reset-standard-faces-list '(t)))
382 (dolist (var vars)
383 (when (and (not (eq (car var) 'custom-enabled-themes))
384 (widget-get (nth 1 var) :value))
385 (widget-apply (nth 2 var) :custom-mark-to-reset-standard)))
386 (dolist (face faces)
387 (when (widget-get (nth 1 face) :value)
388 (widget-apply (nth 2 face) :custom-mark-to-reset-standard)))
389 (custom-save-all))
390 (let ((custom-theme-load-path (list 'custom-theme-directory)))
391 (load-theme (intern name))))))
392
393 (defun custom-theme-write-variables (theme vars)
394 "Write a `custom-theme-set-variables' command for THEME.
395 It includes all variables in list VARS."
396 (when vars
397 (let ((standard-output (current-buffer)))
398 (princ "\n(custom-theme-set-variables\n")
399 (princ " '")
400 (princ theme)
401 (princ "\n")
402 (dolist (spec vars)
403 (when (widget-get (nth 1 spec) :value)
404 (let* ((symbol (nth 0 spec))
405 (widget (nth 2 spec))
406 (child (car-safe (widget-get widget :children)))
407 (value (if child
408 (widget-value child)
409 ;; Child is null if the widget is closed (hidden).
410 (car (widget-get widget :shown-value)))))
411 (when (boundp symbol)
412 (unless (bolp)
413 (princ "\n"))
414 (princ " '(")
415 (prin1 symbol)
416 (princ " ")
417 (prin1 (custom-quote value))
418 (princ ")")))))
419 (if (bolp)
420 (princ " "))
421 (princ ")")
422 (unless (looking-at "\n")
423 (princ "\n")))))
424
425 (defun custom-theme-write-faces (theme faces)
426 "Write a `custom-theme-set-faces' command for THEME.
427 It includes all faces in list FACES."
428 (when faces
429 (let ((standard-output (current-buffer)))
430 (princ "\n(custom-theme-set-faces\n")
431 (princ " '")
432 (princ theme)
433 (princ "\n")
434 (dolist (spec faces)
435 (when (widget-get (nth 1 spec) :value)
436 (let* ((symbol (nth 0 spec))
437 (widget (nth 2 spec))
438 (value
439 (if (car-safe (widget-get widget :children))
440 (custom-face-widget-to-spec widget)
441 ;; Child is null if the widget is closed (hidden).
442 (widget-get widget :shown-value))))
443 (when (and (facep symbol) value)
444 (princ (if (bolp) " '(" "\n '("))
445 (prin1 symbol)
446 (princ " ")
447 (prin1 value)
448 (princ ")")))))
449 (if (bolp) (princ " "))
450 (princ ")")
451 (unless (looking-at "\n")
452 (princ "\n")))))
453
454 \f
455 ;;; Describing Custom themes.
456
457 ;;;###autoload
458 (defun describe-theme (theme)
459 "Display a description of the Custom theme THEME (a symbol)."
460 (interactive
461 (list
462 (intern (completing-read "Describe custom theme: "
463 (mapcar 'symbol-name
464 (custom-available-themes))))))
465 (unless (custom-theme-name-valid-p theme)
466 (error "Invalid theme name `%s'" theme))
467 (help-setup-xref (list 'describe-theme theme)
468 (called-interactively-p 'interactive))
469 (with-help-window (help-buffer)
470 (with-current-buffer standard-output
471 (describe-theme-1 theme))))
472
473 (defun describe-theme-1 (theme)
474 (prin1 theme)
475 (princ " is a custom theme")
476 (let ((fn (locate-file (concat (symbol-name theme) "-theme.el")
477 (custom-theme--load-path)
478 '("" "c")))
479 doc)
480 (when fn
481 (princ " in `")
482 (help-insert-xref-button (file-name-nondirectory fn)
483 'help-theme-def fn)
484 (princ "'"))
485 (princ ".\n")
486 (if (not (memq theme custom-known-themes))
487 (progn
488 (princ "It is not loaded.")
489 ;; Attempt to grab the theme documentation
490 (when fn
491 (with-temp-buffer
492 (insert-file-contents fn)
493 (let ((sexp (let ((read-circle nil))
494 (condition-case nil
495 (read (current-buffer))
496 (end-of-file nil)))))
497 (and sexp (listp sexp)
498 (eq (car sexp) 'deftheme)
499 (setq doc (nth 2 sexp)))))))
500 (if (custom-theme-enabled-p theme)
501 (princ "It is loaded and enabled.")
502 (princ "It is loaded but disabled."))
503 (setq doc (get theme 'theme-documentation)))
504
505 (princ "\n\nDocumentation:\n")
506 (princ (if (stringp doc)
507 doc
508 "No documentation available.")))
509 (princ "\n\nYou can ")
510 (help-insert-xref-button "customize" 'help-theme-edit theme)
511 (princ " this theme."))
512
513 \f
514 ;;; Theme chooser
515
516 (defvar custom--listed-themes)
517
518 (defcustom custom-theme-allow-multiple-selections nil
519 "Whether to allow multi-selections in the *Custom Themes* buffer."
520 :type 'boolean
521 :group 'custom-buffer)
522
523 (defvar custom-theme-choose-mode-map
524 (let ((map (make-keymap)))
525 (set-keymap-parent map widget-keymap)
526 (suppress-keymap map)
527 (define-key map "\C-x\C-s" 'custom-theme-save)
528 (define-key map "n" 'widget-forward)
529 (define-key map "p" 'widget-backward)
530 (define-key map "?" 'custom-describe-theme)
531 map)
532 "Keymap for `custom-theme-choose-mode'.")
533
534 (define-derived-mode custom-theme-choose-mode nil "Themes"
535 "Major mode for selecting Custom themes.
536 Do not call this mode function yourself. It is meant for internal use."
537 (use-local-map custom-theme-choose-mode-map)
538 (custom--initialize-widget-variables)
539 (set (make-local-variable 'revert-buffer-function)
540 (lambda (_ignore-auto noconfirm)
541 (when (or noconfirm (y-or-n-p "Discard current choices? "))
542 (customize-themes (current-buffer))))))
543 (put 'custom-theme-choose-mode 'mode-class 'special)
544
545 ;;;###autoload
546 (defun customize-themes (&optional buffer)
547 "Display a selectable list of Custom themes.
548 When called from Lisp, BUFFER should be the buffer to use; if
549 omitted, a buffer named *Custom Themes* is used."
550 (interactive)
551 (switch-to-buffer (get-buffer-create (or buffer "*Custom Themes*")))
552 (let ((inhibit-read-only t))
553 (erase-buffer))
554 (custom-theme-choose-mode)
555 (set (make-local-variable 'custom--listed-themes) nil)
556 (make-local-variable 'custom-theme-allow-multiple-selections)
557 (and (null custom-theme-allow-multiple-selections)
558 (> (length custom-enabled-themes) 1)
559 (setq custom-theme-allow-multiple-selections t))
560
561 (widget-insert
562 (substitute-command-keys
563 "Type RET or click to enable/disable listed custom themes.
564 Type \\[custom-describe-theme] to describe the theme at point.
565 Theme files are named *-theme.el in `"))
566 (widget-create 'link :value "custom-theme-load-path"
567 :button-face 'custom-link
568 :mouse-face 'highlight
569 :pressed-face 'highlight
570 :help-echo "Describe `custom-theme-load-path'."
571 :keymap custom-mode-link-map
572 :follow-link 'mouse-face
573 :action (lambda (_widget &rest _ignore)
574 (describe-variable 'custom-theme-load-path)))
575 (widget-insert "'.\n\n")
576
577 ;; If the user has made customizations, display a warning and
578 ;; provide buttons to disable or convert them.
579 (let ((user-settings (get 'user 'theme-settings)))
580 (unless (or (null user-settings)
581 (and (null (cdr user-settings))
582 (eq (caar user-settings) 'theme-value)
583 (eq (cadr (car user-settings)) 'custom-enabled-themes)))
584 (widget-insert
585 (propertize
586 " Note: Your custom settings take precedence over theme settings.
587 To migrate your settings into a theme, click "
588 'face 'font-lock-warning-face))
589 (widget-create 'link :value "here"
590 :button-face 'custom-link
591 :mouse-face 'highlight
592 :pressed-face 'highlight
593 :help-echo "Migrate."
594 :keymap custom-mode-link-map
595 :follow-link 'mouse-face
596 :action (lambda (_widget &rest _ignore)
597 (customize-create-theme 'user)))
598 (widget-insert ".\n\n")))
599
600 (widget-create 'push-button
601 :tag " Save Theme Settings "
602 :help-echo "Save the selected themes for future sessions."
603 :action 'custom-theme-save)
604 (widget-insert ?\n)
605 (widget-create 'checkbox
606 :value custom-theme-allow-multiple-selections
607 :action 'custom-theme-selections-toggle)
608 (widget-insert (propertize " Allow more than one theme at a time"
609 'face '(variable-pitch (:height 0.9))))
610
611 (widget-insert "\n\nAvailable Custom Themes:\n")
612 (let (widget)
613 (dolist (theme (custom-available-themes))
614 (setq widget (widget-create 'checkbox
615 :value (custom-theme-enabled-p theme)
616 :theme-name theme
617 :action 'custom-theme-checkbox-toggle))
618 (push (cons theme widget) custom--listed-themes)
619 (widget-create-child-and-convert widget 'push-button
620 :button-face-get 'ignore
621 :mouse-face-get 'ignore
622 :value (format " %s" theme)
623 :action 'widget-parent-action)
624 (widget-insert ?\n)))
625 (goto-char (point-min))
626 (widget-setup))
627
628 (defun custom-theme-checkbox-toggle (widget &optional event)
629 (let ((this-theme (widget-get widget :theme-name)))
630 (if (widget-value widget)
631 ;; Disable the theme.
632 (progn
633 (disable-theme this-theme)
634 (widget-toggle-action widget event))
635 ;; Enable the theme.
636 (unless custom-theme-allow-multiple-selections
637 ;; If only one theme is allowed, disable all other themes and
638 ;; uncheck their boxes.
639 (dolist (theme custom-enabled-themes)
640 (and (not (eq theme this-theme))
641 (assq theme custom--listed-themes)
642 (disable-theme theme)))
643 (dolist (theme custom--listed-themes)
644 (unless (eq (car theme) this-theme)
645 (widget-value-set (cdr theme) nil)
646 (widget-apply (cdr theme) :notify (cdr theme) event))))
647 (when (load-theme this-theme)
648 (widget-toggle-action widget event)))
649 ;; Mark `custom-enabled-themes' as "set for current session".
650 (put 'custom-enabled-themes 'customized-value
651 (list (custom-quote custom-enabled-themes)))))
652
653 (defun custom-describe-theme ()
654 "Describe the Custom theme on the current line."
655 (interactive)
656 (let ((widget (widget-at (line-beginning-position))))
657 (and widget
658 (describe-theme (widget-get widget :theme-name)))))
659
660 (defun custom-theme-save (&rest _ignore)
661 (interactive)
662 (customize-save-variable 'custom-enabled-themes custom-enabled-themes)
663 (message "Custom themes saved for future sessions."))
664
665 (defun custom-theme-selections-toggle (widget &optional event)
666 (when (widget-value widget)
667 ;; Deactivate multiple-selections.
668 (if (< 1 (length (delq nil (mapcar (lambda (x) (widget-value (cdr x)))
669 custom--listed-themes))))
670 (error "More than one theme is currently selected")))
671 (widget-toggle-action widget event)
672 (setq custom-theme-allow-multiple-selections (widget-value widget)))
673
674 (provide 'cus-theme)
675
676 ;;; cus-theme.el ends here