Files
barnard/uiterm/view.go
2014-12-06 22:12:33 -04:00

11 lines
193 B
Go

package uiterm
type View interface {
uiInitialize(ui *Ui)
uiSetActive(active bool)
uiSetBounds(x0, y0, x1, y1 int)
uiDraw()
uiKeyEvent(mod Modifier, key Key)
uiCharacterEvent(ch rune)
}