ProDlg.cpp
上传用户:jungfrau
上传日期:2022-05-24
资源大小:33k
文件大小:7k
源码类别:

按钮控件

开发平台:

Visual C++

  1. // ProDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "Pro.h"
  5. #include "ProDlg.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. CString pathName,filename;
  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. // CProDlg dialog
  51. CProDlg::CProDlg(CWnd* pParent /*=NULL*/)
  52. : CDialog(CProDlg::IDD, pParent)
  53. {
  54. //{{AFX_DATA_INIT(CProDlg)
  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 CProDlg::DoDataExchange(CDataExchange* pDX)
  61. {
  62. CDialog::DoDataExchange(pDX);
  63. //{{AFX_DATA_MAP(CProDlg)
  64. DDX_Control(pDX, IDC_EDIT2, m_ipaddr);
  65. DDX_Control(pDX, IDC_EDIT1, m_hostname);
  66. DDX_Control(pDX, IDC_COMBO1, m_combox);
  67. DDX_Control(pDX, IDC_PATHNAME_EDIT, m_pathname);
  68. //}}AFX_DATA_MAP
  69. }
  70. BEGIN_MESSAGE_MAP(CProDlg, CDialog)
  71. //{{AFX_MSG_MAP(CProDlg)
  72. ON_WM_SYSCOMMAND()
  73. ON_WM_PAINT()
  74. ON_WM_QUERYDRAGICON()
  75. ON_BN_CLICKED(IDC_EXIT_BUTTON, OnExitButton)
  76. ON_BN_CLICKED(IDC_RUN_BUTTON, OnRunButton)
  77. ON_BN_CLICKED(IDC_FILE_BUTTON, OnFileButton)
  78. ON_BN_CLICKED(IDC_REGISTER_BUTTON, OnRegisterButton)
  79. ON_BN_CLICKED(IDC_NOTEPAD_BUTTON, OnNotepadButton)
  80. ON_BN_CLICKED(IDC_CALCS_BUTTON, OnCalcsButton)
  81. ON_BN_CLICKED(IDC_CMD_BUTTON, OnCmdButton)
  82. ON_BN_CLICKED(IDC_MSPAINT_BUTTON, OnMspaintButton)
  83. ON_BN_CLICKED(IDC_MRT_BUTTON, OnMrtButton)
  84. //}}AFX_MSG_MAP
  85. END_MESSAGE_MAP()
  86. /////////////////////////////////////////////////////////////////////////////
  87. // CProDlg message handlers
  88. BOOL CProDlg::OnInitDialog()
  89. {
  90. CDialog::OnInitDialog();
  91. // Add "About..." menu item to system menu.
  92. // IDM_ABOUTBOX must be in the system command range.
  93. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  94. ASSERT(IDM_ABOUTBOX < 0xF000);
  95. CMenu* pSysMenu = GetSystemMenu(FALSE);
  96. if (pSysMenu != NULL)
  97. {
  98. CString strAboutMenu;
  99. strAboutMenu.LoadString(IDS_ABOUTBOX);
  100. if (!strAboutMenu.IsEmpty())
  101. {
  102. pSysMenu->AppendMenu(MF_SEPARATOR);
  103. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  104. }
  105. }
  106. // Set the icon for this dialog.  The framework does this automatically
  107. //  when the application's main window is not a dialog
  108. SetIcon(m_hIcon, TRUE); // Set big icon
  109. SetIcon(m_hIcon, FALSE); // Set small icon
  110. // TODO: Add extra initialization here
  111. m_combox.SetCurSel(0);
  112. return TRUE;  // return TRUE  unless you set the focus to a control
  113. }
  114. void CProDlg::OnSysCommand(UINT nID, LPARAM lParam)
  115. {
  116. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  117. {
  118. CAboutDlg dlgAbout;
  119. dlgAbout.DoModal();
  120. }
  121. else
  122. {
  123. CDialog::OnSysCommand(nID, lParam);
  124. }
  125. }
  126. // If you add a minimize button to your dialog, you will need the code below
  127. //  to draw the icon.  For MFC applications using the document/view model,
  128. //  this is automatically done for you by the framework.
  129. void CProDlg::OnPaint() 
  130. {
  131. if (IsIconic())
  132. {
  133. CPaintDC dc(this); // device context for painting
  134. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  135. // Center icon in client rectangle
  136. int cxIcon = GetSystemMetrics(SM_CXICON);
  137. int cyIcon = GetSystemMetrics(SM_CYICON);
  138. CRect rect;
  139. GetClientRect(&rect);
  140. int x = (rect.Width() - cxIcon + 1) / 2;
  141. int y = (rect.Height() - cyIcon + 1) / 2;
  142. // Draw the icon
  143. dc.DrawIcon(x, y, m_hIcon);
  144. }
  145. else
  146. {
  147. CDialog::OnPaint();
  148. }
  149. }
  150. // The system calls this to obtain the cursor to display while the user drags
  151. //  the minimized window.
  152. HCURSOR CProDlg::OnQueryDragIcon()
  153. {
  154. return (HCURSOR) m_hIcon;
  155. }
  156. void CProDlg::OnExitButton() 
  157. {
  158. // TODO: Add your control notification handler code here
  159. OnOK();
  160. }
  161. void CProDlg::OnRunButton() 
  162. {
  163. // char szFilters[]= "Files (*.exe)|*.exe|All Files (*.*)|*.*||"; 
  164. // CString filters="Files (*.exe)|*.exe|All Files (*.*)|*.*||";
  165.  
  166. // CFileDialog fileDlg (TRUE, "exe", "*.exe", 
  167. // OFN_FILEMUSTEXIST| OFN_HIDEREADONLY, /*szFilters*/filters, this); 
  168.  
  169. // if( fileDlg.DoModal ()==IDOK ) 
  170. // { 
  171. // CString pathName = fileDlg.GetPathName();
  172. // m_pathname.SetSel(0,-1);
  173. // m_pathname.ReplaceSel(pathName);
  174. // ShellExecute( NULL,"filename", pathName.GetBuffer(0),NULL,NULL,SW_SHOWNORMAL); 
  175. // }
  176. if(!(filename==""))
  177. {
  178. // if(MessageBox("是否运行程序?",0,MB_YESNO)==IDYES)
  179. // {
  180. WinExec(filename,SW_SHOWNORMAL);
  181. // }
  182. }
  183. else;
  184. }
  185. void CProDlg::OnFileButton() 
  186. {
  187. // TODO: Add your control notification handler code here
  188. CString filters="Files (*.exe)|*.exe|All Files (*.*)|*.*||";
  189.  
  190. CFileDialog fileDlg (TRUE, "exe", "*.exe",
  191. OFN_FILEMUSTEXIST| OFN_HIDEREADONLY, /*szFilters*/filters, this);
  192. if( fileDlg.DoModal ()==IDOK ) 
  193. pathName = fileDlg.GetPathName();
  194. filename=fileDlg.GetFileName();
  195. m_pathname.SetSel(0,-1);
  196. m_pathname.ReplaceSel(pathName);
  197. // ShellExecute( NULL,"open", pathName.GetBuffer(0),NULL,NULL,SW_SHOWNORMAL); 
  198. m_combox.SetWindowText(pathName);
  199. m_combox.AddString(pathName);
  200. }
  201. void CProDlg::OnRegisterButton() 
  202. {
  203. // TODO: Add your control notification handler code here
  204. WinExec("regedit.exe",SW_SHOWNORMAL);
  205. }
  206. void CProDlg::OnNotepadButton() 
  207. {
  208. // TODO: Add your control notification handler code here
  209. WinExec("NOTEPAD.EXE",SW_SHOWNORMAL);
  210. }
  211. void CProDlg::OnCalcsButton() 
  212. {
  213. // TODO: Add your control notification handler code here
  214. WinExec("calc.exe",SW_SHOWNORMAL);
  215. }
  216. void CProDlg::OnCmdButton() 
  217. {
  218. // TODO: Add your control notification handler code here
  219. WinExec("cmd.exe",SW_SHOWNORMAL);
  220. }
  221. void CProDlg::OnMspaintButton() 
  222. {
  223. // TODO: Add your control notification handler code here
  224. WinExec("mspaint.exe",SW_SHOW);
  225. }
  226. void CProDlg::OnMrtButton() 
  227. {
  228. // TODO: Add your control notification handler code here
  229. WinExec("MRT.exe",SW_SHOW);
  230. }