home *** CD-ROM | disk | FTP | other *** search
- ControlArea()
- {
- THEFRUIT="{Apples}, {Oranges}, {Banannas}, {Grapes},
- {Watermelon}, {Kiwi}"
-
- THECOLOR="{Red}, {Orange}, {Yellow}, {Green}, {Blue},
- {Indigo}, {Violet}, {Black}"
-
- THEANIMAL="{Lions}, {Tigers}, {Bears}, {Elephants},
- {Zebras}, {Monkeys}, {Hippos}, {Deer},
- {Duck Billed Platypus}"
-
- cps POPCONTROLA transientShell transientShell $PANE \\\n
- title:"WkshTree: ControlArea"
-
- cmw CAPTION caption caption $POPCONTROLA \\\n
- label:"ControlArea:" \\\n
- font:OlDefaultBoldFont \\\n
- position:top \\\n
- alignment:left
-
- cmw CONTROLAREA controlarea controlArea $CAPTION \\\n
- alignCaptions:true \\\n
- layoutType:fixedcols \\\n
- center:true \\\n
- hSpace:10
-
- cmw FRUITS caption caption $CONTROLAREA \\\n
- label:"Fruits:"
-
- cmw FRUITBUTTONS fruitbuttons flatButtons $FRUITS \\\n
- layoutType:fixedcols \\\n
- buttonType:rectBtn \\\n
- exclusives:true \\\n
- measure:3 \\\n
- numItems:6 \\\n
- itemFields:'{label}' \\\n
- items:"$THEFRUIT"
-
- cmw COLORS caption caption $CONTROLAREA \\\n
- label:"Colors:"
-
- cmw COLORBUTTONS colorButtons flatButtons $COLORS \\\n
- layoutType:fixedcols \\\n
- buttonType:rectBtn \\\n
- exclusives:true \\\n
- measure:4 \\\n
- numItems:8 \\\n
- itemFields:'{label}' \\\n
- items:"$THECOLOR"
-
- cmw ANIMALS caption caption $CONTROLAREA \\\n
- label:"Animals:"
-
- cmw ANIMALBUTTONS animalButtons flatButtons $ANIMALS \\\n
- layoutType:fixedcols \\\n
- buttonType:rectBtn \\\n
- exclusives:true \\\n
- measure:3 \\\n
- numItems:9 \\\n
- itemFields:'{label}' \\\n
- items:"$THEANIMAL"
-
- cmw OK Ok flatButtons $CONTROLAREA \\\n
- numItems:1 \\\n
- itemFields:'{label}' \\\n
- items:'{Ok}'
-
- sv $OK selectProc:"PopdownCB $POPCONTROLA"
-
- orh $POPCONTROLA "ControlArea Source" -f `pwd`/Controlarea
-
- pu $POPCONTROLA GrabNone
- }
-