This commit is contained in:
Misaki
2026-06-10 00:57:54 +08:00
commit 7551a85abe
2805 changed files with 373529 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