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