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