You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
2.4 KiB
85 lines
2.4 KiB
/* |
|
KWin - the KDE window manager |
|
This file is part of the KDE project. |
|
|
|
SPDX-FileCopyrightText: 2019 Aleix Pol Gonzalez <aleixpol@kde.org> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
#pragma once |
|
#include "input.h" |
|
|
|
#include <QHash> |
|
#include <QObject> |
|
#include <QPointF> |
|
#include <QPointer> |
|
|
|
namespace KWin |
|
{ |
|
class Cursor; |
|
class Window; |
|
class TabletToolId; |
|
class TabletToolV2Interface; |
|
|
|
namespace Decoration |
|
{ |
|
class DecoratedClientImpl; |
|
} |
|
|
|
namespace LibInput |
|
{ |
|
class Device; |
|
} |
|
|
|
class TabletInputRedirection : public InputDeviceHandler |
|
{ |
|
Q_OBJECT |
|
public: |
|
explicit TabletInputRedirection(InputRedirection *parent); |
|
~TabletInputRedirection() override; |
|
|
|
void tabletPad(); |
|
bool focusUpdatesBlocked() override; |
|
|
|
void tabletToolEvent(KWin::InputRedirection::TabletEventType type, const QPointF &pos, |
|
qreal pressure, int xTilt, int yTilt, qreal rotation, bool tipDown, |
|
bool tipNear, const TabletToolId &toolId, |
|
std::chrono::microseconds time, |
|
InputDevice *device); |
|
void tabletToolButtonEvent(uint button, bool isPressed, const TabletToolId &toolId, std::chrono::microseconds time, InputDevice *device); |
|
void tabletPadButtonEvent(uint button, bool isPressed, std::chrono::microseconds time, InputDevice *device); |
|
void tabletPadStripEvent(int number, int position, bool isFinger, std::chrono::microseconds time, InputDevice *device); |
|
void tabletPadRingEvent(int number, int position, bool isFinger, std::chrono::microseconds time, InputDevice *device); |
|
|
|
bool positionValid() const override |
|
{ |
|
return !m_lastPosition.isNull(); |
|
} |
|
void init() override; |
|
|
|
QPointF position() const override |
|
{ |
|
return m_lastPosition; |
|
} |
|
|
|
TabletToolV2Interface *ensureTabletTool(const TabletToolId &id); |
|
|
|
private: |
|
void cleanupDecoration(Decoration::DecoratedClientImpl *old, |
|
Decoration::DecoratedClientImpl *now) override; |
|
void focusUpdate(Window *focusOld, Window *focusNow) override; |
|
void integrateDevice(InputDevice *device); |
|
void removeDevice(InputDevice *device); |
|
void trackNextOutput(); |
|
|
|
bool m_tipDown = false; |
|
bool m_tipNear = false; |
|
|
|
QPointF m_lastPosition; |
|
QMetaObject::Connection m_decorationGeometryConnection; |
|
QMetaObject::Connection m_decorationDestroyedConnection; |
|
QHash<TabletToolV2Interface *, Cursor *> m_cursorByTool; |
|
}; |
|
|
|
}
|
|
|