| | |
| | | void AdjustControlFont(CWnd* pWnd, int nWidth, int nHeight); |
| | | void AdjustLabelFont(CBLLabel& label); |
| | | void SetStatusColor(CBLLabel& label, BOOL bStatus); |
| | | int getCurrentSelectedAxisID(); |
| | | void initializeAxisIDCombo(); |
| | | void refreshAxisDetails(); |
| | | void refreshPositionDetails(int pageNumber); |
| | | void updateAxisSelection(int offset); |
| | | |
| | | private: |
| | | CPLC* m_pPLC; |
| | |
| | | int m_nInitialHeight; |
| | | |
| | | // 控件 |
| | | CBLLabel m_staticFLS; |
| | | CBLLabel m_staticDOG; |
| | | CBLLabel m_staticRLS; |
| | | CBLLabel m_staticReady; |
| | | CBLLabel m_staticBusy; |
| | | CBLLabel m_staticErr; |
| | | CBLLabel m_staticFLS, m_staticDOG, m_staticRLS, m_staticReady, m_staticBusy, m_staticErr; |
| | | CComboBox m_comboAxisNO; |
| | | CStatic m_staticAxisNO; |
| | | CStatic m_staticAxisDescription; |
| | | CStatic m_staticStartAddress; |
| | | CEdit m_editManualSpeed; |
| | | CEdit m_editAutoSpeed; |
| | | CEdit m_editAccelerationTime; |
| | | CEdit m_editDecelerationTime; |
| | | CEdit m_editJogDistance; |
| | | CStatic m_staticAxisNO, m_staticAxisDescription, m_staticStartAddress; |
| | | CEdit m_editManualSpeed, m_editAutoSpeed, m_editAccelerationTime, m_editDecelerationTime, m_editJogDistance; |
| | | |
| | | std::map<int, CRect> m_mapCtrlLayouts; |
| | | std::map<int, CFont*> m_mapFonts; |
| | | |