From 0777d076e6dd0052d85c9b41d301b2f0911bb273 Mon Sep 17 00:00:00 2001 From: Xaver Hugl Date: Wed, 21 Dec 2022 01:59:43 +0100 Subject: [PATCH] wayland/seatinterface: remove properties They're not used for anything --- src/wayland/seat_interface.h | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/src/wayland/seat_interface.h b/src/wayland/seat_interface.h index d79494d380..34b195529d 100644 --- a/src/wayland/seat_interface.h +++ b/src/wayland/seat_interface.h @@ -123,35 +123,6 @@ enum class KeyboardKeyState : quint32 { class KWIN_EXPORT SeatInterface : public QObject { Q_OBJECT - /** - * The name of the Seat - */ - Q_PROPERTY(QString name READ name WRITE setName NOTIFY nameChanged) - /** - * Whether the SeatInterface supports a pointer device. - */ - Q_PROPERTY(bool pointer READ hasPointer WRITE setHasPointer NOTIFY hasPointerChanged) - /** - * Whether the SeatInterface supports a keyboard device. - */ - Q_PROPERTY(bool keyboard READ hasKeyboard WRITE setHasKeyboard NOTIFY hasKeyboardChanged) - /** - * Whether the SeatInterface supports a touch device. - * @deprecated Since 5.5, use touch - */ - Q_PROPERTY(bool tourch READ hasTouch WRITE setHasTouch NOTIFY hasTouchChanged) - /** - * Whether the SeatInterface supports a touch device. - */ - Q_PROPERTY(bool touch READ hasTouch WRITE setHasTouch NOTIFY hasTouchChanged) - /** - * The global pointer position. - */ - Q_PROPERTY(QPointF pointerPos READ pointerPos WRITE notifyPointerMotion NOTIFY pointerPosChanged) - /** - * The current timestamp passed to the input events. - */ - Q_PROPERTY(quint32 timestamp READ timestamp WRITE setTimestamp NOTIFY timestampChanged) public: explicit SeatInterface(Display *display, QObject *parent = nullptr); virtual ~SeatInterface();