Mark PGG obsolete.
[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;;
937382fa 3;; Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
114f9c96 4;; 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
d543e20b
PA
5;;
6;; Author: Per Abrahamsen <abraham@dina.kvl.dk>
a89a9d34 7;; Maintainer: FSF
d543e20b 8;; Keywords: extensions
bd78fa1d 9;; Package: emacs
d543e20b 10
ef3f635f
RS
11;; This file is part of GNU Emacs.
12
eb3fa2cf 13;; GNU Emacs is free software: you can redistribute it and/or modify
ef3f635f 14;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
15;; the Free Software Foundation, either version 3 of the License, or
16;; (at your option) any later version.
ef3f635f
RS
17
18;; GNU Emacs is distributed in the hope that it will be useful,
19;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21;; GNU General Public License for more details.
22
23;; You should have received a copy of the GNU General Public License
eb3fa2cf 24;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
ef3f635f 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(defun widget-button-release-event-p (event)
67 "Non-nil if EVENT is a mouse-button-release event object."
68 (and (eventp event)
69 (memq (event-basic-type event) '(mouse-1 mouse-2 mouse-3))
70 (or (memq 'click (event-modifiers event))
71 (memq 'drag (event-modifiers event)))))
d543e20b
PA
72
73;;; Customization.
74
75(defgroup widgets nil
76 "Customization support for the Widget Library."
77 :link '(custom-manual "(widget)Top")
62f44662 78 :link '(emacs-library-link :tag "Lisp File" "widget.el")
d543e20b 79 :prefix "widget-"
6f320937 80 :group 'extensions)
d543e20b 81
8697863a 82(defgroup widget-documentation nil
cb9026a3 83 "Options controlling the display of documentation strings."
8697863a
PA
84 :group 'widgets)
85
6aaedd12
PA
86(defgroup widget-faces nil
87 "Faces used by the widget library."
88 :group 'widgets
89 :group 'faces)
90
0efefc52 91(defvar widget-documentation-face 'widget-documentation
a89a9d34 92 "Face used for documentation strings in widgets.
0b296dac
RS
93This exists as a variable so it can be set locally in certain buffers.")
94
0efefc52
MB
95(defface widget-documentation '((((class color)
96 (background dark))
97 (:foreground "lime green"))
98 (((class color)
99 (background light))
100 (:foreground "dark green"))
101 (t nil))
8697863a
PA
102 "Face used for documentation text."
103 :group 'widget-documentation
104 :group 'widget-faces)
c4f6e489
GM
105(define-obsolete-face-alias 'widget-documentation-face
106 'widget-documentation "22.1")
8697863a 107
0efefc52 108(defvar widget-button-face 'widget-button
a89a9d34 109 "Face used for buttons in widgets.
2f477381
RS
110This exists as a variable so it can be set locally in certain buffers.")
111
0efefc52 112(defface widget-button '((t (:weight bold)))
d543e20b 113 "Face used for widget buttons."
6aaedd12 114 :group 'widget-faces)
c4f6e489 115(define-obsolete-face-alias 'widget-button-face 'widget-button "22.1")
d543e20b
PA
116
117(defcustom widget-mouse-face 'highlight
118 "Face used for widget buttons when the mouse is above them."
119 :type 'face
6aaedd12 120 :group 'widget-faces)
d543e20b 121
2670cf80
EZ
122;; TTY gets special definitions here and in the next defface, because
123;; the gray colors defined for other displays cause black text on a black
124;; background, at least on light-background TTYs.
0efefc52
MB
125(defface widget-field '((((type tty))
126 :background "yellow3"
127 :foreground "black")
128 (((class grayscale color)
129 (background light))
130 :background "gray85")
131 (((class grayscale color)
132 (background dark))
133 :background "dim gray")
134 (t
135 :slant italic))
d543e20b 136 "Face used for editable fields."
6aaedd12 137 :group 'widget-faces)
c4f6e489 138(define-obsolete-face-alias 'widget-field-face 'widget-field "22.1")
0efefc52
MB
139
140(defface widget-single-line-field '((((type tty))
141 :background "green3"
142 :foreground "black")
143 (((class grayscale color)
144 (background light))
145 :background "gray85")
146 (((class grayscale color)
147 (background dark))
148 :background "dim gray")
149 (t
150 :slant italic))
c953515e
PA
151 "Face used for editable fields spanning only a single line."
152 :group 'widget-faces)
c4f6e489
GM
153(define-obsolete-face-alias 'widget-single-line-field-face
154 'widget-single-line-field "22.1")
c953515e 155
33eae9c0
RS
156;;; This causes display-table to be loaded, and not usefully.
157;;;(defvar widget-single-line-display-table
158;;; (let ((table (make-display-table)))
159;;; (aset table 9 "^I")
160;;; (aset table 10 "^J")
161;;; table)
162;;; "Display table used for single-line editable fields.")
163
164;;;(when (fboundp 'set-face-display-table)
165;;; (set-face-display-table 'widget-single-line-field-face
166;;; widget-single-line-display-table))
c953515e 167
d543e20b
PA
168;;; Utility functions.
169;;
170;; These are not really widget specific.
171
d543e20b 172(defun widget-princ-to-string (object)
bfa6c260
DL
173 "Return string representation of OBJECT, any Lisp object.
174No quoting characters are used; no delimiters are printed around
175the contents of strings."
176 (with-output-to-string
177 (princ object)))
d543e20b
PA
178
179(defun widget-clear-undo ()
180 "Clear all undo information."
181 (buffer-disable-undo (current-buffer))
182 (buffer-enable-undo))
183
a3c88c59
PA
184(defcustom widget-menu-max-size 40
185 "Largest number of items allowed in a popup-menu.
186Larger menus are read through the minibuffer."
187 :group 'widgets
188 :type 'integer)
189
703c3a11
KH
190(defcustom widget-menu-max-shortcuts 40
191 "Largest number of items for which it works to choose one with a character.
192For a larger number of items, the minibuffer is used."
193 :group 'widgets
194 :type 'integer)
195
196(defcustom widget-menu-minibuffer-flag nil
9201cc28 197 "Control how to ask for a choice from the keyboard.
0b296dac
RS
198Non-nil means use the minibuffer;
199nil means read a single character."
200 :group 'widgets
201 :type 'boolean)
202
d543e20b
PA
203(defun widget-choose (title items &optional event)
204 "Choose an item from a list.
205
206First argument TITLE is the name of the list.
77339a6e 207Second argument ITEMS is a list whose members are either
6d528fc5
PA
208 (NAME . VALUE), to indicate selectable items, or just strings to
209 indicate unselectable items.
d543e20b
PA
210Optional third argument EVENT is an input event.
211
212The user is asked to choose between each NAME from the items alist,
213and the VALUE of the chosen element will be returned. If EVENT is a
214mouse event, and the number of elements in items is less than
215`widget-menu-max-size', a popup menu will be used, otherwise the
216minibuffer."
217 (cond ((and (< (length items) widget-menu-max-size)
fb55ff10 218 event (display-popup-menus-p))
7fdbdbea 219 ;; Mouse click.
d543e20b
PA
220 (x-popup-menu event
221 (list title (cons "" items))))
703c3a11
KH
222 ((or widget-menu-minibuffer-flag
223 (> (length items) widget-menu-max-shortcuts))
0b296dac 224 ;; Read the choice of name from the minibuffer.
e5dfabb4 225 (setq items (widget-remove-if 'stringp items))
d543e20b
PA
226 (let ((val (completing-read (concat title ": ") items nil t)))
227 (if (stringp val)
228 (let ((try (try-completion val items)))
229 (when (stringp try)
230 (setq val try))
bfa6c260 231 (cdr (assoc val items))))))
0b296dac
RS
232 (t
233 ;; Construct a menu of the choices
234 ;; and then use it for prompting for a single character.
7fdbdbea
DL
235 (let* ((overriding-terminal-local-map (make-sparse-keymap))
236 (next-digit ?0)
237 map choice some-choice-enabled value)
0b296dac
RS
238 ;; Define SPC as a prefix char to get to this menu.
239 (define-key overriding-terminal-local-map " "
240 (setq map (make-sparse-keymap title)))
7c0a9c8f 241 (with-current-buffer (get-buffer-create " widget-choose")
d4b8422f
RS
242 (erase-buffer)
243 (insert "Available choices:\n\n")
244 (while items
245 (setq choice (car items) items (cdr items))
246 (if (consp choice)
247 (let* ((name (car choice))
248 (function (cdr choice)))
249 (insert (format "%c = %s\n" next-digit name))
cfc198e5
RS
250 (define-key map (vector next-digit) function)
251 (setq some-choice-enabled t)))
d4b8422f
RS
252 ;; Allocate digits to disabled alternatives
253 ;; so that the digit of a given alternative never varies.
254 (setq next-digit (1+ next-digit)))
b0c8b840
JD
255 (insert "\nC-g = Quit")
256 (goto-char (point-min))
257 (forward-line))
cfc198e5
RS
258 (or some-choice-enabled
259 (error "None of the choices is currently meaningful"))
d4b8422f 260 (define-key map [?\C-g] 'keyboard-quit)
0b296dac 261 (define-key map [t] 'keyboard-quit)
4d52438e
KH
262 (define-key map [?\M-\C-v] 'scroll-other-window)
263 (define-key map [?\M--] 'negative-argument)
0b296dac 264 (setcdr map (nreverse (cdr map)))
0b296dac
RS
265 ;; Read a char with the menu, and return the result
266 ;; that corresponds to it.
d4b8422f 267 (save-window-excursion
4d52438e 268 (let ((buf (get-buffer " widget-choose")))
d970106b 269 (fit-window-to-buffer (display-buffer buf))
4d52438e
KH
270 (let ((cursor-in-echo-area t)
271 keys
272 (char 0)
273 (arg 1))
421be070
RS
274 (while (not (or (and (integerp char)
275 (>= char ?0) (< char next-digit))
4d52438e
KH
276 (eq value 'keyboard-quit)))
277 ;; Unread a SPC to lead to our new menu.
00d00aa9 278 (setq unread-command-events (cons ?\s unread-command-events))
4d52438e 279 (setq keys (read-key-sequence title))
bfa6c260
DL
280 (setq value
281 (lookup-key overriding-terminal-local-map keys t)
421be070 282 char (aref keys 1))
4d52438e 283 (cond ((eq value 'scroll-other-window)
bfa6c260
DL
284 (let ((minibuffer-scroll-window
285 (get-buffer-window buf)))
4d52438e 286 (if (> 0 arg)
bfa6c260
DL
287 (scroll-other-window-down
288 (window-height minibuffer-scroll-window))
4d52438e
KH
289 (scroll-other-window))
290 (setq arg 1)))
291 ((eq value 'negative-argument)
292 (setq arg -1))
293 (t
294 (setq arg 1)))))))
0b296dac
RS
295 (when (eq value 'keyboard-quit)
296 (error "Canceled"))
297 value))))
d543e20b 298
e5dfabb4
RS
299(defun widget-remove-if (predictate list)
300 (let (result (tail list))
301 (while tail
302 (or (funcall predictate (car tail))
303 (setq result (cons (car tail) result)))
304 (setq tail (cdr tail)))
305 (nreverse result)))
306
d543e20b 307;;; Widget text specifications.
77339a6e 308;;
bfa6c260 309;; These functions are for specifying text properties.
d543e20b 310
7c0a9c8f
SM
311;; We can set it to nil now that get_local_map uses get_pos_property.
312(defconst widget-field-add-space nil
8697863a 313 "Non-nil means add extra space at the end of editable text fields.
8697863a 314If you don't add the space, it will become impossible to edit a zero
bfa6c260 315size field.")
8697863a 316
bfa6c260 317(defvar widget-field-use-before-change t
da5ec617 318 "Non-nil means use `before-change-functions' to track editable fields.
c790cad4
GM
319This enables the use of undo. Using before hooks also means that
320the :notify function can't know the new value.")
da5ec617 321
d543e20b 322(defun widget-specify-field (widget from to)
0a3a0b56 323 "Specify editable button for WIDGET between FROM and TO."
0ce5b5d5
PA
324 ;; Terminating space is not part of the field, but necessary in
325 ;; order for local-map to work. Remove next sexp if local-map works
326 ;; at the end of the overlay.
327 (save-excursion
328 (goto-char to)
62f44662
PA
329 (cond ((null (widget-get widget :size))
330 (forward-char 1))
331 (widget-field-add-space
332 (insert-and-inherit " ")))
0ce5b5d5 333 (setq to (point)))
a850ac03 334 (let ((keymap (widget-get widget :keymap))
0efefc52 335 (face (or (widget-get widget :value-face) 'widget-field))
a850ac03 336 (help-echo (widget-get widget :help-echo))
0fa42821 337 (follow-link (widget-get widget :follow-link))
a850ac03
MB
338 (rear-sticky
339 (or (not widget-field-add-space) (widget-get widget :size))))
233d5cde 340 (if (functionp help-echo)
77339a6e 341 (setq help-echo 'widget-mouse-help))
1d3c7fd6 342 (when (= (char-before to) ?\n)
a850ac03
MB
343 ;; When the last character in the field is a newline, we want to
344 ;; give it a `field' char-property of `boundary', which helps the
345 ;; C-n/C-p act more naturally when entering/leaving the field. We
1d3c7fd6 346 ;; do this by making a small secondary overlay to contain just that
a850ac03
MB
347 ;; one character.
348 (let ((overlay (make-overlay (1- to) to nil t nil)))
349 (overlay-put overlay 'field 'boundary)
263a40a6
RS
350 ;; We need the real field for tabbing.
351 (overlay-put overlay 'real-field widget)
5701edda
DL
352 ;; Use `local-map' here, not `keymap', so that normal editing
353 ;; works in the field when, say, Custom uses `suppress-keymap'.
354 (overlay-put overlay 'local-map keymap)
a850ac03 355 (overlay-put overlay 'face face)
0fa42821 356 (overlay-put overlay 'follow-link follow-link)
a850ac03
MB
357 (overlay-put overlay 'help-echo help-echo))
358 (setq to (1- to))
359 (setq rear-sticky t))
360 (let ((overlay (make-overlay from to nil nil rear-sticky)))
361 (widget-put widget :field-overlay overlay)
362 ;;(overlay-put overlay 'detachable nil)
363 (overlay-put overlay 'field widget)
5701edda 364 (overlay-put overlay 'local-map keymap)
a850ac03 365 (overlay-put overlay 'face face)
0fa42821 366 (overlay-put overlay 'follow-link follow-link)
a850ac03 367 (overlay-put overlay 'help-echo help-echo)))
e9367b9c
RS
368 (widget-specify-secret widget))
369
370(defun widget-specify-secret (field)
371 "Replace text in FIELD with value of `:secret', if non-nil."
372 (let ((secret (widget-get field :secret))
373 (size (widget-get field :size)))
374 (when secret
375 (let ((begin (widget-field-start field))
376 (end (widget-field-end field)))
bfa6c260 377 (when size
e9367b9c 378 (while (and (> end begin)
00d00aa9 379 (eq (char-after (1- end)) ?\s))
e9367b9c
RS
380 (setq end (1- end))))
381 (while (< begin end)
382 (let ((old (char-after begin)))
383 (unless (eq old secret)
384 (subst-char-in-region begin (1+ begin) old secret)
385 (put-text-property begin (1+ begin) 'secret old))
386 (setq begin (1+ begin))))))))
d543e20b 387
d543e20b 388(defun widget-specify-button (widget from to)
0a3a0b56 389 "Specify button for WIDGET between FROM and TO."
233d5cde 390 (let ((overlay (make-overlay from to nil t nil))
0fa42821 391 (follow-link (widget-get widget :follow-link))
233d5cde 392 (help-echo (widget-get widget :help-echo)))
0a3a0b56 393 (widget-put widget :button-overlay overlay)
233d5cde
DL
394 (if (functionp help-echo)
395 (setq help-echo 'widget-mouse-help))
0a3a0b56 396 (overlay-put overlay 'button widget)
7fdbdbea 397 (overlay-put overlay 'keymap (widget-get widget :keymap))
f24485f1 398 (overlay-put overlay 'evaporate t)
bfa6c260
DL
399 ;; We want to avoid the face with image buttons.
400 (unless (widget-get widget :suppress-face)
5eb8942b 401 (overlay-put overlay 'face (widget-apply widget :button-face-get))
3bff434b 402 (overlay-put overlay 'mouse-face
cc2fba21
RS
403 ;; Make new list structure for the mouse-face value
404 ;; so that different widgets will have
405 ;; different `mouse-face' property values
406 ;; and will highlight separately.
407 (let ((mouse-face-value
408 (widget-apply widget :mouse-face-get)))
409 ;; If it's a list, copy it.
410 (if (listp mouse-face-value)
411 (copy-sequence mouse-face-value)
412 ;; If it's a symbol, put it in a list.
413 (list mouse-face-value)))))
0e726aa5 414 (overlay-put overlay 'pointer 'hand)
0fa42821 415 (overlay-put overlay 'follow-link follow-link)
233d5cde
DL
416 (overlay-put overlay 'help-echo help-echo)))
417
418(defun widget-mouse-help (window overlay point)
419 "Help-echo callback for widgets whose :help-echo is a function."
420 (with-current-buffer (overlay-buffer overlay)
421 (let* ((widget (widget-at (overlay-start overlay)))
422 (help-echo (if widget (widget-get widget :help-echo))))
423 (if (functionp help-echo)
424 (funcall help-echo widget)
425 help-echo))))
d543e20b 426
d543e20b 427(defun widget-specify-sample (widget from to)
bfa6c260 428 "Specify sample for WIDGET between FROM and TO."
7fdbdbea
DL
429 (let ((overlay (make-overlay from to nil t nil)))
430 (overlay-put overlay 'face (widget-apply widget :sample-face-get))
f24485f1 431 (overlay-put overlay 'evaporate t)
0f648ca2
PA
432 (widget-put widget :sample-overlay overlay)))
433
d543e20b 434(defun widget-specify-doc (widget from to)
bfa6c260 435 "Specify documentation for WIDGET between FROM and TO."
4ee1cf9f
PA
436 (let ((overlay (make-overlay from to nil t nil)))
437 (overlay-put overlay 'widget-doc widget)
438 (overlay-put overlay 'face widget-documentation-face)
f24485f1 439 (overlay-put overlay 'evaporate t)
4ee1cf9f 440 (widget-put widget :doc-overlay overlay)))
d543e20b
PA
441
442(defmacro widget-specify-insert (&rest form)
bfa6c260
DL
443 "Execute FORM without inheriting any text properties."
444 `(save-restriction
445 (let ((inhibit-read-only t)
407e43be
SM
446 (inhibit-modification-hooks t))
447 (narrow-to-region (point) (point))
448 (prog1 (progn ,@form)
449 (goto-char (point-max))))))
d543e20b 450
6866bf6a
JL
451(defface widget-inactive
452 '((t :inherit shadow))
d543e20b 453 "Face used for inactive widgets."
6aaedd12 454 :group 'widget-faces)
c4f6e489
GM
455(define-obsolete-face-alias 'widget-inactive-face
456 'widget-inactive "22.1")
d543e20b
PA
457
458(defun widget-specify-inactive (widget from to)
459 "Make WIDGET inactive for user modifications."
460 (unless (widget-get widget :inactive)
461 (let ((overlay (make-overlay from to nil t nil)))
0efefc52 462 (overlay-put overlay 'face 'widget-inactive)
6aaedd12 463 ;; This is disabled, as it makes the mouse cursor change shape.
0efefc52 464 ;; (overlay-put overlay 'mouse-face 'widget-inactive)
6d528fc5
PA
465 (overlay-put overlay 'evaporate t)
466 (overlay-put overlay 'priority 100)
a89a9d34 467 (overlay-put overlay 'modification-hooks '(widget-overlay-inactive))
d543e20b
PA
468 (widget-put widget :inactive overlay))))
469
470(defun widget-overlay-inactive (&rest junk)
471 "Ignoring the arguments, signal an error."
472 (unless inhibit-read-only
a89a9d34 473 (error "The widget here is not active")))
d543e20b
PA
474
475
476(defun widget-specify-active (widget)
477 "Make WIDGET active for user modifications."
478 (let ((inactive (widget-get widget :inactive)))
479 (when inactive
480 (delete-overlay inactive)
481 (widget-put widget :inactive nil))))
482
483;;; Widget Properties.
484
485(defsubst widget-type (widget)
e5784820 486 "Return the type of WIDGET. The type is a symbol."
d543e20b
PA
487 (car widget))
488
0e520006
PA
489;;;###autoload
490(defun widgetp (widget)
4837b516 491 "Return non-nil if WIDGET is a widget."
0e520006
PA
492 (if (symbolp widget)
493 (get widget 'widget-type)
494 (and (consp widget)
bbc562cc
PA
495 (symbolp (car widget))
496 (get (car widget) 'widget-type))))
0e520006 497
944c91b6
PA
498(defun widget-get-indirect (widget property)
499 "In WIDGET, get the value of PROPERTY.
bfa6c260 500If the value is a symbol, return its binding.
944c91b6
PA
501Otherwise, just return the value."
502 (let ((value (widget-get widget property)))
503 (if (symbolp value)
504 (symbol-value value)
505 value)))
506
d543e20b 507(defun widget-member (widget property)
4837b516 508 "Non-nil if there is a definition in WIDGET for PROPERTY."
ff83e968 509 (cond ((plist-member (cdr widget) property)
d543e20b
PA
510 t)
511 ((car widget)
512 (widget-member (get (car widget) 'widget-type) property))
513 (t nil)))
514
d543e20b
PA
515(defun widget-value (widget)
516 "Extract the current value of WIDGET."
517 (widget-apply widget
518 :value-to-external (widget-apply widget :value-get)))
519
520(defun widget-value-set (widget value)
521 "Set the current value of WIDGET to VALUE."
522 (widget-apply widget
523 :value-set (widget-apply widget
524 :value-to-internal value)))
525
783824f5 526(defun widget-default-get (widget)
4c2f559e 527 "Extract the default external value of WIDGET."
77339a6e 528 (widget-apply widget :value-to-external
4c2f559e
PA
529 (or (widget-get widget :value)
530 (widget-apply widget :default-get))))
783824f5 531
d543e20b 532(defun widget-match-inline (widget vals)
a89a9d34 533 "In WIDGET, match the start of VALS."
d543e20b
PA
534 (cond ((widget-get widget :inline)
535 (widget-apply widget :match-inline vals))
b2aeee30 536 ((and (listp vals)
d543e20b
PA
537 (widget-apply widget :match (car vals)))
538 (cons (list (car vals)) (cdr vals)))
539 (t nil)))
540
541(defun widget-apply-action (widget &optional event)
542 "Apply :action in WIDGET in response to EVENT."
8697863a
PA
543 (if (widget-apply widget :active)
544 (widget-apply widget :action event)
545 (error "Attempt to perform action on inactive widget")))
6d528fc5 546
a3c88c59
PA
547;;; Helper functions.
548;;
549;; These are widget specific.
550
551;;;###autoload
552(defun widget-prompt-value (widget prompt &optional value unbound)
553 "Prompt for a value matching WIDGET, using PROMPT.
554The current value is assumed to be VALUE, unless UNBOUND is non-nil."
555 (unless (listp widget)
556 (setq widget (list widget)))
557 (setq prompt (format "[%s] %s" (widget-type widget) prompt))
558 (setq widget (widget-convert widget))
559 (let ((answer (widget-apply widget :prompt-value prompt value unbound)))
560 (unless (widget-apply widget :match answer)
bfa6c260 561 (error "Value does not match %S type" (car widget)))
a3c88c59
PA
562 answer))
563
564(defun widget-get-sibling (widget)
565 "Get the item WIDGET is assumed to toggle.
566This is only meaningful for radio buttons or checkboxes in a list."
7fdbdbea 567 (let* ((children (widget-get (widget-get widget :parent) :children))
a3c88c59
PA
568 child)
569 (catch 'child
570 (while children
571 (setq child (car children)
572 children (cdr children))
573 (when (eq (widget-get child :button) widget)
574 (throw 'child child)))
575 nil)))
576
6aaedd12
PA
577(defun widget-map-buttons (function &optional buffer maparg)
578 "Map FUNCTION over the buttons in BUFFER.
579FUNCTION is called with the arguments WIDGET and MAPARG.
580
581If FUNCTION returns non-nil, the walk is cancelled.
582
583The arguments MAPARG, and BUFFER default to nil and (current-buffer),
584respectively."
585 (let ((cur (point-min))
586 (widget nil)
6aaedd12 587 (overlays (if buffer
7c0a9c8f 588 (with-current-buffer buffer (overlay-lists))
6aaedd12
PA
589 (overlay-lists))))
590 (setq overlays (append (car overlays) (cdr overlays)))
591 (while (setq cur (pop overlays))
592 (setq widget (overlay-get cur 'button))
593 (if (and widget (funcall function widget maparg))
594 (setq overlays nil)))))
595
bfa6c260 596;;; Images.
d543e20b 597
bfa6c260 598(defcustom widget-image-directory (file-name-as-directory
0f936484 599 (expand-file-name "images/custom" data-directory))
bfa6c260 600 "Where widget button images are located.
d543e20b 601If this variable is nil, widget will try to locate the directory
25ac13b5 602automatically."
d543e20b
PA
603 :group 'widgets
604 :type 'directory)
605
bfa6c260 606(defcustom widget-image-enable t
80b709bc 607 "If non-nil, use image buttons in widgets when available."
bfa6c260 608 :version "21.1"
d543e20b
PA
609 :group 'widgets
610 :type 'boolean)
611
25ac13b5
PA
612(defcustom widget-image-conversion
613 '((xpm ".xpm") (gif ".gif") (png ".png") (jpeg ".jpg" ".jpeg")
614 (xbm ".xbm"))
615 "Conversion alist from image formats to file name suffixes."
616 :group 'widgets
617 :type '(repeat (cons :format "%v"
618 (symbol :tag "Image Format" unknown)
619 (repeat :tag "Suffixes"
620 (string :format "%v")))))
621
bfa6c260
DL
622(defun widget-image-find (image)
623 "Create a graphical button from IMAGE.
624IMAGE should either already be an image, or be a file name sans
3acab5ef 625extension (xpm, xbm, gif, jpg, or png) located in
bfa6c260
DL
626`widget-image-directory' or otherwise where `find-image' will find it."
627 (cond ((not (and image widget-image-enable (display-graphic-p)))
628 ;; We don't want or can't use images.
3acab5ef 629 nil)
bfa6c260
DL
630 ((and (consp image)
631 (eq 'image (car image)))
632 ;; Already an image spec. Use it.
3acab5ef 633 image)
25ac13b5
PA
634 ((stringp image)
635 ;; A string. Look it up in relevant directories.
bfa6c260 636 (let* ((load-path (cons widget-image-directory load-path))
bfa6c260
DL
637 specs)
638 (dolist (elt widget-image-conversion)
639 (dolist (ext (cdr elt))
01898dc2
CY
640 (push (list :type (car elt) :file (concat image ext)
641 :ascent 'center) specs)))
647f9993 642 (find-image (nreverse specs))))
d543e20b 643 (t
25ac13b5 644 ;; Oh well.
3acab5ef
PA
645 nil)))
646
0efefc52 647(defvar widget-button-pressed-face 'widget-button-pressed
bfa6c260
DL
648 "Face used for pressed buttons in widgets.
649This exists as a variable so it can be set locally in certain
650buffers.")
651
652(defun widget-image-insert (widget tag image &optional down inactive)
3acab5ef 653 "In WIDGET, insert the text TAG or, if supported, IMAGE.
bfa6c260
DL
654IMAGE should either be an image or an image file name sans extension
655\(xpm, xbm, gif, jpg, or png) located in `widget-image-directory'.
656
657Optional arguments DOWN and INACTIVE are used instead of IMAGE when the
658button is pressed or inactive, respectively. These are currently ignored."
6f320937 659 (if (and (featurep 'image)
bfa6c260
DL
660 (setq image (widget-image-find image)))
661 (progn (widget-put widget :suppress-face t)
f331f1f8 662 (insert-image image tag))
bfa6c260 663 (insert tag)))
d543e20b 664
e6038ca3
CY
665(defun widget-move-and-invoke (event)
666 "Move to where you click, and if it is an active field, invoke it."
667 (interactive "e")
668 (mouse-set-point event)
87911bdb
CY
669 (let ((pos (widget-event-point event)))
670 (if (and pos (get-char-property pos 'button))
671 (widget-button-click event))))
e6038ca3 672
25ac13b5
PA
673;;; Buttons.
674
675(defgroup widget-button nil
676 "The look of various kinds of buttons."
677 :group 'widgets)
678
679(defcustom widget-button-prefix ""
680 "String used as prefix for buttons."
681 :type 'string
3acab5ef 682 :group 'widget-button)
25ac13b5
PA
683
684(defcustom widget-button-suffix ""
685 "String used as suffix for buttons."
686 :type 'string
3acab5ef 687 :group 'widget-button)
25ac13b5 688
d543e20b
PA
689;;; Creating Widgets.
690
691;;;###autoload
692(defun widget-create (type &rest args)
bfa6c260 693 "Create widget of TYPE.
d543e20b
PA
694The optional ARGS are additional keyword arguments."
695 (let ((widget (apply 'widget-convert type args)))
696 (widget-apply widget :create)
697 widget))
698
699(defun widget-create-child-and-convert (parent type &rest args)
700 "As part of the widget PARENT, create a child widget TYPE.
701The child is converted, using the keyword arguments ARGS."
702 (let ((widget (apply 'widget-convert type args)))
703 (widget-put widget :parent parent)
704 (unless (widget-get widget :indent)
705 (widget-put widget :indent (+ (or (widget-get parent :indent) 0)
706 (or (widget-get widget :extra-offset) 0)
707 (widget-get parent :offset))))
708 (widget-apply widget :create)
709 widget))
710
711(defun widget-create-child (parent type)
712 "Create widget of TYPE."
4c2f559e 713 (let ((widget (widget-copy type)))
d543e20b
PA
714 (widget-put widget :parent parent)
715 (unless (widget-get widget :indent)
716 (widget-put widget :indent (+ (or (widget-get parent :indent) 0)
717 (or (widget-get widget :extra-offset) 0)
718 (widget-get parent :offset))))
719 (widget-apply widget :create)
720 widget))
721
722(defun widget-create-child-value (parent type value)
723 "Create widget of TYPE with value VALUE."
4c2f559e 724 (let ((widget (widget-copy type)))
d543e20b
PA
725 (widget-put widget :value (widget-apply widget :value-to-internal value))
726 (widget-put widget :parent parent)
727 (unless (widget-get widget :indent)
728 (widget-put widget :indent (+ (or (widget-get parent :indent) 0)
729 (or (widget-get widget :extra-offset) 0)
730 (widget-get parent :offset))))
731 (widget-apply widget :create)
732 widget))
733
734;;;###autoload
735(defun widget-delete (widget)
736 "Delete WIDGET."
737 (widget-apply widget :delete))
738
4c2f559e
PA
739(defun widget-copy (widget)
740 "Make a deep copy of WIDGET."
741 (widget-apply (copy-sequence widget) :copy))
742
d543e20b 743(defun widget-convert (type &rest args)
bfa6c260 744 "Convert TYPE to a widget without inserting it in the buffer.
d543e20b
PA
745The optional ARGS are additional keyword arguments."
746 ;; Don't touch the type.
bfa6c260 747 (let* ((widget (if (symbolp type)
d543e20b 748 (list type)
ef3f635f 749 (copy-sequence type)))
d543e20b 750 (current widget)
ab6a3668 751 done
d543e20b
PA
752 (keys args))
753 ;; First set the :args keyword.
754 (while (cdr current) ;Look in the type.
ab6a3668
RS
755 (if (and (keywordp (cadr current))
756 ;; If the last element is a keyword,
757 ;; it is still the :args element,
758 ;; even though it is a keyword.
759 (cddr current))
760 (if (eq (cadr current) :args)
761 ;; If :args is explicitly specified, obey it.
762 (setq current nil)
763 ;; Some other irrelevant keyword.
764 (setq current (cdr (cdr current))))
7fdbdbea
DL
765 (setcdr current (list :args (cdr current)))
766 (setq current nil)))
ab6a3668
RS
767 (while (and args (not done)) ;Look in ARGS.
768 (cond ((eq (car args) :args)
769 ;; Handle explicit specification of :args.
770 (setq args (cadr args)
771 done t))
772 ((keywordp (car args))
773 (setq args (cddr args)))
774 (t (setq done t))))
775 (when done
776 (widget-put widget :args args))
d543e20b
PA
777 ;; Then Convert the widget.
778 (setq type widget)
779 (while type
780 (let ((convert-widget (plist-get (cdr type) :convert-widget)))
781 (if convert-widget
782 (setq widget (funcall convert-widget widget))))
783 (setq type (get (car type) 'widget-type)))
784 ;; Finally set the keyword args.
bfa6c260 785 (while keys
d543e20b 786 (let ((next (nth 0 keys)))
bfa6c260
DL
787 (if (keywordp next)
788 (progn
d543e20b
PA
789 (widget-put widget next (nth 1 keys))
790 (setq keys (nthcdr 2 keys)))
791 (setq keys nil))))
792 ;; Convert the :value to internal format.
793 (if (widget-member widget :value)
7fdbdbea
DL
794 (widget-put widget
795 :value (widget-apply widget
796 :value-to-internal
797 (widget-get widget :value))))
d543e20b
PA
798 ;; Return the newly create widget.
799 widget))
800
0e520006 801;;;###autoload
d543e20b 802(defun widget-insert (&rest args)
7fdbdbea 803 "Call `insert' with ARGS even if surrounding text is read only."
d543e20b 804 (let ((inhibit-read-only t)
7fdbdbea 805 (inhibit-modification-hooks t))
4ee1cf9f 806 (apply 'insert args)))
d543e20b 807
8697863a
PA
808(defun widget-convert-text (type from to
809 &optional button-from button-to
810 &rest args)
6aaedd12 811 "Return a widget of type TYPE with endpoint FROM TO.
00d00aa9
JB
812No text will be inserted to the buffer, instead the text between FROM
813and TO will be used as the widgets end points. If optional arguments
6aaedd12 814BUTTON-FROM and BUTTON-TO are given, these will be used as the widgets
8697863a
PA
815button end points.
816Optional ARGS are extra keyword arguments for TYPE."
817 (let ((widget (apply 'widget-convert type :delete 'widget-leave-text args))
6aaedd12 818 (from (copy-marker from))
2ff864e0 819 (to (copy-marker to)))
6aaedd12
PA
820 (set-marker-insertion-type from t)
821 (set-marker-insertion-type to nil)
822 (widget-put widget :from from)
823 (widget-put widget :to to)
824 (when button-from
825 (widget-specify-button widget button-from button-to))
826 widget))
827
8697863a 828(defun widget-convert-button (type from to &rest args)
6aaedd12 829 "Return a widget of type TYPE with endpoint FROM TO.
8697863a 830Optional ARGS are extra keyword arguments for TYPE.
6aaedd12
PA
831No text will be inserted to the buffer, instead the text between FROM
832and TO will be used as the widgets end points, as well as the widgets
833button end points."
8697863a
PA
834 (apply 'widget-convert-text type from to from to args))
835
836(defun widget-leave-text (widget)
837 "Remove markers and overlays from WIDGET and its children."
7fdbdbea 838 (let ((button (widget-get widget :button-overlay))
0f648ca2 839 (sample (widget-get widget :sample-overlay))
4ee1cf9f 840 (doc (widget-get widget :doc-overlay))
7fdbdbea
DL
841 (field (widget-get widget :field-overlay)))
842 (set-marker (widget-get widget :from) nil)
843 (set-marker (widget-get widget :to) nil)
208920be
PA
844 (when button
845 (delete-overlay button))
0f648ca2
PA
846 (when sample
847 (delete-overlay sample))
4ee1cf9f
PA
848 (when doc
849 (delete-overlay doc))
208920be
PA
850 (when field
851 (delete-overlay field))
7fdbdbea 852 (mapc 'widget-leave-text (widget-get widget :children))))
6aaedd12 853
d543e20b
PA
854;;; Keymap and Commands.
855
60d61f43
GM
856;; This alias exists only so that one can choose in doc-strings (e.g.
857;; Custom-mode) which key-binding of widget-keymap one wants to refer to.
858;; http://lists.gnu.org/archive/html/emacs-devel/2008-11/msg00480.html
8cb95edf
SM
859(define-obsolete-function-alias 'advertised-widget-backward
860 'widget-backward "23.2")
cd8990c1 861
0e520006 862;;;###autoload
bfa6c260
DL
863(defvar widget-keymap
864 (let ((map (make-sparse-keymap)))
865 (define-key map "\t" 'widget-forward)
82b1b71e 866 (define-key map "\e\t" 'widget-backward)
8cb95edf
SM
867 (define-key map [(shift tab)] 'widget-backward)
868 (put 'widget-backward :advertised-binding [(shift tab)])
bfa6c260
DL
869 (define-key map [backtab] 'widget-backward)
870 (define-key map [down-mouse-2] 'widget-button-click)
bb55f90e 871 (define-key map [down-mouse-1] 'widget-button-click)
2b786e07
JR
872 ;; The following definition needs to avoid using escape sequences that
873 ;; might get converted to ^M when building loaddefs.el
874 (define-key map [(control ?m)] 'widget-button-press)
bfa6c260 875 map)
d543e20b 876 "Keymap containing useful binding for buffers containing widgets.
56a03f46
GM
877Recommended as a parent keymap for modes using widgets.
878Note that such modes will need to require wid-edit.")
d543e20b 879
d543e20b 880(defvar widget-global-map global-map
f4b020f6 881 "Keymap used for events a widget does not handle itself.")
d543e20b
PA
882(make-variable-buffer-local 'widget-global-map)
883
bfa6c260
DL
884(defvar widget-field-keymap
885 (let ((map (copy-keymap widget-keymap)))
bfa6c260
DL
886 (define-key map "\C-k" 'widget-kill-line)
887 (define-key map "\M-\t" 'widget-complete)
888 (define-key map "\C-m" 'widget-field-activate)
8b9a0f45 889 ;; Since the widget code uses a `field' property to identify fields,
0697c662 890 ;; ordinary beginning-of-line does the right thing.
8b9a0f45 891 ;; (define-key map "\C-a" 'widget-beginning-of-line)
0697c662 892 (define-key map "\C-e" 'widget-end-of-line)
bfa6c260 893 map)
d543e20b
PA
894 "Keymap used inside an editable field.")
895
bfa6c260
DL
896(defvar widget-text-keymap
897 (let ((map (copy-keymap widget-keymap)))
8b9a0f45 898 ;; Since the widget code uses a `field' property to identify fields,
0697c662 899 ;; ordinary beginning-of-line does the right thing.
8b9a0f45 900 ;; (define-key map "\C-a" 'widget-beginning-of-line)
0697c662 901 (define-key map "\C-e" 'widget-end-of-line)
bfa6c260 902 map)
d543e20b
PA
903 "Keymap used inside a text field.")
904
d543e20b 905(defun widget-field-activate (pos &optional event)
e2896b22 906 "Invoke the editable field at point."
d543e20b 907 (interactive "@d")
a850ac03 908 (let ((field (widget-field-at pos)))
d543e20b
PA
909 (if field
910 (widget-apply-action field event)
911 (call-interactively
912 (lookup-key widget-global-map (this-command-keys))))))
913
0efefc52 914(defface widget-button-pressed
ea81d57e
DN
915 '((((min-colors 88) (class color))
916 (:foreground "red1"))
917 (((class color))
a3c88c59
PA
918 (:foreground "red"))
919 (t
e31c1fd5 920 (:weight bold :underline t)))
a3c88c59 921 "Face used for pressed buttons."
6aaedd12 922 :group 'widget-faces)
c4f6e489
GM
923(define-obsolete-face-alias 'widget-button-pressed-face
924 'widget-button-pressed "22.1")
a3c88c59 925
b0c4ae71
CY
926(defvar widget-button-click-moves-point nil
927 "If non-nil, `widget-button-click' moves point to a button after invoking it.
928If nil, point returns to its original position after invoking a button.")
929
d543e20b 930(defun widget-button-click (event)
bfa6c260 931 "Invoke the button that the mouse is pointing at."
bc3420db 932 (interactive "e")
bfa6c260 933 (if (widget-event-point event)
bc7b6e08
CY
934 (let* ((oevent event)
935 (mouse-1 (memq (event-basic-type event) '(mouse-1 down-mouse-1)))
936 (pos (widget-event-point event))
bc3420db 937 (start (event-start event))
77339a6e 938 (button (get-char-property
bc3420db 939 pos 'button (and (windowp (posn-window start))
b0c4ae71
CY
940 (window-buffer (posn-window start)))))
941 newpoint)
bc7b6e08
CY
942 (when (or (null button)
943 (catch 'button-press-cancelled
944 ;; Mouse click on a widget button. Do the following
945 ;; in a save-excursion so that the click on the button
946 ;; doesn't change point.
947 (save-selected-window
948 (select-window (posn-window (event-start event)))
949 (save-excursion
950 (goto-char (posn-point (event-start event)))
951 (let* ((overlay (widget-get button :button-overlay))
952 (pressed-face (or (widget-get button :pressed-face)
953 widget-button-pressed-face))
954 (face (overlay-get overlay 'face))
955 (mouse-face (overlay-get overlay 'mouse-face)))
956 (unwind-protect
957 ;; Read events, including mouse-movement
958 ;; events, waiting for a release event. If we
959 ;; began with a mouse-1 event and receive a
960 ;; movement event, that means the user wants
961 ;; to perform drag-selection, so cancel the
962 ;; button press and do the default mouse-1
963 ;; action. For mouse-2, just highlight/
964 ;; unhighlight the button the mouse was
965 ;; initially on when we move over it.
966 (save-excursion
967 (when face ; avoid changing around image
968 (overlay-put overlay 'face pressed-face)
969 (overlay-put overlay 'mouse-face pressed-face))
970 (unless (widget-apply button :mouse-down-action event)
971 (let ((track-mouse t))
972 (while (not (widget-button-release-event-p event))
973 (setq event (read-event))
974 (when (and mouse-1 (mouse-movement-p event))
975 (push event unread-command-events)
976 (setq event oevent)
977 (throw 'button-press-cancelled t))
0fdbf6bc
RS
978 (unless (or (integerp event)
979 (memq (car event) '(switch-frame select-window))
980 (eq (car event) 'scroll-bar-movement))
981 (setq pos (widget-event-point event))
982 (if (and pos
983 (eq (get-char-property pos 'button)
984 button))
985 (when face
986 (overlay-put overlay 'face pressed-face)
987 (overlay-put overlay 'mouse-face pressed-face))
988 (overlay-put overlay 'face face)
989 (overlay-put overlay 'mouse-face mouse-face))))))
bc7b6e08
CY
990
991 ;; When mouse is released over the button, run
992 ;; its action function.
b0c4ae71
CY
993 (when (and pos (eq (get-char-property pos 'button) button))
994 (goto-char pos)
995 (widget-apply-action button event)
996 (if widget-button-click-moves-point
997 (setq newpoint (point)))))
bc7b6e08
CY
998 (overlay-put overlay 'face face)
999 (overlay-put overlay 'mouse-face mouse-face))))
1000
b0c4ae71 1001 (if newpoint (goto-char newpoint))
bc7b6e08
CY
1002 ;; This loses if the widget action switches windows. -- cyd
1003 ;; (unless (pos-visible-in-window-p (widget-event-point event))
1004 ;; (mouse-set-point event)
1005 ;; (beginning-of-line)
1006 ;; (recenter))
1007 )
1008 nil))
38c3526f
RS
1009 (let ((up t) command)
1010 ;; Mouse click not on a widget button. Find the global
1011 ;; command to run, and check whether it is bound to an
1012 ;; up event.
bc7b6e08 1013 (if mouse-1
bfa6c260 1014 (cond ((setq command ;down event
38c3526f 1015 (lookup-key widget-global-map [down-mouse-1]))
bfa6c260
DL
1016 (setq up nil))
1017 ((setq command ;up event
38c3526f
RS
1018 (lookup-key widget-global-map [mouse-1]))))
1019 (cond ((setq command ;down event
1020 (lookup-key widget-global-map [down-mouse-2]))
1021 (setq up nil))
1022 ((setq command ;up event
1023 (lookup-key widget-global-map [mouse-2])))))
1024 (when up
1025 ;; Don't execute up events twice.
1026 (while (not (widget-button-release-event-p event))
1027 (setq event (read-event))))
1028 (when command
1029 (call-interactively command)))))
bfa6c260 1030 (message "You clicked somewhere weird.")))
a3c88c59 1031
d543e20b 1032(defun widget-button-press (pos &optional event)
25ac13b5 1033 "Invoke button at POS."
d543e20b 1034 (interactive "@d")
0a3a0b56 1035 (let ((button (get-char-property pos 'button)))
d543e20b
PA
1036 (if button
1037 (widget-apply-action button event)
1038 (let ((command (lookup-key widget-global-map (this-command-keys))))
1039 (when (commandp command)
1040 (call-interactively command))))))
1041
8697863a
PA
1042(defun widget-tabable-at (&optional pos)
1043 "Return the tabable widget at POS, or nil.
1044POS defaults to the value of (point)."
a850ac03 1045 (let ((widget (widget-at pos)))
8697863a
PA
1046 (if widget
1047 (let ((order (widget-get widget :tab-order)))
1048 (if order
1049 (if (>= order 0)
bfa6c260
DL
1050 widget)
1051 widget)))))
8697863a 1052
35194e3f 1053(defvar widget-use-overlay-change t
4ee1cf9f 1054 "If non-nil, use overlay change functions to tab around in the buffer.
c790cad4 1055This is much faster.")
4ee1cf9f 1056
d543e20b
PA
1057(defun widget-move (arg)
1058 "Move point to the ARG next field or button.
1059ARG may be negative to move backward."
0a3a0b56 1060 (or (bobp) (> arg 0) (backward-char))
ea13a2b4 1061 (let ((wrapped 0)
0a3a0b56 1062 (number arg)
407e43be 1063 (old (widget-tabable-at)))
0a3a0b56
PA
1064 ;; Forward.
1065 (while (> arg 0)
4ee1cf9f 1066 (cond ((eobp)
ea13a2b4
AS
1067 (goto-char (point-min))
1068 (setq wrapped (1+ wrapped)))
4ee1cf9f
PA
1069 (widget-use-overlay-change
1070 (goto-char (next-overlay-change (point))))
1071 (t
1072 (forward-char 1)))
ea13a2b4 1073 (and (= wrapped 2)
0a3a0b56
PA
1074 (eq arg number)
1075 (error "No buttons or fields found"))
8697863a 1076 (let ((new (widget-tabable-at)))
0a3a0b56
PA
1077 (when new
1078 (unless (eq new old)
8697863a 1079 (setq arg (1- arg))
0a3a0b56
PA
1080 (setq old new)))))
1081 ;; Backward.
1082 (while (< arg 0)
4ee1cf9f 1083 (cond ((bobp)
ea13a2b4
AS
1084 (goto-char (point-max))
1085 (setq wrapped (1+ wrapped)))
4ee1cf9f
PA
1086 (widget-use-overlay-change
1087 (goto-char (previous-overlay-change (point))))
1088 (t
1089 (backward-char 1)))
ea13a2b4 1090 (and (= wrapped 2)
0a3a0b56
PA
1091 (eq arg number)
1092 (error "No buttons or fields found"))
8697863a 1093 (let ((new (widget-tabable-at)))
0a3a0b56
PA
1094 (when new
1095 (unless (eq new old)
8697863a
PA
1096 (setq arg (1+ arg))))))
1097 (let ((new (widget-tabable-at)))
1098 (while (eq (widget-tabable-at) new)
1099 (backward-char)))
0ce5b5d5
PA
1100 (forward-char))
1101 (widget-echo-help (point))
1102 (run-hooks 'widget-move-hook))
d543e20b
PA
1103
1104(defun widget-forward (arg)
1105 "Move point to the next field or button.
1106With optional ARG, move across that many fields."
1107 (interactive "p")
1108 (run-hooks 'widget-forward-hook)
1109 (widget-move arg))
1110
1111(defun widget-backward (arg)
1112 "Move point to the previous field or button.
1113With optional ARG, move across that many fields."
1114 (interactive "p")
1115 (run-hooks 'widget-backward-hook)
1116 (widget-move (- arg)))
1117
8b9a0f45 1118;; Since the widget code uses a `field' property to identify fields,
0697c662 1119;; ordinary beginning-of-line does the right thing.
8b9a0f45 1120(defalias 'widget-beginning-of-line 'beginning-of-line)
0697c662
MB
1121
1122(defun widget-end-of-line ()
1123 "Go to end of field or end of line, whichever is first.
1124Trailing spaces at the end of padded fields are not considered part of
1125the field."
1126 (interactive)
1127 ;; Ordinary end-of-line does the right thing, because we're inside
1128 ;; text with a `field' property.
1129 (end-of-line)
1130 (unless (eolp)
1131 ;; ... except that we want to ignore trailing spaces in fields that
1132 ;; aren't terminated by a newline, because they are used as padding,
1133 ;; and ignored when extracting the entered value of the field.
1134 (skip-chars-backward " " (field-beginning (1- (point))))))
d543e20b
PA
1135
1136(defun widget-kill-line ()
1137 "Kill to end of field or end of line, whichever is first."
1138 (interactive)
0ce5b5d5 1139 (let* ((field (widget-field-find (point)))
0ce5b5d5 1140 (end (and field (widget-field-end field))))
7fdbdbea 1141 (if (and field (> (line-beginning-position 2) end))
0ce5b5d5 1142 (kill-region (point) end)
d543e20b
PA
1143 (call-interactively 'kill-line))))
1144
0ce5b5d5
PA
1145(defcustom widget-complete-field (lookup-key global-map "\M-\t")
1146 "Default function to call for completion inside fields."
1147 :options '(ispell-complete-word complete-tag lisp-complete-symbol)
1148 :type 'function
1149 :group 'widgets)
1150
301f9235 1151(defun widget-narrow-to-field ()
00d00aa9 1152 "Narrow to field."
301f9235
EZ
1153 (interactive)
1154 (let ((field (widget-field-find (point))))
1155 (if field
1156 (narrow-to-region (line-beginning-position) (line-end-position)))))
1157
6095a05b
GM
1158;; This used to say:
1159;; "When not inside a field, move to the previous button or field."
1160;; but AFAICS, it has always just thrown an error.
0ce5b5d5
PA
1161(defun widget-complete ()
1162 "Complete content of editable field from point.
6095a05b 1163When not inside a field, signal an error."
0ce5b5d5
PA
1164 (interactive)
1165 (let ((field (widget-field-find (point))))
4514199e
JH
1166 (if field
1167 (widget-apply field :complete)
1168 (error "Not in an editable field"))))
0ce5b5d5 1169
d543e20b
PA
1170;;; Setting up the buffer.
1171
7c0a9c8f
SM
1172(defvar widget-field-new nil
1173 "List of all newly created editable fields in the buffer.")
d543e20b
PA
1174(make-variable-buffer-local 'widget-field-new)
1175
7c0a9c8f
SM
1176(defvar widget-field-list nil
1177 "List of all editable fields in the buffer.")
d543e20b
PA
1178(make-variable-buffer-local 'widget-field-list)
1179
a850ac03
MB
1180(defun widget-at (&optional pos)
1181 "The button or field at POS (default, point)."
1182 (or (get-char-property (or pos (point)) 'button)
1183 (widget-field-at pos)))
1184
0e520006 1185;;;###autoload
d543e20b
PA
1186(defun widget-setup ()
1187 "Setup current buffer so editing string widgets works."
1188 (let ((inhibit-read-only t)
7fdbdbea 1189 (inhibit-modification-hooks t)
d543e20b
PA
1190 field)
1191 (while widget-field-new
1192 (setq field (car widget-field-new)
1193 widget-field-new (cdr widget-field-new)
1194 widget-field-list (cons field widget-field-list))
0a3a0b56
PA
1195 (let ((from (car (widget-get field :field-overlay)))
1196 (to (cdr (widget-get field :field-overlay))))
bfa6c260 1197 (widget-specify-field field
6aaedd12 1198 (marker-position from) (marker-position to))
0a3a0b56
PA
1199 (set-marker from nil)
1200 (set-marker to nil))))
d543e20b 1201 (widget-clear-undo)
4ee1cf9f 1202 (widget-add-change))
d543e20b
PA
1203
1204(defvar widget-field-last nil)
1205;; Last field containing point.
1206(make-variable-buffer-local 'widget-field-last)
1207
1208(defvar widget-field-was nil)
1209;; The widget data before the change.
1210(make-variable-buffer-local 'widget-field-was)
1211
a850ac03
MB
1212(defun widget-field-at (pos)
1213 "Return the widget field at POS, or nil if none."
1214 (let ((field (get-char-property (or pos (point)) 'field)))
1215 (if (eq field 'boundary)
263a40a6 1216 (get-char-property (or pos (point)) 'real-field)
a850ac03
MB
1217 field)))
1218
0a3a0b56 1219(defun widget-field-buffer (widget)
80a7a1bf 1220 "Return the buffer of WIDGET's editing field."
6aaedd12 1221 (let ((overlay (widget-get widget :field-overlay)))
ec725166
MB
1222 (cond ((overlayp overlay)
1223 (overlay-buffer overlay))
1224 ((consp overlay)
1225 (marker-buffer (car overlay))))))
0a3a0b56
PA
1226
1227(defun widget-field-start (widget)
1228 "Return the start of WIDGET's editing field."
6aaedd12 1229 (let ((overlay (widget-get widget :field-overlay)))
ec725166
MB
1230 (if (overlayp overlay)
1231 (overlay-start overlay)
1232 (car overlay))))
0a3a0b56
PA
1233
1234(defun widget-field-end (widget)
1235 "Return the end of WIDGET's editing field."
6aaedd12 1236 (let ((overlay (widget-get widget :field-overlay)))
a850ac03
MB
1237 ;; Don't subtract one if local-map works at the end of the overlay,
1238 ;; or if a special `boundary' field has been added after the widget
1239 ;; field.
ec725166 1240 (if (overlayp overlay)
e47f89f0
EZ
1241 ;; Don't proceed if overlay has been removed from buffer.
1242 (when (overlay-buffer overlay)
1243 (if (and (not (eq (with-current-buffer
1244 (widget-field-buffer widget)
1245 (save-restriction
1246 ;; `widget-narrow-to-field' can be
1247 ;; active when this function is called
1248 ;; from an change-functions hook. So
1249 ;; temporarily remove field narrowing
1250 ;; before to call `get-char-property'.
1251 (widen)
1252 (get-char-property (overlay-end overlay)
1253 'field)))
1254 'boundary))
1255 (or widget-field-add-space
1256 (null (widget-get widget :size))))
1257 (1- (overlay-end overlay))
1258 (overlay-end overlay)))
ec725166 1259 (cdr overlay))))
0a3a0b56 1260
bb12edf1
SM
1261(defun widget-field-text-end (widget)
1262 (let ((to (widget-field-end widget))
1263 (size (widget-get widget :size)))
1264 (if (or (null size) (zerop size))
1265 to
1266 (let ((from (widget-field-start widget)))
1267 (if (and from to)
1268 (with-current-buffer (widget-field-buffer widget)
1269 (while (and (> to from)
1270 (eq (char-after (1- to)) ?\s))
1271 (setq to (1- to)))
1272 to))))))
1273
d543e20b 1274(defun widget-field-find (pos)
0a3a0b56 1275 "Return the field at POS.
00d00aa9 1276Unlike (get-char-property POS 'field), this works with empty fields too."
d543e20b
PA
1277 (let ((fields widget-field-list)
1278 field found)
1279 (while fields
1280 (setq field (car fields)
1281 fields (cdr fields))
7fdbdbea
DL
1282 (when (and (<= (widget-field-start field) pos)
1283 (<= pos (widget-field-end field)))
1284 (when found
1285 (error "Overlapping fields"))
1286 (setq found field)))
d543e20b
PA
1287 found))
1288
4ee1cf9f 1289(defun widget-before-change (from to)
944c91b6
PA
1290 ;; This is how, for example, a variable changes its state to `modified'.
1291 ;; when it is being edited.
540a8bd2
RS
1292 (unless inhibit-read-only
1293 (let ((from-field (widget-field-find from))
1294 (to-field (widget-field-find to)))
1295 (cond ((not (eq from-field to-field))
1296 (add-hook 'post-command-hook 'widget-add-change nil t)
808bcfd2
KH
1297 (signal 'text-read-only
1298 '("Change should be restricted to a single field")))
540a8bd2
RS
1299 ((null from-field)
1300 (add-hook 'post-command-hook 'widget-add-change nil t)
808bcfd2
KH
1301 (signal 'text-read-only
1302 '("Attempt to change text outside editable field")))
540a8bd2 1303 (widget-field-use-before-change
7fdbdbea 1304 (widget-apply from-field :notify from-field))))))
4ee1cf9f
PA
1305
1306(defun widget-add-change ()
4ee1cf9f 1307 (remove-hook 'post-command-hook 'widget-add-change t)
4ee1cf9f 1308 (add-hook 'before-change-functions 'widget-before-change nil t)
4ee1cf9f 1309 (add-hook 'after-change-functions 'widget-after-change nil t))
c6753d66 1310
d543e20b 1311(defun widget-after-change (from to old)
bfa6c260 1312 "Adjust field size and text properties."
7fdbdbea
DL
1313 (let ((field (widget-field-find from))
1314 (other (widget-field-find to)))
1315 (when field
1316 (unless (eq field other)
1317 (error "Change in different fields"))
1318 (let ((size (widget-get field :size)))
1319 (when size
1320 (let ((begin (widget-field-start field))
1321 (end (widget-field-end field)))
1322 (cond ((< (- end begin) size)
1323 ;; Field too small.
1324 (save-excursion
1325 (goto-char end)
00d00aa9 1326 (insert-char ?\s (- (+ begin size) end))))
7fdbdbea
DL
1327 ((> (- end begin) size)
1328 ;; Field too large and
1329 (if (or (< (point) (+ begin size))
1330 (> (point) end))
1331 ;; Point is outside extra space.
1332 (setq begin (+ begin size))
1333 ;; Point is within the extra space.
1334 (setq begin (point)))
1335 (save-excursion
1336 (goto-char end)
00d00aa9 1337 (while (and (eq (preceding-char) ?\s)
7fdbdbea 1338 (> (point) begin))
d355a0b7 1339 (delete-char -1)))))))
7fdbdbea
DL
1340 (widget-specify-secret field))
1341 (widget-apply field :notify field))))
d543e20b
PA
1342
1343;;; Widget Functions
1344;;
bfa6c260 1345;; These functions are used in the definition of multiple widgets.
d543e20b 1346
a3c88c59
PA
1347(defun widget-parent-action (widget &optional event)
1348 "Tell :parent of WIDGET to handle the :action.
1349Optional EVENT is the event that triggered the action."
1350 (widget-apply (widget-get widget :parent) :action event))
1351
d543e20b
PA
1352(defun widget-children-value-delete (widget)
1353 "Delete all :children and :buttons in WIDGET."
bfa6c260 1354 (mapc 'widget-delete (widget-get widget :children))
d543e20b 1355 (widget-put widget :children nil)
bfa6c260 1356 (mapc 'widget-delete (widget-get widget :buttons))
d543e20b
PA
1357 (widget-put widget :buttons nil))
1358
a3c88c59
PA
1359(defun widget-children-validate (widget)
1360 "All the :children must be valid."
1361 (let ((children (widget-get widget :children))
1362 child found)
1363 (while (and children (not found))
1364 (setq child (car children)
1365 children (cdr children)
1366 found (widget-apply child :validate)))
1367 found))
1368
6b61353c
KH
1369(defun widget-child-value-get (widget)
1370 "Get the value of the first member of :children in WIDGET."
1371 (widget-value (car (widget-get widget :children))))
1372
1373(defun widget-child-value-inline (widget)
1374 "Get the inline value of the first member of :children in WIDGET."
1375 (widget-apply (car (widget-get widget :children)) :value-inline))
1376
1377(defun widget-child-validate (widget)
1378 "The result of validating the first member of :children in WIDGET."
1379 (widget-apply (car (widget-get widget :children)) :validate))
1380
1381(defun widget-type-value-create (widget)
1382 "Convert and instantiate the value of the :type attribute of WIDGET.
1383Store the newly created widget in the :children attribute.
1384
1385The value of the :type attribute should be an unconverted widget type."
1386 (let ((value (widget-get widget :value))
1387 (type (widget-get widget :type)))
0e726aa5
KS
1388 (widget-put widget :children
1389 (list (widget-create-child-value widget
6b61353c
KH
1390 (widget-convert type)
1391 value)))))
1392
1393(defun widget-type-default-get (widget)
1394 "Get default value from the :type attribute of WIDGET.
1395
1396The value of the :type attribute should be an unconverted widget type."
1397 (widget-default-get (widget-convert (widget-get widget :type))))
1398
1399(defun widget-type-match (widget value)
1400 "Non-nil if the :type value of WIDGET matches VALUE.
1401
1402The value of the :type attribute should be an unconverted widget type."
1403 (widget-apply (widget-convert (widget-get widget :type)) :match value))
1404
4c2f559e
PA
1405(defun widget-types-copy (widget)
1406 "Copy :args as widget types in WIDGET."
1407 (widget-put widget :args (mapcar 'widget-copy (widget-get widget :args)))
1408 widget)
1409
aeba6f9a
DL
1410;; Made defsubst to speed up face editor creation.
1411(defsubst widget-types-convert-widget (widget)
d543e20b
PA
1412 "Convert :args as widget types in WIDGET."
1413 (widget-put widget :args (mapcar 'widget-convert (widget-get widget :args)))
1414 widget)
1415
a3c88c59
PA
1416(defun widget-value-convert-widget (widget)
1417 "Initialize :value from :args in WIDGET."
1418 (let ((args (widget-get widget :args)))
bfa6c260 1419 (when args
a3c88c59
PA
1420 (widget-put widget :value (car args))
1421 ;; Don't convert :value here, as this is done in `widget-convert'.
1422 ;; (widget-put widget :value (widget-apply widget
1423 ;; :value-to-internal (car args)))
1424 (widget-put widget :args nil)))
1425 widget)
1426
1427(defun widget-value-value-get (widget)
1428 "Return the :value property of WIDGET."
1429 (widget-get widget :value))
1430
d543e20b
PA
1431;;; The `default' Widget.
1432
1433(define-widget 'default nil
1434 "Basic widget other widgets are derived from."
1435 :value-to-internal (lambda (widget value) value)
1436 :value-to-external (lambda (widget value) value)
25ac13b5
PA
1437 :button-prefix 'widget-button-prefix
1438 :button-suffix 'widget-button-suffix
bfa6c260 1439 :complete 'widget-default-complete
d543e20b
PA
1440 :create 'widget-default-create
1441 :indent nil
1442 :offset 0
1443 :format-handler 'widget-default-format-handler
77339a6e 1444 :button-face-get 'widget-default-button-face-get
73e60f53 1445 :mouse-face-get 'widget-default-mouse-face-get
77339a6e 1446 :sample-face-get 'widget-default-sample-face-get
d543e20b 1447 :delete 'widget-default-delete
4c2f559e 1448 :copy 'identity
d543e20b
PA
1449 :value-set 'widget-default-value-set
1450 :value-inline 'widget-default-value-inline
6b61353c 1451 :value-delete 'ignore
783824f5 1452 :default-get 'widget-default-default-get
d543e20b 1453 :menu-tag-get 'widget-default-menu-tag-get
99f01612 1454 :validate #'ignore
d543e20b
PA
1455 :active 'widget-default-active
1456 :activate 'widget-specify-active
1457 :deactivate 'widget-default-deactivate
99f01612 1458 :mouse-down-action #'ignore
d543e20b 1459 :action 'widget-default-action
6d528fc5
PA
1460 :notify 'widget-default-notify
1461 :prompt-value 'widget-default-prompt-value)
d543e20b 1462
587faadd
CY
1463(defvar widget--completing-widget)
1464
0ce5b5d5
PA
1465(defun widget-default-complete (widget)
1466 "Call the value of the :complete-function property of WIDGET.
587faadd
CY
1467If that does not exist, call the value of `widget-complete-field'.
1468During this call, `widget--completing-widget' is bound to WIDGET."
1469 (let ((widget--completing-widget widget))
1470 (call-interactively (or (widget-get widget :complete-function)
1471 widget-complete-field))))
0ce5b5d5 1472
d543e20b
PA
1473(defun widget-default-create (widget)
1474 "Create WIDGET at point in the current buffer."
1475 (widget-specify-insert
1476 (let ((from (point))
d543e20b
PA
1477 button-begin button-end
1478 sample-begin sample-end
1479 doc-begin doc-end
1480 value-pos)
1481 (insert (widget-get widget :format))
1482 (goto-char from)
1483 ;; Parse escapes in format.
1484 (while (re-search-forward "%\\(.\\)" nil t)
7fdbdbea 1485 (let ((escape (char-after (match-beginning 1))))
d355a0b7 1486 (delete-char -2)
d543e20b 1487 (cond ((eq escape ?%)
bfa6c260 1488 (insert ?%))
d543e20b 1489 ((eq escape ?\[)
25ac13b5 1490 (setq button-begin (point))
944c91b6 1491 (insert (widget-get-indirect widget :button-prefix)))
d543e20b 1492 ((eq escape ?\])
944c91b6 1493 (insert (widget-get-indirect widget :button-suffix))
d543e20b
PA
1494 (setq button-end (point)))
1495 ((eq escape ?\{)
1496 (setq sample-begin (point)))
1497 ((eq escape ?\})
1498 (setq sample-end (point)))
1499 ((eq escape ?n)
1500 (when (widget-get widget :indent)
bfa6c260 1501 (insert ?\n)
00d00aa9 1502 (insert-char ?\s (widget-get widget :indent))))
d543e20b 1503 ((eq escape ?t)
bfa6c260 1504 (let ((image (widget-get widget :tag-glyph))
25ac13b5 1505 (tag (widget-get widget :tag)))
bfa6c260
DL
1506 (cond (image
1507 (widget-image-insert widget (or tag "image") image))
25ac13b5
PA
1508 (tag
1509 (insert tag))
1510 (t
bfa6c260
DL
1511 (princ (widget-get widget :value)
1512 (current-buffer))))))
d543e20b 1513 ((eq escape ?d)
25ac13b5
PA
1514 (let ((doc (widget-get widget :doc)))
1515 (when doc
1516 (setq doc-begin (point))
1517 (insert doc)
1518 (while (eq (preceding-char) ?\n)
d355a0b7 1519 (delete-char -1))
bfa6c260 1520 (insert ?\n)
25ac13b5 1521 (setq doc-end (point)))))
4a1b7052
CY
1522 ((eq escape ?h)
1523 (widget-add-documentation-string-button widget))
d543e20b
PA
1524 ((eq escape ?v)
1525 (if (and button-begin (not button-end))
1526 (widget-apply widget :value-create)
1527 (setq value-pos (point))))
bfa6c260 1528 (t
d543e20b
PA
1529 (widget-apply widget :format-handler escape)))))
1530 ;; Specify button, sample, and doc, and insert value.
1531 (and button-begin button-end
1532 (widget-specify-button widget button-begin button-end))
1533 (and sample-begin sample-end
1534 (widget-specify-sample widget sample-begin sample-end))
1535 (and doc-begin doc-end
1536 (widget-specify-doc widget doc-begin doc-end))
1537 (when value-pos
1538 (goto-char value-pos)
1539 (widget-apply widget :value-create)))
7fdbdbea
DL
1540 (let ((from (point-min-marker))
1541 (to (point-max-marker)))
3bff434b 1542 (set-marker-insertion-type from t)
d543e20b
PA
1543 (set-marker-insertion-type to nil)
1544 (widget-put widget :from from)
6d528fc5
PA
1545 (widget-put widget :to to)))
1546 (widget-clear-undo))
d543e20b
PA
1547
1548(defun widget-default-format-handler (widget escape)
4a1b7052 1549 (error "Unknown escape `%c'" escape))
d543e20b
PA
1550
1551(defun widget-default-button-face-get (widget)
1552 ;; Use :button-face or widget-button-face
0b296dac
RS
1553 (or (widget-get widget :button-face)
1554 (let ((parent (widget-get widget :parent)))
1555 (if parent
1556 (widget-apply parent :button-face-get)
2f477381 1557 widget-button-face))))
d543e20b 1558
73e60f53
CY
1559(defun widget-default-mouse-face-get (widget)
1560 ;; Use :mouse-face or widget-mouse-face
1561 (or (widget-get widget :mouse-face)
1562 (let ((parent (widget-get widget :parent)))
1563 (if parent
1564 (widget-apply parent :mouse-face-get)
1565 widget-mouse-face))))
1566
d543e20b
PA
1567(defun widget-default-sample-face-get (widget)
1568 ;; Use :sample-face.
1569 (widget-get widget :sample-face))
1570
1571(defun widget-default-delete (widget)
bfa6c260 1572 "Remove widget from the buffer."
d543e20b
PA
1573 (let ((from (widget-get widget :from))
1574 (to (widget-get widget :to))
9097aeb7
PA
1575 (inactive-overlay (widget-get widget :inactive))
1576 (button-overlay (widget-get widget :button-overlay))
0f648ca2 1577 (sample-overlay (widget-get widget :sample-overlay))
4ee1cf9f 1578 (doc-overlay (widget-get widget :doc-overlay))
7fdbdbea 1579 (inhibit-modification-hooks t)
0a3a0b56 1580 (inhibit-read-only t))
d543e20b 1581 (widget-apply widget :value-delete)
6b61353c 1582 (widget-children-value-delete widget)
9097aeb7
PA
1583 (when inactive-overlay
1584 (delete-overlay inactive-overlay))
1585 (when button-overlay
1586 (delete-overlay button-overlay))
0f648ca2
PA
1587 (when sample-overlay
1588 (delete-overlay sample-overlay))
4ee1cf9f
PA
1589 (when doc-overlay
1590 (delete-overlay doc-overlay))
d543e20b
PA
1591 (when (< from to)
1592 ;; Kludge: this doesn't need to be true for empty formats.
1593 (delete-region from to))
1594 (set-marker from nil)
6d528fc5
PA
1595 (set-marker to nil))
1596 (widget-clear-undo))
d543e20b
PA
1597
1598(defun widget-default-value-set (widget value)
bfa6c260 1599 "Recreate widget with new value."
d0acc4ea
RS
1600 (let* ((old-pos (point))
1601 (from (copy-marker (widget-get widget :from)))
1602 (to (copy-marker (widget-get widget :to)))
1603 (offset (if (and (<= from old-pos) (<= old-pos to))
1604 (if (>= old-pos (1- to))
1605 (- old-pos to 1)
1606 (- old-pos from)))))
1607 ;;??? Bug: this ought to insert the new value before deleting the old one,
bfa6c260 1608 ;; so that markers on either side of the value automatically
d0acc4ea
RS
1609 ;; stay on the same side. -- rms.
1610 (save-excursion
1611 (goto-char (widget-get widget :from))
1612 (widget-apply widget :delete)
1613 (widget-put widget :value value)
1614 (widget-apply widget :create))
1615 (if offset
1616 (if (< offset 0)
1617 (goto-char (+ (widget-get widget :to) offset 1))
1618 (goto-char (min (+ from offset) (1- (widget-get widget :to))))))))
d543e20b
PA
1619
1620(defun widget-default-value-inline (widget)
bfa6c260 1621 "Wrap value in a list unless it is inline."
d543e20b
PA
1622 (if (widget-get widget :inline)
1623 (widget-value widget)
1624 (list (widget-value widget))))
1625
783824f5 1626(defun widget-default-default-get (widget)
bfa6c260 1627 "Get `:value'."
783824f5
RS
1628 (widget-get widget :value))
1629
d543e20b 1630(defun widget-default-menu-tag-get (widget)
bfa6c260 1631 "Use tag or value for menus."
d543e20b
PA
1632 (or (widget-get widget :menu-tag)
1633 (widget-get widget :tag)
1634 (widget-princ-to-string (widget-get widget :value))))
1635
1636(defun widget-default-active (widget)
4837b516 1637 "Return t if this widget is active (user modifiable)."
0640c647
GM
1638 (or (widget-get widget :always-active)
1639 (and (not (widget-get widget :inactive))
1640 (let ((parent (widget-get widget :parent)))
77339a6e 1641 (or (null parent)
0640c647 1642 (widget-apply parent :active))))))
d543e20b
PA
1643
1644(defun widget-default-deactivate (widget)
1645 "Make WIDGET inactive for user modifications."
1646 (widget-specify-inactive widget
1647 (widget-get widget :from)
1648 (widget-get widget :to)))
1649
1650(defun widget-default-action (widget &optional event)
bfa6c260 1651 "Notify the parent when a widget changes."
d543e20b
PA
1652 (let ((parent (widget-get widget :parent)))
1653 (when parent
1654 (widget-apply parent :notify widget event))))
1655
1656(defun widget-default-notify (widget child &optional event)
bfa6c260 1657 "Pass notification to parent."
d543e20b
PA
1658 (widget-default-action widget event))
1659
6d528fc5 1660(defun widget-default-prompt-value (widget prompt value unbound)
4a1b7052 1661 "Read an arbitrary value."
7fdbdbea 1662 (eval-minibuffer prompt))
6d528fc5 1663
4a1b7052
CY
1664(defun widget-docstring (widget)
1665 "Return the documentation string specificied by WIDGET, or nil if none.
1666If WIDGET has a `:doc' property, that specifies the documentation string.
1667Otherwise, try the `:documentation-property' property. If this
1668is a function, call it with the widget's value as an argument; if
1669it is a symbol, use this symbol together with the widget's value
1670as the argument to `documentation-property'."
1671 (let ((doc (or (widget-get widget :doc)
1672 (let ((doc-prop (widget-get widget :documentation-property))
1673 (value (widget-get widget :value)))
1674 (cond ((functionp doc-prop)
1675 (funcall doc-prop value))
1676 ((symbolp doc-prop)
1677 (documentation-property value doc-prop)))))))
1678 (when (and (stringp doc) (> (length doc) 0))
1679 ;; Remove any redundant `*' in the beginning.
1680 (when (eq (aref doc 0) ?*)
1681 (setq doc (substring doc 1)))
1682 ;; Remove trailing newlines.
1683 (when (string-match "\n+\\'" doc)
1684 (setq doc (substring doc 0 (match-beginning 0))))
1685 doc)))
1686
d543e20b
PA
1687;;; The `item' Widget.
1688
1689(define-widget 'item 'default
1690 "Constant items for inclusion in other widgets."
a3c88c59 1691 :convert-widget 'widget-value-convert-widget
d543e20b
PA
1692 :value-create 'widget-item-value-create
1693 :value-delete 'ignore
a3c88c59 1694 :value-get 'widget-value-value-get
d543e20b
PA
1695 :match 'widget-item-match
1696 :match-inline 'widget-item-match-inline
1697 :action 'widget-item-action
1698 :format "%t\n")
1699
d543e20b 1700(defun widget-item-value-create (widget)
bfa6c260
DL
1701 "Insert the printed representation of the value."
1702 (princ (widget-get widget :value) (current-buffer)))
d543e20b
PA
1703
1704(defun widget-item-match (widget value)
1705 ;; Match if the value is the same.
1706 (equal (widget-get widget :value) value))
1707
1708(defun widget-item-match-inline (widget values)
1709 ;; Match if the value is the same.
1710 (let ((value (widget-get widget :value)))
1711 (and (listp value)
1712 (<= (length value) (length values))
e5dfabb4 1713 (let ((head (widget-sublist values 0 (length value))))
d543e20b 1714 (and (equal head value)
e5dfabb4
RS
1715 (cons head (widget-sublist values (length value))))))))
1716
1717(defun widget-sublist (list start &optional end)
1718 "Return the sublist of LIST from START to END.
1719If END is omitted, it defaults to the length of LIST."
0a3a0b56
PA
1720 (if (> start 0) (setq list (nthcdr start list)))
1721 (if end
bfa6c260 1722 (unless (<= end start)
0a3a0b56
PA
1723 (setq list (copy-sequence list))
1724 (setcdr (nthcdr (- end start 1) list) nil)
1725 list)
1726 (copy-sequence list)))
d543e20b
PA
1727
1728(defun widget-item-action (widget &optional event)
1729 ;; Just notify itself.
1730 (widget-apply widget :notify widget event))
1731
d543e20b
PA
1732;;; The `push-button' Widget.
1733
7fdbdbea 1734;; (defcustom widget-push-button-gui t
80b709bc 1735;; "If non-nil, use GUI push buttons when available."
7fdbdbea
DL
1736;; :group 'widgets
1737;; :type 'boolean)
d543e20b
PA
1738
1739;; Cache already created GUI objects.
7fdbdbea 1740;; (defvar widget-push-button-cache nil)
d543e20b 1741
25ac13b5
PA
1742(defcustom widget-push-button-prefix "["
1743 "String used as prefix for buttons."
1744 :type 'string
1745 :group 'widget-button)
1746
1747(defcustom widget-push-button-suffix "]"
1748 "String used as suffix for buttons."
1749 :type 'string
1750 :group 'widget-button)
1751
d543e20b
PA
1752(define-widget 'push-button 'item
1753 "A pushable button."
25ac13b5
PA
1754 :button-prefix ""
1755 :button-suffix ""
d543e20b
PA
1756 :value-create 'widget-push-button-value-create
1757 :format "%[%v%]")
1758
1759(defun widget-push-button-value-create (widget)
bfa6c260 1760 "Insert text representing the `on' and `off' states."
d543e20b
PA
1761 (let* ((tag (or (widget-get widget :tag)
1762 (widget-get widget :value)))
da5ec617 1763 (tag-glyph (widget-get widget :tag-glyph))
25ac13b5 1764 (text (concat widget-push-button-prefix
7fdbdbea
DL
1765 tag widget-push-button-suffix)))
1766 (if tag-glyph
1767 (widget-image-insert widget text tag-glyph)
1768 (insert text))))
d543e20b 1769
7fdbdbea
DL
1770;; (defun widget-gui-action (widget)
1771;; "Apply :action for WIDGET."
1772;; (widget-apply-action widget (this-command-keys)))
d543e20b
PA
1773
1774;;; The `link' Widget.
1775
25ac13b5
PA
1776(defcustom widget-link-prefix "["
1777 "String used as prefix for links."
1778 :type 'string
1779 :group 'widget-button)
1780
1781(defcustom widget-link-suffix "]"
1782 "String used as suffix for links."
1783 :type 'string
1784 :group 'widget-button)
1785
d543e20b
PA
1786(define-widget 'link 'item
1787 "An embedded link."
25ac13b5
PA
1788 :button-prefix 'widget-link-prefix
1789 :button-suffix 'widget-link-suffix
23e33070 1790 :follow-link 'mouse-face
d543e20b 1791 :help-echo "Follow the link."
25ac13b5 1792 :format "%[%t%]")
d543e20b
PA
1793
1794;;; The `info-link' Widget.
1795
1796(define-widget 'info-link 'link
1797 "A link to an info file."
1798 :action 'widget-info-link-action)
1799
1800(defun widget-info-link-action (widget &optional event)
1801 "Open the info node specified by WIDGET."
7c0a9c8f 1802 (info (widget-value widget)))
d543e20b
PA
1803
1804;;; The `url-link' Widget.
1805
1806(define-widget 'url-link 'link
1807 "A link to an www page."
1808 :action 'widget-url-link-action)
1809
1810(defun widget-url-link-action (widget &optional event)
00d00aa9 1811 "Open the URL specified by WIDGET."
af0f19d7 1812 (browse-url (widget-value widget)))
d543e20b 1813
a59b7025
KH
1814;;; The `function-link' Widget.
1815
1816(define-widget 'function-link 'link
1817 "A link to an Emacs function."
1818 :action 'widget-function-link-action)
1819
1820(defun widget-function-link-action (widget &optional event)
1821 "Show the function specified by WIDGET."
1822 (describe-function (widget-value widget)))
1823
1824;;; The `variable-link' Widget.
1825
1826(define-widget 'variable-link 'link
1827 "A link to an Emacs variable."
1828 :action 'widget-variable-link-action)
1829
1830(defun widget-variable-link-action (widget &optional event)
1831 "Show the variable specified by WIDGET."
1832 (describe-variable (widget-value widget)))
1833
62f44662
PA
1834;;; The `file-link' Widget.
1835
1836(define-widget 'file-link 'link
1837 "A link to a file."
1838 :action 'widget-file-link-action)
1839
1840(defun widget-file-link-action (widget &optional event)
1841 "Find the file specified by WIDGET."
1842 (find-file (widget-value widget)))
1843
1844;;; The `emacs-library-link' Widget.
1845
1846(define-widget 'emacs-library-link 'link
1847 "A link to an Emacs Lisp library file."
1848 :action 'widget-emacs-library-link-action)
1849
1850(defun widget-emacs-library-link-action (widget &optional event)
00d00aa9 1851 "Find the Emacs library file specified by WIDGET."
62f44662
PA
1852 (find-file (locate-library (widget-value widget))))
1853
4ee1cf9f 1854;;; The `emacs-commentary-link' Widget.
77339a6e 1855
4ee1cf9f
PA
1856(define-widget 'emacs-commentary-link 'link
1857 "A link to Commentary in an Emacs Lisp library file."
1858 :action 'widget-emacs-commentary-link-action)
77339a6e 1859
4ee1cf9f
PA
1860(defun widget-emacs-commentary-link-action (widget &optional event)
1861 "Find the Commentary section of the Emacs file specified by WIDGET."
1862 (finder-commentary (widget-value widget)))
1863
d543e20b
PA
1864;;; The `editable-field' Widget.
1865
1866(define-widget 'editable-field 'default
3bff434b 1867 "An editable text field.
10dbcdd7 1868Note: In an `editable-field' widget, the `%v' escape must be preceded
3bff434b 1869by some other text in the `:format' string (if specified)."
a3c88c59 1870 :convert-widget 'widget-value-convert-widget
d543e20b
PA
1871 :keymap widget-field-keymap
1872 :format "%v"
7fdbdbea 1873 :help-echo "M-TAB: complete field; RET: enter value"
d543e20b 1874 :value ""
a3c88c59
PA
1875 :prompt-internal 'widget-field-prompt-internal
1876 :prompt-history 'widget-field-history
1877 :prompt-value 'widget-field-prompt-value
d543e20b
PA
1878 :action 'widget-field-action
1879 :validate 'widget-field-validate
1880 :valid-regexp ""
820d4181 1881 :error "Field's value doesn't match allowed forms"
d543e20b 1882 :value-create 'widget-field-value-create
6f320937 1883 :value-set 'widget-field-value-set
d543e20b
PA
1884 :value-delete 'widget-field-value-delete
1885 :value-get 'widget-field-value-get
1886 :match 'widget-field-match)
1887
a3c88c59
PA
1888(defvar widget-field-history nil
1889 "History of field minibuffer edits.")
1890
1891(defun widget-field-prompt-internal (widget prompt initial history)
a3545af4 1892 "Read string for WIDGET prompting with PROMPT.
bfa6c260
DL
1893INITIAL is the initial input and HISTORY is a symbol containing
1894the earlier input."
a3c88c59
PA
1895 (read-string prompt initial history))
1896
1897(defun widget-field-prompt-value (widget prompt value unbound)
bfa6c260 1898 "Prompt for a string."
7fdbdbea
DL
1899 (widget-apply widget
1900 :value-to-external
1901 (widget-apply widget
1902 :prompt-internal prompt
1903 (unless unbound
1904 (cons (widget-apply widget
1905 :value-to-internal value)
1906 0))
1907 (widget-get widget :prompt-history))))
d543e20b 1908
0b296dac 1909(defvar widget-edit-functions nil)
211c9fe9 1910
d543e20b 1911(defun widget-field-action (widget &optional event)
bfa6c260 1912 "Move to next field."
f1231b8e 1913 (widget-forward 1)
0b296dac 1914 (run-hook-with-args 'widget-edit-functions widget))
d543e20b
PA
1915
1916(defun widget-field-validate (widget)
bfa6c260 1917 "Valid if the content matches `:valid-regexp'."
7fdbdbea
DL
1918 (unless (string-match (widget-get widget :valid-regexp)
1919 (widget-apply widget :value-get))
1920 widget))
d543e20b 1921
6f320937
CY
1922(defun widget-field-value-set (widget value)
1923 "Set an editable text field WIDGET to VALUE"
1924 (let ((from (widget-field-start widget))
1925 (to (widget-field-text-end widget))
1926 (buffer (widget-field-buffer widget))
1927 (size (widget-get widget :size)))
1928 (when (and from to (buffer-live-p buffer))
1929 (with-current-buffer buffer
1930 (goto-char from)
1931 (delete-char (- to from))
1932 (insert value)))))
1933
d543e20b 1934(defun widget-field-value-create (widget)
bfa6c260 1935 "Create an editable text field."
d543e20b
PA
1936 (let ((size (widget-get widget :size))
1937 (value (widget-get widget :value))
0a3a0b56 1938 (from (point))
c953515e
PA
1939 ;; This is changed to a real overlay in `widget-setup'. We
1940 ;; need the end points to behave differently until
bfa6c260 1941 ;; `widget-setup' is called.
0a3a0b56
PA
1942 (overlay (cons (make-marker) (make-marker))))
1943 (widget-put widget :field-overlay overlay)
d543e20b
PA
1944 (insert value)
1945 (and size
1946 (< (length value) size)
00d00aa9 1947 (insert-char ?\s (- size (length value))))
d543e20b
PA
1948 (unless (memq widget widget-field-list)
1949 (setq widget-field-new (cons widget widget-field-new)))
0a3a0b56
PA
1950 (move-marker (cdr overlay) (point))
1951 (set-marker-insertion-type (cdr overlay) nil)
1952 (when (null size)
1953 (insert ?\n))
1954 (move-marker (car overlay) from)
1955 (set-marker-insertion-type (car overlay) t)))
d543e20b
PA
1956
1957(defun widget-field-value-delete (widget)
bfa6c260 1958 "Remove the widget from the list of active editing fields."
d543e20b 1959 (setq widget-field-list (delq widget widget-field-list))
ec725166 1960 (setq widget-field-new (delq widget widget-field-new))
d543e20b 1961 ;; These are nil if the :format string doesn't contain `%v'.
0a3a0b56 1962 (let ((overlay (widget-get widget :field-overlay)))
d8f02b91 1963 (when (overlayp overlay)
0a3a0b56 1964 (delete-overlay overlay))))
d543e20b
PA
1965
1966(defun widget-field-value-get (widget)
bfa6c260 1967 "Return current text in editing field."
0a3a0b56 1968 (let ((from (widget-field-start widget))
bb12edf1 1969 (to (widget-field-text-end widget))
0a3a0b56 1970 (buffer (widget-field-buffer widget))
d543e20b
PA
1971 (secret (widget-get widget :secret))
1972 (old (current-buffer)))
1973 (if (and from to)
bfa6c260 1974 (progn
0a3a0b56 1975 (set-buffer buffer)
d543e20b
PA
1976 (let ((result (buffer-substring-no-properties from to)))
1977 (when secret
1978 (let ((index 0))
1979 (while (< (+ from index) to)
1980 (aset result index
0a3a0b56 1981 (get-char-property (+ from index) 'secret))
d543e20b
PA
1982 (setq index (1+ index)))))
1983 (set-buffer old)
1984 result))
1985 (widget-get widget :value))))
1986
1987(defun widget-field-match (widget value)
1988 ;; Match any string.
1989 (stringp value))
1990
1991;;; The `text' Widget.
1992
1993(define-widget 'text 'editable-field
7fce8d93
SM
1994 "A multiline text area."
1995 :keymap widget-text-keymap)
d543e20b
PA
1996
1997;;; The `menu-choice' Widget.
1998
1999(define-widget 'menu-choice 'default
2000 "A menu of options."
2001 :convert-widget 'widget-types-convert-widget
4c2f559e 2002 :copy 'widget-types-copy
d543e20b
PA
2003 :format "%[%t%]: %v"
2004 :case-fold t
2005 :tag "choice"
2006 :void '(item :format "invalid (%t)\n")
2007 :value-create 'widget-choice-value-create
6b61353c
KH
2008 :value-get 'widget-child-value-get
2009 :value-inline 'widget-child-value-inline
783824f5 2010 :default-get 'widget-choice-default-get
a3c88c59 2011 :mouse-down-action 'widget-choice-mouse-down-action
d543e20b
PA
2012 :action 'widget-choice-action
2013 :error "Make a choice"
2014 :validate 'widget-choice-validate
2015 :match 'widget-choice-match
2016 :match-inline 'widget-choice-match-inline)
2017
2018(defun widget-choice-value-create (widget)
bfa6c260 2019 "Insert the first choice that matches the value."
d543e20b
PA
2020 (let ((value (widget-get widget :value))
2021 (args (widget-get widget :args))
4084d128 2022 (explicit (widget-get widget :explicit-choice))
d543e20b 2023 current)
25e3656c 2024 (if explicit
4084d128
RS
2025 (progn
2026 ;; If the user specified the choice for this value,
25e3656c 2027 ;; respect that choice.
4084d128
RS
2028 (widget-put widget :children (list (widget-create-child-value
2029 widget explicit value)))
25e3656c
LT
2030 (widget-put widget :choice explicit)
2031 (widget-put widget :explicit-choice nil))
4084d128
RS
2032 (while args
2033 (setq current (car args)
2034 args (cdr args))
2035 (when (widget-apply current :match value)
2036 (widget-put widget :children (list (widget-create-child-value
2037 widget current value)))
2038 (widget-put widget :choice current)
2039 (setq args nil
2040 current nil)))
2041 (when current
2042 (let ((void (widget-get widget :void)))
2043 (widget-put widget :children (list (widget-create-child-and-convert
2044 widget void :value value)))
2045 (widget-put widget :choice void))))))
d543e20b 2046
783824f5
RS
2047(defun widget-choice-default-get (widget)
2048 ;; Get default for the first choice.
2049 (widget-default-get (car (widget-get widget :args))))
2050
a3c88c59
PA
2051(defcustom widget-choice-toggle nil
2052 "If non-nil, a binary choice will just toggle between the values.
2053Otherwise, the user will explicitly have to choose between the values
25ac13b5 2054when he invoked the menu."
a3c88c59
PA
2055 :type 'boolean
2056 :group 'widgets)
2057
2058(defun widget-choice-mouse-down-action (widget &optional event)
2059 ;; Return non-nil if we need a menu.
2060 (let ((args (widget-get widget :args))
2061 (old (widget-get widget :choice)))
e2c00a47 2062 (cond ((not (display-popup-menus-p))
a3c88c59
PA
2063 ;; No place to pop up a menu.
2064 nil)
a3c88c59
PA
2065 ((< (length args) 2)
2066 ;; Empty or singleton list, just return the value.
2067 nil)
2068 ((> (length args) widget-menu-max-size)
2069 ;; Too long, prompt.
2070 nil)
2071 ((> (length args) 2)
2072 ;; Reasonable sized list, use menu.
2073 t)
2074 ((and widget-choice-toggle (memq old args))
2075 ;; We toggle.
2076 nil)
2077 (t
2078 ;; Ask which of the two.
2079 t))))
2080
d543e20b
PA
2081(defun widget-choice-action (widget &optional event)
2082 ;; Make a choice.
2083 (let ((args (widget-get widget :args))
2084 (old (widget-get widget :choice))
2085 (tag (widget-apply widget :menu-tag-get))
2086 (completion-ignore-case (widget-get widget :case-fold))
4084d128 2087 this-explicit
d543e20b
PA
2088 current choices)
2089 ;; Remember old value.
2090 (if (and old (not (widget-apply widget :validate)))
2091 (let* ((external (widget-value widget))
2092 (internal (widget-apply old :value-to-internal external)))
2093 (widget-put old :value internal)))
2094 ;; Find new choice.
2095 (setq current
2096 (cond ((= (length args) 0)
2097 nil)
2098 ((= (length args) 1)
2099 (nth 0 args))
a3c88c59
PA
2100 ((and widget-choice-toggle
2101 (= (length args) 2)
d543e20b
PA
2102 (memq old args))
2103 (if (eq old (nth 0 args))
2104 (nth 1 args)
2105 (nth 0 args)))
2106 (t
2107 (while args
2108 (setq current (car args)
2109 args (cdr args))
2110 (setq choices
2111 (cons (cons (widget-apply current :menu-tag-get)
2112 current)
2113 choices)))
4084d128 2114 (setq this-explicit t)
d543e20b 2115 (widget-choose tag (reverse choices) event))))
d0acc4ea 2116 (when current
25e3656c
LT
2117 ;; If this was an explicit user choice, record the choice,
2118 ;; so that widget-choice-value-create will respect it.
4084d128 2119 (when this-explicit
25e3656c 2120 (widget-put widget :explicit-choice current))
4c2f559e 2121 (widget-value-set widget (widget-default-get current))
d0acc4ea
RS
2122 (widget-setup)
2123 (widget-apply widget :notify widget event)))
d4b8422f 2124 (run-hook-with-args 'widget-edit-functions widget))
d543e20b
PA
2125
2126(defun widget-choice-validate (widget)
2127 ;; Valid if we have made a valid choice.
7fdbdbea
DL
2128 (if (eq (widget-get widget :void) (widget-get widget :choice))
2129 widget
2130 (widget-apply (car (widget-get widget :children)) :validate)))
d543e20b
PA
2131
2132(defun widget-choice-match (widget value)
2133 ;; Matches if one of the choices matches.
2134 (let ((args (widget-get widget :args))
2135 current found)
2136 (while (and args (not found))
2137 (setq current (car args)
2138 args (cdr args)
2139 found (widget-apply current :match value)))
2140 found))
2141
2142(defun widget-choice-match-inline (widget values)
2143 ;; Matches if one of the choices matches.
2144 (let ((args (widget-get widget :args))
2145 current found)
2146 (while (and args (null found))
2147 (setq current (car args)
2148 args (cdr args)
2149 found (widget-match-inline current values)))
2150 found))
2151
2152;;; The `toggle' Widget.
2153
2154(define-widget 'toggle 'item
2155 "Toggle between two states."
2156 :format "%[%v%]\n"
2157 :value-create 'widget-toggle-value-create
2158 :action 'widget-toggle-action
2159 :match (lambda (widget value) t)
2160 :on "on"
2161 :off "off")
2162
2163(defun widget-toggle-value-create (widget)
bfa6c260 2164 "Insert text representing the `on' and `off' states."
d543e20b 2165 (if (widget-value widget)
3058e436 2166 (let ((image (widget-get widget :on-glyph)))
805e9a05 2167 (and (display-graphic-p)
3058e436
MB
2168 (listp image)
2169 (not (eq (car image) 'image))
2170 (widget-put widget :on-glyph (setq image (eval image))))
805e9a05
RS
2171 (widget-image-insert widget
2172 (widget-get widget :on)
3058e436
MB
2173 image))
2174 (let ((image (widget-get widget :off-glyph)))
2175 (and (display-graphic-p)
2176 (listp image)
2177 (not (eq (car image) 'image))
2178 (widget-put widget :off-glyph (setq image (eval image))))
2179 (widget-image-insert widget (widget-get widget :off) image))))
d543e20b
PA
2180
2181(defun widget-toggle-action (widget &optional event)
2182 ;; Toggle value.
d0acc4ea
RS
2183 (widget-value-set widget (not (widget-value widget)))
2184 (widget-apply widget :notify widget event)
d4b8422f 2185 (run-hook-with-args 'widget-edit-functions widget))
6d528fc5 2186
d543e20b
PA
2187;;; The `checkbox' Widget.
2188
2189(define-widget 'checkbox 'toggle
2190 "A checkbox toggle."
25ac13b5
PA
2191 :button-suffix ""
2192 :button-prefix ""
d543e20b
PA
2193 :format "%[%v%]"
2194 :on "[X]"
35a7ac84
DL
2195 ;; We could probably do the same job as the images using single
2196 ;; space characters in a boxed face with a stretch specification to
2197 ;; make them square.
01898dc2 2198 :on-glyph "checked"
805e9a05 2199 :off "[ ]"
01898dc2 2200 :off-glyph "unchecked"
99f01612 2201 :help-echo "Toggle this item."
d543e20b
PA
2202 :action 'widget-checkbox-action)
2203
2204(defun widget-checkbox-action (widget &optional event)
2205 "Toggle checkbox, notify parent, and set active state of sibling."
2206 (widget-toggle-action widget event)
2207 (let ((sibling (widget-get-sibling widget)))
2208 (when sibling
2209 (if (widget-value widget)
2210 (widget-apply sibling :activate)
6872b31c
EZ
2211 (widget-apply sibling :deactivate))
2212 (widget-clear-undo))))
d543e20b
PA
2213
2214;;; The `checklist' Widget.
2215
2216(define-widget 'checklist 'default
2217 "A multiple choice widget."
2218 :convert-widget 'widget-types-convert-widget
4c2f559e 2219 :copy 'widget-types-copy
d543e20b
PA
2220 :format "%v"
2221 :offset 4
2222 :entry-format "%b %v"
d543e20b
PA
2223 :greedy nil
2224 :value-create 'widget-checklist-value-create
d543e20b
PA
2225 :value-get 'widget-checklist-value-get
2226 :validate 'widget-checklist-validate
2227 :match 'widget-checklist-match
2228 :match-inline 'widget-checklist-match-inline)
2229
2230(defun widget-checklist-value-create (widget)
2231 ;; Insert all values
61328d7c
CY
2232 (let ((alist (widget-checklist-match-find widget))
2233 (args (widget-get widget :args)))
2234 (dolist (item args)
2235 (widget-checklist-add-item widget item (assq item alist)))
d543e20b
PA
2236 (widget-put widget :children (nreverse (widget-get widget :children)))))
2237
2238(defun widget-checklist-add-item (widget type chosen)
bfa6c260
DL
2239 "Create checklist item in WIDGET of type TYPE.
2240If the item is checked, CHOSEN is a cons whose cdr is the value."
d543e20b
PA
2241 (and (eq (preceding-char) ?\n)
2242 (widget-get widget :indent)
00d00aa9 2243 (insert-char ?\s (widget-get widget :indent)))
bfa6c260 2244 (widget-specify-insert
d543e20b
PA
2245 (let* ((children (widget-get widget :children))
2246 (buttons (widget-get widget :buttons))
2247 (button-args (or (widget-get type :sibling-args)
2248 (widget-get widget :button-args)))
2249 (from (point))
2250 child button)
2251 (insert (widget-get widget :entry-format))
2252 (goto-char from)
2253 ;; Parse % escapes in format.
2254 (while (re-search-forward "%\\([bv%]\\)" nil t)
7fdbdbea 2255 (let ((escape (char-after (match-beginning 1))))
d355a0b7 2256 (delete-char -2)
d543e20b 2257 (cond ((eq escape ?%)
bfa6c260 2258 (insert ?%))
d543e20b
PA
2259 ((eq escape ?b)
2260 (setq button (apply 'widget-create-child-and-convert
2261 widget 'checkbox
2262 :value (not (null chosen))
2263 button-args)))
2264 ((eq escape ?v)
2265 (setq child
2266 (cond ((not chosen)
2267 (let ((child (widget-create-child widget type)))
2268 (widget-apply child :deactivate)
2269 child))
2270 ((widget-get type :inline)
2271 (widget-create-child-value
2272 widget type (cdr chosen)))
2273 (t
2274 (widget-create-child-value
2275 widget type (car (cdr chosen)))))))
bfa6c260 2276 (t
d543e20b
PA
2277 (error "Unknown escape `%c'" escape)))))
2278 ;; Update properties.
2279 (and button child (widget-put child :button button))
2280 (and button (widget-put widget :buttons (cons button buttons)))
2281 (and child (widget-put widget :children (cons child children))))))
2282
2283(defun widget-checklist-match (widget values)
2284 ;; All values must match a type in the checklist.
2285 (and (listp values)
2286 (null (cdr (widget-checklist-match-inline widget values)))))
2287
2288(defun widget-checklist-match-inline (widget values)
2289 ;; Find the values which match a type in the checklist.
2290 (let ((greedy (widget-get widget :greedy))
ef3f635f 2291 (args (copy-sequence (widget-get widget :args)))
d543e20b
PA
2292 found rest)
2293 (while values
2294 (let ((answer (widget-checklist-match-up args values)))
bfa6c260 2295 (cond (answer
d543e20b
PA
2296 (let ((vals (widget-match-inline answer values)))
2297 (setq found (append found (car vals))
2298 values (cdr vals)
2299 args (delq answer args))))
2300 (greedy
2301 (setq rest (append rest (list (car values)))
2302 values (cdr values)))
bfa6c260 2303 (t
d543e20b
PA
2304 (setq rest (append rest values)
2305 values nil)))))
2306 (cons found rest)))
2307
61328d7c 2308(defun widget-checklist-match-find (widget &optional vals)
bfa6c260
DL
2309 "Find the vals which match a type in the checklist.
2310Return an alist of (TYPE MATCH)."
61328d7c 2311 (or vals (setq vals (widget-get widget :value)))
d543e20b 2312 (let ((greedy (widget-get widget :greedy))
ef3f635f 2313 (args (copy-sequence (widget-get widget :args)))
d543e20b
PA
2314 found)
2315 (while vals
2316 (let ((answer (widget-checklist-match-up args vals)))
bfa6c260 2317 (cond (answer
d543e20b
PA
2318 (let ((match (widget-match-inline answer vals)))
2319 (setq found (cons (cons answer (car match)) found)
2320 vals (cdr match)
2321 args (delq answer args))))
2322 (greedy
2323 (setq vals (cdr vals)))
bfa6c260 2324 (t
d543e20b
PA
2325 (setq vals nil)))))
2326 found))
2327
2328(defun widget-checklist-match-up (args vals)
bfa6c260 2329 "Return the first type from ARGS that matches VALS."
d543e20b
PA
2330 (let (current found)
2331 (while (and args (null found))
2332 (setq current (car args)
2333 args (cdr args)
2334 found (widget-match-inline current vals)))
2335 (if found
bfa6c260 2336 current)))
d543e20b
PA
2337
2338(defun widget-checklist-value-get (widget)
2339 ;; The values of all selected items.
2340 (let ((children (widget-get widget :children))
2341 child result)
bfa6c260 2342 (while children
d543e20b
PA
2343 (setq child (car children)
2344 children (cdr children))
2345 (if (widget-value (widget-get child :button))
2346 (setq result (append result (widget-apply child :value-inline)))))
2347 result))
2348
2349(defun widget-checklist-validate (widget)
2350 ;; Ticked chilren must be valid.
2351 (let ((children (widget-get widget :children))
2352 child button found)
2353 (while (and children (not found))
2354 (setq child (car children)
2355 children (cdr children)
2356 button (widget-get child :button)
2357 found (and (widget-value button)
2358 (widget-apply child :validate))))
2359 found))
2360
2361;;; The `option' Widget
2362
2363(define-widget 'option 'checklist
2364 "An widget with an optional item."
2365 :inline t)
2366
2367;;; The `choice-item' Widget.
2368
2369(define-widget 'choice-item 'item
2370 "Button items that delegate action events to their parents."
a3c88c59 2371 :action 'widget-parent-action
d543e20b
PA
2372 :format "%[%t%] \n")
2373
d543e20b
PA
2374;;; The `radio-button' Widget.
2375
2376(define-widget 'radio-button 'toggle
2377 "A radio button for use in the `radio' widget."
2378 :notify 'widget-radio-button-notify
2379 :format "%[%v%]"
25ac13b5
PA
2380 :button-suffix ""
2381 :button-prefix ""
d543e20b
PA
2382 :on "(*)"
2383 :on-glyph "radio1"
2384 :off "( )"
2385 :off-glyph "radio0")
2386
2387(defun widget-radio-button-notify (widget child &optional event)
2388 ;; Tell daddy.
2389 (widget-apply (widget-get widget :parent) :action widget event))
2390
2391;;; The `radio-button-choice' Widget.
2392
2393(define-widget 'radio-button-choice 'default
2394 "Select one of multiple options."
2395 :convert-widget 'widget-types-convert-widget
4c2f559e 2396 :copy 'widget-types-copy
d543e20b
PA
2397 :offset 4
2398 :format "%v"
2399 :entry-format "%b %v"
d543e20b 2400 :value-create 'widget-radio-value-create
d543e20b
PA
2401 :value-get 'widget-radio-value-get
2402 :value-inline 'widget-radio-value-inline
2403 :value-set 'widget-radio-value-set
2404 :error "You must push one of the buttons"
2405 :validate 'widget-radio-validate
2406 :match 'widget-choice-match
2407 :match-inline 'widget-choice-match-inline
2408 :action 'widget-radio-action)
2409
2410(defun widget-radio-value-create (widget)
2411 ;; Insert all values
2412 (let ((args (widget-get widget :args))
2413 arg)
bfa6c260 2414 (while args
d543e20b
PA
2415 (setq arg (car args)
2416 args (cdr args))
2417 (widget-radio-add-item widget arg))))
2418
2419(defun widget-radio-add-item (widget type)
2420 "Add to radio widget WIDGET a new radio button item of type TYPE."
2421 ;; (setq type (widget-convert type))
2422 (and (eq (preceding-char) ?\n)
2423 (widget-get widget :indent)
00d00aa9 2424 (insert-char ?\s (widget-get widget :indent)))
bfa6c260 2425 (widget-specify-insert
d543e20b
PA
2426 (let* ((value (widget-get widget :value))
2427 (children (widget-get widget :children))
2428 (buttons (widget-get widget :buttons))
2429 (button-args (or (widget-get type :sibling-args)
2430 (widget-get widget :button-args)))
2431 (from (point))
2432 (chosen (and (null (widget-get widget :choice))
2433 (widget-apply type :match value)))
2434 child button)
2435 (insert (widget-get widget :entry-format))
2436 (goto-char from)
2437 ;; Parse % escapes in format.
2438 (while (re-search-forward "%\\([bv%]\\)" nil t)
7fdbdbea 2439 (let ((escape (char-after (match-beginning 1))))
d355a0b7 2440 (delete-char -2)
d543e20b 2441 (cond ((eq escape ?%)
bfa6c260 2442 (insert ?%))
d543e20b
PA
2443 ((eq escape ?b)
2444 (setq button (apply 'widget-create-child-and-convert
bfa6c260 2445 widget 'radio-button
d543e20b
PA
2446 :value (not (null chosen))
2447 button-args)))
2448 ((eq escape ?v)
2449 (setq child (if chosen
2450 (widget-create-child-value
2451 widget type value)
2452 (widget-create-child widget type)))
bfa6c260 2453 (unless chosen
d543e20b 2454 (widget-apply child :deactivate)))
bfa6c260 2455 (t
d543e20b
PA
2456 (error "Unknown escape `%c'" escape)))))
2457 ;; Update properties.
2458 (when chosen
2459 (widget-put widget :choice type))
bfa6c260 2460 (when button
d543e20b
PA
2461 (widget-put child :button button)
2462 (widget-put widget :buttons (nconc buttons (list button))))
2463 (when child
2464 (widget-put widget :children (nconc children (list child))))
2465 child)))
2466
2467(defun widget-radio-value-get (widget)
2468 ;; Get value of the child widget.
2469 (let ((chosen (widget-radio-chosen widget)))
2470 (and chosen (widget-value chosen))))
2471
2472(defun widget-radio-chosen (widget)
2473 "Return the widget representing the chosen radio button."
2474 (let ((children (widget-get widget :children))
2475 current found)
2476 (while children
2477 (setq current (car children)
2478 children (cdr children))
7fdbdbea
DL
2479 (when (widget-apply (widget-get current :button) :value-get)
2480 (setq found current
2481 children nil)))
d543e20b
PA
2482 found))
2483
2484(defun widget-radio-value-inline (widget)
2485 ;; Get value of the child widget.
2486 (let ((children (widget-get widget :children))
2487 current found)
2488 (while children
2489 (setq current (car children)
2490 children (cdr children))
7fdbdbea
DL
2491 (when (widget-apply (widget-get current :button) :value-get)
2492 (setq found (widget-apply current :value-inline)
2493 children nil)))
d543e20b
PA
2494 found))
2495
2496(defun widget-radio-value-set (widget value)
2497 ;; We can't just delete and recreate a radio widget, since children
2498 ;; can be added after the original creation and won't be recreated
2499 ;; by `:create'.
2500 (let ((children (widget-get widget :children))
2501 current found)
2502 (while children
2503 (setq current (car children)
2504 children (cdr children))
2505 (let* ((button (widget-get current :button))
2506 (match (and (not found)
2507 (widget-apply current :match value))))
2508 (widget-value-set button match)
bfa6c260
DL
2509 (if match
2510 (progn
d543e20b
PA
2511 (widget-value-set current value)
2512 (widget-apply current :activate))
2513 (widget-apply current :deactivate))
2514 (setq found (or found match))))))
2515
2516(defun widget-radio-validate (widget)
2517 ;; Valid if we have made a valid choice.
2518 (let ((children (widget-get widget :children))
2519 current found button)
2520 (while (and children (not found))
2521 (setq current (car children)
2522 children (cdr children)
2523 button (widget-get current :button)
2524 found (widget-apply button :value-get)))
2525 (if found
2526 (widget-apply current :validate)
2527 widget)))
2528
2529(defun widget-radio-action (widget child event)
2530 ;; Check if a radio button was pressed.
2531 (let ((children (widget-get widget :children))
2532 (buttons (widget-get widget :buttons))
2533 current)
2534 (when (memq child buttons)
2535 (while children
2536 (setq current (car children)
2537 children (cdr children))
2538 (let* ((button (widget-get current :button)))
2539 (cond ((eq child button)
2540 (widget-value-set button t)
2541 (widget-apply current :activate))
2542 ((widget-value button)
2543 (widget-value-set button nil)
2544 (widget-apply current :deactivate)))))))
2545 ;; Pass notification to parent.
2546 (widget-apply widget :notify child event))
2547
2548;;; The `insert-button' Widget.
2549
2550(define-widget 'insert-button 'push-button
2ff864e0
DL
2551 "An insert button for the `editable-list' widget."
2552 :tag "INS"
2553 :help-echo "Insert a new item into the list at this position."
d543e20b
PA
2554 :action 'widget-insert-button-action)
2555
2556(defun widget-insert-button-action (widget &optional event)
2557 ;; Ask the parent to insert a new item.
bfa6c260 2558 (widget-apply (widget-get widget :parent)
d543e20b
PA
2559 :insert-before (widget-get widget :widget)))
2560
2ff864e0
DL
2561;;; The `delete-button' Widget.
2562
2563(define-widget 'delete-button 'push-button
2564 "A delete button for the `editable-list' widget."
2565 :tag "DEL"
2566 :help-echo "Delete this item from the list."
2567 :action 'widget-delete-button-action)
2568
2569(defun widget-delete-button-action (widget &optional event)
2570 ;; Ask the parent to insert a new item.
2571 (widget-apply (widget-get widget :parent)
2572 :delete-at (widget-get widget :widget)))
2573
d543e20b
PA
2574;;; The `editable-list' Widget.
2575
7fdbdbea 2576;; (defcustom widget-editable-list-gui nil
80b709bc 2577;; "If non-nil, use GUI push-buttons in editable list when available."
7fdbdbea
DL
2578;; :type 'boolean
2579;; :group 'widgets)
d543e20b
PA
2580
2581(define-widget 'editable-list 'default
2582 "A variable list of widgets of the same type."
2583 :convert-widget 'widget-types-convert-widget
4c2f559e 2584 :copy 'widget-types-copy
d543e20b
PA
2585 :offset 12
2586 :format "%v%i\n"
2587 :format-handler 'widget-editable-list-format-handler
2ff864e0 2588 :entry-format "%i %d %v"
d543e20b 2589 :value-create 'widget-editable-list-value-create
d543e20b 2590 :value-get 'widget-editable-list-value-get
a3c88c59 2591 :validate 'widget-children-validate
d543e20b
PA
2592 :match 'widget-editable-list-match
2593 :match-inline 'widget-editable-list-match-inline
2594 :insert-before 'widget-editable-list-insert-before
2595 :delete-at 'widget-editable-list-delete-at)
2596
2597(defun widget-editable-list-format-handler (widget escape)
2598 ;; We recognize the insert button.
407e43be 2599 ;; (let ((widget-push-button-gui widget-editable-list-gui))
d543e20b
PA
2600 (cond ((eq escape ?i)
2601 (and (widget-get widget :indent)
00d00aa9 2602 (insert-char ?\s (widget-get widget :indent)))
bfa6c260 2603 (apply 'widget-create-child-and-convert
d543e20b
PA
2604 widget 'insert-button
2605 (widget-get widget :append-button-args)))
bfa6c260 2606 (t
7fdbdbea 2607 (widget-default-format-handler widget escape)))
407e43be 2608 ;; )
7fdbdbea 2609 )
d543e20b
PA
2610
2611(defun widget-editable-list-value-create (widget)
2612 ;; Insert all values
2613 (let* ((value (widget-get widget :value))
2614 (type (nth 0 (widget-get widget :args)))
d543e20b
PA
2615 children)
2616 (widget-put widget :value-pos (copy-marker (point)))
2617 (set-marker-insertion-type (widget-get widget :value-pos) t)
2618 (while value
2619 (let ((answer (widget-match-inline type value)))
2620 (if answer
2621 (setq children (cons (widget-editable-list-entry-create
2622 widget
7fdbdbea 2623 (if (widget-get type :inline)
d543e20b
PA
2624 (car answer)
2625 (car (car answer)))
2626 t)
2627 children)
2628 value (cdr answer))
2629 (setq value nil))))
2630 (widget-put widget :children (nreverse children))))
2631
2632(defun widget-editable-list-value-get (widget)
2633 ;; Get value of the child widget.
2634 (apply 'append (mapcar (lambda (child) (widget-apply child :value-inline))
2635 (widget-get widget :children))))
2636
d543e20b
PA
2637(defun widget-editable-list-match (widget value)
2638 ;; Value must be a list and all the members must match the type.
2639 (and (listp value)
2640 (null (cdr (widget-editable-list-match-inline widget value)))))
2641
2642(defun widget-editable-list-match-inline (widget value)
2643 (let ((type (nth 0 (widget-get widget :args)))
2644 (ok t)
2645 found)
2646 (while (and value ok)
2647 (let ((answer (widget-match-inline type value)))
bfa6c260 2648 (if answer
d543e20b
PA
2649 (setq found (append found (car answer))
2650 value (cdr answer))
2651 (setq ok nil))))
2652 (cons found value)))
2653
2654(defun widget-editable-list-insert-before (widget before)
2655 ;; Insert a new child in the list of children.
2656 (save-excursion
2657 (let ((children (widget-get widget :children))
2658 (inhibit-read-only t)
c6753d66 2659 before-change-functions
d543e20b 2660 after-change-functions)
bfa6c260 2661 (cond (before
d543e20b
PA
2662 (goto-char (widget-get before :entry-from)))
2663 (t
2664 (goto-char (widget-get widget :value-pos))))
bfa6c260 2665 (let ((child (widget-editable-list-entry-create
d543e20b
PA
2666 widget nil nil)))
2667 (when (< (widget-get child :entry-from) (widget-get widget :from))
2668 (set-marker (widget-get widget :from)
2669 (widget-get child :entry-from)))
d543e20b
PA
2670 (if (eq (car children) before)
2671 (widget-put widget :children (cons child children))
2672 (while (not (eq (car (cdr children)) before))
2673 (setq children (cdr children)))
2674 (setcdr children (cons child (cdr children)))))))
2675 (widget-setup)
0a3a0b56 2676 (widget-apply widget :notify widget))
d543e20b
PA
2677
2678(defun widget-editable-list-delete-at (widget child)
2679 ;; Delete child from list of children.
2680 (save-excursion
ef3f635f 2681 (let ((buttons (copy-sequence (widget-get widget :buttons)))
d543e20b
PA
2682 button
2683 (inhibit-read-only t)
c6753d66 2684 before-change-functions
d543e20b
PA
2685 after-change-functions)
2686 (while buttons
2687 (setq button (car buttons)
2688 buttons (cdr buttons))
2689 (when (eq (widget-get button :widget) child)
2690 (widget-put widget
2691 :buttons (delq button (widget-get widget :buttons)))
2692 (widget-delete button))))
2693 (let ((entry-from (widget-get child :entry-from))
2694 (entry-to (widget-get child :entry-to))
2695 (inhibit-read-only t)
c6753d66 2696 before-change-functions
d543e20b
PA
2697 after-change-functions)
2698 (widget-delete child)
2699 (delete-region entry-from entry-to)
2700 (set-marker entry-from nil)
2701 (set-marker entry-to nil))
2702 (widget-put widget :children (delq child (widget-get widget :children))))
2703 (widget-setup)
2704 (widget-apply widget :notify widget))
2705
2706(defun widget-editable-list-entry-create (widget value conv)
2707 ;; Create a new entry to the list.
2708 (let ((type (nth 0 (widget-get widget :args)))
407e43be 2709 ;; (widget-push-button-gui widget-editable-list-gui)
2ff864e0 2710 child delete insert)
bfa6c260 2711 (widget-specify-insert
d543e20b
PA
2712 (save-excursion
2713 (and (widget-get widget :indent)
00d00aa9 2714 (insert-char ?\s (widget-get widget :indent)))
d543e20b
PA
2715 (insert (widget-get widget :entry-format)))
2716 ;; Parse % escapes in format.
2717 (while (re-search-forward "%\\(.\\)" nil t)
7fdbdbea 2718 (let ((escape (char-after (match-beginning 1))))
d355a0b7 2719 (delete-char -2)
d543e20b 2720 (cond ((eq escape ?%)
bfa6c260 2721 (insert ?%))
2ff864e0
DL
2722 ((eq escape ?i)
2723 (setq insert (apply 'widget-create-child-and-convert
2724 widget 'insert-button
2725 (widget-get widget :insert-button-args))))
2726 ((eq escape ?d)
2727 (setq delete (apply 'widget-create-child-and-convert
2728 widget 'delete-button
2729 (widget-get widget :delete-button-args))))
d543e20b
PA
2730 ((eq escape ?v)
2731 (if conv
bfa6c260 2732 (setq child (widget-create-child-value
d543e20b 2733 widget type value))
bfa6c260 2734 (setq child (widget-create-child-value
4c2f559e 2735 widget type (widget-default-get type)))))
bfa6c260 2736 (t
d543e20b 2737 (error "Unknown escape `%c'" escape)))))
407e43be
SM
2738 (let ((buttons (widget-get widget :buttons)))
2739 (if insert (push insert buttons))
2740 (if delete (push delete buttons))
2741 (widget-put widget :buttons buttons))
7fdbdbea
DL
2742 (let ((entry-from (point-min-marker))
2743 (entry-to (point-max-marker)))
d543e20b
PA
2744 (set-marker-insertion-type entry-from t)
2745 (set-marker-insertion-type entry-to nil)
2746 (widget-put child :entry-from entry-from)
2747 (widget-put child :entry-to entry-to)))
407e43be
SM
2748 (if insert (widget-put insert :widget child))
2749 (if delete (widget-put delete :widget child))
d543e20b
PA
2750 child))
2751
2752;;; The `group' Widget.
2753
2754(define-widget 'group 'default
a89a9d34 2755 "A widget which groups other widgets inside."
d543e20b 2756 :convert-widget 'widget-types-convert-widget
4c2f559e 2757 :copy 'widget-types-copy
d543e20b
PA
2758 :format "%v"
2759 :value-create 'widget-group-value-create
d543e20b 2760 :value-get 'widget-editable-list-value-get
783824f5 2761 :default-get 'widget-group-default-get
a3c88c59 2762 :validate 'widget-children-validate
d543e20b
PA
2763 :match 'widget-group-match
2764 :match-inline 'widget-group-match-inline)
2765
2766(defun widget-group-value-create (widget)
2767 ;; Create each component.
2768 (let ((args (widget-get widget :args))
2769 (value (widget-get widget :value))
2770 arg answer children)
2771 (while args
2772 (setq arg (car args)
2773 args (cdr args)
2774 answer (widget-match-inline arg value)
2775 value (cdr answer))
2776 (and (eq (preceding-char) ?\n)
2777 (widget-get widget :indent)
00d00aa9 2778 (insert-char ?\s (widget-get widget :indent)))
3acab5ef
PA
2779 (push (cond ((null answer)
2780 (widget-create-child widget arg))
2781 ((widget-get arg :inline)
7fdbdbea 2782 (widget-create-child-value widget arg (car answer)))
3acab5ef 2783 (t
7fdbdbea 2784 (widget-create-child-value widget arg (car (car answer)))))
3acab5ef 2785 children))
d543e20b
PA
2786 (widget-put widget :children (nreverse children))))
2787
783824f5
RS
2788(defun widget-group-default-get (widget)
2789 ;; Get the default of the components.
2790 (mapcar 'widget-default-get (widget-get widget :args)))
2791
d543e20b
PA
2792(defun widget-group-match (widget values)
2793 ;; Match if the components match.
2794 (and (listp values)
2795 (let ((match (widget-group-match-inline widget values)))
2796 (and match (null (cdr match))))))
2797
2798(defun widget-group-match-inline (widget vals)
2799 ;; Match if the components match.
2800 (let ((args (widget-get widget :args))
2801 argument answer found)
2802 (while args
2803 (setq argument (car args)
61328d7c
CY
2804 args (cdr args))
2805 (if (setq answer (widget-match-inline argument vals))
2806 (setq found (append found (car answer))
2807 vals (cdr answer))
d543e20b
PA
2808 (setq vals nil
2809 args nil)))
2810 (if answer
bfa6c260 2811 (cons found vals))))
d543e20b 2812
3acab5ef 2813;;; The `visibility' Widget.
d543e20b 2814
3acab5ef 2815(define-widget 'visibility 'item
647f9993
CY
2816 "An indicator and manipulator for hidden items.
2817
2818The following properties have special meanings for this widget:
2819:on-image Image filename or spec to display when the item is visible.
2820:on Text shown if the \"on\" image is nil or cannot be displayed.
2821:off-image Image filename or spec to display when the item is hidden.
2822:off Text shown if the \"off\" image is nil cannot be displayed."
3acab5ef
PA
2823 :format "%[%v%]"
2824 :button-prefix ""
2825 :button-suffix ""
647f9993 2826 :on-image "down"
c6753d66 2827 :on "Hide"
647f9993 2828 :off-image "right"
c6753d66 2829 :off "Show"
3acab5ef
PA
2830 :value-create 'widget-visibility-value-create
2831 :action 'widget-toggle-action
2832 :match (lambda (widget value) t))
d543e20b 2833
3acab5ef
PA
2834(defun widget-visibility-value-create (widget)
2835 ;; Insert text representing the `on' and `off' states.
647f9993
CY
2836 (let* ((val (widget-value widget))
2837 (text (widget-get widget (if val :on :off)))
2838 (img (widget-image-find
2839 (widget-get widget (if val :on-image :off-image)))))
2840 (widget-image-insert widget
2841 (if text
2842 (concat widget-push-button-prefix text
2843 widget-push-button-suffix)
2844 "")
2845 (if img
2846 (append img '(:ascent center))))))
c6753d66 2847
8697863a
PA
2848;;; The `documentation-link' Widget.
2849;;
2850;; This is a helper widget for `documentation-string'.
3acab5ef 2851
8697863a
PA
2852(define-widget 'documentation-link 'link
2853 "Link type used in documentation strings."
2854 :tab-order -1
bfa6c260 2855 :help-echo "Describe this symbol"
8697863a
PA
2856 :action 'widget-documentation-link-action)
2857
8697863a 2858(defun widget-documentation-link-action (widget &optional event)
f9923499 2859 "Display documentation for WIDGET's value. Ignore optional argument EVENT."
9dccd7ef
RS
2860 (let* ((string (widget-get widget :value))
2861 (symbol (intern string)))
2862 (if (and (fboundp symbol) (boundp symbol))
f9923499 2863 ;; If there are two doc strings, give the user a way to pick one.
9dccd7ef
RS
2864 (apropos (concat "\\`" (regexp-quote string) "\\'"))
2865 (if (fboundp symbol)
2866 (describe-function symbol)
2867 (describe-variable symbol)))))
8697863a
PA
2868
2869(defcustom widget-documentation-links t
2870 "Add hyperlinks to documentation strings when non-nil."
2871 :type 'boolean
2872 :group 'widget-documentation)
2873
2874(defcustom widget-documentation-link-regexp "`\\([^\n`' ]+\\)'"
2875 "Regexp for matching potential links in documentation strings.
2876The first group should be the link itself."
2877 :type 'regexp
2878 :group 'widget-documentation)
2879
2880(defcustom widget-documentation-link-p 'intern-soft
2881 "Predicate used to test if a string is useful as a link.
a3545af4 2882The value should be a function. The function will be called with one
8697863a
PA
2883argument, a string, and should return non-nil if there should be a
2884link for that string."
2885 :type 'function
2886 :options '(widget-documentation-link-p)
2887 :group 'widget-documentation)
2888
2889(defcustom widget-documentation-link-type 'documentation-link
2890 "Widget type used for links in documentation strings."
2891 :type 'symbol
2892 :group 'widget-documentation)
2893
2894(defun widget-documentation-link-add (widget from to)
2895 (widget-specify-doc widget from to)
2896 (when widget-documentation-links
2897 (let ((regexp widget-documentation-link-regexp)
a89a9d34
DL
2898 (buttons (widget-get widget :buttons))
2899 (widget-mouse-face (default-value 'widget-mouse-face))
2900 (widget-button-face widget-documentation-face)
2901 (widget-button-pressed-face widget-documentation-face))
8697863a
PA
2902 (save-excursion
2903 (goto-char from)
2904 (while (re-search-forward regexp to t)
2905 (let ((name (match-string 1))
a1a4fa22
PA
2906 (begin (match-beginning 1))
2907 (end (match-end 1)))
7fdbdbea
DL
2908 (when (funcall widget-documentation-link-p name)
2909 (push (widget-convert-button widget-documentation-link-type
2910 begin end :value name)
8697863a
PA
2911 buttons)))))
2912 (widget-put widget :buttons buttons)))
2913 (let ((indent (widget-get widget :indent)))
2914 (when (and indent (not (zerop indent)))
bfa6c260 2915 (save-excursion
8697863a
PA
2916 (save-restriction
2917 (narrow-to-region from to)
2918 (goto-char (point-min))
2919 (while (search-forward "\n" nil t)
00d00aa9 2920 (insert-char ?\s indent)))))))
8697863a
PA
2921
2922;;; The `documentation-string' Widget.
0ce5b5d5 2923
3acab5ef
PA
2924(define-widget 'documentation-string 'item
2925 "A documentation string."
2926 :format "%v"
2927 :action 'widget-documentation-string-action
4a1b7052
CY
2928 :value-create 'widget-documentation-string-value-create
2929 :visibility-widget 'visibility)
3acab5ef
PA
2930
2931(defun widget-documentation-string-value-create (widget)
2932 ;; Insert documentation string.
2933 (let ((doc (widget-value widget))
8697863a 2934 (indent (widget-get widget :indent))
6aaedd12
PA
2935 (shown (widget-get (widget-get widget :parent) :documentation-shown))
2936 (start (point)))
3acab5ef
PA
2937 (if (string-match "\n" doc)
2938 (let ((before (substring doc 0 (match-beginning 0)))
2939 (after (substring doc (match-beginning 0)))
7fdbdbea 2940 button)
3e318d97
CY
2941 (when (and indent (not (zerop indent)))
2942 (insert-char ?\s indent))
00d00aa9 2943 (insert before ?\s)
8697863a 2944 (widget-documentation-link-add widget start (point))
7fdbdbea
DL
2945 (setq button
2946 (widget-create-child-and-convert
4a1b7052 2947 widget (widget-get widget :visibility-widget)
8697863a 2948 :help-echo "Show or hide rest of the documentation."
647f9993 2949 :on "Hide"
c6753d66 2950 :off "More"
0640c647 2951 :always-active t
3acab5ef 2952 :action 'widget-parent-action
7fdbdbea 2953 shown))
3acab5ef 2954 (when shown
0ce5b5d5 2955 (setq start (point))
8697863a 2956 (when (and indent (not (zerop indent)))
00d00aa9 2957 (insert-char ?\s indent))
0ce5b5d5 2958 (insert after)
8697863a 2959 (widget-documentation-link-add widget start (point)))
7fdbdbea 2960 (widget-put widget :buttons (list button)))
3e318d97
CY
2961 (when (and indent (not (zerop indent)))
2962 (insert-char ?\s indent))
6aaedd12 2963 (insert doc)
8697863a 2964 (widget-documentation-link-add widget start (point))))
bfa6c260 2965 (insert ?\n))
3acab5ef
PA
2966
2967(defun widget-documentation-string-action (widget &rest ignore)
2968 ;; Toggle documentation.
2969 (let ((parent (widget-get widget :parent)))
bfa6c260 2970 (widget-put parent :documentation-shown
3acab5ef
PA
2971 (not (widget-get parent :documentation-shown))))
2972 ;; Redraw.
d543e20b 2973 (widget-value-set widget (widget-value widget)))
4a1b7052
CY
2974
2975(defun widget-add-documentation-string-button (widget &rest args)
2976 "Insert a new `documentation-string' widget based on WIDGET.
2977The new widget becomes a child of WIDGET, and is also added to
2978its `:buttons' list. The documentation string is found from
2979WIDGET using the function `widget-docstring'.
2980Optional ARGS specifies additional keyword arguments for the
2981`documentation-string' widget."
2982 (let ((doc (widget-docstring widget))
2983 (indent (widget-get widget :indent))
2984 (doc-indent (widget-get widget :documentation-indent)))
2985 (when doc
2986 (and (eq (preceding-char) ?\n)
2987 indent
2988 (insert-char ?\s indent))
2989 (unless (or (numberp doc-indent) (null doc-indent))
2990 (setq doc-indent 0))
4a1b7052
CY
2991 (widget-put widget :buttons
2992 (cons (apply 'widget-create-child-and-convert
2993 widget 'documentation-string
511ab56a 2994 :indent doc-indent
4a1b7052
CY
2995 (nconc args (list doc)))
2996 (widget-get widget :buttons))))))
fc56773e 2997\f
d543e20b
PA
2998;;; The Sexp Widgets.
2999
3000(define-widget 'const 'item
3001 "An immutable sexp."
6d528fc5 3002 :prompt-value 'widget-const-prompt-value
d543e20b
PA
3003 :format "%t\n%d")
3004
6d528fc5
PA
3005(defun widget-const-prompt-value (widget prompt value unbound)
3006 ;; Return the value of the const.
3007 (widget-value widget))
3008
3009(define-widget 'function-item 'const
d543e20b
PA
3010 "An immutable function name."
3011 :format "%v\n%h"
3012 :documentation-property (lambda (symbol)
3013 (condition-case nil
3014 (documentation symbol t)
3015 (error nil))))
3016
6d528fc5 3017(define-widget 'variable-item 'const
d543e20b
PA
3018 "An immutable variable name."
3019 :format "%v\n%h"
3020 :documentation-property 'variable-documentation)
3021
cc0a25e1
RS
3022(define-widget 'other 'sexp
3023 "Matches any value, but doesn't let the user edit the value.
3024This is useful as last item in a `choice' widget.
3025You should use this widget type with a default value,
b720878d 3026as in (other DEFAULT) or (other :tag \"NAME\" DEFAULT).
cc0a25e1
RS
3027If the user selects this alternative, that specifies DEFAULT
3028as the value."
3029 :tag "Other"
3030 :format "%t%n"
3031 :value 'other)
3032
6d528fc5
PA
3033(defvar widget-string-prompt-value-history nil
3034 "History of input to `widget-string-prompt-value'.")
3035
a3c88c59
PA
3036(define-widget 'string 'editable-field
3037 "A string"
3038 :tag "String"
3039 :format "%{%t%}: %v"
0ce5b5d5 3040 :complete-function 'ispell-complete-word
a3c88c59 3041 :prompt-history 'widget-string-prompt-value-history)
6d528fc5 3042
b0628208
DL
3043(defun widget-string-complete ()
3044 "Complete contents of string field.
3045Completions are taken from the :completion-alist property of the
3046widget. If that isn't a list, it's evalled and expected to yield a list."
3047 (interactive)
587faadd
CY
3048 (let* ((widget widget--completing-widget)
3049 (completion-ignore-case (widget-get widget :completion-ignore-case))
b0628208
DL
3050 (alist (widget-get widget :completion-alist))
3051 (_ (unless (listp alist)
bb12edf1
SM
3052 (setq alist (eval alist)))))
3053 (completion-in-region (widget-field-start widget)
3054 (max (point) (widget-field-text-end widget))
3055 alist)))
b0628208 3056
d543e20b
PA
3057(define-widget 'regexp 'string
3058 "A regular expression."
6d528fc5
PA
3059 :match 'widget-regexp-match
3060 :validate 'widget-regexp-validate
4ee1cf9f 3061 ;; Doesn't work well with terminating newline.
0efefc52 3062 ;; :value-face 'widget-single-line-field
d543e20b
PA
3063 :tag "Regexp")
3064
6d528fc5
PA
3065(defun widget-regexp-match (widget value)
3066 ;; Match valid regexps.
3067 (and (stringp value)
a3c88c59 3068 (condition-case nil
6d528fc5
PA
3069 (prog1 t
3070 (string-match value ""))
3071 (error nil))))
3072
3073(defun widget-regexp-validate (widget)
3074 "Check that the value of WIDGET is a valid regexp."
7fdbdbea
DL
3075 (condition-case data
3076 (prog1 nil
3077 (string-match (widget-value widget) ""))
3078 (error (widget-put widget :error (error-message-string data))
3079 widget)))
6d528fc5 3080
d543e20b 3081(define-widget 'file 'string
bfa6c260 3082 "A file widget.
f29cf2b1 3083It reads a file name from an editable text field."
f1231b8e 3084 :complete-function 'widget-file-complete
6d528fc5 3085 :prompt-value 'widget-file-prompt-value
a3c88c59 3086 :format "%{%t%}: %v"
4ee1cf9f 3087 ;; Doesn't work well with terminating newline.
0efefc52 3088 ;; :value-face 'widget-single-line-field
f1231b8e
RS
3089 :tag "File")
3090
3091(defun widget-file-complete ()
3092 "Perform completion on file name preceding point."
3093 (interactive)
587faadd
CY
3094 (let ((widget widget--completing-widget))
3095 (completion-in-region (widget-field-start widget)
3096 (max (point) (widget-field-text-end widget))
3097 'completion-file-name-table)))
d543e20b 3098
6d528fc5
PA
3099(defun widget-file-prompt-value (widget prompt value unbound)
3100 ;; Read file from minibuffer.
3101 (abbreviate-file-name
3102 (if unbound
3103 (read-file-name prompt)
5b76833f 3104 (let ((prompt2 (format "%s (default %s): " prompt value))
6d528fc5
PA
3105 (dir (file-name-directory value))
3106 (file (file-name-nondirectory value))
3107 (must-match (widget-get widget :must-match)))
3108 (read-file-name prompt2 dir nil must-match file)))))
3109
f1231b8e
RS
3110;;;(defun widget-file-action (widget &optional event)
3111;;; ;; Read a file name from the minibuffer.
3112;;; (let* ((value (widget-value widget))
3113;;; (dir (file-name-directory value))
3114;;; (file (file-name-nondirectory value))
3115;;; (menu-tag (widget-apply widget :menu-tag-get))
3116;;; (must-match (widget-get widget :must-match))
5b76833f 3117;;; (answer (read-file-name (concat menu-tag " (default " value "): ")
f1231b8e
RS
3118;;; dir nil must-match file)))
3119;;; (widget-value-set widget (abbreviate-file-name answer))
3120;;; (widget-setup)
3121;;; (widget-apply widget :notify widget event)))
d543e20b 3122
bd1f16ce 3123;; Fixme: use file-name-as-directory.
d543e20b 3124(define-widget 'directory 'file
bfa6c260 3125 "A directory widget.
f29cf2b1 3126It reads a directory name from an editable text field."
d543e20b
PA
3127 :tag "Directory")
3128
a3c88c59
PA
3129(defvar widget-symbol-prompt-value-history nil
3130 "History of input to `widget-symbol-prompt-value'.")
3131
3132(define-widget 'symbol 'editable-field
4084d128 3133 "A Lisp symbol."
d543e20b
PA
3134 :value nil
3135 :tag "Symbol"
a3c88c59 3136 :format "%{%t%}: %v"
d543e20b 3137 :match (lambda (widget value) (symbolp value))
f1231b8e 3138 :complete-function 'lisp-complete-symbol
a3c88c59
PA
3139 :prompt-internal 'widget-symbol-prompt-internal
3140 :prompt-match 'symbolp
3141 :prompt-history 'widget-symbol-prompt-value-history
d543e20b
PA
3142 :value-to-internal (lambda (widget value)
3143 (if (symbolp value)
3144 (symbol-name value)
3145 value))
3146 :value-to-external (lambda (widget value)
3147 (if (stringp value)
3148 (intern value)
3149 value)))
3150
a3c88c59
PA
3151(defun widget-symbol-prompt-internal (widget prompt initial history)
3152 ;; Read file from minibuffer.
bfa6c260 3153 (let ((answer (completing-read prompt obarray
a3c88c59
PA
3154 (widget-get widget :prompt-match)
3155 nil initial history)))
3156 (if (and (stringp answer)
3157 (not (zerop (length answer))))
3158 answer
3159 (error "No value"))))
3160
3161(defvar widget-function-prompt-value-history nil
3162 "History of input to `widget-function-prompt-value'.")
3163
99477684 3164(define-widget 'function 'restricted-sexp
4084d128 3165 "A Lisp function."
7fdbdbea
DL
3166 :complete-function (lambda ()
3167 (interactive)
3168 (lisp-complete-symbol 'fboundp))
a3c88c59
PA
3169 :prompt-value 'widget-field-prompt-value
3170 :prompt-internal 'widget-symbol-prompt-internal
3171 :prompt-match 'fboundp
3172 :prompt-history 'widget-function-prompt-value-history
3173 :action 'widget-field-action
bd1f16ce 3174 :match-alternatives '(functionp)
7fdbdbea
DL
3175 :validate (lambda (widget)
3176 (unless (functionp (widget-value widget))
3177 (widget-put widget :error (format "Invalid function: %S"
3178 (widget-value widget)))
3179 widget))
3180 :value 'ignore
d543e20b
PA
3181 :tag "Function")
3182
a3c88c59
PA
3183(defvar widget-variable-prompt-value-history nil
3184 "History of input to `widget-variable-prompt-value'.")
3185
d543e20b 3186(define-widget 'variable 'symbol
be96282a 3187 "A Lisp variable."
a3c88c59
PA
3188 :prompt-match 'boundp
3189 :prompt-history 'widget-variable-prompt-value-history
7fdbdbea
DL
3190 :complete-function (lambda ()
3191 (interactive)
3192 (lisp-complete-symbol 'boundp))
d543e20b
PA
3193 :tag "Variable")
3194
fc56773e
RS
3195(define-widget 'coding-system 'symbol
3196 "A MULE coding-system."
3197 :format "%{%t%}: %v"
3198 :tag "Coding system"
7fdbdbea 3199 :base-only nil
b0628208 3200 :prompt-history 'coding-system-value-history
fc56773e 3201 :prompt-value 'widget-coding-system-prompt-value
7fdbdbea
DL
3202 :action 'widget-coding-system-action
3203 :complete-function (lambda ()
3204 (interactive)
3205 (lisp-complete-symbol 'coding-system-p))
3206 :validate (lambda (widget)
3207 (unless (coding-system-p (widget-value widget))
3208 (widget-put widget :error (format "Invalid coding system: %S"
3209 (widget-value widget)))
3210 widget))
3211 :value 'undecided
3212 :prompt-match 'coding-system-p)
3213
fc56773e 3214(defun widget-coding-system-prompt-value (widget prompt value unbound)
7fdbdbea
DL
3215 "Read coding-system from minibuffer."
3216 (if (widget-get widget :base-only)
3217 (intern
5b76833f 3218 (completing-read (format "%s (default %s): " prompt value)
7fdbdbea
DL
3219 (mapcar #'list (coding-system-list t)) nil nil nil
3220 coding-system-history))
5b76833f 3221 (read-coding-system (format "%s (default %s): " prompt value) value)))
fc56773e
RS
3222
3223(defun widget-coding-system-action (widget &optional event)
fc56773e
RS
3224 (let ((answer
3225 (widget-coding-system-prompt-value
3226 widget
3227 (widget-apply widget :menu-tag-get)
3228 (widget-value widget)
3229 t)))
3230 (widget-value-set widget answer)
3231 (widget-apply widget :notify widget event)
3232 (widget-setup)))
fc56773e 3233\f
0f5642c2 3234;;; I'm not sure about what this is good for? KFS.
987cee97
RS
3235(defvar widget-key-sequence-prompt-value-history nil
3236 "History of input to `widget-key-sequence-prompt-value'.")
3237
0f5642c2
KS
3238(defvar widget-key-sequence-default-value [ignore]
3239 "Default value for an empty key sequence.")
3240
3241(defvar widget-key-sequence-map
3242 (let ((map (make-sparse-keymap)))
3243 (set-keymap-parent map widget-field-keymap)
3244 (define-key map [(control ?q)] 'widget-key-sequence-read-event)
3245 map))
987cee97
RS
3246
3247(define-widget 'key-sequence 'restricted-sexp
0f5642c2 3248 "A key sequence."
987cee97
RS
3249 :prompt-value 'widget-field-prompt-value
3250 :prompt-internal 'widget-symbol-prompt-internal
0f5642c2 3251; :prompt-match 'fboundp ;; What was this good for? KFS
987cee97
RS
3252 :prompt-history 'widget-key-sequence-prompt-value-history
3253 :action 'widget-field-action
3254 :match-alternatives '(stringp vectorp)
0f5642c2
KS
3255 :format "%{%t%}: %v"
3256 :validate 'widget-key-sequence-validate
3257 :value-to-internal 'widget-key-sequence-value-to-internal
3258 :value-to-external 'widget-key-sequence-value-to-external
3259 :value widget-key-sequence-default-value
3260 :keymap widget-key-sequence-map
3261 :help-echo "C-q: insert KEY, EVENT, or CODE; RET: enter value"
987cee97 3262 :tag "Key sequence")
0f5642c2
KS
3263
3264(defun widget-key-sequence-read-event (ev)
3265 (interactive (list
3266 (let ((inhibit-quit t) quit-flag)
3267 (read-event "Insert KEY, EVENT, or CODE: "))))
3268 (let ((ev2 (and (memq 'down (event-modifiers ev))
3269 (read-event)))
3270 (tr (and (keymapp function-key-map)
3271 (lookup-key function-key-map (vector ev)))))
3272 (when (and (integerp ev)
3273 (or (and (<= ?0 ev) (< ev (+ ?0 (min 10 read-quoted-char-radix))))
3274 (and (<= ?a (downcase ev))
3275 (< (downcase ev) (+ ?a -10 (min 36 read-quoted-char-radix))))))
3276 (setq unread-command-events (cons ev unread-command-events)
3277 ev (read-quoted-char (format "Enter code (radix %d)" read-quoted-char-radix))
3278 tr nil)
e0576f07 3279 (if (and (integerp ev) (not (characterp ev)))
0f5642c2
KS
3280 (insert (char-to-string ev)))) ;; throw invalid char error
3281 (setq ev (key-description (list ev)))
3282 (when (arrayp tr)
3283 (setq tr (key-description (list (aref tr 0))))
3284 (if (y-or-n-p (format "Key %s is translated to %s -- use %s? " ev tr tr))
3285 (setq ev tr ev2 nil)))
3286 (insert (if (= (char-before) ?\s) "" " ") ev " ")
3287 (if ev2
3288 (insert (key-description (list ev2)) " "))))
3289
3290(defun widget-key-sequence-validate (widget)
3291 (unless (or (stringp (widget-value widget))
3292 (vectorp (widget-value widget)))
3293 (widget-put widget :error (format "Invalid key sequence: %S"
3294 (widget-value widget)))
3295 widget))
3296
3297(defun widget-key-sequence-value-to-internal (widget value)
3298 (if (widget-apply widget :match value)
3299 (if (equal value widget-key-sequence-default-value)
3300 ""
3301 (key-description value))
3302 value))
3303
3304(defun widget-key-sequence-value-to-external (widget value)
3305 (if (stringp value)
3306 (if (string-match "\\`[[:space:]]*\\'" value)
3307 widget-key-sequence-default-value
3308 (read-kbd-macro value))
3309 value))
3310
987cee97 3311\f
a3c88c59 3312(define-widget 'sexp 'editable-field
be96282a 3313 "An arbitrary Lisp expression."
d543e20b 3314 :tag "Lisp expression"
a3c88c59 3315 :format "%{%t%}: %v"
d543e20b
PA
3316 :value nil
3317 :validate 'widget-sexp-validate
3318 :match (lambda (widget value) t)
3319 :value-to-internal 'widget-sexp-value-to-internal
6d528fc5 3320 :value-to-external (lambda (widget value) (read value))
a3c88c59 3321 :prompt-history 'widget-sexp-prompt-value-history
6d528fc5 3322 :prompt-value 'widget-sexp-prompt-value)
d543e20b
PA
3323
3324(defun widget-sexp-value-to-internal (widget value)
3325 ;; Use pp for printer representation.
6d1ab9d4
RS
3326 (let ((pp (if (symbolp value)
3327 (prin1-to-string value)
3328 (pp-to-string value))))
d543e20b
PA
3329 (while (string-match "\n\\'" pp)
3330 (setq pp (substring pp 0 -1)))
3331 (if (or (string-match "\n\\'" pp)
3332 (> (length pp) 40))
3333 (concat "\n" pp)
3334 pp)))
3335
3336(defun widget-sexp-validate (widget)
3337 ;; Valid if we can read the string and there is no junk left after it.
99f01612
DL
3338 (with-temp-buffer
3339 (insert (widget-apply widget :value-get))
3340 (goto-char (point-min))
1d869634
DL
3341 (let (err)
3342 (condition-case data
3343 (progn
3344 ;; Avoid a confusing end-of-file error.
3345 (skip-syntax-forward "\\s-")
3346 (if (eobp)
3347 (setq err "Empty sexp -- use `nil'?")
7fdbdbea 3348 (unless (widget-apply widget :match (read (current-buffer)))
1d869634 3349 (setq err (widget-get widget :type-error))))
3bc603c4
LH
3350 ;; Allow whitespace after expression.
3351 (skip-syntax-forward "\\s-")
1d869634
DL
3352 (if (and (not (eobp))
3353 (not err))
3354 (setq err (format "Junk at end of expression: %s"
3355 (buffer-substring (point)
3356 (point-max))))))
3357 (end-of-file ; Avoid confusing error message.
3358 (setq err "Unbalanced sexp"))
3359 (error (setq err (error-message-string data))))
3360 (if (not err)
3361 nil
3362 (widget-put widget :error err)
3363 widget))))
d543e20b 3364
6d528fc5
PA
3365(defvar widget-sexp-prompt-value-history nil
3366 "History of input to `widget-sexp-prompt-value'.")
3367
3368(defun widget-sexp-prompt-value (widget prompt value unbound)
3369 ;; Read an arbitrary sexp.
3370 (let ((found (read-string prompt
a3c88c59
PA
3371 (if unbound nil (cons (prin1-to-string value) 0))
3372 (widget-get widget :prompt-history))))
bfa6c260
DL
3373 (let ((answer (read-from-string found)))
3374 (unless (= (cdr answer) (length found))
3375 (error "Junk at end of expression: %s"
3376 (substring found (cdr answer))))
3377 (car answer))))
a3c88c59 3378
0b296dac
RS
3379(define-widget 'restricted-sexp 'sexp
3380 "A Lisp expression restricted to values that match.
3381To use this type, you must define :match or :match-alternatives."
3382 :type-error "The specified value is not valid"
3383 :match 'widget-restricted-sexp-match
3384 :value-to-internal (lambda (widget value)
3385 (if (widget-apply widget :match value)
3386 (prin1-to-string value)
3387 value)))
3388
3389(defun widget-restricted-sexp-match (widget value)
3390 (let ((alternatives (widget-get widget :match-alternatives))
3391 matched)
3392 (while (and alternatives (not matched))
3393 (if (cond ((functionp (car alternatives))
3394 (funcall (car alternatives) value))
3395 ((and (consp (car alternatives))
3396 (eq (car (car alternatives)) 'quote))
3397 (eq value (nth 1 (car alternatives)))))
3398 (setq matched t))
3399 (setq alternatives (cdr alternatives)))
3400 matched))
fc56773e 3401\f
0b296dac 3402(define-widget 'integer 'restricted-sexp
d543e20b
PA
3403 "An integer."
3404 :tag "Integer"
3405 :value 0
3406 :type-error "This field should contain an integer"
0b296dac
RS
3407 :match-alternatives '(integerp))
3408
3409(define-widget 'number 'restricted-sexp
d9bfd9dc 3410 "A number (floating point or integer)."
0b296dac
RS
3411 :tag "Number"
3412 :value 0.0
d9bfd9dc 3413 :type-error "This field should contain a number (floating point or integer)"
0b296dac 3414 :match-alternatives '(numberp))
d543e20b 3415
d9bfd9dc
MR
3416(define-widget 'float 'restricted-sexp
3417 "A floating point number."
3418 :tag "Floating point number"
3419 :value 0.0
3420 :type-error "This field should contain a floating point number"
3421 :match-alternatives '(floatp))
3422
a3c88c59 3423(define-widget 'character 'editable-field
0b296dac 3424 "A character."
d543e20b
PA
3425 :tag "Character"
3426 :value 0
bfa6c260 3427 :size 1
d543e20b 3428 :format "%{%t%}: %v\n"
1d3c7fd6 3429 :valid-regexp "\\`.\\'"
6d528fc5 3430 :error "This field should contain a single character"
d543e20b 3431 :value-to-internal (lambda (widget value)
bfa6c260 3432 (if (stringp value)
a3c88c59
PA
3433 value
3434 (char-to-string value)))
d543e20b
PA
3435 :value-to-external (lambda (widget value)
3436 (if (stringp value)
3437 (aref value 0)
3438 value))
a3c88c59 3439 :match (lambda (widget value)
e2056874 3440 (characterp value)))
d543e20b 3441
d543e20b 3442(define-widget 'list 'group
be96282a 3443 "A Lisp list."
d543e20b
PA
3444 :tag "List"
3445 :format "%{%t%}:\n%v")
3446
3447(define-widget 'vector 'group
be96282a 3448 "A Lisp vector."
d543e20b
PA
3449 :tag "Vector"
3450 :format "%{%t%}:\n%v"
3451 :match 'widget-vector-match
3452 :value-to-internal (lambda (widget value) (append value nil))
3453 :value-to-external (lambda (widget value) (apply 'vector value)))
3454
bfa6c260 3455(defun widget-vector-match (widget value)
d543e20b
PA
3456 (and (vectorp value)
3457 (widget-group-match widget
bd042c03 3458 (widget-apply widget :value-to-internal value))))
d543e20b
PA
3459
3460(define-widget 'cons 'group
3461 "A cons-cell."
3462 :tag "Cons-cell"
3463 :format "%{%t%}:\n%v"
3464 :match 'widget-cons-match
3465 :value-to-internal (lambda (widget value)
3466 (list (car value) (cdr value)))
3467 :value-to-external (lambda (widget value)
407e43be 3468 (apply 'cons value)))
d543e20b 3469
bfa6c260 3470(defun widget-cons-match (widget value)
d543e20b
PA
3471 (and (consp value)
3472 (widget-group-match widget
3473 (widget-apply widget :value-to-internal value))))
fc56773e 3474\f
6b61353c
KH
3475;;; The `lazy' Widget.
3476;;
3477;; Recursive datatypes.
3478
3479(define-widget 'lazy 'default
3480 "Base widget for recursive datastructures.
3481
3482The `lazy' widget will, when instantiated, contain a single inferior
3483widget, of the widget type specified by the :type parameter. The
3484value of the `lazy' widget is the same as the value of the inferior
3485widget. When deriving a new widget from the 'lazy' widget, the :type
3486parameter is allowed to refer to the widget currently being defined,
3487thus allowing recursive datastructures to be described.
3488
3489The :type parameter takes the same arguments as the defcustom
3490parameter with the same name.
3491
3492Most composite widgets, i.e. widgets containing other widgets, does
3493not allow recursion. That is, when you define a new widget type, none
3494of the inferior widgets may be of the same type you are currently
3495defining.
3496
3497In Lisp, however, it is custom to define datastructures in terms of
3498themselves. A list, for example, is defined as either nil, or a cons
3499cell whose cdr itself is a list. The obvious way to translate this
3500into a widget type would be
3501
3502 (define-widget 'my-list 'choice
3503 \"A list of sexps.\"
3504 :tag \"Sexp list\"
3505 :args '((const nil) (cons :value (nil) sexp my-list)))
3506
3507Here we attempt to define my-list as a choice of either the constant
3508nil, or a cons-cell containing a sexp and my-lisp. This will not work
3509because the `choice' widget does not allow recursion.
3510
0e726aa5
KS
3511Using the `lazy' widget you can overcome this problem, as in this
3512example:
6b61353c
KH
3513
3514 (define-widget 'sexp-list 'lazy
3515 \"A list of sexps.\"
3516 :tag \"Sexp list\"
3517 :type '(choice (const nil) (cons :value (nil) sexp sexp-list)))"
3518 :format "%{%t%}: %v"
3519 ;; We don't convert :type because we want to allow recursive
3520 ;; datastructures. This is slow, so we should not create speed
0e726aa5 3521 ;; critical widgets by deriving from this.
6b61353c
KH
3522 :convert-widget 'widget-value-convert-widget
3523 :value-create 'widget-type-value-create
3524 :value-get 'widget-child-value-get
3525 :value-inline 'widget-child-value-inline
3526 :default-get 'widget-type-default-get
3527 :match 'widget-type-match
3528 :validate 'widget-child-validate)
3529
3530\f
fc56773e
RS
3531;;; The `plist' Widget.
3532;;
3533;; Property lists.
3534
3535(define-widget 'plist 'list
3536 "A property list."
3537 :key-type '(symbol :tag "Key")
3538 :value-type '(sexp :tag "Value")
3539 :convert-widget 'widget-plist-convert-widget
3540 :tag "Plist")
3541
3542(defvar widget-plist-value-type) ;Dynamic variable
3543
3544(defun widget-plist-convert-widget (widget)
3545 ;; Handle `:options'.
3546 (let* ((options (widget-get widget :options))
4681ca3a 3547 (widget-plist-value-type (widget-get widget :value-type))
bfa6c260 3548 (other `(editable-list :inline t
fc56773e 3549 (group :inline t
7fdbdbea 3550 ,(widget-get widget :key-type)
4681ca3a 3551 ,widget-plist-value-type)))
fc56773e
RS
3552 (args (if options
3553 (list `(checklist :inline t
3554 :greedy t
3555 ,@(mapcar 'widget-plist-convert-option
3556 options))
3557 other)
3558 (list other))))
3559 (widget-put widget :args args)
3560 widget))
d543e20b 3561
fc56773e
RS
3562(defun widget-plist-convert-option (option)
3563 ;; Convert a single plist option.
3564 (let (key-type value-type)
3565 (if (listp option)
3566 (let ((key (nth 0 option)))
3567 (setq value-type (nth 1 option))
3568 (if (listp key)
31d5543d 3569 (setq key-type key)
fc56773e
RS
3570 (setq key-type `(const ,key))))
3571 (setq key-type `(const ,option)
3572 value-type widget-plist-value-type))
3573 `(group :format "Key: %v" :inline t ,key-type ,value-type)))
3574
3575
3576;;; The `alist' Widget.
3577;;
3578;; Association lists.
3579
3580(define-widget 'alist 'list
3581 "An association list."
a7013a02 3582 :key-type '(sexp :tag "Key")
fc56773e
RS
3583 :value-type '(sexp :tag "Value")
3584 :convert-widget 'widget-alist-convert-widget
3585 :tag "Alist")
3586
3587(defvar widget-alist-value-type) ;Dynamic variable
3588
3589(defun widget-alist-convert-widget (widget)
3590 ;; Handle `:options'.
3591 (let* ((options (widget-get widget :options))
4681ca3a 3592 (widget-alist-value-type (widget-get widget :value-type))
bfa6c260 3593 (other `(editable-list :inline t
fc56773e 3594 (cons :format "%v"
7fdbdbea 3595 ,(widget-get widget :key-type)
4681ca3a 3596 ,widget-alist-value-type)))
fc56773e
RS
3597 (args (if options
3598 (list `(checklist :inline t
3599 :greedy t
3600 ,@(mapcar 'widget-alist-convert-option
3601 options))
3602 other)
3603 (list other))))
3604 (widget-put widget :args args)
3605 widget))
3606
3607(defun widget-alist-convert-option (option)
3608 ;; Convert a single alist option.
3609 (let (key-type value-type)
3610 (if (listp option)
3611 (let ((key (nth 0 option)))
3612 (setq value-type (nth 1 option))
3613 (if (listp key)
31d5543d 3614 (setq key-type key)
fc56773e
RS
3615 (setq key-type `(const ,key))))
3616 (setq key-type `(const ,option)
3617 value-type widget-alist-value-type))
3618 `(cons :format "Key: %v" ,key-type ,value-type)))
3619\f
d543e20b
PA
3620(define-widget 'choice 'menu-choice
3621 "A union of several sexp types."
3622 :tag "Choice"
c6753d66 3623 :format "%{%t%}: %[Value Menu%] %v"
8697863a
PA
3624 :button-prefix 'widget-push-button-prefix
3625 :button-suffix 'widget-push-button-suffix
a3c88c59
PA
3626 :prompt-value 'widget-choice-prompt-value)
3627
3628(defun widget-choice-prompt-value (widget prompt value unbound)
bfa6c260 3629 "Make a choice."
a3c88c59
PA
3630 (let ((args (widget-get widget :args))
3631 (completion-ignore-case (widget-get widget :case-fold))
3632 current choices old)
7fdbdbea 3633 ;; Find the first arg that matches VALUE.
a3c88c59
PA
3634 (let ((look args))
3635 (while look
3636 (if (widget-apply (car look) :match value)
3637 (setq old (car look)
3638 look nil)
3639 (setq look (cdr look)))))
3640 ;; Find new choice.
3641 (setq current
3642 (cond ((= (length args) 0)
3643 nil)
3644 ((= (length args) 1)
3645 (nth 0 args))
3646 ((and (= (length args) 2)
3647 (memq old args))
3648 (if (eq old (nth 0 args))
3649 (nth 1 args)
3650 (nth 0 args)))
3651 (t
3652 (while args
3653 (setq current (car args)
3654 args (cdr args))
3655 (setq choices
3656 (cons (cons (widget-apply current :menu-tag-get)
3657 current)
3658 choices)))
3659 (let ((val (completing-read prompt choices nil t)))
3660 (if (stringp val)
3661 (let ((try (try-completion val choices)))
3662 (when (stringp try)
3663 (setq val try))
3664 (cdr (assoc val choices)))
3665 nil)))))
3666 (if current
3667 (widget-prompt-value current prompt nil t)
3668 value)))
fc56773e 3669\f
d543e20b
PA
3670(define-widget 'radio 'radio-button-choice
3671 "A union of several sexp types."
3672 :tag "Choice"
a3c88c59
PA
3673 :format "%{%t%}:\n%v"
3674 :prompt-value 'widget-choice-prompt-value)
d543e20b
PA
3675
3676(define-widget 'repeat 'editable-list
3677 "A variable length homogeneous list."
3678 :tag "Repeat"
3679 :format "%{%t%}:\n%v%i\n")
3680
3681(define-widget 'set 'checklist
3682 "A list of members from a fixed set."
3683 :tag "Set"
3684 :format "%{%t%}:\n%v")
3685
3686(define-widget 'boolean 'toggle
3687 "To be nil or non-nil, that is the question."
3688 :tag "Boolean"
6d528fc5 3689 :prompt-value 'widget-boolean-prompt-value
8697863a
PA
3690 :button-prefix 'widget-push-button-prefix
3691 :button-suffix 'widget-push-button-suffix
c6753d66
RS
3692 :format "%{%t%}: %[Toggle%] %v\n"
3693 :on "on (non-nil)"
3694 :off "off (nil)")
d543e20b 3695
6d528fc5
PA
3696(defun widget-boolean-prompt-value (widget prompt value unbound)
3697 ;; Toggle a boolean.
a3c88c59 3698 (y-or-n-p prompt))
fc56773e 3699\f
d543e20b
PA
3700;;; The `color' Widget.
3701
77339a6e 3702;; Fixme: match
bfa6c260 3703(define-widget 'color 'editable-field
0f648ca2 3704 "Choose a color name (with sample)."
ce4374c7 3705 :format "%{%t%}: %v (%{sample%})\n"
6f320937 3706 :value-create 'widget-color-value-create
0f648ca2
PA
3707 :size 10
3708 :tag "Color"
3709 :value "black"
3710 :complete 'widget-color-complete
3711 :sample-face-get 'widget-color-sample-face-get
3712 :notify 'widget-color-notify
3713 :action 'widget-color-action)
3714
6f320937
CY
3715(defun widget-color-value-create (widget)
3716 (widget-field-value-create widget)
3717 (widget-insert " ")
3718 (widget-create-child-and-convert
3719 widget 'push-button
587faadd 3720 :tag " Choose " :action 'widget-color--choose-action)
6f320937
CY
3721 (widget-insert " "))
3722
3723(defun widget-color--choose-action (widget &optional event)
3724 (list-colors-display
3725 nil nil
3726 `(lambda (color)
3727 (when (buffer-live-p ,(current-buffer))
3728 (widget-value-set ',(widget-get widget :parent) color)
3729 (let* ((buf (get-buffer "*Colors*"))
3730 (win (get-buffer-window buf 0)))
3731 (bury-buffer buf)
3732 (and win (> (length (window-list)) 1)
3733 (delete-window win)))
3734 (pop-to-buffer ,(current-buffer))))))
3735
0f648ca2
PA
3736(defun widget-color-complete (widget)
3737 "Complete the color in WIDGET."
99f01612 3738 (require 'facemenu) ; for facemenu-color-alist
bb12edf1
SM
3739 (completion-in-region (widget-field-start widget)
3740 (max (point) (widget-field-text-end widget))
3741 (or facemenu-color-alist
3742 (sort (defined-colors) 'string-lessp))))
d543e20b 3743
0f648ca2 3744(defun widget-color-sample-face-get (widget)
4ee1cf9f
PA
3745 (let* ((value (condition-case nil
3746 (widget-value widget)
76834555
GM
3747 (error (widget-get widget :value)))))
3748 (if (color-defined-p value)
546cf5b0 3749 (list (cons 'foreground-color value))
76834555 3750 'default)))
d543e20b 3751
d543e20b 3752(defun widget-color-action (widget &optional event)
bd1f16ce 3753 "Prompt for a color."
d543e20b
PA
3754 (let* ((tag (widget-apply widget :menu-tag-get))
3755 (prompt (concat tag ": "))
4ee1cf9f
PA
3756 (value (widget-value widget))
3757 (start (widget-field-start widget))
99f01612 3758 (answer (facemenu-read-color prompt)))
d543e20b
PA
3759 (unless (zerop (length answer))
3760 (widget-value-set widget answer)
0a3a0b56
PA
3761 (widget-setup)
3762 (widget-apply widget :notify widget event))))
d543e20b 3763
0f648ca2 3764(defun widget-color-notify (widget child &optional event)
00d00aa9 3765 "Update the sample, and notify the parent."
bfa6c260 3766 (overlay-put (widget-get widget :sample-overlay)
0f648ca2
PA
3767 'face (widget-apply widget :sample-face-get))
3768 (widget-default-notify widget child event))
fc56773e 3769\f
d543e20b
PA
3770;;; The Help Echo
3771
d543e20b 3772(defun widget-echo-help (pos)
233d5cde 3773 "Display help-echo text for widget at POS."
d543e20b
PA
3774 (let* ((widget (widget-at pos))
3775 (help-echo (and widget (widget-get widget :help-echo))))
233d5cde
DL
3776 (if (functionp help-echo)
3777 (setq help-echo (funcall help-echo widget)))
6b61353c 3778 (if help-echo (message "%s" (eval help-echo)))))
d543e20b
PA
3779
3780;;; The End:
3781
3782(provide 'wid-edit)
3783
aeba6f9a 3784;;; wid-edit.el ends here