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

TreeView控件

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__B510B4A9_CA7C_11D2_80FF_00104B346232__INCLUDED_)
  5. #define AFX_MAINFRM_H__B510B4A9_CA7C_11D2_80FF_00104B346232__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CGHCustomDrawView;
  10. class CLeftView;
  11. class CMainFrame : public CFrameWnd
  12. {
  13. protected: // create from serialization only
  14. CMainFrame();
  15. DECLARE_DYNCREATE(CMainFrame)
  16. // Attributes
  17. protected:
  18. CSplitterWnd m_wndSplitter;
  19. public:
  20. // Operations
  21. public:
  22. // Overrides
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CMainFrame)
  25. public:
  26. virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  27. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  28. protected:
  29. virtual BOOL OnNotify(WPARAM wParam, LPARAM lParam, LRESULT* pResult);
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. public:
  33. CLeftView* GetLeftPane();
  34. virtual ~CMainFrame();
  35. CGHCustomDrawView* GetRightPane();
  36. #ifdef _DEBUG
  37. virtual void AssertValid() const;
  38. virtual void Dump(CDumpContext& dc) const;
  39. #endif
  40. protected:  // control bar embedded members
  41. CStatusBar  m_wndStatusBar;
  42. CToolBar    m_wndToolBar;
  43. // Generated message map functions
  44. protected:
  45. //{{AFX_MSG(CMainFrame)
  46. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  47. // NOTE - the ClassWizard will add and remove member functions here.
  48. //    DO NOT EDIT what you see in these blocks of generated code!
  49. //}}AFX_MSG
  50. afx_msg void OnUpdateViewStyles(CCmdUI* pCmdUI);
  51. afx_msg void OnViewStyle(UINT nCommandID);
  52. DECLARE_MESSAGE_MAP()
  53. };
  54. /////////////////////////////////////////////////////////////////////////////
  55. //{{AFX_INSERT_LOCATION}}
  56. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  57. #endif // !defined(AFX_MAINFRM_H__B510B4A9_CA7C_11D2_80FF_00104B346232__INCLUDED_)