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.

41 lines
1.2 KiB

  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 1999-2001 Microsoft Corporation
  4. //
  5. // Module Name:
  6. // CompletionPage.h
  7. //
  8. // Maintained By:
  9. // David Potter (DavidP) 22-MAR-2001
  10. // Geoffrey Pease (GPease) 12-MAY-2000
  11. //
  12. //////////////////////////////////////////////////////////////////////////////
  13. #pragma once
  14. class CCompletionPage
  15. {
  16. friend class CClusCfgWizard;
  17. private: // data
  18. HWND m_hwnd; // Our HWND
  19. HFONT m_hFont; // Title font
  20. UINT m_idsTitle; // Resource ID for the title string
  21. UINT m_idsDesc; // Resource ID for the description string.
  22. private: // methods
  23. CCompletionPage( UINT idsTitleIn, UINT idsDescIn );
  24. virtual ~CCompletionPage();
  25. LRESULT
  26. OnInitDialog( void );
  27. LRESULT
  28. OnNotify( WPARAM idCtrlIn, LPNMHDR pnmhdrIn );
  29. LRESULT
  30. OnCommand( UINT idNotificationIn, UINT idControlIn, HWND hwndSenderIn );
  31. public: // methods
  32. static INT_PTR CALLBACK
  33. S_DlgProc( HWND hwndDlg, UINT nMsg, WPARAM wParam, LPARAM lParam );
  34. }; //*** class CCompletionPage