summaryrefslogtreecommitdiffstats
path: root/xbmc/guilib/GUIRSSControl.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-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;
+};
+