summaryrefslogtreecommitdiffstats
path: root/xbmc/guilib/GUISpinControlEx.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/GUISpinControlEx.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/GUISpinControlEx.h')
-rw-r--r--xbmc/guilib/GUISpinControlEx.h57
1 files changed, 57 insertions, 0 deletions
diff --git a/xbmc/guilib/GUISpinControlEx.h b/xbmc/guilib/GUISpinControlEx.h
new file mode 100644
index 0000000..75c3963
--- /dev/null
+++ b/xbmc/guilib/GUISpinControlEx.h
@@ -0,0 +1,57 @@
+/*
+ * 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 GUISpinControlEx.h
+\brief
+*/
+
+#include "GUIButtonControl.h"
+#include "GUISpinControl.h"
+
+/*!
+ \ingroup controls
+ \brief
+ */
+class CGUISpinControlEx : public CGUISpinControl
+{
+public:
+ CGUISpinControlEx(int parentID, int controlID, float posX, float posY, float width, float height, float spinWidth, float spinHeight, const CLabelInfo& spinInfo, const CTextureInfo &textureFocus, const CTextureInfo &textureNoFocus, const CTextureInfo& textureUp, const CTextureInfo& textureDown, const CTextureInfo& textureUpFocus, const CTextureInfo& textureDownFocus, const CTextureInfo& textureUpDisabled, const CTextureInfo& textureDownDisabled, const CLabelInfo& labelInfo, int iType);
+ ~CGUISpinControlEx(void) override;
+ CGUISpinControlEx* Clone() const override { return new CGUISpinControlEx(*this); }
+
+ void Process(unsigned int currentTime, CDirtyRegionList &dirtyregions) override;
+ void Render() override;
+ void SetPosition(float posX, float posY) override;
+ float GetWidth() const override { return m_buttonControl.GetWidth(); }
+ void SetWidth(float width) override;
+ float GetHeight() const override { return m_buttonControl.GetHeight(); }
+ void SetHeight(float height) override;
+ void AllocResources() override;
+ void FreeResources(bool immediately = false) override;
+ void DynamicResourceAlloc(bool bOnOff) override;
+ void SetInvalid() override;
+ const std::string GetCurrentLabel() const;
+ void SetText(const std::string& aLabel) { m_buttonControl.SetLabel(aLabel); }
+ void SetEnabled(bool bEnable) override;
+ float GetXPosition() const override { return m_buttonControl.GetXPosition(); }
+ float GetYPosition() const override { return m_buttonControl.GetYPosition(); }
+ std::string GetDescription() const override;
+ bool HitTest(const CPoint& point) const override { return m_buttonControl.HitTest(point); }
+ void SetSpinPosition(float spinPosX);
+
+ void SetItemInvalid(bool invalid);
+protected:
+ void RenderText(float posX, float posY, float width, float height) override;
+ bool UpdateColors(const CGUIListItem* item) override;
+ CGUIButtonControl m_buttonControl;
+ float m_spinPosX;
+};
+