clopPaperReport.h 676 B

123456789101112131415161718192021222324252627282930
  1. #ifndef CLOPPAPERREPORT_H
  2. #define CLOPPAPERREPORT_H
  3. #include <QWidget>
  4. #include "CHttpBll.h"
  5. namespace Ui {
  6. class clopPaperReport;
  7. }
  8. class clopPaperReport : public QWidget
  9. {
  10. Q_OBJECT
  11. signals:
  12. void heightChange(int nHeight);
  13. void objectiveAccuracy(double fAccuracy);
  14. public:
  15. explicit clopPaperReport(__int64 nExamRecordDataId, bool bFromCache = false, QWidget *parent = nullptr);
  16. ~clopPaperReport();
  17. int setUI(const int nWidth);
  18. private slots:
  19. void onGetPracticeDetailInfo(CGetPracticeDetailInfo getPracticeDetailInfo);
  20. private:
  21. QString getQuestionName(QString questionType);
  22. Ui::clopPaperReport *ui;
  23. };
  24. #endif // CLOPPAPERREPORT_H