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