mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-13 10:25:58 +01:00
25 lines
482 B
C++
25 lines
482 B
C++
|
#pragma once
|
||
|
|
||
|
#include "ITouch.hpp"
|
||
|
|
||
|
class CTouchDevice : public ITouch {
|
||
|
public:
|
||
|
static SP<CTouchDevice> create(wlr_touch* touch);
|
||
|
|
||
|
virtual bool isVirtual();
|
||
|
virtual wlr_touch* wlr();
|
||
|
|
||
|
private:
|
||
|
CTouchDevice(wlr_touch* touch);
|
||
|
|
||
|
wlr_touch* touch = nullptr;
|
||
|
|
||
|
void disconnectCallbacks();
|
||
|
|
||
|
DYNLISTENER(destroy);
|
||
|
DYNLISTENER(down);
|
||
|
DYNLISTENER(up);
|
||
|
DYNLISTENER(motion);
|
||
|
DYNLISTENER(cancel);
|
||
|
DYNLISTENER(frame);
|
||
|
};
|