mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJClient.git
synced 2026-03-28 05:25:39 +03:00
36 lines
674 B
C++
36 lines
674 B
C++
#ifndef SCREENCHECKER_H
|
|
#define SCREENCHECKER_H
|
|
|
|
#include "dataparser.h"
|
|
|
|
#include <QObject>
|
|
#include <QScreen>
|
|
#include <QGuiApplication>
|
|
#include <QDebug>
|
|
#include <QPushButton>
|
|
#include <QHBoxLayout>
|
|
|
|
class ScreenChecker : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ScreenChecker(DataParser *dataParser, QHBoxLayout *layout,QObject *parent = nullptr);
|
|
~ScreenChecker();
|
|
void check();
|
|
QString getScreenCount() const;
|
|
|
|
|
|
private:
|
|
DataParser *dataParser;
|
|
QWidget *widget;
|
|
QHBoxLayout *layout;
|
|
qint64 screenCount;
|
|
QList<QScreen *> screens;
|
|
QList<QPushButton *> buttons;
|
|
|
|
void updateDisplayData();
|
|
};
|
|
|
|
#endif // SCREENCHECKER_H
|