diff options
| author | Jeff Carr <[email protected]> | 2023-04-27 10:04:49 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2023-04-27 10:04:49 -0500 |
| commit | d5d11d9ca9c69e01715d191eb63ead18d8d7ff05 (patch) | |
| tree | a8e9ef723dcd085a3ef8cc7bf529e2e217e6730e /toolkit/andlabs/checkbox.go | |
| parent | 6e52d306bf6fe15d00108b305b497a9722f491ca (diff) | |
andlabs: grid and checkbox to binary tree
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'toolkit/andlabs/checkbox.go')
| -rw-r--r-- | toolkit/andlabs/checkbox.go | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/toolkit/andlabs/checkbox.go b/toolkit/andlabs/checkbox.go index d60b515..49096a1 100644 --- a/toolkit/andlabs/checkbox.go +++ b/toolkit/andlabs/checkbox.go @@ -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) } +*/ |
