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

其他游戏

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__4FFF4FC8_C248_473B_9E32_F733359DE434__INCLUDED_)
  5. #define AFX_MAINFRM_H__4FFF4FC8_C248_473B_9E32_F733359DE434__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "ProcMtd.h"
  10. class CMainFrame : public CFrameWnd
  11. {
  12. protected: // create from serialization only
  13. CMainFrame();
  14. DECLARE_DYNCREATE(CMainFrame)
  15. // Attributes
  16. public:
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CMainFrame)
  22. public:
  23. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  24. //}}AFX_VIRTUAL
  25. // Implementation
  26. public:
  27. virtual ~CMainFrame();
  28. #ifdef _DEBUG
  29. virtual void AssertValid() const;
  30. virtual void Dump(CDumpContext& dc) const;
  31. #endif
  32. protected:  // control bar embedded members
  33. CStatusBar  m_wndStatusBar;
  34. CToolBar    m_wndToolBar;
  35. // Generated message map functions
  36. protected:
  37. //{{AFX_MSG(CMainFrame)
  38. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  39. afx_msg void OnMoveDown();
  40. afx_msg void OnMoveLeft();
  41. afx_msg void OnMoveRight();
  42. afx_msg void OnMoveUp();
  43. afx_msg void OnNew();
  44. afx_msg void OnReset();
  45. afx_msg void OnAiP();
  46. afx_msg void OnTimer(UINT nIDEvent);
  47. //}}AFX_MSG
  48. DECLARE_MESSAGE_MAP()
  49. private:
  50. void do_aip();
  51. ProcMtd *obj;
  52. };
  53. /////////////////////////////////////////////////////////////////////////////
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  56. #endif // !defined(AFX_MAINFRM_H__4FFF4FC8_C248_473B_9E32_F733359DE434__INCLUDED_)