uiterm: prefix View methods with ui

This commit is contained in:
Tim Cooper
2014-12-06 22:12:33 -04:00
parent e026b662ce
commit 00c1d9b928
6 changed files with 41 additions and 44 deletions

View File

@@ -2,9 +2,9 @@ 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)
uiSetActive(active bool)
uiSetBounds(x0, y0, x1, y1 int)
uiDraw()
uiKeyEvent(mod Modifier, key Key)
uiCharacterEvent(ch rune)
}