ProgrammPage.h 930 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. // *****************************************************************************
  2. // 版权所有(C)2023~2099 上海骄成超声波技术有限公司
  3. // 保留所有权利
  4. // *****************************************************************************
  5. // 作者 : 杨坚
  6. // 版本 : 1.0
  7. // 功能说明:
  8. // 物料参数
  9. // *****************************************************************************
  10. #ifndef __PROGRAMMPAGE_H__
  11. #define __PROGRAMMPAGE_H__ 1
  12. #include "ui_ProgrammPage.h"
  13. #include "WaffleProgramPage.h"
  14. #include "BondMatrixProgramPage.h"
  15. #include "WaferProgramPage.h"
  16. class ProgrammPage : public QWidget
  17. {
  18. Q_OBJECT
  19. public:
  20. ProgrammPage(QWidget *parent = nullptr);
  21. ~ProgrammPage();
  22. private:
  23. void initPage();
  24. private:
  25. Ui::ProgrammPageClass ui;
  26. BondMatrixProgramPage* m_BondMatrixProgramPage = nullptr;
  27. WaffleProgramPage* m_pWaffleProgrammPage = nullptr;
  28. WaferProgramPage* m_WaferProgramPage = nullptr;
  29. };
  30. #endif //__PROGRAMMPAGE_H__