GraphInfoExtendDlg.cpp
上传用户:lj3531212
上传日期:2007-06-18
资源大小:346k
文件大小:2k
源码类别:

绘图程序

开发平台:

Visual C++

  1. // GraphInfoExtendDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "graphsoft.h"
  5. #include "GraphInfoExtendDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CGraphInfoExtendDlg dialog
  13. CGraphInfoExtendDlg::CGraphInfoExtendDlg(CWnd* pParent /*=NULL*/)
  14. : CDialog(CGraphInfoExtendDlg::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CGraphInfoExtendDlg)
  17. m_nPointFlag = -1;
  18. //}}AFX_DATA_INIT
  19. }
  20. void CGraphInfoExtendDlg::DoDataExchange(CDataExchange* pDX)
  21. {
  22. CDialog::DoDataExchange(pDX);
  23. //{{AFX_DATA_MAP(CGraphInfoExtendDlg)
  24. DDX_Control(pDX, IDC_COMBO_ANGLE, m_CombAngle);
  25. DDX_Control(pDX, IDC_SPIN_ANGLE, m_ctrlAngleSpin);
  26. DDX_Radio(pDX, IDC_DRAWPOINTS_RADIO, m_nPointFlag);
  27. //}}AFX_DATA_MAP
  28. }
  29. BEGIN_MESSAGE_MAP(CGraphInfoExtendDlg, CDialog)
  30. //{{AFX_MSG_MAP(CGraphInfoExtendDlg)
  31. ON_CBN_EDITCHANGE(IDC_COMBO_ANGLE, OnEditchangeComboAngle)
  32. //}}AFX_MSG_MAP
  33. END_MESSAGE_MAP()
  34. /////////////////////////////////////////////////////////////////////////////
  35. // CGraphInfoExtendDlg message handlers
  36. BOOL CGraphInfoExtendDlg::OnInitDialog() 
  37. {
  38. CDialog::OnInitDialog();
  39. // TODO: Add extra initialization here
  40. m_ctrlAngleSpin.SetRange(-360,360);
  41. return TRUE;  // return TRUE unless you set the focus to a control
  42.               // EXCEPTION: OCX Property Pages should return FALSE
  43. }
  44. void CGraphInfoExtendDlg::OnEditchangeComboAngle() 
  45. {
  46. // TODO: Add your control notification handler code here
  47. }