WinFinderPpg.cpp
上传用户:lwzh1970
上传日期:2007-01-01
资源大小:33k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // WinFinderPpg.cpp : Implementation of the CWinFinderPropPage property page class.
  2. #include "stdafx.h"
  3. #include "WinFinder.h"
  4. #include "WinFinderPpg.h"
  5. #ifdef _DEBUG
  6. #define new DEBUG_NEW
  7. #undef THIS_FILE
  8. static char THIS_FILE[] = __FILE__;
  9. #endif
  10. IMPLEMENT_DYNCREATE(CWinFinderPropPage, COlePropertyPage)
  11. /////////////////////////////////////////////////////////////////////////////
  12. // Message map
  13. BEGIN_MESSAGE_MAP(CWinFinderPropPage, COlePropertyPage)
  14. //{{AFX_MSG_MAP(CWinFinderPropPage)
  15. // NOTE - ClassWizard will add and remove message map entries
  16. //    DO NOT EDIT what you see in these blocks of generated code !
  17. //}}AFX_MSG_MAP
  18. END_MESSAGE_MAP()
  19. /////////////////////////////////////////////////////////////////////////////
  20. // Initialize class factory and guid
  21. IMPLEMENT_OLECREATE_EX(CWinFinderPropPage, "WINFINDER.WinFinderPropPage.1",
  22. 0xdca2aa4, 0xc50f, 0x11d2, 0x95, 0x80, 0x20, 0xb3, 0x4e, 0xc1, 0, 0)
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CWinFinderPropPage::CWinFinderPropPageFactory::UpdateRegistry -
  25. // Adds or removes system registry entries for CWinFinderPropPage
  26. BOOL CWinFinderPropPage::CWinFinderPropPageFactory::UpdateRegistry(BOOL bRegister)
  27. {
  28. if (bRegister)
  29. return AfxOleRegisterPropertyPageClass(AfxGetInstanceHandle(),
  30. m_clsid, IDS_WINFINDER_PPG);
  31. else
  32. return AfxOleUnregisterClass(m_clsid, NULL);
  33. }
  34. /////////////////////////////////////////////////////////////////////////////
  35. // CWinFinderPropPage::CWinFinderPropPage - Constructor
  36. CWinFinderPropPage::CWinFinderPropPage() :
  37. COlePropertyPage(IDD, IDS_WINFINDER_PPG_CAPTION)
  38. {
  39. //{{AFX_DATA_INIT(CWinFinderPropPage)
  40. // NOTE: ClassWizard will add member initialization here
  41. //    DO NOT EDIT what you see in these blocks of generated code !
  42. //}}AFX_DATA_INIT
  43. }
  44. /////////////////////////////////////////////////////////////////////////////
  45. // CWinFinderPropPage::DoDataExchange - Moves data between page and properties
  46. void CWinFinderPropPage::DoDataExchange(CDataExchange* pDX)
  47. {
  48. //{{AFX_DATA_MAP(CWinFinderPropPage)
  49. // NOTE: ClassWizard will add DDP, DDX, and DDV calls here
  50. //    DO NOT EDIT what you see in these blocks of generated code !
  51. //}}AFX_DATA_MAP
  52. DDP_PostProcessing(pDX);
  53. }
  54. /////////////////////////////////////////////////////////////////////////////
  55. // CWinFinderPropPage message handlers