<iconbar> sprite  : "!Alarm"
          on-click: -open mainwindow
          on-menu : -open mainmenu

<menu mainmenu> text:"TWimp"
<item>          text:"Quit"   on-click:QUIT

<window mainwindow> text:"Main Window"
 auto-size
 no-scroll-bars



// on-click returns to your program when select or adjust mouse buttons are clicked on the icon
// on-change returns to your program when the value/text has changed

<display disp>  text:"Display Icon" width:960                         on-click:CLICKTEXT
<writable writ> text:"Hello" text-length:20                           on-click:CLICKTEXT   on-change:CLICKTEXT
<number numb>   min:0 max:50 value:25 has-arrows width:500 writable   on-click:CLICKNUMBER on-change:CLICKNUMBER
<option optn>   text:"An option" selected auto-grey:-GROUP_RADIO,adv  on-click:CLICKSEL
<radio rad1>    text:"Radio One" group:GROUP_RADIO                    on-click:CLICKSEL
<radio rad2>    text:"Radio Two" group:GROUP_RADIO                    on-click:CLICKSEL

<display result> text:"" width:960
<display selresult> text:""
