| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
A number of widgets for editing s-expressions (Lisp types), sexp for short, are also available. These basically fall in several categories described in this section.
| 1.5.1 The Constant Widgets | ||
| 1.5.2 Generic Sexp Widget | ||
| 1.5.3 Atomic Sexp Widgets | ||
| 1.5.4 Composite Sexp Widgets |
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
The const widget can contain any Lisp expression, but the user is
prohibited from editing it, which is mainly useful as a component of one
of the composite widgets.
The syntax for the const widget is:
type ::= (const [keyword argument]... [ value ]) |
The value, if present, is used to initialize the :value
property and can be any s-expression.
There are two variations of the const widget, namely
variable-item and function-item. These should contain a
symbol with a variable or function binding. The major difference from
the const widget is that they will allow the user to see the
variable or function documentation for the symbol.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
The sexp widget can contain any Lisp expression, and allows the
user to edit it inline in the buffer.
The syntax for the sexp widget is:
type ::= (sexp [keyword argument]... [ value ]) |
The sexp widget takes the same keyword arguments as the
editable-field widget. See section 1.4.5 The editable-field Widget.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
The atoms are s-expressions that do not consist of other s-expressions. For example, a string, a file name, or a symbol are atoms, while a list is a composite type. You can edit the value of an atom with the following widgets.
The syntax for all the atoms are:
type ::= (construct [keyword argument]... [ value ]) |
The value, if present, is used to initialize the :value
property and must be an expression of the same type as the widget.
That is, the string widget can only be initialized with a string.
All the atom widgets take the same keyword arguments as the
editable-field widget. See section 1.4.5 The editable-field Widget.
Keywords:
:must-match
nil, only existing file names will be
allowed in the minibuffer.
file widget.
nil meaning false, or non-nil meaning true.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
The syntax for the composite widget construct is:
type ::= (construct [keyword argument]... component...) |
where each component must be a widget type. Each component widget will be displayed in the buffer, and will be editable by the user.
cons widget must be a cons-cell whose CAR
and CDR have two specified types. It uses this syntax:
type ::= (cons [keyword argument]... car-type cdr-type) |
choice widget must have one of a fixed
set of types. The widget's syntax is as follows:
type ::= (choice [keyword argument]... type ... ) |
The value of a choice widget can be anything that matches any of the
types.
list widget must be a list whose element types
match the specified component types:
type ::= (list [keyword argument]... component-type...) |
Thus, (list string number) matches lists of two elements,
the first being a string and the second being a number.
vector widget is like the list widget but matches
vectors instead of lists. Thus, (vector string number) matches
vectors of two elements, the first being a string and the second being
a number.
The above suffice for specifying fixed size lists and vectors. To get
variable length lists and vectors, you can use a choice,
set, or repeat widget together with the :inline
keyword. If any component of a composite widget has the
:inline keyword set, its value must be a list which will then
be spliced into the composite. For example, to specify a list whose
first element must be a file name, and whose remaining elements should
either be the symbol t or two strings (file names), you can use
the following widget specification:
(list file
(choice (const t)
(list :inline t
:value ("foo" "bar")
string string)))
|
The value of a widget of this type will either have the form
(file t) or (file string string).
This concept of :inline may be hard to understand. It was
certainly hard to implement, so instead of confusing you more by
trying to explain it here, I'll just suggest you meditate over it for
a while.
type ::= (set [keyword argument]... permitted-element ... ) |
Use const to specify each permitted element, like this:
(set (const a) (const b)).
type ::= (repeat [keyword argument]... type) |
| [ << ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |