diff options
Diffstat (limited to 'xbmc/guilib/GUIComponent.h')
-rw-r--r-- | xbmc/guilib/GUIComponent.h | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/xbmc/guilib/GUIComponent.h b/xbmc/guilib/GUIComponent.h new file mode 100644 index 0000000..97ada48 --- /dev/null +++ b/xbmc/guilib/GUIComponent.h @@ -0,0 +1,49 @@ +/* + * 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 <memory> +#include <string> + +class CGUIWindowManager; +class CGUITextureManager; +class CGUILargeTextureManager; +class CStereoscopicsManager; +class CGUIInfoManager; +class CGUIColorManager; +class CGUIAudioManager; + +class CGUIComponent +{ +public: + CGUIComponent(); + virtual ~CGUIComponent(); + void Init(); + void Deinit(); + + CGUIWindowManager& GetWindowManager(); + CGUITextureManager& GetTextureManager(); + CGUILargeTextureManager& GetLargeTextureManager(); + CStereoscopicsManager &GetStereoscopicsManager(); + CGUIInfoManager &GetInfoManager(); + CGUIColorManager &GetColorManager(); + CGUIAudioManager &GetAudioManager(); + + bool ConfirmDelete(const std::string& path); + +protected: + // members are pointers in order to avoid includes + std::unique_ptr<CGUIWindowManager> m_pWindowManager; + std::unique_ptr<CGUITextureManager> m_pTextureManager; + std::unique_ptr<CGUILargeTextureManager> m_pLargeTextureManager; + std::unique_ptr<CStereoscopicsManager> m_stereoscopicsManager; + std::unique_ptr<CGUIInfoManager> m_guiInfoManager; + std::unique_ptr<CGUIColorManager> m_guiColorManager; + std::unique_ptr<CGUIAudioManager> m_guiAudioManager; +}; |