* net/tramp-sh.el (tramp-sh-handle-copy-directory):
[emacs.git] / doc / misc / widget.texi
blob2fe247dd7503a13128cb01d361dd48c24997ef77
1 \input texinfo.tex
2 @c %**start of header
3 @setfilename ../../info/widget
4 @settitle The Emacs Widget Library
5 @syncodeindex fn cp
6 @syncodeindex vr cp
7 @syncodeindex ky cp
8 @c %**end of header
10 @copying
11 Copyright @copyright{} 2000--2013 Free Software Foundation, Inc.
13 @quotation
14 Permission is granted to copy, distribute and/or modify this document
15 under the terms of the GNU Free Documentation License, Version 1.3 or
16 any later version published by the Free Software Foundation; with no
17 Invariant Sections, with the Front-Cover texts being ``A GNU Manual'',
18 and with the Back-Cover Texts as in (a) below.  A copy of the license
19 is included in the section entitled ``GNU Free Documentation License''.
21 (a) The FSF's Back-Cover Text is: ``You have the freedom to copy and
22 modify this GNU manual.''
23 @end quotation
24 @end copying
26 @dircategory Emacs lisp libraries
27 @direntry
28 * Widget: (widget).             The "widget" package used by the Emacs
29                                   Customization facility.
30 @end direntry
32 @contents
34 @node Top
35 @top The Emacs Widget Library
37 @insertcopying
39 @menu
40 * Introduction::
41 * User Interface::
42 * Programming Example::
43 * Setting Up the Buffer::
44 * Basic Types::
45 * Sexp Types::
46 * Widget Properties::
47 * Defining New Widgets::
48 * Widget Browser::
49 * Widget Minor Mode::
50 * Utilities::
51 * Widget Wishlist::
52 * GNU Free Documentation License::
53 * Index::
54 @end menu
56 @node  Introduction
57 @chapter Introduction
59 Most graphical user interface toolkits provide a number of standard
60 user interface controls (sometimes known as `widgets' or `gadgets').
61 Emacs doesn't really support anything like this, except for an
62 incredibly powerful text ``widget.''  On the other hand, Emacs does
63 provide the necessary primitives to implement many other widgets
64 within a text buffer.  The @code{widget} package simplifies this task.
66 @cindex basic widgets
67 @cindex widgets, basic types
68 The basic widgets are:
70 @table @code
71 @item link
72 Areas of text with an associated action.  Intended for hypertext links
73 embedded in text.
74 @item push-button
75 Like link, but intended for stand-alone buttons.
76 @item editable-field
77 An editable text field.  It can be either variable or fixed length.
78 @item menu-choice
79 Allows the user to choose one of multiple options from a menu, each
80 option is itself a widget.  Only the selected option will be visible in
81 the buffer.
82 @item radio-button-choice
83 Allows the user to choose one of multiple options by activating radio
84 buttons.  The options are implemented as widgets.  All options will be
85 visible in the buffer.
86 @item item
87 A simple constant widget intended to be used in the @code{menu-choice} and
88 @code{radio-button-choice} widgets.
89 @item choice-item
90 A button item only intended for use in choices.  When invoked, the user
91 will be asked to select another option from the choice widget.
92 @item toggle
93 A simple @samp{on}/@samp{off} switch.
94 @item checkbox
95 A checkbox (@samp{[ ]}/@samp{[X]}).
96 @item editable-list
97 Create an editable list.  The user can insert or delete items in the
98 list.  Each list item is itself a widget.
99 @end table
101 Now, of what possible use can support for widgets be in a text editor?
102 I'm glad you asked.  The answer is that widgets are useful for
103 implementing forms.  A @dfn{form} in Emacs is a buffer where the user is
104 supposed to fill out a number of fields, each of which has a specific
105 meaning.  The user is not supposed to change or delete any of the text
106 between the fields.  Examples of forms in Emacs are the @file{forms}
107 package (of course), the customize buffers, the mail and news compose
108 modes, and the @acronym{HTML} form support in the @file{w3} browser.
110 @cindex widget library, why use it
111 The advantages for a programmer of using the @code{widget} package to
112 implement forms are:
114 @enumerate
115 @item
116 More complex fields than just editable text are supported.
117 @item
118 You can give the users immediate feedback if they enter invalid data in a
119 text field, and sometimes prevent entering invalid data.
120 @item
121 You can have fixed sized fields, thus allowing multiple fields to be
122 lined up in columns.
123 @item
124 It is simple to query or set the value of a field.
125 @item
126 Editing happens in the buffer, not in the mini-buffer.
127 @item
128 Packages using the library get a uniform look, making them easier for
129 the user to learn.
130 @item
131 As support for embedded graphics improve, the widget library will be
132 extended to use the GUI features.  This means that your code using the
133 widget library will also use the new graphic features automatically.
134 @end enumerate
136 @node User Interface
137 @chapter User Interface
139 A form consists of read only text for documentation and some fields,
140 where each field contains two parts, a tag and a value.  The tags are
141 used to identify the fields, so the documentation can refer to the
142 @samp{foo field}, meaning the field tagged with @samp{Foo}. Here is an
143 example form:
145 @example
146 Here is some documentation.
148 Name: @i{My Name}     @strong{Choose}: This option
149 Address:  @i{Some Place
150 In some City
151 Some country.}
153 See also @b{_other work_} for more information.
155 Numbers: count to three below
156 @b{[INS]} @b{[DEL]} @i{One}
157 @b{[INS]} @b{[DEL]} @i{Eh, two?}
158 @b{[INS]} @b{[DEL]} @i{Five!}
159 @b{[INS]}
161 Select multiple:
163 @b{[X]} This
164 @b{[ ]} That
165 @b{[X]} Thus
167 Select one:
169 @b{(*)} One
170 @b{( )} Another One.
171 @b{( )} A Final One.
173 @b{[Apply Form]} @b{[Reset Form]}
174 @end example
176 The top level widgets in this example are tagged @samp{Name},
177 @samp{Choose}, @samp{Address}, @samp{_other work_}, @samp{Numbers},
178 @samp{Select multiple}, @samp{Select one}, @samp{[Apply Form]}, and
179 @samp{[Reset Form]}.  There are basically two things the user can do
180 within a form, namely editing the editable text fields and activating
181 the buttons.
183 @section Editable Text Fields
185 In the example, the value for the @samp{Name} is most likely displayed
186 in an editable text field, and so are values for each of the members of
187 the @samp{Numbers} list.  All the normal Emacs editing operations are
188 available for editing these fields.  The only restriction is that each
189 change you make must be contained within a single editable text field.
190 For example, capitalizing all text from the middle of one field to the
191 middle of another field is prohibited.
193 Editable text fields are created by the @code{editable-field} widget.
195 @strong{Warning:} In an @code{editable-field} widget, the editable
196 field must not be adjacent to another widget---that won't work.
197 You must put some text in between.  Either make this text part of
198 the @code{editable-field} widget itself, or insert it with
199 @code{widget-insert}.
201 The @code{:format} keyword is useful for generating the necessary
202 text; for instance, if you give it a value of @code{"Name: %v "},
203 the @samp{Name: } part will provide the necessary separating text
204 before the field and the trailing space will provide the
205 separating text after the field.  If you don't include the
206 @code{:size} keyword, the field will extend to the end of the
207 line, and the terminating newline will provide separation after.
209 @strong{Warning:} In an @code{editable-field} widget, the @samp{%v} escape
210 must be preceded by some other text in the @code{:format} string
211 (if specified).
213 The editing text fields are highlighted with the
214 @code{widget-field-face} face, making them easy to find.
216 @deffn Face widget-field-face
217 Face used for other editing fields.
218 @end deffn
220 @section Buttons
222 @cindex widget buttons
223 @cindex button widgets
224 Some portions of the buffer have an associated @dfn{action}, which can
225 be @dfn{invoked} by a standard key or mouse command.  These portions
226 are called @dfn{buttons}.  The default commands for activating a button
227 are:
229 @table @kbd
230 @item @key{RET}
231 @deffn Command widget-button-press @var{pos} &optional @var{event}
232 Invoke the button at @var{pos}, defaulting to point.
233 If point is not located on a button, invoke the binding in
234 @code{widget-global-map} (by default the global map).
235 @end deffn
237 @kindex Mouse-2 @r{(on button widgets})
238 @item Mouse-2
239 @deffn Command widget-button-click @var{event}
240 Invoke the button at the location of the mouse pointer.  If the mouse
241 pointer is located in an editable text field, invoke the binding in
242 @code{widget-global-map} (by default the global map).
243 @end deffn
244 @end table
246 There are several different kind of buttons, all of which are present in
247 the example:
249 @table @emph
250 @cindex option field tag
251 @item The Option Field Tags
252 When you invoke one of these buttons, you will be asked to choose
253 between a number of different options.  This is how you edit an option
254 field.  Option fields are created by the @code{menu-choice} widget.  In
255 the example, @samp{@b{Choose}} is an option field tag.
256 @item The @samp{@b{[INS]}} and @samp{@b{[DEL]}} buttons
257 Activating these will insert or delete elements from an editable list.
258 The list is created by the @code{editable-list} widget.
259 @cindex embedded buttons
260 @item Embedded Buttons
261 The @samp{@b{_other work_}} is an example of an embedded
262 button.  Embedded buttons are not associated with any fields, but can serve
263 any purpose, such as implementing hypertext references.  They are
264 usually created by the @code{link} widget.
265 @item The @samp{@b{[ ]}} and @samp{@b{[X]}} buttons
266 Activating one of these will convert it to the other.  This is useful
267 for implementing multiple-choice fields.  You can create them with the
268 @code{checkbox} widget.
269 @item The @samp{@b{( )}} and @samp{@b{(*)}} buttons
270 Only one radio button in a @code{radio-button-choice} widget can be
271 selected at any time.  When you invoke one of the unselected radio
272 buttons, it will be selected and the previous selected radio button will
273 become unselected.
274 @item The @samp{@b{[Apply Form]}} and @samp{@b{[Reset Form]}} buttons
275 These are explicit buttons made with the @code{push-button} widget.  The
276 main difference from the @code{link} widget is that the buttons will be
277 displayed as GUI buttons when possible.
278 @end table
280 To make them easier to locate, buttons are emphasized in the buffer.
282 @deffn Face widget-button-face
283 Face used for buttons.
284 @end deffn
286 @defopt widget-mouse-face
287 Face used for highlighting a button when the mouse pointer moves across
289 @end defopt
291 @section Navigation
293 You can use all the normal Emacs commands to move around in a form
294 buffer, plus you will have these additional commands:
296 @table @kbd
297 @item @key{TAB}
298 @deffn Command widget-forward &optional count
299 Move point @var{count} buttons or editing fields forward.
300 @end deffn
301 @item @kbd{M-@key{TAB}}
302 @itemx @kbd{S-@key{TAB}}
303 @deffn Command widget-backward &optional count
304 Move point @var{count} buttons or editing fields backward.
305 @end deffn
306 @end table
308 @node Programming Example
309 @chapter Programming Example
311 @cindex widgets, programming example
312 @cindex example of using widgets
313 Here is the code to implement the user interface example (@pxref{User
314 Interface}).
316 @lisp
317 (require 'widget)
319 (eval-when-compile
320   (require 'wid-edit))
322 (defvar widget-example-repeat)
324 (defun widget-example ()
325   "Create the widgets from the Widget manual."
326   (interactive)
327   (switch-to-buffer "*Widget Example*")
328   (kill-all-local-variables)
329   (make-local-variable 'widget-example-repeat)
330   (let ((inhibit-read-only t))
331     (erase-buffer))
332   (remove-overlays)
333   (widget-insert "Here is some documentation.\n\n")
334   (widget-create 'editable-field
335                  :size 13
336                  :format "Name: %v " ; Text after the field!
337                  "My Name")
338   (widget-create 'menu-choice
339                  :tag "Choose"
340                  :value "This"
341                  :help-echo "Choose me, please!"
342                  :notify (lambda (widget &rest ignore)
343                            (message "%s is a good choice!"
344                                     (widget-value widget)))
345                  '(item :tag "This option" :value "This")
346                  '(choice-item "That option")
347                  '(editable-field :menu-tag "No option" "Thus option"))
348   (widget-create 'editable-field
349                  :format "Address: %v"
350                  "Some Place\nIn some City\nSome country.")
351   (widget-insert "\nSee also ")
352   (widget-create 'link
353                  :notify (lambda (&rest ignore)
354                            (widget-value-set widget-example-repeat
355                                              '("En" "To" "Tre"))
356                            (widget-setup))
357                  "other work")
358   (widget-insert
359     " for more information.\n\nNumbers: count to three below\n")
360   (setq widget-example-repeat
361         (widget-create 'editable-list
362                        :entry-format "%i %d %v"
363                        :notify
364                        (lambda (widget &rest ignore)
365                          (let ((old (widget-get widget
366                                                 ':example-length))
367                                (new (length (widget-value widget))))
368                            (unless (eq old new)
369                              (widget-put widget ':example-length new)
370                              (message "You can count to %d." new))))
371                        :value '("One" "Eh, two?" "Five!")
372                        '(editable-field :value "three")))
373   (widget-insert "\n\nSelect multiple:\n\n")
374   (widget-create 'checkbox t)
375   (widget-insert " This\n")
376   (widget-create 'checkbox nil)
377   (widget-insert " That\n")
378   (widget-create 'checkbox
379                  :notify (lambda (&rest ignore) (message "Tickle"))
380                  t)
381   (widget-insert " Thus\n\nSelect one:\n\n")
382   (widget-create 'radio-button-choice
383                  :value "One"
384                  :notify (lambda (widget &rest ignore)
385                            (message "You selected %s"
386                                     (widget-value widget)))
387                  '(item "One") '(item "Another One.")
388                  '(item "A Final One."))
389   (widget-insert "\n")
390   (widget-create 'push-button
391                  :notify (lambda (&rest ignore)
392                            (if (= (length
393                                    (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
409 @chapter Setting Up the Buffer
411 Widgets are created with @code{widget-create}, which returns a
412 @dfn{widget} object.  This object can be queried and manipulated by
413 other widget functions, until it is deleted with @code{widget-delete}.
414 After the widgets have been created, @code{widget-setup} must be called
415 to enable them.
417 @defun widget-create type [ keyword argument ]@dots{}
418 Create and return a widget of type @var{type}.
419 The syntax for the @var{type} argument is described in @ref{Basic Types}.
421 The keyword arguments can be used to overwrite the keyword arguments
422 that are part of @var{type}.
423 @end defun
425 @defun widget-delete widget
426 Delete @var{widget} and remove it from the buffer.
427 @end defun
429 @defun widget-setup
430 Set up a buffer to support widgets.
432 This should be called after creating all the widgets and before allowing
433 the user to edit them.
434 @end defun
436 If you want to insert text outside the widgets in the form, the
437 recommended way to do that is with @code{widget-insert}.
439 @defun widget-insert
440 Insert the arguments, either strings or characters, at point.
441 The inserted text will be read-only.
442 @end defun
444 There is a standard widget keymap which you might find useful.
446 @findex widget-button-press
447 @findex widget-button-click
448 @defvr Const widget-keymap
449 @key{TAB} and @kbd{C-@key{TAB}} are bound to @code{widget-forward} and
450 @code{widget-backward}, respectively.  @key{RET} and @kbd{Mouse-2}
451 are bound to @code{widget-button-press} and
452 @code{widget-button-click}.
453 @end defvr
455 @defvar widget-global-map
456 Keymap used by @code{widget-button-press} and @code{widget-button-click}
457 when not on a button.  By default this is @code{global-map}.
458 @end defvar
460 @node Basic Types
461 @chapter Basic Types
463 This is the general syntax of a type specification:
465 @example
466 @var{name} ::= (@var{name} [@var{keyword} @var{argument}]... @var{args})
467      |   @var{name}
468 @end example
470 Where, @var{name} is a widget name, @var{keyword} is the name of a
471 property, @var{argument} is the value of the property, and @var{args}
472 are interpreted in a widget specific way.
474 @cindex keyword arguments
475 The following keyword arguments apply to all widgets:
477 @table @code
478 @vindex value@r{ keyword}
479 @item :value
480 The initial value for widgets of this type.
482 @vindex format@r{ keyword}
483 @item :format
484 This string will be inserted in the buffer when you create a widget.
485 The following @samp{%} escapes are available:
487 @table @samp
488 @item %[
489 @itemx %]
490 The text inside will be marked as a button.
492 By default, the text will be shown in @code{widget-button-face}, and
493 surrounded by brackets.
495 @defopt widget-button-prefix
496 String to prefix buttons.
497 @end defopt
499 @defopt widget-button-suffix
500 String to suffix buttons.
501 @end defopt
503 @item %@{
504 @itemx %@}
505 The text inside will be displayed with the face specified by
506 @code{:sample-face}.
508 @item %v
509 This will be replaced with the buffer representation of the widget's
510 value.  What this is depends on the widget type.
512 @strong{Warning:} In an @code{editable-field} widget, the @samp{%v} escape
513 must be preceded by some other text in the format string (if specified).
515 @item %d
516 Insert the string specified by @code{:doc} here.
518 @item %h
519 Like @samp{%d}, with the following modifications: If the documentation
520 string is more than one line, it will add a button which will toggle
521 between showing only the first line, and showing the full text.
522 Furthermore, if there is no @code{:doc} property in the widget, it will
523 instead examine the @code{:documentation-property} property.  If it is a
524 lambda expression, it will be called with the widget's value as an
525 argument, and the result will be used as the documentation text.
527 @item %t
528 Insert the string specified by @code{:tag} here, or the @code{princ}
529 representation of the value if there is no tag.
531 @item %%
532 Insert a literal @samp{%}.
533 @end table
535 @vindex button-face@r{ keyword}
536 @item :button-face
537 Face used to highlight text inside %[ %] in the format.
539 @vindex button-prefix@r{ keyword}
540 @vindex button-suffix@r{ keyword}
541 @item :button-prefix
542 @itemx :button-suffix
543 Text around %[ %] in the format.
545 These can be
546 @table @emph
547 @item nil
548 No text is inserted.
550 @item a string
551 The string is inserted literally.
553 @item a symbol
554 The value of the symbol is expanded according to this table.
555 @end table
557 @vindex doc@r{ keyword}
558 @item :doc
559 The string inserted by the @samp{%d} escape in the format
560 string.
562 @vindex tag@r{ keyword}
563 @item :tag
564 The string inserted by the @samp{%t} escape in the format
565 string.
567 @vindex tag-glyph@r{ keyword}
568 @item :tag-glyph
569 Name of image to use instead of the string specified by @code{:tag} on
570 Emacsen that supports it.
572 @vindex help-echo@r{ keyword}
573 @item :help-echo
574 Specifies how to display a message whenever you move to the widget with
575 either @code{widget-forward} or @code{widget-backward} or move the mouse
576 over it (using the standard @code{help-echo} mechanism).  The argument
577 is either a string to display, a function of one argument, the widget,
578 which should return a string to display, or a form that evaluates to
579 such a string.
581 @vindex follow-link@r{ keyword}
582 @item :follow-link
583 Specifies how to interpret a @key{mouse-1} click on the widget.
584 @xref{Clickable Text,, Defining Clickable Text, elisp, the Emacs Lisp Reference Manual}.
586 @vindex indent@r{ keyword}
587 @item :indent
588 An integer indicating the absolute number of spaces to indent children
589 of this widget.
591 @vindex offset@r{ keyword}
592 @item :offset
593 An integer indicating how many extra spaces to add to the widget's
594 grandchildren compared to this widget.
596 @vindex extra-offset@r{ keyword}
597 @item :extra-offset
598 An integer indicating how many extra spaces to add to the widget's
599 children compared to this widget.
601 @vindex notify@r{ keyword}
602 @item :notify
603 A function called each time the widget or a nested widget is changed.
604 The function is called with two or three arguments.  The first argument
605 is the widget itself, the second argument is the widget that was
606 changed, and the third argument is the event leading to the change, if
607 any.
609 @vindex menu-tag@r{ keyword}
610 @item :menu-tag
611 Tag used in the menu when the widget is used as an option in a
612 @code{menu-choice} widget.
614 @vindex menu-tag-get@r{ keyword}
615 @item :menu-tag-get
616 Function used for finding the tag when the widget is used as an option
617 in a @code{menu-choice} widget.  By default, the tag used will be either the
618 @code{:menu-tag} or @code{:tag} property if present, or the @code{princ}
619 representation of the @code{:value} property if not.
621 @vindex match@r{ keyword}
622 @item :match
623 Should be a function called with two arguments, the widget and a value,
624 and returning non-@code{nil} if the widget can represent the specified value.
626 @vindex validate@r{ keyword}
627 @item :validate
628 A function which takes a widget as an argument, and returns @code{nil}
629 if the widget's current value is valid for the widget.  Otherwise it
630 should return the widget containing the invalid data, and set that
631 widget's @code{:error} property to a string explaining the error.
633 The following predefined function can be used:
635 @defun widget-children-validate widget
636 All the @code{:children} of @var{widget} must be valid.
637 @end defun
639 @vindex tab-order@r{ keyword}
640 @item :tab-order
641 Specify the order in which widgets are traversed with
642 @code{widget-forward} or @code{widget-backward}.  This is only partially
643 implemented.
645 @enumerate a
646 @item
647 Widgets with tabbing order @code{-1} are ignored.
649 @item
650 (Unimplemented) When on a widget with tabbing order @var{n}, go to the
651 next widget in the buffer with tabbing order @var{n+1} or @code{nil},
652 whichever comes first.
654 @item
655 When on a widget with no tabbing order specified, go to the next widget
656 in the buffer with a positive tabbing order, or @code{nil}
657 @end enumerate
659 @vindex parent@r{ keyword}
660 @item :parent
661 The parent of a nested widget (e.g., a @code{menu-choice} item or an
662 element of a @code{editable-list} widget).
664 @vindex sibling-args@r{ keyword}
665 @item :sibling-args
666 This keyword is only used for members of a @code{radio-button-choice} or
667 @code{checklist}.  The value should be a list of extra keyword
668 arguments, which will be used when creating the @code{radio-button} or
669 @code{checkbox} associated with this item.
671 @end table
673 @deffn {User Option} widget-glyph-directory
674 Directory where glyphs are found.
675 Widget will look here for a file with the same name as specified for the
676 image, with either a @file{.xpm} (if supported) or @file{.xbm} extension.
677 @end deffn
679 @deffn{User Option} widget-glyph-enable
680 If non-@code{nil}, allow glyphs to appear on displays where they are supported.
681 @end deffn
684 @menu
685 * link::
686 * url-link::
687 * info-link::
688 * push-button::
689 * editable-field::
690 * text::
691 * menu-choice::
692 * radio-button-choice::
693 * item::
694 * choice-item::
695 * toggle::
696 * checkbox::
697 * checklist::
698 * editable-list::
699 * group::
700 @end menu
702 @node link
703 @section The @code{link} Widget
704 @findex link@r{ widget}
706 Syntax:
708 @example
709 @var{type} ::= (link [@var{keyword} @var{argument}]...  [ @var{value} ])
710 @end example
712 The @var{value}, if present, is used to initialize the @code{:value}
713 property.  The value should be a string, which will be inserted in the
714 buffer.
716 By default the link will be shown in brackets.
718 @defopt widget-link-prefix
719 String to prefix links.
720 @end defopt
722 @defopt widget-link-suffix
723 String to suffix links.
724 @end defopt
726 @node url-link
727 @section The @code{url-link} Widget
728 @findex url-link@r{ widget}
730 Syntax:
732 @example
733 @var{type} ::= (url-link [@var{keyword} @var{argument}]...  @var{url})
734 @end example
736 @findex browse-url-browser-function@r{, and @code{url-link} widget}
737 When this link is invoked, the @acronym{WWW} browser specified by
738 @code{browse-url-browser-function} will be called with @var{url}.
740 @node info-link
741 @section The @code{info-link} Widget
742 @findex info-link@r{ widget}
744 Syntax:
746 @example
747 @var{type} ::= (info-link [@var{keyword} @var{argument}]...  @var{address})
748 @end example
750 When this link is invoked, the built-in Info reader is started on
751 @var{address}.
753 @node  push-button
754 @section The @code{push-button} Widget
755 @findex push-button@r{ widget}
757 Syntax:
759 @example
760 @var{type} ::= (push-button [@var{keyword} @var{argument}]...  [ @var{value} ])
761 @end example
763 The @var{value}, if present, is used to initialize the @code{:value}
764 property.  The value should be a string, which will be inserted in the
765 buffer.
767 By default the tag will be shown in brackets.
769 @defopt widget-push-button-prefix
770 String to prefix push buttons.
771 @end defopt
773 @defopt widget-push-button-suffix
774 String to suffix push buttons.
775 @end defopt
777 @node editable-field
778 @section The @code{editable-field} Widget
779 @findex editable-field@r{ widget}
781 Syntax:
783 @example
784 @var{type} ::= (editable-field [@var{keyword} @var{argument}]... [ @var{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 the
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 @code{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
827 @section The @code{text} Widget
828 @findex text@r{ widget}
830 @vindex widget-text-keymap
831 This is just like @code{editable-field}, but intended for multiline text
832 fields.  The default @code{:keymap} is @code{widget-text-keymap}, which
833 does not rebind the @key{RET} key.
835 @node menu-choice
836 @section The @code{menu-choice} Widget
837 @findex menu-choice@r{ widget}
839 Syntax:
841 @example
842 @var{type} ::= (menu-choice [@var{keyword} @var{argument}]... @var{type} ... )
843 @end example
845 The @var{type} argument represents each possible choice.  The widget's
846 value will be that of the chosen @var{type} argument.  This widget will
847 match any value matching at least one of the specified @var{type}
848 arguments.
850 @table @code
851 @vindex void@r{ keyword}
852 @item :void
853 Widget type used as a fallback when the value does not match any of the
854 specified @var{type} arguments.
856 @vindex case-fold@r{ keyword}
857 @item :case-fold
858 Set this to @code{nil} if you don't want to ignore case when prompting for a
859 choice through the minibuffer.
861 @vindex children@r{ keyword}
862 @item :children
863 A list whose @sc{car} is the widget representing the currently chosen
864 type in the buffer.
866 @vindex choice@r{ keyword}
867 @item :choice
868 The current chosen type.
870 @vindex args@r{ keyword}
871 @item :args
872 The list of types.
873 @end table
875 @node radio-button-choice
876 @section The @code{radio-button-choice} Widget
877 @findex radio-button-choice@r{ widget}
879 Syntax:
881 @example
882 @var{type} ::= (radio-button-choice [@var{keyword} @var{argument}]...  @var{type} ... )
883 @end example
885 The component types specify the choices, with one radio button for
886 each.  The widget's value will be that of the chosen @var{type}
887 argument.  This widget matches any value that matches at least one of
888 the specified @var{type} arguments.
890 The following extra properties are recognized.
892 @table @code
893 @vindex entry-format@r{ keyword}
894 @item :entry-format
895 This string will be inserted for each entry in the list.
896 The following @samp{%} escapes are available:
897 @table @samp
898 @item %v
899 Replace with the buffer representation of the @var{type} widget.
900 @item %b
901 Replace with the radio button.
902 @item %%
903 Insert a literal @samp{%}.
904 @end table
906 @vindex button-args@r{ keyword}
907 @item :button-args
908 A list of keywords to pass to the radio buttons.  Useful for setting,
909 e.g., the @samp{:help-echo} for each button.
911 @vindex buttons@r{ keyword}
912 @item :buttons
913 The widgets representing the radio buttons.
915 @vindex children@r{ keyword}
916 @item :children
917 The widgets representing each type.
919 @vindex choice@r{ keyword}
920 @item :choice
921 The current chosen type
923 @vindex args@r{ keyword}
924 @item :args
925 The list of types.
926 @end table
928 You can add extra radio button items to a @code{radio-button-choice}
929 widget after it has been created with the function
930 @code{widget-radio-add-item}.
932 @defun widget-radio-add-item widget type
933 Add to @code{radio-button-choice} widget @var{widget} a new radio button
934 item of type @var{type}.
935 @end defun
937 Please note that such items added after the @code{radio-button-choice}
938 widget has been created will @strong{not} be properly destructed when
939 you call @code{widget-delete}.
941 @node item
942 @section The @code{item} Widget
943 @findex item@r{ widget}
945 Syntax:
947 @example
948 @var{item} ::= (item [@var{keyword} @var{argument}]... @var{value})
949 @end example
951 The @var{value}, if present, is used to initialize the @code{:value}
952 property.  The value should be a string, which will be inserted in the
953 buffer.  This widget will only match the specified value.
955 @node choice-item
956 @section The @code{choice-item} Widget
957 @findex choice-item@r{ widget}
959 Syntax:
961 @example
962 @var{item} ::= (choice-item [@var{keyword} @var{argument}]... @var{value})
963 @end example
965 The @var{value}, if present, is used to initialize the @code{:value}
966 property.  The value should be a string, which will be inserted in the
967 buffer as a button.  Activating the button of a @code{choice-item} is
968 equivalent to activating the parent widget.  This widget will only match
969 the specified value.
971 @node toggle
972 @section The @code{toggle} Widget
973 @findex toggle@r{ widget}
975 Syntax:
977 @example
978 @var{type} ::= (toggle [@var{keyword} @var{argument}]...)
979 @end example
981 The widget has two possible states, @samp{on} and @samp{off}, which
982 correspond to a @code{t} or @code{nil} value, respectively.
984 The following extra properties are recognized:
986 @table @code
987 @item :on
988 A string representing the @samp{on} state.  By default the string
989 @samp{on}.
990 @item :off
991 A string representing the @samp{off} state.  By default the string
992 @samp{off}.
993 @vindex on-glyph@r{ keyword}
994 @item :on-glyph
995 Name of a glyph to be used instead of the @samp{:on} text string, on
996 emacsen that supports this.
997 @vindex off-glyph@r{ keyword}
998 @item :off-glyph
999 Name of a glyph to be used instead of the @samp{:off} text string, on
1000 emacsen that supports this.
1001 @end table
1003 @node checkbox
1004 @section The @code{checkbox} Widget
1005 @findex checkbox@r{ widget}
1007 This widget has two possible states, @samp{selected} and
1008 @samp{unselected}, which corresponds to a @code{t} or @code{nil} value.
1010 Syntax:
1012 @example
1013 @var{type} ::= (checkbox [@var{keyword} @var{argument}]...)
1014 @end example
1016 @node checklist
1017 @section The @code{checklist} Widget
1018 @findex checklist@r{ widget}
1020 Syntax:
1022 @example
1023 @var{type} ::= (checklist [@var{keyword} @var{argument}]...  @var{type} ... )
1024 @end example
1026 The @var{type} arguments represent each checklist item.  The widget's
1027 value will be a list containing the values of all checked @var{type}
1028 arguments.  The checklist widget will match a list whose elements all
1029 match at least one of the specified @var{type} arguments.
1031 The following extra properties are recognized:
1033 @table @code
1034 @vindex entry-format@r{ keyword}
1035 @item :entry-format
1036 This string will be inserted for each entry in the list.
1037 The following @samp{%} escapes are available:
1038 @table @samp
1039 @item %v
1040 Replaced with the buffer representation of the @var{type} widget.
1041 @item %b
1042 Replace with the checkbox.
1043 @item %%
1044 Insert a literal @samp{%}.
1045 @end table
1047 @vindex greedy@r{ keyword}
1048 @item :greedy
1049 Usually a checklist will only match if the items are in the exact
1050 sequence given in the specification.  By setting @code{:greedy} to
1051 non-@code{nil}, it will allow the items to come in any sequence.
1052 However, if you extract the value they will be in the sequence given
1053 in the checklist, i.e., the original sequence is forgotten.
1055 @vindex button-args@r{ keyword}
1056 @item :button-args
1057 A list of keywords to pass to the checkboxes.  Useful for setting,
1058 e.g., the @samp{:help-echo} for each checkbox.
1060 @vindex buttons@r{ keyword}
1061 @item :buttons
1062 The widgets representing the checkboxes.
1064 @vindex children@r{ keyword}
1065 @item :children
1066 The widgets representing each type.
1068 @vindex args@r{ keyword}
1069 @item :args
1070 The list of types.
1071 @end table
1073 @node editable-list
1074 @section The @code{editable-list} Widget
1075 @findex editable-list@r{ widget}
1077 Syntax:
1079 @example
1080 @var{type} ::= (editable-list [@var{keyword} @var{argument}]... @var{type})
1081 @end example
1083 The value is a list, where each member represents one widget of type
1084 @var{type}.
1086 The following extra properties are recognized:
1088 @table @code
1089 @vindex entry-format@r{ keyword}
1090 @item :entry-format
1091 This string will be inserted for each entry in the list.
1092 The following @samp{%} escapes are available:
1093 @table @samp
1094 @item %v
1095 This will be replaced with the buffer representation of the @var{type}
1096 widget.
1097 @item %i
1098 Insert the @b{[INS]} button.
1099 @item %d
1100 Insert the @b{[DEL]} button.
1101 @item %%
1102 Insert a literal @samp{%}.
1103 @end table
1105 @vindex insert-button-args@r{ keyword}
1106 @item :insert-button-args
1107 A list of keyword arguments to pass to the insert buttons.
1109 @vindex delete-button-args@r{ keyword}
1110 @item :delete-button-args
1111 A list of keyword arguments to pass to the delete buttons.
1113 @vindex append-button-args@r{ keyword}
1114 @item :append-button-args
1115 A list of keyword arguments to pass to the trailing insert button.
1117 @vindex buttons@r{ keyword}
1118 @item :buttons
1119 The widgets representing the insert and delete buttons.
1121 @vindex children@r{ keyword}
1122 @item :children
1123 The widgets representing the elements of the list.
1125 @vindex args@r{ keyword}
1126 @item :args
1127 List whose @sc{car} is the type of the list elements.
1128 @end table
1130 @node group
1131 @section The @code{group} Widget
1132 @findex group@r{ widget}
1134 This widget simply group other widgets together.
1136 Syntax:
1138 @example
1139 @var{type} ::= (group [@var{keyword} @var{argument}]... @var{type}...)
1140 @end example
1142 The value is a list, with one member for each @var{type}.
1144 @node Sexp Types
1145 @chapter Sexp Types
1146 @cindex sexp types
1148 A number of widgets for editing @dfn{s-expressions} (Lisp types), sexp
1149 for short, are also available.  These basically fall in several
1150 categories described in this section.
1152 @menu
1153 * constants::
1154 * generic::
1155 * atoms::
1156 * composite::
1157 @end menu
1159 @node constants
1160 @section The Constant Widgets
1161 @cindex constant widgets
1163 The @code{const} widget can contain any Lisp expression, but the user is
1164 prohibited from editing it, which is mainly useful as a component of one
1165 of the composite widgets.
1167 The syntax for the @code{const} widget is:
1169 @example
1170 @var{type} ::= (const [@var{keyword} @var{argument}]...  [ @var{value} ])
1171 @end example
1173 The @var{value}, if present, is used to initialize the @code{:value}
1174 property and can be any s-expression.
1176 @deffn Widget const
1177 This will display any valid s-expression in an immutable part of the
1178 buffer.
1179 @end deffn
1181 There are two variations of the @code{const} widget, namely
1182 @code{variable-item} and @code{function-item}.  These should contain a
1183 symbol with a variable or function binding.  The major difference from
1184 the @code{const} widget is that they will allow the user to see the
1185 variable or function documentation for the symbol.
1187 @deffn Widget variable-item
1188 An immutable symbol that is bound as a variable.
1189 @end deffn
1191 @deffn Widget function-item
1192 An immutable symbol that is bound as a function.
1193 @end deffn
1195 @node generic
1196 @section Generic Sexp Widget
1197 @cindex generic sexp widget
1199 The @code{sexp} widget can contain any Lisp expression, and allows the
1200 user to edit it inline in the buffer.
1202 The syntax for the @code{sexp} widget is:
1204 @example
1205 @var{type} ::= (sexp [@var{keyword} @var{argument}]...  [ @var{value} ])
1206 @end example
1208 @deffn Widget sexp
1209 This will allow you to edit any valid s-expression in an editable buffer
1210 field.
1212 The @code{sexp} widget takes the same keyword arguments as the
1213 @code{editable-field} widget.  @xref{editable-field}.
1214 @end deffn
1216 @node atoms
1217 @section Atomic Sexp Widgets
1218 @cindex atomic sexp widget
1220 The atoms are s-expressions that do not consist of other s-expressions.
1221 For example, a string, a file name, or a symbol are atoms, while a list
1222 is a composite type.  You can edit the value of an atom with the
1223 following widgets.
1225 The syntax for all the atoms are:
1227 @example
1228 @var{type} ::= (@var{construct} [@var{keyword} @var{argument}]...  [ @var{value} ])
1229 @end example
1231 The @var{value}, if present, is used to initialize the @code{:value}
1232 property and must be an expression of the same type as the widget.
1233 That is, the string widget can only be initialized with a string.
1235 All the atom widgets take the same keyword arguments as the
1236 @code{editable-field} widget.  @xref{editable-field}.
1238 @deffn Widget string
1239 Allows you to edit a string in an editable field.
1240 @end deffn
1242 @deffn Widget regexp
1243 Allows you to edit a regular expression in an editable field.
1244 @end deffn
1246 @deffn Widget character
1247 Allows you to enter a character in an editable field.
1248 @end deffn
1250 @deffn Widget file
1251 Allows you to edit a file name in an editable field.
1253 Keywords:
1254 @table @code
1255 @vindex must-match@r{ keyword}
1256 @item :must-match
1257 If this is set to non-@code{nil}, only existing file names will be
1258 allowed in the minibuffer.
1259 @end table
1260 @end deffn
1262 @deffn Widget directory
1263 Allows you to edit a directory name in an editable field.
1264 Similar to the @code{file} widget.
1265 @end deffn
1267 @deffn Widget symbol
1268 Allows you to edit a Lisp symbol in an editable field.
1269 @end deffn
1271 @deffn Widget function
1272 Allows you to edit a lambda expression, or a function name with completion.
1273 @end deffn
1275 @deffn Widget variable
1276 Allows you to edit a variable name, with completion.
1277 @end deffn
1279 @deffn Widget integer
1280 Allows you to edit an integer in an editable field.
1281 @end deffn
1283 @deffn Widget number
1284 Allows you to edit a number in an editable field.
1285 @end deffn
1287 @deffn Widget boolean
1288 Allows you to edit a boolean.  In Lisp this means a variable which is
1289 either @code{nil} meaning false, or non-@code{nil} meaning true.
1290 @end deffn
1293 @node composite
1294 @section Composite Sexp Widgets
1295 @cindex composite sexp widgets
1297 The syntax for the composite widget construct is:
1299 @example
1300 @var{type} ::= (@var{construct} [@var{keyword} @var{argument}]...  @var{component}...)
1301 @end example
1303 @noindent
1304 where each @var{component} must be a widget type.  Each component widget
1305 will be displayed in the buffer, and will be editable by the user.
1307 @deffn Widget cons
1308 The value of a @code{cons} widget must be a cons-cell whose @sc{car}
1309 and @sc{cdr} have two specified types.  It uses this syntax:
1311 @example
1312 @var{type} ::= (cons [@var{keyword} @var{argument}]...  @var{car-type} @var{cdr-type})
1313 @end example
1314 @end deffn
1316 @deffn Widget choice
1317 The value matched by a @code{choice} widget must have one of a fixed
1318 set of types.  The widget's syntax is as follows:
1320 @example
1321 @var{type} ::= (choice [@var{keyword} @var{argument}]...  @var{type} ... )
1322 @end example
1324 The value of a @code{choice} widget can be anything that matches any of the
1325 @var{types}.
1326 @end deffn
1328 @deffn Widget list
1329 The value of a @code{list} widget must be a list whose element types
1330 match the specified component types:
1332 @example
1333 @var{type} ::= (list [@var{keyword} @var{argument}]...  @var{component-type}...)
1334 @end example
1336 Thus, @code{(list string number)} matches lists of two elements,
1337 the first being a string and the second being a number.
1338 @end deffn
1340 @deffn Widget vector
1341 The @code{vector} widget is like the @code{list} widget but matches
1342 vectors instead of lists.  Thus, @code{(vector string number)} matches
1343 vectors of two elements, the first being a string and the second being
1344 a number.
1345 @end deffn
1347 The above suffice for specifying fixed size lists and vectors.  To get
1348 variable length lists and vectors, you can use a @code{choice},
1349 @code{set}, or @code{repeat} widget together with the @code{:inline}
1350 keyword.  If any component of a composite widget has the
1351 @code{:inline} keyword set, its value must be a list which will then
1352 be spliced into the composite.  For example, to specify a list whose
1353 first element must be a file name, and whose remaining elements should
1354 either be the symbol @code{t} or two strings (file names), you can use
1355 the following widget specification:
1357 @example
1358 (list file
1359       (choice (const t)
1360               (list :inline t
1361                     :value ("foo" "bar")
1362                     string string)))
1363 @end example
1365 The value of a widget of this type will either have the form
1366 @code{(file t)} or @code{(file @var{string} @var{string})}.
1368 This concept of @code{:inline} may be hard to understand.  It was
1369 certainly hard to implement, so instead of confusing you more by
1370 trying to explain it here, I'll just suggest you meditate over it for
1371 a while.
1373 @deffn Widget set
1374 Specifies a type whose values are the lists whose elements all belong
1375 to a given set.  The order of elements of the list is not significant.
1376 Here's the syntax:
1378 @example
1379 @var{type} ::= (set [@var{keyword} @var{argument}]...  @var{permitted-element} ... )
1380 @end example
1382 Use @code{const} to specify each permitted element, like this:
1383 @code{(set (const a) (const b))}.
1384 @end deffn
1386 @deffn Widget repeat
1387 Specifies a list of any number of elements that fit a certain type.
1389 @example
1390 @var{type} ::= (repeat [@var{keyword} @var{argument}]...  @var{type})
1391 @end example
1392 @end deffn
1394 @node Widget Properties
1395 @chapter Properties
1396 @cindex properties of widgets
1397 @cindex widget properties
1399 You can examine or set the value of a widget by using the widget object
1400 that was returned by @code{widget-create}.
1402 @defun widget-value widget
1403 Return the current value contained in @var{widget}.
1404 It is an error to call this function on an uninitialized widget.
1405 @end defun
1407 @defun widget-value-set widget value
1408 Set the value contained in @var{widget} to @var{value}.
1409 It is an error to call this function with an invalid @var{value}.
1410 @end defun
1412 @strong{Important:} You @emph{must} call @code{widget-setup} after
1413 modifying the value of a widget before the user is allowed to edit the
1414 widget again.  It is enough to call @code{widget-setup} once if you
1415 modify multiple widgets.  This is currently only necessary if the widget
1416 contains an editing field, but may be necessary for other widgets in the
1417 future.
1419 If your application needs to associate some information with the widget
1420 objects, for example a reference to the item being edited, it can be
1421 done with @code{widget-put} and @code{widget-get}.  The property names
1422 must begin with a @samp{:}.
1424 @defun widget-put widget property value
1425 In @var{widget} set @var{property} to @var{value}.
1426 @var{property} should be a symbol, while @var{value} can be anything.
1427 @end defun
1429 @defun widget-get widget property
1430 In @var{widget} return the value for @var{property}.
1431 @var{property} should be a symbol, the value is what was last set by
1432 @code{widget-put} for @var{property}.
1433 @end defun
1435 @defun widget-member widget property
1436 Non-@code{nil} if @var{widget} has a value (even @code{nil}) for
1437 property @var{property}.
1438 @end defun
1440 Occasionally it can be useful to know which kind of widget you have,
1441 i.e., the name of the widget type you gave when the widget was created.
1443 @defun widget-type widget
1444 Return the name of @var{widget}, a symbol.
1445 @end defun
1447 @cindex active widget
1448 @cindex inactive widget
1449 @cindex activate a widget
1450 @cindex deactivate a widget
1451 Widgets can be in two states: active, which means they are modifiable by
1452 the user, or inactive, which means they cannot be modified by the user.
1453 You can query or set the state with the following code:
1455 @lisp
1456 ;; Examine if @var{widget} is active or not.
1457 (if (widget-apply @var{widget} :active)
1458     (message "Widget is active.")
1459   (message "Widget is inactive.")
1461 ;; Make @var{widget} inactive.
1462 (widget-apply @var{widget} :deactivate)
1464 ;; Make @var{widget} active.
1465 (widget-apply @var{widget} :activate)
1466 @end lisp
1468 A widget is inactive if it, or any of its ancestors (found by
1469 following the @code{:parent} link), have been deactivated.  To make sure
1470 a widget is really active, you must therefore activate both it and
1471 all its ancestors.
1473 @lisp
1474 (while widget
1475   (widget-apply widget :activate)
1476   (setq widget (widget-get widget :parent)))
1477 @end lisp
1479 You can check if a widget has been made inactive by examining the value
1480 of the @code{:inactive} keyword.  If this is non-@code{nil}, the widget itself
1481 has been deactivated.  This is different from using the @code{:active}
1482 keyword, in that the latter tells you if the widget @strong{or} any of
1483 its ancestors have been deactivated.  Do not attempt to set the
1484 @code{:inactive} keyword directly.  Use the @code{:activate}
1485 @code{:deactivate} keywords instead.
1488 @node Defining New Widgets
1489 @chapter Defining New Widgets
1490 @cindex new widgets
1491 @cindex defining new widgets
1493 You can define specialized widgets with @code{define-widget}.  It allows
1494 you to create a shorthand for more complex widgets, including specifying
1495 component widgets and new default values for the keyword
1496 arguments.
1498 @defun define-widget name class doc &rest args
1499 Define a new widget type named @var{name} from @code{class}.
1501 @var{name} and class should both be symbols, @code{class} should be one
1502 of the existing widget types.
1504 The third argument @var{doc} is a documentation string for the widget.
1506 After the new widget has been defined, the following two calls will
1507 create identical widgets:
1509 @itemize @bullet
1510 @item
1511 @lisp
1512 (widget-create @var{name})
1513 @end lisp
1515 @item
1516 @lisp
1517 (apply widget-create @var{class} @var{args})
1518 @end lisp
1519 @end itemize
1521 @end defun
1523 Using @code{define-widget} just stores the definition of the widget type
1524 in the @code{widget-type} property of @var{name}, which is what
1525 @code{widget-create} uses.
1527 If you only want to specify defaults for keywords with no complex
1528 conversions, you can use @code{identity} as your conversion function.
1530 The following additional keyword arguments are useful when defining new
1531 widgets:
1532 @table @code
1533 @vindex convert-widget@r{ keyword}
1534 @item :convert-widget
1535 Function to convert a widget type before creating a widget of that
1536 type.  It takes a widget type as an argument, and returns the converted
1537 widget type.  When a widget is created, this function is called for the
1538 widget type and all the widget's parent types, most derived first.
1540 The following predefined functions can be used here:
1542 @defun widget-types-convert-widget widget
1543 Convert @code{:args} as widget types in @var{widget}.
1544 @end defun
1546 @defun widget-value-convert-widget widget
1547 Initialize @code{:value} from @code{:args} in @var{widget}.
1548 @end defun
1550 @vindex copy@r{ keyword}
1551 @item :copy
1552 Function to deep copy a widget type.  It takes a shallow copy of the
1553 widget type as an argument (made by @code{copy-sequence}), and returns a
1554 deep copy.  The purpose of this is to avoid having different instances
1555 of combined widgets share nested attributes.
1557 The following predefined functions can be used here:
1559 @defun widget-types-copy widget
1560 Copy @code{:args} as widget types in @var{widget}.
1561 @end defun
1563 @vindex value-to-internal@r{ keyword}
1564 @item :value-to-internal
1565 Function to convert the value to the internal format.  The function
1566 takes two arguments, a widget and an external value, and returns the
1567 internal value.  The function is called on the present @code{:value}
1568 when the widget is created, and on any value set later with
1569 @code{widget-value-set}.
1571 @vindex value-to-external@r{ keyword}
1572 @item :value-to-external
1573 Function to convert the value to the external format.  The function
1574 takes two arguments, a widget and an internal value, and returns the
1575 external value.  The function is called on the present @code{:value}
1576 when the widget is created, and on any value set later with
1577 @code{widget-value-set}.
1579 @vindex create@r{ keyword}
1580 @item :create
1581 Function to create a widget from scratch.  The function takes one
1582 argument, a widget type, and creates a widget of that type, inserts it
1583 in the buffer, and returns a widget object.
1585 @vindex delete@r{ keyword}
1586 @item :delete
1587 Function to delete a widget.  The function takes one argument, a widget,
1588 and should remove all traces of the widget from the buffer.
1590 The default value is:
1592 @defun widget-default-delete widget
1593 Remove @var{widget} from the buffer.
1594 Delete all @code{:children} and @code{:buttons} in @var{widget}.
1595 @end defun
1597 In most cases you should not change this value, but instead use
1598 @code{:value-delete} to make any additional cleanup.
1600 @vindex value-create@r{ keyword}
1601 @item :value-create
1602 Function to expand the @samp{%v} escape in the format string.  It will
1603 be called with the widget as its argument and should insert a
1604 representation of the widget's value in the buffer.
1606 Nested widgets should be listed in @code{:children} or @code{:buttons}
1607 to make sure they are automatically deleted.
1609 @vindex value-delete@r{ keyword}
1610 @item :value-delete
1611 Should remove the representation of the widget's value from the buffer.
1612 It will be called with the widget as its argument.  It doesn't have to
1613 remove the text, but it should release markers and delete nested widgets
1614 if these are not listed in @code{:children} or @code{:buttons}.
1616 @vindex value-get@r{ keyword}
1617 @item :value-get
1618 Function to extract the value of a widget, as it is displayed in the
1619 buffer.
1621 The following predefined function can be used here:
1623 @defun widget-value-value-get widget
1624 Return the @code{:value} property of @var{widget}.
1625 @end defun
1627 @vindex format-handler@r{ keyword}
1628 @item :format-handler
1629 Function to handle unknown @samp{%} escapes in the format string.  It
1630 will be called with the widget and the character that follows the
1631 @samp{%} as arguments.  You can set this to allow your widget to handle
1632 non-standard escapes.
1634 @findex widget-default-format-handler
1635 You should end up calling @code{widget-default-format-handler} to handle
1636 unknown escape sequences, which will handle the @samp{%h} and any future
1637 escape sequences, as well as give an error for unknown escapes.
1639 @vindex action@r{ keyword}
1640 @item :action
1641 Function to handle user initiated events.  By default, @code{:notify}
1642 the parent.
1644 The following predefined function can be used here:
1646 @defun widget-parent-action widget &optional event
1647 Tell @code{:parent} of @var{widget} to handle the @code{:action}.
1648 Optional @var{event} is the event that triggered the action.
1649 @end defun
1651 @vindex prompt-value@r{ keyword}
1652 @item :prompt-value
1653 Function to prompt for a value in the minibuffer.  The function should
1654 take four arguments, @var{widget}, @var{prompt}, @var{value}, and
1655 @var{unbound} and should return a value for widget entered by the user.
1656 @var{prompt} is the prompt to use.  @var{value} is the default value to
1657 use, unless @var{unbound} is non-@code{nil}, in which case there is no default
1658 value.  The function should read the value using the method most natural
1659 for this widget, and does not have to check that it matches.
1660 @end table
1662 If you want to define a new widget from scratch, use the @code{default}
1663 widget as its base.
1665 @deffn Widget default
1666 Widget used as a base for other widgets.
1668 It provides most of the functionality that is referred to as ``by
1669 default'' in this text.
1670 @end deffn
1672 @node Widget Browser
1673 @chapter Widget Browser
1674 @cindex widget browser
1676 There is a separate package to browse widgets.  This is intended to help
1677 programmers who want to examine the content of a widget.  The browser
1678 shows the value of each keyword, but uses links for certain keywords
1679 such as @samp{:parent}, which avoids printing cyclic structures.
1681 @deffn Command widget-browse @var{widget}
1682 Create a widget browser for @var{widget}.
1683 When called interactively, prompt for @var{widget}.
1684 @end deffn
1686 @deffn Command widget-browse-other-window @var{widget}
1687 Create a widget browser for @var{widget} and show it in another window.
1688 When called interactively, prompt for @var{widget}.
1689 @end deffn
1691 @deffn Command widget-browse-at @var{pos}
1692 Create a widget browser for the widget at @var{pos}.
1693 When called interactively, use the position of point.
1694 @end deffn
1696 @node  Widget Minor Mode
1697 @chapter Widget Minor Mode
1698 @cindex widget minor mode
1700 There is a minor mode for manipulating widgets in major modes that
1701 don't provide any support for widgets themselves.  This is mostly
1702 intended to be useful for programmers doing experiments.
1704 @deffn Command widget-minor-mode
1705 Toggle minor mode for traversing widgets.
1706 With arg, turn widget mode on if and only if arg is positive.
1707 @end deffn
1709 @defvar widget-minor-mode-keymap
1710 Keymap used in @code{widget-minor-mode}.
1711 @end defvar
1713 @node  Utilities
1714 @chapter Utilities
1715 @cindex utility functions for widgets
1717 @defun widget-prompt-value widget prompt [ value unbound ]
1718 Prompt for a value matching @var{widget}, using @var{prompt}.
1719 The current value is assumed to be @var{value}, unless @var{unbound} is
1720 non-@code{nil}.
1721 @end defun
1723 @defun widget-get-sibling widget
1724 Get the item which @var{widget} is assumed to toggle.
1725 This is only meaningful for radio buttons or checkboxes in a list.
1726 @end defun
1728 @node  Widget Wishlist
1729 @chapter Wishlist
1730 @cindex todo
1732 @itemize @bullet
1733 @item
1734 It should be possible to add or remove items from a list with @kbd{C-k}
1735 and @kbd{C-o} (suggested by @sc{rms}).
1737 @item
1738 The @samp{[INS]} and @samp{[DEL]} buttons should be replaced by a single
1739 dash (@samp{-}).  The dash should be a button that, when invoked, asks
1740 whether you want to add or delete an item (@sc{rms} wanted to git rid of
1741 the ugly buttons, the dash is my idea).
1743 @item
1744 The @code{menu-choice} tag should be prettier, something like the abbreviated
1745 menus in Open Look.
1747 @item
1748 Finish @code{:tab-order}.
1750 @item
1751 Make indentation work with glyphs and proportional fonts.
1753 @item
1754 Add commands to show overview of object and class hierarchies to the
1755 browser.
1757 @item
1758 Find a way to disable mouse highlight for inactive widgets.
1760 @item
1761 Find a way to make glyphs look inactive.
1763 @item
1764 Add @code{property-list} widget.
1766 @item
1767 Add @code{association-list} widget.
1769 @item
1770 Add @code{key-binding} widget.
1772 @item
1773 Add @code{widget} widget for editing widget specifications.
1775 @item
1776 Find clean way to implement variable length list.
1777 See @code{TeX-printer-list} for an explanation.
1779 @item
1780 @kbd{C-h} in @code{widget-prompt-value} should give type specific help.
1782 @item
1783 Add a @code{mailto} widget.
1784 @end itemize
1786 @node GNU Free Documentation License
1787 @appendix GNU Free Documentation License
1788 @include doclicense.texi
1790 @node Index
1791 @unnumbered Index
1793 This is an alphabetical listing of all concepts, functions, commands,
1794 variables, and widgets described in this manual.
1795 @printindex cp
1797 @bye