aboutsummaryrefslogtreecommitdiff
path: root/include/CursorTrackerX11.hpp
blob: 66618c4449989e28607dd7f2bec8ba9de65ff78c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once

#include "CursorTracker.hpp"

typedef struct _XDisplay Display;

namespace gsr {
    class CursorTrackerX11 : public CursorTracker {
    public:
        CursorTrackerX11(Display *dpy);
        CursorTrackerX11(const CursorTrackerX11&) = delete;
        CursorTrackerX11& operator=(const CursorTrackerX11&) = delete;
        ~CursorTrackerX11() = default;

        void update() override {}
        std::optional<CursorInfo> get_latest_cursor_info() override;
    private:
        Display *dpy = nullptr;
    };
}