My mirror of the Barnard terminal client for Mumble.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
199 B

  1. package uiterm
  2. type View interface {
  3. SetBounds(ui *Ui, x0, y0, x1, y1 int)
  4. Draw(ui *Ui)
  5. SetActive(ui *Ui, active bool)
  6. KeyEvent(ui *Ui, mod Modifier, key Key)
  7. CharacterEvent(ui *Ui, ch rune)
  8. }