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

棋牌游戏

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. class CMainFrame : public CFrameWnd
  5. {
  6. protected: // create from serialization only
  7. CMainFrame();
  8. DECLARE_DYNCREATE(CMainFrame)
  9.     void DockControlBarLeftOf(CToolBar* Bar,CToolBar* LeftOf);
  10. // Attributes
  11. public:
  12. CFive m_Five;
  13. CComboBox* GetListBox();
  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. public:  // 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 OnStepBox();
  42. afx_msg void OnParamSet();
  43. afx_msg void OnViewToolbar1();
  44. afx_msg void OnUpdateViewToolbar1(CCmdUI* pCmdUI);
  45. afx_msg void OnButtonHui();
  46. afx_msg void OnViewToolbar();
  47. afx_msg void OnUpdateViewToolbar(CCmdUI* pCmdUI);
  48. afx_msg void OnButtonDin();
  49. afx_msg void OnButtonQian();
  50. afx_msg void OnButtonXia();
  51. afx_msg void OnUpdateButtonDin(CCmdUI* pCmdUI);
  52. afx_msg void OnUpdateButtonHui(CCmdUI* pCmdUI);
  53. afx_msg void OnUpdateButtonQian(CCmdUI* pCmdUI);
  54. afx_msg void OnUpdateButtonXia(CCmdUI* pCmdUI);
  55. afx_msg void OnUpdateParamSet(CCmdUI* pCmdUI);
  56. afx_msg void OnButtonJin();
  57. afx_msg void OnButtonKill();
  58. afx_msg void OnUpdateButtonKill(CCmdUI* pCmdUI);
  59. afx_msg void OnUpdateButtonJin(CCmdUI* pCmdUI);
  60. afx_msg void OnUpdateFileNew(CCmdUI* pCmdUI);
  61. afx_msg void OnUpdateFileOpen(CCmdUI* pCmdUI);
  62. afx_msg void OnUpdateFileSave(CCmdUI* pCmdUI);
  63. afx_msg void OnUpdateFileSaveAs(CCmdUI* pCmdUI);
  64.     afx_msg void CMainFrame::OnUpdateFile(CCmdUI* pCmdUI);
  65. //}}AFX_MSG
  66. DECLARE_MESSAGE_MAP()
  67. };
  68. /////////////////////////////////////////////////////////////////////////////