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