mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 16:05:58 +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>
58 lines
1.6 KiB
C++
58 lines
1.6 KiB
C++
#pragma once
|
|
|
|
#include <memory>
|
|
#include <vector>
|
|
#include <cstdint>
|
|
#include "WaylandProtocol.hpp"
|
|
#include "wlr-gamma-control-unstable-v1.hpp"
|
|
#include "../helpers/signal/Signal.hpp"
|
|
|
|
class CMonitor;
|
|
|
|
class CGammaControl {
|
|
public:
|
|
CGammaControl(SP<CZwlrGammaControlV1> resource_, wl_resource* output);
|
|
~CGammaControl();
|
|
|
|
bool good();
|
|
void applyToMonitor();
|
|
CMonitor* getMonitor();
|
|
|
|
private:
|
|
SP<CZwlrGammaControlV1> resource;
|
|
CMonitor* pMonitor = nullptr;
|
|
size_t gammaSize = 0;
|
|
bool gammaTableSet = false;
|
|
std::vector<uint16_t> gammaTable; // [r,g,b]+
|
|
|
|
void onMonitorDestroy();
|
|
|
|
struct {
|
|
CHyprSignalListener monitorDisconnect;
|
|
CHyprSignalListener monitorDestroy;
|
|
} listeners;
|
|
};
|
|
|
|
class CGammaControlProtocol : public IWaylandProtocol {
|
|
public:
|
|
CGammaControlProtocol(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);
|
|
|
|
void applyGammaToState(CMonitor* pMonitor);
|
|
|
|
private:
|
|
void onManagerResourceDestroy(wl_resource* res);
|
|
void destroyGammaControl(CGammaControl* gamma);
|
|
void onGetGammaControl(CZwlrGammaControlManagerV1* pMgr, uint32_t id, wl_resource* output);
|
|
|
|
//
|
|
std::vector<UP<CZwlrGammaControlManagerV1>> m_vManagers;
|
|
std::vector<UP<CGammaControl>> m_vGammaControllers;
|
|
|
|
friend class CGammaControl;
|
|
};
|
|
|
|
namespace PROTO {
|
|
inline UP<CGammaControlProtocol> gamma;
|
|
};
|