termui/_test/log_events.go

36 lines
651 B
Go
Raw Normal View History

2018-11-29 17:19:22 +00:00
// Copyright 2017 Zack Guo <zack.y.guo@gmail.com>. All rights reserved.
// Use of this source code is governed by a MIT license that can
// be found in the LICENSE file.
2018-12-28 21:07:47 +00:00
// +build ignore
2018-11-29 17:19:22 +00:00
package main
import (
"fmt"
2019-01-24 13:23:30 +00:00
"log"
2018-11-29 17:19:22 +00:00
ui "github.com/gizak/termui"
)
// logs all events to the termui window
// stdout can also be redirected to a file and read with `tail -f`
func main() {
2019-01-24 04:12:10 +00:00
if err := ui.Init(); err != nil {
2019-01-24 13:23:30 +00:00
log.Fatalf("failed to initialize termui: %v", err)
2018-11-29 17:19:22 +00:00
}
defer ui.Close()
2019-01-24 13:23:30 +00:00
events := ui.PollEvents()
2018-11-29 17:19:22 +00:00
for {
2019-01-24 13:23:30 +00:00
e := <-events
2018-11-29 17:19:22 +00:00
fmt.Printf("%v", e)
switch e.ID {
case "q", "<C-c>":
return
2019-01-24 13:23:30 +00:00
case "<MouseLeft>":
return
2018-11-29 17:19:22 +00:00
}
}
}