1 ;;; cus-theme.el -- custom theme creation user interface
3 ;; Copyright (C) 2001-2011 Free Software Foundation, Inc.
5 ;; Author: Alex Schroeder <alex@gnu.org>
7 ;; Keywords: help, faces
10 ;; This file is part of GNU Emacs.
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.
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.
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/>.
33 (defvar custom-new-theme-mode-map
34 (let ((map (make-keymap)))
35 (set-keymap-parent map widget-keymap
)
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
)
41 "Keymap for `custom-new-theme-mode'.")
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
)
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
)
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
76 "Faces listed by default in the *Custom Theme* buffer.")
78 (defvar custom-theme--save-name
)
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*."
88 (switch-to-buffer (get-buffer-create (or buffer
"*Custom Theme*")))
89 (let ((inhibit-read-only t
))
91 (dolist (ov (overlays-in (point-min) (point-max)))
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
)))
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"))
112 (widget-create 'push-button
114 :help-echo
"Insert the settings of a pre-defined theme."
115 :action
(lambda (_widget &optional _event
)
116 (call-interactively 'custom-theme-visit-theme
)))
118 (widget-create 'push-button
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
)))
124 (widget-create 'push-button
126 :help-echo
"Revert this buffer to its original state."
127 :action
(lambda (&rest ignored
) (revert-buffer)))
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
)))
135 (widget-insert "Description: ")
136 (setq custom-theme-description
138 :value
(format-time-string "Created %Y-%m-%d.")))
139 (widget-create 'push-button
140 :notify
(function custom-theme-write
)
142 (when (eq theme
'user
)
143 (setq custom-theme--migrate-settings t
)
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)))))
155 (let (vars values faces face-specs
)
157 ;; Load the theme settings.
159 (unless (eq theme
'user
)
160 (load-theme theme nil 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
))))
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 ")
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))
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
)))
188 ;; If THEME is non-nil, insert all of that theme's variables.
189 (widget-insert "\n\n Theme variables:\n ")
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))
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
)))
208 (goto-char (point-min))
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))))
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."
222 (let ((v (read-variable "Variable name: ")))
223 (list v
(symbol-value v
))))
224 (let ((entry (assq var custom-theme-variables
)))
226 ;; If VAR is not yet in the buffer, add it.
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))
232 ;; Otherwise, alter that var widget.
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
))))))
239 (defun custom-theme-add-var-1 (symbol val
)
242 (prog1 (widget-create 'checkbox
244 :help-echo
"Enable/disable this variable.")
246 (widget-create 'custom-variable
247 :tag
(custom-unlispify-tag-name symbol
)
249 :shown-value
(list val
)
252 :custom-state
'hidden
253 :custom-style
'simple
))
254 custom-theme-variables
)
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
)))
267 ;; If FACE is not yet in the buffer, add it.
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))
273 ;; Otherwise, if SPEC is supplied, alter that face widget.
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
)))))
282 (defun custom-theme-add-face-1 (symbol spec
)
286 (widget-create 'checkbox
288 :help-echo
"Enable/disable this face.")
290 (widget-create 'custom-face
291 :tag
(custom-unlispify-tag-name symbol
)
292 :documentation-shown t
294 :custom-state
'hidden
295 :custom-style
'simple
301 ;;; Reading and writing
304 (defun custom-theme-visit-theme (theme)
305 "Set up a Custom buffer to edit custom theme THEME."
308 (intern (completing-read "Find custom theme: "
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
))))
319 (defun custom-theme-merge-theme (theme)
320 "Merge the custom theme THEME's settings into the current buffer."
323 (intern (completing-read "Merge custom theme: "
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 nil 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
)
340 (defvar custom-reset-standard-faces-list
)
341 (defvar custom-reset-standard-variables-list
)
343 (defun custom-theme-write (&rest _ignore
)
344 "Write the current custom theme to its theme file."
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
)
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
))
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
)))
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
)
369 (insert "(deftheme " name
)
370 (if doc
(insert "\n \"" doc
"\""))
372 (custom-theme-write-variables name
(reverse vars
))
373 (custom-theme-write-faces name
(reverse faces
))
374 (insert "\n(provide-theme '" name
")\n")
376 (message "Theme written to %s" filename
)
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)))
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
)))
387 (when (widget-get (nth 1 face
) :value
)
388 (widget-apply (nth 2 face
) :custom-mark-to-reset-standard
)))
390 (let ((custom-theme-load-path (list 'custom-theme-directory
)))
391 (load-theme (intern name
))))))
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."
397 (let ((standard-output (current-buffer)))
398 (princ "\n(custom-theme-set-variables\n")
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
)))
409 ;; Child is null if the widget is closed (hidden).
410 (car (widget-get widget
:shown-value
)))))
411 (when (boundp symbol
)
417 (prin1 (custom-quote value
))
422 (unless (looking-at "\n")
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."
429 (let ((standard-output (current-buffer)))
430 (princ "\n(custom-theme-set-faces\n")
435 (when (widget-get (nth 1 spec
) :value
)
436 (let* ((symbol (nth 0 spec
))
437 (widget (nth 2 spec
))
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 '("))
449 (if (bolp) (princ " "))
451 (unless (looking-at "\n")
455 ;;; Describing Custom themes.
458 (defun describe-theme (theme)
459 "Display a description of the Custom theme THEME (a symbol)."
462 (intern (completing-read "Describe custom theme: "
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
))))
473 (defun describe-theme-1 (theme)
475 (princ " is a custom theme")
476 (let ((fn (locate-file (concat (symbol-name theme
) "-theme.el")
477 (custom-theme--load-path)
482 (help-insert-xref-button (file-name-nondirectory fn
)
486 (if (custom-theme-p theme
)
488 (if (custom-theme-enabled-p theme
)
489 (princ "It is loaded and enabled.")
490 (princ "It is loaded but disabled."))
491 (setq doc
(get theme
'theme-documentation
)))
492 (princ "It is not loaded.")
493 ;; Attempt to grab the theme documentation
496 (insert-file-contents fn
)
497 (let ((sexp (let ((read-circle nil
))
499 (read (current-buffer))
500 (end-of-file nil
)))))
501 (and sexp
(listp sexp
)
502 (eq (car sexp
) 'deftheme
)
503 (setq doc
(nth 2 sexp
)))))))
504 (princ "\n\nDocumentation:\n")
505 (princ (if (stringp doc
)
507 "No documentation available.")))
508 (princ "\n\nYou can ")
509 (help-insert-xref-button "customize" 'help-theme-edit theme
)
510 (princ " this theme."))
515 (defvar custom--listed-themes
)
517 (defcustom custom-theme-allow-multiple-selections nil
518 "Whether to allow multi-selections in the *Custom Themes* buffer."
520 :group
'custom-buffer
)
522 (defvar custom-theme-choose-mode-map
523 (let ((map (make-keymap)))
524 (set-keymap-parent map
(make-composed-keymap 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
)
532 "Keymap for `custom-theme-choose-mode'.")
534 (define-derived-mode custom-theme-choose-mode special-mode
"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
)
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."
551 (switch-to-buffer (get-buffer-create (or buffer
"*Custom Themes*")))
552 (let ((inhibit-read-only t
))
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
))
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")
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
)))
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")))
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
)
605 (widget-create 'checkbox
606 :value custom-theme-allow-multiple-selections
607 :action
'custom-theme-selections-toggle
)
608 (widget-insert (propertize " Select more than one theme at a time"
609 'face
'(variable-pitch (:height
0.9))))
611 (widget-insert "\n\nAvailable Custom Themes:\n")
612 (let ((help-echo "mouse-2: Enable this theme for this session")
614 (dolist (theme (custom-available-themes))
615 (setq widget
(widget-create 'checkbox
616 :value
(custom-theme-enabled-p theme
)
619 :action
'custom-theme-checkbox-toggle
))
620 (push (cons theme widget
) custom--listed-themes
)
621 (widget-create-child-and-convert widget
'push-button
622 :button-face-get
'ignore
623 :mouse-face-get
'ignore
624 :value
(format " %s" theme
)
625 :action
'widget-parent-action
626 :help-echo help-echo
)
627 (widget-insert " -- "
628 (propertize (custom-theme-summary theme
)
631 (goto-char (point-min))
634 (defun custom-theme-summary (theme)
635 "Return the summary line of THEME."
637 (if (custom-theme-p theme
)
638 (setq doc
(get theme
'theme-documentation
))
639 (let ((fn (locate-file (concat (symbol-name theme
) "-theme.el")
640 (custom-theme--load-path)
644 (insert-file-contents fn
)
645 (let ((sexp (let ((read-circle nil
))
647 (read (current-buffer))
648 (end-of-file nil
)))))
649 (and sexp
(listp sexp
)
650 (eq (car sexp
) 'deftheme
)
651 (setq doc
(nth 2 sexp
))))))))
653 "(no documentation available)")
654 ((string-match ".*" doc
)
655 (match-string 0 doc
))
658 (defun custom-theme-checkbox-toggle (widget &optional event
)
659 (let ((this-theme (widget-get widget
:theme-name
)))
660 (if (widget-value widget
)
661 ;; Disable the theme.
663 (disable-theme this-theme
)
664 (widget-toggle-action widget event
))
666 (unless custom-theme-allow-multiple-selections
667 ;; If only one theme is allowed, disable all other themes and
668 ;; uncheck their boxes.
669 (dolist (theme custom-enabled-themes
)
670 (and (not (eq theme this-theme
))
671 (assq theme custom--listed-themes
)
672 (disable-theme theme
)))
673 (dolist (theme custom--listed-themes
)
674 (unless (eq (car theme
) this-theme
)
675 (widget-value-set (cdr theme
) nil
)
676 (widget-apply (cdr theme
) :notify
(cdr theme
) event
))))
677 (when (load-theme this-theme
)
678 (widget-toggle-action widget event
)))
679 ;; Mark `custom-enabled-themes' as "set for current session".
680 (put 'custom-enabled-themes
'customized-value
681 (list (custom-quote custom-enabled-themes
)))))
683 (defun custom-describe-theme ()
684 "Describe the Custom theme on the current line."
686 (let ((widget (widget-at (line-beginning-position))))
688 (describe-theme (widget-get widget
:theme-name
)))))
690 (defun custom-theme-save (&rest _ignore
)
692 (customize-save-variable 'custom-enabled-themes custom-enabled-themes
)
693 (message "Custom themes saved for future sessions."))
695 (defun custom-theme-selections-toggle (widget &optional event
)
696 (when (widget-value widget
)
697 ;; Deactivate multiple-selections.
698 (if (< 1 (length (delq nil
(mapcar (lambda (x) (widget-value (cdr x
)))
699 custom--listed-themes
))))
700 (error "More than one theme is currently selected")))
701 (widget-toggle-action widget event
)
702 (setq custom-theme-allow-multiple-selections
(widget-value widget
)))
706 ;;; cus-theme.el ends here