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:
parent
144c3e17f5
commit
8dde1ec5b3
20 changed files with 855 additions and 232 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue