MyMonitorView.cpp
上传用户:deligs
上传日期:2007-01-08
资源大小:43k
文件大小:2k
源码类别:

网络编程

开发平台:

Visual C++

  1. // MyMonitorView.cpp : implementation of the CMyMonitorView class
  2. //
  3. #include "stdafx.h"
  4. #include "MyMonitor.h"
  5. #include "MyMonitorDoc.h"
  6. #include "MyMonitorView.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CMyMonitorView
  14. IMPLEMENT_DYNCREATE(CMyMonitorView, CView)
  15. BEGIN_MESSAGE_MAP(CMyMonitorView, CView)
  16. //{{AFX_MSG_MAP(CMyMonitorView)
  17. // NOTE - the ClassWizard will add and remove mapping macros here.
  18. //    DO NOT EDIT what you see in these blocks of generated code!
  19. //}}AFX_MSG_MAP
  20. END_MESSAGE_MAP()
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CMyMonitorView construction/destruction
  23. CMyMonitorView::CMyMonitorView()
  24. {
  25. // TODO: add construction code here
  26. }
  27. CMyMonitorView::~CMyMonitorView()
  28. {
  29. }
  30. BOOL CMyMonitorView::PreCreateWindow(CREATESTRUCT& cs)
  31. {
  32. // TODO: Modify the Window class or styles here by modifying
  33. //  the CREATESTRUCT cs
  34. return CView::PreCreateWindow(cs);
  35. }
  36. /////////////////////////////////////////////////////////////////////////////
  37. // CMyMonitorView drawing
  38. void CMyMonitorView::OnDraw(CDC* pDC)
  39. {
  40. CMyMonitorDoc* pDoc = GetDocument();
  41. ASSERT_VALID(pDoc);
  42. // TODO: add draw code for native data here
  43. }
  44. /////////////////////////////////////////////////////////////////////////////
  45. // CMyMonitorView diagnostics
  46. #ifdef _DEBUG
  47. void CMyMonitorView::AssertValid() const
  48. {
  49. CView::AssertValid();
  50. }
  51. void CMyMonitorView::Dump(CDumpContext& dc) const
  52. {
  53. CView::Dump(dc);
  54. }
  55. CMyMonitorDoc* CMyMonitorView::GetDocument() // non-debug version is inline
  56. {
  57. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CMyMonitorDoc)));
  58. return (CMyMonitorDoc*)m_pDocument;
  59. }
  60. #endif //_DEBUG
  61. /////////////////////////////////////////////////////////////////////////////
  62. // CMyMonitorView message handlers