skyblue_BoxManView.cpp
上传用户:qiangti
上传日期:2022-04-06
资源大小:644k
文件大小:3k
源码类别:

其他智力游戏

开发平台:

Visual C++

  1. // skyblue_BoxManView.cpp : implementation of the CSkyblue_BoxManView class
  2. //
  3. #include "stdafx.h"
  4. #include "skyblue_BoxMan.h"
  5. #include "skyblue_BoxManDoc.h"
  6. #include "skyblue_BoxManView.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CSkyblue_BoxManView
  14. IMPLEMENT_DYNCREATE(CSkyblue_BoxManView, CView)
  15. BEGIN_MESSAGE_MAP(CSkyblue_BoxManView, CView)
  16. //{{AFX_MSG_MAP(CSkyblue_BoxManView)
  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. // CSkyblue_BoxManView construction/destruction
  27. CSkyblue_BoxManView::CSkyblue_BoxManView()
  28. {
  29. // TODO: add construction code here
  30. }
  31. CSkyblue_BoxManView::~CSkyblue_BoxManView()
  32. {
  33. }
  34. BOOL CSkyblue_BoxManView::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. // CSkyblue_BoxManView drawing
  42. void CSkyblue_BoxManView::OnDraw(CDC* pDC)
  43. {
  44. CSkyblue_BoxManDoc* pDoc = GetDocument();
  45. ASSERT_VALID(pDoc);
  46. // TODO: add draw code for native data here
  47. }
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CSkyblue_BoxManView printing
  50. BOOL CSkyblue_BoxManView::OnPreparePrinting(CPrintInfo* pInfo)
  51. {
  52. // default preparation
  53. return DoPreparePrinting(pInfo);
  54. }
  55. void CSkyblue_BoxManView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  56. {
  57. // TODO: add extra initialization before printing
  58. }
  59. void CSkyblue_BoxManView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  60. {
  61. // TODO: add cleanup after printing
  62. }
  63. /////////////////////////////////////////////////////////////////////////////
  64. // CSkyblue_BoxManView diagnostics
  65. #ifdef _DEBUG
  66. void CSkyblue_BoxManView::AssertValid() const
  67. {
  68. CView::AssertValid();
  69. }
  70. void CSkyblue_BoxManView::Dump(CDumpContext& dc) const
  71. {
  72. CView::Dump(dc);
  73. }
  74. CSkyblue_BoxManDoc* CSkyblue_BoxManView::GetDocument() // non-debug version is inline
  75. {
  76. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CSkyblue_BoxManDoc)));
  77. return (CSkyblue_BoxManDoc*)m_pDocument;
  78. }
  79. #endif //_DEBUG
  80. /////////////////////////////////////////////////////////////////////////////
  81. // CSkyblue_BoxManView message handlers