andlabs: grid and checkbox to binary tree

Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2023-04-27 10:04:49 -05:00
parent fbee749187
commit 46094b5a48
3 changed files with 18 additions and 20 deletions

View File

@ -42,10 +42,10 @@ func add(a toolkit.Action) {
p.newButton(n)
return
case toolkit.Grid:
newGrid(&a)
p.newGrid(n)
return
case toolkit.Checkbox:
newCheckbox(&a)
p.newCheckbox(n)
return
case toolkit.Spinner:
newSpinner(&a)

View File

@ -1,20 +1,19 @@
package main
import (
"git.wit.org/wit/gui/toolkit"
"github.com/andlabs/ui"
_ "github.com/andlabs/ui/winmanifest"
)
func (t *andlabsT) newCheckbox(a *toolkit.Action) *andlabsT {
var newt andlabsT
log(debugToolkit, "newCheckbox()", a.Name, a.WidgetType)
newt.WidgetType = a.WidgetType
newt.wId = a.WidgetId
newt.Name = a.Name
newt.Text = a.Text
func (p *node) newCheckbox(n *node) {
newt := new(andlabsT)
log(debugToolkit, "newCheckbox()", n.Name, n.WidgetType)
newt.WidgetType = n.WidgetType
newt.wId = n.WidgetId
newt.Name = n.Name
newt.Text = n.Text
newt.uiCheckbox = ui.NewCheckbox(a.Text)
newt.uiCheckbox = ui.NewCheckbox(n.Text)
newt.uiControl = newt.uiCheckbox
newt.uiCheckbox.OnToggled(func(spin *ui.Checkbox) {
@ -23,13 +22,15 @@ func (t *andlabsT) newCheckbox(a *toolkit.Action) *andlabsT {
newt.doUserEvent()
})
return &newt
n.tk = newt
p.place(n)
}
func (t *andlabsT) checked() bool {
return t.uiCheckbox.Checked()
}
/*
func newCheckbox(a *toolkit.Action) {
log(debugToolkit, "newCheckbox()", a.Name)
@ -39,5 +40,5 @@ func newCheckbox(a *toolkit.Action) {
return
}
newt := t.newCheckbox(a)
place(a, t, newt)
}
*/

View File

@ -3,8 +3,6 @@ package main
import (
"github.com/andlabs/ui"
_ "github.com/andlabs/ui/winmanifest"
"git.wit.org/wit/gui/toolkit"
)
// Grid numbering by (X,Y)
@ -12,19 +10,18 @@ import (
// -- (1,1) -- (2,1) -- (3,1) --
// -- (1,2) -- (2,1) -- (3,1) --
// -----------------------------
func newGrid(a *toolkit.Action) {
func (p *node) newGrid(n *node) {
var newt *andlabsT
log(debugToolkit, "newGrid()", a.WidgetId, "to", a.ParentId)
log(debugToolkit, "newGrid()", n.WidgetId, "to", n.ParentId)
newt = new(andlabsT)
c := ui.NewGrid()
newt.uiGrid = c
newt.uiControl = c
newt.WidgetType = toolkit.Grid
newt.gridX = 0
newt.gridY = 0
t := andlabs[a.ParentId]
place(a, t, newt)
n.tk = newt
p.place(n)
}