33 lines
901 B
C++
33 lines
901 B
C++
#pragma once
|
|
|
|
// CSetSo7MotionConfig dialog
|
|
|
|
class CSetSo7MotionConfig : public CMFCPropertyPage
|
|
{
|
|
DECLARE_DYNAMIC(CSetSo7MotionConfig)
|
|
|
|
public:
|
|
CSetSo7MotionConfig(); // standard constructor
|
|
virtual ~CSetSo7MotionConfig();
|
|
|
|
// Dialog Data
|
|
enum { IDD = IDD_SO7_UTIL_SETUP_SO7_CONFIG_MOTION };
|
|
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
virtual BOOL OnInitDialog();
|
|
DECLARE_MESSAGE_MAP()
|
|
|
|
void UpdateLabelName();
|
|
void UpdateDataValue();
|
|
void SaveDataValue();
|
|
void OutputWithScroll(const CString &strNewText,CEdit &edtOutput);
|
|
public:
|
|
afx_msg BOOL PreTranslateMessage(MSG* pMsg);
|
|
CEditableListCtrl m_ConfigList;
|
|
CEdit m_edit_MsgOut;
|
|
afx_msg void OnBnClickedButtonSo7MotionConfigOk();
|
|
afx_msg void OnBnClickedButtonSo7MotionConfigCancel();
|
|
afx_msg void OnBnClickedButtonSo7MotionConfigSetDefault();
|
|
};
|