<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

<radio  rad1> text: "Radio 1"     group:RADIO_GROUP
<radio  rad2> text: "Radio 2"     group:RADIO_GROUP
<radio  rad3> text: "Radio 3"     group:RADIO_GROUP
<radio  rad4> text: "Radio 4"     group:RADIO_GROUP

// add-base-y makes everything below here further down the window
// you can also use add-base-x, sub-base-x, sub-base-y
// as well as set-base-x and set-base-y
// These only work in text input files

add-base-y:40

// set-group and unset-group will set everything between as that group
// These only work in text input files

set-group:OTHER_GROUP
<radio  other1> text: "Other 1"
<radio  other2> text: "Other 2"
<radio  other3> text: "Other 3"  selected
unset-group

<button> text:"Report" on-click:REPORT