TGUI  0.8.9
CheckBox.hpp
1
2//
3// TGUI - Texus' Graphical User Interface
4// Copyright (C) 2012-2020 Bruno Van de Velde (vdv_b@tgui.eu)
5//
6// This software is provided 'as-is', without any express or implied warranty.
7// In no event will the authors be held liable for any damages arising from the use of this software.
8//
9// Permission is granted to anyone to use this software for any purpose,
10// including commercial applications, and to alter it and redistribute it freely,
11// subject to the following restrictions:
12//
13// 1. The origin of this software must not be misrepresented;
14// you must not claim that you wrote the original software.
15// If you use this software in a product, an acknowledgment
16// in the product documentation would be appreciated but is not required.
17//
18// 2. Altered source versions must be plainly marked as such,
19// and must not be misrepresented as being the original software.
20//
21// 3. This notice may not be removed or altered from any source distribution.
22//
24
25
26#ifndef TGUI_CHECK_BOX_HPP
27#define TGUI_CHECK_BOX_HPP
28
29
30#include <TGUI/Renderers/CheckBoxRenderer.hpp>
31#include <TGUI/Widgets/RadioButton.hpp>
32
34
35namespace tgui
36{
40 class TGUI_API CheckBox : public RadioButton
41 {
42 public:
43
44 typedef std::shared_ptr<CheckBox> Ptr;
45 typedef std::shared_ptr<const CheckBox> ConstPtr;
46
47
49 // Default constructor
51 CheckBox();
52
53
62 static CheckBox::Ptr create(sf::String text = "");
63
64
74
75
85 Vector2f getFullSize() const override;
86
87
97 Vector2f getWidgetOffset() const override;
98
99
106 void setChecked(bool checked) override;
107
108
112 void leftMouseReleased(Vector2f pos) override;
113
117 void keyPressed(const sf::Event::KeyEvent& event) override;
118
119
127 void draw(sf::RenderTarget& target, sf::RenderStates states) const override;
128
129
131 protected:
132
139 void rendererChanged(const std::string& property) override;
140
141
143 // Resets the sizes of the textures if they are used
145 void updateTextureSizes() override;
146
147
149 // Makes a copy of the widget
151 Widget::Ptr clone() const override
152 {
153 return std::make_shared<CheckBox>(*this);
154 }
155
156
158 private:
159
160 Texture m_textureUncheckedCached;
161 Texture m_textureCheckedCached;
162
163
165 };
166
168}
169
171
172#endif // TGUI_CHECK_BOX_HPP
CheckBox widget.
Definition: CheckBox.hpp:41
Vector2f getWidgetOffset() const override
Returns the distance between the position where the widget is drawn and where the widget is placed.
std::shared_ptr< CheckBox > Ptr
Shared widget pointer.
Definition: CheckBox.hpp:44
void setChecked(bool checked) override
Checks or unchecks the check box.
std::shared_ptr< const CheckBox > ConstPtr
Shared constant widget pointer.
Definition: CheckBox.hpp:45
static CheckBox::Ptr copy(CheckBox::ConstPtr checkbox)
Makes a copy of another checkbox.
static CheckBox::Ptr create(sf::String text="")
Creates a new check box widget.
void rendererChanged(const std::string &property) override
Function called when one of the properties of the renderer is changed.
void draw(sf::RenderTarget &target, sf::RenderStates states) const override
Draw the widget to a render target.
Vector2f getFullSize() const override
Returns the full size of the radio button.
Widget::Ptr clone() const override
Makes a copy of the widget if you don't know its exact type.
Definition: CheckBox.hpp:151
Radio button widget.
Definition: RadioButton.hpp:42
Definition: Texture.hpp:42
Definition: Vector2f.hpp:39
std::shared_ptr< Widget > Ptr
Shared widget pointer.
Definition: Widget.hpp:77
Namespace that contains all TGUI functions and classes.
Definition: AbsoluteOrRelativeValue.hpp:37