home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / x / xcu16.zip / clients / xlayout / bw_bmgr.wl < prev    next >
Text File  |  1991-10-03  |  2KB  |  102 lines

  1. XcuWlm
  2.     {
  3.     *Command.cursor "dot"
  4.     *Tbl.internalWidth "20"
  5.     *Tbl.internalHeight "20"
  6.     *Tbl.interWidth "10"
  7.     *Tbl.interHeight "10"
  8.     *Button.shadow "True"
  9.     *Button.internalWidth "10"
  10.     *Button.internalHeight "10"
  11.     *Label.preserveText "True"
  12.     *Label.shadow "False"
  13.     *Label.borderColor "White"
  14.     *Label.facetWidth "0"
  15.     *Button.borderColor "White"
  16.     XcuTbl
  17.     {
  18.     formatString "c."
  19.     background "White"
  20.     internalWidth "20"
  21.     internalHeight "20"
  22.     interWidth "10"
  23.     interHeight "10"
  24.  
  25.     /*
  26.      * Notice that the hierarchical positioning of the XcuBmgr widgets
  27.      * is arbitrary.  They only have to appear within the scope of the
  28.      * XcuWlm widget. The first few are shown as if they are
  29.      * parents of the XcuButton widgets; the last two are shown near
  30.      * the end of the file.
  31.      */
  32.  
  33.     XcuTbl
  34.         {
  35.         formatString "c."
  36.         XcuLabel { name "Transient" }
  37.         XcuBmgr
  38.         {
  39.         bmgrType "Transient"
  40.         manage "STEP"
  41.         XcuButton { name "STEP" }
  42.         }
  43.         }
  44.  
  45.     XcuTbl
  46.         {
  47.         formatString "c."
  48.         XcuLabel { name "Single Toggle" }
  49.         XcuBmgr
  50.         {
  51.         bmgrType "SingleToggle"
  52.         manage "HIGHLIGHT"
  53.         XcuButton { name "HIGHLIGHT" }
  54.         }
  55.         }
  56.  
  57.     XcuTbl
  58.         {
  59.         formatString "c\nc c."
  60.         XcuLabel { name "Double Toggle" }
  61.         XcuBmgr
  62.         {
  63.         bmgrType "DoubleToggle"
  64.         manage "ON" "OFF"
  65.         XcuButton { name "ON" set "True" }
  66.         XcuButton { name "OFF" }
  67.         }
  68.         }
  69.  
  70.     XcuTbl
  71.         {
  72.         formatString "c\nc c c."
  73.         XcuLabel { name "One of Many" }
  74.         XcuButton { name "XY" }
  75.         XcuButton { name "YZ" }
  76.         XcuButton { name "ZX" set "True" }
  77.         }
  78.  
  79.     XcuTbl
  80.         {
  81.         formatString "c\nc c c."
  82.         XcuLabel { name "Any of Many" }
  83.         XcuButton { name "RED" }
  84.         XcuButton { name "GRN" set "True" }
  85.         XcuButton { name "BLU" set "True" }
  86.         }
  87.     }
  88.  
  89.     XcuBmgr
  90.     {
  91.     bmgrType "OneOfMany"
  92.     manage "XY" "YZ" "ZX"
  93.     }
  94.  
  95.     XcuBmgr
  96.     {
  97.     bmgrType "AnyOfMany"
  98.     manage "RED" "GRN" "BLU"
  99.     }
  100.     }
  101.  
  102.