// A Combobox is a drop-down list of items, of which only one can be selected at any given time. You may optionally make the combobox editable to allow custom items.
typeComboboxstruct{
// TODO Select event
locksync.Mutex
createdbool
sysData*sysData
initItems[]string
}
// NewCombobox makes a new combobox with the given items. If editable is true, the combobox is editable.