mirror of
https://git.outfoxxed.me/quickshell/quickshell.git
synced 2026-02-23 03:33:57 +11:00
60 lines
1.7 KiB
C++
60 lines
1.7 KiB
C++
#include "monitor.hpp"
|
|
|
|
#include <qcontainerfwd.h>
|
|
#include <qobject.h>
|
|
#include <qproperty.h>
|
|
#include <qstring.h>
|
|
#include <qtmetamacros.h>
|
|
#include <qtypes.h>
|
|
|
|
#include "controller.hpp"
|
|
#include "workspace.hpp"
|
|
|
|
namespace qs::i3::ipc {
|
|
|
|
I3Monitor::I3Monitor(I3IpcController* ipc): QObject(ipc), ipc(ipc) {
|
|
// clang-format off
|
|
this->bFocused.setBinding([this]() { return this->ipc->bindableFocusedMonitor().value() == this; });
|
|
// clang-format on
|
|
}
|
|
|
|
QVariantMap I3Monitor::lastIpcObject() const { return this->mLastIpcObject; };
|
|
|
|
void I3Monitor::updateFromObject(const QVariantMap& obj) {
|
|
if (obj != this->mLastIpcObject) {
|
|
this->mLastIpcObject = obj;
|
|
emit this->lastIpcObjectChanged();
|
|
}
|
|
|
|
auto activeWorkspaceName = obj.value("current_workspace").value<QString>();
|
|
auto rect = obj.value("rect").toMap();
|
|
|
|
Qt::beginPropertyUpdateGroup();
|
|
|
|
this->bId = obj.value("id").value<qint32>();
|
|
this->bName = obj.value("name").value<QString>();
|
|
this->bPower = obj.value("power").value<bool>();
|
|
this->bX = rect.value("x").value<qint32>();
|
|
this->bY = rect.value("y").value<qint32>();
|
|
this->bWidth = rect.value("width").value<qint32>();
|
|
this->bHeight = rect.value("height").value<qint32>();
|
|
this->bScale = obj.value("scale").value<qreal>();
|
|
|
|
if (!this->bActiveWorkspace
|
|
|| activeWorkspaceName != this->bActiveWorkspace->bindableName().value())
|
|
{
|
|
if (activeWorkspaceName.isEmpty()) {
|
|
this->bActiveWorkspace = nullptr;
|
|
} else {
|
|
this->bActiveWorkspace = this->ipc->findWorkspaceByName(activeWorkspaceName);
|
|
}
|
|
};
|
|
|
|
Qt::endPropertyUpdateGroup();
|
|
}
|
|
|
|
void I3Monitor::updateInitial(const QString& name) { this->bName = name; }
|
|
|
|
void I3Monitor::setFocusedWorkspace(I3Workspace* workspace) { this->bActiveWorkspace = workspace; };
|
|
|
|
} // namespace qs::i3::ipc
|