NumericSpinDlg.cpp
上传用户:jiyingjie
上传日期:2007-01-02
资源大小:16k
文件大小:3k
源码类别:

编辑框

开发平台:

Visual C++

  1. // NumericSpinDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "NumericSpin.h"
  5. #include "NumericSpinDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CNumericSpinDlg dialog
  13. CNumericSpinDlg::CNumericSpinDlg(CWnd* pParent /*=NULL*/)
  14. : CDialog(CNumericSpinDlg::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CNumericSpinDlg)
  17. // NOTE: the ClassWizard will add member initialization here
  18. //}}AFX_DATA_INIT
  19. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  20. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  21. }
  22. void CNumericSpinDlg::DoDataExchange(CDataExchange* pDX)
  23. {
  24. CDialog::DoDataExchange(pDX);
  25. //{{AFX_DATA_MAP(CNumericSpinDlg)
  26. DDX_Control(pDX, IDC_SPIN1, m_Spin);
  27. DDX_Control(pDX, IDC_EDIT1, m_Edit);
  28. //}}AFX_DATA_MAP
  29. }
  30. BEGIN_MESSAGE_MAP(CNumericSpinDlg, CDialog)
  31. //{{AFX_MSG_MAP(CNumericSpinDlg)
  32. ON_WM_PAINT()
  33. ON_WM_QUERYDRAGICON()
  34. //}}AFX_MSG_MAP
  35. END_MESSAGE_MAP()
  36. /////////////////////////////////////////////////////////////////////////////
  37. // CNumericSpinDlg message handlers
  38. BOOL CNumericSpinDlg::OnInitDialog()
  39. {
  40. CDialog::OnInitDialog();
  41. // Set the icon for this dialog.  The framework does this automatically
  42. //  when the application's main window is not a dialog
  43. SetIcon(m_hIcon, TRUE); // Set big icon
  44. SetIcon(m_hIcon, FALSE); // Set small icon
  45. // TODO: Add extra initialization here
  46. // Initilize Numerical Spin Control
  47. m_Spin.SetBuddy(&m_Edit);
  48. m_Spin.SetRange(-100.0f, 100.0f);
  49. m_Spin.SetPos(-5.5);
  50. m_Spin.SetDelta(0.25f);
  51. return TRUE;  // return TRUE  unless you set the focus to a control
  52. }
  53. // If you add a minimize button to your dialog, you will need the code below
  54. //  to draw the icon.  For MFC applications using the document/view model,
  55. //  this is automatically done for you by the framework.
  56. void CNumericSpinDlg::OnPaint() 
  57. {
  58. if (IsIconic())
  59. {
  60. CPaintDC dc(this); // device context for painting
  61. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  62. // Center icon in client rectangle
  63. int cxIcon = GetSystemMetrics(SM_CXICON);
  64. int cyIcon = GetSystemMetrics(SM_CYICON);
  65. CRect rect;
  66. GetClientRect(&rect);
  67. int x = (rect.Width() - cxIcon + 1) / 2;
  68. int y = (rect.Height() - cyIcon + 1) / 2;
  69. // Draw the icon
  70. dc.DrawIcon(x, y, m_hIcon);
  71. }
  72. else
  73. {
  74. CDialog::OnPaint();
  75. }
  76. }
  77. // The system calls this to obtain the cursor to display while the user drags
  78. //  the minimized window.
  79. HCURSOR CNumericSpinDlg::OnQueryDragIcon()
  80. {
  81. return (HCURSOR) m_hIcon;
  82. }
  83. void CNumericSpinDlg::OnOK() 
  84. {
  85. // retrieve value from the Spin Control
  86. CString str;
  87. str.Format("SpinCtrl value: %.2f", m_Spin.GetPos());
  88. AfxMessageBox(str);
  89. CDialog::OnOK();
  90. }