clopPaperReport.h 630 B

1234567891011121314151617181920212223242526272829
  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. public:
  14. explicit clopPaperReport(__int64 nExamRecordDataId, bool bFromCache = false, QWidget *parent = nullptr);
  15. ~clopPaperReport();
  16. int setUI(const int nWidth);
  17. private slots:
  18. void onGetPracticeDetailInfo(CGetPracticeDetailInfo getPracticeDetailInfo);
  19. private:
  20. QString getQuestionName(QString questionType);
  21. Ui::clopPaperReport *ui;
  22. };
  23. #endif // CLOPPAPERREPORT_H