1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- // *****************************************************************************
- // 版权所有(C)2023~2099 上海骄成超声波技术有限公司
- // 保留所有权利
- // *****************************************************************************
- // 作者 : 杨坚
- // 版本 : 1.0
- // 功能说明:
- // 物料参数
- // *****************************************************************************
- #ifndef __PROGRAMMPAGE_H__
- #define __PROGRAMMPAGE_H__ 1
- #include "ui_ProgrammPage.h"
- #include "WaffleProgramPage.h"
- #include "BondMatrixProgramPage.h"
- #include "WaferProgramPage.h"
- #include "TemplateProgramPage.h"
- #include "../TempControl/TempControlPage.h"
- class ProgrammPage : public QWidget
- {
- Q_OBJECT
- public:
- ProgrammPage(QWidget *parent = nullptr);
- ~ProgrammPage();
- private:
- void InitPage();
- void onTabChanged(int index);
- private:
- Ui::ProgrammPageClass ui;
- BondMatrixProgramPage* m_BondMatrixProgramPage = nullptr;
- WaffleProgramPage* m_pWaffleProgrammPage = nullptr;
- WaferProgramPage* m_WaferProgramPage = nullptr;
- TemplateProgramPage* m_TemplateProgramPage = nullptr;
- /**温控界面
- */
- TempControlPage* m_pTempControlPage = nullptr;
- };
- #endif //__PROGRAMMPAGE_H__
|