-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpq3DViewEventTranslator.cxx
More file actions
171 lines (154 loc) · 4.96 KB
/
pq3DViewEventTranslator.cxx
File metadata and controls
171 lines (154 loc) · 4.96 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
// SPDX-FileCopyrightText: Copyright (c) Kitware Inc.
// SPDX-FileCopyrightText: Copyright (c) Sandia Corporation
// SPDX-License-Identifier: BSD-3-Clause
#include "pq3DViewEventTranslator.h"
#include <QEvent>
#include <QKeyEvent>
#include <QMouseEvent>
#include <QWidget>
pq3DViewEventTranslator::pq3DViewEventTranslator(const QByteArray& classname, QObject* p)
: pqWidgetEventTranslator(p)
, mClassType(classname)
, lastMoveEvent(QEvent::MouseButtonPress, QPoint(), QPoint(), Qt::MouseButton(),
Qt::MouseButtons(), Qt::KeyboardModifiers())
{
}
pq3DViewEventTranslator::~pq3DViewEventTranslator() {}
bool pq3DViewEventTranslator::translateEvent(QObject* Object, QEvent* Event, bool& Error)
{
QWidget* widget = qobject_cast<QWidget*>(Object);
if (!widget || !Object->inherits(mClassType.data()))
{
return false;
}
switch (Event->type())
{
case QEvent::ContextMenu:
{
return true;
break;
}
case QEvent::MouseButtonPress:
{
QMouseEvent* mouseEvent = dynamic_cast<QMouseEvent*>(Event);
if (mouseEvent)
{
QSize size = widget->size();
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
auto pos = mouseEvent->pos();
#else
auto pos = mouseEvent->position().toPoint();
#endif
double normalized_x = pos.x() / static_cast<double>(size.width());
double normalized_y = pos.y() / static_cast<double>(size.height());
int button = mouseEvent->button();
int buttons = mouseEvent->buttons();
int modifiers = mouseEvent->modifiers();
Q_EMIT recordEvent(Object, "mousePress",
QString("(%1,%2,%3,%4,%5)")
.arg(normalized_x)
.arg(normalized_y)
.arg(button)
.arg(buttons)
.arg(modifiers));
}
// reset lastMoveEvent
QMouseEvent e(QEvent::MouseButtonPress, QPoint(), QPoint(), Qt::MouseButton(),
Qt::MouseButtons(), Qt::KeyboardModifiers());
#if QT_VERSION < 0x060000
// FIXME: QMouseEvent copy ctor is private in Qt6
lastMoveEvent = e;
#endif
return true;
break;
}
case QEvent::MouseMove:
{
QMouseEvent* mouseEvent = dynamic_cast<QMouseEvent*>(Event);
if (mouseEvent)
{
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
auto pos = mouseEvent->pos();
#else
auto pos = mouseEvent->position().toPoint();
#endif
QMouseEvent e(QEvent::MouseMove, pos, widget->mapToGlobal(pos), mouseEvent->button(),
mouseEvent->buttons(), mouseEvent->modifiers());
#if QT_VERSION < 0x060000
// FIXME: QMouseEvent copy ctor is private in Qt6
lastMoveEvent = e;
#endif
}
return true;
break;
}
case QEvent::MouseButtonRelease:
{
QMouseEvent* mouseEvent = dynamic_cast<QMouseEvent*>(Event);
if (mouseEvent)
{
QSize size = widget->size();
// record last move event if it is valid
if (lastMoveEvent.type() == QEvent::MouseMove)
{
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
auto pos = lastMoveEvent.pos();
#else
auto pos = lastMoveEvent.position().toPoint();
#endif
double normalized_x = pos.x() / static_cast<double>(size.width());
double normalized_y = pos.y() / static_cast<double>(size.height());
int button = lastMoveEvent.button();
int buttons = lastMoveEvent.buttons();
int modifiers = lastMoveEvent.modifiers();
Q_EMIT recordEvent(Object, "mouseMove",
QString("(%1,%2,%3,%4,%5)")
.arg(normalized_x)
.arg(normalized_y)
.arg(button)
.arg(buttons)
.arg(modifiers));
}
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
auto pos = mouseEvent->pos();
#else
auto pos = mouseEvent->position().toPoint();
#endif
double normalized_x = pos.x() / static_cast<double>(size.width());
double normalized_y = pos.y() / static_cast<double>(size.height());
int button = mouseEvent->button();
int buttons = mouseEvent->buttons();
int modifiers = mouseEvent->modifiers();
Q_EMIT recordEvent(Object, "mouseRelease",
QString("(%1,%2,%3,%4,%5)")
.arg(normalized_x)
.arg(normalized_y)
.arg(button)
.arg(buttons)
.arg(modifiers));
}
return true;
break;
}
case QEvent::KeyPress:
case QEvent::KeyRelease:
{
QKeyEvent* ke = static_cast<QKeyEvent*>(Event);
QString data = QString("%1:%2:%3:%4:%5:%6")
.arg(ke->type())
.arg(ke->key())
.arg(static_cast<int>(ke->modifiers()))
.arg(ke->text())
.arg(ke->isAutoRepeat())
.arg(ke->count());
Q_EMIT recordEvent(Object, "keyEvent", data);
return true;
break;
}
default:
{
break;
}
}
return this->Superclass::translateEvent(Object, Event, Error);
}