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 51da14062c Update CHANGELOG 10 months ago
demos Add Application.HandlePanic 2 years ago
.gitignore Document TextView region tag fix 2 years ago
CHANGELOG Update CHANGELOG 10 months ago
CONTRIBUTING.md Add code.rocketnine.space migration notice 2 years ago
DESIGN.md Add code.rocketnine.space migration notice 2 years ago
FORK.md Add Application.Draw change to FORK.md 2 years ago
LICENSE Document TextView region tag fix 2 years ago
Makefile chore: Add makefile and use in `gitlab-ci.yml` 3 years ago
README.md Update README 10 months ago
ansi.go Add missing ansi translations 2 years ago
application.go Draw application after updating root primitive via Application.SetRoot 2 years ago
borders.go Fork tview as cview 3 years ago
box.go Document how to prevent screen artifacts when using SetBackgroundTransparent 3 years ago
box_test.go Add comments to tests 3 years ago
button.go Improve Button cursor positioning 2 years ago
button_test.go Add comments to tests 3 years ago
checkbox.go Add Button.SetCursorRune and CheckBox.SetCursorRune 2 years ago
checkbox_test.go Add comments to tests 3 years ago
contextmenu.go Rename SetBorderPadding and GetBorderPadding as SetPadding and GetPadding 3 years ago
cview.svg Update presentation demo recording 3 years ago
doc.go Add TabbedPanels to doc.go 2 years ago
doc_test.go Add Application.HandlePanic 2 years ago
dropdown.go Improved drop down list usability. 10 months ago
flex.go Fill empty space in Flex with invisible Box 2 years ago
focus.go Add FocusManager 3 years ago
form.go Add Button.SetCursorRune and CheckBox.SetCursorRune 2 years ago
frame.go Add SetVisible and GetVisible to all widgets 3 years ago
go.mod Update CHANGELOG 10 months ago
go.sum Update CHANGELOG 10 months ago
grid.go Fix passing mouse events to Grid items 2 years ago
inputfield.go Fix drawing InputField cursor outside of the field 2 years ago
keys.go Add code.rocketnine.space migration notice 2 years ago
list.go Improved drop down list usability. 10 months ago
list_test.go Remove return values from methods which return their primitive (breaks chaining) 3 years ago
modal.go Add Modal.SetButtonsAlign and Modal.SetTextAlign 2 years ago
mouse.go Print text using []byte instead of string, calculate string width using runewidth instead of uniseg 3 years ago
panels.go Preserve order of panels when updating panel 2 years ago
primitive.go Allow hiding form items 3 years ago
progressbar.go Add SetVisible and GetVisible to all widgets 3 years ago
progressbar_test.go Add comments to tests 3 years ago
semigraphics.go Upgrade tcell to v2 3 years ago
slider.go Improve Button cursor positioning 2 years ago
styles.go Improved drop down list usability. 10 months ago
tabbedpanels.go Add TabbedPanels.SetChangedFunc 2 years ago
table.go Update List, Table and TreeView to not handle Tab or Backtab 2 years ago
table_test.go Store ListItem text as []byte instead of string 3 years ago
textview.go Fixed missed tag at EOL in TextView 2 years ago
textview_test.go Remove return values from methods which return their primitive (breaks chaining) 3 years ago
treeview.go Update List, Table and TreeView to not handle Tab or Backtab 2 years ago
treeview_test.go Add comments to tests 3 years ago
util.go runewidth: Create lookup table 2 years ago
util_test.go Remove return values from methods which return their primitive (breaks chaining) 3 years ago
window.go Use SetRect to position Windows 3 years ago
windowmanager.go Fix WindowManager background not being drawn 3 years ago

README.md

cview - Terminal-based user interface toolkit

GoDoc Donate via LiberaPay Donate via Patreon

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
  • Selectable lists with context menus
  • Modal dialogs
  • Horizontal and vertical progress bars
  • Grid, Flexbox and tabbed panel layouts
  • Sophisticated navigable table views
  • Flexible tree views
  • Draggable and resizable windows
  • An application wrapper

Widgets may be customized and extended to suit any application.

Mouse support is available.

Applications

A list of applications powered by cview is available via pkg.go.dev.

Installation

go get code.rocketnine.space/tslocum/cview

Hello World

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

package main

import (
	"code.rocketnine.space/tslocum/cview"
)

func main() {
	app := cview.NewApplication()

	tv := cview.NewTextView()
	tv.SetBorder(true)
	tv.SetTitle("Hello, world!")
	tv.SetText("Lorem ipsum dolor sit amet")
	
	app.SetRoot(tv, true)
	if err := app.Run(); err != nil {
		panic(err)
	}
}

Examples are available via godoc and in the demos directory.

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

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