44 lines
921 B
Go
44 lines
921 B
Go
package main
|
|
|
|
import (
|
|
"git.wit.org/wit/gui/toolkit"
|
|
|
|
"github.com/andlabs/ui"
|
|
_ "github.com/andlabs/ui/winmanifest"
|
|
)
|
|
|
|
// func newTextbox(a *toolkit.Action) {
|
|
func (t *andlabsT) newTextbox(w *toolkit.Widget) *andlabsT {
|
|
var newt andlabsT
|
|
|
|
c := ui.NewNonWrappingMultilineEntry()
|
|
newt.uiMultilineEntry = c
|
|
newt.uiControl = c
|
|
|
|
newt.tw = w
|
|
newt.WidgetType = toolkit.Textbox
|
|
|
|
c.OnChanged(func(spin *ui.MultilineEntry) {
|
|
t.s = spin.Text()
|
|
// this is still dangerous
|
|
// newt.commonChange(newt.tw)
|
|
log(debugChange, "Not yet safe to trigger on change for ui.MultilineEntry")
|
|
})
|
|
return &newt
|
|
}
|
|
|
|
func newTextbox(a *toolkit.Action) {
|
|
w := a.Widget
|
|
log(debugToolkit, "newCombobox()", a.Name)
|
|
|
|
t := andlabs[a.ParentId]
|
|
if (t == nil) {
|
|
log(debugToolkit, "newCombobox() toolkit struct == nil. name=", a.Name)
|
|
listMap(debugToolkit)
|
|
return
|
|
}
|
|
newt := t.newTextbox(w)
|
|
newt.Name = a.Name
|
|
place(a, t, newt)
|
|
}
|