SBDestination.h
上传用户:furain
上传日期:2007-01-04
资源大小:14k
文件大小:1k
源码类别:

Shell编程

开发平台:

Visual C++

  1. // SBDestination.h: interface for the CSBDestination class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. //
  5. // Copyright 1998 Scott D. Killen
  6. //
  7. //////////////////////////////////////////////////////////////////////
  8. #ifndef __SBDESTINATION_H__
  9. #define __SBDESTINATION_H__
  10. #if _MSC_VER >= 1000
  11. #pragma once
  12. #endif // _MSC_VER >= 1000
  13. #include "BrowseForFolder.h"
  14. class CSBDestination : public CBrowseForFolder  
  15. {
  16. public:
  17. CSBDestination(const HWND hParent = NULL, const int nTitleID = 0);
  18. ~CSBDestination();
  19. void SetInitialSelection(const CString& strPath);
  20. void OnInit() const;
  21. void OnSelChanged(const LPITEMIDLIST pidl) const;
  22. private:
  23. CString m_strInitialSelection;
  24. };
  25. #endif // __SBDESTINATION_H__