summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-16 16:37:43 -0600
committerJeff Carr <[email protected]>2024-01-16 16:37:43 -0600
commit0d6e4271e801b8db8e10c6b5f6ee79a988f7dc1b (patch)
tree733b3f5eecf83dfc7a522d63ca3407ca3548b513 /main.go
initial commit
Diffstat (limited to 'main.go')
-rw-r--r--main.go27
1 files changed, 27 insertions, 0 deletions
diff --git a/main.go b/main.go
new file mode 100644
index 0000000..e2ac93a
--- /dev/null
+++ b/main.go
@@ -0,0 +1,27 @@
+// This creates a simple hello world window
+package main
+
+import (
+ "go.wit.com/log"
+ "go.wit.com/gui/gui"
+)
+
+var myGui *gui.Node // This is the beginning of the binary tree of widgets
+
+// go will sit here until the window exits
+func main() {
+ myGui = gui.New().Default()
+
+ helloworld()
+ gui.Watchdog()
+}
+
+// This initializes the first window, a group and a button
+func helloworld() {
+ window := myGui.NewWindow("hello world")
+
+ group := window.NewGroup("foo bar")
+ group.NewButton("hello", func() {
+ log.Println("world")
+ })
+}