emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/man/widget.texi


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/man/widget.texi
Date: Fri, 04 Apr 2003 01:23:38 -0500

Index: emacs/man/widget.texi
diff -c emacs/man/widget.texi:1.17 emacs/man/widget.texi:1.18
*** emacs/man/widget.texi:1.17  Sun Oct 13 21:31:35 2002
--- emacs/man/widget.texi       Tue Feb  4 09:53:29 2003
***************
*** 44,61 ****
  @top The Emacs Widget Library
  
  @menu
! * Introduction::                
! * User Interface::              
! * Programming Example::         
! * Setting Up the Buffer::       
! * Basic Types::                 
! * Sexp Types::                  
! * Widget Properties::           
! * Defining New Widgets::        
! * Widget Browser::              
! * Widget Minor Mode::           
! * Utilities::                   
! * Widget Wishlist::             
  * Index::
  @end menu
  
--- 44,61 ----
  @top The Emacs Widget Library
  
  @menu
! * Introduction::
! * User Interface::
! * Programming Example::
! * Setting Up the Buffer::
! * Basic Types::
! * Sexp Types::
! * Widget Properties::
! * Defining New Widgets::
! * Widget Browser::
! * Widget Minor Mode::
! * Utilities::
! * Widget Wishlist::
  * Index::
  @end menu
  
***************
*** 78,84 ****
  @item link
  Areas of text with an associated action.  Intended for hypertext links
  embedded in text.
! @item push-button 
  Like link, but intended for stand-alone buttons.
  @item editable-field
  An editable text field.  It can be either variable or fixed length.
--- 78,84 ----
  @item link
  Areas of text with an associated action.  Intended for hypertext links
  embedded in text.
! @item push-button
  Like link, but intended for stand-alone buttons.
  @item editable-field
  An editable text field.  It can be either variable or fixed length.
***************
*** 92,105 ****
  visible in the buffer.
  @item item
  A simple constant widget intended to be used in the @code{menu-choice} and
! @code{radio-button-choice} widgets. 
  @item choice-item
  A button item only intended for use in choices.  When invoked, the user
  will be asked to select another option from the choice widget.
  @item toggle
  A simple @samp{on}/@samp{off} switch.
  @item checkbox
! A checkbox (@samp{[ ]}/@samp{[X]}). 
  @item editable-list
  Create an editable list.  The user can insert or delete items in the
  list.  Each list item is itself a widget.
--- 92,105 ----
  visible in the buffer.
  @item item
  A simple constant widget intended to be used in the @code{menu-choice} and
! @code{radio-button-choice} widgets.
  @item choice-item
  A button item only intended for use in choices.  When invoked, the user
  will be asked to select another option from the choice widget.
  @item toggle
  A simple @samp{on}/@samp{off} switch.
  @item checkbox
! A checkbox (@samp{[ ]}/@samp{[X]}).
  @item editable-list
  Create an editable list.  The user can insert or delete items in the
  list.  Each list item is itself a widget.
***************
*** 112,118 ****
  meaning.  The user is not supposed to change or delete any of the text
  between the fields.  Examples of forms in Emacs are the @file{forms}
  package (of course), the customize buffers, the mail and news compose
! modes, and the @sc{html} form support in the @file{w3} browser.  
  
  @cindex widget library, why use it
  The advantages for a programmer of using the @code{widget} package to
--- 112,118 ----
  meaning.  The user is not supposed to change or delete any of the text
  between the fields.  Examples of forms in Emacs are the @file{forms}
  package (of course), the customize buffers, the mail and news compose
! modes, and the @sc{html} form support in the @file{w3} browser.
  
  @cindex widget library, why use it
  The advantages for a programmer of using the @code{widget} package to
***************
*** 120,140 ****
  
  @enumerate
  @item
! More complex fields than just editable text are supported. 
  @item
  You can give the users immediate feedback if they enter invalid data in a
  text field, and sometimes prevent entering invalid data.
