summaryrefslogtreecommitdiffstats
path: root/xbmc/guilib/GUIRSSControl.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 18:07:22 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 18:07:22 +0000
commitc04dcc2e7d834218ef2d4194331e383402495ae1 (patch)
tree7333e38d10d75386e60f336b80c2443c1166031d /xbmc/guilib/GUIRSSControl.h
parentInitial commit. (diff)
downloadkodi-c04dcc2e7d834218ef2d4194331e383402495ae1.tar.xz
kodi-c04dcc2e7d834218ef2d4194331e383402495ae1.zip
Adding upstream version 2:20.4+dfsg.upstream/2%20.4+dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'xbmc/guilib/GUIRSSControl.h')
-rw-r--r--xbmc/guilib/GUIRSSControl.h72
1 files changed, 72 insertions, 0 deletions
diff --git a/xbmc/guilib/GUIRSSControl.h b/xbmc/guilib/GUIRSSControl.h
new file mode 100644
index 0000000..851f72f
--- /dev/null
+++ b/xbmc/guilib/GUIRSSControl.h
@@ -0,0 +1,72 @@
+/*
+ * 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
+
+/*!
+\file GUIRSSControl.h
+\brief
+*/
+
+#include "GUIControl.h"
+#include "GUILabel.h"
+#include "utils/IRssObserver.h"
+
+#include <vector>
+
+class CRssReader;
+
+/*!
+\ingroup controls
+\brief
+*/
+class CGUIRSSControl : public CGUIControl, public IRssObserver
+{
+public:
+ CGUIRSSControl(int parentID, int controlID, float posX, float posY, float width, float height,
+ const CLabelInfo& labelInfo, const KODI::GUILIB::GUIINFO::CGUIInfoColor &channelColor,
+ const KODI::GUILIB::GUIINFO::CGUIInfoColor &headlineColor, std::string& strRSSTags);
+ CGUIRSSControl(const CGUIRSSControl &from);
+ ~CGUIRSSControl(void) override;
+ CGUIRSSControl* Clone() const override { return new CGUIRSSControl(*this); }
+
+ void Process(unsigned int currentTime, CDirtyRegionList &dirtyregions) override;
+ void Render() override;
+ void OnFeedUpdate(const vecText &feed) override;
+ void OnFeedRelease() override;
+ bool CanFocus() const override { return true; }
+ CRect CalcRenderRegion() const override;
+
+ void OnFocus() override;
+ void OnUnFocus() override;
+
+ void SetUrlSet(const int urlset);
+
+protected:
+ bool UpdateColors(const CGUIListItem* item) override;
+
+ CCriticalSection m_criticalSection;
+
+ CRssReader* m_pReader;
+ vecText m_feed;
+
+ std::string m_strRSSTags;
+
+ CLabelInfo m_label;
+ KODI::GUILIB::GUIINFO::CGUIInfoColor m_channelColor;
+ KODI::GUILIB::GUIINFO::CGUIInfoColor m_headlineColor;
+
+ std::vector<std::string> m_vecUrls;
+ std::vector<int> m_vecIntervals;
+ bool m_rtl;
+ CScrollInfo m_scrollInfo;
+ bool m_dirty;
+ bool m_stopped;
+ int m_urlset;
+};
+