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.
87 lines
4.3 KiB
87 lines
4.3 KiB
/* |
|
SPDX-FileCopyrightText: 2016 Martin Gräßlin <mgraesslin@kde.org> |
|
SPDX-FileCopyrightText: 2021 Vlad Zahorodnii <vlad.zahorodnii@kde.org> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
#pragma once |
|
|
|
#include "input.h" |
|
#include "kwin_export.h" |
|
|
|
#include <QObject> |
|
|
|
namespace KWin |
|
{ |
|
|
|
/** |
|
* The InputDevice class represents an input device, e.g. a mouse, or a keyboard, etc. |
|
*/ |
|
class KWIN_EXPORT InputDevice : public QObject |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
explicit InputDevice(QObject *parent = nullptr); |
|
|
|
virtual QString sysName() const = 0; |
|
virtual QString name() const = 0; |
|
|
|
virtual bool isEnabled() const = 0; |
|
virtual void setEnabled(bool enabled) = 0; |
|
|
|
virtual LEDs leds() const = 0; |
|
virtual void setLeds(LEDs leds) = 0; |
|
|
|
virtual bool isKeyboard() const = 0; |
|
virtual bool isPointer() const = 0; |
|
virtual bool isTouchpad() const = 0; |
|
virtual bool isTouch() const = 0; |
|
virtual bool isTabletTool() const = 0; |
|
virtual bool isTabletPad() const = 0; |
|
virtual bool isTabletModeSwitch() const = 0; |
|
virtual bool isLidSwitch() const = 0; |
|
|
|
virtual QString outputName() const; |
|
virtual void setOutputName(const QString &outputName); |
|
|
|
virtual bool isNaturalScroll() const; |
|
|
|
Q_SIGNALS: |
|
void keyChanged(quint32 key, InputRedirection::KeyboardKeyState, std::chrono::microseconds time, InputDevice *device); |
|
void pointerButtonChanged(quint32 button, InputRedirection::PointerButtonState state, std::chrono::microseconds time, InputDevice *device); |
|
void pointerMotionAbsolute(const QPointF &position, std::chrono::microseconds time, InputDevice *device); |
|
void pointerMotion(const QPointF &delta, const QPointF &deltaNonAccelerated, std::chrono::microseconds time, InputDevice *device); |
|
void pointerAxisChanged(InputRedirection::PointerAxis axis, qreal delta, qint32 deltaV120, |
|
InputRedirection::PointerAxisSource source, std::chrono::microseconds time, InputDevice *device); |
|
void pointerFrame(InputDevice *device); |
|
void touchFrame(InputDevice *device); |
|
void touchCanceled(InputDevice *device); |
|
void touchDown(qint32 id, const QPointF &absolutePos, std::chrono::microseconds time, InputDevice *device); |
|
void touchUp(qint32 id, std::chrono::microseconds time, InputDevice *device); |
|
void touchMotion(qint32 id, const QPointF &absolutePos, std::chrono::microseconds time, InputDevice *device); |
|
void swipeGestureBegin(int fingerCount, std::chrono::microseconds time, InputDevice *device); |
|
void swipeGestureUpdate(const QPointF &delta, std::chrono::microseconds time, InputDevice *device); |
|
void swipeGestureEnd(std::chrono::microseconds time, InputDevice *device); |
|
void swipeGestureCancelled(std::chrono::microseconds time, InputDevice *device); |
|
void pinchGestureBegin(int fingerCount, std::chrono::microseconds time, InputDevice *device); |
|
void pinchGestureUpdate(qreal scale, qreal angleDelta, const QPointF &delta, std::chrono::microseconds time, InputDevice *device); |
|
void pinchGestureEnd(std::chrono::microseconds time, InputDevice *device); |
|
void pinchGestureCancelled(std::chrono::microseconds time, InputDevice *device); |
|
void holdGestureBegin(int fingerCount, std::chrono::microseconds time, InputDevice *device); |
|
void holdGestureEnd(std::chrono::microseconds time, InputDevice *device); |
|
void holdGestureCancelled(std::chrono::microseconds time, InputDevice *device); |
|
void switchToggledOn(std::chrono::microseconds time, InputDevice *device); |
|
void switchToggledOff(std::chrono::microseconds time, InputDevice *device); |
|
|
|
void tabletToolEvent(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); |
|
}; |
|
|
|
} // namespace KWin
|
|
|