DlgSetup.h
上传用户:lds876
上传日期:2013-05-25
资源大小:567k
文件大小:2k
源码类别:

P2P编程

开发平台:

Visual C++

  1. #if !defined(AFX_DLGSETUP_H__C8E57B4D_5B40_4AE4_940A_1FF351B072FF__INCLUDED_)
  2. #define AFX_DLGSETUP_H__C8E57B4D_5B40_4AE4_940A_1FF351B072FF__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // DlgSetup.h : header file
  7. //
  8. #include "ctrlext.h"
  9. #include "DlgOptions.h"
  10. #include "DlgSystemPage.h"
  11. #include "DlgAdvancedPage.h"
  12. #include "DlgDownloadSetup.h"
  13. #include "DlgSetupStatusWnd.h"
  14. #include "ButtonEx.h"
  15.  
  16. class CSetupRegister;
  17. /////////////////////////////////////////////////////////////////////////////
  18. // CDlgSetup dialog
  19. class CDlgSetup : public CDialog
  20. {
  21. // Construction
  22. public:
  23. CDlgSetup(CSetupRegister* pSetupRegister, CWnd* pParent = NULL);   // standard constructor
  24. CSetupRegister* m_pSetupRegister;
  25. // Dialog Data
  26. //{{AFX_DATA(CDlgSetup)
  27. enum { IDD = IDD_DIALOG_SETUP };
  28. CButtonEx m_btnCancel;
  29. CButtonEx m_btnOK;
  30. CTreeCtrlEx m_treeOptions;
  31. //}}AFX_DATA
  32. // Overrides
  33. // ClassWizard generated virtual function overrides
  34. //{{AFX_VIRTUAL(CDlgSetup)
  35. public:
  36. protected:
  37. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  38. //}}AFX_VIRTUAL
  39. // Implementation
  40. protected:
  41. // Generated message map functions
  42. //{{AFX_MSG(CDlgSetup)
  43. virtual BOOL OnInitDialog();
  44. afx_msg void OnSelchangedTreeOptions(NMHDR* pNMHDR, LRESULT* pResult);
  45. virtual void OnOK();
  46. afx_msg void OnDestroy();
  47. //}}AFX_MSG
  48. DECLARE_MESSAGE_MAP()
  49. private:
  50. void GetData();
  51. void SetData();
  52. void OnCommandUI();
  53. CDlgOptions m_dlgOptions;
  54. CDlgSystemPage m_dlgSystem;
  55. CDlgAdvancedPage m_dlgAdvanced;
  56. CDlgDownloadSetup m_dlgDownloadSetup;
  57. CDlgSetupStatusWnd m_StatusWnd;
  58. enum eSetupCate{eBase, eHotkey, eDownloadSetup, eAdvanced, eAllCount};
  59. CString m_vstrOptions[eAllCount];
  60. CString m_strComment[eAllCount];
  61. CImageList m_ctlImage;
  62. };
  63. //{{AFX_INSERT_LOCATION}}
  64. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  65. #endif // !defined(AFX_DLGSETUP_H__C8E57B4D_5B40_4AE4_940A_1FF351B072FF__INCLUDED_)