+TextField
    
    (gui '(+TextField))
    
    (gui '(+TextField) 10)
    
    (gui '(+TextField) 10 4)
    
    (gui '(+TextField) '("Value 1" "Value 2" "Value 3"))
    
    (gui '(+TextField) 10 "Text field")
    (gui '(+TextField) 10 4 "Text area")
    (gui '(+TextField) '("Value 1" "Value 2" "Value 3") "Selection")
    *Throbber
    +Auto buttons.
    
    (gui '(+Click +Auto +Button) 420 'This 1000 '(pop *Throbber)
       '(...) )
    +TimeField
    
    (gui '(+TimeField) 8)
    +Tiny
    +Tiny adds a css class, "tiny", and is often used when
    creating buttons. The effect when using the css provided with the framework
    is to produce a component with a smaller size.
    
    (class +PickButton +Tiny +Tip +Button)
    +TelField
    
    ,"Mobile" (gui '(+E/R +TelField) '(mob : home obj) 40)
    +Tip
    +Tip adds a tooltip text shown when hovering the mouse
    pointer over the element where this prefix class is added. Controls the
    "title"- attribute of the generated HTML.
    
    (gui '(+Tip +TextField) "Tooltip text shown on mouse-over" 30)
    +Trim  
    
    "Name" (gui '(+Trim +TextField) 30)