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.

71 lines
1.7 KiB

  1. //Copyright (c) 1998 - 1999 Microsoft Corporation
  2. /*++
  3. Module Name:
  4. Custprop.h
  5. Abstract:
  6. This Module defines the CCustomPropertySheet class
  7. (Base class for the property sheets)
  8. Author:
  9. Arathi Kundapur (v-akunda) 11-Feb-1998
  10. Revision History:
  11. --*/
  12. #if !defined(AFX_CUSTOMPROPERTYSHEET_H__3B3F2ECE_8C69_11D1_8AD5_00C04FB6CBB5__INCLUDED_)
  13. #define AFX_CUSTOMPROPERTYSHEET_H__3B3F2ECE_8C69_11D1_8AD5_00C04FB6CBB5__INCLUDED_
  14. #if _MSC_VER >= 1000
  15. #endif // _MSC_VER >= 1000
  16. /////////////////////////////////////////////////////////////////////////////
  17. // CCustomPropertySheet
  18. class CCustomPropertySheet : public CPropertySheet
  19. {
  20. DECLARE_DYNAMIC(CCustomPropertySheet)
  21. // Construction
  22. public:
  23. CCustomPropertySheet(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  24. CCustomPropertySheet(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  25. // Attributes
  26. public:
  27. // Operations
  28. public:
  29. // Overrides
  30. // ClassWizard generated virtual function overrides
  31. //{{AFX_VIRTUAL(CCustomPropertySheet)
  32. public:
  33. virtual BOOL OnInitDialog();
  34. //}}AFX_VIRTUAL
  35. // Implementation
  36. public:
  37. virtual ~CCustomPropertySheet();
  38. // Generated message map functions
  39. protected:
  40. //{{AFX_MSG(CCustomPropertySheet)
  41. // NOTE - the ClassWizard will add and remove member functions here.
  42. //}}AFX_MSG
  43. DECLARE_MESSAGE_MAP()
  44. };
  45. /////////////////////////////////////////////////////////////////////////////
  46. //{{AFX_INSERT_LOCATION}}
  47. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  48. #endif // !defined(AFX_CUSTOMPROPERTYSHEET_H__3B3F2ECE_8C69_11D1_8AD5_00C04FB6CBB5__INCLUDED_)