chxavfolderdisplayinfo.cpp

来自「symbian 下的helix player源代码」· C++ 代码 · 共 46 行

CPP
46
字号
/************************************************************************
 * chxavfolderdisplayinfo.cpp
 * --------------------------
 *
 * Synopsis:
 *
 * (c) 1995-2003 RealNetworks, Inc. Patents pending. All rights reserved.
 *
 ************************************************************************/

// Includes from this project...
#include "chxavfileutil.h"
#include "chxavmisc.h"
#include "chxavfolderdisplayinfo.h"

///////////////////////////////////
// ctor
CHXAvFolderDisplayInfo::CHXAvFolderDisplayInfo()
: m_displayText(KNullDesC)
{
}

///////////////////////////////////
// dtor
CHXAvFolderDisplayInfo::~CHXAvFolderDisplayInfo()
{
}

///////////////////////////////////
//
void CHXAvFolderDisplayInfo::InitL()
{
}

///////////////////////////////////
// set appropriate display text based on full 
// path (normally just the most significant
// part of the path)
//
void CHXAvFolderDisplayInfo::SetFolderPathL(const TDesC& fullFolderPath)
{
    m_displayText.Set(CHXAvFile::GetNakedPathNode(fullFolderPath));
}


⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?