mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-08-05 06:31:57 -07:00
wlr-output-power: move to new impl
This commit is contained in:
50
src/protocols/OutputPower.hpp
Normal file
50
src/protocols/OutputPower.hpp
Normal file
@@ -0,0 +1,50 @@
|
||||
#pragma once
|
||||
|
||||
#include <memory>
|
||||
#include <vector>
|
||||
#include <cstdint>
|
||||
#include "WaylandProtocol.hpp"
|
||||
#include "wlr-output-power-management-unstable-v1.hpp"
|
||||
#include "../helpers/signal/Listener.hpp"
|
||||
|
||||
class CMonitor;
|
||||
|
||||
class COutputPower {
|
||||
public:
|
||||
COutputPower(SP<CZwlrOutputPowerV1> resource_, CMonitor* pMonitor);
|
||||
|
||||
bool good();
|
||||
|
||||
private:
|
||||
SP<CZwlrOutputPowerV1> resource;
|
||||
|
||||
CMonitor* pMonitor = nullptr;
|
||||
|
||||
struct {
|
||||
CHyprSignalListener monitorDestroy;
|
||||
CHyprSignalListener monitorState;
|
||||
CHyprSignalListener monitorDpms;
|
||||
} listeners;
|
||||
};
|
||||
|
||||
class COutputPowerProtocol : public IWaylandProtocol {
|
||||
public:
|
||||
COutputPowerProtocol(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 onManagerResourceDestroy(wl_resource* res);
|
||||
void destroyOutputPower(COutputPower* pointer);
|
||||
void onGetOutputPower(CZwlrOutputPowerManagerV1* pMgr, uint32_t id, wl_resource* output);
|
||||
|
||||
//
|
||||
std::vector<UP<CZwlrOutputPowerManagerV1>> m_vManagers;
|
||||
std::vector<UP<COutputPower>> m_vOutputPowers;
|
||||
|
||||
friend class COutputPower;
|
||||
};
|
||||
|
||||
namespace PROTO {
|
||||
inline UP<COutputPowerProtocol> outputPower;
|
||||
};
|
Reference in New Issue
Block a user