termui/_examples/tabs.go
Caleb Bassi 4782da6ed6 Refactor tabpane
- Move from termui/extra/tabpane.go to termui/tabpane.go
- Renamed from Tabpane to TabPane
2018-11-29 09:41:29 -08:00

79 lines
1.7 KiB
Go

// Copyright 2017 Zack Guo <zack.y.guo@gmail.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"
)
func main() {
err := ui.Init()
if err != nil {
panic(err)
}
defer ui.Close()
header := ui.NewParagraph("Press q to quit, Press h or l to switch tabs")
header.Height = 1
header.Width = 50
header.Border = false
header.TextBgColor = ui.ColorBlue
tab1 := ui.NewTab("pierwszy")
p2 := ui.NewParagraph("Press q to quit\nPress h or l to switch tabs\n")
p2.Height = 5
p2.Width = 37
p2.Y = 0
p2.BorderLabel = "Keys"
p2.BorderFg = ui.ColorYellow
tab1.AddBlocks(p2)
tab2 := ui.NewTab("drugi")
bc := ui.NewBarChart()
data := []int{3, 2, 5, 3, 9, 5, 3, 2, 5, 8, 3, 2, 4, 5, 3, 2, 5, 7, 5, 3, 2, 6, 7, 4, 6, 3, 6, 7, 8, 3, 6, 4, 5, 3, 2, 4, 6, 4, 8, 5, 9, 4, 3, 6, 5, 3, 6}
bclabels := []string{"S0", "S1", "S2", "S3", "S4", "S5"}
bc.BorderLabel = "Bar Chart"
bc.Data = data
bc.Width = 26
bc.Height = 10
bc.DataLabels = bclabels
bc.TextColor = ui.ColorGreen
bc.BarColor = ui.ColorRed
bc.NumColor = ui.ColorYellow
tab2.AddBlocks(bc)
tab3 := ui.NewTab("trzeci")
tab4 := ui.NewTab("żółw")
tab5 := ui.NewTab("four")
tab6 := ui.NewTab("five")
tabpane := ui.NewTabPane()
tabpane.Y = 1
tabpane.Width = 30
tabpane.Border = true
tabpane.SetTabs(*tab1, *tab2, *tab3, *tab4, *tab5, *tab6)
ui.Render(header, tabpane)
for {
e := <-ui.PollEvent()
switch e.ID {
case "q", "<C-c>":
return
case "h":
tabpane.SetActiveLeft()
ui.Clear()
ui.Render(header, tabpane)
case "l":
tabpane.SetActiveRight()
ui.Clear()
ui.Render(header, tabpane)
}
}
}