Terminal-based user interface toolkit
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Go to file
Trevor Slocum b4090e9215 Fix scrolling Table with PageDown and PageUp 3 years ago
demos Update CI script 3 years ago
.gitignore Fork tview as cview 3 years ago
.gitlab-ci.yml Update CI script 3 years ago
CHANGELOG Fix scrolling Table with PageDown and PageUp 3 years ago
CONTRIBUTING.md Migrate docs to docs.rocketnine.space 3 years ago
FORK.md Migrate to GitLab 3 years ago
LICENSE Fork tview as cview 3 years ago
README.md Migrate docs to docs.rocketnine.space 3 years ago
ansi.go ANSI parser now also handles SGR 39 and 49. Fixes #347 3 years ago
application.go Fix mouse support when resuming after Application.Suspend 3 years ago
borders.go Fork tview as cview 3 years ago
box.go Always fill Box background 3 years ago
button.go Migrate to GitLab 3 years ago
checkbox.go Migrate to GitLab 3 years ago
cview.gif Fork tview as cview 3 years ago
doc.go Migrate to GitLab 3 years ago
doc_test.go Migrate to GitLab 3 years ago
dropdown.go Add scroll bar to List, DropDown, Table and TreeView 3 years ago
events.go Add documentation for GetChildren methods 3 years ago
flex.go Migrate to GitLab 3 years ago
focusable.go Fork tview as cview 3 years ago
form.go Migrate to GitLab 3 years ago
frame.go Migrate to GitLab 3 years ago
go.mod Add option to always show scroll bar 3 years ago
go.sum Add option to always show scroll bar 3 years ago
grid.go Migrate to GitLab 3 years ago
inputfield.go Add scroll bar to List, DropDown, Table and TreeView 3 years ago
list.go Add option to always show scroll bar 3 years ago
modal.go Migrate to GitLab 3 years ago
pages.go Migrate to GitLab 3 years ago
primitive.go Add documentation for GetChildren methods 3 years ago
progressbar.go Add ProgressBar widget 3 years ago
semigraphics.go Fork tview as cview 3 years ago
styles.go Add scroll bar to List, DropDown, Table and TreeView 3 years ago
table.go Fix scrolling Table with PageDown and PageUp 3 years ago
textview.go Migrate to GitLab 3 years ago
treeview.go Add option to always show scroll bar 3 years ago
util.go Add option to always show scroll bar 3 years ago

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).