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

midi

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__22E8407B_DBB1_11D2_9145_0060082BE95D__INCLUDED_)
  5. #define AFX_MAINFRM_H__22E8407B_DBB1_11D2_9145_0060082BE95D__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "MainClient.h"
  10. class CMainFrame : public CMDIFrameWnd
  11. {
  12. DECLARE_DYNAMIC(CMainFrame)
  13. public:
  14. CMainFrame();
  15. // Attributes
  16. public:
  17. // Operations
  18. public:
  19. void SwitchToolbar ();
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CMainFrame)
  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. protected:  // toolbar functions
  35. void SetToolbar (int nIdr);
  36. int AddToolbar (int nIDR, CString strWndTxt);
  37. // Generated message map functions
  38. protected:
  39. //{{AFX_MSG(CMainFrame)
  40. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  41. // NOTE - the ClassWizard will add and remove member functions here.
  42. //    DO NOT EDIT what you see in these blocks of generated code!
  43. //}}AFX_MSG
  44. DECLARE_MESSAGE_MAP()
  45. private:
  46. CMainClient m_wndClient;
  47. CArray <CToolBar *, CToolBar *> m_vToolbars; // holds pointers to loaded toolbar windows
  48. CArray <int,int> m_idrLoaded; // hold IDs of loaded toolbars
  49. };
  50. /////////////////////////////////////////////////////////////////////////////
  51. //{{AFX_INSERT_LOCATION}}
  52. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  53. #endif // !defined(AFX_MAINFRM_H__22E8407B_DBB1_11D2_9145_0060082BE95D__INCLUDED_)