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 597052a7e7 Add FocusManager 3 years ago
demos Add FocusManager 3 years ago
.gitignore Update .gitignore 3 years ago
.gitlab-ci.yml chore: Add makefile and use in `gitlab-ci.yml` 3 years ago
CHANGELOG Add FocusManager 3 years ago
CONTRIBUTING.md Migrate docs to docs.rocketnine.space 3 years ago
DESIGN.md Do not set focus-related style attributes by default 3 years ago
FORK.md Document renaming Panels for consistency with TabbedPanels 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 FocusManager 3 years ago
ansi.go Bugfixes in ANSI escape sequence handling as well as TextView, fixes #320, fixes #344 3 years ago
application.go Add Application.GetScreen and Application.GetScreenSize 3 years ago
borders.go Fork tview as cview 3 years ago
box.go Remove Application.ForceDraw 3 years ago
box_test.go Add comments to tests 3 years ago
button.go Remove return values from methods which return their primitive (breaks chaining) 3 years ago
button_test.go Add comments to tests 3 years ago
checkbox.go Replace FormItem.SetAttributes with individual methods 3 years ago
checkbox_test.go Add comments to tests 3 years ago
contextmenu.go Add FocusManager 3 years ago
cview.gif Fork tview as cview 3 years ago
doc.go Rename Pages as Panels 3 years ago
doc_test.go Remove return values from methods which return their primitive (breaks chaining) 3 years ago
dropdown.go Replace FormItem.SetAttributes with individual methods 3 years ago
flex.go Remove return values from methods which return their primitive (breaks chaining) 3 years ago
focus.go Add FocusManager 3 years ago
form.go Add Slider 3 years ago
frame.go Remove return values from methods which return their primitive (breaks chaining) 3 years ago
go.mod Clarify that Table rows must each have the same number of columns 3 years ago
go.sum Clarify that Table rows must each have the same number of columns 3 years ago
grid.go Remove return values from methods which return their primitive (breaks chaining) 3 years ago
inputfield.go Add FocusManager 3 years ago
keys.go Upgrade tcell to v2 3 years ago
list.go Add FocusManager 3 years ago
list_test.go Remove return values from methods which return their primitive (breaks chaining) 3 years ago
modal.go Revert WordWrap signature change 3 years ago
mouse.go Print text using []byte instead of string, calculate string width using runewidth instead of uniseg 3 years ago
panels.go Add TabbedPanels 3 years ago
primitive.go Upgrade tcell to v2 3 years ago
progressbar.go Add Slider 3 years ago
progressbar_test.go Add comments to tests 3 years ago
semigraphics.go Upgrade tcell to v2 3 years ago
slider.go Fix WordWrap bounds out of range 3 years ago
styles.go Add Window and WindowManager 3 years ago
tabbedpanels.go Add TabbedPanels 3 years ago
table.go Clarify that Table rows must each have the same number of columns 3 years ago
table_test.go Store ListItem text as []byte instead of string 3 years ago
textview.go Add Slider 3 years ago
textview_test.go Remove return values from methods which return their primitive (breaks chaining) 3 years ago
treeview.go Make printWithStyle public and rename as PrintStyle 3 years ago
treeview_test.go Add comments to tests 3 years ago
util.go Make printWithStyle public and rename as PrintStyle 3 years ago
util_test.go Remove return values from methods which return their primitive (breaks chaining) 3 years ago
window.go Remove return values from methods which return their primitive (breaks chaining) 3 years ago
windowmanager.go Add Window and WindowManager 3 years ago

README.md

cview - Terminal-based user interface toolkit

GoDoc CI status Donate

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

Warning: Breaking changes may be added to cview without bumping its major version. The largest changes have been made. Smaller breaking changes may continue to be made where backwards compatibility is not possible. Changes are listed in FORK.md.

Demo

ssh cview.rocketnine.space -p 20000

Recording of presentation demo

Additional examples are listed on pkg.go.dev.

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.

Installation

go get gitlab.com/tslocum/cview

Hello World

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

package main

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

func main() {
	app := cview.NewApplication()
	
	box := cview.NewTextView()
	box.SetBorder(true)
	box.SetTitle("Hello, world!")
	box.SetText("Lorem ipsum dolor sit amet")
	
	app.SetRoot(box, true)
	if err := app.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).