1234567891011121314151617181920212223242526272829 |
- #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* languageWnd = nullptr;
- };
- #endif // SYSTEMINFOPAGE_H
|