My mirror of the Barnard terminal client for Mumble.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

10 行
199 B

  1. package uiterm
  2. type View interface {
  3. setActive(ui *Ui, active bool)
  4. setBounds(ui *Ui, x0, y0, x1, y1 int)
  5. draw(ui *Ui)
  6. keyEvent(ui *Ui, mod Modifier, key Key)
  7. characterEvent(ui *Ui, ch rune)
  8. }