Files
GUI/src/generalform.h

30 lines
466 B
C
Raw Normal View History

2021-12-07 14:14:20 +08:00
#ifndef GENERALFORM_H
#define GENERALFORM_H
#include <QWidget>
class QPushButton;
class QVBoxLayout;
class SelectDialog;
2021-12-21 16:15:07 +08:00
class QLabel;
2021-12-07 14:14:20 +08:00
class GeneralForm : public QWidget
{
Q_OBJECT
public:
explicit GeneralForm(QWidget* parent = nullptr);
signals:
public slots:
protected:
void changeEvent(QEvent* event);
private:
2021-12-21 16:15:07 +08:00
void retranslateUi();
2021-12-07 14:14:20 +08:00
QVBoxLayout* layout = nullptr;
SelectDialog* dialog = nullptr;
2021-12-21 16:15:07 +08:00
QLabel* lbl_lan = nullptr;
2021-12-07 14:14:20 +08:00
};
#endif // GENERALFORM_H