SystemInfoPage.h 499 B

1234567891011121314151617181920212223242526272829
  1. #ifndef SYSTEMINFOPAGE_H
  2. #define SYSTEMINFOPAGE_H
  3. #include <QMainWindow>
  4. #include "PageWnd/LanguageSwitchWnd.h"
  5. namespace Ui {
  6. class SystemInfoPage;
  7. }
  8. class SystemInfoPage : public QMainWindow
  9. {
  10. Q_OBJECT
  11. public:
  12. explicit SystemInfoPage(QWidget *parent = nullptr);
  13. ~SystemInfoPage();
  14. void InitWnd();
  15. signals:
  16. void languageChanged(const QString& langCode);
  17. private:
  18. Ui::SystemInfoPage *ui;
  19. LanguageSwitchWnd* languageWnd = nullptr;
  20. };
  21. #endif // SYSTEMINFOPAGE_H