MultiThreadDlg.cpp
上传用户:xsxdsb
上传日期:2009-12-14
资源大小:672k
文件大小:6k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // MultiThreadDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "MultiThread.h"
  5. #include "MultiThreadDlg.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. typedef struct ThreadData
  14. {
  15. CMultiThreadDlg* pDlg;
  16. int nIndex;
  17. }THREADDATA;
  18. UINT WorkThreadProc(LPVOID lParam);
  19. class CAboutDlg : public CDialog
  20. {
  21. public:
  22. CAboutDlg();
  23. // Dialog Data
  24. //{{AFX_DATA(CAboutDlg)
  25. enum { IDD = IDD_ABOUTBOX };
  26. //}}AFX_DATA
  27. // ClassWizard generated virtual function overrides
  28. //{{AFX_VIRTUAL(CAboutDlg)
  29. protected:
  30. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  31. //}}AFX_VIRTUAL
  32. // Implementation
  33. protected:
  34. //{{AFX_MSG(CAboutDlg)
  35. //}}AFX_MSG
  36. DECLARE_MESSAGE_MAP()
  37. };
  38. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  39. {
  40. //{{AFX_DATA_INIT(CAboutDlg)
  41. //}}AFX_DATA_INIT
  42. }
  43. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  44. {
  45. CDialog::DoDataExchange(pDX);
  46. //{{AFX_DATA_MAP(CAboutDlg)
  47. //}}AFX_DATA_MAP
  48. }
  49. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  50. //{{AFX_MSG_MAP(CAboutDlg)
  51. // No message handlers
  52. //}}AFX_MSG_MAP
  53. END_MESSAGE_MAP()
  54. /////////////////////////////////////////////////////////////////////////////
  55. // CMultiThreadDlg dialog
  56. CMultiThreadDlg::CMultiThreadDlg(CWnd* pParent /*=NULL*/)
  57. : CDialog(CMultiThreadDlg::IDD, pParent)
  58. {
  59. //{{AFX_DATA_INIT(CMultiThreadDlg)
  60. // NOTE: the ClassWizard will add member initialization here
  61. //}}AFX_DATA_INIT
  62. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  63. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  64. }
  65. void CMultiThreadDlg::DoDataExchange(CDataExchange* pDX)
  66. {
  67. CDialog::DoDataExchange(pDX);
  68. //{{AFX_DATA_MAP(CMultiThreadDlg)
  69. DDX_Control(pDX, IDC_PROGRESS3, m_Progress3);
  70. DDX_Control(pDX, IDC_PROGRESS2, m_Progress2);
  71. DDX_Control(pDX, IDC_PROGRESS1, m_Progress1);
  72. //}}AFX_DATA_MAP
  73. }
  74. BEGIN_MESSAGE_MAP(CMultiThreadDlg, CDialog)
  75. //{{AFX_MSG_MAP(CMultiThreadDlg)
  76. ON_WM_SYSCOMMAND()
  77. ON_WM_PAINT()
  78. ON_WM_QUERYDRAGICON()
  79. ON_BN_CLICKED(IDC_START1, OnStart1)
  80. ON_BN_CLICKED(IDC_START2, OnStart2)
  81. ON_BN_CLICKED(IDC_START3, OnStart3)
  82. //}}AFX_MSG_MAP
  83. END_MESSAGE_MAP()
  84. /////////////////////////////////////////////////////////////////////////////
  85. // CMultiThreadDlg message handlers
  86. BOOL CMultiThreadDlg::OnInitDialog()
  87. {
  88. CDialog::OnInitDialog();
  89. // Add "About..." menu item to system menu.
  90. // IDM_ABOUTBOX must be in the system command range.
  91. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  92. ASSERT(IDM_ABOUTBOX < 0xF000);
  93. CMenu* pSysMenu = GetSystemMenu(FALSE);
  94. if (pSysMenu != NULL)
  95. {
  96. CString strAboutMenu;
  97. strAboutMenu.LoadString(IDS_ABOUTBOX);
  98. if (!strAboutMenu.IsEmpty())
  99. {
  100. pSysMenu->AppendMenu(MF_SEPARATOR);
  101. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  102. }
  103. }
  104. // Set the icon for this dialog.  The framework does this automatically
  105. //  when the application's main window is not a dialog
  106. SetIcon(m_hIcon, TRUE); // Set big icon
  107. SetIcon(m_hIcon, FALSE); // Set small icon
  108. // TODO: Add extra initialization here
  109. //初始化进度条
  110. m_Progress1.SetRange(0,10000);
  111. m_Progress2.SetRange(0,10000);
  112. m_Progress3.SetRange(0,10000);
  113. m_Progress1.SetPos(0);
  114. m_Progress2.SetPos(0);
  115. m_Progress3.SetPos(0);
  116. return TRUE;  // return TRUE  unless you set the focus to a control
  117. }
  118. void CMultiThreadDlg::OnSysCommand(UINT nID, LPARAM lParam)
  119. {
  120. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  121. {
  122. CAboutDlg dlgAbout;
  123. dlgAbout.DoModal();
  124. }
  125. else
  126. {
  127. CDialog::OnSysCommand(nID, lParam);
  128. }
  129. }
  130. // If you add a minimize button to your dialog, you will need the code below
  131. //  to draw the icon.  For MFC applications using the document/view model,
  132. //  this is automatically done for you by the framework.
  133. void CMultiThreadDlg::OnPaint() 
  134. {
  135. if (IsIconic())
  136. {
  137. CPaintDC dc(this); // device context for painting
  138. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  139. // Center icon in client rectangle
  140. int cxIcon = GetSystemMetrics(SM_CXICON);
  141. int cyIcon = GetSystemMetrics(SM_CYICON);
  142. CRect rect;
  143. GetClientRect(&rect);
  144. int x = (rect.Width() - cxIcon + 1) / 2;
  145. int y = (rect.Height() - cyIcon + 1) / 2;
  146. // Draw the icon
  147. dc.DrawIcon(x, y, m_hIcon);
  148. }
  149. else
  150. {
  151. CDialog::OnPaint();
  152. }
  153. }
  154. // The system calls this to obtain the cursor to display while the user drags
  155. //  the minimized window.
  156. HCURSOR CMultiThreadDlg::OnQueryDragIcon()
  157. {
  158. return (HCURSOR) m_hIcon;
  159. }
  160. //开启第一个工作线程
  161. void CMultiThreadDlg::OnStart1() 
  162. {
  163. THREADDATA* pData = new THREADDATA;
  164. //对应第一个进度条
  165. pData->nIndex = 1;
  166. pData->pDlg = this;
  167. AfxBeginThread(WorkThreadProc,pData);
  168. }
  169. //开启第一个工作线程
  170. void CMultiThreadDlg::OnStart2() 
  171. {
  172. THREADDATA* pData = new THREADDATA;
  173. //对应第二个进度条
  174. pData->nIndex = 2;
  175. pData->pDlg = this;
  176. AfxBeginThread(WorkThreadProc,pData);
  177. }
  178. //开启第一个工作线程
  179. void CMultiThreadDlg::OnStart3() 
  180. {
  181. THREADDATA* pData = new THREADDATA;
  182. //对应第三个进度条
  183. pData->nIndex = 3;
  184. pData->pDlg = this;
  185. AfxBeginThread(WorkThreadProc,pData);
  186. }
  187. //工作线程
  188. UINT WorkThreadProc(LPVOID lParam)
  189. {
  190. //参数错误,返回
  191. if(lParam == NULL)
  192. return -1;
  193. //转换参数
  194. THREADDATA* pData = (THREADDATA*)lParam;
  195. for(int i=0;i<10000000;i++)
  196. {
  197. if(i%100==0)
  198. {
  199. //是100的背数时发送消息,更新对应进度条。
  200. Sleep(1); //延缓时间
  201. ::SendMessage(pData->pDlg->m_hWnd,WM_UPDATEPOS,pData->nIndex,i/100);
  202. }
  203. }
  204. //清除内存
  205. delete pData;
  206. return 0;
  207. }
  208. LRESULT CMultiThreadDlg::WindowProc(UINT message, WPARAM wParam, LPARAM lParam) 
  209. {
  210. //响应自定义消息
  211. if(message == WM_UPDATEPOS)
  212. {
  213. int nPos = (int)lParam;
  214. switch(wParam)
  215. {
  216. case 1://对应第一个进度条
  217. m_Progress1.SetPos(nPos);
  218. break;
  219. case 2://对应第二个进度条
  220. m_Progress2.SetPos(nPos);
  221. break;
  222. case 3://对应第三个进度条
  223. m_Progress3.SetPos(nPos);
  224. break;
  225. }
  226. }
  227. return CDialog::WindowProc(message, wParam, lParam);
  228. }