aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Djärv2006-10-12 06:37:11 +0000
committerJan Djärv2006-10-12 06:37:11 +0000
commitdb71197e331f65184a3a8e0a472b4fe3adf99fb6 (patch)
tree108036e9c918b5af21e653f9ba92bfd2d95932f8
parent94461c214f6e31fca97f605d549240f4ae165b85 (diff)
downloademacs-db71197e331f65184a3a8e0a472b4fe3adf99fb6.tar.gz
emacs-db71197e331f65184a3a8e0a472b4fe3adf99fb6.zip
2006-10-12 Roberto Rodr�ez <lanubeblanca@googlemail.com>
* widget.texi: Fix typos (tiny change)
-rw-r--r--man/ChangeLog4
-rw-r--r--man/widget.texi24
2 files changed, 16 insertions, 12 deletions
diff --git a/man/ChangeLog b/man/ChangeLog
index 060770c128e..8542e0c6067 100644
--- a/man/ChangeLog
+++ b/man/ChangeLog
@@ -1,3 +1,7 @@
12006-10-12 Roberto Rodr,Am(Bguez <lanubeblanca@googlemail.com>
2
3 * widget.texi: Fix typos (tiny change)
4
12006-10-11 Kim F. Storm <storm@cua.dk> 52006-10-11 Kim F. Storm <storm@cua.dk>
2 6
3 * emacs.texi (Acknowledgments): Use @dotless{i}. 7 * emacs.texi (Acknowledgments): Use @dotless{i}.
diff --git a/man/widget.texi b/man/widget.texi
index 8a49fd3dadd..e273d253fb3 100644
--- a/man/widget.texi
+++ b/man/widget.texi
@@ -158,7 +158,7 @@ it will be autoloaded when needed.
158@comment node-name, next, previous, up 158@comment node-name, next, previous, up
159@section User Interface 159@section User Interface
160 160
161A form consist of read only text for documentation and some fields, 161A form consists of read only text for documentation and some fields,
162where each field contains two parts, a tag and a value. The tags are 162where each field contains two parts, a tag and a value. The tags are
163used to identify the fields, so the documentation can refer to the 163used to identify the fields, so the documentation can refer to the
164@samp{foo field}, meaning the field tagged with @samp{Foo}. Here is an 164@samp{foo field}, meaning the field tagged with @samp{Foo}. Here is an
@@ -195,7 +195,7 @@ Select one:
195@b{[Apply Form]} @b{[Reset Form]} 195@b{[Apply Form]} @b{[Reset Form]}
196@end example 196@end example
197 197
198The top level widgets in is example are tagged @samp{Name}, 198The top level widgets in this example are tagged @samp{Name},
199@samp{Choose}, @samp{Address}, @samp{_other work_}, @samp{Numbers}, 199@samp{Choose}, @samp{Address}, @samp{_other work_}, @samp{Numbers},
200@samp{Select multiple}, @samp{Select one}, @samp{[Apply Form]}, and 200@samp{Select multiple}, @samp{Select one}, @samp{[Apply Form]}, and
201@samp{[Reset Form]}. There are basically two things the user can do 201@samp{[Reset Form]}. There are basically two things the user can do
@@ -277,19 +277,19 @@ The list is created by the @code{editable-list} widget.
277@cindex embedded buttons 277@cindex embedded buttons
278@item Embedded Buttons 278@item Embedded Buttons
279The @samp{@b{_other work_}} is an example of an embedded 279The @samp{@b{_other work_}} is an example of an embedded
280button. Embedded buttons are not associated with a fields, but can serve 280button. Embedded buttons are not associated with any fields, but can serve
281any purpose, such as implementing hypertext references. They are 281any purpose, such as implementing hypertext references. They are
282usually created by the @code{link} widget. 282usually created by the @code{link} widget.
283@item The @samp{@b{[ ]}} and @samp{@b{[X]}} buttons 283@item The @samp{@b{[ ]}} and @samp{@b{[X]}} buttons
284Activating one of these will convert it to the other. This is useful 284Activating one of these will convert it to the other. This is useful
285for implementing multiple-choice fields. You can create it with the 285for implementing multiple-choice fields. You can create them with the
286@code{checkbox} widget. 286@code{checkbox} widget.
287@item The @samp{@b{( )}} and @samp{@b{(*)}} buttons 287@item The @samp{@b{( )}} and @samp{@b{(*)}} buttons
288Only one radio button in a @code{radio-button-choice} widget can be 288Only one radio button in a @code{radio-button-choice} widget can be
289selected at any time. When you invoke one of the unselected radio 289selected at any time. When you invoke one of the unselected radio
290buttons, it will be selected and the previous selected radio button will 290buttons, it will be selected and the previous selected radio button will
291become unselected. 291become unselected.
292@item The @samp{@b{[Apply Form]}} @samp{@b{[Reset Form]}} buttons 292@item The @samp{@b{[Apply Form]}} and @samp{@b{[Reset Form]}} buttons
293These are explicit buttons made with the @code{push-button} widget. The 293These are explicit buttons made with the @code{push-button} widget. The
294main difference from the @code{link} widget is that the buttons will be 294main difference from the @code{link} widget is that the buttons will be
295displayed as GUI buttons when possible. 295displayed as GUI buttons when possible.
@@ -492,7 +492,7 @@ property, @var{argument} is the value of the property, and @var{args}
492are interpreted in a widget specific way. 492are interpreted in a widget specific way.
493 493
494@cindex keyword arguments 494@cindex keyword arguments
495The following keyword arguments that apply to all widgets: 495The following keyword arguments apply to all widgets:
496 496
497@table @code 497@table @code
498@vindex value@r{ keyword} 498@vindex value@r{ keyword}
@@ -807,7 +807,7 @@ TYPE ::= (editable-field [KEYWORD ARGUMENT]... [ VALUE ])
807@end example 807@end example
808 808
809The @var{value}, if present, is used to initialize the @code{:value} 809The @var{value}, if present, is used to initialize the @code{:value}
810property. The value should be a string, which will be inserted in 810property. The value should be a string, which will be inserted in the
811field. This widget will match all string values. 811field. This widget will match all string values.
812 812
813The following extra properties are recognized: 813The following extra properties are recognized:
@@ -1349,7 +1349,7 @@ second component. There must be exactly two components.
1349 1349
1350@deffn Widget list 1350@deffn Widget list
1351The value of a @code{list} widget is a list containing the value of 1351The value of a @code{list} widget is a list containing the value of
1352each of its component. 1352each of its components.
1353@end deffn 1353@end deffn
1354 1354
1355@deffn Widget vector 1355@deffn Widget vector
@@ -1359,11 +1359,11 @@ each of its component.
1359 1359
1360The above suffice for specifying fixed size lists and vectors. To get 1360The above suffice for specifying fixed size lists and vectors. To get
1361variable length lists and vectors, you can use a @code{choice}, 1361variable length lists and vectors, you can use a @code{choice},
1362@code{set}, or @code{repeat} widgets together with the @code{:inline} 1362@code{set}, or @code{repeat} widget together with the @code{:inline}
1363keywords. If any component of a composite widget has the @code{:inline} 1363keyword. If any component of a composite widget has the @code{:inline}
1364keyword set, its value must be a list which will then be spliced into 1364keyword set, its value must be a list which will then be spliced into
1365the composite. For example, to specify a list whose first element must 1365the composite. For example, to specify a list whose first element must
1366be a file name, and whose remaining arguments should either by the 1366be a file name, and whose remaining arguments should either be the
1367symbol @code{t} or two files, you can use the following widget 1367symbol @code{t} or two files, you can use the following widget
1368specification: 1368specification:
1369 1369
@@ -1390,7 +1390,7 @@ and has a similar syntax.
1390 1390
1391@deffn Widget set 1391@deffn Widget set
1392Allows you to specify a type which must be a list whose elements all 1392Allows you to specify a type which must be a list whose elements all
1393belong to given set. The elements of the list are not significant. 1393belong to the given set. The elements of the list are not significant.
1394This is implemented on top of the @code{checklist} basic widget, and has 1394This is implemented on top of the @code{checklist} basic widget, and has
1395a similar syntax. 1395a similar syntax.
1396@end deffn 1396@end deffn