1 ;;; wid-edit.el --- Functions for creating and using widgets -*-byte-compile-dynamic: t;-*-
3 ;; Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
4 ;; 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
6 ;; Author: Per Abrahamsen <abraham@dina.kvl.dk>
8 ;; Keywords: extensions
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;;; Wishlist items (from widget.texi):
27 ;; * The `menu-choice' tag should be prettier, something like the
28 ;; abbreviated menus in Open Look.
30 ;; * Finish `:tab-order'.
32 ;; * Make indentation work with glyphs and proportional fonts.
34 ;; * Add commands to show overview of object and class hierarchies to
37 ;; * Find a way to disable mouse highlight for inactive widgets.
39 ;; * Find a way to make glyphs look inactive.
41 ;; * Add `key-binding' widget.
43 ;; * Add `widget' widget for editing widget specifications.
45 ;; * Find clean way to implement variable length list. See
46 ;; `TeX-printer-list' for an explanation.
48 ;; * `C-h' in `widget-prompt-value' should give type specific help.
50 ;; * A mailto widget. [This should work OK as a url-link if with
51 ;; browse-url-browser-function' set up appropriately.]
63 (defun widget-event-point (event)
64 "Character position of the end of event if that exists, or nil."
65 (posn-point (event-end event
)))
67 (defun widget-button-release-event-p (event)
68 "Non-nil if EVENT is a mouse-button-release event object."
70 (memq (event-basic-type event
) '(mouse-1 mouse-2 mouse-3
))
71 (or (memq 'click
(event-modifiers event
))
72 (memq 'drag
(event-modifiers event
)))))
77 "Customization support for the Widget Library."
78 :link
'(custom-manual "(widget)Top")
79 :link
'(emacs-library-link :tag
"Lisp File" "widget.el")
84 (defgroup widget-documentation nil
85 "Options controlling the display of documentation strings."
88 (defgroup widget-faces nil
89 "Faces used by the widget library."
93 (defvar widget-documentation-face
'widget-documentation
94 "Face used for documentation strings in widgets.
95 This exists as a variable so it can be set locally in certain buffers.")
97 (defface widget-documentation
'((((class color
)
99 (:foreground
"lime green"))
102 (:foreground
"dark green"))
104 "Face used for documentation text."
105 :group
'widget-documentation
106 :group
'widget-faces
)
107 ;; backward compatibility alias
108 (put 'widget-documentation-face
'face-alias
'widget-documentation
)
110 (defvar widget-button-face
'widget-button
111 "Face used for buttons in widgets.
112 This exists as a variable so it can be set locally in certain buffers.")
114 (defface widget-button
'((t (:weight bold
)))
115 "Face used for widget buttons."
116 :group
'widget-faces
)
117 ;; backward compatibility alias
118 (put 'widget-button-face
'face-alias
'widget-button
)
120 (defcustom widget-mouse-face
'highlight
121 "Face used for widget buttons when the mouse is above them."
123 :group
'widget-faces
)
125 ;; TTY gets special definitions here and in the next defface, because
126 ;; the gray colors defined for other displays cause black text on a black
127 ;; background, at least on light-background TTYs.
128 (defface widget-field
'((((type tty
))
129 :background
"yellow3"
131 (((class grayscale color
)
133 :background
"gray85")
134 (((class grayscale color
)
136 :background
"dim gray")
139 "Face used for editable fields."
140 :group
'widget-faces
)
141 ;; backward-compatibility alias
142 (put 'widget-field-face
'face-alias
'widget-field
)
144 (defface widget-single-line-field
'((((type tty
))
147 (((class grayscale color
)
149 :background
"gray85")
150 (((class grayscale color
)
152 :background
"dim gray")
155 "Face used for editable fields spanning only a single line."
156 :group
'widget-faces
)
157 ;; backward-compatibility alias
158 (put 'widget-single-line-field-face
'face-alias
'widget-single-line-field
)
160 ;;; This causes display-table to be loaded, and not usefully.
161 ;;;(defvar widget-single-line-display-table
162 ;;; (let ((table (make-display-table)))
163 ;;; (aset table 9 "^I")
164 ;;; (aset table 10 "^J")
166 ;;; "Display table used for single-line editable fields.")
168 ;;;(when (fboundp 'set-face-display-table)
169 ;;; (set-face-display-table 'widget-single-line-field-face
170 ;;; widget-single-line-display-table))
172 ;;; Utility functions.
174 ;; These are not really widget specific.
176 (defun widget-princ-to-string (object)
177 "Return string representation of OBJECT, any Lisp object.
178 No quoting characters are used; no delimiters are printed around
179 the contents of strings."
180 (with-output-to-string
183 (defun widget-clear-undo ()
184 "Clear all undo information."
185 (buffer-disable-undo (current-buffer))
186 (buffer-enable-undo))
188 (defcustom widget-menu-max-size
40
189 "Largest number of items allowed in a popup-menu.
190 Larger menus are read through the minibuffer."
194 (defcustom widget-menu-max-shortcuts
40
195 "Largest number of items for which it works to choose one with a character.
196 For a larger number of items, the minibuffer is used."
200 (defcustom widget-menu-minibuffer-flag nil
201 "Control how to ask for a choice from the keyboard.
202 Non-nil means use the minibuffer;
203 nil means read a single character."
207 (defun widget-choose (title items
&optional event
)
208 "Choose an item from a list.
210 First argument TITLE is the name of the list.
211 Second argument ITEMS is a list whose members are either
212 (NAME . VALUE), to indicate selectable items, or just strings to
213 indicate unselectable items.
214 Optional third argument EVENT is an input event.
216 The user is asked to choose between each NAME from the items alist,
217 and the VALUE of the chosen element will be returned. If EVENT is a
218 mouse event, and the number of elements in items is less than
219 `widget-menu-max-size', a popup menu will be used, otherwise the
221 (cond ((and (< (length items
) widget-menu-max-size
)
222 event
(display-popup-menus-p))
225 (list title
(cons "" items
))))
226 ((or widget-menu-minibuffer-flag
227 (> (length items
) widget-menu-max-shortcuts
))
228 ;; Read the choice of name from the minibuffer.
229 (setq items
(widget-remove-if 'stringp items
))
230 (let ((val (completing-read (concat title
": ") items nil t
)))
232 (let ((try (try-completion val items
)))
235 (cdr (assoc val items
))))))
237 ;; Construct a menu of the choices
238 ;; and then use it for prompting for a single character.
239 (let* ((overriding-terminal-local-map (make-sparse-keymap))
241 map choice some-choice-enabled value
)
242 ;; Define SPC as a prefix char to get to this menu.
243 (define-key overriding-terminal-local-map
" "
244 (setq map
(make-sparse-keymap title
)))
245 (with-current-buffer (get-buffer-create " widget-choose")
247 (insert "Available choices:\n\n")
249 (setq choice
(car items
) items
(cdr items
))
251 (let* ((name (car choice
))
252 (function (cdr choice
)))
253 (insert (format "%c = %s\n" next-digit name
))
254 (define-key map
(vector next-digit
) function
)
255 (setq some-choice-enabled t
)))
256 ;; Allocate digits to disabled alternatives
257 ;; so that the digit of a given alternative never varies.
258 (setq next-digit
(1+ next-digit
)))
259 (insert "\nC-g = Quit"))
260 (or some-choice-enabled
261 (error "None of the choices is currently meaningful"))
262 (define-key map
[?\C-g
] 'keyboard-quit
)
263 (define-key map
[t] 'keyboard-quit)
264 (define-key map [?\M-\C-v] 'scroll-other-window)
265 (define-key map [?\M--] 'negative-argument)
266 (setcdr map (nreverse (cdr map)))
267 ;; Read a char with the menu, and return the result
268 ;; that corresponds to it.
269 (save-window-excursion
270 (let ((buf (get-buffer " widget-choose")))
271 (fit-window-to-buffer (display-buffer buf))
272 (let ((cursor-in-echo-area t)
276 (while (not (or (and (integerp char)
277 (>= char ?0) (< char next-digit))
278 (eq value 'keyboard-quit)))
279 ;; Unread a SPC to lead to our new menu.
280 (setq unread-command-events (cons ?\s unread-command-events))
281 (setq keys (read-key-sequence title))
283 (lookup-key overriding-terminal-local-map keys t)
285 (cond ((eq value 'scroll-other-window)
286 (let ((minibuffer-scroll-window
287 (get-buffer-window buf)))
289 (scroll-other-window-down
290 (window-height minibuffer-scroll-window))
291 (scroll-other-window))
293 ((eq value 'negative-argument)
297 (when (eq value 'keyboard-quit)
301 (defun widget-remove-if (predictate list)
302 (let (result (tail list))
304 (or (funcall predictate (car tail))
305 (setq result (cons (car tail) result)))
306 (setq tail (cdr tail)))
309 ;;; Widget text specifications.
311 ;; These functions are for specifying text properties.
313 ;; We can set it to nil now that get_local_map uses get_pos_property.
314 (defconst widget-field-add-space nil
315 "Non-nil means add extra space at the end of editable text fields.
316 If you don't add the space, it will become impossible to edit a zero
319 (defvar widget-field-use-before-change t
320 "Non-nil means use `before-change-functions' to track editable fields.
321 This enables the use of undo, but doesn't work on Emacs 19.34 and earlier.
322 Using before hooks also means that the :notify function can't know the
325 (defun widget-specify-field (widget from to)
326 "Specify editable button for WIDGET between FROM and TO."
327 ;; Terminating space is not part of the field, but necessary in
328 ;; order for local-map to work. Remove next sexp if local-map works
329 ;; at the end of the overlay.
332 (cond ((null (widget-get widget :size))
334 (widget-field-add-space
335 (insert-and-inherit " ")))
337 (let ((keymap (widget-get widget :keymap))
338 (face (or (widget-get widget :value-face) 'widget-field))
339 (help-echo (widget-get widget :help-echo))
340 (follow-link (widget-get widget :follow-link))
342 (or (not widget-field-add-space) (widget-get widget :size))))
343 (if (functionp help-echo)
344 (setq help-echo 'widget-mouse-help))
345 (when (= (char-before to) ?\n)
346 ;; When the last character in the field is a newline, we want to
347 ;; give it a `field' char-property of `boundary', which helps the
348 ;; C-n/C-p act more naturally when entering/leaving the field. We
349 ;; do this by making a small secondary overlay to contain just that
351 (let ((overlay (make-overlay (1- to) to nil t nil)))
352 (overlay-put overlay 'field 'boundary)
353 ;; We need the real field for tabbing.
354 (overlay-put overlay 'real-field widget)
355 ;; Use `local-map' here, not `keymap', so that normal editing
356 ;; works in the field when, say, Custom uses `suppress-keymap'.
357 (overlay-put overlay 'local-map keymap)
358 (overlay-put overlay 'face face)
359 (overlay-put overlay 'follow-link follow-link)
360 (overlay-put overlay 'help-echo help-echo))
362 (setq rear-sticky t))
363 (let ((overlay (make-overlay from to nil nil rear-sticky)))
364 (widget-put widget :field-overlay overlay)
365 ;;(overlay-put overlay 'detachable nil)
366 (overlay-put overlay 'field widget)
367 (overlay-put overlay 'local-map keymap)
368 (overlay-put overlay 'face face)
369 (overlay-put overlay 'follow-link follow-link)
370 (overlay-put overlay 'help-echo help-echo)))
371 (widget-specify-secret widget))
373 (defun widget-specify-secret (field)
374 "Replace text in FIELD with value of `:secret', if non-nil."
375 (let ((secret (widget-get field :secret))
376 (size (widget-get field :size)))
378 (let ((begin (widget-field-start field))
379 (end (widget-field-end field)))
381 (while (and (> end begin)
382 (eq (char-after (1- end)) ?\s))
383 (setq end (1- end))))
385 (let ((old (char-after begin)))
386 (unless (eq old secret)
387 (subst-char-in-region begin (1+ begin) old secret)
388 (put-text-property begin (1+ begin) 'secret old))
389 (setq begin (1+ begin))))))))
391 (defun widget-specify-button (widget from to)
392 "Specify button for WIDGET between FROM and TO."
393 (let ((overlay (make-overlay from to nil t nil))
394 (follow-link (widget-get widget :follow-link))
395 (help-echo (widget-get widget :help-echo)))
396 (widget-put widget :button-overlay overlay)
397 (if (functionp help-echo)
398 (setq help-echo 'widget-mouse-help))
399 (overlay-put overlay 'button widget)
400 (overlay-put overlay 'keymap (widget-get widget :keymap))
401 (overlay-put overlay 'evaporate t)
402 ;; We want to avoid the face with image buttons.
403 (unless (widget-get widget :suppress-face)
404 (overlay-put overlay 'face (widget-apply widget :button-face-get))
405 (overlay-put overlay 'mouse-face
406 ;; Make new list structure for the mouse-face value
407 ;; so that different widgets will have
408 ;; different `mouse-face' property values
409 ;; and will highlight separately.
410 (let ((mouse-face-value
411 (widget-apply widget :mouse-face-get)))
412 ;; If it's a list, copy it.
413 (if (listp mouse-face-value)
414 (copy-sequence mouse-face-value)
415 ;; If it's a symbol, put it in a list.
416 (list mouse-face-value)))))
417 (overlay-put overlay 'pointer 'hand)
418 (overlay-put overlay 'follow-link follow-link)
419 (overlay-put overlay 'help-echo help-echo)))
421 (defun widget-mouse-help (window overlay point)
422 "Help-echo callback for widgets whose :help-echo is a function."
423 (with-current-buffer (overlay-buffer overlay)
424 (let* ((widget (widget-at (overlay-start overlay)))
425 (help-echo (if widget (widget-get widget :help-echo))))
426 (if (functionp help-echo)
427 (funcall help-echo widget)
430 (defun widget-specify-sample (widget from to)
431 "Specify sample for WIDGET between FROM and TO."
432 (let ((overlay (make-overlay from to nil t nil)))
433 (overlay-put overlay 'face (widget-apply widget :sample-face-get))
434 (overlay-put overlay 'evaporate t)
435 (widget-put widget :sample-overlay overlay)))
437 (defun widget-specify-doc (widget from to)
438 "Specify documentation for WIDGET between FROM and TO."
439 (let ((overlay (make-overlay from to nil t nil)))
440 (overlay-put overlay 'widget-doc widget)
441 (overlay-put overlay 'face widget-documentation-face)
442 (overlay-put overlay 'evaporate t)
443 (widget-put widget :doc-overlay overlay)))
445 (defmacro widget-specify-insert (&rest form)
446 "Execute FORM without inheriting any text properties."
448 (let ((inhibit-read-only t)
449 (inhibit-modification-hooks t))
450 (narrow-to-region (point) (point))
451 (prog1 (progn ,@form)
452 (goto-char (point-max))))))
454 (defface widget-inactive
455 '((t :inherit shadow))
456 "Face used for inactive widgets."
457 :group 'widget-faces)
458 ;; backward-compatibility alias
459 (put 'widget-inactive-face 'face-alias 'widget-inactive)
461 (defun widget-specify-inactive (widget from to)
462 "Make WIDGET inactive for user modifications."
463 (unless (widget-get widget :inactive)
464 (let ((overlay (make-overlay from to nil t nil)))
465 (overlay-put overlay 'face 'widget-inactive)
466 ;; This is disabled, as it makes the mouse cursor change shape.
467 ;; (overlay-put overlay 'mouse-face 'widget-inactive)
468 (overlay-put overlay 'evaporate t)
469 (overlay-put overlay 'priority 100)
470 (overlay-put overlay 'modification-hooks '(widget-overlay-inactive))
471 (widget-put widget :inactive overlay))))
473 (defun widget-overlay-inactive (&rest junk)
474 "Ignoring the arguments, signal an error."
475 (unless inhibit-read-only
476 (error "The widget here is not active")))
479 (defun widget-specify-active (widget)
480 "Make WIDGET active for user modifications."
481 (let ((inactive (widget-get widget :inactive)))
483 (delete-overlay inactive)
484 (widget-put widget :inactive nil))))
486 ;;; Widget Properties.
488 (defsubst widget-type (widget)
489 "Return the type of WIDGET. The type is a symbol."
493 (defun widgetp (widget)
494 "Return non-nil if WIDGET is a widget."
496 (get widget 'widget-type)
498 (symbolp (car widget))
499 (get (car widget) 'widget-type))))
501 (defun widget-get-indirect (widget property)
502 "In WIDGET, get the value of PROPERTY.
503 If the value is a symbol, return its binding.
504 Otherwise, just return the value."
505 (let ((value (widget-get widget property)))
510 (defun widget-member (widget property)
511 "Non-nil if there is a definition in WIDGET for PROPERTY."
512 (cond ((plist-member (cdr widget) property)
515 (widget-member (get (car widget) 'widget-type) property))
518 (defun widget-value (widget)
519 "Extract the current value of WIDGET."
521 :value-to-external (widget-apply widget :value-get)))
523 (defun widget-value-set (widget value)
524 "Set the current value of WIDGET to VALUE."
526 :value-set (widget-apply widget
527 :value-to-internal value)))
529 (defun widget-default-get (widget)
530 "Extract the default external value of WIDGET."
531 (widget-apply widget :value-to-external
532 (or (widget-get widget :value)
533 (widget-apply widget :default-get))))
535 (defun widget-match-inline (widget vals)
536 "In WIDGET, match the start of VALS."
537 (cond ((widget-get widget :inline)
538 (widget-apply widget :match-inline vals))
540 (widget-apply widget :match (car vals)))
541 (cons (list (car vals)) (cdr vals)))
544 (defun widget-apply-action (widget &optional event)
545 "Apply :action in WIDGET in response to EVENT."
546 (if (widget-apply widget :active)
547 (widget-apply widget :action event)
548 (error "Attempt to perform action on inactive widget")))
550 ;;; Helper functions.
552 ;; These are widget specific.
555 (defun widget-prompt-value (widget prompt &optional value unbound)
556 "Prompt for a value matching WIDGET, using PROMPT.
557 The current value is assumed to be VALUE, unless UNBOUND is non-nil."
558 (unless (listp widget)
559 (setq widget (list widget)))
560 (setq prompt (format "[%s] %s" (widget-type widget) prompt))
561 (setq widget (widget-convert widget))
562 (let ((answer (widget-apply widget :prompt-value prompt value unbound)))
563 (unless (widget-apply widget :match answer)
564 (error "Value does not match %S type" (car widget)))
567 (defun widget-get-sibling (widget)
568 "Get the item WIDGET is assumed to toggle.
569 This is only meaningful for radio buttons or checkboxes in a list."
570 (let* ((children (widget-get (widget-get widget :parent) :children))
574 (setq child (car children)
575 children (cdr children))
576 (when (eq (widget-get child :button) widget)
577 (throw 'child child)))
580 (defun widget-map-buttons (function &optional buffer maparg)
581 "Map FUNCTION over the buttons in BUFFER.
582 FUNCTION is called with the arguments WIDGET and MAPARG.
584 If FUNCTION returns non-nil, the walk is cancelled.
586 The arguments MAPARG, and BUFFER default to nil and (current-buffer),
588 (let ((cur (point-min))
591 (with-current-buffer buffer (overlay-lists))
593 (setq overlays (append (car overlays) (cdr overlays)))
594 (while (setq cur (pop overlays))
595 (setq widget (overlay-get cur 'button))
596 (if (and widget (funcall function widget maparg))
597 (setq overlays nil)))))
601 (defcustom widget-image-directory (file-name-as-directory
602 (expand-file-name "images/custom" data-directory))
603 "Where widget button images are located.
604 If this variable is nil, widget will try to locate the directory
609 (defcustom widget-image-enable t
610 "If non-nil, use image buttons in widgets when available."
615 (defcustom widget-image-conversion
616 '((xpm ".xpm") (gif ".gif") (png ".png") (jpeg ".jpg" ".jpeg")
618 "Conversion alist from image formats to file name suffixes."
620 :type '(repeat (cons :format "%v"
621 (symbol :tag "Image Format" unknown)
622 (repeat :tag "Suffixes"
623 (string :format "%v")))))
625 (defun widget-image-find (image)
626 "Create a graphical button from IMAGE.
627 IMAGE should either already be an image, or be a file name sans
628 extension (xpm, xbm, gif, jpg, or png) located in
629 `widget-image-directory' or otherwise where `find-image' will find it."
630 (cond ((not (and image widget-image-enable (display-graphic-p)))
631 ;; We don't want or can't use images.
634 (eq 'image (car image)))
635 ;; Already an image spec. Use it.
638 ;; A string. Look it up in relevant directories.
639 (let* ((load-path (cons widget-image-directory load-path))
641 (dolist (elt widget-image-conversion)
642 (dolist (ext (cdr elt))
643 (push (list :type (car elt) :file (concat image ext)) specs)))
644 (setq specs (nreverse specs))
650 (defvar widget-button-pressed-face 'widget-button-pressed
651 "Face used for pressed buttons in widgets.
652 This exists as a variable so it can be set locally in certain
655 (defun widget-image-insert (widget tag image &optional down inactive)
656 "In WIDGET, insert the text TAG or, if supported, IMAGE.
657 IMAGE should either be an image or an image file name sans extension
658 \(xpm, xbm, gif, jpg, or png) located in `widget-image-directory'.
660 Optional arguments DOWN and INACTIVE are used instead of IMAGE when the
661 button is pressed or inactive, respectively. These are currently ignored."
662 (if (and (display-graphic-p)
663 (setq image (widget-image-find image)))
664 (progn (widget-put widget :suppress-face t)
665 (insert-image image tag))
668 (defun widget-move-and-invoke (event)
669 "Move to where you click, and if it is an active field, invoke it."
671 (mouse-set-point event)
672 (let ((pos (widget-event-point event)))
673 (if (and pos (get-char-property pos 'button))
674 (widget-button-click event))))
678 (defgroup widget-button nil
679 "The look of various kinds of buttons."
682 (defcustom widget-button-prefix ""
683 "String used as prefix for buttons."
685 :group 'widget-button)
687 (defcustom widget-button-suffix ""
688 "String used as suffix for buttons."
690 :group 'widget-button)
692 ;;; Creating Widgets.
695 (defun widget-create (type &rest args)
696 "Create widget of TYPE.
697 The optional ARGS are additional keyword arguments."
698 (let ((widget (apply 'widget-convert type args)))
699 (widget-apply widget :create)
702 (defun widget-create-child-and-convert (parent type &rest args)
703 "As part of the widget PARENT, create a child widget TYPE.
704 The child is converted, using the keyword arguments ARGS."
705 (let ((widget (apply 'widget-convert type args)))
706 (widget-put widget :parent parent)
707 (unless (widget-get widget :indent)
708 (widget-put widget :indent (+ (or (widget-get parent :indent) 0)
709 (or (widget-get widget :extra-offset) 0)
710 (widget-get parent :offset))))
711 (widget-apply widget :create)
714 (defun widget-create-child (parent type)
715 "Create widget of TYPE."
716 (let ((widget (widget-copy type)))
717 (widget-put widget :parent parent)
718 (unless (widget-get widget :indent)
719 (widget-put widget :indent (+ (or (widget-get parent :indent) 0)
720 (or (widget-get widget :extra-offset) 0)
721 (widget-get parent :offset))))
722 (widget-apply widget :create)
725 (defun widget-create-child-value (parent type value)
726 "Create widget of TYPE with value VALUE."
727 (let ((widget (widget-copy type)))
728 (widget-put widget :value (widget-apply widget :value-to-internal value))
729 (widget-put widget :parent parent)
730 (unless (widget-get widget :indent)
731 (widget-put widget :indent (+ (or (widget-get parent :indent) 0)
732 (or (widget-get widget :extra-offset) 0)
733 (widget-get parent :offset))))
734 (widget-apply widget :create)
738 (defun widget-delete (widget)
740 (widget-apply widget :delete))
742 (defun widget-copy (widget)
743 "Make a deep copy of WIDGET."
744 (widget-apply (copy-sequence widget) :copy))
746 (defun widget-convert (type &rest args)
747 "Convert TYPE to a widget without inserting it in the buffer.
748 The optional ARGS are additional keyword arguments."
749 ;; Don't touch the type.
750 (let* ((widget (if (symbolp type)
752 (copy-sequence type)))
756 ;; First set the :args keyword.
757 (while (cdr current) ;Look in the type.
758 (if (and (keywordp (cadr current))
759 ;; If the last element is a keyword,
760 ;; it is still the :args element,
761 ;; even though it is a keyword.
763 (if (eq (cadr current) :args)
764 ;; If :args is explicitly specified, obey it.
766 ;; Some other irrelevant keyword.
767 (setq current (cdr (cdr current))))
768 (setcdr current (list :args (cdr current)))
770 (while (and args (not done)) ;Look in ARGS.
771 (cond ((eq (car args) :args)
772 ;; Handle explicit specification of :args.
773 (setq args (cadr args)
775 ((keywordp (car args))
776 (setq args (cddr args)))
779 (widget-put widget :args args))
780 ;; Then Convert the widget.
783 (let ((convert-widget (plist-get (cdr type) :convert-widget)))
785 (setq widget (funcall convert-widget widget))))
786 (setq type (get (car type) 'widget-type)))
787 ;; Finally set the keyword args.
789 (let ((next (nth 0 keys)))
792 (widget-put widget next (nth 1 keys))
793 (setq keys (nthcdr 2 keys)))
795 ;; Convert the :value to internal format.
796 (if (widget-member widget :value)
798 :value (widget-apply widget
800 (widget-get widget :value))))
801 ;; Return the newly create widget.
805 (defun widget-insert (&rest args)
806 "Call `insert' with ARGS even if surrounding text is read only."
807 (let ((inhibit-read-only t)
808 (inhibit-modification-hooks t))
809 (apply 'insert args)))
811 (defun widget-convert-text (type from to
812 &optional button-from button-to
814 "Return a widget of type TYPE with endpoint FROM TO.
815 No text will be inserted to the buffer, instead the text between FROM
816 and TO will be used as the widgets end points. If optional arguments
817 BUTTON-FROM and BUTTON-TO are given, these will be used as the widgets
819 Optional ARGS are extra keyword arguments for TYPE."
820 (let ((widget (apply 'widget-convert type :delete 'widget-leave-text args))
821 (from (copy-marker from))
822 (to (copy-marker to)))
823 (set-marker-insertion-type from t)
824 (set-marker-insertion-type to nil)
825 (widget-put widget :from from)
826 (widget-put widget :to to)
828 (widget-specify-button widget button-from button-to))
831 (defun widget-convert-button (type from to &rest args)
832 "Return a widget of type TYPE with endpoint FROM TO.
833 Optional ARGS are extra keyword arguments for TYPE.
834 No text will be inserted to the buffer, instead the text between FROM
835 and TO will be used as the widgets end points, as well as the widgets
837 (apply 'widget-convert-text type from to from to args))
839 (defun widget-leave-text (widget)
840 "Remove markers and overlays from WIDGET and its children."
841 (let ((button (widget-get widget :button-overlay))
842 (sample (widget-get widget :sample-overlay))
843 (doc (widget-get widget :doc-overlay))
844 (field (widget-get widget :field-overlay)))
845 (set-marker (widget-get widget :from) nil)
846 (set-marker (widget-get widget :to) nil)
848 (delete-overlay button))
850 (delete-overlay sample))
852 (delete-overlay doc))
854 (delete-overlay field))
855 (mapc 'widget-leave-text (widget-get widget :children))))
857 ;;; Keymap and Commands.
859 ;; This alias exists only so that one can choose in doc-strings (e.g.
860 ;; Custom-mode) which key-binding of widget-keymap one wants to refer to.
861 ;; http://lists.gnu.org/archive/html/emacs-devel/2008-11/msg00480.html
862 (defalias 'advertised-widget-backward 'widget-backward)
865 (defvar widget-keymap
866 (let ((map (make-sparse-keymap)))
867 (define-key map "\t" 'widget-forward)
868 (define-key map "\e\t" 'widget-backward)
869 (define-key map [(shift tab)] 'advertised-widget-backward)
870 (define-key map [backtab] 'widget-backward)
871 (define-key map [down-mouse-2] 'widget-button-click)
872 (define-key map [down-mouse-1] 'widget-button-click)
873 ;; The following definition needs to avoid using escape sequences that
874 ;; might get converted to ^M when building loaddefs.el
875 (define-key map [(control ?m)] 'widget-button-press)
877 "Keymap containing useful binding for buffers containing widgets.
878 Recommended as a parent keymap for modes using widgets.")
880 (defvar widget-global-map global-map
881 "Keymap used for events a widget does not handle itself.")
882 (make-variable-buffer-local 'widget-global-map)
884 (defvar widget-field-keymap
885 (let ((map (copy-keymap widget-keymap)))
886 (define-key map "\C-k" 'widget-kill-line)
887 (define-key map "\M-\t" 'widget-complete)
888 (define-key map "\C-m" 'widget-field-activate)
889 ;; Since the widget code uses a `field' property to identify fields,
890 ;; ordinary beginning-of-line does the right thing.
891 ;; (define-key map "\C-a" 'widget-beginning-of-line)
892 (define-key map "\C-e" 'widget-end-of-line)
894 "Keymap used inside an editable field.")
896 (defvar widget-text-keymap
897 (let ((map (copy-keymap widget-keymap)))
898 ;; Since the widget code uses a `field' property to identify fields,
899 ;; ordinary beginning-of-line does the right thing.
900 ;; (define-key map "\C-a" 'widget-beginning-of-line)
901 (define-key map "\C-e" 'widget-end-of-line)
903 "Keymap used inside a text field.")
905 (defun widget-field-activate (pos &optional event)
906 "Invoke the editable field at point."
908 (let ((field (widget-field-at pos)))
910 (widget-apply-action field event)
912 (lookup-key widget-global-map (this-command-keys))))))
914 (defface widget-button-pressed
915 '((((min-colors 88) (class color))
916 (:foreground "red1"))
920 (:weight bold :underline t)))
921 "Face used for pressed buttons."
922 :group 'widget-faces)
923 ;; backward-compatibility alias
924 (put 'widget-button-pressed-face 'face-alias 'widget-button-pressed)
926 (defvar widget-button-click-moves-point nil
927 "If non-nil, `widget-button-click' moves point to a button after invoking it.
928 If nil, point returns to its original position after invoking a button.")
930 (defun widget-button-click (event)
931 "Invoke the button that the mouse is pointing at."
933 (if (widget-event-point event)
934 (let* ((oevent event)
935 (mouse-1 (memq (event-basic-type event) '(mouse-1 down-mouse-1)))
936 (pos (widget-event-point event))
937 (start (event-start event))
938 (button (get-char-property
939 pos 'button (and (windowp (posn-window start))
940 (window-buffer (posn-window start)))))
942 (when (or (null button)
943 (catch 'button-press-cancelled
944 ;; Mouse click on a widget button. Do the following
945 ;; in a save-excursion so that the click on the button
946 ;; doesn't change point.
947 (save-selected-window
948 (select-window (posn-window (event-start event)))
950 (goto-char (posn-point (event-start event)))
951 (let* ((overlay (widget-get button :button-overlay))
952 (pressed-face (or (widget-get button :pressed-face)
953 widget-button-pressed-face))
954 (face (overlay-get overlay 'face))
955 (mouse-face (overlay-get overlay 'mouse-face)))
957 ;; Read events, including mouse-movement
958 ;; events, waiting for a release event. If we
959 ;; began with a mouse-1 event and receive a
960 ;; movement event, that means the user wants
961 ;; to perform drag-selection, so cancel the
962 ;; button press and do the default mouse-1
963 ;; action. For mouse-2, just highlight/
964 ;; unhighlight the button the mouse was
965 ;; initially on when we move over it.
967 (when face ; avoid changing around image
968 (overlay-put overlay 'face pressed-face)
969 (overlay-put overlay 'mouse-face pressed-face))
970 (unless (widget-apply button :mouse-down-action event)
971 (let ((track-mouse t))
972 (while (not (widget-button-release-event-p event))
973 (setq event (read-event))
974 (when (and mouse-1 (mouse-movement-p event))
975 (push event unread-command-events)
977 (throw 'button-press-cancelled t))
978 (unless (or (integerp event)
979 (memq (car event) '(switch-frame select-window))
980 (eq (car event) 'scroll-bar-movement))
981 (setq pos (widget-event-point event))
983 (eq (get-char-property pos 'button)
986 (overlay-put overlay 'face pressed-face)
987 (overlay-put overlay 'mouse-face pressed-face))
988 (overlay-put overlay 'face face)
989 (overlay-put overlay 'mouse-face mouse-face))))))
991 ;; When mouse is released over the button, run
992 ;; its action function.
993 (when (and pos (eq (get-char-property pos 'button) button))
995 (widget-apply-action button event)
996 (if widget-button-click-moves-point
997 (setq newpoint (point)))))
998 (overlay-put overlay 'face face)
999 (overlay-put overlay 'mouse-face mouse-face))))
1001 (if newpoint (goto-char newpoint))
1002 ;; This loses if the widget action switches windows. -- cyd
1003 ;; (unless (pos-visible-in-window-p (widget-event-point event))
1004 ;; (mouse-set-point event)
1005 ;; (beginning-of-line)
1009 (let ((up t) command)
1010 ;; Mouse click not on a widget button. Find the global
1011 ;; command to run, and check whether it is bound to an
1014 (cond ((setq command ;down event
1015 (lookup-key widget-global-map [down-mouse-1]))
1017 ((setq command ;up event
1018 (lookup-key widget-global-map [mouse-1]))))
1019 (cond ((setq command ;down event
1020 (lookup-key widget-global-map [down-mouse-2]))
1022 ((setq command ;up event
1023 (lookup-key widget-global-map [mouse-2])))))
1025 ;; Don't execute up events twice.
1026 (while (not (widget-button-release-event-p event))
1027 (setq event (read-event))))
1029 (call-interactively command)))))
1030 (message "You clicked somewhere weird.")))
1032 (defun widget-button-press (pos &optional event)
1033 "Invoke button at POS."
1035 (let ((button (get-char-property pos 'button)))
1037 (widget-apply-action button event)
1038 (let ((command (lookup-key widget-global-map (this-command-keys))))
1039 (when (commandp command)
1040 (call-interactively command))))))
1042 (defun widget-tabable-at (&optional pos)
1043 "Return the tabable widget at POS, or nil.
1044 POS defaults to the value of (point)."
1045 (let ((widget (widget-at pos)))
1047 (let ((order (widget-get widget :tab-order)))
1053 (defvar widget-use-overlay-change t
1054 "If non-nil, use overlay change functions to tab around in the buffer.
1055 This is much faster, but doesn't work reliably on Emacs 19.34.")
1057 (defun widget-move (arg)
1058 "Move point to the ARG next field or button.
1059 ARG may be negative to move backward."
1060 (or (bobp) (> arg 0) (backward-char))
1063 (old (widget-tabable-at)))
1067 (goto-char (point-min))
1068 (setq wrapped (1+ wrapped)))
1069 (widget-use-overlay-change
1070 (goto-char (next-overlay-change (point))))
1075 (error "No buttons or fields found"))
1076 (let ((new (widget-tabable-at)))
1078 (unless (eq new old)
1084 (goto-char (point-max))
1085 (setq wrapped (1+ wrapped)))
1086 (widget-use-overlay-change
1087 (goto-char (previous-overlay-change (point))))
1092 (error "No buttons or fields found"))
1093 (let ((new (widget-tabable-at)))
1095 (unless (eq new old)
1096 (setq arg (1+ arg))))))
1097 (let ((new (widget-tabable-at)))
1098 (while (eq (widget-tabable-at) new)
1101 (widget-echo-help (point))
1102 (run-hooks 'widget-move-hook))
1104 (defun widget-forward (arg)
1105 "Move point to the next field or button.
1106 With optional ARG, move across that many fields."
1108 (run-hooks 'widget-forward-hook)
1111 (defun widget-backward (arg)
1112 "Move point to the previous field or button.
1113 With optional ARG, move across that many fields."
1115 (run-hooks 'widget-backward-hook)
1116 (widget-move (- arg)))
1118 ;; Since the widget code uses a `field' property to identify fields,
1119 ;; ordinary beginning-of-line does the right thing.
1120 (defalias 'widget-beginning-of-line 'beginning-of-line)
1122 (defun widget-end-of-line ()
1123 "Go to end of field or end of line, whichever is first.
1124 Trailing spaces at the end of padded fields are not considered part of
1127 ;; Ordinary end-of-line does the right thing, because we're inside
1128 ;; text with a `field' property.
1131 ;; ... except that we want to ignore trailing spaces in fields that
1132 ;; aren't terminated by a newline, because they are used as padding,
1133 ;; and ignored when extracting the entered value of the field.
1134 (skip-chars-backward " " (field-beginning (1- (point))))))
1136 (defun widget-kill-line ()
1137 "Kill to end of field or end of line, whichever is first."
1139 (let* ((field (widget-field-find (point)))
1140 (end (and field (widget-field-end field))))
1141 (if (and field (> (line-beginning-position 2) end))
1142 (kill-region (point) end)
1143 (call-interactively 'kill-line))))
1145 (defcustom widget-complete-field (lookup-key global-map "\M-\t")
1146 "Default function to call for completion inside fields."
1147 :options '(ispell-complete-word complete-tag lisp-complete-symbol)
1151 (defun widget-narrow-to-field ()
1154 (let ((field (widget-field-find (point))))
1156 (narrow-to-region (line-beginning-position) (line-end-position)))))
1158 (defun widget-complete ()
1159 "Complete content of editable field from point.
1160 When not inside a field, move to the previous button or field."
1162 (let ((field (widget-field-find (point))))
1165 (widget-narrow-to-field)
1166 (widget-apply field :complete))
1167 (error "Not in an editable field"))))
1169 ;;; Setting up the buffer.
1171 (defvar widget-field-new nil
1172 "List of all newly created editable fields in the buffer.")
1173 (make-variable-buffer-local 'widget-field-new)
1175 (defvar widget-field-list nil
1176 "List of all editable fields in the buffer.")
1177 (make-variable-buffer-local 'widget-field-list)
1179 (defun widget-at (&optional pos)
1180 "The button or field at POS (default, point)."
1181 (or (get-char-property (or pos (point)) 'button)
1182 (widget-field-at pos)))
1185 (defun widget-setup ()
1186 "Setup current buffer so editing string widgets works."
1187 (let ((inhibit-read-only t)
1188 (inhibit-modification-hooks t)
1190 (while widget-field-new
1191 (setq field (car widget-field-new)
1192 widget-field-new (cdr widget-field-new)
1193 widget-field-list (cons field widget-field-list))
1194 (let ((from (car (widget-get field :field-overlay)))
1195 (to (cdr (widget-get field :field-overlay))))
1196 (widget-specify-field field
1197 (marker-position from) (marker-position to))
1198 (set-marker from nil)
1199 (set-marker to nil))))
1201 (widget-add-change))
1203 (defvar widget-field-last nil)
1204 ;; Last field containing point.
1205 (make-variable-buffer-local 'widget-field-last)
1207 (defvar widget-field-was nil)
1208 ;; The widget data before the change.
1209 (make-variable-buffer-local 'widget-field-was)
1211 (defun widget-field-at (pos)
1212 "Return the widget field at POS, or nil if none."
1213 (let ((field (get-char-property (or pos (point)) 'field)))
1214 (if (eq field 'boundary)
1215 (get-char-property (or pos (point)) 'real-field)
1218 (defun widget-field-buffer (widget)
1219 "Return the buffer of WIDGET's editing field."
1220 (let ((overlay (widget-get widget :field-overlay)))
1221 (cond ((overlayp overlay)
1222 (overlay-buffer overlay))
1224 (marker-buffer (car overlay))))))
1226 (defun widget-field-start (widget)
1227 "Return the start of WIDGET's editing field."
1228 (let ((overlay (widget-get widget :field-overlay)))
1229 (if (overlayp overlay)
1230 (overlay-start overlay)
1233 (defun widget-field-end (widget)
1234 "Return the end of WIDGET's editing field."
1235 (let ((overlay (widget-get widget :field-overlay)))
1236 ;; Don't subtract one if local-map works at the end of the overlay,
1237 ;; or if a special `boundary' field has been added after the widget
1239 (if (overlayp overlay)
1240 ;; Don't proceed if overlay has been removed from buffer.
1241 (when (overlay-buffer overlay)
1242 (if (and (not (eq (with-current-buffer
1243 (widget-field-buffer widget)
1245 ;; `widget-narrow-to-field' can be
1246 ;; active when this function is called
1247 ;; from an change-functions hook. So
1248 ;; temporarily remove field narrowing
1249 ;; before to call `get-char-property'.
1251 (get-char-property (overlay-end overlay)
1254 (or widget-field-add-space
1255 (null (widget-get widget :size))))
1256 (1- (overlay-end overlay))
1257 (overlay-end overlay)))
1260 (defun widget-field-find (pos)
1261 "Return the field at POS.
1262 Unlike (get-char-property POS 'field), this works with empty fields too."
1263 (let ((fields widget-field-list)
1266 (setq field (car fields)
1267 fields (cdr fields))
1268 (when (and (<= (widget-field-start field) pos)
1269 (<= pos (widget-field-end field)))
1271 (error "Overlapping fields"))
1272 (setq found field)))
1275 (defun widget-before-change (from to)
1276 ;; This is how, for example, a variable changes its state to `modified'.
1277 ;; when it is being edited.
1278 (unless inhibit-read-only
1279 (let ((from-field (widget-field-find from))
1280 (to-field (widget-field-find to)))
1281 (cond ((not (eq from-field to-field))
1282 (add-hook 'post-command-hook 'widget-add-change nil t)
1283 (signal 'text-read-only
1284 '("Change should be restricted to a single field")))
1286 (add-hook 'post-command-hook 'widget-add-change nil t)
1287 (signal 'text-read-only
1288 '("Attempt to change text outside editable field")))
1289 (widget-field-use-before-change
1290 (widget-apply from-field :notify from-field))))))
1292 (defun widget-add-change ()
1293 (remove-hook 'post-command-hook 'widget-add-change t)
1294 (add-hook 'before-change-functions 'widget-before-change nil t)
1295 (add-hook 'after-change-functions 'widget-after-change nil t))
1297 (defun widget-after-change (from to old)
1298 "Adjust field size and text properties."
1299 (let ((field (widget-field-find from))
1300 (other (widget-field-find to)))
1302 (unless (eq field other)
1303 (error "Change in different fields"))
1304 (let ((size (widget-get field :size)))
1306 (let ((begin (widget-field-start field))
1307 (end (widget-field-end field)))
1308 (cond ((< (- end begin) size)
1312 (insert-char ?\s (- (+ begin size) end))))
1313 ((> (- end begin) size)
1314 ;; Field too large and
1315 (if (or (< (point) (+ begin size))
1317 ;; Point is outside extra space.
1318 (setq begin (+ begin size))
1319 ;; Point is within the extra space.
1320 (setq begin (point)))
1323 (while (and (eq (preceding-char) ?\s)
1325 (delete-backward-char 1)))))))
1326 (widget-specify-secret field))
1327 (widget-apply field :notify field))))
1329 ;;; Widget Functions
1331 ;; These functions are used in the definition of multiple widgets.
1333 (defun widget-parent-action (widget &optional event)
1334 "Tell :parent of WIDGET to handle the :action.
1335 Optional EVENT is the event that triggered the action."
1336 (widget-apply (widget-get widget :parent) :action event))
1338 (defun widget-children-value-delete (widget)
1339 "Delete all :children and :buttons in WIDGET."
1340 (mapc 'widget-delete (widget-get widget :children))
1341 (widget-put widget :children nil)
1342 (mapc 'widget-delete (widget-get widget :buttons))
1343 (widget-put widget :buttons nil))
1345 (defun widget-children-validate (widget)
1346 "All the :children must be valid."
1347 (let ((children (widget-get widget :children))
1349 (while (and children (not found))
1350 (setq child (car children)
1351 children (cdr children)
1352 found (widget-apply child :validate)))
1355 (defun widget-child-value-get (widget)
1356 "Get the value of the first member of :children in WIDGET."
1357 (widget-value (car (widget-get widget :children))))
1359 (defun widget-child-value-inline (widget)
1360 "Get the inline value of the first member of :children in WIDGET."
1361 (widget-apply (car (widget-get widget :children)) :value-inline))
1363 (defun widget-child-validate (widget)
1364 "The result of validating the first member of :children in WIDGET."
1365 (widget-apply (car (widget-get widget :children)) :validate))
1367 (defun widget-type-value-create (widget)
1368 "Convert and instantiate the value of the :type attribute of WIDGET.
1369 Store the newly created widget in the :children attribute.
1371 The value of the :type attribute should be an unconverted widget type."
1372 (let ((value (widget-get widget :value))
1373 (type (widget-get widget :type)))
1374 (widget-put widget :children
1375 (list (widget-create-child-value widget
1376 (widget-convert type)
1379 (defun widget-type-default-get (widget)
1380 "Get default value from the :type attribute of WIDGET.
1382 The value of the :type attribute should be an unconverted widget type."
1383 (widget-default-get (widget-convert (widget-get widget :type))))
1385 (defun widget-type-match (widget value)
1386 "Non-nil if the :type value of WIDGET matches VALUE.
1388 The value of the :type attribute should be an unconverted widget type."
1389 (widget-apply (widget-convert (widget-get widget :type)) :match value))
1391 (defun widget-types-copy (widget)
1392 "Copy :args as widget types in WIDGET."
1393 (widget-put widget :args (mapcar 'widget-copy (widget-get widget :args)))
1396 ;; Made defsubst to speed up face editor creation.
1397 (defsubst widget-types-convert-widget (widget)
1398 "Convert :args as widget types in WIDGET."
1399 (widget-put widget :args (mapcar 'widget-convert (widget-get widget :args)))
1402 (defun widget-value-convert-widget (widget)
1403 "Initialize :value from :args in WIDGET."
1404 (let ((args (widget-get widget :args)))
1406 (widget-put widget :value (car args))
1407 ;; Don't convert :value here, as this is done in `widget-convert'.
1408 ;; (widget-put widget :value (widget-apply widget
1409 ;; :value-to-internal (car args)))
1410 (widget-put widget :args nil)))
1413 (defun widget-value-value-get (widget)
1414 "Return the :value property of WIDGET."
1415 (widget-get widget :value))
1417 ;;; The `default' Widget.
1419 (define-widget 'default nil
1420 "Basic widget other widgets are derived from."
1421 :value-to-internal (lambda (widget value) value)
1422 :value-to-external (lambda (widget value) value)
1423 :button-prefix 'widget-button-prefix
1424 :button-suffix 'widget-button-suffix
1425 :complete 'widget-default-complete
1426 :create 'widget-default-create
1429 :format-handler 'widget-default-format-handler
1430 :button-face-get 'widget-default-button-face-get
1431 :mouse-face-get 'widget-default-mouse-face-get
1432 :sample-face-get 'widget-default-sample-face-get
1433 :delete 'widget-default-delete
1435 :value-set 'widget-default-value-set
1436 :value-inline 'widget-default-value-inline
1437 :value-delete 'ignore
1438 :default-get 'widget-default-default-get
1439 :menu-tag-get 'widget-default-menu-tag-get
1441 :active 'widget-default-active
1442 :activate 'widget-specify-active
1443 :deactivate 'widget-default-deactivate
1444 :mouse-down-action #'ignore
1445 :action 'widget-default-action
1446 :notify 'widget-default-notify
1447 :prompt-value 'widget-default-prompt-value)
1449 (defun widget-default-complete (widget)
1450 "Call the value of the :complete-function property of WIDGET.
1451 If that does not exist, call the value of `widget-complete-field'."
1452 (call-interactively (or (widget-get widget :complete-function)
1453 widget-complete-field)))
1455 (defun widget-default-create (widget)
1456 "Create WIDGET at point in the current buffer."
1457 (widget-specify-insert
1458 (let ((from (point))
1459 button-begin button-end
1460 sample-begin sample-end
1463 (insert (widget-get widget :format))
1465 ;; Parse escapes in format.
1466 (while (re-search-forward "%\\(.\\)" nil t)
1467 (let ((escape (char-after (match-beginning 1))))
1468 (delete-backward-char 2)
1469 (cond ((eq escape ?%)
1472 (setq button-begin (point))
1473 (insert (widget-get-indirect widget :button-prefix)))
1475 (insert (widget-get-indirect widget :button-suffix))
1476 (setq button-end (point)))
1478 (setq sample-begin (point)))
1480 (setq sample-end (point)))
1482 (when (widget-get widget :indent)
1484 (insert-char ?\s (widget-get widget :indent))))
1486 (let ((image (widget-get widget :tag-glyph))
1487 (tag (widget-get widget :tag)))
1489 (widget-image-insert widget (or tag "image") image))
1493 (princ (widget-get widget :value)
1494 (current-buffer))))))
1496 (let ((doc (widget-get widget :doc)))
1498 (setq doc-begin (point))
1500 (while (eq (preceding-char) ?\n)
1501 (delete-backward-char 1))
1503 (setq doc-end (point)))))
1505 (widget-add-documentation-string-button widget))
1507 (if (and button-begin (not button-end))
1508 (widget-apply widget :value-create)
1509 (setq value-pos (point))))
1511 (widget-apply widget :format-handler escape)))))
1512 ;; Specify button, sample, and doc, and insert value.
1513 (and button-begin button-end
1514 (widget-specify-button widget button-begin button-end))
1515 (and sample-begin sample-end
1516 (widget-specify-sample widget sample-begin sample-end))
1517 (and doc-begin doc-end
1518 (widget-specify-doc widget doc-begin doc-end))
1520 (goto-char value-pos)
1521 (widget-apply widget :value-create)))
1522 (let ((from (point-min-marker))
1523 (to (point-max-marker)))
1524 (set-marker-insertion-type from t)
1525 (set-marker-insertion-type to nil)
1526 (widget-put widget :from from)
1527 (widget-put widget :to to)))
1528 (widget-clear-undo))
1530 (defun widget-default-format-handler (widget escape)
1531 (error "Unknown escape `%c'" escape))
1533 (defun widget-default-button-face-get (widget)
1534 ;; Use :button-face or widget-button-face
1535 (or (widget-get widget :button-face)
1536 (let ((parent (widget-get widget :parent)))
1538 (widget-apply parent :button-face-get)
1539 widget-button-face))))
1541 (defun widget-default-mouse-face-get (widget)
1542 ;; Use :mouse-face or widget-mouse-face
1543 (or (widget-get widget :mouse-face)
1544 (let ((parent (widget-get widget :parent)))
1546 (widget-apply parent :mouse-face-get)
1547 widget-mouse-face))))
1549 (defun widget-default-sample-face-get (widget)
1550 ;; Use :sample-face.
1551 (widget-get widget :sample-face))
1553 (defun widget-default-delete (widget)
1554 "Remove widget from the buffer."
1555 (let ((from (widget-get widget :from))
1556 (to (widget-get widget :to))
1557 (inactive-overlay (widget-get widget :inactive))
1558 (button-overlay (widget-get widget :button-overlay))
1559 (sample-overlay (widget-get widget :sample-overlay))
1560 (doc-overlay (widget-get widget :doc-overlay))
1561 (inhibit-modification-hooks t)
1562 (inhibit-read-only t))
1563 (widget-apply widget :value-delete)
1564 (widget-children-value-delete widget)
1565 (when inactive-overlay
1566 (delete-overlay inactive-overlay))
1567 (when button-overlay
1568 (delete-overlay button-overlay))
1569 (when sample-overlay
1570 (delete-overlay sample-overlay))
1572 (delete-overlay doc-overlay))
1574 ;; Kludge: this doesn't need to be true for empty formats.
1575 (delete-region from to))
1576 (set-marker from nil)
1577 (set-marker to nil))
1578 (widget-clear-undo))
1580 (defun widget-default-value-set (widget value)
1581 "Recreate widget with new value."
1582 (let* ((old-pos (point))
1583 (from (copy-marker (widget-get widget :from)))
1584 (to (copy-marker (widget-get widget :to)))
1585 (offset (if (and (<= from old-pos) (<= old-pos to))
1586 (if (>= old-pos (1- to))
1588 (- old-pos from)))))
1589 ;;??? Bug: this ought to insert the new value before deleting the old one,
1590 ;; so that markers on either side of the value automatically
1591 ;; stay on the same side. -- rms.
1593 (goto-char (widget-get widget :from))
1594 (widget-apply widget :delete)
1595 (widget-put widget :value value)
1596 (widget-apply widget :create))
1599 (goto-char (+ (widget-get widget :to) offset 1))
1600 (goto-char (min (+ from offset) (1- (widget-get widget :to))))))))
1602 (defun widget-default-value-inline (widget)
1603 "Wrap value in a list unless it is inline."
1604 (if (widget-get widget :inline)
1605 (widget-value widget)
1606 (list (widget-value widget))))
1608 (defun widget-default-default-get (widget)
1610 (widget-get widget :value))
1612 (defun widget-default-menu-tag-get (widget)
1613 "Use tag or value for menus."
1614 (or (widget-get widget :menu-tag)
1615 (widget-get widget :tag)
1616 (widget-princ-to-string (widget-get widget :value))))
1618 (defun widget-default-active (widget)
1619 "Return t if this widget is active (user modifiable)."
1620 (or (widget-get widget :always-active)
1621 (and (not (widget-get widget :inactive))
1622 (let ((parent (widget-get widget :parent)))
1624 (widget-apply parent :active))))))
1626 (defun widget-default-deactivate (widget)
1627 "Make WIDGET inactive for user modifications."
1628 (widget-specify-inactive widget
1629 (widget-get widget :from)
1630 (widget-get widget :to)))
1632 (defun widget-default-action (widget &optional event)
1633 "Notify the parent when a widget changes."
1634 (let ((parent (widget-get widget :parent)))
1636 (widget-apply parent :notify widget event))))
1638 (defun widget-default-notify (widget child &optional event)
1639 "Pass notification to parent."
1640 (widget-default-action widget event))
1642 (defun widget-default-prompt-value (widget prompt value unbound)
1643 "Read an arbitrary value."
1644 (eval-minibuffer prompt))
1646 (defun widget-docstring (widget)
1647 "Return the documentation string specificied by WIDGET, or nil if none.
1648 If WIDGET has a `:doc' property, that specifies the documentation string.
1649 Otherwise, try the `:documentation-property' property. If this
1650 is a function, call it with the widget's value as an argument; if
1651 it is a symbol, use this symbol together with the widget's value
1652 as the argument to `documentation-property'."
1653 (let ((doc (or (widget-get widget :doc)
1654 (let ((doc-prop (widget-get widget :documentation-property))
1655 (value (widget-get widget :value)))
1656 (cond ((functionp doc-prop)
1657 (funcall doc-prop value))
1659 (documentation-property value doc-prop)))))))
1660 (when (and (stringp doc) (> (length doc) 0))
1661 ;; Remove any redundant `*' in the beginning.
1662 (when (eq (aref doc 0) ?*)
1663 (setq doc (substring doc 1)))
1664 ;; Remove trailing newlines.
1665 (when (string-match "\n+\\'" doc)
1666 (setq doc (substring doc 0 (match-beginning 0))))
1669 ;;; The `item' Widget.
1671 (define-widget 'item 'default
1672 "Constant items for inclusion in other widgets."
1673 :convert-widget 'widget-value-convert-widget
1674 :value-create 'widget-item-value-create
1675 :value-delete 'ignore
1676 :value-get 'widget-value-value-get
1677 :match 'widget-item-match
1678 :match-inline 'widget-item-match-inline
1679 :action 'widget-item-action
1682 (defun widget-item-value-create (widget)
1683 "Insert the printed representation of the value."
1684 (princ (widget-get widget :value) (current-buffer)))
1686 (defun widget-item-match (widget value)
1687 ;; Match if the value is the same.
1688 (equal (widget-get widget :value) value))
1690 (defun widget-item-match-inline (widget values)
1691 ;; Match if the value is the same.
1692 (let ((value (widget-get widget :value)))
1694 (<= (length value) (length values))
1695 (let ((head (widget-sublist values 0 (length value))))
1696 (and (equal head value)
1697 (cons head (widget-sublist values (length value))))))))
1699 (defun widget-sublist (list start &optional end)
1700 "Return the sublist of LIST from START to END.
1701 If END is omitted, it defaults to the length of LIST."
1702 (if (> start 0) (setq list (nthcdr start list)))
1704 (unless (<= end start)
1705 (setq list (copy-sequence list))
1706 (setcdr (nthcdr (- end start 1) list) nil)
1708 (copy-sequence list)))
1710 (defun widget-item-action (widget &optional event)
1711 ;; Just notify itself.
1712 (widget-apply widget :notify widget event))
1714 ;;; The `push-button' Widget.
1716 ;; (defcustom widget-push-button-gui t
1717 ;; "If non-nil, use GUI push buttons when available."
1721 ;; Cache already created GUI objects.
1722 ;; (defvar widget-push-button-cache nil)
1724 (defcustom widget-push-button-prefix "["
1725 "String used as prefix for buttons."
1727 :group 'widget-button)
1729 (defcustom widget-push-button-suffix "]"
1730 "String used as suffix for buttons."
1732 :group 'widget-button)
1734 (define-widget 'push-button 'item
1735 "A pushable button."
1738 :value-create 'widget-push-button-value-create
1741 (defun widget-push-button-value-create (widget)
1742 "Insert text representing the `on' and `off' states."
1743 (let* ((tag (or (widget-get widget :tag)
1744 (widget-get widget :value)))
1745 (tag-glyph (widget-get widget :tag-glyph))
1746 (text (concat widget-push-button-prefix
1747 tag widget-push-button-suffix)))
1749 (widget-image-insert widget text tag-glyph)
1752 ;; (defun widget-gui-action (widget)
1753 ;; "Apply :action for WIDGET."
1754 ;; (widget-apply-action widget (this-command-keys)))
1756 ;;; The `link' Widget.
1758 (defcustom widget-link-prefix "["
1759 "String used as prefix for links."
1761 :group 'widget-button)
1763 (defcustom widget-link-suffix "]"
1764 "String used as suffix for links."
1766 :group 'widget-button)
1768 (define-widget 'link 'item
1770 :button-prefix 'widget-link-prefix
1771 :button-suffix 'widget-link-suffix
1772 :follow-link 'mouse-face
1773 :help-echo "Follow the link."
1776 ;;; The `info-link' Widget.
1778 (define-widget 'info-link 'link
1779 "A link to an info file."
1780 :action 'widget-info-link-action)
1782 (defun widget-info-link-action (widget &optional event)
1783 "Open the info node specified by WIDGET."
1784 (info (widget-value widget)))
1786 ;;; The `url-link' Widget.
1788 (define-widget 'url-link 'link
1789 "A link to an www page."
1790 :action 'widget-url-link-action)
1792 (defun widget-url-link-action (widget &optional event)
1793 "Open the URL specified by WIDGET."
1794 (browse-url (widget-value widget)))
1796 ;;; The `function-link' Widget.
1798 (define-widget 'function-link 'link
1799 "A link to an Emacs function."
1800 :action 'widget-function-link-action)
1802 (defun widget-function-link-action (widget &optional event)
1803 "Show the function specified by WIDGET."
1804 (describe-function (widget-value widget)))
1806 ;;; The `variable-link' Widget.
1808 (define-widget 'variable-link 'link
1809 "A link to an Emacs variable."
1810 :action 'widget-variable-link-action)
1812 (defun widget-variable-link-action (widget &optional event)
1813 "Show the variable specified by WIDGET."
1814 (describe-variable (widget-value widget)))
1816 ;;; The `file-link' Widget.
1818 (define-widget 'file-link 'link
1820 :action 'widget-file-link-action)
1822 (defun widget-file-link-action (widget &optional event)
1823 "Find the file specified by WIDGET."
1824 (find-file (widget-value widget)))
1826 ;;; The `emacs-library-link' Widget.
1828 (define-widget 'emacs-library-link 'link
1829 "A link to an Emacs Lisp library file."
1830 :action 'widget-emacs-library-link-action)
1832 (defun widget-emacs-library-link-action (widget &optional event)
1833 "Find the Emacs library file specified by WIDGET."
1834 (find-file (locate-library (widget-value widget))))
1836 ;;; The `emacs-commentary-link' Widget.
1838 (define-widget 'emacs-commentary-link 'link
1839 "A link to Commentary in an Emacs Lisp library file."
1840 :action 'widget-emacs-commentary-link-action)
1842 (defun widget-emacs-commentary-link-action (widget &optional event)
1843 "Find the Commentary section of the Emacs file specified by WIDGET."
1844 (finder-commentary (widget-value widget)))
1846 ;;; The `editable-field' Widget.
1848 (define-widget 'editable-field 'default
1849 "An editable text field.
1850 Note: In an `editable-field' widget, the `%v' escape must be preceded
1851 by some other text in the `:format' string (if specified)."
1852 :convert-widget 'widget-value-convert-widget
1853 :keymap widget-field-keymap
1855 :help-echo "M-TAB: complete field; RET: enter value"
1857 :prompt-internal 'widget-field-prompt-internal
1858 :prompt-history 'widget-field-history
1859 :prompt-value 'widget-field-prompt-value
1860 :action 'widget-field-action
1861 :validate 'widget-field-validate
1863 :error "Field's value doesn't match allowed forms"
1864 :value-create 'widget-field-value-create
1865 :value-delete 'widget-field-value-delete
1866 :value-get 'widget-field-value-get
1867 :match 'widget-field-match)
1869 (defvar widget-field-history nil
1870 "History of field minibuffer edits.")
1872 (defun widget-field-prompt-internal (widget prompt initial history)
1873 "Read string for WIDGET prompting with PROMPT.
1874 INITIAL is the initial input and HISTORY is a symbol containing
1876 (read-string prompt initial history))
1878 (defun widget-field-prompt-value (widget prompt value unbound)
1879 "Prompt for a string."
1880 (widget-apply widget
1882 (widget-apply widget
1883 :prompt-internal prompt
1885 (cons (widget-apply widget
1886 :value-to-internal value)
1888 (widget-get widget :prompt-history))))
1890 (defvar widget-edit-functions nil)
1892 (defun widget-field-action (widget &optional event)
1893 "Move to next field."
1895 (run-hook-with-args 'widget-edit-functions widget))
1897 (defun widget-field-validate (widget)
1898 "Valid if the content matches `:valid-regexp'."
1899 (unless (string-match (widget-get widget :valid-regexp)
1900 (widget-apply widget :value-get))
1903 (defun widget-field-value-create (widget)
1904 "Create an editable text field."
1905 (let ((size (widget-get widget :size))
1906 (value (widget-get widget :value))
1908 ;; This is changed to a real overlay in `widget-setup'. We
1909 ;; need the end points to behave differently until
1910 ;; `widget-setup' is called.
1911 (overlay (cons (make-marker) (make-marker))))
1912 (widget-put widget :field-overlay overlay)
1915 (< (length value) size)
1916 (insert-char ?\s (- size (length value))))
1917 (unless (memq widget widget-field-list)
1918 (setq widget-field-new (cons widget widget-field-new)))
1919 (move-marker (cdr overlay) (point))
1920 (set-marker-insertion-type (cdr overlay) nil)
1923 (move-marker (car overlay) from)
1924 (set-marker-insertion-type (car overlay) t)))
1926 (defun widget-field-value-delete (widget)
1927 "Remove the widget from the list of active editing fields."
1928 (setq widget-field-list (delq widget widget-field-list))
1929 (setq widget-field-new (delq widget widget-field-new))
1930 ;; These are nil if the :format string doesn't contain `%v'.
1931 (let ((overlay (widget-get widget :field-overlay)))
1932 (when (overlayp overlay)
1933 (delete-overlay overlay))))
1935 (defun widget-field-value-get (widget)
1936 "Return current text in editing field."
1937 (let ((from (widget-field-start widget))
1938 (to (widget-field-end widget))
1939 (buffer (widget-field-buffer widget))
1940 (size (widget-get widget :size))
1941 (secret (widget-get widget :secret))
1942 (old (current-buffer)))
1949 (eq (char-after (1- to)) ?\s))
1951 (let ((result (buffer-substring-no-properties from to)))
1954 (while (< (+ from index) to)
1956 (get-char-property (+ from index) 'secret))
1957 (setq index (1+ index)))))
1960 (widget-get widget :value))))
1962 (defun widget-field-match (widget value)
1963 ;; Match any string.
1966 ;;; The `text' Widget.
1968 (define-widget 'text 'editable-field
1969 "A multiline text area."
1970 :keymap widget-text-keymap)
1972 ;;; The `menu-choice' Widget.
1974 (define-widget 'menu-choice 'default
1975 "A menu of options."
1976 :convert-widget 'widget-types-convert-widget
1977 :copy 'widget-types-copy
1978 :format "%[%t%]: %v"
1981 :void '(item :format "invalid (%t)\n")
1982 :value-create 'widget-choice-value-create
1983 :value-get 'widget-child-value-get
1984 :value-inline 'widget-child-value-inline
1985 :default-get 'widget-choice-default-get
1986 :mouse-down-action 'widget-choice-mouse-down-action
1987 :action 'widget-choice-action
1988 :error "Make a choice"
1989 :validate 'widget-choice-validate
1990 :match 'widget-choice-match
1991 :match-inline 'widget-choice-match-inline)
1993 (defun widget-choice-value-create (widget)
1994 "Insert the first choice that matches the value."
1995 (let ((value (widget-get widget :value))
1996 (args (widget-get widget :args))
1997 (explicit (widget-get widget :explicit-choice))
2001 ;; If the user specified the choice for this value,
2002 ;; respect that choice.
2003 (widget-put widget :children (list (widget-create-child-value
2004 widget explicit value)))
2005 (widget-put widget :choice explicit)
2006 (widget-put widget :explicit-choice nil))
2008 (setq current (car args)
2010 (when (widget-apply current :match value)
2011 (widget-put widget :children (list (widget-create-child-value
2012 widget current value)))
2013 (widget-put widget :choice current)
2017 (let ((void (widget-get widget :void)))
2018 (widget-put widget :children (list (widget-create-child-and-convert
2019 widget void :value value)))
2020 (widget-put widget :choice void))))))
2022 (defun widget-choice-default-get (widget)
2023 ;; Get default for the first choice.
2024 (widget-default-get (car (widget-get widget :args))))
2026 (defcustom widget-choice-toggle nil
2027 "If non-nil, a binary choice will just toggle between the values.
2028 Otherwise, the user will explicitly have to choose between the values
2029 when he invoked the menu."
2033 (defun widget-choice-mouse-down-action (widget &optional event)
2034 ;; Return non-nil if we need a menu.
2035 (let ((args (widget-get widget :args))
2036 (old (widget-get widget :choice)))
2037 (cond ((not (display-popup-menus-p))
2038 ;; No place to pop up a menu.
2040 ((< (length args) 2)
2041 ;; Empty or singleton list, just return the value.
2043 ((> (length args) widget-menu-max-size)
2044 ;; Too long, prompt.
2046 ((> (length args) 2)
2047 ;; Reasonable sized list, use menu.
2049 ((and widget-choice-toggle (memq old args))
2053 ;; Ask which of the two.
2056 (defun widget-choice-action (widget &optional event)
2058 (let ((args (widget-get widget :args))
2059 (old (widget-get widget :choice))
2060 (tag (widget-apply widget :menu-tag-get))
2061 (completion-ignore-case (widget-get widget :case-fold))
2064 ;; Remember old value.
2065 (if (and old (not (widget-apply widget :validate)))
2066 (let* ((external (widget-value widget))
2067 (internal (widget-apply old :value-to-internal external)))
2068 (widget-put old :value internal)))
2071 (cond ((= (length args) 0)
2073 ((= (length args) 1)
2075 ((and widget-choice-toggle
2078 (if (eq old (nth 0 args))
2083 (setq current (car args)
2086 (cons (cons (widget-apply current :menu-tag-get)
2089 (setq this-explicit t)
2090 (widget-choose tag (reverse choices) event))))
2092 ;; If this was an explicit user choice, record the choice,
2093 ;; so that widget-choice-value-create will respect it.
2095 (widget-put widget :explicit-choice current))
2096 (widget-value-set widget (widget-default-get current))
2098 (widget-apply widget :notify widget event)))
2099 (run-hook-with-args 'widget-edit-functions widget))
2101 (defun widget-choice-validate (widget)
2102 ;; Valid if we have made a valid choice.
2103 (if (eq (widget-get widget :void) (widget-get widget :choice))
2105 (widget-apply (car (widget-get widget :children)) :validate)))
2107 (defun widget-choice-match (widget value)
2108 ;; Matches if one of the choices matches.
2109 (let ((args (widget-get widget :args))
2111 (while (and args (not found))
2112 (setq current (car args)
2114 found (widget-apply current :match value)))
2117 (defun widget-choice-match-inline (widget values)
2118 ;; Matches if one of the choices matches.
2119 (let ((args (widget-get widget :args))
2121 (while (and args (null found))
2122 (setq current (car args)
2124 found (widget-match-inline current values)))
2127 ;;; The `toggle' Widget.
2129 (define-widget 'toggle 'item
2130 "Toggle between two states."
2132 :value-create 'widget-toggle-value-create
2133 :action 'widget-toggle-action
2134 :match (lambda (widget value) t)
2138 (defun widget-toggle-value-create (widget)
2139 "Insert text representing the `on' and `off' states."
2140 (if (widget-value widget)
2141 (let ((image (widget-get widget :on-glyph)))
2142 (and (display-graphic-p)
2144 (not (eq (car image) 'image))
2145 (widget-put widget :on-glyph (setq image (eval image))))
2146 (widget-image-insert widget
2147 (widget-get widget :on)
2149 (let ((image (widget-get widget :off-glyph)))
2150 (and (display-graphic-p)
2152 (not (eq (car image) 'image))
2153 (widget-put widget :off-glyph (setq image (eval image))))
2154 (widget-image-insert widget (widget-get widget :off) image))))
2156 (defun widget-toggle-action (widget &optional event)
2158 (widget-value-set widget (not (widget-value widget)))
2159 (widget-apply widget :notify widget event)
2160 (run-hook-with-args 'widget-edit-functions widget))
2162 ;;; The `checkbox' Widget.
2164 (define-widget 'checkbox 'toggle
2165 "A checkbox toggle."
2170 ;; We could probably do the same job as the images using single
2171 ;; space characters in a boxed face with a stretch specification to
2172 ;; make them square.
2173 :on-glyph '(create-image "\300\300\141\143\067\076\034\030"
2174 'xbm t :width 8 :height 8
2175 :background "grey75" ; like default mode line
2180 :off-glyph '(create-image (make-string 8 0)
2181 'xbm t :width 8 :height 8
2182 :background "grey75"
2186 :help-echo "Toggle this item."
2187 :action 'widget-checkbox-action)
2189 (defun widget-checkbox-action (widget &optional event)
2190 "Toggle checkbox, notify parent, and set active state of sibling."
2191 (widget-toggle-action widget event)
2192 (let ((sibling (widget-get-sibling widget)))
2194 (if (widget-value widget)
2195 (widget-apply sibling :activate)
2196 (widget-apply sibling :deactivate))
2197 (widget-clear-undo))))
2199 ;;; The `checklist' Widget.
2201 (define-widget 'checklist 'default
2202 "A multiple choice widget."
2203 :convert-widget 'widget-types-convert-widget
2204 :copy 'widget-types-copy
2207 :entry-format "%b %v"
2209 :value-create 'widget-checklist-value-create
2210 :value-get 'widget-checklist-value-get
2211 :validate 'widget-checklist-validate
2212 :match 'widget-checklist-match
2213 :match-inline 'widget-checklist-match-inline)
2215 (defun widget-checklist-value-create (widget)
2216 ;; Insert all values
2217 (let ((alist (widget-checklist-match-find widget (widget-get widget :value)))
2218 (args (widget-get widget :args)))
2220 (widget-checklist-add-item widget (car args) (assq (car args) alist))
2221 (setq args (cdr args)))
2222 (widget-put widget :children (nreverse (widget-get widget :children)))))
2224 (defun widget-checklist-add-item (widget type chosen)
2225 "Create checklist item in WIDGET of type TYPE.
2226 If the item is checked, CHOSEN is a cons whose cdr is the value."
2227 (and (eq (preceding-char) ?\n)
2228 (widget-get widget :indent)
2229 (insert-char ?\s (widget-get widget :indent)))
2230 (widget-specify-insert
2231 (let* ((children (widget-get widget :children))
2232 (buttons (widget-get widget :buttons))
2233 (button-args (or (widget-get type :sibling-args)
2234 (widget-get widget :button-args)))
2237 (insert (widget-get widget :entry-format))
2239 ;; Parse % escapes in format.
2240 (while (re-search-forward "%\\([bv%]\\)" nil t)
2241 (let ((escape (char-after (match-beginning 1))))
2242 (delete-backward-char 2)
2243 (cond ((eq escape ?%)
2246 (setq button (apply 'widget-create-child-and-convert
2248 :value (not (null chosen))
2253 (let ((child (widget-create-child widget type)))
2254 (widget-apply child :deactivate)
2256 ((widget-get type :inline)
2257 (widget-create-child-value
2258 widget type (cdr chosen)))
2260 (widget-create-child-value
2261 widget type (car (cdr chosen)))))))
2263 (error "Unknown escape `%c'" escape)))))
2264 ;; Update properties.
2265 (and button child (widget-put child :button button))
2266 (and button (widget-put widget :buttons (cons button buttons)))
2267 (and child (widget-put widget :children (cons child children))))))
2269 (defun widget-checklist-match (widget values)
2270 ;; All values must match a type in the checklist.
2272 (null (cdr (widget-checklist-match-inline widget values)))))
2274 (defun widget-checklist-match-inline (widget values)
2275 ;; Find the values which match a type in the checklist.
2276 (let ((greedy (widget-get widget :greedy))
2277 (args (copy-sequence (widget-get widget :args)))
2280 (let ((answer (widget-checklist-match-up args values)))
2282 (let ((vals (widget-match-inline answer values)))
2283 (setq found (append found (car vals))
2285 args (delq answer args))))
2287 (setq rest (append rest (list (car values)))
2288 values (cdr values)))
2290 (setq rest (append rest values)
2294 (defun widget-checklist-match-find (widget vals)
2295 "Find the vals which match a type in the checklist.
2296 Return an alist of (TYPE MATCH)."
2297 (let ((greedy (widget-get widget :greedy))
2298 (args (copy-sequence (widget-get widget :args)))
2301 (let ((answer (widget-checklist-match-up args vals)))
2303 (let ((match (widget-match-inline answer vals)))
2304 (setq found (cons (cons answer (car match)) found)
2306 args (delq answer args))))
2308 (setq vals (cdr vals)))
2313 (defun widget-checklist-match-up (args vals)
2314 "Return the first type from ARGS that matches VALS."
2315 (let (current found)
2316 (while (and args (null found))
2317 (setq current (car args)
2319 found (widget-match-inline current vals)))
2323 (defun widget-checklist-value-get (widget)
2324 ;; The values of all selected items.
2325 (let ((children (widget-get widget :children))
2328 (setq child (car children)
2329 children (cdr children))
2330 (if (widget-value (widget-get child :button))
2331 (setq result (append result (widget-apply child :value-inline)))))
2334 (defun widget-checklist-validate (widget)
2335 ;; Ticked chilren must be valid.
2336 (let ((children (widget-get widget :children))
2338 (while (and children (not found))
2339 (setq child (car children)
2340 children (cdr children)
2341 button (widget-get child :button)
2342 found (and (widget-value button)
2343 (widget-apply child :validate))))
2346 ;;; The `option' Widget
2348 (define-widget 'option 'checklist
2349 "An widget with an optional item."
2352 ;;; The `choice-item' Widget.
2354 (define-widget 'choice-item 'item
2355 "Button items that delegate action events to their parents."
2356 :action 'widget-parent-action
2357 :format "%[%t%] \n")
2359 ;;; The `radio-button' Widget.
2361 (define-widget 'radio-button 'toggle
2362 "A radio button for use in the `radio' widget."
2363 :notify 'widget-radio-button-notify
2370 :off-glyph "radio0")
2372 (defun widget-radio-button-notify (widget child &optional event)
2374 (widget-apply (widget-get widget :parent) :action widget event))
2376 ;;; The `radio-button-choice' Widget.
2378 (define-widget 'radio-button-choice 'default
2379 "Select one of multiple options."
2380 :convert-widget 'widget-types-convert-widget
2381 :copy 'widget-types-copy
2384 :entry-format "%b %v"
2385 :value-create 'widget-radio-value-create
2386 :value-get 'widget-radio-value-get
2387 :value-inline 'widget-radio-value-inline
2388 :value-set 'widget-radio-value-set
2389 :error "You must push one of the buttons"
2390 :validate 'widget-radio-validate
2391 :match 'widget-choice-match
2392 :match-inline 'widget-choice-match-inline
2393 :action 'widget-radio-action)
2395 (defun widget-radio-value-create (widget)
2396 ;; Insert all values
2397 (let ((args (widget-get widget :args))
2400 (setq arg (car args)
2402 (widget-radio-add-item widget arg))))
2404 (defun widget-radio-add-item (widget type)
2405 "Add to radio widget WIDGET a new radio button item of type TYPE."
2406 ;; (setq type (widget-convert type))
2407 (and (eq (preceding-char) ?\n)
2408 (widget-get widget :indent)
2409 (insert-char ?\s (widget-get widget :indent)))
2410 (widget-specify-insert
2411 (let* ((value (widget-get widget :value))
2412 (children (widget-get widget :children))
2413 (buttons (widget-get widget :buttons))
2414 (button-args (or (widget-get type :sibling-args)
2415 (widget-get widget :button-args)))
2417 (chosen (and (null (widget-get widget :choice))
2418 (widget-apply type :match value)))
2420 (insert (widget-get widget :entry-format))
2422 ;; Parse % escapes in format.
2423 (while (re-search-forward "%\\([bv%]\\)" nil t)
2424 (let ((escape (char-after (match-beginning 1))))
2425 (delete-backward-char 2)
2426 (cond ((eq escape ?%)
2429 (setq button (apply 'widget-create-child-and-convert
2430 widget 'radio-button
2431 :value (not (null chosen))
2434 (setq child (if chosen
2435 (widget-create-child-value
2437 (widget-create-child widget type)))
2439 (widget-apply child :deactivate)))
2441 (error "Unknown escape `%c'" escape)))))
2442 ;; Update properties.
2444 (widget-put widget :choice type))
2446 (widget-put child :button button)
2447 (widget-put widget :buttons (nconc buttons (list button))))
2449 (widget-put widget :children (nconc children (list child))))
2452 (defun widget-radio-value-get (widget)
2453 ;; Get value of the child widget.
2454 (let ((chosen (widget-radio-chosen widget)))
2455 (and chosen (widget-value chosen))))
2457 (defun widget-radio-chosen (widget)
2458 "Return the widget representing the chosen radio button."
2459 (let ((children (widget-get widget :children))
2462 (setq current (car children)
2463 children (cdr children))
2464 (when (widget-apply (widget-get current :button) :value-get)
2469 (defun widget-radio-value-inline (widget)
2470 ;; Get value of the child widget.
2471 (let ((children (widget-get widget :children))
2474 (setq current (car children)
2475 children (cdr children))
2476 (when (widget-apply (widget-get current :button) :value-get)
2477 (setq found (widget-apply current :value-inline)
2481 (defun widget-radio-value-set (widget value)
2482 ;; We can't just delete and recreate a radio widget, since children
2483 ;; can be added after the original creation and won't be recreated
2485 (let ((children (widget-get widget :children))
2488 (setq current (car children)
2489 children (cdr children))
2490 (let* ((button (widget-get current :button))
2491 (match (and (not found)
2492 (widget-apply current :match value))))
2493 (widget-value-set button match)
2496 (widget-value-set current value)
2497 (widget-apply current :activate))
2498 (widget-apply current :deactivate))
2499 (setq found (or found match))))))
2501 (defun widget-radio-validate (widget)
2502 ;; Valid if we have made a valid choice.
2503 (let ((children (widget-get widget :children))
2504 current found button)
2505 (while (and children (not found))
2506 (setq current (car children)
2507 children (cdr children)
2508 button (widget-get current :button)
2509 found (widget-apply button :value-get)))
2511 (widget-apply current :validate)
2514 (defun widget-radio-action (widget child event)
2515 ;; Check if a radio button was pressed.
2516 (let ((children (widget-get widget :children))
2517 (buttons (widget-get widget :buttons))
2519 (when (memq child buttons)
2521 (setq current (car children)
2522 children (cdr children))
2523 (let* ((button (widget-get current :button)))
2524 (cond ((eq child button)
2525 (widget-value-set button t)
2526 (widget-apply current :activate))
2527 ((widget-value button)
2528 (widget-value-set button nil)
2529 (widget-apply current :deactivate)))))))
2530 ;; Pass notification to parent.
2531 (widget-apply widget :notify child event))
2533 ;;; The `insert-button' Widget.
2535 (define-widget 'insert-button 'push-button
2536 "An insert button for the `editable-list' widget."
2538 :help-echo "Insert a new item into the list at this position."
2539 :action 'widget-insert-button-action)
2541 (defun widget-insert-button-action (widget &optional event)
2542 ;; Ask the parent to insert a new item.
2543 (widget-apply (widget-get widget :parent)
2544 :insert-before (widget-get widget :widget)))
2546 ;;; The `delete-button' Widget.
2548 (define-widget 'delete-button 'push-button
2549 "A delete button for the `editable-list' widget."
2551 :help-echo "Delete this item from the list."
2552 :action 'widget-delete-button-action)
2554 (defun widget-delete-button-action (widget &optional event)
2555 ;; Ask the parent to insert a new item.
2556 (widget-apply (widget-get widget :parent)
2557 :delete-at (widget-get widget :widget)))
2559 ;;; The `editable-list' Widget.
2561 ;; (defcustom widget-editable-list-gui nil
2562 ;; "If non-nil, use GUI push-buttons in editable list when available."
2566 (define-widget 'editable-list 'default
2567 "A variable list of widgets of the same type."
2568 :convert-widget 'widget-types-convert-widget
2569 :copy 'widget-types-copy
2572 :format-handler 'widget-editable-list-format-handler
2573 :entry-format "%i %d %v"
2574 :value-create 'widget-editable-list-value-create
2575 :value-get 'widget-editable-list-value-get
2576 :validate 'widget-children-validate
2577 :match 'widget-editable-list-match
2578 :match-inline 'widget-editable-list-match-inline
2579 :insert-before 'widget-editable-list-insert-before
2580 :delete-at 'widget-editable-list-delete-at)
2582 (defun widget-editable-list-format-handler (widget escape)
2583 ;; We recognize the insert button.
2584 ;; (let ((widget-push-button-gui widget-editable-list-gui))
2585 (cond ((eq escape ?i)
2586 (and (widget-get widget :indent)
2587 (insert-char ?\s (widget-get widget :indent)))
2588 (apply 'widget-create-child-and-convert
2589 widget 'insert-button
2590 (widget-get widget :append-button-args)))
2592 (widget-default-format-handler widget escape)))
2596 (defun widget-editable-list-value-create (widget)
2597 ;; Insert all values
2598 (let* ((value (widget-get widget :value))
2599 (type (nth 0 (widget-get widget :args)))
2601 (widget-put widget :value-pos (copy-marker (point)))
2602 (set-marker-insertion-type (widget-get widget :value-pos) t)
2604 (let ((answer (widget-match-inline type value)))
2606 (setq children (cons (widget-editable-list-entry-create
2608 (if (widget-get type :inline)
2615 (widget-put widget :children (nreverse children))))
2617 (defun widget-editable-list-value-get (widget)
2618 ;; Get value of the child widget.
2619 (apply 'append (mapcar (lambda (child) (widget-apply child :value-inline))
2620 (widget-get widget :children))))
2622 (defun widget-editable-list-match (widget value)
2623 ;; Value must be a list and all the members must match the type.
2625 (null (cdr (widget-editable-list-match-inline widget value)))))
2627 (defun widget-editable-list-match-inline (widget value)
2628 (let ((type (nth 0 (widget-get widget :args)))
2631 (while (and value ok)
2632 (let ((answer (widget-match-inline type value)))
2634 (setq found (append found (car answer))
2637 (cons found value)))
2639 (defun widget-editable-list-insert-before (widget before)
2640 ;; Insert a new child in the list of children.
2642 (let ((children (widget-get widget :children))
2643 (inhibit-read-only t)
2644 before-change-functions
2645 after-change-functions)
2647 (goto-char (widget-get before :entry-from)))
2649 (goto-char (widget-get widget :value-pos))))
2650 (let ((child (widget-editable-list-entry-create
2652 (when (< (widget-get child :entry-from) (widget-get widget :from))
2653 (set-marker (widget-get widget :from)
2654 (widget-get child :entry-from)))
2655 (if (eq (car children) before)
2656 (widget-put widget :children (cons child children))
2657 (while (not (eq (car (cdr children)) before))
2658 (setq children (cdr children)))
2659 (setcdr children (cons child (cdr children)))))))
2661 (widget-apply widget :notify widget))
2663 (defun widget-editable-list-delete-at (widget child)
2664 ;; Delete child from list of children.
2666 (let ((buttons (copy-sequence (widget-get widget :buttons)))
2668 (inhibit-read-only t)
2669 before-change-functions
2670 after-change-functions)
2672 (setq button (car buttons)
2673 buttons (cdr buttons))
2674 (when (eq (widget-get button :widget) child)
2676 :buttons (delq button (widget-get widget :buttons)))
2677 (widget-delete button))))
2678 (let ((entry-from (widget-get child :entry-from))
2679 (entry-to (widget-get child :entry-to))
2680 (inhibit-read-only t)
2681 before-change-functions
2682 after-change-functions)
2683 (widget-delete child)
2684 (delete-region entry-from entry-to)
2685 (set-marker entry-from nil)
2686 (set-marker entry-to nil))
2687 (widget-put widget :children (delq child (widget-get widget :children))))
2689 (widget-apply widget :notify widget))
2691 (defun widget-editable-list-entry-create (widget value conv)
2692 ;; Create a new entry to the list.
2693 (let ((type (nth 0 (widget-get widget :args)))
2694 ;; (widget-push-button-gui widget-editable-list-gui)
2695 child delete insert)
2696 (widget-specify-insert
2698 (and (widget-get widget :indent)
2699 (insert-char ?\s (widget-get widget :indent)))
2700 (insert (widget-get widget :entry-format)))
2701 ;; Parse % escapes in format.
2702 (while (re-search-forward "%\\(.\\)" nil t)
2703 (let ((escape (char-after (match-beginning 1))))
2704 (delete-backward-char 2)
2705 (cond ((eq escape ?%)
2708 (setq insert (apply 'widget-create-child-and-convert
2709 widget 'insert-button
2710 (widget-get widget :insert-button-args))))
2712 (setq delete (apply 'widget-create-child-and-convert
2713 widget 'delete-button
2714 (widget-get widget :delete-button-args))))
2717 (setq child (widget-create-child-value
2719 (setq child (widget-create-child-value
2720 widget type (widget-default-get type)))))
2722 (error "Unknown escape `%c'" escape)))))
2723 (let ((buttons (widget-get widget :buttons)))
2724 (if insert (push insert buttons))
2725 (if delete (push delete buttons))
2726 (widget-put widget :buttons buttons))
2727 (let ((entry-from (point-min-marker))
2728 (entry-to (point-max-marker)))
2729 (set-marker-insertion-type entry-from t)
2730 (set-marker-insertion-type entry-to nil)
2731 (widget-put child :entry-from entry-from)
2732 (widget-put child :entry-to entry-to)))
2733 (if insert (widget-put insert :widget child))
2734 (if delete (widget-put delete :widget child))
2737 ;;; The `group' Widget.
2739 (define-widget 'group 'default
2740 "A widget which groups other widgets inside."
2741 :convert-widget 'widget-types-convert-widget
2742 :copy 'widget-types-copy
2744 :value-create 'widget-group-value-create
2745 :value-get 'widget-editable-list-value-get
2746 :default-get 'widget-group-default-get
2747 :validate 'widget-children-validate
2748 :match 'widget-group-match
2749 :match-inline 'widget-group-match-inline)
2751 (defun widget-group-value-create (widget)
2752 ;; Create each component.
2753 (let ((args (widget-get widget :args))
2754 (value (widget-get widget :value))
2755 arg answer children)
2757 (setq arg (car args)
2759 answer (widget-match-inline arg value)
2761 (and (eq (preceding-char) ?\n)
2762 (widget-get widget :indent)
2763 (insert-char ?\s (widget-get widget :indent)))
2764 (push (cond ((null answer)
2765 (widget-create-child widget arg))
2766 ((widget-get arg :inline)
2767 (widget-create-child-value widget arg (car answer)))
2769 (widget-create-child-value widget arg (car (car answer)))))
2771 (widget-put widget :children (nreverse children))))
2773 (defun widget-group-default-get (widget)
2774 ;; Get the default of the components.
2775 (mapcar 'widget-default-get (widget-get widget :args)))
2777 (defun widget-group-match (widget values)
2778 ;; Match if the components match.
2780 (let ((match (widget-group-match-inline widget values)))
2781 (and match (null (cdr match))))))
2783 (defun widget-group-match-inline (widget vals)
2784 ;; Match if the components match.
2785 (let ((args (widget-get widget :args))
2786 argument answer found)
2788 (setq argument (car args)
2790 answer (widget-match-inline argument vals))
2792 (setq vals (cdr answer)
2793 found (append found (car answer)))
2797 (cons found vals))))
2799 ;;; The `visibility' Widget.
2801 (define-widget 'visibility 'item
2802 "An indicator and manipulator for hidden items."
2808 :value-create 'widget-visibility-value-create
2809 :action 'widget-toggle-action
2810 :match (lambda (widget value) t))
2812 (defun widget-visibility-value-create (widget)
2813 ;; Insert text representing the `on' and `off' states.
2814 (let ((on (widget-get widget :on))
2815 (off (widget-get widget :off)))
2817 (setq on (concat widget-push-button-prefix
2819 widget-push-button-suffix))
2822 (setq off (concat widget-push-button-prefix
2824 widget-push-button-suffix))
2826 (if (widget-value widget)
2827 (widget-image-insert widget on "down" "down-pushed")
2828 (widget-image-insert widget off "right" "right-pushed"))))
2830 ;;; The `documentation-link' Widget.
2832 ;; This is a helper widget for `documentation-string'.
2834 (define-widget 'documentation-link 'link
2835 "Link type used in documentation strings."
2837 :help-echo "Describe this symbol"
2838 :action 'widget-documentation-link-action)
2840 (defun widget-documentation-link-action (widget &optional event)
2841 "Display documentation for WIDGET's value. Ignore optional argument EVENT."
2842 (let* ((string (widget-get widget :value))
2843 (symbol (intern string)))
2844 (if (and (fboundp symbol) (boundp symbol))
2845 ;; If there are two doc strings, give the user a way to pick one.
2846 (apropos (concat "\\`" (regexp-quote string) "\\'"))
2847 (if (fboundp symbol)
2848 (describe-function symbol)
2849 (describe-variable symbol)))))
2851 (defcustom widget-documentation-links t
2852 "Add hyperlinks to documentation strings when non-nil."
2854 :group 'widget-documentation)
2856 (defcustom widget-documentation-link-regexp "`\\([^\n`' ]+\\)'"
2857 "Regexp for matching potential links in documentation strings.
2858 The first group should be the link itself."
2860 :group 'widget-documentation)
2862 (defcustom widget-documentation-link-p 'intern-soft
2863 "Predicate used to test if a string is useful as a link.
2864 The value should be a function. The function will be called with one
2865 argument, a string, and should return non-nil if there should be a
2866 link for that string."
2868 :options '(widget-documentation-link-p)
2869 :group 'widget-documentation)
2871 (defcustom widget-documentation-link-type 'documentation-link
2872 "Widget type used for links in documentation strings."
2874 :group 'widget-documentation)
2876 (defun widget-documentation-link-add (widget from to)
2877 (widget-specify-doc widget from to)
2878 (when widget-documentation-links
2879 (let ((regexp widget-documentation-link-regexp)
2880 (buttons (widget-get widget :buttons))
2881 (widget-mouse-face (default-value 'widget-mouse-face))
2882 (widget-button-face widget-documentation-face)
2883 (widget-button-pressed-face widget-documentation-face))
2886 (while (re-search-forward regexp to t)
2887 (let ((name (match-string 1))
2888 (begin (match-beginning 1))
2889 (end (match-end 1)))
2890 (when (funcall widget-documentation-link-p name)
2891 (push (widget-convert-button widget-documentation-link-type
2892 begin end :value name)
2894 (widget-put widget :buttons buttons)))
2895 (let ((indent (widget-get widget :indent)))
2896 (when (and indent (not (zerop indent)))
2899 (narrow-to-region from to)
2900 (goto-char (point-min))
2901 (while (search-forward "\n" nil t)
2902 (insert-char ?\s indent)))))))
2904 ;;; The `documentation-string' Widget.
2906 (define-widget 'documentation-string 'item
2907 "A documentation string."
2909 :action 'widget-documentation-string-action
2910 :value-create 'widget-documentation-string-value-create
2911 :visibility-widget 'visibility)
2913 (defun widget-documentation-string-value-create (widget)
2914 ;; Insert documentation string.
2915 (let ((doc (widget-value widget))
2916 (indent (widget-get widget :indent))
2917 (shown (widget-get (widget-get widget :parent) :documentation-shown))
2919 (if (string-match "\n" doc)
2920 (let ((before (substring doc 0 (match-beginning 0)))
2921 (after (substring doc (match-beginning 0)))
2923 (when (and indent (not (zerop indent)))
2924 (insert-char ?\s indent))
2926 (widget-documentation-link-add widget start (point))
2928 (widget-create-child-and-convert
2929 widget (widget-get widget :visibility-widget)
2930 :help-echo "Show or hide rest of the documentation."
2934 :action 'widget-parent-action
2937 (setq start (point))
2938 (when (and indent (not (zerop indent)))
2939 (insert-char ?\s indent))
2941 (widget-documentation-link-add widget start (point)))
2942 (widget-put widget :buttons (list button)))
2943 (when (and indent (not (zerop indent)))
2944 (insert-char ?\s indent))
2946 (widget-documentation-link-add widget start (point))))
2949 (defun widget-documentation-string-action (widget &rest ignore)
2950 ;; Toggle documentation.
2951 (let ((parent (widget-get widget :parent)))
2952 (widget-put parent :documentation-shown
2953 (not (widget-get parent :documentation-shown))))
2955 (widget-value-set widget (widget-value widget)))
2957 (defun widget-add-documentation-string-button (widget &rest args)
2958 "Insert a new `documentation-string' widget based on WIDGET.
2959 The new widget becomes a child of WIDGET, and is also added to
2960 its `:buttons' list. The documentation string is found from
2961 WIDGET using the function `widget-docstring'.
2962 Optional ARGS specifies additional keyword arguments for the
2963 `documentation-string' widget."
2964 (let ((doc (widget-docstring widget))
2965 (indent (widget-get widget :indent))
2966 (doc-indent (widget-get widget :documentation-indent)))
2968 (and (eq (preceding-char) ?\n)
2970 (insert-char ?\s indent))
2971 (unless (or (numberp doc-indent) (null doc-indent))
2972 (setq doc-indent 0))
2973 (widget-put widget :buttons
2974 (cons (apply 'widget-create-child-and-convert
2975 widget 'documentation-string
2977 (nconc args (list doc)))
2978 (widget-get widget :buttons))))))
2980 ;;; The Sexp Widgets.
2982 (define-widget 'const 'item
2983 "An immutable sexp."
2984 :prompt-value 'widget-const-prompt-value
2987 (defun widget-const-prompt-value (widget prompt value unbound)
2988 ;; Return the value of the const.
2989 (widget-value widget))
2991 (define-widget 'function-item 'const
2992 "An immutable function name."
2994 :documentation-property (lambda (symbol)
2996 (documentation symbol t)
2999 (define-widget 'variable-item 'const
3000 "An immutable variable name."
3002 :documentation-property 'variable-documentation)
3004 (define-widget 'other 'sexp
3005 "Matches any value, but doesn't let the user edit the value.
3006 This is useful as last item in a `choice' widget.
3007 You should use this widget type with a default value,
3008 as in (other DEFAULT) or (other :tag \"NAME\" DEFAULT).
3009 If the user selects this alternative, that specifies DEFAULT
3015 (defvar widget-string-prompt-value-history nil
3016 "History of input to `widget-string-prompt-value'.")
3018 (define-widget 'string 'editable-field
3021 :format "%{%t%}: %v"
3022 :complete-function 'ispell-complete-word
3023 :prompt-history 'widget-string-prompt-value-history)
3027 (defun widget-string-complete ()
3028 "Complete contents of string field.
3029 Completions are taken from the :completion-alist property of the
3030 widget. If that isn't a list, it's evalled and expected to yield a list."
3032 (let* ((prefix (buffer-substring-no-properties (widget-field-start widget)
3034 (completion-ignore-case (widget-get widget :completion-ignore-case))
3035 (alist (widget-get widget :completion-alist))
3036 (_ (unless (listp alist)
3037 (setq alist (eval alist))))
3038 (completion (try-completion prefix alist)))
3039 (cond ((eq completion t)
3040 (when completion-ignore-case
3041 ;; Replace field with completion in case its case is different.
3042 (delete-region (widget-field-start widget)
3043 (widget-field-end widget))
3044 (insert-and-inherit (car (assoc-string prefix alist t))))
3045 (message "Only match"))
3048 ((not (eq t (compare-strings prefix nil nil completion nil nil
3049 completion-ignore-case)))
3050 (when completion-ignore-case
3051 ;; Replace field with completion in case its case is different.
3052 (delete-region (widget-field-start widget)
3053 (widget-field-end widget))
3054 (insert-and-inherit completion)))
3056 (message "Making completion list...")
3057 (with-output-to-temp-buffer "*Completions*"
3058 (display-completion-list
3059 (all-completions prefix alist nil)))
3060 (message "Making completion list...done")))))
3062 (define-widget 'regexp 'string
3063 "A regular expression."
3064 :match 'widget-regexp-match
3065 :validate 'widget-regexp-validate
3066 ;; Doesn't work well with terminating newline.
3067 ;; :value-face 'widget-single-line-field
3070 (defun widget-regexp-match (widget value)
3071 ;; Match valid regexps.
3072 (and (stringp value)
3075 (string-match value ""))
3078 (defun widget-regexp-validate (widget)
3079 "Check that the value of WIDGET is a valid regexp."
3080 (condition-case data
3082 (string-match (widget-value widget) ""))
3083 (error (widget-put widget :error (error-message-string data))
3086 (define-widget 'file 'string
3088 It reads a file name from an editable text field."
3089 :complete-function 'widget-file-complete
3090 :prompt-value 'widget-file-prompt-value
3091 :format "%{%t%}: %v"
3092 ;; Doesn't work well with terminating newline.
3093 ;; :value-face 'widget-single-line-field
3096 (defun widget-file-complete ()
3097 "Perform completion on file name preceding point."
3099 (let* ((end (point))
3100 (beg (widget-field-start widget))
3101 (pattern (buffer-substring beg end))
3102 (name-part (file-name-nondirectory pattern))
3103 ;; I think defaulting to root is right
3104 ;; because these really should be absolute file names.
3105 (directory (or (file-name-directory pattern) "/"))
3106 (completion (file-name-completion name-part directory)))
3107 (cond ((eq completion t))
3109 (message "Can't find completion for \"%s\"" pattern)
3111 ((not (string= name-part completion))
3112 (delete-region beg end)
3113 (insert (expand-file-name completion directory)))
3115 (message "Making completion list...")
3116 (with-output-to-temp-buffer "*Completions*"
3117 (display-completion-list
3118 (sort (file-name-all-completions name-part directory)
3121 (message "Making completion list...%s" "done")))))
3123 (defun widget-file-prompt-value (widget prompt value unbound)
3124 ;; Read file from minibuffer.
3125 (abbreviate-file-name
3127 (read-file-name prompt)
3128 (let ((prompt2 (format "%s (default %s): " prompt value))
3129 (dir (file-name-directory value))
3130 (file (file-name-nondirectory value))
3131 (must-match (widget-get widget :must-match)))
3132 (read-file-name prompt2 dir nil must-match file)))))
3134 ;;;(defun widget-file-action (widget &optional event)
3135 ;;; ;; Read a file name from the minibuffer.
3136 ;;; (let* ((value (widget-value widget))
3137 ;;; (dir (file-name-directory value))
3138 ;;; (file (file-name-nondirectory value))
3139 ;;; (menu-tag (widget-apply widget :menu-tag-get))
3140 ;;; (must-match (widget-get widget :must-match))
3141 ;;; (answer (read-file-name (concat menu-tag " (default " value "): ")
3142 ;;; dir nil must-match file)))
3143 ;;; (widget-value-set widget (abbreviate-file-name answer))
3145 ;;; (widget-apply widget :notify widget event)))
3147 ;; Fixme: use file-name-as-directory.
3148 (define-widget 'directory 'file
3149 "A directory widget.
3150 It reads a directory name from an editable text field."
3153 (defvar widget-symbol-prompt-value-history nil
3154 "History of input to `widget-symbol-prompt-value'.")
3156 (define-widget 'symbol 'editable-field
3160 :format "%{%t%}: %v"
3161 :match (lambda (widget value) (symbolp value))
3162 :complete-function 'lisp-complete-symbol
3163 :prompt-internal 'widget-symbol-prompt-internal
3164 :prompt-match 'symbolp
3165 :prompt-history 'widget-symbol-prompt-value-history
3166 :value-to-internal (lambda (widget value)
3170 :value-to-external (lambda (widget value)
3175 (defun widget-symbol-prompt-internal (widget prompt initial history)
3176 ;; Read file from minibuffer.
3177 (let ((answer (completing-read prompt obarray
3178 (widget-get widget :prompt-match)
3179 nil initial history)))
3180 (if (and (stringp answer)
3181 (not (zerop (length answer))))
3183 (error "No value"))))
3185 (defvar widget-function-prompt-value-history nil
3186 "History of input to `widget-function-prompt-value'.")
3188 (define-widget 'function 'restricted-sexp
3190 :complete-function (lambda ()
3192 (lisp-complete-symbol 'fboundp))
3193 :prompt-value 'widget-field-prompt-value
3194 :prompt-internal 'widget-symbol-prompt-internal
3195 :prompt-match 'fboundp
3196 :prompt-history 'widget-function-prompt-value-history
3197 :action 'widget-field-action
3198 :match-alternatives '(functionp)
3199 :validate (lambda (widget)
3200 (unless (functionp (widget-value widget))
3201 (widget-put widget :error (format "Invalid function: %S"
3202 (widget-value widget)))
3207 (defvar widget-variable-prompt-value-history nil
3208 "History of input to `widget-variable-prompt-value'.")
3210 (define-widget 'variable 'symbol
3212 :prompt-match 'boundp
3213 :prompt-history 'widget-variable-prompt-value-history
3214 :complete-function (lambda ()
3216 (lisp-complete-symbol 'boundp))
3219 (define-widget 'coding-system 'symbol
3220 "A MULE coding-system."
3221 :format "%{%t%}: %v"
3222 :tag "Coding system"
3224 :prompt-history 'coding-system-value-history
3225 :prompt-value 'widget-coding-system-prompt-value
3226 :action 'widget-coding-system-action
3227 :complete-function (lambda ()
3229 (lisp-complete-symbol 'coding-system-p))
3230 :validate (lambda (widget)
3231 (unless (coding-system-p (widget-value widget))
3232 (widget-put widget :error (format "Invalid coding system: %S"
3233 (widget-value widget)))
3236 :prompt-match 'coding-system-p)
3238 (defun widget-coding-system-prompt-value (widget prompt value unbound)
3239 "Read coding-system from minibuffer."
3240 (if (widget-get widget :base-only)
3242 (completing-read (format "%s (default %s): " prompt value)
3243 (mapcar #'list (coding-system-list t)) nil nil nil
3244 coding-system-history))
3245 (read-coding-system (format "%s (default %s): " prompt value) value)))
3247 (defun widget-coding-system-action (widget &optional event)
3249 (widget-coding-system-prompt-value
3251 (widget-apply widget :menu-tag-get)
3252 (widget-value widget)
3254 (widget-value-set widget answer)
3255 (widget-apply widget :notify widget event)
3258 ;;; I'm not sure about what this is good for? KFS.
3259 (defvar widget-key-sequence-prompt-value-history nil
3260 "History of input to `widget-key-sequence-prompt-value'.")
3262 (defvar widget-key-sequence-default-value [ignore]
3263 "Default value for an empty key sequence.")
3265 (defvar widget-key-sequence-map
3266 (let ((map (make-sparse-keymap)))
3267 (set-keymap-parent map widget-field-keymap)
3268 (define-key map [(control ?q)] 'widget-key-sequence-read-event)
3271 (define-widget 'key-sequence 'restricted-sexp
3273 :prompt-value 'widget-field-prompt-value
3274 :prompt-internal 'widget-symbol-prompt-internal
3275 ; :prompt-match 'fboundp ;; What was this good for? KFS
3276 :prompt-history 'widget-key-sequence-prompt-value-history
3277 :action 'widget-field-action
3278 :match-alternatives '(stringp vectorp)
3279 :format "%{%t%}: %v"
3280 :validate 'widget-key-sequence-validate
3281 :value-to-internal 'widget-key-sequence-value-to-internal
3282 :value-to-external 'widget-key-sequence-value-to-external
3283 :value widget-key-sequence-default-value
3284 :keymap widget-key-sequence-map
3285 :help-echo "C-q: insert KEY, EVENT, or CODE; RET: enter value"
3286 :tag "Key sequence")
3288 (defun widget-key-sequence-read-event (ev)
3290 (let ((inhibit-quit t) quit-flag)
3291 (read-event "Insert KEY, EVENT, or CODE: "))))
3292 (let ((ev2 (and (memq 'down (event-modifiers ev))
3294 (tr (and (keymapp function-key-map)
3295 (lookup-key function-key-map (vector ev)))))
3296 (when (and (integerp ev)
3297 (or (and (<= ?0 ev) (< ev (+ ?0 (min 10 read-quoted-char-radix))))
3298 (and (<= ?a (downcase ev))
3299 (< (downcase ev) (+ ?a -10 (min 36 read-quoted-char-radix))))))
3300 (setq unread-command-events (cons ev unread-command-events)
3301 ev (read-quoted-char (format "Enter code (radix %d)" read-quoted-char-radix))
3303 (if (and (integerp ev) (not (characterp ev)))
3304 (insert (char-to-string ev)))) ;; throw invalid char error
3305 (setq ev (key-description (list ev)))
3307 (setq tr (key-description (list (aref tr 0))))
3308 (if (y-or-n-p (format "Key %s is translated to %s -- use %s? " ev tr tr))
3309 (setq ev tr ev2 nil)))
3310 (insert (if (= (char-before) ?\s) "" " ") ev " ")
3312 (insert (key-description (list ev2)) " "))))
3314 (defun widget-key-sequence-validate (widget)
3315 (unless (or (stringp (widget-value widget))
3316 (vectorp (widget-value widget)))
3317 (widget-put widget :error (format "Invalid key sequence: %S"
3318 (widget-value widget)))
3321 (defun widget-key-sequence-value-to-internal (widget value)
3322 (if (widget-apply widget :match value)
3323 (if (equal value widget-key-sequence-default-value)
3325 (key-description value))
3328 (defun widget-key-sequence-value-to-external (widget value)
3330 (if (string-match "\\`[[:space:]]*\\'" value)
3331 widget-key-sequence-default-value
3332 (read-kbd-macro value))
3336 (define-widget 'sexp 'editable-field
3337 "An arbitrary Lisp expression."
3338 :tag "Lisp expression"
3339 :format "%{%t%}: %v"
3341 :validate 'widget-sexp-validate
3342 :match (lambda (widget value) t)
3343 :value-to-internal 'widget-sexp-value-to-internal
3344 :value-to-external (lambda (widget value) (read value))
3345 :prompt-history 'widget-sexp-prompt-value-history
3346 :prompt-value 'widget-sexp-prompt-value)
3348 (defun widget-sexp-value-to-internal (widget value)
3349 ;; Use pp for printer representation.
3350 (let ((pp (if (symbolp value)
3351 (prin1-to-string value)
3352 (pp-to-string value))))
3353 (while (string-match "\n\\'" pp)
3354 (setq pp (substring pp 0 -1)))
3355 (if (or (string-match "\n\\'" pp)
3360 (defun widget-sexp-validate (widget)
3361 ;; Valid if we can read the string and there is no junk left after it.
3363 (insert (widget-apply widget :value-get))
3364 (goto-char (point-min))
3366 (condition-case data
3368 ;; Avoid a confusing end-of-file error.
3369 (skip-syntax-forward "\\s-")
3371 (setq err "Empty sexp -- use `nil'?")
3372 (unless (widget-apply widget :match (read (current-buffer)))
3373 (setq err (widget-get widget :type-error))))
3374 ;; Allow whitespace after expression.
3375 (skip-syntax-forward "\\s-")
3376 (if (and (not (eobp))
3378 (setq err (format "Junk at end of expression: %s"
3379 (buffer-substring (point)
3381 (end-of-file ; Avoid confusing error message.
3382 (setq err "Unbalanced sexp"))
3383 (error (setq err (error-message-string data))))
3386 (widget-put widget :error err)
3389 (defvar widget-sexp-prompt-value-history nil
3390 "History of input to `widget-sexp-prompt-value'.")
3392 (defun widget-sexp-prompt-value (widget prompt value unbound)
3393 ;; Read an arbitrary sexp.
3394 (let ((found (read-string prompt
3395 (if unbound nil (cons (prin1-to-string value) 0))
3396 (widget-get widget :prompt-history))))
3397 (let ((answer (read-from-string found)))
3398 (unless (= (cdr answer) (length found))
3399 (error "Junk at end of expression: %s"
3400 (substring found (cdr answer))))
3403 (define-widget 'restricted-sexp 'sexp
3404 "A Lisp expression restricted to values that match.
3405 To use this type, you must define :match or :match-alternatives."
3406 :type-error "The specified value is not valid"
3407 :match 'widget-restricted-sexp-match
3408 :value-to-internal (lambda (widget value)
3409 (if (widget-apply widget :match value)
3410 (prin1-to-string value)
3413 (defun widget-restricted-sexp-match (widget value)
3414 (let ((alternatives (widget-get widget :match-alternatives))
3416 (while (and alternatives (not matched))
3417 (if (cond ((functionp (car alternatives))
3418 (funcall (car alternatives) value))
3419 ((and (consp (car alternatives))
3420 (eq (car (car alternatives)) 'quote))
3421 (eq value (nth 1 (car alternatives)))))
3423 (setq alternatives (cdr alternatives)))
3426 (define-widget 'integer 'restricted-sexp
3430 :type-error "This field should contain an integer"
3431 :match-alternatives '(integerp))
3433 (define-widget 'number 'restricted-sexp
3434 "A number (floating point or integer)."
3437 :type-error "This field should contain a number (floating point or integer)"
3438 :match-alternatives '(numberp))
3440 (define-widget 'float 'restricted-sexp
3441 "A floating point number."
3442 :tag "Floating point number"
3444 :type-error "This field should contain a floating point number"
3445 :match-alternatives '(floatp))
3447 (define-widget 'character 'editable-field
3452 :format "%{%t%}: %v\n"
3453 :valid-regexp "\\`.\\'"
3454 :error "This field should contain a single character"
3455 :value-to-internal (lambda (widget value)
3458 (char-to-string value)))
3459 :value-to-external (lambda (widget value)
3463 :match (lambda (widget value)
3464 (characterp value)))
3466 (define-widget 'list 'group
3469 :format "%{%t%}:\n%v")
3471 (define-widget 'vector 'group
3474 :format "%{%t%}:\n%v"
3475 :match 'widget-vector-match
3476 :value-to-internal (lambda (widget value) (append value nil))
3477 :value-to-external (lambda (widget value) (apply 'vector value)))
3479 (defun widget-vector-match (widget value)
3480 (and (vectorp value)
3481 (widget-group-match widget
3482 (widget-apply widget :value-to-internal value))))
3484 (define-widget 'cons 'group
3487 :format "%{%t%}:\n%v"
3488 :match 'widget-cons-match
3489 :value-to-internal (lambda (widget value)
3490 (list (car value) (cdr value)))
3491 :value-to-external (lambda (widget value)
3492 (apply 'cons value)))
3494 (defun widget-cons-match (widget value)
3496 (widget-group-match widget
3497 (widget-apply widget :value-to-internal value))))
3499 ;;; The `lazy' Widget.
3501 ;; Recursive datatypes.
3503 (define-widget 'lazy 'default
3504 "Base widget for recursive datastructures.
3506 The `lazy' widget will, when instantiated, contain a single inferior
3507 widget, of the widget type specified by the :type parameter. The
3508 value of the `lazy' widget is the same as the value of the inferior
3509 widget. When deriving a new widget from the 'lazy' widget, the :type
3510 parameter is allowed to refer to the widget currently being defined,
3511 thus allowing recursive datastructures to be described.
3513 The :type parameter takes the same arguments as the defcustom
3514 parameter with the same name.
3516 Most composite widgets, i.e. widgets containing other widgets, does
3517 not allow recursion. That is, when you define a new widget type, none
3518 of the inferior widgets may be of the same type you are currently
3521 In Lisp, however, it is custom to define datastructures in terms of
3522 themselves. A list, for example, is defined as either nil, or a cons
3523 cell whose cdr itself is a list. The obvious way to translate this
3524 into a widget type would be
3526 (define-widget 'my-list 'choice
3527 \"A list of sexps.\"
3529 :args '((const nil) (cons :value (nil) sexp my-list)))
3531 Here we attempt to define my-list as a choice of either the constant
3532 nil, or a cons-cell containing a sexp and my-lisp. This will not work
3533 because the `choice' widget does not allow recursion.
3535 Using the `lazy' widget you can overcome this problem, as in this
3538 (define-widget 'sexp-list 'lazy
3539 \"A list of sexps.\"
3541 :type '(choice (const nil) (cons :value (nil) sexp sexp-list)))"
3542 :format "%{%t%}: %v"
3543 ;; We don't convert :type because we want to allow recursive
3544 ;; datastructures. This is slow, so we should not create speed
3545 ;; critical widgets by deriving from this.
3546 :convert-widget 'widget-value-convert-widget
3547 :value-create 'widget-type-value-create
3548 :value-get 'widget-child-value-get
3549 :value-inline 'widget-child-value-inline
3550 :default-get 'widget-type-default-get
3551 :match 'widget-type-match
3552 :validate 'widget-child-validate)
3555 ;;; The `plist' Widget.
3559 (define-widget 'plist 'list
3561 :key-type '(symbol :tag "Key")
3562 :value-type '(sexp :tag "Value")
3563 :convert-widget 'widget-plist-convert-widget
3566 (defvar widget-plist-value-type) ;Dynamic variable
3568 (defun widget-plist-convert-widget (widget)
3569 ;; Handle `:options'.
3570 (let* ((options (widget-get widget :options))
3571 (widget-plist-value-type (widget-get widget :value-type))
3572 (other `(editable-list :inline t
3574 ,(widget-get widget :key-type)
3575 ,widget-plist-value-type)))
3577 (list `(checklist :inline t
3579 ,@(mapcar 'widget-plist-convert-option
3583 (widget-put widget :args args)
3586 (defun widget-plist-convert-option (option)
3587 ;; Convert a single plist option.
3588 (let (key-type value-type)
3590 (let ((key (nth 0 option)))
3591 (setq value-type (nth 1 option))
3594 (setq key-type `(const ,key))))
3595 (setq key-type `(const ,option)
3596 value-type widget-plist-value-type))
3597 `(group :format "Key: %v" :inline t ,key-type ,value-type)))
3600 ;;; The `alist' Widget.
3602 ;; Association lists.
3604 (define-widget 'alist 'list
3605 "An association list."
3606 :key-type '(sexp :tag "Key")
3607 :value-type '(sexp :tag "Value")
3608 :convert-widget 'widget-alist-convert-widget
3611 (defvar widget-alist-value-type) ;Dynamic variable
3613 (defun widget-alist-convert-widget (widget)
3614 ;; Handle `:options'.
3615 (let* ((options (widget-get widget :options))
3616 (widget-alist-value-type (widget-get widget :value-type))
3617 (other `(editable-list :inline t
3619 ,(widget-get widget :key-type)
3620 ,widget-alist-value-type)))
3622 (list `(checklist :inline t
3624 ,@(mapcar 'widget-alist-convert-option
3628 (widget-put widget :args args)
3631 (defun widget-alist-convert-option (option)
3632 ;; Convert a single alist option.
3633 (let (key-type value-type)
3635 (let ((key (nth 0 option)))
3636 (setq value-type (nth 1 option))
3639 (setq key-type `(const ,key))))
3640 (setq key-type `(const ,option)
3641 value-type widget-alist-value-type))
3642 `(cons :format "Key: %v" ,key-type ,value-type)))
3644 (define-widget 'choice 'menu-choice
3645 "A union of several sexp types."
3647 :format "%{%t%}: %[Value Menu%] %v"
3648 :button-prefix 'widget-push-button-prefix
3649 :button-suffix 'widget-push-button-suffix
3650 :prompt-value 'widget-choice-prompt-value)
3652 (defun widget-choice-prompt-value (widget prompt value unbound)
3654 (let ((args (widget-get widget :args))
3655 (completion-ignore-case (widget-get widget :case-fold))
3656 current choices old)
3657 ;; Find the first arg that matches VALUE.
3660 (if (widget-apply (car look) :match value)
3661 (setq old (car look)
3663 (setq look (cdr look)))))
3666 (cond ((= (length args) 0)
3668 ((= (length args) 1)
3670 ((and (= (length args) 2)
3672 (if (eq old (nth 0 args))
3677 (setq current (car args)
3680 (cons (cons (widget-apply current :menu-tag-get)
3683 (let ((val (completing-read prompt choices nil t)))
3685 (let ((try (try-completion val choices)))
3688 (cdr (assoc val choices)))
3691 (widget-prompt-value current prompt nil t)
3694 (define-widget 'radio 'radio-button-choice
3695 "A union of several sexp types."
3697 :format "%{%t%}:\n%v"
3698 :prompt-value 'widget-choice-prompt-value)
3700 (define-widget 'repeat 'editable-list
3701 "A variable length homogeneous list."
3703 :format "%{%t%}:\n%v%i\n")
3705 (define-widget 'set 'checklist
3706 "A list of members from a fixed set."
3708 :format "%{%t%}:\n%v")
3710 (define-widget 'boolean 'toggle
3711 "To be nil or non-nil, that is the question."
3713 :prompt-value 'widget-boolean-prompt-value
3714 :button-prefix 'widget-push-button-prefix
3715 :button-suffix 'widget-push-button-suffix
3716 :format "%{%t%}: %[Toggle%] %v\n"
3720 (defun widget-boolean-prompt-value (widget prompt value unbound)
3721 ;; Toggle a boolean.
3724 ;;; The `color' Widget.
3727 (define-widget 'color 'editable-field
3728 "Choose a color name (with sample)."
3729 :format "%{%t%}: %v (%{sample%})\n"
3733 :complete 'widget-color-complete
3734 :sample-face-get 'widget-color-sample-face-get
3735 :notify 'widget-color-notify
3736 :action 'widget-color-action)
3738 (defun widget-color-complete (widget)
3739 "Complete the color in WIDGET."
3740 (require 'facemenu) ; for facemenu-color-alist
3741 (let* ((prefix (buffer-substring-no-properties (widget-field-start widget)
3743 (list (or facemenu-color-alist
3744 (sort (defined-colors) 'string-lessp)))
3745 (completion (try-completion prefix list)))
3746 (cond ((eq completion t)
3747 (message "Exact match."))
3749 (error "Can't find completion for \"%s\"" prefix))
3750 ((not (string-equal prefix completion))
3751 (insert-and-inherit (substring completion (length prefix))))
3753 (message "Making completion list...")
3754 (with-output-to-temp-buffer "*Completions*"
3755 (display-completion-list (all-completions prefix list nil)
3757 (message "Making completion list...done")))))
3759 (defun widget-color-sample-face-get (widget)
3760 (let* ((value (condition-case nil
3761 (widget-value widget)
3762 (error (widget-get widget :value)))))
3763 (if (color-defined-p value)
3764 (list (cons 'foreground-color value))
3767 (defun widget-color-action (widget &optional event)
3768 "Prompt for a color."
3769 (let* ((tag (widget-apply widget :menu-tag-get))
3770 (prompt (concat tag ": "))
3771 (value (widget-value widget))
3772 (start (widget-field-start widget))
3773 (answer (facemenu-read-color prompt)))
3774 (unless (zerop (length answer))
3775 (widget-value-set widget answer)
3777 (widget-apply widget :notify widget event))))
3779 (defun widget-color-notify (widget child &optional event)
3780 "Update the sample, and notify the parent."
3781 (overlay-put (widget-get widget :sample-overlay)
3782 'face (widget-apply widget :sample-face-get))
3783 (widget-default-notify widget child event))
3787 (defun widget-echo-help (pos)
3788 "Display help-echo text for widget at POS."
3789 (let* ((widget (widget-at pos))
3790 (help-echo (and widget (widget-get widget :help-echo))))
3791 (if (functionp help-echo)
3792 (setq help-echo (funcall help-echo widget)))
3793 (if help-echo (message "%s" (eval help-echo)))))
3799 ;; arch-tag: a076e75e-18a1-4b46-8be5-3f317bcbc707
3800 ;;; wid-edit.el ends here