annotate man/widget.texi @ 136:b980b6286996 r20-2b2

Import from CVS: tag r20-2b2
author cvs
date Mon, 13 Aug 2007 09:31:12 +0200
parents 34a5b81f86ba
children 538048ae2ab8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1 \input texinfo.tex
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
2
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
3 @c %**start of header
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
4 @setfilename widget
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
5 @settitle The Emacs Widget Library
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
6 @iftex
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
7 @afourpaper
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
8 @headings double
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
9 @end iftex
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
10 @c %**end of header
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
11
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
12 @node Top, Introduction, (dir), (dir)
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
13 @comment node-name, next, previous, up
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
14 @top The Emacs Widget Library
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
15
136
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
16 Version: 1.84
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
17
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
18 @menu
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
19 * Introduction::
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
20 * User Interface::
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
21 * Programming Example::
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
22 * Setting Up the Buffer::
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
23 * Basic Types::
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
24 * Sexp Types::
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
25 * Widget Properties::
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
26 * Defining New Widgets::
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
27 * Widget Wishlist.::
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
28 @end menu
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
29
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
30 @node Introduction, User Interface, Top, Top
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
31 @comment node-name, next, previous, up
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
32 @section Introduction
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
33
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
34 Most graphical user interface toolkits, such as Motif and XView, provide
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
35 a number of standard user interface controls (sometimes known as
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
36 `widgets' or `gadgets'). Emacs doesn't really support anything like
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
37 this, except for an incredible powerful text ``widget''. On the other
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
38 hand, Emacs does provide the necessary primitives to implement many
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
39 other widgets within a text buffer. The @code{widget} package
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
40 simplifies this task.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
41
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
42 The basic widgets are:
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
43
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
44 @table @code
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
45 @item link
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
46 Areas of text with an associated action. Intended for hypertext links
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
47 embedded in text.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
48 @item push-button
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
49 Like link, but intended for stand-alone buttons.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
50 @item editable-field
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
51 An editable text field. It can be either variable or fixed length.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
52 @item menu-choice
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
53 Allows the user to choose one of multiple options from a menu, each
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
54 option is itself a widget. Only the selected option will be visible in
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
55 the buffer.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
56 @item radio-button-choice
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
57 Allows the user to choose one of multiple options by pushing radio
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
58 buttons. The options are implemented as widgets. All options will be
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
59 visible in the buffer.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
60 @item item
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
61 A simple constant widget intended to be used in the @code{menu-choice} and
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
62 @code{radio-button-choice} widgets.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
63 @item choice-item
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
64 An button item only intended for use in choices. When pushed, the user
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
65 will be asked to select another option from the choice widget.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
66 @item toggle
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
67 A simple @samp{on}/@samp{off} switch.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
68 @item checkbox
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
69 A checkbox (@samp{[ ]}/@samp{[X]}).
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
70 @item editable-list
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
71 Create an editable list. The user can insert or delete items in the
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
72 list. Each list item is itself a widget.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
73 @end table
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
74
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
75 Now of what possible use can support for widgets be in a text editor?
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
76 I'm glad you asked. The answer is that widgets are useful for
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
77 implementing forms. A @dfn{form} in emacs is a buffer where the user is
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
78 supposed to fill out a number of fields, each of which has a specific
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
79 meaning. The user is not supposed to change or delete any of the text
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
80 between the fields. Examples of forms in Emacs are the @file{forms}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
81 package (of course), the customize buffers, the mail and news compose
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
82 modes, and the @sc{html} form support in the @file{w3} browser.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
83
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
84 The advantages for a programmer of using the @code{widget} package to
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
85 implement forms are:
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
86
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
87 @enumerate
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
88 @item
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
89 More complex field than just editable text are supported.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
90 @item
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
91 You can give the user immediate feedback if he enters invalid data in a
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
92 text field, and sometimes prevent entering invalid data.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
93 @item
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
94 You can have fixed sized fields, thus allowing multiple field to be
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
95 lined up in columns.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
96 @item
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
97 It is simple to query or set the value of a field.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
98 @item
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
99 Editing happens in buffer, not in the mini-buffer.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
100 @item
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
101 Packages using the library get a uniform look, making them easier for
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
102 the user to learn.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
103 @item
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
104 As support for embedded graphics improve, the widget library will
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
105 extended to support it. This means that your code using the widget
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
106 library will also use the new graphic features by automatic.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
107 @end enumerate
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
108
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
109 In order to minimize the code that is loaded by users who does not
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
110 create any widgets, the code has been split in two files:
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
111
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
112 @table @file
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
113 @item widget.el
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
114 This will declare the user variables, define the function
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
115 @code{widget-define}, and autoload the function @code{widget-create}.
106
8ff55ebd4be9 Import from CVS: tag r20-1b5
cvs
parents: 102
diff changeset
116 @item wid-edit.el
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
117 Everything else is here, there is no reason to load it explicitly, as
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
118 it will be autoloaded when needed.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
119 @end table
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
120
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
121 @node User Interface, Programming Example, Introduction, Top
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
122 @comment node-name, next, previous, up
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
123 @section User Interface
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
124
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
125 A form consist of read only text for documentation and some fields,
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
126 where each the fields contain two parts, as tag and a value. The tags
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
127 are used to identify the fields, so the documentation can refer to the
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
128 foo field, meaning the field tagged with @samp{Foo}. Here is an example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
129 form:
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
130
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
131 @example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
132 Here is some documentation.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
133
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
134 Name: @i{My Name} @strong{Choose}: This option
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
135 Address: @i{Some Place
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
136 In some City
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
137 Some country.}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
138
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
139 See also @b{_other work_} for more information.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
140
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
141 Numbers: count to three below
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
142 @b{[INS]} @b{[DEL]} @i{One}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
143 @b{[INS]} @b{[DEL]} @i{Eh, two?}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
144 @b{[INS]} @b{[DEL]} @i{Five!}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
145 @b{[INS]}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
146
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
147 Select multiple:
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
148
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
149 @b{[X]} This
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
150 @b{[ ]} That
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
151 @b{[X]} Thus
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
152
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
153 Select one:
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
154
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
155 @b{(*)} One
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
156 @b{( )} Another One.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
157 @b{( )} A Final One.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
158
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
159 @b{[Apply Form]} @b{[Reset Form]}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
160 @end example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
161
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
162 The top level widgets in is example are tagged @samp{Name},
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
163 @samp{Choose}, @samp{Address}, @samp{_other work_}, @samp{Numbers},
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
164 @samp{Select multiple}, @samp{Select one}, @samp{[Apply Form]}, and
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
165 @samp{[Reset Form]}. There are basically two thing the user can do within
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
166 a form, namely editing the editable text fields and activating the
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
167 buttons.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
168
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
169 @subsection Editable Text Fields
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
170
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
171 In the example, the value for the @samp{Name} is most likely displayed
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
172 in an editable text field, and so are values for each of the members of
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
173 the @samp{Numbers} list. All the normal Emacs editing operations are
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
174 available for editing these fields. The only restriction is that each
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
175 change you make must be contained within a single editable text field.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
176 For example, capitalizing all text from the middle of one field to the
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
177 middle of another field is prohibited.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
178
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
179 Editing text fields are created by the @code{editable-field} widget.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
180
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
181 The editing text fields are highlighted with the
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
182 @code{widget-field-face} face, making them easy to find.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
183
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
184 @deffn Face widget-field-face
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
185 Face used for other editing fields.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
186 @end deffn
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
187
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
188 @subsection Buttons
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
189
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
190 Some portions of the buffer have an associated @dfn{action}, which can
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
191 be @dfn{activated} by a standard key or mouse command. These portions
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
192 are called @dfn{buttons}. The default commands for activating a button
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
193 are:
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
194
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
195 @table @kbd
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
196 @item @key{RET}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
197 @deffn Command widget-button-press @var{pos} &optional @var{event}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
198 Activate the button at @var{pos}, defaulting to point.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
199 If point is not located on a button, activate the binding in
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
200 @code{widget-global-map} (by default the global map).
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
201 @end deffn
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
202
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
203 @item mouse-2
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
204 @deffn Command widget-button-click @var{event}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
205 Activate the button at the location of the mouse pointer. If the mouse
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
206 pointer is located in an editable text field, activate the binding in
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
207 @code{widget-global-map} (by default the global map).
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
208 @end deffn
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
209 @end table
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
210
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
211 There are several different kind of buttons, all of which are present in
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
212 the example:
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
213
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
214 @table @emph
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
215 @item The Option Field Tags.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
216 When you activate one of these buttons, you will be asked to choose
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
217 between a number of different options. This is how you edit an option
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
218 field. Option fields are created by the @code{menu-choice} widget. In
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
219 the example, @samp{@b{Choose}} is an option field tag.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
220 @item The @samp{@b{[INS]}} and @samp{@b{[DEL]}} buttons.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
221 Activating these will insert or delete elements from a editable list.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
222 The list is created by the @code{editable-list} widget.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
223 @item Embedded Buttons.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
224 The @samp{@b{_other work_}} is an example of an embedded
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
225 button. Embedded buttons are not associated with a fields, but can serve
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
226 any purpose, such as implementing hypertext references. They are
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
227 usually created by the @code{link} widget.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
228 @item The @samp{@b{[ ]}} and @samp{@b{[X]}} buttons.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
229 Activating one of these will convert it to the other. This is useful
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
230 for implementing multiple-choice fields. You can create it wit
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
231 @item The @samp{@b{( )}} and @samp{@b{(*)}} buttons.
136
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
232 Only one radio button in a @code{radio-button-choice} widget can be selected at any
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
233 time. When you push one of the unselected radio buttons, it will be
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
234 selected and the previous selected radio button will become unselected.
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
235 @item The @samp{@b{[Apply Form]}} @samp{@b{[Reset Form]}} buttons.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
236 These are explicit buttons made with the @code{push-button} widget. The main
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
237 difference from the @code{link} widget is that the buttons are will be
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
238 displayed as GUI buttons when possible.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
239 enough.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
240 @end table
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
241
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
242 To make them easier to locate, buttons are emphasized in the buffer.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
243
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
244 @deffn Face widget-button-face
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
245 Face used for buttons.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
246 @end deffn
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
247
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
248 @defopt widget-mouse-face
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
249 Face used for buttons when the mouse pointer is above it.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
250 @end defopt
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
251
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
252 @subsection Navigation
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
253
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
254 You can use all the normal Emacs commands to move around in a form
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
255 buffer, plus you will have these additional commands:
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
256
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
257 @table @kbd
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
258 @item @key{TAB}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
259 @deffn Command widget-forward &optional count
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
260 Move point @var{count} buttons or editing fields forward.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
261 @end deffn
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
262 @item @key{M-TAB}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
263 @deffn Command widget-backward &optional count
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
264 Move point @var{count} buttons or editing fields backward.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
265 @end deffn
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
266 @end table
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
267
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
268 @node Programming Example, Setting Up the Buffer, User Interface, Top
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
269 @comment node-name, next, previous, up
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
270 @section Programming Example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
271
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
272 Here is the code to implement the user interface example (see @ref{User
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
273 Interface}).
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
274
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
275 @lisp
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
276 (require 'widget)
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
277
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
278 (eval-when-compile
106
8ff55ebd4be9 Import from CVS: tag r20-1b5
cvs
parents: 102
diff changeset
279 (require 'wid-edit))
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
280
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
281 (defvar widget-example-repeat)
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
282
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
283 (defun widget-example ()
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
284 "Create the widgets from the Widget manual."
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
285 (interactive)
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
286 (switch-to-buffer "*Widget Example*")
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
287 (kill-all-local-variables)
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
288 (make-local-variable 'widget-example-repeat)
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
289 (let ((inhibit-read-only t))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
290 (erase-buffer))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
291 (widget-insert "Here is some documentation.\n\nName: ")
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
292 (widget-create 'editable-field
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
293 :size 13
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
294 "My Name")
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
295 (widget-create 'menu-choice
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
296 :tag "Choose"
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
297 :value "This"
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
298 :help-echo "Choose me, please!"
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
299 :notify (lambda (widget &rest ignore)
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
300 (message "%s is a good choice!"
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
301 (widget-value widget)))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
302 '(item :tag "This option" :value "This")
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
303 '(choice-item "That option")
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
304 '(editable-field :menu-tag "No option" "Thus option"))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
305 (widget-insert "Address: ")
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
306 (widget-create 'editable-field
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
307 "Some Place\nIn some City\nSome country.")
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
308 (widget-insert "\nSee also ")
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
309 (widget-create 'link
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
310 :notify (lambda (&rest ignore)
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
311 (widget-value-set widget-example-repeat
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
312 '("En" "To" "Tre"))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
313 (widget-setup))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
314 "other work")
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
315 (widget-insert " for more information.\n\nNumbers: count to three below\n")
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
316 (setq widget-example-repeat
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
317 (widget-create 'editable-list
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
318 :entry-format "%i %d %v"
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
319 :notify (lambda (widget &rest ignore)
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
320 (let ((old (widget-get widget
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
321 ':example-length))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
322 (new (length (widget-value widget))))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
323 (unless (eq old new)
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
324 (widget-put widget ':example-length new)
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
325 (message "You can count to %d." new))))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
326 :value '("One" "Eh, two?" "Five!")
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
327 '(editable-field :value "three")))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
328 (widget-insert "\n\nSelect multiple:\n\n")
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
329 (widget-create 'checkbox t)
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
330 (widget-insert " This\n")
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
331 (widget-create 'checkbox nil)
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
332 (widget-insert " That\n")
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
333 (widget-create 'checkbox
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
334 :notify (lambda (&rest ignore) (message "Tickle"))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
335 t)
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
336 (widget-insert " Thus\n\nSelect one:\n\n")
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
337 (widget-create 'radio-button-choice
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
338 :value "One"
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
339 :notify (lambda (widget &rest ignore)
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
340 (message "You selected %s"
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
341 (widget-value widget)))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
342 '(item "One") '(item "Anthor One.") '(item "A Final One."))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
343 (widget-insert "\n")
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
344 (widget-create 'push-button
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
345 :notify (lambda (&rest ignore)
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
346 (if (= (length (widget-value widget-example-repeat))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
347 3)
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
348 (message "Congratulation!")
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
349 (error "Three was the count!")))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
350 "Apply Form")
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
351 (widget-insert " ")
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
352 (widget-create 'push-button
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
353 :notify (lambda (&rest ignore)
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
354 (widget-example))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
355 "Reset Form")
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
356 (widget-insert "\n")
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
357 (use-local-map widget-keymap)
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
358 (widget-setup))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
359 @end lisp
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
360
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
361 @node Setting Up the Buffer, Basic Types, Programming Example, Top
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
362 @comment node-name, next, previous, up
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
363 @section Setting Up the Buffer
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
364
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
365 Widgets are created with @code{widget-create}, which returns a
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
366 @dfn{widget} object. This object can be queried and manipulated by
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
367 other widget functions, until it is deleted with @code{widget-delete}.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
368 After the widgets have been created, @code{widget-setup} must be called
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
369 to enable them.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
370
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
371 @defun widget-create type [ keyword argument ]@dots{}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
372 Create and return a widget of type @var{type}.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
373 The syntax for the @var{type} argument is described in @ref{Basic Types}.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
374
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
375 The keyword arguments can be used to overwrite the keyword arguments
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
376 that are part of @var{type}.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
377 @end defun
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
378
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
379 @defun widget-delete widget
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
380 Delete @var{widget} and remove it from the buffer.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
381 @end defun
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
382
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
383 @defun widget-setup
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
384 Setup a buffer to support widgets.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
385
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
386 This should be called after creating all the widgets and before allowing
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
387 the user to edit them.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
388 @refill
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
389 @end defun
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
390
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
391 If you want to insert text outside the widgets in the form, the
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
392 recommended way to do that is with @code{widget-insert}.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
393
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
394 @defun widget-insert
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
395 Insert the arguments, either strings or characters, at point.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
396 The inserted text will be read only.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
397 @end defun
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
398
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
399 There is a standard widget keymap which you might find useful.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
400
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
401 @defvr Const widget-keymap
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
402 A keymap with the global keymap as its parent.@*
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
403 @key{TAB} and @kbd{C-@key{TAB}} are bound to @code{widget-forward} and
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
404 @code{widget-backward}, respectively. @kbd{@key{RET}} and @kbd{mouse-2}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
405 are bound to @code{widget-button-press} and
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
406 @code{widget-button-}.@refill
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
407 @end defvr
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
408
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
409 @defvar widget-global-map
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
410 Keymap used by @code{widget-button-press} and @code{widget-button-click}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
411 when not on a button. By default this is @code{global-map}.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
412 @end defvar
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
413
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
414 @node Basic Types, Sexp Types, Setting Up the Buffer, Top
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
415 @comment node-name, next, previous, up
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
416 @section Basic Types
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
417
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
418 The syntax of a type specification is given below:
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
419
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
420 @example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
421 NAME ::= (NAME [KEYWORD ARGUMENT]... ARGS)
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
422 | NAME
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
423 @end example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
424
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
425 Where, @var{name} is a widget name, @var{keyword} is the name of a
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
426 property, @var{argument} is the value of the property, and @var{args}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
427 are interpreted in a widget specific way.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
428
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
429 There following keyword arguments that apply to all widgets:
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
430
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
431 @table @code
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
432 @item :value
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
433 The initial value for widgets of this type.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
434
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
435 @item :format
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
436 This string will be inserted in the buffer when you create a widget.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
437 The following @samp{%} escapes are available:
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
438
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
439 @table @samp
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
440 @item %[
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
441 @itemx %]
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
442 The text inside will be marked as a button.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
443
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
444 @item %@{
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
445 @itemx %@}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
446 The text inside will be displayed with the face specified by
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
447 @code{:sample-face}.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
448
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
449 @item %v
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
450 This will be replaces with the buffer representation of the widgets
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
451 value. What this is depends on the widget type.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
452
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
453 @item %d
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
454 Insert the string specified by @code{:doc} here.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
455
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
456 @item %h
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
457 Like @samp{%d}, with the following modifications: If the documentation
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
458 string is more than one line, it will add a button which will toggle
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
459 between showing only the first line, and showing the full text.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
460 Furthermore, if there is no @code{:doc} property in the widget, it will
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
461 instead examine the @code{:documentation-property} property. If it is a
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
462 lambda expression, it will be called with the widget's value as an
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
463 argument, and the result will be used as the documentation text.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
464
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
465 @item %t
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
466 Insert the string specified by @code{:tag} here, or the @code{princ}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
467 representation of the value if there is no tag.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
468
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
469 @item %%
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
470 Insert a literal @samp{%}.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
471 @end table
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
472
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
473 @item :button-face
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
474 Face used to highlight text inside %[ %] in the format.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
475
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
476 @item :doc
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
477 The string inserted by the @samp{%d} escape in the format
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
478 string.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
479
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
480 @item :tag
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
481 The string inserted by the @samp{%t} escape in the format
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
482 string.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
483
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
484 @item :tag-glyph
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
485 Name of image to use instead of the string specified by `:tag' on
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
486 Emacsen that supports it.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
487
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
488 @item :help-echo
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
489 Message displayed whenever you move to the widget with either
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
490 @code{widget-forward} or @code{widget-backward}.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
491
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
492 @item :indent
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
493 An integer indicating the absolute number of spaces to indent children
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
494 of this widget.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
495
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
496 @item :offset
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
497 An integer indicating how many extra spaces to add to the widget's
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
498 grandchildren compared to this widget.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
499
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
500 @item :extra-offset
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
501 An integer indicating how many extra spaces to add to the widget's
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
502 children compared to this widget.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
503
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
504 @item :notify
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
505 A function called each time the widget or a nested widget is changed.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
506 The function is called with two or three arguments. The first argument
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
507 is the widget itself, the second argument is the widget that was
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
508 changed, and the third argument is the event leading to the change, if
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
509 any.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
510
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
511 @item :menu-tag
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
512 Tag used in the menu when the widget is used as an option in a
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
513 @code{menu-choice} widget.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
514
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
515 @item :menu-tag-get
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
516 Function used for finding the tag when the widget is used as an option
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
517 in a @code{menu-choice} widget. By default, the tag used will be either the
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
518 @code{:menu-tag} or @code{:tag} property if present, or the @code{princ}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
519 representation of the @code{:value} property if not.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
520
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
521 @item :match
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
522 Should be a function called with two arguments, the widget and a value,
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
523 and returning non-nil if the widget can represent the specified value.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
524
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
525 @item :validate
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
526 A function which takes a widget as an argument, and return nil if the
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
527 widgets current value is valid for the widget. Otherwise, it should
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
528 return the widget containing the invalid data, and set that widgets
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
529 @code{:error} property to a string explaining the error.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
530
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
531 @item :tab-order
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
532 Specify the order in which widgets are traversed with
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
533 @code{widget-forward} or @code{widget-backward}. This is only partially
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
534 implemented.
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
535
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
536 @enumerate a
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
537 @item
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
538 Widgets with tabbing order @code{-1} are ignored.
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
539
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
540 @item
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
541 (Unimplemented) When on a widget with tabbing order @var{n}, go to the
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
542 next widget in the buffer with tabbing order @var{n+1} or @code{nil},
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
543 whichever comes first.
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
544
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
545 @item
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
546 When on a widget with no tabbing order specified, go to the next widget
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
547 in the buffer with a positive tabbing order, or @code{nil}
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
548 @end enumerate
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
549
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
550 @item :parent
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
551 The parent of a nested widget (e.g. a @code{menu-choice} item or an
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
552 element of a @code{editable-list} widget).
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
553
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
554 @item :sibling-args
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
555 This keyword is only used for members of a @code{radio-button-choice} or
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
556 @code{checklist}. The value should be a list of extra keyword
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
557 arguments, which will be used when creating the @code{radio-button} or
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
558 @code{checkbox} associated with this item.
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
559
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
560 @end table
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
561
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
562 @deffn {User Option} widget-glyph-directory
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
563 Directory where glyphs are found.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
564 Widget will look here for a file with the same name as specified for the
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
565 image, with either a @samp{.xpm} (if supported) or @samp{.xbm} extension.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
566 @end deffn
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
567
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
568 @deffn{User Option} widget-glyph-enable
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
569 If non-nil, allow glyphs to appear on displayes where they are supported.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
570 @end deffn
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
571
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
572
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
573 @menu
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
574 * link::
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
575 * url-link::
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
576 * info-link::
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
577 * push-button::
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
578 * editable-field::
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
579 * text::
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
580 * menu-choice::
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
581 * radio-button-choice::
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
582 * item::
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
583 * choice-item::
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
584 * toggle::
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
585 * checkbox::
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
586 * checklist::
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
587 * editable-list::
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
588 @end menu
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
589
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
590 @node link, url-link, Basic Types, Basic Types
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
591 @comment node-name, next, previous, up
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
592 @subsection The @code{link} Widget
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
593
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
594 Syntax:
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
595
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
596 @example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
597 TYPE ::= (link [KEYWORD ARGUMENT]... [ VALUE ])
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
598 @end example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
599
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
600 The @var{value}, if present, is used to initialize the @code{:value}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
601 property. The value should be a string, which will be inserted in the
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
602 buffer.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
603
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
604 @node url-link, info-link, link, Basic Types
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
605 @comment node-name, next, previous, up
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
606 @subsection The @code{url-link} Widget
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
607
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
608 Syntax:
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
609
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
610 @example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
611 TYPE ::= (url-link [KEYWORD ARGUMENT]... URL)
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
612 @end example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
613
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
614 When this link is activated, the @sc{www} browser specified by
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
615 @code{browse-url-browser-function} will be called with @var{url}.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
616
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
617 @node info-link, push-button, url-link, Basic Types
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
618 @comment node-name, next, previous, up
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
619 @subsection The @code{info-link} Widget
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
620
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
621 Syntax:
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
622
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
623 @example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
624 TYPE ::= (info-link [KEYWORD ARGUMENT]... ADDRESS)
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
625 @end example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
626
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
627 When this link is activated, the build-in info browser is started on
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
628 @var{address}.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
629
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
630 @node push-button, editable-field, info-link, Basic Types
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
631 @comment node-name, next, previous, up
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
632 @subsection The @code{push-button} Widget
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
633
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
634 Syntax:
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
635
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
636 @example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
637 TYPE ::= (push-button [KEYWORD ARGUMENT]... [ VALUE ])
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
638 @end example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
639
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
640 The @var{value}, if present, is used to initialize the @code{:value}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
641 property. The value should be a string, which will be inserted in the
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
642 buffer.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
643
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 118
diff changeset
644 The following extra properties are recognized.
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 118
diff changeset
645
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 118
diff changeset
646 @table @code
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 118
diff changeset
647 @item :text-format
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 118
diff changeset
648 The format string used when the push button cannot be displayed
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 118
diff changeset
649 graphically. There are two escapes, @code{%s}, which must be present
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 118
diff changeset
650 exactly once, will be substituted with the tag, and @code{%%} will be
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 118
diff changeset
651 substituted with a singe @samp{%}.
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 118
diff changeset
652 @end table
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 118
diff changeset
653
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 118
diff changeset
654 By default the tag will be shown in brackets.
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 118
diff changeset
655
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
656 @node editable-field, text, push-button, Basic Types
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
657 @comment node-name, next, previous, up
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
658 @subsection The @code{editable-field} Widget
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
659
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
660 Syntax:
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
661
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
662 @example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
663 TYPE ::= (editable-field [KEYWORD ARGUMENT]... [ VALUE ])
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
664 @end example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
665
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
666 The @var{value}, if present, is used to initialize the @code{:value}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
667 property. The value should be a string, which will be inserted in
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
668 field. This widget will match all string values.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
669
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
670 The following extra properties are recognized.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
671
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
672 @table @code
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
673 @item :size
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
674 The width of the editable field.@*
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
675 By default the field will reach to the end of the line.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
676
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
677 @item :value-face
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
678 Face used for highlighting the editable field. Default is
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
679 @code{widget-field-face}.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
680
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
681 @item :secret
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
682 Character used to display the value. You can set this to e.g. @code{?*}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
683 if the field contains a password or other secret information. By
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
684 default, the value is not secret.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
685
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
686 @item :valid-regexp
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
687 By default the @code{:validate} function will match the content of the
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
688 field with the value of this attribute. The default value is @code{""}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
689 which matches everything.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
690
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
691 @item :keymap
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
692 Keymap used in the editable field. The default value is
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
693 @code{widget-field-keymap}, which allows you to use all the normal
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
694 editing commands, even if the buffers major mode supress some of them.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
695 Pressing return activates the function specified by @code{:activate}.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
696
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
697 @item :hide-front-space
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
698 @itemx :hide-rear-space
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
699 In order to keep track of the editable field, emacs places an invisible
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
700 space character in front of the field, and for fixed sized fields also
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
701 in the rear end of the field. For fields that extent to the end of the
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
702 line, the terminating linefeed serves that purpose instead.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
703
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
704 Emacs will try to make the spaces intangible when it is safe to do so.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
705 Intangible means that the cursor motion commands will skip over the
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
706 character as if it didn't exist. This is safe to do when the text
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
707 preceding or following the widget cannot possible change during the
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
708 lifetime of the @code{editable-field} widget. The preferred way to tell
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
709 Emacs this, is to add text to the @code{:format} property around the
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
710 value. For example @code{:format "Tag: %v "}.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
711
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
712 You can overwrite the internal safety check by setting the
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
713 @code{:hide-front-space} or @code{:hide-rear-space} properties to
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
714 non-nil. This is not recommended. For example, @emph{all} text that
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
715 belongs to a widget (i.e. is created from its @code{:format} string) will
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
716 change whenever the widget changes its value.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
717
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
718 @end table
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
719
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
720 @node text, menu-choice, editable-field, Basic Types
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
721 @comment node-name, next, previous, up
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
722 @subsection The @code{text} Widget
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
723
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
724 This is just like @code{editable-field}, but intended for multiline text
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
725 fields. The default @code{:keymap} is @code{widget-text-keymap}, which
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
726 does not rebind the return key.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
727
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
728 @node menu-choice, radio-button-choice, text, Basic Types
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
729 @comment node-name, next, previous, up
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
730 @subsection The @code{menu-choice} Widget
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
731
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
732 Syntax:
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
733
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
734 @example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
735 TYPE ::= (menu-choice [KEYWORD ARGUMENT]... TYPE ... )
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
736 @end example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
737
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
738 The @var{type} arguments represents each possible choice. The widgets
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
739 value of will be the value of the chosen @var{type} argument. This
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
740 widget will match any value that matches at least one of the specified
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
741 @var{type} arguments.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
742
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
743 @table @code
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
744 @item :void
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
745 Widget type used as a fallback when the value does not match any of the
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
746 specified @var{type} arguments.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
747
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
748 @item :case-fold
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
749 Set this to nil if you don't want to ignore case when prompting for a
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
750 choice through the minibuffer.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
751
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
752 @item :children
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
753 A list whose car is the widget representing the currently chosen type in
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
754 the buffer.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
755
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
756 @item :choice
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
757 The current chosen type
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
758
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
759 @item :args
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
760 The list of types.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
761 @end table
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
762
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
763 @node radio-button-choice, item, menu-choice, Basic Types
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
764 @comment node-name, next, previous, up
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
765 @subsection The @code{radio-button-choice} Widget
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
766
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
767 Syntax:
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
768
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
769 @example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
770 TYPE ::= (radio-button-choice [KEYWORD ARGUMENT]... TYPE ... )
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
771 @end example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
772
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
773 The @var{type} arguments represents each possible choice. The widgets
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
774 value of will be the value of the chosen @var{type} argument. This
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
775 widget will match any value that matches at least one of the specified
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
776 @var{type} arguments.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
777
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
778 The following extra properties are recognized.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
779
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
780 @table @code
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
781 @item :entry-format
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
782 This string will be inserted for each entry in the list.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
783 The following @samp{%} escapes are available:
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
784 @table @samp
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
785 @item %v
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
786 Replaced with the buffer representation of the @var{type} widget.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
787 @item %b
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
788 Replace with the radio button.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
789 @item %%
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
790 Insert a literal @samp{%}.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
791 @end table
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
792
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
793 @item button-args
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
794 A list of keywords to pass to the radio buttons. Useful for setting
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
795 e.g. the @samp{:help-echo} for each button.
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
796
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
797 @item :buttons
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
798 The widgets representing the radio buttons.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
799
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
800 @item :children
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
801 The widgets representing each type.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
802
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
803 @item :choice
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
804 The current chosen type
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
805
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
806 @item :args
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
807 The list of types.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
808 @end table
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
809
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
810 You can add extra radio button items to a @code{radio-button-choice}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
811 widget after it has been created with the function
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
812 @code{widget-radio-add-item}.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
813
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
814 @defun widget-radio-add-item widget type
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
815 Add to @code{radio-button-choice} widget @var{widget} a new radio button item of type
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
816 @var{type}.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
817 @end defun
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
818
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
819 Please note that such items added after the @code{radio-button-choice}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
820 widget has been created will @strong{not} be properly destructed when
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
821 you call @code{widget-delete}.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
822
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
823 @node item, choice-item, radio-button-choice, Basic Types
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
824 @comment node-name, next, previous, up
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
825 @subsection The @code{item} Widget
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
826
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
827 Syntax:
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
828
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
829 @example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
830 ITEM ::= (item [KEYWORD ARGUMENT]... VALUE)
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
831 @end example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
832
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
833 The @var{value}, if present, is used to initialize the @code{:value}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
834 property. The value should be a string, which will be inserted in the
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
835 buffer. This widget will only match the specified value.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
836
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
837 @node choice-item, toggle, item, Basic Types
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
838 @comment node-name, next, previous, up
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
839 @subsection The @code{choice-item} Widget
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
840
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
841 Syntax:
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
842
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
843 @example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
844 ITEM ::= (choice-item [KEYWORD ARGUMENT]... VALUE)
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
845 @end example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
846
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
847 The @var{value}, if present, is used to initialize the @code{:value}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
848 property. The value should be a string, which will be inserted in the
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
849 buffer as a button. Activating the button of a @code{choice-item} is
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
850 equivalent to activating the parent widget. This widget will only match
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
851 the specified value.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
852
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
853 @node toggle, checkbox, choice-item, Basic Types
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
854 @comment node-name, next, previous, up
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
855 @subsection The @code{toggle} Widget
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
856
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
857 Syntax:
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
858
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
859 @example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
860 TYPE ::= (toggle [KEYWORD ARGUMENT]...)
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
861 @end example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
862
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
863 The widget has two possible states, `on' and `off', which corresponds to
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
864 a @code{t} or @code{nil} value.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
865
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
866 The following extra properties are recognized.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
867
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
868 @table @code
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
869 @item :on
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
870 String representing the `on' state. By default the string @samp{on}.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
871 @item :off
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
872 String representing the `off' state. By default the string @samp{off}.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
873 @item :on-glyph
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
874 Name of a glyph to be used instead of the `:on' text string, on emacsen
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
875 that supports it.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
876 @item :off-glyph
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
877 Name of a glyph to be used instead of the `:off' text string, on emacsen
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
878 that supports it.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
879 @end table
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
880
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
881 @node checkbox, checklist, toggle, Basic Types
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
882 @comment node-name, next, previous, up
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
883 @subsection The @code{checkbox} Widget
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
884
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
885 The widget has two possible states, `selected' and `unselected', which
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
886 corresponds to a @code{t} or @code{nil} value.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
887
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
888 Syntax:
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
889
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
890 @example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
891 TYPE ::= (checkbox [KEYWORD ARGUMENT]...)
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
892 @end example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
893
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
894 @node checklist, editable-list, checkbox, Basic Types
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
895 @comment node-name, next, previous, up
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
896 @subsection The @code{checklist} Widget
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
897
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
898 Syntax:
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
899
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
900 @example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
901 TYPE ::= (checklist [KEYWORD ARGUMENT]... TYPE ... )
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
902 @end example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
903
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
904 The @var{type} arguments represents each checklist item. The widgets
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
905 value of will be a list containing the value of each ticked @var{type}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
906 argument. The checklist widget will match a list whose elements all
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
907 matches at least one of the specified @var{type} arguments.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
908
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
909 The following extra properties are recognized.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
910
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
911 @table @code
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
912 @item :entry-format
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
913 This string will be inserted for each entry in the list.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
914 The following @samp{%} escapes are available:
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
915 @table @samp
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
916 @item %v
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
917 Replaced with the buffer representation of the @var{type} widget.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
918 @item %b
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
919 Replace with the checkbox.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
920 @item %%
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
921 Insert a literal @samp{%}.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
922 @end table
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
923
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
924 @item button-args
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
925 A list of keywords to pass to the checkboxes. Useful for setting
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
926 e.g. the @samp{:help-echo} for each checkbox.
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
927
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
928 @item :buttons
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
929 The widgets representing the checkboxes.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
930
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
931 @item :children
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
932 The widgets representing each type.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
933
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
934 @item :args
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
935 The list of types.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
936 @end table
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
937
136
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
938 @node editable-list, , checklist, Basic Types
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
939 @comment node-name, next, previous, up
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
940 @subsection The @code{editable-list} Widget
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
941
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
942 Syntax:
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
943
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
944 @example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
945 TYPE ::= (editable-list [KEYWORD ARGUMENT]... TYPE)
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
946 @end example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
947
136
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
948 The value is a list, where each member represent one widget of type
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
949 @var{type}.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
950
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
951 The following extra properties are recognized.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
952
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
953 @table @code
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
954 @item :entry-format
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
955 This string will be inserted for each entry in the list.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
956 The following @samp{%} escapes are available:
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
957 @table @samp
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
958 @item %v
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
959 This will be replaced with the buffer representation of the @var{type}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
960 widget.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
961 @item %i
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
962 Insert the @b{[INS]} button.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
963 @item %d
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
964 Insert the @b{[DEL]} button.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
965 @item %%
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
966 Insert a literal @samp{%}.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
967 @end table
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
968
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
969 @item :insert-button-args
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
970 A list of keyword arguments to pass to the insert buttons.
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
971
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
972 @item :delete-button-args
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
973 A list of keyword arguments to pass to the delete buttons.
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
974
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
975 @item :append-button-args
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
976 A list of keyword arguments to pass to the trailing insert button.
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
977
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
978
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
979 @item :buttons
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
980 The widgets representing the insert and delete buttons.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
981
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
982 @item :children
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
983 The widgets representing the elements of the list.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
984
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
985 @item :args
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
986 List whose car is the type of the list elements.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
987
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
988 @end table
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
989
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
990 @node Sexp Types, Widget Properties, Basic Types, Top
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
991 @comment
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
992 @section Sexp Types
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
993
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
994 A number of widgets for editing s-expressions (lisp types) are also
136
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
995 available. These basically fall in three categories: @dfn{atoms},
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
996 @dfn{composite types}, and @dfn{generic}.
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
997
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
998 @menu
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
999 * generic::
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1000 * atoms::
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1001 * composite::
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1002 @end menu
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1003
136
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
1004 @node generic, atoms, Sexp Types, Sexp Types
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1005 @comment node-name, next, previous, up
136
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
1006 @subsection The Generic Widget.
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1007
136
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
1008 The @code{const} and @code{sexp} widgets can contain any lisp
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
1009 expression. In the case of the @code{const} widget the user is
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1010 prohibited from editing edit it, which is mainly useful as a component
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1011 of one of the composite widgets.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1012
136
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
1013 The syntax for the generic widgets is
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1014
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1015 @example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1016 TYPE ::= (const [KEYWORD ARGUMENT]... [ VALUE ])
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1017 @end example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1018
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1019 The @var{value}, if present, is used to initialize the @code{:value}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1020 property and can be any s-expression.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1021
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1022 @deffn Widget const
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1023 This will display any valid s-expression in an immutable part of the
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1024 buffer.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1025 @end deffn
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1026
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1027 @deffn Widget sexp
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1028 This will allow you to edit any valid s-expression in an editable buffer
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1029 field.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1030
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1031 The @code{sexp} widget takes the same keyword arguments as the
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1032 @code{editable-field} widget.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1033 @end deffn
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1034
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1035 @node atoms, composite, generic, Sexp Types
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1036 @comment node-name, next, previous, up
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1037 @subsection Atomic Sexp Widgets.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1038
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1039 The atoms are s-expressions that does not consist of other
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1040 s-expressions. A string is an atom, while a list is a composite type.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1041 You can edit the value of an atom with the following widgets.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1042
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1043 The syntax for all the atoms are
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1044
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1045 @example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1046 TYPE ::= (NAME [KEYWORD ARGUMENT]... [ VALUE ])
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1047 @end example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1048
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1049 The @var{value}, if present, is used to initialize the @code{:value}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1050 property and must be an expression of the same type as the widget.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1051 I.e. the string widget can only be initialized with a string.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1052
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 120
diff changeset
1053 All the atom widgets take the same keyword arguments as the
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 120
diff changeset
1054 @code{editable-field} widget.
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1055
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1056 @deffn Widget string
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1057 Allows you to edit a string in an editable field.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1058 @end deffn
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1059
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 120
diff changeset
1060 @deffn Widget character
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 120
diff changeset
1061 Allows you to enter a character in an editable field.
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 120
diff changeset
1062 @end deffn
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 120
diff changeset
1063
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1064 @deffn Widget file
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1065 Allows you to edit a file name in an editable field. You you activate
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1066 the tag button, you can edit the file name in the mini-buffer with
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1067 completion.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1068
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1069 Keywords:
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1070 @table @code
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1071 @item :must-match
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1072 If this is set to non-nil, only existing file names will be allowed in
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1073 the minibuffer.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1074 @end table
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1075 @end deffn
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1076
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1077 @deffn Widget directory
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1078 Allows you to edit a directory name in an editable field.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1079 Similar to the @code{file} widget.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1080 @end deffn
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1081
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1082 @deffn Widget symbol
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1083 Allows you to edit a lisp symbol in an editable field.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1084 @end deffn
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1085
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1086 @deffn Widget integer
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1087 Allows you to edit an integer in an editable field.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1088 @end deffn
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1089
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1090 @deffn Widget number
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1091 Allows you to edit a number in an editable field.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1092 @end deffn
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1093
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1094 @deffn Widget boolean
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1095 Allows you to edit a boolean. In lisp this means a variable which is
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1096 either nil meaning false, or non-nil meaning true.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1097 @end deffn
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1098
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1099
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1100 @node composite, , atoms, Sexp Types
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1101 @comment node-name, next, previous, up
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1102 @subsection Composite Sexp Widgets.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1103
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1104 The syntax for the composite are
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1105
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1106 @example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1107 TYPE ::= (NAME [KEYWORD ARGUMENT]... COMPONENT...)
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1108 @end example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1109
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1110 Where each @var{component} must be a widget type. Each component widget
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1111 will be displayed in the buffer, and be editable to the user.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1112
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1113 @deffn Widget cons
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1114 The value of a @code{cons} widget is a cons-cell where the car is the
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1115 value of the first component and the cdr is the value of the second
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1116 component. There must be exactly two components.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1117 @end deffn
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1118
136
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
1119 @deffn Widget lisp
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
1120 The value of a @code{lisp} widget is a list containing the value of
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1121 each of its component.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1122 @end deffn
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1123
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1124 @deffn Widget vector
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1125 The value of a @code{vector} widget is a vector containing the value of
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1126 each of its component.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1127 @end deffn
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1128
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1129 The above suffice for specifying fixed size lists and vectors. To get
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1130 variable length lists and vectors, you can use a @code{choice},
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1131 @code{set} or @code{repeat} widgets together with the @code{:inline}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1132 keywords. If any component of a composite widget has the @code{:inline}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1133 keyword set, its value must be a list which will then be spliced into
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1134 the composite. For example, to specify a list whose first element must
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1135 be a file name, and whose remaining arguments should either by the
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1136 symbol @code{t} or two files, you can use the following widget
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1137 specification:
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1138
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1139 @example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1140 (list file
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1141 (choice (const t)
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1142 (list :inline t
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1143 :value ("foo" "bar")
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1144 string string)))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1145 @end example
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1146
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1147 The value of a widget of this type will either have the form
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1148 @samp{(file t)} or @code{(file string string)}.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1149
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1150 This concept of inline is probably hard to understand. It was certainly
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1151 hard to implement so instead of confuse you more by trying to explain it
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1152 here, I'll just suggest you meditate over it for a while.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1153
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1154 @deffn Widget choice
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1155 Allows you to edit a sexp which may have one of fixed set of types. It
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1156 is currently implemented with the @code{choice-menu} basic widget, and
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1157 has a similar syntax.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1158 @end deffn
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1159
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1160 @deffn Widget set
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1161 Allows you to specify a type which must be a list whose elements all
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1162 belong to given set. The elements of the list is not significant. This
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1163 is implemented on top of the @code{checklist} basic widget, and has a
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1164 similar syntax.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1165 @end deffn
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1166
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1167 @deffn Widget repeat
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1168 Allows you to specify a variable length list whose members are all of
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1169 the same type. Implemented on top of the `editable-list' basic widget,
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1170 and has a similar syntax.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1171 @end deffn
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1172
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1173 @node Widget Properties, Defining New Widgets, Sexp Types, Top
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1174 @comment node-name, next, previous, up
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1175 @section Properties
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1176
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1177 You can examine or set the value of a widget by using the widget object
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1178 that was returned by @code{widget-create}.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1179
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1180 @defun widget-value widget
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1181 Return the current value contained in @var{widget}.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1182 It is an error to call this function on an uninitialized widget.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1183 @end defun
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1184
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1185 @defun widget-value-set widget value
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1186 Set the value contained in @var{widget} to @var{value}.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1187 It is an error to call this function with an invalid @var{value}.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1188 @end defun
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1189
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1190 @strong{Important:} You @emph{must} call @code{widget-setup} after
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1191 modifying the value of a widget before the user is allowed to edit the
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1192 widget again. It is enough to call @code{widget-setup} once if you
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1193 modify multiple widgets. This is currently only necessary if the widget
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1194 contains an editing field, but may be necessary for other widgets in the
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1195 future.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1196
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1197 If your application needs to associate some information with the widget
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1198 objects, for example a reference to the item being edited, it can be
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1199 done with @code{widget-put} and @code{widget-get}. The property names
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1200 must begin with a @samp{:}.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1201
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1202 @defun widget-put widget property value
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1203 In @var{widget} set @var{property} to @var{value}.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1204 @var{property} should be a symbol, while @var{value} can be anything.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1205 @end defun
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1206
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1207 @defun widget-get widget property
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1208 In @var{widget} return the value for @var{property}.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1209 @var{property} should be a symbol, the value is what was last set by
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1210 @code{widget-put} for @var{property}.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1211 @end defun
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1212
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1213 @defun widget-member widget property
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1214 Non-nil if @var{widget} has a value (even nil) for property @var{property}.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1215 @end defun
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1216
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1217 Occasionally it can be useful to know which kind of widget you have,
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1218 i.e. the name of the widget type you gave when the widget was created.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1219
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1220 @defun widget-type widget
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1221 Return the name of @var{widget}, a symbol.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1222 @end defun
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1223
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1224 Widgets can be in two states: active, which means they are modifiable by
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1225 the user, or inactive, which means they cannot be modified by the user.
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1226 You can query or set the state with the following code:
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1227
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1228 @lisp
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1229 ;; Examine if @var{widget} is active or not.
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1230 (if (widget-apply @var{widget} :active)
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1231 (message "Widget is active.")
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1232 (message "Widget is inactive.")
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1233
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1234 ;; Make @var{widget} inactive.
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1235 (widget-apply @var{widget} :deactivate)
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1236
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1237 ;; Make @var{widget} active.
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1238 (widget-apply @var{widget} :activate)
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1239 @end lisp
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1240
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1241 A widget is inactive if itself, or any of its ancestors (found by
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1242 following the @code{:parent} link) have been deactivated. To make sure
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1243 a widget is really active, you must therefore activate both itself, and
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1244 all its ancestors.
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1245
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1246 @lisp
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1247 (while widget
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1248 (widget-apply widget :activate)
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1249 (setq widget (widget-get widget :parent)))
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1250 @end lisp
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1251
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1252 You can check if a widget has been made inactive by examining the value
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1253 of @code{:inactive} keyword. If this is non-nil, the widget itself has
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1254 been deactivated. This is different from using the @code{:active}
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1255 keyword, in that the later tell you if the widget @strong{or} any of its
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1256 ancestors have been deactivated. Do not attempt to set the
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1257 @code{:inactive} keyword directly. Use the @code{:activate}
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1258 @code{:deactivated} keywords instead.
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1259
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
1260
136
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
1261 @node Defining New Widgets, Widget Wishlist., Widget Properties, Top
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1262 @comment node-name, next, previous, up
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1263 @section Defining New Widgets
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1264
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1265 You can define specialized widgets with @code{define-widget}. It allows
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1266 you to create a shorthand for more complex widgets, including specifying
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1267 component widgets and default new default values for the keyword
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1268 arguments.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1269
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1270 @defun widget-define name class doc &rest args
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1271 Define a new widget type named @var{name} from @code{class}.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1272
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1273 @var{name} and class should both be symbols, @code{class} should be one
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1274 of the existing widget types.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1275
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1276 The third argument @var{DOC} is a documentation string for the widget.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1277
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1278 After the new widget has been defined, the following two calls will
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1279 create identical widgets:
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1280
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1281 @itemize @bullet
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1282 @item
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1283 @lisp
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1284 (widget-create @var{name})
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1285 @end lisp
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1286
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1287 @item
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1288 @lisp
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1289 (apply widget-create @var{class} @var{args})
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1290 @end lisp
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1291 @end itemize
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1292
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1293 @end defun
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1294
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1295 Using @code{widget-define} does just store the definition of the widget
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1296 type in the @code{widget-type} property of @var{name}, which is what
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1297 @code{widget-create} uses.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1298
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1299 If you just want to specify defaults for keywords with no complex
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1300 conversions, you can use @code{identity} as your conversion function.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1301
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1302 The following additional keyword arguments are useful when defining new
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1303 widgets:
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1304 @table @code
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1305 @item :convert-widget
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1306 Function to convert a widget type before creating a widget of that
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1307 type. It takes a widget type as an argument, and returns the converted
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1308 widget type. When a widget is created, this function is called for the
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1309 widget type and all the widgets parent types, most derived first.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1310
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1311 @item :value-to-internal
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1312 Function to convert the value to the internal format. The function
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1313 takes two arguments, a widget and an external value, and returns the
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1314 internal value. The function is called on the present @code{:value}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1315 when the widget is created, and on any value set later with
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1316 @code{widget-value-set}.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1317
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1318 @item :value-to-external
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1319 Function to convert the value to the external format. The function
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1320 takes two arguments, a widget and an internal value, and returns the
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1321 internal value. The function is called on the present @code{:value}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1322 when the widget is created, and on any value set later with
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1323 @code{widget-value-set}.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1324
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1325 @item :create
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1326 Function to create a widget from scratch. The function takes one
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1327 argument, a widget type, and create a widget of that type, insert it in
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1328 the buffer, and return a widget object.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1329
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1330 @item :delete
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1331 Function to delete a widget. The function takes one argument, a widget,
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1332 and should remove all traces of the widget from the buffer.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1333
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1334 @item :value-create
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1335 Function to expand the @samp{%v} escape in the format string. It will
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1336 be called with the widget as its argument. Should
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1337 insert a representation of the widgets value in the buffer.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1338
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1339 @item :value-delete
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1340 Should remove the representation of the widgets value from the buffer.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1341 It will be called with the widget as its argument. It doesn't have to
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1342 remove the text, but it should release markers and delete nested widgets
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1343 if such has been used.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1344
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1345 @item :format-handler
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1346 Function to handle unknown @samp{%} escapes in the format string. It
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1347 will be called with the widget and the escape character as arguments.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1348 You can set this to allow your widget to handle non-standard escapes.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1349
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1350 You should end up calling @code{widget-default-format-handler} to handle
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1351 unknown escape sequences, which will handle the @samp{%h} and any future
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1352 escape sequences, as well as give an error for unknown escapes.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1353 @end table
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1354
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1355 If you want to define a new widget from scratch, use the @code{default}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1356 widget as its base.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1357
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1358 @deffn Widget default [ keyword argument ]
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1359 Widget used as a base for other widgets.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1360
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1361 It provides most of the functionality that is referred to as ``by
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1362 default'' in this text.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1363 @end deffn
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1364
136
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
1365 @node Widget Wishlist., , Defining New Widgets, Top
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1366 @comment node-name, next, previous, up
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1367 @section Wishlist.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1368
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1369 @itemize @bullet
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1370 @item
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1371 It should be possible to add or remove items from a list with @kbd{C-k}
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1372 and @kbd{C-o} (suggested by @sc{rms}).
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1373
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1374 @item
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1375 The @samp{[INS]} and @samp{[DEL]} buttons should be replaced by a single
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1376 dash (@samp{-}). The dash should be a button that, when activated, ask
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1377 whether you want to add or delete an item (@sc{rms} wanted to git rid of
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1378 the ugly buttons, the dash is my idea).
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1379
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1380 @item
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1381 Widgets such as @code{file} and @code{symbol} should prompt with completion.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1382
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1383 @item
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1384 The @code{menu-choice} tag should be prettier, something like the abbreviated
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1385 menus in Open Look.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1386
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1387 @item
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1388 The functions used in many widgets, like
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1389 @code{widget-item-convert-widget}, should not have names that are
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1390 specific to the first widget where I happended to use them.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1391
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1392 @item
136
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
1393 Flag to make @code{widget-move} skip a specified button.
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1394
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1395 @item
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1396 Document `helper' functions for defining new widgets.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1397
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1398 @item
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1399 Activate the item this is below the mouse when the button is
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1400 released, not the item this is below the mouse when the button is
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1401 pressed. Dired and grep gets this right. Give feedback if possible.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1402
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1403 @item
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1404 Use @samp{@@deffn Widget} to document widgets.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1405
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1406 @item
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1407 Document global keywords in one place.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1408
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1409 Document keywords particular to a specific widget in the widget
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1410 definition.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1411
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1412 Document the `default' widget first.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1413
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1414 Split, when needed, keywords into those useful for normal
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1415 customization, those primarily useful when deriving, and those who
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1416 represent runtime information.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1417
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1418 @item
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1419 Figure out terminology and @sc{api} for the class/type/object/super
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1420 stuff.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1421
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1422 Perhaps the correct model is delegation?
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1423
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1424 @item
136
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
1425 Document @code{widget-browse}.
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
1426
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
1427 @item
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1428 Make indentation work with glyphs and propertional fonts.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1429
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1430 @item
136
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
1431 Add object and class hierarchies to the browser.
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1432
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1433 @end itemize
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1434
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1435 @contents
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents:
diff changeset
1436 @bye