| | |
| | | #include "BLLabel.h" |
| | | #include "CPLC.h" |
| | | |
| | | |
| | | // CAxisSettingsDlg 对话框 |
| | | |
| | | enum class AxisOperationType { |
| | |
| | | void AdjustControls(float dScaleX, float dScaleY); |
| | | void AdjustControlFont(CWnd* pWnd, int nWidth, int nHeight); |
| | | void AdjustLabelFont(CBLLabel& label); |
| | | void SetStatusColor(CBLLabel& label, BOOL bStatus); |
| | | void SetLabelColor(CBLLabel& label, COLORREF clr); |
| | | void updatePageButtonStates(); |
| | | int getCurrentSelectedAxisID(); |
| | | void initializeAxisIDCombo(); |
| | |
| | | CString m_strRecipeName; |
| | | |
| | | // 按下标识 |
| | | BOOL m_bJogAddPressed; |
| | | BOOL m_bJogSubPressed; |
| | | ULONGLONG m_ullJogPressedTick; |
| | | BOOL m_bJogSubState; |
| | | BOOL m_bJogAddState; |
| | | |
| | | // 控件 |
| | | CBLLabel m_staticFLS, m_staticDOG, m_staticRLS, m_staticReady, m_staticBusy, m_staticErr; |
| | | CBlButton m_pageButtons[5]; |
| | | CComboBox m_comboAxisNO; |
| | | CStatic m_staticAxisNO, m_staticAxisDescription, m_staticStartAddress; |
| | | CEdit m_editManualSpeed, m_editAutoSpeed, m_editAccelerationTime, m_editDecelerationTime, m_editJogDistance; |
| | | CBlButton m_pageButtons[5]; |
| | | |
| | | std::map<int, CRect> m_mapCtrlLayouts; |
| | | std::map<int, CFont*> m_mapFonts; |
| | | |