FontCurvePpg.cpp
上传用户:sz81710966
上传日期:2013-03-01
资源大小:409k
文件大小:2k
源码类别:

多国语言处理

开发平台:

Visual C++

  1. // FontCurvePpg.cpp : Implementation of the CFontCurvePropPage property page class.
  2. #include "stdafx.h"
  3. #include "FontCurve.h"
  4. #include "FontCurvePpg.h"
  5. #ifdef _DEBUG
  6. #define new DEBUG_NEW
  7. #undef THIS_FILE
  8. static char THIS_FILE[] = __FILE__;
  9. #endif
  10. IMPLEMENT_DYNCREATE(CFontCurvePropPage, COlePropertyPage)
  11. /////////////////////////////////////////////////////////////////////////////
  12. // Message map
  13. BEGIN_MESSAGE_MAP(CFontCurvePropPage, COlePropertyPage)
  14. //{{AFX_MSG_MAP(CFontCurvePropPage)
  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(CFontCurvePropPage, "FONTCURVE.FontCurvePropPage.1",
  22. 0xa62f4b42, 0x6711, 0x45e6, 0x80, 0x77, 0x43, 0x38, 0xa0, 0xff, 0x79, 0xf4)
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CFontCurvePropPage::CFontCurvePropPageFactory::UpdateRegistry -
  25. // Adds or removes system registry entries for CFontCurvePropPage
  26. BOOL CFontCurvePropPage::CFontCurvePropPageFactory::UpdateRegistry(BOOL bRegister)
  27. {
  28. if (bRegister)
  29. return AfxOleRegisterPropertyPageClass(AfxGetInstanceHandle(),
  30. m_clsid, IDS_FONTCURVE_PPG);
  31. else
  32. return AfxOleUnregisterClass(m_clsid, NULL);
  33. }
  34. /////////////////////////////////////////////////////////////////////////////
  35. // CFontCurvePropPage::CFontCurvePropPage - Constructor
  36. CFontCurvePropPage::CFontCurvePropPage() :
  37. COlePropertyPage(IDD, IDS_FONTCURVE_PPG_CAPTION)
  38. {
  39. //{{AFX_DATA_INIT(CFontCurvePropPage)
  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. SetHelpInfo(_T("Names to appear in the control"), _T("FONTCURVE.HLP"), 0);
  44. }
  45. /////////////////////////////////////////////////////////////////////////////
  46. // CFontCurvePropPage::DoDataExchange - Moves data between page and properties
  47. void CFontCurvePropPage::DoDataExchange(CDataExchange* pDX)
  48. {
  49. //{{AFX_DATA_MAP(CFontCurvePropPage)
  50. // NOTE: ClassWizard will add DDP, DDX, and DDV calls here
  51. //    DO NOT EDIT what you see in these blocks of generated code !
  52. //}}AFX_DATA_MAP
  53. DDP_PostProcessing(pDX);
  54. }
  55. /////////////////////////////////////////////////////////////////////////////
  56. // CFontCurvePropPage message handlers