russiaView.h
上传用户:sycq158
上传日期:2008-10-22
资源大小:15361k
文件大小:2k
源码类别:

游戏

开发平台:

Visual C++

  1. // russiaView.h : interface of the CRussiaView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_RUSSIAVIEW_H__13735450_1584_11D6_A92C_A9CB162F7042__INCLUDED_)
  5. #define AFX_RUSSIAVIEW_H__13735450_1584_11D6_A92C_A9CB162F7042__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CRussiaView : public CView
  10. {
  11. protected: // create from serialization only
  12. CRussiaView();
  13. DECLARE_DYNCREATE(CRussiaView)
  14. // Attributes
  15. public:
  16. CRussiaDoc* GetDocument();
  17. void DrawBlocks(CDC * pDC);
  18. void DrawWhiteBlocks(CDC *pDC,CRect &rect);
  19. void DrawColorBlocks(CDC *pDC,CRect &rect);
  20. void DrawEdge(CDC * pDC);
  21. int width;
  22. // Operations
  23. public:
  24. // Overrides
  25. // ClassWizard generated virtual function overrides
  26. //{{AFX_VIRTUAL(CRussiaView)
  27. public:
  28. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  29. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  30. virtual void WinHelp(DWORD dwData, UINT nCmd = HELP_CONTEXT);
  31. protected:
  32. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  33. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  34. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  35. //}}AFX_VIRTUAL
  36. // Implementation
  37. public:
  38. virtual ~CRussiaView();
  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(CRussiaView)
  47. afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
  48. afx_msg void OnTimer(UINT nIDEvent);
  49. afx_msg void OnNewgame();
  50. afx_msg void OnSavegame();
  51. afx_msg void OnHerolist();
  52. //}}AFX_MSG
  53. DECLARE_MESSAGE_MAP()
  54. };
  55. #ifndef _DEBUG  // debug version in russiaView.cpp
  56. inline CRussiaDoc* CRussiaView::GetDocument()
  57.    { return (CRussiaDoc*)m_pDocument; }
  58. #endif
  59. /////////////////////////////////////////////////////////////////////////////
  60. //{{AFX_INSERT_LOCATION}}
  61. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  62. #endif // !defined(AFX_RUSSIAVIEW_H__13735450_1584_11D6_A92C_A9CB162F7042__INCLUDED_)