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