mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-15 22:46:01 +01:00
016da234d0
Moves Hyprland from wlroots to aquamarine for the backend. --------- Signed-off-by: Vaxry <vaxry@vaxry.net> Co-authored-by: Mihai Fufezan <mihai@fufexan.net> Co-authored-by: Jan Beich <jbeich@FreeBSD.org> Co-authored-by: vaxerski <vaxerski@users.noreply.github.com> Co-authored-by: UjinT34 <41110182+UjinT34@users.noreply.github.com> Co-authored-by: Tom Englund <tomenglund26@gmail.com> Co-authored-by: Ikalco <73481042+ikalco@users.noreply.github.com> Co-authored-by: diniamo <diniamo53@gmail.com>
65 lines
1.8 KiB
C++
65 lines
1.8 KiB
C++
#pragma once
|
|
|
|
#include <memory>
|
|
#include <vector>
|
|
#include <cstdint>
|
|
#include "../WaylandProtocol.hpp"
|
|
#include "wayland.hpp"
|
|
#include "../../helpers/signal/Signal.hpp"
|
|
|
|
class CMonitor;
|
|
|
|
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;
|
|
|
|
WP<CWLOutputResource> self;
|
|
|
|
private:
|
|
SP<CWlOutput> resource;
|
|
wl_client* pClient = nullptr;
|
|
|
|
friend class CWLOutputProtocol;
|
|
};
|
|
|
|
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);
|
|
void sendDone();
|
|
|
|
WP<CMonitor> monitor;
|
|
|
|
// 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();
|
|
bool isDefunct(); // true if above was called
|
|
|
|
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 {
|
|
inline std::unordered_map<std::string, UP<CWLOutputProtocol>> outputs;
|
|
};
|