From effc981f47bb583a3fb1a413f16a00933bcc8d92 Mon Sep 17 00:00:00 2001 From: gaoshangqi Date: Tue, 30 May 2023 17:18:22 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E6=84=8F=E5=9B=BE=E6=9E=9A?= =?UTF-8?q?=E4=B8=BE=E5=80=BC=E8=AF=B4=E6=98=8E=E6=96=87=E6=A1=A3=20Signed?= =?UTF-8?q?-off-by:=20gaoshangqi=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../reference/apis/js-apis-intentioncode.md | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 zh-cn/application-dev/reference/apis/js-apis-intentioncode.md diff --git a/zh-cn/application-dev/reference/apis/js-apis-intentioncode.md b/zh-cn/application-dev/reference/apis/js-apis-intentioncode.md new file mode 100644 index 0000000000..76f56c9439 --- /dev/null +++ b/zh-cn/application-dev/reference/apis/js-apis-intentioncode.md @@ -0,0 +1,35 @@ +# @ohos.multimodalInput.intentionCode (意图事件) + +将键盘输入设备的原始事件映射为归一化交互的意图事件,如键盘上空格键映射后的事件为INTENTION_SELECT,意图为选中。 + +> **说明:** +> 本模块首批接口从API version 10开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。 + +## 导入模块 + +```js +import IntentionCode from '@ohos.multimodalInput.intentionCode'; +``` + +## IntentionCode + +意图事件枚举值。 + +**系统能力**:SystemCapability.MultimodalInput.Input.Core + +| 名称 | 值 | 说明 | +| -------------------------------- | ------ | --------------------------- | +| INTENTION_UNKNOWN | -1 | 未知意图 | +| INTENTION_UP | 1 | 上 | +| INTENTION_DOWN | 2 | 下 | +| INTENTION_LEFT | 3 | 左 | +| INTENTION_RIGHT | 4 | 右 | +| INTENTION_SELECT | 5 | 选中 | +| INTENTION_ESCAPE | 6 | 逃逸 | +| INTENTION_BACK | 7 | 返回 | +| INTENTION_FORWARD | 8 | 前进 | +| INTENTION_MENU | 9 | 菜单 | +| INTENTION_PAGE_UP | 11 | 上一页 | +| INTENTION_PAGE_DOWN | 12 | 下一页 | +| INTENTION_ZOOM_OUT | 13 | 放大键 | +| INTENTION_ZOOM_IN | 14 | 缩小键 | -- GitLab