! @item 
  You can have fixed sized fields, thus allowing multiple fields to be
  lined up in columns.
  @item
! It is simple to query or set the value of a field. 
! @item 
  Editing happens in the buffer, not in the mini-buffer.
! @item 
  Packages using the library get a uniform look, making them easier for
  the user to learn.
! @item 
  As support for embedded graphics improve, the widget library will be
  extended to use the GUI features.  This means that your code using the
  widget library will also use the new graphic features automatically.
--- 120,140 ----
  
  @enumerate
  @item
! More complex fields than just editable text are supported.
  @item
  You can give the users immediate feedback if they enter invalid data in a
  text field, and sometimes prevent entering invalid data.
! @item
  You can have fixed sized fields, thus allowing multiple fields to be
  lined up in columns.
  @item
! It is simple to query or set the value of a field.
! @item
  Editing happens in the buffer, not in the mini-buffer.
! @item
  Packages using the library get a uniform look, making them easier for
  the user to learn.
! @item
  As support for embedded graphics improve, the widget library will be
  extended to use the GUI features.  This means that your code using the
  widget library will also use the new graphic features automatically.
***************
*** 147,153 ****
  @table @file
  @item widget.el
  This will declare the user variables, define the function
! @code{define-widget}, and autoload the function @code{widget-create}. 
  @item wid-edit.el
  Everything else is here, there is no reason to load it explicitly, as
  it will be autoloaded when needed.
--- 147,153 ----
  @table @file
  @item widget.el
  This will declare the user variables, define the function
! @code{define-widget}, and autoload the function @code{widget-create}.
  @item wid-edit.el
  Everything else is here, there is no reason to load it explicitly, as
  it will be autoloaded when needed.
***************
*** 177,183 ****
  @b{[INS]} @b{[DEL]} @i{One}
  @b{[INS]} @b{[DEL]} @i{Eh, two?}
  @b{[INS]} @b{[DEL]} @i{Five!}
! @b{[INS]} 
  
  Select multiple:
  
--- 177,183 ----
  @b{[INS]} @b{[DEL]} @i{One}
  @b{[INS]} @b{[DEL]} @i{Eh, two?}
  @b{[INS]} @b{[DEL]} @i{Five!}
! @b{[INS]}
  
  Select multiple:
  
***************
*** 258,264 ****
  the example, @address@hidden is an option field tag.
  @item The @address@hidden and @address@hidden buttons
  Activating these will insert or delete elements from an editable list.
! The list is created by the @code{editable-list} widget. 
  @cindex embedded buttons
  @item Embedded Buttons
  The @address@hidden work_}} is an example of an embedded
--- 258,264 ----
  the example, @address@hidden is an option field tag.
  @item The @address@hidden and @address@hidden buttons
  Activating these will insert or delete elements from an editable list.
! The list is created by the @code{editable-list} widget.
  @cindex embedded buttons
  @item Embedded Buttons
  The @address@hidden work_}} is an example of an embedded
***************
*** 280,286 ****
  displayed as GUI buttons when possible.
  @end table
  
! To make them easier to locate, buttons are emphasized in the buffer.  
  
  @deffn Face widget-button-face
  Face used for buttons.
--- 280,286 ----
  displayed as GUI buttons when possible.
  @end table
  
! To make them easier to locate, buttons are emphasized in the buffer.
  
  @deffn Face widget-button-face
  Face used for buttons.
