comparison man/widget.texi @ 904:47c30044fc4e

[xemacs-hg @ 2002-07-06 18:56:24 by adrian] [R21.4] [PATCH] xemacs-21.5: Fix improper use of indef. art. "a" -------------------- ChangeLog entries follow: -------------------- man/ChangeLog addition: 2002-07-06 Adrian Aichner <adrian@xemacs.org> * new-users-guide/custom1.texi (Customizing key Bindings): Fix improper use of indef. art. "a". 2002-07-06 Adrian Aichner <adrian@xemacs.org> * lispref/commands.texi (Peeking and Discarding): Ditto. * lispref/customize.texi (Type Keywords): Ditto. * lispref/dragndrop.texi (Drop Interface): Ditto. 2002-07-06 Adrian Aichner <adrian@xemacs.org> * termcap.texi (Clearing): Ditto. * widget.texi (User Interface): Ditto. * widget.texi (Basic Types): Ditto. * widget.texi (group): Ditto.
author adrian
date Sat, 06 Jul 2002 18:56:31 +0000
parents 37e56e920ac5
children c1553814932e
comparison
equal deleted inserted replaced
903:4a27df428c73 904:47c30044fc4e
128 128
129 @node User Interface, Programming Example, Introduction, Top 129 @node User Interface, Programming Example, Introduction, Top
130 @comment node-name, next, previous, up 130 @comment node-name, next, previous, up
131 @section User Interface 131 @section User Interface
132 132
133 A form consist of read only text for documentation and some fields, 133 A form consists of read only text for documentation and some fields,
134 where each the fields contain two parts, as tag and a value. The tags 134 where each of the fields contains two parts, a tag and a value. The
135 are used to identify the fields, so the documentation can refer to the 135 tags are used to identify the fields, so the documentation can refer to
136 foo field, meaning the field tagged with @samp{Foo}. Here is an example 136 the foo field, meaning the field tagged with @samp{Foo}. Here is an
137 form: 137 example form:
138 138
139 @example 139 @example
140 Here is some documentation. 140 Here is some documentation.
141 141
142 Name: @i{My Name} @strong{Choose}: This option 142 Name: @i{My Name} @strong{Choose}: This option
224 When you invoke one of these buttons, you will be asked to choose 224 When you invoke one of these buttons, you will be asked to choose
225 between a number of different options. This is how you edit an option 225 between a number of different options. This is how you edit an option
226 field. Option fields are created by the @code{menu-choice} widget. In 226 field. Option fields are created by the @code{menu-choice} widget. In
227 the example, @samp{@b{Choose}} is an option field tag. 227 the example, @samp{@b{Choose}} is an option field tag.
228 @item The @samp{@b{[INS]}} and @samp{@b{[DEL]}} buttons. 228 @item The @samp{@b{[INS]}} and @samp{@b{[DEL]}} buttons.
229 Activating these will insert or delete elements from a editable list. 229 Activating these will insert or delete elements from an editable list.
230 The list is created by the @code{editable-list} widget. 230 The list is created by the @code{editable-list} widget.
231 @item Embedded Buttons. 231 @item Embedded Buttons.
232 The @samp{@b{_other work_}} is an example of an embedded 232 The @samp{@b{_other work_}} is an example of an embedded
233 button. Embedded buttons are not associated with a fields, but can serve 233 button. Embedded buttons are not associated with a fields, but can serve
234 any purpose, such as implementing hypertext references. They are 234 any purpose, such as implementing hypertext references. They are
591 in the buffer with a positive tabbing order, or @code{nil} 591 in the buffer with a positive tabbing order, or @code{nil}
592 @end enumerate 592 @end enumerate
593 593
594 @item :parent 594 @item :parent
595 The parent of a nested widget (e.g. a @code{menu-choice} item or an 595 The parent of a nested widget (e.g. a @code{menu-choice} item or an
596 element of a @code{editable-list} widget). 596 element of an @code{editable-list} widget).
597 597
598 @item :sibling-args 598 @item :sibling-args
599 This keyword is only used for members of a @code{radio-button-choice} or 599 This keyword is only used for members of a @code{radio-button-choice} or
600 @code{checklist}. The value should be a list of extra keyword 600 @code{checklist}. The value should be a list of extra keyword
601 arguments, which will be used when creating the @code{radio-button} or 601 arguments, which will be used when creating the @code{radio-button} or
1029 1029
1030 @node group, , editable-list, Basic Types 1030 @node group, , editable-list, Basic Types
1031 @comment node-name, next, previous, up 1031 @comment node-name, next, previous, up
1032 @subsection The @code{group} Widget 1032 @subsection The @code{group} Widget
1033 1033
1034 This widget simply groups other widget together. 1034 This widget simply groups other widgets together.
1035 1035
1036 Syntax: 1036 Syntax:
1037 1037
1038 @example 1038 @example
1039 TYPE ::= (group [KEYWORD ARGUMENT]... TYPE...) 1039 TYPE ::= (group [KEYWORD ARGUMENT]... TYPE...)