From 92026b34ddfc52279512021e059ad4fac5d497b6 Mon Sep 17 00:00:00 2001 From: shaoziyun Date: Mon, 30 May 2022 07:28:14 +0000 Subject: [PATCH] =?UTF-8?q?=E6=A0=BC=E5=BC=8F=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: shaoziyun --- .../reference/apis/js-apis-inputevent.md | 10 ++--- .../reference/apis/js-apis-inputkeycode.md | 6 +-- .../reference/apis/js-apis-inputkeyevent.md | 29 +++--------- .../reference/apis/js-apis-inputmouseevent.md | 40 ++--------------- .../reference/apis/js-apis-inputtouchevent.md | 44 +++---------------- 5 files changed, 23 insertions(+), 106 deletions(-) diff --git a/zh-cn/application-dev/reference/apis/js-apis-inputevent.md b/zh-cn/application-dev/reference/apis/js-apis-inputevent.md index e7ad2eba58..5aebb9ca5b 100755 --- a/zh-cn/application-dev/reference/apis/js-apis-inputevent.md +++ b/zh-cn/application-dev/reference/apis/js-apis-inputevent.md @@ -1,24 +1,22 @@ -# InputEvent +# 输入事件 + + > ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:** > 本模块首批接口从API version 9开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。 - ## 导入模块 ```ts import InputEvent from '@ohos.multimodalInput.inputEvent'; ``` -## 属性 - **系统能力**:以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.Core - | 名称 | 参数类型 | 可读 | 可写 | 描述 | | -------- | -------- | -------- | -------- | -------- | | id | number | 是 | 否 | 由服务端生成全局唯一事件id | | deviceId | number | 是 | 否 | 上报输入事件的设备id | -| actionTime | number | 是 | 否 | 事件发生时间 | +| actionTime | number | 是 | 否 | 输入事件的上报时间 | | screenId | number | 是 | 否 | 目标屏幕id | | windowId | number | 是 | 否 | 目标窗口id | \ No newline at end of file diff --git a/zh-cn/application-dev/reference/apis/js-apis-inputkeycode.md b/zh-cn/application-dev/reference/apis/js-apis-inputkeycode.md index e5c5b8af61..e379d1c4f2 100755 --- a/zh-cn/application-dev/reference/apis/js-apis-inputkeycode.md +++ b/zh-cn/application-dev/reference/apis/js-apis-inputkeycode.md @@ -1,4 +1,6 @@ -# KeyCode +# 键值 + + > ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:** > 本模块首批接口从API version 9开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。 @@ -9,8 +11,6 @@ import {KeyCode} from '@ohos.multimodalInput.keyCode' ``` -## 属性 - **系统能力**:以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.Core | 名称 | 参数类型 | 可读 | 可写 | 描述 | diff --git a/zh-cn/application-dev/reference/apis/js-apis-inputkeyevent.md b/zh-cn/application-dev/reference/apis/js-apis-inputkeyevent.md index 81ca673e5d..df65452fd0 100755 --- a/zh-cn/application-dev/reference/apis/js-apis-inputkeyevent.md +++ b/zh-cn/application-dev/reference/apis/js-apis-inputkeyevent.md @@ -1,4 +1,6 @@ -# Action +# 按键输入事件 + + > ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:** > 本模块首批接口从API version 9开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。 @@ -6,30 +8,21 @@ ## 导入模块 ```ts -import {Action} from '@ohos.multimodalInput.keyEvent'; +import {Action,Key,KeyEvent} from '@ohos.multimodalInput.keyEvent'; ``` -## 属性 +# Action **系统能力**:以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.Core | 名称 | 参数类型 | 可读 | 可写 | 描述 | | -------- | -------- | -------- | -------- | -------- | | CANCEL | number | 是 | 否 | 取消 | -| DOWN | number | 是 | 否 | 按钮按下 | -| UP | number | 是 | 否 | 按钮抬起 | - +| DOWN | number | 是 | 否 | 按下按钮 | +| UP | number | 是 | 否 | 抬起按钮 | # Key -## 导入模块 - -```ts -import {Key} from '@ohos.multimodalInput.mouseEvent'; -``` - -## 属性 - **系统能力**:以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.Core | 名称 | 参数类型 | 可读 | 可写 | 描述 | @@ -40,14 +33,6 @@ import {Key} from '@ohos.multimodalInput.mouseEvent'; # KeyEvent -## 导入模块 - -```ts -import {KeyEvent} from '@ohos.multimodalInput.mouseEvent'; -``` - -## 属性 - **系统能力**:以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.Core | 名称 | 参数类型 | 可读 | 可写 | 描述 | diff --git a/zh-cn/application-dev/reference/apis/js-apis-inputmouseevent.md b/zh-cn/application-dev/reference/apis/js-apis-inputmouseevent.md index 8c5c5bf824..b3bd0a489a 100755 --- a/zh-cn/application-dev/reference/apis/js-apis-inputmouseevent.md +++ b/zh-cn/application-dev/reference/apis/js-apis-inputmouseevent.md @@ -1,4 +1,5 @@ -# Action +# 鼠标输入事件 + > ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:** > 本模块首批接口从API version 9开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。 @@ -6,10 +7,10 @@ ## 导入模块 ```ts -import {Action} from '@ohos.multimodalInput.mouseEvent'; +import {Action,Button,Axis,AxisValue,MouseEvent} from '@ohos.multimodalInput.mouseEvent'; ``` -## 属性 +# Action **系统能力**:以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.Core @@ -26,14 +27,6 @@ import {Action} from '@ohos.multimodalInput.mouseEvent'; # Button -## 导入模块 - -```ts -import {Button} from '@ohos.multimodalInput.mouseEvent'; -``` - -## 属性 - **系统能力**:以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.Core | 名称 | 参数类型 | 可读 | 可写 | 描述 | @@ -47,17 +40,8 @@ import {Button} from '@ohos.multimodalInput.mouseEvent'; | BACK | number | 是 | 否 | 鼠标后退键 | | TASK | number | 是 | 否 | 鼠标任务键 | - # Axis -## 导入模块 - -```ts -import {Axis} from '@ohos.multimodalInput.mouseEvent'; -``` - -## 属性 - **系统能力**:以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.Core | 名称 | 参数类型 | 可读 | 可写 | 描述 | @@ -69,14 +53,6 @@ import {Axis} from '@ohos.multimodalInput.mouseEvent'; # AxisValue -## 导入模块 - -```ts -import {AxisValue} from '@ohos.multimodalInput.mouseEvent'; -``` - -## 属性 - **系统能力**:以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.Core | 名称 | 参数类型 | 可读 | 可写 | 描述 | @@ -87,14 +63,6 @@ import {AxisValue} from '@ohos.multimodalInput.mouseEvent'; # MouseEvent -## 导入模块 - -```ts -import {MouseEvent} from '@ohos.multimodalInput.mouseEvent'; -``` - -## 属性 - **系统能力**:以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.Core | 名称 | 参数类型 | 可读 | 可写 | 描述 | diff --git a/zh-cn/application-dev/reference/apis/js-apis-inputtouchevent.md b/zh-cn/application-dev/reference/apis/js-apis-inputtouchevent.md index 54f242b684..06f9a7e0fe 100755 --- a/zh-cn/application-dev/reference/apis/js-apis-inputtouchevent.md +++ b/zh-cn/application-dev/reference/apis/js-apis-inputtouchevent.md @@ -1,4 +1,6 @@ -# Action +# 触摸输入事件 + + > ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:** > 本模块首批接口从API version 9开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。 @@ -6,10 +8,10 @@ ## 导入模块 ```ts -import {Action} from '@ohos.multimodalInput.ToucEvent'; +import {Action,ToolType,SourceType,Touch,TouchEvent} from '@ohos.multimodalInput.ToucEvent'; ``` -## 属性 +# Action **系统能力**:以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.Core @@ -20,17 +22,8 @@ import {Action} from '@ohos.multimodalInput.ToucEvent'; | MOVE | number | 是 | 否 | 触摸移动 | | UP | number | 是 | 否 | 触摸抬起 | - # ToolType -## 导入模块 - -```ts -import {ToolType} from '@ohos.multimodalInput.ToucEvent'; -``` - -## 属性 - **系统能力**:以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.Core | 名称 | 参数类型 | 可读 | 可写 | 描述 | @@ -44,17 +37,8 @@ import {ToolType} from '@ohos.multimodalInput.ToucEvent'; | MOUSE | number | 是 | 否 | 鼠标 | | LENS | number | 是 | 否 | 透镜 | - # SourceType -## 导入模块 - -```ts -import {SourceType} from '@ohos.multimodalInput.ToucEvent'; -``` - -## 属性 - **系统能力**:以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.Core | 名称 | 参数类型 | 可读 | 可写 | 描述 | @@ -63,17 +47,8 @@ import {SourceType} from '@ohos.multimodalInput.ToucEvent'; | PEN | number | 是 | 否 | 手写笔 | | TOUCH_PAD | number | 是 | 否 | 触摸板 | - # Touch -## 导入模块 - -```ts -import {Touch} from '@ohos.multimodalInput.ToucEvent'; -``` - -## 属性 - **系统能力**:以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.Core | 名称 | 参数类型 | 可读 | 可写 | 描述 | @@ -97,17 +72,8 @@ import {Touch} from '@ohos.multimodalInput.ToucEvent'; | rawY | number | 是 | 否 | 输入设备上的y坐标 | | toolType | number | 是 | 否 | 工具类型 | - # TouchEvent -## 导入模块 - -```ts -import {TouchEvent} from '@ohos.multimodalInput.ToucEvent'; -``` - -## 属性 - **系统能力**:以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.Core | 名称 | 参数类型 | 可读 | 可写 | 描述 | -- GitLab