From 841e6252c95244f0ee7faf2c01d33f69a8ab483a Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Wed, 17 Jan 2024 21:31:49 -0600 Subject: common tree package for toolkits 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 --- andlabs/spinner.go | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'andlabs/spinner.go') diff --git a/andlabs/spinner.go b/andlabs/spinner.go index 01d3b26..65bd7db 100644 --- a/andlabs/spinner.go +++ b/andlabs/spinner.go @@ -1,22 +1,25 @@ package main import ( + "go.wit.com/gui/toolkits/tree" + "go.wit.com/dev/andlabs/ui" _ "go.wit.com/dev/andlabs/ui/winmanifest" ) -func (p *node) newSpinner(n *node) { +func newSpinner(p, n *tree.Node) { + if notNew(n) { return } newt := new(guiWidget) - s := ui.NewSpinbox(n.X, n.Y) + s := ui.NewSpinbox(n.State.Range.Low,n.State.Range.High) newt.uiSpinbox = s newt.uiControl = s s.OnChanged(func(s *ui.Spinbox) { - n.value = newt.uiSpinbox.Value() - n.doUserEvent() + n.SetValue(newt.uiSpinbox.Value()) + me.myTree.DoUserEvent(n) }) - n.tk = newt - p.place(n) + n.TK = newt + place(p, n) } -- cgit v1.2.3