|
@@ -1,11 +1,19 @@
|
|
|
-#pragma once
|
|
|
+// *****************************************************************************
|
|
|
+// 版权所有(C)2023~2099 上海骄成超声波技术有限公司
|
|
|
+// 保留所有权利
|
|
|
+// *****************************************************************************
|
|
|
+// 作者 : 杨坚
|
|
|
+// 版本 : 1.0
|
|
|
+// 功能说明:
|
|
|
+// 物料参数
|
|
|
+// *****************************************************************************
|
|
|
+#ifndef __PROGRAMMPAGE_H__
|
|
|
+#define __PROGRAMMPAGE_H__ 1
|
|
|
|
|
|
-#include <QWidget>
|
|
|
#include "ui_ProgrammPage.h"
|
|
|
-#include "CViewInterface.h"
|
|
|
#include "WaffleProgramPage.h"
|
|
|
-#include <View/die-bonder-ui/Src/WaferProgramPage.h>
|
|
|
-#include <View/die-bonder-ui/Src/BondMatrixProgramPage.h>
|
|
|
+#include "BondMatrixProgramPage.h"
|
|
|
+#include "WaferProgramPage.h"
|
|
|
|
|
|
class ProgrammPage : public QWidget
|
|
|
{
|
|
@@ -16,15 +24,15 @@ public:
|
|
|
~ProgrammPage();
|
|
|
|
|
|
private:
|
|
|
-
|
|
|
void initPage();
|
|
|
|
|
|
private:
|
|
|
Ui::ProgrammPageClass ui;
|
|
|
|
|
|
- BondMatrixProgramPage* m_BondMatrixProgramPage = nullptr;
|
|
|
- WaffleProgramPage* m_pWaffleProgrammPage = nullptr;
|
|
|
- WaferProgramPage* m_WaferProgramPage = nullptr;
|
|
|
|
|
|
-
|
|
|
+ BondMatrixProgramPage* m_BondMatrixProgramPage = nullptr;
|
|
|
+ WaffleProgramPage* m_pWaffleProgrammPage = nullptr;
|
|
|
+ WaferProgramPage* m_WaferProgramPage = nullptr;
|
|
|
};
|
|
|
+
|
|
|
+#endif //__PROGRAMMPAGE_H__
|