SetClient.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. #include "afxwin.h"
  2. #if !defined(AFX_SETCLIENT_H__E83F446F_D7B5_41D2_B521_CAD16B6F6693__INCLUDED_)
  3. #define AFX_SETCLIENT_H__E83F446F_D7B5_41D2_B521_CAD16B6F6693__INCLUDED_
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. // SetClient.h : header file
  8. //
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CSetClient dialog
  11. class CSetClient : public CDialog
  12. {
  13. // Construction
  14. public:
  15. CSetClient(CWnd* pParent = NULL); // standard constructor
  16. CString F_GetDirectoryPath();
  17. // Dialog Data
  18. //{{AFX_DATA(CSetClient)
  19. enum { IDD = IDD_DLG_SETLOCAL };
  20. CComboBox m_VideoFormatCombo;
  21. CComboBox m_StopRecordDriverCtrl;
  22. CComboBox m_StartRecordDriverCtrl;
  23. CButton m_UseCardCtrl;
  24. CButton m_CycleRecordCtrl;
  25. CButton m_CyclePlayCtrl;
  26. CButton m_AutoRecordCtrl;
  27. BOOL m_bAutoRecord;
  28. BOOL m_bCyclePlay;
  29. BOOL m_bCycleRecord;
  30. BOOL m_bUseCard;
  31. int m_iCycleTime;
  32. int m_iFileInterVal;
  33. CString m_csLoadPath;
  34. CString m_csLogPath;
  35. CString m_csPICPath;
  36. CTime m_ctCheckServerTime;
  37. BOOL m_bCheckServerTime;
  38. //}}AFX_DATA
  39. // Overrides
  40. // ClassWizard generated virtual function overrides
  41. //{{AFX_VIRTUAL(CSetClient)
  42. protected:
  43. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  44. //}}AFX_VIRTUAL
  45. // Implementation
  46. protected:
  47. // Generated message map functions
  48. //{{AFX_MSG(CSetClient)
  49. afx_msg void OnButselfilepath();
  50. afx_msg void OnButsellogpath();
  51. afx_msg void OnButselpicpath();
  52. afx_msg void OnButtonsettime();
  53. afx_msg void OnChkautorecord();
  54. virtual BOOL OnInitDialog();
  55. afx_msg void OnChkcycleplay();
  56. afx_msg void OnChecksystime();
  57. afx_msg void OnClocalok();
  58. virtual void OnCancel();
  59. afx_msg void OnChkusecard();
  60. //}}AFX_MSG
  61. DECLARE_MESSAGE_MAP()
  62. public:
  63. int m_nComb_VideoMaxTime;
  64. int m_nComb_NoMotionTime;
  65. CComboBox m_Comb_VideoMaxTime;
  66. CComboBox m_Comb_NoMotionTime;
  67. };
  68. //{{AFX_INSERT_LOCATION}}
  69. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  70. #endif // !defined(AFX_SETCLIENT_H__E83F446F_D7B5_41D2_B521_CAD16B6F6693__INCLUDED_)