summaryrefslogtreecommitdiffstats
path: root/xbmc/pvr/epg/EpgSearchPath.h
blob: 559a3c6ad50d4900ffaacc900397937415f2ddc9 (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
48
49
/*
 *  Copyright (C) 2012-2021 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.
 */

#pragma once

#include <string>

namespace PVR
{
class CPVREpgSearchFilter;

class CPVREpgSearchPath
{
public:
  static const std::string PATH_SEARCH_DIALOG;
  static const std::string PATH_TV_SEARCH;
  static const std::string PATH_TV_SAVEDSEARCHES;
  static const std::string PATH_RADIO_SEARCH;
  static const std::string PATH_RADIO_SAVEDSEARCHES;

  explicit CPVREpgSearchPath(const std::string& strPath);
  explicit CPVREpgSearchPath(const CPVREpgSearchFilter& search);

  bool IsValid() const { return m_bValid; }

  const std::string& GetPath() const { return m_path; }
  bool IsSearchRoot() const { return m_bRoot; }
  bool IsRadio() const { return m_bRadio; }
  bool IsSavedSearchesRoot() const { return m_bSavedSearchesRoot; }
  bool IsSavedSearch() const { return m_bSavedSearch; }
  int GetId() const { return m_iId; }

private:
  bool Init(const std::string& strPath);

  std::string m_path;
  bool m_bValid = false;
  bool m_bRoot = false;
  bool m_bRadio = false;
  bool m_bSavedSearchesRoot = false;
  bool m_bSavedSearch = false;
  int m_iId = -1;
};
} // namespace PVR