UNITSPAG.CPP
上传用户:aakk678
上传日期:2022-07-09
资源大小:406k
文件大小:2k
源码类别:

界面编程

开发平台:

Visual C++

  1. // unitspag.cpp : implementation file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1997 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 "wordpad.h"
  14. #include "unitspag.h"
  15. #include "helpids.h"
  16. #ifdef _DEBUG
  17. #undef THIS_FILE
  18. static char BASED_CODE THIS_FILE[] = __FILE__;
  19. #endif
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CUnitsPage dialog
  22. const DWORD CUnitsPage::m_nHelpIDs[] = 
  23. {
  24. IDC_BOX, IDH_COMM_GROUPBOX,
  25. IDC_UNITS_IN, IDH_WORDPAD_INCHES,
  26. IDC_UNITS_CM, IDH_WORDPAD_CENTIMETERS,
  27. IDC_UNITS_PT, IDH_WORDPAD_POINTS,
  28. IDC_UNITS_PI, IDH_WORDPAD_PICAS,
  29. IDC_WORDSEL, IDH_WORDPAD_OPTIONS_AUTOWORDSEL,
  30.   0, 0
  31. };
  32. CUnitsPage::CUnitsPage() : CCSPropertyPage(CUnitsPage::IDD)
  33. {
  34. //{{AFX_DATA_INIT(CUnitsPage)
  35. m_nUnits = -1;
  36. m_bWordSel = FALSE;
  37. //}}AFX_DATA_INIT
  38. }
  39. void CUnitsPage::DoDataExchange(CDataExchange* pDX)
  40. {
  41. CCSPropertyPage::DoDataExchange(pDX);
  42. //{{AFX_DATA_MAP(CUnitsPage)
  43. DDX_Radio(pDX, IDC_UNITS_IN, m_nUnits);
  44. DDX_Check(pDX, IDC_WORDSEL, m_bWordSel);
  45. //}}AFX_DATA_MAP
  46. }
  47. BEGIN_MESSAGE_MAP(CUnitsPage, CCSPropertyPage)
  48. //{{AFX_MSG_MAP(CUnitsPage)
  49. // NOTE: the ClassWizard will add message map macros here
  50. //}}AFX_MSG_MAP
  51. END_MESSAGE_MAP()
  52. /////////////////////////////////////////////////////////////////////////////
  53. // CUnitsPage message handlers