#* ------------------------------------------------------------------ # # Macros that are used for displaying input forms. # *# ------------------------------------------------------------------ #macro (text $text) $text #end #macro (formLabel $label) $label #end #macro (formTextField $name $value) #end #macro (textField $name $value $size) #end #macro (listBox $list) $list #end #macro (formPasswordCell $label $name $value) #formLabel("$label") #end #macro (formReadOnlyCell $label $name $value) #formLabel("$label") $value #end #macro (formCell $label $name $value) #formLabel("$label") #formTextField("$name" "$value") #end #macro (fileUploadField $name) #end #macro (fileUpload "$label" "$name") #formLabel("$label") #fileUploadField("$name") #end #macro (formCheckBox $name $checked) #end #macro (formCheckBox2 $label $name $checked) #formLabel("$label") #end #macro (formListBox $label $list) $label $list #end #* ------------------------------------------------------------------ # # Macros that are used for displaying information in tables. # *# ------------------------------------------------------------------ #macro (headerCell $body) $body #end #macro (entryCell $body) $body   #end