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