DialogMotionTest.h 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. #pragma once
  2. // CDialogMotionTest 对话框
  3. class CDialogMotionTest : public CDialogEx
  4. {
  5. DECLARE_DYNAMIC(CDialogMotionTest)
  6. public:
  7. CDialogMotionTest(CWnd* pParent = NULL); // 标准构造函数
  8. virtual ~CDialogMotionTest();
  9. // 对话框数据
  10. enum { IDD = IDD_DIALOG_MOTIONTEST };
  11. protected:
  12. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
  13. DECLARE_MESSAGE_MAP()
  14. private:
  15. void SetExamMode(int nMode);
  16. public:
  17. virtual BOOL OnInitDialog();
  18. afx_msg void OnBnClickedButtonStartlinemotion();
  19. afx_msg void OnBnClickedButtonTubeStoplinemotion();
  20. afx_msg void OnBnClickedButtonTubeRotate();
  21. afx_msg void OnBnClickedButtonTubeStoprotation();
  22. afx_msg void OnBnClickedButtonTubeEncoder();
  23. afx_msg void OnBnClickedButtonTubeEncoderUnbind();
  24. afx_msg void OnBnClickedButtonReset();
  25. afx_msg void OnBnClickedButtonCenterAlign();
  26. afx_msg void OnBnClickedButtonStopmotion();
  27. afx_msg void OnBnClickedButtonSetParams();
  28. afx_msg void OnBnClickedButtonMove2parkingposition();
  29. };