chxavfolderdisplayinfo.cpp
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:1k
源码类别:

Symbian

开发平台:

Visual C++

  1. /************************************************************************
  2.  * chxavfolderdisplayinfo.cpp
  3.  * --------------------------
  4.  *
  5.  * Synopsis:
  6.  *
  7.  * (c) 1995-2003 RealNetworks, Inc. Patents pending. All rights reserved.
  8.  *
  9.  ************************************************************************/
  10. // Includes from this project...
  11. #include "chxavfileutil.h"
  12. #include "chxavmisc.h"
  13. #include "chxavfolderdisplayinfo.h"
  14. ///////////////////////////////////
  15. // ctor
  16. CHXAvFolderDisplayInfo::CHXAvFolderDisplayInfo()
  17. : m_displayText(KNullDesC)
  18. {
  19. }
  20. ///////////////////////////////////
  21. // dtor
  22. CHXAvFolderDisplayInfo::~CHXAvFolderDisplayInfo()
  23. {
  24. }
  25. ///////////////////////////////////
  26. //
  27. void CHXAvFolderDisplayInfo::InitL()
  28. {
  29. }
  30. ///////////////////////////////////
  31. // set appropriate display text based on full 
  32. // path (normally just the most significant
  33. // part of the path)
  34. //
  35. void CHXAvFolderDisplayInfo::SetFolderPathL(const TDesC& fullFolderPath)
  36. {
  37.     m_displayText.Set(CHXAvFile::GetNakedPathNode(fullFolderPath));
  38. }