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