*** empty log message ***
[emacs.git] / man / widget.texi
blob2b29df5750f06edcadf5b90e624316fc7dd24db3
1 \input texinfo.tex
3 @c %**start of header
4 @setfilename ../info/widget
5 @settitle The Emacs Widget Library
6 @ifnottex
7 Copyright @copyright{} 2000 Free Software Foundation, Inc.
9 Permission is granted to copy, distribute and/or modify this document
10 under the terms of the GNU Free Documentation License, Version 1.1 or
11 any later version published by the Free Software Foundation; with the
12 Invariant Sections being ``The GNU Manifesto'', ``Distribution'' and
13 ``GNU GENERAL PUBLIC LICENSE'', with the Front-Cover texts being ``A GNU
14 Manual'', and with the Back-Cover Texts as in (a) below.  A copy of the
15 license is included in the section entitled ``GNU Free Documentation
16 License'' in the Emacs manual.
18 This document is part of a collection distributed under the GNU Free
19 Documentation License.  If you want to distribute this document
20 separately from the collection, you can do so by adding a copy of the
21 license to the document, as described in section 6 of the license.
23 (a) The FSF's Back-Cover Text is: ``You have freedom to copy and modify
24 this GNU Manual, like GNU software.  Copies published by the Free
25 Software Foundation raise funds for GNU development.''
26 @end ifnottex
28 @iftex
29 @afourpaper
30 @headings double
31 @end iftex
32 @c %**end of header
34 @syncodeindex fn cp
35 @syncodeindex vr cp
36 @syncodeindex ky cp
38 @dircategory Emacs
39 @direntry
40 * Widget: (widget).      Documenting the "widget" package used by the
41                            Emacs Custom facility.
42 @end direntry
44 @node Top, Introduction, (dir), (dir)
45 @comment  node-name,  next,  previous,  up
46 @top The Emacs Widget Library
48 @menu
49 * Introduction::                
50 * User Interface::              
51 * Programming Example::         
52 * Setting Up the Buffer::       
53 * Basic Types::                 
54 * Sexp Types::                  
55 * Widget Properties::           
56 * Defining New Widgets::        
57 * Widget Browser::              
58 * Widget Minor Mode::           
59 * Utilities::                   
60 * Widget Wishlist::             
61 * Index::
62 @end menu
64 @node  Introduction, User Interface, Top, Top
65 @comment  node-name,  next,  previous,  up
66 @section Introduction
68 Most graphical user interface toolkits, such as Motif and XView, provide
69 a number of standard user interface controls (sometimes known as
70 `widgets' or `gadgets').  Emacs doesn't really support anything like
71 this, except for an incredibly powerful text ``widget''.  On the other
72 hand, Emacs does provide the necessary primitives to implement many
73 other widgets within a text buffer.  The @code{widget} package
74 simplifies this task.
76 @cindex basic widgets
77 @cindex widgets, basic types
78 The basic widgets are:
80 @table @code
81 @item link
82 Areas of text with an associated action.  Intended for hypertext links
83 embedded in text.
84 @item push-button 
85 Like link, but intended for stand-alone buttons.
86 @item editable-field
87 An editable text field.  It can be either variable or fixed length.
88 @item menu-choice
89 Allows the user to choose one of multiple options from a menu, each
90 option is itself a widget.  Only the selected option will be visible in
91 the buffer.
92 @item radio-button-choice
93 Allows the user to choose one of multiple options by activating radio
94 buttons.  The options are implemented as widgets.  All options will be
95 visible in the buffer.
96 @item item
97 A simple constant widget intended to be used in the @code{menu-choice} and
98 @code{radio-button-choice} widgets. 
99 @item choice-item
100 A button item only intended for use in choices.  When invoked, the user
101 will be asked to select another option from the choice widget.
102 @item toggle
103 A simple @samp{on}/@samp{off} switch.
104 @item checkbox
105 A checkbox (@samp{[ ]}/@samp{[X]}). 
106 @item editable-list
107 Create an editable list.  The user can insert or delete items in the
108 list.  Each list item is itself a widget.
109 @end table
111 Now, of what possible use can support for widgets be in a text editor?
112 I'm glad you asked.  The answer is that widgets are useful for
113 implementing forms.  A @dfn{form} in Emacs is a buffer where the user is
114 supposed to fill out a number of fields, each of which has a specific
115 meaning.  The user is not supposed to change or delete any of the text
116 between the fields.  Examples of forms in Emacs are the @file{forms}
117 package (of course), the customize buffers, the mail and news compose
118 modes, and the @sc{html} form support in the @file{w3} browser.  
120 @cindex widget library, why use it
121 The advantages for a programmer of using the @code{widget} package to
122 implement forms are:
124 @enumerate
125 @item
126 More complex fields than just editable text are supported. 
127 @item
128 You can give the users immediate feedback if they enter invalid data in a
129 text field, and sometimes prevent entering invalid data.
130 @item 
131 You can have fixed sized fields, thus allowing multiple fields to be
132 lined up in columns.
133 @item
134 It is simple to query or set the value of a field. 
135 @item 
136 Editing happens in the buffer, not in the mini-buffer.
137 @item 
138 Packages using the library get a uniform look, making them easier for
139 the user to learn.
140 @item 
141 As support for embedded graphics improve, the widget library will be
142 extended to use the GUI features.  This means that your code using the
143 widget library will also use the new graphic features automatically.
144 @end enumerate
146 In order to minimize the code that is loaded by users who does not
147 create any widgets, the code has been split in two files:
149 @cindex widget library, files
150 @table @file
151 @item widget.el
152 This will declare the user variables, define the function
153 @code{widget-define}, and autoload the function @code{widget-create}. 
154 @item wid-edit.el
155 Everything else is here, there is no reason to load it explicitly, as
156 it will be autoloaded when needed.
157 @end table
159 @node User Interface, Programming Example, Introduction, Top
160 @comment  node-name,  next,  previous,  up
161 @section User Interface
163 A form consist of read only text for documentation and some fields,
164 where each field contains two parts, a tag and a value.  The tags are
165 used to identify the fields, so the documentation can refer to the
166 @samp{foo field}, meaning the field tagged with @samp{Foo}. Here is an
167 example form:
169 @example
170 Here is some documentation.
172 Name: @i{My Name}     @strong{Choose}: This option
173 Address:  @i{Some Place
174 In some City
175 Some country.}
177 See also @b{_other work_} for more information.
179 Numbers: count to three below
180 @b{+/-} @i{One}
181 @b{+/-} @i{Eh, two?}
182 @b{+/-} @i{Five!}
183 @b{+} 
185 Select multiple:
187 @b{[X]} This
188 @b{[ ]} That
189 @b{[X]} Thus
191 Select one:
193 @b{(*)} One
194 @b{( )} Another One.
195 @b{( )} A Final One.
197 @b{[Apply Form]} @b{[Reset Form]}
198 @end example
200 The top level widgets in is example are tagged @samp{Name},
201 @samp{Choose}, @samp{Address}, @samp{_other work_}, @samp{Numbers},
202 @samp{Select multiple}, @samp{Select one}, @samp{[Apply Form]}, and
203 @samp{[Reset Form]}.  There are basically two things the user can do
204 within a form, namely editing the editable text fields and activating
205 the buttons.
207 @subsection Editable Text Fields
209 In the example, the value for the @samp{Name} is most likely displayed
210 in an editable text field, and so are values for each of the members of
211 the @samp{Numbers} list.  All the normal Emacs editing operations are
212 available for editing these fields.  The only restriction is that each
213 change you make must be contained within a single editable text field.
214 For example, capitalizing all text from the middle of one field to the
215 middle of another field is prohibited.
217 Editing text fields are created by the @code{editable-field} widget.
219 The editing text fields are highlighted with the
220 @code{widget-field-face} face, making them easy to find.
222 @deffn Face widget-field-face
223 Face used for other editing fields.
224 @end deffn
226 @subsection Buttons
228 @cindex widget buttons
229 @cindex button widgets
230 Some portions of the buffer have an associated @dfn{action}, which can
231 be @dfn{invoked} by a standard key or mouse command.  These portions
232 are called @dfn{buttons}.  The default commands for activating a button
233 are:
235 @table @kbd
236 @item @key{RET}
237 @deffn Command widget-button-press @var{pos} &optional @var{event}
238 Invoke the button at @var{pos}, defaulting to point.
239 If point is not located on a button, invoke the binding in
240 @code{widget-global-map} (by default the global map).
241 @end deffn
243 @kindex mouse-2, on button widgets
244 @item mouse-2
245 @deffn Command widget-button-click @var{event}
246 Invoke the button at the location of the mouse pointer.  If the mouse
247 pointer is located in an editable text field, invoke the binding in
248 @code{widget-global-map} (by default the global map).
249 @end deffn
250 @end table
252 There are several different kind of buttons, all of which are present in
253 the example:
255 @table @emph
256 @cindex option field tag
257 @item The Option Field Tags
258 When you invoke one of these buttons, you will be asked to choose
259 between a number of different options.  This is how you edit an option
260 field.  Option fields are created by the @code{menu-choice} widget.  In
261 the example, @samp{@b{Choose}} is an option field tag.
262 @item The @samp{@b{+/-}} buttons
263 Activating these will insert or delete elements from an editable list.
264 The list is created by the @code{editable-list} widget. 
265 @cindex embedded buttons
266 @item Embedded Buttons
267 The @samp{@b{_other work_}} is an example of an embedded
268 button.  Embedded buttons are not associated with a fields, but can serve
269 any purpose, such as implementing hypertext references.  They are
270 usually created by the @code{link} widget.
271 @item The @samp{@b{[ ]}} and @samp{@b{[X]}} buttons
272 Activating one of these will convert it to the other.  This is useful
273 for implementing multiple-choice fields.  You can create it with the
274 @code{checkbox} widget.
275 @item The @samp{@b{( )}} and @samp{@b{(*)}} buttons
276 Only one radio button in a @code{radio-button-choice} widget can be
277 selected at any time.  When you invoke one of the unselected radio
278 buttons, it will be selected and the previous selected radio button will
279 become unselected.
280 @item The @samp{@b{[Apply Form]}} @samp{@b{[Reset Form]}} buttons
281 These are explicit buttons made with the @code{push-button} widget.  The
282 main difference from the @code{link} widget is that the buttons will be
283 displayed as GUI buttons when possible.
284 @end table
286 To make them easier to locate, buttons are emphasized in the buffer.  
288 @deffn Face widget-button-face
289 Face used for buttons.
290 @end deffn
292 @defopt widget-mouse-face
293 Face used for highlighting a button when the mouse pointer moves across
295 @end defopt
297 @subsection Navigation
299 You can use all the normal Emacs commands to move around in a form
300 buffer, plus you will have these additional commands:
302 @table @kbd
303 @item @key{TAB}
304 @deffn Command widget-forward &optional count
305 Move point @var{count} buttons or editing fields forward.
306 @end deffn
307 @item @key{M-TAB}
308 @deffn Command widget-backward &optional count
309 Move point @var{count} buttons or editing fields backward.
310 @end deffn
311 @end table
313 @node Programming Example, Setting Up the Buffer, User Interface, Top
314 @comment  node-name,  next,  previous,  up
315 @section Programming Example
317 @cindex widgets, programming example
318 @cindex example of using widgets
319 Here is the code to implement the user interface example (@pxref{User
320 Interface}).
322 @lisp
323 (require 'widget)
325 (eval-when-compile
326   (require 'wid-edit))
328 (defvar widget-example-repeat)
330 (defun widget-example ()
331   "Create the widgets from the Widget manual."
332   (interactive)
333   (switch-to-buffer "*Widget Example*")
334   (kill-all-local-variables)
335   (make-local-variable 'widget-example-repeat)
336   (let ((inhibit-read-only t))
337     (erase-buffer))
338   (widget-insert "Here is some documentation.\n\nName: ")
339   (widget-create 'editable-field
340                  :size 13
341                  "My Name")
342   (widget-create 'menu-choice
343                  :tag "Choose"
344                  :value "This"
345                  :help-echo "Choose me, please!"
346                  :notify (lambda (widget &rest ignore)
347                            (message "%s is a good choice!"
348                                     (widget-value widget)))
349                  '(item :tag "This option" :value "This")
350                  '(choice-item "That option")
351                  '(editable-field :menu-tag "No option" "Thus option"))
352   (widget-insert "Address: ")
353   (widget-create 'editable-field
354                  "Some Place\nIn some City\nSome country.")
355   (widget-insert "\nSee also ")
356   (widget-create 'link
357                  :notify (lambda (&rest ignore)
358                            (widget-value-set widget-example-repeat 
359                                              '("En" "To" "Tre"))
360                            (widget-setup))
361                  "other work")
362   (widget-insert " for more information.\n\nNumbers: count to three below\n")
363   (setq widget-example-repeat
364         (widget-create 'editable-list
365                        :entry-format "%i %d %v"
366                        :notify (lambda (widget &rest ignore)
367                                  (let ((old (widget-get widget
368                                                         ':example-length))
369                                        (new (length (widget-value widget))))
370                                    (unless (eq old new)
371                                      (widget-put widget ':example-length new)
372                                      (message "You can count to %d." new))))
373                        :value '("One" "Eh, two?" "Five!")
374                        '(editable-field :value "three")))
375   (widget-insert "\n\nSelect multiple:\n\n")
376   (widget-create 'checkbox t)
377   (widget-insert " This\n")
378   (widget-create 'checkbox nil)
379   (widget-insert " That\n")
380   (widget-create 'checkbox
381                  :notify (lambda (&rest ignore) (message "Tickle"))
382                  t)
383   (widget-insert " Thus\n\nSelect one:\n\n")
384   (widget-create 'radio-button-choice
385                  :value "One"
386                  :notify (lambda (widget &rest ignore)
387                            (message "You selected %s"
388                                     (widget-value widget)))
389                  '(item "One") '(item "Another One.") '(item "A Final One."))
390   (widget-insert "\n")
391   (widget-create 'push-button
392                  :notify (lambda (&rest ignore) 
393                            (if (= (length (widget-value widget-example-repeat))
394                                   3)
395                                (message "Congratulation!")
396                              (error "Three was the count!")))
397                  "Apply Form")
398   (widget-insert " ")
399   (widget-create 'push-button
400                  :notify (lambda (&rest ignore)
401                            (widget-example))
402                  "Reset Form")
403   (widget-insert "\n")
404   (use-local-map widget-keymap)
405   (widget-setup))
406 @end lisp
408 @node Setting Up the Buffer, Basic Types, Programming Example, Top
409 @comment  node-name,  next,  previous,  up
410 @section Setting Up the Buffer
412 Widgets are created with @code{widget-create}, which returns a
413 @dfn{widget} object.  This object can be queried and manipulated by
414 other widget functions, until it is deleted with @code{widget-delete}.
415 After the widgets have been created, @code{widget-setup} must be called
416 to enable them.
418 @defun widget-create type [ keyword argument ]@dots{}
419 Create and return a widget of type @var{type}.
420 The syntax for the @var{type} argument is described in @ref{Basic Types}.
422 The keyword arguments can be used to overwrite the keyword arguments
423 that are part of @var{type}.
424 @end defun
426 @defun widget-delete widget
427 Delete @var{widget} and remove it from the buffer.
428 @end defun
430 @defun widget-setup 
431 Set up a buffer to support widgets. 
433 This should be called after creating all the widgets and before allowing
434 the user to edit them.
435 @refill
436 @end defun
438 If you want to insert text outside the widgets in the form, the
439 recommended way to do that is with @code{widget-insert}.
441 @defun widget-insert 
442 Insert the arguments, either strings or characters, at point.
443 The inserted text will be read-only.
444 @end defun
446 There is a standard widget keymap which you might find useful.
448 @findex widget-button-press
449 @findex widget-button-click
450 @defvr Const widget-keymap
451 A keymap with the global keymap as its parent.@*
452 @key{TAB} and @kbd{C-@key{TAB}} are bound to @code{widget-forward} and
453 @code{widget-backward}, respectively.  @kbd{@key{RET}} and @kbd{mouse-2}
454 are bound to @code{widget-button-press} and
455 @code{widget-button-click}.@refill
456 @end defvr
458 @defvar widget-global-map
459 Keymap used by @code{widget-button-press} and @code{widget-button-click}
460 when not on a button.  By default this is @code{global-map}.
461 @end defvar
463 @node Basic Types, Sexp Types, Setting Up the Buffer, Top
464 @comment  node-name,  next,  previous,  up
465 @section Basic Types
467 The syntax of a type specification is given below:
469 @example
470 NAME ::= (NAME [KEYWORD ARGUMENT]... ARGS)
471      |   NAME
472 @end example
474 Where, @var{name} is a widget name, @var{keyword} is the name of a
475 property, @var{argument} is the value of the property, and @var{args}
476 are interpreted in a widget specific way.
478 @cindex keyword arguments
479 The following keyword arguments that apply to all widgets:
481 @table @code
482 @vindex value@r{ keyword}
483 @item :value
484 The initial value for widgets of this type.
486 @vindex format@r{ keyword}
487 @item :format
488 This string will be inserted in the buffer when you create a widget.
489 The following @samp{%} escapes are available:
491 @table @samp
492 @item %[
493 @itemx %]
494 The text inside will be marked as a button.
496 By default, the text will be shown in @code{widget-button-face}, and
497 surrounded by brackets. 
499 @defopt widget-button-prefix
500 String to prefix buttons.
501 @end defopt
503 @defopt widget-button-suffix
504 String to suffix buttons.
505 @end defopt
507 @item %@{
508 @itemx %@}
509 The text inside will be displayed with the face specified by
510 @code{:sample-face}. 
512 @item %v
513 This will be replaced with the buffer representation of the widget's
514 value.  What this is depends on the widget type.
516 @item %d
517 Insert the string specified by @code{:doc} here.
519 @item %h
520 Like @samp{%d}, with the following modifications: If the documentation
521 string is more than one line, it will add a button which will toggle
522 between showing only the first line, and showing the full text.
523 Furthermore, if there is no @code{:doc} property in the widget, it will
524 instead examine the @code{:documentation-property} property.  If it is a
525 lambda expression, it will be called with the widget's value as an
526 argument, and the result will be used as the documentation text.
528 @item %t
529 Insert the string specified by @code{:tag} here, or the @code{princ}
530 representation of the value if there is no tag.
532 @item %%
533 Insert a literal @samp{%}. 
534 @end table
536 @vindex button-face@r{ keyword}
537 @item :button-face
538 Face used to highlight text inside %[ %] in the format.
540 @vindex button-prefix@r{ keyword}
541 @vindex button-suffix@r{ keyword}
542 @item :button-prefix
543 @itemx :button-suffix
544 Text around %[ %] in the format.
546 These can be
547 @table @emph
548 @item nil
549 No text is inserted.
551 @item a string
552 The string is inserted literally.
554 @item a symbol
555 The value of the symbol is expanded according to this table.
556 @end table
558 @vindex doc@r{ keyword}
559 @item :doc
560 The string inserted by the @samp{%d} escape in the format
561 string.  
563 @vindex tag@r{ keyword}
564 @item :tag
565 The string inserted by the @samp{%t} escape in the format
566 string.  
568 @vindex tag-glyph@r{ keyword}
569 @item :tag-glyph
570 Name of image to use instead of the string specified by @code{:tag} on
571 Emacsen that supports it.
573 @vindex help-echo@r{ keyword}
574 @item :help-echo
575 Specifies how to display a message whenever you move to the widget with
576 either @code{widget-forward} or @code{widget-backward} or move the mouse
577 over it (using the standard @code{help-echo} mechanism).  The argument
578 is either a string to display or a function of one argument, the widget,
579 which should return a string to display.
581 @vindex indent@r{ keyword}
582 @item :indent
583 An integer indicating the absolute number of spaces to indent children
584 of this widget.
586 @vindex offset@r{ keyword}
587 @item :offset
588 An integer indicating how many extra spaces to add to the widget's
589 grandchildren compared to this widget.
591 @vindex extra-offset@r{ keyword}
592 @item :extra-offset
593 An integer indicating how many extra spaces to add to the widget's
594 children compared to this widget.
596 @vindex notify@r{ keyword}
597 @item :notify
598 A function called each time the widget or a nested widget is changed.
599 The function is called with two or three arguments.  The first argument
600 is the widget itself, the second argument is the widget that was
601 changed, and the third argument is the event leading to the change, if
602 any. 
604 @vindex menu-tag@r{ keyword}
605 @item :menu-tag
606 Tag used in the menu when the widget is used as an option in a
607 @code{menu-choice} widget.
609 @vindex menu-tag-get@r{ keyword}
610 @item :menu-tag-get
611 Function used for finding the tag when the widget is used as an option
612 in a @code{menu-choice} widget.  By default, the tag used will be either the
613 @code{:menu-tag} or @code{:tag} property if present, or the @code{princ}
614 representation of the @code{:value} property if not.
616 @vindex match@r{ keyword}
617 @item :match
618 Should be a function called with two arguments, the widget and a value,
619 and returning non-nil if the widget can represent the specified value.
621 @vindex validate@r{ keyword}
622 @item :validate
623 A function which takes a widget as an argument, and returns @code{nil}
624 if the widget's current value is valid for the widget.  Otherwise it
625 should return the widget containing the invalid data, and set that
626 widget's @code{:error} property to a string explaining the error.
628 The following predefined function can be used:
630 @defun widget-children-validate widget
631 All the @code{:children} of @var{widget} must be valid.
632 @end defun
634 @vindex tab-order@r{ keyword}
635 @item :tab-order
636 Specify the order in which widgets are traversed with
637 @code{widget-forward} or @code{widget-backward}.  This is only partially
638 implemented.
640 @enumerate a
641 @item
642 Widgets with tabbing order @code{-1} are ignored.
644 @item 
645 (Unimplemented) When on a widget with tabbing order @var{n}, go to the
646 next widget in the buffer with tabbing order @var{n+1} or @code{nil},
647 whichever comes first.
649 @item
650 When on a widget with no tabbing order specified, go to the next widget
651 in the buffer with a positive tabbing order, or @code{nil}
652 @end enumerate
654 @vindex parent@r{ keyword}
655 @item :parent
656 The parent of a nested widget (e.g.@: a @code{menu-choice} item or an
657 element of a @code{editable-list} widget).
659 @vindex sibling-args@r{ keyword}
660 @item :sibling-args
661 This keyword is only used for members of a @code{radio-button-choice} or
662 @code{checklist}.  The value should be a list of extra keyword
663 arguments, which will be used when creating the @code{radio-button} or
664 @code{checkbox} associated with this item.
666 @end table
668 @deffn {User Option} widget-glyph-directory
669 Directory where glyphs are found.  
670 Widget will look here for a file with the same name as specified for the
671 image, with either a @file{.xpm} (if supported) or @file{.xbm} extension.
672 @end deffn
674 @deffn{User Option} widget-glyph-enable
675 If non-nil, allow glyphs to appear on displays where they are supported.
676 @end deffn
679 @menu
680 * link::                        
681 * url-link::                    
682 * info-link::                   
683 * push-button::                 
684 * editable-field::              
685 * text::                        
686 * menu-choice::                 
687 * radio-button-choice::         
688 * item::                        
689 * choice-item::                 
690 * toggle::                      
691 * checkbox::                    
692 * checklist::                   
693 * editable-list::               
694 * group::                       
695 @end menu
697 @node link, url-link, Basic Types, Basic Types
698 @comment  node-name,  next,  previous,  up
699 @subsection The @code{link} Widget
700 @findex link@r{ widget}
702 Syntax:
704 @example
705 TYPE ::= (link [KEYWORD ARGUMENT]...  [ VALUE ])
706 @end example
708 The @var{value}, if present, is used to initialize the @code{:value}
709 property.  The value should be a string, which will be inserted in the
710 buffer. 
712 By default the link will be shown in brackets.
714 @defopt widget-link-prefix
715 String to prefix links.
716 @end defopt
718 @defopt widget-link-suffix
719 String to suffix links.
720 @end defopt
722 @node url-link, info-link, link, Basic Types
723 @comment  node-name,  next,  previous,  up
724 @subsection The @code{url-link} Widget
725 @findex url-link@r{ widget}
727 Syntax:
729 @example
730 TYPE ::= (url-link [KEYWORD ARGUMENT]...  URL)
731 @end example
733 @findex browse-url-browser-function@r{, and @code{url-link} widget}
734 When this link is invoked, the @sc{www} browser specified by
735 @code{browse-url-browser-function} will be called with @var{url}. 
737 @node info-link, push-button, url-link, Basic Types
738 @comment  node-name,  next,  previous,  up
739 @subsection The @code{info-link} Widget
740 @findex info-link@r{ widget}
742 Syntax:
744 @example
745 TYPE ::= (info-link [KEYWORD ARGUMENT]...  ADDRESS)
746 @end example
748 When this link is invoked, the built-in Info reader is started on
749 @var{address}. 
751 @node  push-button, editable-field, info-link, Basic Types
752 @comment  node-name,  next,  previous,  up
753 @subsection The @code{push-button} Widget
754 @findex push-button@r{ widget}
756 Syntax:
758 @example
759 TYPE ::= (push-button [KEYWORD ARGUMENT]...  [ VALUE ])
760 @end example
762 The @var{value}, if present, is used to initialize the @code{:value}
763 property.  The value should be a string, which will be inserted in the
764 buffer. 
766 By default the tag will be shown in brackets.
768 @defopt widget-push-button-prefix
769 String to prefix push buttons.
770 @end defopt
772 @defopt widget-push-button-suffix
773 String to suffix push buttons.
774 @end defopt
776 @node editable-field, text, push-button, Basic Types
777 @comment  node-name,  next,  previous,  up
778 @subsection The @code{editable-field} Widget
779 @findex editable-field@r{ widget}
781 Syntax:
783 @example
784 TYPE ::= (editable-field [KEYWORD ARGUMENT]... [ VALUE ])
785 @end example
787 The @var{value}, if present, is used to initialize the @code{:value}
788 property.  The value should be a string, which will be inserted in
789 field.  This widget will match all string values.
791 The following extra properties are recognized:
793 @table @code
794 @vindex size@r{ keyword}
795 @item :size
796 The width of the editable field.@*
797 By default the field will reach to the end of the line.
799 @vindex value-face@r{ keyword}
800 @item :value-face
801 Face used for highlighting the editable field.  Default is
802 @code{widget-field-face}, see @ref{User Interface}. 
804 @vindex secret@r{ keyword}
805 @item :secret
806 Character used to display the value.  You can set this to e.g.@: @code{?*}
807 if the field contains a password or other secret information.  By
808 default, this is nil, and the value is not secret.
810 @vindex valid-regexp@r{ keyword}
811 @item :valid-regexp
812 By default the @code{:validate} function will match the content of the
813 field with the value of this attribute.  The default value is @code{""}
814 which matches everything.
816 @vindex keymap@r{ keyword}
817 @vindex widget-field-keymap
818 @item :keymap
819 Keymap used in the editable field.  The default value is
820 @code{widget-field-keymap}, which allows you to use all the normal
821 editing commands, even if the buffer's major mode suppresses some of
822 them.  Pressing @key{RET} invokes the function specified by
823 @code{:action}.
824 @end table
826 @node text, menu-choice, editable-field, Basic Types
827 @comment  node-name,  next,  previous,  up
828 @subsection The @code{text} Widget
829 @findex text@r{ widget}
831 @vindex widget-text-keymap
832 This is just like @code{editable-field}, but intended for multiline text
833 fields.  The default @code{:keymap} is @code{widget-text-keymap}, which
834 does not rebind the @key{RET} key.
836 @node menu-choice, radio-button-choice, text, Basic Types
837 @comment  node-name,  next,  previous,  up
838 @subsection The @code{menu-choice} Widget
839 @findex menu-choice@r{ widget}
841 Syntax:
843 @example
844 TYPE ::= (menu-choice [KEYWORD ARGUMENT]... TYPE ... )
845 @end example
847 The @var{type} argument represents each possible choice.  The widget's
848 value will be that of the chosen @var{type} argument.  This widget will
849 match any value matching at least one of the specified @var{type}
850 arguments.
852 @table @code
853 @vindex void@r{ keyword}
854 @item :void 
855 Widget type used as a fallback when the value does not match any of the
856 specified @var{type} arguments.
858 @vindex case-fold@r{ keyword}
859 @item :case-fold
860 Set this to nil if you don't want to ignore case when prompting for a
861 choice through the minibuffer.
863 @vindex children@r{ keyword}
864 @item :children
865 A list whose @code{car} is the widget representing the currently chosen
866 type in the buffer.
868 @vindex choice@r{ keyword}
869 @item :choice
870 The current chosen type.
872 @vindex args@r{ keyword}
873 @item :args 
874 The list of types. 
875 @end table
877 @node radio-button-choice, item, menu-choice, Basic Types
878 @comment  node-name,  next,  previous,  up
879 @subsection The @code{radio-button-choice} Widget
880 @findex radio-button-choice@r{ widget}
882 Syntax:
884 @example
885 TYPE ::= (radio-button-choice [KEYWORD ARGUMENT]...  TYPE ... )
886 @end example
888 The @var{type} argument represents each possible choice.  The widget's
889 value will be that of the chosen @var{type} argument.  This widget will
890 match any value matching at least one of the specified @var{type}
891 arguments.
893 The following extra properties are recognized.
895 @table @code
896 @vindex entry-format@r{ keyword}
897 @item :entry-format
898 This string will be inserted for each entry in the list.
899 The following @samp{%} escapes are available:
900 @table @samp
901 @item %v
902 Replace with the buffer representation of the @var{type} widget.
903 @item %b
904 Replace with the radio button.
905 @item %%
906 Insert a literal @samp{%}. 
907 @end table
909 @vindex button-args@r{ keyword}
910 @item :button-args
911 A list of keywords to pass to the radio buttons.  Useful for setting
912 e.g.@: the @samp{:help-echo} for each button.
914 @vindex buttons@r{ keyword}
915 @item :buttons
916 The widgets representing the radio buttons.
918 @vindex children@r{ keyword}
919 @item :children
920 The widgets representing each type.
922 @vindex choice@r{ keyword}
923 @item :choice
924 The current chosen type
926 @vindex args@r{ keyword}
927 @item :args 
928 The list of types. 
929 @end table
931 You can add extra radio button items to a @code{radio-button-choice}
932 widget after it has been created with the function
933 @code{widget-radio-add-item}. 
935 @defun widget-radio-add-item widget type
936 Add to @code{radio-button-choice} widget @var{widget} a new radio button
937 item of type @var{type}.
938 @end defun
940 Please note that such items added after the @code{radio-button-choice}
941 widget has been created will @strong{not} be properly destructed when
942 you call @code{widget-delete}.
944 @node item, choice-item, radio-button-choice, Basic Types
945 @comment  node-name,  next,  previous,  up
946 @subsection The @code{item} Widget
947 @findex item@r{ widget}
949 Syntax:
951 @example
952 ITEM ::= (item [KEYWORD ARGUMENT]... VALUE)
953 @end example
955 The @var{value}, if present, is used to initialize the @code{:value}
956 property.  The value should be a string, which will be inserted in the
957 buffer.  This widget will only match the specified value.
959 @node choice-item, toggle, item, Basic Types
960 @comment  node-name,  next,  previous,  up
961 @subsection The @code{choice-item} Widget
962 @findex choice-item@r{ widget}
964 Syntax:
966 @example
967 ITEM ::= (choice-item [KEYWORD ARGUMENT]... VALUE)
968 @end example
970 The @var{value}, if present, is used to initialize the @code{:value}
971 property.  The value should be a string, which will be inserted in the
972 buffer as a button.  Activating the button of a @code{choice-item} is
973 equivalent to activating the parent widget.  This widget will only match
974 the specified value. 
976 @node toggle, checkbox, choice-item, Basic Types
977 @comment  node-name,  next,  previous,  up
978 @subsection The @code{toggle} Widget
979 @findex toggle@r{ widget}
981 Syntax:
983 @example
984 TYPE ::= (toggle [KEYWORD ARGUMENT]...)
985 @end example
987 The widget has two possible states, @samp{on} and @samp{off}, which
988 correspond to a @code{t} or @code{nil} value, respectively.
990 The following extra properties are recognized:
992 @table @code
993 @item :on
994 A string representing the @samp{on} state.  By default the string
995 @samp{on}.
996 @item :off 
997 A string representing the @samp{off} state.  By default the string
998 @samp{off}.
999 @vindex on-glyph@r{ keyword}
1000 @item :on-glyph
1001 Name of a glyph to be used instead of the @samp{:on} text string, on
1002 emacsen that supports this.
1003 @vindex off-glyph@r{ keyword}
1004 @item :off-glyph
1005 Name of a glyph to be used instead of the @samp{:off} text string, on
1006 emacsen that supports this.
1007 @end table
1009 @node checkbox, checklist, toggle, Basic Types
1010 @comment  node-name,  next,  previous,  up
1011 @subsection The @code{checkbox} Widget
1012 @findex checkbox@r{ widget}
1014 This widget has two possible states, @samp{selected} and
1015 @samp{unselected}, which corresponds to a @code{t} or @code{nil} value.
1017 Syntax:
1019 @example
1020 TYPE ::= (checkbox [KEYWORD ARGUMENT]...)
1021 @end example
1023 @node checklist, editable-list, checkbox, Basic Types
1024 @comment  node-name,  next,  previous,  up
1025 @subsection The @code{checklist} Widget
1026 @findex checklist@r{ widget}
1028 Syntax:
1030 @example
1031 TYPE ::= (checklist [KEYWORD ARGUMENT]...  TYPE ... )
1032 @end example
1034 The @var{type} arguments represent each checklist item.  The widget's
1035 value will be a list containing the values of all checked @var{type}
1036 arguments.  The checklist widget will match a list whose elements all
1037 match at least one of the specified @var{type} arguments.
1039 The following extra properties are recognized:
1041 @table @code
1042 @vindex entry-format@r{ keyword}
1043 @item :entry-format
1044 This string will be inserted for each entry in the list.
1045 The following @samp{%} escapes are available:
1046 @table @samp
1047 @item %v
1048 Replaced with the buffer representation of the @var{type} widget.
1049 @item %b
1050 Replace with the checkbox.
1051 @item %%
1052 Insert a literal @samp{%}. 
1053 @end table
1055 @vindex greedy@r{ keyword}
1056 @item :greedy
1057 Usually a checklist will only match if the items are in the exact
1058 sequence given in the specification.  By setting @code{:greedy} to
1059 non-nil, it will allow the items to come in any sequence.  However, if
1060 you extract the value they will be in the sequence given in the
1061 checklist, i.e.@: the original sequence is forgotten.
1063 @vindex button-args@r{ keyword}
1064 @item :button-args
1065 A list of keywords to pass to the checkboxes.  Useful for setting
1066 e.g.@: the @samp{:help-echo} for each checkbox.
1068 @vindex buttons@r{ keyword}
1069 @item :buttons
1070 The widgets representing the checkboxes.
1072 @vindex children@r{ keyword}
1073 @item :children
1074 The widgets representing each type.
1076 @vindex args@r{ keyword}
1077 @item :args 
1078 The list of types. 
1079 @end table
1081 @node editable-list, group, checklist, Basic Types
1082 @comment  node-name,  next,  previous,  up
1083 @subsection The @code{editable-list} Widget
1084 @findex editable-list@r{ widget}
1086 Syntax:
1088 @example
1089 TYPE ::= (editable-list [KEYWORD ARGUMENT]... TYPE)
1090 @end example
1092 The value is a list, where each member represents one widget of type
1093 @var{type}. 
1095 The following extra properties are recognized:
1097 @table @code
1098 @vindex entry-format@r{ keyword}
1099 @item :entry-format
1100 This string will be inserted for each entry in the list.
1101 The following @samp{%} escapes are available:
1102 @table @samp
1103 @item %v
1104 This will be replaced with the buffer representation of the @var{type}
1105 widget.
1106 @item %-
1107 Insert the @b{+/-} button.
1108 @item %i
1109 Insert the @b{+} button at the end of a list.
1110 @item %d
1111 Insert the @b{[DEL]} button.
1112 @item %%
1113 Insert a literal @samp{%}. 
1114 @end table
1116 @vindex insert/delete-button-args@r{ keyword}
1117 @item :insert/delete-button-args
1118 A list of keyword arguments to pass to the insert buttons.
1120 @vindex delete-button-args@r{ keyword}
1121 @item :delete-button-args
1122 A list of keyword arguments to pass to the delete buttons.
1124 @vindex append-button-args@r{ keyword}
1125 @item :append-button-args
1126 A list of keyword arguments to pass to the trailing insert button.
1128 @vindex buttons@r{ keyword}
1129 @item :buttons
1130 The widgets representing the insert and delete buttons.
1132 @vindex children@r{ keyword}
1133 @item :children
1134 The widgets representing the elements of the list.
1136 @vindex args@r{ keyword}
1137 @item :args
1138 List whose @code{car} is the type of the list elements.
1139 @end table
1141 @node group,  , editable-list, Basic Types
1142 @comment  node-name,  next,  previous,  up
1143 @subsection The @code{group} Widget
1144 @findex group@r{ widget}
1146 This widget simply group other widgets together.
1148 Syntax:
1150 @example
1151 TYPE ::= (group [KEYWORD ARGUMENT]... TYPE...)
1152 @end example
1154 The value is a list, with one member for each @var{type}.  
1156 @node Sexp Types, Widget Properties, Basic Types, Top
1157 @comment
1158 @section Sexp Types
1159 @cindex sexp types
1161 A number of widgets for editing @dfn{s-expressions} (lisp types), sexp
1162 for short, are also available.  These basically fall in several
1163 categories described in this section.
1165 @menu
1166 * constants::                   
1167 * generic::                     
1168 * atoms::                       
1169 * composite::                   
1170 @end menu
1172 @node constants, generic, Sexp Types, Sexp Types
1173 @comment  node-name,  next,  previous,  up
1174 @subsection The Constant Widgets
1175 @cindex constant widgets
1177 The @code{const} widget can contain any lisp expression, but the user is
1178 prohibited from editing it, which is mainly useful as a component of one
1179 of the composite widgets.
1181 The syntax for the @code{const} widget is:
1183 @example
1184 TYPE ::= (const [KEYWORD ARGUMENT]...  [ VALUE ])
1185 @end example
1187 The @var{value}, if present, is used to initialize the @code{:value}
1188 property and can be any s-expression.
1190 @deffn Widget const
1191 This will display any valid s-expression in an immutable part of the
1192 buffer. 
1193 @end deffn
1195 There are two variations of the @code{const} widget, namely
1196 @code{variable-item} and @code{function-item}.  These should contain a
1197 symbol with a variable or function binding.  The major difference from
1198 the @code{const} widget is that they will allow the user to see the
1199 variable or function documentation for the symbol.
1201 @deffn Widget variable-item
1202 An immutable symbol that is bound as a variable.
1203 @end deffn
1205 @deffn Widget function-item
1206 An immutable symbol that is bound as a function.
1207 @end deffn
1209 @node generic, atoms, constants, Sexp Types
1210 @comment  node-name,  next,  previous,  up
1211 @subsection Generic Sexp Widget
1212 @cindex generic sexp widget
1214 The @code{sexp} widget can contain any lisp expression, and allows the
1215 user to edit it inline in the buffer.
1217 The syntax for the @code{sexp} widget is:
1219 @example
1220 TYPE ::= (sexp [KEYWORD ARGUMENT]...  [ VALUE ])
1221 @end example
1223 @deffn Widget sexp
1224 This will allow you to edit any valid s-expression in an editable buffer
1225 field. 
1227 The @code{sexp} widget takes the same keyword arguments as the
1228 @code{editable-field} widget.  @xref{editable-field}.
1229 @end deffn
1231 @node atoms, composite, generic, Sexp Types
1232 @comment  node-name,  next,  previous,  up
1233 @subsection Atomic Sexp Widgets
1234 @cindex atomic sexp widget
1236 The atoms are s-expressions that do not consist of other s-expressions.
1237 For example, a string, a file name, or a symbol are atoms, while a list
1238 is a composite type.  You can edit the value of an atom with the
1239 following widgets.
1241 The syntax for all the atoms are:
1243 @example
1244 TYPE ::= (NAME [KEYWORD ARGUMENT]...  [ VALUE ])
1245 @end example
1247 The @var{value}, if present, is used to initialize the @code{:value}
1248 property and must be an expression of the same type as the widget.
1249 That is, the string widget can only be initialized with a string.
1251 All the atom widgets take the same keyword arguments as the
1252 @code{editable-field} widget.  @xref{editable-field}.
1254 @deffn Widget string
1255 Allows you to edit a string in an editable field.
1256 @end deffn
1258 @deffn Widget regexp
1259 Allows you to edit a regular expression in an editable field.
1260 @end deffn
1262 @deffn Widget character
1263 Allows you to enter a character in an editable field.
1264 @end deffn
1266 @deffn Widget file
1267 Allows you to edit a file name in an editable field.  If you invoke
1268 the tag button, you can edit the file name in the mini-buffer with
1269 completion. 
1271 Keywords:
1272 @table @code
1273 @vindex must-match@r{ keyword}
1274 @item :must-match
1275 If this is set to non-nil, only existing file names will be allowed in
1276 the minibuffer.
1277 @end table
1278 @end deffn
1280 @deffn Widget directory
1281 Allows you to edit a directory name in an editable field.
1282 Similar to the @code{file} widget.
1283 @end deffn
1285 @deffn Widget symbol
1286 Allows you to edit a lisp symbol in an editable field.
1287 @end deffn
1289 @deffn Widget function
1290 Allows you to edit a lambda expression, or a function name with completion.
1291 @end deffn
1293 @deffn Widget variable
1294 Allows you to edit a variable name, with completion.
1295 @end deffn
1297 @deffn Widget integer
1298 Allows you to edit an integer in an editable field.
1299 @end deffn
1301 @deffn Widget number
1302 Allows you to edit a number in an editable field.
1303 @end deffn
1305 @deffn Widget boolean
1306 Allows you to edit a boolean.  In lisp this means a variable which is
1307 either nil meaning false, or non-nil meaning true.
1308 @end deffn
1311 @node composite,  , atoms, Sexp Types
1312 @comment  node-name,  next,  previous,  up
1313 @subsection Composite Sexp Widgets
1314 @cindex composite sexp widgets
1316 The syntax for the composite widget is:
1318 @example
1319 TYPE ::= (NAME [KEYWORD ARGUMENT]...  COMPONENT...)
1320 @end example
1322 @noindent
1323 where each @var{component} must be a widget type.  Each component widget
1324 will be displayed in the buffer, and will be editable by the user.
1326 @deffn Widget cons
1327 The value of a @code{cons} widget is a cons-cell where the @code{car} is
1328 the value of the first component and the @code{cdr} is the value of the
1329 second component.  There must be exactly two components.
1330 @end deffn
1332 @deffn Widget list
1333 The value of a @code{list} widget is a list containing the value of
1334 each of its component.
1335 @end deffn
1337 @deffn Widget vector
1338 The value of a @code{vector} widget is a vector containing the value of
1339 each of its component.
1340 @end deffn
1342 The above suffice for specifying fixed size lists and vectors.  To get
1343 variable length lists and vectors, you can use a @code{choice},
1344 @code{set}, or @code{repeat} widgets together with the @code{:inline}
1345 keywords.  If any component of a composite widget has the @code{:inline}
1346 keyword set, its value must be a list which will then be spliced into
1347 the composite.  For example, to specify a list whose first element must
1348 be a file name, and whose remaining arguments should either by the
1349 symbol @code{t} or two files, you can use the following widget
1350 specification:
1352 @example
1353 (list file
1354       (choice (const t)
1355               (list :inline t
1356                     :value ("foo" "bar")
1357                     string string)))
1358 @end example
1360 The value of a widget of this type will either have the form 
1361 @code{(file t)} or @code{(file string string)}.
1363 This concept of inline is probably hard to understand.  It was certainly
1364 hard to implement, so instead of confusing you more by trying to explain
1365 it here, I'll just suggest you meditate over it for a while.
1367 @deffn Widget choice
1368 Allows you to edit a sexp which may have one of a fixed set of types.
1369 It is currently implemented with the @code{choice-menu} basic widget,
1370 and has a similar syntax.
1371 @end deffn
1373 @deffn Widget set
1374 Allows you to specify a type which must be a list whose elements all
1375 belong to given set.  The elements of the list are not significant.
1376 This is implemented on top of the @code{checklist} basic widget, and has
1377 a similar syntax.
1378 @end deffn
1380 @deffn Widget repeat
1381 Allows you to specify a variable length list whose members are all of
1382 the same type.  Implemented on top of the @code{editable-list} basic
1383 widget, and has a similar syntax.
1384 @end deffn
1386 @node Widget Properties, Defining New Widgets, Sexp Types, Top
1387 @comment  node-name,  next,  previous,  up
1388 @section Properties
1389 @cindex properties of widgets
1390 @cindex widget properties
1392 You can examine or set the value of a widget by using the widget object
1393 that was returned by @code{widget-create}.
1395 @defun widget-value widget
1396 Return the current value contained in @var{widget}.
1397 It is an error to call this function on an uninitialized widget.
1398 @end defun
1400 @defun widget-value-set widget value
1401 Set the value contained in @var{widget} to @var{value}.
1402 It is an error to call this function with an invalid @var{value}.
1403 @end defun
1405 @strong{Important:} You @emph{must} call @code{widget-setup} after
1406 modifying the value of a widget before the user is allowed to edit the
1407 widget again.  It is enough to call @code{widget-setup} once if you
1408 modify multiple widgets.  This is currently only necessary if the widget
1409 contains an editing field, but may be necessary for other widgets in the
1410 future. 
1412 If your application needs to associate some information with the widget
1413 objects, for example a reference to the item being edited, it can be
1414 done with @code{widget-put} and @code{widget-get}.  The property names
1415 must begin with a @samp{:}.
1417 @defun widget-put widget property value
1418 In @var{widget} set @var{property} to @var{value}.
1419 @var{property} should be a symbol, while @var{value} can be anything.
1420 @end defun
1422 @defun widget-get widget property
1423 In @var{widget} return the value for @var{property}.
1424 @var{property} should be a symbol, the value is what was last set by
1425 @code{widget-put} for @var{property}.
1426 @end defun
1428 @defun widget-member widget property
1429 Non-nil if @var{widget} has a value (even nil) for property @var{property}.
1430 @end defun
1432 Occasionally it can be useful to know which kind of widget you have,
1433 i.e.@: the name of the widget type you gave when the widget was created. 
1435 @defun widget-type widget
1436 Return the name of @var{widget}, a symbol.
1437 @end defun
1439 @cindex active widget
1440 @cindex inactive widget
1441 @cindex activate a widget
1442 @cindex deactivate a widget
1443 Widgets can be in two states: active, which means they are modifiable by
1444 the user, or inactive, which means they cannot be modified by the user.
1445 You can query or set the state with the following code:
1447 @lisp
1448 ;; Examine if @var{widget} is active or not.
1449 (if (widget-apply @var{widget} :active)
1450     (message "Widget is active.")
1451   (message "Widget is inactive.")
1453 ;; Make @var{widget} inactive.
1454 (widget-apply @var{widget} :deactivate)
1456 ;; Make @var{widget} active.
1457 (widget-apply @var{widget} :activate)
1458 @end lisp
1460 A widget is inactive if it, or any of its ancestors (found by
1461 following the @code{:parent} link), have been deactivated.  To make sure
1462 a widget is really active, you must therefore activate both it and
1463 all its ancestors.
1465 @lisp
1466 (while widget 
1467   (widget-apply widget :activate)
1468   (setq widget (widget-get widget :parent)))
1469 @end lisp
1471 You can check if a widget has been made inactive by examining the value
1472 of the @code{:inactive} keyword.  If this is non-nil, the widget itself
1473 has been deactivated.  This is different from using the @code{:active}
1474 keyword, in that the latter tells you if the widget @strong{or} any of
1475 its ancestors have been deactivated.  Do not attempt to set the
1476 @code{:inactive} keyword directly.  Use the @code{:activate}
1477 @code{:deactivate} keywords instead.
1480 @node Defining New Widgets, Widget Browser, Widget Properties, Top
1481 @comment  node-name,  next,  previous,  up
1482 @section Defining New Widgets
1483 @cindex new widgets
1484 @cindex defining new widgets
1486 You can define specialized widgets with @code{widget-define}.  It allows
1487 you to create a shorthand for more complex widgets, including specifying
1488 component widgets and new default values for the keyword
1489 arguments. 
1491 @defun widget-define name class doc &rest args
1492 Define a new widget type named @var{name} from @code{class}.
1494 @var{name} and class should both be symbols, @code{class} should be one
1495 of the existing widget types. 
1497 The third argument @var{DOC} is a documentation string for the widget.
1499 After the new widget has been defined, the following two calls will
1500 create identical widgets:
1502 @itemize @bullet
1503 @item
1504 @lisp
1505 (widget-create @var{name})
1506 @end lisp
1508 @item
1509 @lisp
1510 (apply widget-create @var{class} @var{args})
1511 @end lisp
1512 @end itemize
1514 @end defun
1516 Using @code{widget-define} just stores the definition of the widget type
1517 in the @code{widget-type} property of @var{name}, which is what
1518 @code{widget-create} uses.
1520 If you only want to specify defaults for keywords with no complex
1521 conversions, you can use @code{identity} as your conversion function.
1523 The following additional keyword arguments are useful when defining new
1524 widgets: 
1525 @table @code
1526 @vindex convert-widget@r{ keyword}
1527 @item :convert-widget
1528 Function to convert a widget type before creating a widget of that
1529 type.  It takes a widget type as an argument, and returns the converted
1530 widget type.  When a widget is created, this function is called for the
1531 widget type and all the widget's parent types, most derived first. 
1533 The following predefined functions can be used here:
1535 @defun widget-types-convert-widget widget
1536 Convert @code{:args} as widget types in @var{widget}.
1537 @end defun
1539 @defun widget-value-convert-widget widget
1540 Initialize @code{:value} from @code{:args} in @var{widget}.
1541 @end defun
1543 @vindex value-to-internal@r{ keyword}
1544 @item :value-to-internal
1545 Function to convert the value to the internal format.  The function
1546 takes two arguments, a widget and an external value, and returns the
1547 internal value.  The function is called on the present @code{:value}
1548 when the widget is created, and on any value set later with
1549 @code{widget-value-set}.
1551 @vindex value-to-external@r{ keyword}
1552 @item :value-to-external
1553 Function to convert the value to the external format.  The function
1554 takes two arguments, a widget and an internal value, and returns the
1555 external value.  The function is called on the present @code{:value}
1556 when the widget is created, and on any value set later with
1557 @code{widget-value-set}.
1559 @vindex create@r{ keyword}
1560 @item :create
1561 Function to create a widget from scratch.  The function takes one
1562 argument, a widget type, and creates a widget of that type, inserts it
1563 in the buffer, and returns a widget object.
1565 @vindex delete@r{ keyword}
1566 @item :delete
1567 Function to delete a widget.  The function takes one argument, a widget,
1568 and should remove all traces of the widget from the buffer.
1570 @vindex value-create@r{ keyword}
1571 @item :value-create
1572 Function to expand the @samp{%v} escape in the format string.  It will
1573 be called with the widget as its argument and should insert a
1574 representation of the widget's value in the buffer.
1576 @vindex value-delete@r{ keyword}
1577 @item :value-delete
1578 Should remove the representation of the widget's value from the buffer.
1579 It will be called with the widget as its argument.  It doesn't have to
1580 remove the text, but it should release markers and delete nested widgets
1581 if such have been used.
1583 The following predefined function can be used here:
1585 @defun widget-children-value-delete widget
1586 Delete all @code{:children} and @code{:buttons} in @var{widget}.
1587 @end defun
1589 @vindex value-get@r{ keyword}
1590 @item :value-get 
1591 Function to extract the value of a widget, as it is displayed in the
1592 buffer. 
1594 The following predefined function can be used here:
1596 @defun widget-value-value-get widget
1597 Return the @code{:value} property of @var{widget}.
1598 @end defun
1600 @vindex format-handler@r{ keyword}
1601 @item :format-handler
1602 Function to handle unknown @samp{%} escapes in the format string.  It
1603 will be called with the widget and the character that follows the
1604 @samp{%} as arguments.  You can set this to allow your widget to handle
1605 non-standard escapes.
1607 @findex widget-default-format-handler
1608 You should end up calling @code{widget-default-format-handler} to handle
1609 unknown escape sequences, which will handle the @samp{%h} and any future
1610 escape sequences, as well as give an error for unknown escapes.
1612 @vindex action@r{ keyword}
1613 @item :action
1614 Function to handle user initiated events.  By default, @code{:notify}
1615 the parent. 
1617 The following predefined function can be used here:
1619 @defun widget-parent-action widget &optional event
1620 Tell @code{:parent} of @var{widget} to handle the @code{:action}.
1621 Optional @var{event} is the event that triggered the action.
1622 @end defun
1624 @vindex prompt-value@r{ keyword}
1625 @item :prompt-value
1626 Function to prompt for a value in the minibuffer.  The function should
1627 take four arguments, @var{widget}, @var{prompt}, @var{value}, and
1628 @var{unbound} and should return a value for widget entered by the user.
1629 @var{prompt} is the prompt to use.  @var{value} is the default value to
1630 use, unless @var{unbound} is non-nil, in which case there is no default
1631 value.  The function should read the value using the method most natural
1632 for this widget, and does not have to check that it matches.
1633 @end table
1635 If you want to define a new widget from scratch, use the @code{default}
1636 widget as its base.
1638 @deffn Widget default 
1639 Widget used as a base for other widgets. 
1641 It provides most of the functionality that is referred to as ``by
1642 default'' in this text. 
1643 @end deffn
1645 @node Widget Browser, Widget Minor Mode, Defining New Widgets, Top
1646 @comment  node-name,  next,  previous,  up
1647 @section Widget Browser
1648 @cindex widget browser
1650 There is a separate package to browse widgets.  This is intended to help
1651 programmers who want to examine the content of a widget.  The browser
1652 shows the value of each keyword, but uses links for certain keywords
1653 such as @samp{:parent}, which avoids printing cyclic structures.
1655 @deffn Command widget-browse WIDGET
1656 Create a widget browser for WIDGET.
1657 When called interactively, prompt for WIDGET.
1658 @end deffn
1660 @deffn Command widget-browse-other-window WIDGET
1661 Create a widget browser for WIDGET and show it in another window.
1662 When called interactively, prompt for WIDGET.
1663 @end deffn
1665 @deffn Command widget-browse-at POS
1666 Create a widget browser for the widget at POS.
1667 When called interactively, use the position of point.
1668 @end deffn
1670 @node  Widget Minor Mode, Utilities, Widget Browser, Top
1671 @comment  node-name,  next,  previous,  up
1672 @section Widget Minor Mode
1673 @cindex widget minor mode
1675 There is a minor mode for manipulating widgets in major modes that
1676 don't provide any support for widgets themselves.  This is mostly
1677 intended to be useful for programmers doing experiments. 
1679 @deffn Command widget-minor-mode
1680 Toggle minor mode for traversing widgets.
1681 With arg, turn widget mode on if and only if arg is positive.
1682 @end deffn
1684 @defvar widget-minor-mode-keymap
1685 Keymap used in @code{widget-minor-mode}.
1686 @end defvar
1688 @node  Utilities, Widget Wishlist, Widget Minor Mode, Top
1689 @comment  node-name,  next,  previous,  up
1690 @section Utilities.
1691 @cindex utility functions for widgets
1693 @defun widget-prompt-value widget prompt [ value unbound ]
1694 Prompt for a value matching @var{widget}, using @var{prompt}.
1695 The current value is assumed to be @var{value}, unless @var{unbound} is
1696 non-nil.@refill
1697 @end defun
1699 @defun widget-get-sibling widget
1700 Get the item which @var{widget} is assumed to toggle.
1701 This is only meaningful for radio buttons or checkboxes in a list.
1702 @end defun
1704 @node  Widget Wishlist,  Index, Utilities, Top
1705 @comment  node-name,  next,  previous,  up
1706 @section Wishlist
1707 @cindex todo
1709 @itemize @bullet
1710 @item 
1711 It should be possible to add or remove items from a list with @kbd{C-k}
1712 and @kbd{C-o} (suggested by @sc{rms}).
1714 @item
1715 The @code{menu-choice} tag should be prettier, something like the abbreviated
1716 menus in Open Look.
1718 @item
1719 Finish @code{:tab-order}.
1721 @item
1722 Make indentation work with glyphs and proportional fonts.
1724 @item
1725 Add commands to show overview of object and class hierarchies to the
1726 browser. 
1728 @item 
1729 Find a way to disable mouse highlight for inactive widgets.
1731 @item
1732 Find a way to make glyphs look inactive.
1734 @item
1735 Add @code{key-binding} widget.
1737 @item
1738 Add @code{widget} widget for editing widget specifications.
1740 @item
1741 Find clean way to implement variable length list.
1742 See @code{TeX-printer-list} for an explanation.
1744 @item 
1745 @kbd{C-h} in @code{widget-prompt-value} should give type specific help.
1747 @item 
1748 Add a @code{mailto} widget.
1749 @end itemize
1751 @node Index, , Widget Wishlist, Top
1752 @comment  node-name,  next,  previous,  up
1753 @unnumbered Index
1755 This is an alphabetical listing of all concepts, functions, commands,
1756 variables, and widgets described in this manual.
1757 @printindex cp
1759 @setchapternewpage odd
1760 @contents
1761 @bye