FloatTestDlg.cpp
上传用户:chengtong
上传日期:2007-01-02
资源大小:18k
文件大小:5k
源码类别:

编辑框

开发平台:

Visual C++

  1. // FloatTestDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "FloatEdit.h"
  5. #include "FloatTest.h"
  6. #include "FloatTestDlg.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CAboutDlg dialog used for App About
  14. class CAboutDlg : public CDialog
  15. {
  16. public:
  17. CAboutDlg();
  18. // Dialog Data
  19. //{{AFX_DATA(CAboutDlg)
  20. enum { IDD = IDD_ABOUTBOX };
  21. //}}AFX_DATA
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CAboutDlg)
  24. protected:
  25. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. protected:
  29. //{{AFX_MSG(CAboutDlg)
  30. //}}AFX_MSG
  31. DECLARE_MESSAGE_MAP()
  32. };
  33. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  34. {
  35. //{{AFX_DATA_INIT(CAboutDlg)
  36. //}}AFX_DATA_INIT
  37. }
  38. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  39. {
  40. CDialog::DoDataExchange(pDX);
  41. //{{AFX_DATA_MAP(CAboutDlg)
  42. //}}AFX_DATA_MAP
  43. }
  44. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  45. //{{AFX_MSG_MAP(CAboutDlg)
  46. // No message handlers
  47. //}}AFX_MSG_MAP
  48. END_MESSAGE_MAP()
  49. /////////////////////////////////////////////////////////////////////////////
  50. // CFloatTestDlg dialog
  51. CFloatTestDlg::CFloatTestDlg(CWnd* pParent /*=NULL*/)
  52. : CDialog(CFloatTestDlg::IDD, pParent)
  53. {
  54. //{{AFX_DATA_INIT(CFloatTestDlg)
  55. // NOTE: the ClassWizard will add member initialization here
  56. //}}AFX_DATA_INIT
  57. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  58. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  59. }
  60. void CFloatTestDlg::DoDataExchange(CDataExchange* pDX)
  61. {
  62. CDialog::DoDataExchange(pDX);
  63. //{{AFX_DATA_MAP(CFloatTestDlg)
  64. DDX_Control(pDX, IDC_CHECK_COMMAS, m_CheckCommas);
  65. DDX_Control(pDX, IDC_EDIT_DECIMALS, m_Decimals);
  66. DDX_Control(pDX, IDC_EDIT_FLOAT, m_FloatEdit);
  67. //}}AFX_DATA_MAP
  68. }
  69. BEGIN_MESSAGE_MAP(CFloatTestDlg, CDialog)
  70. //{{AFX_MSG_MAP(CFloatTestDlg)
  71. ON_WM_SYSCOMMAND()
  72. ON_WM_PAINT()
  73. ON_WM_QUERYDRAGICON()
  74. ON_BN_CLICKED(IDC_BUTTON_NEGATIVE, OnButtonNegative)
  75. ON_BN_CLICKED(IDC_BUTTON_POSITIVE, OnButtonPositive)
  76. ON_BN_CLICKED(IDC_CHECK_COMMAS, OnCheckCommas)
  77. ON_EN_KILLFOCUS(IDC_EDIT_DECIMALS, OnKillfocusEditDecimals)
  78. //}}AFX_MSG_MAP
  79. END_MESSAGE_MAP()
  80. /////////////////////////////////////////////////////////////////////////////
  81. // CFloatTestDlg message handlers
  82. BOOL CFloatTestDlg::OnInitDialog()
  83. {
  84. CDialog::OnInitDialog();
  85. // Add "About..." menu item to system menu.
  86. // IDM_ABOUTBOX must be in the system command range.
  87. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  88. ASSERT(IDM_ABOUTBOX < 0xF000);
  89. CMenu* pSysMenu = GetSystemMenu(FALSE);
  90. if (pSysMenu != NULL)
  91. {
  92. CString strAboutMenu;
  93. strAboutMenu.LoadString(IDS_ABOUTBOX);
  94. if (!strAboutMenu.IsEmpty())
  95. {
  96. pSysMenu->AppendMenu(MF_SEPARATOR);
  97. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  98. }
  99. }
  100. // Set the icon for this dialog.  The framework does this automatically
  101. //  when the application's main window is not a dialog
  102. SetIcon(m_hIcon, TRUE); // Set big icon
  103. SetIcon(m_hIcon, FALSE); // Set small icon
  104.   m_FloatEdit.SetValue(0.0); // these initialization is mandatory 
  105.   // the "use commas" checkbox initially checked
  106.   ((CButton *)GetDlgItem(IDC_CHECK_COMMAS))->SetCheck(TRUE);
  107. return TRUE;  // return TRUE  unless you set the focus to a control
  108. }
  109. void CFloatTestDlg::OnSysCommand(UINT nID, LPARAM lParam)
  110. {
  111. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  112. {
  113. CAboutDlg dlgAbout;
  114. dlgAbout.DoModal();
  115. }
  116. else
  117. {
  118. CDialog::OnSysCommand(nID, lParam);
  119. }
  120. }
  121. void CFloatTestDlg::OnPaint() 
  122. {
  123. if (IsIconic())
  124. {
  125. CPaintDC dc(this); // device context for painting
  126. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  127. // Center icon in client rectangle
  128. int cxIcon = GetSystemMetrics(SM_CXICON);
  129. int cyIcon = GetSystemMetrics(SM_CYICON);
  130. CRect rect;
  131. GetClientRect(&rect);
  132. int x = (rect.Width() - cxIcon + 1) / 2;
  133. int y = (rect.Height() - cyIcon + 1) / 2;
  134. // Draw the icon
  135. dc.DrawIcon(x, y, m_hIcon);
  136. }
  137. else
  138. {
  139. CDialog::OnPaint();
  140. }
  141. }
  142. // The system calls this to obtain the cursor to display while the user drags
  143. //  the minimized window.
  144. HCURSOR CFloatTestDlg::OnQueryDragIcon()
  145. {
  146. return (HCURSOR) m_hIcon;
  147. }
  148. void CFloatTestDlg::OnButtonNegative() 
  149. {
  150.   m_FloatEdit.SetValue(-12332323.67);
  151. }
  152. void CFloatTestDlg::OnButtonPositive() 
  153. {
  154.   m_FloatEdit.SetValue(1255555.45);
  155. }
  156. void CFloatTestDlg::OnCheckCommas() 
  157. {
  158.   m_FloatEdit.EnableCommas(((CButton *) GetDlgItem(IDC_CHECK_COMMAS))->GetCheck());
  159. }
  160. void CFloatTestDlg::OnKillfocusEditDecimals() 
  161. {
  162.   CString strCurrent;
  163.   // get the text
  164.   GetDlgItem(IDC_EDIT_DECIMALS)->GetWindowText(strCurrent);
  165.   // transform in an integer
  166.   int nDecimals;
  167.   nDecimals = atoi(strCurrent.GetBuffer(1));
  168.   // set back the text value
  169.   strCurrent.Format("%d", nDecimals);
  170.   GetDlgItem(IDC_EDIT_DECIMALS)->SetWindowText(strCurrent);
  171.   // set the decimals for the float edit control
  172.   m_FloatEdit.SetDecimals(nDecimals);
  173. }