***************
*** 352,362 ****
    (widget-insert "\nSee also ")
    (widget-create 'link
                 :notify (lambda (&rest ignore)
!                          (widget-value-set widget-example-repeat 
                                             '("En" "To" "Tre"))
                           (widget-setup))
                 "other work")
!   (widget-insert 
      " for more information.\n\nNumbers: count to three below\n")
    (setq widget-example-repeat
        (widget-create 'editable-list
--- 352,362 ----
    (widget-insert "\nSee also ")
    (widget-create 'link
                 :notify (lambda (&rest ignore)
!                          (widget-value-set widget-example-repeat
                                             '("En" "To" "Tre"))
                           (widget-setup))
                 "other work")
!   (widget-insert
      " for more information.\n\nNumbers: count to three below\n")
    (setq widget-example-repeat
        (widget-create 'editable-list
***************
*** 387,393 ****
                 '(item "One") '(item "Another One.") '(item "A Final One."))
    (widget-insert "\n")
    (widget-create 'push-button
!                :notify (lambda (&rest ignore) 
                           (if (= (length (widget-value widget-example-repeat))
                                  3)
                               (message "Congratulation!")
--- 387,393 ----
                 '(item "One") '(item "Another One.") '(item "A Final One."))
    (widget-insert "\n")
    (widget-create 'push-button
!                :notify (lambda (&rest ignore)
                           (if (= (length (widget-value widget-example-repeat))
                                  3)
                               (message "Congratulation!")
***************
*** 425,432 ****
  Delete @var{widget} and remove it from the buffer.
  @end defun
  
! @defun widget-setup 
! Set up a buffer to support widgets. 
  
  This should be called after creating all the widgets and before allowing
  the user to edit them.
--- 425,432 ----
  Delete @var{widget} and remove it from the buffer.
  @end defun
  
! @defun widget-setup
! Set up a buffer to support widgets.
  
  This should be called after creating all the widgets and before allowing
  the user to edit them.
***************
*** 436,442 ****
  If you want to insert text outside the widgets in the form, the
  recommended way to do that is with @code{widget-insert}.
  
! @defun widget-insert 
  Insert the arguments, either strings or characters, at point.
  The inserted text will be read-only.
  @end defun
--- 436,442 ----
  If you want to insert text outside the widgets in the form, the
  recommended way to do that is with @code{widget-insert}.
  
! @defun widget-insert
  Insert the arguments, either strings or characters, at point.
  The inserted text will be read-only.
  @end defun
***************
*** 492,498 ****
  The text inside will be marked as a button.
  
  By default, the text will be shown in @code{widget-button-face}, and
! surrounded by brackets. 
  
  @defopt widget-button-prefix
  String to prefix buttons.
--- 492,498 ----
  The text inside will be marked as a button.
  
  By default, the text will be shown in @code{widget-button-face}, and
! surrounded by brackets.
  
  @defopt widget-button-prefix
  String to prefix buttons.
***************
*** 505,511 ****
  @item address@hidden
  @itemx address@hidden
  The text inside will be displayed with the face specified by
! @code{:sample-face}. 
  
  @item %v
  This will be replaced with the buffer representation of the widget's
--- 505,511 ----
  @item address@hidden
  @itemx address@hidden
  The text inside will be displayed with the face specified by
! @code{:sample-face}.
  
  @item %v
  This will be replaced with the buffer representation of the widget's
***************
*** 528,534 ****
  representation of the value if there is no tag.
  
  @item %%
! Insert a literal @samp{%}. 
  @end table
  
  @vindex address@hidden keyword}
--- 528,534 ----
  representation of the value if there is no tag.
  
  @item %%
! Insert a literal @samp{%}.
  @end table
  
  @vindex address@hidden keyword}
***************
*** 556,567 ****
  @vindex address@hidden keyword}
  @item :doc
  The string inserted by the @samp{%d} escape in the format
! string.  
  
  @vindex address@hidden keyword}
  @item :tag
  The string inserted by the @samp{%t} escape in the format
! string.  
  
  @vindex address@hidden keyword}
  @item :tag-glyph
--- 556,567 ----
  @vindex address@hidden keyword}
  @item :doc
  The string inserted by the @samp{%d} escape in the format
! string.
  
  @vindex address@hidden keyword}
  @item :tag
  The string inserted by the @samp{%t} escape in the format
! string.
  
  @vindex address@hidden keyword}
  @item :tag-glyph
***************
*** 597,603 ****
  The function is called with two or three arguments.  The first argument
  is the widget itself, the second argument is the widget that was
  changed, and the third argument is the event leading to the change, if
! any. 
  
  @vindex address@hidden keyword}
  @item :menu-tag
--- 597,603 ----
  The function is called with two or three arguments.  The first argument
  is the widget itself, the second argument is the widget that was
  changed, and the third argument is the event leading to the change, if
! any.
  
  @vindex address@hidden keyword}
  @item :menu-tag
***************
*** 639,645 ****
  @item
  Widgets with tabbing order @code{-1} are ignored.
  
! @item 
  (Unimplemented) When on a widget with tabbing order @var{n}, go to the
  next widget in the buffer with tabbing order @var{n+1} or @code{nil},
  whichever comes first.
--- 639,645 ----
  @item
  Widgets with tabbing order @code{-1} are ignored.
  
! @item
  (Unimplemented) When on a widget with tabbing order @var{n}, go to the
  next widget in the buffer with tabbing order @var{n+1} or @code{nil},
  whichever comes first.
***************
*** 664,670 ****
  @end table
  
  @deffn {User Option} widget-glyph-directory
! Directory where glyphs are found.  
  Widget will look here for a file with the same name as specified for the
  image, with either a @file{.xpm} (if supported) or @file{.xbm} extension.
  @end deffn
--- 664,670 ----
  @end table
  
  @deffn {User Option} widget-glyph-directory
! Directory where glyphs are found.
  Widget will look here for a file with the same name as specified for the
  image, with either a @file{.xpm} (if supported) or @file{.xbm} extension.
  @end deffn
***************
*** 675,695 ****
  
  
  @menu
! * link::                        
! * url-link::                    
! * info-link::                   
! * push-button::                 
! * editable-field::              
! * text::                        
! * menu-choice::                 
! * radio-button-choice::         
! * item::                        
! * choice-item::                 
! * toggle::                      
! * checkbox::                    
! * checklist::                   
! * editable-list::               
! * group::                       
  @end menu
  
  @node link, url-link, Basic Types, Basic Types
--- 675,695 ----
  
  
  @menu
! * link::
! * url-link::
! * info-link::
! * push-button::
! * editable-field::
! * text::
! * menu-choice::
! * radio-button-choice::
! * item::
! * choice-item::
! * toggle::
! * checkbox::
! * checklist::
! * editable-list::
! * group::
  @end menu
  
  @node link, url-link, Basic Types, Basic Types
***************
*** 705,711 ****
  
  The @var{value}, if present, is used to initialize the @code{:value}
  property.  The value should be a string, which will be inserted in the
! buffer. 
  
  By default the link will be shown in brackets.
  
--- 705,711 ----
  
  The @var{value}, if present, is used to initialize the @code{:value}
  property.  The value should be a string, which will be inserted in the
! buffer.
  
  By default the link will be shown in brackets.
  
***************
*** 730,736 ****
  
  @findex address@hidden, and @code{url-link} widget}
  When this link is invoked, the @sc{www} browser specified by
! @code{browse-url-browser-function} will be called with @var{url}. 
  
  @node info-link, push-button, url-link, Basic Types
  @comment  node-name,  next,  previous,  up
--- 730,736 ----
  
  @findex address@hidden, and @code{url-link} widget}
  When this link is invoked, the @sc{www} browser specified by
