MScreenInfoPpg.cpp
上传用户:zqemid3000
上传日期:2007-01-04
资源大小:158k
文件大小:2k
源码类别:

多显示器编程

开发平台:

Visual C++

  1. // MScreenInfoPpg.cpp : Implementation of the CMScreenInfoPropPage property page class.
  2. #include "stdafx.h"
  3. #include "MScreenInfo.h"
  4. #include "MScreenInfoPpg.h"
  5. #ifdef _DEBUG
  6. #define new DEBUG_NEW
  7. #undef THIS_FILE
  8. static char THIS_FILE[] = __FILE__;
  9. #endif
  10. IMPLEMENT_DYNCREATE(CMScreenInfoPropPage, COlePropertyPage)
  11. /////////////////////////////////////////////////////////////////////////////
  12. // Message map
  13. BEGIN_MESSAGE_MAP(CMScreenInfoPropPage, COlePropertyPage)
  14. //{{AFX_MSG_MAP(CMScreenInfoPropPage)
  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(CMScreenInfoPropPage, "MSCREENINFO.MScreenInfoPropPage.1",
  22. 0x223de669, 0xe7d7, 0x11d2, 0x85, 0x72, 0, 0, 0x1a, 0x1, 0x69, 0xac)
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CMScreenInfoPropPage::CMScreenInfoPropPageFactory::UpdateRegistry -
  25. // Adds or removes system registry entries for CMScreenInfoPropPage
  26. BOOL CMScreenInfoPropPage::CMScreenInfoPropPageFactory::UpdateRegistry(BOOL bRegister)
  27. {
  28. if (bRegister)
  29. return AfxOleRegisterPropertyPageClass(AfxGetInstanceHandle(),
  30. m_clsid, IDS_MSCREENINFO_PPG);
  31. else
  32. return AfxOleUnregisterClass(m_clsid, NULL);
  33. }
  34. /////////////////////////////////////////////////////////////////////////////
  35. // CMScreenInfoPropPage::CMScreenInfoPropPage - Constructor
  36. CMScreenInfoPropPage::CMScreenInfoPropPage() :
  37. COlePropertyPage(IDD, IDS_MSCREENINFO_PPG_CAPTION)
  38. {
  39. //{{AFX_DATA_INIT(CMScreenInfoPropPage)
  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. // CMScreenInfoPropPage::DoDataExchange - Moves data between page and properties
  46. void CMScreenInfoPropPage::DoDataExchange(CDataExchange* pDX)
  47. {
  48. //{{AFX_DATA_MAP(CMScreenInfoPropPage)
  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. // CMScreenInfoPropPage message handlers