CursorPropDlg.cpp
上传用户:ywlong9188
上传日期:2022-05-31
资源大小:2656k
文件大小:2k
源码类别:

远程控制编程

开发平台:

C/C++

  1. // CursorPropDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "proj.h"
  5. #include "colorStatic.h"
  6. #include "CursorPropDlg.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CCursorPropDlg dialog
  14. CCursorPropDlg::CCursorPropDlg(CWnd* pParent /*=NULL*/)
  15. : CDialog(CCursorPropDlg::IDD, pParent)
  16. {
  17. //{{AFX_DATA_INIT(CCursorPropDlg)
  18. m_nSeg = 0;
  19. m_nStyle = -1;
  20. m_sParam = _T("");
  21. m_sNumber = _T("");
  22. m_bCursor = FALSE;
  23. m_name = _T("");
  24. m_bRuler = FALSE;
  25. m_bReverse = FALSE;
  26. //}}AFX_DATA_INIT
  27. }
  28. void CCursorPropDlg::DoDataExchange(CDataExchange* pDX)
  29. {
  30. CDialog::DoDataExchange(pDX);
  31. //{{AFX_DATA_MAP(CCursorPropDlg)
  32. DDX_Text(pDX, IDC_EDIT2, m_nSeg);
  33. DDV_MinMaxInt(pDX, m_nSeg, 1, 10);
  34. DDX_Radio(pDX, IDC_RADIO1, m_nStyle);
  35. DDX_Text(pDX, IDC_EDIT3, m_sParam);
  36. DDX_Text(pDX, IDC_EDIT4, m_sNumber);
  37. DDX_Check(pDX, IDC_CHECK1, m_bCursor);
  38. DDX_Text(pDX, IDC_CURSOR_NAME, m_name);
  39. DDX_Check(pDX, IDC_CHECK2, m_bRuler);
  40. DDX_Check(pDX, IDC_CHECK3, m_bReverse);
  41. //}}AFX_DATA_MAP
  42. }
  43. BEGIN_MESSAGE_MAP(CCursorPropDlg, CDialog)
  44. //{{AFX_MSG_MAP(CCursorPropDlg)
  45. //}}AFX_MSG_MAP
  46. END_MESSAGE_MAP()
  47. /////////////////////////////////////////////////////////////////////////////
  48. // CCursorPropDlg message handlers
  49. BOOL CCursorPropDlg::OnInitDialog() 
  50. {
  51. CDialog::OnInitDialog();
  52. // TODO: Add extra initialization here
  53. m_color.SubclassDlgItem(IDC_COLOR,this);
  54. m_cruler.SubclassDlgItem(IDC_CRULER,this);
  55. return TRUE;  // return TRUE unless you set the focus to a control
  56.               // EXCEPTION: OCX Property Pages should return FALSE
  57. }