1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
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;
};
|