blob: 610571bcd5a6b83f7362760945bf630702b22358 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/*
* Copyright (C) 2012-2018 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#include "GUIWindowPVRTimers.h"
#include "FileItem.h"
#include "pvr/timers/PVRTimersPath.h"
#include "utils/URIUtils.h"
using namespace PVR;
CGUIWindowPVRTVTimers::CGUIWindowPVRTVTimers()
: CGUIWindowPVRTimersBase(false, WINDOW_TV_TIMERS, "MyPVRTimers.xml")
{
}
std::string CGUIWindowPVRTVTimers::GetRootPath() const
{
return CPVRTimersPath::PATH_TV_TIMERS;
}
std::string CGUIWindowPVRTVTimers::GetDirectoryPath()
{
const std::string basePath(CPVRTimersPath(false, false).GetPath());
return URIUtils::PathHasParent(m_vecItems->GetPath(), basePath) ? m_vecItems->GetPath() : basePath;
}
CGUIWindowPVRRadioTimers::CGUIWindowPVRRadioTimers()
: CGUIWindowPVRTimersBase(true, WINDOW_RADIO_TIMERS, "MyPVRTimers.xml")
{
}
std::string CGUIWindowPVRRadioTimers::GetRootPath() const
{
return CPVRTimersPath::PATH_RADIO_TIMERS;
}
std::string CGUIWindowPVRRadioTimers::GetDirectoryPath()
{
const std::string basePath(CPVRTimersPath(true, false).GetPath());
return URIUtils::PathHasParent(m_vecItems->GetPath(), basePath) ? m_vecItems->GetPath() : basePath;
}
|