awExamScore.h 666 B

12345678910111213141516171819202122232425262728293031323334
  1. #ifndef AWEXAMSCORE_H
  2. #define AWEXAMSCORE_H
  3. #include <QWidget>
  4. #include "CHttpBll.h"
  5. namespace Ui {
  6. class awExamScore;
  7. }
  8. class awExamScore : public QWidget
  9. {
  10. Q_OBJECT
  11. signals:
  12. void goHomePage();
  13. public:
  14. explicit awExamScore(QWidget *parent = nullptr);
  15. ~awExamScore();
  16. void setUI(const int nLeft, const int nTop, const int nWidth, const int nHeight);
  17. private slots:
  18. void onGetExamProperty(CGetExamProperty getExamProperty);
  19. void onGetEndExamInfo(CGetEndExamInfo getEndExamInfo);
  20. void on_btn_awes_goback_clicked();
  21. private:
  22. void getObjectiveScore();
  23. Ui::awExamScore *ui;
  24. __int64 m_getScoreEndTime;
  25. };
  26. #endif // AWEXAMSCORE_H