mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJClient.git
synced 2026-03-28 05:25:39 +03:00
22 lines
332 B
C++
22 lines
332 B
C++
#ifndef SCREENCHECKER_H
|
|
#define SCREENCHECKER_H
|
|
|
|
#include <QObject>
|
|
#include <QScreen>
|
|
#include <QGuiApplication>
|
|
#include <QDebug>
|
|
|
|
class ScreenChecker
|
|
{
|
|
public:
|
|
ScreenChecker();
|
|
void Check();
|
|
QString getScreenCount() const;
|
|
|
|
private:
|
|
qint64 screenCount;
|
|
QList<QScreen *> screens;
|
|
};
|
|
|
|
#endif // SCREENCHECKER_H
|