7be8d021fd
Port termbox-go Event Hide away termbox-go event dependency Add Event channel multiplexer Adjuest examples Next event system commit will work on fully concurrency on a different branch, master will stay on single rountine
128 lines
2.3 KiB
Go
128 lines
2.3 KiB
Go
// Copyright 2015 Zack Guo <gizak@icloud.com>. All rights reserved.
|
|
// Use of this source code is governed by a MIT license that can
|
|
// be found in the LICENSE file.
|
|
|
|
// +build ignore
|
|
|
|
package main
|
|
|
|
import ui "github.com/gizak/termui"
|
|
import "math"
|
|
|
|
import "time"
|
|
|
|
func main() {
|
|
err := ui.Init()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
defer ui.Close()
|
|
|
|
sinps := (func() []float64 {
|
|
n := 400
|
|
ps := make([]float64, n)
|
|
for i := range ps {
|
|
ps[i] = 1 + math.Sin(float64(i)/5)
|
|
}
|
|
return ps
|
|
})()
|
|
sinpsint := (func() []int {
|
|
ps := make([]int, len(sinps))
|
|
for i, v := range sinps {
|
|
ps[i] = int(100*v + 10)
|
|
}
|
|
return ps
|
|
})()
|
|
|
|
ui.UseTheme("helloworld")
|
|
|
|
spark := ui.Sparkline{}
|
|
spark.Height = 8
|
|
spdata := sinpsint
|
|
spark.Data = spdata
|
|
spark.LineColor = ui.ColorCyan
|
|
spark.TitleColor = ui.ColorWhite
|
|
|
|
sp := ui.NewSparklines(spark)
|
|
sp.Height = 11
|
|
sp.Border.Label = "Sparkline"
|
|
|
|
lc := ui.NewLineChart()
|
|
lc.Border.Label = "braille-mode Line Chart"
|
|
lc.Data = sinps
|
|
lc.Height = 11
|
|
lc.AxesColor = ui.ColorWhite
|
|
lc.LineColor = ui.ColorYellow | ui.AttrBold
|
|
|
|
gs := make([]*ui.Gauge, 3)
|
|
for i := range gs {
|
|
gs[i] = ui.NewGauge()
|
|
gs[i].Height = 2
|
|
gs[i].HasBorder = false
|
|
gs[i].Percent = i * 10
|
|
gs[i].PaddingBottom = 1
|
|
gs[i].BarColor = ui.ColorRed
|
|
}
|
|
|
|
ls := ui.NewList()
|
|
ls.HasBorder = false
|
|
ls.Items = []string{
|
|
"[1] Downloading File 1",
|
|
"", // == \newline
|
|
"[2] Downloading File 2",
|
|
"",
|
|
"[3] Uploading File 3",
|
|
}
|
|
ls.Height = 5
|
|
|
|
par := ui.NewPar("<> This row has 3 columns\n<- Widgets can be stacked up like left side\n<- Stacked widgets are treated as a single widget")
|
|
par.Height = 5
|
|
par.Border.Label = "Demonstration"
|
|
|
|
// build layout
|
|
ui.Body.AddRows(
|
|
ui.NewRow(
|
|
ui.NewCol(6, 0, sp),
|
|
ui.NewCol(6, 0, lc)),
|
|
ui.NewRow(
|
|
ui.NewCol(3, 0, ls),
|
|
ui.NewCol(3, 0, gs[0], gs[1], gs[2]),
|
|
ui.NewCol(6, 0, par)))
|
|
|
|
// calculate layout
|
|
ui.Body.Align()
|
|
|
|
draw := func(t int) {
|
|
sp.Lines[0].Data = spdata[t:]
|
|
lc.Data = sinps[2*t:]
|
|
ui.Render(ui.Body)
|
|
}
|
|
|
|
evt := ui.EventCh()
|
|
|
|
i := 0
|
|
for {
|
|
select {
|
|
case e := <-evt:
|
|
if e.Type == ui.EventKey && e.Ch == 'q' {
|
|
return
|
|
}
|
|
if e.Type == ui.EventResize {
|
|
ui.Body.Width = ui.TermWidth()
|
|
ui.Body.Align()
|
|
}
|
|
default:
|
|
for _, g := range gs {
|
|
g.Percent = (g.Percent + 3) % 100
|
|
}
|
|
|
|
draw(i)
|
|
i++
|
|
if i == 102 {
|
|
return
|
|
}
|
|
time.Sleep(time.Second / 2)
|
|
}
|
|
}
|
|
}
|