1 ;;; cus-edit.el --- Tools for customizating Emacs and Lisp packages.
3 ;; Copyright (C) 1996, 1997, 2000 Free Software Foundation, Inc.
5 ;; Author: Per Abrahamsen <abraham@dina.kvl.dk>
6 ;; Maintainer: Hrvoje Niksic <hniksic@xemacs.org>
7 ;; Keywords: help, faces
9 ;; X-URL: http://www.dina.kvl.dk/~abraham/custom/
11 ;; This file is part of XEmacs.
13 ;; XEmacs is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation; either version 2, or (at your option)
18 ;; XEmacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with XEmacs; see the file COPYING. If not, write to the
25 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
26 ;; Boston, MA 02111-1307, USA.
30 ;; This file implements the code to create and edit customize buffers.
34 ;; No commands should have names starting with `custom-' because
35 ;; that interferes with completion. Use `customize-' for commands
36 ;; that the user will run with M-x, and `Custom-' for interactive commands.
38 ;; NOTE: In many places within this file we use `mapatoms', which is
39 ;; very slow in an average XEmacs because of the large number of
40 ;; symbols requiring a large number of funcalls -- XEmacs with Gnus
41 ;; can grow to some 17000 symbols without ever doing anything fancy.
42 ;; It would probably pay off to make a hash table of symbols known to
43 ;; Custom, similar to custom-group-hash-table.
45 ;; This is not top priority, because none of the functions that do
46 ;; mapatoms are speed-critical (the one that was now uses
47 ;; custom-group-hash-table), but it would be nice to have.
60 ;; Huh? This looks dirty!
61 (put 'custom-define-hook 'custom-type 'hook)
62 (put 'custom-define-hook 'standard-value '(nil))
63 (custom-add-to-group 'customize 'custom-define-hook 'custom-variable)
65 ;;; Customization Groups.
68 "Customization of the One True Editor."
69 :link '(custom-manual "(XEmacs)Top"))
71 ;; Most of these groups are stolen from `finder.el',
73 "Basic text editing facilities."
76 (defgroup matching nil
77 "Various sorts of searching and matching."
80 (defgroup emulations nil
81 "Emulations of other editors."
84 (defgroup outlines nil
85 "Support for hierarchical outlining."
88 (defgroup external nil
89 "Interfacing to external utilities."
93 "Code related to the `bib' bibliography processor."
97 (defgroup programming nil
98 "Support for programming in other languages."
101 (defgroup languages nil
102 "Specialized modes for editing programming languages."
105 ;; #### This should be in cc-vars.el
107 "Support for the C language and related languages."
115 "Support for object-oriented programming."
118 (defgroup applications nil
119 "Applications written in Emacs."
122 ;; #### This should be in calendar.el
123 (defgroup calendar nil
124 "Calendar and time management support."
125 :group 'applications)
128 "Modes for electronic-mail handling."
129 :group 'applications)
132 "Support for netnews reading and posting."
133 :group 'applications)
136 "Games, jokes and amusements."
137 :group 'applications)
139 (defgroup development nil
140 "Support for further development of Emacs."
144 "Support for Emacs documentation."
147 (defgroup extensions nil
148 "Emacs Lisp language extensions."
151 (defgroup internal nil
152 "Code for Emacs internals, build process, defaults."
156 "Maintenance aids for the Emacs development group."
160 (defgroup environment nil
161 "Fitting Emacs with its environment."
165 "Communications, networking, remote access to files."
169 (defgroup hardware nil
170 "Support for interfacing with exotic hardware."
173 (defgroup terminals nil
174 "Support for terminal types."
178 "Front-ends/assistants for, or emulators of, UNIX features."
182 "Internationalization and alternate character-set support."
187 "Support editing files of data."
195 "Code related to the TeX formatter."
198 (defgroup hypermedia nil
199 "Support for links between text or other media types."
203 "Code local to your site."
206 (defgroup customize '((widgets custom-group))
207 "Customization of the Customization support."
208 :link '(custom-manual "(custom)Top")
209 :link '(url-link :tag "Development Page"
210 "http://www.dina.kvl.dk/~abraham/custom/")
214 (defgroup custom-faces nil
215 "Faces used by customize."
219 (defgroup custom-browse nil
220 "Control customize browser."
224 (defgroup custom-buffer nil
225 "Control customize buffers."
229 (defgroup custom-menu nil
230 "Control customize menus."
235 "Storage allocation and gc for GNU Emacs Lisp interpreter."
236 :tag "Storage Allocation"
240 "Undoing changes in buffers."
243 (defgroup editing-basics nil
244 "Most basic editing facilities."
247 (defgroup display nil
248 "How characters are displayed in buffers."
251 (defgroup installation nil
252 "The Emacs installation."
256 "Internal Emacs limits."
260 "Debugging Emacs itself."
264 "Mule XEmacs internationalization."
270 (defun custom-quote (sexp)
271 "Quote SEXP iff it is not self quoting."
272 (if (or (memq sexp '(t nil))
274 (eq (car-safe sexp) 'lambda)
283 (defun custom-split-regexp-maybe (regexp)
284 "If REGEXP is a string, split it to a list at `\\|'.
285 You can get the original back with from the result with:
286 (mapconcat #'identity result \"\\|\")
288 IF REGEXP is not a string, return it unchanged."
290 (split-string regexp "\\\\|")
293 (defun custom-variable-prompt ()
294 ;; Code stolen from `help.el'.
295 "Prompt for a variable, defaulting to the variable at point.
296 Return a list suitable for use in `interactive'."
297 (let ((v (variable-at-point))
298 (enable-recursive-minibuffers t)
300 (setq val (completing-read
302 (format "Customize variable: (default %s) " v)
303 "Customize variable: ")
304 obarray (lambda (symbol)
306 (or (get symbol 'custom-type)
307 (user-variable-p symbol))))
308 t nil nil (and v (symbol-name v))))
309 (list (if (equal val "")
310 (if (symbolp v) v nil)
313 ;; Here we take not only the actual groups, but the loads, too.
314 (defun custom-group-prompt (prompt)
315 "Read group from minibuffer."
316 (let ((completion-ignore-case t))
317 (list (completing-read
320 (or (get symbol 'custom-group)
321 (get symbol 'custom-loads)))
324 (defun custom-menu-filter (menu widget)
325 "Convert MENU to the form used by `widget-choose'.
326 MENU should be in the same format as `custom-variable-menu'.
327 WIDGET is the widget to apply the filter entries of MENU on."
329 current name action filter)
331 (setq current (car menu)
333 action (nth 1 current)
334 filter (nth 2 current)
336 (if (or (null filter) (funcall filter widget))
337 (push (cons name action) result)
344 (defvar custom-prefix-list nil
345 "List of prefixes that should be ignored by `custom-unlispify'")
347 (defcustom custom-unlispify-menu-entries t
348 "Display menu entries as words instead of symbols if non nil."
352 (defcustom custom-unlispify-remove-prefixes t
353 "Non-nil means remove group prefixes from option names in buffers and menus.
354 This only has an effect when `custom-unlispify-tag-names' or
355 `custom-unlispify-menu-entries' is on."
359 (defun custom-unlispify-menu-entry (symbol &optional no-suffix)
360 "Convert symbol into a menu entry."
361 (cond ((not custom-unlispify-menu-entries)
362 (symbol-name symbol))
363 ((get symbol 'custom-tag)
365 (get symbol 'custom-tag)
366 (concat (get symbol 'custom-tag) "...")))
368 (with-current-buffer (get-buffer-create " *Custom-Work*")
370 (princ symbol (current-buffer))
371 (goto-char (point-min))
372 (when (and (eq (get symbol 'custom-type) 'boolean)
373 (re-search-forward "-p\\'" nil t))
374 (replace-match "" t t)
375 (goto-char (point-min)))
376 (when custom-unlispify-remove-prefixes
377 (let ((prefixes custom-prefix-list)
380 (setq prefix (car prefixes))
381 (if (search-forward prefix (+ (point) (length prefix)) t)
384 (delete-region (point-min) (point)))
385 (setq prefixes (cdr prefixes))))))
386 (subst-char-in-region (point-min) (point-max) ?- ?\ t)
387 (capitalize-region (point-min) (point-max))
389 (goto-char (point-max))
393 (defcustom custom-unlispify-tag-names t
394 "Display tag names as words instead of symbols if non nil."
395 :group 'custom-buffer
398 (defun custom-unlispify-tag-name (symbol)
399 "Convert symbol into a menu entry."
400 (let ((custom-unlispify-menu-entries custom-unlispify-tag-names))
401 (custom-unlispify-menu-entry symbol t)))
403 (defun custom-prefix-add (symbol prefixes)
404 ;; Add SYMBOL to list of ignored PREFIXES.
405 (cons (or (get symbol 'custom-prefix)
406 (concat (symbol-name symbol) "-"))
412 (defcustom custom-guess-name-alist
417 ("-function\\'" function)
418 ("-functions\\'" (repeat function))
419 ("-list\\'" (repeat sexp))
420 ("-alist\\'" (repeat (cons sexp sexp))))
421 "Alist of (MATCH TYPE).
423 MATCH should be a regexp matching the name of a symbol, and TYPE should
424 be a widget suitable for editing the value of that symbol. The TYPE
425 of the first entry where MATCH matches the name of the symbol will be
428 This is used for guessing the type of variables not declared with
430 :type '(repeat (group (regexp :tag "Match") (sexp :tag "Type")))
433 (defcustom custom-guess-doc-alist
434 '(("\\`\\*?Non-nil " boolean))
435 "Alist of (MATCH TYPE).
437 MATCH should be a regexp matching a documentation string, and TYPE
438 should be a widget suitable for editing the value of a variable with
439 that documentation string. The TYPE of the first entry where MATCH
440 matches the name of the symbol will be used.
442 This is used for guessing the type of variables not declared with
444 :type '(repeat (group (regexp :tag "Match") (sexp :tag "Type")))
447 (defun custom-guess-type (symbol)
448 "Guess a widget suitable for editing the value of SYMBOL.
449 This is done by matching SYMBOL with `custom-guess-name-alist' and
450 if that fails, the doc string with `custom-guess-doc-alist'."
451 (let ((name (symbol-name symbol))
452 (names custom-guess-name-alist)
455 (setq current (car names)
457 (when (string-match (nth 0 current) name)
458 (setq found (nth 1 current)
461 (let ((doc (documentation-property symbol 'variable-documentation))
462 (docs custom-guess-doc-alist))
465 (setq current (car docs)
467 (when (string-match (nth 0 current) doc)
468 (setq found (nth 1 current)
475 (defcustom custom-browse-sort-alphabetically nil
476 "If non-nil, sort members of each customization group alphabetically."
478 :group 'custom-browse)
480 (defcustom custom-browse-order-groups nil
481 "If non-nil, order group members within each customization group.
482 If `first', order groups before non-groups.
483 If `last', order groups after non-groups."
484 :type '(choice (const first)
486 (const :tag "none" nil))
487 :group 'custom-browse)
489 (defcustom custom-browse-only-groups nil
490 "If non-nil, show group members only within each customization group."
492 :group 'custom-browse)
494 (defcustom custom-buffer-sort-alphabetically nil
495 "If non-nil, sort members of each customization group alphabetically."
497 :group 'custom-buffer)
499 (defcustom custom-buffer-order-groups 'last
500 "If non-nil, order group members within each customization group.
501 If `first', order groups before non-groups.
502 If `last', order groups after non-groups."
503 :type '(choice (const first)
505 (const :tag "none" nil))
506 :group 'custom-buffer)
508 (defcustom custom-menu-sort-alphabetically nil
509 "If non-nil, sort members of each customization group alphabetically."
513 (defcustom custom-menu-order-groups 'first
514 "If non-nil, order group members within each customization group.
515 If `first', order groups before non-groups.
516 If `last', order groups after non-groups."
517 :type '(choice (const first)
519 (const :tag "none" nil))
522 (defun custom-sort-items (items sort-alphabetically order-groups)
523 "Return a sorted copy of ITEMS.
524 ITEMS should be a `custom-group' property.
525 If SORT-ALPHABETICALLY non-nil, sort alphabetically.
526 If ORDER-GROUPS is `first' order groups before non-groups, if `last' order
527 groups after non-groups, if nil do not order groups at all."
528 (sort (copy-sequence items)
530 (let ((typea (nth 1 a)) (typeb (nth 1 b))
531 (namea (symbol-name (nth 0 a))) (nameb (symbol-name (nth 0 b))))
532 (cond ((not order-groups)
533 ;; Since we don't care about A and B order, maybe sort.
534 (when sort-alphabetically
535 (string-lessp namea nameb)))
536 ((eq typea 'custom-group)
537 ;; If B is also a group, maybe sort. Otherwise, order A and B.
538 (if (eq typeb 'custom-group)
539 (when sort-alphabetically
540 (string-lessp namea nameb))
541 (eq order-groups 'first)))
542 ((eq typeb 'custom-group)
543 ;; Since A cannot be a group, order A and B.
544 (eq order-groups 'last))
546 ;; Since A and B cannot be groups, sort.
547 (string-lessp namea nameb)))))))
550 ;;; Custom Mode Commands.
552 (defvar custom-options nil
553 "Customization widgets in the current buffer.")
556 "Set changes in all modified options."
558 (let ((children custom-options))
559 (mapc (lambda (child)
560 (when (eq (widget-get child :custom-state) 'modified)
561 (widget-apply child :custom-set)))
564 (defun Custom-save ()
565 "Set all modified group members and save them."
567 (let ((children custom-options))
568 (mapc (lambda (child)
569 (when (memq (widget-get child :custom-state) '(modified set))
570 (widget-apply child :custom-save)))
574 (defvar custom-reset-menu
575 '(("Current" . Custom-reset-current)
576 ("Saved" . Custom-reset-saved)
577 ("Standard Settings" . Custom-reset-standard))
578 "Alist of actions for the `Reset' button.
579 The key is a string containing the name of the action, the value is a
580 lisp function taking the widget as an element which will be called
581 when the action is chosen.")
583 (defun custom-reset (event)
584 "Select item from reset menu."
585 (let* ((completion-ignore-case t)
586 (answer (widget-choose "Reset to"
592 (defun Custom-reset-current (&rest ignore)
593 "Reset all modified group members to their current value."
595 (let ((children custom-options))
596 (mapc (lambda (child)
597 (when (eq (widget-get child :custom-state) 'modified)
598 (widget-apply child :custom-reset-current)))
601 (defun Custom-reset-saved (&rest ignore)
602 "Reset all modified or set group members to their saved value."
604 (let ((children custom-options))
605 (mapc (lambda (child)
606 (when (eq (widget-get child :custom-state) 'modified)
607 (widget-apply child :custom-reset-saved)))
610 (defun Custom-reset-standard (&rest ignore)
611 "Reset all modified, set, or saved group members to their standard settings."
613 (let ((children custom-options))
614 (mapc (lambda (child)
615 (when (eq (widget-get child :custom-state) 'modified)
616 (widget-apply child :custom-reset-standard)))
620 ;;; The Customize Commands
622 (defun custom-prompt-variable (prompt-var prompt-val &optional comment)
623 "Prompt for a variable and a value and return them as a list.
624 PROMPT-VAR is the prompt for the variable, and PROMPT-VAL is the
625 prompt for the value. The %s escape in PROMPT-VAL is replaced with
626 the name of the variable.
628 If the variable has a `variable-interactive' property, that is used as if
629 it were the arg to `interactive' (which see) to interactively read the value.
631 If the variable has a `custom-type' property, it must be a widget and the
632 `:prompt-value' property of that widget will be used for reading the value.
634 If optional COMMENT argument is non nil, also prompt for a comment and return
635 it as the third element in the list."
636 (let* ((var (read-variable prompt-var))
637 (minibuffer-help-form '(describe-variable var))
639 (let ((prop (get var 'variable-interactive))
640 (type (get var 'custom-type))
641 (prompt (format prompt-val var)))
643 (setq type (list type)))
645 ;; Use VAR's `variable-interactive' property
646 ;; as an interactive spec for prompting.
647 (call-interactively (list 'lambda '(arg)
648 (list 'interactive prop)
651 (widget-prompt-value type
657 (eval-minibuffer prompt))))))
660 (read-string "Comment: " (get var 'variable-comment)))
665 (defun customize-set-value (var val &optional comment)
666 "Set VARIABLE to VALUE. VALUE is a Lisp object.
668 If VARIABLE has a `variable-interactive' property, that is used as if
669 it were the arg to `interactive' (which see) to interactively read the value.
671 If VARIABLE has a `custom-type' property, it must be a widget and the
672 `:prompt-value' property of that widget will be used for reading the value.
674 If given a prefix (or a COMMENT argument), also prompt for a comment."
675 (interactive (custom-prompt-variable "Set variable: "
680 (cond ((string= comment "")
681 (put var 'variable-comment nil))
683 (put var 'variable-comment comment))))
686 (defun customize-set-variable (variable value &optional comment)
687 "Set the default for VARIABLE to VALUE. VALUE is any Lisp object.
689 If VARIABLE has a `custom-set' property, that is used for setting
690 VARIABLE, otherwise `set-default' is used.
692 The `customized-value' property of the VARIABLE will be set to a list
693 with a quoted VALUE as its sole list member.
695 If VARIABLE has a `variable-interactive' property, that is used as if
696 it were the arg to `interactive' (which see) to interactively read the value.
698 If VARIABLE has a `custom-type' property, it must be a widget and the
699 `:prompt-value' property of that widget will be used for reading the value.
701 If given a prefix (or a COMMENT argument), also prompt for a comment."
702 (interactive (custom-prompt-variable "Set variable: "
703 "Set customized value for %s to: "
705 (funcall (or (get variable 'custom-set) 'set-default) variable value)
706 (put variable 'customized-value (list (custom-quote value)))
707 (cond ((string= comment "")
708 (put variable 'variable-comment nil)
709 (put variable 'customized-variable-comment nil))
711 (put variable 'variable-comment comment)
712 (put variable 'customized-variable-comment comment))))
716 (defun customize-save-variable (variable value &optional comment)
717 "Set the default for VARIABLE to VALUE, and save it for future sessions.
718 If VARIABLE has a `custom-set' property, that is used for setting
719 VARIABLE, otherwise `set-default' is used.
721 The `customized-value' property of the VARIABLE will be set to a list
722 with a quoted VALUE as its sole list member.
724 If VARIABLE has a `variable-interactive' property, that is used as if
725 it were the arg to `interactive' (which see) to interactively read the value.
727 If VARIABLE has a `custom-type' property, it must be a widget and the
728 `:prompt-value' property of that widget will be used for reading the value.
730 If given a prefix (or a COMMENT argument), also prompt for a comment."
731 (interactive (custom-prompt-variable "Set and ave variable: "
732 "Set and save value for %s as: "
734 (funcall (or (get variable 'custom-set) 'set-default) variable value)
735 (put variable 'saved-value (list (custom-quote value)))
736 (custom-push-theme 'theme-value variable 'user 'set (list (custom-quote value)))
737 (cond ((string= comment "")
738 (put variable 'variable-comment nil)
739 (put variable 'saved-variable-comment nil))
741 (put variable 'variable-comment comment)
742 (put variable 'saved-variable-comment comment)))
746 (defun customize (group)
747 "Select a customization buffer which you can use to set user options.
748 User options are structured into \"groups\".
749 The default group is `Emacs'."
750 (interactive (custom-group-prompt
751 "Customize group: (default emacs) "))
752 (when (stringp group)
753 (if (string-equal "" group)
755 (setq group (intern group))))
756 (let ((name (format "*Customize Group: %s*"
757 (custom-unlispify-tag-name group))))
758 (if (get-buffer name)
759 (switch-to-buffer name)
760 (custom-buffer-create (list (list group 'custom-group))
762 (concat " for group "
763 (custom-unlispify-tag-name group))))))
766 (defalias 'customize-group 'customize)
769 (defun customize-other-window (symbol)
770 "Customize SYMBOL, which must be a customization group."
771 (interactive (custom-group-prompt
772 "Customize group: (default emacs) "))
773 (when (stringp symbol)
774 (if (string-equal "" symbol)
776 (setq symbol (intern symbol))))
777 (custom-buffer-create-other-window
778 (list (list symbol 'custom-group))
779 (format "*Customize Group: %s*" (custom-unlispify-tag-name symbol))))
782 (defalias 'customize-group-other-window 'customize-other-window)
785 (defalias 'customize-option 'customize-variable)
788 (defun customize-variable (symbol)
789 "Customize SYMBOL, which must be a user option variable."
790 (interactive (custom-variable-prompt))
791 (custom-buffer-create (list (list symbol 'custom-variable))
792 (format "*Customize Variable: %s*"
793 (custom-unlispify-tag-name symbol))))
796 (defun customize-changed-options (since-version)
797 "Customize all user option variables whose default values changed recently.
798 This means, in other words, variables defined with a `:version' keyword."
799 (interactive "sCustomize options changed, since version (default all versions): ")
800 (if (equal since-version "")
801 (setq since-version nil))
803 (mapatoms (lambda (symbol)
805 (let ((version (get symbol 'custom-version)))
807 (or (null since-version)
808 (customize-version-lessp since-version version))))
809 (push (list symbol 'custom-variable) found))))
811 (error "No user options have changed defaults %s"
813 (format "since XEmacs %s" since-version)
814 "in recent Emacs versions")))
815 (custom-buffer-create (custom-sort-items found t nil)
816 "*Customize Changed Options*")))
818 (defun customize-version-lessp (version1 version2)
819 (let (major1 major2 minor1 minor2)
820 (string-match "\\([0-9]+\\)[.]\\([0-9]+\\)" version1)
821 (setq major1 (read (match-string 1 version1)))
822 (setq minor1 (read (match-string 2 version1)))
823 (string-match "\\([0-9]+\\)[.]\\([0-9]+\\)" version2)
824 (setq major2 (read (match-string 1 version2)))
825 (setq minor2 (read (match-string 2 version2)))
826 (or (< major1 major2)
827 (and (= major1 major2)
828 (< minor1 minor2)))))
831 (defalias 'customize-variable-other-window 'customize-option-other-window)
834 (defun customize-option-other-window (symbol)
835 "Customize SYMBOL, which must be a user option variable.
836 Show the buffer in another window, but don't select it."
837 (interactive (custom-variable-prompt))
838 (custom-buffer-create-other-window
839 (list (list symbol 'custom-variable))
840 (format "*Customize Option: %s*" (custom-unlispify-tag-name symbol))))
843 (defun customize-face (&optional symbol)
844 "Customize SYMBOL, which should be a face name or nil.
845 If SYMBOL is nil, customize all faces."
846 (interactive (list (completing-read "Customize face: (default all) "
847 obarray 'find-face)))
848 (if (or (null symbol) (and (stringp symbol) (zerop (length symbol))))
849 (custom-buffer-create (custom-sort-items
850 (mapcar (lambda (symbol)
851 (list symbol 'custom-face))
855 (when (stringp symbol)
856 (setq symbol (intern symbol)))
857 (check-argument-type 'symbolp symbol)
858 (custom-buffer-create (list (list symbol 'custom-face))
859 (format "*Customize Face: %s*"
860 (custom-unlispify-tag-name symbol)))))
863 (defun customize-face-other-window (&optional symbol)
864 "Show customization buffer for FACE in other window."
865 (interactive (list (completing-read "Customize face: "
866 obarray 'find-face)))
867 (if (or (null symbol) (and (stringp symbol) (zerop (length symbol))))
870 (setq symbol (intern symbol)))
871 (check-argument-type 'symbolp symbol)
872 (custom-buffer-create-other-window
873 (list (list symbol 'custom-face))
874 (format "*Customize Face: %s*" (custom-unlispify-tag-name symbol)))))
877 (defun customize-customized ()
878 "Customize all user options set since the last save in this session."
881 (mapatoms (lambda (symbol)
882 (and (or (get symbol 'customized-face)
883 (get symbol 'customized-face-comment))
885 (push (list symbol 'custom-face) found))
886 (and (or (get symbol 'customized-value)
887 (get symbol 'customized-variable-comment))
889 (push (list symbol 'custom-variable) found))))
891 (error "No customized user options")
892 (custom-buffer-create (custom-sort-items found t nil)
893 "*Customize Customized*"))))
896 (defun customize-saved ()
897 "Customize all already saved user options."
900 (mapatoms (lambda (symbol)
901 (and (or (get symbol 'saved-face)
902 (get symbol 'saved-face-comment))
904 (push (list symbol 'custom-face) found))
905 (and (or (get symbol 'saved-value)
906 (get symbol 'saved-variable-comment))
908 (push (list symbol 'custom-variable) found))))
910 (error "No saved user options")
911 (custom-buffer-create (custom-sort-items found t nil)
912 "*Customize Saved*"))))
915 (defun customize-apropos (regexp &optional all)
916 "Customize all user options matching REGEXP.
917 If ALL is `options', include only options.
918 If ALL is `faces', include only faces.
919 If ALL is `groups', include only groups.
920 If ALL is t (interactively, with prefix arg), include options which are not
921 user-settable, as well as faces and groups."
922 (interactive "sCustomize regexp: \nP")
924 (mapatoms (lambda (symbol)
925 (when (string-match regexp (symbol-name symbol))
926 (when (and (not (memq all '(faces options)))
927 (get symbol 'custom-group))
928 (push (list symbol 'custom-group) found))
929 (when (and (not (memq all '(options groups)))
931 (push (list symbol 'custom-face) found))
932 (when (and (not (memq all '(groups faces)))
934 (or (get symbol 'saved-value)
935 (get symbol 'standard-value)
936 (if (memq all '(nil options))
937 (user-variable-p symbol)
938 (get symbol 'variable-documentation))))
939 (push (list symbol 'custom-variable) found)))))
942 (custom-buffer-create (custom-sort-items found t
943 custom-buffer-order-groups)
944 "*Customize Apropos*"))))
947 (defun customize-apropos-options (regexp &optional arg)
948 "Customize all user options matching REGEXP.
949 With prefix arg, include options which are not user-settable."
950 (interactive "sCustomize regexp: \nP")
951 (customize-apropos regexp (or arg 'options)))
954 (defun customize-apropos-faces (regexp)
955 "Customize all user faces matching REGEXP."
956 (interactive "sCustomize regexp: \n")
957 (customize-apropos regexp 'faces))
960 (defun customize-apropos-groups (regexp)
961 "Customize all user groups matching REGEXP."
962 (interactive "sCustomize regexp: \n")
963 (customize-apropos regexp 'groups))
968 (defcustom custom-buffer-style 'links
969 "*Control the presentation style for customization buffers.
970 The value should be a symbol, one of:
972 brackets: groups nest within each other with big horizontal brackets.
973 links: groups have links to subgroups."
974 :type '(radio (const :tag "brackets: Groups nest within each others" brackets)
975 (const :tag "links: Group have links to subgroups" links))
976 :group 'custom-buffer)
978 (defcustom custom-buffer-done-function 'kill-buffer
979 "*Function to be used to remove the buffer when the user is done with it.
980 Choices include `kill-buffer' (the default) and `bury-buffer'.
981 The function will be called with one argument, the buffer to remove."
982 :type '(radio (function-item kill-buffer)
983 (function-item bury-buffer)
984 (function :tag "Other" nil))
985 :group 'custom-buffer)
987 (defcustom custom-buffer-indent 3
988 "Number of spaces to indent nested groups."
990 :group 'custom-buffer)
993 (defun custom-buffer-create (options &optional name description)
994 "Create a buffer containing OPTIONS.
995 Optional NAME is the name of the buffer.
996 OPTIONS should be an alist of the form ((SYMBOL WIDGET)...), where
997 SYMBOL is a customization option, and WIDGET is a widget for editing
999 (unless name (setq name "*Customization*"))
1000 (kill-buffer (get-buffer-create name))
1001 (switch-to-buffer (get-buffer-create name))
1002 (custom-buffer-create-internal options description))
1005 (defun custom-buffer-create-other-window (options &optional name description)
1006 "Create a buffer containing OPTIONS.
1007 Optional NAME is the name of the buffer.
1008 OPTIONS should be an alist of the form ((SYMBOL WIDGET)...), where
1009 SYMBOL is a customization option, and WIDGET is a widget for editing
1011 (unless name (setq name "*Customization*"))
1012 (kill-buffer (get-buffer-create name))
1013 (let ((window (selected-window)))
1014 (switch-to-buffer-other-window (get-buffer-create name))
1015 (custom-buffer-create-internal options description)
1016 (select-window window)))
1018 (defcustom custom-reset-button-menu t
1019 "If non-nil, only show a single reset button in customize buffers.
1020 This button will have a menu with all three reset operations."
1022 :group 'custom-buffer)
1024 (defconst custom-skip-messages 5)
1026 (defun Custom-buffer-done ()
1027 "Remove current buffer.
1028 This works by calling the function specified by
1029 `custom-buffer-done-function'."
1031 (funcall custom-buffer-done-function (current-buffer)))
1033 (defun custom-buffer-create-buttons ()
1034 (message "Creating customization buttons...")
1035 (widget-insert "\nOperate on everything in this buffer:\n ")
1036 (widget-create 'push-button
1039 Make your editing in this buffer take effect for this session"
1040 :action (lambda (widget &optional event)
1043 (widget-create 'push-button
1046 Make your editing in this buffer take effect for future Emacs sessions"
1047 :action (lambda (widget &optional event)
1049 (if custom-reset-button-menu
1052 (widget-create 'push-button
1054 :tag-glyph '("reset-up" "reset-down")
1055 :help-echo "Show a menu with reset operations"
1056 :mouse-down-action (lambda (&rest junk) t)
1057 :action (lambda (widget &optional event)
1058 (custom-reset event))))
1060 (widget-create 'push-button
1063 Reset all edited text in this buffer to reflect current values"
1064 :action 'Custom-reset-current)
1066 (widget-create 'push-button
1067 :tag "Reset to Saved"
1069 Reset all values in this buffer to their saved settings"
1070 :action 'Custom-reset-saved)
1072 (widget-create 'push-button
1073 :tag "Reset to Standard"
1075 Reset all values in this buffer to their standard settings"
1076 :action 'Custom-reset-standard))
1078 (widget-create 'push-button
1080 :help-echo "Remove the buffer"
1081 :action (lambda (widget &optional event)
1082 (Custom-buffer-done)))
1083 (widget-insert "\n"))
1085 (defcustom custom-novice t
1086 "If non-nil, show help message at top of customize buffers."
1088 :group 'custom-buffer)
1090 (defcustom custom-display-global-buttons 'top
1091 "If `nil' don't display the global buttons. If `top' display at the
1092 beginning of custom buffers. If `bottom', display at the end."
1093 :type '(choice (const top)
1095 (const :tag "don't" nil))
1096 :group 'custom-buffer)
1098 (defun custom-buffer-create-internal (options &optional description)
1099 (message "Creating customization buffer...")
1101 (widget-insert "This is a customization buffer")
1103 (widget-insert description))
1105 (widget-insert ".\n\
1106 Type RET or click button2 on an active field to invoke its action.
1108 (widget-create 'info-link
1110 :help-echo "Read the online help"
1111 "(XEmacs)Easy Customization")
1112 (widget-insert " for more information."))
1113 (widget-insert "\n")
1114 (if (equal custom-display-global-buttons 'top)
1115 (custom-buffer-create-buttons))
1116 (widget-insert "\n")
1117 (message "Creating customization items...")
1118 (setq custom-options
1119 (if (= (length options) 1)
1120 (mapcar (lambda (entry)
1121 (widget-create (nth 1 entry)
1122 :documentation-shown t
1123 :custom-state 'unknown
1124 :tag (custom-unlispify-tag-name
1126 :value (nth 0 entry)))
1129 (length (length options)))
1130 (mapcar (lambda (entry)
1134 (format "Creating customization items %2d%%..."
1135 (/ (* 100.0 count) length)))
1136 (widget-create (nth 1 entry)
1137 :tag (custom-unlispify-tag-name
1139 :value (nth 0 entry))
1141 (unless (eq (preceding-char) ?\n)
1142 (widget-insert "\n"))
1143 (widget-insert "\n")))
1145 (unless (eq (preceding-char) ?\n)
1146 (widget-insert "\n"))
1147 (if (equal custom-display-global-buttons 'bottom)
1148 (custom-buffer-create-buttons))
1149 (display-message 'progress
1151 "Creating customization items %2d%%...done" 100))
1152 (unless (eq custom-buffer-style 'tree)
1153 (mapc 'custom-magic-reset custom-options))
1154 (message "Creating customization setup...")
1156 (goto-char (point-min))
1157 (message "Creating customization buffer...done"))
1160 ;;; The Tree Browser.
1163 (defun customize-browse (&optional group)
1164 "Create a tree browser for the customize hierarchy."
1167 (setq group 'emacs))
1168 (let ((name "*Customize Browser*"))
1169 (kill-buffer (get-buffer-create name))
1170 (switch-to-buffer (get-buffer-create name)))
1173 Square brackets show active fields; type RET or click button2
1174 on an active field to invoke its action.
1175 Invoke [+] below to expand a group, and [-] to collapse an expanded group.\n")
1176 (if custom-browse-only-groups
1178 Invoke the [Group] button below to edit that item in another window.\n\n")
1179 (widget-insert "Invoke the ")
1180 (widget-create 'item
1183 :tag-glyph "folder")
1184 (widget-insert ", ")
1185 (widget-create 'item
1189 (widget-insert ", and ")
1190 (widget-create 'item
1193 :tag-glyph "option")
1194 (widget-insert " buttons below to edit that
1195 item in another window.\n\n"))
1196 (let ((custom-buffer-style 'tree))
1197 (widget-create 'custom-group
1199 :custom-state 'unknown
1200 :tag (custom-unlispify-tag-name group)
1203 (goto-char (point-min)))
1205 (define-widget 'custom-browse-visibility 'item
1206 "Control visibility of of items in the customize tree browser."
1208 :action 'custom-browse-visibility-action)
1210 (defun custom-browse-visibility-action (widget &rest ignore)
1211 (let ((custom-buffer-style 'tree))
1212 (custom-toggle-parent widget)))
1214 (define-widget 'custom-browse-group-tag 'push-button
1215 "Show parent in other window when activated."
1218 :action 'custom-browse-group-tag-action)
1220 (defun custom-browse-group-tag-action (widget &rest ignore)
1221 (let ((parent (widget-get widget :parent)))
1222 (customize-group-other-window (widget-value parent))))
1224 (define-widget 'custom-browse-variable-tag 'push-button
1225 "Show parent in other window when activated."
1228 :action 'custom-browse-variable-tag-action)
1230 (defun custom-browse-variable-tag-action (widget &rest ignore)
1231 (let ((parent (widget-get widget :parent)))
1232 (customize-variable-other-window (widget-value parent))))
1234 (define-widget 'custom-browse-face-tag 'push-button
1235 "Show parent in other window when activated."
1238 :action 'custom-browse-face-tag-action)
1240 (defun custom-browse-face-tag-action (widget &rest ignore)
1241 (let ((parent (widget-get widget :parent)))
1242 (customize-face-other-window (widget-value parent))))
1244 (defconst custom-browse-alist '((" " "space")
1250 (defun custom-browse-insert-prefix (prefix)
1251 "Insert PREFIX. On XEmacs convert it to line graphics."
1253 (if nil ; (string-match "XEmacs" emacs-version)
1256 (while (not (string-equal prefix ""))
1257 (let ((entry (substring prefix 0 3)))
1258 (setq prefix (substring prefix 3))
1259 (let ((overlay (make-overlay (1- (point)) (point) nil t nil))
1260 (name (nth 1 (assoc entry custom-browse-alist))))
1261 (overlay-put overlay 'end-glyph (widget-glyph-find name entry))
1262 (overlay-put overlay 'start-open t)
1263 (overlay-put overlay 'end-open t)))))
1267 ;;; Modification of Basic Widgets.
1269 ;; We add extra properties to the basic widgets needed here. This is
1270 ;; fine, as long as we are careful to stay within out own namespace.
1272 ;; We want simple widgets to be displayed by default, but complex
1273 ;; widgets to be hidden.
1275 (widget-put (get 'item 'widget-type) :custom-show t)
1276 (widget-put (get 'editable-field 'widget-type)
1277 :custom-show (lambda (widget value)
1278 ;; This used to call pp-to-string
1279 (let ((pp (widget-prettyprint-to-string value)))
1280 (cond ((string-match "\n" pp)
1285 (widget-put (get 'menu-choice 'widget-type) :custom-show t)
1287 ;;; The `custom-manual' Widget.
1289 (define-widget 'custom-manual 'info-link
1290 "Link to the manual entry for this customization option."
1293 ;;; The `custom-magic' Widget.
1295 (defgroup custom-magic-faces nil
1296 "Faces used by the magic button."
1297 :group 'custom-faces
1298 :group 'custom-buffer)
1300 (defface custom-invalid-face '((((class color))
1301 (:foreground "yellow" :background "red"))
1303 (:bold t :italic t :underline t)))
1304 "Face used when the customize item is invalid."
1305 :group 'custom-magic-faces)
1307 (defface custom-rogue-face '((((class color))
1308 (:foreground "pink" :background "black"))
1311 "Face used when the customize item is not defined for customization."
1312 :group 'custom-magic-faces)
1314 (defface custom-modified-face '((((class color))
1315 (:foreground "white" :background "blue"))
1318 "Face used when the customize item has been modified."
1319 :group 'custom-magic-faces)
1321 (defface custom-set-face '((((class color))
1322 (:foreground "blue" :background "white"))
1325 "Face used when the customize item has been set."
1326 :group 'custom-magic-faces)
1328 (defface custom-changed-face '((((class color))
1329 (:foreground "white" :background "blue"))
1332 "Face used when the customize item has been changed."
1333 :group 'custom-magic-faces)
1335 (defface custom-saved-face '((t (:underline t)))
1336 "Face used when the customize item has been saved."
1337 :group 'custom-magic-faces)
1339 (defconst custom-magic-alist '((nil "#" underline "\
1340 uninitialized, you should not see this.")
1341 (unknown "?" italic "\
1342 unknown, you should not see this.")
1343 (hidden "-" default "\
1344 hidden, invoke \"Show\" button in the previous line to show." "\
1345 group now hidden, invoke the above \"Show\" button to show contents.")
1346 (invalid "x" custom-invalid-face "\
1347 the value displayed for this %c is invalid and cannot be set.")
1348 (modified "*" custom-modified-face "\
1349 you have edited the value as text, but you have not set the %c." "\
1350 you have edited something in this group, but not set it.")
1351 (set "+" custom-set-face "\
1352 you have set this %c, but not saved it for future sessions." "\
1353 something in this group has been set, but not saved.")
1354 (changed ":" custom-changed-face "\
1355 this %c has been changed outside the customize buffer." "\
1356 something in this group has been changed outside customize.")
1357 (saved "!" custom-saved-face "\
1358 this %c has been set and saved." "\
1359 something in this group has been set and saved.")
1360 (rogue "@" custom-rogue-face "\
1361 this %c has not been changed with customize." "\
1362 something in this group is not prepared for customization.")
1363 (standard " " nil "\
1364 this %c is unchanged from its standard setting." "\
1365 visible group members are all at standard settings."))
1366 "Alist of customize option states.
1367 Each entry is of the form (STATE MAGIC FACE ITEM-DESC [ GROUP-DESC ]), where
1369 STATE is one of the following symbols:
1372 For internal use, should never occur.
1374 For internal use, should never occur.
1376 This item is not being displayed.
1378 This item is modified, but has an invalid form.
1380 This item is modified, and has a valid form.
1382 This item has been set but not saved.
1384 The current value of this item has been changed temporarily.
1386 This item is marked for saving.
1388 This item has no customization information.
1390 This item is unchanged from the standard setting.
1392 MAGIC is a string used to present that state.
1394 FACE is a face used to present the state.
1396 ITEM-DESC is a string describing the state for options.
1398 GROUP-DESC is a string describing the state for groups. If this is
1399 left out, ITEM-DESC will be used.
1401 The string %c in either description will be replaced with the
1402 category of the item. These are `group'. `option', and `face'.
1404 The list should be sorted most significant first.")
1406 (defcustom custom-magic-show 'long
1407 "If non-nil, show textual description of the state.
1408 If `long', show a full-line description, not just one word."
1409 :type '(choice (const :tag "no" nil)
1412 :group 'custom-buffer)
1414 (defcustom custom-magic-show-hidden '(option face)
1415 "Control whether the State button is shown for hidden items.
1416 The value should be a list with the custom categories where the State
1417 button should be visible. Possible categories are `group', `option',
1419 :type '(set (const group) (const option) (const face))
1420 :group 'custom-buffer)
1422 (defcustom custom-magic-show-button nil
1423 "Show a \"magic\" button indicating the state of each customization option."
1425 :group 'custom-buffer)
1427 (define-widget 'custom-magic 'default
1428 "Show and manipulate state for a customization option."
1430 :action 'widget-parent-action
1433 :value-create 'custom-magic-value-create
1434 :value-delete 'widget-children-value-delete)
1436 (defun widget-magic-mouse-down-action (widget &optional event)
1437 ;; Non-nil unless hidden.
1438 (not (eq (widget-get (widget-get (widget-get widget :parent) :parent)
1442 (defun custom-magic-value-create (widget)
1443 ;; Create compact status report for WIDGET.
1444 (let* ((parent (widget-get widget :parent))
1445 (state (widget-get parent :custom-state))
1446 (hidden (eq state 'hidden))
1447 (entry (assq state custom-magic-alist))
1448 (magic (nth 1 entry))
1449 (face (nth 2 entry))
1450 (category (widget-get parent :custom-category))
1451 (text (or (and (eq category 'group)
1454 (form (widget-get parent :custom-form))
1456 (while (string-match "\\`\\(.*\\)%c\\(.*\\)\\'" text)
1457 (setq text (concat (match-string 1 text)
1458 (symbol-name category)
1459 (match-string 2 text))))
1460 (when (and custom-magic-show
1462 (memq category custom-magic-show-hidden)))
1464 (when (and (eq category 'group)
1465 (not (and (eq custom-buffer-style 'links)
1466 (> (widget-get parent :custom-level) 1))))
1467 (insert-char ?\ (* custom-buffer-indent
1468 (widget-get parent :custom-level))))
1469 (push (widget-create-child-and-convert
1471 :help-echo "Change the state of this item"
1472 :format (if hidden "%t" "%[%t%]")
1473 :button-prefix 'widget-push-button-prefix
1474 :button-suffix 'widget-push-button-suffix
1475 :mouse-down-action 'widget-magic-mouse-down-action
1477 ;;:tag-glyph (or hidden '("state-up" "state-down"))
1481 (let ((start (point)))
1482 (if (eq custom-magic-show 'long)
1484 (insert (symbol-name state)))
1485 (cond ((eq form 'lisp)
1487 ((eq form 'mismatch)
1488 (insert " (mismatch)")))
1489 (put-text-property start (point) 'face 'custom-state-face))
1491 (when (and (eq category 'group)
1492 (not (and (eq custom-buffer-style 'links)
1493 (> (widget-get parent :custom-level) 1))))
1494 (insert-char ?\ (* custom-buffer-indent
1495 (widget-get parent :custom-level))))
1496 (when custom-magic-show-button
1497 (when custom-magic-show
1498 (let ((indent (widget-get parent :indent)))
1500 (insert-char ?\ indent))))
1501 (push (widget-create-child-and-convert
1503 :mouse-down-action 'widget-magic-mouse-down-action
1507 :help-echo "Change the state"
1508 :format (if hidden "%t" "%[%t%]")
1509 :tag (if (memq form '(lisp mismatch))
1510 (concat "(" magic ")")
1511 (concat "[" magic "]")))
1514 (widget-put widget :children children)))
1516 (defun custom-magic-reset (widget)
1517 "Redraw the :custom-magic property of WIDGET."
1518 (let ((magic (widget-get widget :custom-magic)))
1519 (widget-value-set magic (widget-value magic))))
1521 ;;; The `custom' Widget.
1523 (defface custom-button-face '((t (:bold t)))
1524 "Face used for buttons in customization buffers."
1525 :group 'custom-faces)
1527 (defface custom-documentation-face nil
1528 "Face used for documentation strings in customization buffers."
1529 :group 'custom-faces)
1531 (defface custom-state-face '((((class color)
1533 (:foreground "lime green"))
1536 (:foreground "dark green"))
1538 "Face used for State descriptions in the customize buffer."
1539 :group 'custom-faces)
1541 (define-widget 'custom 'default
1542 "Customize a user option."
1544 :convert-widget 'custom-convert-widget
1545 :notify 'custom-notify
1548 :custom-state 'hidden
1549 :documentation-property 'widget-subclass-responsibility
1550 :value-create 'widget-subclass-responsibility
1551 :value-delete 'widget-children-value-delete
1552 :value-get 'widget-value-value-get
1553 :validate 'widget-children-validate
1554 :match (lambda (widget value) (symbolp value)))
1556 (defun custom-convert-widget (widget)
1557 ;; Initialize :value and :tag from :args in WIDGET.
1558 (let ((args (widget-get widget :args)))
1560 (widget-put widget :value (widget-apply widget
1561 :value-to-internal (car args)))
1562 (widget-put widget :tag (custom-unlispify-tag-name (car args)))
1563 (widget-put widget :args nil)))
1566 (defun custom-notify (widget &rest args)
1567 "Keep track of changes."
1568 (let ((state (widget-get widget :custom-state)))
1569 (unless (eq state 'modified)
1570 (unless (memq state '(nil unknown hidden))
1571 (widget-put widget :custom-state 'modified))
1572 (custom-magic-reset widget)
1573 (apply 'widget-default-notify widget args))))
1575 (defun custom-redraw (widget)
1576 "Redraw WIDGET with current settings."
1577 (let ((line (count-lines (point-min) (point)))
1578 (column (current-column))
1580 (from (marker-position (widget-get widget :from)))
1581 (to (marker-position (widget-get widget :to))))
1583 (widget-value-set widget (widget-value widget))
1584 (custom-redraw-magic widget))
1585 (when (and (>= pos from) (<= pos to))
1590 (goto-line (1+ line)))
1591 (move-to-column column))
1594 (defun custom-redraw-magic (widget)
1595 "Redraw WIDGET state with current settings."
1597 (let ((magic (widget-get widget :custom-magic)))
1599 (widget-value-set magic (widget-value magic))
1600 (when (setq widget (widget-get widget :group))
1601 (custom-group-state-update widget)))
1603 (setq widget nil)))))
1606 (defun custom-show (widget value)
1607 "Non-nil if WIDGET should be shown with VALUE by default."
1608 (let ((show (widget-get widget :custom-show)))
1614 (funcall show widget value)))))
1616 (defvar custom-load-recursion nil
1617 "Hack to avoid recursive dependencies.")
1619 (defun custom-load-symbol (symbol)
1620 "Load all dependencies for SYMBOL."
1621 (unless custom-load-recursion
1622 (let ((custom-load-recursion t)
1623 (loads (get symbol 'custom-loads))
1626 (setq load (car loads)
1628 (cond ((symbolp load)
1632 ;; Don't reload a file already loaded.
1633 ((and (boundp 'preloaded-file-list)
1634 (member load preloaded-file-list)))
1635 ((assoc load load-history))
1636 ((assoc (locate-library load) load-history))
1639 ;; Without this, we would load cus-edit recursively.
1640 ;; We are still loading it when we call this,
1641 ;; and it is not in load-history yet.
1642 (or (equal load "cus-edit")
1643 (load-library load))
1646 (defun custom-load-widget (widget)
1647 "Load all dependencies for WIDGET."
1648 (custom-load-symbol (widget-value widget)))
1650 (defun custom-unloaded-symbol-p (symbol)
1651 "Return non-nil if the dependencies of SYMBOL has not yet been loaded."
1653 (loads (get symbol 'custom-loads))
1656 (setq load (car loads)
1658 (cond ((symbolp load)
1659 (unless (featurep load)
1661 ((assoc load load-history))
1662 ((assoc (locate-library load) load-history)
1669 (defun custom-unloaded-widget-p (widget)
1670 "Return non-nil if the dependencies of WIDGET has not yet been loaded."
1671 (custom-unloaded-symbol-p (widget-value widget)))
1673 (defun custom-toggle-hide (widget)
1674 "Toggle visibility of WIDGET."
1675 (custom-load-widget widget)
1676 (let ((state (widget-get widget :custom-state)))
1677 (cond ((memq state '(invalid modified))
1678 (error "There are unset changes"))
1680 (widget-put widget :custom-state 'unknown))
1682 (widget-put widget :documentation-shown nil)
1683 (widget-put widget :custom-state 'hidden)))
1684 (custom-redraw widget)
1687 (defun custom-toggle-parent (widget &rest ignore)
1688 "Toggle visibility of parent of WIDGET."
1689 (custom-toggle-hide (widget-get widget :parent)))
1691 (defun custom-add-see-also (widget &optional prefix)
1692 "Add `See also ...' to WIDGET if there are any links.
1693 Insert PREFIX first if non-nil."
1694 (let* ((symbol (widget-get widget :value))
1695 (links (get symbol 'custom-links))
1696 (many (> (length links) 2))
1697 (buttons (widget-get widget :buttons))
1698 (indent (widget-get widget :indent)))
1701 (insert-char ?\ indent))
1704 (insert "See also ")
1706 (push (widget-create-child-and-convert widget (car links))
1708 (setq links (cdr links))
1717 (widget-put widget :buttons buttons))))
1719 (defun custom-add-parent-links (widget &optional initial-string)
1720 "Add \"Parent groups: ...\" to WIDGET if the group has parents.
1721 The value if non-nil if any parents were found.
1722 If INITIAL-STRING is non-nil, use that rather than \"Parent groups:\"."
1723 (let ((name (widget-value widget))
1724 (type (widget-type widget))
1725 (buttons (widget-get widget :buttons))
1728 (insert (or initial-string "Parent groups:"))
1729 (maphash (lambda (group ignore)
1730 (let ((entry (assq name (get group 'custom-group))))
1731 (when (eq (nth 1 entry) type)
1733 (push (widget-create-child-and-convert
1734 widget 'custom-group-link
1735 :tag (custom-unlispify-tag-name group)
1739 custom-group-hash-table)
1740 (widget-put widget :buttons buttons)
1743 (delete-region start (point)))
1746 ;;; The `custom-comment' Widget.
1748 ;; like the editable field
1749 (defface custom-comment-face '((((class grayscale color)
1751 (:background "gray85"))
1752 (((class grayscale color)
1754 (:background "dim gray"))
1757 "Face used for comments on variables or faces"
1758 :group 'custom-faces)
1760 ;; like font-lock-comment-face
1761 (defface custom-comment-tag-face
1762 '((((class color) (background dark)) (:foreground "gray80"))
1763 (((class color) (background light)) (:foreground "blue4"))
1764 (((class grayscale) (background light))
1765 (:foreground "DimGray" :bold t :italic t))
1766 (((class grayscale) (background dark))
1767 (:foreground "LightGray" :bold t :italic t))
1769 "Face used for variables or faces comment tags"
1770 :group 'custom-faces)
1772 (define-widget 'custom-comment 'string
1775 :help-echo "Edit a comment here"
1776 :sample-face 'custom-comment-tag-face
1777 :value-face 'custom-comment-face
1778 :value-set 'custom-comment-value-set
1779 :create 'custom-comment-create
1780 :delete 'custom-comment-delete)
1782 (defun custom-comment-create (widget)
1784 (widget-default-create widget)
1785 (widget-put widget :comment-extent
1786 (setq ext (make-extent (widget-get widget :from)
1787 (widget-get widget :to))))
1788 (set-extent-property ext 'start-open t)
1789 (when (equal (widget-get widget :value) "")
1790 (set-extent-property ext 'invisible t))
1793 (defun custom-comment-delete (widget)
1794 (widget-default-delete widget)
1795 (delete-extent (widget-get widget :comment-extent)))
1797 (defun custom-comment-value-set (widget value)
1798 (widget-default-value-set widget value)
1799 (if (equal value "")
1800 (set-extent-property (widget-get widget :comment-extent)
1802 (set-extent-property (widget-get widget :comment-extent)
1805 ;; Those functions are for the menu. WIDGET is NOT the comment widget. It's
1806 ;; the global custom one
1807 (defun custom-comment-show (widget)
1808 (set-extent-property
1809 (widget-get (widget-get widget :comment-widget) :comment-extent)
1812 (defun custom-comment-invisible-p (widget)
1814 (widget-get (widget-get widget :comment-widget) :comment-extent)
1817 ;;; The `custom-variable' Widget.
1819 (defface custom-variable-tag-face '((((class color)
1821 (:foreground "light blue" :underline t))
1824 (:foreground "blue" :underline t))
1826 "Face used for unpushable variable tags."
1827 :group 'custom-faces)
1829 (defface custom-variable-button-face '((t (:underline t :bold t)))
1830 "Face used for pushable variable tags."
1831 :group 'custom-faces)
1833 (defcustom custom-variable-default-form 'edit
1834 "Default form of displaying variable values."
1835 :type '(choice (const edit)
1837 :group 'custom-buffer)
1839 (define-widget 'custom-variable 'custom
1840 "Customize variable."
1842 :help-echo "Set or reset this variable"
1843 :documentation-property 'variable-documentation
1844 :custom-category 'option
1846 :custom-menu 'custom-variable-menu-create
1847 :custom-form nil ; defaults to value of `custom-variable-default-form'
1848 :value-create 'custom-variable-value-create
1849 :action 'custom-variable-action
1850 :custom-set 'custom-variable-set
1851 :custom-save 'custom-variable-save
1852 :custom-reset-current 'custom-redraw
1853 :custom-reset-saved 'custom-variable-reset-saved
1854 :custom-reset-standard 'custom-variable-reset-standard)
1856 (defun custom-variable-type (symbol)
1857 "Return a widget suitable for editing the value of SYMBOL.
1858 If SYMBOL has a `custom-type' property, use that.
1859 Otherwise, look up symbol in `custom-guess-type-alist'."
1860 (let* ((type (or (get symbol 'custom-type)
1861 (and (not (get symbol 'standard-value))
1862 (custom-guess-type symbol))
1864 (options (get symbol 'custom-options))
1865 (tmp (if (listp type)
1866 (copy-sequence type)
1869 (widget-put tmp :options options))
1872 (defun custom-variable-value-create (widget)
1873 "Here is where you edit the variables value."
1874 (custom-load-widget widget)
1875 (unless (widget-get widget :custom-form)
1876 (widget-put widget :custom-form custom-variable-default-form))
1877 (let* ((buttons (widget-get widget :buttons))
1878 (children (widget-get widget :children))
1879 (form (widget-get widget :custom-form))
1880 (state (widget-get widget :custom-state))
1881 (symbol (widget-get widget :value))
1882 (tag (widget-get widget :tag))
1883 (type (custom-variable-type symbol))
1884 (conv (widget-convert type))
1885 (get (or (get symbol 'custom-get) 'default-value))
1886 (prefix (widget-get widget :custom-prefix))
1887 (last (widget-get widget :custom-last))
1888 (value (if (default-boundp symbol)
1889 (funcall get symbol)
1890 (widget-get conv :value))))
1891 ;; If the widget is new, the child determine whether it is hidden.
1893 ((custom-show type value)
1894 (setq state 'unknown))
1896 (setq state 'hidden)))
1897 ;; If we don't know the state, see if we need to edit it in lisp form.
1898 (when (eq state 'unknown)
1899 (unless (widget-apply conv :match value)
1900 ;; (widget-apply (widget-convert type) :match value)
1901 (setq form 'mismatch)))
1902 ;; Now we can create the child widget.
1903 (cond ((eq custom-buffer-style 'tree)
1904 (insert prefix (if last " `--- " " |--- "))
1905 (push (widget-create-child-and-convert
1906 widget 'custom-browse-variable-tag)
1908 (insert " " tag "\n")
1909 (widget-put widget :buttons buttons))
1911 ;; Indicate hidden value.
1912 (push (widget-create-child-and-convert
1915 :sample-face 'custom-variable-tag-face
1919 (push (widget-create-child-and-convert
1921 :help-echo "Show the value of this option"
1922 :action 'custom-toggle-parent
1925 ((memq form '(lisp mismatch))
1926 ;; In lisp mode edit the saved value when possible.
1927 (let* ((value (cond ((get symbol 'saved-value)
1928 (car (get symbol 'saved-value)))
1929 ((get symbol 'standard-value)
1930 (car (get symbol 'standard-value)))
1931 ((default-boundp symbol)
1932 (custom-quote (funcall get symbol)))
1934 (custom-quote (widget-get conv :value))))))
1935 (insert (symbol-name symbol) ": ")
1936 (push (widget-create-child-and-convert
1938 :help-echo "Hide the value of this option"
1939 :action 'custom-toggle-parent
1943 (push (widget-create-child-and-convert
1945 :button-face 'custom-variable-button-face
1947 :tag (symbol-name symbol)
1953 (let* ((format (widget-get type :format))
1954 tag-format value-format)
1955 (while (not (string-match ":" format))
1956 (setq format (signal 'error (list "Bad format" format))))
1957 (setq tag-format (substring format 0 (match-end 0)))
1958 (setq value-format (substring format (match-end 0)))
1959 (push (widget-create-child-and-convert
1962 :action 'custom-tag-action
1963 :help-echo "Change value of this option"
1964 :mouse-down-action 'custom-tag-mouse-down-action
1965 :button-face 'custom-variable-button-face
1966 :sample-face 'custom-variable-tag-face
1970 (push (widget-create-child-and-convert
1972 :help-echo "Hide the value of this option"
1973 :action 'custom-toggle-parent
1976 (push (widget-create-child-and-convert
1978 :format value-format
1981 (unless (eq custom-buffer-style 'tree)
1982 (unless (eq (preceding-char) ?\n)
1983 (widget-insert "\n"))
1984 ;; Create the magic button.
1985 (let ((magic (widget-create-child-and-convert
1986 widget 'custom-magic nil)))
1987 (widget-put widget :custom-magic magic)
1988 (push magic buttons))
1989 ;; Insert documentation.
1990 ;; #### NOTE: this is ugly!!!! I need to do update the :buttons property
1991 ;; before the call to `widget-default-format-handler'. Otherwise, I
1992 ;; lose my current `buttons'. This function shouldn't be called like
1993 ;; this anyway. The doc string widget should be added like the others.
1995 (widget-put widget :buttons buttons)
1996 (widget-default-format-handler widget ?h)
1997 ;; The comment field
1998 (unless (eq state 'hidden)
1999 (let* ((comment (get symbol 'variable-comment))
2001 (widget-create-child-and-convert
2002 widget 'custom-comment
2004 :value (or comment ""))))
2005 (widget-put widget :comment-widget comment-widget)
2006 ;; Don't push it !!! Custom assumes that the first child is the
2008 (setq children (append children (list comment-widget)))))
2009 ;; Update the rest of the properties properties.
2010 (widget-put widget :custom-form form)
2011 (widget-put widget :children children)
2012 ;; Now update the state.
2013 (if (eq state 'hidden)
2014 (widget-put widget :custom-state state)
2015 (custom-variable-state-set widget))
2017 (unless (eq state 'hidden)
2018 (when (eq (widget-get widget :custom-level) 1)
2019 (custom-add-parent-links widget))
2020 (custom-add-see-also widget)))))
2022 (defun custom-tag-action (widget &rest args)
2023 "Pass :action to first child of WIDGET's parent."
2024 (apply 'widget-apply (car (widget-get (widget-get widget :parent) :children))
2027 (defun custom-tag-mouse-down-action (widget &rest args)
2028 "Pass :mouse-down-action to first child of WIDGET's parent."
2029 (apply 'widget-apply (car (widget-get (widget-get widget :parent) :children))
2030 :mouse-down-action args))
2032 (defun custom-variable-state-set (widget)
2033 "Set the state of WIDGET."
2034 (let* ((symbol (widget-value widget))
2035 (get (or (get symbol 'custom-get) 'default-value))
2036 (value (if (default-boundp symbol)
2037 (funcall get symbol)
2038 (widget-get widget :value)))
2039 (comment (get symbol 'variable-comment))
2042 (state (cond ((progn (setq tmp (get symbol 'customized-value))
2044 (get symbol 'customized-variable-comment))
2046 (if (condition-case nil
2047 (and (equal value (eval (car tmp)))
2048 (equal comment temp))
2052 ((progn (setq tmp (get symbol 'saved-value))
2053 (setq temp (get symbol 'saved-variable-comment))
2055 (if (condition-case nil
2056 (and (equal value (eval (car tmp)))
2057 (equal comment temp))
2061 ((setq tmp (get symbol 'standard-value))
2062 (if (condition-case nil
2063 (and (equal value (eval (car tmp)))
2064 (equal comment nil))
2069 (widget-put widget :custom-state state)))
2071 (defvar custom-variable-menu
2072 '(("Set for Current Session" custom-variable-set
2074 (eq (widget-get widget :custom-state) 'modified)))
2075 ("Save for Future Sessions" custom-variable-save
2077 (memq (widget-get widget :custom-state) '(modified set changed rogue))))
2078 ("Reset to Current" custom-redraw
2080 (and (default-boundp (widget-value widget))
2081 (memq (widget-get widget :custom-state) '(modified changed)))))
2082 ("Reset to Saved" custom-variable-reset-saved
2084 (and (or (get (widget-value widget) 'saved-value)
2085 (get (widget-value widget) 'saved-variable-comment))
2086 (memq (widget-get widget :custom-state)
2087 '(modified set changed rogue)))))
2088 ("Reset to Standard Settings" custom-variable-reset-standard
2090 (and (get (widget-value widget) 'standard-value)
2091 (memq (widget-get widget :custom-state)
2092 '(modified set changed saved rogue)))))
2093 ("---" ignore ignore)
2094 ("Add Comment" custom-comment-show custom-comment-invisible-p)
2095 ("---" ignore ignore)
2096 ("Don't show as Lisp expression" custom-variable-edit
2098 (eq (widget-get widget :custom-form) 'lisp)))
2099 ("Show as Lisp expression" custom-variable-edit-lisp
2101 (eq (widget-get widget :custom-form) 'edit))))
2102 "Alist of actions for the `custom-variable' widget.
2103 Each entry has the form (NAME ACTION FILTER) where NAME is the name of
2104 the menu entry, ACTION is the function to call on the widget when the
2105 menu is selected, and FILTER is a predicate which takes a `custom-variable'
2106 widget as an argument, and returns non-nil if ACTION is valid on that
2107 widget. If FILTER is nil, ACTION is always valid.")
2109 (defun custom-variable-action (widget &optional event)
2110 "Show the menu for `custom-variable' WIDGET.
2111 Optional EVENT is the location for the menu."
2112 (if (eq (widget-get widget :custom-state) 'hidden)
2113 (custom-toggle-hide widget)
2114 (unless (eq (widget-get widget :custom-state) 'modified)
2115 (custom-variable-state-set widget))
2116 ;; Redrawing magic also depresses the state glyph.
2117 ;(custom-redraw-magic widget)
2118 (let* ((completion-ignore-case t)
2119 (answer (widget-choose (concat "Operation on "
2120 (custom-unlispify-tag-name
2121 (widget-get widget :value)))
2122 (custom-menu-filter custom-variable-menu
2126 (funcall answer widget)))))
2128 (defun custom-variable-edit (widget)
2129 "Edit value of WIDGET."
2130 (widget-put widget :custom-state 'unknown)
2131 (widget-put widget :custom-form 'edit)
2132 (custom-redraw widget))
2134 (defun custom-variable-edit-lisp (widget)
2135 "Edit the lisp representation of the value of WIDGET."
2136 (widget-put widget :custom-state 'unknown)
2137 (widget-put widget :custom-form 'lisp)
2138 (custom-redraw widget))
2140 (defun custom-variable-set (widget)
2141 "Set the current value for the variable being edited by WIDGET."
2142 (let* ((form (widget-get widget :custom-form))
2143 (state (widget-get widget :custom-state))
2144 (child (car (widget-get widget :children)))
2145 (symbol (widget-value widget))
2146 (set (or (get symbol 'custom-set) 'set-default))
2147 (comment-widget (widget-get widget :comment-widget))
2148 (comment (widget-value comment-widget))
2150 (cond ((eq state 'hidden)
2151 (error "Cannot set hidden variable"))
2152 ((setq val (widget-apply child :validate))
2153 (goto-char (widget-get val :from))
2154 (error "%s" (widget-get val :error)))
2155 ((memq form '(lisp mismatch))
2156 (when (equal comment "")
2158 ;; Make the comment invisible by hand if it's empty
2159 (set-extent-property (widget-get comment-widget :comment-extent)
2161 (funcall set symbol (eval (setq val (widget-value child))))
2162 (put symbol 'customized-value (list val))
2163 (put symbol 'variable-comment comment)
2164 (put symbol 'customized-variable-comment comment))
2166 (when (equal comment "")
2168 ;; Make the comment invisible by hand if it's empty
2169 (set-extent-property (widget-get comment-widget :comment-extent)
2171 (funcall set symbol (setq val (widget-value child)))
2172 (put symbol 'customized-value (list (custom-quote val)))
2173 (put symbol 'variable-comment comment)
2174 (put symbol 'customized-variable-comment comment)))
2175 (custom-variable-state-set widget)
2176 (custom-redraw-magic widget)))
2178 (defun custom-variable-save (widget)
2179 "Set and save the value for the variable being edited by WIDGET."
2180 (let* ((form (widget-get widget :custom-form))
2181 (state (widget-get widget :custom-state))
2182 (child (car (widget-get widget :children)))
2183 (symbol (widget-value widget))
2184 (set (or (get symbol 'custom-set) 'set-default))
2185 (comment-widget (widget-get widget :comment-widget))
2186 (comment (widget-value comment-widget))
2188 (cond ((eq state 'hidden)
2189 (error "Cannot set hidden variable"))
2190 ((setq val (widget-apply child :validate))
2191 (goto-char (widget-get val :from))
2192 (error "%s" (widget-get val :error)))
2193 ((memq form '(lisp mismatch))
2194 (when (equal comment "")
2196 ;; Make the comment invisible by hand if it's empty
2197 (set-extent-property (widget-get comment-widget :comment-extent)
2199 (put symbol 'saved-value (list (widget-value child)))
2200 (custom-push-theme 'theme-value symbol 'user
2201 'set (list (widget-value child)))
2202 (funcall set symbol (eval (widget-value child)))
2203 (put symbol 'variable-comment comment)
2204 (put symbol 'saved-variable-comment comment))
2206 (when (equal comment "")
2208 ;; Make the comment invisible by hand if it's empty
2209 (set-extent-property (widget-get comment-widget :comment-extent)
2212 'saved-value (list (custom-quote (widget-value
2214 (custom-push-theme 'theme-value symbol 'user
2215 'set (list (custom-quote (widget-value
2217 (funcall set symbol (widget-value child))
2218 (put symbol 'variable-comment comment)
2219 (put symbol 'saved-variable-comment comment)))
2220 (put symbol 'customized-value nil)
2221 (put symbol 'customized-variable-comment nil)
2223 (custom-variable-state-set widget)
2224 (custom-redraw-magic widget)))
2226 (defun custom-variable-reset-saved (widget)
2227 "Restore the saved value for the variable being edited by WIDGET."
2228 (let* ((symbol (widget-value widget))
2229 (set (or (get symbol 'custom-set) 'set-default))
2230 (value (get symbol 'saved-value))
2231 (comment (get symbol 'saved-variable-comment)))
2232 (cond ((or value comment)
2233 (put symbol 'variable-comment comment)
2235 (funcall set symbol (eval (car value)))
2238 (signal 'error (list "No saved value for variable" symbol))))
2239 (put symbol 'customized-value nil)
2240 (put symbol 'customized-variable-comment nil)
2241 (widget-put widget :custom-state 'unknown)
2242 ;; This call will possibly make the comment invisible
2243 (custom-redraw widget)))
2245 (defun custom-variable-reset-standard (widget)
2246 "Restore the standard setting for the variable being edited by WIDGET."
2247 (let* ((symbol (widget-value widget))
2248 (set (or (get symbol 'custom-set) 'set-default)))
2249 (if (get symbol 'standard-value)
2250 (funcall set symbol (eval (car (get symbol 'standard-value))))
2251 (signal 'error (list "No standard setting known for variable" symbol)))
2252 (put symbol 'variable-comment nil)
2253 (put symbol 'customized-value nil)
2254 (put symbol 'customized-variable-comment nil)
2255 (when (or (get symbol 'saved-value) (get symbol 'saved-variable-comment))
2256 (put symbol 'saved-value nil)
2257 (custom-push-theme 'theme-value symbol 'user 'reset 'standard)
2258 ;; As a special optimizations we do not (explictly)
2259 ;; save resets to standard when no theme set the value.
2260 (if (null (cdr (get symbol 'theme-value)))
2261 (put symbol 'theme-value nil))
2262 (put symbol 'saved-variable-comment nil)
2264 (widget-put widget :custom-state 'unknown)
2265 ;; This call will possibly make the comment invisible
2266 (custom-redraw widget)))
2268 ;;; The `custom-face-edit' Widget.
2270 (define-widget 'custom-face-edit 'checklist
2271 "Edit face attributes."
2275 :button-args '(:help-echo "Control whether this attribute has any effect")
2276 :args (mapcar (lambda (att)
2279 :sibling-args (widget-get (nth 1 att) :sibling-args)
2280 (list 'const :format "" :value (nth 0 att))
2282 custom-face-attributes))
2284 ;;; The `custom-display' Widget.
2286 (define-widget 'custom-display 'menu-choice
2287 "Select a display type."
2290 :help-echo "Specify frames where the face attributes should be used"
2291 :args '((const :tag "all" t)
2295 :args ((group :sibling-args (:help-echo "\
2296 Only match the specified window systems")
2297 (const :format "Type: "
2299 (checklist :inline t
2302 :sibling-args (:help-echo "\
2303 The X11 Window System")
2305 (const :format "PM "
2306 :sibling-args (:help-echo "\
2307 OS/2 Presentation Manager")
2309 (const :format "MSWindows "
2310 :sibling-args (:help-echo "\
2311 Microsoft Windows, displays")
2313 (const :format "MSPrinter "
2314 :sibling-args (:help-echo "\
2315 Microsoft Windows, printers")
2317 (const :format "TTY%n"
2318 :sibling-args (:help-echo "\
2319 Plain text terminals")
2321 (group :sibling-args (:help-echo "\
2322 Only match display or printer devices")
2323 (const :format "Output: "
2325 (checklist :inline t
2327 (const :format "Display "
2328 :sibling-args (:help-echo "\
2329 Match display devices")
2331 (const :format "Printer%n"
2332 :sibling-args (:help-echo "\
2333 Match printer devices")
2335 (group :sibling-args (:help-echo "\
2336 Only match the frames with the specified color support")
2337 (const :format "Color support: "
2339 (checklist :inline t
2341 (const :format "Color "
2342 :sibling-args (:help-echo "\
2343 Match color frames")
2345 (const :format "Grayscale "
2346 :sibling-args (:help-echo "\
2347 Match grayscale frames")
2349 (const :format "Monochrome%n"
2350 :sibling-args (:help-echo "\
2351 Match frames with no color support")
2353 (group :sibling-args (:help-echo "\
2354 Only match frames with the specified intensity")
2356 Background brightness: "
2358 (checklist :inline t
2360 (const :format "Light "
2361 :sibling-args (:help-echo "\
2362 Match frames with light backgrounds")
2364 (const :format "Dark\n"
2365 :sibling-args (:help-echo "\
2366 Match frames with dark backgrounds")
2369 ;;; The `custom-face' Widget.
2371 (defface custom-face-tag-face '((t (:underline t)))
2372 "Face used for face tags."
2373 :group 'custom-faces)
2375 (defcustom custom-face-default-form 'selected
2376 "Default form of displaying face definition."
2377 :type '(choice (const all)
2380 :group 'custom-buffer)
2382 (define-widget 'custom-face 'custom
2384 :sample-face 'custom-face-tag-face
2385 :help-echo "Set or reset this face"
2386 :documentation-property '(lambda (face)
2387 (face-doc-string face))
2388 :value-create 'custom-face-value-create
2389 :action 'custom-face-action
2390 :custom-category 'face
2391 :custom-form nil ; defaults to value of `custom-face-default-form'
2392 :custom-set 'custom-face-set
2393 :custom-save 'custom-face-save
2394 :custom-reset-current 'custom-redraw
2395 :custom-reset-saved 'custom-face-reset-saved
2396 :custom-reset-standard 'custom-face-reset-standard
2397 :custom-menu 'custom-face-menu-create)
2399 (define-widget 'custom-face-all 'editable-list
2400 "An editable list of display specifications and attributes."
2401 :entry-format "%i %d %v"
2402 :insert-button-args '(:help-echo "Insert new display specification here")
2403 :append-button-args '(:help-echo "Append new display specification here")
2404 :delete-button-args '(:help-echo "Delete this display specification")
2405 :args '((group :format "%v" custom-display custom-face-edit)))
2407 (defconst custom-face-all (widget-convert 'custom-face-all)
2408 "Converted version of the `custom-face-all' widget.")
2410 (define-widget 'custom-display-unselected 'item
2411 "A display specification that doesn't match the selected display."
2412 :match 'custom-display-unselected-match)
2414 (defun custom-display-unselected-match (widget value)
2415 "Non-nil if VALUE is an unselected display specification."
2416 (not (face-spec-set-match-display value (selected-frame))))
2418 (define-widget 'custom-face-selected 'group
2419 "Edit the attributes of the selected display in a face specification."
2420 :args '((repeat :format ""
2422 (group custom-display-unselected sexp))
2423 (group (sexp :format "") custom-face-edit)
2428 (defconst custom-face-selected (widget-convert 'custom-face-selected)
2429 "Converted version of the `custom-face-selected' widget.")
2431 (defun custom-face-value-create (widget)
2432 "Create a list of the display specifications for WIDGET."
2433 (let ((buttons (widget-get widget :buttons))
2435 (symbol (widget-get widget :value))
2436 (tag (widget-get widget :tag))
2437 (state (widget-get widget :custom-state))
2439 (is-last (widget-get widget :custom-last))
2440 (prefix (widget-get widget :custom-prefix)))
2442 (setq tag (prin1-to-string symbol)))
2443 (cond ((eq custom-buffer-style 'tree)
2444 (insert prefix (if is-last " `--- " " |--- "))
2445 (push (widget-create-child-and-convert
2446 widget 'custom-browse-face-tag)
2448 (insert " " tag "\n")
2449 (widget-put widget :buttons buttons))
2453 (if (eq custom-buffer-style 'face)
2455 (widget-specify-sample widget begin (point))
2458 (and (not (find-face symbol))
2459 ;; XEmacs cannot display uninitialized faces.
2461 (push (widget-create-child-and-convert widget 'item
2468 (push (widget-create-child-and-convert
2470 :help-echo "Hide or show this face"
2471 :action 'custom-toggle-parent
2472 (not (eq state 'hidden)))
2476 (let ((magic (widget-create-child-and-convert
2477 widget 'custom-magic nil)))
2478 (widget-put widget :custom-magic magic)
2479 (push magic buttons))
2481 (widget-put widget :buttons buttons)
2482 ;; Insert documentation.
2483 (widget-default-format-handler widget ?h)
2484 ;; The comment field
2485 (unless (eq state 'hidden)
2486 (let* ((comment (get symbol 'face-comment))
2488 (widget-create-child-and-convert
2489 widget 'custom-comment
2491 :value (or comment ""))))
2492 (widget-put widget :comment-widget comment-widget)
2493 (push comment-widget children)))
2495 (unless (eq state 'hidden)
2496 (when (eq (widget-get widget :custom-level) 1)
2497 (custom-add-parent-links widget))
2498 (custom-add-see-also widget))
2500 (unless (eq (preceding-char) ?\n)
2502 (unless (eq state 'hidden)
2503 (message "Creating face editor...")
2504 (custom-load-widget widget)
2505 (unless (widget-get widget :custom-form)
2506 (widget-put widget :custom-form custom-face-default-form))
2507 (let* ((symbol (widget-value widget))
2508 (spec (custom-face-get-spec symbol))
2509 (form (widget-get widget :custom-form))
2510 (indent (widget-get widget :indent))
2511 (edit (widget-create-child-and-convert
2513 (cond ((and (eq form 'selected)
2514 (widget-apply custom-face-selected
2516 (when indent (insert-char ?\ indent))
2517 'custom-face-selected)
2518 ((and (not (eq form 'lisp))
2519 (widget-apply custom-face-all
2523 (when indent (insert-char ?\ indent))
2526 (custom-face-state-set widget)
2527 (push edit children)
2528 (widget-put widget :children children))
2529 (message "Creating face editor...done"))))))
2531 (defvar custom-face-menu
2532 '(("Set for Current Session" custom-face-set)
2533 ("Save for Future Sessions" custom-face-save)
2534 ("Reset to Saved" custom-face-reset-saved
2536 (or (get (widget-value widget) 'saved-face)
2537 (get (widget-value widget) 'saved-face-comment))))
2538 ("Reset to Standard Setting" custom-face-reset-standard
2540 (get (widget-value widget) 'face-defface-spec)))
2541 ("---" ignore ignore)
2542 ("Add Comment" custom-comment-show custom-comment-invisible-p)
2543 ("---" ignore ignore)
2544 ("Show all display specs" custom-face-edit-all
2546 (not (eq (widget-get widget :custom-form) 'all))))
2547 ("Just current attributes" custom-face-edit-selected
2549 (not (eq (widget-get widget :custom-form) 'selected))))
2550 ("Show as Lisp expression" custom-face-edit-lisp
2552 (not (eq (widget-get widget :custom-form) 'lisp)))))
2553 "Alist of actions for the `custom-face' widget.
2554 Each entry has the form (NAME ACTION FILTER) where NAME is the name of
2555 the menu entry, ACTION is the function to call on the widget when the
2556 menu is selected, and FILTER is a predicate which takes a `custom-face'
2557 widget as an argument, and returns non-nil if ACTION is valid on that
2558 widget. If FILTER is nil, ACTION is always valid.")
2560 (defun custom-face-edit-selected (widget)
2561 "Edit selected attributes of the value of WIDGET."
2562 (widget-put widget :custom-state 'unknown)
2563 (widget-put widget :custom-form 'selected)
2564 (custom-redraw widget))
2566 (defun custom-face-edit-all (widget)
2567 "Edit all attributes of the value of WIDGET."
2568 (widget-put widget :custom-state 'unknown)
2569 (widget-put widget :custom-form 'all)
2570 (custom-redraw widget))
2572 (defun custom-face-edit-lisp (widget)
2573 "Edit the lisp representation of the value of WIDGET."
2574 (widget-put widget :custom-state 'unknown)
2575 (widget-put widget :custom-form 'lisp)
2576 (custom-redraw widget))
2578 (defun custom-face-state-set (widget)
2579 "Set the state of WIDGET."
2580 (let* ((symbol (widget-value widget))
2581 (comment (get symbol 'face-comment))
2583 (widget-put widget :custom-state
2585 (setq tmp (get symbol 'customized-face))
2586 (setq temp (get symbol 'customized-face-comment))
2588 (if (equal temp comment)
2592 (setq tmp (get symbol 'saved-face))
2593 (setq temp (get symbol 'saved-face-comment))
2595 (if (equal temp comment)
2598 ((get symbol 'face-defface-spec)
2599 (if (equal comment nil)
2605 (defun custom-face-action (widget &optional event)
2606 "Show the menu for `custom-face' WIDGET.
2607 Optional EVENT is the location for the menu."
2608 (if (eq (widget-get widget :custom-state) 'hidden)
2609 (custom-toggle-hide widget)
2610 (let* ((completion-ignore-case t)
2611 (symbol (widget-get widget :value))
2612 (answer (widget-choose (concat "Operation on "
2613 (custom-unlispify-tag-name symbol))
2614 (custom-menu-filter custom-face-menu
2618 (funcall answer widget)))))
2620 (defun custom-face-set (widget)
2621 "Make the face attributes in WIDGET take effect."
2622 (let* ((symbol (widget-value widget))
2623 (child (car (widget-get widget :children)))
2624 (value (widget-value child))
2625 (comment-widget (widget-get widget :comment-widget))
2626 (comment (widget-value comment-widget)))
2627 (when (equal comment "")
2629 ;; Make the comment invisible by hand if it's empty
2630 (set-extent-property (widget-get comment-widget :comment-extent)
2632 (put symbol 'customized-face value)
2633 (face-spec-set symbol value nil '(custom))
2634 (put symbol 'customized-face-comment comment)
2635 (put symbol 'face-comment comment)
2636 (custom-face-state-set widget)
2637 (custom-redraw-magic widget)))
2639 (defun custom-face-save (widget)
2640 "Make the face attributes in WIDGET default."
2641 (let* ((symbol (widget-value widget))
2642 (child (car (widget-get widget :children)))
2643 (value (widget-value child))
2644 (comment-widget (widget-get widget :comment-widget))
2645 (comment (widget-value comment-widget)))
2646 (when (equal comment "")
2648 ;; Make the comment invisible by hand if it's empty
2649 (set-extent-property (widget-get comment-widget :comment-extent)
2651 (face-spec-set symbol value nil '(custom))
2652 (put symbol 'saved-face value)
2653 (custom-push-theme 'theme-face symbol 'user 'set value)
2654 (put symbol 'customized-face nil)
2655 (put symbol 'face-comment comment)
2656 (put symbol 'customized-face-comment nil)
2657 (put symbol 'saved-face-comment comment)
2659 (custom-face-state-set widget)
2660 (custom-redraw-magic widget)))
2662 (defun custom-face-reset-saved (widget)
2663 "Restore WIDGET to the face's default attributes."
2664 (let* ((symbol (widget-value widget))
2665 (child (car (widget-get widget :children)))
2666 (value (get symbol 'saved-face))
2667 (comment (get symbol 'saved-face-comment))
2668 (comment-widget (widget-get widget :comment-widget)))
2669 (unless (or value comment)
2670 (signal 'error (list "No saved value for this face" symbol)))
2671 (put symbol 'customized-face nil)
2672 (put symbol 'customized-face-comment nil)
2673 (face-spec-set symbol value nil '(custom))
2674 (put symbol 'face-comment comment)
2675 (widget-value-set child value)
2676 ;; This call manages the comment visibility
2677 (widget-value-set comment-widget (or comment ""))
2678 (custom-face-state-set widget)
2679 (custom-redraw-magic widget)))
2681 (defun custom-face-reset-standard (widget)
2682 "Restore WIDGET to the face's standard settings."
2683 (let* ((symbol (widget-value widget))
2684 (child (car (widget-get widget :children)))
2685 (value (get symbol 'face-defface-spec))
2686 (comment-widget (widget-get widget :comment-widget)))
2688 (signal 'error (list "No standard setting for this face" symbol)))
2689 (put symbol 'customized-face nil)
2690 (put symbol 'customized-face-comment nil)
2691 (when (or (get symbol 'saved-face) (get symbol 'saved-face-comment))
2692 (put symbol 'saved-face nil)
2693 (custom-push-theme 'theme-face symbol 'user 'reset 'standard)
2694 ;; Do not explictly save resets to standards without themes.
2695 (if (null (cdr (get symbol 'theme-face)))
2696 (put symbol 'theme-face nil))
2697 (put symbol 'saved-face-comment nil)
2699 (face-spec-set symbol value nil '(custom))
2700 (put symbol 'face-comment nil)
2701 (widget-value-set child value)
2702 ;; This call manages the comment visibility
2703 (widget-value-set comment-widget "")
2704 (custom-face-state-set widget)
2705 (custom-redraw-magic widget)))
2707 ;;; The `face' Widget.
2709 (define-widget 'face 'default
2710 "Select and customize a face."
2711 :convert-widget 'widget-value-convert-widget
2712 :button-prefix 'widget-push-button-prefix
2713 :button-suffix 'widget-push-button-suffix
2714 :format "%t: %[select face%] %v"
2717 :value-create 'widget-face-value-create
2718 :value-delete 'widget-face-value-delete
2719 :value-get 'widget-value-value-get
2720 :validate 'widget-children-validate
2721 :action 'widget-face-action
2722 :match (lambda (widget value) (symbolp value)))
2724 (defun widget-face-value-create (widget)
2725 ;; Create a `custom-face' child.
2726 (let* ((symbol (widget-value widget))
2727 (custom-buffer-style 'face)
2728 (child (widget-create-child-and-convert
2732 (custom-magic-reset child)
2733 (setq custom-options (cons child custom-options))
2734 (widget-put widget :children (list child))))
2736 (defun widget-face-value-delete (widget)
2737 ;; Remove the child from the options.
2738 (let ((child (car (widget-get widget :children))))
2739 (setq custom-options (delq child custom-options))
2740 (widget-children-value-delete widget)))
2742 (defvar face-history nil
2743 "History of entered face names.")
2745 (defun widget-face-action (widget &optional event)
2746 "Prompt for a face."
2747 (let ((answer (completing-read "Face: "
2748 (mapcar (lambda (face)
2749 (list (symbol-name face)))
2753 (unless (zerop (length answer))
2754 (widget-value-set widget (intern answer))
2755 (widget-apply widget :notify widget event)
2758 ;;; The `hook' Widget.
2760 (define-widget 'hook 'list
2762 :value-to-internal (lambda (widget value)
2766 :match (lambda (widget value)
2768 (widget-group-match widget value)))
2769 :convert-widget 'custom-hook-convert-widget
2772 (defun custom-hook-convert-widget (widget)
2773 ;; Handle `:options'.
2774 (let* ((options (widget-get widget :options))
2775 (other `(editable-list :inline t
2776 :entry-format "%i %d%v"
2777 (function :format " %v")))
2779 (list `(checklist :inline t
2780 ,@(mapcar (lambda (entry)
2781 `(function-item ,entry))
2785 (widget-put widget :args args)
2788 ;;; The `plist' Widget.
2790 (define-widget 'plist 'list
2792 :match (lambda (widget value)
2793 (valid-plist-p value))
2794 :convert-widget 'custom-plist-convert-widget
2795 :tag "Property List")
2797 ;; #### Should handle options better.
2798 (defun custom-plist-convert-widget (widget)
2799 (let* ((options (widget-get widget :options))
2800 (other `(editable-list :inline t
2802 (symbol :format "%t: %v "
2805 (sexp :tag "Value"))))
2808 `((checklist :inline t
2809 ,@(mapcar 'custom-plist-process-option options))
2812 (widget-put widget :args args)
2815 (defun custom-plist-process-option (entry)
2817 (const :tag "Property"
2821 (sexp :tag "Value")))
2823 ;;; The `custom-group-link' Widget.
2825 (define-widget 'custom-group-link 'link
2826 "Show parent in other window when activated."
2827 :help-echo 'custom-group-link-help-echo
2828 :action 'custom-group-link-action)
2830 (defun custom-group-link-help-echo (widget)
2831 (concat "Create customization buffer for the `"
2832 (custom-unlispify-tag-name (widget-value widget))
2835 (defun custom-group-link-action (widget &rest ignore)
2836 (customize-group (widget-value widget)))
2838 ;;; The `custom-group' Widget.
2840 (defcustom custom-group-tag-faces nil
2841 ;; In XEmacs, this ought to play games with font size.
2842 "Face used for group tags.
2843 The first member is used for level 1 groups, the second for level 2,
2844 and so forth. The remaining group tags are shown with
2845 `custom-group-tag-face'."
2846 :type '(repeat face)
2847 :group 'custom-faces)
2849 (defface custom-group-tag-face-1 '((((class color)
2851 (:foreground "pink" :underline t))
2854 (:foreground "red" :underline t))
2856 "Face used for group tags.")
2858 (defface custom-group-tag-face '((((class color)
2860 (:foreground "light blue" :underline t))
2863 (:foreground "blue" :underline t))
2865 "Face used for low level group tags."
2866 :group 'custom-faces)
2868 (define-widget 'custom-group 'custom
2871 :sample-face-get 'custom-group-sample-face-get
2872 :documentation-property 'group-documentation
2873 :help-echo "Set or reset all members of this group"
2874 :value-create 'custom-group-value-create
2875 :action 'custom-group-action
2876 :custom-category 'group
2877 :custom-set 'custom-group-set
2878 :custom-save 'custom-group-save
2879 :custom-reset-current 'custom-group-reset-current
2880 :custom-reset-saved 'custom-group-reset-saved
2881 :custom-reset-standard 'custom-group-reset-standard
2882 :custom-menu 'custom-group-menu-create)
2884 (defun custom-group-sample-face-get (widget)
2885 ;; Use :sample-face.
2886 (or (nth (1- (widget-get widget :custom-level)) custom-group-tag-faces)
2887 'custom-group-tag-face))
2889 (define-widget 'custom-group-visibility 'visibility
2890 "An indicator and manipulator for hidden group contents."
2891 :create 'custom-group-visibility-create)
2893 (defun custom-group-visibility-create (widget)
2894 (let ((visible (widget-value widget)))
2896 (insert "--------")))
2897 (widget-default-create widget))
2899 (defun custom-group-members (symbol groups-only)
2900 "Return SYMBOL's custom group members.
2901 If GROUPS-ONLY non-nil, return only those members that are groups."
2902 (if (not groups-only)
2903 (get symbol 'custom-group)
2905 (dolist (entry (get symbol 'custom-group) (nreverse members))
2906 (when (eq (nth 1 entry) 'custom-group)
2907 (push entry members))))))
2909 (defun custom-group-value-create (widget)
2910 "Insert a customize group for WIDGET in the current buffer."
2911 (let* ((state (widget-get widget :custom-state))
2912 (level (widget-get widget :custom-level))
2913 ;; (indent (widget-get widget :indent))
2914 (prefix (widget-get widget :custom-prefix))
2915 (buttons (widget-get widget :buttons))
2916 (tag (widget-get widget :tag))
2917 (symbol (widget-value widget))
2918 (members (custom-group-members symbol
2919 (and (eq custom-buffer-style 'tree)
2920 custom-browse-only-groups))))
2921 (cond ((and (eq custom-buffer-style 'tree)
2923 (or members (custom-unloaded-widget-p widget)))
2924 (custom-browse-insert-prefix prefix)
2925 (push (widget-create-child-and-convert
2926 widget 'custom-browse-visibility
2927 ;; :tag-glyph "plus"
2931 ;; (widget-glyph-insert nil "-- " "horizontal")
2932 (push (widget-create-child-and-convert
2933 widget 'custom-browse-group-tag)
2935 (insert " " tag "\n")
2936 (widget-put widget :buttons buttons))
2937 ((and (eq custom-buffer-style 'tree)
2938 (zerop (length members)))
2939 (custom-browse-insert-prefix prefix)
2941 ;; (widget-glyph-insert nil "[ ]" "empty")
2942 ;; (widget-glyph-insert nil "-- " "horizontal")
2943 (push (widget-create-child-and-convert
2944 widget 'custom-browse-group-tag)
2946 (insert " " tag "\n")
2947 (widget-put widget :buttons buttons))
2948 ((eq custom-buffer-style 'tree)
2949 (custom-browse-insert-prefix prefix)
2950 (custom-load-widget widget)
2951 (if (zerop (length members))
2953 (custom-browse-insert-prefix prefix)
2955 ;; (widget-glyph-insert nil "[ ]" "empty")
2956 ;; (widget-glyph-insert nil "-- " "horizontal")
2957 (push (widget-create-child-and-convert
2958 widget 'custom-browse-group-tag)
2960 (insert " " tag "\n")
2961 (widget-put widget :buttons buttons))
2962 (push (widget-create-child-and-convert
2963 widget 'custom-browse-visibility
2964 ;; :tag-glyph "minus"
2968 ;; (widget-glyph-insert nil "-\\ " "top")
2969 (push (widget-create-child-and-convert
2970 widget 'custom-browse-group-tag)
2972 (insert " " tag "\n")
2973 (widget-put widget :buttons buttons)
2974 (message "Creating group...")
2975 (let* ((members (custom-sort-items members
2976 custom-browse-sort-alphabetically
2977 custom-browse-order-groups))
2978 (prefixes (widget-get widget :custom-prefixes))
2979 (custom-prefix-list (custom-prefix-add symbol prefixes))
2980 (extra-prefix (if (widget-get widget :custom-last)
2983 (prefix (concat prefix extra-prefix))
2986 (setq entry (car members)
2987 members (cdr members))
2988 (push (widget-create-child-and-convert
2989 widget (nth 1 entry)
2991 :tag (custom-unlispify-tag-name (nth 0 entry))
2992 :custom-prefixes custom-prefix-list
2993 :custom-level (1+ level)
2994 :custom-last (null members)
2995 :value (nth 0 entry)
2996 :custom-prefix prefix)
2998 (widget-put widget :children (reverse children)))
2999 (message "Creating group...done")))
3002 ;; Create level indicator.
3003 (unless (eq custom-buffer-style 'links)
3004 (insert-char ?\ (* custom-buffer-indent (1- level)))
3006 ;; Create link indicator.
3007 (when (eq custom-buffer-style 'links)
3009 (push (widget-create-child-and-convert
3010 widget 'custom-group-link
3012 :tag-glyph '("open-up" "open-down")
3017 (let ((begin (point)))
3019 (widget-specify-sample widget begin (point)))
3021 ;; Create visibility indicator.
3022 (unless (eq custom-buffer-style 'links)
3024 (push (widget-create-child-and-convert
3025 widget 'custom-group-visibility
3026 :help-echo "Show members of this group"
3027 :action 'custom-toggle-parent
3028 (not (eq state 'hidden)))
3031 ;; Create magic button.
3032 (let ((magic (widget-create-child-and-convert
3033 widget 'custom-magic nil)))
3034 (widget-put widget :custom-magic magic)
3035 (push magic buttons))
3037 (widget-put widget :buttons buttons)
3038 ;; Insert documentation.
3039 (if (and (eq custom-buffer-style 'links) (> level 1))
3040 (widget-put widget :documentation-indent 0))
3041 (widget-default-format-handler widget ?h))
3044 (custom-load-widget widget)
3046 (setq members (custom-group-members
3047 symbol (and (eq custom-buffer-style 'tree)
3048 custom-browse-only-groups)))
3049 ;; Add parent groups references above the group.
3050 (if t ;;; This should test that the buffer
3051 ;;; was made to display a group.
3053 (if (custom-add-parent-links widget
3054 "Go to parent group:")
3056 ;; Create level indicator.
3057 (insert-char ?\ (* custom-buffer-indent (1- level)))
3060 (let ((start (point)))
3062 (widget-specify-sample widget start (point)))
3064 ;; Create visibility indicator.
3065 (unless (eq custom-buffer-style 'links)
3067 (push (widget-create-child-and-convert
3069 :help-echo "Hide members of this group"
3070 :action 'custom-toggle-parent
3071 (not (eq state 'hidden)))
3074 ;; Create more dashes.
3075 ;; Use 76 instead of 75 to compensate for the temporary "<"
3076 ;; added by `widget-insert'.
3077 (insert-char ?- (- 76 (current-column)
3078 (* custom-buffer-indent level)))
3080 ;; Create magic button.
3081 (let ((magic (widget-create-child-and-convert
3082 widget 'custom-magic
3085 (widget-put widget :custom-magic magic)
3086 (push magic buttons))
3088 (widget-put widget :buttons buttons)
3089 ;; Insert documentation.
3090 (widget-default-format-handler widget ?h)
3092 (if nil ;;; This should test that the buffer
3093 ;;; was not made to display a group.
3095 (insert-char ?\ custom-buffer-indent)
3096 (custom-add-parent-links widget)))
3097 (custom-add-see-also widget
3098 (make-string (* custom-buffer-indent level)
3101 (message "Creating group...")
3102 (let* ((members (custom-sort-items members
3103 custom-buffer-sort-alphabetically
3104 custom-buffer-order-groups))
3105 (prefixes (widget-get widget :custom-prefixes))
3106 (custom-prefix-list (custom-prefix-add symbol prefixes))
3107 (length (length members))
3111 (widget-insert "\n")
3112 (when (zerop (% count custom-skip-messages))
3116 Creating group members... %2d%%"
3117 (/ (* 100.0 count) length))))
3120 (widget-create-child-and-convert
3121 widget (nth 1 entry)
3123 :tag (custom-unlispify-tag-name
3125 :custom-prefixes custom-prefix-list
3126 :custom-level (1+ level)
3127 :value (nth 0 entry))
3128 (unless (eq (preceding-char) ?\n)
3129 (widget-insert "\n"))))
3131 (message "Creating group magic...")
3132 (mapc 'custom-magic-reset children)
3133 (message "Creating group state...")
3134 (widget-put widget :children children)
3135 (custom-group-state-update widget)
3136 (message "Creating group... done"))
3139 (insert-char ?\ (* custom-buffer-indent (1- level)))
3140 (insert "\\- " (widget-get widget :tag) " group end ")
3141 (insert-char ?- (- 75 (current-column) (* custom-buffer-indent level)))
3144 (defvar custom-group-menu
3145 '(("Set for Current Session" custom-group-set
3147 (eq (widget-get widget :custom-state) 'modified)))
3148 ("Save for Future Sessions" custom-group-save
3150 (memq (widget-get widget :custom-state) '(modified set))))
3151 ("Reset to Current" custom-group-reset-current
3153 (memq (widget-get widget :custom-state) '(modified))))
3154 ("Reset to Saved" custom-group-reset-saved
3156 (memq (widget-get widget :custom-state) '(modified set))))
3157 ("Reset to standard setting" custom-group-reset-standard
3159 (memq (widget-get widget :custom-state) '(modified set saved)))))
3160 "Alist of actions for the `custom-group' widget.
3161 Each entry has the form (NAME ACTION FILTER) where NAME is the name of
3162 the menu entry, ACTION is the function to call on the widget when the
3163 menu is selected, and FILTER is a predicate which takes a `custom-group'
3164 widget as an argument, and returns non-nil if ACTION is valid on that
3165 widget. If FILTER is nil, ACTION is always valid.")
3167 (defun custom-group-action (widget &optional event)
3168 "Show the menu for `custom-group' WIDGET.
3169 Optional EVENT is the location for the menu."
3170 (if (eq (widget-get widget :custom-state) 'hidden)
3171 (custom-toggle-hide widget)
3172 (let* ((completion-ignore-case t)
3173 (answer (widget-choose (concat "Operation on "
3174 (custom-unlispify-tag-name
3175 (widget-get widget :value)))
3176 (custom-menu-filter custom-group-menu
3180 (funcall answer widget)))))
3182 (defun custom-group-set (widget)
3183 "Set changes in all modified group members."
3184 (let ((children (widget-get widget :children)))
3185 (mapc (lambda (child)
3186 (when (eq (widget-get child :custom-state) 'modified)
3187 (widget-apply child :custom-set)))
3190 (defun custom-group-save (widget)
3191 "Save all modified group members."
3192 (let ((children (widget-get widget :children)))
3193 (mapc (lambda (child)
3194 (when (memq (widget-get child :custom-state) '(modified set))
3195 (widget-apply child :custom-save)))
3198 (defun custom-group-reset-current (widget)
3199 "Reset all modified group members."
3200 (let ((children (widget-get widget :children)))
3201 (mapc (lambda (child)
3202 (when (eq (widget-get child :custom-state) 'modified)
3203 (widget-apply child :custom-reset-current)))
3206 (defun custom-group-reset-saved (widget)
3207 "Reset all modified or set group members."
3208 (let ((children (widget-get widget :children)))
3209 (mapc (lambda (child)
3210 (when (memq (widget-get child :custom-state) '(modified set))
3211 (widget-apply child :custom-reset-saved)))
3214 (defun custom-group-reset-standard (widget)
3215 "Reset all modified, set, or saved group members."
3216 (let ((children (widget-get widget :children)))
3217 (mapc (lambda (child)
3218 (when (memq (widget-get child :custom-state)
3219 '(modified set saved))
3220 (widget-apply child :custom-reset-standard)))
3223 (defun custom-group-state-update (widget)
3225 (unless (eq (widget-get widget :custom-state) 'hidden)
3226 (let* ((children (widget-get widget :children))
3227 (states (mapcar (lambda (child)
3228 (widget-get child :custom-state))
3230 (magics custom-magic-alist)
3233 (let ((magic (car (car magics))))
3234 (if (and (not (eq magic 'hidden))
3235 (memq magic states))
3238 (setq magics (cdr magics)))))
3239 (widget-put widget :custom-state found)))
3240 (custom-magic-reset widget))
3242 (defun custom-save-delete (symbol)
3243 "Delete the call to SYMBOL form in `custom-file'.
3244 Leave point at the location of the call, or after the last expression."
3245 (let ((find-file-hooks nil)
3246 (auto-mode-alist nil))
3247 (set-buffer (find-file-noselect custom-file)))
3248 (goto-char (point-min))
3251 (let ((sexp (condition-case nil
3252 (read (current-buffer))
3253 (end-of-file (throw 'found nil)))))
3254 (when (and (listp sexp)
3255 (eq (car sexp) symbol))
3256 (delete-region (save-excursion
3260 (throw 'found nil))))))
3262 (defun custom-save-variables ()
3263 "Save all customized variables in `custom-file'."
3265 (custom-save-delete 'custom-load-themes)
3266 (custom-save-delete 'custom-reset-variables)
3267 (custom-save-delete 'custom-set-variables)
3268 (custom-save-loaded-themes)
3269 (custom-save-resets 'theme-value 'custom-reset-variables nil)
3270 (let ((standard-output (current-buffer)))
3273 (princ "(custom-set-variables")
3274 (mapatoms (lambda (symbol)
3275 (let ((spec (car-safe (get symbol 'theme-value)))
3276 (requests (get symbol 'custom-requests))
3277 (now (not (or (get symbol 'standard-value)
3278 (and (not (boundp symbol))
3279 (not (eq (get symbol 'force-value)
3281 (comment (get symbol 'saved-variable-comment)))
3282 (when (or (and spec (eq (car spec) 'user)
3283 (eq (second spec) 'set)) comment)
3287 ;; This comment stuff is in the way ####
3288 ;; Is (eq (third spec) (car saved-value)) ????
3289 ;; (prin1 (third spec))
3290 (prin1 (car (get symbol 'saved-value)))
3291 (when (or now requests comment)
3292 (princ (if now " t" " nil")))
3293 (when (or comment requests)
3301 (unless (looking-at "\n")
3304 (defvar custom-save-face-ignoring nil)
3306 (defun custom-save-face-internal (symbol)
3307 (let ((theme-spec (car-safe (get symbol 'theme-face)))
3308 (comment (get symbol 'saved-face-comment))
3309 (now (not (or (get symbol 'face-defface-spec)
3310 (and (not (find-face symbol))
3311 (not (eq (get symbol 'force-face) 'rogue)))))))
3312 (when (or (and (not (memq symbol custom-save-face-ignoring))
3313 ;; Don't print default face here.
3315 (eq (car theme-spec) 'user)
3316 (eq (second theme-spec) 'set)) comment)
3320 (prin1 (get symbol 'saved-face))
3321 (if (or comment now)
3322 (princ (if now " t" " nil")))
3328 (defun custom-save-faces ()
3329 "Save all customized faces in `custom-file'."
3331 (custom-save-delete 'custom-reset-faces)
3332 (custom-save-delete 'custom-set-faces)
3333 (custom-save-resets 'theme-face 'custom-reset-faces '(default))
3334 (let ((standard-output (current-buffer)))
3337 (princ "(custom-set-faces")
3338 ;; The default face must be first, since it affects the others.
3339 (custom-save-face-internal 'default)
3340 (let ((custom-save-face-ignoring '(default)))
3341 (mapatoms #'custom-save-face-internal))
3343 (unless (looking-at "\n")
3346 (defun custom-save-resets (property setter special)
3347 (let (started-writing ignored-special)
3348 (setq ignored-special ignored-special) ;; suppress byte-compiler warning
3349 ;; (custom-save-delete setter) Done by caller
3350 (let ((standard-output (current-buffer))
3351 (mapper `(lambda (object)
3352 (let ((spec (car-safe (get object (quote ,property)))))
3353 (when (and (not (memq object ignored-special))
3354 (eq (car spec) 'user)
3355 (eq (second spec) 'reset))
3356 ;; Do not write reset statements unless necessary.
3357 (unless started-writing
3358 (setq started-writing t)
3362 (princ (quote ,setter))
3366 (prin1 (third spec))
3368 (mapc mapper special)
3369 (setq ignored-special special)
3371 (when started-writing
3376 (defun custom-save-loaded-themes ()
3377 (let ((themes (reverse (get 'user 'theme-loads-themes)))
3378 (standard-output (current-buffer)))
3380 (unless (bolp) (princ "\n"))
3381 (princ "(custom-load-themes")
3382 (mapc (lambda (theme)
3384 (prin1 theme)) themes)
3388 (defun customize-save-customized ()
3389 "Save all user options which have been set in this session."
3391 (mapatoms (lambda (symbol)
3392 (let ((face (get symbol 'customized-face))
3393 (value (get symbol 'customized-value))
3394 (face-comment (get symbol 'customized-face-comment))
3396 (get symbol 'customized-variable-comment)))
3398 (put symbol 'saved-face face)
3399 (custom-push-theme 'theme-face symbol 'user 'set value)
3400 (put symbol 'customized-face nil))
3402 (put symbol 'saved-value value)
3403 (custom-push-theme 'theme-value symbol 'user 'set value)
3404 (put symbol 'customized-value nil))
3405 (when variable-comment
3406 (put symbol 'saved-variable-comment variable-comment)
3407 (put symbol 'customized-variable-comment nil))
3409 (put symbol 'saved-face-comment face-comment)
3410 (put symbol 'customized-face-comment nil)))))
3411 ;; We really should update all custom buffers here.
3415 (defun custom-save-all ()
3416 "Save all customizations in `custom-file'."
3417 (let ((inhibit-read-only t))
3418 (custom-save-variables)
3420 (let ((find-file-hooks nil)
3422 (with-current-buffer (find-file-noselect custom-file)
3426 ;;; The Customize Menu.
3430 (defun custom-face-menu-create (widget symbol)
3431 "Ignoring WIDGET, create a menu entry for customization face SYMBOL."
3432 (vector (custom-unlispify-menu-entry symbol)
3433 `(customize-face ',symbol)
3436 (defun custom-variable-menu-create (widget symbol)
3437 "Ignoring WIDGET, create a menu entry for customization variable SYMBOL."
3438 (let ((type (get symbol 'custom-type)))
3439 (unless (listp type)
3440 (setq type (list type)))
3441 (if (and type (widget-get type :custom-menu))
3442 (widget-apply type :custom-menu symbol)
3443 (vector (custom-unlispify-menu-entry symbol)
3444 `(customize-variable ',symbol)
3447 ;; Add checkboxes to boolean variable entries.
3448 (widget-put (get 'boolean 'widget-type)
3449 :custom-menu (lambda (widget symbol)
3450 `[,(custom-unlispify-menu-entry symbol)
3451 (customize-variable ',symbol)
3453 :selected ,symbol]))
3455 ;; XEmacs can create menus dynamically.
3456 (defun custom-group-menu-create (widget symbol)
3457 "Ignoring WIDGET, create a menu entry for customization group SYMBOL."
3458 `( ,(custom-unlispify-menu-entry symbol t)
3459 :filter (lambda (&rest junk)
3460 (let ((item (custom-menu-create ',symbol)))
3466 (defun custom-menu-create (symbol)
3467 "Create menu for customization group SYMBOL.
3468 The menu is in a format applicable to `easy-menu-define'."
3469 (let* ((item (vector (custom-unlispify-menu-entry symbol)
3470 `(customize-group ',symbol)
3472 ;; Item is the entry for creating a menu buffer for SYMBOL.
3473 ;; We may nest, if the menu is not too big.
3474 (custom-load-symbol symbol)
3475 (if (< (length (get symbol 'custom-group)) widget-menu-max-size)
3476 ;; The menu is not too big.
3477 (let ((custom-prefix-list (custom-prefix-add symbol
3478 custom-prefix-list))
3479 (members (custom-sort-items (get symbol 'custom-group)
3480 custom-menu-sort-alphabetically
3481 custom-menu-order-groups)))
3483 `(,(custom-unlispify-menu-entry symbol t)
3486 ,@(mapcar (lambda (entry)
3487 (widget-apply (if (listp (nth 1 entry))
3489 (list (nth 1 entry)))
3490 :custom-menu (nth 0 entry)))
3492 ;; The menu was too big.
3496 (defun customize-menu-create (symbol &optional name)
3497 "Return a customize menu for customization group SYMBOL.
3498 If optional NAME is given, use that as the name of the menu.
3499 Otherwise the menu will be named `Customize'.
3500 The format is suitable for use with `easy-menu-define'."
3502 (setq name "Customize"))
3504 :filter (lambda (&rest junk)
3505 (cdr (custom-menu-create ',symbol)))))
3507 ;;; The Custom Mode.
3509 (defvar custom-mode-map nil
3510 "Keymap for `custom-mode'.")
3512 (unless custom-mode-map
3513 (setq custom-mode-map (make-sparse-keymap))
3514 (set-keymap-parents custom-mode-map widget-keymap)
3515 (suppress-keymap custom-mode-map)
3516 (define-key custom-mode-map " " 'scroll-up)
3517 (define-key custom-mode-map [delete] 'scroll-down)
3518 (define-key custom-mode-map "q" 'Custom-buffer-done)
3519 (define-key custom-mode-map "u" 'Custom-goto-parent)
3520 (define-key custom-mode-map "n" 'widget-forward)
3521 (define-key custom-mode-map "p" 'widget-backward))
3523 (easy-menu-define Custom-mode-menu
3525 "Menu used in customization buffers."
3527 ,(customize-menu-create 'customize)
3528 ["Set" Custom-set t]
3529 ["Save" Custom-save t]
3530 ["Reset to Current" Custom-reset-current t]
3531 ["Reset to Saved" Custom-reset-saved t]
3532 ["Reset to Standard Settings" Custom-reset-standard t]
3533 ["Info" (Info-goto-node "(xemacs)Easy Customization") t]))
3535 (defun Custom-goto-parent ()
3536 "Go to the parent group listed at the top of this buffer.
3537 If several parents are listed, go to the first of them."
3540 (goto-char (point-min))
3541 (if (search-forward "\nGo to parent group: " nil t)
3542 (let* ((button (get-char-property (point) 'button))
3543 (parent (downcase (widget-get button :tag))))
3544 (customize-group parent)))))
3546 (defcustom custom-mode-hook nil
3547 "Hook called when entering custom-mode."
3549 :group 'custom-buffer )
3551 (defun custom-state-buffer-message (widget)
3552 (if (eq (widget-get (widget-get widget :parent) :custom-state) 'modified)
3554 "To install your edits, invoke [State] and choose the Set operation")))
3556 (defun custom-mode ()
3557 "Major mode for editing customization buffers.
3559 The following commands are available:
3561 Move to next button or editable field. \\[widget-forward]
3562 Move to previous button or editable field. \\[widget-backward]
3563 \\<widget-field-keymap>\
3564 Complete content of editable text field. \\[widget-complete]
3565 \\<custom-mode-map>\
3566 Invoke button under point. \\[widget-button-press]
3567 Set all modifications. \\[Custom-set]
3568 Make all modifications default. \\[Custom-save]
3569 Reset all modified options. \\[Custom-reset-current]
3570 Reset all modified or set options. \\[Custom-reset-saved]
3571 Reset all options. \\[Custom-reset-standard]
3573 Entry to this mode calls the value of `custom-mode-hook'
3574 if that value is non-nil."
3575 (kill-all-local-variables)
3576 (setq major-mode 'custom-mode
3578 (use-local-map custom-mode-map)
3579 (easy-menu-add Custom-mode-menu)
3580 (make-local-variable 'custom-options)
3581 (make-local-variable 'widget-documentation-face)
3582 (setq widget-documentation-face 'custom-documentation-face)
3583 (make-local-variable 'widget-button-face)
3584 (setq widget-button-face 'custom-button-face)
3585 (make-local-hook 'widget-edit-functions)
3586 (add-hook 'widget-edit-functions 'custom-state-buffer-message nil t)
3587 (run-hooks 'custom-mode-hook))
3591 (defun custom-migrate-custom-file (new-custom-file-name)
3592 "Migrate custom file from home directory."
3593 (mapc 'custom-save-delete
3594 '(custom-load-themes custom-reset-variables
3595 custom-set-variables
3597 custom-reset-faces))
3598 (with-current-buffer (find-file-noselect custom-file)
3600 (setq custom-file new-custom-file-name)
3607 ;; cus-edit.el ends here