uiterm: make View interface methods private

This commit is contained in:
Tim Cooper
2014-12-06 21:48:11 -04:00
parent 04ea502802
commit dc4b3a3662
6 changed files with 33 additions and 33 deletions
+5 -5
View File
@@ -1,9 +1,9 @@
package uiterm
type View interface {
SetBounds(ui *Ui, x0, y0, x1, y1 int)
Draw(ui *Ui)
SetActive(ui *Ui, active bool)
KeyEvent(ui *Ui, mod Modifier, key Key)
CharacterEvent(ui *Ui, ch rune)
setActive(ui *Ui, active bool)
setBounds(ui *Ui, x0, y0, x1, y1 int)
draw(ui *Ui)
keyEvent(ui *Ui, mod Modifier, key Key)
characterEvent(ui *Ui, ch rune)
}