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

工具条

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__D614B248_C5EC_11D2_B8C5_B41E04C10000__INCLUDED_)
  5. #define AFX_MAINFRM_H__D614B248_C5EC_11D2_B8C5_B41E04C10000__INCLUDED_
  6. #if _MSC_VER >= 1000
  7. #pragma once
  8. #endif // _MSC_VER >= 1000
  9.  
  10. #include "MyDialogBar.h"
  11. class CMainFrame : public CMDIFrameWnd
  12. {
  13. DECLARE_DYNAMIC(CMainFrame)
  14. public:
  15. CMainFrame();
  16. // Attributes
  17. public:
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CMainFrame)
  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. CToolBar    m_wndToolBar;
  34. CMyDialogBar  m_wndMyDialogBar ;
  35. // Generated message map functions
  36. protected:
  37. //{{AFX_MSG(CMainFrame)
  38. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  39. // NOTE - the ClassWizard will add and remove member functions here.
  40. //    DO NOT EDIT what you see in these blocks of generated code!
  41. //}}AFX_MSG
  42. DECLARE_MESSAGE_MAP()
  43. };
  44. /////////////////////////////////////////////////////////////////////////////
  45. //{{AFX_INSERT_LOCATION}}
  46. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  47. #endif // !defined(AFX_MAINFRM_H__D614B248_C5EC_11D2_B8C5_B41E04C10000__INCLUDED_)