gocui/doc.go

41 lines
931 B
Go
Raw Normal View History

// Copyright 2014 The gocui Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
2014-01-20 00:23:11 +08:00
/*
Package gocui allows to create console user interfaces.
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 {
2015-01-31 00:19:11 +08:00
return gocui.Quit
2014-01-20 00:23:11 +08:00
}
func main() {
var err error
g := gocui.NewGui()
if err := g.Init(); err != nil {
log.Panicln(err)
}
defer g.Close()
g.SetLayout(layout)
2015-01-24 21:26:26 +08:00
if err := g.SetKeybinding("", gocui.KeyCtrlC, gocui.ModNone, quit); err != nil {
2014-01-20 00:23:11 +08:00
log.Panicln(err)
}
err = g.MainLoop()
2015-01-31 00:19:11 +08:00
if err != nil && err != gocui.Quit {
2014-01-20 00:23:11 +08:00
log.Panicln(err)
}
}
*/
package gocui