Terminal-based user interface toolkit
Go to file
Trevor Slocum de6819cc76 Fix applying ScrollBarNever to DropDown or InputField 2020-02-13 15:08:36 -08:00
demos Update CI script 2020-01-28 07:10:28 -08:00
.gitignore Fork tview as cview 2019-12-30 15:18:26 -08:00
.gitlab-ci.yml Update CI script 2020-01-28 07:10:28 -08:00
CHANGELOG Fix scrolling Table with PageDown and PageUp 2020-02-13 09:54:18 -08:00
CONTRIBUTING.md Migrate docs to docs.rocketnine.space 2020-02-06 16:06:47 -08:00
FORK.md Migrate to GitLab 2020-01-22 15:28:19 -08:00
LICENSE Fork tview as cview 2019-12-30 15:18:26 -08:00
README.md Migrate docs to docs.rocketnine.space 2020-02-06 16:06:47 -08:00
ansi.go ANSI parser now also handles SGR 39 and 49. Fixes #347 2020-01-08 16:31:52 -08:00
application.go Fix mouse support when resuming after Application.Suspend 2020-02-02 06:16:27 -08:00
borders.go Fork tview as cview 2019-12-30 15:18:26 -08:00
box.go Always fill Box background 2020-01-28 07:10:41 -08:00
button.go Migrate to GitLab 2020-01-22 15:28:19 -08:00
checkbox.go Migrate to GitLab 2020-01-22 15:28:19 -08:00
cview.gif Fork tview as cview 2019-12-30 15:18:26 -08:00
doc.go Migrate to GitLab 2020-01-22 15:28:19 -08:00
doc_test.go Migrate to GitLab 2020-01-22 15:28:19 -08:00
dropdown.go Fix applying ScrollBarNever to DropDown or InputField 2020-02-13 15:08:36 -08:00
events.go Add documentation for GetChildren methods 2020-01-16 22:34:51 -08:00
flex.go Migrate to GitLab 2020-01-22 15:28:19 -08:00
focusable.go Fork tview as cview 2019-12-30 15:18:26 -08:00
form.go Migrate to GitLab 2020-01-22 15:28:19 -08:00
frame.go Migrate to GitLab 2020-01-22 15:28:19 -08:00
go.mod Add option to always show scroll bar 2020-02-13 09:51:01 -08:00
go.sum Add option to always show scroll bar 2020-02-13 09:51:01 -08:00
grid.go Migrate to GitLab 2020-01-22 15:28:19 -08:00
inputfield.go Fix applying ScrollBarNever to DropDown or InputField 2020-02-13 15:08:36 -08:00
list.go Add option to always show scroll bar 2020-02-13 09:51:01 -08:00
modal.go Migrate to GitLab 2020-01-22 15:28:19 -08:00
pages.go Migrate to GitLab 2020-01-22 15:28:19 -08:00
primitive.go Add documentation for GetChildren methods 2020-01-16 22:34:51 -08:00
progressbar.go Add ProgressBar widget 2020-01-16 16:53:51 -08:00
semigraphics.go Fork tview as cview 2019-12-30 15:18:26 -08:00
styles.go Add scroll bar to List, DropDown, Table and TreeView 2020-02-01 07:27:15 -08:00
table.go Fix scrolling Table with PageDown and PageUp 2020-02-13 09:54:18 -08:00
textview.go Migrate to GitLab 2020-01-22 15:28:19 -08:00
treeview.go Add option to always show scroll bar 2020-02-13 09:51:01 -08:00
util.go Add option to always show scroll bar 2020-02-13 09:51:01 -08:00

README.md

cview

GoDoc CI status Donate

Terminal-based user interface toolkit

This package is a fork of tview. See FORK.md for more information.

Demo

Try the demo: ssh cview.rocketnine.space -p 20000

Recording of presentation demo

Features

Available widgets:

  • Input forms (including input/password fields, drop-down selections, checkboxes, and buttons)
  • Navigable multi-color text views
  • Sophisticated navigable table views
  • Flexible tree views
  • Selectable lists
  • Grid, Flexbox and page layouts
  • Modal message windows
  • Horizontal and vertical progress bars
  • An application wrapper

Widgets may be customized and extended to suit any application.

Mouse support is available.

Installation

go get gitlab.com/tslocum/cview

Hello World

This basic example creates a box titled "Hello, World!" and displays it in your terminal:

package main

import (
	"gitlab.com/tslocum/cview"
)

func main() {
	box := cview.NewBox().SetBorder(true).SetTitle("Hello, world!")
	if err := cview.NewApplication().SetRoot(box, true).Run(); err != nil {
		panic(err)
	}
}

Examples are available via godoc and in the "demos" subdirectory.

For a presentation highlighting the features of this package, compile and run the program in the "demos/presentation" subdirectory.

Documentation

Package documentation is available via godoc.

An introduction tutorial is also available.

Dependencies

This package is based on github.com/gdamore/tcell (and its dependencies) and github.com/rivo/uniseg.

Support

CONTRIBUTING.md describes how to share issues, suggestions and patches (pull requests).