2023-03-03 14:41:38 -06:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/andlabs/ui"
|
|
|
|
_ "github.com/andlabs/ui/winmanifest"
|
|
|
|
"git.wit.org/wit/gui/toolkit"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (t *andlabsT) newCombobox(w *toolkit.Widget) *andlabsT {
|
|
|
|
var newt andlabsT
|
|
|
|
log(debugToolkit, "newCombobox() START", w.Name)
|
|
|
|
|
|
|
|
newt.tw = w
|
|
|
|
s := ui.NewEditableCombobox()
|
|
|
|
newt.uiEditableCombobox = s
|
2023-03-23 12:35:12 -05:00
|
|
|
newt.uiControl = s
|
2023-03-03 14:41:38 -06:00
|
|
|
|
|
|
|
// initialize the index
|
|
|
|
newt.c = 0
|
|
|
|
newt.val = make(map[int]string)
|
|
|
|
|
|
|
|
s.OnChanged(func(spin *ui.EditableCombobox) {
|
|
|
|
newt.tw.S = spin.Text()
|
|
|
|
newt.commonChange(newt.tw)
|
|
|
|
})
|
|
|
|
|
|
|
|
return &newt
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *andlabsT) AddComboboxName(title string) {
|
|
|
|
t.uiEditableCombobox.Append(title)
|
|
|
|
if (t.val == nil) {
|
|
|
|
log(debugToolkit, "make map didn't work")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
t.val[t.c] = title
|
|
|
|
|
|
|
|
// If this is the first menu added, set the dropdown to it
|
|
|
|
// if (t.c == 0) {
|
|
|
|
// }
|
|
|
|
t.c = t.c + 1
|
|
|
|
}
|
|
|
|
|
2023-03-23 12:35:12 -05:00
|
|
|
func newCombobox(a *toolkit.Action) {
|
|
|
|
w := a.Widget
|
|
|
|
parentW := a.Where
|
2023-03-03 14:41:38 -06:00
|
|
|
log(debugToolkit, "newCombobox()", w.Name)
|
|
|
|
|
|
|
|
t := mapToolkits[parentW]
|
|
|
|
if (t == nil) {
|
|
|
|
log(debugToolkit, "newCombobox() toolkit struct == nil. name=", parentW.Name, w.Name)
|
|
|
|
listMap(debugToolkit)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
newt := t.newCombobox(w)
|
2023-03-23 12:35:12 -05:00
|
|
|
place(a, t, newt)
|
|
|
|
mapWidgetsToolkits(a, newt)
|
2023-03-03 14:41:38 -06:00
|
|
|
}
|