MainFrm.h
上传用户:juying163
上传日期:2014-09-24
资源大小:5867k
文件大小:2k
源码类别:

GIS编程

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__21DC3B9D_ABDD_4225_BB8D_288856C2379C__INCLUDED_)
  5. #define AFX_MAINFRM_H__21DC3B9D_ABDD_4225_BB8D_288856C2379C__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "toolbarcontroldefault.h"
  10. #include "TocDlg.h"
  11. class CMainFrame : public CFrameWnd
  12. {
  13. protected: // create from serialization only
  14. CMainFrame();
  15. DECLARE_DYNCREATE(CMainFrame)
  16. // Attributes
  17. public:
  18. CToolbarControlDefault m_tbr ;//定义toolbarcontrol 变量
  19. CTocDlg  m_tocdlg;
  20. // Operations
  21. public:
  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_wndMyToolBar1;
  38. CCoolBar    m_wndMyBar1;///停靠在左边的窗口
  39. CCoolTabCtrl m_TabCtrl;
  40. // Generated message map functions
  41. protected:
  42. //{{AFX_MSG(CMainFrame)
  43. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  44. // NOTE - the ClassWizard will add and remove member functions here.
  45. //    DO NOT EDIT what you see in these blocks of generated code!
  46. //}}AFX_MSG
  47. DECLARE_MESSAGE_MAP()
  48. };
  49. /////////////////////////////////////////////////////////////////////////////
  50. //{{AFX_INSERT_LOCATION}}
  51. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  52. #endif // !defined(AFX_MAINFRM_H__21DC3B9D_ABDD_4225_BB8D_288856C2379C__INCLUDED_)