mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJClient.git
synced 2026-03-28 05:25:39 +03:00
Init commit
This commit is contained in:
21
Core/screenchecker.h
Normal file
21
Core/screenchecker.h
Normal file
@@ -0,0 +1,21 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user