Archived
2
0

map KeySym at client side

This commit is contained in:
Miroslav Šedivý
2020-06-13 16:21:11 +02:00
parent ca0b5b2d35
commit aa1fedcb24
9 changed files with 199 additions and 950 deletions

View File

@ -15,10 +15,10 @@ type RemoteManager interface {
ScreenConfigurations() map[int]ScreenConfiguration
Move(x, y int)
Scroll(x, y int)
ButtonDown(code int) (*Button, error)
KeyDown(code int) (*Key, error)
ButtonUp(code int) (*Button, error)
KeyUp(code int) (*Key, error)
ButtonDown(code int) error
KeyDown(code int) error
ButtonUp(code int) error
KeyUp(code int) error
ReadClipboard() string
WriteClipboard(data string)
ResetKeys()