blob: df6268e7425a3714407cb529969ea31913291150 (
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
41
42
43
|
package gui
import "log"
// import "time"
import toolkit "git.wit.org/wit/gui/toolkit/andlabs"
func NewStandardWindow(title string) *Node {
log.Println("NewStandardWindow() creating", title)
Config.Title = title
Config.Width = 640
Config.Height = 480
Config.Exit = StandardClose
return NewWindow()
}
//
// This creates a window that shows how the toolkit works
// internally using it's raw unchanged code for the toolkit itself
//
// This is a way to test and see if the toolkit is working at all
// right now it shows the andlabs/ui/DemoNumbersPage()
//
func DemoToolkitWindow() {
var w, d *Node
var tk *toolkit.Toolkit
w = NewStandardWindow("Demo of the GUI Toolkit")
d = w.New("demo")
tk = toolkit.DemoNumbersPage(w.uiWindow)
tk.OnChanged = func(t *toolkit.Toolkit) {
log.Println("toolkit.NewSlider() value =", t.Value())
if (d.OnChanged != nil) {
log.Println("toolkit.Demo() running node.OnChanged")
d.OnChanged(d)
}
}
d.Toolkit = tk
log.Println("ToolkitDemoWindow() END")
}
|