Merge branch 'master' of https://github.com/NHOrus/termui into NHOrus-master
This commit is contained in:
commit
d6e54064ce
@ -92,34 +92,39 @@ func main() {
|
|||||||
// calculate layout
|
// calculate layout
|
||||||
ui.Body.Align()
|
ui.Body.Align()
|
||||||
|
|
||||||
draw := func(t int) {
|
done := make(chan bool)
|
||||||
sp.Lines[0].Data = spdata[t:]
|
|
||||||
lc.Data = sinps[2*t:]
|
draw := func() {
|
||||||
ui.Render(ui.Body)
|
for i := 0; i < 103; i++ {
|
||||||
|
for _, g := range gs {
|
||||||
|
g.Percent = (g.Percent + 3) % 100
|
||||||
|
}
|
||||||
|
|
||||||
|
sp.Lines[0].Data = spdata[i:]
|
||||||
|
lc.Data = sinps[2*i:]
|
||||||
|
|
||||||
|
time.Sleep(time.Second / 2)
|
||||||
|
}
|
||||||
|
done <- true
|
||||||
}
|
}
|
||||||
|
|
||||||
evt := ui.EventCh()
|
evt := ui.EventCh()
|
||||||
|
|
||||||
i := 0
|
go draw()
|
||||||
for {
|
for {
|
||||||
select {
|
select {
|
||||||
case e := <-evt:
|
case e := <-evt:
|
||||||
if e.Type == ui.EventKey && e.Ch == 'q' {
|
if e.Type == ui.EventKey && e.Ch == 'q' {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
default:
|
if e.Type == ui.EventResize {
|
||||||
for _, g := range gs {
|
|
||||||
g.Percent = (g.Percent + 3) % 100
|
|
||||||
}
|
|
||||||
ui.Body.Width = ui.TermWidth()
|
ui.Body.Width = ui.TermWidth()
|
||||||
ui.Body.Align()
|
ui.Body.Align()
|
||||||
|
|
||||||
draw(i)
|
|
||||||
i++
|
|
||||||
if i == 102 {
|
|
||||||
return
|
|
||||||
}
|
}
|
||||||
time.Sleep(time.Second / 2)
|
case <-done:
|
||||||
|
return
|
||||||
|
default:
|
||||||
|
ui.Render(ui.Body)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user