gohook/test/main.go
htmk a466e0bad6 WIP adding better support for conversion between Scancodes and Keychars
added table, will add rest of support soon(tm)
2019-02-10 16:24:05 -02:00

38 lines
787 B
Go

package main
import (
"fmt"
"time"
"github.com/cauefcr/gohook"
)
func main() {
s := hook.Start()
defer hook.End()
tout := time.After(time.Hour*2)
done := false
for !done {
select {
case i := <-s:
if i.Kind >= hook.KeyDown && i.Kind <= hook.KeyUp {
if i.Keychar == 'q' {
tout = time.After(0)
}
fmt.Printf("%v key: %c:%v\n",i.Kind, i.Keychar,i.Rawcode)
} else if i.Kind >= hook.MouseDown && i.Kind < hook.MouseWheel {
//fmt.Printf("x: %v, y: %v, button: %v\n", i.X, i.Y, i.Button)
}else if i.Kind == hook.MouseWheel {
//fmt.Printf("x: %v, y: %v, button: %v, wheel: %v, rotation: %v\n", i.X, i.Y, i.Button,i.Amount,i.Rotation)
} else {
fmt.Printf("%+v\n",i)
}
case <-tout:
fmt.Print("Done.")
done = true
break
}
}
}