| | |
| | | #include "ServoGraph.h" |
| | | #include "ServoCommo.h" |
| | | |
| | | namespace SERVO { |
| | | class CEquipment; |
| | | class CGlass; |
| | | } |
| | | |
| | | enum DeviceStatus { |
| | | ONLINE, // 在线 |
| | | OFFLINE, // 离线 |
| | |
| | | POINT LoadArmOffset(const std::string& armName); |
| | | void SaveArmOffset(const std::string& armName, const POINT& pt); |
| | | |
| | | void UpdateSlotBars(); |
| | | void BuildSlotColors(SERVO::CEquipment* pEq, std::vector<COLORREF>& colors); |
| | | COLORREF GetSlotColor(SERVO::CGlass* pGlass, BOOL isProcessing); |
| | | |
| | | void ApplySlotBarTestPattern(int mode); |
| | | void UpdateLegendPosition(); |
| | | |
| | | private: |
| | | IObserver* m_pObserver; |
| | | CServoGraph* m_pGraph; |
| | | BOOL m_bIsRobotMoving; |
| | | COLORREF m_crBkgnd; |
| | | HBRUSH m_hbrBkgnd; |
| | | int m_slotBarTestMode; |
| | | |
| | | // ===== 机器人动画相关成员变量 ===== |
| | | |