Leaked source code of windows server 2003
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.

40 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. private: // data
  17. HWND m_hwnd; // Our HWND
  18. HFONT m_hFont; // Title font
  19. UINT m_idsTitle; // Resource ID for the title string
  20. UINT m_idsDesc; // Resource ID for the description string.
  21. private: // methods
  22. LRESULT
  23. OnInitDialog( void );
  24. LRESULT
  25. OnNotify( WPARAM idCtrlIn, LPNMHDR pnmhdrIn );
  26. LRESULT
  27. OnCommand( UINT idNotificationIn, UINT idControlIn, HWND hwndSenderIn );
  28. public: // methods
  29. CCompletionPage( UINT idsTitleIn, UINT idsDescIn );
  30. virtual ~CCompletionPage( void );
  31. static INT_PTR CALLBACK
  32. S_DlgProc( HWND hwndDlg, UINT nMsg, WPARAM wParam, LPARAM lParam );
  33. }; //*** class CCompletionPage