diff options
| author | Dave Love | 2001-02-10 01:04:02 +0000 |
|---|---|---|
| committer | Dave Love | 2001-02-10 01:04:02 +0000 |
| commit | 976e00f1e4084e8d241e0e9a5aaaf835e0c36d74 (patch) | |
| tree | 208483db31fc1ca6f6125ac4574affcbc91efba0 | |
| parent | 684265eb7ceebff8964c02baed4455ac12cd8108 (diff) | |
| download | emacs-976e00f1e4084e8d241e0e9a5aaaf835e0c36d74.tar.gz emacs-976e00f1e4084e8d241e0e9a5aaaf835e0c36d74.zip | |
*** empty log message ***
| -rw-r--r-- | man/widget.texi | 30 |
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.} | |||
| 177 | See also @b{_other work_} for more information. | 177 | See also @b{_other work_} for more information. |
| 178 | 178 | ||
| 179 | Numbers: count to three below | 179 | Numbers: 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 | ||
| 185 | Select multiple: | 185 | Select multiple: |
| 186 | 186 | ||
| @@ -259,7 +259,7 @@ When you invoke one of these buttons, you will be asked to choose | |||
| 259 | between a number of different options. This is how you edit an option | 259 | between a number of different options. This is how you edit an option |
| 260 | field. Option fields are created by the @code{menu-choice} widget. In | 260 | field. Option fields are created by the @code{menu-choice} widget. In |
| 261 | the example, @samp{@b{Choose}} is an option field tag. | 261 | the 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 |
| 263 | Activating these will insert or delete elements from an editable list. | 263 | Activating these will insert or delete elements from an editable list. |
| 264 | The list is created by the @code{editable-list} widget. | 264 | The 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 |
| 1104 | This will be replaced with the buffer representation of the @var{type} | 1104 | This will be replaced with the buffer representation of the @var{type} |
| 1105 | widget. | 1105 | widget. |
| 1106 | @item %- | ||
| 1107 | Insert the @b{+/-} button. | ||
| 1108 | @item %i | 1106 | @item %i |
| 1109 | Insert the @b{+} button at the end of a list. | 1107 | Insert the @b{[INS]} button. |
| 1110 | @item %d | 1108 | @item %d |
| 1111 | Insert the @b{[DEL]} button. | 1109 | Insert the @b{[DEL]} button. |
| 1112 | @item %% | 1110 | @item %% |
| 1113 | Insert a literal @samp{%}. | 1111 | Insert 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 |
| 1118 | A list of keyword arguments to pass to the insert buttons. | 1116 | A 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. | |||
| 1711 | It should be possible to add or remove items from a list with @kbd{C-k} | 1709 | It should be possible to add or remove items from a list with @kbd{C-k} |
| 1712 | and @kbd{C-o} (suggested by @sc{rms}). | 1710 | and @kbd{C-o} (suggested by @sc{rms}). |
| 1713 | 1711 | ||
| 1712 | @item | ||
| 1713 | The @samp{[INS]} and @samp{[DEL]} buttons should be replaced by a single | ||
| 1714 | dash (@samp{-}). The dash should be a button that, when invoked, asks | ||
| 1715 | whether you want to add or delete an item (@sc{rms} wanted to git rid of | ||
| 1716 | the ugly buttons, the dash is my idea). | ||
| 1717 | |||
| 1714 | @item | 1718 | @item |
| 1715 | The @code{menu-choice} tag should be prettier, something like the abbreviated | 1719 | The @code{menu-choice} tag should be prettier, something like the abbreviated |
| 1716 | menus in Open Look. | 1720 | menus in Open Look. |
| @@ -1732,6 +1736,12 @@ Find a way to disable mouse highlight for inactive widgets. | |||
| 1732 | Find a way to make glyphs look inactive. | 1736 | Find a way to make glyphs look inactive. |
| 1733 | 1737 | ||
| 1734 | @item | 1738 | @item |
| 1739 | Add @code{property-list} widget. | ||
| 1740 | |||
| 1741 | @item | ||
| 1742 | Add @code{association-list} widget. | ||
| 1743 | |||
| 1744 | @item | ||
| 1735 | Add @code{key-binding} widget. | 1745 | Add @code{key-binding} widget. |
| 1736 | 1746 | ||
| 1737 | @item | 1747 | @item |