Go to file
Roi Martin ed41d1bd2c Fix error handling in *escapeInterpreter.parseOne() 2017-02-12 15:50:38 +01:00
_examples _examples/goroutine.go: simpler shutdown logic 2017-02-06 00:30:29 +01:00
.gitignore Initial commit 2013-12-27 21:36:26 +01:00
AUTHORS Update AUTHORS 2016-11-13 20:46:12 +01:00
LICENSE Fix typo in LICENSE 2014-12-25 11:58:41 +01:00
README.md Add wuzz as project using gocui 2017-02-10 22:59:00 +01:00
attribute.go Full mouse support. Add mouse example. Make golint happy. 2016-01-23 16:07:42 +01:00
doc.go Update docs 2016-11-13 21:42:03 +01:00
edit.go Revert changes in *View.MoveCursor 2016-10-11 10:18:38 +02:00
escape.go Fix error handling in *escapeInterpreter.parseOne() 2017-02-12 15:50:38 +01:00
gui.go Rename *Gui.Ascii to *Gui.ASCII 2017-02-11 02:06:03 +01:00
keybinding.go Add MouseRelease, MouseUp and MouseDown 2016-11-24 16:23:44 -05:00
view.go Set viewLines to nil on *View.Clear() 2016-11-14 21:56:17 +01: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(gocui.OutputNormal)
	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

  • Komanda CLI: IRC Client For Developers.
  • Vuls: Agentless vulnerability scanner for Linux/FreeBSD.
  • SumoLogic sumoshell: Terminal-only version of Sumo.
  • wuzz: Interactive cli tool for HTTP inspection.

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