- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
SettingDialog.cpp
资源名称:ac.rar [点击查看]
上传用户:herolh
上传日期:2022-07-18
资源大小:3590k
文件大小:2k
源码类别:
绘图程序
开发平台:
Visual C++
- // SettingDialog.cpp : implementation file
- //
- #include "stdafx.h"
- #include "Graphic.h"
- #include "SettingDialog.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // SettingDialog dialog
- SettingDialog::SettingDialog(CWnd* pParent /*=NULL*/)
- : CDialog(SettingDialog::IDD, pParent)
- {
- //{{AFX_DATA_INIT(SettingDialog)
- m_nLineWidth = 0;
- m_nLineStyle = -1;
- //}}AFX_DATA_INIT
- }
- void SettingDialog::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(SettingDialog)
- DDX_Text(pDX, ID_LINEWIDTH, m_nLineWidth);
- DDX_Radio(pDX, IDC_RADIO1, m_nLineStyle);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(SettingDialog, CDialog)
- //{{AFX_MSG_MAP(SettingDialog)
- ON_EN_CHANGE(ID_LINEWIDTH, OnChangeLinewidth)
- ON_BN_CLICKED(IDC_RADIO1, OnRadio1)
- ON_BN_CLICKED(IDC_RADIO2, OnRadio2)
- ON_BN_CLICKED(IDC_RADIO3, OnRadio3)
- ON_WM_PAINT()
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // SettingDialog message handlers
- void SettingDialog::OnChangeLinewidth()
- {
- // TODO: If this is a RICHEDIT control, the control will not
- // send this notification unless you override the CDialog::OnInitDialog()
- // function and call CRichEditCtrl().SetEventMask()
- // with the ENM_CHANGE flag ORed into the mask.
- Invalidate();
- // TODO: Add your control notification handler code here
- }
- void SettingDialog::OnRadio1()
- {
- // TODO: Add your control notification handler code here
- Invalidate();
- }
- void SettingDialog::OnRadio2()
- {
- // TODO: Add your control notification handler code here
- Invalidate();
- }
- void SettingDialog::OnRadio3()
- {
- // TODO: Add your control notification handler code here
- Invalidate();
- }
- void SettingDialog::OnPaint()
- {
- CPaintDC dc(this); // device context for painting
- UpdateData();
- CPen pen(m_nLineStyle,m_nLineWidth,RGB(0,0,255));
- dc.SelectObject(&pen);
- CRect rect;
- GetDlgItem(IDC_SAMPLE)->GetWindowRect(&rect);
- ScreenToClient(rect);
- dc.MoveTo(rect.left+20,rect.top+rect.Height()/2);
- dc.LineTo(rect.right-20,rect.top+rect.Height()/2);
- // TODO: Add your message handler code here
- // Do not call CDialog::OnPaint() for painting messages
- }