termui/_examples/gauge.go

73 lines
1.5 KiB
Go
Raw Normal View History

2017-01-14 06:07:43 +00:00
// Copyright 2017 Zack Guo <zack.y.guo@gmail.com>. All rights reserved.
2015-03-20 20:21:50 +00:00
// Use of this source code is governed by a MIT license that can
// be found in the LICENSE file.
// +build ignore
package main
2019-01-24 04:12:10 +00:00
import (
"fmt"
"log"
ui "github.com/gizak/termui"
"github.com/gizak/termui/widgets"
)
func main() {
2019-01-24 04:12:10 +00:00
if err := ui.Init(); err != nil {
log.Fatalf("failed to initialize termui: %v", err)
}
2018-09-06 21:48:09 +00:00
defer ui.Close()
2019-01-24 04:12:10 +00:00
g0 := widgets.NewGauge()
g0.Title = "Slim Gauge"
g0.SetRect(20, 20, 30, 30)
g0.Percent = 75
2018-09-06 21:48:09 +00:00
g0.BarColor = ui.ColorRed
2019-01-24 04:12:10 +00:00
g0.BorderStyle.Fg = ui.ColorWhite
g0.TitleStyle.Fg = ui.ColorCyan
2019-01-24 04:12:10 +00:00
g2 := widgets.NewGauge()
g2.Title = "Slim Gauge"
g2.SetRect(0, 3, 50, 6)
g2.Percent = 60
2018-09-06 21:48:09 +00:00
g2.BarColor = ui.ColorYellow
2019-01-24 04:12:10 +00:00
g2.LabelStyle = ui.NewStyle(ui.ColorBlue)
g2.BorderStyle.Fg = ui.ColorWhite
2019-01-24 04:12:10 +00:00
g1 := widgets.NewGauge()
g1.Title = "Big Gauge"
g1.SetRect(0, 6, 50, 11)
g1.Percent = 30
2018-09-06 21:48:09 +00:00
g1.BarColor = ui.ColorGreen
2019-01-24 04:12:10 +00:00
g1.LabelStyle = ui.NewStyle(ui.ColorYellow)
g1.TitleStyle.Fg = ui.ColorMagenta
g1.BorderStyle.Fg = ui.ColorWhite
2019-01-24 04:12:10 +00:00
g3 := widgets.NewGauge()
g3.Title = "Gauge with custom label"
g3.SetRect(0, 11, 50, 14)
g3.Percent = 50
2019-01-24 04:12:10 +00:00
g3.Label = fmt.Sprintf("%v%% (100MBs free)", g3.Percent)
2019-01-24 04:12:10 +00:00
g4 := widgets.NewGauge()
g4.Title = "Gauge"
g4.SetRect(0, 14, 50, 17)
g4.Percent = 50
g4.Label = "Gauge with custom highlighted label"
2018-09-06 21:48:09 +00:00
g4.BarColor = ui.ColorGreen
2019-01-24 04:12:10 +00:00
g4.LabelStyle = ui.NewStyle(ui.ColorYellow)
2018-09-06 21:48:09 +00:00
ui.Render(g0, g1, g2, g3, g4)
uiEvents := ui.PollEvents()
2018-11-29 02:19:34 +00:00
for {
e := <-uiEvents
2018-11-29 02:19:34 +00:00
switch e.ID {
case "q", "<C-c>":
return
}
}
}