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