DirView.h
上传用户:gzboli
上传日期:2013-04-10
资源大小:471k
文件大小:2k
源码类别:

图片显示

开发平台:

Visual C++

  1. #if !defined(AFX_DIRVIEW_H__4B0C2323_B1D6_463A_894B_477644183353__INCLUDED_)
  2. #define AFX_DIRVIEW_H__4B0C2323_B1D6_463A_894B_477644183353__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // DirView.h : header file
  7. //
  8. #include "ShellTree.h"
  9. #include "FileView.h"
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CDirView form view
  12. #ifndef __AFXEXT_H__
  13. #include <afxext.h>
  14. #endif
  15. class CDirView : public CFormView
  16. {
  17. // Attributes
  18. private:
  19. CShellTree m_treeExplorer;
  20. public:
  21. // Operations
  22. private:
  23. CFileView* GetFileView();
  24. BOOL GetItemFolderPath(CString &strFolderPath, HTREEITEM hItem);
  25. public:
  26. void ExpendItem(LPCTSTR lpszItemText);
  27. void DeleteChilds(LPCTSTR lpszItemText = NULL);
  28. void SetItemText(LPCTSTR lpszOldText, LPCTSTR lpszNewText);
  29. void PoplateItem(LPCTSTR lpszItemText = NULL);
  30. void DeleteItem(LPCTSTR lpszItemText);
  31. void MoveToUpFolder();
  32. protected:
  33. CDirView();           // protected constructor used by dynamic creation
  34. DECLARE_DYNCREATE(CDirView)
  35. // Form Data
  36. public:
  37. //{{AFX_DATA(CDirView)
  38. enum { IDD = IDD_DIRVIEW };
  39. //}}AFX_DATA
  40. // Overrides
  41. // ClassWizard generated virtual function overrides
  42. //{{AFX_VIRTUAL(CDirView)
  43. public:
  44. virtual void OnInitialUpdate();
  45. protected:
  46. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  47. //}}AFX_VIRTUAL
  48. // Implementation
  49. protected:
  50. virtual ~CDirView();
  51. #ifdef _DEBUG
  52. virtual void AssertValid() const;
  53. virtual void Dump(CDumpContext& dc) const;
  54. #endif
  55. // Generated message map functions
  56. //{{AFX_MSG(CDirView)
  57. afx_msg void OnRclickTree1(NMHDR* pNMHDR, LRESULT* pResult);
  58. afx_msg void OnItemexpandingTree1(NMHDR* pNMHDR, LRESULT* pResult);
  59. afx_msg void OnSize(UINT nType, int cx, int cy);
  60. afx_msg void OnSelchangedTree1(NMHDR* pNMHDR, LRESULT* pResult);
  61. afx_msg void OnDirUp();
  62. //}}AFX_MSG
  63. DECLARE_MESSAGE_MAP()
  64. };
  65. /////////////////////////////////////////////////////////////////////////////
  66. //{{AFX_INSERT_LOCATION}}
  67. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  68. #endif // !defined(AFX_DIRVIEW_H__4B0C2323_B1D6_463A_894B_477644183353__INCLUDED_)