2023-07-18 15:30:28 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "../defines.hpp"
|
|
|
|
|
|
|
|
class CWaylandResource {
|
|
|
|
public:
|
|
|
|
CWaylandResource(wl_client* client, const wl_interface* wlInterface, uint32_t version, uint32_t id, bool destroyInDestructor = false);
|
|
|
|
~CWaylandResource();
|
|
|
|
|
|
|
|
bool good();
|
|
|
|
wl_resource* resource();
|
|
|
|
uint32_t version();
|
|
|
|
|
|
|
|
void setImplementation(const void* impl, void* data, wl_resource_destroy_func_t df);
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool m_bDestroyInDestructor = false;
|
|
|
|
bool m_bImplementationSet = false;
|
|
|
|
wl_client* m_pWLClient = nullptr;
|
|
|
|
wl_resource* m_pWLResource = nullptr;
|
|
|
|
};
|
|
|
|
|
2023-08-07 13:35:19 +02:00
|
|
|
class IWaylandProtocol {
|
2023-07-18 15:30:28 +02:00
|
|
|
public:
|
|
|
|
IWaylandProtocol(const wl_interface* iface, const int& ver, const std::string& name);
|
|
|
|
~IWaylandProtocol();
|
|
|
|
|
|
|
|
virtual void onDisplayDestroy();
|
|
|
|
|
2023-08-07 13:35:19 +02:00
|
|
|
virtual void bindManager(wl_client* client, void* data, uint32_t ver, uint32_t id) = 0;
|
2023-07-18 15:30:28 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
wl_global* m_pGlobal = nullptr;
|
|
|
|
wl_listener m_liDisplayDestroy;
|
|
|
|
};
|