HostAppView.cpp
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:3k
源码类别:

模拟服务器

开发平台:

C/C++

  1. // HostAppView.cpp : implementation of the CHostAppView class
  2. //
  3. #include "stdafx.h"
  4. #include "HostApp.h"
  5. #include "HostAppDoc.h"
  6. #include "HostAppView.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CHostAppView
  14. IMPLEMENT_DYNCREATE(CHostAppView, CView)
  15. BEGIN_MESSAGE_MAP(CHostAppView, CView)
  16.     //{{AFX_MSG_MAP(CHostAppView)
  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.     // Standard printing commands
  21.     ON_COMMAND(ID_FILE_PRINT, CView::OnFilePrint)
  22.     ON_COMMAND(ID_FILE_PRINT_DIRECT, CView::OnFilePrint)
  23.     ON_COMMAND(ID_FILE_PRINT_PREVIEW, CView::OnFilePrintPreview)
  24. END_MESSAGE_MAP()
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CHostAppView construction/destruction
  27. CHostAppView::CHostAppView()
  28. {
  29.     // TODO: add construction code here
  30. }
  31. CHostAppView::~CHostAppView()
  32. {
  33. }
  34. BOOL CHostAppView::PreCreateWindow(CREATESTRUCT& cs)
  35. {
  36.     // TODO: Modify the Window class or styles here by modifying
  37.     //  the CREATESTRUCT cs
  38.     return CView::PreCreateWindow(cs);
  39. }
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CHostAppView drawing
  42. void CHostAppView::OnDraw(CDC* pDC)
  43. {
  44.     CHostAppDoc* pDoc = GetDocument();
  45.     ASSERT_VALID(pDoc);
  46.     // TODO: add draw code for native data here
  47. }
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CHostAppView printing
  50. BOOL CHostAppView::OnPreparePrinting(CPrintInfo* pInfo)
  51. {
  52.     // default preparation
  53.     return DoPreparePrinting(pInfo);
  54. }
  55. void CHostAppView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  56. {
  57.     // TODO: add extra initialization before printing
  58. }
  59. void CHostAppView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  60. {
  61.     // TODO: add cleanup after printing
  62. }
  63. /////////////////////////////////////////////////////////////////////////////
  64. // CHostAppView diagnostics
  65. #ifdef _DEBUG
  66. void CHostAppView::AssertValid() const
  67. {
  68.     CView::AssertValid();
  69. }
  70. void CHostAppView::Dump(CDumpContext& dc) const
  71. {
  72.     CView::Dump(dc);
  73. }
  74. CHostAppDoc* CHostAppView::GetDocument() // non-debug version is inline
  75. {
  76.     ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CHostAppDoc)));
  77.     return (CHostAppDoc*)m_pDocument;
  78. }
  79. #endif //_DEBUG
  80. /////////////////////////////////////////////////////////////////////////////
  81. // CHostAppView message handlers