PruebaPTreeDlg.h
上传用户:wzy3721
上传日期:2021-11-20
资源大小:32k
文件大小:2k
源码类别:

TreeView控件

开发平台:

Visual C++

  1. // PruebaPTreeDlg.h : header file
  2. //
  3. #if !defined(AFX_PRUEBAPTREEDLG_H__8FF80297_D67E_421C_8938_35095D0CB446__INCLUDED_)
  4. #define AFX_PRUEBAPTREEDLG_H__8FF80297_D67E_421C_8938_35095D0CB446__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. #include "TCExpand.h"
  9. #include "TCPersist.h"
  10. #include "TCIterator.h"
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CPruebaPTreeDlg dialog
  13. class CPruebaPTreeDlg : public CDialog
  14. {
  15. // Construction
  16. public:
  17. CPruebaPTreeDlg(CWnd* pParent = NULL); // standard constructor
  18. // Dialog Data
  19. //{{AFX_DATA(CPruebaPTreeDlg)
  20. enum { IDD = IDD_PRUEBAPTREE_DIALOG };
  21. CListBox mc_lbItems;
  22. //}}AFX_DATA
  23. TTCIterator<TTCPersist<TTCExpand<CTreeCtrl> > > mc_tcTree;
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(CPruebaPTreeDlg)
  26. protected:
  27. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  28. //}}AFX_VIRTUAL
  29. void PopulateTree();
  30. // Implementation
  31. protected:
  32. HICON m_hIcon;
  33. // Generated message map functions
  34. //{{AFX_MSG(CPruebaPTreeDlg)
  35. virtual BOOL OnInitDialog();
  36. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  37. afx_msg void OnPaint();
  38. afx_msg HCURSOR OnQueryDragIcon();
  39. afx_msg void OnBtCollapse();
  40. afx_msg void OnBtExpand();
  41. afx_msg void OnBtReload();
  42. afx_msg void OnBtIterateDeep();
  43. afx_msg void OnBtIterateWidth();
  44. //}}AFX_MSG
  45. DECLARE_MESSAGE_MAP()
  46. };
  47. //{{AFX_INSERT_LOCATION}}
  48. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  49. #endif // !defined(AFX_PRUEBAPTREEDLG_H__8FF80297_D67E_421C_8938_35095D0CB446__INCLUDED_)