(cvs-vc-command-advice): Fix a typo in code (file->files).
[emacs.git] / lisp / cus-edit.el
blob869533b3c3efdfc65c48c6654570fc0140609a59
1 ;;; cus-edit.el --- tools for customizing Emacs and Lisp packages
2 ;;
3 ;; Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007 Free Software Foundation, Inc.
5 ;;
6 ;; Author: Per Abrahamsen <abraham@dina.kvl.dk>
7 ;; Maintainer: FSF
8 ;; 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, or (at your option)
15 ;; 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; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 ;; Boston, MA 02110-1301, USA.
27 ;;; Commentary:
29 ;; This file implements the code to create and edit customize buffers.
31 ;; See `custom.el'.
33 ;; No commands should have names starting with `custom-' because
34 ;; that interferes with completion. Use `customize-' for commands
35 ;; that the user will run with M-x, and `Custom-' for interactive commands.
37 ;; The identity of a customize option is represented by a Lisp symbol.
38 ;; The following values are associated with an option.
40 ;; 0. The current value.
42 ;; This is the value of the option as seen by "the rest of Emacs".
44 ;; Usually extracted by 'default-value', but can be extracted with
45 ;; different means if the option symbol has the 'custom-get'
46 ;; property. Similarly, set-default (or the 'custom-set' property)
47 ;; can set it.
49 ;; 1. The widget value.
51 ;; This is the value shown in the widget in a customize buffer.
53 ;; 2. The customized value.
55 ;; This is the last value given to the option through customize.
57 ;; It is stored in the 'customized-value' property of the option, in a
58 ;; cons-cell whose car evaluates to the customized value.
60 ;; 3. The saved value.
62 ;; This is last value saved from customize.
64 ;; It is stored in the 'saved-value' property of the option, in a
65 ;; cons-cell whose car evaluates to the saved value.
67 ;; 4. The standard value.
69 ;; This is the value given in the 'defcustom' declaration.
71 ;; It is stored in the 'standard-value' property of the option, in a
72 ;; cons-cell whose car evaluates to the standard value.
74 ;; 5. The "think" value.
76 ;; This is what customize thinks the current value should be.
78 ;; This is the customized value, if any such value exists, otherwise
79 ;; the saved value, if that exists, and as a last resort the standard
80 ;; value.
82 ;; The reason for storing values unevaluated: This is so you can have
83 ;; values that depend on the environment. For example, you can have a
84 ;; variable that has one value when Emacs is running under a window
85 ;; system, and another value on a tty. Since the evaluation is only done
86 ;; when the variable is first initialized, this is only relevant for the
87 ;; saved (and standard) values, but affect others values for
88 ;; compatibility.
90 ;; You can see (and modify and save) this unevaluated value by selecting
91 ;; "Show Saved Lisp Expression" from the Lisp interface. This will
92 ;; give you the unevaluated saved value, if any, otherwise the
93 ;; unevaluated standard value.
95 ;; The possible states for a customize widget are:
97 ;; 0. unknown
99 ;; The state has not been determined yet.
101 ;; 1. modified
103 ;; The widget value is different from the current value.
105 ;; 2. changed
107 ;; The current value is different from the "think" value.
109 ;; 3. set
111 ;; The "think" value is the customized value.
113 ;; 4. saved
115 ;; The "think" value is the saved value.
117 ;; 5. standard
119 ;; The "think" value is the standard value.
121 ;; 6. rogue
123 ;; There is no standard value. This means that the variable was
124 ;; not defined with defcustom, nor handled in cus-start.el. Most
125 ;; standard interactive Custom commands do not let you create a
126 ;; Custom buffer containing such variables. However, such Custom
127 ;; buffers can be created, for instance, by calling
128 ;; `customize-apropos' with a prefix arg or by calling
129 ;; `customize-option' non-interactively.
131 ;; 7. hidden
133 ;; There is no widget value.
135 ;; 8. mismatch
137 ;; The widget value is not valid member of the :type specified for the
138 ;; option.
140 ;;; Code:
142 (require 'cus-face)
143 (require 'wid-edit)
145 (defvar custom-versions-load-alist) ; from cus-load
146 (defvar recentf-exclude) ; from recentf.el
148 (condition-case nil
149 (require 'cus-load)
150 (error nil))
152 (condition-case nil
153 (require 'cus-start)
154 (error nil))
156 (put 'custom-define-hook 'custom-type 'hook)
157 (put 'custom-define-hook 'standard-value '(nil))
158 (custom-add-to-group 'customize 'custom-define-hook 'custom-variable)
160 ;;; Customization Groups.
162 (defgroup emacs nil
163 "Customization of the One True Editor."
164 :link '(custom-manual "(emacs)Top"))
166 ;; Most of these groups are stolen from `finder.el',
167 (defgroup editing nil
168 "Basic text editing facilities."
169 :group 'emacs)
171 (defgroup abbrev nil
172 "Abbreviation handling, typing shortcuts, macros."
173 :tag "Abbreviations"
174 :group 'editing)
176 (defgroup matching nil
177 "Various sorts of searching and matching."
178 :group 'editing)
180 (defgroup emulations nil
181 "Emulations of other editors."
182 :link '(custom-manual "(emacs)Emulation")
183 :group 'editing)
185 (defgroup mouse nil
186 "Mouse support."
187 :group 'editing)
189 (defgroup outlines nil
190 "Support for hierarchical outlining."
191 :group 'editing)
193 (defgroup external nil
194 "Interfacing to external utilities."
195 :group 'emacs)
197 (defgroup processes nil
198 "Process, subshell, compilation, and job control support."
199 :group 'external
200 :group 'development)
202 (defgroup convenience nil
203 "Convenience features for faster editing."
204 :group 'emacs)
206 (defgroup programming nil
207 "Support for programming in other languages."
208 :group 'emacs)
210 (defgroup languages nil
211 "Specialized modes for editing programming languages."
212 :group 'programming)
214 (defgroup lisp nil
215 "Lisp support, including Emacs Lisp."
216 :link '(custom-group-link :tag "Font Lock Faces group" font-lock-faces)
217 :group 'languages
218 :group 'development)
220 (defgroup c nil
221 "Support for the C language and related languages."
222 :link '(custom-group-link :tag "Font Lock Faces group" font-lock-faces)
223 :link '(custom-manual "(ccmode)")
224 :group 'languages)
226 (defgroup tools nil
227 "Programming tools."
228 :group 'programming)
230 (defgroup oop nil
231 "Support for object-oriented programming."
232 :group 'programming)
234 (defgroup applications nil
235 "Applications written in Emacs."
236 :group 'emacs)
238 (defgroup calendar nil
239 "Calendar and time management support."
240 :group 'applications)
242 (defgroup mail nil
243 "Modes for electronic-mail handling."
244 :group 'applications)
246 (defgroup news nil
247 "Support for netnews reading and posting."
248 :link '(custom-manual "(gnus)")
249 :group 'applications)
251 (defgroup games nil
252 "Games, jokes and amusements."
253 :group 'applications)
255 (defgroup development nil
256 "Support for further development of Emacs."
257 :group 'emacs)
259 (defgroup docs nil
260 "Support for Emacs documentation."
261 :group 'development)
263 (defgroup extensions nil
264 "Emacs Lisp language extensions."
265 :group 'development)
267 (defgroup internal nil
268 "Code for Emacs internals, build process, defaults."
269 :group 'development)
271 (defgroup maint nil
272 "Maintenance aids for the Emacs development group."
273 :tag "Maintenance"
274 :group 'development)
276 (defgroup environment nil
277 "Fitting Emacs with its environment."
278 :group 'emacs)
280 (defgroup comm nil
281 "Communications, networking, remote access to files."
282 :tag "Communication"
283 :group 'environment)
285 (defgroup hardware nil
286 "Support for interfacing with exotic hardware."
287 :group 'environment)
289 (defgroup terminals nil
290 "Support for terminal types."
291 :group 'environment)
293 (defgroup unix nil
294 "Front-ends/assistants for, or emulators of, UNIX features."
295 :group 'environment)
297 (defgroup vms nil
298 "Support code for vms."
299 :group 'environment)
301 (defgroup i18n nil
302 "Internationalization and alternate character-set support."
303 :link '(custom-manual "(emacs)International")
304 :group 'environment
305 :group 'editing)
307 (defgroup x nil
308 "The X Window system."
309 :group 'environment)
311 (defgroup frames nil
312 "Support for Emacs frames and window systems."
313 :group 'environment)
315 (defgroup data nil
316 "Support editing files of data."
317 :group 'emacs)
319 (defgroup files nil
320 "Support editing files."
321 :group 'emacs)
323 (defgroup wp nil
324 "Word processing."
325 :group 'emacs)
327 (defgroup tex nil
328 "Code related to the TeX formatter."
329 :link '(custom-group-link :tag "Font Lock Faces group" font-lock-faces)
330 :group 'wp)
332 (defgroup faces nil
333 "Support for multiple fonts."
334 :group 'emacs)
336 (defgroup hypermedia nil
337 "Support for links between text or other media types."
338 :group 'emacs)
340 (defgroup help nil
341 "Support for on-line help systems."
342 :group 'emacs)
344 (defgroup multimedia nil
345 "Non-textual support, specifically images and sound."
346 :group 'emacs)
348 (defgroup local nil
349 "Code local to your site."
350 :group 'emacs)
352 (defgroup customize '((widgets custom-group))
353 "Customization of the Customization support."
354 :prefix "custom-"
355 :group 'help)
357 (defgroup custom-faces nil
358 "Faces used by customize."
359 :group 'customize
360 :group 'faces)
362 (defgroup custom-browse nil
363 "Control customize browser."
364 :prefix "custom-"
365 :group 'customize)
367 (defgroup custom-buffer nil
368 "Control customize buffers."
369 :prefix "custom-"
370 :group 'customize)
372 (defgroup custom-menu nil
373 "Control customize menus."
374 :prefix "custom-"
375 :group 'customize)
377 (defgroup abbrev-mode nil
378 "Word abbreviations mode."
379 :link '(custom-manual "(emacs)Abbrevs")
380 :group 'abbrev)
382 (defgroup alloc nil
383 "Storage allocation and gc for GNU Emacs Lisp interpreter."
384 :tag "Storage Allocation"
385 :group 'internal)
387 (defgroup undo nil
388 "Undoing changes in buffers."
389 :link '(custom-manual "(emacs)Undo")
390 :group 'editing)
392 (defgroup mode-line nil
393 "Content of the modeline."
394 :group 'environment)
396 (defgroup editing-basics nil
397 "Most basic editing facilities."
398 :group 'editing)
400 (defgroup display nil
401 "How characters are displayed in buffers."
402 :group 'environment)
404 (defgroup execute nil
405 "Executing external commands."
406 :group 'processes)
408 (defgroup installation nil
409 "The Emacs installation."
410 :group 'environment)
412 (defgroup dired nil
413 "Directory editing."
414 :group 'environment)
416 (defgroup limits nil
417 "Internal Emacs limits."
418 :group 'internal)
420 (defgroup debug nil
421 "Debugging Emacs itself."
422 :group 'development)
424 (defgroup minibuffer nil
425 "Controlling the behavior of the minibuffer."
426 :link '(custom-manual "(emacs)Minibuffer")
427 :group 'environment)
429 (defgroup keyboard nil
430 "Input from the keyboard."
431 :group 'environment)
433 (defgroup mouse nil
434 "Input from the mouse."
435 :group 'environment)
437 (defgroup menu nil
438 "Input from the menus."
439 :group 'environment)
441 (defgroup dnd nil
442 "Handling data from drag and drop."
443 :group 'environment)
445 (defgroup auto-save nil
446 "Preventing accidental loss of data."
447 :group 'files)
449 (defgroup processes-basics nil
450 "Basic stuff dealing with processes."
451 :group 'processes)
453 (defgroup mule nil
454 "MULE Emacs internationalization."
455 :group 'i18n)
457 (defgroup windows nil
458 "Windows within a frame."
459 :link '(custom-manual "(emacs)Windows")
460 :group 'environment)
462 (defgroup mac nil
463 "Mac specific features."
464 :link '(custom-manual "(emacs)Mac OS")
465 :group 'environment
466 :version "22.1"
467 :prefix "mac-")
469 ;;; Custom mode keymaps
471 (defvar custom-mode-map
472 ;; This keymap should be dense, but a dense keymap would prevent inheriting
473 ;; "\r" bindings from the parent map.
474 ;; Actually, this misfeature of dense keymaps was fixed on 2001-11-26.
475 (let ((map (make-keymap)))
476 (set-keymap-parent map widget-keymap)
477 (define-key map [remap self-insert-command] 'Custom-no-edit)
478 (define-key map "\^m" 'Custom-newline)
479 (define-key map " " 'scroll-up)
480 (define-key map "\177" 'scroll-down)
481 (define-key map "\C-c\C-c" 'Custom-set)
482 (define-key map "\C-x\C-s" 'Custom-save)
483 (define-key map "q" 'Custom-buffer-done)
484 (define-key map "u" 'Custom-goto-parent)
485 (define-key map "n" 'widget-forward)
486 (define-key map "p" 'widget-backward)
487 map)
488 "Keymap for `custom-mode'.")
490 (defvar custom-mode-link-map
491 (let ((map (make-keymap)))
492 (set-keymap-parent map custom-mode-map)
493 (define-key map [down-mouse-2] nil)
494 (define-key map [down-mouse-1] 'mouse-drag-region)
495 (define-key map [mouse-2] 'widget-move-and-invoke)
496 map)
497 "Local keymap for links in `custom-mode'.")
500 ;;; Utilities.
502 (defun custom-split-regexp-maybe (regexp)
503 "If REGEXP is a string, split it to a list at `\\|'.
504 You can get the original back from the result with:
505 (mapconcat 'identity result \"\\|\")
507 IF REGEXP is not a string, return it unchanged."
508 (if (stringp regexp)
509 (split-string regexp "\\\\|")
510 regexp))
512 (defun custom-variable-prompt ()
513 "Prompt for a custom variable, defaulting to the variable at point.
514 Return a list suitable for use in `interactive'."
515 (let* ((v (variable-at-point))
516 (default (and (symbolp v) (custom-variable-p v) (symbol-name v)))
517 (enable-recursive-minibuffers t)
518 val)
519 (setq val (completing-read
520 (if default (format "Customize variable (default %s): " default)
521 "Customize variable: ")
522 obarray 'custom-variable-p t nil nil default))
523 (list (if (equal val "")
524 (if (symbolp v) v nil)
525 (intern val)))))
527 (defun custom-menu-filter (menu widget)
528 "Convert MENU to the form used by `widget-choose'.
529 MENU should be in the same format as `custom-variable-menu'.
530 WIDGET is the widget to apply the filter entries of MENU on."
531 (let ((result nil)
532 current name action filter)
533 (while menu
534 (setq current (car menu)
535 name (nth 0 current)
536 action (nth 1 current)
537 filter (nth 2 current)
538 menu (cdr menu))
539 (if (or (null filter) (funcall filter widget))
540 (push (cons name action) result)
541 (push name result)))
542 (nreverse result)))
544 ;;; Unlispify.
546 (defvar custom-prefix-list nil
547 "List of prefixes that should be ignored by `custom-unlispify'.")
549 (defcustom custom-unlispify-menu-entries t
550 "Display menu entries as words instead of symbols if non-nil."
551 :group 'custom-menu
552 :type 'boolean)
554 (defcustom custom-unlispify-remove-prefixes nil
555 "Non-nil means remove group prefixes from option names in buffer."
556 :group 'custom-menu
557 :group 'custom-buffer
558 :type 'boolean)
560 (defun custom-unlispify-menu-entry (symbol &optional no-suffix)
561 "Convert SYMBOL into a menu entry."
562 (cond ((not custom-unlispify-menu-entries)
563 (symbol-name symbol))
564 ((get symbol 'custom-tag)
565 (if no-suffix
566 (get symbol 'custom-tag)
567 (concat (get symbol 'custom-tag) "...")))
569 (with-current-buffer (get-buffer-create " *Custom-Work*")
570 (erase-buffer)
571 (princ symbol (current-buffer))
572 (goto-char (point-min))
573 ;; FIXME: Boolean variables are not predicates, so they shouldn't
574 ;; end with `-p'. -stef
575 ;; (when (and (eq (get symbol 'custom-type) 'boolean)
576 ;; (re-search-forward "-p\\'" nil t))
577 ;; (replace-match "" t t)
578 ;; (goto-char (point-min)))
579 (if custom-unlispify-remove-prefixes
580 (let ((prefixes custom-prefix-list)
581 prefix)
582 (while prefixes
583 (setq prefix (car prefixes))
584 (if (search-forward prefix (+ (point) (length prefix)) t)
585 (progn
586 (setq prefixes nil)
587 (delete-region (point-min) (point)))
588 (setq prefixes (cdr prefixes))))))
589 (subst-char-in-region (point-min) (point-max) ?- ?\ t)
590 (capitalize-region (point-min) (point-max))
591 (unless no-suffix
592 (goto-char (point-max))
593 (insert "..."))
594 (buffer-string)))))
596 (defcustom custom-unlispify-tag-names t
597 "Display tag names as words instead of symbols if non-nil."
598 :group 'custom-buffer
599 :type 'boolean)
601 (defun custom-unlispify-tag-name (symbol)
602 "Convert SYMBOL into a menu entry."
603 (let ((custom-unlispify-menu-entries custom-unlispify-tag-names))
604 (custom-unlispify-menu-entry symbol t)))
606 (defun custom-prefix-add (symbol prefixes)
607 "Add SYMBOL to list of ignored PREFIXES."
608 (cons (or (get symbol 'custom-prefix)
609 (concat (symbol-name symbol) "-"))
610 prefixes))
612 ;;; Guess.
614 (defcustom custom-guess-name-alist
615 '(("-p\\'" boolean)
616 ("-flag\\'" boolean)
617 ("-hook\\'" hook)
618 ("-face\\'" face)
619 ("-file\\'" file)
620 ("-function\\'" function)
621 ("-functions\\'" (repeat function))
622 ("-list\\'" (repeat sexp))
623 ("-alist\\'" (repeat (cons sexp sexp))))
624 "Alist of (MATCH TYPE).
626 MATCH should be a regexp matching the name of a symbol, and TYPE should
627 be a widget suitable for editing the value of that symbol. The TYPE
628 of the first entry where MATCH matches the name of the symbol will be
629 used.
631 This is used for guessing the type of variables not declared with
632 customize."
633 :type '(repeat (group (regexp :tag "Match") (sexp :tag "Type")))
634 :group 'custom-buffer)
636 (defcustom custom-guess-doc-alist
637 '(("\\`\\*?Non-nil " boolean))
638 "Alist of (MATCH TYPE).
640 MATCH should be a regexp matching a documentation string, and TYPE
641 should be a widget suitable for editing the value of a variable with
642 that documentation string. The TYPE of the first entry where MATCH
643 matches the name of the symbol will be used.
645 This is used for guessing the type of variables not declared with
646 customize."
647 :type '(repeat (group (regexp :tag "Match") (sexp :tag "Type")))
648 :group 'custom-buffer)
650 (defun custom-guess-type (symbol)
651 "Guess a widget suitable for editing the value of SYMBOL.
652 This is done by matching SYMBOL with `custom-guess-name-alist' and
653 if that fails, the doc string with `custom-guess-doc-alist'."
654 (let ((name (symbol-name symbol))
655 (names custom-guess-name-alist)
656 current found)
657 (while names
658 (setq current (car names)
659 names (cdr names))
660 (when (string-match (nth 0 current) name)
661 (setq found (nth 1 current)
662 names nil)))
663 (unless found
664 (let ((doc (documentation-property symbol 'variable-documentation))
665 (docs custom-guess-doc-alist))
666 (when doc
667 (while docs
668 (setq current (car docs)
669 docs (cdr docs))
670 (when (string-match (nth 0 current) doc)
671 (setq found (nth 1 current)
672 docs nil))))))
673 found))
675 ;;; Sorting.
677 ;;;###autoload
678 (defcustom custom-browse-sort-alphabetically nil
679 "If non-nil, sort customization group alphabetically in `custom-browse'."
680 :type 'boolean
681 :group 'custom-browse)
683 (defcustom custom-browse-order-groups nil
684 "If non-nil, order group members within each customization group.
685 If `first', order groups before non-groups.
686 If `last', order groups after non-groups."
687 :type '(choice (const first)
688 (const last)
689 (const :tag "none" nil))
690 :group 'custom-browse)
692 (defcustom custom-browse-only-groups nil
693 "If non-nil, show group members only within each customization group."
694 :type 'boolean
695 :group 'custom-browse)
697 ;;;###autoload
698 (defcustom custom-buffer-sort-alphabetically nil
699 "If non-nil, sort each customization group alphabetically in Custom buffer."
700 :type 'boolean
701 :group 'custom-buffer)
703 (defcustom custom-buffer-order-groups 'last
704 "If non-nil, order group members within each customization group.
705 If `first', order groups before non-groups.
706 If `last', order groups after non-groups."
707 :type '(choice (const first)
708 (const last)
709 (const :tag "none" nil))
710 :group 'custom-buffer)
712 ;;;###autoload
713 (defcustom custom-menu-sort-alphabetically nil
714 "If non-nil, sort each customization group alphabetically in menus."
715 :type 'boolean
716 :group 'custom-menu)
718 (defcustom custom-menu-order-groups 'first
719 "If non-nil, order group members within each customization group.
720 If `first', order groups before non-groups.
721 If `last', order groups after non-groups."
722 :type '(choice (const first)
723 (const last)
724 (const :tag "none" nil))
725 :group 'custom-menu)
727 ;;;###autoload (add-hook 'same-window-regexps "\\`\\*Customiz.*\\*\\'")
729 (defun custom-sort-items (items sort-alphabetically order-groups)
730 "Return a sorted copy of ITEMS.
731 ITEMS should be a `custom-group' property.
732 If SORT-ALPHABETICALLY non-nil, sort alphabetically.
733 If ORDER-GROUPS is `first' order groups before non-groups, if `last' order
734 groups after non-groups, if nil do not order groups at all."
735 (sort (copy-sequence items)
736 (lambda (a b)
737 (let ((typea (nth 1 a)) (typeb (nth 1 b))
738 (namea (nth 0 a)) (nameb (nth 0 b)))
739 (cond ((not order-groups)
740 ;; Since we don't care about A and B order, maybe sort.
741 (when sort-alphabetically
742 (string-lessp namea nameb)))
743 ((eq typea 'custom-group)
744 ;; If B is also a group, maybe sort. Otherwise, order A and B.
745 (if (eq typeb 'custom-group)
746 (when sort-alphabetically
747 (string-lessp namea nameb))
748 (eq order-groups 'first)))
749 ((eq typeb 'custom-group)
750 ;; Since A cannot be a group, order A and B.
751 (eq order-groups 'last))
752 (sort-alphabetically
753 ;; Since A and B cannot be groups, sort.
754 (string-lessp namea nameb)))))))
756 ;;; Custom Mode Commands.
758 ;; This variable is used by `custom-tool-bar-map', or directly by
759 ;; `custom-buffer-create-internal' if the toolbar is not present and
760 ;; `custom-buffer-verbose-help' is non-nil.
762 (defvar custom-commands
763 '(("Set for current session" Custom-set t
764 "Apply all settings in this buffer to the current session"
765 "index")
766 ("Save for future sessions" Custom-save
767 (or custom-file user-init-file)
768 "Apply all settings in this buffer and save them for future Emacs sessions."
769 "save")
770 ("Undo edits" Custom-reset-current t
771 "Restore all settings in this buffer to reflect their current values."
772 "refresh")
773 ("Reset to saved" Custom-reset-saved t
774 "Restore all settings in this buffer to their saved values (if any)."
775 "undo")
776 ("Erase customizations" Custom-reset-standard
777 (or custom-file user-init-file)
778 "Un-customize all settings in this buffer and save them with standard values."
779 "delete")
780 ("Help for Customize" Custom-help t
781 "Get help for using Customize."
782 "help")
783 ("Exit" Custom-buffer-done t "Exit Customize." "exit")))
785 (defun Custom-help ()
786 "Read the node on Easy Customization in the Emacs manual."
787 (interactive)
788 (info "(emacs)Easy Customization"))
790 (defvar custom-reset-menu
791 '(("Undo Edits" . Custom-reset-current)
792 ("Reset to Saved" . Custom-reset-saved)
793 ("Erase Customizations (use standard values)" . Custom-reset-standard))
794 "Alist of actions for the `Reset' button.
795 The key is a string containing the name of the action, the value is a
796 Lisp function taking the widget as an element which will be called
797 when the action is chosen.")
799 (defvar custom-options nil
800 "Customization widgets in the current buffer.")
802 (defun custom-command-apply (fun query &optional strong-query)
803 "Call function FUN on all widgets in `custom-options'.
804 If there is more than one widget, ask user for confirmation using
805 the query string QUERY, using `y-or-n-p' if STRONG-QUERY is nil,
806 and `yes-or-no-p' otherwise."
807 (if (or (and (= 1 (length custom-options))
808 (memq (widget-type (car custom-options))
809 '(custom-variable custom-face)))
810 (funcall (if strong-query 'yes-or-no-p 'y-or-n-p) query))
811 (progn (mapc fun custom-options) t)
812 (message "Aborted")
813 nil))
815 (defun Custom-set (&rest ignore)
816 "Set the current value of all edited settings in the buffer."
817 (interactive)
818 (custom-command-apply
819 (lambda (child)
820 (when (eq (widget-get child :custom-state) 'modified)
821 (widget-apply child :custom-set)))
822 "Set all values according to this buffer? "))
824 (defun Custom-save (&rest ignore)
825 "Set all edited settings, then save all settings that have been set.
826 If a setting was edited and set before, this saves it.
827 If a setting was merely edited before, this sets it then saves it."
828 (interactive)
829 (if (custom-command-apply
830 (lambda (child)
831 (when (memq (widget-get child :custom-state)
832 '(modified set changed rogue))
833 (widget-apply child :custom-save)))
834 "Save all settings in this buffer? " t)
835 (custom-save-all)))
837 (defun custom-reset (widget &optional event)
838 "Select item from reset menu."
839 (let* ((completion-ignore-case t)
840 (answer (widget-choose "Reset settings"
841 custom-reset-menu
842 event)))
843 (if answer
844 (funcall answer))))
846 (defun Custom-reset-current (&rest ignore)
847 "Reset all edited settings in the buffer to show their current values."
848 (interactive)
849 (custom-command-apply
850 (lambda (widget)
851 (if (memq (widget-get widget :custom-state) '(modified changed))
852 (widget-apply widget :custom-reset-current)))
853 "Reset all settings' buffer text to show current values? "))
855 (defun Custom-reset-saved (&rest ignore)
856 "Reset all edited or set settings in the buffer to their saved value.
857 This also shows the saved values in the buffer."
858 (interactive)
859 (custom-command-apply
860 (lambda (widget)
861 (if (memq (widget-get widget :custom-state) '(modified set changed rogue))
862 (widget-apply widget :custom-reset-saved)))
863 "Reset all settings (current values and buffer text) to saved values? "))
865 (defun Custom-reset-standard (&rest ignore)
866 "Erase all customization (either current or saved) for the group members.
867 The immediate result is to restore them to their standard values.
868 This operation eliminates any saved values for the group members,
869 making them as if they had never been customized at all."
870 (interactive)
871 (custom-command-apply
872 (lambda (widget)
873 (and (or (null (widget-get widget :custom-standard-value))
874 (widget-apply widget :custom-standard-value))
875 (memq (widget-get widget :custom-state)
876 '(modified set changed saved rogue))
877 (widget-apply widget :custom-reset-standard)))
878 "Erase all customizations for settings in this buffer? " t))
880 ;;; The Customize Commands
882 (defun custom-prompt-variable (prompt-var prompt-val &optional comment)
883 "Prompt for a variable and a value and return them as a list.
884 PROMPT-VAR is the prompt for the variable, and PROMPT-VAL is the
885 prompt for the value. The %s escape in PROMPT-VAL is replaced with
886 the name of the variable.
888 If the variable has a `variable-interactive' property, that is used as if
889 it were the arg to `interactive' (which see) to interactively read the value.
891 If the variable has a `custom-type' property, it must be a widget and the
892 `:prompt-value' property of that widget will be used for reading the value.
894 If optional COMMENT argument is non-nil, also prompt for a comment and return
895 it as the third element in the list."
896 (let* ((var (read-variable prompt-var))
897 (minibuffer-help-form '(describe-variable var))
898 (val
899 (let ((prop (get var 'variable-interactive))
900 (type (get var 'custom-type))
901 (prompt (format prompt-val var)))
902 (unless (listp type)
903 (setq type (list type)))
904 (cond (prop
905 ;; Use VAR's `variable-interactive' property
906 ;; as an interactive spec for prompting.
907 (call-interactively `(lambda (arg)
908 (interactive ,prop)
909 arg)))
910 (type
911 (widget-prompt-value type
912 prompt
913 (if (boundp var)
914 (symbol-value var))
915 (not (boundp var))))
917 (eval-minibuffer prompt))))))
918 (if comment
919 (list var val
920 (read-string "Comment: " (get var 'variable-comment)))
921 (list var val))))
923 ;;;###autoload
924 (defun customize-set-value (variable value &optional comment)
925 "Set VARIABLE to VALUE, and return VALUE. VALUE is a Lisp object.
927 If VARIABLE has a `variable-interactive' property, that is used as if
928 it were the arg to `interactive' (which see) to interactively read the value.
930 If VARIABLE has a `custom-type' property, it must be a widget and the
931 `:prompt-value' property of that widget will be used for reading the value.
933 If given a prefix (or a COMMENT argument), also prompt for a comment."
934 (interactive (custom-prompt-variable "Set variable: "
935 "Set %s to value: "
936 current-prefix-arg))
938 (cond ((string= comment "")
939 (put variable 'variable-comment nil))
940 (comment
941 (put variable 'variable-comment comment)))
942 (set variable value))
944 ;;;###autoload
945 (defun customize-set-variable (variable value &optional comment)
946 "Set the default for VARIABLE to VALUE, and return VALUE.
947 VALUE is a Lisp object.
949 If VARIABLE has a `custom-set' property, that is used for setting
950 VARIABLE, otherwise `set-default' is used.
952 If VARIABLE has a `variable-interactive' property, that is used as if
953 it were the arg to `interactive' (which see) to interactively read the value.
955 If VARIABLE has a `custom-type' property, it must be a widget and the
956 `:prompt-value' property of that widget will be used for reading the value.
958 If given a prefix (or a COMMENT argument), also prompt for a comment."
959 (interactive (custom-prompt-variable "Set variable: "
960 "Set customized value for %s to: "
961 current-prefix-arg))
962 (custom-load-symbol variable)
963 (custom-push-theme 'theme-value variable 'user 'set (custom-quote value))
964 (funcall (or (get variable 'custom-set) 'set-default) variable value)
965 (put variable 'customized-value (list (custom-quote value)))
966 (cond ((string= comment "")
967 (put variable 'variable-comment nil)
968 (put variable 'customized-variable-comment nil))
969 (comment
970 (put variable 'variable-comment comment)
971 (put variable 'customized-variable-comment comment)))
972 value)
974 ;;;###autoload
975 (defun customize-save-variable (variable value &optional comment)
976 "Set the default for VARIABLE to VALUE, and save it for future sessions.
977 Return VALUE.
979 If VARIABLE has a `custom-set' property, that is used for setting
980 VARIABLE, otherwise `set-default' is used.
982 If VARIABLE has a `variable-interactive' property, that is used as if
983 it were the arg to `interactive' (which see) to interactively read the value.
985 If VARIABLE has a `custom-type' property, it must be a widget and the
986 `:prompt-value' property of that widget will be used for reading the value.
988 If given a prefix (or a COMMENT argument), also prompt for a comment."
989 (interactive (custom-prompt-variable "Set and save variable: "
990 "Set and save value for %s as: "
991 current-prefix-arg))
992 (funcall (or (get variable 'custom-set) 'set-default) variable value)
993 (put variable 'saved-value (list (custom-quote value)))
994 (custom-push-theme 'theme-value variable 'user 'set (custom-quote value))
995 (cond ((string= comment "")
996 (put variable 'variable-comment nil)
997 (put variable 'saved-variable-comment nil))
998 (comment
999 (put variable 'variable-comment comment)
1000 (put variable 'saved-variable-comment comment)))
1001 (put variable 'customized-value nil)
1002 (put variable 'customized-variable-comment nil)
1003 (custom-save-all)
1004 value)
1006 ;;;###autoload
1007 (defun customize ()
1008 "Select a customization buffer which you can use to set user options.
1009 User options are structured into \"groups\".
1010 Initially the top-level group `Emacs' and its immediate subgroups
1011 are shown; the contents of those subgroups are initially hidden."
1012 (interactive)
1013 (customize-group 'emacs))
1015 ;;;###autoload
1016 (defun customize-mode (mode)
1017 "Customize options related to the current major mode.
1018 If a prefix \\[universal-argument] was given (or if the current major mode has no known group),
1019 then prompt for the MODE to customize."
1020 (interactive
1021 (list
1022 (let ((completion-regexp-list '("-mode\\'"))
1023 (group (custom-group-of-mode major-mode)))
1024 (if (and group (not current-prefix-arg))
1025 major-mode
1026 (intern
1027 (completing-read (if group
1028 (format "Major mode (default %s): " major-mode)
1029 "Major mode: ")
1030 obarray
1031 'custom-group-of-mode
1032 t nil nil (if group (symbol-name major-mode))))))))
1033 (customize-group (custom-group-of-mode mode)))
1035 (defun customize-read-group ()
1036 (let ((completion-ignore-case t))
1037 (completing-read "Customize group (default emacs): "
1038 obarray
1039 (lambda (symbol)
1040 (or (and (get symbol 'custom-loads)
1041 (not (get symbol 'custom-autoload)))
1042 (get symbol 'custom-group)))
1043 t)))
1045 ;;;###autoload
1046 (defun customize-group (&optional group)
1047 "Customize GROUP, which must be a customization group."
1048 (interactive (list (customize-read-group)))
1049 (when (stringp group)
1050 (if (string-equal "" group)
1051 (setq group 'emacs)
1052 (setq group (intern group))))
1053 (let ((name (format "*Customize Group: %s*"
1054 (custom-unlispify-tag-name group))))
1055 (if (get-buffer name)
1056 (pop-to-buffer name)
1057 (custom-buffer-create
1058 (list (list group 'custom-group))
1059 name
1060 (concat " for group "
1061 (custom-unlispify-tag-name group))))))
1063 ;;;###autoload
1064 (defun customize-group-other-window (&optional group)
1065 "Customize GROUP, which must be a customization group, in another window."
1066 (interactive (list (customize-read-group)))
1067 (let ((pop-up-windows t)
1068 (same-window-buffer-names nil)
1069 (same-window-regexps nil))
1070 (customize-group group)))
1072 ;;;###autoload
1073 (defalias 'customize-variable 'customize-option)
1075 ;;;###autoload
1076 (defun customize-option (symbol)
1077 "Customize SYMBOL, which must be a user option variable."
1078 (interactive (custom-variable-prompt))
1079 (unless symbol
1080 (error "No variable specified"))
1081 (let ((basevar (indirect-variable symbol)))
1082 (custom-buffer-create (list (list basevar 'custom-variable))
1083 (format "*Customize Option: %s*"
1084 (custom-unlispify-tag-name basevar)))
1085 (unless (eq symbol basevar)
1086 (message "`%s' is an alias for `%s'" symbol basevar))))
1088 ;;;###autoload
1089 (defalias 'customize-variable-other-window 'customize-option-other-window)
1091 ;;;###autoload
1092 (defun customize-option-other-window (symbol)
1093 "Customize SYMBOL, which must be a user option variable.
1094 Show the buffer in another window, but don't select it."
1095 (interactive (custom-variable-prompt))
1096 (unless symbol
1097 (error "No variable specified"))
1098 (let ((basevar (indirect-variable symbol)))
1099 (custom-buffer-create-other-window
1100 (list (list basevar 'custom-variable))
1101 (format "*Customize Option: %s*" (custom-unlispify-tag-name basevar)))
1102 (unless (eq symbol basevar)
1103 (message "`%s' is an alias for `%s'" symbol basevar))))
1105 (defvar customize-changed-options-previous-release "21.1"
1106 "Version for `customize-changed-options' to refer back to by default.")
1108 ;; Packages will update this variable, so make it available.
1109 ;;;###autoload
1110 (defvar customize-package-emacs-version-alist nil
1111 "Alist mapping versions of a package to Emacs versions.
1112 We use this for packages that have their own names, but are released
1113 as part of Emacs itself.
1115 Each elements looks like this:
1117 (PACKAGE (PVERSION . EVERSION)...)
1119 Here PACKAGE is the name of a package, as a symbol. After
1120 PACKAGE come one or more elements, each associating a
1121 package version PVERSION with the first Emacs version
1122 EVERSION in which it (or a subsequent version of PACKAGE)
1123 was first released. Both PVERSION and EVERSION are strings.
1124 PVERSION should be a string that this package used in
1125 the :package-version keyword for `defcustom', `defgroup',
1126 and `defface'.
1128 For example, the MH-E package updates this alist as follows:
1130 (add-to-list 'customize-package-emacs-version-alist
1131 '(MH-E (\"6.0\" . \"22.1\") (\"6.1\" . \"22.1\")
1132 (\"7.0\" . \"22.1\") (\"7.1\" . \"22.1\")
1133 (\"7.2\" . \"22.1\") (\"7.3\" . \"22.1\")
1134 (\"7.4\" . \"22.1\") (\"8.0\" . \"22.1\")))
1136 The value of PACKAGE needs to be unique and it needs to match the
1137 PACKAGE value appearing in the :package-version keyword. Since
1138 the user might see the value in a error message, a good choice is
1139 the official name of the package, such as MH-E or Gnus.")
1141 ;;;###autoload
1142 (defalias 'customize-changed 'customize-changed-options)
1144 ;;;###autoload
1145 (defun customize-changed-options (since-version)
1146 "Customize all settings whose meanings have changed in Emacs itself.
1147 This includes new user option variables and faces, and new
1148 customization groups, as well as older options and faces whose meanings
1149 or default values have changed since the previous major Emacs release.
1151 With argument SINCE-VERSION (a string), customize all settings
1152 that were added or redefined since that version."
1154 (interactive
1155 (list
1156 (read-from-minibuffer
1157 (format "Customize options changed, since version (default %s): "
1158 customize-changed-options-previous-release))))
1159 (if (equal since-version "")
1160 (setq since-version nil)
1161 (unless (condition-case nil
1162 (numberp (read since-version))
1163 (error nil))
1164 (signal 'wrong-type-argument (list 'numberp since-version))))
1165 (unless since-version
1166 (setq since-version customize-changed-options-previous-release))
1168 ;; Load the information for versions since since-version. We use
1169 ;; custom-load-symbol for this.
1170 (put 'custom-versions-load-alist 'custom-loads nil)
1171 (dolist (elt custom-versions-load-alist)
1172 (if (customize-version-lessp since-version (car elt))
1173 (dolist (load (cdr elt))
1174 (custom-add-load 'custom-versions-load-alist load))))
1175 (custom-load-symbol 'custom-versions-load-alist)
1176 (put 'custom-versions-load-alist 'custom-loads nil)
1178 (let (found)
1179 (mapatoms
1180 (lambda (symbol)
1181 (let* ((package-version (get symbol 'custom-package-version))
1182 (version
1183 (or (and package-version
1184 (customize-package-emacs-version symbol
1185 package-version))
1186 (get symbol 'custom-version))))
1187 (if version
1188 (when (customize-version-lessp since-version version)
1189 (if (or (get symbol 'custom-group)
1190 (get symbol 'group-documentation))
1191 (push (list symbol 'custom-group) found))
1192 (if (custom-variable-p symbol)
1193 (push (list symbol 'custom-variable) found))
1194 (if (custom-facep symbol)
1195 (push (list symbol 'custom-face) found)))))))
1196 (if found
1197 (custom-buffer-create (custom-sort-items found t 'first)
1198 "*Customize Changed Options*")
1199 (error "No user option defaults have been changed since Emacs %s"
1200 since-version))))
1202 (defun customize-package-emacs-version (symbol package-version)
1203 "Return the Emacs version in which SYMBOL's meaning last changed.
1204 PACKAGE-VERSION has the form (PACKAGE . VERSION). We use
1205 `customize-package-emacs-version-alist' to find the version of
1206 Emacs that is associated with version VERSION of PACKAGE."
1207 (let (package-versions emacs-version)
1208 ;; Use message instead of error since we want user to be able to
1209 ;; see the rest of the symbols even if a package author has
1210 ;; botched things up.
1211 (cond ((not (listp package-version))
1212 (message "Invalid package-version value for %s" symbol))
1213 ((setq package-versions (assq (car package-version)
1214 customize-package-emacs-version-alist))
1215 (setq emacs-version
1216 (cdr (assoc (cdr package-version) package-versions)))
1217 (unless emacs-version
1218 (message "%s version %s not found in %s" symbol
1219 (cdr package-version)
1220 "customize-package-emacs-version-alist")))
1222 (message "Package %s version %s lists no corresponding Emacs version"
1223 (car package-version)
1224 (cdr package-version))))
1225 emacs-version))
1227 (defun customize-version-lessp (version1 version2)
1228 ;; Why are the versions strings, and given that they are, why aren't
1229 ;; they converted to numbers and compared as such here? -- fx
1231 ;; In case someone made a mistake and left out the quotes
1232 ;; in the :version value.
1233 (if (numberp version2)
1234 (setq version2 (prin1-to-string version2)))
1235 (let (major1 major2 minor1 minor2)
1236 (string-match "\\([0-9]+\\)\\(\\.\\([0-9]+\\)\\)?" version1)
1237 (setq major1 (read (or (match-string 1 version1)
1238 "0")))
1239 (setq minor1 (read (or (match-string 3 version1)
1240 "0")))
1241 (string-match "\\([0-9]+\\)\\(\\.\\([0-9]+\\)\\)?" version2)
1242 (setq major2 (read (or (match-string 1 version2)
1243 "0")))
1244 (setq minor2 (read (or (match-string 3 version2)
1245 "0")))
1246 (or (< major1 major2)
1247 (and (= major1 major2)
1248 (< minor1 minor2)))))
1250 ;;;###autoload
1251 (defun customize-face (&optional face)
1252 "Customize FACE, which should be a face name or nil.
1253 If FACE is nil, customize all faces. If FACE is actually a
1254 face-alias, customize the face it is aliased to.
1256 Interactively, when point is on text which has a face specified,
1257 suggest to customize that face, if it's customizable."
1258 (interactive (list (read-face-name "Customize face" "all faces" t)))
1259 (if (member face '(nil ""))
1260 (setq face (face-list)))
1261 (if (and (listp face) (null (cdr face)))
1262 (setq face (car face)))
1263 (if (listp face)
1264 (custom-buffer-create
1265 (custom-sort-items
1266 (mapcar (lambda (s) (list s 'custom-face)) face)
1267 t nil)
1268 "*Customize Faces*")
1269 ;; If FACE is actually an alias, customize the face it is aliased to.
1270 (if (get face 'face-alias)
1271 (setq face (get face 'face-alias)))
1272 (unless (facep face)
1273 (error "Invalid face %S" face))
1274 (custom-buffer-create
1275 (list (list face 'custom-face))
1276 (format "*Customize Face: %s*"
1277 (custom-unlispify-tag-name face)))))
1279 ;;;###autoload
1280 (defun customize-face-other-window (&optional face)
1281 "Show customization buffer for face FACE in other window.
1282 If FACE is actually a face-alias, customize the face it is aliased to.
1284 Interactively, when point is on text which has a face specified,
1285 suggest to customize that face, if it's customizable."
1286 (interactive (list (read-face-name "Customize face" "all faces" t)))
1287 (let ((pop-up-windows t)
1288 (same-window-buffer-names nil)
1289 (same-window-regexps nil))
1290 (customize-face face)))
1292 (defalias 'customize-customized 'customize-unsaved)
1294 ;;;###autoload
1295 (defun customize-unsaved ()
1296 "Customize all user options set in this session but not saved."
1297 (interactive)
1298 (let ((found nil))
1299 (mapatoms (lambda (symbol)
1300 (and (or (get symbol 'customized-face)
1301 (get symbol 'customized-face-comment))
1302 (custom-facep symbol)
1303 (push (list symbol 'custom-face) found))
1304 (and (or (get symbol 'customized-value)
1305 (get symbol 'customized-variable-comment))
1306 (boundp symbol)
1307 (push (list symbol 'custom-variable) found))))
1308 (if (not found)
1309 (error "No user options are set but unsaved")
1310 (custom-buffer-create (custom-sort-items found t nil)
1311 "*Customize Unsaved*"))))
1313 ;;;###autoload
1314 (defun customize-rogue ()
1315 "Customize all user variables modified outside customize."
1316 (interactive)
1317 (let ((found nil))
1318 (mapatoms (lambda (symbol)
1319 (let ((cval (or (get symbol 'customized-value)
1320 (get symbol 'saved-value)
1321 (get symbol 'standard-value))))
1322 (when (and cval ;Declared with defcustom.
1323 (default-boundp symbol) ;Has a value.
1324 (not (equal (eval (car cval))
1325 ;; Which does not match customize.
1326 (default-value symbol))))
1327 (push (list symbol 'custom-variable) found)))))
1328 (if (not found)
1329 (error "No rogue user options")
1330 (custom-buffer-create (custom-sort-items found t nil)
1331 "*Customize Rogue*"))))
1332 ;;;###autoload
1333 (defun customize-saved ()
1334 "Customize all already saved user options."
1335 (interactive)
1336 (let ((found nil))
1337 (mapatoms (lambda (symbol)
1338 (and (or (get symbol 'saved-face)
1339 (get symbol 'saved-face-comment))
1340 (custom-facep symbol)
1341 (push (list symbol 'custom-face) found))
1342 (and (or (get symbol 'saved-value)
1343 (get symbol 'saved-variable-comment))
1344 (boundp symbol)
1345 (push (list symbol 'custom-variable) found))))
1346 (if (not found )
1347 (error "No saved user options")
1348 (custom-buffer-create (custom-sort-items found t nil)
1349 "*Customize Saved*"))))
1351 ;;;###autoload
1352 (defun customize-apropos (regexp &optional all)
1353 "Customize all loaded options, faces and groups matching REGEXP.
1354 If ALL is `options', include only options.
1355 If ALL is `faces', include only faces.
1356 If ALL is `groups', include only groups.
1357 If ALL is t (interactively, with prefix arg), include variables
1358 that are not customizable options, as well as faces and groups
1359 \(but we recommend using `apropos-variable' instead)."
1360 (interactive "sCustomize (regexp): \nP")
1361 (let ((found nil))
1362 (mapatoms (lambda (symbol)
1363 (when (string-match regexp (symbol-name symbol))
1364 (when (and (not (memq all '(faces options)))
1365 (get symbol 'custom-group))
1366 (push (list symbol 'custom-group) found))
1367 (when (and (not (memq all '(options groups)))
1368 (custom-facep symbol))
1369 (push (list symbol 'custom-face) found))
1370 (when (and (not (memq all '(groups faces)))
1371 (boundp symbol)
1372 (eq (indirect-variable symbol) symbol)
1373 (or (get symbol 'saved-value)
1374 (custom-variable-p symbol)
1375 (and (not (memq all '(nil options)))
1376 (get symbol 'variable-documentation))))
1377 (push (list symbol 'custom-variable) found)))))
1378 (if (not found)
1379 (error "No %s matching %s"
1380 (if (eq all t)
1381 "items"
1382 (format "customizable %s"
1383 (if (memq all '(options faces groups))
1384 (symbol-name all)
1385 "items")))
1386 regexp)
1387 (custom-buffer-create
1388 (custom-sort-items found t custom-buffer-order-groups)
1389 "*Customize Apropos*"))))
1391 ;;;###autoload
1392 (defun customize-apropos-options (regexp &optional arg)
1393 "Customize all loaded customizable options matching REGEXP.
1394 With prefix arg, include variables that are not customizable options
1395 \(but we recommend using `apropos-variable' instead)."
1396 (interactive "sCustomize options (regexp): \nP")
1397 (customize-apropos regexp (or arg 'options)))
1399 ;;;###autoload
1400 (defun customize-apropos-faces (regexp)
1401 "Customize all loaded faces matching REGEXP."
1402 (interactive "sCustomize faces (regexp): \n")
1403 (customize-apropos regexp 'faces))
1405 ;;;###autoload
1406 (defun customize-apropos-groups (regexp)
1407 "Customize all loaded groups matching REGEXP."
1408 (interactive "sCustomize groups (regexp): \n")
1409 (customize-apropos regexp 'groups))
1411 ;;; Buffer.
1413 (defcustom custom-buffer-style 'links
1414 "Control the presentation style for customization buffers.
1415 The value should be a symbol, one of:
1417 brackets: groups nest within each other with big horizontal brackets.
1418 links: groups have links to subgroups."
1419 :type '(radio (const brackets)
1420 (const links))
1421 :group 'custom-buffer)
1423 (defcustom custom-buffer-done-kill nil
1424 "*Non-nil means exiting a Custom buffer should kill it."
1425 :type 'boolean
1426 :version "22.1"
1427 :group 'custom-buffer)
1429 (defcustom custom-buffer-indent 3
1430 "Number of spaces to indent nested groups."
1431 :type 'integer
1432 :group 'custom-buffer)
1434 (defun custom-get-fresh-buffer (name)
1435 "Get a fresh new buffer with name NAME.
1436 If the buffer already exist, clean it up to be like new.
1437 Beware: it's not quite like new. Good enough for custom, but maybe
1438 not for everybody."
1439 ;; To be more complete, we should also kill all permanent-local variables,
1440 ;; but it's not needed for custom.
1441 (let ((buf (get-buffer name)))
1442 (when (and buf (buffer-local-value 'buffer-file-name buf))
1443 ;; This will check if the file is not saved.
1444 (kill-buffer buf)
1445 (setq buf nil))
1446 (if (null buf)
1447 (get-buffer-create name)
1448 (with-current-buffer buf
1449 (kill-all-local-variables)
1450 (run-hooks 'kill-buffer-hook)
1451 ;; Delete overlays before erasing the buffer so the overlay hooks
1452 ;; don't get run spuriously when we erase the buffer.
1453 (let ((ols (overlay-lists)))
1454 (dolist (ol (nconc (car ols) (cdr ols)))
1455 (delete-overlay ol)))
1456 (erase-buffer)
1457 buf))))
1459 ;;;###autoload
1460 (defun custom-buffer-create (options &optional name description)
1461 "Create a buffer containing OPTIONS.
1462 Optional NAME is the name of the buffer.
1463 OPTIONS should be an alist of the form ((SYMBOL WIDGET)...), where
1464 SYMBOL is a customization option, and WIDGET is a widget for editing
1465 that option."
1466 (pop-to-buffer (custom-get-fresh-buffer (or name "*Customization*")))
1467 (custom-buffer-create-internal options description))
1469 ;;;###autoload
1470 (defun custom-buffer-create-other-window (options &optional name description)
1471 "Create a buffer containing OPTIONS, and display it in another window.
1472 The result includes selecting that window.
1473 Optional NAME is the name of the buffer.
1474 OPTIONS should be an alist of the form ((SYMBOL WIDGET)...), where
1475 SYMBOL is a customization option, and WIDGET is a widget for editing
1476 that option."
1477 (unless name (setq name "*Customization*"))
1478 (let ((pop-up-windows t)
1479 (same-window-buffer-names nil)
1480 (same-window-regexps nil))
1481 (pop-to-buffer (custom-get-fresh-buffer name))
1482 (custom-buffer-create-internal options description)))
1484 (defcustom custom-reset-button-menu nil
1485 "If non-nil, only show a single reset button in customize buffers.
1486 This button will have a menu with all three reset operations."
1487 :type 'boolean
1488 :group 'custom-buffer)
1490 (defcustom custom-buffer-verbose-help t
1491 "If non-nil, include explanatory text in the customization buffer."
1492 :type 'boolean
1493 :group 'custom-buffer)
1495 (defun Custom-buffer-done (&rest ignore)
1496 "Exit current Custom buffer according to `custom-buffer-done-kill'."
1497 (interactive)
1498 (quit-window custom-buffer-done-kill))
1500 (defvar custom-button nil
1501 "Face used for buttons in customization buffers.")
1503 (defvar custom-button-mouse nil
1504 "Mouse face used for buttons in customization buffers.")
1506 (defvar custom-button-pressed nil
1507 "Face used for pressed buttons in customization buffers.")
1509 (defcustom custom-raised-buttons (not (equal (face-valid-attribute-values :box)
1510 '(("unspecified" . unspecified))))
1511 "If non-nil, indicate active buttons in a `raised-button' style.
1512 Otherwise use brackets."
1513 :type 'boolean
1514 :version "21.1"
1515 :group 'custom-buffer
1516 :set (lambda (variable value)
1517 (custom-set-default variable value)
1518 (setq custom-button
1519 (if value 'custom-button 'custom-button-unraised))
1520 (setq custom-button-mouse
1521 (if value 'custom-button-mouse 'highlight))
1522 (setq custom-button-pressed
1523 (if value
1524 'custom-button-pressed
1525 'custom-button-pressed-unraised))))
1527 (defun custom-buffer-create-internal (options &optional description)
1528 (custom-mode)
1529 (let ((init-file (or custom-file user-init-file)))
1530 ;; Insert verbose help at the top of the custom buffer.
1531 (when custom-buffer-verbose-help
1532 (widget-insert "Editing a setting changes only the text in this buffer."
1533 (if init-file
1535 To set apply your changes, use the Save or Set buttons.
1536 Saving a change normally works by editing your init file."
1538 Currently, these settings cannot be saved for future Emacs sessions,
1539 possibly because you started Emacs with `-q'.")
1540 "\nFor details, see ")
1541 (widget-create 'custom-manual
1542 :tag "Saving Customizations"
1543 "(emacs)Saving Customizations")
1544 (widget-insert " in the ")
1545 (widget-create 'custom-manual
1546 :tag "Emacs manual"
1547 :help-echo "Read the Emacs manual."
1548 "(emacs)Top")
1549 (widget-insert "."))
1550 ;; Insert custom command buttons if the toolbar is not in use.
1552 (widget-insert "\n")
1553 (when (not (and tool-bar-mode (display-graphic-p)))
1554 (if custom-buffer-verbose-help
1555 (widget-insert "\n
1556 Operate on all settings in this buffer that are not marked HIDDEN:\n"))
1557 (let ((button (lambda (tag action active help icon)
1558 (widget-insert " ")
1559 (if (eval active)
1560 (widget-create 'push-button :tag tag
1561 :help-echo help :action action))))
1562 (commands custom-commands))
1563 (apply button (pop commands)) ; Set for current session
1564 (apply button (pop commands)) ; Save for future sessions
1565 (if custom-reset-button-menu
1566 (progn
1567 (widget-insert " ")
1568 (widget-create 'push-button
1569 :tag "Reset buffer"
1570 :help-echo "Show a menu with reset operations."
1571 :mouse-down-action 'ignore
1572 :action 'custom-reset))
1573 (widget-insert "\n")
1574 (apply button (pop commands)) ; Undo edits
1575 (apply button (pop commands)) ; Reset to saved
1576 (apply button (pop commands)) ; Erase customization
1577 (widget-insert " ")
1578 (pop commands) ; Help (omitted)
1579 (apply button (pop commands))))) ; Exit
1580 (widget-insert "\n\n"))
1582 ;; Now populate the custom buffer.
1583 (message "Creating customization items...")
1584 (buffer-disable-undo)
1585 (setq custom-options
1586 (if (= (length options) 1)
1587 (mapcar (lambda (entry)
1588 (widget-create (nth 1 entry)
1589 :documentation-shown t
1590 :custom-state 'unknown
1591 :tag (custom-unlispify-tag-name
1592 (nth 0 entry))
1593 :value (nth 0 entry)))
1594 options)
1595 (let ((count 0)
1596 (length (length options)))
1597 (mapcar (lambda (entry)
1598 (prog2
1599 (message "Creating customization items ...%2d%%"
1600 (/ (* 100.0 count) length))
1601 (widget-create (nth 1 entry)
1602 :tag (custom-unlispify-tag-name
1603 (nth 0 entry))
1604 :value (nth 0 entry))
1605 (setq count (1+ count))
1606 (unless (eq (preceding-char) ?\n)
1607 (widget-insert "\n"))
1608 (widget-insert "\n")))
1609 options))))
1610 (unless (eq (preceding-char) ?\n)
1611 (widget-insert "\n"))
1612 (message "Creating customization items ...done")
1613 (message "Resetting customization items...")
1614 (unless (eq custom-buffer-style 'tree)
1615 (mapc 'custom-magic-reset custom-options))
1616 (message "Resetting customization items...done")
1617 (message "Creating customization setup...")
1618 (widget-setup)
1619 (buffer-enable-undo)
1620 (goto-char (point-min))
1621 (message "Creating customization setup...done"))
1623 ;;; The Tree Browser.
1625 ;;;###autoload
1626 (defun customize-browse (&optional group)
1627 "Create a tree browser for the customize hierarchy."
1628 (interactive)
1629 (unless group
1630 (setq group 'emacs))
1631 (let ((name "*Customize Browser*"))
1632 (pop-to-buffer (custom-get-fresh-buffer name)))
1633 (custom-mode)
1634 (widget-insert (format "\
1635 %s buttons; type RET or click mouse-1
1636 on a button to invoke its action.
1637 Invoke [+] to expand a group, and [-] to collapse an expanded group.\n"
1638 (if custom-raised-buttons
1639 "`Raised' text indicates"
1640 "Square brackets indicate")))
1643 (if custom-browse-only-groups
1644 (widget-insert "\
1645 Invoke the [Group] button below to edit that item in another window.\n\n")
1646 (widget-insert "Invoke the ")
1647 (widget-create 'item
1648 :format "%t"
1649 :tag "[Group]"
1650 :tag-glyph "folder")
1651 (widget-insert ", ")
1652 (widget-create 'item
1653 :format "%t"
1654 :tag "[Face]"
1655 :tag-glyph "face")
1656 (widget-insert ", and ")
1657 (widget-create 'item
1658 :format "%t"
1659 :tag "[Option]"
1660 :tag-glyph "option")
1661 (widget-insert " buttons below to edit that
1662 item in another window.\n\n"))
1663 (let ((custom-buffer-style 'tree))
1664 (widget-create 'custom-group
1665 :custom-last t
1666 :custom-state 'unknown
1667 :tag (custom-unlispify-tag-name group)
1668 :value group))
1669 (widget-setup)
1670 (goto-char (point-min)))
1672 (define-widget 'custom-browse-visibility 'item
1673 "Control visibility of items in the customize tree browser."
1674 :format "%[[%t]%]"
1675 :action 'custom-browse-visibility-action)
1677 (defun custom-browse-visibility-action (widget &rest ignore)
1678 (let ((custom-buffer-style 'tree))
1679 (custom-toggle-parent widget)))
1681 (define-widget 'custom-browse-group-tag 'custom-group-link
1682 "Show parent in other window when activated."
1683 :tag "Group"
1684 :tag-glyph "folder"
1685 :action 'custom-browse-group-tag-action)
1687 (defun custom-browse-group-tag-action (widget &rest ignore)
1688 (let ((parent (widget-get widget :parent)))
1689 (customize-group-other-window (widget-value parent))))
1691 (define-widget 'custom-browse-variable-tag 'custom-group-link
1692 "Show parent in other window when activated."
1693 :tag "Option"
1694 :tag-glyph "option"
1695 :action 'custom-browse-variable-tag-action)
1697 (defun custom-browse-variable-tag-action (widget &rest ignore)
1698 (let ((parent (widget-get widget :parent)))
1699 (customize-variable-other-window (widget-value parent))))
1701 (define-widget 'custom-browse-face-tag 'custom-group-link
1702 "Show parent in other window when activated."
1703 :tag "Face"
1704 :tag-glyph "face"
1705 :action 'custom-browse-face-tag-action)
1707 (defun custom-browse-face-tag-action (widget &rest ignore)
1708 (let ((parent (widget-get widget :parent)))
1709 (customize-face-other-window (widget-value parent))))
1711 (defconst custom-browse-alist '((" " "space")
1712 (" | " "vertical")
1713 ("-\\ " "top")
1714 (" |-" "middle")
1715 (" `-" "bottom")))
1717 (defun custom-browse-insert-prefix (prefix)
1718 "Insert PREFIX. On XEmacs convert it to line graphics."
1719 ;; Fixme: do graphics.
1720 (if nil ; (string-match "XEmacs" emacs-version)
1721 (progn
1722 (insert "*")
1723 (while (not (string-equal prefix ""))
1724 (let ((entry (substring prefix 0 3)))
1725 (setq prefix (substring prefix 3))
1726 (let ((overlay (make-overlay (1- (point)) (point) nil t nil))
1727 (name (nth 1 (assoc entry custom-browse-alist))))
1728 (overlay-put overlay 'end-glyph (widget-glyph-find name entry))
1729 (overlay-put overlay 'start-open t)
1730 (overlay-put overlay 'end-open t)))))
1731 (insert prefix)))
1733 ;;; Modification of Basic Widgets.
1735 ;; We add extra properties to the basic widgets needed here. This is
1736 ;; fine, as long as we are careful to stay within out own namespace.
1738 ;; We want simple widgets to be displayed by default, but complex
1739 ;; widgets to be hidden.
1741 (widget-put (get 'item 'widget-type) :custom-show t)
1742 (widget-put (get 'editable-field 'widget-type)
1743 :custom-show (lambda (widget value)
1744 (let ((pp (pp-to-string value)))
1745 (cond ((string-match "\n" pp)
1746 nil)
1747 ((> (length pp) 40)
1748 nil)
1749 (t t)))))
1750 (widget-put (get 'menu-choice 'widget-type) :custom-show t)
1752 ;;; The `custom-manual' Widget.
1754 (define-widget 'custom-manual 'info-link
1755 "Link to the manual entry for this customization option."
1756 :help-echo "Read the manual entry for this option."
1757 :keymap custom-mode-link-map
1758 :follow-link 'mouse-face
1759 :button-face 'custom-link
1760 :mouse-face 'highlight
1761 :pressed-face 'highlight
1762 :tag "Manual")
1764 ;;; The `custom-magic' Widget.
1766 (defgroup custom-magic-faces nil
1767 "Faces used by the magic button."
1768 :group 'custom-faces
1769 :group 'custom-buffer)
1771 (defface custom-invalid '((((class color))
1772 (:foreground "yellow1" :background "red1"))
1774 (:weight bold :slant italic :underline t)))
1775 "Face used when the customize item is invalid."
1776 :group 'custom-magic-faces)
1777 ;; backward-compatibility alias
1778 (put 'custom-invalid-face 'face-alias 'custom-invalid)
1780 (defface custom-rogue '((((class color))
1781 (:foreground "pink" :background "black"))
1783 (:underline t)))
1784 "Face used when the customize item is not defined for customization."
1785 :group 'custom-magic-faces)
1786 ;; backward-compatibility alias
1787 (put 'custom-rogue-face 'face-alias 'custom-rogue)
1789 (defface custom-modified '((((min-colors 88) (class color))
1790 (:foreground "white" :background "blue1"))
1791 (((class color))
1792 (:foreground "white" :background "blue"))
1794 (:slant italic :bold)))
1795 "Face used when the customize item has been modified."
1796 :group 'custom-magic-faces)
1797 ;; backward-compatibility alias
1798 (put 'custom-modified-face 'face-alias 'custom-modified)
1800 (defface custom-set '((((min-colors 88) (class color))
1801 (:foreground "blue1" :background "white"))
1802 (((class color))
1803 (:foreground "blue" :background "white"))
1805 (:slant italic)))
1806 "Face used when the customize item has been set."
1807 :group 'custom-magic-faces)
1808 ;; backward-compatibility alias
1809 (put 'custom-set-face 'face-alias 'custom-set)
1811 (defface custom-changed '((((min-colors 88) (class color))
1812 (:foreground "white" :background "blue1"))
1813 (((class color))
1814 (:foreground "white" :background "blue"))
1816 (:slant italic)))
1817 "Face used when the customize item has been changed."
1818 :group 'custom-magic-faces)
1819 ;; backward-compatibility alias
1820 (put 'custom-changed-face 'face-alias 'custom-changed)
1822 (defface custom-themed '((((min-colors 88) (class color))
1823 (:foreground "white" :background "blue1"))
1824 (((class color))
1825 (:foreground "white" :background "blue"))
1827 (:slant italic)))
1828 "Face used when the customize item has been set by a theme."
1829 :group 'custom-magic-faces)
1831 (defface custom-saved '((t (:underline t)))
1832 "Face used when the customize item has been saved."
1833 :group 'custom-magic-faces)
1834 ;; backward-compatibility alias
1835 (put 'custom-saved-face 'face-alias 'custom-saved)
1837 (defconst custom-magic-alist
1838 '((nil "#" underline "\
1839 UNINITIALIZED, you should not see this.")
1840 (unknown "?" italic "\
1841 UNKNOWN, you should not see this.")
1842 (hidden "-" default "\
1843 HIDDEN, invoke \"Show\" in the previous line to show." "\
1844 group now hidden, invoke \"Show\", above, to show contents.")
1845 (invalid "x" custom-invalid "\
1846 INVALID, the displayed value cannot be set.")
1847 (modified "*" custom-modified "\
1848 EDITED, shown value does not take effect until you set or save it." "\
1849 something in this group has been edited but not set.")
1850 (set "+" custom-set "\
1851 SET for current session only." "\
1852 something in this group has been set but not saved.")
1853 (changed ":" custom-changed "\
1854 CHANGED outside Customize; operating on it here may be unreliable." "\
1855 something in this group has been changed outside customize.")
1856 (saved "!" custom-saved "\
1857 SAVED and set." "\
1858 something in this group has been set and saved.")
1859 (themed "o" custom-themed "\
1860 THEMED." "\
1861 visible group members are all at standard values.")
1862 (rogue "@" custom-rogue "\
1863 NO CUSTOMIZATION DATA; not intended to be customized." "\
1864 something in this group is not prepared for customization.")
1865 (standard " " nil "\
1866 STANDARD." "\
1867 visible group members are all at standard values."))
1868 "Alist of customize option states.
1869 Each entry is of the form (STATE MAGIC FACE ITEM-DESC [ GROUP-DESC ]), where
1871 STATE is one of the following symbols:
1873 `nil'
1874 For internal use, should never occur.
1875 `unknown'
1876 For internal use, should never occur.
1877 `hidden'
1878 This item is not being displayed.
1879 `invalid'
1880 This item is modified, but has an invalid form.
1881 `modified'
1882 This item is modified, and has a valid form.
1883 `set'
1884 This item has been set but not saved.
1885 `changed'
1886 The current value of this item has been changed outside Customize.
1887 `saved'
1888 This item is marked for saving.
1889 `rogue'
1890 This item has no customization information.
1891 `standard'
1892 This item is unchanged from the standard setting.
1894 MAGIC is a string used to present that state.
1896 FACE is a face used to present the state.
1898 ITEM-DESC is a string describing the state for options.
1900 GROUP-DESC is a string describing the state for groups. If this is
1901 left out, ITEM-DESC will be used.
1903 The string %c in either description will be replaced with the
1904 category of the item. These are `group'. `option', and `face'.
1906 The list should be sorted most significant first.")
1908 (defcustom custom-magic-show 'long
1909 "If non-nil, show textual description of the state.
1910 If `long', show a full-line description, not just one word."
1911 :type '(choice (const :tag "no" nil)
1912 (const long)
1913 (other :tag "short" short))
1914 :group 'custom-buffer)
1916 (defcustom custom-magic-show-hidden '(option face)
1917 "Control whether the State button is shown for hidden items.
1918 The value should be a list with the custom categories where the State
1919 button should be visible. Possible categories are `group', `option',
1920 and `face'."
1921 :type '(set (const group) (const option) (const face))
1922 :group 'custom-buffer)
1924 (defcustom custom-magic-show-button nil
1925 "Show a \"magic\" button indicating the state of each customization option."
1926 :type 'boolean
1927 :group 'custom-buffer)
1929 (define-widget 'custom-magic 'default
1930 "Show and manipulate state for a customization option."
1931 :format "%v"
1932 :action 'widget-parent-action
1933 :notify 'ignore
1934 :value-get 'ignore
1935 :value-create 'custom-magic-value-create
1936 :value-delete 'widget-children-value-delete)
1938 (defun widget-magic-mouse-down-action (widget &optional event)
1939 ;; Non-nil unless hidden.
1940 (not (eq (widget-get (widget-get (widget-get widget :parent) :parent)
1941 :custom-state)
1942 'hidden)))
1944 (defun custom-magic-value-create (widget)
1945 "Create compact status report for WIDGET."
1946 (let* ((parent (widget-get widget :parent))
1947 (state (widget-get parent :custom-state))
1948 (hidden (eq state 'hidden))
1949 (entry (assq state custom-magic-alist))
1950 (magic (nth 1 entry))
1951 (face (nth 2 entry))
1952 (category (widget-get parent :custom-category))
1953 (text (or (and (eq category 'group)
1954 (nth 4 entry))
1955 (nth 3 entry)))
1956 (form (widget-get parent :custom-form))
1957 children)
1958 (while (string-match "\\`\\(.*\\)%c\\(.*\\)\\'" text)
1959 (setq text (concat (match-string 1 text)
1960 (symbol-name category)
1961 (match-string 2 text))))
1962 (when (and custom-magic-show
1963 (or (not hidden)
1964 (memq category custom-magic-show-hidden)))
1965 (insert " ")
1966 (when (and (eq category 'group)
1967 (not (and (eq custom-buffer-style 'links)
1968 (> (widget-get parent :custom-level) 1))))
1969 (insert-char ?\ (* custom-buffer-indent
1970 (widget-get parent :custom-level))))
1971 (push (widget-create-child-and-convert
1972 widget 'choice-item
1973 :help-echo "Change the state of this item."
1974 :format (if hidden "%t" "%[%t%]")
1975 :button-prefix 'widget-push-button-prefix
1976 :button-suffix 'widget-push-button-suffix
1977 :mouse-down-action 'widget-magic-mouse-down-action
1978 :tag "State")
1979 children)
1980 (insert ": ")
1981 (let ((start (point)))
1982 (if (eq custom-magic-show 'long)
1983 (insert text)
1984 (insert (symbol-name state)))
1985 (cond ((eq form 'lisp)
1986 (insert " (lisp)"))
1987 ((eq form 'mismatch)
1988 (insert " (mismatch)")))
1989 (put-text-property start (point) 'face 'custom-state))
1990 (insert "\n"))
1991 (when (and (eq category 'group)
1992 (not (and (eq custom-buffer-style 'links)
1993 (> (widget-get parent :custom-level) 1))))
1994 (insert-char ?\ (* custom-buffer-indent
1995 (widget-get parent :custom-level))))
1996 (when custom-magic-show-button
1997 (when custom-magic-show
1998 (let ((indent (widget-get parent :indent)))
1999 (when indent
2000 (insert-char ? indent))))
2001 (push (widget-create-child-and-convert
2002 widget 'choice-item
2003 :mouse-down-action 'widget-magic-mouse-down-action
2004 :button-face face
2005 :button-prefix ""
2006 :button-suffix ""
2007 :help-echo "Change the state."
2008 :format (if hidden "%t" "%[%t%]")
2009 :tag (if (memq form '(lisp mismatch))
2010 (concat "(" magic ")")
2011 (concat "[" magic "]")))
2012 children)
2013 (insert " "))
2014 (widget-put widget :children children)))
2016 (defun custom-magic-reset (widget)
2017 "Redraw the :custom-magic property of WIDGET."
2018 (let ((magic (widget-get widget :custom-magic)))
2019 (widget-value-set magic (widget-value magic))))
2021 ;;; The `custom' Widget.
2023 (defface custom-button
2024 '((((type x w32 mac) (class color)) ; Like default modeline
2025 (:box (:line-width 2 :style released-button)
2026 :background "lightgrey" :foreground "black"))
2028 nil))
2029 "Face for custom buffer buttons if `custom-raised-buttons' is non-nil."
2030 :version "21.1"
2031 :group 'custom-faces)
2032 ;; backward-compatibility alias
2033 (put 'custom-button-face 'face-alias 'custom-button)
2035 (defface custom-button-mouse
2036 '((((type x w32 mac) (class color))
2037 (:box (:line-width 2 :style released-button)
2038 :background "grey90" :foreground "black"))
2040 nil))
2041 "Mouse face for custom buffer buttons if `custom-raised-buttons' is non-nil."
2042 :version "22.1"
2043 :group 'custom-faces)
2045 (defface custom-button-unraised
2046 '((t :inherit underline))
2047 "Face for custom buffer buttons if `custom-raised-buttons' is nil."
2048 :version "22.1"
2049 :group 'custom-faces)
2051 (setq custom-button
2052 (if custom-raised-buttons 'custom-button 'custom-button-unraised))
2054 (setq custom-button-mouse
2055 (if custom-raised-buttons 'custom-button-mouse 'highlight))
2057 (defface custom-button-pressed
2058 '((((type x w32 mac) (class color))
2059 (:box (:line-width 2 :style pressed-button)
2060 :background "lightgrey" :foreground "black"))
2062 (:inverse-video t)))
2063 "Face for pressed custom buttons if `custom-raised-buttons' is non-nil."
2064 :version "21.1"
2065 :group 'custom-faces)
2066 ;; backward-compatibility alias
2067 (put 'custom-button-pressed-face 'face-alias 'custom-button-pressed)
2069 (defface custom-button-pressed-unraised
2070 '((default :inherit custom-button-unraised)
2071 (((class color) (background light)) :foreground "magenta4")
2072 (((class color) (background dark)) :foreground "violet"))
2073 "Face for pressed custom buttons if `custom-raised-buttons' is nil."
2074 :version "22.1"
2075 :group 'custom-faces)
2077 (setq custom-button-pressed
2078 (if custom-raised-buttons
2079 'custom-button-pressed
2080 'custom-button-pressed-unraised))
2082 (defface custom-documentation '((t nil))
2083 "Face used for documentation strings in customization buffers."
2084 :group 'custom-faces)
2085 ;; backward-compatibility alias
2086 (put 'custom-documentation-face 'face-alias 'custom-documentation)
2088 (defface custom-state '((((class color)
2089 (background dark))
2090 (:foreground "lime green"))
2091 (((class color)
2092 (background light))
2093 (:foreground "dark green"))
2094 (t nil))
2095 "Face used for State descriptions in the customize buffer."
2096 :group 'custom-faces)
2097 ;; backward-compatibility alias
2098 (put 'custom-state-face 'face-alias 'custom-state)
2100 (defface custom-link
2101 '((t :inherit link))
2102 "Face for links in customization buffers."
2103 :version "22.1"
2104 :group 'custom-faces)
2106 (define-widget 'custom 'default
2107 "Customize a user option."
2108 :format "%v"
2109 :convert-widget 'custom-convert-widget
2110 :notify 'custom-notify
2111 :custom-prefix ""
2112 :custom-level 1
2113 :custom-state 'hidden
2114 :documentation-property 'widget-subclass-responsibility
2115 :value-create 'widget-subclass-responsibility
2116 :value-delete 'widget-children-value-delete
2117 :value-get 'widget-value-value-get
2118 :validate 'widget-children-validate
2119 :match (lambda (widget value) (symbolp value)))
2121 (defun custom-convert-widget (widget)
2122 "Initialize :value and :tag from :args in WIDGET."
2123 (let ((args (widget-get widget :args)))
2124 (when args
2125 (widget-put widget :value (widget-apply widget
2126 :value-to-internal (car args)))
2127 (widget-put widget :tag (custom-unlispify-tag-name (car args)))
2128 (widget-put widget :args nil)))
2129 widget)
2131 (defun custom-notify (widget &rest args)
2132 "Keep track of changes."
2133 (let ((state (widget-get widget :custom-state)))
2134 (unless (eq state 'modified)
2135 (unless (memq state '(nil unknown hidden))
2136 (widget-put widget :custom-state 'modified))
2137 (custom-magic-reset widget)
2138 (apply 'widget-default-notify widget args))))
2140 (defun custom-redraw (widget)
2141 "Redraw WIDGET with current settings."
2142 (let ((line (count-lines (point-min) (point)))
2143 (column (current-column))
2144 (pos (point))
2145 (from (marker-position (widget-get widget :from)))
2146 (to (marker-position (widget-get widget :to))))
2147 (save-excursion
2148 (widget-value-set widget (widget-value widget))
2149 (custom-redraw-magic widget))
2150 (when (and (>= pos from) (<= pos to))
2151 (condition-case nil
2152 (progn
2153 (if (> column 0)
2154 (goto-line line)
2155 (goto-line (1+ line)))
2156 (move-to-column column))
2157 (error nil)))))
2159 (defun custom-redraw-magic (widget)
2160 "Redraw WIDGET state with current settings."
2161 (while widget
2162 (let ((magic (widget-get widget :custom-magic)))
2163 (cond (magic
2164 (widget-value-set magic (widget-value magic))
2165 (when (setq widget (widget-get widget :group))
2166 (custom-group-state-update widget)))
2168 (setq widget nil)))))
2169 (widget-setup))
2171 (defun custom-show (widget value)
2172 "Non-nil if WIDGET should be shown with VALUE by default."
2173 (let ((show (widget-get widget :custom-show)))
2174 (cond ((null show)
2175 nil)
2176 ((eq t show)
2179 (funcall show widget value)))))
2181 (defun custom-load-widget (widget)
2182 "Load all dependencies for WIDGET."
2183 (custom-load-symbol (widget-value widget)))
2185 (defun custom-unloaded-symbol-p (symbol)
2186 "Return non-nil if the dependencies of SYMBOL have not yet been loaded."
2187 (let ((found nil)
2188 (loads (get symbol 'custom-loads))
2189 load)
2190 (while loads
2191 (setq load (car loads)
2192 loads (cdr loads))
2193 (cond ((symbolp load)
2194 (unless (featurep load)
2195 (setq found t)))
2196 ((assoc load load-history))
2197 ((assoc (locate-library load) load-history)
2198 (message nil))
2200 (setq found t))))
2201 found))
2203 (defun custom-unloaded-widget-p (widget)
2204 "Return non-nil if the dependencies of WIDGET have not yet been loaded."
2205 (custom-unloaded-symbol-p (widget-value widget)))
2207 (defun custom-toggle-hide (widget)
2208 "Toggle visibility of WIDGET."
2209 (custom-load-widget widget)
2210 (let ((state (widget-get widget :custom-state)))
2211 (cond ((memq state '(invalid modified))
2212 (error "There are unset changes"))
2213 ((eq state 'hidden)
2214 (widget-put widget :custom-state 'unknown))
2216 (widget-put widget :documentation-shown nil)
2217 (widget-put widget :custom-state 'hidden)))
2218 (custom-redraw widget)
2219 (widget-setup)))
2221 (defun custom-toggle-parent (widget &rest ignore)
2222 "Toggle visibility of parent of WIDGET."
2223 (custom-toggle-hide (widget-get widget :parent)))
2225 (defun custom-add-see-also (widget &optional prefix)
2226 "Add `See also ...' to WIDGET if there are any links.
2227 Insert PREFIX first if non-nil."
2228 (let* ((symbol (widget-get widget :value))
2229 (links (get symbol 'custom-links))
2230 (many (> (length links) 2))
2231 (buttons (widget-get widget :buttons))
2232 (indent (widget-get widget :indent)))
2233 (when links
2234 (when indent
2235 (insert-char ?\ indent))
2236 (when prefix
2237 (insert prefix))
2238 (insert "See also ")
2239 (while links
2240 (push (widget-create-child-and-convert
2241 widget (car links)
2242 :button-face 'custom-link
2243 :mouse-face 'highlight
2244 :pressed-face 'highlight)
2245 buttons)
2246 (setq links (cdr links))
2247 (cond ((null links)
2248 (insert ".\n"))
2249 ((null (cdr links))
2250 (if many
2251 (insert ", and ")
2252 (insert " and ")))
2254 (insert ", "))))
2255 (widget-put widget :buttons buttons))))
2257 (defun custom-add-parent-links (widget &optional initial-string)
2258 "Add \"Parent groups: ...\" to WIDGET if the group has parents.
2259 The value is non-nil if any parents were found.
2260 If INITIAL-STRING is non-nil, use that rather than \"Parent groups:\"."
2261 (let ((name (widget-value widget))
2262 (type (widget-type widget))
2263 (buttons (widget-get widget :buttons))
2264 (start (point))
2265 (parents nil))
2266 (insert (or initial-string "Parent groups:"))
2267 (mapatoms (lambda (symbol)
2268 (when (member (list name type) (get symbol 'custom-group))
2269 (insert " ")
2270 (push (widget-create-child-and-convert
2271 widget 'custom-group-link
2272 :tag (custom-unlispify-tag-name symbol)
2273 symbol)
2274 buttons)
2275 (setq parents (cons symbol parents)))))
2276 (and (null (get name 'custom-links)) ;No links of its own.
2277 (= (length parents) 1) ;A single parent.
2278 (let* ((links (delq nil (mapcar (lambda (w)
2279 (unless (eq (widget-type w)
2280 'custom-group-link)
2282 (get (car parents) 'custom-links))))
2283 (many (> (length links) 2)))
2284 (when links
2285 (insert "\nParent documentation: ")
2286 (while links
2287 (push (widget-create-child-and-convert
2288 widget (car links)
2289 :button-face 'custom-link
2290 :mouse-face 'highlight
2291 :pressed-face 'highlight)
2292 buttons)
2293 (setq links (cdr links))
2294 (cond ((null links)
2295 (insert ".\n"))
2296 ((null (cdr links))
2297 (if many
2298 (insert ", and ")
2299 (insert " and ")))
2301 (insert ", ")))))))
2302 (if parents
2303 (insert "\n")
2304 (delete-region start (point)))
2305 (widget-put widget :buttons buttons)
2306 parents))
2308 ;;; The `custom-comment' Widget.
2310 ;; like the editable field
2311 (defface custom-comment '((((type tty))
2312 :background "yellow3"
2313 :foreground "black")
2314 (((class grayscale color)
2315 (background light))
2316 :background "gray85")
2317 (((class grayscale color)
2318 (background dark))
2319 :background "dim gray")
2321 :slant italic))
2322 "Face used for comments on variables or faces"
2323 :version "21.1"
2324 :group 'custom-faces)
2325 ;; backward-compatibility alias
2326 (put 'custom-comment-face 'face-alias 'custom-comment)
2328 ;; like font-lock-comment-face
2329 (defface custom-comment-tag
2330 '((((class color) (background dark)) (:foreground "gray80"))
2331 (((class color) (background light)) (:foreground "blue4"))
2332 (((class grayscale) (background light))
2333 (:foreground "DimGray" :weight bold :slant italic))
2334 (((class grayscale) (background dark))
2335 (:foreground "LightGray" :weight bold :slant italic))
2336 (t (:weight bold)))
2337 "Face used for variables or faces comment tags"
2338 :group 'custom-faces)
2339 ;; backward-compatibility alias
2340 (put 'custom-comment-tag-face 'face-alias 'custom-comment-tag)
2342 (define-widget 'custom-comment 'string
2343 "User comment."
2344 :tag "Comment"
2345 :help-echo "Edit a comment here."
2346 :sample-face 'custom-comment-tag-face
2347 :value-face 'custom-comment-face
2348 :shown nil
2349 :create 'custom-comment-create)
2351 (defun custom-comment-create (widget)
2352 (let* ((null-comment (equal "" (widget-value widget))))
2353 (if (or (widget-get (widget-get widget :parent) :comment-shown)
2354 (not null-comment))
2355 (widget-default-create widget)
2356 ;; `widget-default-delete' expects markers in these slots --
2357 ;; maybe it shouldn't.
2358 (widget-put widget :from (point-marker))
2359 (widget-put widget :to (point-marker)))))
2361 (defun custom-comment-hide (widget)
2362 (widget-put (widget-get widget :parent) :comment-shown nil))
2364 ;; Those functions are for the menu. WIDGET is NOT the comment widget. It's
2365 ;; the global custom one
2366 (defun custom-comment-show (widget)
2367 (widget-put widget :comment-shown t)
2368 (custom-redraw widget)
2369 (widget-setup))
2371 (defun custom-comment-invisible-p (widget)
2372 (let ((val (widget-value (widget-get widget :comment-widget))))
2373 (and (equal "" val)
2374 (not (widget-get widget :comment-shown)))))
2376 ;;; The `custom-variable' Widget.
2378 ;; When this was underlined blue, users confused it with a
2379 ;; Mosaic-style hyperlink...
2380 (defface custom-variable-tag
2381 `((((class color)
2382 (background dark))
2383 (:foreground "light blue" :weight bold))
2384 (((min-colors 88) (class color)
2385 (background light))
2386 (:foreground "blue1" :weight bold))
2387 (((class color)
2388 (background light))
2389 (:foreground "blue" :weight bold))
2390 (t (:weight bold)))
2391 "Face used for unpushable variable tags."
2392 :group 'custom-faces)
2393 ;; backward-compatibility alias
2394 (put 'custom-variable-tag-face 'face-alias 'custom-variable-tag)
2396 (defface custom-variable-button '((t (:underline t :weight bold)))
2397 "Face used for pushable variable tags."
2398 :group 'custom-faces)
2399 ;; backward-compatibility alias
2400 (put 'custom-variable-button-face 'face-alias 'custom-variable-button)
2402 (defcustom custom-variable-default-form 'edit
2403 "Default form of displaying variable values."
2404 :type '(choice (const edit)
2405 (const lisp))
2406 :group 'custom-buffer
2407 :version "20.3")
2409 (defun custom-variable-documentation (variable)
2410 "Return documentation of VARIABLE for use in Custom buffer.
2411 Normally just return the docstring. But if VARIABLE automatically
2412 becomes buffer local when set, append a message to that effect."
2413 (if (and (local-variable-if-set-p variable)
2414 (or (not (local-variable-p variable))
2415 (with-temp-buffer
2416 (local-variable-if-set-p variable))))
2417 (concat (documentation-property variable 'variable-documentation)
2419 This variable automatically becomes buffer-local when set outside Custom.
2420 However, setting it through Custom sets the default value.")
2421 (documentation-property variable 'variable-documentation)))
2423 (define-widget 'custom-variable 'custom
2424 "Customize variable."
2425 :format "%v"
2426 :help-echo "Set or reset this variable."
2427 :documentation-property #'custom-variable-documentation
2428 :custom-category 'option
2429 :custom-state nil
2430 :custom-menu 'custom-variable-menu-create
2431 :custom-form nil ; defaults to value of `custom-variable-default-form'
2432 :value-create 'custom-variable-value-create
2433 :action 'custom-variable-action
2434 :custom-set 'custom-variable-set
2435 :custom-save 'custom-variable-save
2436 :custom-reset-current 'custom-redraw
2437 :custom-reset-saved 'custom-variable-reset-saved
2438 :custom-reset-standard 'custom-variable-reset-standard
2439 :custom-standard-value 'custom-variable-standard-value)
2441 (defun custom-variable-type (symbol)
2442 "Return a widget suitable for editing the value of SYMBOL.
2443 If SYMBOL has a `custom-type' property, use that.
2444 Otherwise, try matching SYMBOL against `custom-guess-name-alist' and
2445 try matching its doc string against `custom-guess-doc-alist'."
2446 (let* ((type (or (get symbol 'custom-type)
2447 (and (not (get symbol 'standard-value))
2448 (custom-guess-type symbol))
2449 'sexp))
2450 (options (get symbol 'custom-options))
2451 (tmp (if (listp type)
2452 (copy-sequence type)
2453 (list type))))
2454 (when options
2455 (widget-put tmp :options options))
2456 tmp))
2458 (defun custom-variable-value-create (widget)
2459 "Here is where you edit the variable's value."
2460 (custom-load-widget widget)
2461 (unless (widget-get widget :custom-form)
2462 (widget-put widget :custom-form custom-variable-default-form))
2463 (let* ((buttons (widget-get widget :buttons))
2464 (children (widget-get widget :children))
2465 (form (widget-get widget :custom-form))
2466 (state (widget-get widget :custom-state))
2467 (symbol (widget-get widget :value))
2468 (tag (widget-get widget :tag))
2469 (type (custom-variable-type symbol))
2470 (conv (widget-convert type))
2471 (get (or (get symbol 'custom-get) 'default-value))
2472 (prefix (widget-get widget :custom-prefix))
2473 (last (widget-get widget :custom-last))
2474 (value (if (default-boundp symbol)
2475 (funcall get symbol)
2476 (widget-get conv :value))))
2477 ;; If the widget is new, the child determines whether it is hidden.
2478 (cond (state)
2479 ((custom-show type value)
2480 (setq state 'unknown))
2482 (setq state 'hidden)))
2483 ;; If we don't know the state, see if we need to edit it in lisp form.
2484 (when (eq state 'unknown)
2485 (unless (widget-apply conv :match value)
2486 ;; (widget-apply (widget-convert type) :match value)
2487 (setq form 'mismatch)))
2488 ;; Now we can create the child widget.
2489 (cond ((eq custom-buffer-style 'tree)
2490 (insert prefix (if last " `--- " " |--- "))
2491 (push (widget-create-child-and-convert
2492 widget 'custom-browse-variable-tag)
2493 buttons)
2494 (insert " " tag "\n")
2495 (widget-put widget :buttons buttons))
2496 ((eq state 'hidden)
2497 ;; Indicate hidden value.
2498 (push (widget-create-child-and-convert
2499 widget 'item
2500 :format "%{%t%}: "
2501 :sample-face 'custom-variable-tag-face
2502 :tag tag
2503 :parent widget)
2504 buttons)
2505 (push (widget-create-child-and-convert
2506 widget 'visibility
2507 :help-echo "Show the value of this option."
2508 :off "Show Value"
2509 :action 'custom-toggle-parent
2510 nil)
2511 buttons))
2512 ((memq form '(lisp mismatch))
2513 ;; In lisp mode edit the saved value when possible.
2514 (let* ((value (cond ((get symbol 'saved-value)
2515 (car (get symbol 'saved-value)))
2516 ((get symbol 'standard-value)
2517 (car (get symbol 'standard-value)))
2518 ((default-boundp symbol)
2519 (custom-quote (funcall get symbol)))
2521 (custom-quote (widget-get conv :value))))))
2522 (insert (symbol-name symbol) ": ")
2523 (push (widget-create-child-and-convert
2524 widget 'visibility
2525 :help-echo "Hide the value of this option."
2526 :on "Hide Value"
2527 :off "Show Value"
2528 :action 'custom-toggle-parent
2530 buttons)
2531 (insert " ")
2532 (push (widget-create-child-and-convert
2533 widget 'sexp
2534 :button-face 'custom-variable-button-face
2535 :format "%v"
2536 :tag (symbol-name symbol)
2537 :parent widget
2538 :value value)
2539 children)))
2541 ;; Edit mode.
2542 (let* ((format (widget-get type :format))
2543 tag-format value-format)
2544 (unless (string-match ":" format)
2545 (error "Bad format"))
2546 (setq tag-format (substring format 0 (match-end 0)))
2547 (setq value-format (substring format (match-end 0)))
2548 (push (widget-create-child-and-convert
2549 widget 'item
2550 :format tag-format
2551 :action 'custom-tag-action
2552 :help-echo "Change value of this option."
2553 :mouse-down-action 'custom-tag-mouse-down-action
2554 :button-face 'custom-variable-button-face
2555 :sample-face 'custom-variable-tag-face
2556 tag)
2557 buttons)
2558 (insert " ")
2559 (push (widget-create-child-and-convert
2560 widget 'visibility
2561 :help-echo "Hide the value of this option."
2562 :on "Hide Value"
2563 :off "Show Value"
2564 :action 'custom-toggle-parent
2566 buttons)
2567 (push (widget-create-child-and-convert
2568 widget type
2569 :format value-format
2570 :value value)
2571 children))))
2572 (unless (eq custom-buffer-style 'tree)
2573 (unless (eq (preceding-char) ?\n)
2574 (widget-insert "\n"))
2575 ;; Create the magic button.
2576 (let ((magic (widget-create-child-and-convert
2577 widget 'custom-magic nil)))
2578 (widget-put widget :custom-magic magic)
2579 (push magic buttons))
2580 (widget-put widget :buttons buttons)
2581 ;; Insert documentation.
2582 (widget-put widget :documentation-indent 3)
2583 (widget-add-documentation-string-button
2584 widget :visibility-widget 'custom-visibility)
2586 ;; The comment field
2587 (unless (eq state 'hidden)
2588 (let* ((comment (get symbol 'variable-comment))
2589 (comment-widget
2590 (widget-create-child-and-convert
2591 widget 'custom-comment
2592 :parent widget
2593 :value (or comment ""))))
2594 (widget-put widget :comment-widget comment-widget)
2595 ;; Don't push it !!! Custom assumes that the first child is the
2596 ;; value one.
2597 (setq children (append children (list comment-widget)))))
2598 ;; Update the rest of the properties properties.
2599 (widget-put widget :custom-form form)
2600 (widget-put widget :children children)
2601 ;; Now update the state.
2602 (if (eq state 'hidden)
2603 (widget-put widget :custom-state state)
2604 (custom-variable-state-set widget))
2605 ;; See also.
2606 (unless (eq state 'hidden)
2607 (when (eq (widget-get widget :custom-level) 1)
2608 (custom-add-parent-links widget))
2609 (custom-add-see-also widget)))))
2611 (defun custom-tag-action (widget &rest args)
2612 "Pass :action to first child of WIDGET's parent."
2613 (apply 'widget-apply (car (widget-get (widget-get widget :parent) :children))
2614 :action args))
2616 (defun custom-tag-mouse-down-action (widget &rest args)
2617 "Pass :mouse-down-action to first child of WIDGET's parent."
2618 (apply 'widget-apply (car (widget-get (widget-get widget :parent) :children))
2619 :mouse-down-action args))
2621 (defun custom-variable-state-set (widget)
2622 "Set the state of WIDGET."
2623 (let* ((symbol (widget-value widget))
2624 (get (or (get symbol 'custom-get) 'default-value))
2625 (value (if (default-boundp symbol)
2626 (funcall get symbol)
2627 (widget-get widget :value)))
2628 (comment (get symbol 'variable-comment))
2630 temp
2631 (state (cond ((progn (setq tmp (get symbol 'customized-value))
2632 (setq temp
2633 (get symbol 'customized-variable-comment))
2634 (or tmp temp))
2635 (if (condition-case nil
2636 (and (equal value (eval (car tmp)))
2637 (equal comment temp))
2638 (error nil))
2639 'set
2640 'changed))
2641 ((progn (setq tmp (get symbol 'theme-value))
2642 (setq temp (get symbol 'saved-variable-comment))
2643 (or tmp temp))
2644 (if (condition-case nil
2645 (and (equal comment temp)
2646 (equal value
2647 (eval
2648 (car (custom-variable-theme-value
2649 symbol)))))
2650 (error nil))
2651 (cond
2652 ((eq (caar tmp) 'user) 'saved)
2653 ((eq (caar tmp) 'changed)
2654 (if (condition-case nil
2655 (and (null comment)
2656 (equal value
2657 (eval
2658 (car (get symbol 'standard-value)))))
2659 (error nil))
2660 ;; The value was originally set outside
2661 ;; custom, but it was set to the standard
2662 ;; value (probably an autoloaded defcustom).
2663 'standard
2664 'changed))
2665 (t 'themed))
2666 'changed))
2667 ((setq tmp (get symbol 'standard-value))
2668 (if (condition-case nil
2669 (and (equal value (eval (car tmp)))
2670 (equal comment nil))
2671 (error nil))
2672 'standard
2673 'changed))
2674 (t 'rogue))))
2675 (widget-put widget :custom-state state)))
2677 (defun custom-variable-standard-value (widget)
2678 (get (widget-value widget) 'standard-value))
2680 (defvar custom-variable-menu
2681 `(("Set for Current Session" custom-variable-set
2682 (lambda (widget)
2683 (eq (widget-get widget :custom-state) 'modified)))
2684 ,@(when (or custom-file user-init-file)
2685 '(("Save for Future Sessions" custom-variable-save
2686 (lambda (widget)
2687 (memq (widget-get widget :custom-state)
2688 '(modified set changed rogue))))))
2689 ("Undo Edits" custom-redraw
2690 (lambda (widget)
2691 (and (default-boundp (widget-value widget))
2692 (memq (widget-get widget :custom-state) '(modified changed)))))
2693 ("Reset to Saved" custom-variable-reset-saved
2694 (lambda (widget)
2695 (and (or (get (widget-value widget) 'saved-value)
2696 (get (widget-value widget) 'saved-variable-comment))
2697 (memq (widget-get widget :custom-state)
2698 '(modified set changed rogue)))))
2699 ,@(when (or custom-file user-init-file)
2700 '(("Erase Customization" custom-variable-reset-standard
2701 (lambda (widget)
2702 (and (get (widget-value widget) 'standard-value)
2703 (memq (widget-get widget :custom-state)
2704 '(modified set changed saved rogue)))))))
2705 ("Set to Backup Value" custom-variable-reset-backup
2706 (lambda (widget)
2707 (get (widget-value widget) 'backup-value)))
2708 ("---" ignore ignore)
2709 ("Add Comment" custom-comment-show custom-comment-invisible-p)
2710 ("---" ignore ignore)
2711 ("Show Current Value" custom-variable-edit
2712 (lambda (widget)
2713 (eq (widget-get widget :custom-form) 'lisp)))
2714 ("Show Saved Lisp Expression" custom-variable-edit-lisp
2715 (lambda (widget)
2716 (eq (widget-get widget :custom-form) 'edit))))
2717 "Alist of actions for the `custom-variable' widget.
2718 Each entry has the form (NAME ACTION FILTER) where NAME is the name of
2719 the menu entry, ACTION is the function to call on the widget when the
2720 menu is selected, and FILTER is a predicate which takes a `custom-variable'
2721 widget as an argument, and returns non-nil if ACTION is valid on that
2722 widget. If FILTER is nil, ACTION is always valid.")
2724 (defun custom-variable-action (widget &optional event)
2725 "Show the menu for `custom-variable' WIDGET.
2726 Optional EVENT is the location for the menu."
2727 (if (eq (widget-get widget :custom-state) 'hidden)
2728 (custom-toggle-hide widget)
2729 (unless (eq (widget-get widget :custom-state) 'modified)
2730 (custom-variable-state-set widget))
2731 (custom-redraw-magic widget)
2732 (let* ((completion-ignore-case t)
2733 (answer (widget-choose (concat "Operation on "
2734 (custom-unlispify-tag-name
2735 (widget-get widget :value)))
2736 (custom-menu-filter custom-variable-menu
2737 widget)
2738 event)))
2739 (if answer
2740 (funcall answer widget)))))
2742 (defun custom-variable-edit (widget)
2743 "Edit value of WIDGET."
2744 (widget-put widget :custom-state 'unknown)
2745 (widget-put widget :custom-form 'edit)
2746 (custom-redraw widget))
2748 (defun custom-variable-edit-lisp (widget)
2749 "Edit the Lisp representation of the value of WIDGET."
2750 (widget-put widget :custom-state 'unknown)
2751 (widget-put widget :custom-form 'lisp)
2752 (custom-redraw widget))
2754 (defun custom-variable-set (widget)
2755 "Set the current value for the variable being edited by WIDGET."
2756 (let* ((form (widget-get widget :custom-form))
2757 (state (widget-get widget :custom-state))
2758 (child (car (widget-get widget :children)))
2759 (symbol (widget-value widget))
2760 (set (or (get symbol 'custom-set) 'set-default))
2761 (comment-widget (widget-get widget :comment-widget))
2762 (comment (widget-value comment-widget))
2763 val)
2764 (cond ((eq state 'hidden)
2765 (error "Cannot set hidden variable"))
2766 ((setq val (widget-apply child :validate))
2767 (goto-char (widget-get val :from))
2768 (error "%s" (widget-get val :error)))
2769 ((memq form '(lisp mismatch))
2770 (when (equal comment "")
2771 (setq comment nil)
2772 ;; Make the comment invisible by hand if it's empty
2773 (custom-comment-hide comment-widget))
2774 (custom-variable-backup-value widget)
2775 (custom-push-theme 'theme-value symbol 'user
2776 'set (custom-quote (widget-value child)))
2777 (funcall set symbol (eval (setq val (widget-value child))))
2778 (put symbol 'customized-value (list val))
2779 (put symbol 'variable-comment comment)
2780 (put symbol 'customized-variable-comment comment))
2782 (when (equal comment "")
2783 (setq comment nil)
2784 ;; Make the comment invisible by hand if it's empty
2785 (custom-comment-hide comment-widget))
2786 (custom-variable-backup-value widget)
2787 (custom-push-theme 'theme-value symbol 'user
2788 'set (custom-quote (widget-value child)))
2789 (funcall set symbol (setq val (widget-value child)))
2790 (put symbol 'customized-value (list (custom-quote val)))
2791 (put symbol 'variable-comment comment)
2792 (put symbol 'customized-variable-comment comment)))
2793 (custom-variable-state-set widget)
2794 (custom-redraw-magic widget)))
2796 (defun custom-variable-save (widget)
2797 "Set and save the value for the variable being edited by WIDGET."
2798 (let* ((form (widget-get widget :custom-form))
2799 (state (widget-get widget :custom-state))
2800 (child (car (widget-get widget :children)))
2801 (symbol (widget-value widget))
2802 (set (or (get symbol 'custom-set) 'set-default))
2803 (comment-widget (widget-get widget :comment-widget))
2804 (comment (widget-value comment-widget))
2805 val)
2806 (cond ((eq state 'hidden)
2807 (error "Cannot set hidden variable"))
2808 ((setq val (widget-apply child :validate))
2809 (goto-char (widget-get val :from))
2810 (error "Saving %s: %s" symbol (widget-get val :error)))
2811 ((memq form '(lisp mismatch))
2812 (when (equal comment "")
2813 (setq comment nil)
2814 ;; Make the comment invisible by hand if it's empty
2815 (custom-comment-hide comment-widget))
2816 (put symbol 'saved-value (list (widget-value child)))
2817 (custom-push-theme 'theme-value symbol 'user
2818 'set (custom-quote (widget-value child)))
2819 (funcall set symbol (eval (widget-value child)))
2820 (put symbol 'variable-comment comment)
2821 (put symbol 'saved-variable-comment comment))
2823 (when (equal comment "")
2824 (setq comment nil)
2825 ;; Make the comment invisible by hand if it's empty
2826 (custom-comment-hide comment-widget))
2827 (put symbol 'saved-value
2828 (list (custom-quote (widget-value child))))
2829 (custom-push-theme 'theme-value symbol 'user
2830 'set (custom-quote (widget-value child)))
2831 (funcall set symbol (widget-value child))
2832 (put symbol 'variable-comment comment)
2833 (put symbol 'saved-variable-comment comment)))
2834 (put symbol 'customized-value nil)
2835 (put symbol 'customized-variable-comment nil)
2836 (custom-save-all)
2837 (custom-variable-state-set widget)
2838 (custom-redraw-magic widget)))
2840 (defun custom-variable-reset-saved (widget)
2841 "Restore the saved value for the variable being edited by WIDGET.
2842 This also updates the buffer to show that value.
2843 The value that was current before this operation
2844 becomes the backup value, so you can get it again."
2845 (let* ((symbol (widget-value widget))
2846 (set (or (get symbol 'custom-set) 'set-default))
2847 (value (get symbol 'saved-value))
2848 (comment (get symbol 'saved-variable-comment)))
2849 (cond ((or value comment)
2850 (put symbol 'variable-comment comment)
2851 (custom-variable-backup-value widget)
2852 (custom-push-theme 'theme-value symbol 'user 'set (car-safe value))
2853 (condition-case nil
2854 (funcall set symbol (eval (car value)))
2855 (error nil)))
2857 (error "No saved value for %s" symbol)))
2858 (put symbol 'customized-value nil)
2859 (put symbol 'customized-variable-comment nil)
2860 (widget-put widget :custom-state 'unknown)
2861 ;; This call will possibly make the comment invisible
2862 (custom-redraw widget)))
2864 (defun custom-variable-reset-standard (widget)
2865 "Restore the standard setting for the variable being edited by WIDGET.
2866 This operation eliminates any saved setting for the variable,
2867 restoring it to the state of a variable that has never been customized.
2868 The value that was current before this operation
2869 becomes the backup value, so you can get it again."
2870 (let* ((symbol (widget-value widget)))
2871 (if (get symbol 'standard-value)
2872 (custom-variable-backup-value widget)
2873 (error "No standard setting known for %S" symbol))
2874 (put symbol 'variable-comment nil)
2875 (put symbol 'customized-value nil)
2876 (put symbol 'customized-variable-comment nil)
2877 (custom-push-theme 'theme-value symbol 'user 'reset)
2878 (custom-theme-recalc-variable symbol)
2879 (when (or (get symbol 'saved-value) (get symbol 'saved-variable-comment))
2880 (put symbol 'saved-value nil)
2881 (put symbol 'saved-variable-comment nil)
2882 (custom-save-all))
2883 (widget-put widget :custom-state 'unknown)
2884 ;; This call will possibly make the comment invisible
2885 (custom-redraw widget)))
2887 (defun custom-variable-backup-value (widget)
2888 "Back up the current value for WIDGET's variable.
2889 The backup value is kept in the car of the `backup-value' property."
2890 (let* ((symbol (widget-value widget))
2891 (get (or (get symbol 'custom-get) 'default-value))
2892 (type (custom-variable-type symbol))
2893 (conv (widget-convert type))
2894 (value (if (default-boundp symbol)
2895 (funcall get symbol)
2896 (widget-get conv :value))))
2897 (put symbol 'backup-value (list value))))
2899 (defun custom-variable-reset-backup (widget)
2900 "Restore the backup value for the variable being edited by WIDGET.
2901 The value that was current before this operation
2902 becomes the backup value, so you can use this operation repeatedly
2903 to switch between two values."
2904 (let* ((symbol (widget-value widget))
2905 (set (or (get symbol 'custom-set) 'set-default))
2906 (value (get symbol 'backup-value))
2907 (comment-widget (widget-get widget :comment-widget))
2908 (comment (widget-value comment-widget)))
2909 (if value
2910 (progn
2911 (custom-variable-backup-value widget)
2912 (custom-push-theme 'theme-value symbol 'user 'set value)
2913 (condition-case nil
2914 (funcall set symbol (car value))
2915 (error nil)))
2916 (error "No backup value for %s" symbol))
2917 (put symbol 'customized-value (list (car value)))
2918 (put symbol 'variable-comment comment)
2919 (put symbol 'customized-variable-comment comment)
2920 (custom-variable-state-set widget)
2921 ;; This call will possibly make the comment invisible
2922 (custom-redraw widget)))
2924 ;;; The `custom-visibility' Widget
2926 (define-widget 'custom-visibility 'visibility
2927 "Show or hide a documentation string."
2928 :button-face 'custom-visibility
2929 :pressed-face 'custom-visibility
2930 :mouse-face 'highlight
2931 :pressed-face 'highlight)
2933 (defface custom-visibility
2934 '((t :height 0.8 :inherit link))
2935 "Face for the `custom-visibility' widget."
2936 :version "23.1"
2937 :group 'custom-faces)
2939 ;;; The `custom-face-edit' Widget.
2941 (define-widget 'custom-face-edit 'checklist
2942 "Edit face attributes."
2943 :format "%t: %v"
2944 :tag "Attributes"
2945 :extra-offset 13
2946 :button-args '(:help-echo "Control whether this attribute has any effect.")
2947 :value-to-internal 'custom-face-edit-fix-value
2948 :match (lambda (widget value)
2949 (widget-checklist-match widget
2950 (custom-face-edit-fix-value widget value)))
2951 :convert-widget 'custom-face-edit-convert-widget
2952 :args (mapcar (lambda (att)
2953 (list 'group
2954 :inline t
2955 :sibling-args (widget-get (nth 1 att) :sibling-args)
2956 (list 'const :format "" :value (nth 0 att))
2957 (nth 1 att)))
2958 custom-face-attributes))
2960 (defun custom-face-edit-fix-value (widget value)
2961 "Ignoring WIDGET, convert :bold and :italic in VALUE to new form.
2962 Also change :reverse-video to :inverse-video."
2963 (if (listp value)
2964 (let (result)
2965 (while value
2966 (let ((key (car value))
2967 (val (car (cdr value))))
2968 (cond ((eq key :italic)
2969 (push :slant result)
2970 (push (if val 'italic 'normal) result))
2971 ((eq key :bold)
2972 (push :weight result)
2973 (push (if val 'bold 'normal) result))
2974 ((eq key :reverse-video)
2975 (push :inverse-video result)
2976 (push val result))
2978 (push key result)
2979 (push val result))))
2980 (setq value (cdr (cdr value))))
2981 (setq result (nreverse result))
2982 result)
2983 value))
2985 (defun custom-face-edit-convert-widget (widget)
2986 "Convert :args as widget types in WIDGET."
2987 (widget-put
2988 widget
2989 :args (mapcar (lambda (arg)
2990 (widget-convert arg
2991 :deactivate 'custom-face-edit-deactivate
2992 :activate 'custom-face-edit-activate
2993 :delete 'custom-face-edit-delete))
2994 (widget-get widget :args)))
2995 widget)
2997 (defun custom-face-edit-deactivate (widget)
2998 "Make face widget WIDGET inactive for user modifications."
2999 (unless (widget-get widget :inactive)
3000 (let ((tag (custom-face-edit-attribute-tag widget))
3001 (from (copy-marker (widget-get widget :from)))
3002 (value (widget-value widget))
3003 (inhibit-read-only t)
3004 (inhibit-modification-hooks t))
3005 (save-excursion
3006 (goto-char from)
3007 (widget-default-delete widget)
3008 (insert tag ": *\n")
3009 (widget-put widget :inactive
3010 (cons value (cons from (- (point) from))))))))
3012 (defun custom-face-edit-activate (widget)
3013 "Make face widget WIDGET inactive for user modifications."
3014 (let ((inactive (widget-get widget :inactive))
3015 (inhibit-read-only t)
3016 (inhibit-modification-hooks t))
3017 (when (consp inactive)
3018 (save-excursion
3019 (goto-char (car (cdr inactive)))
3020 (delete-region (point) (+ (point) (cdr (cdr inactive))))
3021 (widget-put widget :inactive nil)
3022 (widget-apply widget :create)
3023 (widget-value-set widget (car inactive))
3024 (widget-setup)))))
3026 (defun custom-face-edit-delete (widget)
3027 "Remove WIDGET from the buffer."
3028 (let ((inactive (widget-get widget :inactive))
3029 (inhibit-read-only t)
3030 (inhibit-modification-hooks t))
3031 (if (not inactive)
3032 ;; Widget is alive, we don't have to do anything special
3033 (widget-default-delete widget)
3034 ;; WIDGET is already deleted because we did so to inactivate it;
3035 ;; now just get rid of the label we put in its place.
3036 (delete-region (car (cdr inactive))
3037 (+ (car (cdr inactive)) (cdr (cdr inactive))))
3038 (widget-put widget :inactive nil))))
3041 (defun custom-face-edit-attribute-tag (widget)
3042 "Returns the first :tag property in WIDGET or one of its children."
3043 (let ((tag (widget-get widget :tag)))
3044 (or (and (not (equal tag "")) tag)
3045 (let ((children (widget-get widget :children)))
3046 (while (and (null tag) children)
3047 (setq tag (custom-face-edit-attribute-tag (pop children))))
3048 tag))))
3050 ;;; The `custom-display' Widget.
3052 (define-widget 'custom-display 'menu-choice
3053 "Select a display type."
3054 :tag "Display"
3055 :value t
3056 :help-echo "Specify frames where the face attributes should be used."
3057 :args '((const :tag "all" t)
3058 (const :tag "defaults" default)
3059 (checklist
3060 :offset 0
3061 :extra-offset 9
3062 :args ((group :sibling-args (:help-echo "\
3063 Only match the specified window systems.")
3064 (const :format "Type: "
3065 type)
3066 (checklist :inline t
3067 :offset 0
3068 (const :format "X "
3069 :sibling-args (:help-echo "\
3070 The X11 Window System.")
3072 (const :format "PM "
3073 :sibling-args (:help-echo "\
3074 OS/2 Presentation Manager.")
3076 (const :format "W32 "
3077 :sibling-args (:help-echo "\
3078 Windows NT/9X.")
3079 w32)
3080 (const :format "MAC "
3081 :sibling-args (:help-echo "\
3082 Macintosh OS.")
3083 mac)
3084 (const :format "DOS "
3085 :sibling-args (:help-echo "\
3086 Plain MS-DOS.")
3088 (const :format "TTY%n"
3089 :sibling-args (:help-echo "\
3090 Plain text terminals.")
3091 tty)))
3092 (group :sibling-args (:help-echo "\
3093 Only match the frames with the specified color support.")
3094 (const :format "Class: "
3095 class)
3096 (checklist :inline t
3097 :offset 0
3098 (const :format "Color "
3099 :sibling-args (:help-echo "\
3100 Match color frames.")
3101 color)
3102 (const :format "Grayscale "
3103 :sibling-args (:help-echo "\
3104 Match grayscale frames.")
3105 grayscale)
3106 (const :format "Monochrome%n"
3107 :sibling-args (:help-echo "\
3108 Match frames with no color support.")
3109 mono)))
3110 (group :sibling-args (:help-echo "\
3111 The minimum number of colors the frame should support.")
3112 (const :format "" min-colors)
3113 (integer :tag "Minimum number of colors" ))
3114 (group :sibling-args (:help-echo "\
3115 Only match frames with the specified intensity.")
3116 (const :format "\
3117 Background brightness: "
3118 background)
3119 (checklist :inline t
3120 :offset 0
3121 (const :format "Light "
3122 :sibling-args (:help-echo "\
3123 Match frames with light backgrounds.")
3124 light)
3125 (const :format "Dark\n"
3126 :sibling-args (:help-echo "\
3127 Match frames with dark backgrounds.")
3128 dark)))
3129 (group :sibling-args (:help-echo "\
3130 Only match frames that support the specified face attributes.")
3131 (const :format "Supports attributes:" supports)
3132 (custom-face-edit :inline t :format "%n%v"))))))
3134 ;;; The `custom-face' Widget.
3136 (defface custom-face-tag
3137 `((t (:weight bold :height 1.2 :inherit variable-pitch)))
3138 "Face used for face tags."
3139 :group 'custom-faces)
3140 ;; backward-compatibility alias
3141 (put 'custom-face-tag-face 'face-alias 'custom-face-tag)
3143 (defcustom custom-face-default-form 'selected
3144 "Default form of displaying face definition."
3145 :type '(choice (const all)
3146 (const selected)
3147 (const lisp))
3148 :group 'custom-buffer
3149 :version "20.3")
3151 (define-widget 'custom-face 'custom
3152 "Customize face."
3153 :sample-face 'custom-face-tag-face
3154 :help-echo "Set or reset this face."
3155 :documentation-property #'face-doc-string
3156 :value-create 'custom-face-value-create
3157 :action 'custom-face-action
3158 :custom-category 'face
3159 :custom-form nil ; defaults to value of `custom-face-default-form'
3160 :custom-set 'custom-face-set
3161 :custom-save 'custom-face-save
3162 :custom-reset-current 'custom-redraw
3163 :custom-reset-saved 'custom-face-reset-saved
3164 :custom-reset-standard 'custom-face-reset-standard
3165 :custom-standard-value 'custom-face-standard-value
3166 :custom-menu 'custom-face-menu-create)
3168 (define-widget 'custom-face-all 'editable-list
3169 "An editable list of display specifications and attributes."
3170 :entry-format "%i %d %v"
3171 :insert-button-args '(:help-echo "Insert new display specification here.")
3172 :append-button-args '(:help-echo "Append new display specification here.")
3173 :delete-button-args '(:help-echo "Delete this display specification.")
3174 :args '((group :format "%v" custom-display custom-face-edit)))
3176 (defconst custom-face-all (widget-convert 'custom-face-all)
3177 "Converted version of the `custom-face-all' widget.")
3179 (define-widget 'custom-display-unselected 'item
3180 "A display specification that doesn't match the selected display."
3181 :match 'custom-display-unselected-match)
3183 (defun custom-display-unselected-match (widget value)
3184 "Non-nil if VALUE is an unselected display specification."
3185 (not (face-spec-set-match-display value (selected-frame))))
3187 (define-widget 'custom-face-selected 'group
3188 "Edit the attributes of the selected display in a face specification."
3189 :args '((choice :inline t
3190 (group :tag "With Defaults" :inline t
3191 (group (const :tag "" default)
3192 (custom-face-edit :tag " Default\n Attributes"))
3193 (repeat :format ""
3194 :inline t
3195 (group custom-display-unselected sexp))
3196 (group (sexp :format "")
3197 (custom-face-edit :tag " Overriding\n Attributes"))
3198 (repeat :format ""
3199 :inline t
3200 sexp))
3201 (group :tag "No Defaults" :inline t
3202 (repeat :format ""
3203 :inline t
3204 (group custom-display-unselected sexp))
3205 (group (sexp :format "")
3206 (custom-face-edit :tag "\n Attributes"))
3207 (repeat :format ""
3208 :inline t
3209 sexp)))))
3213 (defconst custom-face-selected (widget-convert 'custom-face-selected)
3214 "Converted version of the `custom-face-selected' widget.")
3216 (defun custom-filter-face-spec (spec filter-index &optional default-filter)
3217 "Return a canonicalized version of SPEC using.
3218 FILTER-INDEX is the index in the entry for each attribute in
3219 `custom-face-attributes' at which the appropriate filter function can be
3220 found, and DEFAULT-FILTER is the filter to apply for attributes that
3221 don't specify one."
3222 (mapcar (lambda (entry)
3223 ;; Filter a single face-spec entry
3224 (let ((tests (car entry))
3225 (unfiltered-attrs
3226 ;; Handle both old- and new-style attribute syntax
3227 (if (listp (car (cdr entry)))
3228 (car (cdr entry))
3229 (cdr entry)))
3230 (filtered-attrs nil))
3231 ;; Filter each face attribute
3232 (while unfiltered-attrs
3233 (let* ((attr (pop unfiltered-attrs))
3234 (pre-filtered-value (pop unfiltered-attrs))
3235 (filter
3236 (or (nth filter-index (assq attr custom-face-attributes))
3237 default-filter))
3238 (filtered-value
3239 (if filter
3240 (funcall filter pre-filtered-value)
3241 pre-filtered-value)))
3242 (push filtered-value filtered-attrs)
3243 (push attr filtered-attrs)))
3245 (list tests filtered-attrs)))
3246 spec))
3248 (defun custom-pre-filter-face-spec (spec)
3249 "Return SPEC changed as necessary for editing by the face customization widget.
3250 SPEC must be a full face spec."
3251 (custom-filter-face-spec spec 2))
3253 (defun custom-post-filter-face-spec (spec)
3254 "Return the customized SPEC in a form suitable for setting the face."
3255 (custom-filter-face-spec spec 3))
3257 (defun custom-face-value-create (widget)
3258 "Create a list of the display specifications for WIDGET."
3259 (let ((buttons (widget-get widget :buttons))
3260 children
3261 (symbol (widget-get widget :value))
3262 (tag (widget-get widget :tag))
3263 (state (widget-get widget :custom-state))
3264 (begin (point))
3265 (is-last (widget-get widget :custom-last))
3266 (prefix (widget-get widget :custom-prefix)))
3267 (unless tag
3268 (setq tag (prin1-to-string symbol)))
3269 (cond ((eq custom-buffer-style 'tree)
3270 (insert prefix (if is-last " `--- " " |--- "))
3271 (push (widget-create-child-and-convert
3272 widget 'custom-browse-face-tag)
3273 buttons)
3274 (insert " " tag "\n")
3275 (widget-put widget :buttons buttons))
3277 ;; Create tag.
3278 (insert tag)
3279 (widget-specify-sample widget begin (point))
3280 (if (eq custom-buffer-style 'face)
3281 (insert " ")
3282 (if (string-match "face\\'" tag)
3283 (insert ":")
3284 (insert " face: ")))
3285 ;; Sample.
3286 (push (widget-create-child-and-convert widget 'item
3287 :format "(%{%t%})"
3288 :sample-face symbol
3289 :tag "sample")
3290 buttons)
3291 ;; Visibility.
3292 (insert " ")
3293 (push (widget-create-child-and-convert
3294 widget 'visibility
3295 :help-echo "Hide or show this face."
3296 :on "Hide Face"
3297 :off "Show Face"
3298 :action 'custom-toggle-parent
3299 (not (eq state 'hidden)))
3300 buttons)
3301 ;; Magic.
3302 (insert "\n")
3303 (let ((magic (widget-create-child-and-convert
3304 widget 'custom-magic nil)))
3305 (widget-put widget :custom-magic magic)
3306 (push magic buttons))
3307 ;; Update buttons.
3308 (widget-put widget :buttons buttons)
3309 ;; Insert documentation.
3310 (widget-add-documentation-string-button
3311 widget :visibility-widget 'custom-visibility)
3313 ;; The comment field
3314 (unless (eq state 'hidden)
3315 (let* ((comment (get symbol 'face-comment))
3316 (comment-widget
3317 (widget-create-child-and-convert
3318 widget 'custom-comment
3319 :parent widget
3320 :value (or comment ""))))
3321 (widget-put widget :comment-widget comment-widget)
3322 (push comment-widget children)))
3323 ;; See also.
3324 (unless (eq state 'hidden)
3325 (when (eq (widget-get widget :custom-level) 1)
3326 (custom-add-parent-links widget))
3327 (custom-add-see-also widget))
3328 ;; Editor.
3329 (unless (eq (preceding-char) ?\n)
3330 (insert "\n"))
3331 (unless (eq state 'hidden)
3332 (message "Creating face editor...")
3333 (custom-load-widget widget)
3334 (unless (widget-get widget :custom-form)
3335 (widget-put widget :custom-form custom-face-default-form))
3336 (let* ((symbol (widget-value widget))
3337 (spec (or (get symbol 'customized-face)
3338 (get symbol 'saved-face)
3339 (get symbol 'face-defface-spec)
3340 ;; Attempt to construct it.
3341 (list (list t (custom-face-attributes-get
3342 symbol (selected-frame))))))
3343 (form (widget-get widget :custom-form))
3344 (indent (widget-get widget :indent))
3345 edit)
3346 ;; If the user has changed this face in some other way,
3347 ;; edit it as the user has specified it.
3348 (if (not (face-spec-match-p symbol spec (selected-frame)))
3349 (setq spec (list (list t (face-attr-construct symbol (selected-frame))))))
3350 (setq spec (custom-pre-filter-face-spec spec))
3351 (setq edit (widget-create-child-and-convert
3352 widget
3353 (cond ((and (eq form 'selected)
3354 (widget-apply custom-face-selected
3355 :match spec))
3356 (when indent (insert-char ?\ indent))
3357 'custom-face-selected)
3358 ((and (not (eq form 'lisp))
3359 (widget-apply custom-face-all
3360 :match spec))
3361 'custom-face-all)
3363 (when indent (insert-char ?\ indent))
3364 'sexp))
3365 :value spec))
3366 (custom-face-state-set widget)
3367 (push edit children)
3368 (widget-put widget :children children))
3369 (message "Creating face editor...done"))))))
3371 (defvar custom-face-menu
3372 `(("Set for Current Session" custom-face-set)
3373 ,@(when (or custom-file user-init-file)
3374 '(("Save for Future Sessions" custom-face-save)))
3375 ("Undo Edits" custom-redraw
3376 (lambda (widget)
3377 (memq (widget-get widget :custom-state) '(modified changed))))
3378 ("Reset to Saved" custom-face-reset-saved
3379 (lambda (widget)
3380 (or (get (widget-value widget) 'saved-face)
3381 (get (widget-value widget) 'saved-face-comment))))
3382 ,@(when (or custom-file user-init-file)
3383 '(("Erase Customization" custom-face-reset-standard
3384 (lambda (widget)
3385 (get (widget-value widget) 'face-defface-spec)))))
3386 ("---" ignore ignore)
3387 ("Add Comment" custom-comment-show custom-comment-invisible-p)
3388 ("---" ignore ignore)
3389 ("For Current Display" custom-face-edit-selected
3390 (lambda (widget)
3391 (not (eq (widget-get widget :custom-form) 'selected))))
3392 ("For All Kinds of Displays" custom-face-edit-all
3393 (lambda (widget)
3394 (not (eq (widget-get widget :custom-form) 'all))))
3395 ("Show Lisp Expression" custom-face-edit-lisp
3396 (lambda (widget)
3397 (not (eq (widget-get widget :custom-form) 'lisp)))))
3398 "Alist of actions for the `custom-face' widget.
3399 Each entry has the form (NAME ACTION FILTER) where NAME is the name of
3400 the menu entry, ACTION is the function to call on the widget when the
3401 menu is selected, and FILTER is a predicate which takes a `custom-face'
3402 widget as an argument, and returns non-nil if ACTION is valid on that
3403 widget. If FILTER is nil, ACTION is always valid.")
3405 (defun custom-face-edit-selected (widget)
3406 "Edit selected attributes of the value of WIDGET."
3407 (widget-put widget :custom-state 'unknown)
3408 (widget-put widget :custom-form 'selected)
3409 (custom-redraw widget))
3411 (defun custom-face-edit-all (widget)
3412 "Edit all attributes of the value of WIDGET."
3413 (widget-put widget :custom-state 'unknown)
3414 (widget-put widget :custom-form 'all)
3415 (custom-redraw widget))
3417 (defun custom-face-edit-lisp (widget)
3418 "Edit the Lisp representation of the value of WIDGET."
3419 (widget-put widget :custom-state 'unknown)
3420 (widget-put widget :custom-form 'lisp)
3421 (custom-redraw widget))
3423 (defun custom-face-state-set (widget)
3424 "Set the state of WIDGET."
3425 (let* ((symbol (widget-value widget))
3426 (comment (get symbol 'face-comment))
3427 tmp temp
3428 (state
3429 (cond ((progn
3430 (setq tmp (get symbol 'customized-face))
3431 (setq temp (get symbol 'customized-face-comment))
3432 (or tmp temp))
3433 (if (equal temp comment)
3434 'set
3435 'changed))
3436 ((progn
3437 (setq tmp (get symbol 'saved-face))
3438 (setq temp (get symbol 'saved-face-comment))
3439 (or tmp temp))
3440 (if (equal temp comment)
3441 (cond
3442 ((eq 'user (caar (get symbol 'theme-face)))
3443 'saved)
3444 ((eq 'changed (caar (get symbol 'theme-face)))
3445 'changed)
3446 (t 'themed))
3447 'changed))
3448 ((get symbol 'face-defface-spec)
3449 (if (equal comment nil)
3450 'standard
3451 'changed))
3453 'rogue))))
3454 ;; If the user called set-face-attribute to change the default
3455 ;; for new frames, this face is "set outside of Customize".
3456 (if (and (not (eq state 'rogue))
3457 (get symbol 'face-modified))
3458 (setq state 'changed))
3459 (widget-put widget :custom-state state)))
3461 (defun custom-face-action (widget &optional event)
3462 "Show the menu for `custom-face' WIDGET.
3463 Optional EVENT is the location for the menu."
3464 (if (eq (widget-get widget :custom-state) 'hidden)
3465 (custom-toggle-hide widget)
3466 (let* ((completion-ignore-case t)
3467 (symbol (widget-get widget :value))
3468 (answer (widget-choose (concat "Operation on "
3469 (custom-unlispify-tag-name symbol))
3470 (custom-menu-filter custom-face-menu
3471 widget)
3472 event)))
3473 (if answer
3474 (funcall answer widget)))))
3476 (defun custom-face-set (widget)
3477 "Make the face attributes in WIDGET take effect."
3478 (let* ((symbol (widget-value widget))
3479 (child (car (widget-get widget :children)))
3480 (value (custom-post-filter-face-spec (widget-value child)))
3481 (comment-widget (widget-get widget :comment-widget))
3482 (comment (widget-value comment-widget)))
3483 (when (equal comment "")
3484 (setq comment nil)
3485 ;; Make the comment invisible by hand if it's empty
3486 (custom-comment-hide comment-widget))
3487 (put symbol 'customized-face value)
3488 (custom-push-theme 'theme-face symbol 'user 'set value)
3489 (if (face-spec-choose value)
3490 (face-spec-set symbol value)
3491 ;; face-set-spec ignores empty attribute lists, so just give it
3492 ;; something harmless instead.
3493 (face-spec-set symbol '((t :foreground unspecified))))
3494 (put symbol 'customized-face-comment comment)
3495 (put symbol 'face-comment comment)
3496 (custom-face-state-set widget)
3497 (custom-redraw-magic widget)))
3499 (defun custom-face-save (widget)
3500 "Save in `.emacs' the face attributes in WIDGET."
3501 (let* ((symbol (widget-value widget))
3502 (child (car (widget-get widget :children)))
3503 (value (custom-post-filter-face-spec (widget-value child)))
3504 (comment-widget (widget-get widget :comment-widget))
3505 (comment (widget-value comment-widget)))
3506 (when (equal comment "")
3507 (setq comment nil)
3508 ;; Make the comment invisible by hand if it's empty
3509 (custom-comment-hide comment-widget))
3510 (custom-push-theme 'theme-face symbol 'user 'set value)
3511 (if (face-spec-choose value)
3512 (face-spec-set symbol value)
3513 ;; face-set-spec ignores empty attribute lists, so just give it
3514 ;; something harmless instead.
3515 (face-spec-set symbol '((t :foreground unspecified))))
3516 (unless (eq (widget-get widget :custom-state) 'standard)
3517 (put symbol 'saved-face value))
3518 (put symbol 'customized-face nil)
3519 (put symbol 'face-comment comment)
3520 (put symbol 'customized-face-comment nil)
3521 (put symbol 'saved-face-comment comment)
3522 (custom-save-all)
3523 (custom-face-state-set widget)
3524 (custom-redraw-magic widget)))
3526 ;; For backward compatibility.
3527 (define-obsolete-function-alias 'custom-face-save-command 'custom-face-save
3528 "22.1")
3530 (defun custom-face-reset-saved (widget)
3531 "Restore WIDGET to the face's default attributes."
3532 (let* ((symbol (widget-value widget))
3533 (child (car (widget-get widget :children)))
3534 (value (get symbol 'saved-face))
3535 (comment (get symbol 'saved-face-comment))
3536 (comment-widget (widget-get widget :comment-widget)))
3537 (unless (or value comment)
3538 (error "No saved value for this face"))
3539 (put symbol 'customized-face nil)
3540 (put symbol 'customized-face-comment nil)
3541 (custom-push-theme 'theme-face symbol 'user 'set value)
3542 (face-spec-set symbol value)
3543 (put symbol 'face-comment comment)
3544 (widget-value-set child value)
3545 ;; This call manages the comment visibility
3546 (widget-value-set comment-widget (or comment ""))
3547 (custom-face-state-set widget)
3548 (custom-redraw-magic widget)))
3550 (defun custom-face-standard-value (widget)
3551 (get (widget-value widget) 'face-defface-spec))
3553 (defun custom-face-reset-standard (widget)
3554 "Restore WIDGET to the face's standard attribute values.
3555 This operation eliminates any saved attributes for the face,
3556 restoring it to the state of a face that has never been customized."
3557 (let* ((symbol (widget-value widget))
3558 (child (car (widget-get widget :children)))
3559 (value (get symbol 'face-defface-spec))
3560 (comment-widget (widget-get widget :comment-widget)))
3561 (unless value
3562 (error "No standard setting for this face"))
3563 (put symbol 'customized-face nil)
3564 (put symbol 'customized-face-comment nil)
3565 (custom-push-theme 'theme-face symbol 'user 'reset)
3566 (face-spec-set symbol value)
3567 (custom-theme-recalc-face symbol)
3568 (when (or (get symbol 'saved-face) (get symbol 'saved-face-comment))
3569 (put symbol 'saved-face nil)
3570 (put symbol 'saved-face-comment nil)
3571 (custom-save-all))
3572 (put symbol 'face-comment nil)
3573 (widget-value-set child
3574 (custom-pre-filter-face-spec
3575 (list (list t (custom-face-attributes-get
3576 symbol nil)))))
3577 ;; This call manages the comment visibility
3578 (widget-value-set comment-widget "")
3579 (custom-face-state-set widget)
3580 (custom-redraw-magic widget)))
3582 ;;; The `face' Widget.
3584 (defvar widget-face-prompt-value-history nil
3585 "History of input to `widget-face-prompt-value'.")
3587 (define-widget 'face 'symbol
3588 "A Lisp face name (with sample)."
3589 :format "%{%t%}: (%{sample%}) %v"
3590 :tag "Face"
3591 :value 'default
3592 :sample-face-get 'widget-face-sample-face-get
3593 :notify 'widget-face-notify
3594 :match (lambda (widget value) (facep value))
3595 :complete-function (lambda ()
3596 (interactive)
3597 (lisp-complete-symbol 'facep))
3598 :prompt-match 'facep
3599 :prompt-history 'widget-face-prompt-value-history
3600 :validate (lambda (widget)
3601 (unless (facep (widget-value widget))
3602 (widget-put widget
3603 :error (format "Invalid face: %S"
3604 (widget-value widget)))
3605 widget)))
3607 (defun widget-face-sample-face-get (widget)
3608 (let ((value (widget-value widget)))
3609 (if (facep value)
3610 value
3611 'default)))
3613 (defun widget-face-notify (widget child &optional event)
3614 "Update the sample, and notify the parent."
3615 (overlay-put (widget-get widget :sample-overlay)
3616 'face (widget-apply widget :sample-face-get))
3617 (widget-default-notify widget child event))
3620 ;;; The `hook' Widget.
3622 (define-widget 'hook 'list
3623 "An Emacs Lisp hook."
3624 :value-to-internal (lambda (widget value)
3625 (if (and value (symbolp value))
3626 (list value)
3627 value))
3628 :match (lambda (widget value)
3629 (or (symbolp value)
3630 (widget-group-match widget value)))
3631 ;; Avoid adding undefined functions to the hook, especially for
3632 ;; things like `find-file-hook' or even more basic ones, to avoid
3633 ;; chaos.
3634 :set (lambda (symbol value)
3635 (dolist (elt value)
3636 (if (fboundp elt)
3637 (add-hook symbol elt))))
3638 :convert-widget 'custom-hook-convert-widget
3639 :tag "Hook")
3641 (defun custom-hook-convert-widget (widget)
3642 ;; Handle `:options'.
3643 (let* ((options (widget-get widget :options))
3644 (other `(editable-list :inline t
3645 :entry-format "%i %d%v"
3646 (function :format " %v")))
3647 (args (if options
3648 (list `(checklist :inline t
3649 ,@(mapcar (lambda (entry)
3650 `(function-item ,entry))
3651 options))
3652 other)
3653 (list other))))
3654 (widget-put widget :args args)
3655 widget))
3657 ;;; The `custom-group-link' Widget.
3659 (define-widget 'custom-group-link 'link
3660 "Show parent in other window when activated."
3661 :button-face 'custom-link
3662 :mouse-face 'highlight
3663 :pressed-face 'highlight
3664 :help-echo "Create customization buffer for this group."
3665 :keymap custom-mode-link-map
3666 :follow-link 'mouse-face
3667 :action 'custom-group-link-action)
3669 (defun custom-group-link-action (widget &rest ignore)
3670 (customize-group (widget-value widget)))
3672 ;;; The `custom-group' Widget.
3674 (defcustom custom-group-tag-faces nil
3675 ;; In XEmacs, this ought to play games with font size.
3676 ;; Fixme: make it do so in Emacs.
3677 "Face used for group tags.
3678 The first member is used for level 1 groups, the second for level 2,
3679 and so forth. The remaining group tags are shown with `custom-group-tag'."
3680 :type '(repeat face)
3681 :group 'custom-faces)
3683 (defface custom-group-tag-1
3684 `((((class color)
3685 (background dark))
3686 (:foreground "pink" :weight bold :height 1.2 :inherit variable-pitch))
3687 (((min-colors 88) (class color)
3688 (background light))
3689 (:foreground "red1" :weight bold :height 1.2 :inherit variable-pitch))
3690 (((class color)
3691 (background light))
3692 (:foreground "red" :weight bold :height 1.2 :inherit variable-pitch))
3693 (t (:weight bold)))
3694 "Face used for group tags."
3695 :group 'custom-faces)
3696 ;; backward-compatibility alias
3697 (put 'custom-group-tag-face-1 'face-alias 'custom-group-tag-1)
3699 (defface custom-group-tag
3700 `((((class color)
3701 (background dark))
3702 (:foreground "light blue" :weight bold :height 1.2 :inherit variable-pitch))
3703 (((min-colors 88) (class color)
3704 (background light))
3705 (:foreground "blue1" :weight bold :height 1.2 :inherit variable-pitch))
3706 (((class color)
3707 (background light))
3708 (:foreground "blue" :weight bold :height 1.2 :inherit variable-pitch))
3709 (t (:weight bold)))
3710 "Face used for low level group tags."
3711 :group 'custom-faces)
3712 ;; backward-compatibility alias
3713 (put 'custom-group-tag-face 'face-alias 'custom-group-tag)
3715 (define-widget 'custom-group 'custom
3716 "Customize group."
3717 :format "%v"
3718 :sample-face-get 'custom-group-sample-face-get
3719 :documentation-property 'group-documentation
3720 :help-echo "Set or reset all members of this group."
3721 :value-create 'custom-group-value-create
3722 :action 'custom-group-action
3723 :custom-category 'group
3724 :custom-set 'custom-group-set
3725 :custom-save 'custom-group-save
3726 :custom-reset-current 'custom-group-reset-current
3727 :custom-reset-saved 'custom-group-reset-saved
3728 :custom-reset-standard 'custom-group-reset-standard
3729 :custom-menu 'custom-group-menu-create)
3731 (defun custom-group-sample-face-get (widget)
3732 ;; Use :sample-face.
3733 (or (nth (1- (widget-get widget :custom-level)) custom-group-tag-faces)
3734 'custom-group-tag))
3736 (define-widget 'custom-group-visibility 'visibility
3737 "An indicator and manipulator for hidden group contents."
3738 :create 'custom-group-visibility-create)
3740 (defun custom-group-visibility-create (widget)
3741 (let ((visible (widget-value widget)))
3742 (if visible
3743 (insert "--------")))
3744 (widget-default-create widget))
3746 (defun custom-group-members (symbol groups-only)
3747 "Return SYMBOL's custom group members.
3748 If GROUPS-ONLY non-nil, return only those members that are groups."
3749 (if (not groups-only)
3750 (get symbol 'custom-group)
3751 (let (members)
3752 (dolist (entry (get symbol 'custom-group))
3753 (when (eq (nth 1 entry) 'custom-group)
3754 (push entry members)))
3755 (nreverse members))))
3757 (defun custom-group-value-create (widget)
3758 "Insert a customize group for WIDGET in the current buffer."
3759 (unless (eq (widget-get widget :custom-state) 'hidden)
3760 (custom-load-widget widget))
3761 (let* ((state (widget-get widget :custom-state))
3762 (level (widget-get widget :custom-level))
3763 ;; (indent (widget-get widget :indent))
3764 (prefix (widget-get widget :custom-prefix))
3765 (buttons (widget-get widget :buttons))
3766 (tag (widget-get widget :tag))
3767 (symbol (widget-value widget))
3768 (members (custom-group-members symbol
3769 (and (eq custom-buffer-style 'tree)
3770 custom-browse-only-groups))))
3771 (cond ((and (eq custom-buffer-style 'tree)
3772 (eq state 'hidden)
3773 (or members (custom-unloaded-widget-p widget)))
3774 (custom-browse-insert-prefix prefix)
3775 (push (widget-create-child-and-convert
3776 widget 'custom-browse-visibility
3777 ;; :tag-glyph "plus"
3778 :tag "+")
3779 buttons)
3780 (insert "-- ")
3781 ;; (widget-glyph-insert nil "-- " "horizontal")
3782 (push (widget-create-child-and-convert
3783 widget 'custom-browse-group-tag)
3784 buttons)
3785 (insert " " tag "\n")
3786 (widget-put widget :buttons buttons))
3787 ((and (eq custom-buffer-style 'tree)
3788 (zerop (length members)))
3789 (custom-browse-insert-prefix prefix)
3790 (insert "[ ]-- ")
3791 ;; (widget-glyph-insert nil "[ ]" "empty")
3792 ;; (widget-glyph-insert nil "-- " "horizontal")
3793 (push (widget-create-child-and-convert
3794 widget 'custom-browse-group-tag)
3795 buttons)
3796 (insert " " tag "\n")
3797 (widget-put widget :buttons buttons))
3798 ((eq custom-buffer-style 'tree)
3799 (custom-browse-insert-prefix prefix)
3800 (if (zerop (length members))
3801 (progn
3802 (custom-browse-insert-prefix prefix)
3803 (insert "[ ]-- ")
3804 ;; (widget-glyph-insert nil "[ ]" "empty")
3805 ;; (widget-glyph-insert nil "-- " "horizontal")
3806 (push (widget-create-child-and-convert
3807 widget 'custom-browse-group-tag)
3808 buttons)
3809 (insert " " tag "\n")
3810 (widget-put widget :buttons buttons))
3811 (push (widget-create-child-and-convert
3812 widget 'custom-browse-visibility
3813 ;; :tag-glyph "minus"
3814 :tag "-")
3815 buttons)
3816 (insert "-\\ ")
3817 ;; (widget-glyph-insert nil "-\\ " "top")
3818 (push (widget-create-child-and-convert
3819 widget 'custom-browse-group-tag)
3820 buttons)
3821 (insert " " tag "\n")
3822 (widget-put widget :buttons buttons)
3823 (message "Creating group...")
3824 (let* ((members (custom-sort-items members
3825 custom-browse-sort-alphabetically
3826 custom-browse-order-groups))
3827 (prefixes (widget-get widget :custom-prefixes))
3828 (custom-prefix-list (custom-prefix-add symbol prefixes))
3829 (extra-prefix (if (widget-get widget :custom-last)
3831 " | "))
3832 (prefix (concat prefix extra-prefix))
3833 children entry)
3834 (while members
3835 (setq entry (car members)
3836 members (cdr members))
3837 (push (widget-create-child-and-convert
3838 widget (nth 1 entry)
3839 :group widget
3840 :tag (custom-unlispify-tag-name (nth 0 entry))
3841 :custom-prefixes custom-prefix-list
3842 :custom-level (1+ level)
3843 :custom-last (null members)
3844 :value (nth 0 entry)
3845 :custom-prefix prefix)
3846 children))
3847 (widget-put widget :children (reverse children)))
3848 (message "Creating group...done")))
3849 ;; Nested style.
3850 ((eq state 'hidden)
3851 ;; Create level indicator.
3852 ;; Create tag.
3853 (if (eq custom-buffer-style 'links)
3854 (push (widget-create-child-and-convert
3855 widget 'custom-group-link
3856 :tag tag
3857 symbol)
3858 buttons)
3859 (insert-char ?\ (* custom-buffer-indent (1- level)))
3860 (insert "-- ")
3861 (push (widget-create-child-and-convert
3862 widget 'custom-group-visibility
3863 :help-echo "Show members of this group."
3864 :action 'custom-toggle-parent
3865 (not (eq state 'hidden)))
3866 buttons))
3867 (insert " : ")
3868 ;; Create magic button.
3869 (let ((magic (widget-create-child-and-convert
3870 widget 'custom-magic nil)))
3871 (widget-put widget :custom-magic magic)
3872 (push magic buttons))
3873 ;; Update buttons.
3874 (widget-put widget :buttons buttons)
3875 ;; Insert documentation.
3876 (if (and (eq custom-buffer-style 'links) (> level 1))
3877 (widget-put widget :documentation-indent 0))
3878 (widget-add-documentation-string-button
3879 widget :visibility-widget 'custom-visibility))
3881 ;; Nested style.
3882 (t ;Visible.
3883 ;; Add parent groups references above the group.
3884 (if t ;;; This should test that the buffer
3885 ;;; was made to display a group.
3886 (when (eq level 1)
3887 (if (custom-add-parent-links widget
3888 "Parent groups:")
3889 (insert "\n"))))
3890 ;; Create level indicator.
3891 (insert-char ?\ (* custom-buffer-indent (1- level)))
3892 (insert "/- ")
3893 ;; Create tag.
3894 (let ((start (point)))
3895 (insert tag " group: ")
3896 (widget-specify-sample widget start (point)))
3897 (insert (widget-docstring widget))
3898 ;; Create visibility indicator.
3899 (unless (eq custom-buffer-style 'links)
3900 (insert "--------")
3901 (push (widget-create-child-and-convert
3902 widget 'visibility
3903 :help-echo "Hide members of this group."
3904 :action 'custom-toggle-parent
3905 (not (eq state 'hidden)))
3906 buttons)
3907 (insert " "))
3908 ;; Create more dashes.
3909 ;; Use 76 instead of 75 to compensate for the temporary "<"
3910 ;; added by `widget-insert'.
3911 (insert-char ?- (- 76 (current-column)
3912 (* custom-buffer-indent level)))
3913 (insert "\\\n")
3914 ;; Create magic button.
3915 (let ((magic (widget-create-child-and-convert
3916 widget 'custom-magic
3917 :indent 0
3918 nil)))
3919 (widget-put widget :custom-magic magic)
3920 (push magic buttons))
3921 ;; Update buttons.
3922 (widget-put widget :buttons buttons)
3923 ;; Insert documentation.
3924 (widget-add-documentation-string-button
3925 widget :visibility-widget 'custom-visibility)
3927 ;; Parent groups.
3928 (if nil ;;; This should test that the buffer
3929 ;;; was not made to display a group.
3930 (when (eq level 1)
3931 (insert-char ?\ custom-buffer-indent)
3932 (custom-add-parent-links widget)))
3933 (custom-add-see-also widget
3934 (make-string (* custom-buffer-indent level)
3935 ?\ ))
3936 ;; Members.
3937 (message "Creating group...")
3938 (let* ((members (custom-sort-items members
3939 custom-buffer-sort-alphabetically
3940 custom-buffer-order-groups))
3941 (prefixes (widget-get widget :custom-prefixes))
3942 (custom-prefix-list (custom-prefix-add symbol prefixes))
3943 (length (length members))
3944 (count 0)
3945 (children (mapcar (lambda (entry)
3946 (widget-insert "\n")
3947 (message "\
3948 Creating group members... %2d%%"
3949 (/ (* 100.0 count) length))
3950 (setq count (1+ count))
3951 (prog1
3952 (widget-create-child-and-convert
3953 widget (nth 1 entry)
3954 :group widget
3955 :tag (custom-unlispify-tag-name
3956 (nth 0 entry))
3957 :custom-prefixes custom-prefix-list
3958 :custom-level (1+ level)
3959 :value (nth 0 entry))
3960 (unless (eq (preceding-char) ?\n)
3961 (widget-insert "\n"))))
3962 members)))
3963 (message "Creating group magic...")
3964 (mapc 'custom-magic-reset children)
3965 (message "Creating group state...")
3966 (widget-put widget :children children)
3967 (custom-group-state-update widget)
3968 (message "Creating group... done"))
3969 ;; End line
3970 (insert "\n")
3971 (insert-char ?\ (* custom-buffer-indent (1- level)))
3972 (insert "\\- " (widget-get widget :tag) " group end ")
3973 (insert-char ?- (- 75 (current-column) (* custom-buffer-indent level)))
3974 (insert "/\n")))))
3976 (defvar custom-group-menu
3977 `(("Set for Current Session" custom-group-set
3978 (lambda (widget)
3979 (eq (widget-get widget :custom-state) 'modified)))
3980 ,@(when (or custom-file user-init-file)
3981 '(("Save for Future Sessions" custom-group-save
3982 (lambda (widget)
3983 (memq (widget-get widget :custom-state) '(modified set))))))
3984 ("Undo Edits" custom-group-reset-current
3985 (lambda (widget)
3986 (memq (widget-get widget :custom-state) '(modified))))
3987 ("Reset to Saved" custom-group-reset-saved
3988 (lambda (widget)
3989 (memq (widget-get widget :custom-state) '(modified set))))
3990 ,@(when (or custom-file user-init-file)
3991 '(("Erase Customization" custom-group-reset-standard
3992 (lambda (widget)
3993 (memq (widget-get widget :custom-state) '(modified set saved)))))))
3994 "Alist of actions for the `custom-group' widget.
3995 Each entry has the form (NAME ACTION FILTER) where NAME is the name of
3996 the menu entry, ACTION is the function to call on the widget when the
3997 menu is selected, and FILTER is a predicate which takes a `custom-group'
3998 widget as an argument, and returns non-nil if ACTION is valid on that
3999 widget. If FILTER is nil, ACTION is always valid.")
4001 (defun custom-group-action (widget &optional event)
4002 "Show the menu for `custom-group' WIDGET.
4003 Optional EVENT is the location for the menu."
4004 (if (eq (widget-get widget :custom-state) 'hidden)
4005 (custom-toggle-hide widget)
4006 (let* ((completion-ignore-case t)
4007 (answer (widget-choose (concat "Operation on "
4008 (custom-unlispify-tag-name
4009 (widget-get widget :value)))
4010 (custom-menu-filter custom-group-menu
4011 widget)
4012 event)))
4013 (if answer
4014 (funcall answer widget)))))
4016 (defun custom-group-set (widget)
4017 "Set changes in all modified group members."
4018 (dolist (child (widget-get widget :children))
4019 (when (eq (widget-get child :custom-state) 'modified)
4020 (widget-apply child :custom-set))))
4022 (defun custom-group-save (widget)
4023 "Save all modified group members."
4024 (dolist (child (widget-get widget :children))
4025 (when (memq (widget-get child :custom-state) '(modified set))
4026 (widget-apply child :custom-save))))
4028 (defun custom-group-reset-current (widget)
4029 "Reset all modified group members."
4030 (dolist (child (widget-get widget :children))
4031 (when (eq (widget-get child :custom-state) 'modified)
4032 (widget-apply child :custom-reset-current))))
4034 (defun custom-group-reset-saved (widget)
4035 "Reset all modified or set group members."
4036 (dolist (child (widget-get widget :children))
4037 (when (memq (widget-get child :custom-state) '(modified set))
4038 (widget-apply child :custom-reset-saved))))
4040 (defun custom-group-reset-standard (widget)
4041 "Reset all modified, set, or saved group members."
4042 (dolist (child (widget-get widget :children))
4043 (when (memq (widget-get child :custom-state)
4044 '(modified set saved))
4045 (widget-apply child :custom-reset-standard))))
4047 (defun custom-group-state-update (widget)
4048 "Update magic."
4049 (unless (eq (widget-get widget :custom-state) 'hidden)
4050 (let* ((children (widget-get widget :children))
4051 (states (mapcar (lambda (child)
4052 (widget-get child :custom-state))
4053 children))
4054 (magics custom-magic-alist)
4055 (found 'standard))
4056 (while magics
4057 (let ((magic (car (car magics))))
4058 (if (and (not (eq magic 'hidden))
4059 (memq magic states))
4060 (setq found magic
4061 magics nil)
4062 (setq magics (cdr magics)))))
4063 (widget-put widget :custom-state found)))
4064 (custom-magic-reset widget))
4066 ;;; Reading and writing the custom file.
4068 ;;;###autoload
4069 (defcustom custom-file nil
4070 "File used for storing customization information.
4071 The default is nil, which means to use your init file
4072 as specified by `user-init-file'. If the value is not nil,
4073 it should be an absolute file name.
4075 You can set this option through Custom, if you carefully read the
4076 last paragraph below. However, usually it is simpler to write
4077 something like the following in your init file:
4079 \(setq custom-file \"~/.emacs-custom.el\")
4080 \(load custom-file)
4082 Note that both lines are necessary: the first line tells Custom to
4083 save all customizations in this file, but does not load it.
4085 When you change this variable outside Custom, look in the
4086 previous custom file \(usually your init file) for the
4087 forms `(custom-set-variables ...)' and `(custom-set-faces ...)',
4088 and copy them (whichever ones you find) to the new custom file.
4089 This will preserve your existing customizations.
4091 If you save this option using Custom, Custom will write all
4092 currently saved customizations, including the new one for this
4093 option itself, into the file you specify, overwriting any
4094 `custom-set-variables' and `custom-set-faces' forms already
4095 present in that file. It will not delete any customizations from
4096 the old custom file. You should do that manually if that is what you
4097 want. You also have to put something like `\(load \"CUSTOM-FILE\")
4098 in your init file, where CUSTOM-FILE is the actual name of the
4099 file. Otherwise, Emacs will not load the file when it starts up,
4100 and hence will not set `custom-file' to that file either."
4101 :type '(choice (const :tag "Your Emacs init file" nil)
4102 (file :format "%t:%v%d"
4103 :doc
4104 "Please read entire docstring below before setting \
4105 this through Custom.
4106 Click om \"More\" \(or position point there and press RETURN)
4107 if only the first line of the docstring is shown."))
4108 :group 'customize)
4110 (defun custom-file ()
4111 "Return the file name for saving customizations."
4112 (file-chase-links
4113 (or custom-file
4114 (let ((user-init-file user-init-file)
4115 (default-init-file
4116 (if (eq system-type 'ms-dos) "~/_emacs" "~/.emacs")))
4117 (when (null user-init-file)
4118 (if (or (file-exists-p default-init-file)
4119 (and (eq system-type 'windows-nt)
4120 (file-exists-p "~/_emacs")))
4121 ;; Started with -q, i.e. the file containing
4122 ;; Custom settings hasn't been read. Saving
4123 ;; settings there would overwrite other settings.
4124 (error "Saving settings from \"emacs -q\" would overwrite existing customizations"))
4125 (setq user-init-file default-init-file))
4126 user-init-file))))
4128 ;;;###autoload
4129 (defun custom-save-all ()
4130 "Save all customizations in `custom-file'."
4131 (when (and (null custom-file) init-file-had-error)
4132 (error "Cannot save customizations; init file was not fully loaded"))
4133 (let* ((filename (custom-file))
4134 (recentf-exclude
4135 (if recentf-mode
4136 (cons (concat "\\`"
4137 (regexp-quote
4138 (recentf-expand-file-name (custom-file)))
4139 "\\'")
4140 recentf-exclude)))
4141 (old-buffer (find-buffer-visiting filename)))
4142 (with-current-buffer (let ((find-file-visit-truename t))
4143 (or old-buffer (find-file-noselect filename)))
4144 (unless (eq major-mode 'emacs-lisp-mode)
4145 (emacs-lisp-mode))
4146 (let ((inhibit-read-only t))
4147 (custom-save-variables)
4148 (custom-save-faces))
4149 (let ((file-precious-flag t))
4150 (save-buffer))
4151 (unless old-buffer
4152 (kill-buffer (current-buffer))))))
4154 ;;;###autoload
4155 (defun customize-save-customized ()
4156 "Save all user options which have been set in this session."
4157 (interactive)
4158 (mapatoms (lambda (symbol)
4159 (let ((face (get symbol 'customized-face))
4160 (value (get symbol 'customized-value))
4161 (face-comment (get symbol 'customized-face-comment))
4162 (variable-comment
4163 (get symbol 'customized-variable-comment)))
4164 (when face
4165 (put symbol 'saved-face face)
4166 (custom-push-theme 'theme-face symbol 'user 'set value)
4167 (put symbol 'customized-face nil))
4168 (when value
4169 (put symbol 'saved-value value)
4170 (custom-push-theme 'theme-value symbol 'user 'set value)
4171 (put symbol 'customized-value nil))
4172 (when variable-comment
4173 (put symbol 'saved-variable-comment variable-comment)
4174 (put symbol 'customized-variable-comment nil))
4175 (when face-comment
4176 (put symbol 'saved-face-comment face-comment)
4177 (put symbol 'customized-face-comment nil)))))
4178 ;; We really should update all custom buffers here.
4179 (custom-save-all))
4181 ;; Editing the custom file contents in a buffer.
4183 (defun custom-save-delete (symbol)
4184 "Delete all calls to SYMBOL from the contents of the current buffer.
4185 Leave point at the old location of the first such call,
4186 or (if there were none) at the end of the buffer.
4188 This function does not save the buffer."
4189 (goto-char (point-min))
4190 ;; Skip all whitespace and comments.
4191 (while (forward-comment 1))
4192 (or (eobp)
4193 (save-excursion (forward-sexp (buffer-size)))) ; Test for scan errors.
4194 (let (first)
4195 (catch 'found
4196 (while t ;; We exit this loop only via throw.
4197 ;; Skip all whitespace and comments.
4198 (while (forward-comment 1))
4199 (let ((start (point))
4200 (sexp (condition-case nil
4201 (read (current-buffer))
4202 (end-of-file (throw 'found nil)))))
4203 (when (and (listp sexp)
4204 (eq (car sexp) symbol))
4205 (delete-region start (point))
4206 (unless first
4207 (setq first (point)))))))
4208 (if first
4209 (goto-char first)
4210 ;; Move in front of local variables, otherwise long Custom
4211 ;; entries would make them ineffective.
4212 (let ((pos (point-max))
4213 (case-fold-search t))
4214 (save-excursion
4215 (goto-char (point-max))
4216 (search-backward "\n\^L" (max (- (point-max) 3000) (point-min))
4217 'move)
4218 (when (search-forward "Local Variables:" nil t)
4219 (setq pos (line-beginning-position))))
4220 (goto-char pos)))))
4222 (defun custom-save-variables ()
4223 "Save all customized variables in `custom-file'."
4224 (save-excursion
4225 (custom-save-delete 'custom-set-variables)
4226 (let ((standard-output (current-buffer))
4227 (saved-list (make-list 1 0))
4228 sort-fold-case)
4229 ;; First create a sorted list of saved variables.
4230 (mapatoms
4231 (lambda (symbol)
4232 (if (and (get symbol 'saved-value)
4233 ;; ignore theme values
4234 (or (null (get symbol 'theme-value))
4235 (eq 'user (caar (get symbol 'theme-value)))))
4236 (nconc saved-list (list symbol)))))
4237 (setq saved-list (sort (cdr saved-list) 'string<))
4238 (unless (bolp)
4239 (princ "\n"))
4240 (princ "(custom-set-variables
4241 ;; custom-set-variables was added by Custom.
4242 ;; If you edit it by hand, you could mess it up, so be careful.
4243 ;; Your init file should contain only one such instance.
4244 ;; If there is more than one, they won't work right.\n")
4245 (dolist (symbol saved-list)
4246 (let ((spec (car-safe (get symbol 'theme-value)))
4247 (value (get symbol 'saved-value))
4248 (requests (get symbol 'custom-requests))
4249 (now (and (not (custom-variable-p symbol))
4250 (or (boundp symbol)
4251 (eq (get symbol 'force-value)
4252 'rogue))))
4253 (comment (get symbol 'saved-variable-comment)))
4254 ;; Check REQUESTS for validity.
4255 (dolist (request requests)
4256 (when (and (symbolp request) (not (featurep request)))
4257 (message "Unknown requested feature: %s" request)
4258 (setq requests (delq request requests))))
4259 ;; Is there anything customized about this variable?
4260 (when (or (and spec (eq (car spec) 'user))
4261 comment
4262 (and (null spec) (get symbol 'saved-value)))
4263 ;; Output an element for this variable.
4264 ;; It has the form (SYMBOL VALUE-FORM NOW REQUESTS COMMENT).
4265 ;; SYMBOL is the variable name.
4266 ;; VALUE-FORM is an expression to return the customized value.
4267 ;; NOW if non-nil means always set the variable immediately
4268 ;; when the customizations are reloaded. This is used
4269 ;; for rogue variables
4270 ;; REQUESTS is a list of packages to load before setting the
4271 ;; variable. Each element of it will be passed to `require'.
4272 ;; COMMENT is whatever comment the user has specified
4273 ;; with the customize facility.
4274 (unless (bolp)
4275 (princ "\n"))
4276 (princ " '(")
4277 (prin1 symbol)
4278 (princ " ")
4279 (prin1 (car value))
4280 (when (or now requests comment)
4281 (princ " ")
4282 (prin1 now)
4283 (when (or requests comment)
4284 (princ " ")
4285 (prin1 requests)
4286 (when comment
4287 (princ " ")
4288 (prin1 comment))))
4289 (princ ")"))))
4290 (if (bolp)
4291 (princ " "))
4292 (princ ")")
4293 (unless (looking-at "\n")
4294 (princ "\n")))))
4296 (defun custom-save-faces ()
4297 "Save all customized faces in `custom-file'."
4298 (save-excursion
4299 (custom-save-delete 'custom-reset-faces)
4300 (custom-save-delete 'custom-set-faces)
4301 (let ((standard-output (current-buffer))
4302 (saved-list (make-list 1 0))
4303 sort-fold-case)
4304 ;; First create a sorted list of saved faces.
4305 (mapatoms
4306 (lambda (symbol)
4307 (if (and (get symbol 'saved-face)
4308 (eq 'user (car (car-safe (get symbol 'theme-face)))))
4309 (nconc saved-list (list symbol)))))
4310 (setq saved-list (sort (cdr saved-list) 'string<))
4311 ;; The default face must be first, since it affects the others.
4312 (if (memq 'default saved-list)
4313 (setq saved-list (cons 'default (delq 'default saved-list))))
4314 (unless (bolp)
4315 (princ "\n"))
4316 (princ "(custom-set-faces
4317 ;; custom-set-faces was added by Custom.
4318 ;; If you edit it by hand, you could mess it up, so be careful.
4319 ;; Your init file should contain only one such instance.
4320 ;; If there is more than one, they won't work right.\n")
4321 (dolist (symbol saved-list)
4322 (let ((spec (car-safe (get symbol 'theme-face)))
4323 (value (get symbol 'saved-face))
4324 (now (not (or (get symbol 'face-defface-spec)
4325 (and (not (custom-facep symbol))
4326 (not (get symbol 'force-face))))))
4327 (comment (get symbol 'saved-face-comment)))
4328 (when (or (and spec (eq (nth 0 spec) 'user))
4329 comment
4330 (and (null spec) (get symbol 'saved-face)))
4331 ;; Don't print default face here.
4332 (unless (bolp)
4333 (princ "\n"))
4334 (princ " '(")
4335 (prin1 symbol)
4336 (princ " ")
4337 (prin1 value)
4338 (when (or now comment)
4339 (princ " ")
4340 (prin1 now)
4341 (when comment
4342 (princ " ")
4343 (prin1 comment)))
4344 (princ ")"))))
4345 (if (bolp)
4346 (princ " "))
4347 (princ ")")
4348 (unless (looking-at "\n")
4349 (princ "\n")))))
4351 ;;; The Customize Menu.
4353 ;;; Menu support
4355 (defcustom custom-menu-nesting 2
4356 "Maximum nesting in custom menus."
4357 :type 'integer
4358 :group 'custom-menu)
4360 (defun custom-face-menu-create (widget symbol)
4361 "Ignoring WIDGET, create a menu entry for customization face SYMBOL."
4362 (vector (custom-unlispify-menu-entry symbol)
4363 `(customize-face ',symbol)
4366 (defun custom-variable-menu-create (widget symbol)
4367 "Ignoring WIDGET, create a menu entry for customization variable SYMBOL."
4368 (let ((type (get symbol 'custom-type)))
4369 (unless (listp type)
4370 (setq type (list type)))
4371 (if (and type (widget-get type :custom-menu))
4372 (widget-apply type :custom-menu symbol)
4373 (vector (custom-unlispify-menu-entry symbol)
4374 `(customize-variable ',symbol)
4375 t))))
4377 ;; Add checkboxes to boolean variable entries.
4378 (widget-put (get 'boolean 'widget-type)
4379 :custom-menu (lambda (widget symbol)
4380 (vector (custom-unlispify-menu-entry symbol)
4381 `(customize-variable ',symbol)
4382 ':style 'toggle
4383 ':selected symbol)))
4385 (defun custom-group-menu-create (widget symbol)
4386 "Ignoring WIDGET, create a menu entry for customization group SYMBOL."
4387 `( ,(custom-unlispify-menu-entry symbol t)
4388 :filter (lambda (&rest junk)
4389 (let* ((menu (custom-menu-create ',symbol)))
4390 (if (consp menu) (cdr menu) menu)))))
4392 ;;;###autoload
4393 (defun custom-menu-create (symbol)
4394 "Create menu for customization group SYMBOL.
4395 The menu is in a format applicable to `easy-menu-define'."
4396 (let* ((deactivate-mark nil)
4397 (item (vector (custom-unlispify-menu-entry symbol)
4398 `(customize-group ',symbol)
4399 t)))
4400 (if (and (or (not (boundp 'custom-menu-nesting))
4401 (>= custom-menu-nesting 0))
4402 (progn
4403 (custom-load-symbol symbol)
4404 (< (length (get symbol 'custom-group)) widget-menu-max-size)))
4405 (let ((custom-prefix-list (custom-prefix-add symbol
4406 custom-prefix-list))
4407 (members (custom-sort-items (get symbol 'custom-group)
4408 custom-menu-sort-alphabetically
4409 custom-menu-order-groups)))
4410 `(,(custom-unlispify-menu-entry symbol t)
4411 ,item
4412 "--"
4413 ,@(mapcar (lambda (entry)
4414 (widget-apply (if (listp (nth 1 entry))
4415 (nth 1 entry)
4416 (list (nth 1 entry)))
4417 :custom-menu (nth 0 entry)))
4418 members)))
4419 item)))
4421 ;;;###autoload
4422 (defun customize-menu-create (symbol &optional name)
4423 "Return a customize menu for customization group SYMBOL.
4424 If optional NAME is given, use that as the name of the menu.
4425 Otherwise the menu will be named `Customize'.
4426 The format is suitable for use with `easy-menu-define'."
4427 (unless name
4428 (setq name "Customize"))
4429 `(,name
4430 :filter (lambda (&rest junk)
4431 (let ((menu (custom-menu-create ',symbol)))
4432 (if (consp menu) (cdr menu) menu)))))
4434 ;;; Toolbar and menubar support
4436 (easy-menu-define
4437 Custom-mode-menu custom-mode-map
4438 "Menu used in customization buffers."
4439 (nconc (list "Custom"
4440 (customize-menu-create 'customize))
4441 (mapcar (lambda (arg)
4442 (let ((tag (nth 0 arg))
4443 (command (nth 1 arg))
4444 (active (nth 2 arg))
4445 (help (nth 3 arg)))
4446 (vector tag command :active (eval active) :help help)))
4447 custom-commands)))
4449 (defvar tool-bar-map)
4450 (defvar custom-tool-bar-map
4451 (if (display-graphic-p)
4452 (let ((map (make-sparse-keymap)))
4453 (mapc
4454 (lambda (arg)
4455 (tool-bar-local-item-from-menu
4456 (nth 1 arg) (nth 4 arg) map custom-mode-map))
4457 custom-commands)
4458 map)))
4460 ;;; The Custom Mode.
4462 (defun Custom-no-edit (pos &optional event)
4463 "Invoke button at POS, or refuse to allow editing of Custom buffer."
4464 (interactive "@d")
4465 (error "You can't edit this part of the Custom buffer"))
4467 (defun Custom-newline (pos &optional event)
4468 "Invoke button at POS, or refuse to allow editing of Custom buffer."
4469 (interactive "@d")
4470 (let ((button (get-char-property pos 'button)))
4471 (if button
4472 (widget-apply-action button event)
4473 (error "You can't edit this part of the Custom buffer"))))
4475 (defvar custom-field-keymap
4476 (let ((map (copy-keymap widget-field-keymap)))
4477 (define-key map "\C-c\C-c" 'Custom-set)
4478 (define-key map "\C-x\C-s" 'Custom-save)
4479 map)
4480 "Keymap used inside editable fields in customization buffers.")
4482 (widget-put (get 'editable-field 'widget-type) :keymap custom-field-keymap)
4484 (defun Custom-goto-parent ()
4485 "Go to the parent group listed at the top of this buffer.
4486 If several parents are listed, go to the first of them."
4487 (interactive)
4488 (save-excursion
4489 (goto-char (point-min))
4490 (if (search-forward "\nParent groups: " nil t)
4491 (let* ((button (get-char-property (point) 'button))
4492 (parent (downcase (widget-get button :tag))))
4493 (customize-group parent)))))
4495 (defcustom custom-mode-hook nil
4496 "Hook called when entering Custom mode."
4497 :type 'hook
4498 :group 'custom-buffer )
4500 (defun custom-state-buffer-message (widget)
4501 (if (eq (widget-get (widget-get widget :parent) :custom-state) 'modified)
4502 (message "To install your edits, invoke [State] and choose the Set operation")))
4504 (defun custom-mode ()
4505 "Major mode for editing customization buffers.
4507 The following commands are available:
4509 \\<widget-keymap>\
4510 Move to next button, link or editable field. \\[widget-forward]
4511 Move to previous button, link or editable field. \\[advertised-widget-backward]
4512 \\<custom-field-keymap>\
4513 Complete content of editable text field. \\[widget-complete]
4514 \\<custom-mode-map>\
4515 Invoke button under the mouse pointer. \\[widget-button-click]
4516 Invoke button under point. \\[widget-button-press]
4517 Set all options from current text. \\[Custom-set]
4518 Make values in current text permanent. \\[Custom-save]
4519 Make text match actual option values. \\[Custom-reset-current]
4520 Reset options to permanent settings. \\[Custom-reset-saved]
4521 Erase customizations; set options
4522 and buffer text to the standard values. \\[Custom-reset-standard]
4524 Entry to this mode calls the value of `custom-mode-hook'
4525 if that value is non-nil."
4526 (kill-all-local-variables)
4527 (setq major-mode 'custom-mode
4528 mode-name "Custom")
4529 (use-local-map custom-mode-map)
4530 (easy-menu-add Custom-mode-menu)
4531 (set (make-local-variable 'tool-bar-map) custom-tool-bar-map)
4532 (make-local-variable 'custom-options)
4533 (make-local-variable 'custom-local-buffer)
4534 (make-local-variable 'widget-documentation-face)
4535 (setq widget-documentation-face 'custom-documentation)
4536 (make-local-variable 'widget-button-face)
4537 (setq widget-button-face custom-button)
4539 ;; We need this because of the "More" button on docstrings.
4540 ;; Otherwise clicking on "More" can push point offscreen, which
4541 ;; causes the window to recenter on point, which pushes the
4542 ;; newly-revealed docstring offscreen; which is annoying. -- cyd.
4543 (set (make-local-variable 'widget-button-click-moves-point) t)
4545 (set (make-local-variable 'widget-button-pressed-face) custom-button-pressed)
4546 (set (make-local-variable 'widget-mouse-face) custom-button-mouse)
4548 ;; When possible, use relief for buttons, not bracketing. This test
4549 ;; may not be optimal.
4550 (when custom-raised-buttons
4551 (set (make-local-variable 'widget-push-button-prefix) "")
4552 (set (make-local-variable 'widget-push-button-suffix) "")
4553 (set (make-local-variable 'widget-link-prefix) "")
4554 (set (make-local-variable 'widget-link-suffix) ""))
4555 (add-hook 'widget-edit-functions 'custom-state-buffer-message nil t)
4556 (run-mode-hooks 'custom-mode-hook))
4558 (put 'custom-mode 'mode-class 'special)
4560 (dolist (regexp
4561 '("^No user option defaults have been changed since Emacs "
4562 "^Invalid face:? "
4563 "^No \\(?:customized\\|rogue\\|saved\\) user options"
4564 "^No customizable items matching "
4565 "^There are unset changes"
4566 "^Cannot set hidden variable"
4567 "^No \\(?:saved\\|backup\\) value for "
4568 "^No standard setting known for "
4569 "^No standard setting for this face"
4570 "^Saving settings from \"emacs -q\" would overwrite existing customizations"))
4571 (add-to-list 'debug-ignored-errors regexp))
4573 ;;; The End.
4575 (provide 'cus-edit)
4577 ;; arch-tag: 64533aa4-1b1a-48c3-8812-f9dc718e8a6f
4578 ;;; cus-edit.el ends here