-
Notifications
You must be signed in to change notification settings - Fork 11
/
keyboard.d.ts
84 lines (80 loc) · 2.34 KB
/
keyboard.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
export type TouchType = 'touchstart' | 'touchend' | 'touchcancel';
export interface OnTouchEventResponse {
/**
* 事件类型,可选择 'touchstart','touchend','touchcancel' 三种之一
*/
readonly type: TouchType;
/**
* 按键对应的 key
*/
readonly key: string;
/**
* 按键对应的 code
*/
readonly code: number;
}
export interface KeyboardConfig {
/**
* 摇杆挂载节点,默认 TCGSDK init 参数传入的 mount 节点
*/
zone?: HTMLElement;
/**
* 自动发送键盘数据 默认值 true
*/
sendData?: boolean;
/**
* 按键边框颜色 默认 #4a525a
*/
keyBorderColor?: any;
/**
* 按下时边框颜色 默认 #2684FF
*/
keyPressedBorderColor?: any;
/**
* Keyboard OnTouchEventResponse
* 点击回调
*/
onTouchEvent?: (response: OnTouchEventResponse) => void;
}
/**
* @class
*
* 虚拟键盘
*
* 依赖 TCGSDK 使用,建议在 TCGSDK.init 内的回调函数 onConnectSuccess 中使用
*
* @param {Object} params
* @param {HTMLElement} [params.zone=TCGSDK init param `mount`] - 摇杆挂载节点,默认 TCGSDK init 参数传入的 mount 节点
* @param {boolean} [params.sendData=true] - 自动发送键盘数据 默认值 true
* @param {string} [params.keyBorderColor='#4a525a'] - 按键边框颜色 默认 '#4a525a'
* @param {Object} [params.keyPressedBorderColor='#2684FF'] - 按下时边框颜色 默认 '#2684FF'
* @param {Function} [params.onTouchEvent] - Keyboard OnTouchEventResponse
*
* @description
* 关于OnTouchEventResponse,具体如下:
*
* | Name | Type | Description |
* | ------- | ---------- | --------------------------------------------------------------- |
* | type | string | (readonly) 事件类型,可选择 touchstart 、touchend 、touchcancel |
* | key | string | (readonly) 按键对应的 key |
* | code | string | (readonly) 按键对应的 code
*
* @example
* new Keyboard({});
*/
declare class Keyboard {
constructor(params: KeyboardConfig);
/**
* 显示虚拟键盘
*/
show(): void;
/**
* 隐藏虚拟键盘
*/
hide(): void;
/**
* 销毁虚拟键盘,删除对应节点(如要再次使用需要重新创建)
*/
destroy(): void;
}
export default Keyboard;