Follow coding conventions.
[emacs.git] / lisp / wid-edit.el
blob2079a90142795bba6479fca35fca0b46807f874c
1 ;;; wid-edit.el --- Functions for creating and using widgets -*-byte-compile-dynamic: t;-*-
2 ;;
3 ;; Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002 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 ;;; Wishlist items (from widget.texi):
28 ;; * The `menu-choice' tag should be prettier, something like the
29 ;; abbreviated menus in Open Look.
31 ;; * Finish `:tab-order'.
33 ;; * Make indentation work with glyphs and proportional fonts.
35 ;; * Add commands to show overview of object and class hierarchies to
36 ;; the browser.
38 ;; * Find a way to disable mouse highlight for inactive widgets.
40 ;; * Find a way to make glyphs look inactive.
42 ;; * Add `key-binding' widget.
44 ;; * Add `widget' widget for editing widget specifications.
46 ;; * Find clean way to implement variable length list. See
47 ;; `TeX-printer-list' for an explanation.
49 ;; * `C-h' in `widget-prompt-value' should give type specific help.
51 ;; * A mailto widget. [This should work OK as a url-link if with
52 ;; browse-url-browser-function' set up appropriately.]
54 ;;; Commentary:
56 ;; See `widget.el'.
58 ;;; Code:
60 ;;; Compatibility.
62 (defun widget-event-point (event)
63 "Character position of the end of event if that exists, or nil."
64 (posn-point (event-end event)))
66 (autoload 'pp-to-string "pp")
67 (autoload 'Info-goto-node "info")
69 (defun widget-button-release-event-p (event)
70 "Non-nil if EVENT is a mouse-button-release event object."
71 (and (eventp event)
72 (memq (event-basic-type event) '(mouse-1 mouse-2 mouse-3))
73 (or (memq 'click (event-modifiers event))
74 (memq 'drag (event-modifiers event)))))
76 ;;; Customization.
78 (defgroup widgets nil
79 "Customization support for the Widget Library."
80 :link '(custom-manual "(widget)Top")
81 :link '(emacs-library-link :tag "Lisp File" "widget.el")
82 :prefix "widget-"
83 :group 'extensions
84 :group 'hypermedia)
86 (defgroup widget-documentation nil
87 "Options controling the display of documentation strings."
88 :group 'widgets)
90 (defgroup widget-faces nil
91 "Faces used by the widget library."
92 :group 'widgets
93 :group 'faces)
95 (defvar widget-documentation-face 'widget-documentation-face
96 "Face used for documentation strings in widgets.
97 This exists as a variable so it can be set locally in certain buffers.")
99 (defface widget-documentation-face '((((class color)
100 (background dark))
101 (:foreground "lime green"))
102 (((class color)
103 (background light))
104 (:foreground "dark green"))
105 (t nil))
106 "Face used for documentation text."
107 :group 'widget-documentation
108 :group 'widget-faces)
110 (defvar widget-button-face 'widget-button-face
111 "Face used for buttons in widgets.
112 This exists as a variable so it can be set locally in certain buffers.")
114 (defface widget-button-face '((t (:weight bold)))
115 "Face used for widget buttons."
116 :group 'widget-faces)
118 (defcustom widget-mouse-face 'highlight
119 "Face used for widget buttons when the mouse is above them."
120 :type 'face
121 :group 'widget-faces)
123 ;; TTY gets special definitions here and in the next defface, because
124 ;; the gray colors defined for other displays cause black text on a black
125 ;; background, at least on light-background TTYs.
126 (defface widget-field-face '((((type tty))
127 :background "yellow3"
128 :foreground "black")
129 (((class grayscale color)
130 (background light))
131 :background "gray85")
132 (((class grayscale color)
133 (background dark))
134 :background "dim gray")
136 :slant italic))
137 "Face used for editable fields."
138 :group 'widget-faces)
140 (defface widget-single-line-field-face '((((type tty))
141 :background "green3"
142 :foreground "black")
143 (((class grayscale color)
144 (background light))
145 :background "gray85")
146 (((class grayscale color)
147 (background dark))
148 :background "dim gray")
150 :slant italic))
151 "Face used for editable fields spanning only a single line."
152 :group 'widget-faces)
154 ;;; This causes display-table to be loaded, and not usefully.
155 ;;;(defvar widget-single-line-display-table
156 ;;; (let ((table (make-display-table)))
157 ;;; (aset table 9 "^I")
158 ;;; (aset table 10 "^J")
159 ;;; table)
160 ;;; "Display table used for single-line editable fields.")
162 ;;;(when (fboundp 'set-face-display-table)
163 ;;; (set-face-display-table 'widget-single-line-field-face
164 ;;; widget-single-line-display-table))
166 ;;; Utility functions.
168 ;; These are not really widget specific.
170 (defun widget-princ-to-string (object)
171 "Return string representation of OBJECT, any Lisp object.
172 No quoting characters are used; no delimiters are printed around
173 the contents of strings."
174 (with-output-to-string
175 (princ object)))
177 (defun widget-clear-undo ()
178 "Clear all undo information."
179 (buffer-disable-undo (current-buffer))
180 (buffer-enable-undo))
182 (defcustom widget-menu-max-size 40
183 "Largest number of items allowed in a popup-menu.
184 Larger menus are read through the minibuffer."
185 :group 'widgets
186 :type 'integer)
188 (defcustom widget-menu-max-shortcuts 40
189 "Largest number of items for which it works to choose one with a character.
190 For a larger number of items, the minibuffer is used."
191 :group 'widgets
192 :type 'integer)
194 (defcustom widget-menu-minibuffer-flag nil
195 "*Control how to ask for a choice from the keyboard.
196 Non-nil means use the minibuffer;
197 nil means read a single character."
198 :group 'widgets
199 :type 'boolean)
201 (defun widget-choose (title items &optional event)
202 "Choose an item from a list.
204 First argument TITLE is the name of the list.
205 Second argument ITEMS is an list whose members are either
206 (NAME . VALUE), to indicate selectable items, or just strings to
207 indicate unselectable items.
208 Optional third argument EVENT is an input event.
210 The user is asked to choose between each NAME from the items alist,
211 and the VALUE of the chosen element will be returned. If EVENT is a
212 mouse event, and the number of elements in items is less than
213 `widget-menu-max-size', a popup menu will be used, otherwise the
214 minibuffer."
215 (cond ((and (< (length items) widget-menu-max-size)
216 event (display-popup-menus-p))
217 ;; Mouse click.
218 (x-popup-menu event
219 (list title (cons "" items))))
220 ((or widget-menu-minibuffer-flag
221 (> (length items) widget-menu-max-shortcuts))
222 ;; Read the choice of name from the minibuffer.
223 (setq items (widget-remove-if 'stringp items))
224 (let ((val (completing-read (concat title ": ") items nil t)))
225 (if (stringp val)
226 (let ((try (try-completion val items)))
227 (when (stringp try)
228 (setq val try))
229 (cdr (assoc val items))))))
231 ;; Construct a menu of the choices
232 ;; and then use it for prompting for a single character.
233 (let* ((overriding-terminal-local-map (make-sparse-keymap))
234 (next-digit ?0)
235 map choice some-choice-enabled value)
236 ;; Define SPC as a prefix char to get to this menu.
237 (define-key overriding-terminal-local-map " "
238 (setq map (make-sparse-keymap title)))
239 (save-excursion
240 (set-buffer (get-buffer-create " widget-choose"))
241 (erase-buffer)
242 (insert "Available choices:\n\n")
243 (while items
244 (setq choice (car items) items (cdr items))
245 (if (consp choice)
246 (let* ((name (car choice))
247 (function (cdr choice)))
248 (insert (format "%c = %s\n" next-digit name))
249 (define-key map (vector next-digit) function)
250 (setq some-choice-enabled t)))
251 ;; Allocate digits to disabled alternatives
252 ;; so that the digit of a given alternative never varies.
253 (setq next-digit (1+ next-digit)))
254 (insert "\nC-g = Quit"))
255 (or some-choice-enabled
256 (error "None of the choices is currently meaningful"))
257 (define-key map [?\C-g] 'keyboard-quit)
258 (define-key map [t] 'keyboard-quit)
259 (define-key map [?\M-\C-v] 'scroll-other-window)
260 (define-key map [?\M--] 'negative-argument)
261 (setcdr map (nreverse (cdr map)))
262 ;; Read a char with the menu, and return the result
263 ;; that corresponds to it.
264 (save-window-excursion
265 (let ((buf (get-buffer " widget-choose")))
266 (fit-window-to-buffer (display-buffer buf))
267 (let ((cursor-in-echo-area t)
268 keys
269 (char 0)
270 (arg 1))
271 (while (not (or (and (>= char ?0) (< char next-digit))
272 (eq value 'keyboard-quit)))
273 ;; Unread a SPC to lead to our new menu.
274 (setq unread-command-events (cons ?\ unread-command-events))
275 (setq keys (read-key-sequence title))
276 (setq value
277 (lookup-key overriding-terminal-local-map keys t)
278 char (string-to-char (substring keys 1)))
279 (cond ((eq value 'scroll-other-window)
280 (let ((minibuffer-scroll-window
281 (get-buffer-window buf)))
282 (if (> 0 arg)
283 (scroll-other-window-down
284 (window-height minibuffer-scroll-window))
285 (scroll-other-window))
286 (setq arg 1)))
287 ((eq value 'negative-argument)
288 (setq arg -1))
290 (setq arg 1)))))))
291 (when (eq value 'keyboard-quit)
292 (error "Canceled"))
293 value))))
295 (defun widget-remove-if (predictate list)
296 (let (result (tail list))
297 (while tail
298 (or (funcall predictate (car tail))
299 (setq result (cons (car tail) result)))
300 (setq tail (cdr tail)))
301 (nreverse result)))
303 ;;; Widget text specifications.
305 ;; These functions are for specifying text properties.
307 (defvar widget-field-add-space t
308 "Non-nil means add extra space at the end of editable text fields.
309 If you don't add the space, it will become impossible to edit a zero
310 size field.")
312 (defvar widget-field-use-before-change t
313 "Non-nil means use `before-change-functions' to track editable fields.
314 This enables the use of undo, but doesn't work on Emacs 19.34 and earlier.
315 Using before hooks also means that the :notify function can't know the
316 new value.")
318 (defun widget-specify-field (widget from to)
319 "Specify editable button for WIDGET between FROM and TO."
320 ;; Terminating space is not part of the field, but necessary in
321 ;; order for local-map to work. Remove next sexp if local-map works
322 ;; at the end of the overlay.
323 (save-excursion
324 (goto-char to)
325 (cond ((null (widget-get widget :size))
326 (forward-char 1))
327 (widget-field-add-space
328 (insert-and-inherit " ")))
329 (setq to (point)))
330 (let ((keymap (widget-get widget :keymap))
331 (face (or (widget-get widget :value-face) 'widget-field-face))
332 (help-echo (widget-get widget :help-echo))
333 (rear-sticky
334 (or (not widget-field-add-space) (widget-get widget :size))))
335 (if (functionp help-echo)
336 (setq help-echo 'widget-mouse-help))
337 (when (= (char-before to) ?\n)
338 ;; When the last character in the field is a newline, we want to
339 ;; give it a `field' char-property of `boundary', which helps the
340 ;; C-n/C-p act more naturally when entering/leaving the field. We
341 ;; do this by making a small secondary overlay to contain just that
342 ;; one character.
343 (let ((overlay (make-overlay (1- to) to nil t nil)))
344 (overlay-put overlay 'field 'boundary)
345 ;; Use `local-map' here, not `keymap', so that normal editing
346 ;; works in the field when, say, Custom uses `suppress-keymap'.
347 (overlay-put overlay 'local-map keymap)
348 (overlay-put overlay 'face face)
349 (overlay-put overlay 'help-echo help-echo))
350 (setq to (1- to))
351 (setq rear-sticky t))
352 (let ((overlay (make-overlay from to nil nil rear-sticky)))
353 (widget-put widget :field-overlay overlay)
354 ;;(overlay-put overlay 'detachable nil)
355 (overlay-put overlay 'field widget)
356 (overlay-put overlay 'local-map keymap)
357 (overlay-put overlay 'face face)
358 (overlay-put overlay 'help-echo help-echo)))
359 (widget-specify-secret widget))
361 (defun widget-specify-secret (field)
362 "Replace text in FIELD with value of `:secret', if non-nil."
363 (let ((secret (widget-get field :secret))
364 (size (widget-get field :size)))
365 (when secret
366 (let ((begin (widget-field-start field))
367 (end (widget-field-end field)))
368 (when size
369 (while (and (> end begin)
370 (eq (char-after (1- end)) ?\ ))
371 (setq end (1- end))))
372 (while (< begin end)
373 (let ((old (char-after begin)))
374 (unless (eq old secret)
375 (subst-char-in-region begin (1+ begin) old secret)
376 (put-text-property begin (1+ begin) 'secret old))
377 (setq begin (1+ begin))))))))
379 (defun widget-specify-button (widget from to)
380 "Specify button for WIDGET between FROM and TO."
381 (let ((overlay (make-overlay from to nil t nil))
382 (help-echo (widget-get widget :help-echo)))
383 (widget-put widget :button-overlay overlay)
384 (if (functionp help-echo)
385 (setq help-echo 'widget-mouse-help))
386 (overlay-put overlay 'button widget)
387 (overlay-put overlay 'keymap (widget-get widget :keymap))
388 ;; We want to avoid the face with image buttons.
389 (unless (widget-get widget :suppress-face)
390 (overlay-put overlay 'face (widget-apply widget :button-face-get))
391 (overlay-put overlay 'mouse-face widget-mouse-face))
392 (overlay-put overlay 'help-echo help-echo)))
394 (defun widget-mouse-help (window overlay point)
395 "Help-echo callback for widgets whose :help-echo is a function."
396 (with-current-buffer (overlay-buffer overlay)
397 (let* ((widget (widget-at (overlay-start overlay)))
398 (help-echo (if widget (widget-get widget :help-echo))))
399 (if (functionp help-echo)
400 (funcall help-echo widget)
401 help-echo))))
403 (defun widget-specify-sample (widget from to)
404 "Specify sample for WIDGET between FROM and TO."
405 (let ((overlay (make-overlay from to nil t nil)))
406 (overlay-put overlay 'face (widget-apply widget :sample-face-get))
407 (widget-put widget :sample-overlay overlay)))
409 (defun widget-specify-doc (widget from to)
410 "Specify documentation for WIDGET between FROM and TO."
411 (let ((overlay (make-overlay from to nil t nil)))
412 (overlay-put overlay 'widget-doc widget)
413 (overlay-put overlay 'face widget-documentation-face)
414 (widget-put widget :doc-overlay overlay)))
416 (defmacro widget-specify-insert (&rest form)
417 "Execute FORM without inheriting any text properties."
418 `(save-restriction
419 (let ((inhibit-read-only t)
420 (inhibit-modification-hooks t)
421 result)
422 (insert "<>")
423 (narrow-to-region (- (point) 2) (point))
424 (goto-char (1+ (point-min)))
425 (setq result (progn ,@form))
426 (delete-region (point-min) (1+ (point-min)))
427 (delete-region (1- (point-max)) (point-max))
428 (goto-char (point-max))
429 result)))
431 (defface widget-inactive-face '((((class grayscale color)
432 (background dark))
433 (:foreground "light gray"))
434 (((class grayscale color)
435 (background light))
436 (:foreground "dim gray"))
438 (:slant italic)))
439 "Face used for inactive widgets."
440 :group 'widget-faces)
442 (defun widget-specify-inactive (widget from to)
443 "Make WIDGET inactive for user modifications."
444 (unless (widget-get widget :inactive)
445 (let ((overlay (make-overlay from to nil t nil)))
446 (overlay-put overlay 'face 'widget-inactive-face)
447 ;; This is disabled, as it makes the mouse cursor change shape.
448 ;; (overlay-put overlay 'mouse-face 'widget-inactive-face)
449 (overlay-put overlay 'evaporate t)
450 (overlay-put overlay 'priority 100)
451 (overlay-put overlay 'modification-hooks '(widget-overlay-inactive))
452 (widget-put widget :inactive overlay))))
454 (defun widget-overlay-inactive (&rest junk)
455 "Ignoring the arguments, signal an error."
456 (unless inhibit-read-only
457 (error "The widget here is not active")))
460 (defun widget-specify-active (widget)
461 "Make WIDGET active for user modifications."
462 (let ((inactive (widget-get widget :inactive)))
463 (when inactive
464 (delete-overlay inactive)
465 (widget-put widget :inactive nil))))
467 ;;; Widget Properties.
469 (defsubst widget-type (widget)
470 "Return the type of WIDGET, a symbol."
471 (car widget))
473 ;;;###autoload
474 (defun widgetp (widget)
475 "Return non-nil iff WIDGET is a widget."
476 (if (symbolp widget)
477 (get widget 'widget-type)
478 (and (consp widget)
479 (symbolp (car widget))
480 (get (car widget) 'widget-type))))
482 (defun widget-get-indirect (widget property)
483 "In WIDGET, get the value of PROPERTY.
484 If the value is a symbol, return its binding.
485 Otherwise, just return the value."
486 (let ((value (widget-get widget property)))
487 (if (symbolp value)
488 (symbol-value value)
489 value)))
491 (defun widget-member (widget property)
492 "Non-nil iff there is a definition in WIDGET for PROPERTY."
493 (cond ((plist-member (cdr widget) property)
495 ((car widget)
496 (widget-member (get (car widget) 'widget-type) property))
497 (t nil)))
499 (defun widget-value (widget)
500 "Extract the current value of WIDGET."
501 (widget-apply widget
502 :value-to-external (widget-apply widget :value-get)))
504 (defun widget-value-set (widget value)
505 "Set the current value of WIDGET to VALUE."
506 (widget-apply widget
507 :value-set (widget-apply widget
508 :value-to-internal value)))
510 (defun widget-default-get (widget)
511 "Extract the default value of WIDGET."
512 (or (widget-get widget :value)
513 (widget-apply widget :default-get)))
515 (defun widget-match-inline (widget vals)
516 "In WIDGET, match the start of VALS."
517 (cond ((widget-get widget :inline)
518 (widget-apply widget :match-inline vals))
519 ((and (listp vals)
520 (widget-apply widget :match (car vals)))
521 (cons (list (car vals)) (cdr vals)))
522 (t nil)))
524 (defun widget-apply-action (widget &optional event)
525 "Apply :action in WIDGET in response to EVENT."
526 (if (widget-apply widget :active)
527 (widget-apply widget :action event)
528 (error "Attempt to perform action on inactive widget")))
530 ;;; Helper functions.
532 ;; These are widget specific.
534 ;;;###autoload
535 (defun widget-prompt-value (widget prompt &optional value unbound)
536 "Prompt for a value matching WIDGET, using PROMPT.
537 The current value is assumed to be VALUE, unless UNBOUND is non-nil."
538 (unless (listp widget)
539 (setq widget (list widget)))
540 (setq prompt (format "[%s] %s" (widget-type widget) prompt))
541 (setq widget (widget-convert widget))
542 (let ((answer (widget-apply widget :prompt-value prompt value unbound)))
543 (unless (widget-apply widget :match answer)
544 (error "Value does not match %S type" (car widget)))
545 answer))
547 (defun widget-get-sibling (widget)
548 "Get the item WIDGET is assumed to toggle.
549 This is only meaningful for radio buttons or checkboxes in a list."
550 (let* ((children (widget-get (widget-get widget :parent) :children))
551 child)
552 (catch 'child
553 (while children
554 (setq child (car children)
555 children (cdr children))
556 (when (eq (widget-get child :button) widget)
557 (throw 'child child)))
558 nil)))
560 (defun widget-map-buttons (function &optional buffer maparg)
561 "Map FUNCTION over the buttons in BUFFER.
562 FUNCTION is called with the arguments WIDGET and MAPARG.
564 If FUNCTION returns non-nil, the walk is cancelled.
566 The arguments MAPARG, and BUFFER default to nil and (current-buffer),
567 respectively."
568 (let ((cur (point-min))
569 (widget nil)
570 (parent nil)
571 (overlays (if buffer
572 (save-excursion (set-buffer buffer) (overlay-lists))
573 (overlay-lists))))
574 (setq overlays (append (car overlays) (cdr overlays)))
575 (while (setq cur (pop overlays))
576 (setq widget (overlay-get cur 'button))
577 (if (and widget (funcall function widget maparg))
578 (setq overlays nil)))))
580 ;;; Images.
582 (defcustom widget-image-directory (file-name-as-directory
583 (expand-file-name "custom" data-directory))
584 "Where widget button images are located.
585 If this variable is nil, widget will try to locate the directory
586 automatically."
587 :group 'widgets
588 :type 'directory)
590 (defcustom widget-image-enable t
591 "If non nil, use image buttons in widgets when available."
592 :version "21.1"
593 :group 'widgets
594 :type 'boolean)
596 (defcustom widget-image-conversion
597 '((xpm ".xpm") (gif ".gif") (png ".png") (jpeg ".jpg" ".jpeg")
598 (xbm ".xbm"))
599 "Conversion alist from image formats to file name suffixes."
600 :group 'widgets
601 :type '(repeat (cons :format "%v"
602 (symbol :tag "Image Format" unknown)
603 (repeat :tag "Suffixes"
604 (string :format "%v")))))
606 (defun widget-image-find (image)
607 "Create a graphical button from IMAGE.
608 IMAGE should either already be an image, or be a file name sans
609 extension (xpm, xbm, gif, jpg, or png) located in
610 `widget-image-directory' or otherwise where `find-image' will find it."
611 (cond ((not (and image widget-image-enable (display-graphic-p)))
612 ;; We don't want or can't use images.
613 nil)
614 ((and (consp image)
615 (eq 'image (car image)))
616 ;; Already an image spec. Use it.
617 image)
618 ((stringp image)
619 ;; A string. Look it up in relevant directories.
620 (let* ((load-path (cons widget-image-directory load-path))
621 specs)
622 (dolist (elt widget-image-conversion)
623 (dolist (ext (cdr elt))
624 (push (list :type (car elt) :file (concat image ext)) specs)))
625 (setq specs (nreverse specs))
626 (find-image specs)))
628 ;; Oh well.
629 nil)))
631 (defvar widget-button-pressed-face 'widget-button-pressed-face
632 "Face used for pressed buttons in widgets.
633 This exists as a variable so it can be set locally in certain
634 buffers.")
636 (defun widget-image-insert (widget tag image &optional down inactive)
637 "In WIDGET, insert the text TAG or, if supported, IMAGE.
638 IMAGE should either be an image or an image file name sans extension
639 \(xpm, xbm, gif, jpg, or png) located in `widget-image-directory'.
641 Optional arguments DOWN and INACTIVE are used instead of IMAGE when the
642 button is pressed or inactive, respectively. These are currently ignored."
643 (if (and (display-graphic-p)
644 (setq image (widget-image-find image)))
645 (progn (widget-put widget :suppress-face t)
646 (insert-image image
647 (propertize
648 tag 'mouse-face widget-button-pressed-face)))
649 (insert tag)))
651 ;;; Buttons.
653 (defgroup widget-button nil
654 "The look of various kinds of buttons."
655 :group 'widgets)
657 (defcustom widget-button-prefix ""
658 "String used as prefix for buttons."
659 :type 'string
660 :group 'widget-button)
662 (defcustom widget-button-suffix ""
663 "String used as suffix for buttons."
664 :type 'string
665 :group 'widget-button)
667 ;;; Creating Widgets.
669 ;;;###autoload
670 (defun widget-create (type &rest args)
671 "Create widget of TYPE.
672 The optional ARGS are additional keyword arguments."
673 (let ((widget (apply 'widget-convert type args)))
674 (widget-apply widget :create)
675 widget))
677 (defun widget-create-child-and-convert (parent type &rest args)
678 "As part of the widget PARENT, create a child widget TYPE.
679 The child is converted, using the keyword arguments ARGS."
680 (let ((widget (apply 'widget-convert type args)))
681 (widget-put widget :parent parent)
682 (unless (widget-get widget :indent)
683 (widget-put widget :indent (+ (or (widget-get parent :indent) 0)
684 (or (widget-get widget :extra-offset) 0)
685 (widget-get parent :offset))))
686 (widget-apply widget :create)
687 widget))
689 (defun widget-create-child (parent type)
690 "Create widget of TYPE."
691 (let ((widget (copy-sequence type)))
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-value (parent type value)
701 "Create widget of TYPE with value VALUE."
702 (let ((widget (copy-sequence type)))
703 (widget-put widget :value (widget-apply widget :value-to-internal value))
704 (widget-put widget :parent parent)
705 (unless (widget-get widget :indent)
706 (widget-put widget :indent (+ (or (widget-get parent :indent) 0)
707 (or (widget-get widget :extra-offset) 0)
708 (widget-get parent :offset))))
709 (widget-apply widget :create)
710 widget))
712 ;;;###autoload
713 (defun widget-delete (widget)
714 "Delete WIDGET."
715 (widget-apply widget :delete))
717 (defun widget-convert (type &rest args)
718 "Convert TYPE to a widget without inserting it in the buffer.
719 The optional ARGS are additional keyword arguments."
720 ;; Don't touch the type.
721 (let* ((widget (if (symbolp type)
722 (list type)
723 (copy-sequence type)))
724 (current widget)
725 (keys args))
726 ;; First set the :args keyword.
727 (while (cdr current) ;Look in the type.
728 (if (keywordp (car (cdr current)))
729 (setq current (cdr (cdr current)))
730 (setcdr current (list :args (cdr current)))
731 (setq current nil)))
732 (while args ;Look in the args.
733 (if (keywordp (nth 0 args))
734 (setq args (nthcdr 2 args))
735 (widget-put widget :args args)
736 (setq args nil)))
737 ;; Then Convert the widget.
738 (setq type widget)
739 (while type
740 (let ((convert-widget (plist-get (cdr type) :convert-widget)))
741 (if convert-widget
742 (setq widget (funcall convert-widget widget))))
743 (setq type (get (car type) 'widget-type)))
744 ;; Finally set the keyword args.
745 (while keys
746 (let ((next (nth 0 keys)))
747 (if (keywordp next)
748 (progn
749 (widget-put widget next (nth 1 keys))
750 (setq keys (nthcdr 2 keys)))
751 (setq keys nil))))
752 ;; Convert the :value to internal format.
753 (if (widget-member widget :value)
754 (widget-put widget
755 :value (widget-apply widget
756 :value-to-internal
757 (widget-get widget :value))))
758 ;; Return the newly create widget.
759 widget))
761 ;;;###autoload
762 (defun widget-insert (&rest args)
763 "Call `insert' with ARGS even if surrounding text is read only."
764 (let ((inhibit-read-only t)
765 (inhibit-modification-hooks t))
766 (apply 'insert args)))
768 (defun widget-convert-text (type from to
769 &optional button-from button-to
770 &rest args)
771 "Return a widget of type TYPE with endpoint FROM TO.
772 Optional ARGS are extra keyword arguments for TYPE.
773 and TO will be used as the widgets end points. If optional arguments
774 BUTTON-FROM and BUTTON-TO are given, these will be used as the widgets
775 button end points.
776 Optional ARGS are extra keyword arguments for TYPE."
777 (let ((widget (apply 'widget-convert type :delete 'widget-leave-text args))
778 (from (copy-marker from))
779 (to (copy-marker to)))
780 (set-marker-insertion-type from t)
781 (set-marker-insertion-type to nil)
782 (widget-put widget :from from)
783 (widget-put widget :to to)
784 (when button-from
785 (widget-specify-button widget button-from button-to))
786 widget))
788 (defun widget-convert-button (type from to &rest args)
789 "Return a widget of type TYPE with endpoint FROM TO.
790 Optional ARGS are extra keyword arguments for TYPE.
791 No text will be inserted to the buffer, instead the text between FROM
792 and TO will be used as the widgets end points, as well as the widgets
793 button end points."
794 (apply 'widget-convert-text type from to from to args))
796 (defun widget-leave-text (widget)
797 "Remove markers and overlays from WIDGET and its children."
798 (let ((button (widget-get widget :button-overlay))
799 (sample (widget-get widget :sample-overlay))
800 (doc (widget-get widget :doc-overlay))
801 (field (widget-get widget :field-overlay)))
802 (set-marker (widget-get widget :from) nil)
803 (set-marker (widget-get widget :to) nil)
804 (when button
805 (delete-overlay button))
806 (when sample
807 (delete-overlay sample))
808 (when doc
809 (delete-overlay doc))
810 (when field
811 (delete-overlay field))
812 (mapc 'widget-leave-text (widget-get widget :children))))
814 ;;; Keymap and Commands.
816 ;;;###autoload
817 (defvar widget-keymap
818 (let ((map (make-sparse-keymap)))
819 (define-key map "\t" 'widget-forward)
820 (define-key map [(shift tab)] 'widget-backward)
821 (define-key map [backtab] 'widget-backward)
822 (define-key map [down-mouse-2] 'widget-button-click)
823 (define-key map "\C-m" 'widget-button-press)
824 map)
825 "Keymap containing useful binding for buffers containing widgets.
826 Recommended as a parent keymap for modes using widgets.")
828 (defvar widget-global-map global-map
829 "Keymap used for events a widget does not handle itself.")
830 (make-variable-buffer-local 'widget-global-map)
832 (defvar widget-field-keymap
833 (let ((map (copy-keymap widget-keymap)))
834 (define-key map "\C-k" 'widget-kill-line)
835 (define-key map "\M-\t" 'widget-complete)
836 (define-key map "\C-m" 'widget-field-activate)
837 ;; Since the widget code uses a `field' property to identify fields,
838 ;; ordinary beginning-of-line does the right thing.
839 ;; (define-key map "\C-a" 'widget-beginning-of-line)
840 (define-key map "\C-e" 'widget-end-of-line)
841 map)
842 "Keymap used inside an editable field.")
844 (defvar widget-text-keymap
845 (let ((map (copy-keymap widget-keymap)))
846 ;; Since the widget code uses a `field' property to identify fields,
847 ;; ordinary beginning-of-line does the right thing.
848 ;; (define-key map "\C-a" 'widget-beginning-of-line)
849 (define-key map "\C-e" 'widget-end-of-line)
850 map)
851 "Keymap used inside a text field.")
853 (defun widget-field-activate (pos &optional event)
854 "Invoke the editable field at point."
855 (interactive "@d")
856 (let ((field (widget-field-at pos)))
857 (if field
858 (widget-apply-action field event)
859 (call-interactively
860 (lookup-key widget-global-map (this-command-keys))))))
862 (defface widget-button-pressed-face
863 '((((class color))
864 (:foreground "red"))
866 (:weight bold :underline t)))
867 "Face used for pressed buttons."
868 :group 'widget-faces)
870 (defun widget-button-click (event)
871 "Invoke the button that the mouse is pointing at."
872 (interactive "e")
873 (if (widget-event-point event)
874 (let* ((pos (widget-event-point event))
875 (start (event-start event))
876 (button (get-char-property
877 pos 'button (and (windowp (posn-window start))
878 (window-buffer (posn-window start))))))
879 (if button
880 ;; Mouse click on a widget button. Do the following
881 ;; in a save-excursion so that the click on the button
882 ;; doesn't change point.
883 (save-selected-window
884 (select-window (posn-window (event-start event)))
885 (save-excursion
886 (goto-char (posn-point (event-start event)))
887 (let* ((overlay (widget-get button :button-overlay))
888 (face (overlay-get overlay 'face))
889 (mouse-face (overlay-get overlay 'mouse-face)))
890 (unwind-protect
891 ;; Read events, including mouse-movement events
892 ;; until we receive a release event. Highlight/
893 ;; unhighlight the button the mouse was initially
894 ;; on when we move over it.
895 (let ((track-mouse t))
896 (save-excursion
897 (when face ; avoid changing around image
898 (overlay-put overlay
899 'face widget-button-pressed-face)
900 (overlay-put overlay
901 'mouse-face widget-button-pressed-face))
902 (unless (widget-apply button :mouse-down-action event)
903 (while (not (widget-button-release-event-p event))
904 (setq event (read-event)
905 pos (widget-event-point event))
906 (if (and pos
907 (eq (get-char-property pos 'button)
908 button))
909 (when face
910 (overlay-put overlay
911 'face
912 widget-button-pressed-face)
913 (overlay-put overlay
914 'mouse-face
915 widget-button-pressed-face))
916 (overlay-put overlay 'face face)
917 (overlay-put overlay 'mouse-face mouse-face))))
919 ;; When mouse is released over the button, run
920 ;; its action function.
921 (when (and pos
922 (eq (get-char-property pos 'button) button))
923 (widget-apply-action button event))))
924 (overlay-put overlay 'face face)
925 (overlay-put overlay 'mouse-face mouse-face))))
927 (unless (pos-visible-in-window-p (widget-event-point event))
928 (mouse-set-point event)
929 (beginning-of-line)
930 (recenter))
933 (let ((up t) command)
934 ;; Mouse click not on a widget button. Find the global
935 ;; command to run, and check whether it is bound to an
936 ;; up event.
937 (mouse-set-point event)
938 (if (memq (event-basic-type event) '(mouse-1 down-mouse-1))
939 (cond ((setq command ;down event
940 (lookup-key widget-global-map [down-mouse-1]))
941 (setq up nil))
942 ((setq command ;up event
943 (lookup-key widget-global-map [mouse-1]))))
944 (cond ((setq command ;down event
945 (lookup-key widget-global-map [down-mouse-2]))
946 (setq up nil))
947 ((setq command ;up event
948 (lookup-key widget-global-map [mouse-2])))))
949 (when up
950 ;; Don't execute up events twice.
951 (while (not (widget-button-release-event-p event))
952 (setq event (read-event))))
953 (when command
954 (call-interactively command)))))
955 (message "You clicked somewhere weird.")))
957 (defun widget-button-press (pos &optional event)
958 "Invoke button at POS."
959 (interactive "@d")
960 (let ((button (get-char-property pos 'button)))
961 (if button
962 (widget-apply-action button event)
963 (let ((command (lookup-key widget-global-map (this-command-keys))))
964 (when (commandp command)
965 (call-interactively command))))))
967 (defun widget-tabable-at (&optional pos)
968 "Return the tabable widget at POS, or nil.
969 POS defaults to the value of (point)."
970 (let ((widget (widget-at pos)))
971 (if widget
972 (let ((order (widget-get widget :tab-order)))
973 (if order
974 (if (>= order 0)
975 widget)
976 widget)))))
978 (defvar widget-use-overlay-change t
979 "If non-nil, use overlay change functions to tab around in the buffer.
980 This is much faster, but doesn't work reliably on Emacs 19.34.")
982 (defun widget-move (arg)
983 "Move point to the ARG next field or button.
984 ARG may be negative to move backward."
985 (or (bobp) (> arg 0) (backward-char))
986 (let ((pos (point))
987 (number arg)
988 (old (widget-tabable-at))
989 new)
990 ;; Forward.
991 (while (> arg 0)
992 (cond ((eobp)
993 (goto-char (point-min)))
994 (widget-use-overlay-change
995 (goto-char (next-overlay-change (point))))
997 (forward-char 1)))
998 (and (eq pos (point))
999 (eq arg number)
1000 (error "No buttons or fields found"))
1001 (let ((new (widget-tabable-at)))
1002 (when new
1003 (unless (eq new old)
1004 (setq arg (1- arg))
1005 (setq old new)))))
1006 ;; Backward.
1007 (while (< arg 0)
1008 (cond ((bobp)
1009 (goto-char (point-max)))
1010 (widget-use-overlay-change
1011 (goto-char (previous-overlay-change (point))))
1013 (backward-char 1)))
1014 (and (eq pos (point))
1015 (eq arg number)
1016 (error "No buttons or fields found"))
1017 (let ((new (widget-tabable-at)))
1018 (when new
1019 (unless (eq new old)
1020 (setq arg (1+ arg))))))
1021 (let ((new (widget-tabable-at)))
1022 (while (eq (widget-tabable-at) new)
1023 (backward-char)))
1024 (forward-char))
1025 (widget-echo-help (point))
1026 (run-hooks 'widget-move-hook))
1028 (defun widget-forward (arg)
1029 "Move point to the next field or button.
1030 With optional ARG, move across that many fields."
1031 (interactive "p")
1032 (run-hooks 'widget-forward-hook)
1033 (widget-move arg))
1035 (defun widget-backward (arg)
1036 "Move point to the previous field or button.
1037 With optional ARG, move across that many fields."
1038 (interactive "p")
1039 (run-hooks 'widget-backward-hook)
1040 (widget-move (- arg)))
1042 ;; Since the widget code uses a `field' property to identify fields,
1043 ;; ordinary beginning-of-line does the right thing.
1044 (defalias 'widget-beginning-of-line 'beginning-of-line)
1046 (defun widget-end-of-line ()
1047 "Go to end of field or end of line, whichever is first.
1048 Trailing spaces at the end of padded fields are not considered part of
1049 the field."
1050 (interactive)
1051 ;; Ordinary end-of-line does the right thing, because we're inside
1052 ;; text with a `field' property.
1053 (end-of-line)
1054 (unless (eolp)
1055 ;; ... except that we want to ignore trailing spaces in fields that
1056 ;; aren't terminated by a newline, because they are used as padding,
1057 ;; and ignored when extracting the entered value of the field.
1058 (skip-chars-backward " " (field-beginning (1- (point))))))
1060 (defun widget-kill-line ()
1061 "Kill to end of field or end of line, whichever is first."
1062 (interactive)
1063 (let* ((field (widget-field-find (point)))
1064 (end (and field (widget-field-end field))))
1065 (if (and field (> (line-beginning-position 2) end))
1066 (kill-region (point) end)
1067 (call-interactively 'kill-line))))
1069 (defcustom widget-complete-field (lookup-key global-map "\M-\t")
1070 "Default function to call for completion inside fields."
1071 :options '(ispell-complete-word complete-tag lisp-complete-symbol)
1072 :type 'function
1073 :group 'widgets)
1075 (defun widget-complete ()
1076 "Complete content of editable field from point.
1077 When not inside a field, move to the previous button or field."
1078 (interactive)
1079 (let ((field (widget-field-find (point))))
1080 (if field
1081 (widget-apply field :complete)
1082 (error "Not in an editable field"))))
1084 ;;; Setting up the buffer.
1086 (defvar widget-field-new nil)
1087 ;; List of all newly created editable fields in the buffer.
1088 (make-variable-buffer-local 'widget-field-new)
1090 (defvar widget-field-list nil)
1091 ;; List of all editable fields in the buffer.
1092 (make-variable-buffer-local 'widget-field-list)
1094 (defun widget-at (&optional pos)
1095 "The button or field at POS (default, point)."
1096 (or (get-char-property (or pos (point)) 'button)
1097 (widget-field-at pos)))
1099 ;;;###autoload
1100 (defun widget-setup ()
1101 "Setup current buffer so editing string widgets works."
1102 (let ((inhibit-read-only t)
1103 (inhibit-modification-hooks t)
1104 field)
1105 (while widget-field-new
1106 (setq field (car widget-field-new)
1107 widget-field-new (cdr widget-field-new)
1108 widget-field-list (cons field widget-field-list))
1109 (let ((from (car (widget-get field :field-overlay)))
1110 (to (cdr (widget-get field :field-overlay))))
1111 (widget-specify-field field
1112 (marker-position from) (marker-position to))
1113 (set-marker from nil)
1114 (set-marker to nil))))
1115 (widget-clear-undo)
1116 (widget-add-change))
1118 (defvar widget-field-last nil)
1119 ;; Last field containing point.
1120 (make-variable-buffer-local 'widget-field-last)
1122 (defvar widget-field-was nil)
1123 ;; The widget data before the change.
1124 (make-variable-buffer-local 'widget-field-was)
1126 (defun widget-field-at (pos)
1127 "Return the widget field at POS, or nil if none."
1128 (let ((field (get-char-property (or pos (point)) 'field)))
1129 (if (eq field 'boundary)
1131 field)))
1133 (defun widget-field-buffer (widget)
1134 "Return the start of WIDGET's editing field."
1135 (let ((overlay (widget-get widget :field-overlay)))
1136 (cond ((overlayp overlay)
1137 (overlay-buffer overlay))
1138 ((consp overlay)
1139 (marker-buffer (car overlay))))))
1141 (defun widget-field-start (widget)
1142 "Return the start of WIDGET's editing field."
1143 (let ((overlay (widget-get widget :field-overlay)))
1144 (if (overlayp overlay)
1145 (overlay-start overlay)
1146 (car overlay))))
1148 (defun widget-field-end (widget)
1149 "Return the end of WIDGET's editing field."
1150 (let ((overlay (widget-get widget :field-overlay)))
1151 ;; Don't subtract one if local-map works at the end of the overlay,
1152 ;; or if a special `boundary' field has been added after the widget
1153 ;; field.
1154 (if (overlayp overlay)
1155 (if (and (not (eq (get-char-property (overlay-end overlay)
1156 'field
1157 (widget-field-buffer widget))
1158 'boundary))
1159 (or widget-field-add-space
1160 (null (widget-get widget :size))))
1161 (1- (overlay-end overlay))
1162 (overlay-end overlay))
1163 (cdr overlay))))
1165 (defun widget-field-find (pos)
1166 "Return the field at POS.
1167 Unlike (get-char-property POS 'field) this, works with empty fields too."
1168 (let ((fields widget-field-list)
1169 field found)
1170 (while fields
1171 (setq field (car fields)
1172 fields (cdr fields))
1173 (when (and (<= (widget-field-start field) pos)
1174 (<= pos (widget-field-end field)))
1175 (when found
1176 (error "Overlapping fields"))
1177 (setq found field)))
1178 found))
1180 (defun widget-before-change (from to)
1181 ;; This is how, for example, a variable changes its state to `modified'.
1182 ;; when it is being edited.
1183 (unless inhibit-read-only
1184 (let ((from-field (widget-field-find from))
1185 (to-field (widget-field-find to)))
1186 (cond ((not (eq from-field to-field))
1187 (add-hook 'post-command-hook 'widget-add-change nil t)
1188 (signal 'text-read-only
1189 '("Change should be restricted to a single field")))
1190 ((null from-field)
1191 (add-hook 'post-command-hook 'widget-add-change nil t)
1192 (signal 'text-read-only
1193 '("Attempt to change text outside editable field")))
1194 (widget-field-use-before-change
1195 (widget-apply from-field :notify from-field))))))
1197 (defun widget-add-change ()
1198 (remove-hook 'post-command-hook 'widget-add-change t)
1199 (add-hook 'before-change-functions 'widget-before-change nil t)
1200 (add-hook 'after-change-functions 'widget-after-change nil t))
1202 (defun widget-after-change (from to old)
1203 "Adjust field size and text properties."
1204 (let ((field (widget-field-find from))
1205 (other (widget-field-find to)))
1206 (when field
1207 (unless (eq field other)
1208 (error "Change in different fields"))
1209 (let ((size (widget-get field :size)))
1210 (when size
1211 (let ((begin (widget-field-start field))
1212 (end (widget-field-end field)))
1213 (cond ((< (- end begin) size)
1214 ;; Field too small.
1215 (save-excursion
1216 (goto-char end)
1217 (insert-char ?\ (- (+ begin size) end))))
1218 ((> (- end begin) size)
1219 ;; Field too large and
1220 (if (or (< (point) (+ begin size))
1221 (> (point) end))
1222 ;; Point is outside extra space.
1223 (setq begin (+ begin size))
1224 ;; Point is within the extra space.
1225 (setq begin (point)))
1226 (save-excursion
1227 (goto-char end)
1228 (while (and (eq (preceding-char) ?\ )
1229 (> (point) begin))
1230 (delete-backward-char 1)))))))
1231 (widget-specify-secret field))
1232 (widget-apply field :notify field))))
1234 ;;; Widget Functions
1236 ;; These functions are used in the definition of multiple widgets.
1238 (defun widget-parent-action (widget &optional event)
1239 "Tell :parent of WIDGET to handle the :action.
1240 Optional EVENT is the event that triggered the action."
1241 (widget-apply (widget-get widget :parent) :action event))
1243 (defun widget-children-value-delete (widget)
1244 "Delete all :children and :buttons in WIDGET."
1245 (mapc 'widget-delete (widget-get widget :children))
1246 (widget-put widget :children nil)
1247 (mapc 'widget-delete (widget-get widget :buttons))
1248 (widget-put widget :buttons nil))
1250 (defun widget-children-validate (widget)
1251 "All the :children must be valid."
1252 (let ((children (widget-get widget :children))
1253 child found)
1254 (while (and children (not found))
1255 (setq child (car children)
1256 children (cdr children)
1257 found (widget-apply child :validate)))
1258 found))
1260 ;; Made defsubst to speed up face editor creation.
1261 (defsubst widget-types-convert-widget (widget)
1262 "Convert :args as widget types in WIDGET."
1263 (widget-put widget :args (mapcar 'widget-convert (widget-get widget :args)))
1264 widget)
1266 (defun widget-value-convert-widget (widget)
1267 "Initialize :value from :args in WIDGET."
1268 (let ((args (widget-get widget :args)))
1269 (when args
1270 (widget-put widget :value (car args))
1271 ;; Don't convert :value here, as this is done in `widget-convert'.
1272 ;; (widget-put widget :value (widget-apply widget
1273 ;; :value-to-internal (car args)))
1274 (widget-put widget :args nil)))
1275 widget)
1277 (defun widget-value-value-get (widget)
1278 "Return the :value property of WIDGET."
1279 (widget-get widget :value))
1281 ;;; The `default' Widget.
1283 (define-widget 'default nil
1284 "Basic widget other widgets are derived from."
1285 :value-to-internal (lambda (widget value) value)
1286 :value-to-external (lambda (widget value) value)
1287 :button-prefix 'widget-button-prefix
1288 :button-suffix 'widget-button-suffix
1289 :complete 'widget-default-complete
1290 :create 'widget-default-create
1291 :indent nil
1292 :offset 0
1293 :format-handler 'widget-default-format-handler
1294 :button-face-get 'widget-default-button-face-get
1295 :sample-face-get 'widget-default-sample-face-get
1296 :delete 'widget-default-delete
1297 :value-set 'widget-default-value-set
1298 :value-inline 'widget-default-value-inline
1299 :default-get 'widget-default-default-get
1300 :menu-tag-get 'widget-default-menu-tag-get
1301 :validate #'ignore
1302 :active 'widget-default-active
1303 :activate 'widget-specify-active
1304 :deactivate 'widget-default-deactivate
1305 :mouse-down-action #'ignore
1306 :action 'widget-default-action
1307 :notify 'widget-default-notify
1308 :prompt-value 'widget-default-prompt-value)
1310 (defun widget-default-complete (widget)
1311 "Call the value of the :complete-function property of WIDGET.
1312 If that does not exists, call the value of `widget-complete-field'."
1313 (call-interactively (or (widget-get widget :complete-function)
1314 widget-complete-field)))
1316 (defun widget-default-create (widget)
1317 "Create WIDGET at point in the current buffer."
1318 (widget-specify-insert
1319 (let ((from (point))
1320 button-begin button-end
1321 sample-begin sample-end
1322 doc-begin doc-end
1323 value-pos)
1324 (insert (widget-get widget :format))
1325 (goto-char from)
1326 ;; Parse escapes in format.
1327 (while (re-search-forward "%\\(.\\)" nil t)
1328 (let ((escape (char-after (match-beginning 1))))
1329 (delete-backward-char 2)
1330 (cond ((eq escape ?%)
1331 (insert ?%))
1332 ((eq escape ?\[)
1333 (setq button-begin (point))
1334 (insert (widget-get-indirect widget :button-prefix)))
1335 ((eq escape ?\])
1336 (insert (widget-get-indirect widget :button-suffix))
1337 (setq button-end (point)))
1338 ((eq escape ?\{)
1339 (setq sample-begin (point)))
1340 ((eq escape ?\})
1341 (setq sample-end (point)))
1342 ((eq escape ?n)
1343 (when (widget-get widget :indent)
1344 (insert ?\n)
1345 (insert-char ? (widget-get widget :indent))))
1346 ((eq escape ?t)
1347 (let ((image (widget-get widget :tag-glyph))
1348 (tag (widget-get widget :tag)))
1349 (cond (image
1350 (widget-image-insert widget (or tag "image") image))
1351 (tag
1352 (insert tag))
1354 (princ (widget-get widget :value)
1355 (current-buffer))))))
1356 ((eq escape ?d)
1357 (let ((doc (widget-get widget :doc)))
1358 (when doc
1359 (setq doc-begin (point))
1360 (insert doc)
1361 (while (eq (preceding-char) ?\n)
1362 (delete-backward-char 1))
1363 (insert ?\n)
1364 (setq doc-end (point)))))
1365 ((eq escape ?v)
1366 (if (and button-begin (not button-end))
1367 (widget-apply widget :value-create)
1368 (setq value-pos (point))))
1370 (widget-apply widget :format-handler escape)))))
1371 ;; Specify button, sample, and doc, and insert value.
1372 (and button-begin button-end
1373 (widget-specify-button widget button-begin button-end))
1374 (and sample-begin sample-end
1375 (widget-specify-sample widget sample-begin sample-end))
1376 (and doc-begin doc-end
1377 (widget-specify-doc widget doc-begin doc-end))
1378 (when value-pos
1379 (goto-char value-pos)
1380 (widget-apply widget :value-create)))
1381 (let ((from (point-min-marker))
1382 (to (point-max-marker)))
1383 (set-marker-insertion-type from t)
1384 (set-marker-insertion-type to nil)
1385 (widget-put widget :from from)
1386 (widget-put widget :to to)))
1387 (widget-clear-undo))
1389 (defun widget-default-format-handler (widget escape)
1390 ;; We recognize the %h escape by default.
1391 (let* ((buttons (widget-get widget :buttons)))
1392 (cond ((eq escape ?h)
1393 (let* ((doc-property (widget-get widget :documentation-property))
1394 (doc-try (cond ((widget-get widget :doc))
1395 ((functionp doc-property)
1396 (funcall doc-property
1397 (widget-get widget :value)))
1398 ((symbolp doc-property)
1399 (documentation-property
1400 (widget-get widget :value)
1401 doc-property))))
1402 (doc-text (and (stringp doc-try)
1403 (> (length doc-try) 1)
1404 doc-try))
1405 (doc-indent (widget-get widget :documentation-indent)))
1406 (when doc-text
1407 (and (eq (preceding-char) ?\n)
1408 (widget-get widget :indent)
1409 (insert-char ? (widget-get widget :indent)))
1410 ;; The `*' in the beginning is redundant.
1411 (when (eq (aref doc-text 0) ?*)
1412 (setq doc-text (substring doc-text 1)))
1413 ;; Get rid of trailing newlines.
1414 (when (string-match "\n+\\'" doc-text)
1415 (setq doc-text (substring doc-text 0 (match-beginning 0))))
1416 (push (widget-create-child-and-convert
1417 widget 'documentation-string
1418 :indent (cond ((numberp doc-indent )
1419 doc-indent)
1420 ((null doc-indent)
1421 nil)
1422 (t 0))
1423 doc-text)
1424 buttons))))
1426 (error "Unknown escape `%c'" escape)))
1427 (widget-put widget :buttons buttons)))
1429 (defun widget-default-button-face-get (widget)
1430 ;; Use :button-face or widget-button-face
1431 (or (widget-get widget :button-face)
1432 (let ((parent (widget-get widget :parent)))
1433 (if parent
1434 (widget-apply parent :button-face-get)
1435 widget-button-face))))
1437 (defun widget-default-sample-face-get (widget)
1438 ;; Use :sample-face.
1439 (widget-get widget :sample-face))
1441 (defun widget-default-delete (widget)
1442 "Remove widget from the buffer."
1443 (let ((from (widget-get widget :from))
1444 (to (widget-get widget :to))
1445 (inactive-overlay (widget-get widget :inactive))
1446 (button-overlay (widget-get widget :button-overlay))
1447 (sample-overlay (widget-get widget :sample-overlay))
1448 (doc-overlay (widget-get widget :doc-overlay))
1449 (inhibit-modification-hooks t)
1450 (inhibit-read-only t))
1451 (widget-apply widget :value-delete)
1452 (when inactive-overlay
1453 (delete-overlay inactive-overlay))
1454 (when button-overlay
1455 (delete-overlay button-overlay))
1456 (when sample-overlay
1457 (delete-overlay sample-overlay))
1458 (when doc-overlay
1459 (delete-overlay doc-overlay))
1460 (when (< from to)
1461 ;; Kludge: this doesn't need to be true for empty formats.
1462 (delete-region from to))
1463 (set-marker from nil)
1464 (set-marker to nil))
1465 (widget-clear-undo))
1467 (defun widget-default-value-set (widget value)
1468 "Recreate widget with new value."
1469 (let* ((old-pos (point))
1470 (from (copy-marker (widget-get widget :from)))
1471 (to (copy-marker (widget-get widget :to)))
1472 (offset (if (and (<= from old-pos) (<= old-pos to))
1473 (if (>= old-pos (1- to))
1474 (- old-pos to 1)
1475 (- old-pos from)))))
1476 ;;??? Bug: this ought to insert the new value before deleting the old one,
1477 ;; so that markers on either side of the value automatically
1478 ;; stay on the same side. -- rms.
1479 (save-excursion
1480 (goto-char (widget-get widget :from))
1481 (widget-apply widget :delete)
1482 (widget-put widget :value value)
1483 (widget-apply widget :create))
1484 (if offset
1485 (if (< offset 0)
1486 (goto-char (+ (widget-get widget :to) offset 1))
1487 (goto-char (min (+ from offset) (1- (widget-get widget :to))))))))
1489 (defun widget-default-value-inline (widget)
1490 "Wrap value in a list unless it is inline."
1491 (if (widget-get widget :inline)
1492 (widget-value widget)
1493 (list (widget-value widget))))
1495 (defun widget-default-default-get (widget)
1496 "Get `:value'."
1497 (widget-get widget :value))
1499 (defun widget-default-menu-tag-get (widget)
1500 "Use tag or value for menus."
1501 (or (widget-get widget :menu-tag)
1502 (widget-get widget :tag)
1503 (widget-princ-to-string (widget-get widget :value))))
1505 (defun widget-default-active (widget)
1506 "Return t iff this widget active (user modifiable)."
1507 (or (widget-get widget :always-active)
1508 (and (not (widget-get widget :inactive))
1509 (let ((parent (widget-get widget :parent)))
1510 (or (null parent)
1511 (widget-apply parent :active))))))
1513 (defun widget-default-deactivate (widget)
1514 "Make WIDGET inactive for user modifications."
1515 (widget-specify-inactive widget
1516 (widget-get widget :from)
1517 (widget-get widget :to)))
1519 (defun widget-default-action (widget &optional event)
1520 "Notify the parent when a widget changes."
1521 (let ((parent (widget-get widget :parent)))
1522 (when parent
1523 (widget-apply parent :notify widget event))))
1525 (defun widget-default-notify (widget child &optional event)
1526 "Pass notification to parent."
1527 (widget-default-action widget event))
1529 (defun widget-default-prompt-value (widget prompt value unbound)
1530 "Read an arbitrary value. Stolen from `set-variable'."
1531 ;; (let ((initial (if unbound
1532 ;; nil
1533 ;; It would be nice if we could do a `(cons val 1)' here.
1534 ;; (prin1-to-string (custom-quote value))))))
1535 (eval-minibuffer prompt))
1537 ;;; The `item' Widget.
1539 (define-widget 'item 'default
1540 "Constant items for inclusion in other widgets."
1541 :convert-widget 'widget-value-convert-widget
1542 :value-create 'widget-item-value-create
1543 :value-delete 'ignore
1544 :value-get 'widget-value-value-get
1545 :match 'widget-item-match
1546 :match-inline 'widget-item-match-inline
1547 :action 'widget-item-action
1548 :format "%t\n")
1550 (defun widget-item-value-create (widget)
1551 "Insert the printed representation of the value."
1552 (princ (widget-get widget :value) (current-buffer)))
1554 (defun widget-item-match (widget value)
1555 ;; Match if the value is the same.
1556 (equal (widget-get widget :value) value))
1558 (defun widget-item-match-inline (widget values)
1559 ;; Match if the value is the same.
1560 (let ((value (widget-get widget :value)))
1561 (and (listp value)
1562 (<= (length value) (length values))
1563 (let ((head (widget-sublist values 0 (length value))))
1564 (and (equal head value)
1565 (cons head (widget-sublist values (length value))))))))
1567 (defun widget-sublist (list start &optional end)
1568 "Return the sublist of LIST from START to END.
1569 If END is omitted, it defaults to the length of LIST."
1570 (if (> start 0) (setq list (nthcdr start list)))
1571 (if end
1572 (unless (<= end start)
1573 (setq list (copy-sequence list))
1574 (setcdr (nthcdr (- end start 1) list) nil)
1575 list)
1576 (copy-sequence list)))
1578 (defun widget-item-action (widget &optional event)
1579 ;; Just notify itself.
1580 (widget-apply widget :notify widget event))
1582 ;;; The `push-button' Widget.
1584 ;; (defcustom widget-push-button-gui t
1585 ;; "If non nil, use GUI push buttons when available."
1586 ;; :group 'widgets
1587 ;; :type 'boolean)
1589 ;; Cache already created GUI objects.
1590 ;; (defvar widget-push-button-cache nil)
1592 (defcustom widget-push-button-prefix "["
1593 "String used as prefix for buttons."
1594 :type 'string
1595 :group 'widget-button)
1597 (defcustom widget-push-button-suffix "]"
1598 "String used as suffix for buttons."
1599 :type 'string
1600 :group 'widget-button)
1602 (define-widget 'push-button 'item
1603 "A pushable button."
1604 :button-prefix ""
1605 :button-suffix ""
1606 :value-create 'widget-push-button-value-create
1607 :format "%[%v%]")
1609 (defun widget-push-button-value-create (widget)
1610 "Insert text representing the `on' and `off' states."
1611 (let* ((tag (or (widget-get widget :tag)
1612 (widget-get widget :value)))
1613 (tag-glyph (widget-get widget :tag-glyph))
1614 (text (concat widget-push-button-prefix
1615 tag widget-push-button-suffix)))
1616 (if tag-glyph
1617 (widget-image-insert widget text tag-glyph)
1618 (insert text))))
1620 ;; (defun widget-gui-action (widget)
1621 ;; "Apply :action for WIDGET."
1622 ;; (widget-apply-action widget (this-command-keys)))
1624 ;;; The `link' Widget.
1626 (defcustom widget-link-prefix "["
1627 "String used as prefix for links."
1628 :type 'string
1629 :group 'widget-button)
1631 (defcustom widget-link-suffix "]"
1632 "String used as suffix for links."
1633 :type 'string
1634 :group 'widget-button)
1636 (define-widget 'link 'item
1637 "An embedded link."
1638 :button-prefix 'widget-link-prefix
1639 :button-suffix 'widget-link-suffix
1640 :help-echo "Follow the link."
1641 :format "%[%t%]")
1643 ;;; The `info-link' Widget.
1645 (define-widget 'info-link 'link
1646 "A link to an info file."
1647 :action 'widget-info-link-action)
1649 (defun widget-info-link-action (widget &optional event)
1650 "Open the info node specified by WIDGET."
1651 (Info-goto-node (widget-value widget)))
1653 ;;; The `url-link' Widget.
1655 (define-widget 'url-link 'link
1656 "A link to an www page."
1657 :action 'widget-url-link-action)
1659 (defun widget-url-link-action (widget &optional event)
1660 "Open the url specified by WIDGET."
1661 (browse-url (widget-value widget)))
1663 ;;; The `function-link' Widget.
1665 (define-widget 'function-link 'link
1666 "A link to an Emacs function."
1667 :action 'widget-function-link-action)
1669 (defun widget-function-link-action (widget &optional event)
1670 "Show the function specified by WIDGET."
1671 (describe-function (widget-value widget)))
1673 ;;; The `variable-link' Widget.
1675 (define-widget 'variable-link 'link
1676 "A link to an Emacs variable."
1677 :action 'widget-variable-link-action)
1679 (defun widget-variable-link-action (widget &optional event)
1680 "Show the variable specified by WIDGET."
1681 (describe-variable (widget-value widget)))
1683 ;;; The `file-link' Widget.
1685 (define-widget 'file-link 'link
1686 "A link to a file."
1687 :action 'widget-file-link-action)
1689 (defun widget-file-link-action (widget &optional event)
1690 "Find the file specified by WIDGET."
1691 (find-file (widget-value widget)))
1693 ;;; The `emacs-library-link' Widget.
1695 (define-widget 'emacs-library-link 'link
1696 "A link to an Emacs Lisp library file."
1697 :action 'widget-emacs-library-link-action)
1699 (defun widget-emacs-library-link-action (widget &optional event)
1700 "Find the Emacs Library file specified by WIDGET."
1701 (find-file (locate-library (widget-value widget))))
1703 ;;; The `emacs-commentary-link' Widget.
1705 (define-widget 'emacs-commentary-link 'link
1706 "A link to Commentary in an Emacs Lisp library file."
1707 :action 'widget-emacs-commentary-link-action)
1709 (defun widget-emacs-commentary-link-action (widget &optional event)
1710 "Find the Commentary section of the Emacs file specified by WIDGET."
1711 (finder-commentary (widget-value widget)))
1713 ;;; The `editable-field' Widget.
1715 (define-widget 'editable-field 'default
1716 "An editable text field."
1717 :convert-widget 'widget-value-convert-widget
1718 :keymap widget-field-keymap
1719 :format "%v"
1720 :help-echo "M-TAB: complete field; RET: enter value"
1721 :value ""
1722 :prompt-internal 'widget-field-prompt-internal
1723 :prompt-history 'widget-field-history
1724 :prompt-value 'widget-field-prompt-value
1725 :action 'widget-field-action
1726 :validate 'widget-field-validate
1727 :valid-regexp ""
1728 :error "Field's value doesn't match allowed forms"
1729 :value-create 'widget-field-value-create
1730 :value-delete 'widget-field-value-delete
1731 :value-get 'widget-field-value-get
1732 :match 'widget-field-match)
1734 (defvar widget-field-history nil
1735 "History of field minibuffer edits.")
1737 (defun widget-field-prompt-internal (widget prompt initial history)
1738 "Read string for WIDGET promptinhg with PROMPT.
1739 INITIAL is the initial input and HISTORY is a symbol containing
1740 the earlier input."
1741 (read-string prompt initial history))
1743 (defun widget-field-prompt-value (widget prompt value unbound)
1744 "Prompt for a string."
1745 (widget-apply widget
1746 :value-to-external
1747 (widget-apply widget
1748 :prompt-internal prompt
1749 (unless unbound
1750 (cons (widget-apply widget
1751 :value-to-internal value)
1753 (widget-get widget :prompt-history))))
1755 (defvar widget-edit-functions nil)
1757 (defun widget-field-action (widget &optional event)
1758 "Move to next field."
1759 (widget-forward 1)
1760 (run-hook-with-args 'widget-edit-functions widget))
1762 (defun widget-field-validate (widget)
1763 "Valid if the content matches `:valid-regexp'."
1764 (unless (string-match (widget-get widget :valid-regexp)
1765 (widget-apply widget :value-get))
1766 widget))
1768 (defun widget-field-value-create (widget)
1769 "Create an editable text field."
1770 (let ((size (widget-get widget :size))
1771 (value (widget-get widget :value))
1772 (from (point))
1773 ;; This is changed to a real overlay in `widget-setup'. We
1774 ;; need the end points to behave differently until
1775 ;; `widget-setup' is called.
1776 (overlay (cons (make-marker) (make-marker))))
1777 (widget-put widget :field-overlay overlay)
1778 (insert value)
1779 (and size
1780 (< (length value) size)
1781 (insert-char ?\ (- size (length value))))
1782 (unless (memq widget widget-field-list)
1783 (setq widget-field-new (cons widget widget-field-new)))
1784 (move-marker (cdr overlay) (point))
1785 (set-marker-insertion-type (cdr overlay) nil)
1786 (when (null size)
1787 (insert ?\n))
1788 (move-marker (car overlay) from)
1789 (set-marker-insertion-type (car overlay) t)))
1791 (defun widget-field-value-delete (widget)
1792 "Remove the widget from the list of active editing fields."
1793 (setq widget-field-list (delq widget widget-field-list))
1794 (setq widget-field-new (delq widget widget-field-new))
1795 ;; These are nil if the :format string doesn't contain `%v'.
1796 (let ((overlay (widget-get widget :field-overlay)))
1797 (when (overlayp overlay)
1798 (delete-overlay overlay))))
1800 (defun widget-field-value-get (widget)
1801 "Return current text in editing field."
1802 (let ((from (widget-field-start widget))
1803 (to (widget-field-end widget))
1804 (buffer (widget-field-buffer widget))
1805 (size (widget-get widget :size))
1806 (secret (widget-get widget :secret))
1807 (old (current-buffer)))
1808 (if (and from to)
1809 (progn
1810 (set-buffer buffer)
1811 (while (and size
1812 (not (zerop size))
1813 (> to from)
1814 (eq (char-after (1- to)) ?\ ))
1815 (setq to (1- to)))
1816 (let ((result (buffer-substring-no-properties from to)))
1817 (when secret
1818 (let ((index 0))
1819 (while (< (+ from index) to)
1820 (aset result index
1821 (get-char-property (+ from index) 'secret))
1822 (setq index (1+ index)))))
1823 (set-buffer old)
1824 result))
1825 (widget-get widget :value))))
1827 (defun widget-field-match (widget value)
1828 ;; Match any string.
1829 (stringp value))
1831 ;;; The `text' Widget.
1833 (define-widget 'text 'editable-field
1834 "A multiline text area."
1835 :keymap widget-text-keymap)
1837 ;;; The `menu-choice' Widget.
1839 (define-widget 'menu-choice 'default
1840 "A menu of options."
1841 :convert-widget 'widget-types-convert-widget
1842 :format "%[%t%]: %v"
1843 :case-fold t
1844 :tag "choice"
1845 :void '(item :format "invalid (%t)\n")
1846 :value-create 'widget-choice-value-create
1847 :value-delete 'widget-children-value-delete
1848 :value-get 'widget-choice-value-get
1849 :value-inline 'widget-choice-value-inline
1850 :default-get 'widget-choice-default-get
1851 :mouse-down-action 'widget-choice-mouse-down-action
1852 :action 'widget-choice-action
1853 :error "Make a choice"
1854 :validate 'widget-choice-validate
1855 :match 'widget-choice-match
1856 :match-inline 'widget-choice-match-inline)
1858 (defun widget-choice-value-create (widget)
1859 "Insert the first choice that matches the value."
1860 (let ((value (widget-get widget :value))
1861 (args (widget-get widget :args))
1862 (explicit (widget-get widget :explicit-choice))
1863 current)
1864 (if (and explicit (equal value (widget-get widget :explicit-choice-value)))
1865 (progn
1866 ;; If the user specified the choice for this value,
1867 ;; respect that choice as long as the value is the same.
1868 (widget-put widget :children (list (widget-create-child-value
1869 widget explicit value)))
1870 (widget-put widget :choice explicit))
1871 (while args
1872 (setq current (car args)
1873 args (cdr args))
1874 (when (widget-apply current :match value)
1875 (widget-put widget :children (list (widget-create-child-value
1876 widget current value)))
1877 (widget-put widget :choice current)
1878 (setq args nil
1879 current nil)))
1880 (when current
1881 (let ((void (widget-get widget :void)))
1882 (widget-put widget :children (list (widget-create-child-and-convert
1883 widget void :value value)))
1884 (widget-put widget :choice void))))))
1886 (defun widget-choice-value-get (widget)
1887 ;; Get value of the child widget.
1888 (widget-value (car (widget-get widget :children))))
1890 (defun widget-choice-value-inline (widget)
1891 ;; Get value of the child widget.
1892 (widget-apply (car (widget-get widget :children)) :value-inline))
1894 (defun widget-choice-default-get (widget)
1895 ;; Get default for the first choice.
1896 (widget-default-get (car (widget-get widget :args))))
1898 (defcustom widget-choice-toggle nil
1899 "If non-nil, a binary choice will just toggle between the values.
1900 Otherwise, the user will explicitly have to choose between the values
1901 when he invoked the menu."
1902 :type 'boolean
1903 :group 'widgets)
1905 (defun widget-choice-mouse-down-action (widget &optional event)
1906 ;; Return non-nil if we need a menu.
1907 (let ((args (widget-get widget :args))
1908 (old (widget-get widget :choice)))
1909 (cond ((not (display-popup-menus-p))
1910 ;; No place to pop up a menu.
1911 nil)
1912 ((< (length args) 2)
1913 ;; Empty or singleton list, just return the value.
1914 nil)
1915 ((> (length args) widget-menu-max-size)
1916 ;; Too long, prompt.
1917 nil)
1918 ((> (length args) 2)
1919 ;; Reasonable sized list, use menu.
1921 ((and widget-choice-toggle (memq old args))
1922 ;; We toggle.
1923 nil)
1925 ;; Ask which of the two.
1926 t))))
1928 (defun widget-choice-action (widget &optional event)
1929 ;; Make a choice.
1930 (let ((args (widget-get widget :args))
1931 (old (widget-get widget :choice))
1932 (tag (widget-apply widget :menu-tag-get))
1933 (completion-ignore-case (widget-get widget :case-fold))
1934 this-explicit
1935 current choices)
1936 ;; Remember old value.
1937 (if (and old (not (widget-apply widget :validate)))
1938 (let* ((external (widget-value widget))
1939 (internal (widget-apply old :value-to-internal external)))
1940 (widget-put old :value internal)))
1941 ;; Find new choice.
1942 (setq current
1943 (cond ((= (length args) 0)
1944 nil)
1945 ((= (length args) 1)
1946 (nth 0 args))
1947 ((and widget-choice-toggle
1948 (= (length args) 2)
1949 (memq old args))
1950 (if (eq old (nth 0 args))
1951 (nth 1 args)
1952 (nth 0 args)))
1954 (while args
1955 (setq current (car args)
1956 args (cdr args))
1957 (setq choices
1958 (cons (cons (widget-apply current :menu-tag-get)
1959 current)
1960 choices)))
1961 (setq this-explicit t)
1962 (widget-choose tag (reverse choices) event))))
1963 (when current
1964 ;; If this was an explicit user choice,
1965 ;; record the choice, and the record the value it was made for.
1966 ;; widget-choice-value-create will respect this choice,
1967 ;; as long as the value is the same.
1968 (when this-explicit
1969 (widget-put widget :explicit-choice current)
1970 (widget-put widget :explicit-choice-value (widget-get widget :value)))
1971 (widget-value-set
1972 widget (widget-apply current
1973 :value-to-external (widget-default-get current)))
1974 (widget-setup)
1975 (widget-apply widget :notify widget event)))
1976 (run-hook-with-args 'widget-edit-functions widget))
1978 (defun widget-choice-validate (widget)
1979 ;; Valid if we have made a valid choice.
1980 (if (eq (widget-get widget :void) (widget-get widget :choice))
1981 widget
1982 (widget-apply (car (widget-get widget :children)) :validate)))
1984 (defun widget-choice-match (widget value)
1985 ;; Matches if one of the choices matches.
1986 (let ((args (widget-get widget :args))
1987 current found)
1988 (while (and args (not found))
1989 (setq current (car args)
1990 args (cdr args)
1991 found (widget-apply current :match value)))
1992 found))
1994 (defun widget-choice-match-inline (widget values)
1995 ;; Matches if one of the choices matches.
1996 (let ((args (widget-get widget :args))
1997 current found)
1998 (while (and args (null found))
1999 (setq current (car args)
2000 args (cdr args)
2001 found (widget-match-inline current values)))
2002 found))
2004 ;;; The `toggle' Widget.
2006 (define-widget 'toggle 'item
2007 "Toggle between two states."
2008 :format "%[%v%]\n"
2009 :value-create 'widget-toggle-value-create
2010 :action 'widget-toggle-action
2011 :match (lambda (widget value) t)
2012 :on "on"
2013 :off "off")
2015 (defun widget-toggle-value-create (widget)
2016 "Insert text representing the `on' and `off' states."
2017 (if (widget-value widget)
2018 (let ((image (widget-get widget :on-glyph)))
2019 (and (display-graphic-p)
2020 (listp image)
2021 (not (eq (car image) 'image))
2022 (widget-put widget :on-glyph (setq image (eval image))))
2023 (widget-image-insert widget
2024 (widget-get widget :on)
2025 image))
2026 (let ((image (widget-get widget :off-glyph)))
2027 (and (display-graphic-p)
2028 (listp image)
2029 (not (eq (car image) 'image))
2030 (widget-put widget :off-glyph (setq image (eval image))))
2031 (widget-image-insert widget (widget-get widget :off) image))))
2033 (defun widget-toggle-action (widget &optional event)
2034 ;; Toggle value.
2035 (widget-value-set widget (not (widget-value widget)))
2036 (widget-apply widget :notify widget event)
2037 (run-hook-with-args 'widget-edit-functions widget))
2039 ;;; The `checkbox' Widget.
2041 (define-widget 'checkbox 'toggle
2042 "A checkbox toggle."
2043 :button-suffix ""
2044 :button-prefix ""
2045 :format "%[%v%]"
2046 :on "[X]"
2047 ;; We could probably do the same job as the images using single
2048 ;; space characters in a boxed face with a stretch specification to
2049 ;; make them square.
2050 :on-glyph '(create-image "\000\066\076\034\076\066\000"
2051 'xbm t :width 7 :height 7
2052 :background "grey75" ; like default mode line
2053 :foreground "black"
2054 :relief -3
2055 :ascent 'center)
2056 :off "[ ]"
2057 :off-glyph '(create-image (make-string 7 0)
2058 'xbm t :width 7 :height 7
2059 :background "grey75"
2060 :foreground "black"
2061 :relief 3
2062 :ascent 'center)
2063 :help-echo "Toggle this item."
2064 :action 'widget-checkbox-action)
2066 (defun widget-checkbox-action (widget &optional event)
2067 "Toggle checkbox, notify parent, and set active state of sibling."
2068 (widget-toggle-action widget event)
2069 (let ((sibling (widget-get-sibling widget)))
2070 (when sibling
2071 (if (widget-value widget)
2072 (widget-apply sibling :activate)
2073 (widget-apply sibling :deactivate)))))
2075 ;;; The `checklist' Widget.
2077 (define-widget 'checklist 'default
2078 "A multiple choice widget."
2079 :convert-widget 'widget-types-convert-widget
2080 :format "%v"
2081 :offset 4
2082 :entry-format "%b %v"
2083 :greedy nil
2084 :value-create 'widget-checklist-value-create
2085 :value-delete 'widget-children-value-delete
2086 :value-get 'widget-checklist-value-get
2087 :validate 'widget-checklist-validate
2088 :match 'widget-checklist-match
2089 :match-inline 'widget-checklist-match-inline)
2091 (defun widget-checklist-value-create (widget)
2092 ;; Insert all values
2093 (let ((alist (widget-checklist-match-find widget (widget-get widget :value)))
2094 (args (widget-get widget :args)))
2095 (while args
2096 (widget-checklist-add-item widget (car args) (assq (car args) alist))
2097 (setq args (cdr args)))
2098 (widget-put widget :children (nreverse (widget-get widget :children)))))
2100 (defun widget-checklist-add-item (widget type chosen)
2101 "Create checklist item in WIDGET of type TYPE.
2102 If the item is checked, CHOSEN is a cons whose cdr is the value."
2103 (and (eq (preceding-char) ?\n)
2104 (widget-get widget :indent)
2105 (insert-char ? (widget-get widget :indent)))
2106 (widget-specify-insert
2107 (let* ((children (widget-get widget :children))
2108 (buttons (widget-get widget :buttons))
2109 (button-args (or (widget-get type :sibling-args)
2110 (widget-get widget :button-args)))
2111 (from (point))
2112 child button)
2113 (insert (widget-get widget :entry-format))
2114 (goto-char from)
2115 ;; Parse % escapes in format.
2116 (while (re-search-forward "%\\([bv%]\\)" nil t)
2117 (let ((escape (char-after (match-beginning 1))))
2118 (delete-backward-char 2)
2119 (cond ((eq escape ?%)
2120 (insert ?%))
2121 ((eq escape ?b)
2122 (setq button (apply 'widget-create-child-and-convert
2123 widget 'checkbox
2124 :value (not (null chosen))
2125 button-args)))
2126 ((eq escape ?v)
2127 (setq child
2128 (cond ((not chosen)
2129 (let ((child (widget-create-child widget type)))
2130 (widget-apply child :deactivate)
2131 child))
2132 ((widget-get type :inline)
2133 (widget-create-child-value
2134 widget type (cdr chosen)))
2136 (widget-create-child-value
2137 widget type (car (cdr chosen)))))))
2139 (error "Unknown escape `%c'" escape)))))
2140 ;; Update properties.
2141 (and button child (widget-put child :button button))
2142 (and button (widget-put widget :buttons (cons button buttons)))
2143 (and child (widget-put widget :children (cons child children))))))
2145 (defun widget-checklist-match (widget values)
2146 ;; All values must match a type in the checklist.
2147 (and (listp values)
2148 (null (cdr (widget-checklist-match-inline widget values)))))
2150 (defun widget-checklist-match-inline (widget values)
2151 ;; Find the values which match a type in the checklist.
2152 (let ((greedy (widget-get widget :greedy))
2153 (args (copy-sequence (widget-get widget :args)))
2154 found rest)
2155 (while values
2156 (let ((answer (widget-checklist-match-up args values)))
2157 (cond (answer
2158 (let ((vals (widget-match-inline answer values)))
2159 (setq found (append found (car vals))
2160 values (cdr vals)
2161 args (delq answer args))))
2162 (greedy
2163 (setq rest (append rest (list (car values)))
2164 values (cdr values)))
2166 (setq rest (append rest values)
2167 values nil)))))
2168 (cons found rest)))
2170 (defun widget-checklist-match-find (widget vals)
2171 "Find the vals which match a type in the checklist.
2172 Return an alist of (TYPE MATCH)."
2173 (let ((greedy (widget-get widget :greedy))
2174 (args (copy-sequence (widget-get widget :args)))
2175 found)
2176 (while vals
2177 (let ((answer (widget-checklist-match-up args vals)))
2178 (cond (answer
2179 (let ((match (widget-match-inline answer vals)))
2180 (setq found (cons (cons answer (car match)) found)
2181 vals (cdr match)
2182 args (delq answer args))))
2183 (greedy
2184 (setq vals (cdr vals)))
2186 (setq vals nil)))))
2187 found))
2189 (defun widget-checklist-match-up (args vals)
2190 "Return the first type from ARGS that matches VALS."
2191 (let (current found)
2192 (while (and args (null found))
2193 (setq current (car args)
2194 args (cdr args)
2195 found (widget-match-inline current vals)))
2196 (if found
2197 current)))
2199 (defun widget-checklist-value-get (widget)
2200 ;; The values of all selected items.
2201 (let ((children (widget-get widget :children))
2202 child result)
2203 (while children
2204 (setq child (car children)
2205 children (cdr children))
2206 (if (widget-value (widget-get child :button))
2207 (setq result (append result (widget-apply child :value-inline)))))
2208 result))
2210 (defun widget-checklist-validate (widget)
2211 ;; Ticked chilren must be valid.
2212 (let ((children (widget-get widget :children))
2213 child button found)
2214 (while (and children (not found))
2215 (setq child (car children)
2216 children (cdr children)
2217 button (widget-get child :button)
2218 found (and (widget-value button)
2219 (widget-apply child :validate))))
2220 found))
2222 ;;; The `option' Widget
2224 (define-widget 'option 'checklist
2225 "An widget with an optional item."
2226 :inline t)
2228 ;;; The `choice-item' Widget.
2230 (define-widget 'choice-item 'item
2231 "Button items that delegate action events to their parents."
2232 :action 'widget-parent-action
2233 :format "%[%t%] \n")
2235 ;;; The `radio-button' Widget.
2237 (define-widget 'radio-button 'toggle
2238 "A radio button for use in the `radio' widget."
2239 :notify 'widget-radio-button-notify
2240 :format "%[%v%]"
2241 :button-suffix ""
2242 :button-prefix ""
2243 :on "(*)"
2244 :on-glyph "radio1"
2245 :off "( )"
2246 :off-glyph "radio0")
2248 (defun widget-radio-button-notify (widget child &optional event)
2249 ;; Tell daddy.
2250 (widget-apply (widget-get widget :parent) :action widget event))
2252 ;;; The `radio-button-choice' Widget.
2254 (define-widget 'radio-button-choice 'default
2255 "Select one of multiple options."
2256 :convert-widget 'widget-types-convert-widget
2257 :offset 4
2258 :format "%v"
2259 :entry-format "%b %v"
2260 :value-create 'widget-radio-value-create
2261 :value-delete 'widget-children-value-delete
2262 :value-get 'widget-radio-value-get
2263 :value-inline 'widget-radio-value-inline
2264 :value-set 'widget-radio-value-set
2265 :error "You must push one of the buttons"
2266 :validate 'widget-radio-validate
2267 :match 'widget-choice-match
2268 :match-inline 'widget-choice-match-inline
2269 :action 'widget-radio-action)
2271 (defun widget-radio-value-create (widget)
2272 ;; Insert all values
2273 (let ((args (widget-get widget :args))
2274 arg)
2275 (while args
2276 (setq arg (car args)
2277 args (cdr args))
2278 (widget-radio-add-item widget arg))))
2280 (defun widget-radio-add-item (widget type)
2281 "Add to radio widget WIDGET a new radio button item of type TYPE."
2282 ;; (setq type (widget-convert type))
2283 (and (eq (preceding-char) ?\n)
2284 (widget-get widget :indent)
2285 (insert-char ? (widget-get widget :indent)))
2286 (widget-specify-insert
2287 (let* ((value (widget-get widget :value))
2288 (children (widget-get widget :children))
2289 (buttons (widget-get widget :buttons))
2290 (button-args (or (widget-get type :sibling-args)
2291 (widget-get widget :button-args)))
2292 (from (point))
2293 (chosen (and (null (widget-get widget :choice))
2294 (widget-apply type :match value)))
2295 child button)
2296 (insert (widget-get widget :entry-format))
2297 (goto-char from)
2298 ;; Parse % escapes in format.
2299 (while (re-search-forward "%\\([bv%]\\)" nil t)
2300 (let ((escape (char-after (match-beginning 1))))
2301 (delete-backward-char 2)
2302 (cond ((eq escape ?%)
2303 (insert ?%))
2304 ((eq escape ?b)
2305 (setq button (apply 'widget-create-child-and-convert
2306 widget 'radio-button
2307 :value (not (null chosen))
2308 button-args)))
2309 ((eq escape ?v)
2310 (setq child (if chosen
2311 (widget-create-child-value
2312 widget type value)
2313 (widget-create-child widget type)))
2314 (unless chosen
2315 (widget-apply child :deactivate)))
2317 (error "Unknown escape `%c'" escape)))))
2318 ;; Update properties.
2319 (when chosen
2320 (widget-put widget :choice type))
2321 (when button
2322 (widget-put child :button button)
2323 (widget-put widget :buttons (nconc buttons (list button))))
2324 (when child
2325 (widget-put widget :children (nconc children (list child))))
2326 child)))
2328 (defun widget-radio-value-get (widget)
2329 ;; Get value of the child widget.
2330 (let ((chosen (widget-radio-chosen widget)))
2331 (and chosen (widget-value chosen))))
2333 (defun widget-radio-chosen (widget)
2334 "Return the widget representing the chosen radio button."
2335 (let ((children (widget-get widget :children))
2336 current found)
2337 (while children
2338 (setq current (car children)
2339 children (cdr children))
2340 (when (widget-apply (widget-get current :button) :value-get)
2341 (setq found current
2342 children nil)))
2343 found))
2345 (defun widget-radio-value-inline (widget)
2346 ;; Get value of the child widget.
2347 (let ((children (widget-get widget :children))
2348 current found)
2349 (while children
2350 (setq current (car children)
2351 children (cdr children))
2352 (when (widget-apply (widget-get current :button) :value-get)
2353 (setq found (widget-apply current :value-inline)
2354 children nil)))
2355 found))
2357 (defun widget-radio-value-set (widget value)
2358 ;; We can't just delete and recreate a radio widget, since children
2359 ;; can be added after the original creation and won't be recreated
2360 ;; by `:create'.
2361 (let ((children (widget-get widget :children))
2362 current found)
2363 (while children
2364 (setq current (car children)
2365 children (cdr children))
2366 (let* ((button (widget-get current :button))
2367 (match (and (not found)
2368 (widget-apply current :match value))))
2369 (widget-value-set button match)
2370 (if match
2371 (progn
2372 (widget-value-set current value)
2373 (widget-apply current :activate))
2374 (widget-apply current :deactivate))
2375 (setq found (or found match))))))
2377 (defun widget-radio-validate (widget)
2378 ;; Valid if we have made a valid choice.
2379 (let ((children (widget-get widget :children))
2380 current found button)
2381 (while (and children (not found))
2382 (setq current (car children)
2383 children (cdr children)
2384 button (widget-get current :button)
2385 found (widget-apply button :value-get)))
2386 (if found
2387 (widget-apply current :validate)
2388 widget)))
2390 (defun widget-radio-action (widget child event)
2391 ;; Check if a radio button was pressed.
2392 (let ((children (widget-get widget :children))
2393 (buttons (widget-get widget :buttons))
2394 current)
2395 (when (memq child buttons)
2396 (while children
2397 (setq current (car children)
2398 children (cdr children))
2399 (let* ((button (widget-get current :button)))
2400 (cond ((eq child button)
2401 (widget-value-set button t)
2402 (widget-apply current :activate))
2403 ((widget-value button)
2404 (widget-value-set button nil)
2405 (widget-apply current :deactivate)))))))
2406 ;; Pass notification to parent.
2407 (widget-apply widget :notify child event))
2409 ;;; The `insert-button' Widget.
2411 (define-widget 'insert-button 'push-button
2412 "An insert button for the `editable-list' widget."
2413 :tag "INS"
2414 :help-echo "Insert a new item into the list at this position."
2415 :action 'widget-insert-button-action)
2417 (defun widget-insert-button-action (widget &optional event)
2418 ;; Ask the parent to insert a new item.
2419 (widget-apply (widget-get widget :parent)
2420 :insert-before (widget-get widget :widget)))
2422 ;;; The `delete-button' Widget.
2424 (define-widget 'delete-button 'push-button
2425 "A delete button for the `editable-list' widget."
2426 :tag "DEL"
2427 :help-echo "Delete this item from the list."
2428 :action 'widget-delete-button-action)
2430 (defun widget-delete-button-action (widget &optional event)
2431 ;; Ask the parent to insert a new item.
2432 (widget-apply (widget-get widget :parent)
2433 :delete-at (widget-get widget :widget)))
2435 ;;; The `editable-list' Widget.
2437 ;; (defcustom widget-editable-list-gui nil
2438 ;; "If non nil, use GUI push-buttons in editable list when available."
2439 ;; :type 'boolean
2440 ;; :group 'widgets)
2442 (define-widget 'editable-list 'default
2443 "A variable list of widgets of the same type."
2444 :convert-widget 'widget-types-convert-widget
2445 :offset 12
2446 :format "%v%i\n"
2447 :format-handler 'widget-editable-list-format-handler
2448 :entry-format "%i %d %v"
2449 :value-create 'widget-editable-list-value-create
2450 :value-delete 'widget-children-value-delete
2451 :value-get 'widget-editable-list-value-get
2452 :validate 'widget-children-validate
2453 :match 'widget-editable-list-match
2454 :match-inline 'widget-editable-list-match-inline
2455 :insert-before 'widget-editable-list-insert-before
2456 :delete-at 'widget-editable-list-delete-at)
2458 (defun widget-editable-list-format-handler (widget escape)
2459 ;; We recognize the insert button.
2460 ;;; (let ((widget-push-button-gui widget-editable-list-gui))
2461 (cond ((eq escape ?i)
2462 (and (widget-get widget :indent)
2463 (insert-char ?\ (widget-get widget :indent)))
2464 (apply 'widget-create-child-and-convert
2465 widget 'insert-button
2466 (widget-get widget :append-button-args)))
2468 (widget-default-format-handler widget escape)))
2469 ;;; )
2472 (defun widget-editable-list-value-create (widget)
2473 ;; Insert all values
2474 (let* ((value (widget-get widget :value))
2475 (type (nth 0 (widget-get widget :args)))
2476 children)
2477 (widget-put widget :value-pos (copy-marker (point)))
2478 (set-marker-insertion-type (widget-get widget :value-pos) t)
2479 (while value
2480 (let ((answer (widget-match-inline type value)))
2481 (if answer
2482 (setq children (cons (widget-editable-list-entry-create
2483 widget
2484 (if (widget-get type :inline)
2485 (car answer)
2486 (car (car answer)))
2488 children)
2489 value (cdr answer))
2490 (setq value nil))))
2491 (widget-put widget :children (nreverse children))))
2493 (defun widget-editable-list-value-get (widget)
2494 ;; Get value of the child widget.
2495 (apply 'append (mapcar (lambda (child) (widget-apply child :value-inline))
2496 (widget-get widget :children))))
2498 (defun widget-editable-list-match (widget value)
2499 ;; Value must be a list and all the members must match the type.
2500 (and (listp value)
2501 (null (cdr (widget-editable-list-match-inline widget value)))))
2503 (defun widget-editable-list-match-inline (widget value)
2504 (let ((type (nth 0 (widget-get widget :args)))
2505 (ok t)
2506 found)
2507 (while (and value ok)
2508 (let ((answer (widget-match-inline type value)))
2509 (if answer
2510 (setq found (append found (car answer))
2511 value (cdr answer))
2512 (setq ok nil))))
2513 (cons found value)))
2515 (defun widget-editable-list-insert-before (widget before)
2516 ;; Insert a new child in the list of children.
2517 (save-excursion
2518 (let ((children (widget-get widget :children))
2519 (inhibit-read-only t)
2520 before-change-functions
2521 after-change-functions)
2522 (cond (before
2523 (goto-char (widget-get before :entry-from)))
2525 (goto-char (widget-get widget :value-pos))))
2526 (let ((child (widget-editable-list-entry-create
2527 widget nil nil)))
2528 (when (< (widget-get child :entry-from) (widget-get widget :from))
2529 (set-marker (widget-get widget :from)
2530 (widget-get child :entry-from)))
2531 (if (eq (car children) before)
2532 (widget-put widget :children (cons child children))
2533 (while (not (eq (car (cdr children)) before))
2534 (setq children (cdr children)))
2535 (setcdr children (cons child (cdr children)))))))
2536 (widget-setup)
2537 (widget-apply widget :notify widget))
2539 (defun widget-editable-list-delete-at (widget child)
2540 ;; Delete child from list of children.
2541 (save-excursion
2542 (let ((buttons (copy-sequence (widget-get widget :buttons)))
2543 button
2544 (inhibit-read-only t)
2545 before-change-functions
2546 after-change-functions)
2547 (while buttons
2548 (setq button (car buttons)
2549 buttons (cdr buttons))
2550 (when (eq (widget-get button :widget) child)
2551 (widget-put widget
2552 :buttons (delq button (widget-get widget :buttons)))
2553 (widget-delete button))))
2554 (let ((entry-from (widget-get child :entry-from))
2555 (entry-to (widget-get child :entry-to))
2556 (inhibit-read-only t)
2557 before-change-functions
2558 after-change-functions)
2559 (widget-delete child)
2560 (delete-region entry-from entry-to)
2561 (set-marker entry-from nil)
2562 (set-marker entry-to nil))
2563 (widget-put widget :children (delq child (widget-get widget :children))))
2564 (widget-setup)
2565 (widget-apply widget :notify widget))
2567 (defun widget-editable-list-entry-create (widget value conv)
2568 ;; Create a new entry to the list.
2569 (let ((type (nth 0 (widget-get widget :args)))
2570 ;;; (widget-push-button-gui widget-editable-list-gui)
2571 child delete insert)
2572 (widget-specify-insert
2573 (save-excursion
2574 (and (widget-get widget :indent)
2575 (insert-char ?\ (widget-get widget :indent)))
2576 (insert (widget-get widget :entry-format)))
2577 ;; Parse % escapes in format.
2578 (while (re-search-forward "%\\(.\\)" nil t)
2579 (let ((escape (char-after (match-beginning 1))))
2580 (delete-backward-char 2)
2581 (cond ((eq escape ?%)
2582 (insert ?%))
2583 ((eq escape ?i)
2584 (setq insert (apply 'widget-create-child-and-convert
2585 widget 'insert-button
2586 (widget-get widget :insert-button-args))))
2587 ((eq escape ?d)
2588 (setq delete (apply 'widget-create-child-and-convert
2589 widget 'delete-button
2590 (widget-get widget :delete-button-args))))
2591 ((eq escape ?v)
2592 (if conv
2593 (setq child (widget-create-child-value
2594 widget type value))
2595 (setq child (widget-create-child-value
2596 widget type
2597 (widget-apply type :value-to-external
2598 (widget-default-get type))))))
2600 (error "Unknown escape `%c'" escape)))))
2601 (widget-put widget
2602 :buttons (cons delete
2603 (cons insert
2604 (widget-get widget :buttons))))
2605 (let ((entry-from (point-min-marker))
2606 (entry-to (point-max-marker)))
2607 (set-marker-insertion-type entry-from t)
2608 (set-marker-insertion-type entry-to nil)
2609 (widget-put child :entry-from entry-from)
2610 (widget-put child :entry-to entry-to)))
2611 (widget-put insert :widget child)
2612 (widget-put delete :widget child)
2613 child))
2615 ;;; The `group' Widget.
2617 (define-widget 'group 'default
2618 "A widget which groups other widgets inside."
2619 :convert-widget 'widget-types-convert-widget
2620 :format "%v"
2621 :value-create 'widget-group-value-create
2622 :value-delete 'widget-children-value-delete
2623 :value-get 'widget-editable-list-value-get
2624 :default-get 'widget-group-default-get
2625 :validate 'widget-children-validate
2626 :match 'widget-group-match
2627 :match-inline 'widget-group-match-inline)
2629 (defun widget-group-value-create (widget)
2630 ;; Create each component.
2631 (let ((args (widget-get widget :args))
2632 (value (widget-get widget :value))
2633 arg answer children)
2634 (while args
2635 (setq arg (car args)
2636 args (cdr args)
2637 answer (widget-match-inline arg value)
2638 value (cdr answer))
2639 (and (eq (preceding-char) ?\n)
2640 (widget-get widget :indent)
2641 (insert-char ?\ (widget-get widget :indent)))
2642 (push (cond ((null answer)
2643 (widget-create-child widget arg))
2644 ((widget-get arg :inline)
2645 (widget-create-child-value widget arg (car answer)))
2647 (widget-create-child-value widget arg (car (car answer)))))
2648 children))
2649 (widget-put widget :children (nreverse children))))
2651 (defun widget-group-default-get (widget)
2652 ;; Get the default of the components.
2653 (mapcar 'widget-default-get (widget-get widget :args)))
2655 (defun widget-group-match (widget values)
2656 ;; Match if the components match.
2657 (and (listp values)
2658 (let ((match (widget-group-match-inline widget values)))
2659 (and match (null (cdr match))))))
2661 (defun widget-group-match-inline (widget vals)
2662 ;; Match if the components match.
2663 (let ((args (widget-get widget :args))
2664 argument answer found)
2665 (while args
2666 (setq argument (car args)
2667 args (cdr args)
2668 answer (widget-match-inline argument vals))
2669 (if answer
2670 (setq vals (cdr answer)
2671 found (append found (car answer)))
2672 (setq vals nil
2673 args nil)))
2674 (if answer
2675 (cons found vals))))
2677 ;;; The `visibility' Widget.
2679 (define-widget 'visibility 'item
2680 "An indicator and manipulator for hidden items."
2681 :format "%[%v%]"
2682 :button-prefix ""
2683 :button-suffix ""
2684 :on "Hide"
2685 :off "Show"
2686 :value-create 'widget-visibility-value-create
2687 :action 'widget-toggle-action
2688 :match (lambda (widget value) t))
2690 (defun widget-visibility-value-create (widget)
2691 ;; Insert text representing the `on' and `off' states.
2692 (let ((on (widget-get widget :on))
2693 (off (widget-get widget :off)))
2694 (if on
2695 (setq on (concat widget-push-button-prefix
2697 widget-push-button-suffix))
2698 (setq on ""))
2699 (if off
2700 (setq off (concat widget-push-button-prefix
2702 widget-push-button-suffix))
2703 (setq off ""))
2704 (if (widget-value widget)
2705 (widget-image-insert widget on "down" "down-pushed")
2706 (widget-image-insert widget off "right" "right-pushed"))))
2708 ;;; The `documentation-link' Widget.
2710 ;; This is a helper widget for `documentation-string'.
2712 (define-widget 'documentation-link 'link
2713 "Link type used in documentation strings."
2714 :tab-order -1
2715 :help-echo "Describe this symbol"
2716 :action 'widget-documentation-link-action)
2718 (defun widget-documentation-link-action (widget &optional event)
2719 "Display documentation for WIDGET's value. Ignore optional argument EVENT."
2720 (let* ((string (widget-get widget :value))
2721 (symbol (intern string)))
2722 (if (and (fboundp symbol) (boundp symbol))
2723 ;; If there are two doc strings, give the user a way to pick one.
2724 (apropos (concat "\\`" (regexp-quote string) "\\'"))
2725 (if (fboundp symbol)
2726 (describe-function symbol)
2727 (describe-variable symbol)))))
2729 (defcustom widget-documentation-links t
2730 "Add hyperlinks to documentation strings when non-nil."
2731 :type 'boolean
2732 :group 'widget-documentation)
2734 (defcustom widget-documentation-link-regexp "`\\([^\n`' ]+\\)'"
2735 "Regexp for matching potential links in documentation strings.
2736 The first group should be the link itself."
2737 :type 'regexp
2738 :group 'widget-documentation)
2740 (defcustom widget-documentation-link-p 'intern-soft
2741 "Predicate used to test if a string is useful as a link.
2742 The value should be a function. The function will be called one
2743 argument, a string, and should return non-nil if there should be a
2744 link for that string."
2745 :type 'function
2746 :options '(widget-documentation-link-p)
2747 :group 'widget-documentation)
2749 (defcustom widget-documentation-link-type 'documentation-link
2750 "Widget type used for links in documentation strings."
2751 :type 'symbol
2752 :group 'widget-documentation)
2754 (defun widget-documentation-link-add (widget from to)
2755 (widget-specify-doc widget from to)
2756 (when widget-documentation-links
2757 (let ((regexp widget-documentation-link-regexp)
2758 (buttons (widget-get widget :buttons))
2759 (widget-mouse-face (default-value 'widget-mouse-face))
2760 (widget-button-face widget-documentation-face)
2761 (widget-button-pressed-face widget-documentation-face))
2762 (save-excursion
2763 (goto-char from)
2764 (while (re-search-forward regexp to t)
2765 (let ((name (match-string 1))
2766 (begin (match-beginning 1))
2767 (end (match-end 1)))
2768 (when (funcall widget-documentation-link-p name)
2769 (push (widget-convert-button widget-documentation-link-type
2770 begin end :value name)
2771 buttons)))))
2772 (widget-put widget :buttons buttons)))
2773 (let ((indent (widget-get widget :indent)))
2774 (when (and indent (not (zerop indent)))
2775 (save-excursion
2776 (save-restriction
2777 (narrow-to-region from to)
2778 (goto-char (point-min))
2779 (while (search-forward "\n" nil t)
2780 (insert-char ?\ indent)))))))
2782 ;;; The `documentation-string' Widget.
2784 (define-widget 'documentation-string 'item
2785 "A documentation string."
2786 :format "%v"
2787 :action 'widget-documentation-string-action
2788 :value-delete 'widget-children-value-delete
2789 :value-create 'widget-documentation-string-value-create)
2791 (defun widget-documentation-string-value-create (widget)
2792 ;; Insert documentation string.
2793 (let ((doc (widget-value widget))
2794 (indent (widget-get widget :indent))
2795 (shown (widget-get (widget-get widget :parent) :documentation-shown))
2796 (start (point)))
2797 (if (string-match "\n" doc)
2798 (let ((before (substring doc 0 (match-beginning 0)))
2799 (after (substring doc (match-beginning 0)))
2800 button)
2801 (insert before ?\ )
2802 (widget-documentation-link-add widget start (point))
2803 (setq button
2804 (widget-create-child-and-convert
2805 widget 'visibility
2806 :help-echo "Show or hide rest of the documentation."
2807 :off "More"
2808 :always-active t
2809 :action 'widget-parent-action
2810 shown))
2811 (when shown
2812 (setq start (point))
2813 (when (and indent (not (zerop indent)))
2814 (insert-char ?\ indent))
2815 (insert after)
2816 (widget-documentation-link-add widget start (point)))
2817 (widget-put widget :buttons (list button)))
2818 (insert doc)
2819 (widget-documentation-link-add widget start (point))))
2820 (insert ?\n))
2822 (defun widget-documentation-string-action (widget &rest ignore)
2823 ;; Toggle documentation.
2824 (let ((parent (widget-get widget :parent)))
2825 (widget-put parent :documentation-shown
2826 (not (widget-get parent :documentation-shown))))
2827 ;; Redraw.
2828 (widget-value-set widget (widget-value widget)))
2830 ;;; The Sexp Widgets.
2832 (define-widget 'const 'item
2833 "An immutable sexp."
2834 :prompt-value 'widget-const-prompt-value
2835 :format "%t\n%d")
2837 (defun widget-const-prompt-value (widget prompt value unbound)
2838 ;; Return the value of the const.
2839 (widget-value widget))
2841 (define-widget 'function-item 'const
2842 "An immutable function name."
2843 :format "%v\n%h"
2844 :documentation-property (lambda (symbol)
2845 (condition-case nil
2846 (documentation symbol t)
2847 (error nil))))
2849 (define-widget 'variable-item 'const
2850 "An immutable variable name."
2851 :format "%v\n%h"
2852 :documentation-property 'variable-documentation)
2854 (define-widget 'other 'sexp
2855 "Matches any value, but doesn't let the user edit the value.
2856 This is useful as last item in a `choice' widget.
2857 You should use this widget type with a default value,
2858 as in (other DEFAULT) or (other :tag \"NAME\" DEFAULT).
2859 If the user selects this alternative, that specifies DEFAULT
2860 as the value."
2861 :tag "Other"
2862 :format "%t%n"
2863 :value 'other)
2865 (defvar widget-string-prompt-value-history nil
2866 "History of input to `widget-string-prompt-value'.")
2868 (define-widget 'string 'editable-field
2869 "A string"
2870 :tag "String"
2871 :format "%{%t%}: %v"
2872 :complete-function 'ispell-complete-word
2873 :prompt-history 'widget-string-prompt-value-history)
2875 (define-widget 'regexp 'string
2876 "A regular expression."
2877 :match 'widget-regexp-match
2878 :validate 'widget-regexp-validate
2879 ;; Doesn't work well with terminating newline.
2880 ;; :value-face 'widget-single-line-field-face
2881 :tag "Regexp")
2883 (defun widget-regexp-match (widget value)
2884 ;; Match valid regexps.
2885 (and (stringp value)
2886 (condition-case nil
2887 (prog1 t
2888 (string-match value ""))
2889 (error nil))))
2891 (defun widget-regexp-validate (widget)
2892 "Check that the value of WIDGET is a valid regexp."
2893 (condition-case data
2894 (prog1 nil
2895 (string-match (widget-value widget) ""))
2896 (error (widget-put widget :error (error-message-string data))
2897 widget)))
2899 (define-widget 'file 'string
2900 "A file widget.
2901 It will read a file name from the minibuffer when invoked."
2902 :complete-function 'widget-file-complete
2903 :prompt-value 'widget-file-prompt-value
2904 :format "%{%t%}: %v"
2905 ;; Doesn't work well with terminating newline.
2906 ;; :value-face 'widget-single-line-field-face
2907 :tag "File")
2909 (defun widget-file-complete ()
2910 "Perform completion on file name preceding point."
2911 (interactive)
2912 (let* ((end (point))
2913 (beg (save-excursion
2914 (skip-chars-backward "^ ")
2915 (point)))
2916 (pattern (buffer-substring beg end))
2917 (name-part (file-name-nondirectory pattern))
2918 (directory (file-name-directory pattern))
2919 (completion (file-name-completion name-part directory)))
2920 (cond ((eq completion t))
2921 ((null completion)
2922 (message "Can't find completion for \"%s\"" pattern)
2923 (ding))
2924 ((not (string= name-part completion))
2925 (delete-region beg end)
2926 (insert (expand-file-name completion directory)))
2928 (message "Making completion list...")
2929 (with-output-to-temp-buffer "*Completions*"
2930 (display-completion-list
2931 (sort (file-name-all-completions name-part directory)
2932 'string<)))
2933 (message "Making completion list...%s" "done")))))
2935 (defun widget-file-prompt-value (widget prompt value unbound)
2936 ;; Read file from minibuffer.
2937 (abbreviate-file-name
2938 (if unbound
2939 (read-file-name prompt)
2940 (let ((prompt2 (format "%s (default %s) " prompt value))
2941 (dir (file-name-directory value))
2942 (file (file-name-nondirectory value))
2943 (must-match (widget-get widget :must-match)))
2944 (read-file-name prompt2 dir nil must-match file)))))
2946 ;;;(defun widget-file-action (widget &optional event)
2947 ;;; ;; Read a file name from the minibuffer.
2948 ;;; (let* ((value (widget-value widget))
2949 ;;; (dir (file-name-directory value))
2950 ;;; (file (file-name-nondirectory value))
2951 ;;; (menu-tag (widget-apply widget :menu-tag-get))
2952 ;;; (must-match (widget-get widget :must-match))
2953 ;;; (answer (read-file-name (concat menu-tag ": (default `" value "') ")
2954 ;;; dir nil must-match file)))
2955 ;;; (widget-value-set widget (abbreviate-file-name answer))
2956 ;;; (widget-setup)
2957 ;;; (widget-apply widget :notify widget event)))
2959 ;; Fixme: use file-name-as-directory.
2960 (define-widget 'directory 'file
2961 "A directory widget.
2962 It will read a directory name from the minibuffer when invoked."
2963 :tag "Directory")
2965 (defvar widget-symbol-prompt-value-history nil
2966 "History of input to `widget-symbol-prompt-value'.")
2968 (define-widget 'symbol 'editable-field
2969 "A Lisp symbol."
2970 :value nil
2971 :tag "Symbol"
2972 :format "%{%t%}: %v"
2973 :match (lambda (widget value) (symbolp value))
2974 :complete-function 'lisp-complete-symbol
2975 :prompt-internal 'widget-symbol-prompt-internal
2976 :prompt-match 'symbolp
2977 :prompt-history 'widget-symbol-prompt-value-history
2978 :value-to-internal (lambda (widget value)
2979 (if (symbolp value)
2980 (symbol-name value)
2981 value))
2982 :value-to-external (lambda (widget value)
2983 (if (stringp value)
2984 (intern value)
2985 value)))
2987 (defun widget-symbol-prompt-internal (widget prompt initial history)
2988 ;; Read file from minibuffer.
2989 (let ((answer (completing-read prompt obarray
2990 (widget-get widget :prompt-match)
2991 nil initial history)))
2992 (if (and (stringp answer)
2993 (not (zerop (length answer))))
2994 answer
2995 (error "No value"))))
2997 (defvar widget-function-prompt-value-history nil
2998 "History of input to `widget-function-prompt-value'.")
3000 (define-widget 'function 'sexp
3001 "A Lisp function."
3002 :complete-function (lambda ()
3003 (interactive)
3004 (lisp-complete-symbol 'fboundp))
3005 :prompt-value 'widget-field-prompt-value
3006 :prompt-internal 'widget-symbol-prompt-internal
3007 :prompt-match 'fboundp
3008 :prompt-history 'widget-function-prompt-value-history
3009 :action 'widget-field-action
3010 :match-alternatives '(functionp)
3011 :validate (lambda (widget)
3012 (unless (functionp (widget-value widget))
3013 (widget-put widget :error (format "Invalid function: %S"
3014 (widget-value widget)))
3015 widget))
3016 :value 'ignore
3017 :tag "Function")
3019 (defvar widget-variable-prompt-value-history nil
3020 "History of input to `widget-variable-prompt-value'.")
3022 (define-widget 'variable 'symbol
3023 "A Lisp variable."
3024 :prompt-match 'boundp
3025 :prompt-history 'widget-variable-prompt-value-history
3026 :complete-function (lambda ()
3027 (interactive)
3028 (lisp-complete-symbol 'boundp))
3029 :tag "Variable")
3031 (defvar widget-coding-system-prompt-value-history nil
3032 "History of input to `widget-coding-system-prompt-value'.")
3034 (define-widget 'coding-system 'symbol
3035 "A MULE coding-system."
3036 :format "%{%t%}: %v"
3037 :tag "Coding system"
3038 :base-only nil
3039 :prompt-history 'widget-coding-system-prompt-value-history
3040 :prompt-value 'widget-coding-system-prompt-value
3041 :action 'widget-coding-system-action
3042 :complete-function (lambda ()
3043 (interactive)
3044 (lisp-complete-symbol 'coding-system-p))
3045 :validate (lambda (widget)
3046 (unless (coding-system-p (widget-value widget))
3047 (widget-put widget :error (format "Invalid coding system: %S"
3048 (widget-value widget)))
3049 widget))
3050 :value 'undecided
3051 :prompt-match 'coding-system-p)
3053 (defun widget-coding-system-prompt-value (widget prompt value unbound)
3054 "Read coding-system from minibuffer."
3055 (if (widget-get widget :base-only)
3056 (intern
3057 (completing-read (format "%s (default %s) " prompt value)
3058 (mapcar #'list (coding-system-list t)) nil nil nil
3059 coding-system-history))
3060 (read-coding-system (format "%s (default %s) " prompt value) value)))
3062 (defun widget-coding-system-action (widget &optional event)
3063 (let ((answer
3064 (widget-coding-system-prompt-value
3065 widget
3066 (widget-apply widget :menu-tag-get)
3067 (widget-value widget)
3068 t)))
3069 (widget-value-set widget answer)
3070 (widget-apply widget :notify widget event)
3071 (widget-setup)))
3073 (define-widget 'sexp 'editable-field
3074 "An arbitrary Lisp expression."
3075 :tag "Lisp expression"
3076 :format "%{%t%}: %v"
3077 :value nil
3078 :validate 'widget-sexp-validate
3079 :match (lambda (widget value) t)
3080 :value-to-internal 'widget-sexp-value-to-internal
3081 :value-to-external (lambda (widget value) (read value))
3082 :prompt-history 'widget-sexp-prompt-value-history
3083 :prompt-value 'widget-sexp-prompt-value)
3085 (defun widget-sexp-value-to-internal (widget value)
3086 ;; Use pp for printer representation.
3087 (let ((pp (if (symbolp value)
3088 (prin1-to-string value)
3089 (pp-to-string value))))
3090 (while (string-match "\n\\'" pp)
3091 (setq pp (substring pp 0 -1)))
3092 (if (or (string-match "\n\\'" pp)
3093 (> (length pp) 40))
3094 (concat "\n" pp)
3095 pp)))
3097 (defun widget-sexp-validate (widget)
3098 ;; Valid if we can read the string and there is no junk left after it.
3099 (with-temp-buffer
3100 (insert (widget-apply widget :value-get))
3101 (goto-char (point-min))
3102 (let (err)
3103 (condition-case data
3104 (progn
3105 ;; Avoid a confusing end-of-file error.
3106 (skip-syntax-forward "\\s-")
3107 (if (eobp)
3108 (setq err "Empty sexp -- use `nil'?")
3109 (unless (widget-apply widget :match (read (current-buffer)))
3110 (setq err (widget-get widget :type-error))))
3111 (if (and (not (eobp))
3112 (not err))
3113 (setq err (format "Junk at end of expression: %s"
3114 (buffer-substring (point)
3115 (point-max))))))
3116 (end-of-file ; Avoid confusing error message.
3117 (setq err "Unbalanced sexp"))
3118 (error (setq err (error-message-string data))))
3119 (if (not err)
3121 (widget-put widget :error err)
3122 widget))))
3124 (defvar widget-sexp-prompt-value-history nil
3125 "History of input to `widget-sexp-prompt-value'.")
3127 (defun widget-sexp-prompt-value (widget prompt value unbound)
3128 ;; Read an arbitrary sexp.
3129 (let ((found (read-string prompt
3130 (if unbound nil (cons (prin1-to-string value) 0))
3131 (widget-get widget :prompt-history))))
3132 (let ((answer (read-from-string found)))
3133 (unless (= (cdr answer) (length found))
3134 (error "Junk at end of expression: %s"
3135 (substring found (cdr answer))))
3136 (car answer))))
3138 (define-widget 'restricted-sexp 'sexp
3139 "A Lisp expression restricted to values that match.
3140 To use this type, you must define :match or :match-alternatives."
3141 :type-error "The specified value is not valid"
3142 :match 'widget-restricted-sexp-match
3143 :value-to-internal (lambda (widget value)
3144 (if (widget-apply widget :match value)
3145 (prin1-to-string value)
3146 value)))
3148 (defun widget-restricted-sexp-match (widget value)
3149 (let ((alternatives (widget-get widget :match-alternatives))
3150 matched)
3151 (while (and alternatives (not matched))
3152 (if (cond ((functionp (car alternatives))
3153 (funcall (car alternatives) value))
3154 ((and (consp (car alternatives))
3155 (eq (car (car alternatives)) 'quote))
3156 (eq value (nth 1 (car alternatives)))))
3157 (setq matched t))
3158 (setq alternatives (cdr alternatives)))
3159 matched))
3161 (define-widget 'integer 'restricted-sexp
3162 "An integer."
3163 :tag "Integer"
3164 :value 0
3165 :type-error "This field should contain an integer"
3166 :match-alternatives '(integerp))
3168 (define-widget 'number 'restricted-sexp
3169 "A floating point number."
3170 :tag "Number"
3171 :value 0.0
3172 :type-error "This field should contain a number"
3173 :match-alternatives '(numberp))
3175 (define-widget 'character 'editable-field
3176 "A character."
3177 :tag "Character"
3178 :value 0
3179 :size 1
3180 :format "%{%t%}: %v\n"
3181 :valid-regexp "\\`.\\'"
3182 :error "This field should contain a single character"
3183 :value-to-internal (lambda (widget value)
3184 (if (stringp value)
3185 value
3186 (char-to-string value)))
3187 :value-to-external (lambda (widget value)
3188 (if (stringp value)
3189 (aref value 0)
3190 value))
3191 :match (lambda (widget value)
3192 (char-valid-p value)))
3194 (define-widget 'list 'group
3195 "A Lisp list."
3196 :tag "List"
3197 :format "%{%t%}:\n%v")
3199 (define-widget 'vector 'group
3200 "A Lisp vector."
3201 :tag "Vector"
3202 :format "%{%t%}:\n%v"
3203 :match 'widget-vector-match
3204 :value-to-internal (lambda (widget value) (append value nil))
3205 :value-to-external (lambda (widget value) (apply 'vector value)))
3207 (defun widget-vector-match (widget value)
3208 (and (vectorp value)
3209 (widget-group-match widget
3210 (widget-apply widget :value-to-internal value))))
3212 (define-widget 'cons 'group
3213 "A cons-cell."
3214 :tag "Cons-cell"
3215 :format "%{%t%}:\n%v"
3216 :match 'widget-cons-match
3217 :value-to-internal (lambda (widget value)
3218 (list (car value) (cdr value)))
3219 :value-to-external (lambda (widget value)
3220 (cons (nth 0 value) (nth 1 value))))
3222 (defun widget-cons-match (widget value)
3223 (and (consp value)
3224 (widget-group-match widget
3225 (widget-apply widget :value-to-internal value))))
3227 ;;; The `plist' Widget.
3229 ;; Property lists.
3231 (define-widget 'plist 'list
3232 "A property list."
3233 :key-type '(symbol :tag "Key")
3234 :value-type '(sexp :tag "Value")
3235 :convert-widget 'widget-plist-convert-widget
3236 :tag "Plist")
3238 (defvar widget-plist-value-type) ;Dynamic variable
3240 (defun widget-plist-convert-widget (widget)
3241 ;; Handle `:options'.
3242 (let* ((options (widget-get widget :options))
3243 (widget-plist-value-type (widget-get widget :value-type))
3244 (other `(editable-list :inline t
3245 (group :inline t
3246 ,(widget-get widget :key-type)
3247 ,widget-plist-value-type)))
3248 (args (if options
3249 (list `(checklist :inline t
3250 :greedy t
3251 ,@(mapcar 'widget-plist-convert-option
3252 options))
3253 other)
3254 (list other))))
3255 (widget-put widget :args args)
3256 widget))
3258 (defun widget-plist-convert-option (option)
3259 ;; Convert a single plist option.
3260 (let (key-type value-type)
3261 (if (listp option)
3262 (let ((key (nth 0 option)))
3263 (setq value-type (nth 1 option))
3264 (if (listp key)
3265 (setq key-type key)
3266 (setq key-type `(const ,key))))
3267 (setq key-type `(const ,option)
3268 value-type widget-plist-value-type))
3269 `(group :format "Key: %v" :inline t ,key-type ,value-type)))
3272 ;;; The `alist' Widget.
3274 ;; Association lists.
3276 (define-widget 'alist 'list
3277 "An association list."
3278 :key-type '(sexp :tag "Key")
3279 :value-type '(sexp :tag "Value")
3280 :convert-widget 'widget-alist-convert-widget
3281 :tag "Alist")
3283 (defvar widget-alist-value-type) ;Dynamic variable
3285 (defun widget-alist-convert-widget (widget)
3286 ;; Handle `:options'.
3287 (let* ((options (widget-get widget :options))
3288 (widget-alist-value-type (widget-get widget :value-type))
3289 (other `(editable-list :inline t
3290 (cons :format "%v"
3291 ,(widget-get widget :key-type)
3292 ,widget-alist-value-type)))
3293 (args (if options
3294 (list `(checklist :inline t
3295 :greedy t
3296 ,@(mapcar 'widget-alist-convert-option
3297 options))
3298 other)
3299 (list other))))
3300 (widget-put widget :args args)
3301 widget))
3303 (defun widget-alist-convert-option (option)
3304 ;; Convert a single alist option.
3305 (let (key-type value-type)
3306 (if (listp option)
3307 (let ((key (nth 0 option)))
3308 (setq value-type (nth 1 option))
3309 (if (listp key)
3310 (setq key-type key)
3311 (setq key-type `(const ,key))))
3312 (setq key-type `(const ,option)
3313 value-type widget-alist-value-type))
3314 `(cons :format "Key: %v" ,key-type ,value-type)))
3316 (define-widget 'choice 'menu-choice
3317 "A union of several sexp types."
3318 :tag "Choice"
3319 :format "%{%t%}: %[Value Menu%] %v"
3320 :button-prefix 'widget-push-button-prefix
3321 :button-suffix 'widget-push-button-suffix
3322 :prompt-value 'widget-choice-prompt-value)
3324 (defun widget-choice-prompt-value (widget prompt value unbound)
3325 "Make a choice."
3326 (let ((args (widget-get widget :args))
3327 (completion-ignore-case (widget-get widget :case-fold))
3328 current choices old)
3329 ;; Find the first arg that matches VALUE.
3330 (let ((look args))
3331 (while look
3332 (if (widget-apply (car look) :match value)
3333 (setq old (car look)
3334 look nil)
3335 (setq look (cdr look)))))
3336 ;; Find new choice.
3337 (setq current
3338 (cond ((= (length args) 0)
3339 nil)
3340 ((= (length args) 1)
3341 (nth 0 args))
3342 ((and (= (length args) 2)
3343 (memq old args))
3344 (if (eq old (nth 0 args))
3345 (nth 1 args)
3346 (nth 0 args)))
3348 (while args
3349 (setq current (car args)
3350 args (cdr args))
3351 (setq choices
3352 (cons (cons (widget-apply current :menu-tag-get)
3353 current)
3354 choices)))
3355 (let ((val (completing-read prompt choices nil t)))
3356 (if (stringp val)
3357 (let ((try (try-completion val choices)))
3358 (when (stringp try)
3359 (setq val try))
3360 (cdr (assoc val choices)))
3361 nil)))))
3362 (if current
3363 (widget-prompt-value current prompt nil t)
3364 value)))
3366 (define-widget 'radio 'radio-button-choice
3367 "A union of several sexp types."
3368 :tag "Choice"
3369 :format "%{%t%}:\n%v"
3370 :prompt-value 'widget-choice-prompt-value)
3372 (define-widget 'repeat 'editable-list
3373 "A variable length homogeneous list."
3374 :tag "Repeat"
3375 :format "%{%t%}:\n%v%i\n")
3377 (define-widget 'set 'checklist
3378 "A list of members from a fixed set."
3379 :tag "Set"
3380 :format "%{%t%}:\n%v")
3382 (define-widget 'boolean 'toggle
3383 "To be nil or non-nil, that is the question."
3384 :tag "Boolean"
3385 :prompt-value 'widget-boolean-prompt-value
3386 :button-prefix 'widget-push-button-prefix
3387 :button-suffix 'widget-push-button-suffix
3388 :format "%{%t%}: %[Toggle%] %v\n"
3389 :on "on (non-nil)"
3390 :off "off (nil)")
3392 (defun widget-boolean-prompt-value (widget prompt value unbound)
3393 ;; Toggle a boolean.
3394 (y-or-n-p prompt))
3396 ;;; The `color' Widget.
3398 ;; Fixme: match
3399 (define-widget 'color 'editable-field
3400 "Choose a color name (with sample)."
3401 :format "%t: %v (%{sample%})\n"
3402 :size 10
3403 :tag "Color"
3404 :value "black"
3405 :complete 'widget-color-complete
3406 :sample-face-get 'widget-color-sample-face-get
3407 :notify 'widget-color-notify
3408 :action 'widget-color-action)
3410 (defun widget-color-complete (widget)
3411 "Complete the color in WIDGET."
3412 (require 'facemenu) ; for facemenu-color-alist
3413 (let* ((prefix (buffer-substring-no-properties (widget-field-start widget)
3414 (point)))
3415 (list (or facemenu-color-alist
3416 (mapcar 'list (defined-colors))))
3417 (completion (try-completion prefix list)))
3418 (cond ((eq completion t)
3419 (message "Exact match."))
3420 ((null completion)
3421 (error "Can't find completion for \"%s\"" prefix))
3422 ((not (string-equal prefix completion))
3423 (insert-and-inherit (substring completion (length prefix))))
3425 (message "Making completion list...")
3426 (with-output-to-temp-buffer "*Completions*"
3427 (display-completion-list (all-completions prefix list nil)))
3428 (message "Making completion list...done")))))
3430 (defun widget-color-sample-face-get (widget)
3431 (let* ((value (condition-case nil
3432 (widget-value widget)
3433 (error (widget-get widget :value)))))
3434 (if (color-defined-p value)
3435 (list (cons 'foreground-color value))
3436 'default)))
3438 (defun widget-color-action (widget &optional event)
3439 "Prompt for a color."
3440 (let* ((tag (widget-apply widget :menu-tag-get))
3441 (prompt (concat tag ": "))
3442 (value (widget-value widget))
3443 (start (widget-field-start widget))
3444 (pos (cond ((< (point) start)
3446 ((> (point) (+ start (length value)))
3447 (length value))
3449 (- (point) start))))
3450 (answer (facemenu-read-color prompt)))
3451 (unless (zerop (length answer))
3452 (widget-value-set widget answer)
3453 (widget-setup)
3454 (widget-apply widget :notify widget event))))
3456 (defun widget-color-notify (widget child &optional event)
3457 "Update the sample, and notofy the parent."
3458 (overlay-put (widget-get widget :sample-overlay)
3459 'face (widget-apply widget :sample-face-get))
3460 (widget-default-notify widget child event))
3462 ;;; The Help Echo
3464 (defun widget-echo-help (pos)
3465 "Display help-echo text for widget at POS."
3466 (let* ((widget (widget-at pos))
3467 (help-echo (and widget (widget-get widget :help-echo))))
3468 (if (functionp help-echo)
3469 (setq help-echo (funcall help-echo widget)))
3470 (if (stringp help-echo)
3471 (message "%s" help-echo))))
3473 ;;; The End:
3475 (provide 'wid-edit)
3477 ;;; wid-edit.el ends here