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/progress/main.go

46 lines
1.1 KiB
Go
Raw Normal View History

package main
import "time"
import "git.tebibyte.media/sashakoshka/tomo"
2023-01-18 01:30:58 +00:00
import "git.tebibyte.media/sashakoshka/tomo/popups"
2023-03-31 03:19:04 +00:00
import "git.tebibyte.media/sashakoshka/tomo/elements"
import _ "git.tebibyte.media/sashakoshka/tomo/backends/all"
func main () {
tomo.Run(run)
}
func run () {
window, _ := tomo.NewWindow(tomo.Bounds(0, 0, 0, 0))
window.SetTitle("Approaching")
2023-04-18 20:18:30 +00:00
container := elements.NewVBox(elements.SpaceBoth)
window.Adopt(container)
2023-04-18 20:18:30 +00:00
container.AdoptExpand(elements.NewLabel("Rapidly approaching your location..."))
2023-03-31 03:19:04 +00:00
bar := elements.NewProgressBar(0)
2023-04-18 20:18:30 +00:00
container.Adopt(bar)
2023-03-31 03:19:04 +00:00
button := elements.NewButton("Stop")
button.SetEnabled(false)
2023-04-18 20:18:30 +00:00
container.Adopt(button)
window.OnClose(tomo.Stop)
window.Show()
2023-03-31 03:19:04 +00:00
go fill(window, bar)
}
2023-03-31 03:19:04 +00:00
func fill (window tomo.Window, bar *elements.ProgressBar) {
for progress := 0.0; progress < 1.0; progress += 0.01 {
time.Sleep(time.Second / 24)
2023-01-18 01:30:58 +00:00
tomo.Do (func () {
bar.SetProgress(progress)
})
}
2023-01-18 01:30:58 +00:00
tomo.Do (func () {
popups.NewDialog (
popups.DialogKindInfo,
2023-03-31 03:19:04 +00:00
window,
2023-01-18 01:30:58 +00:00
"I am here",
"Don't look outside your window.")
})
}