EightView.h
上传用户:tjwfgggs
上传日期:2022-06-07
资源大小:4331k
文件大小:2k
源码类别:

其他游戏

开发平台:

Visual C++

  1. // EightView.h : interface of the CEightView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_EIGHTVIEW_H__290F4057_6E4C_4C73_8332_C094265721F4__INCLUDED_)
  5. #define AFX_EIGHTVIEW_H__290F4057_6E4C_4C73_8332_C094265721F4__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CEightView : public CView
  10. {
  11. protected: // create from serialization only
  12. CEightView();
  13. DECLARE_DYNCREATE(CEightView)
  14. // Attributes
  15. public:
  16. CEightDoc* GetDocument();
  17. // Operations
  18. public:
  19. void DrawBasic(CDC* pDC);
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CEightView)
  23. public:
  24. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  25. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  26. protected:
  27. //}}AFX_VIRTUAL
  28. // Implementation
  29. public:
  30. virtual ~CEightView();
  31. #ifdef _DEBUG
  32. virtual void AssertValid() const;
  33. virtual void Dump(CDumpContext& dc) const;
  34. #endif
  35. protected:
  36. // Generated message map functions
  37. protected:
  38. //{{AFX_MSG(CEightView)
  39. afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
  40. //}}AFX_MSG
  41. DECLARE_MESSAGE_MAP()
  42. protected:
  43. void HelpDraw(int type,int& x,int& y)
  44. {
  45. switch(type)
  46. {
  47. case 1:
  48. y+=7;
  49. x+=m?-5:5;
  50. break;
  51. case 2:
  52. y-=7;
  53. x+=m?-5:5;
  54. break;
  55. case 3:
  56. x+=7;
  57. y+=m?-5:5;
  58. break;
  59. case 4:
  60. x-=7;
  61. y+=m?-5:5;
  62. break;
  63. default:;
  64. }
  65. m=!m;
  66. }
  67. bool m;
  68. };
  69. #ifndef _DEBUG  // debug version in EightView.cpp
  70. inline CEightDoc* CEightView::GetDocument()
  71.    { return (CEightDoc*)m_pDocument; }
  72. #endif
  73. /////////////////////////////////////////////////////////////////////////////
  74. //{{AFX_INSERT_LOCATION}}
  75. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  76. #endif // !defined(AFX_EIGHTVIEW_H__290F4057_6E4C_4C73_8332_C094265721F4__INCLUDED_)