Dlg_Settings.h 863 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #pragma once
  2. #include "afxwin.h"
  3. #include "BtnST.h"
  4. #include "XPButton.h"
  5. // CDlg_Settings 对话框
  6. class CDlg_Settings : public CDialog
  7. {
  8. DECLARE_DYNAMIC(CDlg_Settings)
  9. public:
  10. CDlg_Settings(CWnd* pParent = NULL); // 标准构造函数
  11. virtual ~CDlg_Settings();
  12. // 对话框数据
  13. enum { IDD = IDD_DLG_SETTINGS };
  14. protected:
  15. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
  16. DECLARE_MESSAGE_MAP()
  17. public:
  18. virtual BOOL OnInitDialog();
  19. CString m_sEdit_VideoPath;
  20. CComboBox m_Comb_Velume;
  21. int m_nComb_Velume;
  22. CComboBox m_Comb_OperateType;
  23. int m_nComb_OperateType;
  24. CComboBox m_Comb_VideoMaxTime;
  25. int m_nComb_VideoMaxTime;
  26. CComboBox m_Comb_NoMotionTime;
  27. int m_nComb_NoMotionTime;
  28. afx_msg void OnBnClickedBtnBrowse();
  29. afx_msg void OnBnClickedBtnSave();
  30. CXPButton m_btn_Browse;
  31. CXPButton m_btn_Save;
  32. void SetCtrlPos( CRect rect );
  33. };