neko/internal/types/desktop.go

38 lines
878 B
Go
Raw Normal View History

package types
2020-11-02 04:09:48 +13:00
type ScreenSize struct {
Width int `json:"width"`
Height int `json:"height"`
Rate int16 `json:"rate"`
}
type ScreenConfiguration struct {
Width int `json:"width"`
Height int `json:"height"`
Rates map[int]int16 `json:"rates"`
}
type DesktopManager interface {
Start()
Shutdown() error
2020-11-04 12:27:47 +13:00
OnScreenSizeChange(listener func(width int, height int, rate int))
2020-11-02 04:09:48 +13:00
// xorg
ChangeScreenSize(width int, height int, rate int) error
Move(x, y int)
Scroll(x, y int)
ButtonDown(code int) error
KeyDown(code uint64) error
ButtonUp(code int) error
KeyUp(code uint64) error
ResetKeys()
2020-11-02 04:09:48 +13:00
ScreenConfigurations() map[int]ScreenConfiguration
GetScreenSize() *ScreenSize
SetKeyboardLayout(layout string)
SetKeyboardModifiers(NumLock int, CapsLock int, ScrollLock int)
2020-11-02 04:09:48 +13:00
// clipboard
ReadClipboard() string
WriteClipboard(data string)
}