CIRC2PPG.CPP
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:3k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // circ2ppg.cpp : Implementation of the CCirc2PropPage property page class.
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #include "stdafx.h"
  13. #include "circ2.h"
  14. #include "circ2ppg.h"
  15. #ifdef _DEBUG
  16. #undef THIS_FILE
  17. static char BASED_CODE THIS_FILE[] = __FILE__;
  18. #endif
  19. IMPLEMENT_DYNCREATE(CCirc2PropPage, COlePropertyPage)
  20. /////////////////////////////////////////////////////////////////////////////
  21. // Message map
  22. BEGIN_MESSAGE_MAP(CCirc2PropPage, COlePropertyPage)
  23. //{{AFX_MSG_MAP(CCirc2PropPage)
  24. // NOTE - ClassWizard will add and remove message map entries
  25. //    DO NOT EDIT what you see in these blocks of generated code !
  26. //}}AFX_MSG_MAP
  27. END_MESSAGE_MAP()
  28. /////////////////////////////////////////////////////////////////////////////
  29. // Initialize class factory and guid
  30. IMPLEMENT_OLECREATE_EX(CCirc2PropPage, "CIRC2.Circ2PropPage.1",
  31. 0x9dbafcce, 0x592f, 0x101b, 0x85, 0xce, 0x0, 0x60, 0x8c, 0xec, 0x29, 0x7b)
  32. /////////////////////////////////////////////////////////////////////////////
  33. // CCirc2PropPage::CCirc2PropPageFactory::UpdateRegistry -
  34. // Adds or removes system registry entries for CCirc2PropPage
  35. BOOL CCirc2PropPage::CCirc2PropPageFactory::UpdateRegistry(BOOL bRegister)
  36. {
  37. if (bRegister)
  38. return AfxOleRegisterPropertyPageClass(AfxGetInstanceHandle(),
  39. m_clsid, IDS_CIRC2_PPG);
  40. else
  41. return AfxOleUnregisterClass(m_clsid, NULL);
  42. }
  43. /////////////////////////////////////////////////////////////////////////////
  44. // CCirc2PropPage::CCirc2PropPage - Constructor
  45. CCirc2PropPage::CCirc2PropPage() :
  46. COlePropertyPage(IDD, IDS_CIRC2_PPG_CAPTION)
  47. {
  48. //{{AFX_DATA_INIT(CCirc2PropPage)
  49. // NOTE: ClassWizard will add member initialization here
  50. //    DO NOT EDIT what you see in these blocks of generated code !
  51. //}}AFX_DATA_INIT
  52. }
  53. /////////////////////////////////////////////////////////////////////////////
  54. // CCirc2PropPage::DoDataExchange - Moves data between page and properties
  55. void CCirc2PropPage::DoDataExchange(CDataExchange* pDX)
  56. {
  57. //{{AFX_DATA_MAP(CCirc2PropPage)
  58. // NOTE: ClassWizard will add DDP, DDX, and DDV calls here
  59. //    DO NOT EDIT what you see in these blocks of generated code !
  60. //}}AFX_DATA_MAP
  61. DDP_PostProcessing(pDX);
  62. }
  63. /////////////////////////////////////////////////////////////////////////////
  64. // CCirc2PropPage message handlers