mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-08-10 17:51:53 -07:00
cursor-shape: move to new impl
This commit is contained in:
42
src/protocols/CursorShape.hpp
Normal file
42
src/protocols/CursorShape.hpp
Normal file
@@ -0,0 +1,42 @@
|
||||
#pragma once
|
||||
|
||||
#include <memory>
|
||||
#include <unordered_map>
|
||||
#include "WaylandProtocol.hpp"
|
||||
#include "../helpers/signal/Signal.hpp"
|
||||
#include "cursor-shape-v1.hpp"
|
||||
|
||||
class CCursorShapeProtocol : public IWaylandProtocol {
|
||||
public:
|
||||
CCursorShapeProtocol(const wl_interface* iface, const int& ver, const std::string& name);
|
||||
|
||||
virtual void bindManager(wl_client* client, void* data, uint32_t ver, uint32_t id);
|
||||
|
||||
void onManagerResourceDestroy(wl_resource* res);
|
||||
void onDeviceResourceDestroy(wl_resource* res);
|
||||
|
||||
void onGetPointer(CWpCursorShapeManagerV1* pMgr, uint32_t id, wl_resource* pointer);
|
||||
void onGetTabletToolV2(CWpCursorShapeManagerV1* pMgr, uint32_t id, wl_resource* tablet);
|
||||
|
||||
void onSetShape(CWpCursorShapeDeviceV1* pMgr, uint32_t serial, wpCursorShapeDeviceV1Shape shape);
|
||||
|
||||
struct SSetShapeEvent {
|
||||
CWpCursorShapeDeviceV1* pMgr = nullptr;
|
||||
wpCursorShapeDeviceV1Shape shape;
|
||||
std::string shapeName;
|
||||
};
|
||||
|
||||
struct {
|
||||
CSignal setShape;
|
||||
} events;
|
||||
|
||||
private:
|
||||
void createCursorShapeDevice(CWpCursorShapeManagerV1* pMgr, uint32_t id, wl_resource* resource);
|
||||
|
||||
std::unordered_map<wl_resource*, SP<CWpCursorShapeDeviceV1>> m_mDevices;
|
||||
std::vector<UP<CWpCursorShapeManagerV1>> m_vManagers;
|
||||
};
|
||||
|
||||
namespace PROTO {
|
||||
inline UP<CCursorShapeProtocol> cursorShape;
|
||||
};
|
Reference in New Issue
Block a user