My mirror of the Barnard terminal client for Mumble.
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
193 B

  1. package uiterm
  2. type View interface {
  3. uiInitialize(ui *Ui)
  4. uiSetActive(active bool)
  5. uiSetBounds(x0, y0, x1, y1 int)
  6. uiDraw()
  7. uiKeyEvent(mod Modifier, key Key)
  8. uiCharacterEvent(ch rune)
  9. }