home *** CD-ROM | disk | FTP | other *** search
/ Windows Graphics Programming / Feng_Yuan_Win32_GDI_DirectX.iso / Samples / Chapt_03 / Handles / FindTab.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-05-16  |  1.5 KB  |  40 lines

  1. //-----------------------------------------------------------------------------------//
  2. //              Windows Graphics Programming: Win32 GDI and DirectDraw               //
  3. //                             ISBN  0-13-086985-6                                   //
  4. //                                                                                   //
  5. //  Written            by  Yuan, Feng                             www.fengyuan.com   //
  6. //  Copyright (c) 2000 by  Hewlett-Packard Company                www.hp.com         //
  7. //  Published          by  Prentice Hall PTR, Prentice-Hall, Inc. www.phptr.com      //
  8. //                                                                                   //
  9. //  FileName   : findtabl.h                                                             //
  10. //  Description: KLocateGdiTablePage class                                           //
  11. //  Version    : 1.00.000, May 31, 2000                                              //
  12. //-----------------------------------------------------------------------------------//
  13.  
  14.  
  15. #pragma once
  16.  
  17. #include "property.h"
  18. #include "listview.h"
  19. #include "snapshot.h"
  20.  
  21. class KLocateGdiTablePage: public KPropertySheetPage
  22. {
  23.     KListView m_Regions;
  24.     HINSTANCE m_hInst;
  25.     KSnapShot m_snapshot;
  26.     
  27.     BOOL      DlgProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
  28.     void      GdiQueryTable();
  29.  
  30. public:
  31.     KLocateGdiTablePage();
  32.     virtual ~KLocateGdiTablePage();
  33.  
  34.     void Initialize(HINSTANCE hInstance)
  35.     {
  36.         m_hInst = hInstance;
  37.     }
  38. };
  39.  
  40.