! @code{browse-url-browser-function} will be called with @var{url}.
  
  @node info-link, push-button, url-link, Basic Types
  @comment  node-name,  next,  previous,  up
***************
*** 744,750 ****
  @end example
  
  When this link is invoked, the built-in Info reader is started on
! @var{address}. 
  
  @node  push-button, editable-field, info-link, Basic Types
  @comment  node-name,  next,  previous,  up
--- 744,750 ----
  @end example
  
  When this link is invoked, the built-in Info reader is started on
! @var{address}.
  
  @node  push-button, editable-field, info-link, Basic Types
  @comment  node-name,  next,  previous,  up
***************
*** 759,765 ****
  
  The @var{value}, if present, is used to initialize the @code{:value}
  property.  The value should be a string, which will be inserted in the
! buffer. 
  
  By default the tag will be shown in brackets.
  
--- 759,765 ----
  
  The @var{value}, if present, is used to initialize the @code{:value}
  property.  The value should be a string, which will be inserted in the
! buffer.
  
  By default the tag will be shown in brackets.
  
***************
*** 797,803 ****
  @vindex address@hidden keyword}
  @item :value-face
  Face used for highlighting the editable field.  Default is
! @code{widget-field-face}, see @ref{User Interface}. 
  
  @vindex address@hidden keyword}
  @item :secret
