summaryrefslogtreecommitdiff
path: root/go/main.go
blob: 5dd6105513ad91be4f3fd303de21d4ef4528ac2f (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
71
72
73
74
package main

import (
	"image/color"
	"log"
	"os"

	"gioui.org/app"
	"gioui.org/font/gofont"
	"gioui.org/io/system"
	"gioui.org/layout"
	"gioui.org/op"
	"gioui.org/text"
	"gioui.org/unit"
	"gioui.org/widget/material"
)

type Limox struct {
	ConnState string
	Ui struct {
		Window *app.Window
	}
}

func main() {
	limox := NewLimox()

	go func() {
		err := limox.run()
		if err != nil {
			log.Fatal(err)
		}
		os.Exit(0)
	}()

	app.Main()
}

func NewLimox() Limox {
	limox := Limox{}

	limox.Ui.Window = app.NewWindow(
		app.Title("LimoX"),
		app.Size(unit.Dp(400), unit.Dp(600)),
	)

	limox.ConnState = "disconnected"

	return limox
}

func (l *Limox) run() error {

	th := material.NewTheme(gofont.Collection())
	var ops op.Ops

	for {
		e := <-l.Ui.Window.Events()
		switch e := e.(type) {
		case system.DestroyEvent:
			return e.Err
		case system.FrameEvent:
			gtx := layout.NewContext(&ops, e)

			title := material.H3(th, l.ConnState)
			maroon := color.NRGBA{R: 0, G: 212, B: 0, A: 255}
			title.Color = maroon
			title.Alignment = text.Middle
			title.Layout(gtx)

			e.Frame(gtx.Ops)
		}
	}
}