mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-15 11:25:59 +01:00
xdg-output: minor cleanups
This commit is contained in:
parent
1ed925b69c
commit
8e237b006f
2 changed files with 17 additions and 21 deletions
|
@ -29,28 +29,19 @@ void CXDGOutputProtocol::bindManager(wl_client* client, void* data, uint32_t ver
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
RESOURCE->setDestroy([this](CZxdgOutputManagerV1* res) { this->onManagerResourceDestroy(res->resource()); });
|
RESOURCE->setDestroy([this](CZxdgOutputManagerV1* res) { onManagerResourceDestroy(res->resource()); });
|
||||||
RESOURCE->setOnDestroy([this](CZxdgOutputManagerV1* res) { this->onManagerResourceDestroy(res->resource()); });
|
RESOURCE->setOnDestroy([this](CZxdgOutputManagerV1* res) { onManagerResourceDestroy(res->resource()); });
|
||||||
RESOURCE->setGetXdgOutput([this](CZxdgOutputManagerV1* mgr, uint32_t id, wl_resource* output) { this->onManagerGetXDGOutput(mgr, id, output); });
|
RESOURCE->setGetXdgOutput([this](CZxdgOutputManagerV1* mgr, uint32_t id, wl_resource* output) { onManagerGetXDGOutput(mgr, id, output); });
|
||||||
}
|
}
|
||||||
|
|
||||||
CXDGOutputProtocol::CXDGOutputProtocol(const wl_interface* iface, const int& ver, const std::string& name) : IWaylandProtocol(iface, ver, name) {
|
CXDGOutputProtocol::CXDGOutputProtocol(const wl_interface* iface, const int& ver, const std::string& name) : IWaylandProtocol(iface, ver, name) {
|
||||||
static auto P = g_pHookSystem->hookDynamic("monitorLayoutChanged", [this](void* self, SCallbackInfo& info, std::any param) { this->updateAllOutputs(); });
|
static auto P = g_pHookSystem->hookDynamic("monitorLayoutChanged", [this](void* self, SCallbackInfo& info, std::any param) { this->updateAllOutputs(); });
|
||||||
static auto P2 = g_pHookSystem->hookDynamic("configReloaded", [this](void* self, SCallbackInfo& info, std::any param) { this->updateAllOutputs(); });
|
static auto P2 = g_pHookSystem->hookDynamic("configReloaded", [this](void* self, SCallbackInfo& info, std::any param) { this->updateAllOutputs(); });
|
||||||
static auto P3 = g_pHookSystem->hookDynamic("monitorRemoved", [this](void* self, SCallbackInfo& info, std::any param) {
|
|
||||||
const auto PMONITOR = std::any_cast<CMonitor*>(param);
|
|
||||||
for (auto const& o : m_vXDGOutputs) {
|
|
||||||
if (o->monitor == PMONITOR)
|
|
||||||
o->monitor = nullptr;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void CXDGOutputProtocol::onManagerGetXDGOutput(CZxdgOutputManagerV1* mgr, uint32_t id, wl_resource* outputResource) {
|
void CXDGOutputProtocol::onManagerGetXDGOutput(CZxdgOutputManagerV1* mgr, uint32_t id, wl_resource* outputResource) {
|
||||||
const auto OUTPUT = CWLOutputResource::fromResource(outputResource);
|
const auto OUTPUT = CWLOutputResource::fromResource(outputResource);
|
||||||
|
const auto PMONITOR = OUTPUT->monitor.lock();
|
||||||
const auto PMONITOR = OUTPUT->monitor.get();
|
|
||||||
|
|
||||||
const auto CLIENT = mgr->client();
|
const auto CLIENT = mgr->client();
|
||||||
|
|
||||||
CXDGOutput* pXDGOutput = m_vXDGOutputs.emplace_back(std::make_unique<CXDGOutput>(makeShared<CZxdgOutputV1>(CLIENT, mgr->version(), id), PMONITOR)).get();
|
CXDGOutput* pXDGOutput = m_vXDGOutputs.emplace_back(std::make_unique<CXDGOutput>(makeShared<CZxdgOutputV1>(CLIENT, mgr->version(), id), PMONITOR)).get();
|
||||||
|
@ -66,8 +57,12 @@ void CXDGOutputProtocol::onManagerGetXDGOutput(CZxdgOutputManagerV1* mgr, uint32
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!PMONITOR)
|
if (!PMONITOR) {
|
||||||
|
LOGM(ERR, "New xdg_output from client {:x} ({}) has no CMonitor?!", (uintptr_t)CLIENT, pXDGOutput->isXWayland ? "xwayland" : "not xwayland");
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
LOGM(LOG, "New xdg_output for {}: client {:x} ({})", PMONITOR->szName, (uintptr_t)CLIENT, pXDGOutput->isXWayland ? "xwayland" : "not xwayland");
|
||||||
|
|
||||||
const auto XDGVER = pXDGOutput->resource->version();
|
const auto XDGVER = pXDGOutput->resource->version();
|
||||||
|
|
||||||
|
@ -84,8 +79,9 @@ void CXDGOutputProtocol::onManagerGetXDGOutput(CZxdgOutputManagerV1* mgr, uint32
|
||||||
}
|
}
|
||||||
|
|
||||||
void CXDGOutputProtocol::updateAllOutputs() {
|
void CXDGOutputProtocol::updateAllOutputs() {
|
||||||
for (auto const& o : m_vXDGOutputs) {
|
LOGM(LOG, "updating all xdg_output heads");
|
||||||
|
|
||||||
|
for (auto const& o : m_vXDGOutputs) {
|
||||||
if (!o->monitor)
|
if (!o->monitor)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
@ -97,7 +93,7 @@ void CXDGOutputProtocol::updateAllOutputs() {
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
||||||
CXDGOutput::CXDGOutput(SP<CZxdgOutputV1> resource_, CMonitor* monitor_) : monitor(monitor_), resource(resource_) {
|
CXDGOutput::CXDGOutput(SP<CZxdgOutputV1> resource_, SP<CMonitor> monitor_) : monitor(monitor_), resource(resource_) {
|
||||||
if (!resource->resource())
|
if (!resource->resource())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
|
@ -9,12 +9,12 @@ class CXDGOutputProtocol;
|
||||||
|
|
||||||
class CXDGOutput {
|
class CXDGOutput {
|
||||||
public:
|
public:
|
||||||
CXDGOutput(SP<CZxdgOutputV1> resource, CMonitor* monitor_);
|
CXDGOutput(SP<CZxdgOutputV1> resource, SP<CMonitor> monitor_);
|
||||||
|
|
||||||
void sendDetails();
|
void sendDetails();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
CMonitor* monitor = nullptr;
|
WP<CMonitor> monitor;
|
||||||
SP<CZxdgOutputV1> resource;
|
SP<CZxdgOutputV1> resource;
|
||||||
|
|
||||||
std::optional<Vector2D> overridePosition;
|
std::optional<Vector2D> overridePosition;
|
||||||
|
@ -30,12 +30,12 @@ class CXDGOutputProtocol : public IWaylandProtocol {
|
||||||
CXDGOutputProtocol(const wl_interface* iface, const int& ver, const std::string& name);
|
CXDGOutputProtocol(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);
|
virtual void bindManager(wl_client* client, void* data, uint32_t ver, uint32_t id);
|
||||||
|
void updateAllOutputs();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void onManagerResourceDestroy(wl_resource* res);
|
void onManagerResourceDestroy(wl_resource* res);
|
||||||
void onOutputResourceDestroy(wl_resource* res);
|
void onOutputResourceDestroy(wl_resource* res);
|
||||||
void onManagerGetXDGOutput(CZxdgOutputManagerV1* mgr, uint32_t id, wl_resource* outputResource);
|
void onManagerGetXDGOutput(CZxdgOutputManagerV1* mgr, uint32_t id, wl_resource* outputResource);
|
||||||
void updateAllOutputs();
|
|
||||||
|
|
||||||
//
|
//
|
||||||
std::vector<UP<CZxdgOutputManagerV1>> m_vManagerResources;
|
std::vector<UP<CZxdgOutputManagerV1>> m_vManagerResources;
|
||||||
|
|
Loading…
Reference in a new issue