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.

48 lines
942 B

  1. // RatSrvPg.h : header file
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. // CRatServicePage dialog
  5. class CRatServicePage : public CPropertyPage
  6. {
  7. DECLARE_DYNCREATE(CRatServicePage)
  8. // Construction
  9. public:
  10. CRatServicePage();
  11. ~CRatServicePage();
  12. // the data
  13. CRatingsData* m_pRatData;
  14. // Dialog Data
  15. //{{AFX_DATA(CRatServicePage)
  16. enum { IDD = IDD_RAT_SERVICE };
  17. CString m_sz_description;
  18. //}}AFX_DATA
  19. // Overrides
  20. // ClassWizard generate virtual function overrides
  21. //{{AFX_VIRTUAL(CRatServicePage)
  22. public:
  23. virtual BOOL OnSetActive();
  24. protected:
  25. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. protected:
  29. // Generated message map functions
  30. //{{AFX_MSG(CRatServicePage)
  31. afx_msg void OnQuestionaire();
  32. afx_msg void OnMoreinfo();
  33. //}}AFX_MSG
  34. DECLARE_MESSAGE_MAP()
  35. void DoHelp();
  36. CString m_szMoreInfoURL;
  37. };