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