launcher.h 600 B

123456789101112131415161718192021222324252627282930313233
  1. #ifndef LAUNCHER_H
  2. #define LAUNCHER_H
  3. #include <QWidget>
  4. #include "CLogTrack.h"
  5. QT_BEGIN_NAMESPACE
  6. namespace Ui { class launcher; }
  7. QT_END_NAMESPACE
  8. class launcher : public QWidget
  9. {
  10. Q_OBJECT
  11. public:
  12. launcher(QWidget *parent = nullptr);
  13. ~launcher();
  14. private slots:
  15. void on_btn_close_clicked();
  16. void onCheckUnpass();
  17. void onCheckpassed(bool bUpdateVersion);
  18. void onSysUpadte();
  19. void onUpdateSucceed(bool bUpdateOeLauncher);
  20. private:
  21. void showEvent(QShowEvent *event);
  22. void initParam();
  23. void initUI();
  24. Ui::launcher *ui;
  25. };
  26. #endif // LAUNCHER_H