My mirror of the Barnard terminal client for Mumble.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

il y a 9 ans
il y a 9 ans
12345678910
  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. }