BoxManWnd.h
上传用户:hbrsgg1
上传日期:2014-05-08
资源大小:2826k
文件大小:2k
源码类别:

其他智力游戏

开发平台:

C/C++

  1. /*++
  2. Copyright (c) AFE(Active-Free-Elegance)
  3. Module Name:
  4.      BoxManWnd.h
  5. Abstract:
  6. The Main Frame Class of the Game.
  7. Author:
  8.     Weijian Luo (Arthur Luo)   15-Jun-2005
  9. E-mail: skybluehacker@yahoo.com.cn
  10. Revision History:      1.0
  11. --*/
  12. #if !defined(AFX_BOXMANWND_H__7828B348_6D29_4C3B_977D_7285BA9FE7EC__INCLUDED_)
  13. #define AFX_BOXMANWND_H__7828B348_6D29_4C3B_977D_7285BA9FE7EC__INCLUDED_
  14. #if _MSC_VER > 1000
  15. #pragma once
  16. #endif // _MSC_VER > 1000
  17. // BoxManWnd.h : header file
  18. //
  19. #include "BoxMan.h"
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CBoxManWnd frame
  22. class CBoxManWnd : public CWnd
  23. {
  24. DECLARE_DYNCREATE(CBoxManWnd)
  25. public:
  26. CBoxManWnd();           // protected constructor used by dynamic creation
  27. // Attributes
  28. public:
  29. CBoxMan m_boxMan;           // 
  30. CMenu* m_pSubMenu; // 主菜单记录指针
  31. BOOL   m_bSound;            //  是否启用声音标记
  32. // Operations
  33. public:
  34. void SetCheckSound(void);
  35. // Overrides
  36. // ClassWizard generated virtual function overrides
  37. //{{AFX_VIRTUAL(CBoxManWnd)
  38. //}}AFX_VIRTUAL
  39. // Implementation
  40. public:
  41. virtual ~CBoxManWnd();
  42. // Generated message map functions
  43. //{{AFX_MSG(CBoxManWnd)
  44. afx_msg void OnMenuGameExit();
  45. afx_msg void OnPaint();
  46. afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
  47. afx_msg void OnMenuGameHelp();
  48. afx_msg void OnMenuGameLevel();
  49. afx_msg void OnMenuGameMusic();
  50. afx_msg void OnInitMenu(CMenu* pMenu);
  51. //}}AFX_MSG
  52. DECLARE_MESSAGE_MAP()
  53. };
  54. /////////////////////////////////////////////////////////////////////////////
  55. //{{AFX_INSERT_LOCATION}}
  56. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  57. #endif // !defined(AFX_BOXMANWND_H__7828B348_6D29_4C3B_977D_7285BA9FE7EC__INCLUDED_)