mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-10-17 23:41:44 +00:00
protocols: add hyprland_surface_v1 implementation (#8877)
This commit is contained in:
54
src/protocols/HyprlandSurface.hpp
Normal file
54
src/protocols/HyprlandSurface.hpp
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user