#ifndef GENERALFORM_H #define GENERALFORM_H #include class QPushButton; class QVBoxLayout; class SelectDialog; class QLabel; class GeneralForm : public QWidget { Q_OBJECT public: explicit GeneralForm(QWidget* parent = nullptr); signals: public slots: protected: void changeEvent(QEvent* event); private: void retranslateUi(); QVBoxLayout* layout = nullptr; SelectDialog* dialog = nullptr; QLabel* lbl_lan = nullptr; }; #endif // GENERALFORM_H