EXDataView.h 633 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #ifndef EXDATAVIEW_H
  2. #define EXDATAVIEW_H
  3. #include "EXEvalView.h"
  4. class PushButton;
  5. class QTabWidget;
  6. class QHBoxLayout;
  7. /**
  8. * @brief The EXDataView class
  9. * 数据采集
  10. */
  11. class EXDataView : public EXEvalView
  12. {
  13. Q_OBJECT
  14. public:
  15. explicit EXDataView(ProjectInfo *proj, QWidget *parent);
  16. void setType(int type) override;
  17. signals:
  18. void signalCompleteStateChanged(bool complete);
  19. private:
  20. void setupTabWidget();
  21. bool checkDataComplete();
  22. public slots:
  23. void slotTabCurrentChanged(int index);
  24. void slotExportData();
  25. void slotDataEdited();
  26. signals:
  27. private:
  28. };
  29. #endif // EXDATAVIEW_H