| | |
| | | #include "BLLabel.h" |
| | | #include "CPLC.h" |
| | | |
| | | |
| | | #define BTN_MAX 10 |
| | | #define BTN_PAGE1 0 |
| | | #define BTN_PAGE2 1 |
| | | #define BTN_PAGE3 2 |
| | | #define BTN_PAGE4 3 |
| | | #define BTN_PAGE5 4 |
| | | #define BTN_JOG_ADD 5 |
| | | #define BTN_JOG_SUB 6 |
| | | #define BTN_JOG_SEV 7 |
| | | #define BTN_JOG_STOP 8 |
| | | #define BTN_JOG_OPR 9 |
| | | |
| | | |
| | | // CAxisSettingsDlg 对话框 |
| | | |
| | | enum class AxisOperationType { |
| | |
| | | CStatic m_staticAxisNO, m_staticAxisDescription, m_staticStartAddress; |
| | | CEdit m_editManualSpeed, m_editAutoSpeed, m_editAccelerationTime, m_editDecelerationTime, m_editJogDistance; |
| | | |
| | | CBlButton* m_pBlBtns[9]; |
| | | CBlButton* m_pBlBtns[BTN_MAX]; |
| | | std::map<int, CRect> m_mapCtrlLayouts; |
| | | std::map<int, CFont*> m_mapFonts; |
| | | |