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

棋牌游戏

开发平台:

Visual C++

  1. // fiveView.h : interface of the CFiveView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. class CFiveView;
  5. class CFiveDoc;
  6. class CFiveView : public CView
  7. {
  8. protected: // create from serialization only
  9. CFiveView();
  10. DECLARE_DYNCREATE(CFiveView)
  11.     BOOL AssertTest( int rev );
  12. int m_m;
  13. int m_n;
  14. public:
  15. BOOL   m_Flags;
  16. static int m_Yingcount;
  17. static int m_Pingcount;
  18. static int m_Shucount;
  19. // Attributes
  20. public:
  21. CFive *m_pFive;
  22. CFiveDoc* GetDocument();
  23. void DrawTable( CDC& dc );
  24. void DrawSub( CDC& dc,int m,int n,BOOL f );
  25.     BOOL GetPosition( int x,int y ,int& m,int& n);
  26.     void ResetPane();
  27. // Operations
  28. public:
  29. // Overrides
  30. // ClassWizard generated virtual function overrides
  31. //{{AFX_VIRTUAL(CFiveView)
  32. public:
  33. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  34. virtual BOOL PreTranslateMessage(MSG* pMsg);
  35. //}}AFX_VIRTUAL
  36. // Implementation
  37. public:
  38. virtual ~CFiveView();
  39. #ifdef _DEBUG
  40. virtual void AssertValid() const;
  41. virtual void Dump(CDumpContext& dc) const;
  42. #endif
  43. protected:
  44. // Generated message map functions
  45. protected:
  46. //{{AFX_MSG(CFiveView)
  47. afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  48. afx_msg void OnTimer(UINT nIDEvent);
  49. afx_msg void OnPaint();
  50. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  51. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  52. afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);
  53. //}}AFX_MSG
  54. DECLARE_MESSAGE_MAP()
  55. };
  56. #ifndef _DEBUG  // debug version in fiveView.cpp
  57. inline CFiveDoc* CFiveView::GetDocument()
  58.    { return (CFiveDoc*)m_pDocument; }
  59. #endif
  60. /////////////////////////////////////////////////////////////////////////////