My mirror of the Barnard terminal client for Mumble.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

11 lines
183 B

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