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

TreeView控件

开发平台:

Visual C++

  1. // LeftView.h : interface of the CLeftView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_LEFTVIEW_H__B510B4AF_CA7C_11D2_80FF_00104B346232__INCLUDED_)
  5. #define AFX_LEFTVIEW_H__B510B4AF_CA7C_11D2_80FF_00104B346232__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CGHCustomDrawDoc;
  10. class CLeftView : public CTreeView
  11. {
  12. protected: // create from serialization only
  13. CLeftView();
  14. DECLARE_DYNCREATE(CLeftView)
  15. // Attributes
  16. public:
  17. CGHCustomDrawDoc* GetDocument();
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CLeftView)
  23. public:
  24. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  25. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  26. protected:
  27. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  28. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  29. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  30. virtual void OnInitialUpdate(); // called first time after construct
  31. //}}AFX_VIRTUAL
  32. // Implementation
  33. public:
  34. void PopulateTree();
  35. virtual ~CLeftView();
  36. #ifdef _DEBUG
  37. virtual void AssertValid() const;
  38. virtual void Dump(CDumpContext& dc) const;
  39. #endif
  40. protected:
  41. // Generated message map functions
  42. protected:
  43. //{{AFX_MSG(CLeftView)
  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. private:
  49. CImageList m_ImageList;
  50. };
  51. #ifndef _DEBUG  // debug version in LeftView.cpp
  52. inline CGHCustomDrawDoc* CLeftView::GetDocument()
  53.    { return (CGHCustomDrawDoc*)m_pDocument; }
  54. #endif
  55. /////////////////////////////////////////////////////////////////////////////
  56. //{{AFX_INSERT_LOCATION}}
  57. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  58. #endif // !defined(AFX_LEFTVIEW_H__B510B4AF_CA7C_11D2_80FF_00104B346232__INCLUDED_)