--- 797,803 ----
  @vindex address@hidden keyword}
  @item :value-face
  Face used for highlighting the editable field.  Default is
! @code{widget-field-face}, see @ref{User Interface}.
  
  @vindex address@hidden keyword}
  @item :secret
***************
*** 849,855 ****
  
  @table @code
  @vindex address@hidden keyword}
! @item :void 
  Widget type used as a fallback when the value does not match any of the
  specified @var{type} arguments.
  
--- 849,855 ----
  
  @table @code
  @vindex address@hidden keyword}
! @item :void
  Widget type used as a fallback when the value does not match any of the
  specified @var{type} arguments.
  
***************
*** 868,875 ****
  The current chosen type.
  
  @vindex address@hidden keyword}
! @item :args 
! The list of types. 
  @end table
  
  @node radio-button-choice, item, menu-choice, Basic Types
--- 868,875 ----
  The current chosen type.
  
  @vindex address@hidden keyword}
! @item :args
! The list of types.
  @end table
  
  @node radio-button-choice, item, menu-choice, Basic Types
***************
*** 901,907 ****
  @item %b
  Replace with the radio button.
  @item %%
! Insert a literal @samp{%}. 
  @end table
  
  @vindex address@hidden keyword}
--- 901,907 ----
  @item %b
  Replace with the radio button.
  @item %%
! Insert a literal @samp{%}.
  @end table
  
  @vindex address@hidden keyword}
***************
*** 922,934 ****
  The current chosen type
  
  @vindex address@hidden keyword}
! @item :args 
! The list of types. 
  @end table
  
  You can add extra radio button items to a @code{radio-button-choice}
  widget after it has been created with the function
! @code{widget-radio-add-item}. 
  
  @defun widget-radio-add-item widget type
  Add to @code{radio-button-choice} widget @var{widget} a new radio button
--- 922,934 ----
  The current chosen type
  
  @vindex address@hidden keyword}
! @item :args
! The list of types.
  @end table
  
  You can add extra radio button items to a @code{radio-button-choice}
  widget after it has been created with the function
! @code{widget-radio-add-item}.
  
  @defun widget-radio-add-item widget type
  Add to @code{radio-button-choice} widget @var{widget} a new radio button
***************
*** 969,975 ****
  property.  The value should be a string, which will be inserted in the
  buffer as a button.  Activating the button of a @code{choice-item} is
  equivalent to activating the parent widget.  This widget will only match
! the specified value. 
  
  @node toggle, checkbox, choice-item, Basic Types
  @comment  node-name,  next,  previous,  up
--- 969,975 ----
  property.  The value should be a string, which will be inserted in the
  buffer as a button.  Activating the button of a @code{choice-item} is
  equivalent to activating the parent widget.  This widget will only match
! the specified value.
  
  @node toggle, checkbox, choice-item, Basic Types
  @comment  node-name,  next,  previous,  up
***************
*** 991,997 ****
  @item :on
  A string representing the @samp{on} state.  By default the string
  @samp{on}.
! @item :off 
  A string representing the @samp{off} state.  By default the string
  @samp{off}.
  @vindex address@hidden keyword}
--- 991,997 ----
  @item :on
  A string representing the @samp{on} state.  By default the string
  @samp{on}.
! @item :off
  A string representing the @samp{off} state.  By default the string
  @samp{off}.
  @vindex address@hidden keyword}
***************
*** 1047,1053 ****
  @item %b
  Replace with the checkbox.
  @item %%
