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
|
/*
* 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 GUIToggleButtonControl.h
\brief
*/
#include "GUIButtonControl.h"
/*!
\ingroup controls
\brief
*/
class CGUIToggleButtonControl : public CGUIButtonControl
{
public:
CGUIToggleButtonControl(int parentID, int controlID, float posX, float posY, float width, float height, const CTextureInfo& textureFocus, const CTextureInfo& textureNoFocus, const CTextureInfo& altTextureFocus, const CTextureInfo& altTextureNoFocus, const CLabelInfo &labelInfo, bool wrapMultiline = false);
~CGUIToggleButtonControl(void) override;
CGUIToggleButtonControl* Clone() const override { return new CGUIToggleButtonControl(*this); }
void Process(unsigned int currentTime, CDirtyRegionList &dirtyregions) override;
void Render() override;
bool OnAction(const CAction &action) 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;
void SetWidth(float width) override;
void SetHeight(float height) override;
void SetMinWidth(float minWidth) override;
void SetLabel(const std::string& label) override;
void SetAltLabel(const std::string& label);
std::string GetDescription() const override;
void SetToggleSelect(const std::string &toggleSelect);
void SetAltClickActions(const CGUIAction &clickActions);
protected:
bool UpdateColors(const CGUIListItem* item) override;
void OnClick() override;
CGUIButtonControl m_selectButton;
INFO::InfoPtr m_toggleSelect;
private:
void ProcessToggle(unsigned int currentTime);
std::string m_altLabel;
};
|