(set-word-help-file): Renamed from set-help-file.
[bpt/emacs.git] / etc / widget.texi
CommitLineData
d543e20b
PA
1\input texinfo.tex
2
3@c $Id: widget.texi,v 1.99 1997/04/06 20:34:01 abraham Exp $
4
5@c %**start of header
6@setfilename widget
7@settitle The Emacs Widget Library
8@iftex
9@afourpaper
10@headings double
11@end iftex
12@c %**end of header
13
14@node Top, Introduction, (dir), (dir)
15@comment node-name, next, previous, up
16@top The Emacs Widget Library
17
18Version: 1.71
19
20@menu
21* Introduction::
22* User Interface::
23* Programming Example::
24* Setting Up the Buffer::
25* Basic Types::
26* Sexp Types::
27* Widget Properties::
28* Defining New Widgets::
29* Widget Wishlist.::
30@end menu
31
32@node Introduction, User Interface, Top, Top
33@comment node-name, next, previous, up
34@section Introduction
35
36Most graphical user interface toolkits, such as Motif and XView, provide
37a number of standard user interface controls (sometimes known as
38`widgets' or `gadgets'). Emacs doesn't really support anything like
39this, except for an incredible powerful text ``widget''. On the other
40hand, Emacs does provide the necessary primitives to implement many
41other widgets within a text buffer. The @code{widget} package
42simplifies this task.
43
44The basic widgets are:
45
46@table @code
47@item link
48Areas of text with an associated action. Intended for hypertext links
49embedded in text.
50@item push-button
51Like link, but intended for stand-alone buttons.
52@item editable-field
53An editable text field. It can be either variable or fixed length.
54@item menu-choice
55Allows the user to choose one of multiple options from a menu, each
56option is itself a widget. Only the selected option will be visible in
57the buffer.
58@item radio-button-choice
59Allows the user to choose one of multiple options by pushing radio
60buttons. The options are implemented as widgets. All options will be
61visible in the buffer.
62@item item
63A simple constant widget intended to be used in the @code{menu-choice} and
64@code{radio-button-choice} widgets.
65@item choice-item
66An button item only intended for use in choices. When pushed, the user
67will be asked to select another option from the choice widget.
68@item toggle
69A simple @samp{on}/@samp{off} switch.
70@item checkbox
71A checkbox (@samp{[ ]}/@samp{[X]}).
72@item editable-list
73Create an editable list. The user can insert or delete items in the
74list. Each list item is itself a widget.
75@end table
76
77Now of what possible use can support for widgets be in a text editor?
78I'm glad you asked. The answer is that widgets are useful for
79implementing forms. A @dfn{form} in emacs is a buffer where the user is
80supposed to fill out a number of fields, each of which has a specific
81meaning. The user is not supposed to change or delete any of the text
82between the fields. Examples of forms in Emacs are the @file{forms}
83package (of course), the customize buffers, the mail and news compose
84modes, and the @sc{html} form support in the @file{w3} browser.
85
86The advantages for a programmer of using the @code{widget} package to
87implement forms are:
88
89@enumerate
90@item
91More complex field than just editable text are supported.
92@item
93You can give the user immediate feedback if he enters invalid data in a
94text field, and sometimes prevent entering invalid data.
95@item
96You can have fixed sized fields, thus allowing multiple field to be
97lined up in columns.
98@item
99It is simple to query or set the value of a field.
100@item
101Editing happens in buffer, not in the mini-buffer.
102@item
103Packages using the library get a uniform look, making them easier for
104the user to learn.
105@item
106As support for embedded graphics improve, the widget library will
107extended to support it. This means that your code using the widget
108library will also use the new graphic features by automatic.
109@end enumerate
110
111In order to minimize the code that is loaded by users who does not
112create any widgets, the code has been split in two files:
113
114@table @file
115@item widget.el
116This will declare the user variables, define the function
117@code{widget-define}, and autoload the function @code{widget-create}.
118@item wid-edit.el
119Everything else is here, there is no reason to load it explicitly, as
120it will be autoloaded when needed.
121@end table
122
123@node User Interface, Programming Example, Introduction, Top
124@comment node-name, next, previous, up
125@section User Interface
126
127A form consist of read only text for documentation and some fields,
128where each the fields contain two parts, as tag and a value. The tags
129are used to identify the fields, so the documentation can refer to the
130foo field, meaning the field tagged with @samp{Foo}. Here is an example
131form:
132
133@example
134Here is some documentation.
135
136Name: @i{My Name} @strong{Choose}: This option
137Address: @i{Some Place
138In some City
139Some country.}
140
141See also @b{_other work_} for more information.
142
143Numbers: count to three below
144@b{[INS]} @b{[DEL]} @i{One}
145@b{[INS]} @b{[DEL]} @i{Eh, two?}
146@b{[INS]} @b{[DEL]} @i{Five!}
147@b{[INS]}
148
149Select multiple:
150
151@b{[X]} This
152@b{[ ]} That
153@b{[X]} Thus
154
155Select one:
156
157@b{(*)} One
158@b{( )} Another One.
159@b{( )} A Final One.
160
161@b{[Apply Form]} @b{[Reset Form]}
162@end example
163
164The top level widgets in is example are tagged @samp{Name},
165@samp{Choose}, @samp{Address}, @samp{_other work_}, @samp{Numbers},
166@samp{Select multiple}, @samp{Select one}, @samp{[Apply Form]}, and
167@samp{[Reset Form]}. There are basically two thing the user can do within
168a form, namely editing the editable text fields and activating the
169buttons.
170
171@subsection Editable Text Fields
172
173In the example, the value for the @samp{Name} is most likely displayed
174in an editable text field, and so are values for each of the members of
175the @samp{Numbers} list. All the normal Emacs editing operations are
176available for editing these fields. The only restriction is that each
177change you make must be contained within a single editable text field.
178For example, capitalizing all text from the middle of one field to the
179middle of another field is prohibited.
180
181Editing text fields are created by the @code{editable-field} widget.
182
183The editing text fields are highlighted with the
184@code{widget-field-face} face, making them easy to find.
185
186@deffn Face widget-field-face
187Face used for other editing fields.
188@end deffn
189
190@subsection Buttons
191
192Some portions of the buffer have an associated @dfn{action}, which can
193be @dfn{activated} by a standard key or mouse command. These portions
194are called @dfn{buttons}. The default commands for activating a button
195are:
196
197@table @kbd
198@item @key{RET}
199@deffn Command widget-button-press @var{pos} &optional @var{event}
200Activate the button at @var{pos}, defaulting to point.
201If point is not located on a button, activate the binding in
202@code{widget-global-map} (by default the global map).
203@end deffn
204
205@item mouse-2
206@deffn Command widget-button-click @var{event}
207Activate the button at the location of the mouse pointer. If the mouse
208pointer is located in an editable text field, activate the binding in
209@code{widget-global-map} (by default the global map).
210@end deffn
211@end table
212
213There are several different kind of buttons, all of which are present in
214the example:
215
216@table @emph
217@item The Option Field Tags.
218When you activate one of these buttons, you will be asked to choose
219between a number of different options. This is how you edit an option
220field. Option fields are created by the @code{menu-choice} widget. In
221the example, @samp{@b{Choose}} is an option field tag.
222@item The @samp{@b{[INS]}} and @samp{@b{[DEL]}} buttons.
223Activating these will insert or delete elements from a editable list.
224The list is created by the @code{editable-list} widget.
225@item Embedded Buttons.
226The @samp{@b{_other work_}} is an example of an embedded
227button. Embedded buttons are not associated with a fields, but can serve
228any purpose, such as implementing hypertext references. They are
229usually created by the @code{link} widget.
230@item The @samp{@b{[ ]}} and @samp{@b{[X]}} buttons.
231Activating one of these will convert it to the other. This is useful
232for implementing multiple-choice fields. You can create it wit
233@item The @samp{@b{( )}} and @samp{@b{(*)}} buttons.
234Only one radio button in a @code{radio-button-choice} widget can be selected at any
235time. When you push one of the unselected radio buttons, it will be
236selected and the previous selected radio button will become unselected.
237@item The @samp{@b{[Apply Form]}} @samp{@b{[Reset Form]}} buttons.
238These are explicit buttons made with the @code{push-button} widget. The main
239difference from the @code{link} widget is that the buttons are will be
240displayed as GUI buttons when possible.
241enough.
242@end table
243
244To make them easier to locate, buttons are emphasized in the buffer.
245
246@deffn Face widget-button-face
247Face used for buttons.
248@end deffn
249
250@defopt widget-mouse-face
251Face used for buttons when the mouse pointer is above it.
252@end defopt
253
254@subsection Navigation
255
256You can use all the normal Emacs commands to move around in a form
257buffer, plus you will have these additional commands:
258
259@table @kbd
260@item @key{TAB}
261@deffn Command widget-forward &optional count
262Move point @var{count} buttons or editing fields forward.
263@end deffn
264@item @key{M-TAB}
265@deffn Command widget-backward &optional count
266Move point @var{count} buttons or editing fields backward.
267@end deffn
268@end table
269
270@node Programming Example, Setting Up the Buffer, User Interface, Top
271@comment node-name, next, previous, up
272@section Programming Example
273
274Here is the code to implement the user interface example (see @ref{User
275Interface}).
276
277@lisp
278(require 'widget)
279
280(eval-when-compile
281 (require 'wid-edit))
282
283(defvar widget-example-repeat)
284
285(defun widget-example ()
286 "Create the widgets from the Widget manual."
287 (interactive)
288 (switch-to-buffer "*Widget Example*")
289 (kill-all-local-variables)
290 (make-local-variable 'widget-example-repeat)
291 (let ((inhibit-read-only t))
292 (erase-buffer))
293 (widget-insert "Here is some documentation.\n\nName: ")
294 (widget-create 'editable-field
295 :size 13
296 "My Name")
297 (widget-create 'menu-choice
298 :tag "Choose"
299 :value "This"
300 :help-echo "Choose me, please!"
301 :notify (lambda (widget &rest ignore)
302 (message "%s is a good choice!"
303 (widget-value widget)))
304 '(item :tag "This option" :value "This")
305 '(choice-item "That option")
306 '(editable-field :menu-tag "No option" "Thus option"))
307 (widget-insert "Address: ")
308 (widget-create 'editable-field
309 "Some Place\nIn some City\nSome country.")
310 (widget-insert "\nSee also ")
311 (widget-create 'link
312 :notify (lambda (&rest ignore)
313 (widget-value-set widget-example-repeat
314 '("En" "To" "Tre"))
315 (widget-setup))
316 "other work")
317 (widget-insert " for more information.\n\nNumbers: count to three below\n")
318 (setq widget-example-repeat
319 (widget-create 'editable-list
320 :entry-format "%i %d %v"
321 :notify (lambda (widget &rest ignore)
322 (let ((old (widget-get widget
323 ':example-length))
324 (new (length (widget-value widget))))
325 (unless (eq old new)
326 (widget-put widget ':example-length new)
327 (message "You can count to %d." new))))
328 :value '("One" "Eh, two?" "Five!")
329 '(editable-field :value "three")))
330 (widget-insert "\n\nSelect multiple:\n\n")
331 (widget-create 'checkbox t)
332 (widget-insert " This\n")
333 (widget-create 'checkbox nil)
334 (widget-insert " That\n")
335 (widget-create 'checkbox
336 :notify (lambda (&rest ignore) (message "Tickle"))
337 t)
338 (widget-insert " Thus\n\nSelect one:\n\n")
339 (widget-create 'radio-button-choice
340 :value "One"
341 :notify (lambda (widget &rest ignore)
342 (message "You selected %s"
343 (widget-value widget)))
344 '(item "One") '(item "Anthor One.") '(item "A Final One."))
345 (widget-insert "\n")
346 (widget-create 'push-button
347 :notify (lambda (&rest ignore)
348 (if (= (length (widget-value widget-example-repeat))
349 3)
350 (message "Congratulation!")
351 (error "Three was the count!")))
352 "Apply Form")
353 (widget-insert " ")
354 (widget-create 'push-button
355 :notify (lambda (&rest ignore)
356 (widget-example))
357 "Reset Form")
358 (widget-insert "\n")
359 (use-local-map widget-keymap)
360 (widget-setup))
361@end lisp
362
363@node Setting Up the Buffer, Basic Types, Programming Example, Top
364@comment node-name, next, previous, up
365@section Setting Up the Buffer
366
367Widgets are created with @code{widget-create}, which returns a
368@dfn{widget} object. This object can be queried and manipulated by
369other widget functions, until it is deleted with @code{widget-delete}.
370After the widgets have been created, @code{widget-setup} must be called
371to enable them.
372
373@defun widget-create type [ keyword argument ]@dots{}
374Create and return a widget of type @var{type}.
375The syntax for the @var{type} argument is described in @ref{Basic Types}.
376
377The keyword arguments can be used to overwrite the keyword arguments
378that are part of @var{type}.
379@end defun
380
381@defun widget-delete widget
382Delete @var{widget} and remove it from the buffer.
383@end defun
384
385@defun widget-setup
386Setup a buffer to support widgets.
387
388This should be called after creating all the widgets and before allowing
389the user to edit them.
390@refill
391@end defun
392
393If you want to insert text outside the widgets in the form, the
394recommended way to do that is with @code{widget-insert}.
395
396@defun widget-insert
397Insert the arguments, either strings or characters, at point.
398The inserted text will be read only.
399@end defun
400
401There is a standard widget keymap which you might find useful.
402
403@defvr Const widget-keymap
404A keymap with the global keymap as its parent.@*
405@key{TAB} and @kbd{C-@key{TAB}} are bound to @code{widget-forward} and
406@code{widget-backward}, respectively. @kbd{@key{RET}} and @kbd{mouse-2}
407are bound to @code{widget-button-press} and
408@code{widget-button-}.@refill
409@end defvr
410
411@defvar widget-global-map
412Keymap used by @code{widget-button-press} and @code{widget-button-click}
413when not on a button. By default this is @code{global-map}.
414@end defvar
415
416@node Basic Types, Sexp Types, Setting Up the Buffer, Top
417@comment node-name, next, previous, up
418@section Basic Types
419
420The syntax of a type specification is given below:
421
422@example
423NAME ::= (NAME [KEYWORD ARGUMENT]... ARGS)
424 | NAME
425@end example
426
427Where, @var{name} is a widget name, @var{keyword} is the name of a
428property, @var{argument} is the value of the property, and @var{args}
429are interpreted in a widget specific way.
430
431There following keyword arguments that apply to all widgets:
432
433@table @code
434@item :value
435The initial value for widgets of this type.
436
437@item :format
438This string will be inserted in the buffer when you create a widget.
439The following @samp{%} escapes are available:
440
441@table @samp
442@item %[
443@itemx %]
444The text inside will be marked as a button.
445
446@item %@{
447@itemx %@}
448The text inside will be displayed with the face specified by
449@code{:sample-face}.
450
451@item %v
452This will be replaces with the buffer representation of the widgets
453value. What this is depends on the widget type.
454
455@item %d
456Insert the string specified by @code{:doc} here.
457
458@item %h
459Like @samp{%d}, with the following modifications: If the documentation
460string is more than one line, it will add a button which will toggle
461between showing only the first line, and showing the full text.
462Furthermore, if there is no @code{:doc} property in the widget, it will
463instead examine the @code{:documentation-property} property. If it is a
464lambda expression, it will be called with the widget's value as an
465argument, and the result will be used as the documentation text.
466
467@item %t
468Insert the string specified by @code{:tag} here, or the @code{princ}
469representation of the value if there is no tag.
470
471@item %%
472Insert a literal @samp{%}.
473@end table
474
475@item :button-face
476Face used to highlight text inside %[ %] in the format.
477
478@item :doc
479The string inserted by the @samp{%d} escape in the format
480string.
481
482@item :tag
483The string inserted by the @samp{%t} escape in the format
484string.
485
486@item :tag-glyph
487Name of image to use instead of the string specified by `:tag' on
488Emacsen that supports it.
489
490@item :help-echo
491Message displayed whenever you move to the widget with either
492@code{widget-forward} or @code{widget-backward}.
493
494@item :indent
495An integer indicating the absolute number of spaces to indent children
496of this widget.
497
498@item :offset
499An integer indicating how many extra spaces to add to the widget's
500grandchildren compared to this widget.
501
502@item :extra-offset
503An integer indicating how many extra spaces to add to the widget's
504children compared to this widget.
505
506@item :notify
507A function called each time the widget or a nested widget is changed.
508The function is called with two or three arguments. The first argument
509is the widget itself, the second argument is the widget that was
510changed, and the third argument is the event leading to the change, if
511any.
512
513@item :menu-tag
514Tag used in the menu when the widget is used as an option in a
515@code{menu-choice} widget.
516
517@item :menu-tag-get
518Function used for finding the tag when the widget is used as an option
519in a @code{menu-choice} widget. By default, the tag used will be either the
520@code{:menu-tag} or @code{:tag} property if present, or the @code{princ}
521representation of the @code{:value} property if not.
522
523@item :match
524Should be a function called with two arguments, the widget and a value,
525and returning non-nil if the widget can represent the specified value.
526
527@item :validate
528A function which takes a widget as an argument, and return nil if the
529widgets current value is valid for the widget. Otherwise, it should
530return the widget containing the invalid data, and set that widgets
531@code{:error} property to a string explaining the error.
532
533@item :tab-order
534Specify the order in which widgets are traversed with
535@code{widget-forward} or @code{widget-backward}. This is only partially
536implemented.
537
538@enumerate a
539@item
540Widgets with tabbing order @code{-1} are ignored.
541
542@item
543(Unimplemented) When on a widget with tabbing order @var{n}, go to the
544next widget in the buffer with tabbing order @var{n+1} or @code{nil},
545whichever comes first.
546
547@item
548When on a widget with no tabbing order specified, go to the next widget
549in the buffer with a positive tabbing order, or @code{nil}
550@end enumerate
551
552@item :parent
553The parent of a nested widget (e.g. a @code{menu-choice} item or an
554element of a @code{editable-list} widget).
555
556@item :sibling-args
557This keyword is only used for members of a @code{radio-button-choice} or
558@code{checklist}. The value should be a list of extra keyword
559arguments, which will be used when creating the @code{radio-button} or
560@code{checkbox} associated with this item.
561
562@end table
563
564@deffn {User Option} widget-glyph-directory
565Directory where glyphs are found.
566Widget will look here for a file with the same name as specified for the
567image, with either a @samp{.xpm} (if supported) or @samp{.xbm} extension.
568@end deffn
569
570@deffn{User Option} widget-glyph-enable
571If non-nil, allow glyphs to appear on displayes where they are supported.
572@end deffn
573
574
575@menu
576* link::
577* url-link::
578* info-link::
579* push-button::
580* editable-field::
581* text::
582* menu-choice::
583* radio-button-choice::
584* item::
585* choice-item::
586* toggle::
587* checkbox::
588* checklist::
589* editable-list::
590@end menu
591
592@node link, url-link, Basic Types, Basic Types
593@comment node-name, next, previous, up
594@subsection The @code{link} Widget
595
596Syntax:
597
598@example
599TYPE ::= (link [KEYWORD ARGUMENT]... [ VALUE ])
600@end example
601
602The @var{value}, if present, is used to initialize the @code{:value}
603property. The value should be a string, which will be inserted in the
604buffer.
605
606@node url-link, info-link, link, Basic Types
607@comment node-name, next, previous, up
608@subsection The @code{url-link} Widget
609
610Syntax:
611
612@example
613TYPE ::= (url-link [KEYWORD ARGUMENT]... URL)
614@end example
615
616When this link is activated, the @sc{www} browser specified by
617@code{browse-url-browser-function} will be called with @var{url}.
618
619@node info-link, push-button, url-link, Basic Types
620@comment node-name, next, previous, up
621@subsection The @code{info-link} Widget
622
623Syntax:
624
625@example
626TYPE ::= (info-link [KEYWORD ARGUMENT]... ADDRESS)
627@end example
628
629When this link is activated, the build-in info browser is started on
630@var{address}.
631
632@node push-button, editable-field, info-link, Basic Types
633@comment node-name, next, previous, up
634@subsection The @code{push-button} Widget
635
636Syntax:
637
638@example
639TYPE ::= (push-button [KEYWORD ARGUMENT]... [ VALUE ])
640@end example
641
642The @var{value}, if present, is used to initialize the @code{:value}
643property. The value should be a string, which will be inserted in the
644buffer.
645
646@node editable-field, text, push-button, Basic Types
647@comment node-name, next, previous, up
648@subsection The @code{editable-field} Widget
649
650Syntax:
651
652@example
653TYPE ::= (editable-field [KEYWORD ARGUMENT]... [ VALUE ])
654@end example
655
656The @var{value}, if present, is used to initialize the @code{:value}
657property. The value should be a string, which will be inserted in
658field. This widget will match all string values.
659
660The following extra properties are recognized.
661
662@table @code
663@item :size
664The width of the editable field.@*
665By default the field will reach to the end of the line.
666
667@item :value-face
668Face used for highlighting the editable field. Default is
669@code{widget-field-face}.
670
671@item :secret
672Character used to display the value. You can set this to e.g. @code{?*}
673if the field contains a password or other secret information. By
674default, the value is not secret.
675
676@item :valid-regexp
677By default the @code{:validate} function will match the content of the
678field with the value of this attribute. The default value is @code{""}
679which matches everything.
680
681@item :keymap
682Keymap used in the editable field. The default value is
683@code{widget-field-keymap}, which allows you to use all the normal
684editing commands, even if the buffers major mode supress some of them.
685Pressing return activates the function specified by @code{:activate}.
686
687@item :hide-front-space
688@itemx :hide-rear-space
689In order to keep track of the editable field, emacs places an invisible
690space character in front of the field, and for fixed sized fields also
691in the rear end of the field. For fields that extent to the end of the
692line, the terminating linefeed serves that purpose instead.
693
694Emacs will try to make the spaces intangible when it is safe to do so.
695Intangible means that the cursor motion commands will skip over the
696character as if it didn't exist. This is safe to do when the text
697preceding or following the widget cannot possible change during the
698lifetime of the @code{editable-field} widget. The preferred way to tell
699Emacs this, is to add text to the @code{:format} property around the
700value. For example @code{:format "Tag: %v "}.
701
702You can overwrite the internal safety check by setting the
703@code{:hide-front-space} or @code{:hide-rear-space} properties to
704non-nil. This is not recommended. For example, @emph{all} text that
705belongs to a widget (i.e. is created from its @code{:format} string) will
706change whenever the widget changes its value.
707
708@end table
709
710@node text, menu-choice, editable-field, Basic Types
711@comment node-name, next, previous, up
712@subsection The @code{text} Widget
713
714This is just like @code{editable-field}, but intended for multiline text
715fields. The default @code{:keymap} is @code{widget-text-keymap}, which
716does not rebind the return key.
717
718@node menu-choice, radio-button-choice, text, Basic Types
719@comment node-name, next, previous, up
720@subsection The @code{menu-choice} Widget
721
722Syntax:
723
724@example
725TYPE ::= (menu-choice [KEYWORD ARGUMENT]... TYPE ... )
726@end example
727
728The @var{type} arguments represents each possible choice. The widgets
729value of will be the value of the chosen @var{type} argument. This
730widget will match any value that matches at least one of the specified
731@var{type} arguments.
732
733@table @code
734@item :void
735Widget type used as a fallback when the value does not match any of the
736specified @var{type} arguments.
737
738@item :case-fold
739Set this to nil if you don't want to ignore case when prompting for a
740choice through the minibuffer.
741
742@item :children
743A list whose car is the widget representing the currently chosen type in
744the buffer.
745
746@item :choice
747The current chosen type
748
749@item :args
750The list of types.
751@end table
752
753@node radio-button-choice, item, menu-choice, Basic Types
754@comment node-name, next, previous, up
755@subsection The @code{radio-button-choice} Widget
756
757Syntax:
758
759@example
760TYPE ::= (radio-button-choice [KEYWORD ARGUMENT]... TYPE ... )
761@end example
762
763The @var{type} arguments represents each possible choice. The widgets
764value of will be the value of the chosen @var{type} argument. This
765widget will match any value that matches at least one of the specified
766@var{type} arguments.
767
768The following extra properties are recognized.
769
770@table @code
771@item :entry-format
772This string will be inserted for each entry in the list.
773The following @samp{%} escapes are available:
774@table @samp
775@item %v
776Replaced with the buffer representation of the @var{type} widget.
777@item %b
778Replace with the radio button.
779@item %%
780Insert a literal @samp{%}.
781@end table
782
783@item button-args
784A list of keywords to pass to the radio buttons. Useful for setting
785e.g. the @samp{:help-echo} for each button.
786
787@item :buttons
788The widgets representing the radio buttons.
789
790@item :children
791The widgets representing each type.
792
793@item :choice
794The current chosen type
795
796@item :args
797The list of types.
798@end table
799
800You can add extra radio button items to a @code{radio-button-choice}
801widget after it has been created with the function
802@code{widget-radio-add-item}.
803
804@defun widget-radio-add-item widget type
805Add to @code{radio-button-choice} widget @var{widget} a new radio button item of type
806@var{type}.
807@end defun
808
809Please note that such items added after the @code{radio-button-choice}
810widget has been created will @strong{not} be properly destructed when
811you call @code{widget-delete}.
812
813@node item, choice-item, radio-button-choice, Basic Types
814@comment node-name, next, previous, up
815@subsection The @code{item} Widget
816
817Syntax:
818
819@example
820ITEM ::= (item [KEYWORD ARGUMENT]... VALUE)
821@end example
822
823The @var{value}, if present, is used to initialize the @code{:value}
824property. The value should be a string, which will be inserted in the
825buffer. This widget will only match the specified value.
826
827@node choice-item, toggle, item, Basic Types
828@comment node-name, next, previous, up
829@subsection The @code{choice-item} Widget
830
831Syntax:
832
833@example
834ITEM ::= (choice-item [KEYWORD ARGUMENT]... VALUE)
835@end example
836
837The @var{value}, if present, is used to initialize the @code{:value}
838property. The value should be a string, which will be inserted in the
839buffer as a button. Activating the button of a @code{choice-item} is
840equivalent to activating the parent widget. This widget will only match
841the specified value.
842
843@node toggle, checkbox, choice-item, Basic Types
844@comment node-name, next, previous, up
845@subsection The @code{toggle} Widget
846
847Syntax:
848
849@example
850TYPE ::= (toggle [KEYWORD ARGUMENT]...)
851@end example
852
853The widget has two possible states, `on' and `off', which corresponds to
854a @code{t} or @code{nil} value.
855
856The following extra properties are recognized.
857
858@table @code
859@item :on
860String representing the `on' state. By default the string @samp{on}.
861@item :off
862String representing the `off' state. By default the string @samp{off}.
863@item :on-glyph
864Name of a glyph to be used instead of the `:on' text string, on emacsen
865that supports it.
866@item :off-glyph
867Name of a glyph to be used instead of the `:off' text string, on emacsen
868that supports it.
869@end table
870
871@node checkbox, checklist, toggle, Basic Types
872@comment node-name, next, previous, up
873@subsection The @code{checkbox} Widget
874
875The widget has two possible states, `selected' and `unselected', which
876corresponds to a @code{t} or @code{nil} value.
877
878Syntax:
879
880@example
881TYPE ::= (checkbox [KEYWORD ARGUMENT]...)
882@end example
883
884@node checklist, editable-list, checkbox, Basic Types
885@comment node-name, next, previous, up
886@subsection The @code{checklist} Widget
887
888Syntax:
889
890@example
891TYPE ::= (checklist [KEYWORD ARGUMENT]... TYPE ... )
892@end example
893
894The @var{type} arguments represents each checklist item. The widgets
895value of will be a list containing the value of each ticked @var{type}
896argument. The checklist widget will match a list whose elements all
897matches at least one of the specified @var{type} arguments.
898
899The following extra properties are recognized.
900
901@table @code
902@item :entry-format
903This string will be inserted for each entry in the list.
904The following @samp{%} escapes are available:
905@table @samp
906@item %v
907Replaced with the buffer representation of the @var{type} widget.
908@item %b
909Replace with the checkbox.
910@item %%
911Insert a literal @samp{%}.
912@end table
913
914@item button-args
915A list of keywords to pass to the checkboxes. Useful for setting
916e.g. the @samp{:help-echo} for each checkbox.
917
918@item :buttons
919The widgets representing the checkboxes.
920
921@item :children
922The widgets representing each type.
923
924@item :args
925The list of types.
926@end table
927
928@node editable-list, , checklist, Basic Types
929@comment node-name, next, previous, up
930@subsection The @code{editable-list} Widget
931
932Syntax:
933
934@example
935TYPE ::= (editable-list [KEYWORD ARGUMENT]... TYPE)
936@end example
937
938The value is a list, where each member represent one widget of type
939@var{type}.
940
941The following extra properties are recognized.
942
943@table @code
944@item :entry-format
945This string will be inserted for each entry in the list.
946The following @samp{%} escapes are available:
947@table @samp
948@item %v
949This will be replaced with the buffer representation of the @var{type}
950widget.
951@item %i
952Insert the @b{[INS]} button.
953@item %d
954Insert the @b{[DEL]} button.
955@item %%
956Insert a literal @samp{%}.
957@end table
958
959@item :insert-button-args
960A list of keyword arguments to pass to the insert buttons.
961
962@item :delete-button-args
963A list of keyword arguments to pass to the delete buttons.
964
965@item :append-button-args
966A list of keyword arguments to pass to the trailing insert button.
967
968
969@item :buttons
970The widgets representing the insert and delete buttons.
971
972@item :children
973The widgets representing the elements of the list.
974
975@item :args
976List whose car is the type of the list elements.
977
978@end table
979
980@node Sexp Types, Widget Properties, Basic Types, Top
981@comment
982@section Sexp Types
983
984A number of widgets for editing s-expressions (lisp types) are also
985available. These basically fall in three categories: @dfn{atoms},
986@dfn{composite types}, and @dfn{generic}.
987
988@menu
989* generic::
990* atoms::
991* composite::
992@end menu
993
994@node generic, atoms, Sexp Types, Sexp Types
995@comment node-name, next, previous, up
996@subsection The Generic Widget.
997
998The @code{const} and @code{sexp} widgets can contain any lisp
999expression. In the case of the @code{const} widget the user is
1000prohibited from editing edit it, which is mainly useful as a component
1001of one of the composite widgets.
1002
1003The syntax for the generic widgets is
1004
1005@example
1006TYPE ::= (const [KEYWORD ARGUMENT]... [ VALUE ])
1007@end example
1008
1009The @var{value}, if present, is used to initialize the @code{:value}
1010property and can be any s-expression.
1011
1012@deffn Widget const
1013This will display any valid s-expression in an immutable part of the
1014buffer.
1015@end deffn
1016
1017@deffn Widget sexp
1018This will allow you to edit any valid s-expression in an editable buffer
1019field.
1020
1021The @code{sexp} widget takes the same keyword arguments as the
1022@code{editable-field} widget.
1023@end deffn
1024
1025@node atoms, composite, generic, Sexp Types
1026@comment node-name, next, previous, up
1027@subsection Atomic Sexp Widgets.
1028
1029The atoms are s-expressions that does not consist of other
1030s-expressions. A string is an atom, while a list is a composite type.
1031You can edit the value of an atom with the following widgets.
1032
1033The syntax for all the atoms are
1034
1035@example
1036TYPE ::= (NAME [KEYWORD ARGUMENT]... [ VALUE ])
1037@end example
1038
1039The @var{value}, if present, is used to initialize the @code{:value}
1040property and must be an expression of the same type as the widget.
1041I.e. the string widget can only be initialized with a string.
1042
1043All the atom widgets take the same keyword arguments as the @code{editable-field}
1044widget.
1045
1046@deffn Widget string
1047Allows you to edit a string in an editable field.
1048@end deffn
1049
1050@deffn Widget file
1051Allows you to edit a file name in an editable field. You you activate
1052the tag button, you can edit the file name in the mini-buffer with
1053completion.
1054
1055Keywords:
1056@table @code
1057@item :must-match
1058If this is set to non-nil, only existing file names will be allowed in
1059the minibuffer.
1060@end table
1061@end deffn
1062
1063@deffn Widget directory
1064Allows you to edit a directory name in an editable field.
1065Similar to the @code{file} widget.
1066@end deffn
1067
1068@deffn Widget symbol
1069Allows you to edit a lisp symbol in an editable field.
1070@end deffn
1071
1072@deffn Widget integer
1073Allows you to edit an integer in an editable field.
1074@end deffn
1075
1076@deffn Widget number
1077Allows you to edit a number in an editable field.
1078@end deffn
1079
1080@deffn Widget boolean
1081Allows you to edit a boolean. In lisp this means a variable which is
1082either nil meaning false, or non-nil meaning true.
1083@end deffn
1084
1085
1086@node composite, , atoms, Sexp Types
1087@comment node-name, next, previous, up
1088@subsection Composite Sexp Widgets.
1089
1090The syntax for the composite are
1091
1092@example
1093TYPE ::= (NAME [KEYWORD ARGUMENT]... COMPONENT...)
1094@end example
1095
1096Where each @var{component} must be a widget type. Each component widget
1097will be displayed in the buffer, and be editable to the user.
1098
1099@deffn Widget cons
1100The value of a @code{cons} widget is a cons-cell where the car is the
1101value of the first component and the cdr is the value of the second
1102component. There must be exactly two components.
1103@end deffn
1104
1105@deffn Widget lisp
1106The value of a @code{lisp} widget is a list containing the value of
1107each of its component.
1108@end deffn
1109
1110@deffn Widget vector
1111The value of a @code{vector} widget is a vector containing the value of
1112each of its component.
1113@end deffn
1114
1115The above suffice for specifying fixed size lists and vectors. To get
1116variable length lists and vectors, you can use a @code{choice},
1117@code{set} or @code{repeat} widgets together with the @code{:inline}
1118keywords. If any component of a composite widget has the @code{:inline}
1119keyword set, its value must be a list which will then be spliced into
1120the composite. For example, to specify a list whose first element must
1121be a file name, and whose remaining arguments should either by the
1122symbol @code{t} or two files, you can use the following widget
1123specification:
1124
1125@example
1126(list file
1127 (choice (const t)
1128 (list :inline t
1129 :value ("foo" "bar")
1130 string string)))
1131@end example
1132
1133The value of a widget of this type will either have the form
1134@samp{(file t)} or @code{(file string string)}.
1135
1136This concept of inline is probably hard to understand. It was certainly
1137hard to implement so instead of confuse you more by trying to explain it
1138here, I'll just suggest you meditate over it for a while.
1139
1140@deffn Widget choice
1141Allows you to edit a sexp which may have one of fixed set of types. It
1142is currently implemented with the @code{choice-menu} basic widget, and
1143has a similar syntax.
1144@end deffn
1145
1146@deffn Widget set
1147Allows you to specify a type which must be a list whose elements all
1148belong to given set. The elements of the list is not significant. This
1149is implemented on top of the @code{checklist} basic widget, and has a
1150similar syntax.
1151@end deffn
1152
1153@deffn Widget repeat
1154Allows you to specify a variable length list whose members are all of
1155the same type. Implemented on top of the `editable-list' basic widget,
1156and has a similar syntax.
1157@end deffn
1158
1159@node Widget Properties, Defining New Widgets, Sexp Types, Top
1160@comment node-name, next, previous, up
1161@section Properties
1162
1163You can examine or set the value of a widget by using the widget object
1164that was returned by @code{widget-create}.
1165
1166@defun widget-value widget
1167Return the current value contained in @var{widget}.
1168It is an error to call this function on an uninitialized widget.
1169@end defun
1170
1171@defun widget-value-set widget value
1172Set the value contained in @var{widget} to @var{value}.
1173It is an error to call this function with an invalid @var{value}.
1174@end defun
1175
1176@strong{Important:} You @emph{must} call @code{widget-setup} after
1177modifying the value of a widget before the user is allowed to edit the
1178widget again. It is enough to call @code{widget-setup} once if you
1179modify multiple widgets. This is currently only necessary if the widget
1180contains an editing field, but may be necessary for other widgets in the
1181future.
1182
1183If your application needs to associate some information with the widget
1184objects, for example a reference to the item being edited, it can be
1185done with @code{widget-put} and @code{widget-get}. The property names
1186must begin with a @samp{:}.
1187
1188@defun widget-put widget property value
1189In @var{widget} set @var{property} to @var{value}.
1190@var{property} should be a symbol, while @var{value} can be anything.
1191@end defun
1192
1193@defun widget-get widget property
1194In @var{widget} return the value for @var{property}.
1195@var{property} should be a symbol, the value is what was last set by
1196@code{widget-put} for @var{property}.
1197@end defun
1198
1199@defun widget-member widget property
1200Non-nil if @var{widget} has a value (even nil) for property @var{property}.
1201@end defun
1202
1203Occasionally it can be useful to know which kind of widget you have,
1204i.e. the name of the widget type you gave when the widget was created.
1205
1206@defun widget-type widget
1207Return the name of @var{widget}, a symbol.
1208@end defun
1209
1210Widgets can be in two states: active, which means they are modifiable by
1211the user, or inactive, which means they cannot be modified by the user.
1212You can query or set the state with the following code:
1213
1214@lisp
1215;; Examine if @var{widget} is active or not.
1216(if (widget-apply @var{widget} :active)
1217 (message "Widget is active.")
1218 (message "Widget is inactive.")
1219
1220;; Make @var{widget} inactive.
1221(widget-apply @var{widget} :deactivate)
1222
1223;; Make @var{widget} active.
1224(widget-apply @var{widget} :activate)
1225@end lisp
1226
1227A widget is inactive if itself, or any of its ancestors (found by
1228following the @code{:parent} link) have been deactivated. To make sure
1229a widget is really active, you must therefore activate both itself, and
1230all its ancestors.
1231
1232@lisp
1233(while widget
1234 (widget-apply widget :activate)
1235 (setq widget (widget-get widget :parent)))
1236@end lisp
1237
1238You can check if a widget has been made inactive by examining the value
1239of @code{:inactive} keyword. If this is non-nil, the widget itself has
1240been deactivated. This is different from using the @code{:active}
1241keyword, in that the later tell you if the widget @strong{or} any of its
1242ancestors have been deactivated. Do not attempt to set the
1243@code{:inactive} keyword directly. Use the @code{:activate}
1244@code{:deactivated} keywords instead.
1245
1246
1247@node Defining New Widgets, Widget Wishlist., Widget Properties, Top
1248@comment node-name, next, previous, up
1249@section Defining New Widgets
1250
1251You can define specialized widgets with @code{define-widget}. It allows
1252you to create a shorthand for more complex widgets, including specifying
1253component widgets and default new default values for the keyword
1254arguments.
1255
1256@defun widget-define name class doc &rest args
1257Define a new widget type named @var{name} from @code{class}.
1258
1259@var{name} and class should both be symbols, @code{class} should be one
1260of the existing widget types.
1261
1262The third argument @var{DOC} is a documentation string for the widget.
1263
1264After the new widget has been defined, the following two calls will
1265create identical widgets:
1266
1267@itemize @bullet
1268@item
1269@lisp
1270(widget-create @var{name})
1271@end lisp
1272
1273@item
1274@lisp
1275(apply widget-create @var{class} @var{args})
1276@end lisp
1277@end itemize
1278
1279@end defun
1280
1281Using @code{widget-define} does just store the definition of the widget
1282type in the @code{widget-type} property of @var{name}, which is what
1283@code{widget-create} uses.
1284
1285If you just want to specify defaults for keywords with no complex
1286conversions, you can use @code{identity} as your conversion function.
1287
1288The following additional keyword arguments are useful when defining new
1289widgets:
1290@table @code
1291@item :convert-widget
1292Function to convert a widget type before creating a widget of that
1293type. It takes a widget type as an argument, and returns the converted
1294widget type. When a widget is created, this function is called for the
1295widget type and all the widgets parent types, most derived first.
1296
1297@item :value-to-internal
1298Function to convert the value to the internal format. The function
1299takes two arguments, a widget and an external value, and returns the
1300internal value. The function is called on the present @code{:value}
1301when the widget is created, and on any value set later with
1302@code{widget-value-set}.
1303
1304@item :value-to-external
1305Function to convert the value to the external format. The function
1306takes two arguments, a widget and an internal value, and returns the
1307internal value. The function is called on the present @code{:value}
1308when the widget is created, and on any value set later with
1309@code{widget-value-set}.
1310
1311@item :create
1312Function to create a widget from scratch. The function takes one
1313argument, a widget type, and create a widget of that type, insert it in
1314the buffer, and return a widget object.
1315
1316@item :delete
1317Function to delete a widget. The function takes one argument, a widget,
1318and should remove all traces of the widget from the buffer.
1319
1320@item :value-create
1321Function to expand the @samp{%v} escape in the format string. It will
1322be called with the widget as its argument. Should
1323insert a representation of the widgets value in the buffer.
1324
1325@item :value-delete
1326Should remove the representation of the widgets value from the buffer.
1327It will be called with the widget as its argument. It doesn't have to
1328remove the text, but it should release markers and delete nested widgets
1329if such has been used.
1330
1331@item :format-handler
1332Function to handle unknown @samp{%} escapes in the format string. It
1333will be called with the widget and the escape character as arguments.
1334You can set this to allow your widget to handle non-standard escapes.
1335
1336You should end up calling @code{widget-default-format-handler} to handle
1337unknown escape sequences, which will handle the @samp{%h} and any future
1338escape sequences, as well as give an error for unknown escapes.
1339@end table
1340
1341If you want to define a new widget from scratch, use the @code{default}
1342widget as its base.
1343
1344@deffn Widget default [ keyword argument ]
1345Widget used as a base for other widgets.
1346
1347It provides most of the functionality that is referred to as ``by
1348default'' in this text.
1349@end deffn
1350
1351@node Widget Wishlist., , Defining New Widgets, Top
1352@comment node-name, next, previous, up
1353@section Wishlist.
1354
1355@itemize @bullet
1356@item
1357It should be possible to add or remove items from a list with @kbd{C-k}
1358and @kbd{C-o} (suggested by @sc{rms}).
1359
1360@item
1361The @samp{[INS]} and @samp{[DEL]} buttons should be replaced by a single
1362dash (@samp{-}). The dash should be a button that, when activated, ask
1363whether you want to add or delete an item (@sc{rms} wanted to git rid of
1364the ugly buttons, the dash is my idea).
1365
1366@item
1367Widgets such as @code{file} and @code{symbol} should prompt with completion.
1368
1369@item
1370The @code{menu-choice} tag should be prettier, something like the abbreviated
1371menus in Open Look.
1372
1373@item
1374The functions used in many widgets, like
1375@code{widget-item-convert-widget}, should not have names that are
1376specific to the first widget where I happended to use them.
1377
1378@item
1379Flag to make @code{widget-move} skip a specified button.
1380
1381@item
1382Document `helper' functions for defining new widgets.
1383
1384@item
1385Activate the item this is below the mouse when the button is
1386released, not the item this is below the mouse when the button is
1387pressed. Dired and grep gets this right. Give feedback if possible.
1388
1389@item
1390Use @samp{@@deffn Widget} to document widgets.
1391
1392@item
1393Document global keywords in one place.
1394
1395Document keywords particular to a specific widget in the widget
1396definition.
1397
1398Document the `default' widget first.
1399
1400Split, when needed, keywords into those useful for normal
1401customization, those primarily useful when deriving, and those who
1402represent runtime information.
1403
1404@item
1405Figure out terminology and @sc{api} for the class/type/object/super
1406stuff.
1407
1408Perhaps the correct model is delegation?
1409
1410@item
1411Document @code{widget-browse}.
1412
1413@item
1414Make indentation work with glyphs and propertional fonts.
1415
1416@item
1417Add object and class hierarchies to the browser.
1418
1419@end itemize
1420
1421@contents
1422@bye