! Insert a literal @samp{%}. 
  @end table
  
  @vindex address@hidden keyword}
--- 1047,1053 ----
  @item %b
  Replace with the checkbox.
  @item %%
! Insert a literal @samp{%}.
  @end table
  
  @vindex address@hidden keyword}
***************
*** 1072,1079 ****
  The widgets representing each type.
  
  @vindex address@hidden keyword}
! @item :args 
! The list of types. 
  @end table
  
  @node editable-list, group, checklist, Basic Types
--- 1072,1079 ----
  The widgets representing each type.
  
  @vindex address@hidden keyword}
! @item :args
! The list of types.
  @end table
  
  @node editable-list, group, checklist, Basic Types
***************
*** 1088,1094 ****
  @end example
  
  The value is a list, where each member represents one widget of type
! @var{type}. 
  
  The following extra properties are recognized:
  
--- 1088,1094 ----
  @end example
  
  The value is a list, where each member represents one widget of type
! @var{type}.
  
  The following extra properties are recognized:
  
***************
*** 1106,1112 ****
  @item %d
  Insert the @b{[DEL]} button.
  @item %%
! Insert a literal @samp{%}. 
  @end table
  
  @vindex address@hidden keyword}
--- 1106,1112 ----
  @item %d
  Insert the @b{[DEL]} button.
  @item %%
! Insert a literal @samp{%}.
  @end table
  
  @vindex address@hidden keyword}
***************
*** 1147,1153 ****
  TYPE ::= (group [KEYWORD ARGUMENT]... TYPE...)
  @end example
  
! The value is a list, with one member for each @var{type}.  
  
  @node Sexp Types, Widget Properties, Basic Types, Top
  @comment
--- 1147,1153 ----
  TYPE ::= (group [KEYWORD ARGUMENT]... TYPE...)
  @end example
  
! The value is a list, with one member for each @var{type}.
  
  @node Sexp Types, Widget Properties, Basic Types, Top
  @comment
***************
*** 1159,1168 ****
  categories described in this section.
  
  @menu
! * constants::                   
! * generic::                     
! * atoms::                       
! * composite::                   
  @end menu
  
  @node constants, generic, Sexp Types, Sexp Types
--- 1159,1168 ----
  categories described in this section.
  
  @menu
! * constants::
! * generic::
! * atoms::
! * composite::
  @end menu
  
  @node constants, generic, Sexp Types, Sexp Types
***************
*** 1185,1191 ****
  
  @deffn Widget const
  This will display any valid s-expression in an immutable part of the
! buffer. 
  @end deffn
  
  There are two variations of the @code{const} widget, namely
--- 1185,1191 ----
  
  @deffn Widget const
  This will display any valid s-expression in an immutable part of the
! buffer.
  @end deffn
  
  There are two variations of the @code{const} widget, namely
***************
*** 1218,1224 ****
  
  @deffn Widget sexp
  This will allow you to edit any valid s-expression in an editable buffer
! field. 
  
  The @code{sexp} widget takes the same keyword arguments as the
  @code{editable-field} widget.  @xref{editable-field}.
--- 1218,1224 ----
  
  @deffn Widget sexp
  This will allow you to edit any valid s-expression in an editable buffer
! field.
  
  The @code{sexp} widget takes the same keyword arguments as the
  @code{editable-field} widget.  @xref{editable-field}.
***************
*** 1262,1268 ****
  @deffn Widget file
  Allows you to edit a file name in an editable field.  If you invoke
  the tag button, you can edit the file name in the mini-buffer with
! completion. 
  
  Keywords:
  @table @code
--- 1262,1268 ----
  @deffn Widget file
  Allows you to edit a file name in an editable field.  If you invoke
  the tag button, you can edit the file name in the mini-buffer with
! completion.
  
  Keywords:
  @table @code
***************
*** 1353,1359 ****
                      string string)))
  @end example
  
! The value of a widget of this type will either have the form 
  @code{(file t)} or @code{(file string string)}.
  
  This concept of inline is probably hard to understand.  It was certainly
