neko/pkg/types/desktop.go

97 lines
2.1 KiB
Go
Raw Normal View History

package types
2021-01-22 08:44:09 +13:00
import (
"fmt"
2021-01-22 08:44:09 +13:00
"image"
)
2021-01-10 10:58:18 +13:00
type CursorImage struct {
Width uint16
Height uint16
Xhot uint16
Yhot uint16
Serial uint64
Image *image.RGBA
2021-01-10 10:58:18 +13:00
}
2020-11-02 04:09:48 +13:00
type ScreenSize struct {
2020-11-26 10:35:54 +13:00
Width int
Height int
Rate int16
2020-11-02 04:09:48 +13:00
}
func (s ScreenSize) String() string {
return fmt.Sprintf("%dx%d@%d", s.Width, s.Height, s.Rate)
}
2021-01-13 10:54:13 +13:00
type KeyboardModifiers struct {
NumLock *bool
CapsLock *bool
}
2021-01-16 04:53:03 +13:00
type KeyboardMap struct {
Layout string
Variant string
}
type ClipboardText struct {
Text string
HTML string
}
2020-11-02 04:09:48 +13:00
type DesktopManager interface {
Start()
Shutdown() error
OnBeforeScreenSizeChange(listener func())
OnAfterScreenSizeChange(listener func())
2020-11-02 04:09:48 +13:00
// xorg
Move(x, y int)
2021-02-18 09:55:11 +13:00
GetCursorPosition() (int, int)
Scroll(x, y int)
2021-02-24 09:25:55 +13:00
ButtonDown(code uint32) error
KeyDown(code uint32) error
ButtonUp(code uint32) error
KeyUp(code uint32) error
ButtonPress(code uint32) error
2022-01-30 13:22:07 +13:00
KeyPress(codes ...uint32) error
ResetKeys()
ScreenConfigurations() []ScreenSize
SetScreenSize(ScreenSize) (ScreenSize, error)
GetScreenSize() ScreenSize
2021-01-16 04:53:03 +13:00
SetKeyboardMap(KeyboardMap) error
GetKeyboardMap() (*KeyboardMap, error)
2021-01-13 10:54:13 +13:00
SetKeyboardModifiers(mod KeyboardModifiers)
GetKeyboardModifiers() KeyboardModifiers
2021-01-10 10:58:18 +13:00
GetCursorImage() *CursorImage
2021-01-22 08:44:09 +13:00
GetScreenshotImage() *image.RGBA
2020-11-02 04:09:48 +13:00
2021-01-11 03:58:17 +13:00
// xevent
OnCursorChanged(listener func(serial uint64))
2021-01-12 03:30:53 +13:00
OnClipboardUpdated(listener func())
OnFileChooserDialogOpened(listener func())
OnFileChooserDialogClosed(listener func())
2021-01-11 03:58:17 +13:00
OnEventError(listener func(error_code uint8, message string, request_code uint8, minor_code uint8))
// input driver
HasTouchSupport() bool
TouchBegin(touchId uint32, x, y int, pressure uint8) error
TouchUpdate(touchId uint32, x, y int, pressure uint8) error
TouchEnd(touchId uint32, x, y int, pressure uint8) error
2020-11-02 04:09:48 +13:00
// clipboard
2021-02-15 02:40:17 +13:00
ClipboardGetText() (*ClipboardText, error)
ClipboardSetText(data ClipboardText) error
ClipboardGetBinary(mime string) ([]byte, error)
ClipboardSetBinary(mime string, data []byte) error
ClipboardGetTargets() ([]string, error)
2021-01-07 06:57:50 +13:00
// drop
2021-01-15 07:53:58 +13:00
DropFiles(x int, y int, files []string) bool
2021-01-18 11:50:03 +13:00
// filechooser
HandleFileChooserDialog(uri string) error
CloseFileChooserDialog()
IsFileChooserDialogOpened() bool
}