From c04dcc2e7d834218ef2d4194331e383402495ae1 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 10 Apr 2024 20:07:22 +0200 Subject: Adding upstream version 2:20.4+dfsg. Signed-off-by: Daniel Baumann --- xbmc/guilib/guiinfo/VideoGUIInfo.h | 53 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 xbmc/guilib/guiinfo/VideoGUIInfo.h (limited to 'xbmc/guilib/guiinfo/VideoGUIInfo.h') diff --git a/xbmc/guilib/guiinfo/VideoGUIInfo.h b/xbmc/guilib/guiinfo/VideoGUIInfo.h new file mode 100644 index 0000000..55202b2 --- /dev/null +++ b/xbmc/guilib/guiinfo/VideoGUIInfo.h @@ -0,0 +1,53 @@ +/* + * 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. + */ + +#pragma once + +#include "guilib/guiinfo/GUIInfoProvider.h" + +#include + +class CApplicationPlayer; +class CVideoInfoTag; + +namespace KODI +{ +namespace GUILIB +{ +namespace GUIINFO +{ + +class CGUIInfo; + +class CVideoGUIInfo : public CGUIInfoProvider +{ +public: + CVideoGUIInfo(); + ~CVideoGUIInfo() override = default; + + // KODI::GUILIB::GUIINFO::IGUIInfoProvider implementation + bool InitCurrentItem(CFileItem *item) override; + bool GetLabel(std::string& value, const CFileItem *item, int contextWindow, const CGUIInfo &info, std::string *fallback) const override; + bool GetFallbackLabel(std::string& value, + const CFileItem* item, + int contextWindow, + const CGUIInfo& info, + std::string* fallback) override; + bool GetInt(int& value, const CGUIListItem *item, int contextWindow, const CGUIInfo &info) const override; + bool GetBool(bool& value, const CGUIListItem *item, int contextWindow, const CGUIInfo &info) const override; + +private: + int GetPercentPlayed(const CVideoInfoTag* tag) const; + bool GetPlaylistInfo(std::string& value, const CGUIInfo& info) const; + + const std::shared_ptr m_appPlayer; +}; + +} // namespace GUIINFO +} // namespace GUILIB +} // namespace KODI -- cgit v1.2.3