Dlg_Settings.h 830 B

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