Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.2 KiB

  1. // InternetPropertyPage.h : header file
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. // CInternetPropertyPage dialog
  5. class CInternetPropertyPage : public CPropertyPage
  6. {
  7. DECLARE_DYNCREATE(CInternetPropertyPage)
  8. // Construction
  9. public:
  10. void InitData(CString AppName, HKEY hkAppID);
  11. CInternetPropertyPage();
  12. ~CInternetPropertyPage();
  13. // Dialog Data
  14. //{{AFX_DATA(CInternetPropertyPage)
  15. enum { IDD = IDD_INTERNET };
  16. CButton m_chkLaunch;
  17. CButton m_chkInternet;
  18. CButton m_chkAccess;
  19. BOOL m_bAllowAccess;
  20. BOOL m_bAllowInternet;
  21. BOOL m_bAllowLaunch;
  22. //}}AFX_DATA
  23. // Overrides
  24. // ClassWizard generate virtual function overrides
  25. //{{AFX_VIRTUAL(CInternetPropertyPage)
  26. protected:
  27. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  28. //}}AFX_VIRTUAL
  29. // Implementation
  30. protected:
  31. BOOL m_bCanModify;
  32. BOOL m_bChanged;
  33. // Generated message map functions
  34. //{{AFX_MSG(CInternetPropertyPage)
  35. afx_msg void OnAllowInternet();
  36. afx_msg void OnAllowaccess();
  37. afx_msg void OnAllowlaunch();
  38. afx_msg BOOL OnHelpInfo(HELPINFO* pHelpInfo);
  39. //}}AFX_MSG
  40. DECLARE_MESSAGE_MAP()
  41. };