UNPKG

zombiebox-platform-samsung

Version:

Samsung Orsay platfrom adapter for ZombieBox Smart TV framework

353 lines (236 loc) 4.52 kB
/** * @constructor */ Common.API.TVKeyValue = function() {}; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_TOOLS = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_MUTE = 83; // "s" like "Silent" /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_RETURN = 27; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_UP = 38; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_DOWN = 40; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_LEFT = 37; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_RIGHT = 39; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_WHEELDOWN = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_WHEELUP = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_ENTER = 13; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_INFO = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_EXIT = 173; // "-" /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_RED = 112; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_GREEN = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_YELLOW = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_BLUE = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_INFOLINK = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_RW = 188; // "<" /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_REWIND_ = 1080; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_PAUSE = 79; // "o" /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_FF = 190; // ">" /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_FF_ = 1078; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_PLAY = 80; // "p" /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_STOP = 82; // "s" /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_1 = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_2 = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_3 = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_4 = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_5 = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_6 = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_7 = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_8 = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_9 = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_0 = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_CH_UP = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_CH_DOWN = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_EMPTY = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_PRECH = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_SOURCE = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_CHLIST = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_MENU = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_WLINK = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_CC = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_CONTENT = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_FAVCH = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_REC = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_EMODE = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_DMA = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_PANEL_CH_UP = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_PANEL_CH_DOWN = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_PANEL_VOL_UP = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_PANEL_VOL_DOWN = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_VOL_UP = 81; // "q" /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_VOL_DOWN = 65; // "a" /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_PANEL_ENTER = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_PANEL_SOURCE = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_PANEL_MENU = 0; /** * @type {number} */ Common.API.TVKeyValue.prototype.KEY_PANEL_POWER = 0;