Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
a77d7f77
D
Docs
项目概览
OpenHarmony
/
Docs
1 年多 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
a77d7f77
编写于
9月 01, 2023
作者:
O
openharmony_ci
提交者:
Gitee
9月 01, 2023
浏览文件
操作
浏览文件
下载
差异文件
!23541 BugFix:sendTouchEvent/sendMouseEvent 接口上增加 windowX/windowY/displayX/displayY 字段
Merge pull request !23541 from bixuefeng/bugfix_0830
上级
abb7a9f6
bb2fa975
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
20 addition
and
9 deletion
+20
-9
zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-component-id.md
...eference/arkui-ts/ts-universal-attributes-component-id.md
+20
-9
未找到文件。
zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-component-id.md
浏览文件 @
a77d7f77
...
...
@@ -137,6 +137,8 @@ sendMouseEvent(event: MouseEvent): boolean
```
ts
// xxx.ets
import
{
IntentionCode
}
from
'
@ohos.multimodalInput.intentionCode
'
class
Utils
{
static
rect_left
static
rect_top
...
...
@@ -199,11 +201,15 @@ struct IdExample {
let
rect
=
Utils
.
getComponentRect
(
'
onTouch
'
)
// 获取id为"onTouch"组件的矩形区域坐标
let
touchPoint
:
TouchObject
=
{
id
:
1
,
x
:
rect
.
left
+
(
rect
.
right
-
rect
.
left
)
/
2
,
// 组件中心点x坐标
y
:
rect
.
top
+
(
rect
.
bottom
-
rect
.
top
)
/
2
,
// 组件中心点y坐标
type
:
TouchType
.
Down
,
screenX
:
rect
.
left
+
(
rect
.
right
-
rect
.
left
)
/
2
,
// 组件中心点x坐标
screenY
:
rect
.
left
+
(
rect
.
right
-
rect
.
left
)
/
2
,
// 组件中心点y坐标
x
:
rect
.
left
+
(
rect
.
right
-
rect
.
left
)
/
2
,
// 相对于组件左上角的水平方向坐标
y
:
rect
.
top
+
(
rect
.
bottom
-
rect
.
top
)
/
2
,
// 相对于组件左上角的垂直方向坐标
screenX
:
rect
.
left
+
(
rect
.
right
-
rect
.
left
)
/
2
,
// 相对于应用窗口左上角的水平方向坐标,API10已废弃,采用windowX替代
screenY
:
rect
.
left
+
(
rect
.
right
-
rect
.
left
)
/
2
,
// 相对于应用窗口左上角的垂直方向坐标,API10已废弃,采用windowY替代
windowX
:
rect
.
left
+
(
rect
.
right
-
rect
.
left
)
/
2
,
// 相对于应用窗口左上角的水平方向坐标
windowY
:
rect
.
left
+
(
rect
.
right
-
rect
.
left
)
/
2
,
// 相对于应用窗口左上角的垂直方向坐标
displayX
:
rect
.
left
+
(
rect
.
right
-
rect
.
left
)
/
2
,
// 相对于设备屏幕左上角的水平方向坐标
displayY
:
rect
.
left
+
(
rect
.
right
-
rect
.
left
)
/
2
,
// 相对于设备屏幕左上角的垂直方向坐标
}
sendTouchEvent
(
touchPoint
)
// 发送触摸事件
touchPoint
.
type
=
TouchType
.
Up
...
...
@@ -222,10 +228,14 @@ struct IdExample {
let
mouseEvent
:
MouseEvent
=
{
button
:
MouseButton
.
Left
,
action
:
MouseAction
.
Press
,
x
:
rect
.
left
+
(
rect
.
right
-
rect
.
left
)
/
2
,
// 组件中心点x坐标
y
:
rect
.
top
+
(
rect
.
bottom
-
rect
.
top
)
/
2
,
// 组件中心点y坐标
screenX
:
rect
.
left
+
(
rect
.
right
-
rect
.
left
)
/
2
,
// 组件中心点x坐标
screenY
:
rect
.
top
+
(
rect
.
bottom
-
rect
.
top
)
/
2
,
// 组件中心点y坐标
x
:
rect
.
left
+
(
rect
.
right
-
rect
.
left
)
/
2
,
// 相对于组件左上角的水平方向坐标
y
:
rect
.
top
+
(
rect
.
bottom
-
rect
.
top
)
/
2
,
// 相对于组件左上角的垂直方向坐标
screenX
:
rect
.
left
+
(
rect
.
right
-
rect
.
left
)
/
2
,
// 相对于应用窗口左上角的水平方向坐标,API10已废弃,采用windowX替代
screenY
:
rect
.
left
+
(
rect
.
right
-
rect
.
left
)
/
2
,
// 相对于应用窗口左上角的垂直方向坐标,API10已废弃,采用windowY替代
windowX
:
rect
.
left
+
(
rect
.
right
-
rect
.
left
)
/
2
,
// 相对于应用窗口左上角的水平方向坐标
windowY
:
rect
.
left
+
(
rect
.
right
-
rect
.
left
)
/
2
,
// 相对于应用窗口左上角的垂直方向坐标
displayX
:
rect
.
left
+
(
rect
.
right
-
rect
.
left
)
/
2
,
// 相对于设备屏幕左上角的水平方向坐标
displayY
:
rect
.
left
+
(
rect
.
right
-
rect
.
left
)
/
2
,
// 相对于设备屏幕左上角的垂直方向坐标
timestamp
:
1
,
target
:
{
area
:
{
...
...
@@ -265,7 +275,8 @@ struct IdExample {
keySource
:
4
,
deviceId
:
0
,
metaKey
:
0
,
timestamp
:
0
timestamp
:
0
,
intentionCode
:
IntentionCode
.
INTENTION_DOWN
}
sendKeyEvent
(
keyEvent
)
// 发送按键事件
},
2000
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录