diff options
| author | Jeff Carr <[email protected]> | 2024-01-17 21:31:49 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-17 21:31:49 -0600 |
| commit | 841e6252c95244f0ee7faf2c01d33f69a8ab483a (patch) | |
| tree | ef400228622b87611168db2227269ba7fd56625d /andlabs/button.go | |
| parent | ba95c13799740b5f55541fc5e8ab9f1d34f7e421 (diff) | |
common tree package for toolkitsv0.12.4
This update provides *lots* of toolkit updates. This will allow
the next step of debugging the gocui toolkit to make it work
again. There are new common routines for handling the plugin
channel communication
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'andlabs/button.go')
| -rw-r--r-- | andlabs/button.go | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/andlabs/button.go b/andlabs/button.go index 0cc4f52..4bbc8f2 100644 --- a/andlabs/button.go +++ b/andlabs/button.go @@ -1,25 +1,28 @@ package main import ( - "go.wit.com/gui/widget" + "go.wit.com/gui/toolkits/tree" "go.wit.com/dev/andlabs/ui" _ "go.wit.com/dev/andlabs/ui/winmanifest" ) -func (p *node) newButton(n *node) { - t := p.tk +// func (p *node) newButton(n *node) { +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(widget.GetString(n.value)) + b := ui.NewButton(n.GetLabel()) newt.uiButton = b newt.uiControl = b - newt.parent = t + newt.parent = ptk b.OnClicked(func(*ui.Button) { - n.doUserEvent() + me.myTree.DoUserEvent(n) }) - n.tk = newt - p.place(n) + n.TK = newt + place(p, n) } |
