blob: 7e11f169eac908fed9c1db02ae32adfee8a9ae14 (
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
46
47
48
49
50
51
52
53
54
55
56
57
|
package main
/*
This is reference code for toolkit developers
The 'nocui' is a bare minimum toolkit. It's all you need
to interact with the GUI
*/
import (
"embed"
"go.wit.com/log"
"go.wit.com/toolkits/tree"
"github.com/faiface/pixel/pixelgl"
)
//go:embed *.glsl
var glFile embed.FS
func init() {
log.Log(INFO, "Init()")
me.myTree = tree.New()
me.myTree.PluginName = "nocui"
// me.myTree.ActionFromChannel = doAction
me.myTree.NodeAction = newaction
me.myTree.Add = Add
me.myTree.SetTitle = SetTitle
me.myTree.SetLabel = SetLabel
me.myTree.SetText = SetText
me.myTree.AddText = AddText
me.exit = false
log.Log(INFO, "Init() END")
showOptions()
// This parses the command line arguments
parseConfig()
pixelgl.Run(run)
go simpleStdin()
}
// this must be defined for plugin's, but is never run
// I assume it's for testing the code in a stand alone way
func main() {
// This parses the command line arguments
parseConfig()
pixelgl.Run(run)
}
|