gocui/README.md

78 lines
1.6 KiB
Markdown
Raw Normal View History

# GOCUI - Go Console User Interface
2013-12-28 04:36:26 +08:00
2014-01-28 16:36:57 +08:00
Minimalist Go package aimed at creating Console User Interfaces.
2014-01-04 10:48:48 +08:00
2015-01-24 21:35:23 +08:00
## Features
2014-01-20 00:42:51 +08:00
2014-01-28 16:36:57 +08:00
* Minimalist API.
* Views (the "windows" in the GUI) implement the interface io.ReadWriter.
2014-01-28 16:36:57 +08:00
* Support for overlapping views.
* The GUI can be modified at runtime (concurrent-safe).
2014-01-28 16:36:57 +08:00
* Global and view-level keybindings.
* Mouse support.
* Customizable edition mode.
## Installation
`go get github.com/jroimartin/gocui`
2016-01-30 09:55:46 +08:00
## Documentation [![GoDoc](https://godoc.org/github.com/jroimartin/gocui?status.svg)](https://godoc.org/github.com/jroimartin/gocui)
2016-01-30 09:55:46 +08:00
`godoc github.com/jroimartin/gocui`
2014-01-28 16:36:57 +08:00
2015-01-24 21:35:23 +08:00
## Example
```go
package main
import (
"fmt"
"log"
"github.com/jroimartin/gocui"
)
2015-01-24 21:35:23 +08:00
func main() {
g := gocui.NewGui()
if err := g.Init(); err != nil {
log.Panicln(err)
2014-01-20 00:42:51 +08:00
}
2015-01-24 21:35:23 +08:00
defer g.Close()
2015-01-24 21:35:23 +08:00
g.SetLayout(layout)
2015-01-24 21:35:23 +08:00
if err := g.SetKeybinding("", gocui.KeyCtrlC, gocui.ModNone, quit); err != nil {
log.Panicln(err)
}
if err := g.MainLoop(); err != nil && err != gocui.ErrQuit {
2015-01-24 21:35:23 +08:00
log.Panicln(err)
2014-01-20 00:42:51 +08:00
}
2015-01-24 21:35:23 +08:00
}
func layout(g *gocui.Gui) error {
maxX, maxY := g.Size()
if v, err := g.SetView("hello", maxX/2-7, maxY/2, maxX/2+7, maxY/2+2); err != nil {
if err != gocui.ErrUnknownView {
return err
}
fmt.Fprintln(v, "Hello world!")
}
return nil
}
func quit(g *gocui.Gui, v *gocui.View) error {
return gocui.ErrQuit
}
```
2015-02-02 00:23:04 +08:00
## Screenshots
2015-02-02 00:24:10 +08:00
_examples/demo.go:
2015-02-02 00:23:04 +08:00
![_examples/demo.go](https://cloud.githubusercontent.com/assets/1223476/5992750/720b84f0-aa36-11e4-88ec-296fa3247b52.png)
2015-02-02 00:24:10 +08:00
_examples/delete.go:
2015-02-02 00:23:04 +08:00
![_examples/delete.go](https://cloud.githubusercontent.com/assets/1223476/5992751/76ad5cc2-aa36-11e4-8204-6a90269db827.png)