Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.3 KiB

  1. // BrowseView.h : header file
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. // CBrowseView view
  5. class CBrowseView : public CTreeView
  6. {
  7. protected:
  8. CBrowseView(); // protected constructor used by dynamic creation
  9. DECLARE_DYNCREATE(CBrowseView)
  10. // Attributes
  11. public:
  12. void OnInitialUpdate( void );
  13. // Operations
  14. public:
  15. // Overrides
  16. // ClassWizard generated virtual function overrides
  17. //{{AFX_VIRTUAL(CBrowseView)
  18. protected:
  19. virtual void OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint);
  20. //}}AFX_VIRTUAL
  21. // Implementation
  22. protected:
  23. virtual ~CBrowseView();
  24. #ifdef _DEBUG
  25. virtual void AssertValid() const;
  26. virtual void Dump(CDumpContext& dc) const;
  27. #endif
  28. // Generated message map functions
  29. protected:
  30. //{{AFX_MSG(CBrowseView)
  31. afx_msg void OnSelChanged(NMHDR* pNMHDR, LRESULT* pResult);
  32. afx_msg void OnItemExpanded(NMHDR* pNMHDR, LRESULT* pResult);
  33. afx_msg void OnAddItem();
  34. afx_msg void OnDeleteItem();
  35. afx_msg void OnMoveItem();
  36. afx_msg void OnCopyItem();
  37. afx_msg void OnRefresh();
  38. //}}AFX_MSG
  39. DECLARE_MESSAGE_MAP()
  40. void SortChildItemList( DWORD*, DWORD );
  41. BOOL m_bDoNotUpdate;
  42. CImageList* m_pImageList;
  43. };
  44. /////////////////////////////////////////////////////////////////////////////