termui/_examples/table.go

73 lines
1.8 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.
// Use of this source code is governed by a MIT license that can
// be found in the LICENSE file.
2018-08-17 03:05:56 +00:00
// +build ignore
2016-11-10 10:46:23 +00:00
package main
2019-01-24 04:12:10 +00:00
import (
"log"
2019-03-07 10:50:20 +00:00
ui "github.com/gizak/termui/v3"
"github.com/gizak/termui/v3/widgets"
2019-01-24 04:12:10 +00:00
)
2016-11-10 10:46:23 +00:00
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
table1 := widgets.NewTable()
table1.Rows = [][]string{
[]string{"header1", "header2", "header3"},
2017-01-16 04:17:50 +00:00
[]string{"你好吗", "Go-lang is so cool", "Im working on Ruby"},
2016-11-25 08:35:00 +00:00
[]string{"2016", "10", "11"},
}
2019-01-24 04:12:10 +00:00
table1.TextStyle = ui.NewStyle(ui.ColorWhite)
table1.SetRect(0, 0, 60, 10)
2018-09-06 21:48:09 +00:00
ui.Render(table1)
2016-11-10 10:46:23 +00:00
2019-01-24 04:12:10 +00:00
table2 := widgets.NewTable()
table2.Rows = [][]string{
2016-11-10 10:46:23 +00:00
[]string{"header1", "header2", "header3"},
2016-11-25 08:35:00 +00:00
[]string{"Foundations", "Go-lang is so cool", "Im working on Ruby"},
2016-11-10 10:46:23 +00:00
[]string{"2016", "11", "11"},
}
2019-01-24 04:12:10 +00:00
table2.TextStyle = ui.NewStyle(ui.ColorWhite)
2019-02-24 01:15:42 +00:00
table2.TextAlignment = ui.AlignCenter
2019-01-24 04:12:10 +00:00
table2.RowSeparator = false
table2.SetRect(0, 10, 20, 20)
2017-01-16 04:17:50 +00:00
2018-09-06 21:48:09 +00:00
ui.Render(table2)
table3 := widgets.NewTable()
table3.Rows = [][]string{
[]string{"header1", "header2", "header3"},
[]string{"AAA", "BBB", "CCC"},
[]string{"DDD", "EEE", "FFF"},
[]string{"GGG", "HHH", "III"},
}
table3.TextStyle = ui.NewStyle(ui.ColorWhite)
table3.RowSeparator = true
table3.BorderStyle = ui.NewStyle(ui.ColorGreen)
table3.SetRect(0, 30, 70, 20)
2019-02-01 18:12:22 +00:00
table3.FillRow = true
table3.RowStyles[0] = ui.NewStyle(ui.ColorWhite, ui.ColorBlack, ui.ModifierBold)
table3.RowStyles[2] = ui.NewStyle(ui.ColorWhite, ui.ColorRed, ui.ModifierBold)
table3.RowStyles[3] = ui.NewStyle(ui.ColorYellow)
ui.Render(table3)
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
}
}
2016-11-10 10:46:23 +00:00
}