Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

73 lines
2.0 KiB

  1. // AppsPpg.cpp : Implementation of the CAppsPropPage property page class.
  2. #include "stdafx.h"
  3. #include "cnfgprts.h"
  4. #include "AppsPpg.h"
  5. #ifdef _DEBUG
  6. #define new DEBUG_NEW
  7. #undef THIS_FILE
  8. static char THIS_FILE[] = __FILE__;
  9. #endif
  10. IMPLEMENT_DYNCREATE(CAppsPropPage, COlePropertyPage)
  11. /////////////////////////////////////////////////////////////////////////////
  12. // Message map
  13. BEGIN_MESSAGE_MAP(CAppsPropPage, COlePropertyPage)
  14. //{{AFX_MSG_MAP(CAppsPropPage)
  15. //}}AFX_MSG_MAP
  16. END_MESSAGE_MAP()
  17. /////////////////////////////////////////////////////////////////////////////
  18. // Initialize class factory and guid
  19. IMPLEMENT_OLECREATE_EX(CAppsPropPage, "CNFGPRTS.AppsPropPage.1",
  20. 0xba63460c, 0xb771, 0x11d0, 0x92, 0x96, 0, 0xc0, 0x4f, 0xb6, 0x67, 0x8b)
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CAppsPropPage::CAppsPropPageFactory::UpdateRegistry -
  23. // Adds or removes system registry entries for CAppsPropPage
  24. BOOL CAppsPropPage::CAppsPropPageFactory::UpdateRegistry(BOOL bRegister)
  25. {
  26. if (bRegister)
  27. return AfxOleRegisterPropertyPageClass(AfxGetInstanceHandle(),
  28. m_clsid, IDS_APPS_PPG);
  29. else
  30. return AfxOleUnregisterClass(m_clsid, NULL);
  31. }
  32. /////////////////////////////////////////////////////////////////////////////
  33. // CAppsPropPage::CAppsPropPage - Constructor
  34. CAppsPropPage::CAppsPropPage() :
  35. COlePropertyPage(IDD, IDS_APPS_PPG_CAPTION)
  36. {
  37. //{{AFX_DATA_INIT(CAppsPropPage)
  38. m_sz_caption = _T("");
  39. //}}AFX_DATA_INIT
  40. }
  41. /////////////////////////////////////////////////////////////////////////////
  42. // CAppsPropPage::DoDataExchange - Moves data between page and properties
  43. void CAppsPropPage::DoDataExchange(CDataExchange* pDX)
  44. {
  45. //{{AFX_DATA_MAP(CAppsPropPage)
  46. DDP_Text(pDX, IDC_CAPTIONEDIT, m_sz_caption, _T("Caption") );
  47. DDX_Text(pDX, IDC_CAPTIONEDIT, m_sz_caption);
  48. //}}AFX_DATA_MAP
  49. DDP_PostProcessing(pDX);
  50. }
  51. /////////////////////////////////////////////////////////////////////////////
  52. // CAppsPropPage message handlers