fbFillBlankBody.h 539 B

123456789101112131415161718192021222324252627282930
  1. #ifndef FBFILLBLANKBODY_H
  2. #define FBFILLBLANKBODY_H
  3. #include <QWidget>
  4. #include "json/json.h"
  5. #include "CBaseWidget.h"
  6. namespace Ui {
  7. class fbFillBlankBody;
  8. }
  9. class fbFillBlankBody : public CBaseWidget
  10. {
  11. Q_OBJECT
  12. public:
  13. explicit fbFillBlankBody(Json::Value jBody, QWidget *parent = nullptr);
  14. ~fbFillBlankBody();
  15. int setUI(const int nWidth);
  16. void setQuesionNo(QString sItemNo);//设置题号
  17. int widgetType();
  18. private:
  19. Ui::fbFillBlankBody *ui;
  20. Json::Value m_jBody;
  21. };
  22. #endif // FBFILLBLANKBODY_H