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

11 lines
183 B
Go

package uiterm
type View interface {
uiInitialize(ui *Ui)
setActive(active bool)
setBounds(x0, y0, x1, y1 int)
draw()
keyEvent(mod Modifier, key Key)
characterEvent(ch rune)
}