--- 1353,1359 ----
                      string string)))
  @end example
  
! The value of a widget of this type will either have the form
  @code{(file t)} or @code{(file string string)}.
  
  This concept of inline is probably hard to understand.  It was certainly
***************
*** 1403,1409 ****
  widget again.  It is enough to call @code{widget-setup} once if you
  modify multiple widgets.  This is currently only necessary if the widget
  contains an editing field, but may be necessary for other widgets in the
! future. 
  
  If your application needs to associate some information with the widget
  objects, for example a reference to the item being edited, it can be
--- 1403,1409 ----
  widget again.  It is enough to call @code{widget-setup} once if you
  modify multiple widgets.  This is currently only necessary if the widget
  contains an editing field, but may be necessary for other widgets in the
! future.
  
  If your application needs to associate some information with the widget
  objects, for example a reference to the item being edited, it can be
***************
*** 1426,1432 ****
  @end defun
  
  Occasionally it can be useful to know which kind of widget you have,
! i.e.@: the name of the widget type you gave when the widget was created. 
  
  @defun widget-type widget
  Return the name of @var{widget}, a symbol.
--- 1426,1432 ----
  @end defun
  
  Occasionally it can be useful to know which kind of widget you have,
! i.e.@: the name of the widget type you gave when the widget was created.
  
  @defun widget-type widget
  Return the name of @var{widget}, a symbol.
***************
*** 1459,1465 ****
  all its ancestors.
  
  @lisp
! (while widget 
    (widget-apply widget :activate)
    (setq widget (widget-get widget :parent)))
  @end lisp
--- 1459,1465 ----
  all its ancestors.
  
  @lisp
! (while widget
    (widget-apply widget :activate)
    (setq widget (widget-get widget :parent)))
  @end lisp
***************
*** 1482,1494 ****
  You can define specialized widgets with @code{define-widget}.  It allows
  you to create a shorthand for more complex widgets, including specifying
  component widgets and new default values for the keyword
! arguments. 
  
  @defun define-widget name class doc &rest args
  Define a new widget type named @var{name} from @code{class}.
  
  @var{name} and class should both be symbols, @code{class} should be one
! of the existing widget types. 
  
  The third argument @var{DOC} is a documentation string for the widget.
  
--- 1482,1494 ----
  You can define specialized widgets with @code{define-widget}.  It allows
  you to create a shorthand for more complex widgets, including specifying
  component widgets and new default values for the keyword
! arguments.
  
  @defun define-widget name class doc &rest args
  Define a new widget type named @var{name} from @code{class}.
  
  @var{name} and class should both be symbols, @code{class} should be one
! of the existing widget types.
  
  The third argument @var{DOC} is a documentation string for the widget.
  
***************
*** 1517,1530 ****
  conversions, you can use @code{identity} as your conversion function.
  
  The following additional keyword arguments are useful when defining new
! widgets: 
  @table @code
  @vindex address@hidden keyword}
  @item :convert-widget
  Function to convert a widget type before creating a widget of that
  type.  It takes a widget type as an argument, and returns the converted
  widget type.  When a widget is created, this function is called for the
! widget type and all the widget's parent types, most derived first. 
  
  The following predefined functions can be used here:
  
--- 1517,1530 ----
  conversions, you can use @code{identity} as your conversion function.
  
  The following additional keyword arguments are useful when defining new
! widgets:
  @table @code
  @vindex address@hidden keyword}
  @item :convert-widget
  Function to convert a widget type before creating a widget of that
  type.  It takes a widget type as an argument, and returns the converted
  widget type.  When a widget is created, this function is called for the
! widget type and all the widget's parent types, most derived first.
  
  The following predefined functions can be used here:
  
***************
*** 1596,1604 ****
  @end defun
  
  @vindex address@hidden keyword}
! @item :value-get 
  Function to extract the value of a widget, as it is displayed in the
! buffer. 
  
  The following predefined function can be used here:
  
