fiveView.cpp
上传用户:kkzhu_0
上传日期:2007-01-05
资源大小:214k
文件大小:2k
源码类别:

棋牌游戏

开发平台:

Visual C++

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