(PC-do-complete-and-exit): use minibuffer-prompt-end to
[emacs.git] / lisp / wid-edit.el
blobc8d46533d437ca472491abc03fb982f2404abe06
1 ;;; wid-edit.el --- Functions for creating and using widgets.
2 ;;
3 ;; Copyright (C) 1996, 1997, 1999 Free Software Foundation, Inc.
4 ;;
5 ;; Author: Per Abrahamsen <abraham@dina.kvl.dk>
6 ;; Maintainer: FSF
7 ;; Keywords: extensions
8 ;; Version: 1.9951
9 ;; X-URL: http://www.dina.kvl.dk/~abraham/custom/ (probably obsolete)
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation; either version 2, or (at your option)
16 ;; any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the
25 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
26 ;; Boston, MA 02111-1307, USA.
28 ;;; Commentary:
30 ;; See `widget.el'.
32 ;;; Code:
34 (require 'widget)
35 (eval-when-compile (require 'cl))
37 ;;; Compatibility.
39 (defun widget-event-point (event)
40 "Character position of the end of event if that exists, or nil."
41 (posn-point (event-end event)))
43 (defalias 'widget-read-event 'read-event)
45 (eval-and-compile
46 (autoload 'pp-to-string "pp")
47 (autoload 'Info-goto-node "info")
48 (autoload 'finder-commentary "finder" nil t)
50 (unless (fboundp 'button-release-event-p)
51 ;; XEmacs function missing from Emacs.
52 (defun button-release-event-p (event)
53 "Non-nil if EVENT is a mouse-button-release event object."
54 (and (eventp event)
55 (memq (event-basic-type event) '(mouse-1 mouse-2 mouse-3))
56 (or (memq 'click (event-modifiers event))
57 (memq 'drag (event-modifiers event)))))))
59 ;;; Customization.
61 (defgroup widgets nil
62 "Customization support for the Widget Library."
63 :link '(custom-manual "(widget)Top")
64 :link '(url-link :tag "Development Page"
65 "http://www.dina.kvl.dk/~abraham/custom/")
66 :link '(emacs-library-link :tag "Lisp File" "widget.el")
67 :prefix "widget-"
68 :group 'extensions
69 :group 'hypermedia)
71 (defgroup widget-documentation nil
72 "Options controling the display of documentation strings."
73 :group 'widgets)
75 (defgroup widget-faces nil
76 "Faces used by the widget library."
77 :group 'widgets
78 :group 'faces)
80 (defvar widget-documentation-face 'widget-documentation-face
81 "Face used for documentation strings in widgets.
82 This exists as a variable so it can be set locally in certain buffers.")
84 (defface widget-documentation-face '((((class color)
85 (background dark))
86 (:foreground "lime green"))
87 (((class color)
88 (background light))
89 (:foreground "dark green"))
90 (t nil))
91 "Face used for documentation text."
92 :group 'widget-documentation
93 :group 'widget-faces)
95 (defvar widget-button-face 'widget-button-face
96 "Face used for buttons in widgets.
97 This exists as a variable so it can be set locally in certain buffers.")
99 (defface widget-button-face '((t (:bold t)))
100 "Face used for widget buttons."
101 :group 'widget-faces)
103 (defcustom widget-mouse-face 'highlight
104 "Face used for widget buttons when the mouse is above them."
105 :type 'face
106 :group 'widget-faces)
108 (defface widget-field-face '((((class grayscale color)
109 (background light))
110 (:background "gray85"))
111 (((class grayscale color)
112 (background dark))
113 (:background "dim gray"))
115 (:italic t)))
116 "Face used for editable fields."
117 :group 'widget-faces)
119 (defface widget-single-line-field-face '((((class grayscale color)
120 (background light))
121 (:background "gray85"))
122 (((class grayscale color)
123 (background dark))
124 (:background "dim gray"))
126 (:italic t)))
127 "Face used for editable fields spanning only a single line."
128 :group 'widget-faces)
130 ;;; This causes display-table to be loaded, and not usefully.
131 ;;;(defvar widget-single-line-display-table
132 ;;; (let ((table (make-display-table)))
133 ;;; (aset table 9 "^I")
134 ;;; (aset table 10 "^J")
135 ;;; table)
136 ;;; "Display table used for single-line editable fields.")
138 ;;;(when (fboundp 'set-face-display-table)
139 ;;; (set-face-display-table 'widget-single-line-field-face
140 ;;; widget-single-line-display-table))
142 ;;; Utility functions.
144 ;; These are not really widget specific.
146 (defun widget-princ-to-string (object)
147 ;; Return string representation of OBJECT, any Lisp object.
148 ;; No quoting characters are used; no delimiters are printed around
149 ;; the contents of strings.
150 (save-excursion
151 (set-buffer (get-buffer-create " *widget-tmp*"))
152 (erase-buffer)
153 (let ((standard-output (current-buffer)))
154 (princ object))
155 (buffer-string)))
157 (defun widget-clear-undo ()
158 "Clear all undo information."
159 (buffer-disable-undo (current-buffer))
160 (buffer-enable-undo))
162 (defcustom widget-menu-max-size 40
163 "Largest number of items allowed in a popup-menu.
164 Larger menus are read through the minibuffer."
165 :group 'widgets
166 :type 'integer)
168 (defcustom widget-menu-max-shortcuts 40
169 "Largest number of items for which it works to choose one with a character.
170 For a larger number of items, the minibuffer is used."
171 :group 'widgets
172 :type 'integer)
174 (defcustom widget-menu-minibuffer-flag nil
175 "*Control how to ask for a choice from the keyboard.
176 Non-nil means use the minibuffer;
177 nil means read a single character."
178 :group 'widgets
179 :type 'boolean)
181 (defun widget-choose (title items &optional event)
182 "Choose an item from a list.
184 First argument TITLE is the name of the list.
185 Second argument ITEMS is an list whose members are either
186 (NAME . VALUE), to indicate selectable items, or just strings to
187 indicate unselectable items.
188 Optional third argument EVENT is an input event.
190 The user is asked to choose between each NAME from the items alist,
191 and the VALUE of the chosen element will be returned. If EVENT is a
192 mouse event, and the number of elements in items is less than
193 `widget-menu-max-size', a popup menu will be used, otherwise the
194 minibuffer."
195 (cond ((and (< (length items) widget-menu-max-size)
196 event (fboundp 'x-popup-menu) window-system)
197 ;; We are in Emacs-19, pressed by the mouse
198 (x-popup-menu event
199 (list title (cons "" items))))
200 ((or widget-menu-minibuffer-flag
201 (> (length items) widget-menu-max-shortcuts))
202 ;; Read the choice of name from the minibuffer.
203 (setq items (widget-remove-if 'stringp items))
204 (let ((val (completing-read (concat title ": ") items nil t)))
205 (if (stringp val)
206 (let ((try (try-completion val items)))
207 (when (stringp try)
208 (setq val try))
209 (cdr (assoc val items)))
210 nil)))
212 ;; Construct a menu of the choices
213 ;; and then use it for prompting for a single character.
214 (let* ((overriding-terminal-local-map
215 (make-sparse-keymap))
216 map choice (next-digit ?0)
217 some-choice-enabled
218 value)
219 ;; Define SPC as a prefix char to get to this menu.
220 (define-key overriding-terminal-local-map " "
221 (setq map (make-sparse-keymap title)))
222 (save-excursion
223 (set-buffer (get-buffer-create " widget-choose"))
224 (erase-buffer)
225 (insert "Available choices:\n\n")
226 (while items
227 (setq choice (car items) items (cdr items))
228 (if (consp choice)
229 (let* ((name (car choice))
230 (function (cdr choice)))
231 (insert (format "%c = %s\n" next-digit name))
232 (define-key map (vector next-digit) function)
233 (setq some-choice-enabled t)))
234 ;; Allocate digits to disabled alternatives
235 ;; so that the digit of a given alternative never varies.
236 (setq next-digit (1+ next-digit)))
237 (insert "\nC-g = Quit"))
238 (or some-choice-enabled
239 (error "None of the choices is currently meaningful"))
240 (define-key map [?\C-g] 'keyboard-quit)
241 (define-key map [t] 'keyboard-quit)
242 (define-key map [?\M-\C-v] 'scroll-other-window)
243 (define-key map [?\M--] 'negative-argument)
244 (setcdr map (nreverse (cdr map)))
245 ;; Read a char with the menu, and return the result
246 ;; that corresponds to it.
247 (save-window-excursion
248 (let ((buf (get-buffer " widget-choose")))
249 (display-buffer buf)
250 (let ((cursor-in-echo-area t)
251 keys
252 (char 0)
253 (arg 1))
254 (while (not (or (and (>= char ?0) (< char next-digit))
255 (eq value 'keyboard-quit)))
256 ;; Unread a SPC to lead to our new menu.
257 (setq unread-command-events (cons ?\ unread-command-events))
258 (setq keys (read-key-sequence title))
259 (setq value (lookup-key overriding-terminal-local-map keys t)
260 char (string-to-char (substring keys 1)))
261 (cond ((eq value 'scroll-other-window)
262 (let ((minibuffer-scroll-window (get-buffer-window buf)))
263 (if (> 0 arg)
264 (scroll-other-window-down (window-height minibuffer-scroll-window))
265 (scroll-other-window))
266 (setq arg 1)))
267 ((eq value 'negative-argument)
268 (setq arg -1))
270 (setq arg 1)))))))
271 (when (eq value 'keyboard-quit)
272 (error "Canceled"))
273 value))))
275 (defun widget-remove-if (predictate list)
276 (let (result (tail list))
277 (while tail
278 (or (funcall predictate (car tail))
279 (setq result (cons (car tail) result)))
280 (setq tail (cdr tail)))
281 (nreverse result)))
283 ;;; Widget text specifications.
285 ;; These functions are for specifying text properties.
287 (defcustom widget-field-add-space
288 (or (< emacs-major-version 20)
289 (and (eq emacs-major-version 20)
290 (< emacs-minor-version 3))
291 (not (string-match "XEmacs" emacs-version)))
292 "Non-nil means add extra space at the end of editable text fields.
294 This is needed on all versions of Emacs, and on XEmacs before 20.3.
295 If you don't add the space, it will become impossible to edit a zero
296 size field."
297 :type 'boolean
298 :group 'widgets)
300 (defcustom widget-field-use-before-change
301 (and (or (> emacs-minor-version 34)
302 (> emacs-major-version 19))
303 (not (string-match "XEmacs" emacs-version)))
304 "Non-nil means use `before-change-functions' to track editable fields.
305 This enables the use of undo, but doesn't work on Emacs 19.34 and earlier.
306 Using before hooks also means that the :notify function can't know the
307 new value."
308 :type 'boolean
309 :group 'widgets)
311 (defun widget-specify-field (widget from to)
312 "Specify editable button for WIDGET between FROM and TO."
313 ;; Terminating space is not part of the field, but necessary in
314 ;; order for local-map to work. Remove next sexp if local-map works
315 ;; at the end of the overlay.
316 (save-excursion
317 (goto-char to)
318 (cond ((null (widget-get widget :size))
319 (forward-char 1))
320 (widget-field-add-space
321 (insert-and-inherit " ")))
322 (setq to (point)))
323 (let ((map (widget-get widget :keymap))
324 (face (or (widget-get widget :value-face) 'widget-field-face))
325 (help-echo (widget-get widget :help-echo))
326 (overlay (make-overlay from to nil
327 nil (or (not widget-field-add-space)
328 (widget-get widget :size)))))
329 (unless (or (stringp help-echo) (null help-echo))
330 (setq help-echo 'widget-mouse-help))
331 (widget-put widget :field-overlay overlay)
332 ;;(overlay-put overlay 'detachable nil)
333 (overlay-put overlay 'field widget)
334 (overlay-put overlay 'local-map map)
335 ;;(overlay-put overlay 'keymap map)
336 (overlay-put overlay 'face face)
337 ;;(overlay-put overlay 'balloon-help help-echo)
338 (overlay-put overlay 'help-echo help-echo))
339 (widget-specify-secret widget))
341 (defun widget-specify-secret (field)
342 "Replace text in FIELD with value of `:secret', if non-nil."
343 (let ((secret (widget-get field :secret))
344 (size (widget-get field :size)))
345 (when secret
346 (let ((begin (widget-field-start field))
347 (end (widget-field-end field)))
348 (when size
349 (while (and (> end begin)
350 (eq (char-after (1- end)) ?\ ))
351 (setq end (1- end))))
352 (while (< begin end)
353 (let ((old (char-after begin)))
354 (unless (eq old secret)
355 (subst-char-in-region begin (1+ begin) old secret)
356 (put-text-property begin (1+ begin) 'secret old))
357 (setq begin (1+ begin))))))))
359 (defun widget-specify-button (widget from to)
360 "Specify button for WIDGET between FROM and TO."
361 (let ((face (widget-apply widget :button-face-get))
362 (help-echo (widget-get widget :help-echo))
363 (overlay (make-overlay from to nil t nil)))
364 (widget-put widget :button-overlay overlay)
365 (unless (or (null help-echo) (stringp help-echo))
366 (setq help-echo 'widget-mouse-help))
367 (overlay-put overlay 'button widget)
368 (overlay-put overlay 'mouse-face widget-mouse-face)
369 ;;(overlay-put overlay 'balloon-help help-echo)
370 (overlay-put overlay 'help-echo help-echo)
371 (overlay-put overlay 'face face)))
373 (defun widget-mouse-help (extent)
374 "Find mouse help string for button in extent."
375 (let* ((widget (widget-at (extent-start-position extent)))
376 (help-echo (and widget (widget-get widget :help-echo))))
377 (cond ((stringp help-echo)
378 help-echo)
379 ((and (symbolp help-echo) (fboundp help-echo)
380 (stringp (setq help-echo (funcall help-echo widget))))
381 help-echo)
383 (format "(widget %S :help-echo %S)" widget help-echo)))))
385 (defun widget-specify-sample (widget from to)
386 ;; Specify sample for WIDGET between FROM and TO.
387 (let ((face (widget-apply widget :sample-face-get))
388 (overlay (make-overlay from to nil t nil)))
389 (overlay-put overlay 'face face)
390 (widget-put widget :sample-overlay overlay)))
392 (defun widget-specify-doc (widget from to)
393 ;; Specify documentation for WIDGET between FROM and TO.
394 (let ((overlay (make-overlay from to nil t nil)))
395 (overlay-put overlay 'widget-doc widget)
396 (overlay-put overlay 'face widget-documentation-face)
397 (widget-put widget :doc-overlay overlay)))
399 (defmacro widget-specify-insert (&rest form)
400 ;; Execute FORM without inheriting any text properties.
402 (save-restriction
403 (let ((inhibit-read-only t)
404 result
405 before-change-functions
406 after-change-functions)
407 (insert "<>")
408 (narrow-to-region (- (point) 2) (point))
409 (goto-char (1+ (point-min)))
410 (setq result (progn (,@ form)))
411 (delete-region (point-min) (1+ (point-min)))
412 (delete-region (1- (point-max)) (point-max))
413 (goto-char (point-max))
414 result))))
416 (defface widget-inactive-face '((((class grayscale color)
417 (background dark))
418 (:foreground "light gray"))
419 (((class grayscale color)
420 (background light))
421 (:foreground "dim gray"))
423 (:italic t)))
424 "Face used for inactive widgets."
425 :group 'widget-faces)
427 (defun widget-specify-inactive (widget from to)
428 "Make WIDGET inactive for user modifications."
429 (unless (widget-get widget :inactive)
430 (let ((overlay (make-overlay from to nil t nil)))
431 (overlay-put overlay 'face 'widget-inactive-face)
432 ;; This is disabled, as it makes the mouse cursor change shape.
433 ;; (overlay-put overlay 'mouse-face 'widget-inactive-face)
434 (overlay-put overlay 'evaporate t)
435 (overlay-put overlay 'priority 100)
436 (overlay-put overlay 'modification-hooks '(widget-overlay-inactive))
437 (widget-put widget :inactive overlay))))
439 (defun widget-overlay-inactive (&rest junk)
440 "Ignoring the arguments, signal an error."
441 (unless inhibit-read-only
442 (error "The widget here is not active")))
445 (defun widget-specify-active (widget)
446 "Make WIDGET active for user modifications."
447 (let ((inactive (widget-get widget :inactive)))
448 (when inactive
449 (delete-overlay inactive)
450 (widget-put widget :inactive nil))))
452 ;;; Widget Properties.
454 (defsubst widget-type (widget)
455 "Return the type of WIDGET, a symbol."
456 (car widget))
458 (defun widget-get-indirect (widget property)
459 "In WIDGET, get the value of PROPERTY.
460 If the value is a symbol, return its binding.
461 Otherwise, just return the value."
462 (let ((value (widget-get widget property)))
463 (if (symbolp value)
464 (symbol-value value)
465 value)))
467 (defun widget-member (widget property)
468 "Non-nil iff there is a definition in WIDGET for PROPERTY."
469 (cond ((widget-plist-member (cdr widget) property)
471 ((car widget)
472 (widget-member (get (car widget) 'widget-type) property))
473 (t nil)))
475 (defun widget-value (widget)
476 "Extract the current value of WIDGET."
477 (widget-apply widget
478 :value-to-external (widget-apply widget :value-get)))
480 (defun widget-value-set (widget value)
481 "Set the current value of WIDGET to VALUE."
482 (widget-apply widget
483 :value-set (widget-apply widget
484 :value-to-internal value)))
486 (defun widget-default-get (widget)
487 "Extract the default value of WIDGET."
488 (or (widget-get widget :value)
489 (widget-apply widget :default-get)))
491 (defun widget-match-inline (widget vals)
492 "In WIDGET, match the start of VALS."
493 (cond ((widget-get widget :inline)
494 (widget-apply widget :match-inline vals))
495 ((and vals
496 (widget-apply widget :match (car vals)))
497 (cons (list (car vals)) (cdr vals)))
498 (t nil)))
500 (defun widget-apply-action (widget &optional event)
501 "Apply :action in WIDGET in response to EVENT."
502 (if (widget-apply widget :active)
503 (widget-apply widget :action event)
504 (error "Attempt to perform action on inactive widget")))
506 ;;; Helper functions.
508 ;; These are widget specific.
510 ;;;###autoload
511 (defun widget-prompt-value (widget prompt &optional value unbound)
512 "Prompt for a value matching WIDGET, using PROMPT.
513 The current value is assumed to be VALUE, unless UNBOUND is non-nil."
514 (unless (listp widget)
515 (setq widget (list widget)))
516 (setq prompt (format "[%s] %s" (widget-type widget) prompt))
517 (setq widget (widget-convert widget))
518 (let ((answer (widget-apply widget :prompt-value prompt value unbound)))
519 (unless (widget-apply widget :match answer)
520 (error "Value does not match %S type." (car widget)))
521 answer))
523 (defun widget-get-sibling (widget)
524 "Get the item WIDGET is assumed to toggle.
525 This is only meaningful for radio buttons or checkboxes in a list."
526 (let* ((parent (widget-get widget :parent))
527 (children (widget-get parent :children))
528 child)
529 (catch 'child
530 (while children
531 (setq child (car children)
532 children (cdr children))
533 (when (eq (widget-get child :button) widget)
534 (throw 'child child)))
535 nil)))
537 (defun widget-map-buttons (function &optional buffer maparg)
538 "Map FUNCTION over the buttons in BUFFER.
539 FUNCTION is called with the arguments WIDGET and MAPARG.
541 If FUNCTION returns non-nil, the walk is cancelled.
543 The arguments MAPARG, and BUFFER default to nil and (current-buffer),
544 respectively."
545 (let ((cur (point-min))
546 (widget nil)
547 (parent nil)
548 (overlays (if buffer
549 (save-excursion (set-buffer buffer) (overlay-lists))
550 (overlay-lists))))
551 (setq overlays (append (car overlays) (cdr overlays)))
552 (while (setq cur (pop overlays))
553 (setq widget (overlay-get cur 'button))
554 (if (and widget (funcall function widget maparg))
555 (setq overlays nil)))))
557 ;;; Glyphs.
559 (defcustom widget-glyph-directory (concat data-directory "custom/")
560 "Where widget glyphs are located.
561 If this variable is nil, widget will try to locate the directory
562 automatically."
563 :group 'widgets
564 :type 'directory)
566 (defcustom widget-glyph-enable t
567 "If non nil, use glyphs in images when available."
568 :group 'widgets
569 :type 'boolean)
571 (defcustom widget-image-conversion
572 '((xpm ".xpm") (gif ".gif") (png ".png") (jpeg ".jpg" ".jpeg")
573 (xbm ".xbm"))
574 "Conversion alist from image formats to file name suffixes."
575 :group 'widgets
576 :type '(repeat (cons :format "%v"
577 (symbol :tag "Image Format" unknown)
578 (repeat :tag "Suffixes"
579 (string :format "%v")))))
581 (defun widget-glyph-find (image tag)
582 "Create a glyph corresponding to IMAGE with string TAG as fallback.
583 IMAGE should either already be a glyph, or be a file name sans
584 extension (xpm, xbm, gif, jpg, or png) located in
585 `widget-glyph-directory'."
586 (cond ((not (and image
587 (string-match "XEmacs" emacs-version)
588 widget-glyph-enable
589 (fboundp 'make-glyph)
590 (fboundp 'locate-file)
591 image))
592 ;; We don't want or can't use glyphs.
593 nil)
594 ((and (fboundp 'glyphp)
595 (glyphp image))
596 ;; Already a glyph. Use it.
597 image)
598 ((stringp image)
599 ;; A string. Look it up in relevant directories.
600 (let* ((dirlist (list (or widget-glyph-directory
601 (concat data-directory
602 "custom/"))
603 data-directory))
604 (formats widget-image-conversion)
605 file)
606 (while (and formats (not file))
607 (when (valid-image-instantiator-format-p (car (car formats)))
608 (setq file (locate-file image dirlist
609 (mapconcat 'identity
610 (cdr (car formats))
611 ":"))))
612 (unless file
613 (setq formats (cdr formats))))
614 (and file
615 ;; We create a glyph with the file as the default image
616 ;; instantiator, and the TAG fallback
617 (make-glyph (list (vector (car (car formats)) ':file file)
618 (vector 'string ':data tag))))))
619 ((valid-instantiator-p image 'image)
620 ;; A valid image instantiator (e.g. [gif :file "somefile"] etc.)
621 (make-glyph (list image
622 (vector 'string ':data tag))))
623 ((consp image)
624 ;; This could be virtually anything. Let `make-glyph' sort it out.
625 (make-glyph image))
627 ;; Oh well.
628 nil)))
630 (defun widget-glyph-insert (widget tag image &optional down inactive)
631 "In WIDGET, insert the text TAG or, if supported, IMAGE.
632 IMAGE should either be a glyph, an image instantiator, or an image file
633 name sans extension (xpm, xbm, gif, jpg, or png) located in
634 `widget-glyph-directory'.
636 Optional arguments DOWN and INACTIVE is used instead of IMAGE when the
637 glyph is pressed or inactive, respectively.
639 WARNING: If you call this with a glyph, and you want the user to be
640 able to invoke the glyph, make sure it is unique. If you use the
641 same glyph for multiple widgets, invoking any of the glyphs will
642 cause the last created widget to be invoked.
644 Instead of an instantiator, you can also use a list of instantiators,
645 or whatever `make-glyph' will accept. However, in that case you must
646 provide the fallback TAG as a part of the instantiator yourself."
647 (let ((glyph (widget-glyph-find image tag)))
648 (if glyph
649 (widget-glyph-insert-glyph widget
650 glyph
651 (widget-glyph-find down tag)
652 (widget-glyph-find inactive tag))
653 (insert tag))))
655 (defun widget-glyph-insert-glyph (widget glyph &optional down inactive)
656 "In WIDGET, insert GLYPH.
657 If optional arguments DOWN and INACTIVE are given, they should be
658 glyphs used when the widget is pushed and inactive, respectively."
659 (when widget
660 (set-glyph-property glyph 'widget widget)
661 (when down
662 (set-glyph-property down 'widget widget))
663 (when inactive
664 (set-glyph-property inactive 'widget widget)))
665 (insert "*")
666 (let ((ext (make-extent (point) (1- (point))))
667 (help-echo (and widget (widget-get widget :help-echo))))
668 (set-extent-property ext 'invisible t)
669 (set-extent-property ext 'start-open t)
670 (set-extent-property ext 'end-open t)
671 (set-extent-end-glyph ext glyph)
672 (when help-echo
673 (set-extent-property ext 'balloon-help help-echo)
674 (set-extent-property ext 'help-echo help-echo)))
675 (when widget
676 (widget-put widget :glyph-up glyph)
677 (when down (widget-put widget :glyph-down down))
678 (when inactive (widget-put widget :glyph-inactive inactive))))
680 ;;; Buttons.
682 (defgroup widget-button nil
683 "The look of various kinds of buttons."
684 :group 'widgets)
686 (defcustom widget-button-prefix ""
687 "String used as prefix for buttons."
688 :type 'string
689 :group 'widget-button)
691 (defcustom widget-button-suffix ""
692 "String used as suffix for buttons."
693 :type 'string
694 :group 'widget-button)
696 ;;; Creating Widgets.
698 ;;;###autoload
699 (defun widget-create (type &rest args)
700 "Create widget of TYPE.
701 The optional ARGS are additional keyword arguments."
702 (let ((widget (apply 'widget-convert type args)))
703 (widget-apply widget :create)
704 widget))
706 (defun widget-create-child-and-convert (parent type &rest args)
707 "As part of the widget PARENT, create a child widget TYPE.
708 The child is converted, using the keyword arguments ARGS."
709 (let ((widget (apply 'widget-convert type args)))
710 (widget-put widget :parent parent)
711 (unless (widget-get widget :indent)
712 (widget-put widget :indent (+ (or (widget-get parent :indent) 0)
713 (or (widget-get widget :extra-offset) 0)
714 (widget-get parent :offset))))
715 (widget-apply widget :create)
716 widget))
718 (defun widget-create-child (parent type)
719 "Create widget of TYPE."
720 (let ((widget (copy-sequence type)))
721 (widget-put widget :parent parent)
722 (unless (widget-get widget :indent)
723 (widget-put widget :indent (+ (or (widget-get parent :indent) 0)
724 (or (widget-get widget :extra-offset) 0)
725 (widget-get parent :offset))))
726 (widget-apply widget :create)
727 widget))
729 (defun widget-create-child-value (parent type value)
730 "Create widget of TYPE with value VALUE."
731 (let ((widget (copy-sequence type)))
732 (widget-put widget :value (widget-apply widget :value-to-internal value))
733 (widget-put widget :parent parent)
734 (unless (widget-get widget :indent)
735 (widget-put widget :indent (+ (or (widget-get parent :indent) 0)
736 (or (widget-get widget :extra-offset) 0)
737 (widget-get parent :offset))))
738 (widget-apply widget :create)
739 widget))
741 ;;;###autoload
742 (defun widget-delete (widget)
743 "Delete WIDGET."
744 (widget-apply widget :delete))
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)
751 (list type)
752 (copy-sequence type)))
753 (current widget)
754 (keys args))
755 ;; First set the :args keyword.
756 (while (cdr current) ;Look in the type.
757 (let ((next (car (cdr current))))
758 (if (and (symbolp next) (eq (aref (symbol-name next) 0) ?:))
759 (setq current (cdr (cdr current)))
760 (setcdr current (list :args (cdr current)))
761 (setq current nil))))
762 (while args ;Look in the args.
763 (let ((next (nth 0 args)))
764 (if (and (symbolp next) (eq (aref (symbol-name next) 0) ?:))
765 (setq args (nthcdr 2 args))
766 (widget-put widget :args args)
767 (setq args nil))))
768 ;; Then Convert the widget.
769 (setq type widget)
770 (while type
771 (let ((convert-widget (plist-get (cdr type) :convert-widget)))
772 (if convert-widget
773 (setq widget (funcall convert-widget widget))))
774 (setq type (get (car type) 'widget-type)))
775 ;; Finally set the keyword args.
776 (while keys
777 (let ((next (nth 0 keys)))
778 (if (and (symbolp next) (eq (aref (symbol-name next) 0) ?:))
779 (progn
780 (widget-put widget next (nth 1 keys))
781 (setq keys (nthcdr 2 keys)))
782 (setq keys nil))))
783 ;; Convert the :value to internal format.
784 (if (widget-member widget :value)
785 (let ((value (widget-get widget :value)))
786 (widget-put widget
787 :value (widget-apply widget :value-to-internal value))))
788 ;; Return the newly create widget.
789 widget))
791 (defun widget-insert (&rest args)
792 "Call `insert' with ARGS and make the text read only."
793 (let ((inhibit-read-only t)
794 before-change-functions
795 after-change-functions
796 (from (point)))
797 (apply 'insert args)))
799 (defun widget-convert-text (type from to
800 &optional button-from button-to
801 &rest args)
802 "Return a widget of type TYPE with endpoint FROM TO.
803 Optional ARGS are extra keyword arguments for TYPE.
804 and TO will be used as the widgets end points. If optional arguments
805 BUTTON-FROM and BUTTON-TO are given, these will be used as the widgets
806 button end points.
807 Optional ARGS are extra keyword arguments for TYPE."
808 (let ((widget (apply 'widget-convert type :delete 'widget-leave-text args))
809 (from (copy-marker from))
810 (to (copy-marker to)))
811 (set-marker-insertion-type from t)
812 (set-marker-insertion-type to nil)
813 (widget-put widget :from from)
814 (widget-put widget :to to)
815 (when button-from
816 (widget-specify-button widget button-from button-to))
817 widget))
819 (defun widget-convert-button (type from to &rest args)
820 "Return a widget of type TYPE with endpoint FROM TO.
821 Optional ARGS are extra keyword arguments for TYPE.
822 No text will be inserted to the buffer, instead the text between FROM
823 and TO will be used as the widgets end points, as well as the widgets
824 button end points."
825 (apply 'widget-convert-text type from to from to args))
827 (defun widget-leave-text (widget)
828 "Remove markers and overlays from WIDGET and its children."
829 (let ((from (widget-get widget :from))
830 (to (widget-get widget :to))
831 (button (widget-get widget :button-overlay))
832 (sample (widget-get widget :sample-overlay))
833 (doc (widget-get widget :doc-overlay))
834 (field (widget-get widget :field-overlay))
835 (children (widget-get widget :children)))
836 (set-marker from nil)
837 (set-marker to nil)
838 (when button
839 (delete-overlay button))
840 (when sample
841 (delete-overlay sample))
842 (when doc
843 (delete-overlay doc))
844 (when field
845 (delete-overlay field))
846 (mapcar 'widget-leave-text children)))
848 ;;; Keymap and Commands.
850 (defvar widget-keymap nil
851 "Keymap containing useful binding for buffers containing widgets.
852 Recommended as a parent keymap for modes using widgets.")
854 (unless widget-keymap
855 (setq widget-keymap (make-sparse-keymap))
856 (define-key widget-keymap "\t" 'widget-forward)
857 (define-key widget-keymap [(shift tab)] 'widget-backward)
858 (define-key widget-keymap [backtab] 'widget-backward)
859 (if (string-match "XEmacs" emacs-version)
860 (progn
861 ;;Glyph support.
862 (define-key widget-keymap [button1] 'widget-button1-click)
863 (define-key widget-keymap [button2] 'widget-button-click))
864 (define-key widget-keymap [down-mouse-2] 'widget-button-click))
865 (define-key widget-keymap "\C-m" 'widget-button-press))
867 (defvar widget-global-map global-map
868 "Keymap used for events the widget does not handle themselves.")
869 (make-variable-buffer-local 'widget-global-map)
871 (defvar widget-field-keymap nil
872 "Keymap used inside an editable field.")
874 (unless widget-field-keymap
875 (setq widget-field-keymap (copy-keymap widget-keymap))
876 (define-key widget-field-keymap [menu-bar] 'nil)
877 (define-key widget-field-keymap "\C-k" 'widget-kill-line)
878 (define-key widget-field-keymap "\M-\t" 'widget-complete)
879 (define-key widget-field-keymap "\C-m" 'widget-field-activate)
880 (define-key widget-field-keymap "\C-a" 'widget-beginning-of-line)
881 (define-key widget-field-keymap "\C-e" 'widget-end-of-line)
882 (set-keymap-parent widget-field-keymap global-map))
884 (defvar widget-text-keymap nil
885 "Keymap used inside a text field.")
887 (unless widget-text-keymap
888 (setq widget-text-keymap (copy-keymap widget-keymap))
889 (define-key widget-text-keymap [menu-bar] 'nil)
890 (define-key widget-text-keymap "\C-a" 'widget-beginning-of-line)
891 (define-key widget-text-keymap "\C-e" 'widget-end-of-line)
892 (set-keymap-parent widget-text-keymap global-map))
894 (defun widget-field-activate (pos &optional event)
895 "Invoke the ediable field at point."
896 (interactive "@d")
897 (let ((field (get-char-property pos 'field)))
898 (if field
899 (widget-apply-action field event)
900 (call-interactively
901 (lookup-key widget-global-map (this-command-keys))))))
903 (defvar widget-button-pressed-face 'widget-button-pressed-face
904 "Face used for pressed buttons in widgets.
905 This exists as a variable so it can be set locally in certain buffers.")
907 (defface widget-button-pressed-face
908 '((((class color))
909 (:foreground "red"))
911 (:bold t :underline t)))
912 "Face used for pressed buttons."
913 :group 'widget-faces)
915 (defun widget-button-click (event)
916 "Invoke the button that the mouse is pointing at, and move there."
917 (interactive "@e")
918 (mouse-set-point event)
919 (cond ((and (fboundp 'event-glyph)
920 (event-glyph event))
921 (widget-glyph-click event))
922 ((widget-event-point event)
923 (let* ((pos (widget-event-point event))
924 (button (get-char-property pos 'button)))
925 (if button
926 (let* ((overlay (widget-get button :button-overlay))
927 (face (overlay-get overlay 'face))
928 (mouse-face (overlay-get overlay 'mouse-face)))
929 (unwind-protect
930 (let ((track-mouse t))
931 (save-excursion
932 (overlay-put overlay
933 'face widget-button-pressed-face)
934 (overlay-put overlay
935 'mouse-face widget-button-pressed-face)
936 (unless (widget-apply button :mouse-down-action event)
937 (while (not (button-release-event-p event))
938 (setq event (widget-read-event)
939 pos (widget-event-point event))
940 (if (and pos
941 (eq (get-char-property pos 'button)
942 button))
943 (progn
944 (overlay-put overlay
945 'face
946 widget-button-pressed-face)
947 (overlay-put overlay
948 'mouse-face
949 widget-button-pressed-face))
950 (overlay-put overlay 'face face)
951 (overlay-put overlay 'mouse-face mouse-face))))
952 (when (and pos
953 (eq (get-char-property pos 'button) button))
954 (widget-apply-action button event))))
955 (overlay-put overlay 'face face)
956 (overlay-put overlay 'mouse-face mouse-face)))
957 (let ((up t)
958 command)
959 ;; Find the global command to run, and check whether it
960 ;; is bound to an up event.
961 (cond ((setq command ;down event
962 (lookup-key widget-global-map [ button2 ]))
963 (setq up nil))
964 ((setq command ;down event
965 (lookup-key widget-global-map [ down-mouse-2 ]))
966 (setq up nil))
967 ((setq command ;up event
968 (lookup-key widget-global-map [ button2up ])))
969 ((setq command ;up event
970 (lookup-key widget-global-map [ mouse-2]))))
971 (when up
972 ;; Don't execute up events twice.
973 (while (not (button-release-event-p event))
974 (setq event (widget-read-event))))
975 (when command
976 (call-interactively command))))))
978 (message "You clicked somewhere weird."))))
980 (defun widget-button1-click (event)
981 "Invoke glyph below mouse pointer."
982 (interactive "@e")
983 (if (and (fboundp 'event-glyph)
984 (event-glyph event))
985 (widget-glyph-click event)
986 (call-interactively (lookup-key widget-global-map (this-command-keys)))))
988 (defun widget-glyph-click (event)
989 "Handle click on a glyph."
990 (let* ((glyph (event-glyph event))
991 (widget (glyph-property glyph 'widget))
992 (extent (event-glyph-extent event))
993 (down-glyph (or (and widget (widget-get widget :glyph-down)) glyph))
994 (up-glyph (or (and widget (widget-get widget :glyph-up)) glyph))
995 (last event))
996 ;; Wait for the release.
997 (while (not (button-release-event-p last))
998 (if (eq extent (event-glyph-extent last))
999 (set-extent-property extent 'end-glyph down-glyph)
1000 (set-extent-property extent 'end-glyph up-glyph))
1001 (setq last (read-event event)))
1002 ;; Release glyph.
1003 (when down-glyph
1004 (set-extent-property extent 'end-glyph up-glyph))
1005 ;; Apply widget action.
1006 (when (eq extent (event-glyph-extent last))
1007 (let ((widget (glyph-property (event-glyph event) 'widget)))
1008 (cond ((null widget)
1009 (message "You clicked on a glyph."))
1010 ((not (widget-apply widget :active))
1011 (message "This glyph is inactive."))
1013 (widget-apply-action widget event)))))))
1015 (defun widget-button-press (pos &optional event)
1016 "Invoke button at POS."
1017 (interactive "@d")
1018 (let ((button (get-char-property pos 'button)))
1019 (if button
1020 (widget-apply-action button event)
1021 (let ((command (lookup-key widget-global-map (this-command-keys))))
1022 (when (commandp command)
1023 (call-interactively command))))))
1025 (defun widget-tabable-at (&optional pos)
1026 "Return the tabable widget at POS, or nil.
1027 POS defaults to the value of (point)."
1028 (unless pos
1029 (setq pos (point)))
1030 (let ((widget (or (get-char-property (point) 'button)
1031 (get-char-property (point) 'field))))
1032 (if widget
1033 (let ((order (widget-get widget :tab-order)))
1034 (if order
1035 (if (>= order 0)
1036 widget
1037 nil)
1038 widget))
1039 nil)))
1041 (defvar widget-use-overlay-change t
1042 "If non-nil, use overlay change functions to tab around in the buffer.
1043 This is much faster, but doesn't work reliably on Emacs 19.34.")
1045 (defun widget-move (arg)
1046 "Move point to the ARG next field or button.
1047 ARG may be negative to move backward."
1048 (or (bobp) (> arg 0) (backward-char))
1049 (let ((pos (point))
1050 (number arg)
1051 (old (widget-tabable-at))
1052 new)
1053 ;; Forward.
1054 (while (> arg 0)
1055 (cond ((eobp)
1056 (goto-char (point-min)))
1057 (widget-use-overlay-change
1058 (goto-char (next-overlay-change (point))))
1060 (forward-char 1)))
1061 (and (eq pos (point))
1062 (eq arg number)
1063 (error "No buttons or fields found"))
1064 (let ((new (widget-tabable-at)))
1065 (when new
1066 (unless (eq new old)
1067 (setq arg (1- arg))
1068 (setq old new)))))
1069 ;; Backward.
1070 (while (< arg 0)
1071 (cond ((bobp)
1072 (goto-char (point-max)))
1073 (widget-use-overlay-change
1074 (goto-char (previous-overlay-change (point))))
1076 (backward-char 1)))
1077 (and (eq pos (point))
1078 (eq arg number)
1079 (error "No buttons or fields found"))
1080 (let ((new (widget-tabable-at)))
1081 (when new
1082 (unless (eq new old)
1083 (setq arg (1+ arg))))))
1084 (let ((new (widget-tabable-at)))
1085 (while (eq (widget-tabable-at) new)
1086 (backward-char)))
1087 (forward-char))
1088 (widget-echo-help (point))
1089 (run-hooks 'widget-move-hook))
1091 (defun widget-forward (arg)
1092 "Move point to the next field or button.
1093 With optional ARG, move across that many fields."
1094 (interactive "p")
1095 (run-hooks 'widget-forward-hook)
1096 (widget-move arg))
1098 (defun widget-backward (arg)
1099 "Move point to the previous field or button.
1100 With optional ARG, move across that many fields."
1101 (interactive "p")
1102 (run-hooks 'widget-backward-hook)
1103 (widget-move (- arg)))
1105 (defun widget-beginning-of-line ()
1106 "Go to beginning of field or beginning of line, whichever is first."
1107 (interactive)
1108 (let* ((field (widget-field-find (point)))
1109 (start (and field (widget-field-start field)))
1110 (bol (save-excursion
1111 (beginning-of-line)
1112 (point))))
1113 (goto-char (if start
1114 (max start bol)
1115 bol))))
1117 (defun widget-end-of-line ()
1118 "Go to end of field or end of line, whichever is first."
1119 (interactive)
1120 (let* ((field (widget-field-find (point)))
1121 (end (and field (widget-field-end field)))
1122 (eol (save-excursion
1123 (end-of-line)
1124 (point))))
1125 (goto-char (if end
1126 (min end eol)
1127 eol))))
1129 (defun widget-kill-line ()
1130 "Kill to end of field or end of line, whichever is first."
1131 (interactive)
1132 (let* ((field (widget-field-find (point)))
1133 (newline (save-excursion (forward-line 1) (point)))
1134 (end (and field (widget-field-end field))))
1135 (if (and field (> newline end))
1136 (kill-region (point) end)
1137 (call-interactively 'kill-line))))
1139 (defcustom widget-complete-field (lookup-key global-map "\M-\t")
1140 "Default function to call for completion inside fields."
1141 :options '(ispell-complete-word complete-tag lisp-complete-symbol)
1142 :type 'function
1143 :group 'widgets)
1145 (defun widget-complete ()
1146 "Complete content of editable field from point.
1147 When not inside a field, move to the previous button or field."
1148 (interactive)
1149 (let ((field (widget-field-find (point))))
1150 (if field
1151 (widget-apply field :complete)
1152 (error "Not in an editable field"))))
1154 ;;; Setting up the buffer.
1156 (defvar widget-field-new nil)
1157 ;; List of all newly created editable fields in the buffer.
1158 (make-variable-buffer-local 'widget-field-new)
1160 (defvar widget-field-list nil)
1161 ;; List of all editable fields in the buffer.
1162 (make-variable-buffer-local 'widget-field-list)
1164 (defun widget-setup ()
1165 "Setup current buffer so editing string widgets works."
1166 (let ((inhibit-read-only t)
1167 (after-change-functions nil)
1168 before-change-functions
1169 field)
1170 (while widget-field-new
1171 (setq field (car widget-field-new)
1172 widget-field-new (cdr widget-field-new)
1173 widget-field-list (cons field widget-field-list))
1174 (let ((from (car (widget-get field :field-overlay)))
1175 (to (cdr (widget-get field :field-overlay))))
1176 (widget-specify-field field
1177 (marker-position from) (marker-position to))
1178 (set-marker from nil)
1179 (set-marker to nil))))
1180 (widget-clear-undo)
1181 (widget-add-change))
1183 (defvar widget-field-last nil)
1184 ;; Last field containing point.
1185 (make-variable-buffer-local 'widget-field-last)
1187 (defvar widget-field-was nil)
1188 ;; The widget data before the change.
1189 (make-variable-buffer-local 'widget-field-was)
1191 (defun widget-field-buffer (widget)
1192 "Return the start of WIDGET's editing field."
1193 (let ((overlay (widget-get widget :field-overlay)))
1194 (and overlay (overlay-buffer overlay))))
1196 (defun widget-field-start (widget)
1197 "Return the start of WIDGET's editing field."
1198 (let ((overlay (widget-get widget :field-overlay)))
1199 (and overlay (overlay-start overlay))))
1201 (defun widget-field-end (widget)
1202 "Return the end of WIDGET's editing field."
1203 (let ((overlay (widget-get widget :field-overlay)))
1204 ;; Don't subtract one if local-map works at the end of the overlay.
1205 (and overlay (if (or widget-field-add-space
1206 (null (widget-get widget :size)))
1207 (1- (overlay-end overlay))
1208 (overlay-end overlay)))))
1210 (defun widget-field-find (pos)
1211 "Return the field at POS.
1212 Unlike (get-char-property POS 'field) this, works with empty fields too."
1213 (let ((fields widget-field-list)
1214 field found)
1215 (while fields
1216 (setq field (car fields)
1217 fields (cdr fields))
1218 (let ((start (widget-field-start field))
1219 (end (widget-field-end field)))
1220 (when (and (<= start pos) (<= pos end))
1221 (when found
1222 (debug "Overlapping fields"))
1223 (setq found field))))
1224 found))
1226 (defun widget-before-change (from to)
1227 ;; This is how, for example, a variable changes its state to `modified'.
1228 ;; when it is being edited.
1229 (unless inhibit-read-only
1230 (let ((from-field (widget-field-find from))
1231 (to-field (widget-field-find to)))
1232 (cond ((not (eq from-field to-field))
1233 (add-hook 'post-command-hook 'widget-add-change nil t)
1234 (signal 'text-read-only
1235 '("Change should be restricted to a single field")))
1236 ((null from-field)
1237 (add-hook 'post-command-hook 'widget-add-change nil t)
1238 (signal 'text-read-only
1239 '("Attempt to change text outside editable field")))
1240 (widget-field-use-before-change
1241 (condition-case nil
1242 (widget-apply from-field :notify from-field)
1243 (error (debug "Before Change"))))))))
1245 (defun widget-add-change ()
1246 (make-local-hook 'post-command-hook)
1247 (remove-hook 'post-command-hook 'widget-add-change t)
1248 (make-local-hook 'before-change-functions)
1249 (add-hook 'before-change-functions 'widget-before-change nil t)
1250 (make-local-hook 'after-change-functions)
1251 (add-hook 'after-change-functions 'widget-after-change nil t))
1253 (defun widget-after-change (from to old)
1254 ;; Adjust field size and text properties.
1255 (condition-case nil
1256 (let ((field (widget-field-find from))
1257 (other (widget-field-find to)))
1258 (when field
1259 (unless (eq field other)
1260 (debug "Change in different fields"))
1261 (let ((size (widget-get field :size)))
1262 (when size
1263 (let ((begin (widget-field-start field))
1264 (end (widget-field-end field)))
1265 (cond ((< (- end begin) size)
1266 ;; Field too small.
1267 (save-excursion
1268 (goto-char end)
1269 (insert-char ?\ (- (+ begin size) end))))
1270 ((> (- end begin) size)
1271 ;; Field too large and
1272 (if (or (< (point) (+ begin size))
1273 (> (point) end))
1274 ;; Point is outside extra space.
1275 (setq begin (+ begin size))
1276 ;; Point is within the extra space.
1277 (setq begin (point)))
1278 (save-excursion
1279 (goto-char end)
1280 (while (and (eq (preceding-char) ?\ )
1281 (> (point) begin))
1282 (delete-backward-char 1)))))))
1283 (widget-specify-secret field))
1284 (widget-apply field :notify field)))
1285 (error (debug "After Change"))))
1287 ;;; Widget Functions
1289 ;; These functions are used in the definition of multiple widgets.
1291 (defun widget-parent-action (widget &optional event)
1292 "Tell :parent of WIDGET to handle the :action.
1293 Optional EVENT is the event that triggered the action."
1294 (widget-apply (widget-get widget :parent) :action event))
1296 (defun widget-children-value-delete (widget)
1297 "Delete all :children and :buttons in WIDGET."
1298 (mapcar 'widget-delete (widget-get widget :children))
1299 (widget-put widget :children nil)
1300 (mapcar 'widget-delete (widget-get widget :buttons))
1301 (widget-put widget :buttons nil))
1303 (defun widget-children-validate (widget)
1304 "All the :children must be valid."
1305 (let ((children (widget-get widget :children))
1306 child found)
1307 (while (and children (not found))
1308 (setq child (car children)
1309 children (cdr children)
1310 found (widget-apply child :validate)))
1311 found))
1313 (defun widget-types-convert-widget (widget)
1314 "Convert :args as widget types in WIDGET."
1315 (widget-put widget :args (mapcar 'widget-convert (widget-get widget :args)))
1316 widget)
1318 (defun widget-value-convert-widget (widget)
1319 "Initialize :value from :args in WIDGET."
1320 (let ((args (widget-get widget :args)))
1321 (when args
1322 (widget-put widget :value (car args))
1323 ;; Don't convert :value here, as this is done in `widget-convert'.
1324 ;; (widget-put widget :value (widget-apply widget
1325 ;; :value-to-internal (car args)))
1326 (widget-put widget :args nil)))
1327 widget)
1329 (defun widget-value-value-get (widget)
1330 "Return the :value property of WIDGET."
1331 (widget-get widget :value))
1333 ;;; The `default' Widget.
1335 (define-widget 'default nil
1336 "Basic widget other widgets are derived from."
1337 :value-to-internal (lambda (widget value) value)
1338 :value-to-external (lambda (widget value) value)
1339 :button-prefix 'widget-button-prefix
1340 :button-suffix 'widget-button-suffix
1341 :complete 'widget-default-complete
1342 :create 'widget-default-create
1343 :indent nil
1344 :offset 0
1345 :format-handler 'widget-default-format-handler
1346 :button-face-get 'widget-default-button-face-get
1347 :sample-face-get 'widget-default-sample-face-get
1348 :delete 'widget-default-delete
1349 :value-set 'widget-default-value-set
1350 :value-inline 'widget-default-value-inline
1351 :default-get 'widget-default-default-get
1352 :menu-tag-get 'widget-default-menu-tag-get
1353 :validate (lambda (widget) nil)
1354 :active 'widget-default-active
1355 :activate 'widget-specify-active
1356 :deactivate 'widget-default-deactivate
1357 :mouse-down-action (lambda (widget event) nil)
1358 :action 'widget-default-action
1359 :notify 'widget-default-notify
1360 :prompt-value 'widget-default-prompt-value)
1362 (defun widget-default-complete (widget)
1363 "Call the value of the :complete-function property of WIDGET.
1364 If that does not exists, call the value of `widget-complete-field'."
1365 (let ((fun (widget-get widget :complete-function)))
1366 (call-interactively (or fun widget-complete-field))))
1368 (defun widget-default-create (widget)
1369 "Create WIDGET at point in the current buffer."
1370 (widget-specify-insert
1371 (let ((from (point))
1372 button-begin button-end
1373 sample-begin sample-end
1374 doc-begin doc-end
1375 value-pos)
1376 (insert (widget-get widget :format))
1377 (goto-char from)
1378 ;; Parse escapes in format.
1379 (while (re-search-forward "%\\(.\\)" nil t)
1380 (let ((escape (aref (match-string 1) 0)))
1381 (replace-match "" t t)
1382 (cond ((eq escape ?%)
1383 (insert "%"))
1384 ((eq escape ?\[)
1385 (setq button-begin (point))
1386 (insert (widget-get-indirect widget :button-prefix)))
1387 ((eq escape ?\])
1388 (insert (widget-get-indirect widget :button-suffix))
1389 (setq button-end (point)))
1390 ((eq escape ?\{)
1391 (setq sample-begin (point)))
1392 ((eq escape ?\})
1393 (setq sample-end (point)))
1394 ((eq escape ?n)
1395 (when (widget-get widget :indent)
1396 (insert "\n")
1397 (insert-char ? (widget-get widget :indent))))
1398 ((eq escape ?t)
1399 (let ((glyph (widget-get widget :tag-glyph))
1400 (tag (widget-get widget :tag)))
1401 (cond (glyph
1402 (widget-glyph-insert widget (or tag "image") glyph))
1403 (tag
1404 (insert tag))
1406 (let ((standard-output (current-buffer)))
1407 (princ (widget-get widget :value)))))))
1408 ((eq escape ?d)
1409 (let ((doc (widget-get widget :doc)))
1410 (when doc
1411 (setq doc-begin (point))
1412 (insert doc)
1413 (while (eq (preceding-char) ?\n)
1414 (delete-backward-char 1))
1415 (insert "\n")
1416 (setq doc-end (point)))))
1417 ((eq escape ?v)
1418 (if (and button-begin (not button-end))
1419 (widget-apply widget :value-create)
1420 (setq value-pos (point))))
1422 (widget-apply widget :format-handler escape)))))
1423 ;; Specify button, sample, and doc, and insert value.
1424 (and button-begin button-end
1425 (widget-specify-button widget button-begin button-end))
1426 (and sample-begin sample-end
1427 (widget-specify-sample widget sample-begin sample-end))
1428 (and doc-begin doc-end
1429 (widget-specify-doc widget doc-begin doc-end))
1430 (when value-pos
1431 (goto-char value-pos)
1432 (widget-apply widget :value-create)))
1433 (let ((from (copy-marker (point-min)))
1434 (to (copy-marker (point-max))))
1435 (set-marker-insertion-type from t)
1436 (set-marker-insertion-type to nil)
1437 (widget-put widget :from from)
1438 (widget-put widget :to to)))
1439 (widget-clear-undo))
1441 (defun widget-default-format-handler (widget escape)
1442 ;; We recognize the %h escape by default.
1443 (let* ((buttons (widget-get widget :buttons)))
1444 (cond ((eq escape ?h)
1445 (let* ((doc-property (widget-get widget :documentation-property))
1446 (doc-try (cond ((widget-get widget :doc))
1447 ((symbolp doc-property)
1448 (documentation-property
1449 (widget-get widget :value)
1450 doc-property))
1452 (funcall doc-property
1453 (widget-get widget :value)))))
1454 (doc-text (and (stringp doc-try)
1455 (> (length doc-try) 1)
1456 doc-try))
1457 (doc-indent (widget-get widget :documentation-indent)))
1458 (when doc-text
1459 (and (eq (preceding-char) ?\n)
1460 (widget-get widget :indent)
1461 (insert-char ? (widget-get widget :indent)))
1462 ;; The `*' in the beginning is redundant.
1463 (when (eq (aref doc-text 0) ?*)
1464 (setq doc-text (substring doc-text 1)))
1465 ;; Get rid of trailing newlines.
1466 (when (string-match "\n+\\'" doc-text)
1467 (setq doc-text (substring doc-text 0 (match-beginning 0))))
1468 (push (widget-create-child-and-convert
1469 widget 'documentation-string
1470 :indent (cond ((numberp doc-indent )
1471 doc-indent)
1472 ((null doc-indent)
1473 nil)
1474 (t 0))
1475 doc-text)
1476 buttons))))
1478 (error "Unknown escape `%c'" escape)))
1479 (widget-put widget :buttons buttons)))
1481 (defun widget-default-button-face-get (widget)
1482 ;; Use :button-face or widget-button-face
1483 (or (widget-get widget :button-face)
1484 (let ((parent (widget-get widget :parent)))
1485 (if parent
1486 (widget-apply parent :button-face-get)
1487 widget-button-face))))
1489 (defun widget-default-sample-face-get (widget)
1490 ;; Use :sample-face.
1491 (widget-get widget :sample-face))
1493 (defun widget-default-delete (widget)
1494 ;; Remove widget from the buffer.
1495 (let ((from (widget-get widget :from))
1496 (to (widget-get widget :to))
1497 (inactive-overlay (widget-get widget :inactive))
1498 (button-overlay (widget-get widget :button-overlay))
1499 (sample-overlay (widget-get widget :sample-overlay))
1500 (doc-overlay (widget-get widget :doc-overlay))
1501 before-change-functions
1502 after-change-functions
1503 (inhibit-read-only t))
1504 (widget-apply widget :value-delete)
1505 (when inactive-overlay
1506 (delete-overlay inactive-overlay))
1507 (when button-overlay
1508 (delete-overlay button-overlay))
1509 (when sample-overlay
1510 (delete-overlay sample-overlay))
1511 (when doc-overlay
1512 (delete-overlay doc-overlay))
1513 (when (< from to)
1514 ;; Kludge: this doesn't need to be true for empty formats.
1515 (delete-region from to))
1516 (set-marker from nil)
1517 (set-marker to nil))
1518 (widget-clear-undo))
1520 (defun widget-default-value-set (widget value)
1521 ;; Recreate widget with new value.
1522 (let* ((old-pos (point))
1523 (from (copy-marker (widget-get widget :from)))
1524 (to (copy-marker (widget-get widget :to)))
1525 (offset (if (and (<= from old-pos) (<= old-pos to))
1526 (if (>= old-pos (1- to))
1527 (- old-pos to 1)
1528 (- old-pos from)))))
1529 ;;??? Bug: this ought to insert the new value before deleting the old one,
1530 ;; so that markers on either side of the value automatically
1531 ;; stay on the same side. -- rms.
1532 (save-excursion
1533 (goto-char (widget-get widget :from))
1534 (widget-apply widget :delete)
1535 (widget-put widget :value value)
1536 (widget-apply widget :create))
1537 (if offset
1538 (if (< offset 0)
1539 (goto-char (+ (widget-get widget :to) offset 1))
1540 (goto-char (min (+ from offset) (1- (widget-get widget :to))))))))
1542 (defun widget-default-value-inline (widget)
1543 ;; Wrap value in a list unless it is inline.
1544 (if (widget-get widget :inline)
1545 (widget-value widget)
1546 (list (widget-value widget))))
1548 (defun widget-default-default-get (widget)
1549 ;; Get `:value'.
1550 (widget-get widget :value))
1552 (defun widget-default-menu-tag-get (widget)
1553 ;; Use tag or value for menus.
1554 (or (widget-get widget :menu-tag)
1555 (widget-get widget :tag)
1556 (widget-princ-to-string (widget-get widget :value))))
1558 (defun widget-default-active (widget)
1559 "Return t iff this widget active (user modifiable)."
1560 (and (not (widget-get widget :inactive))
1561 (let ((parent (widget-get widget :parent)))
1562 (or (null parent)
1563 (widget-apply parent :active)))))
1565 (defun widget-default-deactivate (widget)
1566 "Make WIDGET inactive for user modifications."
1567 (widget-specify-inactive widget
1568 (widget-get widget :from)
1569 (widget-get widget :to)))
1571 (defun widget-default-action (widget &optional event)
1572 ;; Notify the parent when a widget change
1573 (let ((parent (widget-get widget :parent)))
1574 (when parent
1575 (widget-apply parent :notify widget event))))
1577 (defun widget-default-notify (widget child &optional event)
1578 ;; Pass notification to parent.
1579 (widget-default-action widget event))
1581 (defun widget-default-prompt-value (widget prompt value unbound)
1582 ;; Read an arbitrary value. Stolen from `set-variable'.
1583 ;; (let ((initial (if unbound
1584 ;; nil
1585 ;; ;; It would be nice if we could do a `(cons val 1)' here.
1586 ;; (prin1-to-string (custom-quote value))))))
1587 (eval-minibuffer prompt ))
1589 ;;; The `item' Widget.
1591 (define-widget 'item 'default
1592 "Constant items for inclusion in other widgets."
1593 :convert-widget 'widget-value-convert-widget
1594 :value-create 'widget-item-value-create
1595 :value-delete 'ignore
1596 :value-get 'widget-value-value-get
1597 :match 'widget-item-match
1598 :match-inline 'widget-item-match-inline
1599 :action 'widget-item-action
1600 :format "%t\n")
1602 (defun widget-item-value-create (widget)
1603 ;; Insert the printed representation of the value.
1604 (let ((standard-output (current-buffer)))
1605 (princ (widget-get widget :value))))
1607 (defun widget-item-match (widget value)
1608 ;; Match if the value is the same.
1609 (equal (widget-get widget :value) value))
1611 (defun widget-item-match-inline (widget values)
1612 ;; Match if the value is the same.
1613 (let ((value (widget-get widget :value)))
1614 (and (listp value)
1615 (<= (length value) (length values))
1616 (let ((head (widget-sublist values 0 (length value))))
1617 (and (equal head value)
1618 (cons head (widget-sublist values (length value))))))))
1620 (defun widget-sublist (list start &optional end)
1621 "Return the sublist of LIST from START to END.
1622 If END is omitted, it defaults to the length of LIST."
1623 (if (> start 0) (setq list (nthcdr start list)))
1624 (if end
1625 (if (<= end start)
1627 (setq list (copy-sequence list))
1628 (setcdr (nthcdr (- end start 1) list) nil)
1629 list)
1630 (copy-sequence list)))
1632 (defun widget-item-action (widget &optional event)
1633 ;; Just notify itself.
1634 (widget-apply widget :notify widget event))
1636 ;;; The `push-button' Widget.
1638 (defcustom widget-push-button-gui t
1639 "If non nil, use GUI push buttons when available."
1640 :group 'widgets
1641 :type 'boolean)
1643 ;; Cache already created GUI objects.
1644 (defvar widget-push-button-cache nil)
1646 (defcustom widget-push-button-prefix "["
1647 "String used as prefix for buttons."
1648 :type 'string
1649 :group 'widget-button)
1651 (defcustom widget-push-button-suffix "]"
1652 "String used as suffix for buttons."
1653 :type 'string
1654 :group 'widget-button)
1656 (define-widget 'push-button 'item
1657 "A pushable button."
1658 :button-prefix ""
1659 :button-suffix ""
1660 :value-create 'widget-push-button-value-create
1661 :format "%[%v%]")
1663 (defun widget-push-button-value-create (widget)
1664 ;; Insert text representing the `on' and `off' states.
1665 (let* ((tag (or (widget-get widget :tag)
1666 (widget-get widget :value)))
1667 (tag-glyph (widget-get widget :tag-glyph))
1668 (text (concat widget-push-button-prefix
1669 tag widget-push-button-suffix))
1670 (gui (cdr (assoc tag widget-push-button-cache))))
1671 (cond (tag-glyph
1672 (widget-glyph-insert widget text tag-glyph))
1673 ((and (fboundp 'make-gui-button)
1674 (fboundp 'make-glyph)
1675 widget-push-button-gui
1676 (fboundp 'device-on-window-system-p)
1677 (device-on-window-system-p)
1678 (string-match "XEmacs" emacs-version))
1679 (unless gui
1680 (setq gui (make-gui-button tag 'widget-gui-action widget))
1681 (push (cons tag gui) widget-push-button-cache))
1682 (widget-glyph-insert-glyph widget
1683 (make-glyph
1684 (list (nth 0 (aref gui 1))
1685 (vector 'string ':data text)))
1686 (make-glyph
1687 (list (nth 1 (aref gui 1))
1688 (vector 'string ':data text)))
1689 (make-glyph
1690 (list (nth 2 (aref gui 1))
1691 (vector 'string ':data text)))))
1693 (insert text)))))
1695 (defun widget-gui-action (widget)
1696 "Apply :action for WIDGET."
1697 (widget-apply-action widget (this-command-keys)))
1699 ;;; The `link' Widget.
1701 (defcustom widget-link-prefix "["
1702 "String used as prefix for links."
1703 :type 'string
1704 :group 'widget-button)
1706 (defcustom widget-link-suffix "]"
1707 "String used as suffix for links."
1708 :type 'string
1709 :group 'widget-button)
1711 (define-widget 'link 'item
1712 "An embedded link."
1713 :button-prefix 'widget-link-prefix
1714 :button-suffix 'widget-link-suffix
1715 :help-echo "Follow the link."
1716 :format "%[%t%]")
1718 ;;; The `info-link' Widget.
1720 (define-widget 'info-link 'link
1721 "A link to an info file."
1722 :action 'widget-info-link-action)
1724 (defun widget-info-link-action (widget &optional event)
1725 "Open the info node specified by WIDGET."
1726 (Info-goto-node (widget-value widget)))
1728 ;;; The `url-link' Widget.
1730 (define-widget 'url-link 'link
1731 "A link to an www page."
1732 :action 'widget-url-link-action)
1734 (defun widget-url-link-action (widget &optional event)
1735 "Open the url specified by WIDGET."
1736 (browse-url (widget-value widget)))
1738 ;;; The `function-link' Widget.
1740 (define-widget 'function-link 'link
1741 "A link to an Emacs function."
1742 :action 'widget-function-link-action)
1744 (defun widget-function-link-action (widget &optional event)
1745 "Show the function specified by WIDGET."
1746 (describe-function (widget-value widget)))
1748 ;;; The `variable-link' Widget.
1750 (define-widget 'variable-link 'link
1751 "A link to an Emacs variable."
1752 :action 'widget-variable-link-action)
1754 (defun widget-variable-link-action (widget &optional event)
1755 "Show the variable specified by WIDGET."
1756 (describe-variable (widget-value widget)))
1758 ;;; The `file-link' Widget.
1760 (define-widget 'file-link 'link
1761 "A link to a file."
1762 :action 'widget-file-link-action)
1764 (defun widget-file-link-action (widget &optional event)
1765 "Find the file specified by WIDGET."
1766 (find-file (widget-value widget)))
1768 ;;; The `emacs-library-link' Widget.
1770 (define-widget 'emacs-library-link 'link
1771 "A link to an Emacs Lisp library file."
1772 :action 'widget-emacs-library-link-action)
1774 (defun widget-emacs-library-link-action (widget &optional event)
1775 "Find the Emacs Library file specified by WIDGET."
1776 (find-file (locate-library (widget-value widget))))
1778 ;;; The `emacs-commentary-link' Widget.
1780 (define-widget 'emacs-commentary-link 'link
1781 "A link to Commentary in an Emacs Lisp library file."
1782 :action 'widget-emacs-commentary-link-action)
1784 (defun widget-emacs-commentary-link-action (widget &optional event)
1785 "Find the Commentary section of the Emacs file specified by WIDGET."
1786 (finder-commentary (widget-value widget)))
1788 ;;; The `editable-field' Widget.
1790 (define-widget 'editable-field 'default
1791 "An editable text field."
1792 :convert-widget 'widget-value-convert-widget
1793 :keymap widget-field-keymap
1794 :format "%v"
1795 :value ""
1796 :prompt-internal 'widget-field-prompt-internal
1797 :prompt-history 'widget-field-history
1798 :prompt-value 'widget-field-prompt-value
1799 :action 'widget-field-action
1800 :validate 'widget-field-validate
1801 :valid-regexp ""
1802 :error "No match"
1803 :value-create 'widget-field-value-create
1804 :value-delete 'widget-field-value-delete
1805 :value-get 'widget-field-value-get
1806 :match 'widget-field-match)
1808 (defvar widget-field-history nil
1809 "History of field minibuffer edits.")
1811 (defun widget-field-prompt-internal (widget prompt initial history)
1812 ;; Read string for WIDGET promptinhg with PROMPT.
1813 ;; INITIAL is the initial input and HISTORY is a symbol containing
1814 ;; the earlier input.
1815 (read-string prompt initial history))
1817 (defun widget-field-prompt-value (widget prompt value unbound)
1818 ;; Prompt for a string.
1819 (let ((initial (if unbound
1821 (cons (widget-apply widget :value-to-internal
1822 value) 0)))
1823 (history (widget-get widget :prompt-history)))
1824 (let ((answer (widget-apply widget
1825 :prompt-internal prompt initial history)))
1826 (widget-apply widget :value-to-external answer))))
1828 (defvar widget-edit-functions nil)
1830 (defun widget-field-action (widget &optional event)
1831 ;; Move to next field.
1832 (widget-forward 1)
1833 (run-hook-with-args 'widget-edit-functions widget))
1835 (defun widget-field-validate (widget)
1836 ;; Valid if the content matches `:valid-regexp'.
1837 (save-excursion
1838 (let ((value (widget-apply widget :value-get))
1839 (regexp (widget-get widget :valid-regexp)))
1840 (if (string-match regexp value)
1842 widget))))
1844 (defun widget-field-value-create (widget)
1845 ;; Create an editable text field.
1846 (let ((size (widget-get widget :size))
1847 (value (widget-get widget :value))
1848 (from (point))
1849 ;; This is changed to a real overlay in `widget-setup'. We
1850 ;; need the end points to behave differently until
1851 ;; `widget-setup' is called.
1852 (overlay (cons (make-marker) (make-marker))))
1853 (widget-put widget :field-overlay overlay)
1854 (insert value)
1855 (and size
1856 (< (length value) size)
1857 (insert-char ?\ (- size (length value))))
1858 (unless (memq widget widget-field-list)
1859 (setq widget-field-new (cons widget widget-field-new)))
1860 (move-marker (cdr overlay) (point))
1861 (set-marker-insertion-type (cdr overlay) nil)
1862 (when (null size)
1863 (insert ?\n))
1864 (move-marker (car overlay) from)
1865 (set-marker-insertion-type (car overlay) t)))
1867 (defun widget-field-value-delete (widget)
1868 ;; Remove the widget from the list of active editing fields.
1869 (setq widget-field-list (delq widget widget-field-list))
1870 ;; These are nil if the :format string doesn't contain `%v'.
1871 (let ((overlay (widget-get widget :field-overlay)))
1872 (when overlay
1873 (delete-overlay overlay))))
1875 (defun widget-field-value-get (widget)
1876 ;; Return current text in editing field.
1877 (let ((from (widget-field-start widget))
1878 (to (widget-field-end widget))
1879 (buffer (widget-field-buffer widget))
1880 (size (widget-get widget :size))
1881 (secret (widget-get widget :secret))
1882 (old (current-buffer)))
1883 (if (and from to)
1884 (progn
1885 (set-buffer buffer)
1886 (while (and size
1887 (not (zerop size))
1888 (> to from)
1889 (eq (char-after (1- to)) ?\ ))
1890 (setq to (1- to)))
1891 (let ((result (buffer-substring-no-properties from to)))
1892 (when secret
1893 (let ((index 0))
1894 (while (< (+ from index) to)
1895 (aset result index
1896 (get-char-property (+ from index) 'secret))
1897 (setq index (1+ index)))))
1898 (set-buffer old)
1899 result))
1900 (widget-get widget :value))))
1902 (defun widget-field-match (widget value)
1903 ;; Match any string.
1904 (stringp value))
1906 ;;; The `text' Widget.
1908 (define-widget 'text 'editable-field
1909 :keymap widget-text-keymap
1910 "A multiline text area.")
1912 ;;; The `menu-choice' Widget.
1914 (define-widget 'menu-choice 'default
1915 "A menu of options."
1916 :convert-widget 'widget-types-convert-widget
1917 :format "%[%t%]: %v"
1918 :case-fold t
1919 :tag "choice"
1920 :void '(item :format "invalid (%t)\n")
1921 :value-create 'widget-choice-value-create
1922 :value-delete 'widget-children-value-delete
1923 :value-get 'widget-choice-value-get
1924 :value-inline 'widget-choice-value-inline
1925 :default-get 'widget-choice-default-get
1926 :mouse-down-action 'widget-choice-mouse-down-action
1927 :action 'widget-choice-action
1928 :error "Make a choice"
1929 :validate 'widget-choice-validate
1930 :match 'widget-choice-match
1931 :match-inline 'widget-choice-match-inline)
1933 (defun widget-choice-value-create (widget)
1934 ;; Insert the first choice that matches the value.
1935 (let ((value (widget-get widget :value))
1936 (args (widget-get widget :args))
1937 (explicit (widget-get widget :explicit-choice))
1938 (explicit-value (widget-get widget :explicit-choice-value))
1939 current)
1940 (if (and explicit (equal value explicit-value))
1941 (progn
1942 ;; If the user specified the choice for this value,
1943 ;; respect that choice as long as the value is the same.
1944 (widget-put widget :children (list (widget-create-child-value
1945 widget explicit value)))
1946 (widget-put widget :choice explicit))
1947 (while args
1948 (setq current (car args)
1949 args (cdr args))
1950 (when (widget-apply current :match value)
1951 (widget-put widget :children (list (widget-create-child-value
1952 widget current value)))
1953 (widget-put widget :choice current)
1954 (setq args nil
1955 current nil)))
1956 (when current
1957 (let ((void (widget-get widget :void)))
1958 (widget-put widget :children (list (widget-create-child-and-convert
1959 widget void :value value)))
1960 (widget-put widget :choice void))))))
1962 (defun widget-choice-value-get (widget)
1963 ;; Get value of the child widget.
1964 (widget-value (car (widget-get widget :children))))
1966 (defun widget-choice-value-inline (widget)
1967 ;; Get value of the child widget.
1968 (widget-apply (car (widget-get widget :children)) :value-inline))
1970 (defun widget-choice-default-get (widget)
1971 ;; Get default for the first choice.
1972 (widget-default-get (car (widget-get widget :args))))
1974 (defcustom widget-choice-toggle nil
1975 "If non-nil, a binary choice will just toggle between the values.
1976 Otherwise, the user will explicitly have to choose between the values
1977 when he invoked the menu."
1978 :type 'boolean
1979 :group 'widgets)
1981 (defun widget-choice-mouse-down-action (widget &optional event)
1982 ;; Return non-nil if we need a menu.
1983 (let ((args (widget-get widget :args))
1984 (old (widget-get widget :choice)))
1985 (cond ((not window-system)
1986 ;; No place to pop up a menu.
1987 nil)
1988 ((not (or (fboundp 'x-popup-menu) (fboundp 'popup-menu)))
1989 ;; No way to pop up a menu.
1990 nil)
1991 ((< (length args) 2)
1992 ;; Empty or singleton list, just return the value.
1993 nil)
1994 ((> (length args) widget-menu-max-size)
1995 ;; Too long, prompt.
1996 nil)
1997 ((> (length args) 2)
1998 ;; Reasonable sized list, use menu.
2000 ((and widget-choice-toggle (memq old args))
2001 ;; We toggle.
2002 nil)
2004 ;; Ask which of the two.
2005 t))))
2007 (defun widget-choice-action (widget &optional event)
2008 ;; Make a choice.
2009 (let ((args (widget-get widget :args))
2010 (old (widget-get widget :choice))
2011 (tag (widget-apply widget :menu-tag-get))
2012 (completion-ignore-case (widget-get widget :case-fold))
2013 this-explicit
2014 current choices)
2015 ;; Remember old value.
2016 (if (and old (not (widget-apply widget :validate)))
2017 (let* ((external (widget-value widget))
2018 (internal (widget-apply old :value-to-internal external)))
2019 (widget-put old :value internal)))
2020 ;; Find new choice.
2021 (setq current
2022 (cond ((= (length args) 0)
2023 nil)
2024 ((= (length args) 1)
2025 (nth 0 args))
2026 ((and widget-choice-toggle
2027 (= (length args) 2)
2028 (memq old args))
2029 (if (eq old (nth 0 args))
2030 (nth 1 args)
2031 (nth 0 args)))
2033 (while args
2034 (setq current (car args)
2035 args (cdr args))
2036 (setq choices
2037 (cons (cons (widget-apply current :menu-tag-get)
2038 current)
2039 choices)))
2040 (setq this-explicit t)
2041 (widget-choose tag (reverse choices) event))))
2042 (when current
2043 ;; If this was an explicit user choice,
2044 ;; record the choice, and the record the value it was made for.
2045 ;; widget-choice-value-create will respect this choice,
2046 ;; as long as the value is the same.
2047 (when this-explicit
2048 (widget-put widget :explicit-choice current)
2049 (widget-put widget :explicit-choice-value (widget-get widget :value)))
2050 (let ((value (widget-default-get current)))
2051 (widget-value-set widget
2052 (widget-apply current :value-to-external value)))
2053 (widget-setup)
2054 (widget-apply widget :notify widget event)))
2055 (run-hook-with-args 'widget-edit-functions widget))
2057 (defun widget-choice-validate (widget)
2058 ;; Valid if we have made a valid choice.
2059 (let ((void (widget-get widget :void))
2060 (choice (widget-get widget :choice))
2061 (child (car (widget-get widget :children))))
2062 (if (eq void choice)
2063 widget
2064 (widget-apply child :validate))))
2066 (defun widget-choice-match (widget value)
2067 ;; Matches if one of the choices matches.
2068 (let ((args (widget-get widget :args))
2069 current found)
2070 (while (and args (not found))
2071 (setq current (car args)
2072 args (cdr args)
2073 found (widget-apply current :match value)))
2074 found))
2076 (defun widget-choice-match-inline (widget values)
2077 ;; Matches if one of the choices matches.
2078 (let ((args (widget-get widget :args))
2079 current found)
2080 (while (and args (null found))
2081 (setq current (car args)
2082 args (cdr args)
2083 found (widget-match-inline current values)))
2084 found))
2086 ;;; The `toggle' Widget.
2088 (define-widget 'toggle 'item
2089 "Toggle between two states."
2090 :format "%[%v%]\n"
2091 :value-create 'widget-toggle-value-create
2092 :action 'widget-toggle-action
2093 :match (lambda (widget value) t)
2094 :on "on"
2095 :off "off")
2097 (defun widget-toggle-value-create (widget)
2098 ;; Insert text representing the `on' and `off' states.
2099 (if (widget-value widget)
2100 (widget-glyph-insert widget
2101 (widget-get widget :on)
2102 (widget-get widget :on-glyph))
2103 (widget-glyph-insert widget
2104 (widget-get widget :off)
2105 (widget-get widget :off-glyph))))
2107 (defun widget-toggle-action (widget &optional event)
2108 ;; Toggle value.
2109 (widget-value-set widget (not (widget-value widget)))
2110 (widget-apply widget :notify widget event)
2111 (run-hook-with-args 'widget-edit-functions widget))
2113 ;;; The `checkbox' Widget.
2115 (define-widget 'checkbox 'toggle
2116 "A checkbox toggle."
2117 :button-suffix ""
2118 :button-prefix ""
2119 :format "%[%v%]"
2120 :on "[X]"
2121 :on-glyph "check1"
2122 :off "[ ]"
2123 :off-glyph "check0"
2124 :action 'widget-checkbox-action)
2126 (defun widget-checkbox-action (widget &optional event)
2127 "Toggle checkbox, notify parent, and set active state of sibling."
2128 (widget-toggle-action widget event)
2129 (let ((sibling (widget-get-sibling widget)))
2130 (when sibling
2131 (if (widget-value widget)
2132 (widget-apply sibling :activate)
2133 (widget-apply sibling :deactivate)))))
2135 ;;; The `checklist' Widget.
2137 (define-widget 'checklist 'default
2138 "A multiple choice widget."
2139 :convert-widget 'widget-types-convert-widget
2140 :format "%v"
2141 :offset 4
2142 :entry-format "%b %v"
2143 :menu-tag "checklist"
2144 :greedy nil
2145 :value-create 'widget-checklist-value-create
2146 :value-delete 'widget-children-value-delete
2147 :value-get 'widget-checklist-value-get
2148 :validate 'widget-checklist-validate
2149 :match 'widget-checklist-match
2150 :match-inline 'widget-checklist-match-inline)
2152 (defun widget-checklist-value-create (widget)
2153 ;; Insert all values
2154 (let ((alist (widget-checklist-match-find widget (widget-get widget :value)))
2155 (args (widget-get widget :args)))
2156 (while args
2157 (widget-checklist-add-item widget (car args) (assq (car args) alist))
2158 (setq args (cdr args)))
2159 (widget-put widget :children (nreverse (widget-get widget :children)))))
2161 (defun widget-checklist-add-item (widget type chosen)
2162 ;; Create checklist item in WIDGET of type TYPE.
2163 ;; If the item is checked, CHOSEN is a cons whose cdr is the value.
2164 (and (eq (preceding-char) ?\n)
2165 (widget-get widget :indent)
2166 (insert-char ? (widget-get widget :indent)))
2167 (widget-specify-insert
2168 (let* ((children (widget-get widget :children))
2169 (buttons (widget-get widget :buttons))
2170 (button-args (or (widget-get type :sibling-args)
2171 (widget-get widget :button-args)))
2172 (from (point))
2173 child button)
2174 (insert (widget-get widget :entry-format))
2175 (goto-char from)
2176 ;; Parse % escapes in format.
2177 (while (re-search-forward "%\\([bv%]\\)" nil t)
2178 (let ((escape (aref (match-string 1) 0)))
2179 (replace-match "" t t)
2180 (cond ((eq escape ?%)
2181 (insert "%"))
2182 ((eq escape ?b)
2183 (setq button (apply 'widget-create-child-and-convert
2184 widget 'checkbox
2185 :value (not (null chosen))
2186 button-args)))
2187 ((eq escape ?v)
2188 (setq child
2189 (cond ((not chosen)
2190 (let ((child (widget-create-child widget type)))
2191 (widget-apply child :deactivate)
2192 child))
2193 ((widget-get type :inline)
2194 (widget-create-child-value
2195 widget type (cdr chosen)))
2197 (widget-create-child-value
2198 widget type (car (cdr chosen)))))))
2200 (error "Unknown escape `%c'" escape)))))
2201 ;; Update properties.
2202 (and button child (widget-put child :button button))
2203 (and button (widget-put widget :buttons (cons button buttons)))
2204 (and child (widget-put widget :children (cons child children))))))
2206 (defun widget-checklist-match (widget values)
2207 ;; All values must match a type in the checklist.
2208 (and (listp values)
2209 (null (cdr (widget-checklist-match-inline widget values)))))
2211 (defun widget-checklist-match-inline (widget values)
2212 ;; Find the values which match a type in the checklist.
2213 (let ((greedy (widget-get widget :greedy))
2214 (args (copy-sequence (widget-get widget :args)))
2215 found rest)
2216 (while values
2217 (let ((answer (widget-checklist-match-up args values)))
2218 (cond (answer
2219 (let ((vals (widget-match-inline answer values)))
2220 (setq found (append found (car vals))
2221 values (cdr vals)
2222 args (delq answer args))))
2223 (greedy
2224 (setq rest (append rest (list (car values)))
2225 values (cdr values)))
2227 (setq rest (append rest values)
2228 values nil)))))
2229 (cons found rest)))
2231 (defun widget-checklist-match-find (widget vals)
2232 ;; Find the vals which match a type in the checklist.
2233 ;; Return an alist of (TYPE MATCH).
2234 (let ((greedy (widget-get widget :greedy))
2235 (args (copy-sequence (widget-get widget :args)))
2236 found)
2237 (while vals
2238 (let ((answer (widget-checklist-match-up args vals)))
2239 (cond (answer
2240 (let ((match (widget-match-inline answer vals)))
2241 (setq found (cons (cons answer (car match)) found)
2242 vals (cdr match)
2243 args (delq answer args))))
2244 (greedy
2245 (setq vals (cdr vals)))
2247 (setq vals nil)))))
2248 found))
2250 (defun widget-checklist-match-up (args vals)
2251 ;; Rerturn the first type from ARGS that matches VALS.
2252 (let (current found)
2253 (while (and args (null found))
2254 (setq current (car args)
2255 args (cdr args)
2256 found (widget-match-inline current vals)))
2257 (if found
2258 current
2259 nil)))
2261 (defun widget-checklist-value-get (widget)
2262 ;; The values of all selected items.
2263 (let ((children (widget-get widget :children))
2264 child result)
2265 (while children
2266 (setq child (car children)
2267 children (cdr children))
2268 (if (widget-value (widget-get child :button))
2269 (setq result (append result (widget-apply child :value-inline)))))
2270 result))
2272 (defun widget-checklist-validate (widget)
2273 ;; Ticked chilren must be valid.
2274 (let ((children (widget-get widget :children))
2275 child button found)
2276 (while (and children (not found))
2277 (setq child (car children)
2278 children (cdr children)
2279 button (widget-get child :button)
2280 found (and (widget-value button)
2281 (widget-apply child :validate))))
2282 found))
2284 ;;; The `option' Widget
2286 (define-widget 'option 'checklist
2287 "An widget with an optional item."
2288 :inline t)
2290 ;;; The `choice-item' Widget.
2292 (define-widget 'choice-item 'item
2293 "Button items that delegate action events to their parents."
2294 :action 'widget-parent-action
2295 :format "%[%t%] \n")
2297 ;;; The `radio-button' Widget.
2299 (define-widget 'radio-button 'toggle
2300 "A radio button for use in the `radio' widget."
2301 :notify 'widget-radio-button-notify
2302 :format "%[%v%]"
2303 :button-suffix ""
2304 :button-prefix ""
2305 :on "(*)"
2306 :on-glyph "radio1"
2307 :off "( )"
2308 :off-glyph "radio0")
2310 (defun widget-radio-button-notify (widget child &optional event)
2311 ;; Tell daddy.
2312 (widget-apply (widget-get widget :parent) :action widget event))
2314 ;;; The `radio-button-choice' Widget.
2316 (define-widget 'radio-button-choice 'default
2317 "Select one of multiple options."
2318 :convert-widget 'widget-types-convert-widget
2319 :offset 4
2320 :format "%v"
2321 :entry-format "%b %v"
2322 :menu-tag "radio"
2323 :value-create 'widget-radio-value-create
2324 :value-delete 'widget-children-value-delete
2325 :value-get 'widget-radio-value-get
2326 :value-inline 'widget-radio-value-inline
2327 :value-set 'widget-radio-value-set
2328 :error "You must push one of the buttons"
2329 :validate 'widget-radio-validate
2330 :match 'widget-choice-match
2331 :match-inline 'widget-choice-match-inline
2332 :action 'widget-radio-action)
2334 (defun widget-radio-value-create (widget)
2335 ;; Insert all values
2336 (let ((args (widget-get widget :args))
2337 arg)
2338 (while args
2339 (setq arg (car args)
2340 args (cdr args))
2341 (widget-radio-add-item widget arg))))
2343 (defun widget-radio-add-item (widget type)
2344 "Add to radio widget WIDGET a new radio button item of type TYPE."
2345 ;; (setq type (widget-convert type))
2346 (and (eq (preceding-char) ?\n)
2347 (widget-get widget :indent)
2348 (insert-char ? (widget-get widget :indent)))
2349 (widget-specify-insert
2350 (let* ((value (widget-get widget :value))
2351 (children (widget-get widget :children))
2352 (buttons (widget-get widget :buttons))
2353 (button-args (or (widget-get type :sibling-args)
2354 (widget-get widget :button-args)))
2355 (from (point))
2356 (chosen (and (null (widget-get widget :choice))
2357 (widget-apply type :match value)))
2358 child button)
2359 (insert (widget-get widget :entry-format))
2360 (goto-char from)
2361 ;; Parse % escapes in format.
2362 (while (re-search-forward "%\\([bv%]\\)" nil t)
2363 (let ((escape (aref (match-string 1) 0)))
2364 (replace-match "" t t)
2365 (cond ((eq escape ?%)
2366 (insert "%"))
2367 ((eq escape ?b)
2368 (setq button (apply 'widget-create-child-and-convert
2369 widget 'radio-button
2370 :value (not (null chosen))
2371 button-args)))
2372 ((eq escape ?v)
2373 (setq child (if chosen
2374 (widget-create-child-value
2375 widget type value)
2376 (widget-create-child widget type)))
2377 (unless chosen
2378 (widget-apply child :deactivate)))
2380 (error "Unknown escape `%c'" escape)))))
2381 ;; Update properties.
2382 (when chosen
2383 (widget-put widget :choice type))
2384 (when button
2385 (widget-put child :button button)
2386 (widget-put widget :buttons (nconc buttons (list button))))
2387 (when child
2388 (widget-put widget :children (nconc children (list child))))
2389 child)))
2391 (defun widget-radio-value-get (widget)
2392 ;; Get value of the child widget.
2393 (let ((chosen (widget-radio-chosen widget)))
2394 (and chosen (widget-value chosen))))
2396 (defun widget-radio-chosen (widget)
2397 "Return the widget representing the chosen radio button."
2398 (let ((children (widget-get widget :children))
2399 current found)
2400 (while children
2401 (setq current (car children)
2402 children (cdr children))
2403 (let* ((button (widget-get current :button))
2404 (value (widget-apply button :value-get)))
2405 (when value
2406 (setq found current
2407 children nil))))
2408 found))
2410 (defun widget-radio-value-inline (widget)
2411 ;; Get value of the child widget.
2412 (let ((children (widget-get widget :children))
2413 current found)
2414 (while children
2415 (setq current (car children)
2416 children (cdr children))
2417 (let* ((button (widget-get current :button))
2418 (value (widget-apply button :value-get)))
2419 (when value
2420 (setq found (widget-apply current :value-inline)
2421 children nil))))
2422 found))
2424 (defun widget-radio-value-set (widget value)
2425 ;; We can't just delete and recreate a radio widget, since children
2426 ;; can be added after the original creation and won't be recreated
2427 ;; by `:create'.
2428 (let ((children (widget-get widget :children))
2429 current found)
2430 (while children
2431 (setq current (car children)
2432 children (cdr children))
2433 (let* ((button (widget-get current :button))
2434 (match (and (not found)
2435 (widget-apply current :match value))))
2436 (widget-value-set button match)
2437 (if match
2438 (progn
2439 (widget-value-set current value)
2440 (widget-apply current :activate))
2441 (widget-apply current :deactivate))
2442 (setq found (or found match))))))
2444 (defun widget-radio-validate (widget)
2445 ;; Valid if we have made a valid choice.
2446 (let ((children (widget-get widget :children))
2447 current found button)
2448 (while (and children (not found))
2449 (setq current (car children)
2450 children (cdr children)
2451 button (widget-get current :button)
2452 found (widget-apply button :value-get)))
2453 (if found
2454 (widget-apply current :validate)
2455 widget)))
2457 (defun widget-radio-action (widget child event)
2458 ;; Check if a radio button was pressed.
2459 (let ((children (widget-get widget :children))
2460 (buttons (widget-get widget :buttons))
2461 current)
2462 (when (memq child buttons)
2463 (while children
2464 (setq current (car children)
2465 children (cdr children))
2466 (let* ((button (widget-get current :button)))
2467 (cond ((eq child button)
2468 (widget-value-set button t)
2469 (widget-apply current :activate))
2470 ((widget-value button)
2471 (widget-value-set button nil)
2472 (widget-apply current :deactivate)))))))
2473 ;; Pass notification to parent.
2474 (widget-apply widget :notify child event))
2476 ;;; The `insert-button' Widget.
2478 (define-widget 'insert-button 'push-button
2479 "An insert button for the `editable-list' widget."
2480 :tag "INS"
2481 :help-echo "Insert a new item into the list at this position."
2482 :action 'widget-insert-button-action)
2484 (defun widget-insert-button-action (widget &optional event)
2485 ;; Ask the parent to insert a new item.
2486 (widget-apply (widget-get widget :parent)
2487 :insert-before (widget-get widget :widget)))
2489 ;;; The `delete-button' Widget.
2491 (define-widget 'delete-button 'push-button
2492 "A delete button for the `editable-list' widget."
2493 :tag "DEL"
2494 :help-echo "Delete this item from the list."
2495 :action 'widget-delete-button-action)
2497 (defun widget-delete-button-action (widget &optional event)
2498 ;; Ask the parent to insert a new item.
2499 (widget-apply (widget-get widget :parent)
2500 :delete-at (widget-get widget :widget)))
2502 ;;; The `editable-list' Widget.
2504 (defcustom widget-editable-list-gui nil
2505 "If non nil, use GUI push-buttons in editable list when available."
2506 :type 'boolean
2507 :group 'widgets)
2509 (define-widget 'editable-list 'default
2510 "A variable list of widgets of the same type."
2511 :convert-widget 'widget-types-convert-widget
2512 :offset 12
2513 :format "%v%i\n"
2514 :format-handler 'widget-editable-list-format-handler
2515 :entry-format "%i %d %v"
2516 :menu-tag "editable-list"
2517 :value-create 'widget-editable-list-value-create
2518 :value-delete 'widget-children-value-delete
2519 :value-get 'widget-editable-list-value-get
2520 :validate 'widget-children-validate
2521 :match 'widget-editable-list-match
2522 :match-inline 'widget-editable-list-match-inline
2523 :insert-before 'widget-editable-list-insert-before
2524 :delete-at 'widget-editable-list-delete-at)
2526 (defun widget-editable-list-format-handler (widget escape)
2527 ;; We recognize the insert button.
2528 (let ((widget-push-button-gui widget-editable-list-gui))
2529 (cond ((eq escape ?i)
2530 (and (widget-get widget :indent)
2531 (insert-char ? (widget-get widget :indent)))
2532 (apply 'widget-create-child-and-convert
2533 widget 'insert-button
2534 (widget-get widget :append-button-args)))
2536 (widget-default-format-handler widget escape)))))
2538 (defun widget-editable-list-value-create (widget)
2539 ;; Insert all values
2540 (let* ((value (widget-get widget :value))
2541 (type (nth 0 (widget-get widget :args)))
2542 (inlinep (widget-get type :inline))
2543 children)
2544 (widget-put widget :value-pos (copy-marker (point)))
2545 (set-marker-insertion-type (widget-get widget :value-pos) t)
2546 (while value
2547 (let ((answer (widget-match-inline type value)))
2548 (if answer
2549 (setq children (cons (widget-editable-list-entry-create
2550 widget
2551 (if inlinep
2552 (car answer)
2553 (car (car answer)))
2555 children)
2556 value (cdr answer))
2557 (setq value nil))))
2558 (widget-put widget :children (nreverse children))))
2560 (defun widget-editable-list-value-get (widget)
2561 ;; Get value of the child widget.
2562 (apply 'append (mapcar (lambda (child) (widget-apply child :value-inline))
2563 (widget-get widget :children))))
2565 (defun widget-editable-list-match (widget value)
2566 ;; Value must be a list and all the members must match the type.
2567 (and (listp value)
2568 (null (cdr (widget-editable-list-match-inline widget value)))))
2570 (defun widget-editable-list-match-inline (widget value)
2571 (let ((type (nth 0 (widget-get widget :args)))
2572 (ok t)
2573 found)
2574 (while (and value ok)
2575 (let ((answer (widget-match-inline type value)))
2576 (if answer
2577 (setq found (append found (car answer))
2578 value (cdr answer))
2579 (setq ok nil))))
2580 (cons found value)))
2582 (defun widget-editable-list-insert-before (widget before)
2583 ;; Insert a new child in the list of children.
2584 (save-excursion
2585 (let ((children (widget-get widget :children))
2586 (inhibit-read-only t)
2587 before-change-functions
2588 after-change-functions)
2589 (cond (before
2590 (goto-char (widget-get before :entry-from)))
2592 (goto-char (widget-get widget :value-pos))))
2593 (let ((child (widget-editable-list-entry-create
2594 widget nil nil)))
2595 (when (< (widget-get child :entry-from) (widget-get widget :from))
2596 (set-marker (widget-get widget :from)
2597 (widget-get child :entry-from)))
2598 (if (eq (car children) before)
2599 (widget-put widget :children (cons child children))
2600 (while (not (eq (car (cdr children)) before))
2601 (setq children (cdr children)))
2602 (setcdr children (cons child (cdr children)))))))
2603 (widget-setup)
2604 (widget-apply widget :notify widget))
2606 (defun widget-editable-list-delete-at (widget child)
2607 ;; Delete child from list of children.
2608 (save-excursion
2609 (let ((buttons (copy-sequence (widget-get widget :buttons)))
2610 button
2611 (inhibit-read-only t)
2612 before-change-functions
2613 after-change-functions)
2614 (while buttons
2615 (setq button (car buttons)
2616 buttons (cdr buttons))
2617 (when (eq (widget-get button :widget) child)
2618 (widget-put widget
2619 :buttons (delq button (widget-get widget :buttons)))
2620 (widget-delete button))))
2621 (let ((entry-from (widget-get child :entry-from))
2622 (entry-to (widget-get child :entry-to))
2623 (inhibit-read-only t)
2624 before-change-functions
2625 after-change-functions)
2626 (widget-delete child)
2627 (delete-region entry-from entry-to)
2628 (set-marker entry-from nil)
2629 (set-marker entry-to nil))
2630 (widget-put widget :children (delq child (widget-get widget :children))))
2631 (widget-setup)
2632 (widget-apply widget :notify widget))
2634 (defun widget-editable-list-entry-create (widget value conv)
2635 ;; Create a new entry to the list.
2636 (let ((type (nth 0 (widget-get widget :args)))
2637 (widget-push-button-gui widget-editable-list-gui)
2638 child delete insert)
2639 (widget-specify-insert
2640 (save-excursion
2641 (and (widget-get widget :indent)
2642 (insert-char ? (widget-get widget :indent)))
2643 (insert (widget-get widget :entry-format)))
2644 ;; Parse % escapes in format.
2645 (while (re-search-forward "%\\(.\\)" nil t)
2646 (let ((escape (aref (match-string 1) 0)))
2647 (replace-match "" t t)
2648 (cond ((eq escape ?%)
2649 (insert "%"))
2650 ((eq escape ?i)
2651 (setq insert (apply 'widget-create-child-and-convert
2652 widget 'insert-button
2653 (widget-get widget :insert-button-args))))
2654 ((eq escape ?d)
2655 (setq delete (apply 'widget-create-child-and-convert
2656 widget 'delete-button
2657 (widget-get widget :delete-button-args))))
2658 ((eq escape ?v)
2659 (if conv
2660 (setq child (widget-create-child-value
2661 widget type value))
2662 (setq child (widget-create-child-value
2663 widget type
2664 (widget-apply type :value-to-external
2665 (widget-default-get type))))))
2667 (error "Unknown escape `%c'" escape)))))
2668 (widget-put widget
2669 :buttons (cons delete
2670 (cons insert
2671 (widget-get widget :buttons))))
2672 (let ((entry-from (copy-marker (point-min)))
2673 (entry-to (copy-marker (point-max))))
2674 (set-marker-insertion-type entry-from t)
2675 (set-marker-insertion-type entry-to nil)
2676 (widget-put child :entry-from entry-from)
2677 (widget-put child :entry-to entry-to)))
2678 (widget-put insert :widget child)
2679 (widget-put delete :widget child)
2680 child))
2682 ;;; The `group' Widget.
2684 (define-widget 'group 'default
2685 "A widget which groups other widgets inside."
2686 :convert-widget 'widget-types-convert-widget
2687 :format "%v"
2688 :value-create 'widget-group-value-create
2689 :value-delete 'widget-children-value-delete
2690 :value-get 'widget-editable-list-value-get
2691 :default-get 'widget-group-default-get
2692 :validate 'widget-children-validate
2693 :match 'widget-group-match
2694 :match-inline 'widget-group-match-inline)
2696 (defun widget-group-value-create (widget)
2697 ;; Create each component.
2698 (let ((args (widget-get widget :args))
2699 (value (widget-get widget :value))
2700 arg answer children)
2701 (while args
2702 (setq arg (car args)
2703 args (cdr args)
2704 answer (widget-match-inline arg value)
2705 value (cdr answer))
2706 (and (eq (preceding-char) ?\n)
2707 (widget-get widget :indent)
2708 (insert-char ? (widget-get widget :indent)))
2709 (push (cond ((null answer)
2710 (widget-create-child widget arg))
2711 ((widget-get arg :inline)
2712 (widget-create-child-value widget arg (car answer)))
2714 (widget-create-child-value widget arg (car (car answer)))))
2715 children))
2716 (widget-put widget :children (nreverse children))))
2718 (defun widget-group-default-get (widget)
2719 ;; Get the default of the components.
2720 (mapcar 'widget-default-get (widget-get widget :args)))
2722 (defun widget-group-match (widget values)
2723 ;; Match if the components match.
2724 (and (listp values)
2725 (let ((match (widget-group-match-inline widget values)))
2726 (and match (null (cdr match))))))
2728 (defun widget-group-match-inline (widget vals)
2729 ;; Match if the components match.
2730 (let ((args (widget-get widget :args))
2731 argument answer found)
2732 (while args
2733 (setq argument (car args)
2734 args (cdr args)
2735 answer (widget-match-inline argument vals))
2736 (if answer
2737 (setq vals (cdr answer)
2738 found (append found (car answer)))
2739 (setq vals nil
2740 args nil)))
2741 (if answer
2742 (cons found vals)
2743 nil)))
2745 ;;; The `visibility' Widget.
2747 (define-widget 'visibility 'item
2748 "An indicator and manipulator for hidden items."
2749 :format "%[%v%]"
2750 :button-prefix ""
2751 :button-suffix ""
2752 :on "Hide"
2753 :off "Show"
2754 :value-create 'widget-visibility-value-create
2755 :action 'widget-toggle-action
2756 :match (lambda (widget value) t))
2758 (defun widget-visibility-value-create (widget)
2759 ;; Insert text representing the `on' and `off' states.
2760 (let ((on (widget-get widget :on))
2761 (off (widget-get widget :off)))
2762 (if on
2763 (setq on (concat widget-push-button-prefix
2765 widget-push-button-suffix))
2766 (setq on ""))
2767 (if off
2768 (setq off (concat widget-push-button-prefix
2770 widget-push-button-suffix))
2771 (setq off ""))
2772 (if (widget-value widget)
2773 (widget-glyph-insert widget on "down" "down-pushed")
2774 (widget-glyph-insert widget off "right" "right-pushed"))))
2776 ;;; The `documentation-link' Widget.
2778 ;; This is a helper widget for `documentation-string'.
2780 (define-widget 'documentation-link 'link
2781 "Link type used in documentation strings."
2782 :tab-order -1
2783 :help-echo 'widget-documentation-link-echo-help
2784 :action 'widget-documentation-link-action)
2786 (defun widget-documentation-link-echo-help (widget)
2787 "Tell what this link will describe."
2788 (concat "Describe the `" (widget-get widget :value) "' symbol."))
2790 (defun widget-documentation-link-action (widget &optional event)
2791 "Display documentation for WIDGET's value. Ignore optional argument EVENT."
2792 (let* ((string (widget-get widget :value))
2793 (symbol (intern string)))
2794 (if (and (fboundp symbol) (boundp symbol))
2795 ;; If there are two doc strings, give the user a way to pick one.
2796 (apropos (concat "\\`" (regexp-quote string) "\\'"))
2797 (if (fboundp symbol)
2798 (describe-function symbol)
2799 (describe-variable symbol)))))
2801 (defcustom widget-documentation-links t
2802 "Add hyperlinks to documentation strings when non-nil."
2803 :type 'boolean
2804 :group 'widget-documentation)
2806 (defcustom widget-documentation-link-regexp "`\\([^\n`' ]+\\)'"
2807 "Regexp for matching potential links in documentation strings.
2808 The first group should be the link itself."
2809 :type 'regexp
2810 :group 'widget-documentation)
2812 (defcustom widget-documentation-link-p 'intern-soft
2813 "Predicate used to test if a string is useful as a link.
2814 The value should be a function. The function will be called one
2815 argument, a string, and should return non-nil if there should be a
2816 link for that string."
2817 :type 'function
2818 :options '(widget-documentation-link-p)
2819 :group 'widget-documentation)
2821 (defcustom widget-documentation-link-type 'documentation-link
2822 "Widget type used for links in documentation strings."
2823 :type 'symbol
2824 :group 'widget-documentation)
2826 (defun widget-documentation-link-add (widget from to)
2827 (widget-specify-doc widget from to)
2828 (when widget-documentation-links
2829 (let ((regexp widget-documentation-link-regexp)
2830 (predicate widget-documentation-link-p)
2831 (type widget-documentation-link-type)
2832 (buttons (widget-get widget :buttons))
2833 (widget-mouse-face (default-value 'widget-mouse-face))
2834 (widget-button-face widget-documentation-face)
2835 (widget-button-pressed-face widget-documentation-face))
2836 (save-excursion
2837 (goto-char from)
2838 (while (re-search-forward regexp to t)
2839 (let ((name (match-string 1))
2840 (begin (match-beginning 1))
2841 (end (match-end 1)))
2842 (when (funcall predicate name)
2843 (push (widget-convert-button type begin end :value name)
2844 buttons)))))
2845 (widget-put widget :buttons buttons)))
2846 (let ((indent (widget-get widget :indent)))
2847 (when (and indent (not (zerop indent)))
2848 (save-excursion
2849 (save-restriction
2850 (narrow-to-region from to)
2851 (goto-char (point-min))
2852 (while (search-forward "\n" nil t)
2853 (insert-char ?\ indent)))))))
2855 ;;; The `documentation-string' Widget.
2857 (define-widget 'documentation-string 'item
2858 "A documentation string."
2859 :format "%v"
2860 :action 'widget-documentation-string-action
2861 :value-delete 'widget-children-value-delete
2862 :value-create 'widget-documentation-string-value-create)
2864 (defun widget-documentation-string-value-create (widget)
2865 ;; Insert documentation string.
2866 (let ((doc (widget-value widget))
2867 (indent (widget-get widget :indent))
2868 (shown (widget-get (widget-get widget :parent) :documentation-shown))
2869 (start (point)))
2870 (if (string-match "\n" doc)
2871 (let ((before (substring doc 0 (match-beginning 0)))
2872 (after (substring doc (match-beginning 0)))
2873 buttons)
2874 (insert before " ")
2875 (widget-documentation-link-add widget start (point))
2876 (push (widget-create-child-and-convert
2877 widget 'visibility
2878 :help-echo "Show or hide rest of the documentation."
2879 :off "More"
2880 :action 'widget-parent-action
2881 shown)
2882 buttons)
2883 (when shown
2884 (setq start (point))
2885 (when (and indent (not (zerop indent)))
2886 (insert-char ?\ indent))
2887 (insert after)
2888 (widget-documentation-link-add widget start (point)))
2889 (widget-put widget :buttons buttons))
2890 (insert doc)
2891 (widget-documentation-link-add widget start (point))))
2892 (insert "\n"))
2894 (defun widget-documentation-string-action (widget &rest ignore)
2895 ;; Toggle documentation.
2896 (let ((parent (widget-get widget :parent)))
2897 (widget-put parent :documentation-shown
2898 (not (widget-get parent :documentation-shown))))
2899 ;; Redraw.
2900 (widget-value-set widget (widget-value widget)))
2902 ;;; The Sexp Widgets.
2904 (define-widget 'const 'item
2905 "An immutable sexp."
2906 :prompt-value 'widget-const-prompt-value
2907 :format "%t\n%d")
2909 (defun widget-const-prompt-value (widget prompt value unbound)
2910 ;; Return the value of the const.
2911 (widget-value widget))
2913 (define-widget 'function-item 'const
2914 "An immutable function name."
2915 :format "%v\n%h"
2916 :documentation-property (lambda (symbol)
2917 (condition-case nil
2918 (documentation symbol t)
2919 (error nil))))
2921 (define-widget 'variable-item 'const
2922 "An immutable variable name."
2923 :format "%v\n%h"
2924 :documentation-property 'variable-documentation)
2926 (define-widget 'other 'sexp
2927 "Matches any value, but doesn't let the user edit the value.
2928 This is useful as last item in a `choice' widget.
2929 You should use this widget type with a default value,
2930 as in (other DEFAULT) or (other :tag \"NAME\" DEFAULT).
2931 If the user selects this alternative, that specifies DEFAULT
2932 as the value."
2933 :tag "Other"
2934 :format "%t%n"
2935 :value 'other)
2937 (defvar widget-string-prompt-value-history nil
2938 "History of input to `widget-string-prompt-value'.")
2940 (define-widget 'string 'editable-field
2941 "A string"
2942 :tag "String"
2943 :format "%{%t%}: %v"
2944 :complete-function 'ispell-complete-word
2945 :prompt-history 'widget-string-prompt-value-history)
2947 (define-widget 'regexp 'string
2948 "A regular expression."
2949 :match 'widget-regexp-match
2950 :validate 'widget-regexp-validate
2951 ;; Doesn't work well with terminating newline.
2952 ;; :value-face 'widget-single-line-field-face
2953 :tag "Regexp")
2955 (defun widget-regexp-match (widget value)
2956 ;; Match valid regexps.
2957 (and (stringp value)
2958 (condition-case nil
2959 (prog1 t
2960 (string-match value ""))
2961 (error nil))))
2963 (defun widget-regexp-validate (widget)
2964 "Check that the value of WIDGET is a valid regexp."
2965 (let ((val (widget-value widget)))
2966 (condition-case data
2967 (prog1 nil
2968 (string-match val ""))
2969 (error (widget-put widget :error (error-message-string data))
2970 widget))))
2972 (define-widget 'file 'string
2973 "A file widget.
2974 It will read a file name from the minibuffer when invoked."
2975 :complete-function 'widget-file-complete
2976 :prompt-value 'widget-file-prompt-value
2977 :format "%{%t%}: %v"
2978 ;; Doesn't work well with terminating newline.
2979 ;; :value-face 'widget-single-line-field-face
2980 :tag "File")
2982 (defun widget-file-complete ()
2983 "Perform completion on file name preceding point."
2984 (interactive)
2985 (let* ((end (point))
2986 (beg (save-excursion
2987 (skip-chars-backward "^ ")
2988 (point)))
2989 (pattern (buffer-substring beg end))
2990 (name-part (file-name-nondirectory pattern))
2991 (directory (file-name-directory pattern))
2992 (completion (file-name-completion name-part directory)))
2993 (cond ((eq completion t))
2994 ((null completion)
2995 (message "Can't find completion for \"%s\"" pattern)
2996 (ding))
2997 ((not (string= name-part completion))
2998 (delete-region beg end)
2999 (insert (expand-file-name completion directory)))
3001 (message "Making completion list...")
3002 (let ((list (file-name-all-completions name-part directory)))
3003 (setq list (sort list 'string<))
3004 (with-output-to-temp-buffer "*Completions*"
3005 (display-completion-list list)))
3006 (message "Making completion list...%s" "done")))))
3008 (defun widget-file-prompt-value (widget prompt value unbound)
3009 ;; Read file from minibuffer.
3010 (abbreviate-file-name
3011 (if unbound
3012 (read-file-name prompt)
3013 (let ((prompt2 (format "%s (default %s) " prompt value))
3014 (dir (file-name-directory value))
3015 (file (file-name-nondirectory value))
3016 (must-match (widget-get widget :must-match)))
3017 (read-file-name prompt2 dir nil must-match file)))))
3019 ;;;(defun widget-file-action (widget &optional event)
3020 ;;; ;; Read a file name from the minibuffer.
3021 ;;; (let* ((value (widget-value widget))
3022 ;;; (dir (file-name-directory value))
3023 ;;; (file (file-name-nondirectory value))
3024 ;;; (menu-tag (widget-apply widget :menu-tag-get))
3025 ;;; (must-match (widget-get widget :must-match))
3026 ;;; (answer (read-file-name (concat menu-tag ": (default `" value "') ")
3027 ;;; dir nil must-match file)))
3028 ;;; (widget-value-set widget (abbreviate-file-name answer))
3029 ;;; (widget-setup)
3030 ;;; (widget-apply widget :notify widget event)))
3032 (define-widget 'directory 'file
3033 "A directory widget.
3034 It will read a directory name from the minibuffer when invoked."
3035 :tag "Directory")
3037 (defvar widget-symbol-prompt-value-history nil
3038 "History of input to `widget-symbol-prompt-value'.")
3040 (define-widget 'symbol 'editable-field
3041 "A Lisp symbol."
3042 :value nil
3043 :tag "Symbol"
3044 :format "%{%t%}: %v"
3045 :match (lambda (widget value) (symbolp value))
3046 :complete-function 'lisp-complete-symbol
3047 :prompt-internal 'widget-symbol-prompt-internal
3048 :prompt-match 'symbolp
3049 :prompt-history 'widget-symbol-prompt-value-history
3050 :value-to-internal (lambda (widget value)
3051 (if (symbolp value)
3052 (symbol-name value)
3053 value))
3054 :value-to-external (lambda (widget value)
3055 (if (stringp value)
3056 (intern value)
3057 value)))
3059 (defun widget-symbol-prompt-internal (widget prompt initial history)
3060 ;; Read file from minibuffer.
3061 (let ((answer (completing-read prompt obarray
3062 (widget-get widget :prompt-match)
3063 nil initial history)))
3064 (if (and (stringp answer)
3065 (not (zerop (length answer))))
3066 answer
3067 (error "No value"))))
3069 (defvar widget-function-prompt-value-history nil
3070 "History of input to `widget-function-prompt-value'.")
3072 (define-widget 'function 'sexp
3073 "A Lisp function."
3074 :complete-function 'lisp-complete-symbol
3075 :prompt-value 'widget-field-prompt-value
3076 :prompt-internal 'widget-symbol-prompt-internal
3077 :prompt-match 'fboundp
3078 :prompt-history 'widget-function-prompt-value-history
3079 :action 'widget-field-action
3080 :tag "Function")
3082 (defvar widget-variable-prompt-value-history nil
3083 "History of input to `widget-variable-prompt-value'.")
3085 (define-widget 'variable 'symbol
3086 ;; Should complete on variables.
3087 "A Lisp variable."
3088 :prompt-match 'boundp
3089 :prompt-history 'widget-variable-prompt-value-history
3090 :tag "Variable")
3092 (defvar widget-coding-system-prompt-value-history nil
3093 "History of input to `widget-coding-system-prompt-value'.")
3095 (define-widget 'coding-system 'symbol
3096 "A MULE coding-system."
3097 :format "%{%t%}: %v"
3098 :tag "Coding system"
3099 :prompt-history 'widget-coding-system-prompt-value-history
3100 :prompt-value 'widget-coding-system-prompt-value
3101 :action 'widget-coding-system-action)
3103 (defun widget-coding-system-prompt-value (widget prompt value unbound)
3104 ;; Read coding-system from minibuffer.
3105 (intern
3106 (completing-read (format "%s (default %s) " prompt value)
3107 (mapcar (function
3108 (lambda (sym)
3109 (list (symbol-name sym))
3111 (coding-system-list)))))
3113 (defun widget-coding-system-action (widget &optional event)
3114 ;; Read a file name from the minibuffer.
3115 (let ((answer
3116 (widget-coding-system-prompt-value
3117 widget
3118 (widget-apply widget :menu-tag-get)
3119 (widget-value widget)
3120 t)))
3121 (widget-value-set widget answer)
3122 (widget-apply widget :notify widget event)
3123 (widget-setup)))
3125 (define-widget 'sexp 'editable-field
3126 "An arbitrary Lisp expression."
3127 :tag "Lisp expression"
3128 :format "%{%t%}: %v"
3129 :value nil
3130 :validate 'widget-sexp-validate
3131 :match (lambda (widget value) t)
3132 :value-to-internal 'widget-sexp-value-to-internal
3133 :value-to-external (lambda (widget value) (read value))
3134 :prompt-history 'widget-sexp-prompt-value-history
3135 :prompt-value 'widget-sexp-prompt-value)
3137 (defun widget-sexp-value-to-internal (widget value)
3138 ;; Use pp for printer representation.
3139 (let ((pp (if (symbolp value)
3140 (prin1-to-string value)
3141 (pp-to-string value))))
3142 (while (string-match "\n\\'" pp)
3143 (setq pp (substring pp 0 -1)))
3144 (if (or (string-match "\n\\'" pp)
3145 (> (length pp) 40))
3146 (concat "\n" pp)
3147 pp)))
3149 (defun widget-sexp-validate (widget)
3150 ;; Valid if we can read the string and there is no junk left after it.
3151 (save-excursion
3152 (let ((buffer (set-buffer (get-buffer-create " *Widget Scratch*"))))
3153 (erase-buffer)
3154 (insert (widget-apply widget :value-get))
3155 (goto-char (point-min))
3156 (condition-case data
3157 (let ((value (read buffer)))
3158 (if (eobp)
3159 (if (widget-apply widget :match value)
3161 (widget-put widget :error (widget-get widget :type-error))
3162 widget)
3163 (widget-put widget
3164 :error (format "Junk at end of expression: %s"
3165 (buffer-substring (point)
3166 (point-max))))
3167 widget))
3168 (error (widget-put widget :error (error-message-string data))
3169 widget)))))
3171 (defvar widget-sexp-prompt-value-history nil
3172 "History of input to `widget-sexp-prompt-value'.")
3174 (defun widget-sexp-prompt-value (widget prompt value unbound)
3175 ;; Read an arbitrary sexp.
3176 (let ((found (read-string prompt
3177 (if unbound nil (cons (prin1-to-string value) 0))
3178 (widget-get widget :prompt-history))))
3179 (save-excursion
3180 (let ((buffer (set-buffer (get-buffer-create " *Widget Scratch*"))))
3181 (erase-buffer)
3182 (insert found)
3183 (goto-char (point-min))
3184 (let ((answer (read buffer)))
3185 (unless (eobp)
3186 (error "Junk at end of expression: %s"
3187 (buffer-substring (point) (point-max))))
3188 answer)))))
3190 (define-widget 'restricted-sexp 'sexp
3191 "A Lisp expression restricted to values that match.
3192 To use this type, you must define :match or :match-alternatives."
3193 :type-error "The specified value is not valid"
3194 :match 'widget-restricted-sexp-match
3195 :value-to-internal (lambda (widget value)
3196 (if (widget-apply widget :match value)
3197 (prin1-to-string value)
3198 value)))
3200 (defun widget-restricted-sexp-match (widget value)
3201 (let ((alternatives (widget-get widget :match-alternatives))
3202 matched)
3203 (while (and alternatives (not matched))
3204 (if (cond ((functionp (car alternatives))
3205 (funcall (car alternatives) value))
3206 ((and (consp (car alternatives))
3207 (eq (car (car alternatives)) 'quote))
3208 (eq value (nth 1 (car alternatives)))))
3209 (setq matched t))
3210 (setq alternatives (cdr alternatives)))
3211 matched))
3213 (define-widget 'integer 'restricted-sexp
3214 "An integer."
3215 :tag "Integer"
3216 :value 0
3217 :type-error "This field should contain an integer"
3218 :match-alternatives '(integerp))
3220 (define-widget 'number 'restricted-sexp
3221 "A floating point number."
3222 :tag "Number"
3223 :value 0.0
3224 :type-error "This field should contain a number"
3225 :match-alternatives '(numberp))
3227 (define-widget 'character 'editable-field
3228 "A character."
3229 :tag "Character"
3230 :value 0
3231 :size 1
3232 :format "%{%t%}: %v\n"
3233 :valid-regexp "\\`.\\'"
3234 :error "This field should contain a single character"
3235 :value-to-internal (lambda (widget value)
3236 (if (stringp value)
3237 value
3238 (char-to-string value)))
3239 :value-to-external (lambda (widget value)
3240 (if (stringp value)
3241 (aref value 0)
3242 value))
3243 :match (lambda (widget value)
3244 (if (fboundp 'characterp)
3245 (characterp value)
3246 (integerp value))))
3248 (define-widget 'list 'group
3249 "A Lisp list."
3250 :tag "List"
3251 :format "%{%t%}:\n%v")
3253 (define-widget 'vector 'group
3254 "A Lisp vector."
3255 :tag "Vector"
3256 :format "%{%t%}:\n%v"
3257 :match 'widget-vector-match
3258 :value-to-internal (lambda (widget value) (append value nil))
3259 :value-to-external (lambda (widget value) (apply 'vector value)))
3261 (defun widget-vector-match (widget value)
3262 (and (vectorp value)
3263 (widget-group-match widget
3264 (widget-apply widget :value-to-internal value))))
3266 (define-widget 'cons 'group
3267 "A cons-cell."
3268 :tag "Cons-cell"
3269 :format "%{%t%}:\n%v"
3270 :match 'widget-cons-match
3271 :value-to-internal (lambda (widget value)
3272 (list (car value) (cdr value)))
3273 :value-to-external (lambda (widget value)
3274 (cons (nth 0 value) (nth 1 value))))
3276 (defun widget-cons-match (widget value)
3277 (and (consp value)
3278 (widget-group-match widget
3279 (widget-apply widget :value-to-internal value))))
3281 ;;; The `plist' Widget.
3283 ;; Property lists.
3285 (define-widget 'plist 'list
3286 "A property list."
3287 :key-type '(symbol :tag "Key")
3288 :value-type '(sexp :tag "Value")
3289 :convert-widget 'widget-plist-convert-widget
3290 :tag "Plist")
3292 (defvar widget-plist-value-type) ;Dynamic variable
3294 (defun widget-plist-convert-widget (widget)
3295 ;; Handle `:options'.
3296 (let* ((options (widget-get widget :options))
3297 (key-type (widget-get widget :key-type))
3298 (widget-plist-value-type (widget-get widget :value-type))
3299 (other `(editable-list :inline t
3300 (group :inline t
3301 ,key-type
3302 ,widget-plist-value-type)))
3303 (args (if options
3304 (list `(checklist :inline t
3305 :greedy t
3306 ,@(mapcar 'widget-plist-convert-option
3307 options))
3308 other)
3309 (list other))))
3310 (widget-put widget :args args)
3311 widget))
3313 (defun widget-plist-convert-option (option)
3314 ;; Convert a single plist option.
3315 (let (key-type value-type)
3316 (if (listp option)
3317 (let ((key (nth 0 option)))
3318 (setq value-type (nth 1 option))
3319 (if (listp key)
3320 (setq key-type key)
3321 (setq key-type `(const ,key))))
3322 (setq key-type `(const ,option)
3323 value-type widget-plist-value-type))
3324 `(group :format "Key: %v" :inline t ,key-type ,value-type)))
3327 ;;; The `alist' Widget.
3329 ;; Association lists.
3331 (define-widget 'alist 'list
3332 "An association list."
3333 :key-type '(sexp :tag "Key")
3334 :value-type '(sexp :tag "Value")
3335 :convert-widget 'widget-alist-convert-widget
3336 :tag "Alist")
3338 (defvar widget-alist-value-type) ;Dynamic variable
3340 (defun widget-alist-convert-widget (widget)
3341 ;; Handle `:options'.
3342 (let* ((options (widget-get widget :options))
3343 (key-type (widget-get widget :key-type))
3344 (widget-alist-value-type (widget-get widget :value-type))
3345 (other `(editable-list :inline t
3346 (cons :format "%v"
3347 ,key-type
3348 ,widget-alist-value-type)))
3349 (args (if options
3350 (list `(checklist :inline t
3351 :greedy t
3352 ,@(mapcar 'widget-alist-convert-option
3353 options))
3354 other)
3355 (list other))))
3356 (widget-put widget :args args)
3357 widget))
3359 (defun widget-alist-convert-option (option)
3360 ;; Convert a single alist option.
3361 (let (key-type value-type)
3362 (if (listp option)
3363 (let ((key (nth 0 option)))
3364 (setq value-type (nth 1 option))
3365 (if (listp key)
3366 (setq key-type key)
3367 (setq key-type `(const ,key))))
3368 (setq key-type `(const ,option)
3369 value-type widget-alist-value-type))
3370 `(cons :format "Key: %v" ,key-type ,value-type)))
3372 (define-widget 'choice 'menu-choice
3373 "A union of several sexp types."
3374 :tag "Choice"
3375 :format "%{%t%}: %[Value Menu%] %v"
3376 :button-prefix 'widget-push-button-prefix
3377 :button-suffix 'widget-push-button-suffix
3378 :prompt-value 'widget-choice-prompt-value)
3380 (defun widget-choice-prompt-value (widget prompt value unbound)
3381 "Make a choice."
3382 (let ((args (widget-get widget :args))
3383 (completion-ignore-case (widget-get widget :case-fold))
3384 current choices old)
3385 ;; Find the first arg that match VALUE.
3386 (let ((look args))
3387 (while look
3388 (if (widget-apply (car look) :match value)
3389 (setq old (car look)
3390 look nil)
3391 (setq look (cdr look)))))
3392 ;; Find new choice.
3393 (setq current
3394 (cond ((= (length args) 0)
3395 nil)
3396 ((= (length args) 1)
3397 (nth 0 args))
3398 ((and (= (length args) 2)
3399 (memq old args))
3400 (if (eq old (nth 0 args))
3401 (nth 1 args)
3402 (nth 0 args)))
3404 (while args
3405 (setq current (car args)
3406 args (cdr args))
3407 (setq choices
3408 (cons (cons (widget-apply current :menu-tag-get)
3409 current)
3410 choices)))
3411 (let ((val (completing-read prompt choices nil t)))
3412 (if (stringp val)
3413 (let ((try (try-completion val choices)))
3414 (when (stringp try)
3415 (setq val try))
3416 (cdr (assoc val choices)))
3417 nil)))))
3418 (if current
3419 (widget-prompt-value current prompt nil t)
3420 value)))
3422 (define-widget 'radio 'radio-button-choice
3423 "A union of several sexp types."
3424 :tag "Choice"
3425 :format "%{%t%}:\n%v"
3426 :prompt-value 'widget-choice-prompt-value)
3428 (define-widget 'repeat 'editable-list
3429 "A variable length homogeneous list."
3430 :tag "Repeat"
3431 :format "%{%t%}:\n%v%i\n")
3433 (define-widget 'set 'checklist
3434 "A list of members from a fixed set."
3435 :tag "Set"
3436 :format "%{%t%}:\n%v")
3438 (define-widget 'boolean 'toggle
3439 "To be nil or non-nil, that is the question."
3440 :tag "Boolean"
3441 :prompt-value 'widget-boolean-prompt-value
3442 :button-prefix 'widget-push-button-prefix
3443 :button-suffix 'widget-push-button-suffix
3444 :format "%{%t%}: %[Toggle%] %v\n"
3445 :on "on (non-nil)"
3446 :off "off (nil)")
3448 (defun widget-boolean-prompt-value (widget prompt value unbound)
3449 ;; Toggle a boolean.
3450 (y-or-n-p prompt))
3452 ;;; The `color' Widget.
3454 (define-widget 'color 'editable-field
3455 "Choose a color name (with sample)."
3456 :format "%t: %v (%{sample%})\n"
3457 :size 10
3458 :tag "Color"
3459 :value "black"
3460 :complete 'widget-color-complete
3461 :sample-face-get 'widget-color-sample-face-get
3462 :notify 'widget-color-notify
3463 :action 'widget-color-action)
3465 (defun widget-color-complete (widget)
3466 "Complete the color in WIDGET."
3467 (let* ((prefix (buffer-substring-no-properties (widget-field-start widget)
3468 (point)))
3469 (list (widget-color-choice-list))
3470 (completion (try-completion prefix list)))
3471 (cond ((eq completion t)
3472 (message "Exact match."))
3473 ((null completion)
3474 (error "Can't find completion for \"%s\"" prefix))
3475 ((not (string-equal prefix completion))
3476 (insert-and-inherit (substring completion (length prefix))))
3478 (message "Making completion list...")
3479 (let ((list (all-completions prefix list nil)))
3480 (with-output-to-temp-buffer "*Completions*"
3481 (display-completion-list list)))
3482 (message "Making completion list...done")))))
3484 (defun widget-color-sample-face-get (widget)
3485 (let* ((value (condition-case nil
3486 (widget-value widget)
3487 (error (widget-get widget :value))))
3488 (symbol (intern (concat "fg:" value))))
3489 (condition-case nil
3490 (facemenu-get-face symbol)
3491 (error 'default))))
3493 (defvar widget-color-choice-list nil)
3494 ;; Variable holding the possible colors.
3496 (defun widget-color-choice-list ()
3497 (unless widget-color-choice-list
3498 (setq widget-color-choice-list
3499 (mapcar '(lambda (color) (list color))
3500 (x-defined-colors))))
3501 widget-color-choice-list)
3503 (defvar widget-color-history nil
3504 "History of entered colors")
3506 (defun widget-color-action (widget &optional event)
3507 ;; Prompt for a color.
3508 (let* ((tag (widget-apply widget :menu-tag-get))
3509 (prompt (concat tag ": "))
3510 (value (widget-value widget))
3511 (start (widget-field-start widget))
3512 (pos (cond ((< (point) start)
3514 ((> (point) (+ start (length value)))
3515 (length value))
3517 (- (point) start))))
3518 (answer (if (commandp 'read-color)
3519 (read-color prompt)
3520 (completing-read (concat tag ": ")
3521 (widget-color-choice-list)
3522 nil nil
3523 (cons value pos)
3524 'widget-color-history))))
3525 (unless (zerop (length answer))
3526 (widget-value-set widget answer)
3527 (widget-setup)
3528 (widget-apply widget :notify widget event))))
3530 (defun widget-color-notify (widget child &optional event)
3531 "Update the sample, and notofy the parent."
3532 (overlay-put (widget-get widget :sample-overlay)
3533 'face (widget-apply widget :sample-face-get))
3534 (widget-default-notify widget child event))
3536 ;;; The Help Echo
3538 (defun widget-at (pos)
3539 "The button or field at POS."
3540 (or (get-char-property pos 'button)
3541 (get-char-property pos 'field)))
3543 (defun widget-echo-help (pos)
3544 "Display the help echo for widget at POS."
3545 (let* ((widget (widget-at pos))
3546 (help-echo (and widget (widget-get widget :help-echo))))
3547 (cond ((stringp help-echo)
3548 (message "%s" help-echo))
3549 ((and (symbolp help-echo) (fboundp help-echo)
3550 (stringp (setq help-echo (funcall help-echo widget))))
3551 (message "%s" help-echo)))))
3553 ;;; The End:
3555 (provide 'wid-edit)
3557 ;; wid-edit.el ends here