Go to file
Roi Martin adef0057a9 Add more tests to _examples/colors256.go 2016-11-13 20:46:02 +01:00
_examples Add more tests to _examples/colors256.go 2016-11-13 20:46:02 +01:00
.gitignore Initial commit 2013-12-27 21:36:26 +01:00
AUTHORS Update AUTHORS 2016-10-18 00:56:53 +02:00
LICENSE Fix typo in LICENSE 2014-12-25 11:58:41 +01:00
README.md Update doc and README 2016-10-25 11:41:17 +02:00
attribute.go Full mouse support. Add mouse example. Make golint happy. 2016-01-23 16:07:42 +01:00
doc.go Move Editor into View. Update docs 2016-10-27 00:43:28 +02:00
edit.go Revert changes in *View.MoveCursor 2016-10-11 10:18:38 +02:00
escape.go Minor style changes 2016-11-13 20:45:04 +01:00
gui.go Minor style changes 2016-11-13 20:45:04 +01:00
keybinding.go Introduce GUI managers to replace layout functions 2016-10-24 08:36:23 +02:00
view.go 256 OutputMode support 2016-11-13 14:06:04 -05:00

README.md

GOCUI - Go Console User Interface

GoDoc

Minimalist Go package aimed at creating Console User Interfaces.

Features

  • Minimalist API.
  • Views (the "windows" in the GUI) implement the interface io.ReadWriter.
  • Support for overlapping views.
  • The GUI can be modified at runtime (concurrent-safe).
  • Global and view-level keybindings.
  • Mouse support.
  • Colored text.
  • Customizable edition mode.
  • Easy to build reusable widgets, complex layouts...

Installation

Execute:

$ go get github.com/jroimartin/gocui

Documentation

Execute:

$ go doc github.com/jroimartin/gocui

Or visit godoc.org to read it online.

Example

package main

import (
	"fmt"
	"log"

	"github.com/jroimartin/gocui"
)

func main() {
	g, err := gocui.NewGui()
	if err != nil {
		log.Panicln(err)
	}
	defer g.Close()

	g.SetManagerFunc(layout)

	if err := g.SetKeybinding("", gocui.KeyCtrlC, gocui.ModNone, quit); err != nil {
		log.Panicln(err)
	}

	if err := g.MainLoop(); err != nil && err != gocui.ErrQuit {
		log.Panicln(err)
	}
}

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
}

Screenshots

r2cui

_examples/demo.go

_examples/dynamic.go

Projects using gocui

Note: if your project is not listed here, let us know! :)