TsFont.cpp
上传用户:jinlangri
上传日期:2022-07-17
资源大小:10774k
文件大小:1k
源码类别:

GDI/图象编程

开发平台:

Visual C++

  1. // TsFont.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "draw.h"
  5. #include "TsFont.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CTsFont dialog
  13. CTsFont::CTsFont(CWnd* pParent /*=NULL*/)
  14. : CDialog(CTsFont::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CTsFont)
  17. m_lfHeight = 0;
  18. m_lfWidth = 0;
  19. m_lfEscapement = 0;
  20. m_lfOrientation = 0;
  21. m_lfWeight = 0;
  22. m_crColor = 0;
  23. //}}AFX_DATA_INIT
  24. }
  25. void CTsFont::DoDataExchange(CDataExchange* pDX)
  26. {
  27. CDialog::DoDataExchange(pDX);
  28. //{{AFX_DATA_MAP(CTsFont)
  29. DDX_Text(pDX, IDC_EDIT1, m_lfHeight);
  30. DDV_MinMaxLong(pDX, m_lfHeight, 0, 900);
  31. DDX_Text(pDX, IDC_EDIT2, m_lfWidth);
  32. DDV_MinMaxLong(pDX, m_lfWidth, -100, 900);
  33. DDX_Text(pDX, IDC_EDIT3, m_lfEscapement);
  34. DDV_MinMaxLong(pDX, m_lfEscapement, 0, 3600);
  35. DDX_Text(pDX, IDC_EDIT4, m_lfOrientation);
  36. DDV_MinMaxLong(pDX, m_lfOrientation, 0, 900);
  37. DDX_Text(pDX, IDC_EDIT5, m_lfWeight);
  38. DDV_MinMaxLong(pDX, m_lfWeight, 0, 900);
  39. DDX_Text(pDX, IDC_EDIT6, m_crColor);
  40. //}}AFX_DATA_MAP
  41. }
  42. BEGIN_MESSAGE_MAP(CTsFont, CDialog)
  43. //{{AFX_MSG_MAP(CTsFont)
  44. // NOTE: the ClassWizard will add message map macros here
  45. //}}AFX_MSG_MAP
  46. END_MESSAGE_MAP()
  47. /////////////////////////////////////////////////////////////////////////////
  48. // CTsFont message handlers