protocols: add hyprland_surface_v1 implementation (#8877)

This commit is contained in:
outfoxxed
2025-01-01 15:34:02 -08:00
committed by GitHub
parent 9f3c9ac01a
commit dde3e082c9
11 changed files with 192 additions and 15 deletions

View File

@@ -0,0 +1,54 @@
#pragma once
#include <memory>
#include <vector>
#include <unordered_map>
#include "WaylandProtocol.hpp"
#include "hyprland-surface-v1.hpp"
#include "../helpers/signal/Signal.hpp"
class CWLSurfaceResource;
class CHyprlandSurfaceProtocol;
class CHyprlandSurface {
public:
CHyprlandSurface(SP<CHyprlandSurfaceV1> resource, SP<CWLSurfaceResource> surface);
bool good() const;
void setResource(SP<CHyprlandSurfaceV1> resource);
private:
SP<CHyprlandSurfaceV1> m_pResource;
WP<CWLSurfaceResource> m_pSurface;
float m_fOpacity = 1.0;
void destroy();
struct {
CHyprSignalListener surfaceCommitted;
CHyprSignalListener surfaceDestroyed;
} listeners;
friend class CHyprlandSurfaceProtocol;
};
class CHyprlandSurfaceProtocol : public IWaylandProtocol {
public:
CHyprlandSurfaceProtocol(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);
private:
void destroyManager(CHyprlandSurfaceManagerV1* res);
void destroySurface(CHyprlandSurface* surface);
void getSurface(CHyprlandSurfaceManagerV1* manager, uint32_t id, SP<CWLSurfaceResource> surface);
std::vector<UP<CHyprlandSurfaceManagerV1>> m_vManagers;
std::unordered_map<WP<CWLSurfaceResource>, UP<CHyprlandSurface>> m_mSurfaces;
friend class CHyprlandSurface;
};
namespace PROTO {
inline UP<CHyprlandSurfaceProtocol> hyprlandSurface;
}