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

Windows编程

开发平台:

Visual C++

  1. // pendlg.cpp : implementation file
  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. //
  13. #include "stdafx.h"
  14. #include "scribble.h"
  15. #include "pendlg.h"
  16. #ifdef _DEBUG
  17. #undef THIS_FILE
  18. static char BASED_CODE THIS_FILE[] = __FILE__;
  19. #endif
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CPenWidthsDlg dialog
  22. CPenWidthsDlg::CPenWidthsDlg(CWnd* pParent /*=NULL*/)
  23. : CDialog(CPenWidthsDlg::IDD, pParent)
  24. {
  25. //{{AFX_DATA_INIT(CPenWidthsDlg)
  26. m_nThinWidth = 0;
  27. m_nThickWidth = 0;
  28. //}}AFX_DATA_INIT
  29. }
  30. void CPenWidthsDlg::DoDataExchange(CDataExchange* pDX)
  31. {
  32. CDialog::DoDataExchange(pDX);
  33. //{{AFX_DATA_MAP(CPenWidthsDlg)
  34. DDX_Text(pDX, IDC_THIN_PEN_WIDTH, m_nThinWidth);
  35. DDV_MinMaxInt(pDX, m_nThinWidth, 1, 20);
  36. DDX_Text(pDX, IDC_THICK_PEN_WIDTH, m_nThickWidth);
  37. DDV_MinMaxInt(pDX, m_nThickWidth, 1, 20);
  38. //}}AFX_DATA_MAP
  39. }
  40. BEGIN_MESSAGE_MAP(CPenWidthsDlg, CDialog)
  41. //{{AFX_MSG_MAP(CPenWidthsDlg)
  42. ON_BN_CLICKED(IDC_DEFAULT_PEN_WIDTHS, OnDefaultPenWidths)
  43. //}}AFX_MSG_MAP
  44. END_MESSAGE_MAP()
  45. /////////////////////////////////////////////////////////////////////////////
  46. // CPenWidthsDlg message handlers
  47. void CPenWidthsDlg::OnDefaultPenWidths()
  48. {
  49. m_nThinWidth = 2;
  50. m_nThickWidth = 5;
  51. UpdateData(FALSE);  // causes DoDataExchange()
  52. // bSave=FALSE means don't save from screen,
  53. // rather, write to screen
  54. }