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