MyThreadView.h
上传用户:ynjin1970
上传日期:2014-10-13
资源大小:6438k
文件大小:2k
源码类别:

中间件编程

开发平台:

Visual C++

  1. // MyThreadView.h : interface of the CMyThreadView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MYTHREADVIEW_H__857939DF_9761_48CB_92F9_7C953C0E3C97__INCLUDED_)
  5. #define AFX_MYTHREADVIEW_H__857939DF_9761_48CB_92F9_7C953C0E3C97__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CMyThreadView : public CView
  10. {
  11. protected: // create from serialization only
  12. CMyThreadView();
  13. DECLARE_DYNCREATE(CMyThreadView)
  14. // Attributes
  15. public:
  16. CMyThreadDoc* GetDocument();
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CMyThreadView)
  22. public:
  23. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  24. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  25. protected:
  26. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  27. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  28. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. public:
  32. CWinThread * m_pUIThread; // 记录用户界面线程指针
  33. CWinThread * m_pThread;   // 记录工作线程指针
  34. HANDLE       m_hThread;   // 记录工作线程句柄
  35. virtual ~CMyThreadView();
  36. #ifdef _DEBUG
  37. virtual void AssertValid() const;
  38. virtual void Dump(CDumpContext& dc) const;
  39. #endif
  40. protected:
  41. // Generated message map functions
  42. protected:
  43. //{{AFX_MSG(CMyThreadView)
  44. afx_msg void OnThreadResume();
  45. afx_msg void OnThreadSuspend();
  46. afx_msg void OnThreadUi();
  47. afx_msg void OnThreadWorker();
  48. //}}AFX_MSG
  49. DECLARE_MESSAGE_MAP()
  50. };
  51. #ifndef _DEBUG  // debug version in MyThreadView.cpp
  52. inline CMyThreadDoc* CMyThreadView::GetDocument()
  53.    { return (CMyThreadDoc*)m_pDocument; }
  54. #endif
  55. /////////////////////////////////////////////////////////////////////////////
  56. //{{AFX_INSERT_LOCATION}}
  57. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  58. #endif // !defined(AFX_MYTHREADVIEW_H__857939DF_9761_48CB_92F9_7C953C0E3C97__INCLUDED_)