本文整理汇总了C++中CEpgInfoTag::Recording方法的典型用法代码示例。如果您正苦于以下问题:C++ CEpgInfoTag::Recording方法的具体用法?C++ CEpgInfoTag::Recording怎么用?C++ CEpgInfoTag::Recording使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CEpgInfoTag
的用法示例。
在下文中一共展示了CEpgInfoTag::Recording方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: ActionPlayEpg
bool CGUIWindowPVRBase::ActionPlayEpg(CFileItem *item)
{
if (!item || !item->HasEPGInfoTag())
return false;
CPVRChannelPtr channel;
CEpgInfoTag *epgTag = item->GetEPGInfoTag();
if (epgTag->HasPVRChannel())
channel = epgTag->ChannelTag();
if (!channel || !g_PVRManager.CheckParentalLock(*channel))
return false;
CFileItem fileItem;
if (epgTag->HasRecording())
fileItem = CFileItem(*epgTag->Recording());
else
fileItem = CFileItem(*channel);
g_application.SwitchToFullScreen();
if (!PlayFile(&fileItem))
{
// CHANNELNAME could not be played. Check the log for details.
std::string msg = StringUtils::Format(g_localizeStrings.Get(19035).c_str(), channel->ChannelName().c_str());
CGUIDialogOK::ShowAndGetInput(19033, 0, msg, 0);
return false;
}
return true;
}
示例2: OnClickButtonSwitch
bool CGUIDialogPVRGuideInfo::OnClickButtonSwitch(CGUIMessage &message)
{
bool bReturn = false;
if (message.GetSenderId() == CONTROL_BTN_SWITCH)
{
Close();
PlayBackRet ret = PLAYBACK_CANCELED;
CEpgInfoTag *epgTag = m_progItem->GetEPGInfoTag();
if (epgTag)
{
if (epgTag->HasRecording())
ret = g_application.PlayFile(CFileItem(*epgTag->Recording()));
else if (epgTag->HasPVRChannel())
ret = g_application.PlayFile(CFileItem(*epgTag->ChannelTag()));
}
else
ret = PLAYBACK_FAIL;
if (ret == PLAYBACK_FAIL)
{
CStdString msg = StringUtils::Format(g_localizeStrings.Get(19035).c_str(), g_localizeStrings.Get(19029).c_str()); // Channel could not be played. Check the log for details.
CGUIDialogOK::ShowAndGetInput(19033, 0, msg, 0);
}
else if (ret == PLAYBACK_OK)
{
bReturn = true;
}
}
return bReturn;
}