clopReport.h 577 B

12345678910111213141516171819202122232425262728293031
  1. #ifndef CLOPREPORT_H
  2. #define CLOPREPORT_H
  3. #include <QWidget>
  4. #include "CHttpBll.h"
  5. namespace Ui {
  6. class clopReport;
  7. }
  8. class clopReport : public QWidget
  9. {
  10. Q_OBJECT
  11. signals:
  12. void goback();
  13. public:
  14. explicit clopReport(CPracticeRecord pr, bool bFromCache = false, QWidget *parent = nullptr);
  15. ~clopReport();
  16. void setUI(const int nLeft, const int nTop, const int nWidth, const int nHeight);
  17. private slots:
  18. void on_btn_clop_goback_clicked();
  19. private:
  20. Ui::clopReport *ui;
  21. CPracticeRecord m_pr;
  22. bool m_bFromCache;
  23. };
  24. #endif // CLOPREPORT_H