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

45 lines
1.0 KiB
Go
Raw Normal View History

package main
import "os"
import "time"
import "git.tebibyte.media/sashakoshka/tomo"
2023-02-02 06:48:16 +00:00
import "git.tebibyte.media/sashakoshka/tomo/layouts/basic"
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-02-02 06:48:16 +00:00
container := basicElements.NewContainer(basicLayouts.Vertical { true, true })
2023-01-12 23:03:08 +00:00
window.Adopt(container)
2023-01-13 00:52:21 +00:00
clock := fun.NewAnalogClock(time.Now())
container.Adopt(clock, true)
2023-02-02 06:48:16 +00:00
label := basicElements.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-02-02 06:48:16 +00:00
func tick (label *basicElements.Label, clock *fun.AnalogClock) {
for {
tomo.Do (func () {
label.SetText(formatTime())
clock.SetTime(time.Now())
})
time.Sleep(time.Second)
}
}