]> git.0d.be Git - barnard.git/blob - uiterm/view.go
c63387f247a11f778ea43e6173cd8a48c4fe593d
[barnard.git] / uiterm / view.go
1 package uiterm
2
3 type View interface {
4         uiInitialize(ui *Ui)
5         uiSetActive(active bool)
6         uiSetBounds(x0, y0, x1, y1 int)
7         uiDraw()
8         uiKeyEvent(mod Modifier, key Key)
9         uiCharacterEvent(ch rune)
10 }