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