This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
tomo-old/examples/goroutines/main.go

43 lines
991 B
Go
Raw Normal View History

package main
import "os"
import "time"
import "git.tebibyte.media/sashakoshka/tomo"
2023-01-16 05:11:06 +00:00
import "git.tebibyte.media/sashakoshka/tomo/layouts"
2023-01-13 00:52:21 +00:00
import "git.tebibyte.media/sashakoshka/tomo/elements/fun"
import "git.tebibyte.media/sashakoshka/tomo/elements/basic"
import _ "git.tebibyte.media/sashakoshka/tomo/backends/x"
func main () {
tomo.Run(run)
os.Exit(0)
}
func run () {
window, _ := tomo.NewWindow(2, 2)
window.SetTitle("clock")
2023-01-12 23:03:08 +00:00
container := basic.NewContainer(layouts.Vertical { true, true })
window.Adopt(container)
2023-01-13 00:52:21 +00:00
clock := fun.NewAnalogClock(time.Now())
container.Adopt(clock, true)
label := basic.NewLabel(formatTime(), false)
2023-01-12 23:03:08 +00:00
container.Adopt(label, false)
2023-01-13 00:52:21 +00:00
window.OnClose(tomo.Stop)
window.Show()
2023-01-13 00:52:21 +00:00
go tick(label, clock)
}
func formatTime () (timeString string) {
return time.Now().Format("2006-01-02 15:04:05")
}
2023-01-13 00:52:21 +00:00
func tick (label *basic.Label, clock *fun.AnalogClock) {
for {
label.SetText(formatTime())
2023-01-13 00:52:21 +00:00
clock.SetTime(time.Now())
time.Sleep(time.Second)
}
}