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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
|
/*
* Copyright (C) 2005-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.
*/
#pragma once
#include "guilib/guiinfo/AddonsGUIInfo.h"
#include "guilib/guiinfo/GUIControlsGUIInfo.h"
#include "guilib/guiinfo/GamesGUIInfo.h"
#include "guilib/guiinfo/LibraryGUIInfo.h"
#include "guilib/guiinfo/MusicGUIInfo.h"
#include "guilib/guiinfo/PicturesGUIInfo.h"
#include "guilib/guiinfo/PlayerGUIInfo.h"
#include "guilib/guiinfo/SkinGUIInfo.h"
#include "guilib/guiinfo/SystemGUIInfo.h"
#include "guilib/guiinfo/VideoGUIInfo.h"
#include "guilib/guiinfo/VisualisationGUIInfo.h"
#include "guilib/guiinfo/WeatherGUIInfo.h"
#include <string>
#include <vector>
class CFileItem;
class CGUIListItem;
struct AudioStreamInfo;
struct VideoStreamInfo;
namespace KODI
{
namespace GUILIB
{
namespace GUIINFO
{
class CGUIInfo;
class IGUIInfoProvider;
class CGUIInfoProviders
{
public:
CGUIInfoProviders();
virtual ~CGUIInfoProviders();
/*!
* @brief Register a guiinfo provider.
* @param provider The provider to register.
* @param bAppend True to append to the list of providers, false to insert before the first provider
*/
void RegisterProvider(IGUIInfoProvider *provider, bool bAppend = true);
/*!
* @brief Unregister a guiinfo provider.
* @param provider The provider to unregister.
*/
void UnregisterProvider(IGUIInfoProvider *provider);
/*!
* @brief Init a new current guiinfo manager item. Gets called whenever the active guiinfo manager item changes.
* @param item The new item.
* @return True if the item was inited by one of the providers, false otherwise.
*/
bool InitCurrentItem(CFileItem *item);
/*!
* @brief Get a GUIInfoManager label string from one of the registered providers.
* @param value Will be filled with the requested value.
* @param item The item to get the value for. Can be nullptr.
* @param contextWindow The context window. Can be 0.
* @param info The GUI info (label id + additional data).
* @param fallback A fallback value. Can be nullptr.
* @return True if the value was filled successfully by one of the providers, false otherwise.
*/
bool GetLabel(std::string& value, const CFileItem *item, int contextWindow, const CGUIInfo &info, std::string *fallback) const;
/*!
* @brief Get a GUIInfoManager integer value from one of the registered providers.
* @param value Will be filled with the requested value.
* @param item The item to get the value for. Can be nullptr.
* @param contextWindow The context window. Can be 0.
* @param info The GUI info (label id + additional data).
* @return True if the value was filled successfully by one of the providers, false otherwise.
*/
bool GetInt(int& value, const CGUIListItem *item, int contextWindow, const CGUIInfo &info) const;
/*!
* @brief Get a GUIInfoManager bool value from one of the registered providers.
* @param value Will be filled with the requested value.
* @param item The item to get the value for. Can be nullptr.
* @param contextWindow The context window. Can be 0.
* @param info The GUI info (label id + additional data).
* @return True if the value was filled successfully by one of the providers, false otherwise.
*/
bool GetBool(bool& value, const CGUIListItem *item, int contextWindow, const CGUIInfo &info) const;
/*!
* @brief Set new audio/video/subtitle stream info data at all registered providers.
* @param audioInfo New audio stream info.
* @param videoInfo New video stream info.
* @param subtitleInfo New subtitle stream info.
*/
void UpdateAVInfo(const AudioStreamInfo& audioInfo, const VideoStreamInfo& videoInfo, const SubtitleStreamInfo& subtitleInfo);
/*!
* @brief Get the player guiinfo provider.
* @return The player guiinfo provider.
*/
CPlayerGUIInfo& GetPlayerInfoProvider() { return m_playerGUIInfo; }
/*!
* @brief Get the system guiinfo provider.
* @return The system guiinfo provider.
*/
CSystemGUIInfo& GetSystemInfoProvider() { return m_systemGUIInfo; }
/*!
* @brief Get the pictures guiinfo provider.
* @return The pictures guiinfo provider.
*/
CPicturesGUIInfo& GetPicturesInfoProvider() { return m_picturesGUIInfo; }
/*!
* @brief Get the gui controls guiinfo provider.
* @return The gui controls guiinfo provider.
*/
CGUIControlsGUIInfo& GetGUIControlsInfoProvider() { return m_guiControlsGUIInfo; }
/*!
* @brief Get the library guiinfo provider.
* @return The library guiinfo provider.
*/
CLibraryGUIInfo& GetLibraryInfoProvider() { return m_libraryGUIInfo; }
private:
std::vector<IGUIInfoProvider *> m_providers;
CAddonsGUIInfo m_addonsGUIInfo;
CGamesGUIInfo m_gamesGUIInfo;
CGUIControlsGUIInfo m_guiControlsGUIInfo;
CLibraryGUIInfo m_libraryGUIInfo;
CMusicGUIInfo m_musicGUIInfo;
CPicturesGUIInfo m_picturesGUIInfo;
CPlayerGUIInfo m_playerGUIInfo;
CSkinGUIInfo m_skinGUIInfo;
CSystemGUIInfo m_systemGUIInfo;
CVideoGUIInfo m_videoGUIInfo;
CVisualisationGUIInfo m_visualisationGUIInfo;
CWeatherGUIInfo m_weatherGUIInfo;
};
} // namespace GUIINFO
} // namespace GUILIB
} // namespace KODI
|