ConfigSysView.h
上传用户:maryhy001
上传日期:2007-05-02
资源大小:2317k
文件大小:1k
源码类别:

网格计算

开发平台:

Visual C++

  1. // ConfigSysView.h : header file
  2. #ifndef _CONFIG_SYSVIEW_H
  3. #define _CONFIG_SYSVIEW_H
  4. class CConfigSysView : public CPropertyPage
  5. {
  6. DECLARE_DYNCREATE(CConfigSysView)
  7. // Construction
  8. public:
  9. CConfigSysView();
  10. ~CConfigSysView();
  11. BOOL Refresh();
  12. // Dialog Data
  13. //{{AFX_DATA(CConfigSysView)
  14. enum { IDD = IDD_SYSVIEW_CONFIG };
  15. CButton m_oSelSound;
  16. CButton m_oSelDestdir;
  17. CComboBox m_oAlarmsound;
  18. BOOL m_bAutoDelSndedFiles;
  19. BOOL m_bMinToHide;
  20. CString m_sRecvDestDir;
  21. BOOL m_bStartToHide;
  22. BOOL m_bAutoRun;
  23. //}}AFX_DATA
  24. // Overrides
  25. // ClassWizard generate virtual function overrides
  26. //{{AFX_VIRTUAL(CConfigSysView)
  27. public:
  28. virtual BOOL OnSetActive();
  29. virtual void OnOK();
  30. protected:
  31. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  32. //}}AFX_VIRTUAL
  33. // Implementation
  34. protected:
  35. // Generated message map functions
  36. //{{AFX_MSG(CConfigSysView)
  37. afx_msg void OnSelectDestDir();
  38. afx_msg void OnSelectSoundFile();
  39. virtual BOOL OnInitDialog();
  40. //}}AFX_MSG
  41. DECLARE_MESSAGE_MAP()
  42. };
  43. #endif //_CONFIG_SYSVIEW_H