Mercurial > hg > xemacs-beta
annotate lisp/wid-edit.el @ 5580:a0e81357194e
Move macros with shadows in bytecomp.el to the end of the files, cl-macs
lisp/ChangeLog addition:
2011-10-08 Aidan Kehoe <kehoea@parhasard.net>
* cl-macs.el:
* cl-macs.el (load-time-value):
* cl-macs.el (flet):
* cl-macs.el (labels):
* cl-macs.el (the):
* cl-macs.el (declare):
Move all these macros to the end of the file, since they're in
byte-compile-initial-macro-environment, and we don't want their
definitions to override that for the rest of the file during
byte-compilation. Happens not to matter right now, but avoids
surprises for anyone using the macros elsewhere in cl-macs down
the line.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Sat, 08 Oct 2011 12:26:09 +0100 |
parents | ac37a5f7e5be |
children | 7a81b4d98d2d |
rev | line source |
---|---|
428 | 1 ;;; wid-edit.el --- Functions for creating and using widgets. |
2 ;; | |
4178 | 3 ;; Copyright (C) 2007 Didier Verna |
1309 | 4 ;; Copyright (C) 1996-1997, 1999-2002 Free Software Foundation, Inc. |
428 | 5 ;; |
6 ;; Author: Per Abrahamsen <abraham@dina.kvl.dk> | |
4178 | 7 ;; Maintainer: Didier Verna <didier@xemacs.org> |
428 | 8 ;; Keywords: extensions |
9 ;; Version: 1.9960-x | |
10 ;; X-URL: http://www.dina.kvl.dk/~abraham/custom/ | |
11 | |
12 ;; This file is part of XEmacs. | |
13 | |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4178
diff
changeset
|
14 ;; XEmacs is free software: you can redistribute it and/or modify it |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4178
diff
changeset
|
15 ;; under the terms of the GNU General Public License as published by the |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4178
diff
changeset
|
16 ;; Free Software Foundation, either version 3 of the License, or (at your |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4178
diff
changeset
|
17 ;; option) any later version. |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4178
diff
changeset
|
18 |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4178
diff
changeset
|
19 ;; XEmacs is distributed in the hope that it will be useful, but WITHOUT |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4178
diff
changeset
|
20 ;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4178
diff
changeset
|
21 ;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4178
diff
changeset
|
22 ;; for more details. |
428 | 23 |
24 ;; You should have received a copy of the GNU General Public License | |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
4178
diff
changeset
|
25 ;; along with XEmacs. If not, see <http://www.gnu.org/licenses/>. |
428 | 26 |
27 ;;; Commentary: | |
28 ;; | |
1309 | 29 ;; See `widget.el' and the wishlist in `../man/widget.texi'. |
428 | 30 |
31 | |
32 ;;; Code: | |
33 | |
34 (require 'widget) | |
35 | |
1362 | 36 ;; XEmacs: autoload of `finder-commentary' is redundant. |
428 | 37 |
38 ;;; Customization. | |
39 | |
40 (defgroup widgets nil | |
41 "Customization support for the Widget Library." | |
42 :link '(custom-manual "(widget)Top") | |
43 :link '(url-link :tag "Development Page" | |
44 "http://www.dina.kvl.dk/~abraham/custom/") | |
45 :link '(emacs-library-link :tag "Lisp File" "widget.el") | |
46 :prefix "widget-" | |
47 :group 'extensions | |
48 :group 'hypermedia) | |
49 | |
50 (defgroup widget-documentation nil | |
51 "Options controlling the display of documentation strings." | |
52 :group 'widgets) | |
53 | |
54 (defgroup widget-faces nil | |
55 "Faces used by the widget library." | |
56 :group 'widgets | |
57 :group 'faces) | |
58 | |
59 (defvar widget-documentation-face 'widget-documentation-face | |
1173 | 60 "Face used for documentation strings in widgets. |
428 | 61 This exists as a variable so it can be set locally in certain buffers.") |
62 | |
63 (defface widget-documentation-face '((((class color) | |
64 (background dark)) | |
65 (:foreground "lime green")) | |
66 (((class color) | |
67 (background light)) | |
68 (:foreground "dark green")) | |
69 (t nil)) | |
70 "Face used for documentation text." | |
71 :group 'widget-documentation | |
72 :group 'widget-faces) | |
73 | |
74 (defvar widget-button-face 'widget-button-face | |
1173 | 75 "Face used for buttons in widgets. |
428 | 76 This exists as a variable so it can be set locally in certain buffers.") |
77 | |
78 (defface widget-button-face '((t (:bold t))) | |
79 "Face used for widget buttons." | |
80 :group 'widget-faces) | |
81 | |
82 (defcustom widget-mouse-face 'highlight | |
83 "Face used for widget buttons when the mouse is above them." | |
84 :type 'face | |
85 :group 'widget-faces) | |
86 | |
1309 | 87 ;; #### comment from GNU Emacs 21.3.50, test the first spec. |
88 ;; TTY gets special definitions here and in the next defface, because | |
89 ;; the gray colors defined for other displays cause black text on a black | |
90 ;; background, at least on light-background TTYs. | |
1362 | 91 (defface widget-field-face '( |
92 ;; #### sjt sez: XEmacs doesn't like this. | |
93 ;; The Custom face editor widget shows a Lisp | |
94 ;; form, not a face structure. Does it produce | |
95 ;; the right face on TTYs? | |
96 ;; One hypothesis is that the editor doesn't | |
97 ;; grok non-default display types in the value. | |
98 (((type tty)) | |
1309 | 99 (:background "yellow3") |
100 (:foreground "black")) | |
101 (((class grayscale color) | |
428 | 102 (background light)) |
103 (:background "gray85")) | |
104 (((class grayscale color) | |
105 (background dark)) | |
106 (:background "dim gray")) | |
107 (t | |
108 (:italic t))) | |
109 "Face used for editable fields." | |
110 :group 'widget-faces) | |
111 | |
112 ;; Currently unused | |
113 ;(defface widget-single-line-field-face '((((class grayscale color) | |
114 ; (background light)) | |
115 ; (:background "gray85")) | |
116 ; (((class grayscale color) | |
117 ; (background dark)) | |
118 ; (:background "dim gray")) | |
119 ; (t | |
120 ; (:italic t))) | |
121 ; "Face used for editable fields spanning only a single line." | |
122 ; :group 'widget-faces) | |
123 ; | |
124 ;(defvar widget-single-line-display-table | |
125 ; (let ((table (make-display-table))) | |
126 ; (aset table 9 "^I") | |
127 ; (aset table 10 "^J") | |
128 ; table) | |
129 ; "Display table used for single-line editable fields.") | |
130 ; | |
131 ;(set-face-display-table 'widget-single-line-field-face | |
132 ; widget-single-line-display-table) | |
133 | |
134 | |
135 ;; Some functions from this file have been ported to C for speed. | |
136 ;; Setting this to t (*before* loading wid-edit.el) will make them | |
137 ;; shadow the subrs. It should be used only for debugging purposes. | |
138 (defvar widget-shadow-subrs nil) | |
139 | |
140 | |
141 ;;; Utility functions. | |
142 ;; | |
143 ;; These are not really widget specific. | |
144 | |
145 (when (or (not (fboundp 'widget-plist-member)) | |
146 widget-shadow-subrs) | |
147 ;; Recoded in C, for efficiency. It used to be a defsubst, but old | |
148 ;; compiled code won't fail -- it will just be slower. | |
149 (defun widget-plist-member (plist prop) | |
150 ;; Return non-nil if PLIST has the property PROP. | |
151 ;; PLIST is a property list, which is a list of the form | |
152 ;; (PROP1 VALUE1 PROP2 VALUE2 ...). PROP is a symbol. | |
153 ;; Unlike `plist-get', this allows you to distinguish between a missing | |
154 ;; property and a property with the value nil. | |
155 ;; The value is actually the tail of PLIST whose car is PROP. | |
156 (while (and plist (not (eq (car plist) prop))) | |
157 (setq plist (cddr plist))) | |
158 plist)) | |
159 | |
1362 | 160 (defsubst widget-princ-to-string (object) |
1309 | 161 "Return string representation of OBJECT, any Lisp object. |
1362 | 162 |
163 No quoting characters or string delimiters are used." | |
164 ;(with-current-buffer (get-buffer-create " *widget-tmp*") | |
165 ; (erase-buffer) | |
166 ; (princ object (current-buffer)) | |
167 ; (buffer-string)) | |
168 (prin1-to-string object t) | |
169 ) | |
428 | 170 |
171 (defun widget-prettyprint-to-string (object) | |
1362 | 172 "Use `cl-prettyprint' to generate a string representation of OBJECT. |
173 | |
174 Cleans up `cl-prettyprint''s gratuitous surrounding newlines." | |
175 (with-temp-buffer | |
428 | 176 (cl-prettyprint object) |
177 ;; `cl-prettyprint' always surrounds the text with newlines. | |
1362 | 178 (buffer-string (if (eq (char-after (point-min)) ?\n) |
179 (1+ (point-min)) | |
180 (point-min)) | |
181 (if (eq (char-before (point-max)) ?\n) | |
182 (1- (point-max)) | |
183 (point-max))))) | |
428 | 184 |
185 (defun widget-clear-undo () | |
186 "Clear all undo information." | |
187 (buffer-disable-undo) | |
188 (buffer-enable-undo)) | |
189 | |
1362 | 190 (defun widget-sublist (list start &optional end) |
191 "Return the sublist of LIST from START to END. | |
192 If END is omitted, it defaults to the length of LIST." | |
193 (if (> start 0) (setq list (nthcdr start list))) | |
194 (if end | |
195 (if (<= end start) | |
196 nil | |
197 (setq list (copy-sequence list)) | |
198 (setcdr (nthcdr (- end start 1) list) nil) | |
199 list) | |
200 (copy-sequence list))) | |
201 | |
202 ;; Is unimplemented the right superclass? | |
203 (define-error 'missing-package "Package not installed" 'unimplemented) | |
204 | |
428 | 205 (defcustom widget-menu-max-size 40 |
206 "Largest number of items allowed in a popup-menu. | |
207 Larger menus are read through the minibuffer." | |
208 :group 'widgets | |
209 :type 'integer) | |
210 | |
1309 | 211 (defcustom widget-menu-max-shortcuts 40 |
212 "Largest number of items for which it works to choose one with a character. | |
213 For a larger number of items, the minibuffer is used. | |
214 #### Not yet implemented in XEmacs." | |
215 :group 'widgets | |
216 :type 'integer) | |
217 | |
428 | 218 (defcustom widget-menu-minibuffer-flag nil |
219 "*Control how to ask for a choice from the keyboard. | |
220 Non-nil means use the minibuffer; | |
221 nil means read a single character." | |
222 :group 'widgets | |
223 :type 'boolean) | |
224 | |
225 (defun widget-choose (title items &optional event) | |
226 "Choose an item from a list. | |
227 | |
228 First argument TITLE is the name of the list. | |
1173 | 229 Second argument ITEMS is a list whose members are either |
428 | 230 (NAME . VALUE), to indicate selectable items, or just strings to |
231 indicate unselectable items. | |
232 Optional third argument EVENT is an input event. | |
233 | |
1362 | 234 The user is asked to choose a NAME from the items alist, and the VALUE of |
235 the chosen element will be returned. If EVENT is a mouse event, and the | |
236 number of elements in items is less than `widget-menu-max-size', a popup | |
237 menu will be used, otherwise the minibuffer is used." | |
428 | 238 (cond ((and (< (length items) widget-menu-max-size) |
239 event | |
240 (console-on-window-system-p)) | |
241 ;; Pressed by the mouse. | |
242 (let ((val (get-popup-menu-response | |
724 | 243 (let ((menu-thingee |
428 | 244 (cons title |
245 (mapcar (lambda (x) | |
246 (if (stringp x) | |
247 (vector x nil nil) | |
724 | 248 (vector (car x) |
249 (list (car x)) ; 'eval 'quote | |
250 t))) | |
251 items)) | |
252 )) | |
253 (message "%s" menu-thingee) | |
254 menu-thingee) | |
255 ))) | |
428 | 256 (setq val (and val |
257 (listp (event-object val)) | |
258 (stringp (car-safe (event-object val))) | |
259 (car (event-object val)))) | |
260 (cdr (assoc val items)))) | |
261 ((and (not widget-menu-minibuffer-flag) | |
262 ;; Can't handle more than 10 items (as many digits) | |
263 (<= (length items) 10)) | |
264 ;; Construct a menu of the choices | |
265 ;; and then use it for prompting for a single character. | |
266 (let* ((overriding-terminal-local-map (make-sparse-keymap)) | |
267 (map (make-sparse-keymap title)) | |
268 (next-digit ?0) | |
269 some-choice-enabled value) | |
270 ;; Define SPC as a prefix char to get to this menu. | |
271 (define-key overriding-terminal-local-map " " map) | |
272 (with-current-buffer (get-buffer-create " widget-choose") | |
273 (erase-buffer) | |
274 (insert "Available choices:\n\n") | |
275 (dolist (choice items) | |
276 (when (consp choice) | |
277 (let* ((name (car choice)) | |
278 (function (cdr choice))) | |
279 (insert (format "%c = %s\n" next-digit name)) | |
280 (define-key map (vector next-digit) function) | |
281 (setq some-choice-enabled t))) | |
282 ;; Allocate digits to disabled alternatives | |
283 ;; so that the digit of a given alternative never varies. | |
284 (incf next-digit)) | |
285 (insert "\nC-g = Quit")) | |
286 (or some-choice-enabled | |
287 (error "None of the choices is currently meaningful")) | |
288 (define-key map [?\C-g] 'keyboard-quit) | |
289 (define-key map [t] 'keyboard-quit) | |
290 ;(setcdr map (nreverse (cdr map))) | |
291 ;; Unread a SPC to lead to our new menu. | |
292 (push (character-to-event ?\ ) unread-command-events) | |
293 ;; Read a char with the menu, and return the result | |
294 ;; that corresponds to it. | |
295 (save-window-excursion | |
296 (display-buffer (get-buffer " widget-choose")) | |
297 (let ((cursor-in-echo-area t)) | |
298 (setq value | |
299 (lookup-key overriding-terminal-local-map | |
300 (read-key-sequence (concat title ": ") t))))) | |
301 (message "") | |
302 (when (or (eq value 'keyboard-quit) | |
303 (null value)) | |
304 (error "Canceled")) | |
305 value)) | |
306 (t | |
307 ;; Read the choice of name from the minibuffer. | |
308 (setq items (remove-if 'stringp items)) | |
309 (let ((val (completing-read (concat title ": ") items nil t))) | |
310 (if (stringp val) | |
311 (let ((try (try-completion val items))) | |
312 (when (stringp try) | |
313 (setq val try)) | |
314 (cdr (assoc val items))) | |
315 nil))))) | |
316 | |
1309 | 317 ;; GNU Emacs 21.3.50 uses this in `widget-choose' |
318 (defun widget-remove-if (predicate list) | |
319 (let (result (tail list)) | |
320 (while tail | |
321 (or (funcall predicate (car tail)) | |
322 (setq result (cons (car tail) result))) | |
323 (setq tail (cdr tail))) | |
324 (nreverse result))) | |
325 | |
3287 | 326 (defun widget-move-and-invoke (event) |
327 "Move to where you click, and if it is an active field, invoke it." | |
328 (interactive "e") | |
329 (mouse-set-point event) | |
330 (let ((pos (event-point event))) | |
331 (if (and pos (get-char-property pos 'button)) | |
4178 | 332 (widget-button-click event)))) |
428 | 333 |
334 ;;; Widget text specifications. | |
335 ;; | |
336 ;; These functions are for specifying text properties. | |
337 | |
1362 | 338 ;; XEmacs: This probably should be unnecessary with end-closed extents. |
339 ;; If it doesn't work, it should be made to work. | |
428 | 340 (defcustom widget-field-add-space t |
341 ;; Setting this to nil might be available, once some problems are resolved. | |
342 "Non-nil means add extra space at the end of editable text fields. | |
343 | |
1362 | 344 Currently should be left set to `t', because without the space it becomes |
345 impossible to edit a zero size field." | |
428 | 346 :type 'boolean |
347 :group 'widgets) | |
348 | |
1362 | 349 ;; #### Why aren't these used in XEmacs? |
428 | 350 (defcustom widget-field-use-before-change |
351 (and (or (> emacs-minor-version 34) | |
352 (> emacs-major-version 19)) | |
353 (not (string-match "XEmacs" emacs-version))) | |
354 "Non-nil means use `before-change-functions' to track editable fields. | |
355 This enables the use of undo, but doesn't work on Emacs 19.34 and earlier. | |
356 Using before hooks also means that the :notify function can't know the | |
357 new value." | |
358 :type 'boolean | |
359 :group 'widgets) | |
360 | |
361 (defun widget-echo-this-extent (extent) | |
362 (let* ((widget (or (extent-property extent 'button) | |
363 (extent-property extent 'field) | |
364 (extent-property extent 'glyph-widget))) | |
365 (help-echo (and widget (widget-get widget :help-echo)))) | |
366 (and (functionp help-echo) | |
367 (setq help-echo (funcall help-echo widget))) | |
368 (when (stringp help-echo) | |
369 (setq help-echo-owns-message t) | |
370 (display-message 'help-echo help-echo)))) | |
371 | |
372 (defsubst widget-handle-help-echo (extent help-echo) | |
373 (set-extent-property extent 'balloon-help help-echo) | |
374 (set-extent-property extent 'help-echo help-echo) | |
375 (when (functionp help-echo) | |
376 (set-extent-property extent 'balloon-help 'widget-echo-this-extent) | |
377 (set-extent-property extent 'help-echo 'widget-echo-this-extent))) | |
378 | |
379 (defun widget-specify-field (widget from to) | |
380 "Specify editable button for WIDGET between FROM and TO." | |
381 (save-excursion | |
382 (goto-char to) | |
383 (cond ((null (widget-get widget :size)) | |
384 (forward-char 1)) | |
1362 | 385 ;; XEmacs: This comment goes outside of the save-excursion in GNU. |
428 | 386 ;; Terminating space is not part of the field, but necessary in |
387 ;; order for local-map to work. Remove next sexp if local-map works | |
388 ;; at the end of the extent. | |
389 (widget-field-add-space | |
390 (insert-and-inherit " "))) | |
391 (setq to (point))) | |
392 (let ((map (widget-get widget :keymap)) | |
393 (face (or (widget-get widget :value-face) 'widget-field-face)) | |
394 (help-echo (widget-get widget :help-echo)) | |
395 (extent (make-extent from to))) | |
396 (unless (or (stringp help-echo) (null help-echo)) | |
397 (setq help-echo 'widget-mouse-help)) | |
398 (widget-put widget :field-extent extent) | |
399 (and (or (not widget-field-add-space) | |
400 (widget-get widget :size)) | |
401 (set-extent-property extent 'end-closed nil)) | |
402 (set-extent-property extent 'detachable nil) | |
403 (set-extent-property extent 'field widget) | |
404 (set-extent-property extent 'button-or-field t) | |
405 (set-extent-property extent 'keymap map) | |
406 (set-extent-property extent 'face face) | |
407 (widget-handle-help-echo extent help-echo)) | |
408 (widget-specify-secret widget)) | |
409 | |
410 (defun widget-specify-secret (field) | |
1362 | 411 "Replace text in FIELD with value of the `:secret' property, if non-nil. |
412 | |
413 The value of the `:secret' property, if non-nil, must be a character. | |
652 | 414 It is an error to use this function after creating the widget but before |
415 invoking `widget-setup'." | |
428 | 416 (let ((secret (widget-get field :secret)) |
417 (size (widget-get field :size))) | |
418 (when secret | |
419 (let ((begin (widget-field-start field)) | |
420 (end (widget-field-end field))) | |
1173 | 421 (when size |
428 | 422 (while (and (> end begin) |
423 (eq (char-after (1- end)) ?\ )) | |
424 (setq end (1- end)))) | |
425 (while (< begin end) | |
426 (let ((old (char-after begin))) | |
427 (unless (eq old secret) | |
428 (subst-char-in-region begin (1+ begin) old secret) | |
429 (put-text-property begin (1+ begin) 'secret old)) | |
430 (setq begin (1+ begin)))))))) | |
431 | |
432 (defun widget-specify-button (widget from to) | |
433 "Specify button for WIDGET between FROM and TO." | |
434 (let ((face (widget-apply widget :button-face-get)) | |
435 (help-echo (widget-get widget :help-echo)) | |
436 (extent (make-extent from to)) | |
437 (map (widget-get widget :button-keymap))) | |
438 (widget-put widget :button-extent extent) | |
439 (unless (or (null help-echo) (stringp help-echo)) | |
440 (setq help-echo 'widget-mouse-help)) | |
441 (set-extent-property extent 'start-open t) | |
442 (set-extent-property extent 'button widget) | |
443 (set-extent-property extent 'button-or-field t) | |
444 (set-extent-property extent 'mouse-face widget-mouse-face) | |
445 (widget-handle-help-echo extent help-echo) | |
446 (set-extent-property extent 'face face) | |
447 (set-extent-property extent 'keymap map))) | |
448 | |
449 (defun widget-mouse-help (extent) | |
450 "Find mouse help string for button in extent." | |
451 (let* ((widget (widget-at (extent-start-position extent))) | |
452 (help-echo (and widget (widget-get widget :help-echo)))) | |
453 (cond ((stringp help-echo) | |
454 help-echo) | |
455 ((and (functionp help-echo) | |
456 (stringp (setq help-echo (funcall help-echo widget)))) | |
457 help-echo) | |
458 (t | |
459 (format "(widget %S :help-echo %S)" widget help-echo))))) | |
460 | |
461 (defun widget-specify-sample (widget from to) | |
1309 | 462 "Specify sample for WIDGET between FROM and TO." |
428 | 463 (let ((face (widget-apply widget :sample-face-get)) |
464 (extent (make-extent from to nil))) | |
465 (set-extent-property extent 'start-open t) | |
466 (set-extent-property extent 'face face) | |
467 (widget-put widget :sample-extent extent))) | |
468 | |
469 (defun widget-specify-doc (widget from to) | |
1309 | 470 "Specify documentation for WIDGET between FROM and TO." |
428 | 471 (let ((extent (make-extent from to))) |
472 (set-extent-property extent 'start-open t) | |
473 (set-extent-property extent 'widget-doc widget) | |
474 (set-extent-property extent 'face widget-documentation-face) | |
475 (widget-put widget :doc-extent extent))) | |
476 | |
477 (defmacro widget-specify-insert (&rest form) | |
1173 | 478 "Execute FORM without inheriting any text properties." |
428 | 479 `(save-restriction |
480 (let ((inhibit-read-only t) | |
481 before-change-functions | |
482 after-change-functions) | |
483 (insert "<>") | |
484 (narrow-to-region (- (point) 2) (point)) | |
485 (goto-char (1+ (point-min))) | |
1173 | 486 ;; XEmacs: use `prog1' instead of a `result' variable. The latter |
428 | 487 ;; confuses the byte-compiler in some cases (a warning). |
488 (prog1 (progn ,@form) | |
489 (delete-region (point-min) (1+ (point-min))) | |
490 (delete-region (1- (point-max)) (point-max)) | |
491 (goto-char (point-max)))))) | |
492 | |
493 (put 'widget-specify-insert 'edebug-form-spec '(&rest form)) | |
494 | |
495 | |
496 ;;; Inactive Widgets. | |
497 | |
498 (defface widget-inactive-face '((((class grayscale color) | |
499 (background dark)) | |
500 (:foreground "light gray")) | |
501 (((class grayscale color) | |
502 (background light)) | |
503 (:foreground "dim gray")) | |
504 (t | |
505 (:italic t))) | |
506 "Face used for inactive widgets." | |
507 :group 'widget-faces) | |
508 | |
509 ;; For inactiveness to work on complex structures, it is not | |
510 ;; sufficient to keep track of whether a button/field/glyph is | |
511 ;; inactive or not -- we must know how many time it was deactivated | |
512 ;; (inactiveness level). Successive deactivations of the same button | |
513 ;; increment its inactive-count, and activations decrement it. When | |
514 ;; inactive-count reaches 0, the button/field/glyph is reactivated. | |
515 | |
516 (defun widget-activation-widget-mapper (extent action) | |
517 "Activate or deactivate EXTENT's widget (button or field). | |
518 Suitable for use with `map-extents'." | |
519 (ecase action | |
520 (:activate | |
521 (decf (extent-property extent :inactive-count)) | |
522 (when (zerop (extent-property extent :inactive-count)) | |
523 (set-extent-properties | |
524 extent (extent-property extent :inactive-plist)) | |
525 (set-extent-property extent :inactive-plist nil))) | |
526 (:deactivate | |
527 (incf (extent-property extent :inactive-count 0)) | |
528 ;; Store a plist of old properties, which will be fed to | |
529 ;; `set-extent-properties'. | |
530 (unless (extent-property extent :inactive-plist) | |
531 (set-extent-property | |
532 extent :inactive-plist | |
533 (list 'mouse-face (extent-property extent 'mouse-face) | |
534 'help-echo (extent-property extent 'help-echo) | |
535 'keymap (extent-property extent 'keymap))) | |
536 (set-extent-properties | |
537 extent '(mouse-face nil help-echo nil keymap nil))))) | |
538 nil) | |
539 | |
540 (defun widget-activation-glyph-mapper (extent action) | |
541 (let ((activate-p (if (eq action :activate) t nil))) | |
542 (if activate-p | |
543 (decf (extent-property extent :inactive-count)) | |
544 (incf (extent-property extent :inactive-count 0))) | |
545 (when (or (and activate-p | |
546 (zerop (extent-property extent :inactive-count))) | |
547 (and (not activate-p) | |
548 (not (zerop (extent-property extent :inactive-count))))) | |
549 (let* ((glyph-widget (extent-property extent 'glyph-widget)) | |
550 (up-glyph (widget-get glyph-widget :glyph-up)) | |
551 (inactive-glyph (widget-get glyph-widget :glyph-inactive)) | |
454 | 552 (instantiator (widget-get glyph-widget :glyph-instantiator)) |
428 | 553 (new-glyph (if activate-p up-glyph inactive-glyph))) |
454 | 554 (cond |
555 ;; Assume that an instantiator means a native widget. | |
556 (instantiator | |
557 (setq instantiator | |
558 (set-instantiator-property instantiator :active activate-p)) | |
559 (widget-put glyph-widget :glyph-instantiator instantiator) | |
560 (set-glyph-image up-glyph instantiator)) | |
428 | 561 ;; Check that the new glyph exists, and differs from the |
562 ;; default one. | |
454 | 563 ((and up-glyph inactive-glyph (not (eq up-glyph inactive-glyph)) |
564 ;; Check if the glyph is already installed. | |
565 (not (eq (extent-end-glyph extent) new-glyph))) | |
566 ;; Change it. | |
567 (set-extent-end-glyph extent new-glyph)))))) | |
428 | 568 nil) |
569 | |
570 (defun widget-specify-inactive (widget from to) | |
571 "Make WIDGET inactive for user modifications." | |
572 (unless (widget-get widget :inactive) | |
573 (let ((extent (make-extent from to))) | |
574 ;; It is no longer necessary for the extent to be read-only, as | |
575 ;; the inactive editable fields now lose their keymaps. | |
576 (set-extent-properties | |
577 extent '(start-open t face widget-inactive-face | |
578 detachable t priority 2001 widget-inactive t)) | |
579 (widget-put widget :inactive extent)) | |
580 ;; Deactivate the buttons and fields within the range. In some | |
581 ;; cases, the fields are not yet setup at the time this function | |
582 ;; is called. Those fields are deactivated explicitly by | |
583 ;; `widget-setup'. | |
584 (map-extents 'widget-activation-widget-mapper | |
585 nil from to :deactivate nil 'button-or-field) | |
586 ;; Deactivate glyphs. | |
587 (map-extents 'widget-activation-glyph-mapper | |
588 nil from to :deactivate nil 'glyph-widget))) | |
589 | |
590 (defun widget-specify-active (widget) | |
591 "Make WIDGET active for user modifications." | |
444 | 592 (let ((inactive (widget-get widget :inactive)) |
4178 | 593 (from (widget-get widget :from)) |
594 (to (widget-get widget :to))) | |
428 | 595 (when (and inactive (not (extent-detached-p inactive))) |
596 ;; Reactivate the buttons and fields covered by the extent. | |
597 (map-extents 'widget-activation-widget-mapper | |
4178 | 598 nil from to :activate nil 'button-or-field) |
428 | 599 ;; Reactivate the glyphs. |
600 (map-extents 'widget-activation-glyph-mapper | |
4178 | 601 nil from to :activate nil 'end-glyph) |
428 | 602 (delete-extent inactive) |
603 (widget-put widget :inactive nil)))) | |
604 | |
605 | |
606 ;;; Widget Properties. | |
607 | |
608 (defsubst widget-type (widget) | |
609 "Return the type of WIDGET, a symbol." | |
610 (car widget)) | |
611 | |
1309 | 612 ;;;###autoload |
613 (defun widgetp (widget) | |
614 "Return non-nil iff WIDGET is a widget." | |
615 (if (symbolp widget) | |
616 (get widget 'widget-type) | |
617 (and (consp widget) | |
618 (symbolp (car widget)) | |
619 (get (car widget) 'widget-type)))) | |
620 | |
428 | 621 (when (or (not (fboundp 'widget-put)) |
622 widget-shadow-subrs) | |
623 (defun widget-put (widget property value) | |
624 "In WIDGET set PROPERTY to VALUE. | |
625 The value can later be retrieved with `widget-get'." | |
626 (setcdr widget (plist-put (cdr widget) property value)))) | |
627 | |
628 ;; Recoded in C, for efficiency: | |
629 (when (or (not (fboundp 'widget-get)) | |
630 widget-shadow-subrs) | |
631 (defun widget-get (widget property) | |
632 "In WIDGET, get the value of PROPERTY. | |
652 | 633 The value may have been specified when the widget was created, or |
428 | 634 later with `widget-put'." |
635 (let ((missing t) | |
636 value tmp) | |
637 (while missing | |
638 (cond ((setq tmp (widget-plist-member (cdr widget) property)) | |
639 (setq value (car (cdr tmp)) | |
640 missing nil)) | |
641 ((setq tmp (car widget)) | |
642 (setq widget (get tmp 'widget-type))) | |
643 (t | |
644 (setq missing nil)))) | |
645 value))) | |
646 | |
647 (defun widget-get-indirect (widget property) | |
648 "In WIDGET, get the value of PROPERTY. | |
649 If the value is a symbol, return its binding. | |
650 Otherwise, just return the value." | |
651 (let ((value (widget-get widget property))) | |
652 (if (symbolp value) | |
653 (symbol-value value) | |
654 value))) | |
655 | |
656 (defun widget-member (widget property) | |
1173 | 657 "Non-nil iff there is a definition in WIDGET for PROPERTY." |
428 | 658 (cond ((widget-plist-member (cdr widget) property) |
659 t) | |
660 ((car widget) | |
661 (widget-member (get (car widget) 'widget-type) property)) | |
662 (t nil))) | |
663 | |
664 (when (or (not (fboundp 'widget-apply)) | |
665 widget-shadow-subrs) | |
666 ;;This is in C, so don't ###utoload | |
667 (defun widget-apply (widget property &rest args) | |
668 "Apply the value of WIDGET's PROPERTY to the widget itself. | |
669 ARGS are passed as extra arguments to the function." | |
670 (apply (widget-get widget property) widget args))) | |
671 | |
672 (defun widget-value (widget) | |
673 "Extract the current value of WIDGET." | |
674 (widget-apply widget | |
675 :value-to-external (widget-apply widget :value-get))) | |
676 | |
677 (defun widget-value-set (widget value) | |
678 "Set the current value of WIDGET to VALUE." | |
679 (widget-apply widget | |
680 :value-set (widget-apply widget | |
681 :value-to-internal value))) | |
682 | |
683 (defun widget-default-get (widget) | |
652 | 684 "Extract the default value of WIDGET." |
428 | 685 (or (widget-get widget :value) |
686 (widget-apply widget :default-get))) | |
687 | |
688 (defun widget-match-inline (widget vals) | |
652 | 689 "In WIDGET, match the start of VALS." |
428 | 690 (cond ((widget-get widget :inline) |
691 (widget-apply widget :match-inline vals)) | |
440 | 692 ((and (listp vals) |
428 | 693 (widget-apply widget :match (car vals))) |
694 (cons (list (car vals)) (cdr vals))) | |
695 (t nil))) | |
696 | |
697 (defun widget-apply-action (widget &optional event) | |
698 "Apply :action in WIDGET in response to EVENT." | |
699 (if (widget-apply widget :active) | |
700 (widget-apply widget :action event) | |
701 (error "Attempt to perform action on inactive widget"))) | |
702 | |
703 | |
704 ;;; Helper functions. | |
705 ;; | |
706 ;; These are widget specific. | |
707 | |
4178 | 708 ;; #### Note: this should probably be a more general utility -- dvl |
709 (defsubst widget-prompt-spaceify (prompt) | |
710 ;; Add a space at the end of PROMPT if needed | |
711 (if (or (string= prompt "") (eq ? (aref prompt (1- (length prompt))))) | |
712 prompt | |
713 (concat prompt " "))) | |
714 | |
715 (defsubst widget-prompt (widget &optional prompt default-prompt) | |
716 ;; Construct a prompt for WIDGET. | |
717 ;; - If PROMPT is given, use it. | |
718 ;; - Otherwise, use the :tag property, if any. | |
719 ;; - Otherwise, use DEFAULT-PROMPT, if given. | |
720 ;; - Otherise, use "Value". | |
721 ;; - If the result is not the empty string, add a space for later addition | |
722 ;; of the widget type by `widget-prompt-value'. | |
723 (unless prompt | |
724 (setq prompt (or (and (widget-get widget :tag) | |
725 (replace-in-string (widget-get widget :tag) | |
726 "^[ \t]+" "" t)) | |
727 default-prompt | |
728 "Value"))) | |
729 (widget-prompt-spaceify prompt)) | |
730 | |
731 | |
428 | 732 ;;;###autoload |
4178 | 733 (defun widget-prompt-value (widget &optional prompt value unbound) |
734 "Prompt for a value matching WIDGET. | |
735 Prompt with PROMPT, or WIDGET's :tag otherwise. | |
428 | 736 The current value is assumed to be VALUE, unless UNBOUND is non-nil." |
737 (unless (listp widget) | |
738 (setq widget (list widget))) | |
739 (setq widget (widget-convert widget)) | |
4178 | 740 (let ((answer (widget-apply widget |
741 :prompt-value | |
742 (format "%s[%s]" | |
743 (widget-prompt widget prompt) | |
744 (widget-type widget)) | |
745 value unbound))) | |
428 | 746 (while (not (widget-apply widget :match answer)) |
747 (setq answer (signal 'error (list "Answer does not match type" | |
748 answer (widget-type widget))))) | |
749 answer)) | |
750 | |
751 (defun widget-get-sibling (widget) | |
752 "Get the item WIDGET is assumed to toggle. | |
753 This is only meaningful for radio buttons or checkboxes in a list." | |
1309 | 754 (let* ((children (widget-get (widget-get widget :parent) :children)) |
428 | 755 child) |
756 (catch 'child | |
757 (while children | |
758 (setq child (car children) | |
759 children (cdr children)) | |
760 (when (eq (widget-get child :button) widget) | |
761 (throw 'child child))) | |
762 nil))) | |
763 | |
764 (defun widget-map-buttons (function &optional buffer maparg) | |
765 "Map FUNCTION over the buttons in BUFFER. | |
766 FUNCTION is called with the arguments WIDGET and MAPARG. | |
767 | |
768 If FUNCTION returns non-nil, the walk is cancelled. | |
769 | |
770 The arguments MAPARG, and BUFFER default to nil and (current-buffer), | |
771 respectively." | |
772 (map-extents (lambda (extent ignore) | |
773 ;; If FUNCTION returns non-nil, we bail out | |
774 (funcall function (extent-property extent 'button) maparg)) | |
775 nil nil nil nil nil | |
776 'button)) | |
777 | |
778 | |
779 ;;; Glyphs. | |
780 | |
781 (defcustom widget-glyph-directory (locate-data-directory "custom") | |
1309 | 782 "Where widget button glyphs are located. |
428 | 783 If this variable is nil, widget will try to locate the directory |
784 automatically." | |
785 :group 'widgets | |
786 :type 'directory) | |
787 | |
788 (defcustom widget-glyph-enable t | |
1309 | 789 "If non nil, use glyph buttons in widgets when available." |
428 | 790 :group 'widgets |
791 :type 'boolean) | |
792 | |
1309 | 793 ;; #### What happens if you try to customize this? |
794 (define-compatible-variable-alias 'widget-image-conversion | |
795 'widget-image-file-name-suffixes) | |
796 | |
428 | 797 (defcustom widget-image-file-name-suffixes |
798 '((xpm ".xpm") (gif ".gif") (png ".png") (jpeg ".jpg" ".jpeg") | |
799 (xbm ".xbm")) | |
800 "Conversion alist from image formats to file name suffixes." | |
801 :group 'widgets | |
802 :type '(repeat (cons :format "%v" | |
803 (symbol :tag "Image Format" unknown) | |
804 (repeat :tag "Suffixes" | |
805 (string :format "%v"))))) | |
806 | |
807 ;; Don't use this, because we cannot yet distinguish between widget | |
808 ;; glyphs associated with user action, and actionless ones. | |
809 ;(defvar widget-glyph-pointer-glyph | |
810 ; (make-pointer-glyph [cursor-font :data "hand2"]) | |
811 ; "Glyph to be used as the mouse pointer shape over glyphs. | |
812 ;Use `set-glyph-image' to change this.") | |
813 | |
814 (defvar widget-glyph-cache nil | |
815 "Cache of glyphs associated with strings (files).") | |
816 | |
817 (defun widget-glyph-find (image tag) | |
818 "Create a glyph corresponding to IMAGE with string TAG as fallback. | |
819 IMAGE can already be a glyph, or a file name sans extension (xpm, | |
820 xbm, gif, jpg, or png) located in `widget-glyph-directory', or | |
821 in one of the data directories. | |
822 It can also be a valid image instantiator, in which case it will be | |
823 used to make the glyph, with an additional TAG string fallback." | |
824 (cond ((not (and image widget-glyph-enable)) | |
825 ;; We don't want to use glyphs. | |
826 nil) | |
827 ((and (not (console-on-window-system-p)) | |
828 ;; We don't use glyphs on TTY consoles, although we | |
829 ;; could. However, glyph faces aren't yet working | |
830 ;; properly, and movement through glyphs is unintuitive. | |
831 ;; As an exception, when TAG is nil, we assume that the | |
832 ;; caller knows what he is doing, and that the tag is | |
833 ;; encoded within the glyph. | |
834 (not (glyphp image))) | |
835 nil) | |
836 ((glyphp image) | |
837 ;; Already a glyph. Use it. | |
838 image) | |
839 ((stringp image) | |
840 ;; A string. Look it up in the cache first... | |
841 (or (lax-plist-get widget-glyph-cache image) | |
842 ;; ...and then in the relevant directories | |
843 (let* ((dirlist (cons (or widget-glyph-directory | |
844 (locate-data-directory "custom")) | |
845 data-directory-list)) | |
846 (all-suffixes | |
847 (apply #'append | |
848 (mapcar | |
849 (lambda (el) | |
850 (and (valid-image-instantiator-format-p (car el)) | |
851 (cdr el))) | |
852 widget-image-file-name-suffixes))) | |
853 (file (locate-file image dirlist all-suffixes))) | |
854 (when file | |
855 (let* ((extension (concat "." (file-name-extension file))) | |
856 (format (car (rassoc* extension | |
857 widget-image-file-name-suffixes | |
858 :test #'member)))) | |
859 ;; We create a glyph with the file as the default image | |
860 ;; instantiator, and the TAG fallback | |
861 (let ((glyph (make-glyph `([,format :file ,file] | |
862 [string :data ,tag])))) | |
863 ;; Cache the glyph | |
864 (laxputf widget-glyph-cache image glyph) | |
865 ;; ...and return it | |
866 glyph)))))) | |
867 ((valid-instantiator-p image 'image) | |
868 ;; A valid image instantiator (e.g. [gif :file "somefile"] etc.) | |
869 (make-glyph `(,image [string :data ,tag]))) | |
870 (t | |
871 ;; Oh well. | |
872 nil))) | |
873 | |
874 (defun widget-glyph-insert (widget tag image &optional down inactive) | |
875 "In WIDGET, insert the text TAG or, if supported, IMAGE. | |
876 IMAGE should either be a glyph, an image instantiator, an image file | |
877 name sans extension (xpm, xbm, gif, jpg, or png) located in | |
878 `widget-glyph-directory', or anything else allowed by | |
879 `widget-glyph-find'. | |
880 | |
881 If IMAGE is a list, it will be taken as a list of (UP DOWN INACTIVE) | |
882 glyphs. The down and inactive glyphs are shown when glyph is pressed | |
883 or inactive, respectively. | |
884 | |
885 The optional DOWN and INACTIVE arguments are deprecated, and exist | |
886 only because of compatibility." | |
887 ;; Convert between IMAGE being a list, etc. Must use `psetq', | |
888 ;; because otherwise change to `image' screws up the rest. | |
889 (psetq image (or (and (consp image) | |
890 (car image)) | |
891 image) | |
892 down (or (and (consp image) | |
893 (nth 1 image)) | |
894 down) | |
895 inactive (or (and (consp image) | |
896 (nth 2 image)) | |
897 inactive)) | |
898 (let ((glyph (widget-glyph-find image tag))) | |
899 (if glyph | |
900 (widget-glyph-insert-glyph widget glyph | |
901 (widget-glyph-find down tag) | |
902 (widget-glyph-find inactive tag)) | |
903 (insert tag)) | |
904 glyph)) | |
905 | |
454 | 906 (defun widget-glyph-insert-glyph (widget glyph &optional down inactive |
907 instantiator) | |
428 | 908 "In WIDGET, insert GLYPH. |
909 If optional arguments DOWN and INACTIVE are given, they should be | |
454 | 910 glyphs used when the widget is pushed and inactive, respectively. |
911 INSTANTIATOR is the vector used to create the glyph." | |
428 | 912 (insert "*") |
913 (let ((extent (make-extent (point) (1- (point)))) | |
914 (help-echo (and widget (widget-get widget :help-echo))) | |
915 (map (and widget (widget-get widget :button-keymap)))) | |
916 (set-extent-property extent 'glyph-widget widget) | |
917 ;; It would be fun if we could make this extent atomic, so it | |
918 ;; doesn't mess with cursor motion. But atomic-extents library is | |
919 ;; currently a mess, so I'd rather not use it. | |
920 (set-extent-property extent 'invisible t) | |
921 (set-extent-property extent 'start-open t) | |
922 (set-extent-property extent 'end-open t) | |
923 (set-extent-property extent 'keymap map) | |
924 ;;(set-extent-property extent 'pointer widget-glyph-pointer-glyph) | |
925 (set-extent-end-glyph extent glyph) | |
926 (unless (or (stringp help-echo) (null help-echo)) | |
927 (setq help-echo 'widget-mouse-help)) | |
928 (when help-echo | |
929 (widget-handle-help-echo extent help-echo))) | |
930 (when widget | |
931 (widget-put widget :glyph-up glyph) | |
932 (when down (widget-put widget :glyph-down down)) | |
454 | 933 (when instantiator (widget-put widget :glyph-instantiator instantiator)) |
428 | 934 (when inactive (widget-put widget :glyph-inactive inactive)))) |
935 | |
936 | |
937 ;;; Buttons. | |
938 | |
939 (defgroup widget-button nil | |
940 "The look of various kinds of buttons." | |
941 :group 'widgets) | |
942 | |
943 (defcustom widget-button-prefix "" | |
944 "String used as prefix for buttons." | |
945 :type 'string | |
946 :group 'widget-button) | |
947 | |
948 (defcustom widget-button-suffix "" | |
949 "String used as suffix for buttons." | |
950 :type 'string | |
951 :group 'widget-button) | |
952 | |
953 | |
954 ;;; Creating Widgets. | |
955 | |
956 ;;;###autoload | |
957 (defun widget-create (type &rest args) | |
652 | 958 "Create a widget of type TYPE. |
1362 | 959 |
960 TYPE is copied, then converted to a widget using the keyword arguments ARGS." | |
428 | 961 (let ((widget (apply 'widget-convert type args))) |
962 (widget-apply widget :create) | |
963 widget)) | |
964 | |
965 (defun widget-create-child-and-convert (parent type &rest args) | |
652 | 966 "As a child of widget PARENT, create a widget of type TYPE. |
1362 | 967 |
968 TYPE is copied, then converted to a widget using the keyword arguments ARGS." | |
428 | 969 (let ((widget (apply 'widget-convert type args))) |
970 (widget-put widget :parent parent) | |
971 (unless (widget-get widget :indent) | |
972 (widget-put widget :indent (+ (or (widget-get parent :indent) 0) | |
973 (or (widget-get widget :extra-offset) 0) | |
974 (widget-get parent :offset)))) | |
975 (widget-apply widget :create) | |
976 widget)) | |
977 | |
978 (defun widget-create-child (parent type) | |
652 | 979 "As a child of widget PARENT, create a widget of type TYPE. |
1362 | 980 |
981 TYPE is copied, then used as a widget as-is." | |
428 | 982 (let ((widget (copy-sequence type))) |
983 (widget-put widget :parent parent) | |
984 (unless (widget-get widget :indent) | |
985 (widget-put widget :indent (+ (or (widget-get parent :indent) 0) | |
986 (or (widget-get widget :extra-offset) 0) | |
987 (widget-get parent :offset)))) | |
988 (widget-apply widget :create) | |
989 widget)) | |
990 | |
991 (defun widget-create-child-value (parent type value) | |
1362 | 992 "As a child of widget PARENT, create a widget with type TYPE and value VALUE. |
993 | |
994 TYPE is copied, then used as a widget as-is." | |
428 | 995 (let ((widget (copy-sequence type))) |
996 (widget-put widget :value (widget-apply widget :value-to-internal value)) | |
997 (widget-put widget :parent parent) | |
998 (unless (widget-get widget :indent) | |
999 (widget-put widget :indent (+ (or (widget-get parent :indent) 0) | |
1000 (or (widget-get widget :extra-offset) 0) | |
1001 (widget-get parent :offset)))) | |
1002 (widget-apply widget :create) | |
1003 widget)) | |
1004 | |
1005 ;;;###autoload | |
1006 (defun widget-delete (widget) | |
1007 "Delete WIDGET." | |
1008 (widget-apply widget :delete)) | |
1009 | |
1309 | 1010 (defun widget-copy (widget) |
1011 "Make a deep copy of WIDGET." | |
1012 (widget-apply (copy-sequence widget) :copy)) | |
1013 | |
1333 | 1014 ;;;###autoload |
428 | 1015 (defun widget-convert (type &rest args) |
1016 "Convert TYPE to a widget without inserting it in the buffer. | |
1362 | 1017 The optional ARGS are additional keyword arguments. |
1018 | |
1019 The widget's :args property is set from the longest tail of ARGS whose cdr | |
1020 is not a keyword, or from the longest tail of TYPE's :args property whose | |
1021 cdr is not a keyword. Keyword arguments from ARGS are set, and the :value | |
1022 property (if any) is converted from external to internal format." | |
428 | 1023 ;; Don't touch the type. |
1024 (let* ((widget (if (symbolp type) | |
1025 (list type) | |
1026 (copy-sequence type))) | |
1027 (current widget) | |
1028 (keys args)) | |
1362 | 1029 ;; First set the :args. |
1030 (while (cdr current) ; Use first non-keyword element of type. | |
428 | 1031 (let ((next (car (cdr current)))) |
1362 | 1032 (if (keywordp next) |
428 | 1033 (setq current (cdr (cdr current))) |
1034 (setcdr current (list :args (cdr current))) | |
1035 (setq current nil)))) | |
1362 | 1036 (while args ; Use first non-keyword element in ARGS. |
428 | 1037 (let ((next (nth 0 args))) |
1362 | 1038 (if (keywordp next) |
428 | 1039 (setq args (nthcdr 2 args)) |
1040 (widget-put widget :args args) | |
1041 (setq args nil)))) | |
652 | 1042 ;; Then convert the widget. |
428 | 1043 (setq type widget) |
1044 (while type | |
1045 (let ((convert-widget (plist-get (cdr type) :convert-widget))) | |
1046 (if convert-widget | |
1047 (setq widget (funcall convert-widget widget)))) | |
1048 (setq type (get (car type) 'widget-type))) | |
1049 ;; Finally set the keyword args. | |
1050 (while keys | |
1051 (let ((next (nth 0 keys))) | |
1309 | 1052 (if (keywordp next) |
428 | 1053 (progn |
1054 (widget-put widget next (nth 1 keys)) | |
1055 (setq keys (nthcdr 2 keys))) | |
1056 (setq keys nil)))) | |
1057 ;; Convert the :value to internal format. | |
1058 (if (widget-member widget :value) | |
1309 | 1059 (widget-put widget |
1060 :value (widget-apply widget | |
1061 :value-to-internal | |
1062 (widget-get widget :value)))) | |
428 | 1063 ;; Return the newly created widget. |
1064 widget)) | |
1065 | |
1309 | 1066 ;;;###autoload |
428 | 1067 (defun widget-insert (&rest args) |
1173 | 1068 "Call `insert' with ARGS even if surrounding text is read only." |
428 | 1069 (let ((inhibit-read-only t) |
1070 before-change-functions | |
1071 after-change-functions) | |
1072 (apply 'insert args))) | |
1073 | |
1074 (defun widget-convert-text (type from to | |
1075 &optional button-from button-to | |
1076 &rest args) | |
652 | 1077 "Return a widget of type TYPE with endpoints FROM and TO. |
1078 No text will be inserted in the buffer. Instead the positions FROM and TO | |
1079 will be used as the widget's end points. The widget is ``wrapped around'' | |
1080 the text between them. | |
1081 If optional arguments BUTTON-FROM and BUTTON-TO are given, these will be | |
1082 used as the widget's button end points. | |
428 | 1083 Optional ARGS are extra keyword arguments for TYPE." |
1084 (let ((widget (apply 'widget-convert type :delete 'widget-leave-text args)) | |
1085 (from (copy-marker from)) | |
1086 (to (copy-marker to))) | |
1087 (set-marker-insertion-type from t) | |
1088 (set-marker-insertion-type to nil) | |
1089 (widget-put widget :from from) | |
1090 (widget-put widget :to to) | |
1091 (when button-from | |
1092 (widget-specify-button widget button-from button-to)) | |
1093 widget)) | |
1094 | |
1095 (defun widget-convert-button (type from to &rest args) | |
652 | 1096 "Return a widget of type TYPE with endpoints FROM and TO. |
428 | 1097 Optional ARGS are extra keyword arguments for TYPE. |
652 | 1098 No text will be inserted in the buffer. Instead the positions FROM and TO |
1099 will be used as the widget's end points, as well as the widget's button's | |
1100 end points. The widget is ``wrapped around'' the text between them." | |
428 | 1101 (apply 'widget-convert-text type from to from to args)) |
1102 | |
1103 (defun widget-leave-text (widget) | |
1104 "Remove markers and extents from WIDGET and its children." | |
1105 (let ((from (widget-get widget :from)) | |
1106 (to (widget-get widget :to)) | |
1107 (button (widget-get widget :button-extent)) | |
1108 (sample (widget-get widget :sample-extent)) | |
1109 (doc (widget-get widget :doc-extent)) | |
1309 | 1110 (field (widget-get widget :field-extent))) |
428 | 1111 (set-marker from nil) |
1112 (set-marker to nil) | |
1113 ;; Maybe we should delete the extents here? As this code doesn't | |
1114 ;; remove them from widget structures, maybe it's safer to just | |
1309 | 1115 ;; detach them. That's what GNU-compatible `delete-overlay' does. |
428 | 1116 (when button |
1117 (detach-extent button)) | |
1118 (when sample | |
1119 (detach-extent sample)) | |
1120 (when doc | |
1121 (detach-extent doc)) | |
1122 (when field | |
1123 (detach-extent field)) | |
1309 | 1124 (mapc 'widget-leave-text (widget-get widget :children)))) |
428 | 1125 |
1126 | |
1127 ;;; Keymap and Commands. | |
1128 | |
1129 (defvar widget-keymap nil | |
1173 | 1130 "Keymap containing useful bindings for buffers containing widgets. |
428 | 1131 Recommended as a parent keymap for modes using widgets.") |
1132 | |
1133 (unless widget-keymap | |
1134 (setq widget-keymap (make-sparse-keymap)) | |
1135 (define-key widget-keymap [tab] 'widget-forward) | |
1136 (define-key widget-keymap [(shift tab)] 'widget-backward) | |
1137 (define-key widget-keymap [(meta tab)] 'widget-backward) | |
1138 (define-key widget-keymap [backtab] 'widget-backward)) | |
1139 | |
1140 (defvar widget-global-map global-map | |
1173 | 1141 "Keymap used for events a widget does not handle itself.") |
428 | 1142 (make-variable-buffer-local 'widget-global-map) |
1143 | |
1144 (defvar widget-field-keymap nil | |
1145 "Keymap used inside an editable field.") | |
1146 | |
1147 (unless widget-field-keymap | |
1148 (setq widget-field-keymap (make-sparse-keymap)) | |
1149 (set-keymap-parents widget-field-keymap global-map) | |
1150 (define-key widget-field-keymap "\C-k" 'widget-kill-line) | |
1151 (define-key widget-field-keymap [(meta tab)] 'widget-complete) | |
1152 (define-key widget-field-keymap [tab] 'widget-forward) | |
1153 (define-key widget-field-keymap [(shift tab)] 'widget-backward) | |
1154 (define-key widget-field-keymap "\C-m" 'widget-field-activate) | |
1155 (define-key widget-field-keymap "\C-a" 'widget-beginning-of-line) | |
1156 (define-key widget-field-keymap "\C-e" 'widget-end-of-line) | |
1157 (define-key widget-field-keymap "\C-t" 'widget-transpose-chars)) | |
1158 | |
1159 (defvar widget-text-keymap nil | |
1160 "Keymap used inside a text field.") | |
1161 | |
1162 (unless widget-text-keymap | |
1163 (setq widget-text-keymap (make-sparse-keymap)) | |
1164 (set-keymap-parents widget-field-keymap global-map) | |
1165 (define-key widget-text-keymap "\C-a" 'widget-beginning-of-line) | |
1166 (define-key widget-text-keymap "\C-e" 'widget-end-of-line) | |
1167 (define-key widget-text-keymap "\C-t" 'widget-transpose-chars)) | |
1168 | |
1169 (defvar widget-button-keymap nil | |
1170 "Keymap used inside a button.") | |
1171 | |
1172 (unless widget-button-keymap | |
1173 (setq widget-button-keymap (make-sparse-keymap)) | |
1174 (set-keymap-parents widget-button-keymap widget-keymap) | |
1175 (define-key widget-button-keymap "\C-m" 'widget-button-press) | |
1176 (define-key widget-button-keymap [button2] 'widget-button-click) | |
1177 ;; Ideally, button3 within a button should invoke a button-specific | |
1178 ;; menu. | |
1179 (define-key widget-button-keymap [button3] 'widget-button-click) | |
1180 ;;Glyph support. | |
1181 (define-key widget-button-keymap [button1] 'widget-button1-click)) | |
1182 | |
1183 | |
1184 (defun widget-field-activate (pos &optional event) | |
652 | 1185 "Invoke the editable field at point." |
428 | 1186 (interactive "@d") |
1187 (let ((field (widget-field-find pos))) | |
1188 (if field | |
1189 (widget-apply-action field event) | |
1190 (call-interactively | |
1191 (lookup-key widget-global-map (this-command-keys)))))) | |
1192 | |
1193 (defface widget-button-pressed-face | |
1194 '((((class color)) | |
1195 (:foreground "red")) | |
1196 (t | |
1197 (:bold t :underline t))) | |
1198 "Face used for pressed buttons." | |
1199 :group 'widget-faces) | |
1200 | |
1201 (defun widget-event-point (event) | |
1202 "Character position of the mouse event, or nil." | |
1203 (and (mouse-event-p event) | |
1204 (event-point event))) | |
1205 | |
1206 (defun widget-button-click (event) | |
1173 | 1207 "Invoke button under mouse pointer." |
428 | 1208 (interactive "e") |
1209 (with-current-buffer (event-buffer event) | |
1210 (cond ((event-glyph event) | |
1211 (widget-glyph-click event)) | |
1212 ((widget-event-point event) | |
1213 (let* ((pos (widget-event-point event)) | |
1214 (button (get-char-property pos 'button))) | |
1215 (if button | |
1216 (let* ((extent (widget-get button :button-extent)) | |
1217 (face (extent-property extent 'face)) | |
1218 (mouse-face (extent-property extent 'mouse-face)) | |
1219 (help-echo (extent-property extent 'help-echo))) | |
1220 (unwind-protect | |
1221 (progn | |
1222 ;; Merge relevant faces, and make the result mouse-face. | |
1223 (let ((merge `(widget-button-pressed-face ,mouse-face))) | |
1224 (nconc merge (if (listp face) | |
1225 face (list face))) | |
1226 (setq merge (delete-if-not 'find-face merge)) | |
1227 (set-extent-property extent 'mouse-face merge)) | |
1228 (unless (widget-apply button :mouse-down-action event) | |
1229 ;; Wait for button release. | |
1230 (while (not (button-release-event-p | |
1231 (setq event (next-event)))) | |
1232 (dispatch-event event))) | |
1233 ;; Disallow mouse-face and help-echo. | |
1234 (set-extent-property extent 'mouse-face nil) | |
1235 (set-extent-property extent 'help-echo nil) | |
1236 (setq pos (widget-event-point event)) | |
1237 (unless (eq (current-buffer) (extent-object extent)) | |
1238 ;; Barf if dispatch-event tripped us by | |
1239 ;; changing buffer. | |
1240 (error "Buffer changed during mouse motion")) | |
1241 ;; Do the associated action. | |
1242 (when (and pos (extent-in-region-p extent pos pos)) | |
1243 (widget-apply-action button event))) | |
1244 ;; Unwinding: fully release the button. | |
1245 (set-extent-property extent 'mouse-face mouse-face) | |
1246 (set-extent-property extent 'help-echo help-echo))) | |
1247 ;; This should not happen! | |
1248 (error "`widget-button-click' called outside button")))) | |
1249 (t | |
1250 (message "You clicked somewhere weird"))))) | |
1251 | |
1252 (defun widget-button1-click (event) | |
1253 "Invoke glyph below mouse pointer." | |
1254 (interactive "@e") | |
1255 (if (event-glyph event) | |
1256 (widget-glyph-click event) | |
1257 ;; Should somehow avoid this. | |
1258 (let ((command (lookup-key widget-global-map (this-command-keys)))) | |
1259 (and (commandp command) | |
1260 (call-interactively command))))) | |
1261 | |
1262 (defun widget-glyph-click (event) | |
1263 "Handle click on a glyph." | |
1264 (let* ((glyph (event-glyph event)) | |
1265 (extent (event-glyph-extent event)) | |
1266 (widget (extent-property extent 'glyph-widget)) | |
1267 (down-glyph (or (and widget (widget-get widget :glyph-down)) glyph)) | |
1268 (up-glyph (or (and widget (widget-get widget :glyph-up)) glyph)) | |
1269 (last event)) | |
1270 (unless (widget-apply widget :active) | |
1271 (error "This widget is inactive")) | |
1272 (let ((current-glyph 'down)) | |
1273 ;; We always know what glyph is drawn currently, to avoid | |
1274 ;; unnecessary extent changes. Is this any noticeable gain? | |
1275 (unwind-protect | |
1276 (progn | |
1277 ;; Press the glyph. | |
1278 (set-extent-end-glyph extent down-glyph) | |
1279 ;; Redisplay (shouldn't be needed, but...) | |
1280 (sit-for 0) | |
1281 (unless (widget-apply widget :mouse-down-action event) | |
1282 ;; Wait for the release. | |
1283 (while (not (button-release-event-p last)) | |
1284 (unless (button-press-event-p last) | |
1285 (dispatch-event last)) | |
1286 (when (motion-event-p last) | |
1287 ;; Update glyphs on mouse motion. | |
1288 (if (eq extent (event-glyph-extent last)) | |
1289 (unless (eq current-glyph 'down) | |
1290 (set-extent-end-glyph extent down-glyph) | |
1291 (setq current-glyph 'down)) | |
1292 (unless (eq current-glyph 'up) | |
1293 (set-extent-end-glyph extent up-glyph) | |
1294 (setq current-glyph 'up)))) | |
1295 (setq last (next-event event)))) | |
1296 (unless (eq (current-buffer) (extent-object extent)) | |
1297 ;; Barf if dispatch-event tripped us by changing buffer. | |
1298 (error "Buffer changed during mouse motion")) | |
1299 ;; Apply widget action. | |
1300 (when (eq extent (event-glyph-extent last)) | |
1301 (let ((widget (extent-property (event-glyph-extent event) | |
1302 'glyph-widget))) | |
1303 (cond ((null widget) | |
1304 (message "You clicked on a glyph")) | |
1305 ((not (widget-apply widget :active)) | |
1306 (error "This glyph is inactive")) | |
1307 (t | |
1308 (widget-apply-action widget event)))))) | |
1309 ;; Release the glyph. | |
1310 (and (eq current-glyph 'down) | |
1311 ;; The extent might have been detached or deleted | |
1312 (extent-live-p extent) | |
1313 (not (extent-detached-p extent)) | |
1314 (set-extent-end-glyph extent up-glyph)))))) | |
1315 | |
1316 (defun widget-button-press (pos &optional event) | |
1317 "Invoke button at POS." | |
1318 (interactive "@d") | |
1319 (let ((button (get-char-property pos 'button))) | |
1320 (if button | |
1321 (widget-apply-action button event) | |
1322 (let ((command (lookup-key widget-global-map (this-command-keys)))) | |
1323 (when (commandp command) | |
1324 (call-interactively command)))))) | |
1325 | |
1326 (defun widget-tabable-at (&optional pos last-tab backwardp) | |
1327 "Return the tabable widget at POS, or nil. | |
1328 POS defaults to the value of (point)." | |
1329 (unless pos | |
1330 (setq pos (point))) | |
1331 (let ((widget (widget-at pos))) | |
1332 (if widget | |
1333 (let ((order (widget-get widget :tab-order))) | |
1334 (if order | |
1335 (if last-tab (and (= order (if backwardp | |
1336 (1- last-tab) | |
1337 (1+ last-tab))) | |
1338 widget) | |
1339 (and (> order 0) widget)) | |
1340 widget)) | |
1341 nil))) | |
1342 | |
1343 ;; Return the button or field extent at point. | |
1344 (defun widget-button-or-field-extent (pos) | |
1345 (or (and (get-char-property pos 'button) | |
1346 (widget-get (get-char-property pos 'button) | |
1347 :button-extent)) | |
1348 (and (get-char-property pos 'field) | |
1349 (widget-get (get-char-property pos 'field) | |
1350 :field-extent)))) | |
1351 | |
1352 (defun widget-next-button-or-field (pos) | |
1353 "Find the next button, or field, and return its start position, or nil. | |
1354 Internal function, don't use it outside `wid-edit'." | |
1355 (let* ((at-point (widget-button-or-field-extent pos)) | |
1356 (extent (map-extents | |
1357 (lambda (ext ignore) | |
1358 ext) | |
1359 nil (if at-point (extent-end-position at-point) pos) | |
1360 nil nil 'start-open 'button-or-field))) | |
1361 (and extent | |
1362 (extent-start-position extent)))) | |
1363 | |
1364 ;; This is too slow in buffers with many buttons (W3). | |
1365 (defun widget-previous-button-or-field (pos) | |
1366 "Find the previous button, or field, and return its start position, or nil. | |
1367 Internal function, don't use it outside `wid-edit'." | |
1368 (let* ((at-point (widget-button-or-field-extent pos)) | |
1369 previous-extent) | |
1370 (map-extents | |
1371 (lambda (ext ignore) | |
1372 (if (eq ext at-point) | |
1373 ;; We reached the extent we were on originally | |
1374 (if (= pos (extent-start-position at-point)) | |
1375 previous-extent | |
1376 (setq previous-extent at-point)) | |
1377 (setq previous-extent ext) | |
1378 nil)) | |
1379 nil nil pos nil 'start-open 'button-or-field) | |
1380 (and previous-extent | |
1381 (extent-start-position previous-extent)))) | |
1382 | |
1383 (defun widget-move (arg) | |
1384 "Move point to the ARG next field or button. | |
1385 ARG may be negative to move backward." | |
1386 (let ((opoint (point)) (wrapped 0) | |
1387 (last-tab (widget-get (widget-at (point)) :tab-order)) | |
1388 nextpos found) | |
1389 ;; Movement backward | |
1390 (while (< arg 0) | |
1391 (setq nextpos (widget-previous-button-or-field (point))) | |
1392 (if nextpos | |
1393 (progn | |
1394 (goto-char nextpos) | |
1395 (when (and (not (get-char-property nextpos 'widget-inactive)) | |
1396 (widget-tabable-at nil last-tab t)) | |
1397 (incf arg) | |
1398 (setq found t | |
1399 last-tab (widget-get (widget-at (point)) | |
1400 :tab-order)))) | |
1401 (if (and (not found) (> wrapped 1)) | |
1402 (setq arg 0 | |
1403 found nil) | |
1404 (goto-char (point-max)) | |
1405 (incf wrapped)))) | |
1406 ;; Movement forward | |
1407 (while (> arg 0) | |
1408 (setq nextpos (widget-next-button-or-field (point))) | |
1409 (if nextpos | |
1410 (progn | |
1411 (goto-char nextpos) | |
1412 (when (and (not (get-char-property nextpos 'widget-inactive)) | |
1413 (widget-tabable-at nil last-tab)) | |
1414 (decf arg) | |
1415 (setq found t | |
1416 last-tab (widget-get (widget-at (point)) | |
1417 :tab-order)))) | |
1418 (if (and (not found) (> wrapped 1)) | |
1419 (setq arg 0 | |
1420 found nil) | |
1421 (goto-char (point-min)) | |
1422 (incf wrapped)))) | |
1423 (if (not found) | |
1424 (goto-char opoint) | |
1425 (widget-echo-help (point)) | |
1426 (run-hooks 'widget-move-hook)))) | |
1427 | |
1428 (defun widget-forward (arg) | |
1429 "Move point to the next field or button. | |
1430 With optional ARG, move across that many fields." | |
1431 (interactive "p") | |
1432 (run-hooks 'widget-forward-hook) | |
1433 (widget-move arg)) | |
1434 | |
1435 (defun widget-backward (arg) | |
1436 "Move point to the previous field or button. | |
1437 With optional ARG, move across that many fields." | |
1438 (interactive "p") | |
1439 (run-hooks 'widget-backward-hook) | |
1440 (widget-move (- arg))) | |
1441 | |
1442 (defun widget-beginning-of-line () | |
652 | 1443 "Go to beginning of field or beginning of line, whichever is first. |
1444 | |
1445 It is an error to use this function after creating the widget but before | |
1446 invoking `widget-setup'." | |
428 | 1447 (interactive "_") |
1448 (let* ((field (widget-field-find (point))) | |
1449 (start (and field (widget-field-start field)))) | |
1450 (if (and start (not (eq start (point)))) | |
1451 (goto-char start) | |
1452 (call-interactively 'beginning-of-line)))) | |
1453 | |
1454 (defun widget-end-of-line () | |
652 | 1455 "Go to end of field or end of line, whichever is first. |
1456 | |
1457 It is an error to use this function after creating the widget but before | |
1458 invoking `widget-setup'." | |
428 | 1459 (interactive "_") |
1460 (let* ((field (widget-field-find (point))) | |
1461 (end (and field (widget-field-end field)))) | |
1462 (if (and end (not (eq end (point)))) | |
1463 (goto-char end) | |
1464 (call-interactively 'end-of-line)))) | |
1465 | |
1466 (defun widget-kill-line () | |
652 | 1467 "Kill to end of field or end of line, whichever is first. |
1468 | |
1469 It is an error to use this function after creating the widget but before | |
1470 invoking `widget-setup'." | |
428 | 1471 (interactive) |
1472 (let* ((field (widget-field-find (point))) | |
1473 (newline (save-excursion (forward-line 1) (point))) | |
1474 (end (and field (widget-field-end field)))) | |
1475 (if (and field (> newline end)) | |
1476 (kill-region (point) end) | |
1477 (call-interactively 'kill-line)))) | |
1478 | |
1479 (defun widget-transpose-chars (arg) | |
1480 "Like `transpose-chars', but works correctly at end of widget." | |
1481 (interactive "*P") | |
1482 (let* ((field (widget-field-find (point))) | |
1483 (start (and field (widget-field-start field))) | |
1484 (end (and field (widget-field-end field))) | |
1485 (last-non-space (and start end | |
1486 (save-excursion | |
1487 (goto-char end) | |
1488 (skip-chars-backward " \t\n" start) | |
1489 (point))))) | |
1490 (cond ((and last-non-space | |
1491 (or (= last-non-space start) | |
1492 (= last-non-space (1+ start)))) | |
1493 ;; empty or one-character field | |
1494 nil) | |
1495 ((= (point) start) | |
1496 ;; at the beginning of the field -- we would get an error here. | |
1497 (error "Cannot transpose at beginning of field")) | |
1498 (t | |
1499 (when (and (null arg) | |
1500 (= last-non-space (point))) | |
446 | 1501 (backward-char 1)) |
428 | 1502 (transpose-chars arg))))) |
1503 | |
1504 (defcustom widget-complete-field (lookup-key global-map "\M-\t") | |
1505 "Default function to call for completion inside fields." | |
1506 :options '(ispell-complete-word complete-tag lisp-complete-symbol) | |
1507 :type 'function | |
1508 :group 'widgets) | |
1509 | |
1510 (defun widget-complete () | |
1511 "Complete content of editable field from point. | |
1512 When not inside a field, move to the previous button or field." | |
1513 (interactive) | |
1514 ;; Somehow, this should make pressing M-TAB twice scroll the | |
1515 ;; completions window. | |
1516 (let ((field (widget-field-find (point)))) | |
1517 (if field | |
1518 (widget-apply field :complete) | |
1519 (error "Not in an editable field")))) | |
1520 | |
1521 | |
1522 ;;; Setting up the buffer. | |
1523 | |
1362 | 1524 (defvar widget-field-new nil |
1525 "List of all newly created editable fields in the buffer.") | |
428 | 1526 (make-variable-buffer-local 'widget-field-new) |
1527 | |
1362 | 1528 (defvar widget-field-list nil |
1529 "List of all editable fields in the buffer.") | |
428 | 1530 (make-variable-buffer-local 'widget-field-list) |
1531 | |
1309 | 1532 ;; Is this a misnomer? |
1533 (defun widget-at (pos) | |
1534 "The button or field at POS." | |
1535 (or (get-char-property pos 'button) | |
1536 (get-char-property pos 'field))) | |
1537 | |
1538 ;;;###autoload | |
428 | 1539 (defun widget-setup () |
1540 "Setup current buffer so editing string widgets works." | |
1541 (let ((inhibit-read-only t) | |
1542 (after-change-functions nil) | |
1543 before-change-functions | |
1544 field) | |
1545 (while widget-field-new | |
1546 (setq field (car widget-field-new) | |
1547 widget-field-new (cdr widget-field-new) | |
1548 widget-field-list (cons field widget-field-list)) | |
1549 (let ((from (car (widget-get field :field-extent))) | |
1550 (to (cdr (widget-get field :field-extent)))) | |
1551 (widget-specify-field field | |
1552 (marker-position from) (marker-position to)) | |
1553 (set-marker from nil) | |
1554 (set-marker to nil)) | |
1555 ;; If the field is placed within the inactive zone, deactivate it. | |
1556 (let ((extent (widget-get field :field-extent))) | |
1557 (when (get-char-property (extent-start-position extent) | |
1558 'widget-inactive) | |
1559 (widget-activation-widget-mapper extent :deactivate))))) | |
1560 (widget-clear-undo) | |
1561 (widget-add-change)) | |
1562 | |
1563 (defvar widget-field-last nil) | |
1564 ;; Last field containing point. | |
1565 (make-variable-buffer-local 'widget-field-last) | |
1566 | |
1567 (defvar widget-field-was nil) | |
1568 ;; The widget data before the change. | |
1569 (make-variable-buffer-local 'widget-field-was) | |
1570 | |
1309 | 1571 (defun widget-field-at (pos) |
1572 "Return the widget field at POS, or nil if none." | |
1573 (let ((field (get-char-property (or pos (point)) 'field))) | |
1574 (if (eq field 'boundary) | |
1575 nil | |
1576 field))) | |
1577 | |
428 | 1578 (defun widget-field-buffer (widget) |
652 | 1579 "Return the buffer containing WIDGET. |
1580 | |
1581 It is an error to use this function after creating the widget but before | |
1582 invoking `widget-setup'." | |
428 | 1583 (let ((extent (widget-get widget :field-extent))) |
1584 (and extent (extent-object extent)))) | |
1585 | |
1586 (defun widget-field-start (widget) | |
652 | 1587 "Return the start of WIDGET's editing field. |
1588 | |
1589 It is an error to use this function after creating the widget but before | |
1590 invoking `widget-setup'." | |
428 | 1591 (let ((extent (widget-get widget :field-extent))) |
1592 (and extent (extent-start-position extent)))) | |
1593 | |
1594 (defun widget-field-end (widget) | |
652 | 1595 "Return the end of WIDGET's editing field. |
1596 | |
1597 It is an error to use this function after creating the widget but before | |
1598 invoking `widget-setup'." | |
428 | 1599 (let ((extent (widget-get widget :field-extent))) |
1600 ;; Don't subtract one if local-map works at the end of the extent. | |
1601 (and extent (if (or widget-field-add-space | |
1602 (null (widget-get widget :size))) | |
1603 (1- (extent-end-position extent)) | |
1604 (extent-end-position extent))))) | |
1605 | |
1606 (defun widget-field-find (pos) | |
1607 "Return the field at POS. | |
652 | 1608 Unlike (get-char-property POS 'field) this, works with empty fields too. |
1609 | |
1610 Warning: using this function after creating the widget but before invoking | |
1611 `widget-setup' will always fail." | |
1309 | 1612 ;; XEmacs: use `map-extents' instead of a while loop |
428 | 1613 (let ((field-extent (map-extents (lambda (extent ignore) |
1614 extent) | |
1615 nil pos pos nil nil 'field))) | |
1616 (and field-extent | |
1617 (extent-property field-extent 'field)))) | |
1618 | |
652 | 1619 ;; Warning: using this function after creating the widget but before |
1620 ;; invoking `widget-setup' will always fail. | |
428 | 1621 (defun widget-before-change (from to) |
1622 ;; Barf if the text changed is outside the editable fields. | |
1623 (unless inhibit-read-only | |
1624 (let ((from-field (widget-field-find from)) | |
1625 (to-field (widget-field-find to))) | |
1626 (cond ((or (null from-field) | |
1627 (null to-field)) | |
1628 ;; Either end of change is not within a field. | |
1629 (add-hook 'post-command-hook 'widget-add-change nil t) | |
1630 (error "Attempt to change text outside editable field")) | |
1631 ((not (eq from-field to-field)) | |
1632 ;; The change begins in one fields, and ends in another one. | |
1633 (add-hook 'post-command-hook 'widget-add-change nil t) | |
1634 (error "Change should be restricted to a single field")) | |
1635 ((or (and from-field | |
1636 (get-char-property from 'widget-inactive)) | |
1637 (and to-field | |
1638 (get-char-property to 'widget-inactive))) | |
1639 ;; Trying to change an inactive editable field. | |
1640 (add-hook 'post-command-hook 'widget-add-change nil t) | |
1641 (error "Attempt to change an inactive field")) | |
1642 (widget-field-use-before-change | |
1643 ;; #### Bletch! This loses because XEmacs get confused | |
1644 ;; if before-change-functions change the contents of | |
1645 ;; buffer before from/to. | |
1646 (condition-case nil | |
1647 (widget-apply from-field :notify from-field) | |
776 | 1648 (error (declare-fboundp (debug "Before Change"))))))))) |
428 | 1649 |
1650 (defun widget-add-change () | |
1651 (make-local-hook 'post-command-hook) | |
1652 (remove-hook 'post-command-hook 'widget-add-change t) | |
1653 (make-local-hook 'before-change-functions) | |
1654 (add-hook 'before-change-functions 'widget-before-change nil t) | |
1655 (make-local-hook 'after-change-functions) | |
1656 (add-hook 'after-change-functions 'widget-after-change nil t)) | |
1657 | |
1658 (defun widget-after-change (from to old) | |
1309 | 1659 "Adjust field size and text properties. |
1660 | |
1661 Also, notify the widgets (so, for example, a variable changes its | |
1662 state to `modified'. when it is being edited)." | |
428 | 1663 (condition-case nil |
1664 (let ((field (widget-field-find from)) | |
1665 (other (widget-field-find to))) | |
1666 (when field | |
1667 (unless (eq field other) | |
776 | 1668 (declare-fboundp (debug "Change in different fields"))) |
428 | 1669 (let ((size (widget-get field :size))) |
1670 (when size | |
1671 (let ((begin (widget-field-start field)) | |
1672 (end (widget-field-end field))) | |
1673 (cond ((< (- end begin) size) | |
1674 ;; Field too small. | |
1675 (save-excursion | |
1676 (goto-char end) | |
1677 (insert-char ?\ (- (+ begin size) end)))) | |
1678 ((> (- end begin) size) | |
1679 ;; Field too large and | |
1680 (if (or (< (point) (+ begin size)) | |
1681 (> (point) end)) | |
1682 ;; Point is outside extra space. | |
1683 (setq begin (+ begin size)) | |
1684 ;; Point is within the extra space. | |
1685 (setq begin (point))) | |
1686 (save-excursion | |
1687 (goto-char end) | |
1688 (while (and (eq (preceding-char) ?\ ) | |
1689 (> (point) begin)) | |
1690 (delete-backward-char 1))))))) | |
1691 (widget-specify-secret field)) | |
1692 (widget-apply field :notify field))) | |
776 | 1693 (error (declare-fboundp (debug "After Change"))))) |
428 | 1694 |
1695 | |
1696 ;;; Widget Functions | |
1697 ;; | |
1698 ;; These functions are used in the definition of multiple widgets. | |
1699 | |
1700 (defun widget-parent-action (widget &optional event) | |
1701 "Tell :parent of WIDGET to handle the :action. | |
1702 Optional EVENT is the event that triggered the action." | |
1703 (widget-apply (widget-get widget :parent) :action event)) | |
1704 | |
1705 (defun widget-children-value-delete (widget) | |
1706 "Delete all :children and :buttons in WIDGET." | |
1707 (mapc 'widget-delete (widget-get widget :children)) | |
1708 (widget-put widget :children nil) | |
1709 (mapc 'widget-delete (widget-get widget :buttons)) | |
1710 (widget-put widget :buttons nil)) | |
1711 | |
1712 (defun widget-children-validate (widget) | |
1713 "All the :children must be valid." | |
1714 (let ((children (widget-get widget :children)) | |
1715 child found) | |
1716 (while (and children (not found)) | |
1717 (setq child (car children) | |
1718 children (cdr children) | |
1719 found (widget-apply child :validate))) | |
1720 found)) | |
1721 | |
1309 | 1722 (defun widget-types-copy (widget) |
1723 "Copy :args as widget types in WIDGET." | |
1724 (widget-put widget :args (mapcar 'widget-copy (widget-get widget :args))) | |
1725 widget) | |
1726 | |
1727 ;; Made defsubst to speed up face editor creation. | |
1728 (defsubst widget-types-convert-widget (widget) | |
1362 | 1729 "Convert each member of :args in WIDGET from a widget type to a widget." |
428 | 1730 (widget-put widget :args (mapcar 'widget-convert (widget-get widget :args))) |
1731 widget) | |
1732 | |
1733 (defun widget-value-convert-widget (widget) | |
1362 | 1734 "Initialize :value from `(car :args)' in WIDGET, and reset :args." |
428 | 1735 (let ((args (widget-get widget :args))) |
1736 (when args | |
1737 (widget-put widget :value (car args)) | |
1738 ;; Don't convert :value here, as this is done in `widget-convert'. | |
1739 ;; (widget-put widget :value (widget-apply widget | |
1740 ;; :value-to-internal (car args))) | |
1741 (widget-put widget :args nil))) | |
1742 widget) | |
1743 | |
1744 (defun widget-value-value-get (widget) | |
1745 "Return the :value property of WIDGET." | |
1746 (widget-get widget :value)) | |
1747 | |
1748 ;;; The `default' Widget. | |
1749 | |
1750 (define-widget 'default nil | |
1751 "Basic widget other widgets are derived from." | |
1752 :value-to-internal (lambda (widget value) value) | |
1753 :value-to-external (lambda (widget value) value) | |
1754 :button-prefix 'widget-button-prefix | |
1755 :button-suffix 'widget-button-suffix | |
1756 :complete 'widget-default-complete | |
1757 :create 'widget-default-create | |
1758 :indent nil | |
1759 :offset 0 | |
1760 :format-handler 'widget-default-format-handler | |
1761 :button-face-get 'widget-default-button-face-get | |
1762 :sample-face-get 'widget-default-sample-face-get | |
1763 :button-keymap widget-button-keymap | |
1764 :delete 'widget-default-delete | |
1765 :value-set 'widget-default-value-set | |
1766 :value-inline 'widget-default-value-inline | |
1767 :default-get 'widget-default-default-get | |
1768 :menu-tag-get 'widget-default-menu-tag-get | |
1309 | 1769 :validate #'ignore |
428 | 1770 :active 'widget-default-active |
1771 :activate 'widget-specify-active | |
1772 :deactivate 'widget-default-deactivate | |
1309 | 1773 :mouse-down-action #'ignore |
428 | 1774 :action 'widget-default-action |
1775 :notify 'widget-default-notify | |
1776 :prompt-value 'widget-default-prompt-value) | |
1777 | |
1778 (defun widget-default-complete (widget) | |
1779 "Call the value of the :complete-function property of WIDGET. | |
1780 If that does not exists, call the value of `widget-complete-field'." | |
1309 | 1781 (call-interactively (or (widget-get widget :complete-function) |
1782 widget-complete-field))) | |
428 | 1783 |
1784 (defun widget-default-create (widget) | |
1785 "Create WIDGET at point in the current buffer." | |
1786 (widget-specify-insert | |
1787 (let ((from (point)) | |
1788 button-begin button-end button-glyph | |
1789 sample-begin sample-end | |
1790 doc-begin doc-end | |
1791 value-pos) | |
1792 (insert (widget-get widget :format)) | |
1793 (goto-char from) | |
1309 | 1794 ;; Parse escapes in format. |
1795 ;; Coding this in C would speed up things *a lot*. | |
1362 | 1796 ;; sjt sez: |
1797 ;; There are other things to try: | |
1798 ;; 1. Use skip-chars-forward. | |
1799 ;; 2. Use a LIMIT (or narrow buffer?) in the search/skip expression. | |
1800 ;; 3. Search/skip backward to allow LIMIT to be constant. | |
428 | 1801 (while (re-search-forward "%\\(.\\)" nil t) |
1802 (let ((escape (aref (match-string 1) 0))) | |
1803 (replace-match "" t t) | |
1735 | 1804 (funcall |
1805 (aref | |
1806 [(lambda () ;?% | |
1807 (insert ?%)) | |
1808 (lambda () ;?\[ | |
1809 (setq button-begin (point-marker)) | |
1810 (set-marker-insertion-type button-begin nil)) | |
1811 (lambda () ;?\] | |
1812 (setq button-end (point-marker)) | |
1813 (set-marker-insertion-type button-end nil)) | |
4178 | 1814 (lambda () ;?\{ |
1735 | 1815 (setq sample-begin (point))) |
1816 (lambda () ;?\} | |
1817 (setq sample-end (point))) | |
4178 | 1818 (lambda () ;?n |
1735 | 1819 (when (widget-get widget :indent) |
1820 (insert ?\n) | |
1821 (insert-char ?\ (widget-get widget :indent)))) | |
1822 (lambda () ;?t | |
1823 (let* ((tag (widget-get widget :tag)) | |
1824 (glyph (widget-get widget :tag-glyph))) | |
1825 (cond (glyph | |
1826 (setq button-glyph | |
1827 (widget-glyph-insert | |
1828 widget (or tag "Image") glyph))) | |
1829 (tag | |
1830 (insert tag)) | |
1831 (t | |
1832 (princ (widget-get widget :value) | |
1833 (current-buffer)))))) | |
1834 (lambda () ;?d | |
1835 (let ((doc (widget-get widget :doc))) | |
1836 (when doc | |
1837 (setq doc-begin (point)) | |
1838 (insert doc) | |
1839 (while (eq (preceding-char) ?\n) | |
1840 (delete-backward-char 1)) | |
1309 | 1841 (insert ?\n) |
1735 | 1842 (setq doc-end (point))))) |
1843 (lambda () ;?v | |
1844 (if (and button-begin (not button-end)) | |
1845 (widget-apply widget :value-create) | |
1846 (setq value-pos (point-marker)))) | |
1847 (lambda () ;otherwise | |
1848 (widget-apply widget :format-handler escape))] | |
1849 (string-match (format "[%c\010]" escape) ;^H can't be found in buff | |
1850 "%[]{}ntdv\010"))))) ;so it can be 'otherwise' cond | |
428 | 1851 ;; Specify button, sample, and doc, and insert value. |
1852 (when (and button-begin button-end) | |
1853 (unless button-glyph | |
1854 (goto-char button-begin) | |
1855 (insert (widget-get-indirect widget :button-prefix)) | |
1856 (goto-char button-end) | |
1857 (set-marker-insertion-type button-end t) | |
1858 (insert (widget-get-indirect widget :button-suffix))) | |
1859 (widget-specify-button widget button-begin button-end) | |
1860 ;; Is this necessary? | |
1861 (set-marker button-begin nil) | |
1862 (set-marker button-end nil)) | |
1863 (and sample-begin sample-end | |
1864 (widget-specify-sample widget sample-begin sample-end)) | |
1865 (and doc-begin doc-end | |
1866 (widget-specify-doc widget doc-begin doc-end)) | |
1867 (when value-pos | |
1868 (goto-char value-pos) | |
1869 (widget-apply widget :value-create))) | |
1870 (let ((from (point-min-marker)) | |
1871 (to (point-max-marker))) | |
1872 (set-marker-insertion-type from t) | |
1873 (set-marker-insertion-type to nil) | |
1874 (widget-put widget :from from) | |
1875 (widget-put widget :to to))) | |
1876 (widget-clear-undo)) | |
1877 | |
1878 (defun widget-default-format-handler (widget escape) | |
1879 ;; We recognize the %h escape by default. | |
1880 (let* ((buttons (widget-get widget :buttons))) | |
1881 (cond ((eq escape ?h) | |
1882 (let* ((doc-property (widget-get widget :documentation-property)) | |
1883 (doc-try (cond ((widget-get widget :doc)) | |
1309 | 1884 ((functionp doc-property) |
1885 (funcall doc-property | |
1886 (widget-get widget :value))) | |
428 | 1887 ((symbolp doc-property) |
1888 (documentation-property | |
1889 (widget-get widget :value) | |
1309 | 1890 doc-property)))) |
428 | 1891 (doc-text (and (stringp doc-try) |
1892 (> (length doc-try) 1) | |
1893 doc-try)) | |
1894 (doc-indent (widget-get widget :documentation-indent))) | |
1895 (when doc-text | |
1896 (and (eq (preceding-char) ?\n) | |
1897 (widget-get widget :indent) | |
1898 (insert-char ?\ (widget-get widget :indent))) | |
1899 ;; The `*' in the beginning is redundant. | |
1900 (when (eq (aref doc-text 0) ?*) | |
1901 (setq doc-text (substring doc-text 1))) | |
1902 ;; Get rid of trailing newlines. | |
1903 (when (string-match "\n+\\'" doc-text) | |
1904 (setq doc-text (substring doc-text 0 (match-beginning 0)))) | |
1905 (push (widget-create-child-and-convert | |
1906 widget 'documentation-string | |
1907 :indent (cond ((numberp doc-indent) | |
1908 doc-indent) | |
1909 ((null doc-indent) | |
1910 nil) | |
1911 (t 0)) | |
1912 doc-text) | |
1913 buttons)))) | |
1914 (t | |
1915 (signal 'error (list "Unknown escape" escape)))) | |
1916 (widget-put widget :buttons buttons))) | |
1917 | |
1918 (defun widget-default-button-face-get (widget) | |
1919 ;; Use :button-face or widget-button-face | |
1920 (or (widget-get widget :button-face) | |
1921 (let ((parent (widget-get widget :parent))) | |
1922 (if parent | |
1923 (widget-apply parent :button-face-get) | |
1924 widget-button-face)))) | |
1925 | |
1362 | 1926 ;; Shouldn't this be like `widget-default-button-face-get', and recurse, and |
1927 ;; have a fallback? | |
428 | 1928 (defun widget-default-sample-face-get (widget) |
1929 ;; Use :sample-face. | |
1930 (widget-get widget :sample-face)) | |
1931 | |
1932 (defun widget-default-delete (widget) | |
1173 | 1933 "Remove widget from the buffer." |
428 | 1934 (let ((from (widget-get widget :from)) |
1935 (to (widget-get widget :to)) | |
1936 (inactive-extent (widget-get widget :inactive)) | |
1937 (button-extent (widget-get widget :button-extent)) | |
1938 (sample-extent (widget-get widget :sample-extent)) | |
1939 (doc-extent (widget-get widget :doc-extent)) | |
1940 before-change-functions | |
1941 after-change-functions | |
1942 (inhibit-read-only t)) | |
1943 (widget-apply widget :value-delete) | |
1362 | 1944 ;; #### In current code, these are never reinserted, but recreated. |
1945 ;; So they should either be destroyed, or we should think about how to | |
1946 ;; reuse them. | |
428 | 1947 (when inactive-extent |
1948 (detach-extent inactive-extent)) | |
1949 (when button-extent | |
1950 (detach-extent button-extent)) | |
1951 (when sample-extent | |
1952 (detach-extent sample-extent)) | |
1953 (when doc-extent | |
1954 (detach-extent doc-extent)) | |
1955 (when (< from to) | |
1956 ;; Kludge: this doesn't need to be true for empty formats. | |
1957 (delete-region from to)) | |
1958 (set-marker from nil) | |
1959 (set-marker to nil)) | |
1960 (widget-clear-undo)) | |
1961 | |
1962 (defun widget-default-value-set (widget value) | |
1173 | 1963 "Recreate widget with new value." |
428 | 1964 (let* ((old-pos (point)) |
1965 (from (copy-marker (widget-get widget :from))) | |
1966 (to (copy-marker (widget-get widget :to))) | |
1967 (offset (if (and (<= from old-pos) (<= old-pos to)) | |
1968 (if (>= old-pos (1- to)) | |
1969 (- old-pos to 1) | |
1970 (- old-pos from))))) | |
1971 ;;??? Bug: this ought to insert the new value before deleting the old one, | |
1972 ;; so that markers on either side of the value automatically | |
1973 ;; stay on the same side. -- rms. | |
1974 (save-excursion | |
1975 (goto-char (widget-get widget :from)) | |
1976 (widget-apply widget :delete) | |
1977 (widget-put widget :value value) | |
1978 (widget-apply widget :create)) | |
1309 | 1979 (if offset |
1980 (if (< offset 0) | |
1981 (goto-char (+ (widget-get widget :to) offset 1)) | |
1982 (goto-char (min (+ from offset) (1- (widget-get widget :to)))))))) | |
428 | 1983 |
1984 (defun widget-default-value-inline (widget) | |
1173 | 1985 "Wrap value in a list unless it is inline." |
428 | 1986 (if (widget-get widget :inline) |
1987 (widget-value widget) | |
1988 (list (widget-value widget)))) | |
1989 | |
1990 (defun widget-default-default-get (widget) | |
1173 | 1991 "Get `:value'." |
428 | 1992 (widget-get widget :value)) |
1993 | |
1994 (defun widget-default-menu-tag-get (widget) | |
1173 | 1995 "Use tag or value for menus." |
428 | 1996 (or (widget-get widget :menu-tag) |
1997 (widget-get widget :tag) | |
1998 (widget-princ-to-string (widget-get widget :value)))) | |
1999 | |
2000 (defun widget-default-active (widget) | |
1362 | 2001 "Return non-nil iff WIDGET is user-modifiable." |
428 | 2002 (and (not (widget-get widget :inactive)) |
2003 (let ((parent (widget-get widget :parent))) | |
2004 (or (null parent) | |
2005 (widget-apply parent :active))))) | |
2006 | |
2007 (defun widget-default-deactivate (widget) | |
2008 "Make WIDGET inactive for user modifications." | |
2009 (widget-specify-inactive widget | |
2010 (widget-get widget :from) | |
2011 (widget-get widget :to))) | |
2012 | |
2013 (defun widget-default-action (widget &optional event) | |
1173 | 2014 "Notify the parent when a widget changes." |
428 | 2015 (let ((parent (widget-get widget :parent))) |
2016 (when parent | |
2017 (widget-apply parent :notify widget event)))) | |
2018 | |
2019 (defun widget-default-notify (widget child &optional event) | |
1173 | 2020 "Pass notification to parent." |
428 | 2021 (widget-default-action widget event)) |
2022 | |
2023 (defun widget-default-prompt-value (widget prompt value unbound) | |
1362 | 2024 "Read an arbitrary value." |
2025 ;; #### XEmacs: What does this mean? | |
2026 ;; Stolen from `set-variable'. | |
1173 | 2027 ;; (let ((initial (if unbound |
2028 ;; nil | |
2029 ;; It would be nice if we could do a `(cons val 1)' here. | |
2030 ;; (prin1-to-string (custom-quote value)))))) | |
1362 | 2031 ;; XEmacs: make this use default VALUE. Need to check callers. |
4178 | 2032 (eval-minibuffer (concat prompt ": "))) |
428 | 2033 |
2034 ;;; The `item' Widget. | |
2035 | |
2036 (define-widget 'item 'default | |
2037 "Constant items for inclusion in other widgets." | |
2038 :convert-widget 'widget-value-convert-widget | |
2039 :value-create 'widget-item-value-create | |
2040 :value-delete 'ignore | |
2041 :value-get 'widget-value-value-get | |
2042 :match 'widget-item-match | |
2043 :match-inline 'widget-item-match-inline | |
2044 :action 'widget-item-action | |
2045 :format "%t\n") | |
2046 | |
2047 (defun widget-item-value-create (widget) | |
1173 | 2048 "Insert the printed representation of the value." |
1309 | 2049 (princ (widget-get widget :value) (current-buffer))) |
428 | 2050 |
2051 (defun widget-item-match (widget value) | |
2052 ;; Match if the value is the same. | |
2053 (equal (widget-get widget :value) value)) | |
2054 | |
2055 (defun widget-item-match-inline (widget values) | |
2056 ;; Match if the value is the same. | |
2057 (let ((value (widget-get widget :value))) | |
2058 (and (listp value) | |
2059 (<= (length value) (length values)) | |
2060 (let ((head (widget-sublist values 0 (length value)))) | |
2061 (and (equal head value) | |
2062 (cons head (widget-sublist values (length value)))))))) | |
2063 | |
2064 (defun widget-item-action (widget &optional event) | |
2065 ;; Just notify itself. | |
2066 (widget-apply widget :notify widget event)) | |
2067 | |
2068 ;;; The `push-button' Widget. | |
2069 | |
1362 | 2070 ;; XEmacs: this seems to refer to button images. How about native widgets? |
428 | 2071 (defcustom widget-push-button-gui widget-glyph-enable |
2072 "If non nil, use GUI push buttons when available." | |
2073 :group 'widgets | |
2074 :type 'boolean) | |
2075 | |
2076 (defcustom widget-push-button-prefix "[" | |
2077 "String used as prefix for buttons." | |
2078 :type 'string | |
2079 :group 'widget-button) | |
2080 | |
2081 (defcustom widget-push-button-suffix "]" | |
2082 "String used as suffix for buttons." | |
2083 :type 'string | |
2084 :group 'widget-button) | |
2085 | |
2086 (define-widget 'push-button 'item | |
1362 | 2087 "A button which invokes an action. |
2088 | |
2089 Creators should usually specify `:action' and `:help-echo' members." | |
428 | 2090 :button-prefix "" |
2091 :button-suffix "" | |
2092 :value-create 'widget-push-button-value-create | |
2093 :format "%[%v%]") | |
2094 | |
2095 (defun widget-push-button-value-create (widget) | |
1173 | 2096 "Insert text representing the `on' and `off' states." |
428 | 2097 (let* ((tag (or (widget-get widget :tag) |
2098 (widget-get widget :value))) | |
2099 (tag-glyph (widget-get widget :tag-glyph)) | |
2100 (text (concat widget-push-button-prefix | |
2101 tag widget-push-button-suffix)) | |
454 | 2102 gui inst) |
428 | 2103 (cond (tag-glyph |
2104 (widget-glyph-insert widget text tag-glyph)) | |
2105 ;; We must check for console-on-window-system-p here, | |
2106 ;; because GUI will not work otherwise (it needs RGB | |
2107 ;; components for colors, and they are not known on TTYs). | |
2108 ((and widget-push-button-gui | |
2109 (console-on-window-system-p)) | |
436 | 2110 (let* ((gui-button-shadow-thickness 1)) |
454 | 2111 (setq inst (make-gui-button tag 'widget-gui-action widget)) |
2112 (setq gui (make-glyph inst))) | |
2113 (widget-glyph-insert-glyph widget gui nil nil inst)) | |
428 | 2114 (t |
2115 (insert text))))) | |
2116 | |
2117 (defun widget-gui-action (widget) | |
2118 "Apply :action for WIDGET." | |
2119 (widget-apply-action widget (this-command-keys))) | |
2120 | |
2121 ;;; The `link' Widget. | |
2122 | |
2123 (defcustom widget-link-prefix "[" | |
2124 "String used as prefix for links." | |
2125 :type 'string | |
2126 :group 'widget-button) | |
2127 | |
2128 (defcustom widget-link-suffix "]" | |
2129 "String used as suffix for links." | |
2130 :type 'string | |
2131 :group 'widget-button) | |
2132 | |
2133 (define-widget 'link 'item | |
1362 | 2134 "An embedded link. |
2135 | |
2136 This is an abstract widget. Subclasses should usually specify `:action' | |
2137 and `:help-echo' members." | |
428 | 2138 :button-prefix 'widget-link-prefix |
2139 :button-suffix 'widget-link-suffix | |
1173 | 2140 :help-echo "Follow the link." |
428 | 2141 :format "%[%t%]") |
2142 | |
2143 ;;; The `info-link' Widget. | |
2144 | |
2145 (define-widget 'info-link 'link | |
2146 "A link to an info file." | |
2147 :help-echo 'widget-info-link-help-echo | |
2148 :action 'widget-info-link-action) | |
2149 | |
2150 (defun widget-info-link-help-echo (widget) | |
2151 (concat "Read the manual entry `" (widget-value widget) "'")) | |
2152 | |
2153 (defun widget-info-link-action (widget &optional event) | |
2154 "Open the info node specified by WIDGET." | |
2155 (Info-goto-node (widget-value widget))) | |
2156 | |
2157 ;;; The `url-link' Widget. | |
2158 | |
2159 (define-widget 'url-link 'link | |
2160 "A link to an www page." | |
2161 :help-echo 'widget-url-link-help-echo | |
2162 :action 'widget-url-link-action) | |
2163 | |
2164 (defun widget-url-link-help-echo (widget) | |
2165 (concat "Visit <URL:" (widget-value widget) ">")) | |
2166 | |
2167 (defun widget-url-link-action (widget &optional event) | |
2168 "Open the url specified by WIDGET." | |
2367 | 2169 (if-fboundp 'browse-url |
442 | 2170 (browse-url (widget-value widget)) |
1376 | 2171 (error 'missing-package "Cannot browse URLs in this XEmacs" 'browse-url))) |
428 | 2172 |
2173 ;;; The `function-link' Widget. | |
2174 | |
2175 (define-widget 'function-link 'link | |
2176 "A link to an Emacs function." | |
2177 :action 'widget-function-link-action) | |
2178 | |
2179 (defun widget-function-link-action (widget &optional event) | |
2180 "Show the function specified by WIDGET." | |
2181 (describe-function (widget-value widget))) | |
2182 | |
2183 ;;; The `variable-link' Widget. | |
2184 | |
2185 (define-widget 'variable-link 'link | |
2186 "A link to an Emacs variable." | |
2187 :action 'widget-variable-link-action) | |
2188 | |
2189 (defun widget-variable-link-action (widget &optional event) | |
2190 "Show the variable specified by WIDGET." | |
2191 (describe-variable (widget-value widget))) | |
2192 | |
2193 ;;; The `file-link' Widget. | |
2194 | |
2195 (define-widget 'file-link 'link | |
2196 "A link to a file." | |
2197 :action 'widget-file-link-action) | |
2198 | |
2199 (defun widget-file-link-action (widget &optional event) | |
2200 "Find the file specified by WIDGET." | |
2201 (find-file (widget-value widget))) | |
2202 | |
2203 ;;; The `emacs-library-link' Widget. | |
2204 | |
2205 (define-widget 'emacs-library-link 'link | |
2206 "A link to an Emacs Lisp library file." | |
2207 :help-echo 'widget-emacs-library-link-help-echo | |
2208 :action 'widget-emacs-library-link-action) | |
2209 | |
2210 (defun widget-emacs-library-link-help-echo (widget) | |
2211 (concat "Visit " (widget-value widget))) | |
2212 | |
2213 (defun widget-emacs-library-link-action (widget &optional event) | |
2214 "Find the Emacs Library file specified by WIDGET." | |
2215 (find-file (locate-library (widget-value widget)))) | |
2216 | |
2217 ;;; The `emacs-commentary-link' Widget. | |
2218 | |
2219 (define-widget 'emacs-commentary-link 'link | |
2220 "A link to Commentary in an Emacs Lisp library file." | |
2221 :action 'widget-emacs-commentary-link-action) | |
2222 | |
2223 (defun widget-emacs-commentary-link-action (widget &optional event) | |
2224 "Find the Commentary section of the Emacs file specified by WIDGET." | |
2225 (finder-commentary (widget-value widget))) | |
2226 | |
2227 ;;; The `editable-field' Widget. | |
2228 | |
2229 (define-widget 'editable-field 'default | |
2230 "An editable text field." | |
2231 :convert-widget 'widget-value-convert-widget | |
2232 :keymap widget-field-keymap | |
2233 :format "%v" | |
1309 | 2234 :help-echo "M-TAB: complete field; RET: enter value" |
428 | 2235 :value "" |
2236 :prompt-internal 'widget-field-prompt-internal | |
2237 :prompt-history 'widget-field-history | |
2238 :prompt-value 'widget-field-prompt-value | |
2239 :action 'widget-field-action | |
2240 :validate 'widget-field-validate | |
2241 :valid-regexp "" | |
1309 | 2242 :error "Field's value doesn't match allowed forms" |
428 | 2243 :value-create 'widget-field-value-create |
2244 :value-delete 'widget-field-value-delete | |
2245 :value-get 'widget-field-value-get | |
2246 :match 'widget-field-match) | |
2247 | |
2248 (defvar widget-field-history nil | |
2249 "History of field minibuffer edits.") | |
2250 | |
2251 (defun widget-field-prompt-internal (widget prompt initial history) | |
1173 | 2252 "Read string for WIDGET prompting with PROMPT. |
2253 INITIAL is the initial input and HISTORY is a symbol containing | |
2254 the earlier input." | |
4178 | 2255 (read-string (concat prompt ": ") initial history)) |
428 | 2256 |
2257 (defun widget-field-prompt-value (widget prompt value unbound) | |
1173 | 2258 "Prompt for a string." |
1309 | 2259 (widget-apply widget |
2260 :value-to-external | |
2261 (widget-apply widget | |
2262 :prompt-internal prompt | |
2263 (unless unbound | |
2264 (cons (widget-apply widget | |
2265 :value-to-internal value) | |
2266 0)) | |
2267 (widget-get widget :prompt-history)))) | |
428 | 2268 |
1362 | 2269 ;; #### Should be named `widget-action-hooks'. |
2270 (defvar widget-edit-functions nil | |
2271 "Functions run on certain actions. | |
2272 | |
2273 Not a regular hook; each function should take a widget as an argument. | |
2274 The standard widget functions `widget-field-action', `widget-choice-action', | |
2275 and `widget-toggle-action' use `run-hook-with-args' to run these functions.") | |
428 | 2276 |
2277 (defun widget-field-action (widget &optional event) | |
2278 ;; Edit the value in the minibuffer. | |
2279 (let* ((invalid (widget-apply widget :validate)) | |
2280 (prompt (concat (widget-apply widget :menu-tag-get) ": ")) | |
2281 (value (unless invalid | |
2282 (widget-value widget))) | |
2283 (answer (widget-apply widget :prompt-value prompt value invalid))) | |
2284 (unless (equal value answer) | |
2285 ;; This is a hack. We can't properly validate the widget | |
2286 ;; because validation requires the new value to be in the field. | |
2287 ;; However, widget-field-value-create will not function unless | |
2288 ;; the new value matches. So, we check whether the thing | |
2289 ;; matches, and if it does, use either the real or a dummy error | |
2290 ;; message. | |
2291 (unless (widget-apply widget :match answer) | |
2292 (let ((error-message (or (widget-get widget :type-error) | |
2293 "Invalid field contents"))) | |
2294 (widget-put widget :error error-message) | |
2295 (error error-message))) | |
2296 (widget-value-set widget answer) | |
2297 (widget-apply widget :notify widget event) | |
2298 (widget-setup)) | |
2299 (run-hook-with-args 'widget-edit-functions widget))) | |
2300 | |
2301 ;(defun widget-field-action (widget &optional event) | |
2302 ; ;; Move to next field. | |
2303 ; (widget-forward 1) | |
2304 ; (run-hook-with-args 'widget-edit-functions widget)) | |
2305 | |
2306 (defun widget-field-validate (widget) | |
1173 | 2307 "Valid if the content matches `:valid-regexp'." |
1309 | 2308 (save-excursion ; XEmacs |
2309 (unless (string-match (widget-get widget :valid-regexp) | |
2310 (widget-apply widget :value-get)) | |
2311 widget))) | |
428 | 2312 |
2313 (defun widget-field-value-create (widget) | |
1173 | 2314 "Create an editable text field." |
428 | 2315 (let ((size (widget-get widget :size)) |
2316 (value (widget-get widget :value)) | |
2317 (from (point)) | |
2318 ;; This is changed to a real extent in `widget-setup'. We | |
2319 ;; need the end points to behave differently until | |
2320 ;; `widget-setup' is called. Should probably be replaced with | |
2321 ;; a genuine extent, but some things break, then. | |
2322 (extent (cons (make-marker) (make-marker)))) | |
2323 (widget-put widget :field-extent extent) | |
2324 (insert value) | |
2325 (and size | |
2326 (< (length value) size) | |
2327 (insert-char ?\ (- size (length value)))) | |
2328 (unless (memq widget widget-field-list) | |
2329 (push widget widget-field-new)) | |
2330 (move-marker (cdr extent) (point)) | |
2331 (set-marker-insertion-type (cdr extent) nil) | |
2332 (when (null size) | |
2333 (insert ?\n)) | |
2334 (move-marker (car extent) from) | |
2335 (set-marker-insertion-type (car extent) t))) | |
2336 | |
2337 (defun widget-field-value-delete (widget) | |
1173 | 2338 "Remove the widget from the list of active editing fields." |
428 | 2339 (setq widget-field-list (delq widget widget-field-list)) |
2340 ;; These are nil if the :format string doesn't contain `%v'. | |
2341 (let ((extent (widget-get widget :field-extent))) | |
2342 (when extent | |
2343 (detach-extent extent)))) | |
2344 | |
2345 (defun widget-field-value-get (widget) | |
1173 | 2346 "Return current text in editing field." |
428 | 2347 (let ((from (widget-field-start widget)) |
2348 (to (widget-field-end widget)) | |
2349 (buffer (widget-field-buffer widget)) | |
2350 (size (widget-get widget :size)) | |
2351 (secret (widget-get widget :secret)) | |
2352 (old (current-buffer))) | |
2353 (cond | |
2354 ((and from to) | |
2355 (set-buffer buffer) | |
2356 (while (and size | |
2357 (not (zerop size)) | |
2358 (> to from) | |
2359 (eq (char-after (1- to)) ?\ )) | |
2360 (setq to (1- to))) | |
2361 (let ((result (buffer-substring-no-properties from to))) | |
2362 (when secret | |
2363 (let ((index 0)) | |
2364 (while (< (+ from index) to) | |
2365 (aset result index | |
2366 (get-char-property (+ from index) 'secret)) | |
2367 (incf index)))) | |
2368 (set-buffer old) | |
2369 result)) | |
2370 (t | |
2371 (widget-get widget :value))))) | |
2372 | |
2373 (defun widget-field-match (widget value) | |
2374 ;; Match any string. | |
2375 (stringp value)) | |
2376 | |
2377 ;;; The `text' Widget. | |
2378 | |
2379 (define-widget 'text 'editable-field | |
1309 | 2380 "A multiline text area." |
2381 :keymap widget-text-keymap) | |
428 | 2382 |
2383 ;;; The `menu-choice' Widget. | |
2384 | |
2385 (define-widget 'menu-choice 'default | |
2386 "A menu of options." | |
2387 :convert-widget 'widget-types-convert-widget | |
2388 :format "%[%t%]: %v" | |
2389 :case-fold t | |
2390 :tag "choice" | |
2391 :void '(item :format "invalid (%t)\n") | |
2392 :value-create 'widget-choice-value-create | |
2393 :value-delete 'widget-children-value-delete | |
2394 :value-get 'widget-choice-value-get | |
2395 :value-inline 'widget-choice-value-inline | |
2396 :default-get 'widget-choice-default-get | |
2397 :mouse-down-action 'widget-choice-mouse-down-action | |
2398 :action 'widget-choice-action | |
2399 :error "Make a choice" | |
2400 :validate 'widget-choice-validate | |
2401 :match 'widget-choice-match | |
2402 :match-inline 'widget-choice-match-inline) | |
2403 | |
2404 (defun widget-choice-value-create (widget) | |
1173 | 2405 "Insert the first choice that matches the value." |
428 | 2406 (let ((value (widget-get widget :value)) |
2407 (args (widget-get widget :args)) | |
2408 (explicit (widget-get widget :explicit-choice)) | |
2409 current) | |
2410 (if explicit | |
2411 (progn | |
1173 | 2412 ;; If the user specified the choice for this value, |
2413 ;; respect that choice as long as the value is the same. | |
428 | 2414 (widget-put widget :children (list (widget-create-child-value |
2415 widget explicit value))) | |
2416 (widget-put widget :choice explicit)) | |
2417 (while args | |
2418 (setq current (car args) | |
2419 args (cdr args)) | |
2420 (when (widget-apply current :match value) | |
2421 (widget-put widget :children (list (widget-create-child-value | |
2422 widget current value))) | |
2423 (widget-put widget :choice current) | |
2424 (setq args nil | |
2425 current nil))) | |
2426 (when current | |
2427 (let ((void (widget-get widget :void))) | |
2428 (widget-put widget :children (list (widget-create-child-and-convert | |
2429 widget void :value value))) | |
2430 (widget-put widget :choice void)))))) | |
2431 | |
2432 (defun widget-choice-value-get (widget) | |
2433 ;; Get value of the child widget. | |
2434 (widget-value (car (widget-get widget :children)))) | |
2435 | |
2436 (defun widget-choice-value-inline (widget) | |
2437 ;; Get value of the child widget. | |
2438 (widget-apply (car (widget-get widget :children)) :value-inline)) | |
2439 | |
2440 (defun widget-choice-default-get (widget) | |
2441 ;; Get default for the first choice. | |
2442 (widget-default-get (car (widget-get widget :args)))) | |
2443 | |
2444 (defcustom widget-choice-toggle nil | |
2445 "If non-nil, a binary choice will just toggle between the values. | |
2446 Otherwise, the user will explicitly have to choose between the values | |
2447 when he invoked the menu." | |
2448 :type 'boolean | |
2449 :group 'widgets) | |
2450 | |
2451 (defun widget-choice-mouse-down-action (widget &optional event) | |
2452 ;; Return non-nil if we need a menu. | |
2453 (let ((args (widget-get widget :args)) | |
2454 (old (widget-get widget :choice))) | |
2455 (cond ((not (console-on-window-system-p)) | |
2456 ;; No place to pop up a menu. | |
2457 nil) | |
2458 ((< (length args) 2) | |
2459 ;; Empty or singleton list, just return the value. | |
2460 nil) | |
2461 ((> (length args) widget-menu-max-size) | |
2462 ;; Too long, prompt. | |
2463 nil) | |
2464 ((> (length args) 2) | |
2465 ;; Reasonable sized list, use menu. | |
2466 t) | |
2467 ((and widget-choice-toggle (memq old args)) | |
2468 ;; We toggle. | |
2469 nil) | |
2470 (t | |
2471 ;; Ask which of the two. | |
2472 t)))) | |
2473 | |
2474 (defun widget-choice-action (widget &optional event) | |
2475 ;; Make a choice. | |
2476 (let ((args (widget-get widget :args)) | |
2477 (old (widget-get widget :choice)) | |
2478 (tag (widget-apply widget :menu-tag-get)) | |
2479 (completion-ignore-case (widget-get widget :case-fold)) | |
2480 current choices) | |
2481 ;; Remember old value. | |
2482 (if (and old (not (widget-apply widget :validate))) | |
2483 (let* ((external (widget-value widget)) | |
2484 (internal (widget-apply old :value-to-internal external))) | |
2485 (widget-put old :value internal))) | |
2486 ;; Find new choice. | |
2487 (setq current | |
5366
f00192e1cd49
Examining the result of #'length: `eql', not `=', it's better style & cheaper
Aidan Kehoe <kehoea@parhasard.net>
parents:
4178
diff
changeset
|
2488 (cond ((eql (length args) 0) |
428 | 2489 nil) |
5366
f00192e1cd49
Examining the result of #'length: `eql', not `=', it's better style & cheaper
Aidan Kehoe <kehoea@parhasard.net>
parents:
4178
diff
changeset
|
2490 ((eql (length args) 1) |
428 | 2491 (nth 0 args)) |
2492 ((and widget-choice-toggle | |
5366
f00192e1cd49
Examining the result of #'length: `eql', not `=', it's better style & cheaper
Aidan Kehoe <kehoea@parhasard.net>
parents:
4178
diff
changeset
|
2493 (eql (length args) 2) |
428 | 2494 (memq old args)) |
2495 (if (eq old (nth 0 args)) | |
2496 (nth 1 args) | |
2497 (nth 0 args))) | |
2498 (t | |
2499 (while args | |
2500 (setq current (car args) | |
2501 args (cdr args)) | |
2502 (setq choices | |
2503 (cons (cons (widget-apply current :menu-tag-get) | |
2504 current) | |
2505 choices))) | |
2506 (let ((choice | |
2507 (widget-choose tag (reverse choices) event))) | |
2508 (widget-put widget :explicit-choice choice) | |
2509 choice)))) | |
2510 (when current | |
2511 (let ((value (widget-default-get current))) | |
2512 (widget-value-set widget | |
2513 (widget-apply current :value-to-external value))) | |
2514 (widget-setup) | |
2515 (widget-apply widget :notify widget event))) | |
2516 (run-hook-with-args 'widget-edit-functions widget)) | |
2517 | |
2518 (defun widget-choice-validate (widget) | |
2519 ;; Valid if we have made a valid choice. | |
1309 | 2520 (if (eq (widget-get widget :void) (widget-get widget :choice)) |
2521 widget | |
2522 (widget-apply (car (widget-get widget :children)) :validate))) | |
428 | 2523 |
2524 (defun widget-choice-match (widget value) | |
2525 ;; Matches if one of the choices matches. | |
2526 (let ((args (widget-get widget :args)) | |
2527 current found) | |
2528 (while (and args (not found)) | |
2529 (setq current (car args) | |
2530 args (cdr args) | |
2531 found (widget-apply current :match value))) | |
2532 found)) | |
2533 | |
2534 (defun widget-choice-match-inline (widget values) | |
2535 ;; Matches if one of the choices matches. | |
2536 (let ((args (widget-get widget :args)) | |
2537 current found) | |
2538 (while (and args (null found)) | |
2539 (setq current (car args) | |
2540 args (cdr args) | |
2541 found (widget-match-inline current values))) | |
2542 found)) | |
2543 | |
2544 ;;; The `toggle' Widget. | |
2545 | |
2546 (define-widget 'toggle 'item | |
2547 "Toggle between two states." | |
2548 :format "%[%v%]\n" | |
2549 :value-create 'widget-toggle-value-create | |
2550 :action 'widget-toggle-action | |
2551 :match (lambda (widget value) t) | |
2552 :on "on" | |
2553 :off "off") | |
2554 | |
2555 (defun widget-toggle-value-create (widget) | |
1173 | 2556 "Insert text representing the `on' and `off' states." |
428 | 2557 (if (widget-value widget) |
2558 (widget-glyph-insert widget | |
2559 (widget-get widget :on) | |
2560 (widget-get widget :on-glyph)) | |
2561 (widget-glyph-insert widget | |
2562 (widget-get widget :off) | |
2563 (widget-get widget :off-glyph)))) | |
2564 | |
2565 (defun widget-toggle-action (widget &optional event) | |
2566 ;; Toggle value. | |
2567 (widget-value-set widget (not (widget-value widget))) | |
2568 (widget-apply widget :notify widget event) | |
2569 (run-hook-with-args 'widget-edit-functions widget)) | |
2570 | |
2571 ;;; The `checkbox' Widget. | |
2572 | |
2573 (define-widget 'checkbox 'toggle | |
2574 "A checkbox toggle." | |
2575 :button-suffix "" | |
2576 :button-prefix "" | |
2577 :format "%[%v%]" | |
2578 :on "[X]" | |
2579 :on-glyph "check1" | |
2580 :off "[ ]" | |
2581 :off-glyph "check0" | |
2582 :action 'widget-checkbox-action) | |
2583 | |
2584 (defun widget-checkbox-action (widget &optional event) | |
2585 "Toggle checkbox, notify parent, and set active state of sibling." | |
2586 (widget-toggle-action widget event) | |
2587 (let ((sibling (widget-get-sibling widget))) | |
2588 (when sibling | |
2589 (if (widget-value widget) | |
2590 (widget-apply sibling :activate) | |
2591 (widget-apply sibling :deactivate))))) | |
2592 | |
2593 ;;; The `checklist' Widget. | |
2594 | |
2595 (define-widget 'checklist 'default | |
1362 | 2596 "A set widget, selecting zero or more of many. |
2597 | |
2598 The parent of several `checkbox' widgets, one for each option." | |
428 | 2599 :convert-widget 'widget-types-convert-widget |
2600 :format "%v" | |
2601 :offset 4 | |
2602 :entry-format "%b %v" | |
2603 :menu-tag "checklist" | |
2604 :greedy nil | |
2605 :value-create 'widget-checklist-value-create | |
2606 :value-delete 'widget-children-value-delete | |
2607 :value-get 'widget-checklist-value-get | |
4178 | 2608 :prompt-value 'widget-checklist-prompt-value |
428 | 2609 :validate 'widget-checklist-validate |
2610 :match 'widget-checklist-match | |
2611 :match-inline 'widget-checklist-match-inline) | |
2612 | |
2613 (defun widget-checklist-value-create (widget) | |
2614 ;; Insert all values | |
2615 (let ((alist (widget-checklist-match-find widget (widget-get widget :value))) | |
2616 (args (widget-get widget :args))) | |
2617 (while args | |
2618 (widget-checklist-add-item widget (car args) (assq (car args) alist)) | |
2619 (setq args (cdr args))) | |
2620 (widget-put widget :children (nreverse (widget-get widget :children))))) | |
2621 | |
2622 (defun widget-checklist-add-item (widget type chosen) | |
1173 | 2623 "Create checklist item in WIDGET of type TYPE. |
2624 If the item is checked, CHOSEN is a cons whose cdr is the value." | |
428 | 2625 (and (eq (preceding-char) ?\n) |
2626 (widget-get widget :indent) | |
2627 (insert-char ?\ (widget-get widget :indent))) | |
2628 (widget-specify-insert | |
2629 (let* ((children (widget-get widget :children)) | |
2630 (buttons (widget-get widget :buttons)) | |
2631 (button-args (or (widget-get type :sibling-args) | |
2632 (widget-get widget :button-args))) | |
2633 (from (point)) | |
2634 child button) | |
2635 (insert (widget-get widget :entry-format)) | |
2636 (goto-char from) | |
2637 ;; Parse % escapes in format. | |
2638 (while (re-search-forward "%\\([bv%]\\)" nil t) | |
2639 (let ((escape (aref (match-string 1) 0))) | |
2640 (replace-match "" t t) | |
2641 (cond ((eq escape ?%) | |
1309 | 2642 (insert ?%)) |
428 | 2643 ((eq escape ?b) |
2644 (setq button (apply 'widget-create-child-and-convert | |
2645 widget 'checkbox | |
2646 :value (not (null chosen)) | |
2647 button-args))) | |
2648 ((eq escape ?v) | |
2649 (setq child | |
2650 (cond ((not chosen) | |
2651 (let ((child (widget-create-child widget type))) | |
2652 (widget-apply child :deactivate) | |
2653 child)) | |
2654 ((widget-get type :inline) | |
2655 (widget-create-child-value | |
2656 widget type (cdr chosen))) | |
2657 (t | |
2658 (widget-create-child-value | |
2659 widget type (car (cdr chosen))))))) | |
2660 (t | |
2661 (signal 'error (list "Unknown escape" escape)))))) | |
2662 ;; Update properties. | |
2663 (and button child (widget-put child :button button)) | |
2664 (and button (widget-put widget :buttons (cons button buttons))) | |
2665 (and child (widget-put widget :children (cons child children)))))) | |
2666 | |
2667 (defun widget-checklist-match (widget values) | |
2668 ;; All values must match a type in the checklist. | |
2669 (and (listp values) | |
2670 (null (cdr (widget-checklist-match-inline widget values))))) | |
2671 | |
2672 (defun widget-checklist-match-inline (widget values) | |
2673 ;; Find the values which match a type in the checklist. | |
2674 (let ((greedy (widget-get widget :greedy)) | |
2675 (args (copy-sequence (widget-get widget :args))) | |
2676 found rest) | |
2677 (while values | |
2678 (let ((answer (widget-checklist-match-up args values))) | |
2679 (cond (answer | |
2680 (let ((vals (widget-match-inline answer values))) | |
2681 (setq found (append found (car vals)) | |
2682 values (cdr vals) | |
2683 args (delq answer args)))) | |
2684 (greedy | |
2685 (setq rest (append rest (list (car values))) | |
2686 values (cdr values))) | |
2687 (t | |
2688 (setq rest (append rest values) | |
2689 values nil))))) | |
2690 (cons found rest))) | |
2691 | |
2692 (defun widget-checklist-match-find (widget vals) | |
1173 | 2693 "Find the vals which match a type in the checklist. |
2694 Return an alist of (TYPE MATCH)." | |
428 | 2695 (let ((greedy (widget-get widget :greedy)) |
2696 (args (copy-sequence (widget-get widget :args))) | |
2697 found) | |
2698 (while vals | |
2699 (let ((answer (widget-checklist-match-up args vals))) | |
2700 (cond (answer | |
2701 (let ((match (widget-match-inline answer vals))) | |
2702 (setq found (cons (cons answer (car match)) found) | |
2703 vals (cdr match) | |
2704 args (delq answer args)))) | |
2705 (greedy | |
2706 (setq vals (cdr vals))) | |
2707 (t | |
2708 (setq vals nil))))) | |
2709 found)) | |
2710 | |
2711 (defun widget-checklist-match-up (args vals) | |
1173 | 2712 "Return the first type from ARGS that matches VALS." |
428 | 2713 (let (current found) |
2714 (while (and args (null found)) | |
2715 (setq current (car args) | |
2716 args (cdr args) | |
2717 found (widget-match-inline current vals))) | |
2718 (if found | |
2719 current | |
2720 nil))) | |
2721 | |
2722 (defun widget-checklist-value-get (widget) | |
2723 ;; The values of all selected items. | |
2724 (let ((children (widget-get widget :children)) | |
2725 child result) | |
2726 (while children | |
2727 (setq child (car children) | |
2728 children (cdr children)) | |
2729 (if (widget-value (widget-get child :button)) | |
2730 (setq result (append result (widget-apply child :value-inline))))) | |
2731 result)) | |
2732 | |
4178 | 2733 ;; #### FIXME: should handle default value some day -- dvl |
2734 (defun widget-checklist-prompt-value (widget prompt value unbound) | |
2735 ;; Prompt for items to be selected, and the prompt for their value | |
2736 (let* ((args (widget-get widget :args)) | |
2737 (choices (mapcar (lambda (elt) | |
2738 (cons (widget-get elt :tag) elt)) | |
2739 args)) | |
2740 (continue t) | |
2741 value) | |
2742 (while continue | |
2743 (setq continue (completing-read | |
2744 (concat (widget-prompt-spaceify prompt) | |
2745 "select [ret. when done]: ") | |
2746 choices nil t)) | |
2747 (if (string= continue "") | |
2748 (setq continue nil) | |
2749 (push (widget-prompt-value (cdr (assoc continue choices)) | |
2750 prompt nil t) | |
2751 value))) | |
2752 (nreverse value))) | |
2753 | |
428 | 2754 (defun widget-checklist-validate (widget) |
440 | 2755 ;; Ticked children must be valid. |
428 | 2756 (let ((children (widget-get widget :children)) |
2757 child button found) | |
2758 (while (and children (not found)) | |
2759 (setq child (car children) | |
2760 children (cdr children) | |
2761 button (widget-get child :button) | |
2762 found (and (widget-value button) | |
2763 (widget-apply child :validate)))) | |
2764 found)) | |
2765 | |
2766 ;;; The `option' Widget | |
2767 | |
2768 (define-widget 'option 'checklist | |
1362 | 2769 "A widget presenting optional items for inline inclusion in a parent widget." |
428 | 2770 :inline t) |
2771 | |
2772 ;;; The `choice-item' Widget. | |
2773 | |
2774 (define-widget 'choice-item 'item | |
2775 "Button items that delegate action events to their parents." | |
2776 :action 'widget-parent-action | |
2777 :format "%[%t%] \n") | |
2778 | |
2779 ;;; The `radio-button' Widget. | |
2780 | |
2781 (define-widget 'radio-button 'toggle | |
2782 "A radio button for use in the `radio' widget." | |
2783 :notify 'widget-radio-button-notify | |
2784 :format "%[%v%]" | |
2785 :button-suffix "" | |
2786 :button-prefix "" | |
2787 :on "(*)" | |
2788 :on-glyph '("radio1" nil "radio0") | |
2789 :off "( )" | |
2790 :off-glyph "radio0") | |
2791 | |
2792 (defun widget-radio-button-notify (widget child &optional event) | |
2793 ;; Tell daddy. | |
2794 (widget-apply (widget-get widget :parent) :action widget event)) | |
2795 | |
2796 ;;; The `radio-button-choice' Widget. | |
2797 | |
2798 (define-widget 'radio-button-choice 'default | |
1362 | 2799 "A set widget, selecting exactly one of many options. |
2800 | |
2801 The parent of several `radio-button' widgets, one for each option." | |
428 | 2802 :convert-widget 'widget-types-convert-widget |
2803 :offset 4 | |
2804 :format "%v" | |
2805 :entry-format "%b %v" | |
2806 :menu-tag "radio" | |
2807 :value-create 'widget-radio-value-create | |
2808 :value-delete 'widget-children-value-delete | |
2809 :value-get 'widget-radio-value-get | |
2810 :value-inline 'widget-radio-value-inline | |
2811 :value-set 'widget-radio-value-set | |
2812 :error "You must push one of the buttons" | |
2813 :validate 'widget-radio-validate | |
2814 :match 'widget-choice-match | |
2815 :match-inline 'widget-choice-match-inline | |
2816 :action 'widget-radio-action) | |
2817 | |
2818 (defun widget-radio-value-create (widget) | |
2819 ;; Insert all values | |
2820 (let ((args (widget-get widget :args)) | |
2821 arg) | |
2822 (while args | |
2823 (setq arg (car args) | |
2824 args (cdr args)) | |
2825 (widget-radio-add-item widget arg)))) | |
2826 | |
2827 (defun widget-radio-add-item (widget type) | |
2828 "Add to radio widget WIDGET a new radio button item of type TYPE." | |
2829 ;; (setq type (widget-convert type)) | |
2830 (and (eq (preceding-char) ?\n) | |
2831 (widget-get widget :indent) | |
2832 (insert-char ?\ (widget-get widget :indent))) | |
2833 (widget-specify-insert | |
2834 (let* ((value (widget-get widget :value)) | |
2835 (children (widget-get widget :children)) | |
2836 (buttons (widget-get widget :buttons)) | |
2837 (button-args (or (widget-get type :sibling-args) | |
2838 (widget-get widget :button-args))) | |
2839 (from (point)) | |
2840 (chosen (and (null (widget-get widget :choice)) | |
2841 (widget-apply type :match value))) | |
2842 child button) | |
2843 (insert (widget-get widget :entry-format)) | |
2844 (goto-char from) | |
2845 ;; Parse % escapes in format. | |
2846 (while (re-search-forward "%\\([bv%]\\)" nil t) | |
2847 (let ((escape (aref (match-string 1) 0))) | |
2848 (replace-match "" t t) | |
2849 (cond ((eq escape ?%) | |
1309 | 2850 (insert ?%)) |
428 | 2851 ((eq escape ?b) |
2852 (setq button (apply 'widget-create-child-and-convert | |
2853 widget 'radio-button | |
2854 :value (not (null chosen)) | |
2855 button-args))) | |
2856 ((eq escape ?v) | |
2857 (setq child (if chosen | |
2858 (widget-create-child-value | |
2859 widget type value) | |
2860 (widget-create-child widget type))) | |
2861 (unless chosen | |
2862 (widget-apply child :deactivate))) | |
2863 (t | |
2864 (signal 'error (list "Unknown escape" escape)))))) | |
2865 ;; Update properties. | |
2866 (when chosen | |
2867 (widget-put widget :choice type)) | |
2868 (when button | |
2869 (widget-put child :button button) | |
2870 (widget-put widget :buttons (nconc buttons (list button)))) | |
2871 (when child | |
2872 (widget-put widget :children (nconc children (list child)))) | |
2873 child))) | |
2874 | |
2875 (defun widget-radio-value-get (widget) | |
2876 ;; Get value of the child widget. | |
2877 (let ((chosen (widget-radio-chosen widget))) | |
2878 (and chosen (widget-value chosen)))) | |
2879 | |
2880 (defun widget-radio-chosen (widget) | |
2881 "Return the widget representing the chosen radio button." | |
2882 (let ((children (widget-get widget :children)) | |
2883 current found) | |
2884 (while children | |
2885 (setq current (car children) | |
2886 children (cdr children)) | |
1309 | 2887 (when (widget-apply (widget-get current :button) :value-get) |
2888 (setq found current | |
2889 children nil))) | |
428 | 2890 found)) |
2891 | |
2892 (defun widget-radio-value-inline (widget) | |
2893 ;; Get value of the child widget. | |
2894 (let ((children (widget-get widget :children)) | |
2895 current found) | |
2896 (while children | |
2897 (setq current (car children) | |
2898 children (cdr children)) | |
1309 | 2899 (when (widget-apply (widget-get current :button) :value-get) |
2900 (setq found (widget-apply current :value-inline) | |
2901 children nil))) | |
428 | 2902 found)) |
2903 | |
2904 (defun widget-radio-value-set (widget value) | |
2905 ;; We can't just delete and recreate a radio widget, since children | |
2906 ;; can be added after the original creation and won't be recreated | |
2907 ;; by `:create'. | |
2908 (let ((children (widget-get widget :children)) | |
2909 current found) | |
2910 (while children | |
2911 (setq current (car children) | |
2912 children (cdr children)) | |
2913 (let* ((button (widget-get current :button)) | |
2914 (match (and (not found) | |
2915 (widget-apply current :match value)))) | |
2916 (widget-value-set button match) | |
2917 (if match | |
2918 (progn | |
2919 (widget-value-set current value) | |
2920 (widget-apply current :activate)) | |
2921 (widget-apply current :deactivate)) | |
2922 (setq found (or found match)))))) | |
2923 | |
2924 (defun widget-radio-validate (widget) | |
2925 ;; Valid if we have made a valid choice. | |
2926 (let ((children (widget-get widget :children)) | |
2927 current found button) | |
2928 (while (and children (not found)) | |
2929 (setq current (car children) | |
2930 children (cdr children) | |
2931 button (widget-get current :button) | |
2932 found (widget-apply button :value-get))) | |
2933 (if found | |
2934 (widget-apply current :validate) | |
2935 widget))) | |
2936 | |
2937 (defun widget-radio-action (widget child event) | |
2938 ;; Check if a radio button was pressed. | |
2939 (let ((children (widget-get widget :children)) | |
2940 (buttons (widget-get widget :buttons)) | |
2941 current) | |
2942 (when (memq child buttons) | |
2943 (while children | |
2944 (setq current (car children) | |
2945 children (cdr children)) | |
2946 (let* ((button (widget-get current :button))) | |
2947 (cond ((eq child button) | |
2948 (widget-value-set button t) | |
2949 (widget-apply current :activate)) | |
2950 ((widget-value button) | |
2951 (widget-value-set button nil) | |
2952 (widget-apply current :deactivate))))))) | |
2953 ;; Pass notification to parent. | |
2954 (widget-apply widget :notify child event)) | |
2955 | |
2956 ;;; The `insert-button' Widget. | |
2957 | |
2958 (define-widget 'insert-button 'push-button | |
2959 "An insert button for the `editable-list' widget." | |
2960 :tag "INS" | |
1173 | 2961 :help-echo "Insert a new item into the list at this position." |
428 | 2962 :action 'widget-insert-button-action) |
2963 | |
2964 (defun widget-insert-button-action (widget &optional event) | |
2965 ;; Ask the parent to insert a new item. | |
2966 (widget-apply (widget-get widget :parent) | |
2967 :insert-before (widget-get widget :widget))) | |
2968 | |
2969 ;;; The `delete-button' Widget. | |
2970 | |
2971 (define-widget 'delete-button 'push-button | |
2972 "A delete button for the `editable-list' widget." | |
2973 :tag "DEL" | |
1173 | 2974 :help-echo "Delete this item from the list." |
428 | 2975 :action 'widget-delete-button-action) |
2976 | |
2977 (defun widget-delete-button-action (widget &optional event) | |
2978 ;; Ask the parent to insert a new item. | |
2979 (widget-apply (widget-get widget :parent) | |
2980 :delete-at (widget-get widget :widget))) | |
2981 | |
2982 ;;; The `editable-list' Widget. | |
2983 | |
2984 (defcustom widget-editable-list-gui nil | |
2985 "If non nil, use GUI push-buttons in editable list when available." | |
2986 :type 'boolean | |
2987 :group 'widgets) | |
2988 | |
2989 (define-widget 'editable-list 'default | |
2990 "A variable list of widgets of the same type." | |
2991 :convert-widget 'widget-types-convert-widget | |
2992 :offset 12 | |
2993 :format "%v%i\n" | |
2994 :format-handler 'widget-editable-list-format-handler | |
2995 :entry-format "%i %d %v" | |
2996 :menu-tag "editable-list" | |
2997 :value-create 'widget-editable-list-value-create | |
2998 :value-delete 'widget-children-value-delete | |
2999 :value-get 'widget-editable-list-value-get | |
3000 :validate 'widget-children-validate | |
3001 :match 'widget-editable-list-match | |
3002 :match-inline 'widget-editable-list-match-inline | |
3003 :insert-before 'widget-editable-list-insert-before | |
3004 :delete-at 'widget-editable-list-delete-at) | |
3005 | |
3006 (defun widget-editable-list-format-handler (widget escape) | |
3007 ;; We recognize the insert button. | |
3008 (let ((widget-push-button-gui widget-editable-list-gui)) | |
3009 (cond ((eq escape ?i) | |
3010 (and (widget-get widget :indent) | |
3011 (insert-char ?\ (widget-get widget :indent))) | |
3012 (apply 'widget-create-child-and-convert | |
3013 widget 'insert-button | |
3014 (widget-get widget :append-button-args))) | |
3015 (t | |
3016 (widget-default-format-handler widget escape))))) | |
3017 | |
3018 (defun widget-editable-list-value-create (widget) | |
3019 ;; Insert all values | |
3020 (let* ((value (widget-get widget :value)) | |
3021 (type (nth 0 (widget-get widget :args))) | |
3022 children) | |
3023 (widget-put widget :value-pos (copy-marker (point))) | |
3024 (set-marker-insertion-type (widget-get widget :value-pos) t) | |
3025 (while value | |
3026 (let ((answer (widget-match-inline type value))) | |
3027 (if answer | |
3028 (setq children (cons (widget-editable-list-entry-create | |
3029 widget | |
1309 | 3030 (if (widget-get type :inline) |
428 | 3031 (car answer) |
3032 (car (car answer))) | |
3033 t) | |
3034 children) | |
3035 value (cdr answer)) | |
3036 (setq value nil)))) | |
3037 (widget-put widget :children (nreverse children)))) | |
3038 | |
3039 (defun widget-editable-list-value-get (widget) | |
3040 ;; Get value of the child widget. | |
3041 (apply 'append (mapcar (lambda (child) (widget-apply child :value-inline)) | |
3042 (widget-get widget :children)))) | |
3043 | |
3044 (defun widget-editable-list-match (widget value) | |
3045 ;; Value must be a list and all the members must match the type. | |
3046 (and (listp value) | |
3047 (null (cdr (widget-editable-list-match-inline widget value))))) | |
3048 | |
3049 (defun widget-editable-list-match-inline (widget value) | |
3050 (let ((type (nth 0 (widget-get widget :args))) | |
3051 (ok t) | |
3052 found) | |
3053 (while (and value ok) | |
3054 (let ((answer (widget-match-inline type value))) | |
3055 (if answer | |
3056 (setq found (append found (car answer)) | |
3057 value (cdr answer)) | |
3058 (setq ok nil)))) | |
3059 (cons found value))) | |
3060 | |
3061 (defun widget-editable-list-insert-before (widget before) | |
3062 ;; Insert a new child in the list of children. | |
3063 (save-excursion | |
3064 (let ((children (widget-get widget :children)) | |
3065 (inhibit-read-only t) | |
3066 before-change-functions | |
3067 after-change-functions) | |
3068 (cond (before | |
3069 (goto-char (widget-get before :entry-from))) | |
3070 (t | |
3071 (goto-char (widget-get widget :value-pos)))) | |
3072 (let ((child (widget-editable-list-entry-create | |
3073 widget nil nil))) | |
3074 (when (< (widget-get child :entry-from) (widget-get widget :from)) | |
3075 (set-marker (widget-get widget :from) | |
3076 (widget-get child :entry-from))) | |
3077 (if (eq (car children) before) | |
3078 (widget-put widget :children (cons child children)) | |
3079 (while (not (eq (car (cdr children)) before)) | |
3080 (setq children (cdr children))) | |
3081 (setcdr children (cons child (cdr children))))))) | |
3082 (widget-setup) | |
3083 (widget-apply widget :notify widget)) | |
3084 | |
3085 (defun widget-editable-list-delete-at (widget child) | |
3086 ;; Delete child from list of children. | |
3087 (save-excursion | |
3088 (let ((buttons (copy-sequence (widget-get widget :buttons))) | |
3089 button | |
3090 (inhibit-read-only t) | |
3091 before-change-functions | |
3092 after-change-functions) | |
3093 (while buttons | |
3094 (setq button (car buttons) | |
3095 buttons (cdr buttons)) | |
3096 (when (eq (widget-get button :widget) child) | |
3097 (widget-put widget | |
3098 :buttons (delq button (widget-get widget :buttons))) | |
3099 (widget-delete button)))) | |
3100 (let ((entry-from (widget-get child :entry-from)) | |
3101 (entry-to (widget-get child :entry-to)) | |
3102 (inhibit-read-only t) | |
3103 before-change-functions | |
3104 after-change-functions) | |
3105 (widget-delete child) | |
3106 (delete-region entry-from entry-to) | |
3107 (set-marker entry-from nil) | |
3108 (set-marker entry-to nil)) | |
3109 (widget-put widget :children (delq child (widget-get widget :children)))) | |
3110 (widget-setup) | |
3111 (widget-apply widget :notify widget)) | |
3112 | |
3113 (defun widget-editable-list-entry-create (widget value conv) | |
3114 ;; Create a new entry to the list. | |
3115 (let ((type (nth 0 (widget-get widget :args))) | |
3116 (widget-push-button-gui widget-editable-list-gui) | |
3117 child delete insert) | |
3118 (widget-specify-insert | |
3119 (save-excursion | |
3120 (and (widget-get widget :indent) | |
3121 (insert-char ?\ (widget-get widget :indent))) | |
3122 (insert (widget-get widget :entry-format))) | |
3123 ;; Parse % escapes in format. | |
3124 (while (re-search-forward "%\\(.\\)" nil t) | |
3125 (let ((escape (aref (match-string 1) 0))) | |
3126 (replace-match "" t t) | |
3127 (cond ((eq escape ?%) | |
1309 | 3128 (insert ?%)) |
428 | 3129 ((eq escape ?i) |
3130 (setq insert (apply 'widget-create-child-and-convert | |
3131 widget 'insert-button | |
3132 (widget-get widget :insert-button-args)))) | |
3133 ((eq escape ?d) | |
3134 (setq delete (apply 'widget-create-child-and-convert | |
3135 widget 'delete-button | |
3136 (widget-get widget :delete-button-args)))) | |
3137 ((eq escape ?v) | |
3138 (if conv | |
3139 (setq child (widget-create-child-value | |
3140 widget type value)) | |
3141 (setq child (widget-create-child-value | |
3142 widget type (widget-default-get type))))) | |
3143 (t | |
3144 (signal 'error (list "Unknown escape" escape)))))) | |
3145 (widget-put widget | |
3146 :buttons (cons delete | |
3147 (cons insert | |
3148 (widget-get widget :buttons)))) | |
3149 (let ((entry-from (copy-marker (point-min))) | |
3150 (entry-to (copy-marker (point-max)))) | |
3151 (set-marker-insertion-type entry-from t) | |
3152 (set-marker-insertion-type entry-to nil) | |
3153 (widget-put child :entry-from entry-from) | |
3154 (widget-put child :entry-to entry-to))) | |
3155 (widget-put insert :widget child) | |
3156 (widget-put delete :widget child) | |
3157 child)) | |
3158 | |
3159 ;;; The `group' Widget. | |
3160 | |
3161 (define-widget 'group 'default | |
652 | 3162 "A widget which groups other widgets inside." |
428 | 3163 :convert-widget 'widget-types-convert-widget |
3164 :format "%v" | |
3165 :value-create 'widget-group-value-create | |
3166 :value-delete 'widget-children-value-delete | |
3167 :value-get 'widget-editable-list-value-get | |
3168 :default-get 'widget-group-default-get | |
4178 | 3169 :prompt-value 'widget-group-prompt-value |
428 | 3170 :validate 'widget-children-validate |
3171 :match 'widget-group-match | |
3172 :match-inline 'widget-group-match-inline) | |
3173 | |
3174 (defun widget-group-value-create (widget) | |
3175 ;; Create each component. | |
3176 (let ((args (widget-get widget :args)) | |
3177 (value (widget-get widget :value)) | |
3178 arg answer children) | |
3179 (while args | |
3180 (setq arg (car args) | |
3181 args (cdr args) | |
3182 answer (widget-match-inline arg value) | |
3183 value (cdr answer)) | |
3184 (and (eq (preceding-char) ?\n) | |
3185 (widget-get widget :indent) | |
3186 (insert-char ?\ (widget-get widget :indent))) | |
3187 (push (cond ((null answer) | |
3188 (widget-create-child widget arg)) | |
3189 ((widget-get arg :inline) | |
1173 | 3190 (widget-create-child-value widget arg (car answer))) |
428 | 3191 (t |
1173 | 3192 (widget-create-child-value widget arg (car (car answer))))) |
428 | 3193 children)) |
3194 (widget-put widget :children (nreverse children)))) | |
3195 | |
3196 (defun widget-group-default-get (widget) | |
3197 ;; Get the default of the components. | |
3198 (mapcar 'widget-default-get (widget-get widget :args))) | |
3199 | |
4178 | 3200 (defun widget-group-prompt-value (widget prompt value unbound) |
3201 ;; Prompt in turn for every component of the group. | |
3202 (let ((args (widget-get widget :args))) | |
3203 (widget-apply | |
3204 widget :value-to-external | |
3205 (if unbound | |
3206 (mapcar #'(lambda (arg) | |
3207 (widget-prompt-value | |
3208 arg | |
3209 (concat (widget-prompt-spaceify prompt) | |
3210 (widget-prompt arg nil "")) | |
3211 nil t)) | |
3212 args) | |
3213 ;; If VALUE is bound, the situation is a bit more complex because we | |
3214 ;; have to split it into a list of default values for every child. Oh, | |
3215 ;; boy, do I miss 'cl here... -- dvl | |
3216 (let ((children args) | |
3217 (defaults (widget-apply widget | |
3218 :value-to-internal value)) | |
3219 child default result) | |
3220 (while (setq child (pop children)) | |
3221 (setq default (pop defaults)) | |
3222 (push | |
3223 (widget-prompt-value | |
3224 child | |
3225 (concat (widget-prompt-spaceify prompt) | |
3226 (widget-prompt child nil "")) | |
3227 default) result)) | |
3228 (nreverse result)))))) | |
3229 | |
428 | 3230 (defun widget-group-match (widget values) |
3231 ;; Match if the components match. | |
3232 (and (listp values) | |
3233 (let ((match (widget-group-match-inline widget values))) | |
3234 (and match (null (cdr match)))))) | |
3235 | |
3236 (defun widget-group-match-inline (widget vals) | |
3237 ;; Match if the components match. | |
3238 (let ((args (widget-get widget :args)) | |
3239 argument answer found) | |
3240 (while args | |
3241 (setq argument (car args) | |
3242 args (cdr args) | |
3243 answer (widget-match-inline argument vals)) | |
3244 (if answer | |
3245 (setq vals (cdr answer) | |
3246 found (append found (car answer))) | |
3247 (setq vals nil | |
3248 args nil))) | |
3249 (if answer | |
3250 (cons found vals) | |
3251 nil))) | |
3252 | |
3253 ;;; The `visibility' Widget. | |
3254 | |
3255 (define-widget 'visibility 'item | |
3256 "An indicator and manipulator for hidden items." | |
3257 :format "%[%v%]" | |
3258 :button-prefix "" | |
3259 :button-suffix "" | |
3260 :on "Hide" | |
3261 :off "Show" | |
3262 :value-create 'widget-visibility-value-create | |
3263 :action 'widget-toggle-action | |
3264 :match (lambda (widget value) t)) | |
3265 | |
3266 (defun widget-visibility-value-create (widget) | |
3267 ;; Insert text representing the `on' and `off' states. | |
3268 (let ((on (widget-get widget :on)) | |
3269 (off (widget-get widget :off))) | |
3270 (if on | |
3271 (setq on (concat widget-push-button-prefix | |
3272 on | |
3273 widget-push-button-suffix)) | |
3274 (setq on "")) | |
3275 (if off | |
3276 (setq off (concat widget-push-button-prefix | |
3277 off | |
3278 widget-push-button-suffix)) | |
3279 (setq off "")) | |
3280 (if (widget-value widget) | |
3281 (widget-glyph-insert widget on '("down" "down-pushed")) | |
3282 (widget-glyph-insert widget off '("right" "right-pushed"))))) | |
3283 | |
3284 ;;; The `documentation-link' Widget. | |
3285 ;; | |
3286 ;; This is a helper widget for `documentation-string'. | |
3287 | |
3288 (define-widget 'documentation-link 'link | |
3289 "Link type used in documentation strings." | |
3290 :tab-order -1 | |
3291 :help-echo 'widget-documentation-link-echo-help | |
3292 :action 'widget-documentation-link-action) | |
3293 | |
3294 (defun widget-documentation-link-echo-help (widget) | |
3295 "Tell what this link will describe." | |
3296 (concat "Describe the `" (widget-get widget :value) "' symbol.")) | |
3297 | |
3298 (defun widget-documentation-link-action (widget &optional event) | |
3299 "Display documentation for WIDGET's value. Ignore optional argument EVENT." | |
3300 (let* ((string (widget-get widget :value)) | |
3301 (symbol (intern string))) | |
3302 (if (and (fboundp symbol) (boundp symbol)) | |
3303 ;; If there are two doc strings, give the user a way to pick one. | |
3304 (apropos (concat "\\`" (regexp-quote string) "\\'")) | |
3305 (if (fboundp symbol) | |
3306 (describe-function symbol) | |
3307 (describe-variable symbol))))) | |
3308 | |
3309 (defcustom widget-documentation-links t | |
3310 "Add hyperlinks to documentation strings when non-nil." | |
3311 :type 'boolean | |
3312 :group 'widget-documentation) | |
3313 | |
3314 (defcustom widget-documentation-link-regexp "`\\([^\n`' ]+\\)'" | |
3315 "Regexp for matching potential links in documentation strings. | |
3316 The first group should be the link itself." | |
3317 :type 'regexp | |
3318 :group 'widget-documentation) | |
3319 | |
3320 (defcustom widget-documentation-link-p 'intern-soft | |
3321 "Predicate used to test if a string is useful as a link. | |
3322 The value should be a function. The function will be called one | |
3323 argument, a string, and should return non-nil if there should be a | |
3324 link for that string." | |
3325 :type 'function | |
3326 :options '(widget-documentation-link-p) | |
3327 :group 'widget-documentation) | |
3328 | |
3329 (defcustom widget-documentation-link-type 'documentation-link | |
3330 "Widget type used for links in documentation strings." | |
3331 :type 'symbol | |
3332 :group 'widget-documentation) | |
3333 | |
3334 (defun widget-documentation-link-add (widget from to) | |
3335 (widget-specify-doc widget from to) | |
3336 (when widget-documentation-links | |
3337 (let ((regexp widget-documentation-link-regexp) | |
3338 (predicate widget-documentation-link-p) | |
3339 (type widget-documentation-link-type) | |
3340 (buttons (widget-get widget :buttons))) | |
3341 (save-excursion | |
3342 (goto-char from) | |
3343 (while (re-search-forward regexp to t) | |
3344 (let ((name (match-string 1)) | |
3345 (begin (match-beginning 1)) | |
3346 (end (match-end 1))) | |
3347 (when (funcall predicate name) | |
3348 (push (widget-convert-button type begin end :value name) | |
3349 buttons))))) | |
3350 (widget-put widget :buttons buttons))) | |
3351 (let ((indent (widget-get widget :indent))) | |
3352 (when (and indent (not (zerop indent))) | |
3353 (save-excursion | |
3354 (save-restriction | |
3355 (narrow-to-region from to) | |
3356 (goto-char (point-min)) | |
3357 (while (search-forward "\n" nil t) | |
3358 (insert-char ?\ indent))))))) | |
3359 | |
3360 ;;; The `documentation-string' Widget. | |
3361 | |
3362 (define-widget 'documentation-string 'item | |
3363 "A documentation string." | |
3364 :format "%v" | |
3365 :action 'widget-documentation-string-action | |
3366 :value-delete 'widget-children-value-delete | |
3367 :value-create 'widget-documentation-string-value-create) | |
3368 | |
3369 (defun widget-documentation-string-value-create (widget) | |
3370 ;; Insert documentation string. | |
3371 (let ((doc (widget-value widget)) | |
3372 (indent (widget-get widget :indent)) | |
3373 (shown (widget-get (widget-get widget :parent) :documentation-shown)) | |
3374 (start (point))) | |
3375 (if (string-match "\n" doc) | |
3376 (let ((before (substring doc 0 (match-beginning 0))) | |
3377 (after (substring doc (match-beginning 0))) | |
3378 buttons) | |
1309 | 3379 (insert before ?\ ) |
428 | 3380 (widget-documentation-link-add widget start (point)) |
3381 (push (widget-create-child-and-convert | |
3382 widget 'visibility | |
3383 :help-echo (lambda (widget) | |
3384 (concat | |
3385 (if (widget-value widget) | |
3386 "Hide" "Show") | |
3387 " the rest of the documentation")) | |
3388 :off "More" | |
3389 :action 'widget-parent-action | |
3390 shown) | |
3391 buttons) | |
3392 (when shown | |
3393 (setq start (point)) | |
3394 (when indent | |
3395 (insert-char ?\ indent)) | |
3396 (insert after) | |
3397 (widget-documentation-link-add widget start (point))) | |
3398 (widget-put widget :buttons buttons)) | |
3399 (insert doc) | |
3400 (widget-documentation-link-add widget start (point)))) | |
1309 | 3401 (insert ?\n)) |
428 | 3402 |
3403 (defun widget-documentation-string-action (widget &rest ignore) | |
3404 ;; Toggle documentation. | |
3405 (let ((parent (widget-get widget :parent))) | |
3406 (widget-put parent :documentation-shown | |
3407 (not (widget-get parent :documentation-shown)))) | |
3408 ;; Redraw. | |
3409 (widget-value-set widget (widget-value widget))) | |
3410 | |
1309 | 3411 |
428 | 3412 ;;; The Sexp Widgets. |
3413 | |
1362 | 3414 (define-widget 'sexp 'editable-field |
3415 "An arbitrary Lisp expression." | |
3416 :tag "Lisp expression" | |
3417 :format "%{%t%}: %v" | |
3418 :value nil | |
3419 :validate 'widget-sexp-validate | |
3420 :match (lambda (widget value) t) | |
3421 :value-to-internal 'widget-sexp-value-to-internal | |
3422 :value-to-external (lambda (widget value) (read value)) | |
3423 :prompt-history 'widget-sexp-prompt-value-history | |
3424 :prompt-value 'widget-sexp-prompt-value) | |
3425 | |
3426 (defun widget-sexp-value-to-internal (widget value) | |
3427 ;; Use cl-prettyprint for printer representation. | |
3428 (let ((pp (if (symbolp value) | |
3429 (prin1-to-string value) | |
3430 (widget-prettyprint-to-string value)))) | |
3431 (if (> (length pp) 40) | |
3432 (concat "\n" pp) | |
3433 pp))) | |
3434 | |
3435 (defun widget-sexp-validate (widget) | |
3436 ;; Valid if we can read the string and there is no junk left after it. | |
3437 (save-excursion | |
3438 (let ((buffer (set-buffer (get-buffer-create " *Widget Scratch*")))) | |
3439 (erase-buffer) | |
3440 (insert (widget-apply widget :value-get)) | |
3441 (goto-char (point-min)) | |
3442 (condition-case data | |
3443 (let ((value (read buffer))) | |
3444 (if (eobp) | |
3445 (if (widget-apply widget :match value) | |
3446 nil | |
3447 (widget-put widget :error (widget-get widget :type-error)) | |
3448 widget) | |
3449 (widget-put widget | |
3450 :error (format "Junk at end of expression: %s" | |
3451 (buffer-substring (point) | |
3452 (point-max)))) | |
3453 widget)) | |
3454 (error (widget-put widget :error (error-message-string data)) | |
3455 widget))))) | |
3456 | |
3457 (defvar widget-sexp-prompt-value-history nil | |
3458 "History of input to `widget-sexp-prompt-value'.") | |
3459 | |
3460 (defun widget-sexp-prompt-value (widget prompt value unbound) | |
3461 ;; Read an arbitrary sexp. | |
4178 | 3462 (let ((found (read-string (concat prompt ": ") |
1362 | 3463 (if unbound nil (cons (prin1-to-string value) 0)) |
3464 (widget-get widget :prompt-history)))) | |
3465 (save-excursion | |
3466 (let ((buffer (set-buffer (get-buffer-create " *Widget Scratch*")))) | |
3467 (erase-buffer) | |
3468 (insert found) | |
3469 (goto-char (point-min)) | |
3470 (let ((answer (read buffer))) | |
3471 (unless (eobp) | |
3472 (signal 'error | |
3473 (list "Junk at end of expression" | |
3474 (buffer-substring (point) (point-max))))) | |
3475 answer))))) | |
3476 | |
3477 ;; Various constant sexps. | |
3478 | |
428 | 3479 (define-widget 'const 'item |
3480 "An immutable sexp." | |
3481 :prompt-value 'widget-const-prompt-value | |
3482 :format "%t\n%d") | |
3483 | |
3484 (defun widget-const-prompt-value (widget prompt value unbound) | |
3485 ;; Return the value of the const. | |
3486 (widget-value widget)) | |
3487 | |
3488 (define-widget 'function-item 'const | |
3489 "An immutable function name." | |
3490 :format "%v\n%h" | |
3491 :documentation-property (lambda (symbol) | |
3492 (condition-case nil | |
3493 (documentation symbol t) | |
3494 (error nil)))) | |
3495 | |
3496 (define-widget 'variable-item 'const | |
3497 "An immutable variable name." | |
3498 :format "%v\n%h" | |
3499 :documentation-property 'variable-documentation) | |
3500 | |
1309 | 3501 (define-widget 'other 'sexp |
3502 "Matches any value, but doesn't let the user edit the value. | |
3503 This is useful as last item in a `choice' widget. | |
3504 You should use this widget type with a default value, | |
3505 as in (other DEFAULT) or (other :tag \"NAME\" DEFAULT). | |
3506 If the user selects this alternative, that specifies DEFAULT | |
3507 as the value." | |
3508 :tag "Other" | |
3509 :format "%t%n" | |
3510 :value 'other) | |
3511 | |
428 | 3512 (defvar widget-string-prompt-value-history nil |
3513 "History of input to `widget-string-prompt-value'.") | |
3514 | |
3515 (define-widget 'string 'editable-field | |
3516 "A string" | |
3517 :tag "String" | |
3518 :format "%{%t%}: %v" | |
3519 :complete-function 'ispell-complete-word | |
3520 :prompt-history 'widget-string-prompt-value-history) | |
3521 | |
3522 (define-widget 'regexp 'string | |
3523 "A regular expression." | |
3524 :match 'widget-regexp-match | |
3525 :validate 'widget-regexp-validate | |
3526 ;; Doesn't work well with terminating newline. | |
3527 ;; :value-face 'widget-single-line-field-face | |
3528 :tag "Regexp") | |
3529 | |
3530 (defun widget-regexp-match (widget value) | |
3531 ;; Match valid regexps. | |
3532 (and (stringp value) | |
3533 (condition-case nil | |
3534 (prog1 t | |
3535 (string-match value "")) | |
3536 (error nil)))) | |
3537 | |
3538 (defun widget-regexp-validate (widget) | |
3539 "Check that the value of WIDGET is a valid regexp." | |
1309 | 3540 (condition-case data |
3541 (prog1 nil | |
3542 (string-match (widget-value widget) "")) | |
3543 (error (widget-put widget :error (error-message-string data)) | |
3544 widget))) | |
428 | 3545 |
3546 (define-widget 'file 'string | |
3547 "A file widget. | |
3548 It will read a file name from the minibuffer when invoked." | |
3549 :complete-function 'widget-file-complete | |
3550 :prompt-value 'widget-file-prompt-value | |
3551 :format "%{%t%}: %v" | |
3552 ;; Doesn't work well with terminating newline. | |
3553 ;; :value-face 'widget-single-line-field-face | |
3554 :tag "File") | |
3555 | |
3556 (defun widget-file-complete () | |
3557 "Perform completion on file name preceding point." | |
3558 (interactive) | |
3559 (let* ((end (point)) | |
3560 (beg (save-excursion | |
3561 (skip-chars-backward "^ ") | |
3562 (point))) | |
3563 (pattern (buffer-substring beg end)) | |
3564 (name-part (file-name-nondirectory pattern)) | |
3565 (directory (file-name-directory pattern)) | |
3566 (completion (file-name-completion name-part directory))) | |
3567 (cond ((eq completion t)) | |
3568 ((null completion) | |
3569 (message "Can't find completion for \"%s\"" pattern) | |
3570 (ding)) | |
3571 ((not (string= name-part completion)) | |
3572 (delete-region beg end) | |
3573 (insert (expand-file-name completion directory))) | |
3574 (t | |
3575 (message "Making completion list...") | |
1309 | 3576 (with-output-to-temp-buffer "*Completions*" |
3577 (display-completion-list | |
3578 (sort (file-name-all-completions name-part directory) | |
3579 'string<))) | |
428 | 3580 (message "Making completion list...%s" "done"))))) |
3581 | |
3582 (defun widget-file-prompt-value (widget prompt value unbound) | |
3583 ;; Read file from minibuffer. | |
3584 (abbreviate-file-name | |
3585 (if unbound | |
4178 | 3586 (read-file-name (concat prompt ": ")) |
3587 (let ((prompt2 (format "%s: (default %s) " prompt value)) | |
428 | 3588 (dir (file-name-directory value)) |
3589 (file (file-name-nondirectory value)) | |
3590 (must-match (widget-get widget :must-match))) | |
3591 (read-file-name prompt2 dir nil must-match file))))) | |
3592 | |
3593 ;;;(defun widget-file-action (widget &optional event) | |
3594 ;;; ;; Read a file name from the minibuffer. | |
3595 ;;; (let* ((value (widget-value widget)) | |
3596 ;;; (dir (file-name-directory value)) | |
3597 ;;; (file (file-name-nondirectory value)) | |
3598 ;;; (menu-tag (widget-apply widget :menu-tag-get)) | |
3599 ;;; (must-match (widget-get widget :must-match)) | |
3600 ;;; (answer (read-file-name (concat menu-tag ": (default `" value "') ") | |
3601 ;;; dir nil must-match file))) | |
3602 ;;; (widget-value-set widget (abbreviate-file-name answer)) | |
3603 ;;; (widget-setup) | |
3604 ;;; (widget-apply widget :notify widget event))) | |
3605 | |
1173 | 3606 ;; Fixme: use file-name-as-directory. |
428 | 3607 (define-widget 'directory 'file |
3608 "A directory widget. | |
3609 It will read a directory name from the minibuffer when invoked." | |
3610 :tag "Directory") | |
3611 | |
3612 (defvar widget-symbol-prompt-value-history nil | |
3613 "History of input to `widget-symbol-prompt-value'.") | |
3614 | |
3615 (define-widget 'symbol 'editable-field | |
1173 | 3616 "A Lisp symbol." |
1362 | 3617 :value t |
428 | 3618 :tag "Symbol" |
3619 :format "%{%t%}: %v" | |
3620 :match (lambda (widget value) (symbolp value)) | |
3621 :complete-function 'lisp-complete-symbol | |
3622 :prompt-internal 'widget-symbol-prompt-internal | |
3623 :prompt-match 'symbolp | |
3624 :prompt-history 'widget-symbol-prompt-value-history | |
3625 :value-to-internal (lambda (widget value) | |
3626 (if (symbolp value) | |
3627 (symbol-name value) | |
3628 value)) | |
3629 :value-to-external (lambda (widget value) | |
3630 (if (stringp value) | |
3631 (intern value) | |
3632 value))) | |
3633 | |
3634 (defun widget-symbol-prompt-internal (widget prompt initial history) | |
3635 ;; Read file from minibuffer. | |
4178 | 3636 (let ((answer (completing-read (concat prompt ": ") obarray |
428 | 3637 (widget-get widget :prompt-match) |
3638 nil initial history))) | |
3639 (if (and (stringp answer) | |
5366
f00192e1cd49
Examining the result of #'length: `eql', not `=', it's better style & cheaper
Aidan Kehoe <kehoea@parhasard.net>
parents:
4178
diff
changeset
|
3640 (not (eql (length answer) 0))) |
428 | 3641 answer |
3642 (error "No value")))) | |
3643 | |
3644 (defvar widget-function-prompt-value-history nil | |
3645 "History of input to `widget-function-prompt-value'.") | |
3646 | |
3647 (define-widget 'function 'sexp | |
1173 | 3648 "A Lisp function." |
428 | 3649 :complete-function 'lisp-complete-symbol |
3650 :prompt-value 'widget-field-prompt-value | |
3651 :prompt-internal 'widget-symbol-prompt-internal | |
3652 :prompt-match 'fboundp | |
3653 :prompt-history 'widget-function-prompt-value-history | |
3654 :action 'widget-field-action | |
3655 :tag "Function") | |
3656 | |
3657 (defvar widget-variable-prompt-value-history nil | |
3658 "History of input to `widget-variable-prompt-value'.") | |
3659 | |
3660 (define-widget 'variable 'symbol | |
3661 ;; Should complete on variables. | |
1173 | 3662 "A Lisp variable." |
428 | 3663 :prompt-match 'boundp |
3664 :prompt-history 'widget-variable-prompt-value-history | |
3665 :tag "Variable") | |
3666 | |
3667 ;; This part issues a warning when compiling without Mule. Is there a | |
3668 ;; way of shutting it up? | |
3669 ;; | |
3670 ;; OK, I'll simply comment the whole thing out, until someone decides | |
3671 ;; to do something with it. | |
1309 | 3672 |
3673 ;; OK, _I_'ll simply comment it back in, so somebody will get irritated and | |
3674 ;; do something about it. | |
3675 | |
3676 (defvar widget-coding-system-prompt-value-history nil | |
3677 "History of input to `widget-coding-system-prompt-value'.") | |
3678 | |
3679 (define-widget 'coding-system 'symbol | |
3680 "A MULE coding-system." | |
3681 :format "%{%t%}: %v" | |
3682 :tag "Coding system" | |
3683 :prompt-history 'widget-coding-system-prompt-value-history | |
3684 :prompt-value 'widget-coding-system-prompt-value | |
3685 :action 'widget-coding-system-action) | |
3686 | |
3687 (defun widget-coding-system-prompt-value (widget prompt value unbound) | |
3688 ;; Read coding-system from minibuffer. | |
3689 (intern | |
3690 (completing-read (format "%s (default %s) " prompt value) | |
3691 (mapcar (lambda (sym) | |
3692 (list (symbol-name sym))) | |
3693 (coding-system-list))))) | |
3694 | |
3695 (defun widget-coding-system-action (widget &optional event) | |
3696 ;; Read a file name from the minibuffer. | |
3697 (let ((answer | |
3698 (widget-coding-system-prompt-value | |
3699 widget | |
3700 (widget-apply widget :menu-tag-get) | |
3701 (widget-value widget) | |
3702 t))) | |
3703 (widget-value-set widget answer) | |
3704 (widget-apply widget :notify widget event) | |
3705 (widget-setup))) | |
428 | 3706 |
3707 (define-widget 'restricted-sexp 'sexp | |
3708 "A Lisp expression restricted to values that match. | |
1362 | 3709 |
3710 Either the `:match' or the `:match-alternatives' property must be defined." | |
428 | 3711 :type-error "The specified value is not valid" |
3712 :match 'widget-restricted-sexp-match | |
3713 :value-to-internal (lambda (widget value) | |
3714 (if (widget-apply widget :match value) | |
3715 (prin1-to-string value) | |
3716 value))) | |
3717 | |
3718 (defun widget-restricted-sexp-match (widget value) | |
3719 (let ((alternatives (widget-get widget :match-alternatives)) | |
3720 matched) | |
3721 (while (and alternatives (not matched)) | |
3722 (if (cond ((functionp (car alternatives)) | |
3723 (funcall (car alternatives) value)) | |
3724 ((and (consp (car alternatives)) | |
3725 (eq (car (car alternatives)) 'quote)) | |
3726 (eq value (nth 1 (car alternatives))))) | |
3727 (setq matched t)) | |
3728 (setq alternatives (cdr alternatives))) | |
3729 matched)) | |
3730 | |
3731 (define-widget 'integer 'restricted-sexp | |
3732 "An integer." | |
3733 :tag "Integer" | |
3734 :value 0 | |
3735 :type-error "This field should contain an integer" | |
3736 :match-alternatives '(integerp)) | |
3737 | |
3738 (define-widget 'number 'restricted-sexp | |
1173 | 3739 "A number (floating point or integer)." |
428 | 3740 :tag "Number" |
3741 :value 0.0 | |
1173 | 3742 :type-error "This field should contain a number (floating point or integer)" |
428 | 3743 :match-alternatives '(numberp)) |
3744 | |
1309 | 3745 (define-widget 'float 'restricted-sexp |
3746 "A floating point number." | |
3747 :tag "Floating point number" | |
3748 :value 0.0 | |
3749 :type-error "This field should contain a floating point number" | |
3750 :match-alternatives '(floatp)) | |
3751 | |
428 | 3752 (define-widget 'character 'editable-field |
3753 "A character." | |
3754 :tag "Character" | |
3755 :value ?\0 | |
1309 | 3756 :size 1 |
428 | 3757 :format "%{%t%}: %v" |
1362 | 3758 ;; #### This is incorrect for Mule. |
428 | 3759 :valid-regexp "\\`[\0-\377]\\'" |
3760 :error "This field should contain a single character" | |
3761 :value-to-internal (lambda (widget value) | |
3762 (if (stringp value) | |
3763 value | |
3764 (char-to-string value))) | |
3765 :value-to-external (lambda (widget value) | |
3766 (if (stringp value) | |
3767 (aref value 0) | |
3768 value)) | |
3769 :match (lambda (widget value) | |
3770 (characterp value))) | |
3771 | |
3772 (define-widget 'list 'group | |
1362 | 3773 "A Lisp list of fixed length with fixed type for each element." |
428 | 3774 :tag "List" |
3775 :format "%{%t%}:\n%v") | |
3776 | |
3777 (define-widget 'vector 'group | |
1362 | 3778 "A Lisp vector of fixed length with fixed type for each element." |
428 | 3779 :tag "Vector" |
3780 :format "%{%t%}:\n%v" | |
3781 :match 'widget-vector-match | |
3782 :value-to-internal (lambda (widget value) (append value nil)) | |
3783 :value-to-external (lambda (widget value) (vconcat value))) | |
3784 | |
3785 (defun widget-vector-match (widget value) | |
3786 (and (vectorp value) | |
3787 (widget-group-match widget | |
3788 (widget-apply widget :value-to-internal value)))) | |
3789 | |
3790 (define-widget 'cons 'group | |
3791 "A cons-cell." | |
3792 :tag "Cons-cell" | |
3793 :format "%{%t%}:\n%v" | |
3794 :match 'widget-cons-match | |
3795 :value-to-internal (lambda (widget value) | |
3796 (list (car value) (cdr value))) | |
3797 :value-to-external (lambda (widget value) | |
1309 | 3798 (cons (nth 0 value) (nth 1 value)))) |
428 | 3799 |
3800 (defun widget-cons-match (widget value) | |
3801 (and (consp value) | |
3802 (widget-group-match widget | |
3803 (widget-apply widget :value-to-internal value)))) | |
1309 | 3804 |
3805 ;;; The `plist' Widget. | |
3806 ;; | |
3807 ;; Property lists. | |
3808 | |
3809 (define-widget 'plist 'list | |
3810 "A property list." | |
3811 :key-type '(symbol :tag "Key") | |
3812 :value-type '(sexp :tag "Value") | |
3813 :convert-widget 'widget-plist-convert-widget | |
3814 :tag "Plist") | |
3815 | |
3816 (defvar widget-plist-value-type) ;Dynamic variable | |
3817 | |
3818 (defun widget-plist-convert-widget (widget) | |
3819 ;; Handle `:options'. | |
3820 (let* ((options (widget-get widget :options)) | |
3821 (widget-plist-value-type (widget-get widget :value-type)) | |
3822 (other `(editable-list :inline t | |
3823 (group :inline t | |
3824 ,(widget-get widget :key-type) | |
3825 ,widget-plist-value-type))) | |
3826 (args (if options | |
3827 (list `(checklist :inline t | |
3828 :greedy t | |
3829 ,@(mapcar 'widget-plist-convert-option | |
3830 options)) | |
3831 other) | |
3832 (list other)))) | |
3833 (widget-put widget :args args) | |
3834 widget)) | |
3835 | |
3836 (defun widget-plist-convert-option (option) | |
3837 ;; Convert a single plist option. | |
3838 (let (key-type value-type) | |
3839 (if (listp option) | |
3840 (let ((key (nth 0 option))) | |
3841 (setq value-type (nth 1 option)) | |
3842 (if (listp key) | |
3843 (setq key-type key) | |
3844 (setq key-type `(const ,key)))) | |
3845 (setq key-type `(const ,option) | |
3846 value-type widget-plist-value-type)) | |
3847 `(group :format "Key: %v" :inline t ,key-type ,value-type))) | |
3848 | |
3849 | |
3850 ;;; The `alist' Widget. | |
3851 ;; | |
3852 ;; Association lists. | |
3853 | |
3854 (define-widget 'alist 'list | |
3855 "An association list." | |
3856 :key-type '(sexp :tag "Key") | |
3857 :value-type '(sexp :tag "Value") | |
3858 :convert-widget 'widget-alist-convert-widget | |
3859 :tag "Alist") | |
3860 | |
3861 (defvar widget-alist-value-type) ;Dynamic variable | |
3862 | |
3863 (defun widget-alist-convert-widget (widget) | |
3864 ;; Handle `:options'. | |
3865 (let* ((options (widget-get widget :options)) | |
3866 (widget-alist-value-type (widget-get widget :value-type)) | |
3867 (other `(editable-list :inline t | |
3868 (cons :format "%v" | |
3869 ,(widget-get widget :key-type) | |
3870 ,widget-alist-value-type))) | |
3871 (args (if options | |
3872 (list `(checklist :inline t | |
3873 :greedy t | |
3874 ,@(mapcar 'widget-alist-convert-option | |
3875 options)) | |
3876 other) | |
3877 (list other)))) | |
3878 (widget-put widget :args args) | |
3879 widget)) | |
3880 | |
3881 (defun widget-alist-convert-option (option) | |
3882 ;; Convert a single alist option. | |
3883 (let (key-type value-type) | |
3884 (if (listp option) | |
3885 (let ((key (nth 0 option))) | |
3886 (setq value-type (nth 1 option)) | |
3887 (if (listp key) | |
3888 (setq key-type key) | |
3889 (setq key-type `(const ,key)))) | |
3890 (setq key-type `(const ,option) | |
3891 value-type widget-alist-value-type)) | |
3892 `(cons :format "Key: %v" ,key-type ,value-type))) | |
3893 | |
3894 | |
428 | 3895 (define-widget 'choice 'menu-choice |
3896 "A union of several sexp types." | |
3897 :tag "Choice" | |
3898 :format "%{%t%}: %[Value Menu%] %v" | |
3899 :button-prefix 'widget-push-button-prefix | |
3900 :button-suffix 'widget-push-button-suffix | |
3901 :prompt-value 'widget-choice-prompt-value) | |
3902 | |
3903 (defun widget-choice-prompt-value (widget prompt value unbound) | |
3904 "Make a choice." | |
3905 (let ((args (widget-get widget :args)) | |
3906 (completion-ignore-case (widget-get widget :case-fold)) | |
3907 current choices old) | |
4178 | 3908 ;; Find the first choice matching VALUE (if given): |
3909 (unless unbound | |
3910 (let ((look args)) | |
3911 (while look | |
3912 (if (widget-apply (car look) :match value) | |
3913 (setq old (car look) | |
3914 look nil) | |
3915 (setq look (cdr look))))) | |
3916 ;; If VALUE is invalid (it doesn't match any choice), discard it by | |
3917 ;; considering it unbound: | |
3918 (unless old | |
3919 (setq unbound t))) | |
3920 ;; Now offer the choice, providing the given default value when/where | |
3921 ;; appropriate: | |
3922 (while args | |
3923 (setq current (car args) | |
3924 args (cdr args)) | |
3925 (setq choices | |
3926 (cons (cons (widget-apply current :menu-tag-get) | |
3927 current) | |
3928 choices))) | |
428 | 3929 (setq current |
4178 | 3930 (let ((val (completing-read (concat prompt ": ") choices nil t |
3931 (when old | |
3932 (widget-apply old :menu-tag-get))))) | |
3933 (if (stringp val) ;; #### is this really needed ? --dvl | |
3934 (let ((try (try-completion val choices))) | |
3935 (when (stringp try) ;; #### and this ? --dvl | |
3936 (setq val try)) | |
3937 (cdr (assoc val choices))) | |
3938 nil))) | |
428 | 3939 (if current |
4178 | 3940 (widget-prompt-value current |
3941 (concat (widget-prompt-spaceify prompt) | |
3942 (widget-get current :tag)) | |
3943 (unless unbound | |
3944 (when (eq current old) value)) | |
3945 (or unbound (not (eq current old)))) | |
3946 (and (not unbound) value)))) | |
428 | 3947 |
3948 (define-widget 'radio 'radio-button-choice | |
1362 | 3949 "A set widget, selecting exactly one from many. |
3950 | |
3951 The parent of several `radio-button' widgets, one for each option." | |
428 | 3952 :tag "Choice" |
3953 :format "%{%t%}:\n%v" | |
3954 :prompt-value 'widget-choice-prompt-value) | |
3955 | |
3956 (define-widget 'repeat 'editable-list | |
3957 "A variable length homogeneous list." | |
3958 :tag "Repeat" | |
3959 :format "%{%t%}:\n%v%i\n") | |
3960 | |
3961 (define-widget 'set 'checklist | |
3962 "A list of members from a fixed set." | |
3963 :tag "Set" | |
3964 :format "%{%t%}:\n%v") | |
3965 | |
3966 (define-widget 'boolean 'toggle | |
3967 "To be nil or non-nil, that is the question." | |
3968 :tag "Boolean" | |
3969 :prompt-value 'widget-boolean-prompt-value | |
3970 :button-prefix 'widget-push-button-prefix | |
3971 :button-suffix 'widget-push-button-suffix | |
3972 :format "%{%t%}: %[Toggle%] %v\n" | |
3973 :on "on (non-nil)" | |
3974 :off "off (nil)") | |
3975 | |
3976 (defun widget-boolean-prompt-value (widget prompt value unbound) | |
3977 ;; Toggle a boolean. | |
4178 | 3978 (y-or-n-p (concat prompt ": "))) |
428 | 3979 |
3980 ;;; The `color' Widget. | |
3981 | |
1173 | 3982 ;; Fixme: match |
428 | 3983 (define-widget 'color 'editable-field |
3984 "Choose a color name (with sample)." | |
3985 :format "%[%t%]: %v (%{sample%})\n" | |
3986 :size 10 | |
3987 :tag "Color" | |
3988 :value "black" | |
3989 :complete 'widget-color-complete | |
3990 :sample-face-get 'widget-color-sample-face-get | |
3991 :notify 'widget-color-notify | |
3992 :action 'widget-color-action) | |
3993 | |
3994 (defun widget-color-complete (widget) | |
3995 "Complete the color in WIDGET." | |
3996 (let* ((prefix (buffer-substring-no-properties (widget-field-start widget) | |
3997 (point))) | |
3998 (list (read-color-completion-table)) | |
3999 (completion (try-completion prefix list))) | |
4000 (cond ((eq completion t) | |
1173 | 4001 (message "Exact match.")) |
428 | 4002 ((null completion) |
4003 (error "Can't find completion for \"%s\"" prefix)) | |
4004 ((not (string-equal prefix completion)) | |
4005 (insert (substring completion (length prefix)))) | |
4006 (t | |
4007 (message "Making completion list...") | |
1309 | 4008 (with-output-to-temp-buffer "*Completions*" |
4009 (display-completion-list (all-completions prefix list nil))) | |
428 | 4010 (message "Making completion list...done"))))) |
4011 | |
4012 (defun widget-color-sample-face-get (widget) | |
4013 (or (widget-get widget :sample-face) | |
4014 (let ((color (widget-value widget)) | |
4015 (face (make-face (gensym "sample-face-") nil t))) | |
4016 ;; Use the face object, not its name, to prevent lossage if gc | |
4017 ;; happens before applying the face. | |
4018 (widget-put widget :sample-face face) | |
4019 (and color | |
4020 (not (equal color "")) | |
4021 (valid-color-name-p color) | |
4022 (set-face-foreground face color)) | |
4023 face))) | |
4024 | |
4025 (defvar widget-color-history nil | |
4026 "History of entered colors.") | |
4027 | |
4028 (defun widget-color-action (widget &optional event) | |
1173 | 4029 "Prompt for a color." |
428 | 4030 (let* ((tag (widget-apply widget :menu-tag-get)) |
4031 (answer (read-color (concat tag ": ")))) | |
5366
f00192e1cd49
Examining the result of #'length: `eql', not `=', it's better style & cheaper
Aidan Kehoe <kehoea@parhasard.net>
parents:
4178
diff
changeset
|
4032 (unless (eql (length answer) 0) |
428 | 4033 (widget-value-set widget answer) |
4034 (widget-setup) | |
4035 (widget-apply widget :notify widget event)))) | |
4036 | |
4037 (defun widget-color-notify (widget child &optional event) | |
4038 "Update the sample, and notify the parent." | |
4039 (let* ((face (widget-apply widget :sample-face-get)) | |
4040 (color (widget-value widget))) | |
4041 (if (valid-color-name-p color) | |
4042 (set-face-foreground face color) | |
4043 (remove-face-property face 'foreground))) | |
4044 (widget-default-notify widget child event)) | |
4045 | |
1173 | 4046 ;;; The Help Echo |
4047 | |
428 | 4048 (defun widget-echo-help (pos) |
1173 | 4049 "Display the help-echo text for widget at POS." |
428 | 4050 (let* ((widget (widget-at pos)) |
4051 (help-echo (and widget (widget-get widget :help-echo)))) | |
1309 | 4052 (if (functionp help-echo) |
4053 (setq help-echo (funcall help-echo widget))) | |
4054 (if (stringp help-echo) | |
4055 (display-message 'help-echo help-echo)))) | |
428 | 4056 |
1833 | 4057 (define-widget 'lazy 'default |
4058 "Base widget for recursive datastructures. | |
4059 | |
4060 The `lazy' widget will, when instantiated, contain a single inferior | |
4061 widget, of the widget type specified by the :type parameter. The | |
4062 value of the `lazy' widget is the same as the value of the inferior | |
4063 widget. When deriving a new widget from the 'lazy' widget, the :type | |
4064 parameter is allowed to refer to the widget currently being defined, | |
4065 thus allowing recursive datastructures to be described. | |
4066 | |
4067 The:type parameter takes the same arguments as the defcustom | |
4068 parameter with the same name. | |
4069 | |
4070 Most composite widgets, i.e. widgets containing other widgets, does | |
4071 not allow recursion. That is, when you define a new widget type, none | |
4072 of the inferior widgets may be of the same type you are currently | |
4073 defining. | |
4074 | |
4075 In Lisp, however, it is custom to define datastructures in terms of | |
4076 themselves. A list, for example, is defined as either nil, or a cons | |
4077 cell whose cdr itself is a list. The obvious way to translate this | |
4078 into a widget type would be | |
4079 | |
4080 (define-widget 'my-list 'choice | |
4081 \"A list of sexps.\" | |
4082 :tag \"Sexp list\" | |
4083 :args '((const nil) (cons :value (nil) sexp my-list))) | |
4084 | |
4085 Here we attempt to define my-list as a choice of either the constant | |
4086 nil, or a cons-cell containing a sexp and my-lisp. This will not work | |
4087 because the `choice' widget does not allow recursion. | |
4088 | |
4178 | 4089 Using the `lazy' widget you can overcome this problem, as in this |
4090 example: | |
1833 | 4091 |
4092 (define-widget 'sexp-list 'lazy | |
4093 \"A list of sexps.\" | |
4094 :tag \"Sexp list\" | |
4095 :type '(choice (const nil) (cons :value (nil) sexp sexp-list)))" | |
4096 :format "%{%t%}: %v" | |
4097 ;; We don't convert :type because we want to allow recursive | |
4098 ;; datastructures. This is slow, so we should not create speed | |
4178 | 4099 ;; critical widgets by deriving from this. |
1833 | 4100 :convert-widget 'widget-value-convert-widget |
4101 :value-create 'widget-type-value-create | |
4102 :value-delete 'widget-children-value-delete | |
4103 :value-get 'widget-child-value-get | |
4104 :value-inline 'widget-child-value-inline | |
4105 :default-get 'widget-type-default-get | |
4106 :match 'widget-type-match | |
4107 :validate 'widget-child-validate) | |
4108 | |
4109 (defun widget-child-value-get (widget) | |
4110 "Get the value of the first member of :children in WIDGET." | |
4111 (widget-value (car (widget-get widget :children)))) | |
4112 | |
4113 (defun widget-child-value-inline (widget) | |
4114 "Get the inline value of the first member of :children in WIDGET." | |
4115 (widget-apply (car (widget-get widget :children)) :value-inline)) | |
4116 | |
4117 (defun widget-child-validate (widget) | |
4118 "The result of validating the first member of :children in WIDGET." | |
4119 (widget-apply (car (widget-get widget :children)) :validate)) | |
4120 | |
4121 (defun widget-type-value-create (widget) | |
4122 "Convert and instantiate the value of the :type attribute of WIDGET. | |
4123 Store the newly created widget in the :children attribute. | |
4124 | |
4125 The value of the :type attribute should be an unconverted widget type." | |
4126 (let ((value (widget-get widget :value)) | |
4127 (type (widget-get widget :type))) | |
4178 | 4128 (widget-put widget :children |
4129 (list (widget-create-child-value widget | |
4130 (widget-convert type) | |
4131 value))))) | |
1833 | 4132 |
4133 (defun widget-type-default-get (widget) | |
4134 "Get default value from the :type attribute of WIDGET. | |
4135 | |
4136 The value of the :type attribute should be an unconverted widget type." | |
4137 (widget-default-get (widget-convert (widget-get widget :type)))) | |
4138 | |
4139 (defun widget-type-match (widget value) | |
4140 "Non-nil if the :type value of WIDGET matches VALUE. | |
4141 | |
4142 The value of the :type attribute should be an unconverted widget type." | |
4143 (widget-apply (widget-convert (widget-get widget :type)) :match value)) | |
4144 | |
428 | 4145 ;;; The End: |
4146 | |
4147 (provide 'wid-edit) | |
4148 | |
1173 | 4149 ;;; wid-edit.el ends here |