 font:"*adobe*helv*r*normal*12*"
 environment TEST

       initialshells:Main


 {

       commandboard Main

               titlestring:"TEST interface"
               x:50
               y:100

       (

               list "Item1"
               x:0
               y:0
               width:300
               updatefrom:"!ls -1"
               listtype:single
               visibleitems:10
               ;


               list "Item2"
               x:400
               y:0
               width:300
               updatefrom:"!ls -1"
               listtype:single
               visibleitems:10
               ;

               button "ls -l"
               x:0
               y:220
               width:60
               alignment:center
                 captureoutput:editor
	       setLIST1:"[Item1]"
	       setLIST2:"[Item2]"
	       runforeground:"echo $LIST1 $LIST2 > /dev/tty"
	       /*
               runforeground:"ls -l [Item1] [Item2]"
	       */

               ;


               button "Quit"
               x:80
               y:220
               width:60
               alignment:center
               exit:0
               ;

       )

 }

