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

GDI/图象编程

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__E342AFD6_7F97_4D49_BF90_D035E3657B8A__INCLUDED_)
  5. #define AFX_MAINFRM_H__E342AFD6_7F97_4D49_BF90_D035E3657B8A__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "LeftBar.h"
  10. #include "ShapeTree.h"
  11. class CMainFrame : public CFrameWnd
  12. {
  13. protected: // create from serialization only
  14. CMainFrame();
  15. DECLARE_DYNCREATE(CMainFrame)
  16. // Attributes
  17. public:
  18. CShapeTree m_wndShapeTree;
  19. // Operations
  20. public:
  21. void DockControlBarLeftOf(CToolBar* leftBar, CToolBar* rightBar);
  22. // Overrides
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CMainFrame)
  25. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. public:
  29. virtual ~CMainFrame();
  30. #ifdef _DEBUG
  31. virtual void AssertValid() const;
  32. virtual void Dump(CDumpContext& dc) const;
  33. #endif
  34. protected:  // control bar embedded members
  35. CStatusBar  m_wndStatusBar;
  36. CToolBar    m_wndToolBar;
  37. CToolBar m_wndDrawToolBar;
  38. CLeftBar m_wndLeftBar;
  39. // Generated message map functions
  40. protected:
  41. //{{AFX_MSG(CMainFrame)
  42. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  43. // NOTE - the ClassWizard will add and remove member functions here.
  44. //    DO NOT EDIT what you see in these blocks of generated code!
  45. //}}AFX_MSG
  46. DECLARE_MESSAGE_MAP()
  47. };
  48. /////////////////////////////////////////////////////////////////////////////
  49. //{{AFX_INSERT_LOCATION}}
  50. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  51. #endif // !defined(AFX_MAINFRM_H__E342AFD6_7F97_4D49_BF90_D035E3657B8A__INCLUDED_)