2024-06-08 10:07:59 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include <vector>
|
|
|
|
#include <cstdint>
|
|
|
|
#include "../WaylandProtocol.hpp"
|
|
|
|
#include "wayland.hpp"
|
2024-06-11 17:17:45 +02:00
|
|
|
#include "../../helpers/signal/Signal.hpp"
|
2024-06-08 10:07:59 +02:00
|
|
|
|
|
|
|
class CMonitor;
|
2024-07-22 16:56:51 +02:00
|
|
|
class CWLOutputProtocol;
|
2024-06-08 10:07:59 +02:00
|
|
|
|
|
|
|
class CWLOutputResource {
|
|
|
|
public:
|
|
|
|
CWLOutputResource(SP<CWlOutput> resource_, SP<CMonitor> pMonitor);
|
|
|
|
static SP<CWLOutputResource> fromResource(wl_resource*);
|
|
|
|
|
|
|
|
bool good();
|
|
|
|
wl_client* client();
|
|
|
|
SP<CWlOutput> getResource();
|
|
|
|
void updateState();
|
|
|
|
|
|
|
|
WP<CMonitor> monitor;
|
2024-07-22 16:56:51 +02:00
|
|
|
WP<CWLOutputProtocol> owner;
|
2024-06-08 10:07:59 +02:00
|
|
|
WP<CWLOutputResource> self;
|
|
|
|
|
|
|
|
private:
|
|
|
|
SP<CWlOutput> resource;
|
|
|
|
wl_client* pClient = nullptr;
|
2024-07-21 13:09:54 +02:00
|
|
|
|
|
|
|
friend class CWLOutputProtocol;
|
2024-06-08 10:07:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class CWLOutputProtocol : public IWaylandProtocol {
|
|
|
|
public:
|
|
|
|
CWLOutputProtocol(const wl_interface* iface, const int& ver, const std::string& name, SP<CMonitor> pMonitor);
|
|
|
|
|
|
|
|
virtual void bindManager(wl_client* client, void* data, uint32_t ver, uint32_t id);
|
|
|
|
|
|
|
|
SP<CWLOutputResource> outputResourceFrom(wl_client* client);
|
2024-07-21 13:09:54 +02:00
|
|
|
void sendDone();
|
2024-06-08 10:07:59 +02:00
|
|
|
|
|
|
|
WP<CMonitor> monitor;
|
2024-07-22 16:56:51 +02:00
|
|
|
WP<CWLOutputProtocol> self;
|
2024-06-08 10:07:59 +02:00
|
|
|
|
|
|
|
// will mark the protocol for removal, will be removed when no. of bound outputs is 0 (or when overwritten by a new global)
|
|
|
|
void remove();
|
2024-06-09 22:28:51 +02:00
|
|
|
bool isDefunct(); // true if above was called
|
2024-06-08 10:07:59 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
void destroyResource(CWLOutputResource* resource);
|
|
|
|
|
|
|
|
//
|
|
|
|
std::vector<SP<CWLOutputResource>> m_vOutputs;
|
|
|
|
bool defunct = false;
|
|
|
|
std::string szName = "";
|
|
|
|
|
|
|
|
struct {
|
|
|
|
CHyprSignalListener modeChanged;
|
|
|
|
} listeners;
|
|
|
|
|
|
|
|
friend class CWLOutputResource;
|
|
|
|
};
|
|
|
|
|
|
|
|
namespace PROTO {
|
2024-07-22 16:56:51 +02:00
|
|
|
inline std::unordered_map<std::string, SP<CWLOutputProtocol>> outputs;
|
2024-06-08 10:07:59 +02:00
|
|
|
};
|