aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2001-02-10 01:04:02 +0000
committerDave Love2001-02-10 01:04:02 +0000
commit976e00f1e4084e8d241e0e9a5aaaf835e0c36d74 (patch)
tree208483db31fc1ca6f6125ac4574affcbc91efba0
parent684265eb7ceebff8964c02baed4455ac12cd8108 (diff)
downloademacs-976e00f1e4084e8d241e0e9a5aaaf835e0c36d74.tar.gz
emacs-976e00f1e4084e8d241e0e9a5aaaf835e0c36d74.zip
*** empty log message ***
-rw-r--r--man/widget.texi30
1 files changed, 20 insertions, 10 deletions
diff --git a/man/widget.texi b/man/widget.texi
index 2b29df5750f..41446a21e77 100644
--- a/man/widget.texi
+++ b/man/widget.texi
@@ -177,10 +177,10 @@ Some country.}
177See also @b{_other work_} for more information. 177See also @b{_other work_} for more information.
178 178
179Numbers: count to three below 179Numbers: count to three below
180@b{+/-} @i{One} 180@b{[INS]} @b{[DEL]} @i{One}
181@b{+/-} @i{Eh, two?} 181@b{[INS]} @b{[DEL]} @i{Eh, two?}
182@b{+/-} @i{Five!} 182@b{[INS]} @b{[DEL]} @i{Five!}
183@b{+} 183@b{[INS]}
184 184
185Select multiple: 185Select multiple:
186 186
@@ -259,7 +259,7 @@ When you invoke one of these buttons, you will be asked to choose
259between a number of different options. This is how you edit an option 259between a number of different options. This is how you edit an option
260field. Option fields are created by the @code{menu-choice} widget. In 260field. Option fields are created by the @code{menu-choice} widget. In
261the example, @samp{@b{Choose}} is an option field tag. 261the example, @samp{@b{Choose}} is an option field tag.
262@item The @samp{@b{+/-}} buttons 262@item The @samp{@b{[INS]}} and @samp{@b{[DEL]}} buttons
263Activating these will insert or delete elements from an editable list. 263Activating these will insert or delete elements from an editable list.
264The list is created by the @code{editable-list} widget. 264The list is created by the @code{editable-list} widget.
265@cindex embedded buttons 265@cindex embedded buttons
@@ -1103,18 +1103,16 @@ The following @samp{%} escapes are available:
1103@item %v 1103@item %v
1104This will be replaced with the buffer representation of the @var{type} 1104This will be replaced with the buffer representation of the @var{type}
1105widget. 1105widget.
1106@item %-
1107Insert the @b{+/-} button.
1108@item %i 1106@item %i
1109Insert the @b{+} button at the end of a list. 1107Insert the @b{[INS]} button.
1110@item %d 1108@item %d
1111Insert the @b{[DEL]} button. 1109Insert the @b{[DEL]} button.
1112@item %% 1110@item %%
1113Insert a literal @samp{%}. 1111Insert a literal @samp{%}.
1114@end table 1112@end table
1115 1113
1116@vindex insert/delete-button-args@r{ keyword} 1114@vindex insert-button-args@r{ keyword}
1117@item :insert/delete-button-args 1115@item :insert-button-args
1118A list of keyword arguments to pass to the insert buttons. 1116A list of keyword arguments to pass to the insert buttons.
1119 1117
1120@vindex delete-button-args@r{ keyword} 1118@vindex delete-button-args@r{ keyword}
@@ -1711,6 +1709,12 @@ This is only meaningful for radio buttons or checkboxes in a list.
1711It should be possible to add or remove items from a list with @kbd{C-k} 1709It should be possible to add or remove items from a list with @kbd{C-k}
1712and @kbd{C-o} (suggested by @sc{rms}). 1710and @kbd{C-o} (suggested by @sc{rms}).
1713 1711
1712@item
1713The @samp{[INS]} and @samp{[DEL]} buttons should be replaced by a single
1714dash (@samp{-}). The dash should be a button that, when invoked, asks
1715whether you want to add or delete an item (@sc{rms} wanted to git rid of
1716the ugly buttons, the dash is my idea).
1717
1714@item 1718@item
1715The @code{menu-choice} tag should be prettier, something like the abbreviated 1719The @code{menu-choice} tag should be prettier, something like the abbreviated
1716menus in Open Look. 1720menus in Open Look.
@@ -1732,6 +1736,12 @@ Find a way to disable mouse highlight for inactive widgets.
1732Find a way to make glyphs look inactive. 1736Find a way to make glyphs look inactive.
1733 1737
1734@item 1738@item
1739Add @code{property-list} widget.
1740
1741@item
1742Add @code{association-list} widget.
1743
1744@item
1735Add @code{key-binding} widget. 1745Add @code{key-binding} widget.
1736 1746
1737@item 1747@item