123456789101112131415161718192021222324252627282930 |
- #ifndef SYSTEMINFOPAGE_H
- #define SYSTEMINFOPAGE_H
- #include <QMainWindow>
- #include "PageWnd/LanguageSwitchWnd.h"
- namespace Ui {
- class SystemInfoPage;
- }
- class SystemInfoPage : public QMainWindow
- {
- Q_OBJECT
- public:
- explicit SystemInfoPage(QWidget *parent = nullptr);
- ~SystemInfoPage();
- void InitWnd();
- signals:
- void languageChanged(const QString& langCode);
- private:
- Ui::SystemInfoPage *ui;
- LanguageSwitchWnd* m_pLanguageWnd = nullptr;
- };
- #endif
|