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
Andreas Bieber 474a8c1a27 chore: Add makefile and use in `gitlab-ci.yml`
Gives an easy possibility to execute the same commands as in the pipeline.
3 years ago
demos feat(inputfield): Add ability to show a note below the inputfield 3 years ago
.gitignore Fork tview as cview 3 years ago
.gitlab-ci.yml chore: Add makefile and use in `gitlab-ci.yml` 3 years ago
CHANGELOG Release v1.4.9 3 years ago
CONTRIBUTING.md Migrate docs to docs.rocketnine.space 3 years ago
DESIGN.md Use sync.RWMutex in all widgets 3 years ago
FORK.md Add TextView.SetReindexBuffer 3 years ago
LICENSE Document TextView.GetText and GetRegionText fix 3 years ago
Makefile chore: Add makefile and use in `gitlab-ci.yml` 3 years ago
README.md Add ContextMenu 3 years ago
ansi.go Bugfixes in ANSI escape sequence handling as well as TextView, fixes #320, fixes #344 3 years ago
application.go Use updated tcell mouse buttons 3 years ago
borders.go Fork tview as cview 3 years ago
box.go feat(box): Add `SetBorderColorFocused` 3 years ago
box_test.go Add comments to tests 3 years ago
button.go feat(FormItems): Allow specifying colors for focused state 3 years ago
button_test.go Add comments to tests 3 years ago
checkbox.go feat(FormItem): Replace `SetFormAttributes` with `SetAttributes` 3 years ago
checkbox_test.go Add comments to tests 3 years ago
contextmenu.go feat(List): Expose `ListItem` 3 years ago
cview.gif Fork tview as cview 3 years ago
doc.go Update strikethrough implementation 3 years ago
doc_test.go Upgrade tcell to v2 3 years ago
dropdown.go feat(FormItem): Replace `SetFormAttributes` with `SetAttributes` 3 years ago
flex.go feat(flex): Add `AddItemAtIndex` 3 years ago
focusable.go Fork tview as cview 3 years ago
form.go feat(FormItem): Replace `SetFormAttributes` with `SetAttributes` 3 years ago
frame.go Upgrade tcell to v2 3 years ago
go.mod Base List PageUp and PageDown on the number of items displayed 3 years ago
go.sum Base List PageUp and PageDown on the number of items displayed 3 years ago
grid.go Upgrade tcell to v2 3 years ago
inputfield.go feat(FormItem): Replace `SetFormAttributes` with `SetAttributes` 3 years ago
keys.go Upgrade tcell to v2 3 years ago
list.go feat(List): Add additional field for setting an optional reference (like in TreeView) 3 years ago
list_test.go feat(List): Expose `ListItem` 3 years ago
modal.go Upgrade tcell to v2 3 years ago
pages.go Upgrade tcell to v2 3 years ago
primitive.go Upgrade tcell to v2 3 years ago
progressbar.go Upgrade tcell to v2 3 years ago
progressbar_test.go Add comments to tests 3 years ago
semigraphics.go Upgrade tcell to v2 3 years ago
styles.go feat(dropdown): Draw rune at the end of the field to indicate that this field is a dropdown 3 years ago
table.go Add Table.Sort, Table.SetSortFunc and Table.SetSortClicked 3 years ago
textview.go Add TextView.SetReindexBuffer 3 years ago
textview_test.go Reduce logging severity in TextView tests 3 years ago
treeview.go fix(treeview): Use `scrollBarColor` 3 years ago
treeview_test.go Add comments to tests 3 years ago
util.go Update strikethrough implementation 3 years ago
util_test.go Upgrade tcell to v2 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

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 with context menus
  • 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).