cursor image as WS event.

This commit is contained in:
Miroslav Šedivý
2021-01-10 12:34:08 +01:00
parent 94186f3ef6
commit 818e07fc8b
5 changed files with 24 additions and 12 deletions

View File

@ -28,4 +28,6 @@ export const CLIPBOARD_SET = 'clipboard/set'
export const KEYBOARD_MODIFIERS = 'keyboard/modifiers'
export const KEYBOARD_LAYOUT = 'keyboard/layout'
export const CURSOR_IMAGE = 'cursor/image'
export const BORADCAST_STATUS = 'broadcast/status'

View File

@ -146,6 +146,19 @@ export interface KeyboardLayout {
layout: string
}
/////////////////////////////
// Cursor
/////////////////////////////
export interface CursorImage {
event: string | undefined
uri: string
width: number
height: number
x: number
y: number
}
/////////////////////////////
// Broadcast
/////////////////////////////

View File

@ -48,8 +48,10 @@ export interface Scroll {
export interface Cursor {
uri: string
hot_x: number
hot_y: number
width: number
height: number
x: number
y: number
}
export interface Clipboard {