11 lines
193 B
Go
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)
|
|
}
|