Resolves #54. |
2 years ago | |
---|---|---|
demos | 2 years ago | |
.gitignore | 3 years ago | |
CHANGELOG | 2 years ago | |
CONTRIBUTING.md | 2 years ago | |
DESIGN.md | 2 years ago | |
FORK.md | 2 years ago | |
LICENSE | 2 years ago | |
Makefile | 3 years ago | |
README.md | 2 years ago | |
ansi.go | 3 years ago | |
application.go | 2 years ago | |
borders.go | 3 years ago | |
box.go | 2 years ago | |
box_test.go | 3 years ago | |
button.go | 3 years ago | |
button_test.go | 3 years ago | |
checkbox.go | 3 years ago | |
checkbox_test.go | 3 years ago | |
contextmenu.go | 3 years ago | |
cview.svg | 3 years ago | |
doc.go | 2 years ago | |
doc_test.go | 2 years ago | |
dropdown.go | 3 years ago | |
flex.go | 3 years ago | |
focus.go | 3 years ago | |
form.go | 2 years ago | |
frame.go | 3 years ago | |
go.mod | 2 years ago | |
go.sum | 2 years ago | |
grid.go | 3 years ago | |
inputfield.go | 3 years ago | |
keys.go | 2 years ago | |
list.go | 2 years ago | |
list_test.go | 3 years ago | |
modal.go | 3 years ago | |
mouse.go | 3 years ago | |
panels.go | 2 years ago | |
primitive.go | 3 years ago | |
progressbar.go | 3 years ago | |
progressbar_test.go | 3 years ago | |
semigraphics.go | 3 years ago | |
slider.go | 3 years ago | |
styles.go | 3 years ago | |
tabbedpanels.go | 2 years ago | |
table.go | 2 years ago | |
table_test.go | 3 years ago | |
textview.go | 2 years ago | |
textview_test.go | 3 years ago | |
treeview.go | 2 years ago | |
treeview_test.go | 3 years ago | |
util.go | 2 years ago | |
util_test.go | 3 years ago | |
window.go | 3 years ago | |
windowmanager.go | 3 years ago |
README.md
cview - 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
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()
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).