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.

47 lines
911 B

  1. // gensheet.h : header file
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. // CGENSHEET
  5. #ifndef _GEN_SHEET_
  6. #define _GEN_SHEET_
  7. class CGENSHEET : public CPropertySheet
  8. {
  9. DECLARE_DYNAMIC(CGENSHEET)
  10. // Construction
  11. public:
  12. CGENSHEET(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  13. CGENSHEET(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  14. // Attributes
  15. public:
  16. // Operations
  17. public:
  18. // Overrides
  19. // ClassWizard generated virtual function overrides
  20. //{{AFX_VIRTUAL(CGENSHEET)
  21. //}}AFX_VIRTUAL
  22. afx_msg void CGENSHEET::OnApplyNow ();
  23. void SavePageData(void);
  24. // Implementation
  25. public:
  26. virtual ~CGENSHEET();
  27. // Generated message map functions
  28. protected:
  29. //{{AFX_MSG(CGENSHEET)
  30. afx_msg void OnHelp();
  31. //}}AFX_MSG
  32. DECLARE_MESSAGE_MAP()
  33. };
  34. /////////////////////////////////////////////////////////////////////////////
  35. #endif