EditBoxDlg.cpp
上传用户:jiaxintai
上传日期:2021-05-10
资源大小:1834k
文件大小:6k
源码类别:

编辑框

开发平台:

Visual C++

  1. // EditBoxDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "EditBox.h"
  5. #include "EditBoxDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CAboutDlg dialog used for App About
  13. class CAboutDlg : public CDialog
  14. {
  15. public:
  16. CAboutDlg();
  17. // Dialog Data
  18. //{{AFX_DATA(CAboutDlg)
  19. enum { IDD = IDD_ABOUTBOX };
  20. //}}AFX_DATA
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CAboutDlg)
  23. protected:
  24. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. protected:
  28. //{{AFX_MSG(CAboutDlg)
  29. //}}AFX_MSG
  30. DECLARE_MESSAGE_MAP()
  31. };
  32. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  33. {
  34. //{{AFX_DATA_INIT(CAboutDlg)
  35. //}}AFX_DATA_INIT
  36. }
  37. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  38. {
  39. CDialog::DoDataExchange(pDX);
  40. //{{AFX_DATA_MAP(CAboutDlg)
  41. //}}AFX_DATA_MAP
  42. }
  43. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  44. //{{AFX_MSG_MAP(CAboutDlg)
  45. // No message handlers
  46. //}}AFX_MSG_MAP
  47. END_MESSAGE_MAP()
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CEditBoxDlg dialog
  50. CEditBoxDlg::CEditBoxDlg(CWnd* pParent /*=NULL*/)
  51. : CDialog(CEditBoxDlg::IDD, pParent)
  52. {
  53. //{{AFX_DATA_INIT(CEditBoxDlg)
  54. // NOTE: the ClassWizard will add member initialization here
  55. //}}AFX_DATA_INIT
  56. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  57. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  58. }
  59. void CEditBoxDlg::DoDataExchange(CDataExchange* pDX)
  60. {
  61. CDialog::DoDataExchange(pDX);
  62. //{{AFX_DATA_MAP(CEditBoxDlg)
  63. DDX_Control(pDX, IDC_UNDO_BUTTON, m_undo);
  64. DDX_Control(pDX, IDC_TRANSFER_BUTTON, m_transfer);
  65. DDX_Control(pDX, IDC_SHOW2_BUTTON, m_show2);
  66. DDX_Control(pDX, IDC_SHOW1_BUTTON, m_show1);
  67. DDX_Control(pDX, IDC_EXIT_BUTTON, m_exit);
  68. DDX_Control(pDX, IDC_EDIT2, m_Edit2);
  69. DDX_Control(pDX, IDC_EDIT1, m_Edit1);
  70. DDX_Control(pDX, IDC_CLEAR2_BUTTON, m_clear2);
  71. DDX_Control(pDX, IDC_CLEAR1_BUTTON, m_clear1);
  72. //}}AFX_DATA_MAP
  73. }
  74. BEGIN_MESSAGE_MAP(CEditBoxDlg, CDialog)
  75. //{{AFX_MSG_MAP(CEditBoxDlg)
  76. ON_WM_SYSCOMMAND()
  77. ON_WM_PAINT()
  78. ON_WM_QUERYDRAGICON()
  79. ON_BN_CLICKED(IDC_SHOW1_BUTTON, OnShow1Button)
  80. ON_BN_CLICKED(IDC_CLEAR1_BUTTON, OnClear1Button)
  81. ON_BN_CLICKED(IDC_SHOW2_BUTTON, OnShow2Button)
  82. ON_BN_CLICKED(IDC_CLEAR2_BUTTON, OnClear2Button)
  83. ON_BN_CLICKED(IDC_TRANSFER_BUTTON, OnTransferButton)
  84. ON_BN_CLICKED(IDC_UNDO_BUTTON, OnUndoButton)
  85. ON_BN_CLICKED(IDC_EXIT_BUTTON, OnOkButton)
  86. //}}AFX_MSG_MAP
  87. END_MESSAGE_MAP()
  88. /////////////////////////////////////////////////////////////////////////////
  89. // CEditBoxDlg message handlers
  90. BOOL CEditBoxDlg::OnInitDialog()
  91. {
  92. CDialog::OnInitDialog();
  93. // Add "About..." menu item to system menu.
  94. // IDM_ABOUTBOX must be in the system command range.
  95. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  96. ASSERT(IDM_ABOUTBOX < 0xF000);
  97. CMenu* pSysMenu = GetSystemMenu(FALSE);
  98. if (pSysMenu != NULL)
  99. {
  100. CString strAboutMenu;
  101. strAboutMenu.LoadString(IDS_ABOUTBOX);
  102. if (!strAboutMenu.IsEmpty())
  103. {
  104. pSysMenu->AppendMenu(MF_SEPARATOR);
  105. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  106. }
  107. }
  108. // Set the icon for this dialog.  The framework does this automatically
  109. //  when the application's main window is not a dialog
  110. SetIcon(m_hIcon, TRUE); // Set big icon
  111. SetIcon(m_hIcon, FALSE); // Set small icon
  112. // TODO: Add extra initialization here
  113. return TRUE;  // return TRUE  unless you set the focus to a control
  114. }
  115. void CEditBoxDlg::OnSysCommand(UINT nID, LPARAM lParam)
  116. {
  117. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  118. {
  119. CAboutDlg dlgAbout;
  120. dlgAbout.DoModal();
  121. }
  122. else
  123. {
  124. CDialog::OnSysCommand(nID, lParam);
  125. }
  126. }
  127. // If you add a minimize button to your dialog, you will need the code below
  128. //  to draw the icon.  For MFC applications using the document/view model,
  129. //  this is automatically done for you by the framework.
  130. void CEditBoxDlg::OnPaint() 
  131. {
  132. if (IsIconic())
  133. {
  134. CPaintDC dc(this); // device context for painting
  135. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  136. // Center icon in client rectangle
  137. int cxIcon = GetSystemMetrics(SM_CXICON);
  138. int cyIcon = GetSystemMetrics(SM_CYICON);
  139. CRect rect;
  140. GetClientRect(&rect);
  141. int x = (rect.Width() - cxIcon + 1) / 2;
  142. int y = (rect.Height() - cyIcon + 1) / 2;
  143. // Draw the icon
  144. dc.DrawIcon(x, y, m_hIcon);
  145. }
  146. else
  147. {
  148. CDialog::OnPaint();
  149. }
  150. }
  151. // The system calls this to obtain the cursor to display while the user drags
  152. //  the minimized window.
  153. HCURSOR CEditBoxDlg::OnQueryDragIcon()
  154. {
  155. return (HCURSOR) m_hIcon;
  156. }
  157. void CEditBoxDlg::OnShow1Button() 
  158. {
  159. // TODO: Add your control notification handler code here
  160. m_Edit1.SetSel(0,-1);
  161. m_Edit1.ReplaceSel("This is the first EditBox.");
  162. }
  163. void CEditBoxDlg::OnClear1Button() 
  164. {
  165. // TODO: Add your control notification handler code here
  166. m_Edit1.SetSel(0,-1);
  167. m_Edit1.ReplaceSel("");
  168. }
  169. void CEditBoxDlg::OnShow2Button() 
  170. {
  171. // TODO: Add your control notification handler code here
  172. m_Edit2.SetSel(0,-1);
  173. m_Edit2.ReplaceSel("This is the second EditBox.");
  174. }
  175. void CEditBoxDlg::OnClear2Button() 
  176. {
  177. // TODO: Add your control notification handler code here
  178. m_Edit2.SetSel(0,-1);
  179. m_Edit2.ReplaceSel("");
  180. }
  181. void CEditBoxDlg::OnTransferButton() 
  182. {
  183. // TODO: Add your control notification handler code here
  184. m_Edit1.SetSel(0,-1);
  185. m_Edit1.Copy();
  186. m_Edit2.SetSel(0,-1);
  187. m_Edit2.ReplaceSel("");
  188. m_Edit2.Paste();
  189. }
  190. void CEditBoxDlg::OnUndoButton() 
  191. {
  192. // TODO: Add your control notification handler code here
  193. m_Edit1.Undo();
  194. m_Edit2.Undo();
  195. }
  196. void CEditBoxDlg::OnOkButton() 
  197. {
  198. // TODO: Add your control notification handler code here
  199. OnOK();
  200. }