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