(NUM_RECENT_KEYS): Bump up to 300.
[emacs.git] / man / widget.texi
blob72157289524b51df2c0e545acacfb828c5d3c1e5
1 \input texinfo.tex
3 @c %**start of header
4 @setfilename ../info/widget
5 @settitle The Emacs Widget Library
6 @syncodeindex fn cp
7 @syncodeindex vr cp
8 @syncodeindex ky cp
9 @afourpaper
10 @c %**end of header
12 @copying
13 Copyright @copyright{} 2000, 2001, 2002, 2003, 2004, 2005,
14 2006, 2007  Free Software Foundation, Inc.
16 @quotation
17 Permission is granted to copy, distribute and/or modify this document
18 under the terms of the GNU Free Documentation License, Version 1.2 or
19 any later version published by the Free Software Foundation; with the
20 Invariant Sections being ``The GNU Manifesto'', ``Distribution'' and
21 ``GNU GENERAL PUBLIC LICENSE'', with the Front-Cover texts being ``A GNU
22 Manual'', and with the Back-Cover Texts as in (a) below.  A copy of the
23 license is included in the section entitled ``GNU Free Documentation
24 License'' in the Emacs manual.
26 This document is part of a collection distributed under the GNU Free
27 Documentation License.  If you want to distribute this document
28 separately from the collection, you can do so by adding a copy of the
29 license to the document, as described in section 6 of the license.
31 (a) The FSF's Back-Cover Text is: ``You have freedom to copy and modify
32 this GNU Manual, like GNU software.  Copies published by the Free
33 Software Foundation raise funds for GNU development.''
34 @end quotation
35 @end copying
37 @dircategory Emacs
38 @direntry
39 * Widget: (widget).      The "widget" package used by the Emacs Customization
40                            facility.
41 @end direntry
43 @node Top, Introduction, (dir), (dir)
44 @comment  node-name,  next,  previous,  up
45 @top The Emacs Widget Library
47 @menu
48 * Introduction::
49 * User Interface::
50 * Programming Example::
51 * Setting Up the Buffer::
52 * Basic Types::
53 * Sexp Types::
54 * Widget Properties::
55 * Defining New Widgets::
56 * Widget Browser::
57 * Widget Minor Mode::
58 * Utilities::
59 * Widget Wishlist::
60 * Index::
61 @end menu
63 @node  Introduction, User Interface, Top, Top
64 @comment  node-name,  next,  previous,  up
65 @section Introduction
67 Most graphical user interface toolkits provide a number of standard
68 user interface controls (sometimes known as `widgets' or `gadgets').
69 Emacs doesn't really support anything like this, except for an
70 incredibly powerful text ``widget.''  On the other hand, Emacs does
71 provide the necessary primitives to implement many other widgets
72 within a text buffer.  The @code{widget} package simplifies this task.
74 @cindex basic widgets
75 @cindex widgets, basic types
76 The basic widgets are:
78 @table @code
79 @item link
80 Areas of text with an associated action.  Intended for hypertext links
81 embedded in text.
82 @item push-button
83 Like link, but intended for stand-alone buttons.
84 @item editable-field
85 An editable text field.  It can be either variable or fixed length.
86 @item menu-choice
87 Allows the user to choose one of multiple options from a menu, each
88 option is itself a widget.  Only the selected option will be visible in
89 the buffer.
90 @item radio-button-choice
91 Allows the user to choose one of multiple options by activating radio
92 buttons.  The options are implemented as widgets.  All options will be
93 visible in the buffer.
94 @item item
95 A simple constant widget intended to be used in the @code{menu-choice} and
96 @code{radio-button-choice} widgets.
97 @item choice-item
98 A button item only intended for use in choices.  When invoked, the user
99 will be asked to select another option from the choice widget.
100 @item toggle
101 A simple @samp{on}/@samp{off} switch.
102 @item checkbox
103 A checkbox (@samp{[ ]}/@samp{[X]}).
104 @item editable-list
105 Create an editable list.  The user can insert or delete items in the
106 list.  Each list item is itself a widget.
107 @end table
109 Now, of what possible use can support for widgets be in a text editor?
110 I'm glad you asked.  The answer is that widgets are useful for
111 implementing forms.  A @dfn{form} in Emacs is a buffer where the user is
112 supposed to fill out a number of fields, each of which has a specific
113 meaning.  The user is not supposed to change or delete any of the text
114 between the fields.  Examples of forms in Emacs are the @file{forms}
115 package (of course), the customize buffers, the mail and news compose
116 modes, and the @acronym{HTML} form support in the @file{w3} browser.
118 @cindex widget library, why use it
119 The advantages for a programmer of using the @code{widget} package to
120 implement forms are:
122 @enumerate
123 @item
124 More complex fields than just editable text are supported.
125 @item
126 You can give the users immediate feedback if they enter invalid data in a
127 text field, and sometimes prevent entering invalid data.
128 @item
129 You can have fixed sized fields, thus allowing multiple fields to be
130 lined up in columns.
131 @item
132 It is simple to query or set the value of a field.
133 @item
134 Editing happens in the buffer, not in the mini-buffer.
135 @item
136 Packages using the library get a uniform look, making them easier for
137 the user to learn.
138 @item
139 As support for embedded graphics improve, the widget library will be
140 extended to use the GUI features.  This means that your code using the
141 widget library will also use the new graphic features automatically.
142 @end enumerate
144 In order to minimize the code that is loaded by users who do not
145 create any widgets, the code has been split in two files:
147 @cindex widget library, files
148 @table @file
149 @item widget.el
150 This will declare the user variables, define the function
151 @code{define-widget}, and autoload the function @code{widget-create}.
152 @item wid-edit.el
153 Everything else is here, there is no reason to load it explicitly, as
154 it will be autoloaded when needed.
155 @end table
157 @node User Interface, Programming Example, Introduction, Top
158 @comment  node-name,  next,  previous,  up
159 @section User Interface
161 A form consists of read only text for documentation and some fields,
162 where each field contains two parts, a tag and a value.  The tags are
163 used to identify the fields, so the documentation can refer to the
164 @samp{foo field}, meaning the field tagged with @samp{Foo}. Here is an
165 example form:
167 @example
168 Here is some documentation.
170 Name: @i{My Name}     @strong{Choose}: This option
171 Address:  @i{Some Place
172 In some City
173 Some country.}
175 See also @b{_other work_} for more information.
177 Numbers: count to three below
178 @b{[INS]} @b{[DEL]} @i{One}
179 @b{[INS]} @b{[DEL]} @i{Eh, two?}
180 @b{[INS]} @b{[DEL]} @i{Five!}
181 @b{[INS]}
183 Select multiple:
185 @b{[X]} This
186 @b{[ ]} That
187 @b{[X]} Thus
189 Select one:
191 @b{(*)} One
192 @b{( )} Another One.
193 @b{( )} A Final One.
195 @b{[Apply Form]} @b{[Reset Form]}
196 @end example
198 The top level widgets in this example are tagged @samp{Name},
199 @samp{Choose}, @samp{Address}, @samp{_other work_}, @samp{Numbers},
200 @samp{Select multiple}, @samp{Select one}, @samp{[Apply Form]}, and
201 @samp{[Reset Form]}.  There are basically two things the user can do
202 within a form, namely editing the editable text fields and activating
203 the buttons.
205 @subsection Editable Text Fields
207 In the example, the value for the @samp{Name} is most likely displayed
208 in an editable text field, and so are values for each of the members of
209 the @samp{Numbers} list.  All the normal Emacs editing operations are
210 available for editing these fields.  The only restriction is that each
211 change you make must be contained within a single editable text field.
212 For example, capitalizing all text from the middle of one field to the
213 middle of another field is prohibited.
215 Editable text fields are created by the @code{editable-field} widget.
217 @strong{Warning:} In an @code{editable-field} widget, the editable
218 field must not be adjacent to another widget---that won't work.
219 You must put some text in between.  Either make this text part of
220 the @code{editable-field} widget itself, or insert it with
221 @code{widget-insert}.
223 The @code{:format} keyword is useful for generating the necessary
224 text; for instance, if you give it a value of @code{"Name: %v "},
225 the @samp{Name: } part will provide the necessary separating text
226 before the field and the trailing space will provide the
227 separating text after the field.  If you don't include the
228 @code{:size} keyword, the field will extend to the end of the
229 line, and the terminating newline will provide separation after.
231 @strong{Warning:} In an @code{editable-field} widget, the @samp{%v} escape
232 must be preceded by some other text in the @code{:format} string
233 (if specified).
235 The editing text fields are highlighted with the
236 @code{widget-field-face} face, making them easy to find.
238 @deffn Face widget-field-face
239 Face used for other editing fields.
240 @end deffn
242 @subsection Buttons
244 @cindex widget buttons
245 @cindex button widgets
246 Some portions of the buffer have an associated @dfn{action}, which can
247 be @dfn{invoked} by a standard key or mouse command.  These portions
248 are called @dfn{buttons}.  The default commands for activating a button
249 are:
251 @table @kbd
252 @item @key{RET}
253 @deffn Command widget-button-press @var{pos} &optional @var{event}
254 Invoke the button at @var{pos}, defaulting to point.
255 If point is not located on a button, invoke the binding in
256 @code{widget-global-map} (by default the global map).
257 @end deffn
259 @kindex Mouse-2 @r{(on button widgets})
260 @item Mouse-2
261 @deffn Command widget-button-click @var{event}
262 Invoke the button at the location of the mouse pointer.  If the mouse
263 pointer is located in an editable text field, invoke the binding in
264 @code{widget-global-map} (by default the global map).
265 @end deffn
266 @end table
268 There are several different kind of buttons, all of which are present in
269 the example:
271 @table @emph
272 @cindex option field tag
273 @item The Option Field Tags
274 When you invoke one of these buttons, you will be asked to choose
275 between a number of different options.  This is how you edit an option
276 field.  Option fields are created by the @code{menu-choice} widget.  In
277 the example, @samp{@b{Choose}} is an option field tag.
278 @item The @samp{@b{[INS]}} and @samp{@b{[DEL]}} buttons
279 Activating these will insert or delete elements from an editable list.
280 The list is created by the @code{editable-list} widget.
281 @cindex embedded buttons
282 @item Embedded Buttons
283 The @samp{@b{_other work_}} is an example of an embedded
284 button.  Embedded buttons are not associated with any fields, but can serve
285 any purpose, such as implementing hypertext references.  They are
286 usually created by the @code{link} widget.
287 @item The @samp{@b{[ ]}} and @samp{@b{[X]}} buttons
288 Activating one of these will convert it to the other.  This is useful
289 for implementing multiple-choice fields.  You can create them with the
290 @code{checkbox} widget.
291 @item The @samp{@b{( )}} and @samp{@b{(*)}} buttons
292 Only one radio button in a @code{radio-button-choice} widget can be
293 selected at any time.  When you invoke one of the unselected radio
294 buttons, it will be selected and the previous selected radio button will
295 become unselected.
296 @item The @samp{@b{[Apply Form]}} and @samp{@b{[Reset Form]}} buttons
297 These are explicit buttons made with the @code{push-button} widget.  The
298 main difference from the @code{link} widget is that the buttons will be
299 displayed as GUI buttons when possible.
300 @end table
302 To make them easier to locate, buttons are emphasized in the buffer.
304 @deffn Face widget-button-face
305 Face used for buttons.
306 @end deffn
308 @defopt widget-mouse-face
309 Face used for highlighting a button when the mouse pointer moves across
311 @end defopt
313 @subsection Navigation
315 You can use all the normal Emacs commands to move around in a form
316 buffer, plus you will have these additional commands:
318 @table @kbd
319 @item @key{TAB}
320 @deffn Command widget-forward &optional count
321 Move point @var{count} buttons or editing fields forward.
322 @end deffn
323 @item @kbd{M-@key{TAB}}
324 @itemx @kbd{S-@key{TAB}}
325 @deffn Command widget-backward &optional count
326 Move point @var{count} buttons or editing fields backward.
327 @end deffn
328 @end table
330 @node Programming Example, Setting Up the Buffer, User Interface, Top
331 @comment  node-name,  next,  previous,  up
332 @section Programming Example
334 @cindex widgets, programming example
335 @cindex example of using widgets
336 Here is the code to implement the user interface example (@pxref{User
337 Interface}).
339 @lisp
340 (require 'widget)
342 (eval-when-compile
343   (require 'wid-edit))
345 (defvar widget-example-repeat)
347 (defun widget-example ()
348   "Create the widgets from the Widget manual."
349   (interactive)
350   (switch-to-buffer "*Widget Example*")
351   (kill-all-local-variables)
352   (make-local-variable 'widget-example-repeat)
353   (let ((inhibit-read-only t))
354     (erase-buffer))
355   (remove-overlays)
356   (widget-insert "Here is some documentation.\n\n")
357   (widget-create 'editable-field
358                  :size 13
359                  :format "Name: %v " ; Text after the field!
360                  "My Name")
361   (widget-create 'menu-choice
362                  :tag "Choose"
363                  :value "This"
364                  :help-echo "Choose me, please!"
365                  :notify (lambda (widget &rest ignore)
366                            (message "%s is a good choice!"
367                                     (widget-value widget)))
368                  '(item :tag "This option" :value "This")
369                  '(choice-item "That option")
370                  '(editable-field :menu-tag "No option" "Thus option"))
371   (widget-create 'editable-field
372                  :format "Address: %v"
373                  "Some Place\nIn some City\nSome country.")
374   (widget-insert "\nSee also ")
375   (widget-create 'link
376                  :notify (lambda (&rest ignore)
377                            (widget-value-set widget-example-repeat
378                                              '("En" "To" "Tre"))
379                            (widget-setup))
380                  "other work")
381   (widget-insert
382     " for more information.\n\nNumbers: count to three below\n")
383   (setq widget-example-repeat
384         (widget-create 'editable-list
385                        :entry-format "%i %d %v"
386                        :notify (lambda (widget &rest ignore)
387                                  (let ((old (widget-get widget
388                                                         ':example-length))
389                                        (new (length (widget-value widget))))
390                                    (unless (eq old new)
391                                      (widget-put widget ':example-length new)
392                                      (message "You can count to %d." new))))
393                        :value '("One" "Eh, two?" "Five!")
394                        '(editable-field :value "three")))
395   (widget-insert "\n\nSelect multiple:\n\n")
396   (widget-create 'checkbox t)
397   (widget-insert " This\n")
398   (widget-create 'checkbox nil)
399   (widget-insert " That\n")
400   (widget-create 'checkbox
401                  :notify (lambda (&rest ignore) (message "Tickle"))
402                  t)
403   (widget-insert " Thus\n\nSelect one:\n\n")
404   (widget-create 'radio-button-choice
405                  :value "One"
406                  :notify (lambda (widget &rest ignore)
407                            (message "You selected %s"
408                                     (widget-value widget)))
409                  '(item "One") '(item "Another One.") '(item "A Final One."))
410   (widget-insert "\n")
411   (widget-create 'push-button
412                  :notify (lambda (&rest ignore)
413                            (if (= (length (widget-value widget-example-repeat))
414                                   3)
415                                (message "Congratulation!")
416                              (error "Three was the count!")))
417                  "Apply Form")
418   (widget-insert " ")
419   (widget-create 'push-button
420                  :notify (lambda (&rest ignore)
421                            (widget-example))
422                  "Reset Form")
423   (widget-insert "\n")
424   (use-local-map widget-keymap)
425   (widget-setup))
426 @end lisp
428 @node Setting Up the Buffer, Basic Types, Programming Example, Top
429 @comment  node-name,  next,  previous,  up
430 @section Setting Up the Buffer
432 Widgets are created with @code{widget-create}, which returns a
433 @dfn{widget} object.  This object can be queried and manipulated by
434 other widget functions, until it is deleted with @code{widget-delete}.
435 After the widgets have been created, @code{widget-setup} must be called
436 to enable them.
438 @defun widget-create type [ keyword argument ]@dots{}
439 Create and return a widget of type @var{type}.
440 The syntax for the @var{type} argument is described in @ref{Basic Types}.
442 The keyword arguments can be used to overwrite the keyword arguments
443 that are part of @var{type}.
444 @end defun
446 @defun widget-delete widget
447 Delete @var{widget} and remove it from the buffer.
448 @end defun
450 @defun widget-setup
451 Set up a buffer to support widgets.
453 This should be called after creating all the widgets and before allowing
454 the user to edit them.
455 @refill
456 @end defun
458 If you want to insert text outside the widgets in the form, the
459 recommended way to do that is with @code{widget-insert}.
461 @defun widget-insert
462 Insert the arguments, either strings or characters, at point.
463 The inserted text will be read-only.
464 @end defun
466 There is a standard widget keymap which you might find useful.
468 @findex widget-button-press
469 @findex widget-button-click
470 @defvr Const widget-keymap
471 A keymap with the global keymap as its parent.@*
472 @key{TAB} and @kbd{C-@key{TAB}} are bound to @code{widget-forward} and
473 @code{widget-backward}, respectively.  @key{RET} and @kbd{Mouse-2}
474 are bound to @code{widget-button-press} and
475 @code{widget-button-click}.@refill
476 @end defvr
478 @defvar widget-global-map
479 Keymap used by @code{widget-button-press} and @code{widget-button-click}
480 when not on a button.  By default this is @code{global-map}.
481 @end defvar
483 @node Basic Types, Sexp Types, Setting Up the Buffer, Top
484 @comment  node-name,  next,  previous,  up
485 @section Basic Types
487 This is the general syntax of a type specification:
489 @example
490 @var{name} ::= (@var{name} [@var{keyword} @var{argument}]... @var{args})
491      |   @var{name}
492 @end example
494 Where, @var{name} is a widget name, @var{keyword} is the name of a
495 property, @var{argument} is the value of the property, and @var{args}
496 are interpreted in a widget specific way.
498 @cindex keyword arguments
499 The following keyword arguments apply to all widgets:
501 @table @code
502 @vindex value@r{ keyword}
503 @item :value
504 The initial value for widgets of this type.
506 @vindex format@r{ keyword}
507 @item :format
508 This string will be inserted in the buffer when you create a widget.
509 The following @samp{%} escapes are available:
511 @table @samp
512 @item %[
513 @itemx %]
514 The text inside will be marked as a button.
516 By default, the text will be shown in @code{widget-button-face}, and
517 surrounded by brackets.
519 @defopt widget-button-prefix
520 String to prefix buttons.
521 @end defopt
523 @defopt widget-button-suffix
524 String to suffix buttons.
525 @end defopt
527 @item %@{
528 @itemx %@}
529 The text inside will be displayed with the face specified by
530 @code{:sample-face}.
532 @item %v
533 This will be replaced with the buffer representation of the widget's
534 value.  What this is depends on the widget type.
536 @strong{Warning:} In an @code{editable-field} widget, the @samp{%v} escape
537 must be preceded by some other text in the format string (if specified).
539 @item %d
540 Insert the string specified by @code{:doc} here.
542 @item %h
543 Like @samp{%d}, with the following modifications: If the documentation
544 string is more than one line, it will add a button which will toggle
545 between showing only the first line, and showing the full text.
546 Furthermore, if there is no @code{:doc} property in the widget, it will
547 instead examine the @code{:documentation-property} property.  If it is a
548 lambda expression, it will be called with the widget's value as an
549 argument, and the result will be used as the documentation text.
551 @item %t
552 Insert the string specified by @code{:tag} here, or the @code{princ}
553 representation of the value if there is no tag.
555 @item %%
556 Insert a literal @samp{%}.
557 @end table
559 @vindex button-face@r{ keyword}
560 @item :button-face
561 Face used to highlight text inside %[ %] in the format.
563 @vindex button-prefix@r{ keyword}
564 @vindex button-suffix@r{ keyword}
565 @item :button-prefix
566 @itemx :button-suffix
567 Text around %[ %] in the format.
569 These can be
570 @table @emph
571 @item nil
572 No text is inserted.
574 @item a string
575 The string is inserted literally.
577 @item a symbol
578 The value of the symbol is expanded according to this table.
579 @end table
581 @vindex doc@r{ keyword}
582 @item :doc
583 The string inserted by the @samp{%d} escape in the format
584 string.
586 @vindex tag@r{ keyword}
587 @item :tag
588 The string inserted by the @samp{%t} escape in the format
589 string.
591 @vindex tag-glyph@r{ keyword}
592 @item :tag-glyph
593 Name of image to use instead of the string specified by @code{:tag} on
594 Emacsen that supports it.
596 @vindex help-echo@r{ keyword}
597 @item :help-echo
598 Specifies how to display a message whenever you move to the widget with
599 either @code{widget-forward} or @code{widget-backward} or move the mouse
600 over it (using the standard @code{help-echo} mechanism).  The argument
601 is either a string to display, a function of one argument, the widget,
602 which should return a string to display, or a form that evaluates to
603 such a string.
605 @vindex follow-link@r{ keyword}
606 @item :follow-link
607 Specifies how to interpret a @key{mouse-1} click on the widget.
608 @xref{Links and Mouse-1,,, elisp, the Emacs Lisp Reference Manual}.
610 @vindex indent@r{ keyword}
611 @item :indent
612 An integer indicating the absolute number of spaces to indent children
613 of this widget.
615 @vindex offset@r{ keyword}
616 @item :offset
617 An integer indicating how many extra spaces to add to the widget's
618 grandchildren compared to this widget.
620 @vindex extra-offset@r{ keyword}
621 @item :extra-offset
622 An integer indicating how many extra spaces to add to the widget's
623 children compared to this widget.
625 @vindex notify@r{ keyword}
626 @item :notify
627 A function called each time the widget or a nested widget is changed.
628 The function is called with two or three arguments.  The first argument
629 is the widget itself, the second argument is the widget that was
630 changed, and the third argument is the event leading to the change, if
631 any.
633 @vindex menu-tag@r{ keyword}
634 @item :menu-tag
635 Tag used in the menu when the widget is used as an option in a
636 @code{menu-choice} widget.
638 @vindex menu-tag-get@r{ keyword}
639 @item :menu-tag-get
640 Function used for finding the tag when the widget is used as an option
641 in a @code{menu-choice} widget.  By default, the tag used will be either the
642 @code{:menu-tag} or @code{:tag} property if present, or the @code{princ}
643 representation of the @code{:value} property if not.
645 @vindex match@r{ keyword}
646 @item :match
647 Should be a function called with two arguments, the widget and a value,
648 and returning non-@code{nil} if the widget can represent the specified value.
650 @vindex validate@r{ keyword}
651 @item :validate
652 A function which takes a widget as an argument, and returns @code{nil}
653 if the widget's current value is valid for the widget.  Otherwise it
654 should return the widget containing the invalid data, and set that
655 widget's @code{:error} property to a string explaining the error.
657 The following predefined function can be used:
659 @defun widget-children-validate widget
660 All the @code{:children} of @var{widget} must be valid.
661 @end defun
663 @vindex tab-order@r{ keyword}
664 @item :tab-order
665 Specify the order in which widgets are traversed with
666 @code{widget-forward} or @code{widget-backward}.  This is only partially
667 implemented.
669 @enumerate a
670 @item
671 Widgets with tabbing order @code{-1} are ignored.
673 @item
674 (Unimplemented) When on a widget with tabbing order @var{n}, go to the
675 next widget in the buffer with tabbing order @var{n+1} or @code{nil},
676 whichever comes first.
678 @item
679 When on a widget with no tabbing order specified, go to the next widget
680 in the buffer with a positive tabbing order, or @code{nil}
681 @end enumerate
683 @vindex parent@r{ keyword}
684 @item :parent
685 The parent of a nested widget (e.g.@: a @code{menu-choice} item or an
686 element of a @code{editable-list} widget).
688 @vindex sibling-args@r{ keyword}
689 @item :sibling-args
690 This keyword is only used for members of a @code{radio-button-choice} or
691 @code{checklist}.  The value should be a list of extra keyword
692 arguments, which will be used when creating the @code{radio-button} or
693 @code{checkbox} associated with this item.
695 @end table
697 @deffn {User Option} widget-glyph-directory
698 Directory where glyphs are found.
699 Widget will look here for a file with the same name as specified for the
700 image, with either a @file{.xpm} (if supported) or @file{.xbm} extension.
701 @end deffn
703 @deffn{User Option} widget-glyph-enable
704 If non-@code{nil}, allow glyphs to appear on displays where they are supported.
705 @end deffn
708 @menu
709 * link::
710 * url-link::
711 * info-link::
712 * push-button::
713 * editable-field::
714 * text::
715 * menu-choice::
716 * radio-button-choice::
717 * item::
718 * choice-item::
719 * toggle::
720 * checkbox::
721 * checklist::
722 * editable-list::
723 * group::
724 @end menu
726 @node link, url-link, Basic Types, Basic Types
727 @comment  node-name,  next,  previous,  up
728 @subsection The @code{link} Widget
729 @findex link@r{ widget}
731 Syntax:
733 @example
734 @var{type} ::= (link [@var{keyword} @var{argument}]...  [ @var{value} ])
735 @end example
737 The @var{value}, if present, is used to initialize the @code{:value}
738 property.  The value should be a string, which will be inserted in the
739 buffer.
741 By default the link will be shown in brackets.
743 @defopt widget-link-prefix
744 String to prefix links.
745 @end defopt
747 @defopt widget-link-suffix
748 String to suffix links.
749 @end defopt
751 @node url-link, info-link, link, Basic Types
752 @comment  node-name,  next,  previous,  up
753 @subsection The @code{url-link} Widget
754 @findex url-link@r{ widget}
756 Syntax:
758 @example
759 @var{type} ::= (url-link [@var{keyword} @var{argument}]...  @var{url})
760 @end example
762 @findex browse-url-browser-function@r{, and @code{url-link} widget}
763 When this link is invoked, the @acronym{WWW} browser specified by
764 @code{browse-url-browser-function} will be called with @var{url}.
766 @node info-link, push-button, url-link, Basic Types
767 @comment  node-name,  next,  previous,  up
768 @subsection The @code{info-link} Widget
769 @findex info-link@r{ widget}
771 Syntax:
773 @example
774 @var{type} ::= (info-link [@var{keyword} @var{argument}]...  @var{address})
775 @end example
777 When this link is invoked, the built-in Info reader is started on
778 @var{address}.
780 @node  push-button, editable-field, info-link, Basic Types
781 @comment  node-name,  next,  previous,  up
782 @subsection The @code{push-button} Widget
783 @findex push-button@r{ widget}
785 Syntax:
787 @example
788 @var{type} ::= (push-button [@var{keyword} @var{argument}]...  [ @var{value} ])
789 @end example
791 The @var{value}, if present, is used to initialize the @code{:value}
792 property.  The value should be a string, which will be inserted in the
793 buffer.
795 By default the tag will be shown in brackets.
797 @defopt widget-push-button-prefix
798 String to prefix push buttons.
799 @end defopt
801 @defopt widget-push-button-suffix
802 String to suffix push buttons.
803 @end defopt
805 @node editable-field, text, push-button, Basic Types
806 @comment  node-name,  next,  previous,  up
807 @subsection The @code{editable-field} Widget
808 @findex editable-field@r{ widget}
810 Syntax:
812 @example
813 @var{type} ::= (editable-field [@var{keyword} @var{argument}]... [ @var{value} ])
814 @end example
816 The @var{value}, if present, is used to initialize the @code{:value}
817 property.  The value should be a string, which will be inserted in the
818 field.  This widget will match all string values.
820 The following extra properties are recognized:
822 @table @code
823 @vindex size@r{ keyword}
824 @item :size
825 The width of the editable field.@*
826 By default the field will reach to the end of the line.
828 @vindex value-face@r{ keyword}
829 @item :value-face
830 Face used for highlighting the editable field.  Default is
831 @code{widget-field-face}, see @ref{User Interface}.
833 @vindex secret@r{ keyword}
834 @item :secret
835 Character used to display the value.  You can set this to e.g.@: @code{?*}
836 if the field contains a password or other secret information.  By
837 default, this is @code{nil}, and the value is not secret.
839 @vindex valid-regexp@r{ keyword}
840 @item :valid-regexp
841 By default the @code{:validate} function will match the content of the
842 field with the value of this attribute.  The default value is @code{""}
843 which matches everything.
845 @vindex keymap@r{ keyword}
846 @vindex widget-field-keymap
847 @item :keymap
848 Keymap used in the editable field.  The default value is
849 @code{widget-field-keymap}, which allows you to use all the normal
850 editing commands, even if the buffer's major mode suppresses some of
851 them.  Pressing @key{RET} invokes the function specified by
852 @code{:action}.
853 @end table
855 @node text, menu-choice, editable-field, Basic Types
856 @comment  node-name,  next,  previous,  up
857 @subsection The @code{text} Widget
858 @findex text@r{ widget}
860 @vindex widget-text-keymap
861 This is just like @code{editable-field}, but intended for multiline text
862 fields.  The default @code{:keymap} is @code{widget-text-keymap}, which
863 does not rebind the @key{RET} key.
865 @node menu-choice, radio-button-choice, text, Basic Types
866 @comment  node-name,  next,  previous,  up
867 @subsection The @code{menu-choice} Widget
868 @findex menu-choice@r{ widget}
870 Syntax:
872 @example
873 @var{type} ::= (menu-choice [@var{keyword} @var{argument}]... @var{type} ... )
874 @end example
876 The @var{type} argument represents each possible choice.  The widget's
877 value will be that of the chosen @var{type} argument.  This widget will
878 match any value matching at least one of the specified @var{type}
879 arguments.
881 @table @code
882 @vindex void@r{ keyword}
883 @item :void
884 Widget type used as a fallback when the value does not match any of the
885 specified @var{type} arguments.
887 @vindex case-fold@r{ keyword}
888 @item :case-fold
889 Set this to @code{nil} if you don't want to ignore case when prompting for a
890 choice through the minibuffer.
892 @vindex children@r{ keyword}
893 @item :children
894 A list whose @sc{car} is the widget representing the currently chosen
895 type in the buffer.
897 @vindex choice@r{ keyword}
898 @item :choice
899 The current chosen type.
901 @vindex args@r{ keyword}
902 @item :args
903 The list of types.
904 @end table
906 @node radio-button-choice, item, menu-choice, Basic Types
907 @comment  node-name,  next,  previous,  up
908 @subsection The @code{radio-button-choice} Widget
909 @findex radio-button-choice@r{ widget}
911 Syntax:
913 @example
914 @var{type} ::= (radio-button-choice [@var{keyword} @var{argument}]...  @var{type} ... )
915 @end example
917 The component types specify the choices, with one radio button for
918 each.  The widget's value will be that of the chosen @var{type}
919 argument.  This widget matches any value that matches at least one of
920 the specified @var{type} arguments.
922 The following extra properties are recognized.
924 @table @code
925 @vindex entry-format@r{ keyword}
926 @item :entry-format
927 This string will be inserted for each entry in the list.
928 The following @samp{%} escapes are available:
929 @table @samp
930 @item %v
931 Replace with the buffer representation of the @var{type} widget.
932 @item %b
933 Replace with the radio button.
934 @item %%
935 Insert a literal @samp{%}.
936 @end table
938 @vindex button-args@r{ keyword}
939 @item :button-args
940 A list of keywords to pass to the radio buttons.  Useful for setting
941 e.g.@: the @samp{:help-echo} for each button.
943 @vindex buttons@r{ keyword}
944 @item :buttons
945 The widgets representing the radio buttons.
947 @vindex children@r{ keyword}
948 @item :children
949 The widgets representing each type.
951 @vindex choice@r{ keyword}
952 @item :choice
953 The current chosen type
955 @vindex args@r{ keyword}
956 @item :args
957 The list of types.
958 @end table
960 You can add extra radio button items to a @code{radio-button-choice}
961 widget after it has been created with the function
962 @code{widget-radio-add-item}.
964 @defun widget-radio-add-item widget type
965 Add to @code{radio-button-choice} widget @var{widget} a new radio button
966 item of type @var{type}.
967 @end defun
969 Please note that such items added after the @code{radio-button-choice}
970 widget has been created will @strong{not} be properly destructed when
971 you call @code{widget-delete}.
973 @node item, choice-item, radio-button-choice, Basic Types
974 @comment  node-name,  next,  previous,  up
975 @subsection The @code{item} Widget
976 @findex item@r{ widget}
978 Syntax:
980 @example
981 @var{item} ::= (item [@var{keyword} @var{argument}]... @var{value})
982 @end example
984 The @var{value}, if present, is used to initialize the @code{:value}
985 property.  The value should be a string, which will be inserted in the
986 buffer.  This widget will only match the specified value.
988 @node choice-item, toggle, item, Basic Types
989 @comment  node-name,  next,  previous,  up
990 @subsection The @code{choice-item} Widget
991 @findex choice-item@r{ widget}
993 Syntax:
995 @example
996 @var{item} ::= (choice-item [@var{keyword} @var{argument}]... @var{value})
997 @end example
999 The @var{value}, if present, is used to initialize the @code{:value}
1000 property.  The value should be a string, which will be inserted in the
1001 buffer as a button.  Activating the button of a @code{choice-item} is
1002 equivalent to activating the parent widget.  This widget will only match
1003 the specified value.
1005 @node toggle, checkbox, choice-item, Basic Types
1006 @comment  node-name,  next,  previous,  up
1007 @subsection The @code{toggle} Widget
1008 @findex toggle@r{ widget}
1010 Syntax:
1012 @example
1013 @var{type} ::= (toggle [@var{keyword} @var{argument}]...)
1014 @end example
1016 The widget has two possible states, @samp{on} and @samp{off}, which
1017 correspond to a @code{t} or @code{nil} value, respectively.
1019 The following extra properties are recognized:
1021 @table @code
1022 @item :on
1023 A string representing the @samp{on} state.  By default the string
1024 @samp{on}.
1025 @item :off
1026 A string representing the @samp{off} state.  By default the string
1027 @samp{off}.
1028 @vindex on-glyph@r{ keyword}
1029 @item :on-glyph
1030 Name of a glyph to be used instead of the @samp{:on} text string, on
1031 emacsen that supports this.
1032 @vindex off-glyph@r{ keyword}
1033 @item :off-glyph
1034 Name of a glyph to be used instead of the @samp{:off} text string, on
1035 emacsen that supports this.
1036 @end table
1038 @node checkbox, checklist, toggle, Basic Types
1039 @comment  node-name,  next,  previous,  up
1040 @subsection The @code{checkbox} Widget
1041 @findex checkbox@r{ widget}
1043 This widget has two possible states, @samp{selected} and
1044 @samp{unselected}, which corresponds to a @code{t} or @code{nil} value.
1046 Syntax:
1048 @example
1049 @var{type} ::= (checkbox [@var{keyword} @var{argument}]...)
1050 @end example
1052 @node checklist, editable-list, checkbox, Basic Types
1053 @comment  node-name,  next,  previous,  up
1054 @subsection The @code{checklist} Widget
1055 @findex checklist@r{ widget}
1057 Syntax:
1059 @example
1060 @var{type} ::= (checklist [@var{keyword} @var{argument}]...  @var{type} ... )
1061 @end example
1063 The @var{type} arguments represent each checklist item.  The widget's
1064 value will be a list containing the values of all checked @var{type}
1065 arguments.  The checklist widget will match a list whose elements all
1066 match at least one of the specified @var{type} arguments.
1068 The following extra properties are recognized:
1070 @table @code
1071 @vindex entry-format@r{ keyword}
1072 @item :entry-format
1073 This string will be inserted for each entry in the list.
1074 The following @samp{%} escapes are available:
1075 @table @samp
1076 @item %v
1077 Replaced with the buffer representation of the @var{type} widget.
1078 @item %b
1079 Replace with the checkbox.
1080 @item %%
1081 Insert a literal @samp{%}.
1082 @end table
1084 @vindex greedy@r{ keyword}
1085 @item :greedy
1086 Usually a checklist will only match if the items are in the exact
1087 sequence given in the specification.  By setting @code{:greedy} to
1088 non-@code{nil}, it will allow the items to come in any sequence.
1089 However, if you extract the value they will be in the sequence given
1090 in the checklist, i.e.@: the original sequence is forgotten.
1092 @vindex button-args@r{ keyword}
1093 @item :button-args
1094 A list of keywords to pass to the checkboxes.  Useful for setting
1095 e.g.@: the @samp{:help-echo} for each checkbox.
1097 @vindex buttons@r{ keyword}
1098 @item :buttons
1099 The widgets representing the checkboxes.
1101 @vindex children@r{ keyword}
1102 @item :children
1103 The widgets representing each type.
1105 @vindex args@r{ keyword}
1106 @item :args
1107 The list of types.
1108 @end table
1110 @node editable-list, group, checklist, Basic Types
1111 @comment  node-name,  next,  previous,  up
1112 @subsection The @code{editable-list} Widget
1113 @findex editable-list@r{ widget}
1115 Syntax:
1117 @example
1118 @var{type} ::= (editable-list [@var{keyword} @var{argument}]... @var{type})
1119 @end example
1121 The value is a list, where each member represents one widget of type
1122 @var{type}.
1124 The following extra properties are recognized:
1126 @table @code
1127 @vindex entry-format@r{ keyword}
1128 @item :entry-format
1129 This string will be inserted for each entry in the list.
1130 The following @samp{%} escapes are available:
1131 @table @samp
1132 @item %v
1133 This will be replaced with the buffer representation of the @var{type}
1134 widget.
1135 @item %i
1136 Insert the @b{[INS]} button.
1137 @item %d
1138 Insert the @b{[DEL]} button.
1139 @item %%
1140 Insert a literal @samp{%}.
1141 @end table
1143 @vindex insert-button-args@r{ keyword}
1144 @item :insert-button-args
1145 A list of keyword arguments to pass to the insert buttons.
1147 @vindex delete-button-args@r{ keyword}
1148 @item :delete-button-args
1149 A list of keyword arguments to pass to the delete buttons.
1151 @vindex append-button-args@r{ keyword}
1152 @item :append-button-args
1153 A list of keyword arguments to pass to the trailing insert button.
1155 @vindex buttons@r{ keyword}
1156 @item :buttons
1157 The widgets representing the insert and delete buttons.
1159 @vindex children@r{ keyword}
1160 @item :children
1161 The widgets representing the elements of the list.
1163 @vindex args@r{ keyword}
1164 @item :args
1165 List whose @sc{car} is the type of the list elements.
1166 @end table
1168 @node group,  , editable-list, Basic Types
1169 @comment  node-name,  next,  previous,  up
1170 @subsection The @code{group} Widget
1171 @findex group@r{ widget}
1173 This widget simply group other widgets together.
1175 Syntax:
1177 @example
1178 @var{type} ::= (group [@var{keyword} @var{argument}]... @var{type}...)
1179 @end example
1181 The value is a list, with one member for each @var{type}.
1183 @node Sexp Types, Widget Properties, Basic Types, Top
1184 @comment
1185 @section Sexp Types
1186 @cindex sexp types
1188 A number of widgets for editing @dfn{s-expressions} (Lisp types), sexp
1189 for short, are also available.  These basically fall in several
1190 categories described in this section.
1192 @menu
1193 * constants::
1194 * generic::
1195 * atoms::
1196 * composite::
1197 @end menu
1199 @node constants, generic, Sexp Types, Sexp Types
1200 @comment  node-name,  next,  previous,  up
1201 @subsection The Constant Widgets
1202 @cindex constant widgets
1204 The @code{const} widget can contain any Lisp expression, but the user is
1205 prohibited from editing it, which is mainly useful as a component of one
1206 of the composite widgets.
1208 The syntax for the @code{const} widget is:
1210 @example
1211 @var{type} ::= (const [@var{keyword} @var{argument}]...  [ @var{value} ])
1212 @end example
1214 The @var{value}, if present, is used to initialize the @code{:value}
1215 property and can be any s-expression.
1217 @deffn Widget const
1218 This will display any valid s-expression in an immutable part of the
1219 buffer.
1220 @end deffn
1222 There are two variations of the @code{const} widget, namely
1223 @code{variable-item} and @code{function-item}.  These should contain a
1224 symbol with a variable or function binding.  The major difference from
1225 the @code{const} widget is that they will allow the user to see the
1226 variable or function documentation for the symbol.
1228 @deffn Widget variable-item
1229 An immutable symbol that is bound as a variable.
1230 @end deffn
1232 @deffn Widget function-item
1233 An immutable symbol that is bound as a function.
1234 @end deffn
1236 @node generic, atoms, constants, Sexp Types
1237 @comment  node-name,  next,  previous,  up
1238 @subsection Generic Sexp Widget
1239 @cindex generic sexp widget
1241 The @code{sexp} widget can contain any Lisp expression, and allows the
1242 user to edit it inline in the buffer.
1244 The syntax for the @code{sexp} widget is:
1246 @example
1247 @var{type} ::= (sexp [@var{keyword} @var{argument}]...  [ @var{value} ])
1248 @end example
1250 @deffn Widget sexp
1251 This will allow you to edit any valid s-expression in an editable buffer
1252 field.
1254 The @code{sexp} widget takes the same keyword arguments as the
1255 @code{editable-field} widget.  @xref{editable-field}.
1256 @end deffn
1258 @node atoms, composite, generic, Sexp Types
1259 @comment  node-name,  next,  previous,  up
1260 @subsection Atomic Sexp Widgets
1261 @cindex atomic sexp widget
1263 The atoms are s-expressions that do not consist of other s-expressions.
1264 For example, a string, a file name, or a symbol are atoms, while a list
1265 is a composite type.  You can edit the value of an atom with the
1266 following widgets.
1268 The syntax for all the atoms are:
1270 @example
1271 @var{type} ::= (@var{construct} [@var{keyword} @var{argument}]...  [ @var{value} ])
1272 @end example
1274 The @var{value}, if present, is used to initialize the @code{:value}
1275 property and must be an expression of the same type as the widget.
1276 That is, the string widget can only be initialized with a string.
1278 All the atom widgets take the same keyword arguments as the
1279 @code{editable-field} widget.  @xref{editable-field}.
1281 @deffn Widget string
1282 Allows you to edit a string in an editable field.
1283 @end deffn
1285 @deffn Widget regexp
1286 Allows you to edit a regular expression in an editable field.
1287 @end deffn
1289 @deffn Widget character
1290 Allows you to enter a character in an editable field.
1291 @end deffn
1293 @deffn Widget file
1294 Allows you to edit a file name in an editable field.
1296 Keywords:
1297 @table @code
1298 @vindex must-match@r{ keyword}
1299 @item :must-match
1300 If this is set to non-@code{nil}, only existing file names will be
1301 allowed in the minibuffer.
1302 @end table
1303 @end deffn
1305 @deffn Widget directory
1306 Allows you to edit a directory name in an editable field.
1307 Similar to the @code{file} widget.
1308 @end deffn
1310 @deffn Widget symbol
1311 Allows you to edit a Lisp symbol in an editable field.
1312 @end deffn
1314 @deffn Widget function
1315 Allows you to edit a lambda expression, or a function name with completion.
1316 @end deffn
1318 @deffn Widget variable
1319 Allows you to edit a variable name, with completion.
1320 @end deffn
1322 @deffn Widget integer
1323 Allows you to edit an integer in an editable field.
1324 @end deffn
1326 @deffn Widget number
1327 Allows you to edit a number in an editable field.
1328 @end deffn
1330 @deffn Widget boolean
1331 Allows you to edit a boolean.  In Lisp this means a variable which is
1332 either @code{nil} meaning false, or non-@code{nil} meaning true.
1333 @end deffn
1336 @node composite,  , atoms, Sexp Types
1337 @comment  node-name,  next,  previous,  up
1338 @subsection Composite Sexp Widgets
1339 @cindex composite sexp widgets
1341 The syntax for the composite widget construct is:
1343 @example
1344 @var{type} ::= (@var{construct} [@var{keyword} @var{argument}]...  @var{component}...)
1345 @end example
1347 @noindent
1348 where each @var{component} must be a widget type.  Each component widget
1349 will be displayed in the buffer, and will be editable by the user.
1351 @deffn Widget cons
1352 The value of a @code{cons} widget must be a cons-cell whose @sc{car}
1353 and @sc{cdr} have two specified types.  It uses this syntax:
1355 @example
1356 @var{type} ::= (cons [@var{keyword} @var{argument}]...  @var{car-type} @var{cdr-type})
1357 @end example
1358 @end deffn
1360 @deffn Widget choice
1361 The value matched by a @code{choice} widget must have one of a fixed
1362 set of types.  The widget's syntax is as follows:
1364 @example
1365 @var{type} ::= (choice [@var{keyword} @var{argument}]...  @var{type} ... )
1366 @end example
1368 The value of a @code{choice} widget can be anything that matches any of the
1369 @var{types}.
1370 @end deffn
1372 @deffn Widget list
1373 The value of a @code{list} widget must be a list whose element types
1374 match the specified component types:
1376 @example
1377 @var{type} ::= (list [@var{keyword} @var{argument}]...  @var{component-type}...)
1378 @end example
1380 Thus, @code{(list string number)} matches lists of two elements,
1381 the first being a string and the second being a number.
1382 @end deffn
1384 @deffn Widget vector
1385 The @code{vector} widget is like the @code{list} widget but matches
1386 vectors instead of lists.  Thus, @code{(vector string number)} matches
1387 vectors of two elements, the first being a string and the second being
1388 a number.
1389 @end deffn
1391 The above suffice for specifying fixed size lists and vectors.  To get
1392 variable length lists and vectors, you can use a @code{choice},
1393 @code{set}, or @code{repeat} widget together with the @code{:inline}
1394 keyword.  If any component of a composite widget has the
1395 @code{:inline} keyword set, its value must be a list which will then
1396 be spliced into the composite.  For example, to specify a list whose
1397 first element must be a file name, and whose remaining elements should
1398 either be the symbol @code{t} or two strings (file names), you can use
1399 the following widget specification:
1401 @example
1402 (list file
1403       (choice (const t)
1404               (list :inline t
1405                     :value ("foo" "bar")
1406                     string string)))
1407 @end example
1409 The value of a widget of this type will either have the form
1410 @code{(file t)} or @code{(file @var{string} @var{string})}.
1412 This concept of @code{:inline} may be hard to understand.  It was
1413 certainly hard to implement, so instead of confusing you more by
1414 trying to explain it here, I'll just suggest you meditate over it for
1415 a while.
1417 @deffn Widget set
1418 Specifies a type whose values are the lists whose elements all belong
1419 to a given set.  The order of elements of the list is not significant.
1420 Here's the syntax:
1422 @example
1423 @var{type} ::= (set [@var{keyword} @var{argument}]...  @var{permitted-element} ... )
1424 @end example
1426 Use @code{const} to specify each permitted element, like this:
1427 @code{(set (const a) (const b))}.
1428 @end deffn
1430 @deffn Widget repeat
1431 Specifies a list of any number of elements that fit a certain type.
1433 @example
1434 @var{type} ::= (repeat [@var{keyword} @var{argument}]...  @var{type})
1435 @end example
1436 @end deffn
1438 @node Widget Properties, Defining New Widgets, Sexp Types, Top
1439 @comment  node-name,  next,  previous,  up
1440 @section Properties
1441 @cindex properties of widgets
1442 @cindex widget properties
1444 You can examine or set the value of a widget by using the widget object
1445 that was returned by @code{widget-create}.
1447 @defun widget-value widget
1448 Return the current value contained in @var{widget}.
1449 It is an error to call this function on an uninitialized widget.
1450 @end defun
1452 @defun widget-value-set widget value
1453 Set the value contained in @var{widget} to @var{value}.
1454 It is an error to call this function with an invalid @var{value}.
1455 @end defun
1457 @strong{Important:} You @emph{must} call @code{widget-setup} after
1458 modifying the value of a widget before the user is allowed to edit the
1459 widget again.  It is enough to call @code{widget-setup} once if you
1460 modify multiple widgets.  This is currently only necessary if the widget
1461 contains an editing field, but may be necessary for other widgets in the
1462 future.
1464 If your application needs to associate some information with the widget
1465 objects, for example a reference to the item being edited, it can be
1466 done with @code{widget-put} and @code{widget-get}.  The property names
1467 must begin with a @samp{:}.
1469 @defun widget-put widget property value
1470 In @var{widget} set @var{property} to @var{value}.
1471 @var{property} should be a symbol, while @var{value} can be anything.
1472 @end defun
1474 @defun widget-get widget property
1475 In @var{widget} return the value for @var{property}.
1476 @var{property} should be a symbol, the value is what was last set by
1477 @code{widget-put} for @var{property}.
1478 @end defun
1480 @defun widget-member widget property
1481 Non-@code{nil} if @var{widget} has a value (even @code{nil}) for
1482 property @var{property}.
1483 @end defun
1485 Occasionally it can be useful to know which kind of widget you have,
1486 i.e.@: the name of the widget type you gave when the widget was created.
1488 @defun widget-type widget
1489 Return the name of @var{widget}, a symbol.
1490 @end defun
1492 @cindex active widget
1493 @cindex inactive widget
1494 @cindex activate a widget
1495 @cindex deactivate a widget
1496 Widgets can be in two states: active, which means they are modifiable by
1497 the user, or inactive, which means they cannot be modified by the user.
1498 You can query or set the state with the following code:
1500 @lisp
1501 ;; Examine if @var{widget} is active or not.
1502 (if (widget-apply @var{widget} :active)
1503     (message "Widget is active.")
1504   (message "Widget is inactive.")
1506 ;; Make @var{widget} inactive.
1507 (widget-apply @var{widget} :deactivate)
1509 ;; Make @var{widget} active.
1510 (widget-apply @var{widget} :activate)
1511 @end lisp
1513 A widget is inactive if it, or any of its ancestors (found by
1514 following the @code{:parent} link), have been deactivated.  To make sure
1515 a widget is really active, you must therefore activate both it and
1516 all its ancestors.
1518 @lisp
1519 (while widget
1520   (widget-apply widget :activate)
1521   (setq widget (widget-get widget :parent)))
1522 @end lisp
1524 You can check if a widget has been made inactive by examining the value
1525 of the @code{:inactive} keyword.  If this is non-@code{nil}, the widget itself
1526 has been deactivated.  This is different from using the @code{:active}
1527 keyword, in that the latter tells you if the widget @strong{or} any of
1528 its ancestors have been deactivated.  Do not attempt to set the
1529 @code{:inactive} keyword directly.  Use the @code{:activate}
1530 @code{:deactivate} keywords instead.
1533 @node Defining New Widgets, Widget Browser, Widget Properties, Top
1534 @comment  node-name,  next,  previous,  up
1535 @section Defining New Widgets
1536 @cindex new widgets
1537 @cindex defining new widgets
1539 You can define specialized widgets with @code{define-widget}.  It allows
1540 you to create a shorthand for more complex widgets, including specifying
1541 component widgets and new default values for the keyword
1542 arguments.
1544 @defun define-widget name class doc &rest args
1545 Define a new widget type named @var{name} from @code{class}.
1547 @var{name} and class should both be symbols, @code{class} should be one
1548 of the existing widget types.
1550 The third argument @var{doc} is a documentation string for the widget.
1552 After the new widget has been defined, the following two calls will
1553 create identical widgets:
1555 @itemize @bullet
1556 @item
1557 @lisp
1558 (widget-create @var{name})
1559 @end lisp
1561 @item
1562 @lisp
1563 (apply widget-create @var{class} @var{args})
1564 @end lisp
1565 @end itemize
1567 @end defun
1569 Using @code{define-widget} just stores the definition of the widget type
1570 in the @code{widget-type} property of @var{name}, which is what
1571 @code{widget-create} uses.
1573 If you only want to specify defaults for keywords with no complex
1574 conversions, you can use @code{identity} as your conversion function.
1576 The following additional keyword arguments are useful when defining new
1577 widgets:
1578 @table @code
1579 @vindex convert-widget@r{ keyword}
1580 @item :convert-widget
1581 Function to convert a widget type before creating a widget of that
1582 type.  It takes a widget type as an argument, and returns the converted
1583 widget type.  When a widget is created, this function is called for the
1584 widget type and all the widget's parent types, most derived first.
1586 The following predefined functions can be used here:
1588 @defun widget-types-convert-widget widget
1589 Convert @code{:args} as widget types in @var{widget}.
1590 @end defun
1592 @defun widget-value-convert-widget widget
1593 Initialize @code{:value} from @code{:args} in @var{widget}.
1594 @end defun
1596 @vindex copy@r{ keyword}
1597 @item :copy
1598 Function to deep copy a widget type.  It takes a shallow copy of the
1599 widget type as an argument (made by @code{copy-sequence}), and returns a
1600 deep copy.  The purpose of this is to avoid having different instances
1601 of combined widgets share nested attributes.
1603 The following predefined functions can be used here:
1605 @defun widget-types-copy widget
1606 Copy @code{:args} as widget types in @var{widget}.
1607 @end defun
1609 @vindex value-to-internal@r{ keyword}
1610 @item :value-to-internal
1611 Function to convert the value to the internal format.  The function
1612 takes two arguments, a widget and an external value, and returns the
1613 internal value.  The function is called on the present @code{:value}
1614 when the widget is created, and on any value set later with
1615 @code{widget-value-set}.
1617 @vindex value-to-external@r{ keyword}
1618 @item :value-to-external
1619 Function to convert the value to the external format.  The function
1620 takes two arguments, a widget and an internal value, and returns the
1621 external value.  The function is called on the present @code{:value}
1622 when the widget is created, and on any value set later with
1623 @code{widget-value-set}.
1625 @vindex create@r{ keyword}
1626 @item :create
1627 Function to create a widget from scratch.  The function takes one
1628 argument, a widget type, and creates a widget of that type, inserts it
1629 in the buffer, and returns a widget object.
1631 @vindex delete@r{ keyword}
1632 @item :delete
1633 Function to delete a widget.  The function takes one argument, a widget,
1634 and should remove all traces of the widget from the buffer.
1636 The default value is:
1638 @defun widget-default-delete widget
1639 Remove @var{widget} from the buffer.
1640 Delete all @code{:children} and @code{:buttons} in @var{widget}.
1641 @end defun
1643 In most cases you should not change this value, but instead use
1644 @code{:value-delete} to make any additional cleanup.
1646 @vindex value-create@r{ keyword}
1647 @item :value-create
1648 Function to expand the @samp{%v} escape in the format string.  It will
1649 be called with the widget as its argument and should insert a
1650 representation of the widget's value in the buffer.
1652 Nested widgets should be listed in @code{:children} or @code{:buttons}
1653 to make sure they are automatically deleted.
1655 @vindex value-delete@r{ keyword}
1656 @item :value-delete
1657 Should remove the representation of the widget's value from the buffer.
1658 It will be called with the widget as its argument.  It doesn't have to
1659 remove the text, but it should release markers and delete nested widgets
1660 if these are not listed in @code{:children} or @code{:buttons}.
1662 @vindex value-get@r{ keyword}
1663 @item :value-get
1664 Function to extract the value of a widget, as it is displayed in the
1665 buffer.
1667 The following predefined function can be used here:
1669 @defun widget-value-value-get widget
1670 Return the @code{:value} property of @var{widget}.
1671 @end defun
1673 @vindex format-handler@r{ keyword}
1674 @item :format-handler
1675 Function to handle unknown @samp{%} escapes in the format string.  It
1676 will be called with the widget and the character that follows the
1677 @samp{%} as arguments.  You can set this to allow your widget to handle
1678 non-standard escapes.
1680 @findex widget-default-format-handler
1681 You should end up calling @code{widget-default-format-handler} to handle
1682 unknown escape sequences, which will handle the @samp{%h} and any future
1683 escape sequences, as well as give an error for unknown escapes.
1685 @vindex action@r{ keyword}
1686 @item :action
1687 Function to handle user initiated events.  By default, @code{:notify}
1688 the parent.
1690 The following predefined function can be used here:
1692 @defun widget-parent-action widget &optional event
1693 Tell @code{:parent} of @var{widget} to handle the @code{:action}.
1694 Optional @var{event} is the event that triggered the action.
1695 @end defun
1697 @vindex prompt-value@r{ keyword}
1698 @item :prompt-value
1699 Function to prompt for a value in the minibuffer.  The function should
1700 take four arguments, @var{widget}, @var{prompt}, @var{value}, and
1701 @var{unbound} and should return a value for widget entered by the user.
1702 @var{prompt} is the prompt to use.  @var{value} is the default value to
1703 use, unless @var{unbound} is non-@code{nil}, in which case there is no default
1704 value.  The function should read the value using the method most natural
1705 for this widget, and does not have to check that it matches.
1706 @end table
1708 If you want to define a new widget from scratch, use the @code{default}
1709 widget as its base.
1711 @deffn Widget default
1712 Widget used as a base for other widgets.
1714 It provides most of the functionality that is referred to as ``by
1715 default'' in this text.
1716 @end deffn
1718 @node Widget Browser, Widget Minor Mode, Defining New Widgets, Top
1719 @comment  node-name,  next,  previous,  up
1720 @section Widget Browser
1721 @cindex widget browser
1723 There is a separate package to browse widgets.  This is intended to help
1724 programmers who want to examine the content of a widget.  The browser
1725 shows the value of each keyword, but uses links for certain keywords
1726 such as @samp{:parent}, which avoids printing cyclic structures.
1728 @deffn Command widget-browse @var{widget}
1729 Create a widget browser for @var{widget}.
1730 When called interactively, prompt for @var{widget}.
1731 @end deffn
1733 @deffn Command widget-browse-other-window @var{widget}
1734 Create a widget browser for @var{widget} and show it in another window.
1735 When called interactively, prompt for @var{widget}.
1736 @end deffn
1738 @deffn Command widget-browse-at @var{pos}
1739 Create a widget browser for the widget at @var{pos}.
1740 When called interactively, use the position of point.
1741 @end deffn
1743 @node  Widget Minor Mode, Utilities, Widget Browser, Top
1744 @comment  node-name,  next,  previous,  up
1745 @section Widget Minor Mode
1746 @cindex widget minor mode
1748 There is a minor mode for manipulating widgets in major modes that
1749 don't provide any support for widgets themselves.  This is mostly
1750 intended to be useful for programmers doing experiments.
1752 @deffn Command widget-minor-mode
1753 Toggle minor mode for traversing widgets.
1754 With arg, turn widget mode on if and only if arg is positive.
1755 @end deffn
1757 @defvar widget-minor-mode-keymap
1758 Keymap used in @code{widget-minor-mode}.
1759 @end defvar
1761 @node  Utilities, Widget Wishlist, Widget Minor Mode, Top
1762 @comment  node-name,  next,  previous,  up
1763 @section Utilities.
1764 @cindex utility functions for widgets
1766 @defun widget-prompt-value widget prompt [ value unbound ]
1767 Prompt for a value matching @var{widget}, using @var{prompt}.
1768 The current value is assumed to be @var{value}, unless @var{unbound} is
1769 non-@code{nil}.@refill
1770 @end defun
1772 @defun widget-get-sibling widget
1773 Get the item which @var{widget} is assumed to toggle.
1774 This is only meaningful for radio buttons or checkboxes in a list.
1775 @end defun
1777 @node  Widget Wishlist,  Index, Utilities, Top
1778 @comment  node-name,  next,  previous,  up
1779 @section Wishlist
1780 @cindex todo
1782 @itemize @bullet
1783 @item
1784 It should be possible to add or remove items from a list with @kbd{C-k}
1785 and @kbd{C-o} (suggested by @sc{rms}).
1787 @item
1788 The @samp{[INS]} and @samp{[DEL]} buttons should be replaced by a single
1789 dash (@samp{-}).  The dash should be a button that, when invoked, asks
1790 whether you want to add or delete an item (@sc{rms} wanted to git rid of
1791 the ugly buttons, the dash is my idea).
1793 @item
1794 The @code{menu-choice} tag should be prettier, something like the abbreviated
1795 menus in Open Look.
1797 @item
1798 Finish @code{:tab-order}.
1800 @item
1801 Make indentation work with glyphs and proportional fonts.
1803 @item
1804 Add commands to show overview of object and class hierarchies to the
1805 browser.
1807 @item
1808 Find a way to disable mouse highlight for inactive widgets.
1810 @item
1811 Find a way to make glyphs look inactive.
1813 @item
1814 Add @code{property-list} widget.
1816 @item
1817 Add @code{association-list} widget.
1819 @item
1820 Add @code{key-binding} widget.
1822 @item
1823 Add @code{widget} widget for editing widget specifications.
1825 @item
1826 Find clean way to implement variable length list.
1827 See @code{TeX-printer-list} for an explanation.
1829 @item
1830 @kbd{C-h} in @code{widget-prompt-value} should give type specific help.
1832 @item
1833 Add a @code{mailto} widget.
1834 @end itemize
1836 @node Index, , Widget Wishlist, Top
1837 @comment  node-name,  next,  previous,  up
1838 @unnumbered Index
1840 This is an alphabetical listing of all concepts, functions, commands,
1841 variables, and widgets described in this manual.
1842 @printindex cp
1844 @setchapternewpage odd
1845 @contents
1846 @bye
1848 @ignore
1849    arch-tag: 2b427731-4c61-4e72-85de-5ccec9c623f0
1850 @end ignore