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