pendlg.cpp
上传用户:biuytresa
上传日期:2007-12-07
资源大小:721k
文件大小:2k
源码类别:

DNA

开发平台:

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