12345678910111213141516171819202122232425262728293031323334353637383940 |
- #pragma once
- #include "afxwin.h"
- #include "BtnST.h"
- // CDlg_Settings 对话框
- class CDlg_Settings : public CDialog
- {
- DECLARE_DYNAMIC(CDlg_Settings)
- public:
- CDlg_Settings(CWnd* pParent = NULL); // 标准构造函数
- virtual ~CDlg_Settings();
- // 对话框数据
- enum { IDD = IDD_DLG_SETTINGS };
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
- DECLARE_MESSAGE_MAP()
- public:
- virtual BOOL OnInitDialog();
- CString m_sEdit_VideoPath;
- CComboBox m_Comb_Velume;
- int m_nComb_Velume;
- CComboBox m_Comb_OperateType;
- int m_nComb_OperateType;
- CComboBox m_Comb_VideoMaxTime;
- int m_nComb_VideoMaxTime;
- CComboBox m_Comb_NoMotionTime;
- int m_nComb_NoMotionTime;
- afx_msg void OnBnClickedBtnBrowse();
- afx_msg void OnBnClickedBtnSave();
- CButtonST m_btn_Browse;
- CButtonST m_btn_Save;
- void SetCtrlPos();
- };
|