--- 1596,1604 ----
  @end defun
  
  @vindex address@hidden keyword}
! @item :value-get
  Function to extract the value of a widget, as it is displayed in the
! buffer.
  
  The following predefined function can be used here:
  
***************
*** 1621,1627 ****
  @vindex address@hidden keyword}
  @item :action
  Function to handle user initiated events.  By default, @code{:notify}
! the parent. 
  
  The following predefined function can be used here:
  
--- 1621,1627 ----
  @vindex address@hidden keyword}
  @item :action
  Function to handle user initiated events.  By default, @code{:notify}
! the parent.
  
  The following predefined function can be used here:
  
***************
*** 1644,1654 ****
  If you want to define a new widget from scratch, use the @code{default}
  widget as its base.
  
! @deffn Widget default 
! Widget used as a base for other widgets. 
  
  It provides most of the functionality that is referred to as ``by
! default'' in this text. 
  @end deffn
  
  @node Widget Browser, Widget Minor Mode, Defining New Widgets, Top
--- 1644,1654 ----
  If you want to define a new widget from scratch, use the @code{default}
  widget as its base.
  
! @deffn Widget default
! Widget used as a base for other widgets.
  
  It provides most of the functionality that is referred to as ``by
! default'' in this text.
  @end deffn
  
  @node Widget Browser, Widget Minor Mode, Defining New Widgets, Top
***************
*** 1683,1689 ****
  
  There is a minor mode for manipulating widgets in major modes that
  don't provide any support for widgets themselves.  This is mostly
! intended to be useful for programmers doing experiments. 
  
  @deffn Command widget-minor-mode
  Toggle minor mode for traversing widgets.
--- 1683,1689 ----
  
  There is a minor mode for manipulating widgets in major modes that
  don't provide any support for widgets themselves.  This is mostly
! intended to be useful for programmers doing experiments.
  
  @deffn Command widget-minor-mode
  Toggle minor mode for traversing widgets.
***************
*** 1716,1726 ****
  @cindex todo
  
  @itemize @bullet
! @item 
  It should be possible to add or remove items from a list with @kbd{C-k}
  and @kbd{C-o} (suggested by @sc{rms}).
  
! @item 
  The @samp{[INS]} and @samp{[DEL]} buttons should be replaced by a single
  dash (@samp{-}).  The dash should be a button that, when invoked, asks
  whether you want to add or delete an item (@sc{rms} wanted to git rid of
--- 1716,1726 ----
  @cindex todo
  
  @itemize @bullet
! @item
  It should be possible to add or remove items from a list with @kbd{C-k}
  and @kbd{C-o} (suggested by @sc{rms}).
  
! @item
  The @samp{[INS]} and @samp{[DEL]} buttons should be replaced by a single
  dash (@samp{-}).  The dash should be a button that, when invoked, asks
  whether you want to add or delete an item (@sc{rms} wanted to git rid of
***************
*** 1738,1746 ****
  
  @item
  Add commands to show overview of object and class hierarchies to the
! browser. 
  
! @item 
  Find a way to disable mouse highlight for inactive widgets.
  
  @item
--- 1738,1746 ----
  
  @item
  Add commands to show overview of object and class hierarchies to the
! browser.
  
! @item
  Find a way to disable mouse highlight for inactive widgets.
  
  @item
***************
*** 1762,1771 ****
  Find clean way to implement variable length list.
  See @code{TeX-printer-list} for an explanation.
  
! @item 
  @kbd{C-h} in @code{widget-prompt-value} should give type specific help.
  
! @item 
  Add a @code{mailto} widget.
  @end itemize
  
--- 1762,1771 ----
  Find clean way to implement variable length list.
  See @code{TeX-printer-list} for an explanation.
  
! @item
  @kbd{C-h} in @code{widget-prompt-value} should give type specific help.
  
! @item
  Add a @code{mailto} widget.
  @end itemize
  




reply via email to

[Prev in Thread] Current Thread [Next in Thread]