termui/_example/gauge.go

72 lines
1.4 KiB
Go
Raw Normal View History

2015-03-20 20:21:50 +00:00
// 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 "github.com/gizak/termui"
func main() {
err := termui.Init()
if err != nil {
panic(err)
}
defer termui.Close()
2015-10-07 18:25:59 +00:00
//termui.UseTheme("helloworld")
2015-10-07 18:25:59 +00:00
g0 := termui.NewGauge()
g0.Percent = 40
g0.Width = 50
g0.Height = 3
2015-10-07 18:25:59 +00:00
g0.BorderLabel = "Slim Gauge"
g0.BarColor = termui.ColorRed
2015-10-07 18:25:59 +00:00
g0.BorderFg = termui.ColorWhite
g0.BorderLabelFg = termui.ColorCyan
gg := termui.NewBlock()
gg.Width = 50
gg.Height = 5
gg.Y = 12
2015-10-07 18:25:59 +00:00
gg.BorderLabel = "TEST"
gg.Align()
2015-10-07 18:25:59 +00:00
g2 := termui.NewGauge()
g2.Percent = 60
g2.Width = 50
g2.Height = 3
g2.PercentColor = termui.ColorBlue
g2.Y = 3
2015-10-07 18:25:59 +00:00
g2.BorderLabel = "Slim Gauge"
g2.BarColor = termui.ColorYellow
2015-10-07 18:25:59 +00:00
g2.BorderFg = termui.ColorWhite
2015-10-07 18:25:59 +00:00
g1 := termui.NewGauge()
g1.Percent = 30
g1.Width = 50
g1.Height = 5
g1.Y = 6
2015-10-07 18:25:59 +00:00
g1.BorderLabel = "Big Gauge"
g1.PercentColor = termui.ColorYellow
g1.BarColor = termui.ColorGreen
2015-10-07 18:25:59 +00:00
g1.BorderFg = termui.ColorWhite
g1.BorderLabelFg = termui.ColorMagenta
g3 := termui.NewGauge()
g3.Percent = 50
g3.Width = 50
g3.Height = 3
g3.Y = 11
2015-10-07 18:25:59 +00:00
g3.BorderLabel = "Gauge with custom label"
g3.Label = "{{percent}}% (100MBs free)"
g3.LabelAlign = termui.AlignRight
termui.Render(g0, g1, g2, g3)
2015-10-07 18:25:59 +00:00
termui.Handle("/sys/kbd/q", func(termui.Event) {
termui.StopLoop()
})
termui.Loop()
}