Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qohosarkuinativegestureshandler.cpp
Go to the documentation of this file.
1// Copyright (C) 2025 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
5
6#include <QtCore/private/qohoslogger_p.h>
7#include <QtCore/qglobal.h>
8#include <QtCore/qpoint.h>
9#include <QtGui/qwindow.h>
10#include <arkui/native_gesture.h>
11#include <arkui/native_interface.h>
12#include <arkui/native_type.h>
13#include <arkui/ui_input_event.h>
14#include <chrono>
15#include <qarkui/qembeddedwindownode.h>
16#include <qarkui/input.h>
17#include <qohosplatformintegration.h>
18#include <qohosutils.h>
19#include <qpa/qwindowsysteminterface.h>
20#include <render/qohosnativegestureshandler.h>
21
23
24namespace {
25
27 ::ArkUI_GestureEventActionType ohEventActionType, Qt::NativeGestureType defaultGestureType)
28{
29 switch (ohEventActionType) {
30 case ::GESTURE_EVENT_ACTION_ACCEPT:
31 return Qt::BeginNativeGesture;
32 case ::GESTURE_EVENT_ACTION_END:
33 return Qt::EndNativeGesture;
34 case ::GESTURE_EVENT_ACTION_CANCEL:
35 return Qt::EndNativeGesture;
36 case ::GESTURE_EVENT_ACTION_UPDATE:
37 return defaultGestureType;
38 }
39 return defaultGestureType;
40}
41
42class QOhosArkUiNativeGesturesHandler final : public QEnableSharedFromThis<QOhosArkUiNativeGesturesHandler>
43{
44public:
45 QOhosArkUiNativeGesturesHandler(QtOhos::QThreadSafeRef<QWindow> qWindowRef);
46
47 void handleNativeGestureEvent(const QArkUi::NativeGestureInfo &nativeGestureInfo);
48
49private:
50 void handleRotationGestureEvent(const ::ArkUI_GestureEvent *gestureEvent);
51 void handlePinchGestureEvent(const ::ArkUI_GestureEvent *gestureEvent);
52
53 QOhosConsumer<const QOhosNativeGestureEvent &> m_baseGesturesHandler;
54 qreal m_lastTotalScale{1.0};
55 QtOhos::QThreadSafeRef<QWindow> m_qWindowRef;
56};
57
58QOhosArkUiNativeGesturesHandler::QOhosArkUiNativeGesturesHandler(
59 QtOhos::QThreadSafeRef<QWindow> qWindowRef)
62{
63}
64
65void QOhosArkUiNativeGesturesHandler::handleNativeGestureEvent(
66 const QArkUi::NativeGestureInfo &nativeGestureInfo)
67{
68 switch (nativeGestureInfo.type) {
69 case QArkUi::NativeGestureInfo::GestureType::Pinch:
70 handlePinchGestureEvent(nativeGestureInfo.event);
71 break;
72 case QArkUi::NativeGestureInfo::GestureType::Rotation:
73 handleRotationGestureEvent(nativeGestureInfo.event);
74 break;
75 }
76}
77
78void QOhosArkUiNativeGesturesHandler::handleRotationGestureEvent(
79 const ::ArkUI_GestureEvent *gestureEvent)
80{
81 const auto timestamp = std::chrono::steady_clock::now();
82 const auto actionType = ::OH_ArkUI_GestureEvent_GetActionType(gestureEvent);
83 const auto qtGestureType = getQtGestureType(actionType, Qt::RotateNativeGesture);
84 const auto delta = ::OH_ArkUI_RotationGesture_GetAngle(gestureEvent);
85
86 const auto *inputEvent = ::OH_ArkUI_GestureEvent_GetRawInputEvent(gestureEvent);
87 const auto toolType = ::OH_ArkUI_UIInputEvent_GetToolType(inputEvent);
88 if (toolType != UI_INPUT_EVENT_TOOL_TYPE_TOUCHPAD)
89 return;
90
91 const auto gestureTimestamp = ::OH_ArkUI_UIInputEvent_GetEventTime(inputEvent);
92 const auto localPosition = QArkUi::getPointerEventLocalPosition(inputEvent);
93 const auto globalPosition = QArkUi::getPointerEventGlobalPosition(inputEvent);
94 const auto deviceType = QArkUi::getPointingDeviceType(inputEvent);
95
97 .timestamp = timestamp,
98 .gestureTimestamp = gestureTimestamp,
99 .value = delta,
100 .localPosition = localPosition,
101 .globalPosition = globalPosition,
102 .gestureType = qtGestureType,
103 .deviceType = deviceType,
104 };
105
106 m_baseGesturesHandler(newEvent);
107}
108
109void QOhosArkUiNativeGesturesHandler::handlePinchGestureEvent(const ::ArkUI_GestureEvent *gestureEvent)
110{
111 const auto timestamp = std::chrono::steady_clock::now();
112 const auto actionType = ::OH_ArkUI_GestureEvent_GetActionType(gestureEvent);
113 const auto qtGestureType = getQtGestureType(actionType, Qt::ZoomNativeGesture);
114
115 const auto totalScale = ::OH_ArkUI_PinchGesture_GetScale(gestureEvent);
116 const auto *inputEvent = ::OH_ArkUI_GestureEvent_GetRawInputEvent(gestureEvent);
117
118 const QPointF localPosition = QArkUi::getPointerEventLocalPosition(inputEvent);
119 const auto toolType = ::OH_ArkUI_UIInputEvent_GetToolType(inputEvent);
120 if (toolType != UI_INPUT_EVENT_TOOL_TYPE_TOUCHPAD)
121 return;
122
123 const auto gestureTimestamp = ::OH_ArkUI_UIInputEvent_GetEventTime(inputEvent);
124 const auto globalPosition = QArkUi::getPointerEventGlobalPosition(inputEvent);
125 const auto deviceType = QArkUi::getPointingDeviceType(inputEvent);
126
127 const auto scaleFactor =
128 qtGestureType == Qt::BeginNativeGesture
129 ? totalScale
130 : totalScale / m_lastTotalScale;
131 m_lastTotalScale = totalScale;
132
133 QOhosNativeGestureEvent newEvent {
134 .timestamp = timestamp,
135 .gestureTimestamp = gestureTimestamp,
136 .value = scaleFactor,
137 .localPosition = localPosition,
138 .globalPosition = globalPosition,
139 .gestureType = qtGestureType,
140 .deviceType = deviceType,
141 };
142
143 m_baseGesturesHandler(newEvent);
144}
145
146}
147
149 QtOhos::QThreadSafeRef<QWindow> qWindowRef)
150{
151 return [gesturesHandler = QSharedPointer<QOhosArkUiNativeGesturesHandler>::create(qWindowRef)](
152 const QArkUi::NativeGestureInfo &nativeGestureInfo) {
153 gesturesHandler->handleNativeGestureEvent(nativeGestureInfo);
154 };
155}
156
157QT_END_NAMESPACE
QOhosArkUiNativeGesturesHandler(QtOhos::QThreadSafeRef< QWindow > qWindowRef)
void handleNativeGestureEvent(const QArkUi::NativeGestureInfo &nativeGestureInfo)
Combined button and popup list for selecting options.
Qt::NativeGestureType getQtGestureType(::ArkUI_GestureEventActionType ohEventActionType, Qt::NativeGestureType defaultGestureType)
QOhosConsumer< const QArkUi::NativeGestureInfo & > makeQOhosArkUiNativeGesturesHandler(QtOhos::QThreadSafeRef< QWindow > qWindowRef)