*** empty log message ***
[gnus] / texi / widget.texi
1 \input texinfo.tex
2
3 @c $Id: widget.texi,v 1.2 1996/10/30 19:27:41 steve 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: 0.995
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 widget-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 @defopt widget-field-face
187 Face used for other editing fields.
188 @end defopt
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 intended
240 to be displayed more like buttons in a GUI, once Emacs grows powerful
241 enough. 
242 @end table
243
244 To make them easier to locate, buttons are emphasized in the buffer.  
245
246 @defopt widget-button-face
247 Face used for buttons.
248 @end defopt
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 'widget-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.@br
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 %v
447 This will be replaces with the buffer representation of the widgets
448 value.  What this is depends on the widget type.
449
450 @item %d
451 Insert the string specified by @code{:doc} here.
452
453 @item %h
454 Like @samp{%d}, with the following modifications: If the documentation
455 string is more than one line, it will add a button which will toggle
456 between showing only the first line, and showing the full text.
457 Furthermore, if there is no @code{:doc} property in the widget, it will
458 instead examine the @code{:documentation-property} property.  If it is a
459 lambda expression, it will be called with the widget's value as an
460 argument, and the result will be used as the documentation text.
461
462 @item %t
463 Insert the string specified by @code{:tag} here, or the @code{princ}
464 representation of the value if there is no tag.
465
466 @item %%
467 Insert a literal @samp{%}. 
468 @end table
469
470 @item :button-face
471 Face used to highlight text inside %[ %] in the format.
472
473 @item :doc
474 The string inserted by the @samp{%d} escape in the format
475 string.  
476
477 @item :tag
478 The string inserted by the @samp{%t} escape in the format
479 string.  
480
481 @item :help-echo
482 Message displayed whenever you move to the widget with either
483 @code{widget-forward} or @code{widget-backward}.
484
485 @item :indent
486 An integer indicating the absolute number of spaces to indent children
487 of this widget.
488
489 @item :offset
490 An integer indicating how many extra spaces to add to the widget's
491 grandchildren compared to this widget.
492
493 @item :extra-offset
494 An integer indicating how many extra spaces to add to the widget's
495 children compared to this widget.
496
497 @item :notify
498 A function called each time the widget or a nested widget is changed.
499 The function is called with two or three arguments.  The first argument
500 is the widget itself, the second argument is the widget that was
501 changed, and the third argument is the event leading to the change, if
502 any. 
503
504 @item :menu-tag
505 Tag used in the menu when the widget is used as an option in a
506 @code{menu-choice} widget.
507
508 @item :menu-tag-get
509 Function used for finding the tag when the widget is used as an option
510 in a @code{menu-choice} widget.  By default, the tag used will be either the
511 @code{:menu-tag} or @code{:tag} property if present, or the @code{princ}
512 representation of the @code{:value} property if not.
513
514 @item :match
515 Should be a function called with two arguments, the widget and a value,
516 and returning non-nil if the widget can represent the specified value.
517
518 @item :validate
519 A function which takes a widget as an argument, and return nil if the
520 widgets current value is valid for the widget.  Otherwise, it should
521 return the widget containing the invalid data, and set that widgets
522 @code{:error} property to a string explaining the error.
523
524 @item :parent
525 The parent of a nested widget (e.g. a @code{menu-choice} item or an element of a
526 @code{editable-list} widget). 
527 @end table
528
529 @menu
530 * link::                        
531 * push-button::                        
532 * editable-field::                       
533 * text::                        
534 * menu-choice::                      
535 * radio-button-choice::                       
536 * item::                        
537 * choice-item::                 
538 * toggle::                      
539 * checkbox::                    
540 * checklist::                   
541 * editable-list::                      
542 @end menu
543
544 @node link, push-button, Basic Types, Basic Types
545 @comment  node-name,  next,  previous,  up
546 @subsection The @code{link} Widget
547
548 Syntax:
549
550 @example
551 TYPE ::= (link [KEYWORD ARGUMENT]...  [ VALUE ])
552 @end example
553
554 The @var{value}, if present, is used to initialize the @code{:value}
555 property.  The value should be a string, which will be inserted in the
556 buffer. 
557
558 @node  push-button, editable-field, link, Basic Types
559 @comment  node-name,  next,  previous,  up
560 @subsection The @code{push-button} Widget
561
562 Syntax:
563
564 @example
565 TYPE ::= (push-button [KEYWORD ARGUMENT]...  [ VALUE ])
566 @end example
567
568 The @var{value}, if present, is used to initialize the @code{:value}
569 property. The value should be a string, which will be inserted in the
570 buffer. 
571
572 @node editable-field, text, push-button, Basic Types
573 @comment  node-name,  next,  previous,  up
574 @subsection The @code{editable-field} Widget
575
576 Syntax:
577
578 @example
579 TYPE ::= (editable-field [KEYWORD ARGUMENT]... [ VALUE ])
580 @end example
581
582 The @var{value}, if present, is used to initialize the @code{:value}
583 property.  The value should be a string, which will be inserted in
584 field.  This widget will match all string values.
585
586 The following extra properties are recognized.
587
588 @table @code
589 @item :size
590 The width of the editable field.@br
591 By default the field will reach to the end of the line.
592
593 @item :value-face
594 Face used for highlighting the editable field.  Default is
595 @code{widget-field-face}. 
596
597 @item :keymap
598 Keymap used in the editable field.  @code{widget-keymap} will allow you
599 to use normal editing commands, even if these has been suppressed in the
600 current buffer.
601
602 @item :hide-front-space
603 @itemx :hide-rear-space
604 In order to keep track of the editable field, emacs places an invisible
605 space character in front of the field, and for fixed sized fields also
606 in the rear end of the field.  For fields that extent to the end of the
607 line, the terminating linefeed serves that purpose instead.  
608
609 Emacs will try to make the spaces intangible when it is safe to do so.
610 Intangible means that the cursor motion commands will skip over the
611 character as if it didn't exist.  This is safe to do when the text
612 preceding or following the widget cannot possible change during the
613 lifetime of the @code{editable-field} widget.  The preferred way to tell
614 Emacs this, is to add text to the @code{:format} property around the
615 value.  For example @code{:format "Tag: %v "}.  
616
617 You can overwrite the internal safety check by setting the
618 @code{:hide-front-space} or @code{:hide-rear-space} properties to
619 non-nil.  This is not recommended.  For example, @emph{all} text that
620 belongs to a widget (i.e. is created from its @code{:format} string) will
621 change whenever the widget changes its value.
622
623 @end table
624
625 @node text, menu-choice, editable-field, Basic Types
626 @comment  node-name,  next,  previous,  up
627 @subsection The @code{text} Widget
628
629 This is just like @code{editable-field}, but intended for multiline text
630 fields. 
631
632 @node menu-choice, radio-button-choice, text, Basic Types
633 @comment  node-name,  next,  previous,  up
634 @subsection The @code{menu-choice} Widget
635
636 Syntax:
637
638 @example
639 TYPE ::= (menu-choice [KEYWORD ARGUMENT]... TYPE ... )
640 @end example
641
642 The @var{type} arguments represents each possible choice.  The widgets
643 value of will be the value of the chosen @var{type} argument.  This
644 widget will match any value that matches at least one of the specified
645 @var{type} arguments.
646
647 @table @code
648 @item :void 
649 Widget type used as a fallback when the value does not match any of the
650 specified @var{type} arguments.
651
652 @item :case-fold
653 Set this to nil if you don't want to ignore case when prompting for a
654 choice through the minibuffer.
655
656 @item :children
657 A list whose car is the widget representing the currently chosen type in
658 the buffer. 
659
660 @item :choice
661 The current chosen type
662
663 @item :args 
664 The list of types. 
665 @end table
666
667 @node radio-button-choice, item, menu-choice, Basic Types
668 @comment  node-name,  next,  previous,  up
669 @subsection The @code{radio-button-choice} Widget
670
671 Syntax:
672
673 @example
674 TYPE ::= (radio-button-choice [KEYWORD ARGUMENT]...  TYPE ... )
675 @end example
676
677 The @var{type} arguments represents each possible choice.  The widgets
678 value of will be the value of the chosen @var{type} argument.  This
679 widget will match any value that matches at least one of the specified
680 @var{type} arguments.
681
682 The following extra properties are recognized.
683
684 @table @code
685 @item :entry-format
686 This string will be inserted for each entry in the list.
687 The following @samp{%} escapes are available:
688 @table @samp
689 @item %v
690 Replaced with the buffer representation of the @var{type} widget.
691 @item %b
692 Replace with the radio button.
693 @item %%
694 Insert a literal @samp{%}. 
695 @end table
696
697 @item :buttons
698 The widgets representing the radio buttons.
699
700 @item :children
701 The widgets representing each type.
702
703 @item :choice
704 The current chosen type
705
706 @item :args 
707 The list of types. 
708 @end table
709
710 You can add extra radio button items to a @code{radio-button-choice}
711 widget after it has been created with the function
712 @code{widget-radio-add-item}. 
713
714 @defun widget-radio-add-item widget type
715 Add to @code{radio-button-choice} widget @var{widget} a new radio button item of type
716 @var{type}. 
717 @end defun
718
719 Please note that such items added after the @code{radio-button-choice}
720 widget has been created will @strong{not} be properly destructed when
721 you call @code{widget-delete}.
722
723 @node item, choice-item, radio-button-choice, Basic Types
724 @comment  node-name,  next,  previous,  up
725 @subsection The @code{item} Widget
726
727 Syntax:
728
729 @example
730 ITEM ::= (item [KEYWORD ARGUMENT]... VALUE)
731 @end example
732
733 The @var{value}, if present, is used to initialize the @code{:value}
734 property.  The value should be a string, which will be inserted in the
735 buffer.  This widget will only match the specified value.
736
737 @node choice-item, toggle, item, Basic Types
738 @comment  node-name,  next,  previous,  up
739 @subsection The @code{choice-item} Widget
740
741 Syntax:
742
743 @example
744 ITEM ::= (choice-item [KEYWORD ARGUMENT]... VALUE)
745 @end example
746
747 The @var{value}, if present, is used to initialize the @code{:value}
748 property.  The value should be a string, which will be inserted in the
749 buffer as a button.  Activating the button of a @code{choice-item} is
750 equivalent to activating the parent widget.  This widget will only match
751 the specified value. 
752
753 @node toggle, checkbox, choice-item, Basic Types
754 @comment  node-name,  next,  previous,  up
755 @subsection The @code{toggle} Widget
756
757 Syntax:
758
759 @example
760 TYPE ::= (toggle [KEYWORD ARGUMENT]...)
761 @end example
762
763 The widget has two possible states, `on' and `off', which corresponds to
764 a @code{t} or @code{nil} value.
765
766 The following extra properties are recognized.
767
768 @table @code
769 @item :on
770 String representing the `on' state.  By default the string @samp{on}.
771 @item :off 
772 String representing the `off' state.  By default the string @samp{off}.
773 @item :on-type
774 Type representing the `on' state.  By default an `item' widget displaying
775 the string specified with the @code{:on} keyword.
776 @item :off-type
777 Type representing the `off' state.  By default an `item' widget
778 displaying the string specified with the @code{:off} keyword.
779 @end table
780
781 @node checkbox, checklist, toggle, Basic Types
782 @comment  node-name,  next,  previous,  up
783 @subsection The @code{checkbox} Widget
784
785 The widget has two possible states, `selected' and `unselected', which
786 corresponds to a @code{t} or @code{nil} value.
787
788 Syntax:
789
790 @example
791 TYPE ::= (checkbox [KEYWORD ARGUMENT]...)
792 @end example
793
794 @node checklist, editable-list, checkbox, Basic Types
795 @comment  node-name,  next,  previous,  up
796 @subsection The @code{checklist} Widget
797
798 Syntax:
799
800 @example
801 TYPE ::= (checklist [KEYWORD ARGUMENT]...  TYPE ... )
802 @end example
803
804 The @var{type} arguments represents each checklist item.  The widgets
805 value of will be a list containing the value of each ticked @var{type}
806 argument.  The checklist widget will match a list whose elements all
807 matches at least one of the specified @var{type} arguments.
808
809 The following extra properties are recognized.
810
811 @table @code
812 @item :entry-format
813 This string will be inserted for each entry in the list.
814 The following @samp{%} escapes are available:
815 @table @samp
816 @item %v
817 Replaced with the buffer representation of the @var{type} widget.
818 @item %b
819 Replace with the checkbox.
820 @item %%
821 Insert a literal @samp{%}. 
822 @end table
823
824 @item :buttons
825 The widgets representing the checkboxes.
826
827 @item :children
828 The widgets representing each type.
829
830 @item :args 
831 The list of types. 
832 @end table
833
834 @node editable-list,  , checklist, Basic Types
835 @comment  node-name,  next,  previous,  up
836 @subsection The @code{editable-list} Widget
837
838 Syntax:
839
840 @example
841 TYPE ::= (editable-list [KEYWORD ARGUMENT]... TYPE)
842 @end example
843
844 The value is a list, where each member represent one widget of type
845 @var{type}. 
846
847 The following extra properties are recognized.
848
849 @table @code
850 @item :entry-format
851 This string will be inserted for each entry in the list.
852 The following @samp{%} escapes are available:
853 @table @samp
854 @item %v
855 This will be replaced with the buffer representation of the @var{type}
856 widget.
857 @item %i
858 Insert the @b{[INS]} button.
859 @item %d
860 Insert the @b{[DEL]} button.
861 @item %%
862 Insert a literal @samp{%}. 
863 @end table
864
865 @item :buttons
866 The widgets representing the insert and delete buttons.
867
868 @item :children
869 The widgets representing the elements of the list.
870
871 @item :args
872 List whose car is the type of the list elements.
873
874 @end table
875
876 @node Sexp Types, Widget Properties, Basic Types, Top
877 @comment
878 @section Sexp Types
879
880 A number of widgets for editing s-expressions (lisp types) are also
881 available.  These basically fall in three categories: @dfn{atoms},
882 @dfn{composite types}, and @dfn{generic}.
883
884 @menu
885 * generic::                     
886 * atoms::                       
887 * composite::                   
888 @end menu
889
890 @node generic, atoms, Sexp Types, Sexp Types
891 @comment  node-name,  next,  previous,  up
892 @subsection The Generic Widget.
893
894 The @code{const} and @code{sexp} widgets can contain any lisp
895 expression.  In the case of the @code{const} widget the user is
896 prohibited from editing edit it, which is mainly useful as a component
897 of one of the composite widgets.
898
899 The syntax for the generic widgets is
900
901 @example
902 TYPE ::= (const [KEYWORD ARGUMENT]...  [ VALUE ])
903 @end example
904
905 The @var{value}, if present, is used to initialize the @code{:value}
906 property and can be any s-expression.
907
908 @deffn Widget const
909 This will display any valid s-expression in an immutable part of the
910 buffer. 
911 @end deffn
912
913 @deffn Widget sexp
914 This will allow you to edit any valid s-expression in an editable buffer
915 field. 
916
917 The @code{sexp} widget takes the same keyword arguments as the
918 @code{editable-field} widget.
919 @end deffn
920
921 @node atoms, composite, generic, Sexp Types
922 @comment  node-name,  next,  previous,  up
923 @subsection Atomic Sexp Widgets.
924
925 The atoms are s-expressions that does not consist of other
926 s-expressions.  A string is an atom, while a list is a composite type.
927 You can edit the value of an atom with the following widgets.  
928
929 The syntax for all the atoms are
930
931 @example
932 TYPE ::= (NAME [KEYWORD ARGUMENT]...  [ VALUE ])
933 @end example
934
935 The @var{value}, if present, is used to initialize the @code{:value}
936 property and must be an expression of the same type as the widget.
937 I.e. the string widget can only be initialized with a string.
938
939 All the atom widgets take the same keyword arguments as the @code{editable-field}
940 widget.
941
942 @deffn Widget string
943 Allows you to edit a string in an editable field.
944 @end deffn
945
946 @deffn Widget file
947 Allows you to edit a file name in an editable field.  You you activate
948 the tag button, you can edit the file name in the mini-buffer with
949 completion. 
950
951 Keywords:
952 @table @code
953 @item :must-match
954 If this is set to non-nil, only existing file names will be allowed in
955 the minibuffer.
956 @end table
957 @end deffn
958
959 @deffn Widget directory
960 Allows you to edit a directory name in an editable field.
961 Similar to the @code{file} widget.
962 @end deffn
963
964 @deffn Widget symbol
965 Allows you to edit a lisp symbol in an editable field.
966 @end deffn
967
968 @deffn Widget integer
969 Allows you to edit an integer in an editable field.
970 @end deffn
971
972 @deffn Widget number
973 Allows you to edit a number in an editable field.
974 @end deffn
975
976 @deffn Widget boolean
977 Allows you to edit a boolean.  In lisp this means a variable which is
978 either nil meaning false, or non-nil meaning true.
979 @end deffn
980
981
982 @node composite,  , atoms, Sexp Types
983 @comment  node-name,  next,  previous,  up
984 @subsection Composite Sexp Widgets.
985
986 The syntax for the composite are
987
988 @example
989 TYPE ::= (NAME [KEYWORD ARGUMENT]...  COMPONENT...)
990 @end example
991
992 Where each @var{component} must be a widget type.  Each component widget
993 will be displayed in the buffer, and be editable to the user.
994
995 @deffn Widget cons
996 The value of a @code{cons} widget is a cons-cell where the car is the
997 value of the first component and the cdr is the value of the second
998 component.  There must be exactly two components. 
999 @end deffn
1000
1001 @deffn Widget lisp
1002 The value of a @code{lisp} widget is a list containing the value of
1003 each of its component.
1004 @end deffn
1005
1006 @deffn Widget vector
1007 The value of a @code{vector} widget is a vector containing the value of
1008 each of its component.
1009 @end deffn
1010
1011 The above suffice for specifying fixed size lists and vectors.  To get
1012 variable length lists and vectors, you can use a @code{choice},
1013 @code{set} or @code{repeat} widgets together with the @code{:inline}
1014 keywords.  If any component of a composite widget has the @code{:inline}
1015 keyword set, its value must be a list which will then be spliced into
1016 the composite.  For example, to specify a list whose first element must
1017 be a file name, and whose remaining arguments should either by the
1018 symbol @code{t} or two files, you can use the following widget
1019 specification:
1020
1021 @example
1022 (list file
1023       (choice (const t)
1024               (list :inline t
1025                     :value ("foo" "bar")
1026                     string string)))
1027 @end example
1028
1029 The value of a widget of this type will either have the form 
1030 @samp{(file t)} or @code{(file string string)}.
1031
1032 This concept of inline is probably hard to understand.  It was certainly
1033 hard to implement so instead of confuse you more by trying to explain it
1034 here, I'll just suggest you meditate over it for a while.
1035
1036 @deffn Widget choice
1037 Allows you to edit a sexp which may have one of fixed set of types.  It
1038 is currently implemented with the @code{choice-menu} basic widget, and
1039 has a similar syntax.
1040 @end deffn
1041
1042 @deffn Widget set
1043 Allows you to specify a type which must be a list whose elements all
1044 belong to given set.  The elements of the list is not significant.  This
1045 is implemented on top of the @code{checklist} basic widget, and has a
1046 similar syntax. 
1047 @end deffn
1048
1049 @deffn Widget repeat
1050 Allows you to specify a variable length list whose members are all of
1051 the same type.  Implemented on top of the `editable-list' basic widget,
1052 and has a similar syntax.
1053 @end deffn
1054
1055 @node Widget Properties, Defining New Widgets, Sexp Types, Top
1056 @comment  node-name,  next,  previous,  up
1057 @section Properties
1058
1059 You can examine or set this value by using the widget object that was
1060 returned by @code{widget-create}.  
1061
1062 @defun widget-value widget
1063 Return the current value contained in @var{widget}.
1064 It is an error to call this function on an uninitialized widget.
1065 @end defun
1066
1067 @defun widget-value-set widget value
1068 Set the value contained in @var{widget} to @var{value}.
1069 It is an error to call this function with an invalid @var{value}.
1070 @end defun
1071
1072 @strong{Important:} You @emph{must} call @code{widget-setup} after
1073 modifying the value of a widget before the user is allowed to edit the
1074 widget again.  It is enough to call @code{widget-setup} once if you
1075 modify multiple widgets.  This is currently only necessary if the widget
1076 contains an editing field, but may be necessary for other widgets in the
1077 future. 
1078
1079 If your application needs to associate some information with the widget
1080 objects, for example a reference to the item being edited, it can be
1081 done with @code{widget-put} and @code{widget-get}.  The property names
1082 must begin with a @samp{:}.
1083
1084 @defun widget-put widget property value
1085 In @var{widget} set @var{property} to @var{value}.
1086 @var{property} should be a symbol, while @var{value} can be anything.
1087 @end defun
1088
1089 @defun widget-get widget property
1090 In @var{widget} return the value for @var{property}.
1091 @var{property} should be a symbol, the value is what was last set by
1092 @code{widget-put} for @var{property}.
1093 @end defun
1094
1095 @defun widget-member widget property
1096 Non-nil if @var{widget} has a value (even nil) for property @var{property}.
1097 @end defun
1098
1099 @node Defining New Widgets, Widget Wishlist., Widget Properties, Top
1100 @comment  node-name,  next,  previous,  up
1101 @section Defining New Widgets
1102
1103 You can define specialized widgets with @code{define-widget}.  It allows
1104 you to create a shorthand for more complex widgets, including specifying
1105 component widgets and default new default values for the keyword
1106 arguments. 
1107
1108 @defun widget-define name class doc &rest args
1109 Define a new widget type named @var{name} from @code{class}.
1110
1111 @var{name} and class should both be symbols, @code{class} should be one
1112 of the existing widget types. 
1113
1114 The third argument @var{DOC} is a documentation string for the widget.
1115
1116 After the new widget has been defined, the following two calls will
1117 create identical widgets:
1118
1119 @itemize @bullet
1120 @item
1121 @lisp
1122 (widget-create @var{name})
1123 @end lisp
1124
1125 @item
1126 @lisp
1127 (apply widget-create @var{class} @var{args})
1128 @end lisp
1129 @end itemize
1130
1131 @end defun
1132
1133 Using @code{widget-define} does just store the definition of the widget
1134 type in the @code{widget-type} property of @var{name}, which is what
1135 @code{widget-create} uses.
1136
1137 If you just want to specify defaults for keywords with no complex
1138 conversions, you can use @code{identity} as your conversion function.
1139
1140 The following additional keyword arguments are useful when defining new
1141 widgets: 
1142 @table @code
1143 @item :convert-widget
1144 Function to convert a widget type before creating a widget of that
1145 type.  It takes a widget type as an argument, and returns the converted
1146 widget type.  When a widget is created, this function is called for the
1147 widget type and all the widgets parent types, most derived first. 
1148
1149 @item :value-to-internal
1150 Function to convert the value to the internal format.  The function
1151 takes two arguments, a widget and an external value, and returns the
1152 internal value.  The function is called on the present @code{:value}
1153 when the widget is created, and on any value set later with
1154 @code{widget-value-set}.
1155
1156 @item :value-to-external
1157 Function to convert the value to the external format.  The function
1158 takes two arguments, a widget and an internal value, and returns the
1159 internal value.  The function is called on the present @code{:value}
1160 when the widget is created, and on any value set later with
1161 @code{widget-value-set}.
1162
1163 @item :create
1164 Function to create a widget from scratch.  The function takes one
1165 argument, a widget type, and create a widget of that type, insert it in
1166 the buffer, and return a widget object.
1167
1168 @item :delete
1169 Function to delete a widget.  The function takes one argument, a widget,
1170 and should remove all traces of the widget from the buffer.
1171
1172 @item :value-create
1173 Function to expand the @samp{%v} escape in the format string.  It will
1174 be called with the widget as its argument.  Should
1175 insert a representation of the widgets value in the buffer.
1176
1177 @item :value-delete
1178 Should remove the representation of the widgets value from the buffer.
1179 It will be called with the widget as its argument.  It doesn't have to
1180 remove the text, but it should release markers and delete nested widgets
1181 if such has been used.
1182
1183 @item :format-handler
1184 Function to handle unknown @samp{%} escapes in the format string.  It
1185 will be called with the widget and the escape character as arguments.
1186 You can set this to allow your widget to handle non-standard escapes.
1187
1188 You should end up calling @code{widget-default-format-handler} to handle
1189 unknown escape sequences, which will handle the @samp{%h} and any future
1190 escape sequences, as well as give an error for unknown escapes.
1191 @end table
1192
1193 If you want to define a new widget from scratch, use the @code{default}
1194 widget as its base.
1195
1196 @deffn Widget default [ keyword argument ]
1197 Widget used as a base for other widgets. 
1198
1199 It provides most of the functionality that is referred to as ``by
1200 default'' in this text. 
1201 @end deffn
1202
1203 @node  Widget Wishlist.,  , Defining New Widgets, Top
1204 @comment  node-name,  next,  previous,  up
1205 @section Wishlist.
1206
1207 @itemize @bullet
1208 @item 
1209 In general, we need @strong{much} better support for keyboard
1210 operations. 
1211
1212 @itemize -
1213 @item 
1214 It should be possible to add or remove items from a list with @kbd{C-k}
1215 and @kbd{C-o} (suggested by @sc{rms}).
1216
1217 @item
1218 @kbd{C-k} should kill to end of field or end of line, whatever come
1219 first. 
1220
1221 @item
1222 Commands to move to the beginning/end of a field.
1223
1224 @end itemize
1225
1226 @item 
1227 The @samp{[INS]} and @samp{[DEL]} buttons should be replaced by a single
1228 dash (@samp{-}).  The dash should be a button that, when activated, ask
1229 whether you want to add or delete an item (@sc{rms} wanted to git rid of
1230 the ugly buttons, the dash is my idea).
1231
1232 @item
1233 Use graphical versions of the widgets for emacsen that can do that.
1234 I.e. real radio buttons and checkmarks instead of their @sc{ascii}
1235 equivalents. 
1236
1237 @item
1238 There should be support for browsing the widget documentation.
1239
1240 @item
1241 There should be a way to specify that @key{RET} in a field will call the
1242 @code{:activate} function.  This should be used by widgets such as
1243 @code{file} and @code{symbol} prompt with completion. 
1244
1245 @item
1246 The @code{menu-choice} tag should be prettier, something like the abbreviated
1247 menus in Open Look.
1248
1249 @item
1250 The functions used in many widgets, like
1251 @code{widget-item-convert-widget}, should not have names that are
1252 specific to the first widget where I used them.
1253
1254 @item 
1255 Unchecked items in a @code{radio-button-choice} or @code{checklist}
1256 should be grayed out, and the subwidgets should somehow become inactive.
1257 This could perhaps be implemented by binding @code{widget-inactive} to t
1258 when inserting the grayed out subwidget, and let the widget-specify
1259 functions check that variable.
1260
1261 @end itemize
1262
1263 @contents
1264 @bye