Golang terminal dashboard
Go to file
gizak ca69e25d1b Widgets API adaption 2015-10-08 22:11:26 -04:00
_example Widgets API adaption 2015-10-08 22:11:26 -04:00
debug Finish Event 2015-09-18 11:41:44 -04:00
test Widgets API adaption 2015-10-08 22:11:26 -04:00
.gitignore Smash Border into Block 2015-04-26 00:13:49 -04:00
.travis.yml Update travis config 2015-03-20 13:06:29 -04:00
LICENSE Initial commit 2015-02-03 09:09:27 -05:00
README.md Merge remote-tracking branch 'refs/remotes/origin/master' into refactoring 2015-05-09 19:33:45 -04:00
barchart.go Widgets API adaption 2015-10-08 22:11:26 -04:00
block.go Move widget back to root 2015-10-07 14:25:59 -04:00
block_common.go Smash Border into Block 2015-04-26 00:13:49 -04:00
block_test.go Adjust Block test 2015-05-13 08:57:11 -04:00
block_windows.go Smash Border into Block 2015-04-26 00:13:49 -04:00
buffer.go Minor chanages 2015-05-09 19:29:22 -04:00
canvas.go Widgets API adaption 2015-10-08 22:11:26 -04:00
canvas_test.go Widgets API adaption 2015-10-08 22:11:26 -04:00
doc.go Add docs 2015-03-24 17:16:43 -04:00
events.go Move widget back to root 2015-10-07 14:25:59 -04:00
events_test.go Theme map lookup 2015-09-21 03:11:58 -04:00
gauge.go Move widget back to root 2015-10-07 14:25:59 -04:00
grid.go Move widget back to root 2015-10-07 14:25:59 -04:00
grid_test.go Adjust Grid test 2015-05-12 16:16:08 -04:00
helper.go Widgets API adaption 2015-10-08 22:11:26 -04:00
helper_test.go ColorSubsequence.Color is now an attribute 2015-04-10 16:57:42 +02:00
linechart.go Widgets API adaption 2015-10-08 22:11:26 -04:00
linechart_others.go Widgets API adaption 2015-10-08 22:11:26 -04:00
linechart_windows.go Widgets API adaption 2015-10-08 22:11:26 -04:00
list.go Widgets API adaption 2015-10-08 22:11:26 -04:00
mbarchart.go Widgets API adaption 2015-10-08 22:11:26 -04:00
par.go Widgets API adaption 2015-10-08 22:11:26 -04:00
render.go Move widget back to root 2015-10-07 14:25:59 -04:00
sparkline.go Widgets API adaption 2015-10-08 22:11:26 -04:00
textbuilder.go Minor chanages 2015-05-09 19:29:22 -04:00
textbuilder_test.go Finish TextBuilder 2015-05-03 21:02:38 -04:00
theme.go Theme map lookup 2015-09-21 03:11:58 -04:00
theme_test.go Theme map lookup 2015-09-21 03:11:58 -04:00
widget.go Move widget back to root 2015-10-07 14:25:59 -04:00

README.md

termui Build Status Doc Status

Notice

termui comes with ABSOLUTELY NO WARRANTY, and there is a breaking change coming up (see refactoring branch) which will change the Bufferer interface and many others. These changes reduce calculation overhead and introduce a new drawing buffer with better capacibilities. We will step into the next stage (call it beta) after merging these changes.

Introduction

Go terminal dashboard. Inspired by blessed-contrib, but purely in Go.

Cross-platform, easy to compile, and fully-customizable.

Demo: (cast under osx 10.10; Terminal.app; Menlo Regular 12pt.)

demo

Grid layout:

Expressive syntax, using 12 columns grid system

	import ui "github.com/gizak/termui"
	// init and create widgets...

	// build
	ui.Body.AddRows(
		ui.NewRow(
			ui.NewCol(6, 0, widget0),
			ui.NewCol(6, 0, widget1)),
		ui.NewRow(
			ui.NewCol(3, 0, widget2),
			ui.NewCol(3, 0, widget30, widget31, widget32),
			ui.NewCol(6, 0, widget4)))

	// calculate layout
	ui.Body.Align()

	ui.Render(ui.Body)

demo code:

grid

Installation

go get github.com/gizak/termui

Usage

Each component's layout is a bit like HTML block (box model), which has border and padding.

The Border property can be chosen to hide or display (with its border label), when it comes to display, the label takes 1 padding space (i.e. in css: padding: 1;, innerHeight and innerWidth therefore shrunk by 1).

	import ui "github.com/gizak/termui" // <- ui shortcut, optional

	func main() {
		err := ui.Init()
		if err != nil {
			panic(err)
		}
		defer ui.Close()

		p := ui.NewPar(":PRESS q TO QUIT DEMO")
		p.Height = 3
		p.Width = 50
		p.TextFgColor = ui.ColorWhite
		p.Border.Label = "Text Box"
		p.Border.FgColor = ui.ColorCyan

		g := ui.NewGauge()
		g.Percent = 50
		g.Width = 50
		g.Height = 3
		g.Y = 11
		g.Border.Label = "Gauge"
		g.BarColor = ui.ColorRed
		g.Border.FgColor = ui.ColorWhite
		g.Border.LabelFgColor = ui.ColorCyan

		ui.Render(p, g)

		// event handler...
	}

Note that components can be overlapped (I'd rather call this a feature...), Render(rs ...Renderer) renders its args from left to right (i.e. each component's weight is arising from left to right).

Themes

All colors in all components can be changed at any time, while there provides some predefined color schemes:

// for now there are only two themes: default and helloworld
termui.UseTheme("helloworld")

// create components...

The default theme's settings depend on the user's terminal color scheme, which is saying if your terminal default font color is white and background is white, it will be like:

default

The helloworld color scheme drops in some colors!

helloworld

Widgets

Par

demo code

par

List

demo code

list

Colored List

demo code

TODO: Image (let's wait until the implementation is finished).

Gauge

demo code

gauge

Line Chart

demo code

linechart

Bar Chart

demo code

barchart

Mult-Bar / Stacked-Bar Chart

demo code

barchart

Sparklines

demo code

sparklines

GoDoc

godoc

TODO

  • Grid layout
  • Event system
  • Canvas widget
  • Refine APIs
  • Focusable widgets

License

This library is under the MIT License