summaryrefslogtreecommitdiffstats
path: root/xbmc/guilib/GUIButtonControl.h
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/guilib/GUIButtonControl.h')
-rw-r--r--xbmc/guilib/GUIButtonControl.h112
1 files changed, 112 insertions, 0 deletions
diff --git a/xbmc/guilib/GUIButtonControl.h b/xbmc/guilib/GUIButtonControl.h
new file mode 100644
index 0000000..2de7695
--- /dev/null
+++ b/xbmc/guilib/GUIButtonControl.h
@@ -0,0 +1,112 @@
+/*
+ * 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 GUIButtonControl.h
+\brief
+*/
+
+#include "GUIAction.h"
+#include "GUIControl.h"
+#include "GUILabel.h"
+#include "GUITexture.h"
+#include "guilib/guiinfo/GUIInfoLabel.h"
+#include "utils/ColorUtils.h"
+
+/*!
+ \ingroup controls
+ \brief
+ */
+class CGUIButtonControl : public CGUIControl
+{
+public:
+ CGUIButtonControl(int parentID, int controlID,
+ float posX, float posY, float width, float height,
+ const CTextureInfo& textureFocus, const CTextureInfo& textureNoFocus,
+ const CLabelInfo &label, bool wrapMultiline = false);
+
+ CGUIButtonControl(const CGUIButtonControl& control);
+
+ ~CGUIButtonControl() override = default;
+ CGUIButtonControl* Clone() const override { return new CGUIButtonControl(*this); }
+
+ void Process(unsigned int currentTime, CDirtyRegionList &dirtyregions) override;
+ void Render() override;
+ bool OnAction(const CAction &action) override ;
+ bool OnMessage(CGUIMessage& message) override;
+ void AllocResources() override;
+ void FreeResources(bool immediately = false) override;
+ void DynamicResourceAlloc(bool bOnOff) override;
+ void SetInvalid() override;
+ void SetPosition(float posX, float posY) override;
+ virtual void SetLabel(const std::string & aLabel);
+ virtual void SetLabel2(const std::string & aLabel2);
+ void SetClickActions(const CGUIAction& clickActions) { m_clickActions = clickActions; }
+ const CGUIAction& GetClickActions() const { return m_clickActions; }
+ void SetFocusActions(const CGUIAction& focusActions) { m_focusActions = focusActions; }
+ void SetUnFocusActions(const CGUIAction& unfocusActions) { m_unfocusActions = unfocusActions; }
+ const CLabelInfo& GetLabelInfo() const { return m_label.GetLabelInfo(); }
+ virtual std::string GetLabel() const { return GetDescription(); }
+ virtual std::string GetLabel2() const;
+ void SetSelected(bool bSelected);
+ std::string GetDescription() const override;
+ float GetWidth() const override;
+ virtual void SetMinWidth(float minWidth);
+ void SetAlpha(unsigned char alpha);
+
+ void PythonSetLabel(const std::string& strFont,
+ const std::string& strText,
+ UTILS::COLOR::Color textColor,
+ UTILS::COLOR::Color shadowColor,
+ UTILS::COLOR::Color focusedColor);
+ void PythonSetDisabledColor(UTILS::COLOR::Color disabledColor);
+
+ virtual void OnClick();
+ bool HasClickActions() const { return m_clickActions.HasActionsMeetingCondition(); }
+
+ bool UpdateColors(const CGUIListItem* item) override;
+
+ CRect CalcRenderRegion() const override;
+
+protected:
+ friend class CGUISpinControlEx;
+ EVENT_RESULT OnMouseEvent(const CPoint &point, const CMouseEvent &event) override;
+ void OnFocus() override;
+ void OnUnFocus() override;
+ virtual void ProcessText(unsigned int currentTime);
+ virtual void RenderText();
+ virtual CGUILabel::COLOR GetTextColor() const;
+
+ /*!
+ * \brief Set the maximum width for the left label
+ */
+ void SetMaxWidth(float labelMaxWidth) { m_labelMaxWidth = labelMaxWidth; }
+
+ std::unique_ptr<CGUITexture> m_imgFocus;
+ std::unique_ptr<CGUITexture> m_imgNoFocus;
+ unsigned int m_focusCounter;
+ unsigned char m_alpha;
+
+ float m_minWidth;
+ float m_maxWidth;
+ float m_labelMaxWidth{0};
+
+ KODI::GUILIB::GUIINFO::CGUIInfoLabel m_info;
+ KODI::GUILIB::GUIINFO::CGUIInfoLabel m_info2;
+ CGUILabel m_label;
+ CGUILabel m_label2;
+
+ CGUIAction m_clickActions;
+ CGUIAction m_focusActions;
+ CGUIAction m_unfocusActions;
+
+ bool m_bSelected;
+};
+