PtreeView.h
上传用户:tenhai
上传日期:2021-02-19
资源大小:492k
文件大小:2k
源码类别:

组合框控件

开发平台:

Visual C++

  1. #if !defined(AFX_PTREEVIEW_H__2DF0DDEE_42FC_4905_B4B8_EB4594A14188__INCLUDED_)
  2. #define AFX_PTREEVIEW_H__2DF0DDEE_42FC_4905_B4B8_EB4594A14188__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // PtreeView.h : header file
  7. //
  8. #include <afxcview.h>
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CPtreeView view
  11. class CPtreeView : public CTreeView
  12. {
  13. protected:
  14. CPtreeView();           // protected constructor used by dynamic creation
  15. DECLARE_DYNCREATE(CPtreeView)
  16. // Attributes
  17. public:
  18. void UpdateTree(int id, CString str);
  19. void countrules(HTREEITEM hLHS);
  20. // Operations
  21. public:
  22. CTreeCtrl* pCtrl;
  23. // Overrides
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(CPtreeView)
  26. public:
  27. virtual void OnInitialUpdate();
  28. protected:
  29. virtual void OnDraw(CDC* pDC);      // overridden to draw this view
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. protected:
  33. virtual ~CPtreeView();
  34. #ifdef _DEBUG
  35. virtual void AssertValid() const;
  36. virtual void Dump(CDumpContext& dc) const;
  37. #endif
  38. // Generated message map functions
  39. protected:
  40. //{{AFX_MSG(CPtreeView)
  41. // NOTE - the ClassWizard will add and remove member functions here.
  42. //}}AFX_MSG
  43. DECLARE_MESSAGE_MAP()
  44. };
  45. /////////////////////////////////////////////////////////////////////////////
  46. //{{AFX_INSERT_LOCATION}}
  47. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  48. #endif // !defined(AFX_PTREEVIEW_H__2DF0DDEE_42FC_4905_B4B8_EB4594A14188__INCLUDED_)