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 / bmgr.wl < prev    next >
Text File  |  1991-10-03  |  2KB  |  109 lines

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