gocui/README.md

54 lines
1.2 KiB
Markdown
Raw Normal View History

2013-12-27 21:36:26 +01:00
GOCUI - Go Console User Interface
=================================
2014-01-28 09:36:57 +01:00
Minimalist Go package aimed at creating Console User Interfaces.
2014-01-04 03:48:48 +01:00
2014-01-19 17:42:51 +01:00
Installation
------------
go get github.com/jroimartin/gocui
Documentation
-------------
godoc github.com/jroimartin/gocui
2014-01-28 09:36:57 +01:00
Features
--------
* Minimalist API.
* Views (the "windows" in the GUI) implement the interface io.Writer.
* Support for overlapping views.
* The GUI can be modified at runtime.
* Global and view-level keybindings.
* Edit mode.
2014-01-19 17:42:51 +01:00
Example
-------
func layout(g *gocui.Gui) error {
maxX, maxY := g.Size()
if v, err := g.SetView("center", maxX/2-10, maxY/2, maxX/2+10, maxY/2+2); err != nil {
if err != gocui.ErrorUnkView {
return err
}
fmt.Fprintln(v, "This is an example")
}
return nil
}
func quit(g *gocui.Gui, v *gocui.View) error {
return gocui.ErrorQuit
}
func main() {
var err error
g := gocui.NewGui()
if err := g.Init(); err != nil {
log.Panicln(err)
}
defer g.Close()
g.SetLayout(layout)
if err := g.SetKeybinding("", gocui.KeyCtrlC, 0, quit); err != nil {
log.Panicln(err)
}
err = g.MainLoop()
if err != nil && err != gocui.ErrorQuit {
log.Panicln(err)
}
}