andlabs/button.go

30 lines
456 B
Go
Raw Permalink Normal View History

package main
import (
"go.wit.com/toolkits/tree"
"go.wit.com/dev/andlabs/ui"
_ "go.wit.com/dev/andlabs/ui/winmanifest"
)
func newButton(p *tree.Node, n *tree.Node) {
if notNew(n) {
return
}
var ptk *guiWidget
ptk = p.TK.(*guiWidget)
newt := new(guiWidget)
b := ui.NewButton(n.GetLabel())
newt.uiButton = b
newt.uiControl = b
newt.parent = ptk
b.OnClicked(func(*ui.Button) {
me.myTree.SendUserEvent(n)
})
n.TK = newt
place(p, n)
}