<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"
 size:1000,800

// Some standard icons below that have no names yet
<display>  text:"Display Icon" width:960
<writable> text:"Hello" text-length:20
<number>   min:0 max:50 value:25 has-arrows width:500 writable
<option>   text:"An option" selected auto-grey:-GROUP_RADIO,adv  // GROUP_RADIO will grey if this is selected (because -), adv opposite
<radio>    text:"Radio One" group:GROUP_RADIO
<radio>    text:"Radio Two" group:GROUP_RADIO

// Advanced icon
<icon adv> text:"Risc OS"
           text-align: top-centre
           text-gap: 80
           colour:#003300        // html hex colour

           post:"Text goes after"

           sprite:"Switcher"
           sprite-align:bottom-right
           sprite-gap:40

           size:300,300
           background-colour:cream
           border:in

           on-click: -error "You clicked on the Risc OS icon"