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