5e3dfeaadd
... And also the Do function works now
45 lines
1019 B
Go
45 lines
1019 B
Go
package main
|
|
|
|
import "os"
|
|
import "time"
|
|
import "git.tebibyte.media/sashakoshka/tomo"
|
|
import "git.tebibyte.media/sashakoshka/tomo/layouts"
|
|
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")
|
|
container := basic.NewContainer(layouts.Vertical { true, true })
|
|
window.Adopt(container)
|
|
|
|
clock := fun.NewAnalogClock(time.Now())
|
|
container.Adopt(clock, true)
|
|
label := basic.NewLabel(formatTime(), false)
|
|
container.Adopt(label, false)
|
|
|
|
window.OnClose(tomo.Stop)
|
|
window.Show()
|
|
go tick(label, clock)
|
|
}
|
|
|
|
func formatTime () (timeString string) {
|
|
return time.Now().Format("2006-01-02 15:04:05")
|
|
}
|
|
|
|
func tick (label *basic.Label, clock *fun.AnalogClock) {
|
|
for {
|
|
tomo.Do (func () {
|
|
label.SetText(formatTime())
|
|
clock.SetTime(time.Now())
|
|
})
|
|
time.Sleep(time.Second)
|
|
}
|
|
}
|