This repository has been archived by the owner on Aug 14, 2023. It is now read-only.
forked from tildearrow/kwin-lowlatency
-
Notifications
You must be signed in to change notification settings - Fork 0
/
input_event.h
181 lines (142 loc) · 4.92 KB
/
input_event.h
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
172
173
174
175
176
177
178
179
180
181
/********************************************************************
KWin - the KDE window manager
This file is part of the KDE project.
Copyright (C) 2016 Martin Gräßlin <[email protected]>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*********************************************************************/
#ifndef KWIN_INPUT_EVENT_H
#define KWIN_INPUT_EVENT_H
#include "input.h"
#include <QInputEvent>
namespace KWin
{
namespace LibInput
{
class Device;
}
class MouseEvent : public QMouseEvent
{
public:
explicit MouseEvent(QEvent::Type type, const QPointF &pos, Qt::MouseButton button, Qt::MouseButtons buttons,
Qt::KeyboardModifiers modifiers, quint32 timestamp,
const QSizeF &delta, const QSizeF &deltaNonAccelerated, quint64 timestampMicroseconds,
LibInput::Device *device);
QSizeF delta() const {
return m_delta;
}
QSizeF deltaUnaccelerated() const {
return m_deltaUnccelerated;
}
quint64 timestampMicroseconds() const {
return m_timestampMicroseconds;
}
LibInput::Device *device() const {
return m_device;
}
Qt::KeyboardModifiers modifiersRelevantForGlobalShortcuts() const {
return m_modifiersRelevantForShortcuts;
}
void setModifiersRelevantForGlobalShortcuts(const Qt::KeyboardModifiers &mods) {
m_modifiersRelevantForShortcuts = mods;
}
quint32 nativeButton() const {
return m_nativeButton;
}
void setNativeButton(quint32 button) {
m_nativeButton = button;
}
private:
QSizeF m_delta;
QSizeF m_deltaUnccelerated;
quint64 m_timestampMicroseconds;
LibInput::Device *m_device;
Qt::KeyboardModifiers m_modifiersRelevantForShortcuts = Qt::KeyboardModifiers();
quint32 m_nativeButton = 0;
};
// TODO: Don't derive from QWheelEvent, this event is quite domain specific.
class WheelEvent : public QWheelEvent
{
public:
explicit WheelEvent(const QPointF &pos, qreal delta, qint32 discreteDelta, Qt::Orientation orientation,
Qt::MouseButtons buttons, Qt::KeyboardModifiers modifiers, InputRedirection::PointerAxisSource source,
quint32 timestamp, LibInput::Device *device);
Qt::Orientation orientation() const {
return m_orientation;
}
qreal delta() const {
return m_delta;
}
qint32 discreteDelta() const {
return m_discreteDelta;
}
InputRedirection::PointerAxisSource axisSource() const {
return m_source;
}
LibInput::Device *device() const {
return m_device;
}
Qt::KeyboardModifiers modifiersRelevantForGlobalShortcuts() const {
return m_modifiersRelevantForShortcuts;
}
void setModifiersRelevantForGlobalShortcuts(const Qt::KeyboardModifiers &mods) {
m_modifiersRelevantForShortcuts = mods;
}
private:
LibInput::Device *m_device;
Qt::Orientation m_orientation;
qreal m_delta;
qint32 m_discreteDelta;
InputRedirection::PointerAxisSource m_source;
Qt::KeyboardModifiers m_modifiersRelevantForShortcuts = Qt::KeyboardModifiers();
};
class KeyEvent : public QKeyEvent
{
public:
explicit KeyEvent(QEvent::Type type, Qt::Key key, Qt::KeyboardModifiers modifiers, quint32 code, quint32 keysym,
const QString &text, bool autorepeat, quint32 timestamp, LibInput::Device *device);
LibInput::Device *device() const {
return m_device;
}
Qt::KeyboardModifiers modifiersRelevantForGlobalShortcuts() const {
return m_modifiersRelevantForShortcuts;
}
void setModifiersRelevantForGlobalShortcuts(const Qt::KeyboardModifiers &mods) {
m_modifiersRelevantForShortcuts = mods;
}
private:
LibInput::Device *m_device;
Qt::KeyboardModifiers m_modifiersRelevantForShortcuts = Qt::KeyboardModifiers();
};
class SwitchEvent : public QInputEvent
{
public:
enum class State {
Off,
On
};
explicit SwitchEvent(State state, quint32 timestamp, quint64 timestampMicroseconds, LibInput::Device *device);
State state() const {
return m_state;
}
quint64 timestampMicroseconds() const {
return m_timestampMicroseconds;
}
LibInput::Device *device() const {
return m_device;
}
private:
State m_state;
quint64 m_timestampMicroseconds;
LibInput::Device *m_device;
};
}
#endif