SetClient.h 1.9 KB

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