This commit is contained in:
2026-06-14 15:54:35 +08:00
commit 3caeb07e54
2804 changed files with 373231 additions and 0 deletions
@@ -0,0 +1,22 @@
#ifndef T_ELASCREEN_H
#define T_ELASCREEN_H
#include <QWidget>
#include "T_BasePage.h"
#ifdef Q_OS_WIN
class ElaDxgiScreen;
class ElaComboBox;
class T_ElaScreen : public T_BasePage
{
Q_OBJECT
public:
Q_INVOKABLE explicit T_ElaScreen(QWidget* parent = nullptr);
~T_ElaScreen();
private:
ElaDxgiScreen* _dxgiScreen{nullptr};
ElaComboBox* _dxComboBox{nullptr};
ElaComboBox* _outputComboBox{nullptr};
};
#endif
#endif // T_ELASCREEN_H