SettingDialog.cpp
上传用户:herolh
上传日期:2022-07-18
资源大小:3590k
文件大小:2k
源码类别:

绘图程序

开发平台:

Visual C++

  1. // SettingDialog.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "Graphic.h"
  5. #include "SettingDialog.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // SettingDialog dialog
  13. SettingDialog::SettingDialog(CWnd* pParent /*=NULL*/)
  14. : CDialog(SettingDialog::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(SettingDialog)
  17. m_nLineWidth = 0;
  18. m_nLineStyle = -1;
  19. //}}AFX_DATA_INIT
  20. }
  21. void SettingDialog::DoDataExchange(CDataExchange* pDX)
  22. {
  23. CDialog::DoDataExchange(pDX);
  24. //{{AFX_DATA_MAP(SettingDialog)
  25. DDX_Text(pDX, ID_LINEWIDTH, m_nLineWidth);
  26. DDX_Radio(pDX, IDC_RADIO1, m_nLineStyle);
  27. //}}AFX_DATA_MAP
  28. }
  29. BEGIN_MESSAGE_MAP(SettingDialog, CDialog)
  30. //{{AFX_MSG_MAP(SettingDialog)
  31. ON_EN_CHANGE(ID_LINEWIDTH, OnChangeLinewidth)
  32. ON_BN_CLICKED(IDC_RADIO1, OnRadio1)
  33. ON_BN_CLICKED(IDC_RADIO2, OnRadio2)
  34. ON_BN_CLICKED(IDC_RADIO3, OnRadio3)
  35. ON_WM_PAINT()
  36. //}}AFX_MSG_MAP
  37. END_MESSAGE_MAP()
  38. /////////////////////////////////////////////////////////////////////////////
  39. // SettingDialog message handlers
  40. void SettingDialog::OnChangeLinewidth() 
  41. {
  42. // TODO: If this is a RICHEDIT control, the control will not
  43. // send this notification unless you override the CDialog::OnInitDialog()
  44. // function and call CRichEditCtrl().SetEventMask()
  45. // with the ENM_CHANGE flag ORed into the mask.
  46. Invalidate();
  47. // TODO: Add your control notification handler code here
  48. }
  49. void SettingDialog::OnRadio1() 
  50. {
  51. // TODO: Add your control notification handler code here
  52. Invalidate();
  53. }
  54. void SettingDialog::OnRadio2() 
  55. {
  56. // TODO: Add your control notification handler code here
  57. Invalidate();
  58. }
  59. void SettingDialog::OnRadio3() 
  60. {
  61. // TODO: Add your control notification handler code here
  62. Invalidate();
  63. }
  64. void SettingDialog::OnPaint() 
  65. {
  66. CPaintDC dc(this); // device context for painting
  67. UpdateData();
  68. CPen pen(m_nLineStyle,m_nLineWidth,RGB(0,0,255));
  69. dc.SelectObject(&pen);
  70. CRect rect;
  71. GetDlgItem(IDC_SAMPLE)->GetWindowRect(&rect);
  72. ScreenToClient(rect);
  73. dc.MoveTo(rect.left+20,rect.top+rect.Height()/2);
  74. dc.LineTo(rect.right-20,rect.top+rect.Height()/2);
  75. // TODO: Add your message handler code here
  76. // Do not call CDialog::OnPaint() for painting messages
  77. }