summaryrefslogtreecommitdiff
path: root/gui.go
blob: 417413355b6b121e6396ac458298c2bac1dd9297 (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
58
59
60
61
62
63
64
65
66
67
68
69
70
package gui

import (
	"github.com/andlabs/ui" // import "time"
	"log"
	"regexp"

	_ "github.com/andlabs/ui/winmanifest"
)

// the _ means we only need this for the init()

const Xaxis = 0 // box that is horizontal
const Yaxis = 1 // box that is vertical

func init() {
	log.Println("gui.init() has been run")

	Data.buttonMap = make(map[*ui.Button]*GuiButton)
	Data.WindowMap = make(map[string]*GuiWindow)
	Data.NodeMap = make(map[string]*Node)

	Data.NodeSlice = make([]*Node, 0)

	Config.counter = 0
	Config.prefix = "wit"
	Config.DebugNode = false
	Config.DebugTabs = false
}

func GuiInit() {
	ui.OnShouldQuit(func() bool {
		ui.Quit()
		return true
	})
}

/*
// string handling examples that might be helpful for normalizeInt()
isAlpha := regexp.MustCompile(`^[A-Za-z]+$`).MatchString

for _, username := range []string{"userone", "user2", "user-three"} {
    if !isAlpha(username) {
        fmt.Printf("%q is not valid\n", username)
    }
}

const alpha = "abcdefghijklmnopqrstuvwxyz"

func alphaOnly(s string) bool {
   for _, char := range s {
      if !strings.Contains(alpha, strings.ToLower(string(char))) {
         return false
      }
   }
   return true
}
*/

func normalizeInt(s string) string {
	// reg, err := regexp.Compile("[^a-zA-Z0-9]+")
	reg, err := regexp.Compile("[^0-9]+")
	if err != nil {
		log.Println("normalizeInt() regexp.Compile() ERROR =", err)
		return s
	}
	clean := reg.ReplaceAllString(s, "")
	log.Println("normalizeInt() s =", clean)
	return clean
}