mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-06 04:05:58 +01:00
67 lines
1.6 KiB
C++
67 lines
1.6 KiB
C++
|
#pragma once
|
||
|
|
||
|
#include <memory>
|
||
|
#include <vector>
|
||
|
#include <cstdint>
|
||
|
#include "WaylandProtocol.hpp"
|
||
|
#include "xwayland-shell-v1.hpp"
|
||
|
#include "../helpers/signal/Signal.hpp"
|
||
|
|
||
|
class CXWaylandSurfaceResource {
|
||
|
public:
|
||
|
CXWaylandSurfaceResource(SP<CXwaylandSurfaceV1> resource_, wlr_surface* surface_);
|
||
|
~CXWaylandSurfaceResource();
|
||
|
|
||
|
bool good();
|
||
|
wl_client* client();
|
||
|
|
||
|
struct {
|
||
|
CSignal destroy;
|
||
|
} events;
|
||
|
|
||
|
uint64_t serial = 0;
|
||
|
wlr_surface* surface = nullptr;
|
||
|
|
||
|
WP<CXWaylandSurfaceResource> self;
|
||
|
|
||
|
private:
|
||
|
SP<CXwaylandSurfaceV1> resource;
|
||
|
wl_client* pClient = nullptr;
|
||
|
};
|
||
|
|
||
|
class CXWaylandShellResource {
|
||
|
public:
|
||
|
CXWaylandShellResource(SP<CXwaylandShellV1> resource_);
|
||
|
|
||
|
bool good();
|
||
|
|
||
|
private:
|
||
|
SP<CXwaylandShellV1> resource;
|
||
|
};
|
||
|
|
||
|
class CXWaylandShellProtocol : public IWaylandProtocol {
|
||
|
public:
|
||
|
CXWaylandShellProtocol(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);
|
||
|
|
||
|
struct {
|
||
|
CSignal newSurface; // SP<CXWaylandSurfaceResource>. Fired when it sets a serial, otherwise it's useless
|
||
|
} events;
|
||
|
|
||
|
private:
|
||
|
void destroyResource(CXWaylandSurfaceResource* resource);
|
||
|
void destroyResource(CXWaylandShellResource* resource);
|
||
|
|
||
|
//
|
||
|
std::vector<SP<CXWaylandShellResource>> m_vManagers;
|
||
|
std::vector<SP<CXWaylandSurfaceResource>> m_vSurfaces;
|
||
|
|
||
|
friend class CXWaylandSurfaceResource;
|
||
|
friend class CXWaylandShellResource;
|
||
|
};
|
||
|
|
||
|
namespace PROTO {
|
||
|
inline UP<CXWaylandShellProtocol> xwaylandShell;
|
||
|
};
|