summaryrefslogtreecommitdiff
path: root/example_window_demo_toolkit.go
blob: 0872448b9e9acb413e0a9349e583ecc3e32b0521 (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
44
45
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 *Node

	w = NewStandardWindow("Demo of the GUI Toolkit")

//	d = w.New("demo")

	w.toolkit.DemoNumbersPage()
	/*
	tk = w.Toolkit.DemoNumbersPage()
	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")
}