blob: 220ef5219db1cd30fa8ea8729f3532590f4e8b14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
// This creates a simple hello world window
package main
import (
"go.wit.com/gui"
"go.wit.com/lib/gadgets"
"go.wit.com/log"
)
var apple *gui.Node
// This initializes the first window, a group and a button
func makebasicWindow() *gadgets.BasicWindow {
log.Warn("start basicWindow")
basicWindow = gadgets.NewBasicWindow(myGui, "basic window test")
basicWindow.Make()
basicWindow.StandardClose()
basicWindow.Custom = func() {
log.Warn("got to close")
}
box1 := basicWindow.Box()
group1 := box1.NewGroup("choices")
group1.NewButton("hide apple", func() {
apple.Hide()
})
group1.NewButton("show apple", func() {
apple.Show()
})
group1.NewButton("hide computers", func() {
computers.Hide()
})
group1.NewButton("show computers", func() {
computers.Show()
})
apple = group1.NewButton("apple", func() {
log.Info("is not a pear")
})
return basicWindow
}
|