mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2025-07-01 23:35:55 +00:00
39 lines
1.0 KiB
C++
39 lines
1.0 KiB
C++
#pragma once
|
|
|
|
#include <QObject>
|
|
#include <QRect>
|
|
|
|
class SystemProperties : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
SystemProperties();
|
|
|
|
Q_PROPERTY(bool hasHardwareAcceleration MEMBER hasHardwareAcceleration CONSTANT)
|
|
Q_PROPERTY(bool isRunningWayland MEMBER isRunningWayland CONSTANT)
|
|
Q_PROPERTY(bool isWow64 MEMBER isWow64 CONSTANT)
|
|
Q_PROPERTY(bool hasBrowser MEMBER hasBrowser CONSTANT)
|
|
Q_PROPERTY(QString unmappedGamepads MEMBER unmappedGamepads NOTIFY unmappedGamepadsChanged)
|
|
Q_PROPERTY(int maximumStreamingFrameRate MEMBER maximumStreamingFrameRate CONSTANT)
|
|
|
|
Q_INVOKABLE QRect getDesktopResolution(int displayIndex);
|
|
Q_INVOKABLE QRect getNativeResolution(int displayIndex);
|
|
|
|
signals:
|
|
void unmappedGamepadsChanged();
|
|
|
|
private:
|
|
void querySdlVideoInfo();
|
|
|
|
bool hasHardwareAcceleration;
|
|
bool isRunningWayland;
|
|
bool isWow64;
|
|
bool hasBrowser;
|
|
QString unmappedGamepads;
|
|
int maximumStreamingFrameRate;
|
|
QList<QRect> monitorDesktopResolutions;
|
|
QList<QRect> monitorNativeResolutions;
|
|
};
|
|
|