1
0
Fork 0
mirror of https://gitlab.com/futo-org/fcast.git synced 2025-09-02 12:33:07 +00:00

webOS: Add support for remote control bar

This commit is contained in:
Michael Hollister 2025-07-21 14:30:47 -05:00
parent 144c3e17f5
commit 8dde1ec5b3
20 changed files with 855 additions and 232 deletions

View file

@ -15,6 +15,21 @@ export enum RemoteKeyCode {
Back = 461,
}
export enum KeyCode {
ArrowUp = 38,
ArrowDown = 40,
ArrowLeft = 37,
ArrowRight = 39,
KeyK = 75,
Space = 32,
Enter = 13,
}
export enum ControlBarMode {
KeyboardMouse,
Remote
}
export class ServiceManager {
private static serviceChannelSuccessCbHandler?: (message: any) => void;
private static serviceChannelFailureCbHandler?: (message: any) => void;