summaryrefslogtreecommitdiff
path: root/window.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2022-10-16 08:07:13 -0500
committerJeff Carr <[email protected]>2022-10-16 08:07:13 -0500
commit2141e04328dcf4e4d6857fcc0a7cb551fc84fa07 (patch)
treef8b2a5d8cf17f9ccfcfa8c1699fe4a52ea8338e2 /window.go
parent3c899365154e48aefbc0b5ee48cd089f49339cb2 (diff)
Add slander and spinbox in toolkit/andlabs
fix the helloworld demo move slider into toolkit/ move more into the toolkit directory add spinbox() fix example minor update fix examples Fix andlabs.ui.Slider() to work again correctly implement custom OnChange() callback Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'window.go')
-rw-r--r--window.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/window.go b/window.go
index da7cff6..75097ee 100644
--- a/window.go
+++ b/window.go
@@ -58,6 +58,12 @@ func DeleteWindow(name string) {
}
}
+/*
+generic function to create a newnode structure on the tree of nodes
+
+If the parent is null, it tries to find out where it should go otherwise
+it creates a new window or new tab depending on the toolkit or OS
+*/
func makeNode(parent *Node, title string, x int, y int) *Node {
var node Node
node.Name = title