
RESOURCES
     All widgets are constructed using the  "name"  parameter  of
     the object.  The X-toolkit resource mechanism can be used to
     control the appearance of an  object  based  on  either  its
     class or its name.  The xtpanel objects are constructed from
     Xaw widget classes as follows:


     message   is a Label widget

     button    is a Command widget

     toggle    is a Toggle widget

     text      is a Text widget

     field     is a Text widget

     dialog    is a Dialog widget

     scrollbar is a Scrollbar widget.

     slider    is a Box containing three Labels and a Scrollbar.

     choice    is a Box containing a Label and a number  of  Tog-
               gles.

     menubutton
               is a MenuButton. Attached to it is  a  SimpleMenu,
               with a number of SmeBSB menu entries.

     list      is a Box containing a Label and a List.

     graph     is a Box containing a  number  of  Scollbars,  and
               several Label widgets.

     box       is a Box widget.

     form      is a Form widget.

               If I have the following xtpanel script file:

               button={ label=QUIT action=QUIT }

               box={ name=bigfont
                     button={ label=fred action="PRINT fred" }
                     button={ label=joe  name=curs  action="PRINT
               joe" } }

               and the following resources:

               XTpanel*Command.Font:                        fixed
               XTpanel*bigfont*Command.Font:                 8x16
               XTpanel*bigfont*curs.Font: cursor

               Then the quit button will use  the  "fixed"  font,
               fred  will  use  "8x16"  and joe will use "cursor"
               (and thus be unreadable).

