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

Windows编程

开发平台:

Visual C++

  1. // spinppg.cpp : Implementation of the CSpindialPropPage 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 "spindial.h"
  14. #include "spinppg.h"
  15. #ifdef _DEBUG
  16. #undef THIS_FILE
  17. static char BASED_CODE THIS_FILE[] = __FILE__;
  18. #endif
  19. IMPLEMENT_DYNCREATE(CSpindialPropPage, COlePropertyPage)
  20. /////////////////////////////////////////////////////////////////////////////
  21. // Message map
  22. BEGIN_MESSAGE_MAP(CSpindialPropPage, COlePropertyPage)
  23. //{{AFX_MSG_MAP(CSpindialPropPage)
  24. //}}AFX_MSG_MAP
  25. END_MESSAGE_MAP()
  26. /////////////////////////////////////////////////////////////////////////////
  27. // Initialize class factory and guid
  28. IMPLEMENT_OLECREATE_EX(CSpindialPropPage, "SPINDIAL.SpindialPropPage.1",
  29. 0x37446b8b, 0x5870, 0x101b, 0xb5, 0x7b, 0x0, 0x60, 0x8c, 0xc9, 0x6a, 0xfa)
  30. /////////////////////////////////////////////////////////////////////////////
  31. // CSpindialPropPage::CSpindialPropPageFactory::UpdateRegistry -
  32. // Adds or removes system registry entries for CSpindialPropPage
  33. BOOL CSpindialPropPage::CSpindialPropPageFactory::UpdateRegistry(BOOL bRegister)
  34. {
  35. if (bRegister)
  36. return AfxOleRegisterPropertyPageClass(AfxGetInstanceHandle(),
  37. m_clsid, IDS_SPINDIAL_PPG);
  38. else
  39. return AfxOleUnregisterClass(m_clsid, NULL);
  40. }
  41. /////////////////////////////////////////////////////////////////////////////
  42. // CSpindialPropPage::CSpindialPropPage - Constructor
  43. CSpindialPropPage::CSpindialPropPage() :
  44. COlePropertyPage(IDD, IDS_SPINDIAL_PPG_CAPTION)
  45. {
  46. //{{AFX_DATA_INIT(CSpindialPropPage)
  47. m_NeedlePosition = 0;
  48. //}}AFX_DATA_INIT
  49. }
  50. /////////////////////////////////////////////////////////////////////////////
  51. // CSpindialPropPage::DoDataExchange - Moves data between page and properties
  52. void CSpindialPropPage::DoDataExchange(CDataExchange* pDX)
  53. {
  54. //{{AFX_DATA_MAP(CSpindialPropPage)
  55. DDP_Text(pDX, IDC_POSITIONEDIT, m_NeedlePosition, _T("NeedlePosition"));
  56. DDX_Text(pDX, IDC_POSITIONEDIT, m_NeedlePosition);
  57. DDV_MinMaxInt(pDX, m_NeedlePosition, 0, 3);
  58. //}}AFX_DATA_MAP
  59. DDP_PostProcessing(pDX);
  60. }
  61. /////////////////////////////////////////////////////////////////////////////
  62. // CSpindialPropPage message handlers