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

棋牌游戏

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #include "game.h"
  5. class CMainFrame : public CFrameWnd
  6. {
  7. protected: // create from serialization only
  8. CMainFrame();
  9. DECLARE_DYNCREATE(CMainFrame)
  10.     void DockControlBarLeftOf(CToolBar* Bar,CToolBar* LeftOf);
  11. CFive m_Five;
  12. // Attributes
  13. public:
  14. // Operations
  15. public:
  16. // Overrides
  17. // ClassWizard generated virtual function overrides
  18. //{{AFX_VIRTUAL(CMainFrame)
  19. public:
  20. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  21. protected:
  22. virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
  23. //}}AFX_VIRTUAL
  24. // Implementation
  25. public:
  26. virtual ~CMainFrame();
  27. #ifdef _DEBUG
  28. virtual void AssertValid() const;
  29. virtual void Dump(CDumpContext& dc) const;
  30. #endif
  31. protected:  // control bar embedded members
  32. CStatusBar  m_wndStatusBar;
  33. CToolBar    m_wndToolBar;
  34. CToolBar    m_wndPlayBar;
  35. CComboBox   m_wndStepBox;
  36. // Generated message map functions
  37. protected:
  38. //{{AFX_MSG(CMainFrame)
  39. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  40. afx_msg void OnClose();
  41. afx_msg void OnParamSet();
  42. afx_msg void OnViewToolbar1();
  43. afx_msg void OnUpdateViewToolbar1(CCmdUI* pCmdUI);
  44. afx_msg void OnButtonHui();
  45. afx_msg void OnViewToolbar();
  46. afx_msg void OnUpdateViewToolbar(CCmdUI* pCmdUI);
  47. afx_msg void OnButtonDin();
  48. afx_msg void OnButtonQian();
  49. afx_msg void OnButtonXia();
  50. //}}AFX_MSG
  51. DECLARE_MESSAGE_MAP()
  52. };
  53. /////////////////////////////////////////////////////////////////////////////