quickshell/src/cpp/qmlglobal.hpp

36 lines
792 B
C++
Raw Normal View History

2024-02-04 12:58:58 +00:00
#pragma once
#include <qcontainerfwd.h>
#include <qobject.h>
#include <qqmlintegration.h>
#include <qqmllist.h>
#include <qtmetamacros.h>
#include <qtypes.h>
#include "qmlscreen.hpp"
class QtShellGlobal: public QObject {
Q_OBJECT;
Q_PROPERTY(QQmlListProperty<QtShellScreenInfo> screens READ screens NOTIFY screensChanged);
QML_SINGLETON;
QML_NAMED_ELEMENT(QtShell);
2024-02-04 12:58:58 +00:00
public:
QtShellGlobal(QObject* parent = nullptr);
QQmlListProperty<QtShellScreenInfo> screens();
signals:
void screensChanged();
public slots:
void reload(bool hard);
2024-02-04 12:58:58 +00:00
void updateScreens();
private:
static qsizetype screensCount(QQmlListProperty<QtShellScreenInfo>* prop);
static QtShellScreenInfo* screenAt(QQmlListProperty<QtShellScreenInfo>* prop, qsizetype i);
QVector<QtShellScreenInfo*> mScreens;
};