*** empty log message ***
[bpt/emacs.git] / lisp / wid-edit.el
CommitLineData
bfa6c260 1;;; wid-edit.el --- Functions for creating and using widgets -*-byte-compile-dynamic: t;-*-
d543e20b 2;;
0e520006 3;; Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
d543e20b
PA
4;;
5;; Author: Per Abrahamsen <abraham@dina.kvl.dk>
a89a9d34 6;; Maintainer: FSF
d543e20b 7;; Keywords: extensions
d543e20b 8
ef3f635f
RS
9;; This file is part of GNU Emacs.
10
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.
15
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.
20
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.
25
7fdbdbea
DL
26;;; Wishlist items (from widget.texi):
27
28;; * The `menu-choice' tag should be prettier, something like the
29;; abbreviated menus in Open Look.
30
31;; * Finish `:tab-order'.
32
33;; * Make indentation work with glyphs and proportional fonts.
34
35;; * Add commands to show overview of object and class hierarchies to
36;; the browser.
37
38;; * Find a way to disable mouse highlight for inactive widgets.
39
40;; * Find a way to make glyphs look inactive.
41
42;; * Add `key-binding' widget.
43
44;; * Add `widget' widget for editing widget specifications.
45
46;; * Find clean way to implement variable length list. See
47;; `TeX-printer-list' for an explanation.
48
49;; * `C-h' in `widget-prompt-value' should give type specific help.
50
51;; * A mailto widget. [This should work OK as a url-link if with
52;; browse-url-browser-function' set up appropriately.]
53
d543e20b
PA
54;;; Commentary:
55;;
56;; See `widget.el'.
57
58;;; Code:
59
d543e20b 60;;; Compatibility.
bfa6c260 61
4084d128
RS
62(defun widget-event-point (event)
63 "Character position of the end of event if that exists, or nil."
17030183 64 (posn-point (event-end event)))
4084d128 65
bfa6c260
DL
66(autoload 'pp-to-string "pp")
67(autoload 'Info-goto-node "info")
d543e20b 68
bfa6c260
DL
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)))))
d543e20b
PA
75
76;;; Customization.
77
78(defgroup widgets nil
79 "Customization support for the Widget Library."
80 :link '(custom-manual "(widget)Top")
62f44662 81 :link '(emacs-library-link :tag "Lisp File" "widget.el")
d543e20b
PA
82 :prefix "widget-"
83 :group 'extensions
d543e20b
PA
84 :group 'hypermedia)
85
8697863a
PA
86(defgroup widget-documentation nil
87 "Options controling the display of documentation strings."
88 :group 'widgets)
89
6aaedd12
PA
90(defgroup widget-faces nil
91 "Faces used by the widget library."
92 :group 'widgets
93 :group 'faces)
94
0b296dac 95(defvar widget-documentation-face 'widget-documentation-face
a89a9d34 96 "Face used for documentation strings in widgets.
0b296dac
RS
97This exists as a variable so it can be set locally in certain buffers.")
98
8697863a
PA
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)
109
2f477381 110(defvar widget-button-face 'widget-button-face
a89a9d34 111 "Face used for buttons in widgets.
2f477381
RS
112This exists as a variable so it can be set locally in certain buffers.")
113
e31c1fd5 114(defface widget-button-face '((t (:weight bold)))
d543e20b 115 "Face used for widget buttons."
6aaedd12 116 :group 'widget-faces)
d543e20b
PA
117
118(defcustom widget-mouse-face 'highlight
119 "Face used for widget buttons when the mouse is above them."
120 :type 'face
6aaedd12 121 :group 'widget-faces)
d543e20b 122
2670cf80
EZ
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))
7e784293
MB
127 :background "yellow3"
128 :foreground "black")
2670cf80 129 (((class grayscale color)
d543e20b 130 (background light))
7e784293 131 :background "gray85")
d543e20b
PA
132 (((class grayscale color)
133 (background dark))
7e784293 134 :background "dim gray")
bfa6c260 135 (t
7e784293 136 :slant italic))
d543e20b 137 "Face used for editable fields."
6aaedd12 138 :group 'widget-faces)
d543e20b 139
2670cf80 140(defface widget-single-line-field-face '((((type tty))
7e784293
MB
141 :background "green3"
142 :foreground "black")
2670cf80 143 (((class grayscale color)
c953515e 144 (background light))
7e784293 145 :background "gray85")
c953515e
PA
146 (((class grayscale color)
147 (background dark))
7e784293 148 :background "dim gray")
bfa6c260 149 (t
7e784293 150 :slant italic))
c953515e
PA
151 "Face used for editable fields spanning only a single line."
152 :group 'widget-faces)
153
33eae9c0
RS
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.")
161
162;;;(when (fboundp 'set-face-display-table)
163;;; (set-face-display-table 'widget-single-line-field-face
164;;; widget-single-line-display-table))
c953515e 165
d543e20b
PA
166;;; Utility functions.
167;;
168;; These are not really widget specific.
169
d543e20b 170(defun widget-princ-to-string (object)
bfa6c260
DL
171 "Return string representation of OBJECT, any Lisp object.
172No quoting characters are used; no delimiters are printed around
173the contents of strings."
174 (with-output-to-string
175 (princ object)))
d543e20b
PA
176
177(defun widget-clear-undo ()
178 "Clear all undo information."
179 (buffer-disable-undo (current-buffer))
180 (buffer-enable-undo))
181
a3c88c59
PA
182(defcustom widget-menu-max-size 40
183 "Largest number of items allowed in a popup-menu.
184Larger menus are read through the minibuffer."
185 :group 'widgets
186 :type 'integer)
187
703c3a11
KH
188(defcustom widget-menu-max-shortcuts 40
189 "Largest number of items for which it works to choose one with a character.
190For a larger number of items, the minibuffer is used."
191 :group 'widgets
192 :type 'integer)
193
194(defcustom widget-menu-minibuffer-flag nil
0b296dac
RS
195 "*Control how to ask for a choice from the keyboard.
196Non-nil means use the minibuffer;
197nil means read a single character."
198 :group 'widgets
199 :type 'boolean)
200
d543e20b
PA
201(defun widget-choose (title items &optional event)
202 "Choose an item from a list.
203
204First argument TITLE is the name of the list.
6d528fc5
PA
205Second argument ITEMS is an list whose members are either
206 (NAME . VALUE), to indicate selectable items, or just strings to
207 indicate unselectable items.
d543e20b
PA
208Optional third argument EVENT is an input event.
209
210The user is asked to choose between each NAME from the items alist,
211and the VALUE of the chosen element will be returned. If EVENT is a
212mouse event, and the number of elements in items is less than
213`widget-menu-max-size', a popup menu will be used, otherwise the
214minibuffer."
215 (cond ((and (< (length items) widget-menu-max-size)
fb55ff10 216 event (display-popup-menus-p))
7fdbdbea 217 ;; Mouse click.
d543e20b
PA
218 (x-popup-menu event
219 (list title (cons "" items))))
703c3a11
KH
220 ((or widget-menu-minibuffer-flag
221 (> (length items) widget-menu-max-shortcuts))
0b296dac 222 ;; Read the choice of name from the minibuffer.
e5dfabb4 223 (setq items (widget-remove-if 'stringp items))
d543e20b
PA
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))
bfa6c260 229 (cdr (assoc val items))))))
0b296dac
RS
230 (t
231 ;; Construct a menu of the choices
232 ;; and then use it for prompting for a single character.
7fdbdbea
DL
233 (let* ((overriding-terminal-local-map (make-sparse-keymap))
234 (next-digit ?0)
235 map choice some-choice-enabled value)
0b296dac
RS
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)))
d4b8422f
RS
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))
cfc198e5
RS
249 (define-key map (vector next-digit) function)
250 (setq some-choice-enabled t)))
d4b8422f
RS
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"))
cfc198e5
RS
255 (or some-choice-enabled
256 (error "None of the choices is currently meaningful"))
d4b8422f 257 (define-key map [?\C-g] 'keyboard-quit)
0b296dac 258 (define-key map [t] 'keyboard-quit)
4d52438e
KH
259 (define-key map [?\M-\C-v] 'scroll-other-window)
260 (define-key map [?\M--] 'negative-argument)
0b296dac 261 (setcdr map (nreverse (cdr map)))
0b296dac
RS
262 ;; Read a char with the menu, and return the result
263 ;; that corresponds to it.
d4b8422f 264 (save-window-excursion
4d52438e 265 (let ((buf (get-buffer " widget-choose")))
d970106b 266 (fit-window-to-buffer (display-buffer buf))
4d52438e
KH
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))
bfa6c260
DL
276 (setq value
277 (lookup-key overriding-terminal-local-map keys t)
4d52438e
KH
278 char (string-to-char (substring keys 1)))
279 (cond ((eq value 'scroll-other-window)
bfa6c260
DL
280 (let ((minibuffer-scroll-window
281 (get-buffer-window buf)))
4d52438e 282 (if (> 0 arg)
bfa6c260
DL
283 (scroll-other-window-down
284 (window-height minibuffer-scroll-window))
4d52438e
KH
285 (scroll-other-window))
286 (setq arg 1)))
287 ((eq value 'negative-argument)
288 (setq arg -1))
289 (t
290 (setq arg 1)))))))
0b296dac
RS
291 (when (eq value 'keyboard-quit)
292 (error "Canceled"))
293 value))))
d543e20b 294
e5dfabb4
RS
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)))
302
d543e20b
PA
303;;; Widget text specifications.
304;;
bfa6c260 305;; These functions are for specifying text properties.
d543e20b 306
bfa6c260 307(defvar widget-field-add-space t
8697863a 308 "Non-nil means add extra space at the end of editable text fields.
8697863a 309If you don't add the space, it will become impossible to edit a zero
bfa6c260 310size field.")
8697863a 311
bfa6c260 312(defvar widget-field-use-before-change t
da5ec617 313 "Non-nil means use `before-change-functions' to track editable fields.
bfa6c260 314This enables the use of undo, but doesn't work on Emacs 19.34 and earlier.
da5ec617 315Using before hooks also means that the :notify function can't know the
bfa6c260 316new value.")
da5ec617 317
d543e20b 318(defun widget-specify-field (widget from to)
0a3a0b56 319 "Specify editable button for WIDGET between FROM and TO."
0ce5b5d5
PA
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)
62f44662
PA
325 (cond ((null (widget-get widget :size))
326 (forward-char 1))
327 (widget-field-add-space
328 (insert-and-inherit " ")))
0ce5b5d5 329 (setq to (point)))
a850ac03
MB
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))))
233d5cde
DL
335 (if (functionp help-echo)
336 (setq help-echo 'widget-mouse-help))
a850ac03
MB
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)
5701edda
DL
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)
a850ac03
MB
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)
5701edda 356 (overlay-put overlay 'local-map keymap)
a850ac03
MB
357 (overlay-put overlay 'face face)
358 (overlay-put overlay 'help-echo help-echo)))
e9367b9c
RS
359 (widget-specify-secret widget))
360
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)))
bfa6c260 368 (when size
e9367b9c
RS
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))))))))
d543e20b 378
d543e20b 379(defun widget-specify-button (widget from to)
0a3a0b56 380 "Specify button for WIDGET between FROM and TO."
233d5cde
DL
381 (let ((overlay (make-overlay from to nil t nil))
382 (help-echo (widget-get widget :help-echo)))
0a3a0b56 383 (widget-put widget :button-overlay overlay)
233d5cde
DL
384 (if (functionp help-echo)
385 (setq help-echo 'widget-mouse-help))
0a3a0b56 386 (overlay-put overlay 'button widget)
7fdbdbea 387 (overlay-put overlay 'keymap (widget-get widget :keymap))
bfa6c260
DL
388 ;; We want to avoid the face with image buttons.
389 (unless (widget-get widget :suppress-face)
7fdbdbea 390 (overlay-put overlay 'face (widget-apply widget :button-face-get))
bfa6c260 391 (overlay-put overlay 'mouse-face widget-mouse-face))
233d5cde
DL
392 (overlay-put overlay 'help-echo help-echo)))
393
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))))
d543e20b 402
d543e20b 403(defun widget-specify-sample (widget from to)
bfa6c260 404 "Specify sample for WIDGET between FROM and TO."
7fdbdbea
DL
405 (let ((overlay (make-overlay from to nil t nil)))
406 (overlay-put overlay 'face (widget-apply widget :sample-face-get))
0f648ca2
PA
407 (widget-put widget :sample-overlay overlay)))
408
d543e20b 409(defun widget-specify-doc (widget from to)
bfa6c260 410 "Specify documentation for WIDGET between FROM and TO."
4ee1cf9f
PA
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)))
d543e20b
PA
415
416(defmacro widget-specify-insert (&rest form)
bfa6c260
DL
417 "Execute FORM without inheriting any text properties."
418 `(save-restriction
419 (let ((inhibit-read-only t)
7fdbdbea
DL
420 (inhibit-modification-hooks t)
421 result)
bfa6c260
DL
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)))
d543e20b
PA
430
431(defface widget-inactive-face '((((class grayscale color)
432 (background dark))
433 (:foreground "light gray"))
434 (((class grayscale color)
435 (background light))
83427907 436 (:foreground "dim gray"))
bfa6c260 437 (t
e31c1fd5 438 (:slant italic)))
d543e20b 439 "Face used for inactive widgets."
6aaedd12 440 :group 'widget-faces)
d543e20b
PA
441
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)
6aaedd12
PA
447 ;; This is disabled, as it makes the mouse cursor change shape.
448 ;; (overlay-put overlay 'mouse-face 'widget-inactive-face)
6d528fc5
PA
449 (overlay-put overlay 'evaporate t)
450 (overlay-put overlay 'priority 100)
a89a9d34 451 (overlay-put overlay 'modification-hooks '(widget-overlay-inactive))
d543e20b
PA
452 (widget-put widget :inactive overlay))))
453
454(defun widget-overlay-inactive (&rest junk)
455 "Ignoring the arguments, signal an error."
456 (unless inhibit-read-only
a89a9d34 457 (error "The widget here is not active")))
d543e20b
PA
458
459
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))))
466
467;;; Widget Properties.
468
469(defsubst widget-type (widget)
470 "Return the type of WIDGET, a symbol."
471 (car widget))
472
0e520006
PA
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)
bbc562cc
PA
479 (symbolp (car widget))
480 (get (car widget) 'widget-type))))
0e520006 481
944c91b6
PA
482(defun widget-get-indirect (widget property)
483 "In WIDGET, get the value of PROPERTY.
bfa6c260 484If the value is a symbol, return its binding.
944c91b6
PA
485Otherwise, just return the value."
486 (let ((value (widget-get widget property)))
487 (if (symbolp value)
488 (symbol-value value)
489 value)))
490
d543e20b
PA
491(defun widget-member (widget property)
492 "Non-nil iff there is a definition in WIDGET for PROPERTY."
ff83e968 493 (cond ((plist-member (cdr widget) property)
d543e20b
PA
494 t)
495 ((car widget)
496 (widget-member (get (car widget) 'widget-type) property))
497 (t nil)))
498
d543e20b
PA
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)))
503
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)))
509
783824f5 510(defun widget-default-get (widget)
416cd771 511 "Extract the default value of WIDGET."
783824f5
RS
512 (or (widget-get widget :value)
513 (widget-apply widget :default-get)))
514
d543e20b 515(defun widget-match-inline (widget vals)
a89a9d34 516 "In WIDGET, match the start of VALS."
d543e20b
PA
517 (cond ((widget-get widget :inline)
518 (widget-apply widget :match-inline vals))
b2aeee30 519 ((and (listp vals)
d543e20b
PA
520 (widget-apply widget :match (car vals)))
521 (cons (list (car vals)) (cdr vals)))
522 (t nil)))
523
524(defun widget-apply-action (widget &optional event)
525 "Apply :action in WIDGET in response to EVENT."
8697863a
PA
526 (if (widget-apply widget :active)
527 (widget-apply widget :action event)
528 (error "Attempt to perform action on inactive widget")))
6d528fc5 529
a3c88c59
PA
530;;; Helper functions.
531;;
532;; These are widget specific.
533
534;;;###autoload
535(defun widget-prompt-value (widget prompt &optional value unbound)
536 "Prompt for a value matching WIDGET, using PROMPT.
537The 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)
bfa6c260 544 (error "Value does not match %S type" (car widget)))
a3c88c59
PA
545 answer))
546
547(defun widget-get-sibling (widget)
548 "Get the item WIDGET is assumed to toggle.
549This is only meaningful for radio buttons or checkboxes in a list."
7fdbdbea 550 (let* ((children (widget-get (widget-get widget :parent) :children))
a3c88c59
PA
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)))
559
6aaedd12
PA
560(defun widget-map-buttons (function &optional buffer maparg)
561 "Map FUNCTION over the buttons in BUFFER.
562FUNCTION is called with the arguments WIDGET and MAPARG.
563
564If FUNCTION returns non-nil, the walk is cancelled.
565
566The arguments MAPARG, and BUFFER default to nil and (current-buffer),
567respectively."
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)))))
579
bfa6c260 580;;; Images.
d543e20b 581
bfa6c260
DL
582(defcustom widget-image-directory (file-name-as-directory
583 (expand-file-name "custom" data-directory))
584 "Where widget button images are located.
d543e20b 585If this variable is nil, widget will try to locate the directory
25ac13b5 586automatically."
d543e20b
PA
587 :group 'widgets
588 :type 'directory)
589
bfa6c260
DL
590(defcustom widget-image-enable t
591 "If non nil, use image buttons in widgets when available."
592 :version "21.1"
d543e20b
PA
593 :group 'widgets
594 :type 'boolean)
595
25ac13b5
PA
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")))))
605
bfa6c260
DL
606(defun widget-image-find (image)
607 "Create a graphical button from IMAGE.
608IMAGE should either already be an image, or be a file name sans
3acab5ef 609extension (xpm, xbm, gif, jpg, or png) located in
bfa6c260
DL
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.
3acab5ef 613 nil)
bfa6c260
DL
614 ((and (consp image)
615 (eq 'image (car image)))
616 ;; Already an image spec. Use it.
3acab5ef 617 image)
25ac13b5
PA
618 ((stringp image)
619 ;; A string. Look it up in relevant directories.
bfa6c260 620 (let* ((load-path (cons widget-image-directory load-path))
bfa6c260
DL
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)))
d543e20b 627 (t
25ac13b5 628 ;; Oh well.
3acab5ef
PA
629 nil)))
630
bfa6c260
DL
631(defvar widget-button-pressed-face 'widget-button-pressed-face
632 "Face used for pressed buttons in widgets.
633This exists as a variable so it can be set locally in certain
634buffers.")
635
636(defun widget-image-insert (widget tag image &optional down inactive)
3acab5ef 637 "In WIDGET, insert the text TAG or, if supported, IMAGE.
bfa6c260
DL
638IMAGE should either be an image or an image file name sans extension
639\(xpm, xbm, gif, jpg, or png) located in `widget-image-directory'.
640
641Optional arguments DOWN and INACTIVE are used instead of IMAGE when the
642button 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)))
d543e20b 650
25ac13b5
PA
651;;; Buttons.
652
653(defgroup widget-button nil
654 "The look of various kinds of buttons."
655 :group 'widgets)
656
657(defcustom widget-button-prefix ""
658 "String used as prefix for buttons."
659 :type 'string
3acab5ef 660 :group 'widget-button)
25ac13b5
PA
661
662(defcustom widget-button-suffix ""
663 "String used as suffix for buttons."
664 :type 'string
3acab5ef 665 :group 'widget-button)
25ac13b5 666
d543e20b
PA
667;;; Creating Widgets.
668
669;;;###autoload
670(defun widget-create (type &rest args)
bfa6c260 671 "Create widget of TYPE.
d543e20b
PA
672The optional ARGS are additional keyword arguments."
673 (let ((widget (apply 'widget-convert type args)))
674 (widget-apply widget :create)
675 widget))
676
677(defun widget-create-child-and-convert (parent type &rest args)
678 "As part of the widget PARENT, create a child widget TYPE.
679The 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))
688
689(defun widget-create-child (parent type)
690 "Create widget of TYPE."
ef3f635f 691 (let ((widget (copy-sequence type)))
d543e20b
PA
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))
699
700(defun widget-create-child-value (parent type value)
701 "Create widget of TYPE with value VALUE."
ef3f635f 702 (let ((widget (copy-sequence type)))
d543e20b
PA
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))
711
712;;;###autoload
713(defun widget-delete (widget)
714 "Delete WIDGET."
715 (widget-apply widget :delete))
716
717(defun widget-convert (type &rest args)
bfa6c260 718 "Convert TYPE to a widget without inserting it in the buffer.
d543e20b
PA
719The optional ARGS are additional keyword arguments."
720 ;; Don't touch the type.
bfa6c260 721 (let* ((widget (if (symbolp type)
d543e20b 722 (list type)
ef3f635f 723 (copy-sequence type)))
d543e20b
PA
724 (current widget)
725 (keys args))
726 ;; First set the :args keyword.
727 (while (cdr current) ;Look in the type.
7fdbdbea
DL
728 (if (keywordp (car (cdr current)))
729 (setq current (cdr (cdr current)))
730 (setcdr current (list :args (cdr current)))
731 (setq current nil)))
d543e20b 732 (while args ;Look in the args.
7fdbdbea
DL
733 (if (keywordp (nth 0 args))
734 (setq args (nthcdr 2 args))
735 (widget-put widget :args args)
736 (setq args nil)))
d543e20b
PA
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.
bfa6c260 745 (while keys
d543e20b 746 (let ((next (nth 0 keys)))
bfa6c260
DL
747 (if (keywordp next)
748 (progn
d543e20b
PA
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)
7fdbdbea
DL
754 (widget-put widget
755 :value (widget-apply widget
756 :value-to-internal
757 (widget-get widget :value))))
d543e20b
PA
758 ;; Return the newly create widget.
759 widget))
760
0e520006 761;;;###autoload
d543e20b 762(defun widget-insert (&rest args)
7fdbdbea 763 "Call `insert' with ARGS even if surrounding text is read only."
d543e20b 764 (let ((inhibit-read-only t)
7fdbdbea 765 (inhibit-modification-hooks t))
4ee1cf9f 766 (apply 'insert args)))
d543e20b 767
8697863a
PA
768(defun widget-convert-text (type from to
769 &optional button-from button-to
770 &rest args)
6aaedd12 771 "Return a widget of type TYPE with endpoint FROM TO.
8697863a 772Optional ARGS are extra keyword arguments for TYPE.
6aaedd12
PA
773and TO will be used as the widgets end points. If optional arguments
774BUTTON-FROM and BUTTON-TO are given, these will be used as the widgets
8697863a
PA
775button end points.
776Optional ARGS are extra keyword arguments for TYPE."
777 (let ((widget (apply 'widget-convert type :delete 'widget-leave-text args))
6aaedd12 778 (from (copy-marker from))
2ff864e0 779 (to (copy-marker to)))
6aaedd12
PA
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))
787
8697863a 788(defun widget-convert-button (type from to &rest args)
6aaedd12 789 "Return a widget of type TYPE with endpoint FROM TO.
8697863a 790Optional ARGS are extra keyword arguments for TYPE.
6aaedd12
PA
791No text will be inserted to the buffer, instead the text between FROM
792and TO will be used as the widgets end points, as well as the widgets
793button end points."
8697863a
PA
794 (apply 'widget-convert-text type from to from to args))
795
796(defun widget-leave-text (widget)
797 "Remove markers and overlays from WIDGET and its children."
7fdbdbea 798 (let ((button (widget-get widget :button-overlay))
0f648ca2 799 (sample (widget-get widget :sample-overlay))
4ee1cf9f 800 (doc (widget-get widget :doc-overlay))
7fdbdbea
DL
801 (field (widget-get widget :field-overlay)))
802 (set-marker (widget-get widget :from) nil)
803 (set-marker (widget-get widget :to) nil)
208920be
PA
804 (when button
805 (delete-overlay button))
0f648ca2
PA
806 (when sample
807 (delete-overlay sample))
4ee1cf9f
PA
808 (when doc
809 (delete-overlay doc))
208920be
PA
810 (when field
811 (delete-overlay field))
7fdbdbea 812 (mapc 'widget-leave-text (widget-get widget :children))))
6aaedd12 813
d543e20b
PA
814;;; Keymap and Commands.
815
0e520006 816;;;###autoload
bfa6c260
DL
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)
d543e20b
PA
825 "Keymap containing useful binding for buffers containing widgets.
826Recommended as a parent keymap for modes using widgets.")
827
d543e20b 828(defvar widget-global-map global-map
f4b020f6 829 "Keymap used for events a widget does not handle itself.")
d543e20b
PA
830(make-variable-buffer-local 'widget-global-map)
831
bfa6c260
DL
832(defvar widget-field-keymap
833 (let ((map (copy-keymap widget-keymap)))
bfa6c260
DL
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)
8b9a0f45 837 ;; Since the widget code uses a `field' property to identify fields,
0697c662 838 ;; ordinary beginning-of-line does the right thing.
8b9a0f45 839 ;; (define-key map "\C-a" 'widget-beginning-of-line)
0697c662 840 (define-key map "\C-e" 'widget-end-of-line)
bfa6c260 841 map)
d543e20b
PA
842 "Keymap used inside an editable field.")
843
bfa6c260
DL
844(defvar widget-text-keymap
845 (let ((map (copy-keymap widget-keymap)))
8b9a0f45 846 ;; Since the widget code uses a `field' property to identify fields,
0697c662 847 ;; ordinary beginning-of-line does the right thing.
8b9a0f45 848 ;; (define-key map "\C-a" 'widget-beginning-of-line)
0697c662 849 (define-key map "\C-e" 'widget-end-of-line)
bfa6c260 850 map)
d543e20b
PA
851 "Keymap used inside a text field.")
852
d543e20b 853(defun widget-field-activate (pos &optional event)
e2896b22 854 "Invoke the editable field at point."
d543e20b 855 (interactive "@d")
a850ac03 856 (let ((field (widget-field-at pos)))
d543e20b
PA
857 (if field
858 (widget-apply-action field event)
859 (call-interactively
860 (lookup-key widget-global-map (this-command-keys))))))
861
bfa6c260 862(defface widget-button-pressed-face
a3c88c59
PA
863 '((((class color))
864 (:foreground "red"))
865 (t
e31c1fd5 866 (:weight bold :underline t)))
a3c88c59 867 "Face used for pressed buttons."
6aaedd12 868 :group 'widget-faces)
a3c88c59 869
d543e20b 870(defun widget-button-click (event)
bfa6c260 871 "Invoke the button that the mouse is pointing at."
bc3420db 872 (interactive "e")
bfa6c260 873 (if (widget-event-point event)
eaaf76b6 874 (let* ((pos (widget-event-point event))
bc3420db
RS
875 (start (event-start event))
876 (button (get-char-property
877 pos 'button (and (windowp (posn-window start))
878 (window-buffer (posn-window start))))))
eaaf76b6
GM
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.
136b27c5 883 (save-selected-window
bc3420db 884 (select-window (posn-window (event-start event)))
5710730c 885 (save-excursion
bc3420db 886 (goto-char (posn-point (event-start event)))
5710730c
GM
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
eaaf76b6
GM
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.
5710730c
GM
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))))
eaaf76b6
GM
918
919 ;; When mouse is released over the button, run
920 ;; its action function.
5710730c
GM
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))))
926
bc3420db
RS
927 (unless (pos-visible-in-window-p (widget-event-point event))
928 (mouse-set-point event)
929 (beginning-of-line)
930 (recenter))
931 )
eaaf76b6
GM
932
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)
bfa6c260
DL
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)))))
bfa6c260 955 (message "You clicked somewhere weird.")))
a3c88c59 956
d543e20b 957(defun widget-button-press (pos &optional event)
25ac13b5 958 "Invoke button at POS."
d543e20b 959 (interactive "@d")
0a3a0b56 960 (let ((button (get-char-property pos 'button)))
d543e20b
PA
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))))))
966
8697863a
PA
967(defun widget-tabable-at (&optional pos)
968 "Return the tabable widget at POS, or nil.
969POS defaults to the value of (point)."
a850ac03 970 (let ((widget (widget-at pos)))
8697863a
PA
971 (if widget
972 (let ((order (widget-get widget :tab-order)))
973 (if order
974 (if (>= order 0)
bfa6c260
DL
975 widget)
976 widget)))))
8697863a 977
35194e3f 978(defvar widget-use-overlay-change t
4ee1cf9f 979 "If non-nil, use overlay change functions to tab around in the buffer.
35194e3f 980This is much faster, but doesn't work reliably on Emacs 19.34.")
4ee1cf9f 981
d543e20b
PA
982(defun widget-move (arg)
983 "Move point to the ARG next field or button.
984ARG may be negative to move backward."
0a3a0b56 985 (or (bobp) (> arg 0) (backward-char))
0ce5b5d5 986 (let ((pos (point))
0a3a0b56 987 (number arg)
8697863a 988 (old (widget-tabable-at))
0a3a0b56
PA
989 new)
990 ;; Forward.
991 (while (> arg 0)
4ee1cf9f
PA
992 (cond ((eobp)
993 (goto-char (point-min)))
994 (widget-use-overlay-change
995 (goto-char (next-overlay-change (point))))
996 (t
997 (forward-char 1)))
0a3a0b56
PA
998 (and (eq pos (point))
999 (eq arg number)
1000 (error "No buttons or fields found"))
8697863a 1001 (let ((new (widget-tabable-at)))
0a3a0b56
PA
1002 (when new
1003 (unless (eq new old)
8697863a 1004 (setq arg (1- arg))
0a3a0b56
PA
1005 (setq old new)))))
1006 ;; Backward.
1007 (while (< arg 0)
4ee1cf9f
PA
1008 (cond ((bobp)
1009 (goto-char (point-max)))
1010 (widget-use-overlay-change
1011 (goto-char (previous-overlay-change (point))))
1012 (t
1013 (backward-char 1)))
0a3a0b56
PA
1014 (and (eq pos (point))
1015 (eq arg number)
1016 (error "No buttons or fields found"))
8697863a 1017 (let ((new (widget-tabable-at)))
0a3a0b56
PA
1018 (when new
1019 (unless (eq new old)
8697863a
PA
1020 (setq arg (1+ arg))))))
1021 (let ((new (widget-tabable-at)))
1022 (while (eq (widget-tabable-at) new)
1023 (backward-char)))
0ce5b5d5
PA
1024 (forward-char))
1025 (widget-echo-help (point))
1026 (run-hooks 'widget-move-hook))
d543e20b
PA
1027
1028(defun widget-forward (arg)
1029 "Move point to the next field or button.
1030With optional ARG, move across that many fields."
1031 (interactive "p")
1032 (run-hooks 'widget-forward-hook)
1033 (widget-move arg))
1034
1035(defun widget-backward (arg)
1036 "Move point to the previous field or button.
1037With optional ARG, move across that many fields."
1038 (interactive "p")
1039 (run-hooks 'widget-backward-hook)
1040 (widget-move (- arg)))
1041
8b9a0f45 1042;; Since the widget code uses a `field' property to identify fields,
0697c662 1043;; ordinary beginning-of-line does the right thing.
8b9a0f45 1044(defalias 'widget-beginning-of-line 'beginning-of-line)
0697c662
MB
1045
1046(defun widget-end-of-line ()
1047 "Go to end of field or end of line, whichever is first.
1048Trailing spaces at the end of padded fields are not considered part of
1049the 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))))))
d543e20b
PA
1059
1060(defun widget-kill-line ()
1061 "Kill to end of field or end of line, whichever is first."
1062 (interactive)
0ce5b5d5 1063 (let* ((field (widget-field-find (point)))
0ce5b5d5 1064 (end (and field (widget-field-end field))))
7fdbdbea 1065 (if (and field (> (line-beginning-position 2) end))
0ce5b5d5 1066 (kill-region (point) end)
d543e20b
PA
1067 (call-interactively 'kill-line))))
1068
0ce5b5d5
PA
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)
1074
1075(defun widget-complete ()
1076 "Complete content of editable field from point.
1077When 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"))))
1083
d543e20b
PA
1084;;; Setting up the buffer.
1085
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)
1089
1090(defvar widget-field-list nil)
1091;; List of all editable fields in the buffer.
1092(make-variable-buffer-local 'widget-field-list)
1093
a850ac03
MB
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)))
1098
0e520006 1099;;;###autoload
d543e20b
PA
1100(defun widget-setup ()
1101 "Setup current buffer so editing string widgets works."
1102 (let ((inhibit-read-only t)
7fdbdbea 1103 (inhibit-modification-hooks t)
d543e20b
PA
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))
0a3a0b56
PA
1109 (let ((from (car (widget-get field :field-overlay)))
1110 (to (cdr (widget-get field :field-overlay))))
bfa6c260 1111 (widget-specify-field field
6aaedd12 1112 (marker-position from) (marker-position to))
0a3a0b56
PA
1113 (set-marker from nil)
1114 (set-marker to nil))))
d543e20b 1115 (widget-clear-undo)
4ee1cf9f 1116 (widget-add-change))
d543e20b
PA
1117
1118(defvar widget-field-last nil)
1119;; Last field containing point.
1120(make-variable-buffer-local 'widget-field-last)
1121
1122(defvar widget-field-was nil)
1123;; The widget data before the change.
1124(make-variable-buffer-local 'widget-field-was)
1125
a850ac03
MB
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)
1130 nil
1131 field)))
1132
0a3a0b56
PA
1133(defun widget-field-buffer (widget)
1134 "Return the start of WIDGET's editing field."
6aaedd12 1135 (let ((overlay (widget-get widget :field-overlay)))
ec725166
MB
1136 (cond ((overlayp overlay)
1137 (overlay-buffer overlay))
1138 ((consp overlay)
1139 (marker-buffer (car overlay))))))
0a3a0b56
PA
1140
1141(defun widget-field-start (widget)
1142 "Return the start of WIDGET's editing field."
6aaedd12 1143 (let ((overlay (widget-get widget :field-overlay)))
ec725166
MB
1144 (if (overlayp overlay)
1145 (overlay-start overlay)
1146 (car overlay))))
0a3a0b56
PA
1147
1148(defun widget-field-end (widget)
1149 "Return the end of WIDGET's editing field."
6aaedd12 1150 (let ((overlay (widget-get widget :field-overlay)))
a850ac03
MB
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.
ec725166
MB
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))))
0a3a0b56 1164
d543e20b 1165(defun widget-field-find (pos)
0a3a0b56
PA
1166 "Return the field at POS.
1167Unlike (get-char-property POS 'field) this, works with empty fields too."
d543e20b
PA
1168 (let ((fields widget-field-list)
1169 field found)
1170 (while fields
1171 (setq field (car fields)
1172 fields (cdr fields))
7fdbdbea
DL
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)))
d543e20b
PA
1178 found))
1179
4ee1cf9f 1180(defun widget-before-change (from to)
944c91b6
PA
1181 ;; This is how, for example, a variable changes its state to `modified'.
1182 ;; when it is being edited.
540a8bd2
RS
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)
808bcfd2
KH
1188 (signal 'text-read-only
1189 '("Change should be restricted to a single field")))
540a8bd2
RS
1190 ((null from-field)
1191 (add-hook 'post-command-hook 'widget-add-change nil t)
808bcfd2
KH
1192 (signal 'text-read-only
1193 '("Attempt to change text outside editable field")))
540a8bd2 1194 (widget-field-use-before-change
7fdbdbea 1195 (widget-apply from-field :notify from-field))))))
4ee1cf9f
PA
1196
1197(defun widget-add-change ()
4ee1cf9f 1198 (remove-hook 'post-command-hook 'widget-add-change t)
4ee1cf9f 1199 (add-hook 'before-change-functions 'widget-before-change nil t)
4ee1cf9f 1200 (add-hook 'after-change-functions 'widget-after-change nil t))
c6753d66 1201
d543e20b 1202(defun widget-after-change (from to old)
bfa6c260 1203 "Adjust field size and text properties."
7fdbdbea
DL
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))))
d543e20b
PA
1233
1234;;; Widget Functions
1235;;
bfa6c260 1236;; These functions are used in the definition of multiple widgets.
d543e20b 1237
a3c88c59
PA
1238(defun widget-parent-action (widget &optional event)
1239 "Tell :parent of WIDGET to handle the :action.
1240Optional EVENT is the event that triggered the action."
1241 (widget-apply (widget-get widget :parent) :action event))
1242
d543e20b
PA
1243(defun widget-children-value-delete (widget)
1244 "Delete all :children and :buttons in WIDGET."
bfa6c260 1245 (mapc 'widget-delete (widget-get widget :children))
d543e20b 1246 (widget-put widget :children nil)
bfa6c260 1247 (mapc 'widget-delete (widget-get widget :buttons))
d543e20b
PA
1248 (widget-put widget :buttons nil))
1249
a3c88c59
PA
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))
1259
aeba6f9a
DL
1260;; Made defsubst to speed up face editor creation.
1261(defsubst widget-types-convert-widget (widget)
d543e20b
PA
1262 "Convert :args as widget types in WIDGET."
1263 (widget-put widget :args (mapcar 'widget-convert (widget-get widget :args)))
1264 widget)
1265
a3c88c59
PA
1266(defun widget-value-convert-widget (widget)
1267 "Initialize :value from :args in WIDGET."
1268 (let ((args (widget-get widget :args)))
bfa6c260 1269 (when args
a3c88c59
PA
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)
1276
1277(defun widget-value-value-get (widget)
1278 "Return the :value property of WIDGET."
1279 (widget-get widget :value))
1280
d543e20b
PA
1281;;; The `default' Widget.
1282
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)
25ac13b5
PA
1287 :button-prefix 'widget-button-prefix
1288 :button-suffix 'widget-button-suffix
bfa6c260 1289 :complete 'widget-default-complete
d543e20b
PA
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
783824f5 1299 :default-get 'widget-default-default-get
d543e20b 1300 :menu-tag-get 'widget-default-menu-tag-get
99f01612 1301 :validate #'ignore
d543e20b
PA
1302 :active 'widget-default-active
1303 :activate 'widget-specify-active
1304 :deactivate 'widget-default-deactivate
99f01612 1305 :mouse-down-action #'ignore
d543e20b 1306 :action 'widget-default-action
6d528fc5
PA
1307 :notify 'widget-default-notify
1308 :prompt-value 'widget-default-prompt-value)
d543e20b 1309
0ce5b5d5
PA
1310(defun widget-default-complete (widget)
1311 "Call the value of the :complete-function property of WIDGET.
1312If that does not exists, call the value of `widget-complete-field'."
7fdbdbea
DL
1313 (call-interactively (or (widget-get widget :complete-function)
1314 widget-complete-field)))
0ce5b5d5 1315
d543e20b
PA
1316(defun widget-default-create (widget)
1317 "Create WIDGET at point in the current buffer."
1318 (widget-specify-insert
1319 (let ((from (point))
d543e20b
PA
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)
7fdbdbea
DL
1328 (let ((escape (char-after (match-beginning 1))))
1329 (delete-backward-char 2)
d543e20b 1330 (cond ((eq escape ?%)
bfa6c260 1331 (insert ?%))
d543e20b 1332 ((eq escape ?\[)
25ac13b5 1333 (setq button-begin (point))
944c91b6 1334 (insert (widget-get-indirect widget :button-prefix)))
d543e20b 1335 ((eq escape ?\])
944c91b6 1336 (insert (widget-get-indirect widget :button-suffix))
d543e20b
PA
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)
bfa6c260 1344 (insert ?\n)
d543e20b
PA
1345 (insert-char ? (widget-get widget :indent))))
1346 ((eq escape ?t)
bfa6c260 1347 (let ((image (widget-get widget :tag-glyph))
25ac13b5 1348 (tag (widget-get widget :tag)))
bfa6c260
DL
1349 (cond (image
1350 (widget-image-insert widget (or tag "image") image))
25ac13b5
PA
1351 (tag
1352 (insert tag))
1353 (t
bfa6c260
DL
1354 (princ (widget-get widget :value)
1355 (current-buffer))))))
d543e20b 1356 ((eq escape ?d)
25ac13b5
PA
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))
bfa6c260 1363 (insert ?\n)
25ac13b5 1364 (setq doc-end (point)))))
d543e20b
PA
1365 ((eq escape ?v)
1366 (if (and button-begin (not button-end))
1367 (widget-apply widget :value-create)
1368 (setq value-pos (point))))
bfa6c260 1369 (t
d543e20b
PA
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)))
7fdbdbea
DL
1381 (let ((from (point-min-marker))
1382 (to (point-max-marker)))
d543e20b
PA
1383 (set-marker-insertion-type from t)
1384 (set-marker-insertion-type to nil)
1385 (widget-put widget :from from)
6d528fc5
PA
1386 (widget-put widget :to to)))
1387 (widget-clear-undo))
d543e20b
PA
1388
1389(defun widget-default-format-handler (widget escape)
1390 ;; We recognize the %h escape by default.
6aaedd12 1391 (let* ((buttons (widget-get widget :buttons)))
d543e20b 1392 (cond ((eq escape ?h)
6aaedd12
PA
1393 (let* ((doc-property (widget-get widget :documentation-property))
1394 (doc-try (cond ((widget-get widget :doc))
820d4181
DL
1395 ((functionp doc-property)
1396 (funcall doc-property
1397 (widget-get widget :value)))
6aaedd12 1398 ((symbolp doc-property)
bfa6c260 1399 (documentation-property
6aaedd12 1400 (widget-get widget :value)
820d4181 1401 doc-property))))
6aaedd12
PA
1402 (doc-text (and (stringp doc-try)
1403 (> (length doc-try) 1)
8697863a
PA
1404 doc-try))
1405 (doc-indent (widget-get widget :documentation-indent)))
6aaedd12
PA
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
8697863a
PA
1418 :indent (cond ((numberp doc-indent )
1419 doc-indent)
1420 ((null doc-indent)
1421 nil)
1422 (t 0))
6aaedd12
PA
1423 doc-text)
1424 buttons))))
bfa6c260 1425 (t
d543e20b
PA
1426 (error "Unknown escape `%c'" escape)))
1427 (widget-put widget :buttons buttons)))
1428
1429(defun widget-default-button-face-get (widget)
1430 ;; Use :button-face or widget-button-face
0b296dac
RS
1431 (or (widget-get widget :button-face)
1432 (let ((parent (widget-get widget :parent)))
1433 (if parent
1434 (widget-apply parent :button-face-get)
2f477381 1435 widget-button-face))))
d543e20b
PA
1436
1437(defun widget-default-sample-face-get (widget)
1438 ;; Use :sample-face.
1439 (widget-get widget :sample-face))
1440
1441(defun widget-default-delete (widget)
bfa6c260 1442 "Remove widget from the buffer."
d543e20b
PA
1443 (let ((from (widget-get widget :from))
1444 (to (widget-get widget :to))
9097aeb7
PA
1445 (inactive-overlay (widget-get widget :inactive))
1446 (button-overlay (widget-get widget :button-overlay))
0f648ca2 1447 (sample-overlay (widget-get widget :sample-overlay))
4ee1cf9f 1448 (doc-overlay (widget-get widget :doc-overlay))
7fdbdbea 1449 (inhibit-modification-hooks t)
0a3a0b56 1450 (inhibit-read-only t))
d543e20b 1451 (widget-apply widget :value-delete)
9097aeb7
PA
1452 (when inactive-overlay
1453 (delete-overlay inactive-overlay))
1454 (when button-overlay
1455 (delete-overlay button-overlay))
0f648ca2
PA
1456 (when sample-overlay
1457 (delete-overlay sample-overlay))
4ee1cf9f
PA
1458 (when doc-overlay
1459 (delete-overlay doc-overlay))
d543e20b
PA
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)
6d528fc5
PA
1464 (set-marker to nil))
1465 (widget-clear-undo))
d543e20b
PA
1466
1467(defun widget-default-value-set (widget value)
bfa6c260 1468 "Recreate widget with new value."
d0acc4ea
RS
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,
bfa6c260 1477 ;; so that markers on either side of the value automatically
d0acc4ea
RS
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))))))))
d543e20b
PA
1488
1489(defun widget-default-value-inline (widget)
bfa6c260 1490 "Wrap value in a list unless it is inline."
d543e20b
PA
1491 (if (widget-get widget :inline)
1492 (widget-value widget)
1493 (list (widget-value widget))))
1494
783824f5 1495(defun widget-default-default-get (widget)
bfa6c260 1496 "Get `:value'."
783824f5
RS
1497 (widget-get widget :value))
1498
d543e20b 1499(defun widget-default-menu-tag-get (widget)
bfa6c260 1500 "Use tag or value for menus."
d543e20b
PA
1501 (or (widget-get widget :menu-tag)
1502 (widget-get widget :tag)
1503 (widget-princ-to-string (widget-get widget :value))))
1504
1505(defun widget-default-active (widget)
1506 "Return t iff this widget active (user modifiable)."
0640c647
GM
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))))))
d543e20b
PA
1512
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)))
1518
1519(defun widget-default-action (widget &optional event)
bfa6c260 1520 "Notify the parent when a widget changes."
d543e20b
PA
1521 (let ((parent (widget-get widget :parent)))
1522 (when parent
1523 (widget-apply parent :notify widget event))))
1524
1525(defun widget-default-notify (widget child &optional event)
bfa6c260 1526 "Pass notification to parent."
d543e20b
PA
1527 (widget-default-action widget event))
1528
6d528fc5 1529(defun widget-default-prompt-value (widget prompt value unbound)
bfa6c260
DL
1530 "Read an arbitrary value. Stolen from `set-variable'."
1531;; (let ((initial (if unbound
7fdbdbea 1532;; nil
bfa6c260
DL
1533;; It would be nice if we could do a `(cons val 1)' here.
1534;; (prin1-to-string (custom-quote value))))))
7fdbdbea 1535 (eval-minibuffer prompt))
6d528fc5 1536
d543e20b
PA
1537;;; The `item' Widget.
1538
1539(define-widget 'item 'default
1540 "Constant items for inclusion in other widgets."
a3c88c59 1541 :convert-widget 'widget-value-convert-widget
d543e20b
PA
1542 :value-create 'widget-item-value-create
1543 :value-delete 'ignore
a3c88c59 1544 :value-get 'widget-value-value-get
d543e20b
PA
1545 :match 'widget-item-match
1546 :match-inline 'widget-item-match-inline
1547 :action 'widget-item-action
1548 :format "%t\n")
1549
d543e20b 1550(defun widget-item-value-create (widget)
bfa6c260
DL
1551 "Insert the printed representation of the value."
1552 (princ (widget-get widget :value) (current-buffer)))
d543e20b
PA
1553
1554(defun widget-item-match (widget value)
1555 ;; Match if the value is the same.
1556 (equal (widget-get widget :value) value))
1557
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))
e5dfabb4 1563 (let ((head (widget-sublist values 0 (length value))))
d543e20b 1564 (and (equal head value)
e5dfabb4
RS
1565 (cons head (widget-sublist values (length value))))))))
1566
1567(defun widget-sublist (list start &optional end)
1568 "Return the sublist of LIST from START to END.
1569If END is omitted, it defaults to the length of LIST."
0a3a0b56
PA
1570 (if (> start 0) (setq list (nthcdr start list)))
1571 (if end
bfa6c260 1572 (unless (<= end start)
0a3a0b56
PA
1573 (setq list (copy-sequence list))
1574 (setcdr (nthcdr (- end start 1) list) nil)
1575 list)
1576 (copy-sequence list)))
d543e20b
PA
1577
1578(defun widget-item-action (widget &optional event)
1579 ;; Just notify itself.
1580 (widget-apply widget :notify widget event))
1581
d543e20b
PA
1582;;; The `push-button' Widget.
1583
7fdbdbea
DL
1584;; (defcustom widget-push-button-gui t
1585;; "If non nil, use GUI push buttons when available."
1586;; :group 'widgets
1587;; :type 'boolean)
d543e20b
PA
1588
1589;; Cache already created GUI objects.
7fdbdbea 1590;; (defvar widget-push-button-cache nil)
d543e20b 1591
25ac13b5
PA
1592(defcustom widget-push-button-prefix "["
1593 "String used as prefix for buttons."
1594 :type 'string
1595 :group 'widget-button)
1596
1597(defcustom widget-push-button-suffix "]"
1598 "String used as suffix for buttons."
1599 :type 'string
1600 :group 'widget-button)
1601
d543e20b
PA
1602(define-widget 'push-button 'item
1603 "A pushable button."
25ac13b5
PA
1604 :button-prefix ""
1605 :button-suffix ""
d543e20b
PA
1606 :value-create 'widget-push-button-value-create
1607 :format "%[%v%]")
1608
1609(defun widget-push-button-value-create (widget)
bfa6c260 1610 "Insert text representing the `on' and `off' states."
d543e20b
PA
1611 (let* ((tag (or (widget-get widget :tag)
1612 (widget-get widget :value)))
da5ec617 1613 (tag-glyph (widget-get widget :tag-glyph))
25ac13b5 1614 (text (concat widget-push-button-prefix
7fdbdbea
DL
1615 tag widget-push-button-suffix)))
1616 (if tag-glyph
1617 (widget-image-insert widget text tag-glyph)
1618 (insert text))))
d543e20b 1619
7fdbdbea
DL
1620;; (defun widget-gui-action (widget)
1621;; "Apply :action for WIDGET."
1622;; (widget-apply-action widget (this-command-keys)))
d543e20b
PA
1623
1624;;; The `link' Widget.
1625
25ac13b5
PA
1626(defcustom widget-link-prefix "["
1627 "String used as prefix for links."
1628 :type 'string
1629 :group 'widget-button)
1630
1631(defcustom widget-link-suffix "]"
1632 "String used as suffix for links."
1633 :type 'string
1634 :group 'widget-button)
1635
d543e20b
PA
1636(define-widget 'link 'item
1637 "An embedded link."
25ac13b5
PA
1638 :button-prefix 'widget-link-prefix
1639 :button-suffix 'widget-link-suffix
d543e20b 1640 :help-echo "Follow the link."
25ac13b5 1641 :format "%[%t%]")
d543e20b
PA
1642
1643;;; The `info-link' Widget.
1644
1645(define-widget 'info-link 'link
1646 "A link to an info file."
1647 :action 'widget-info-link-action)
1648
1649(defun widget-info-link-action (widget &optional event)
1650 "Open the info node specified by WIDGET."
a3c88c59 1651 (Info-goto-node (widget-value widget)))
d543e20b
PA
1652
1653;;; The `url-link' Widget.
1654
1655(define-widget 'url-link 'link
1656 "A link to an www page."
1657 :action 'widget-url-link-action)
1658
1659(defun widget-url-link-action (widget &optional event)
1660 "Open the url specified by WIDGET."
af0f19d7 1661 (browse-url (widget-value widget)))
d543e20b 1662
a59b7025
KH
1663;;; The `function-link' Widget.
1664
1665(define-widget 'function-link 'link
1666 "A link to an Emacs function."
1667 :action 'widget-function-link-action)
1668
1669(defun widget-function-link-action (widget &optional event)
1670 "Show the function specified by WIDGET."
1671 (describe-function (widget-value widget)))
1672
1673;;; The `variable-link' Widget.
1674
1675(define-widget 'variable-link 'link
1676 "A link to an Emacs variable."
1677 :action 'widget-variable-link-action)
1678
1679(defun widget-variable-link-action (widget &optional event)
1680 "Show the variable specified by WIDGET."
1681 (describe-variable (widget-value widget)))
1682
62f44662
PA
1683;;; The `file-link' Widget.
1684
1685(define-widget 'file-link 'link
1686 "A link to a file."
1687 :action 'widget-file-link-action)
1688
1689(defun widget-file-link-action (widget &optional event)
1690 "Find the file specified by WIDGET."
1691 (find-file (widget-value widget)))
1692
1693;;; The `emacs-library-link' Widget.
1694
1695(define-widget 'emacs-library-link 'link
1696 "A link to an Emacs Lisp library file."
1697 :action 'widget-emacs-library-link-action)
1698
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))))
1702
4ee1cf9f
PA
1703;;; The `emacs-commentary-link' Widget.
1704
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)
1708
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)))
1712
d543e20b
PA
1713;;; The `editable-field' Widget.
1714
1715(define-widget 'editable-field 'default
1716 "An editable text field."
a3c88c59 1717 :convert-widget 'widget-value-convert-widget
d543e20b
PA
1718 :keymap widget-field-keymap
1719 :format "%v"
7fdbdbea 1720 :help-echo "M-TAB: complete field; RET: enter value"
d543e20b 1721 :value ""
a3c88c59
PA
1722 :prompt-internal 'widget-field-prompt-internal
1723 :prompt-history 'widget-field-history
1724 :prompt-value 'widget-field-prompt-value
d543e20b
PA
1725 :action 'widget-field-action
1726 :validate 'widget-field-validate
1727 :valid-regexp ""
820d4181 1728 :error "Field's value doesn't match allowed forms"
d543e20b
PA
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)
1733
a3c88c59
PA
1734(defvar widget-field-history nil
1735 "History of field minibuffer edits.")
1736
1737(defun widget-field-prompt-internal (widget prompt initial history)
bfa6c260
DL
1738 "Read string for WIDGET promptinhg with PROMPT.
1739INITIAL is the initial input and HISTORY is a symbol containing
1740the earlier input."
a3c88c59
PA
1741 (read-string prompt initial history))
1742
1743(defun widget-field-prompt-value (widget prompt value unbound)
bfa6c260 1744 "Prompt for a string."
7fdbdbea
DL
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)
1752 0))
1753 (widget-get widget :prompt-history))))
d543e20b 1754
0b296dac 1755(defvar widget-edit-functions nil)
211c9fe9 1756
d543e20b 1757(defun widget-field-action (widget &optional event)
bfa6c260 1758 "Move to next field."
f1231b8e 1759 (widget-forward 1)
0b296dac 1760 (run-hook-with-args 'widget-edit-functions widget))
d543e20b
PA
1761
1762(defun widget-field-validate (widget)
bfa6c260 1763 "Valid if the content matches `:valid-regexp'."
7fdbdbea
DL
1764 (unless (string-match (widget-get widget :valid-regexp)
1765 (widget-apply widget :value-get))
1766 widget))
d543e20b
PA
1767
1768(defun widget-field-value-create (widget)
bfa6c260 1769 "Create an editable text field."
d543e20b
PA
1770 (let ((size (widget-get widget :size))
1771 (value (widget-get widget :value))
0a3a0b56 1772 (from (point))
c953515e
PA
1773 ;; This is changed to a real overlay in `widget-setup'. We
1774 ;; need the end points to behave differently until
bfa6c260 1775 ;; `widget-setup' is called.
0a3a0b56
PA
1776 (overlay (cons (make-marker) (make-marker))))
1777 (widget-put widget :field-overlay overlay)
d543e20b
PA
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)))
0a3a0b56
PA
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)))
d543e20b
PA
1790
1791(defun widget-field-value-delete (widget)
bfa6c260 1792 "Remove the widget from the list of active editing fields."
d543e20b 1793 (setq widget-field-list (delq widget widget-field-list))
ec725166 1794 (setq widget-field-new (delq widget widget-field-new))
d543e20b 1795 ;; These are nil if the :format string doesn't contain `%v'.
0a3a0b56 1796 (let ((overlay (widget-get widget :field-overlay)))
d8f02b91 1797 (when (overlayp overlay)
0a3a0b56 1798 (delete-overlay overlay))))
d543e20b
PA
1799
1800(defun widget-field-value-get (widget)
bfa6c260 1801 "Return current text in editing field."
0a3a0b56
PA
1802 (let ((from (widget-field-start widget))
1803 (to (widget-field-end widget))
1804 (buffer (widget-field-buffer widget))
d543e20b
PA
1805 (size (widget-get widget :size))
1806 (secret (widget-get widget :secret))
1807 (old (current-buffer)))
1808 (if (and from to)
bfa6c260 1809 (progn
0a3a0b56 1810 (set-buffer buffer)
d543e20b
PA
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
0a3a0b56 1821 (get-char-property (+ from index) 'secret))
d543e20b
PA
1822 (setq index (1+ index)))))
1823 (set-buffer old)
1824 result))
1825 (widget-get widget :value))))
1826
1827(defun widget-field-match (widget value)
1828 ;; Match any string.
1829 (stringp value))
1830
1831;;; The `text' Widget.
1832
1833(define-widget 'text 'editable-field
7fce8d93
SM
1834 "A multiline text area."
1835 :keymap widget-text-keymap)
d543e20b
PA
1836
1837;;; The `menu-choice' Widget.
1838
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
783824f5 1850 :default-get 'widget-choice-default-get
a3c88c59 1851 :mouse-down-action 'widget-choice-mouse-down-action
d543e20b
PA
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)
1857
1858(defun widget-choice-value-create (widget)
bfa6c260 1859 "Insert the first choice that matches the value."
d543e20b
PA
1860 (let ((value (widget-get widget :value))
1861 (args (widget-get widget :args))
4084d128 1862 (explicit (widget-get widget :explicit-choice))
d543e20b 1863 current)
7fdbdbea 1864 (if (and explicit (equal value (widget-get widget :explicit-choice-value)))
4084d128
RS
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))))))
d543e20b
PA
1885
1886(defun widget-choice-value-get (widget)
1887 ;; Get value of the child widget.
1888 (widget-value (car (widget-get widget :children))))
1889
1890(defun widget-choice-value-inline (widget)
1891 ;; Get value of the child widget.
1892 (widget-apply (car (widget-get widget :children)) :value-inline))
1893
783824f5
RS
1894(defun widget-choice-default-get (widget)
1895 ;; Get default for the first choice.
1896 (widget-default-get (car (widget-get widget :args))))
1897
a3c88c59
PA
1898(defcustom widget-choice-toggle nil
1899 "If non-nil, a binary choice will just toggle between the values.
1900Otherwise, the user will explicitly have to choose between the values
25ac13b5 1901when he invoked the menu."
a3c88c59
PA
1902 :type 'boolean
1903 :group 'widgets)
1904
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)))
e2c00a47 1909 (cond ((not (display-popup-menus-p))
a3c88c59
PA
1910 ;; No place to pop up a menu.
1911 nil)
a3c88c59
PA
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.
1920 t)
1921 ((and widget-choice-toggle (memq old args))
1922 ;; We toggle.
1923 nil)
1924 (t
1925 ;; Ask which of the two.
1926 t))))
1927
d543e20b
PA
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))
4084d128 1934 this-explicit
d543e20b
PA
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))
a3c88c59
PA
1947 ((and widget-choice-toggle
1948 (= (length args) 2)
d543e20b
PA
1949 (memq old args))
1950 (if (eq old (nth 0 args))
1951 (nth 1 args)
1952 (nth 0 args)))
1953 (t
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)))
4084d128 1961 (setq this-explicit t)
d543e20b 1962 (widget-choose tag (reverse choices) event))))
d0acc4ea 1963 (when current
4084d128
RS
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)))
7fdbdbea
DL
1971 (widget-value-set
1972 widget (widget-apply current
1973 :value-to-external (widget-default-get current)))
d0acc4ea
RS
1974 (widget-setup)
1975 (widget-apply widget :notify widget event)))
d4b8422f 1976 (run-hook-with-args 'widget-edit-functions widget))
d543e20b
PA
1977
1978(defun widget-choice-validate (widget)
1979 ;; Valid if we have made a valid choice.
7fdbdbea
DL
1980 (if (eq (widget-get widget :void) (widget-get widget :choice))
1981 widget
1982 (widget-apply (car (widget-get widget :children)) :validate)))
d543e20b
PA
1983
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))
1993
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))
2003
2004;;; The `toggle' Widget.
2005
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")
2014
2015(defun widget-toggle-value-create (widget)
bfa6c260 2016 "Insert text representing the `on' and `off' states."
d543e20b 2017 (if (widget-value widget)
3058e436 2018 (let ((image (widget-get widget :on-glyph)))
805e9a05 2019 (and (display-graphic-p)
3058e436
MB
2020 (listp image)
2021 (not (eq (car image) 'image))
2022 (widget-put widget :on-glyph (setq image (eval image))))
805e9a05
RS
2023 (widget-image-insert widget
2024 (widget-get widget :on)
3058e436
MB
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))))
d543e20b
PA
2032
2033(defun widget-toggle-action (widget &optional event)
2034 ;; Toggle value.
d0acc4ea
RS
2035 (widget-value-set widget (not (widget-value widget)))
2036 (widget-apply widget :notify widget event)
d4b8422f 2037 (run-hook-with-args 'widget-edit-functions widget))
6d528fc5 2038
d543e20b
PA
2039;;; The `checkbox' Widget.
2040
2041(define-widget 'checkbox 'toggle
2042 "A checkbox toggle."
25ac13b5
PA
2043 :button-suffix ""
2044 :button-prefix ""
d543e20b
PA
2045 :format "%[%v%]"
2046 :on "[X]"
35a7ac84
DL
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.
805e9a05 2050 :on-glyph '(create-image "\000\066\076\034\076\066\000"
bfa6c260 2051 'xbm t :width 7 :height 7
805e9a05 2052 :background "grey75" ; like default mode line
b6715b9f 2053 :foreground "black"
805e9a05 2054 :relief -3
1ed74431 2055 :ascent 'center)
805e9a05
RS
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)
99f01612 2063 :help-echo "Toggle this item."
d543e20b
PA
2064 :action 'widget-checkbox-action)
2065
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)))))
2074
2075;;; The `checklist' Widget.
2076
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"
d543e20b
PA
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)
2090
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)))
bfa6c260 2095 (while args
d543e20b
PA
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)))))
2099
2100(defun widget-checklist-add-item (widget type chosen)
bfa6c260
DL
2101 "Create checklist item in WIDGET of type TYPE.
2102If the item is checked, CHOSEN is a cons whose cdr is the value."
d543e20b
PA
2103 (and (eq (preceding-char) ?\n)
2104 (widget-get widget :indent)
2105 (insert-char ? (widget-get widget :indent)))
bfa6c260 2106 (widget-specify-insert
d543e20b
PA
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)
7fdbdbea
DL
2117 (let ((escape (char-after (match-beginning 1))))
2118 (delete-backward-char 2)
d543e20b 2119 (cond ((eq escape ?%)
bfa6c260 2120 (insert ?%))
d543e20b
PA
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)))
2135 (t
2136 (widget-create-child-value
2137 widget type (car (cdr chosen)))))))
bfa6c260 2138 (t
d543e20b
PA
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))))))
2144
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)))))
2149
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))
ef3f635f 2153 (args (copy-sequence (widget-get widget :args)))
d543e20b
PA
2154 found rest)
2155 (while values
2156 (let ((answer (widget-checklist-match-up args values)))
bfa6c260 2157 (cond (answer
d543e20b
PA
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)))
bfa6c260 2165 (t
d543e20b
PA
2166 (setq rest (append rest values)
2167 values nil)))))
2168 (cons found rest)))
2169
2170(defun widget-checklist-match-find (widget vals)
bfa6c260
DL
2171 "Find the vals which match a type in the checklist.
2172Return an alist of (TYPE MATCH)."
d543e20b 2173 (let ((greedy (widget-get widget :greedy))
ef3f635f 2174 (args (copy-sequence (widget-get widget :args)))
d543e20b
PA
2175 found)
2176 (while vals
2177 (let ((answer (widget-checklist-match-up args vals)))
bfa6c260 2178 (cond (answer
d543e20b
PA
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)))
bfa6c260 2185 (t
d543e20b
PA
2186 (setq vals nil)))))
2187 found))
2188
2189(defun widget-checklist-match-up (args vals)
bfa6c260 2190 "Return the first type from ARGS that matches VALS."
d543e20b
PA
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
bfa6c260 2197 current)))
d543e20b
PA
2198
2199(defun widget-checklist-value-get (widget)
2200 ;; The values of all selected items.
2201 (let ((children (widget-get widget :children))
2202 child result)
bfa6c260 2203 (while children
d543e20b
PA
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))
2209
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))
2221
2222;;; The `option' Widget
2223
2224(define-widget 'option 'checklist
2225 "An widget with an optional item."
2226 :inline t)
2227
2228;;; The `choice-item' Widget.
2229
2230(define-widget 'choice-item 'item
2231 "Button items that delegate action events to their parents."
a3c88c59 2232 :action 'widget-parent-action
d543e20b
PA
2233 :format "%[%t%] \n")
2234
d543e20b
PA
2235;;; The `radio-button' Widget.
2236
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%]"
25ac13b5
PA
2241 :button-suffix ""
2242 :button-prefix ""
d543e20b
PA
2243 :on "(*)"
2244 :on-glyph "radio1"
2245 :off "( )"
2246 :off-glyph "radio0")
2247
2248(defun widget-radio-button-notify (widget child &optional event)
2249 ;; Tell daddy.
2250 (widget-apply (widget-get widget :parent) :action widget event))
2251
2252;;; The `radio-button-choice' Widget.
2253
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"
d543e20b
PA
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)
2270
2271(defun widget-radio-value-create (widget)
2272 ;; Insert all values
2273 (let ((args (widget-get widget :args))
2274 arg)
bfa6c260 2275 (while args
d543e20b
PA
2276 (setq arg (car args)
2277 args (cdr args))
2278 (widget-radio-add-item widget arg))))
2279
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)))
bfa6c260 2286 (widget-specify-insert
d543e20b
PA
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)
7fdbdbea
DL
2300 (let ((escape (char-after (match-beginning 1))))
2301 (delete-backward-char 2)
d543e20b 2302 (cond ((eq escape ?%)
bfa6c260 2303 (insert ?%))
d543e20b
PA
2304 ((eq escape ?b)
2305 (setq button (apply 'widget-create-child-and-convert
bfa6c260 2306 widget 'radio-button
d543e20b
PA
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)))
bfa6c260 2314 (unless chosen
d543e20b 2315 (widget-apply child :deactivate)))
bfa6c260 2316 (t
d543e20b
PA
2317 (error "Unknown escape `%c'" escape)))))
2318 ;; Update properties.
2319 (when chosen
2320 (widget-put widget :choice type))
bfa6c260 2321 (when button
d543e20b
PA
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)))
2327
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))))
2332
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))
7fdbdbea
DL
2340 (when (widget-apply (widget-get current :button) :value-get)
2341 (setq found current
2342 children nil)))
d543e20b
PA
2343 found))
2344
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))
7fdbdbea
DL
2352 (when (widget-apply (widget-get current :button) :value-get)
2353 (setq found (widget-apply current :value-inline)
2354 children nil)))
d543e20b
PA
2355 found))
2356
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)
bfa6c260
DL
2370 (if match
2371 (progn
d543e20b
PA
2372 (widget-value-set current value)
2373 (widget-apply current :activate))
2374 (widget-apply current :deactivate))
2375 (setq found (or found match))))))
2376
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)))
2389
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))
2408
2409;;; The `insert-button' Widget.
2410
2411(define-widget 'insert-button 'push-button
2ff864e0
DL
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."
d543e20b
PA
2415 :action 'widget-insert-button-action)
2416
2417(defun widget-insert-button-action (widget &optional event)
2418 ;; Ask the parent to insert a new item.
bfa6c260 2419 (widget-apply (widget-get widget :parent)
d543e20b
PA
2420 :insert-before (widget-get widget :widget)))
2421
2ff864e0
DL
2422;;; The `delete-button' Widget.
2423
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)
2429
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)))
2434
d543e20b
PA
2435;;; The `editable-list' Widget.
2436
7fdbdbea
DL
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)
d543e20b
PA
2441
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
2ff864e0 2448 :entry-format "%i %d %v"
d543e20b
PA
2449 :value-create 'widget-editable-list-value-create
2450 :value-delete 'widget-children-value-delete
2451 :value-get 'widget-editable-list-value-get
a3c88c59 2452 :validate 'widget-children-validate
d543e20b
PA
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)
2457
2458(defun widget-editable-list-format-handler (widget escape)
2459 ;; We recognize the insert button.
7fdbdbea 2460;;; (let ((widget-push-button-gui widget-editable-list-gui))
d543e20b
PA
2461 (cond ((eq escape ?i)
2462 (and (widget-get widget :indent)
7fdbdbea 2463 (insert-char ?\ (widget-get widget :indent)))
bfa6c260 2464 (apply 'widget-create-child-and-convert
d543e20b
PA
2465 widget 'insert-button
2466 (widget-get widget :append-button-args)))
bfa6c260 2467 (t
7fdbdbea
DL
2468 (widget-default-format-handler widget escape)))
2469;;; )
2470 )
d543e20b
PA
2471
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)))
d543e20b
PA
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
7fdbdbea 2484 (if (widget-get type :inline)
d543e20b
PA
2485 (car answer)
2486 (car (car answer)))
2487 t)
2488 children)
2489 value (cdr answer))
2490 (setq value nil))))
2491 (widget-put widget :children (nreverse children))))
2492
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))))
2497
d543e20b
PA
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)))))
2502
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)))
bfa6c260 2509 (if answer
d543e20b
PA
2510 (setq found (append found (car answer))
2511 value (cdr answer))
2512 (setq ok nil))))
2513 (cons found value)))
2514
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)
c6753d66 2520 before-change-functions
d543e20b 2521 after-change-functions)
bfa6c260 2522 (cond (before
d543e20b
PA
2523 (goto-char (widget-get before :entry-from)))
2524 (t
2525 (goto-char (widget-get widget :value-pos))))
bfa6c260 2526 (let ((child (widget-editable-list-entry-create
d543e20b
PA
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)))
d543e20b
PA
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)
0a3a0b56 2537 (widget-apply widget :notify widget))
d543e20b
PA
2538
2539(defun widget-editable-list-delete-at (widget child)
2540 ;; Delete child from list of children.
2541 (save-excursion
ef3f635f 2542 (let ((buttons (copy-sequence (widget-get widget :buttons)))
d543e20b
PA
2543 button
2544 (inhibit-read-only t)
c6753d66 2545 before-change-functions
d543e20b
PA
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)
c6753d66 2557 before-change-functions
d543e20b
PA
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))
2566
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)))
7fdbdbea 2570;;; (widget-push-button-gui widget-editable-list-gui)
2ff864e0 2571 child delete insert)
bfa6c260 2572 (widget-specify-insert
d543e20b
PA
2573 (save-excursion
2574 (and (widget-get widget :indent)
7fdbdbea 2575 (insert-char ?\ (widget-get widget :indent)))
d543e20b
PA
2576 (insert (widget-get widget :entry-format)))
2577 ;; Parse % escapes in format.
2578 (while (re-search-forward "%\\(.\\)" nil t)
7fdbdbea
DL
2579 (let ((escape (char-after (match-beginning 1))))
2580 (delete-backward-char 2)
d543e20b 2581 (cond ((eq escape ?%)
bfa6c260 2582 (insert ?%))
2ff864e0
DL
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))))
d543e20b
PA
2591 ((eq escape ?v)
2592 (if conv
bfa6c260 2593 (setq child (widget-create-child-value
d543e20b 2594 widget type value))
bfa6c260 2595 (setq child (widget-create-child-value
416cd771
RS
2596 widget type
2597 (widget-apply type :value-to-external
2598 (widget-default-get type))))))
bfa6c260 2599 (t
d543e20b 2600 (error "Unknown escape `%c'" escape)))))
2ff864e0
DL
2601 (widget-put widget
2602 :buttons (cons delete
2603 (cons insert
2604 (widget-get widget :buttons))))
7fdbdbea
DL
2605 (let ((entry-from (point-min-marker))
2606 (entry-to (point-max-marker)))
d543e20b
PA
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)))
2ff864e0
DL
2611 (widget-put insert :widget child)
2612 (widget-put delete :widget child)
d543e20b
PA
2613 child))
2614
2615;;; The `group' Widget.
2616
2617(define-widget 'group 'default
a89a9d34 2618 "A widget which groups other widgets inside."
d543e20b
PA
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
783824f5 2624 :default-get 'widget-group-default-get
a3c88c59 2625 :validate 'widget-children-validate
d543e20b
PA
2626 :match 'widget-group-match
2627 :match-inline 'widget-group-match-inline)
2628
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)
7fdbdbea 2641 (insert-char ?\ (widget-get widget :indent)))
3acab5ef
PA
2642 (push (cond ((null answer)
2643 (widget-create-child widget arg))
2644 ((widget-get arg :inline)
7fdbdbea 2645 (widget-create-child-value widget arg (car answer)))
3acab5ef 2646 (t
7fdbdbea 2647 (widget-create-child-value widget arg (car (car answer)))))
3acab5ef 2648 children))
d543e20b
PA
2649 (widget-put widget :children (nreverse children))))
2650
783824f5
RS
2651(defun widget-group-default-get (widget)
2652 ;; Get the default of the components.
2653 (mapcar 'widget-default-get (widget-get widget :args)))
2654
d543e20b
PA
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))))))
2660
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))
bfa6c260 2669 (if answer
d543e20b
PA
2670 (setq vals (cdr answer)
2671 found (append found (car answer)))
2672 (setq vals nil
2673 args nil)))
2674 (if answer
bfa6c260 2675 (cons found vals))))
d543e20b 2676
3acab5ef 2677;;; The `visibility' Widget.
d543e20b 2678
3acab5ef
PA
2679(define-widget 'visibility 'item
2680 "An indicator and manipulator for hidden items."
2681 :format "%[%v%]"
2682 :button-prefix ""
2683 :button-suffix ""
c6753d66
RS
2684 :on "Hide"
2685 :off "Show"
3acab5ef
PA
2686 :value-create 'widget-visibility-value-create
2687 :action 'widget-toggle-action
2688 :match (lambda (widget value) t))
d543e20b 2689
3acab5ef
PA
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
2696 on
2697 widget-push-button-suffix))
2698 (setq on ""))
2699 (if off
2700 (setq off (concat widget-push-button-prefix
c6753d66
RS
2701 off
2702 widget-push-button-suffix))
3acab5ef
PA
2703 (setq off ""))
2704 (if (widget-value widget)
bfa6c260
DL
2705 (widget-image-insert widget on "down" "down-pushed")
2706 (widget-image-insert widget off "right" "right-pushed"))))
c6753d66 2707
8697863a
PA
2708;;; The `documentation-link' Widget.
2709;;
2710;; This is a helper widget for `documentation-string'.
3acab5ef 2711
8697863a
PA
2712(define-widget 'documentation-link 'link
2713 "Link type used in documentation strings."
2714 :tab-order -1
bfa6c260 2715 :help-echo "Describe this symbol"
8697863a
PA
2716 :action 'widget-documentation-link-action)
2717
8697863a 2718(defun widget-documentation-link-action (widget &optional event)
f9923499 2719 "Display documentation for WIDGET's value. Ignore optional argument EVENT."
9dccd7ef
RS
2720 (let* ((string (widget-get widget :value))
2721 (symbol (intern string)))
2722 (if (and (fboundp symbol) (boundp symbol))
f9923499 2723 ;; If there are two doc strings, give the user a way to pick one.
9dccd7ef
RS
2724 (apropos (concat "\\`" (regexp-quote string) "\\'"))
2725 (if (fboundp symbol)
2726 (describe-function symbol)
2727 (describe-variable symbol)))))
8697863a
PA
2728
2729(defcustom widget-documentation-links t
2730 "Add hyperlinks to documentation strings when non-nil."
2731 :type 'boolean
2732 :group 'widget-documentation)
2733
2734(defcustom widget-documentation-link-regexp "`\\([^\n`' ]+\\)'"
2735 "Regexp for matching potential links in documentation strings.
2736The first group should be the link itself."
2737 :type 'regexp
2738 :group 'widget-documentation)
2739
2740(defcustom widget-documentation-link-p 'intern-soft
2741 "Predicate used to test if a string is useful as a link.
2742The value should be a function. The function will be called one
2743argument, a string, and should return non-nil if there should be a
2744link for that string."
2745 :type 'function
2746 :options '(widget-documentation-link-p)
2747 :group 'widget-documentation)
2748
2749(defcustom widget-documentation-link-type 'documentation-link
2750 "Widget type used for links in documentation strings."
2751 :type 'symbol
2752 :group 'widget-documentation)
2753
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)
a89a9d34
DL
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))
8697863a
PA
2762 (save-excursion
2763 (goto-char from)
2764 (while (re-search-forward regexp to t)
2765 (let ((name (match-string 1))
a1a4fa22
PA
2766 (begin (match-beginning 1))
2767 (end (match-end 1)))
7fdbdbea
DL
2768 (when (funcall widget-documentation-link-p name)
2769 (push (widget-convert-button widget-documentation-link-type
2770 begin end :value name)
8697863a
PA
2771 buttons)))))
2772 (widget-put widget :buttons buttons)))
2773 (let ((indent (widget-get widget :indent)))
2774 (when (and indent (not (zerop indent)))
bfa6c260 2775 (save-excursion
8697863a
PA
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)))))))
2781
2782;;; The `documentation-string' Widget.
0ce5b5d5 2783
3acab5ef
PA
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)
2790
2791(defun widget-documentation-string-value-create (widget)
2792 ;; Insert documentation string.
2793 (let ((doc (widget-value widget))
8697863a 2794 (indent (widget-get widget :indent))
6aaedd12
PA
2795 (shown (widget-get (widget-get widget :parent) :documentation-shown))
2796 (start (point)))
3acab5ef
PA
2797 (if (string-match "\n" doc)
2798 (let ((before (substring doc 0 (match-beginning 0)))
2799 (after (substring doc (match-beginning 0)))
7fdbdbea 2800 button)
bfa6c260 2801 (insert before ?\ )
8697863a 2802 (widget-documentation-link-add widget start (point))
7fdbdbea
DL
2803 (setq button
2804 (widget-create-child-and-convert
3acab5ef 2805 widget 'visibility
8697863a 2806 :help-echo "Show or hide rest of the documentation."
c6753d66 2807 :off "More"
0640c647 2808 :always-active t
3acab5ef 2809 :action 'widget-parent-action
7fdbdbea 2810 shown))
3acab5ef 2811 (when shown
0ce5b5d5 2812 (setq start (point))
8697863a
PA
2813 (when (and indent (not (zerop indent)))
2814 (insert-char ?\ indent))
0ce5b5d5 2815 (insert after)
8697863a 2816 (widget-documentation-link-add widget start (point)))
7fdbdbea 2817 (widget-put widget :buttons (list button)))
6aaedd12 2818 (insert doc)
8697863a 2819 (widget-documentation-link-add widget start (point))))
bfa6c260 2820 (insert ?\n))
3acab5ef
PA
2821
2822(defun widget-documentation-string-action (widget &rest ignore)
2823 ;; Toggle documentation.
2824 (let ((parent (widget-get widget :parent)))
bfa6c260 2825 (widget-put parent :documentation-shown
3acab5ef
PA
2826 (not (widget-get parent :documentation-shown))))
2827 ;; Redraw.
d543e20b 2828 (widget-value-set widget (widget-value widget)))
fc56773e 2829\f
d543e20b
PA
2830;;; The Sexp Widgets.
2831
2832(define-widget 'const 'item
2833 "An immutable sexp."
6d528fc5 2834 :prompt-value 'widget-const-prompt-value
d543e20b
PA
2835 :format "%t\n%d")
2836
6d528fc5
PA
2837(defun widget-const-prompt-value (widget prompt value unbound)
2838 ;; Return the value of the const.
2839 (widget-value widget))
2840
2841(define-widget 'function-item 'const
d543e20b
PA
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))))
2848
6d528fc5 2849(define-widget 'variable-item 'const
d543e20b
PA
2850 "An immutable variable name."
2851 :format "%v\n%h"
2852 :documentation-property 'variable-documentation)
2853
cc0a25e1
RS
2854(define-widget 'other 'sexp
2855 "Matches any value, but doesn't let the user edit the value.
2856This is useful as last item in a `choice' widget.
2857You should use this widget type with a default value,
b720878d 2858as in (other DEFAULT) or (other :tag \"NAME\" DEFAULT).
cc0a25e1
RS
2859If the user selects this alternative, that specifies DEFAULT
2860as the value."
2861 :tag "Other"
2862 :format "%t%n"
2863 :value 'other)
2864
6d528fc5
PA
2865(defvar widget-string-prompt-value-history nil
2866 "History of input to `widget-string-prompt-value'.")
2867
a3c88c59
PA
2868(define-widget 'string 'editable-field
2869 "A string"
2870 :tag "String"
2871 :format "%{%t%}: %v"
0ce5b5d5 2872 :complete-function 'ispell-complete-word
a3c88c59 2873 :prompt-history 'widget-string-prompt-value-history)
6d528fc5 2874
d543e20b
PA
2875(define-widget 'regexp 'string
2876 "A regular expression."
6d528fc5
PA
2877 :match 'widget-regexp-match
2878 :validate 'widget-regexp-validate
4ee1cf9f
PA
2879 ;; Doesn't work well with terminating newline.
2880 ;; :value-face 'widget-single-line-field-face
d543e20b
PA
2881 :tag "Regexp")
2882
6d528fc5
PA
2883(defun widget-regexp-match (widget value)
2884 ;; Match valid regexps.
2885 (and (stringp value)
a3c88c59 2886 (condition-case nil
6d528fc5
PA
2887 (prog1 t
2888 (string-match value ""))
2889 (error nil))))
2890
2891(defun widget-regexp-validate (widget)
2892 "Check that the value of WIDGET is a valid regexp."
7fdbdbea
DL
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)))
6d528fc5 2898
d543e20b 2899(define-widget 'file 'string
bfa6c260 2900 "A file widget.
25ac13b5 2901It will read a file name from the minibuffer when invoked."
f1231b8e 2902 :complete-function 'widget-file-complete
6d528fc5 2903 :prompt-value 'widget-file-prompt-value
a3c88c59 2904 :format "%{%t%}: %v"
4ee1cf9f
PA
2905 ;; Doesn't work well with terminating newline.
2906 ;; :value-face 'widget-single-line-field-face
f1231b8e
RS
2907 :tag "File")
2908
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)))
2927 (t
2928 (message "Making completion list...")
7fdbdbea
DL
2929 (with-output-to-temp-buffer "*Completions*"
2930 (display-completion-list
2931 (sort (file-name-all-completions name-part directory)
2932 'string<)))
f1231b8e 2933 (message "Making completion list...%s" "done")))))
d543e20b 2934
6d528fc5
PA
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)
a3c88c59 2940 (let ((prompt2 (format "%s (default %s) " prompt value))
6d528fc5
PA
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)))))
2945
f1231b8e
RS
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)))
d543e20b 2958
bd1f16ce 2959;; Fixme: use file-name-as-directory.
d543e20b 2960(define-widget 'directory 'file
bfa6c260 2961 "A directory widget.
25ac13b5 2962It will read a directory name from the minibuffer when invoked."
d543e20b
PA
2963 :tag "Directory")
2964
a3c88c59
PA
2965(defvar widget-symbol-prompt-value-history nil
2966 "History of input to `widget-symbol-prompt-value'.")
2967
2968(define-widget 'symbol 'editable-field
4084d128 2969 "A Lisp symbol."
d543e20b
PA
2970 :value nil
2971 :tag "Symbol"
a3c88c59 2972 :format "%{%t%}: %v"
d543e20b 2973 :match (lambda (widget value) (symbolp value))
f1231b8e 2974 :complete-function 'lisp-complete-symbol
a3c88c59
PA
2975 :prompt-internal 'widget-symbol-prompt-internal
2976 :prompt-match 'symbolp
2977 :prompt-history 'widget-symbol-prompt-value-history
d543e20b
PA
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)))
2986
a3c88c59
PA
2987(defun widget-symbol-prompt-internal (widget prompt initial history)
2988 ;; Read file from minibuffer.
bfa6c260 2989 (let ((answer (completing-read prompt obarray
a3c88c59
PA
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"))))
2996
2997(defvar widget-function-prompt-value-history nil
2998 "History of input to `widget-function-prompt-value'.")
2999
d543e20b 3000(define-widget 'function 'sexp
4084d128 3001 "A Lisp function."
7fdbdbea
DL
3002 :complete-function (lambda ()
3003 (interactive)
3004 (lisp-complete-symbol 'fboundp))
a3c88c59
PA
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
bd1f16ce 3010 :match-alternatives '(functionp)
7fdbdbea
DL
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
d543e20b
PA
3017 :tag "Function")
3018
a3c88c59
PA
3019(defvar widget-variable-prompt-value-history nil
3020 "History of input to `widget-variable-prompt-value'.")
3021
d543e20b 3022(define-widget 'variable 'symbol
be96282a 3023 "A Lisp variable."
a3c88c59
PA
3024 :prompt-match 'boundp
3025 :prompt-history 'widget-variable-prompt-value-history
7fdbdbea
DL
3026 :complete-function (lambda ()
3027 (interactive)
3028 (lisp-complete-symbol 'boundp))
d543e20b
PA
3029 :tag "Variable")
3030
fc56773e
RS
3031(defvar widget-coding-system-prompt-value-history nil
3032 "History of input to `widget-coding-system-prompt-value'.")
6aaedd12 3033
fc56773e
RS
3034(define-widget 'coding-system 'symbol
3035 "A MULE coding-system."
3036 :format "%{%t%}: %v"
3037 :tag "Coding system"
7fdbdbea 3038 :base-only nil
fc56773e
RS
3039 :prompt-history 'widget-coding-system-prompt-value-history
3040 :prompt-value 'widget-coding-system-prompt-value
7fdbdbea
DL
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)
3052
fc56773e 3053(defun widget-coding-system-prompt-value (widget prompt value unbound)
7fdbdbea
DL
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)))
fc56773e
RS
3061
3062(defun widget-coding-system-action (widget &optional event)
fc56773e
RS
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)))
fc56773e 3072\f
a3c88c59 3073(define-widget 'sexp 'editable-field
be96282a 3074 "An arbitrary Lisp expression."
d543e20b 3075 :tag "Lisp expression"
a3c88c59 3076 :format "%{%t%}: %v"
d543e20b
PA
3077 :value nil
3078 :validate 'widget-sexp-validate
3079 :match (lambda (widget value) t)
3080 :value-to-internal 'widget-sexp-value-to-internal
6d528fc5 3081 :value-to-external (lambda (widget value) (read value))
a3c88c59 3082 :prompt-history 'widget-sexp-prompt-value-history
6d528fc5 3083 :prompt-value 'widget-sexp-prompt-value)
d543e20b
PA
3084
3085(defun widget-sexp-value-to-internal (widget value)
3086 ;; Use pp for printer representation.
6d1ab9d4
RS
3087 (let ((pp (if (symbolp value)
3088 (prin1-to-string value)
3089 (pp-to-string value))))
d543e20b
PA
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)))
3096
3097(defun widget-sexp-validate (widget)
3098 ;; Valid if we can read the string and there is no junk left after it.
99f01612
DL
3099 (with-temp-buffer
3100 (insert (widget-apply widget :value-get))
3101 (goto-char (point-min))
1d869634
DL
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'?")
7fdbdbea 3109 (unless (widget-apply widget :match (read (current-buffer)))
1d869634
DL
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)
3120 nil
3121 (widget-put widget :error err)
3122 widget))))
d543e20b 3123
6d528fc5
PA
3124(defvar widget-sexp-prompt-value-history nil
3125 "History of input to `widget-sexp-prompt-value'.")
3126
3127(defun widget-sexp-prompt-value (widget prompt value unbound)
3128 ;; Read an arbitrary sexp.
3129 (let ((found (read-string prompt
a3c88c59
PA
3130 (if unbound nil (cons (prin1-to-string value) 0))
3131 (widget-get widget :prompt-history))))
bfa6c260
DL
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))))
a3c88c59 3137
0b296dac
RS
3138(define-widget 'restricted-sexp 'sexp
3139 "A Lisp expression restricted to values that match.
3140To 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)))
3147
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))
fc56773e 3160\f
0b296dac 3161(define-widget 'integer 'restricted-sexp
d543e20b
PA
3162 "An integer."
3163 :tag "Integer"
3164 :value 0
3165 :type-error "This field should contain an integer"
0b296dac
RS
3166 :match-alternatives '(integerp))
3167
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))
d543e20b 3174
a3c88c59 3175(define-widget 'character 'editable-field
0b296dac 3176 "A character."
d543e20b
PA
3177 :tag "Character"
3178 :value 0
bfa6c260 3179 :size 1
d543e20b 3180 :format "%{%t%}: %v\n"
6d528fc5
PA
3181 :valid-regexp "\\`.\\'"
3182 :error "This field should contain a single character"
d543e20b 3183 :value-to-internal (lambda (widget value)
bfa6c260 3184 (if (stringp value)
a3c88c59
PA
3185 value
3186 (char-to-string value)))
d543e20b
PA
3187 :value-to-external (lambda (widget value)
3188 (if (stringp value)
3189 (aref value 0)
3190 value))
a3c88c59 3191 :match (lambda (widget value)
99f01612 3192 (char-valid-p value)))
d543e20b 3193
d543e20b 3194(define-widget 'list 'group
be96282a 3195 "A Lisp list."
d543e20b
PA
3196 :tag "List"
3197 :format "%{%t%}:\n%v")
3198
3199(define-widget 'vector 'group
be96282a 3200 "A Lisp vector."
d543e20b
PA
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)))
3206
bfa6c260 3207(defun widget-vector-match (widget value)
d543e20b
PA
3208 (and (vectorp value)
3209 (widget-group-match widget
bd042c03 3210 (widget-apply widget :value-to-internal value))))
d543e20b
PA
3211
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))))
3221
bfa6c260 3222(defun widget-cons-match (widget value)
d543e20b
PA
3223 (and (consp value)
3224 (widget-group-match widget
3225 (widget-apply widget :value-to-internal value))))
fc56773e
RS
3226\f
3227;;; The `plist' Widget.
3228;;
3229;; Property lists.
3230
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")
3237
3238(defvar widget-plist-value-type) ;Dynamic variable
3239
3240(defun widget-plist-convert-widget (widget)
3241 ;; Handle `:options'.
3242 (let* ((options (widget-get widget :options))
4681ca3a 3243 (widget-plist-value-type (widget-get widget :value-type))
bfa6c260 3244 (other `(editable-list :inline t
fc56773e 3245 (group :inline t
7fdbdbea 3246 ,(widget-get widget :key-type)
4681ca3a 3247 ,widget-plist-value-type)))
fc56773e
RS
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))
d543e20b 3257
fc56773e
RS
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)
31d5543d 3265 (setq key-type key)
fc56773e
RS
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)))
3270
3271
3272;;; The `alist' Widget.
3273;;
3274;; Association lists.
3275
3276(define-widget 'alist 'list
3277 "An association list."
a7013a02 3278 :key-type '(sexp :tag "Key")
fc56773e
RS
3279 :value-type '(sexp :tag "Value")
3280 :convert-widget 'widget-alist-convert-widget
3281 :tag "Alist")
3282
3283(defvar widget-alist-value-type) ;Dynamic variable
3284
3285(defun widget-alist-convert-widget (widget)
3286 ;; Handle `:options'.
3287 (let* ((options (widget-get widget :options))
4681ca3a 3288 (widget-alist-value-type (widget-get widget :value-type))
bfa6c260 3289 (other `(editable-list :inline t
fc56773e 3290 (cons :format "%v"
7fdbdbea 3291 ,(widget-get widget :key-type)
4681ca3a 3292 ,widget-alist-value-type)))
fc56773e
RS
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))
3302
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)
31d5543d 3310 (setq key-type key)
fc56773e
RS
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)))
3315\f
d543e20b
PA
3316(define-widget 'choice 'menu-choice
3317 "A union of several sexp types."
3318 :tag "Choice"
c6753d66 3319 :format "%{%t%}: %[Value Menu%] %v"
8697863a
PA
3320 :button-prefix 'widget-push-button-prefix
3321 :button-suffix 'widget-push-button-suffix
a3c88c59
PA
3322 :prompt-value 'widget-choice-prompt-value)
3323
3324(defun widget-choice-prompt-value (widget prompt value unbound)
bfa6c260 3325 "Make a choice."
a3c88c59
PA
3326 (let ((args (widget-get widget :args))
3327 (completion-ignore-case (widget-get widget :case-fold))
3328 current choices old)
7fdbdbea 3329 ;; Find the first arg that matches VALUE.
a3c88c59
PA
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)))
3347 (t
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)))
fc56773e 3365\f
d543e20b
PA
3366(define-widget 'radio 'radio-button-choice
3367 "A union of several sexp types."
3368 :tag "Choice"
a3c88c59
PA
3369 :format "%{%t%}:\n%v"
3370 :prompt-value 'widget-choice-prompt-value)
d543e20b
PA
3371
3372(define-widget 'repeat 'editable-list
3373 "A variable length homogeneous list."
3374 :tag "Repeat"
3375 :format "%{%t%}:\n%v%i\n")
3376
3377(define-widget 'set 'checklist
3378 "A list of members from a fixed set."
3379 :tag "Set"
3380 :format "%{%t%}:\n%v")
3381
3382(define-widget 'boolean 'toggle
3383 "To be nil or non-nil, that is the question."
3384 :tag "Boolean"
6d528fc5 3385 :prompt-value 'widget-boolean-prompt-value
8697863a
PA
3386 :button-prefix 'widget-push-button-prefix
3387 :button-suffix 'widget-push-button-suffix
c6753d66
RS
3388 :format "%{%t%}: %[Toggle%] %v\n"
3389 :on "on (non-nil)"
3390 :off "off (nil)")
d543e20b 3391
6d528fc5
PA
3392(defun widget-boolean-prompt-value (widget prompt value unbound)
3393 ;; Toggle a boolean.
a3c88c59 3394 (y-or-n-p prompt))
fc56773e 3395\f
d543e20b
PA
3396;;; The `color' Widget.
3397
bd1f16ce 3398;; Fixme: match
bfa6c260 3399(define-widget 'color 'editable-field
0f648ca2
PA
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)
3409
3410(defun widget-color-complete (widget)
3411 "Complete the color in WIDGET."
99f01612 3412 (require 'facemenu) ; for facemenu-color-alist
0f648ca2
PA
3413 (let* ((prefix (buffer-substring-no-properties (widget-field-start widget)
3414 (point)))
99f01612
DL
3415 (list (or facemenu-color-alist
3416 (mapcar 'list (defined-colors))))
0f648ca2
PA
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))))
3424 (t
3425 (message "Making completion list...")
7fdbdbea
DL
3426 (with-output-to-temp-buffer "*Completions*"
3427 (display-completion-list (all-completions prefix list nil)))
0f648ca2 3428 (message "Making completion list...done")))))
d543e20b 3429
0f648ca2 3430(defun widget-color-sample-face-get (widget)
4ee1cf9f
PA
3431 (let* ((value (condition-case nil
3432 (widget-value widget)
76834555
GM
3433 (error (widget-get widget :value)))))
3434 (if (color-defined-p value)
546cf5b0 3435 (list (cons 'foreground-color value))
76834555 3436 'default)))
d543e20b 3437
d543e20b 3438(defun widget-color-action (widget &optional event)
bd1f16ce 3439 "Prompt for a color."
d543e20b
PA
3440 (let* ((tag (widget-apply widget :menu-tag-get))
3441 (prompt (concat tag ": "))
4ee1cf9f
PA
3442 (value (widget-value widget))
3443 (start (widget-field-start widget))
3444 (pos (cond ((< (point) start)
3445 0)
3446 ((> (point) (+ start (length value)))
3447 (length value))
3448 (t
3449 (- (point) start))))
99f01612 3450 (answer (facemenu-read-color prompt)))
d543e20b
PA
3451 (unless (zerop (length answer))
3452 (widget-value-set widget answer)
0a3a0b56
PA
3453 (widget-setup)
3454 (widget-apply widget :notify widget event))))
d543e20b 3455
0f648ca2
PA
3456(defun widget-color-notify (widget child &optional event)
3457 "Update the sample, and notofy the parent."
bfa6c260 3458 (overlay-put (widget-get widget :sample-overlay)
0f648ca2
PA
3459 'face (widget-apply widget :sample-face-get))
3460 (widget-default-notify widget child event))
fc56773e 3461\f
d543e20b
PA
3462;;; The Help Echo
3463
d543e20b 3464(defun widget-echo-help (pos)
233d5cde 3465 "Display help-echo text for widget at POS."
d543e20b
PA
3466 (let* ((widget (widget-at pos))
3467 (help-echo (and widget (widget-get widget :help-echo))))
233d5cde
DL
3468 (if (functionp help-echo)
3469 (setq help-echo (funcall help-echo widget)))
3470 (if (stringp help-echo)
bfa6c260 3471 (message "%s" help-echo))))
d543e20b
PA
3472
3473;;; The End:
3474
3475(provide 'wid-edit)
3476
aeba6f9a 3477;;; wid-edit.el ends here