TGUI  0.8.9
Group.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_GROUP_HPP
27#define TGUI_GROUP_HPP
28
29
30#include <TGUI/Container.hpp>
31#include <TGUI/Renderers/GroupRenderer.hpp>
32
34
35namespace tgui
36{
43 class TGUI_API Group : public Container
44 {
45 public:
46
47 typedef std::shared_ptr<Group> Ptr;
48 typedef std::shared_ptr<const Group> ConstPtr;
49
50
57 Group(const Layout2d& size = {"100%", "100%"});
58
59
68 static Group::Ptr create(const Layout2d& size = {"100%", "100%"});
69
70
80
81
87 const GroupRenderer* getSharedRenderer() const;
88
95 const GroupRenderer* getRenderer() const;
96
97
104 void setSize(const Layout2d& size) override;
105 using Widget::setSize;
106
107
112 Vector2f getInnerSize() const override;
113
114
123
124
131 bool mouseOnWidget(Vector2f pos) const override;
132
133
137 void leftMousePressed(Vector2f pos) override;
138
139
147 void draw(sf::RenderTarget& target, sf::RenderStates states) const override;
148
149
151 protected:
152
159 void rendererChanged(const std::string& property) override;
160
161
163 // Makes a copy of the widget
165 Widget::Ptr clone() const override
166 {
167 return std::make_shared<Group>(*this);
168 }
169
170
172 protected:
173
174 // Cached renderer properties
175 Padding m_paddingCached;
176
177
179 };
180
182}
183
185
186#endif // TGUI_GROUP_HPP
Container widget.
Definition: Container.hpp:48
Definition: GroupRenderer.hpp:37
Group widget.
Definition: Group.hpp:44
static Group::Ptr create(const Layout2d &size={"100%", "100%"})
Creates a new group.
std::shared_ptr< const Group > ConstPtr
Shared constant widget pointer.
Definition: Group.hpp:48
void setSize(const Layout2d &size) override
Changes the size of the group.
std::shared_ptr< Group > Ptr
Shared widget pointer.
Definition: Group.hpp:47
static Group::Ptr copy(Group::ConstPtr group)
Makes a copy of another group.
Vector2f getInnerSize() const override
Returns the space available for widgets inside the container.
void draw(sf::RenderTarget &target, sf::RenderStates states) const override
Draw the child widgets to a render target.
GroupRenderer * getSharedRenderer()
Returns the renderer, which gives access to functions that determine how the widget is displayed.
GroupRenderer * getRenderer()
Returns the renderer, which gives access to functions that determine how the widget is displayed.
Vector2f getChildWidgetsOffset() const override
Returns the distance between the position of the container and a widget that would be drawn inside th...
Group(const Layout2d &size={"100%", "100%"})
Default constructor.
Widget::Ptr clone() const override
Makes a copy of the widget if you don't know its exact type.
Definition: Group.hpp:165
bool mouseOnWidget(Vector2f pos) const override
Returns whether the mouse position (which is relative to the parent widget) lies on top of the widget...
void rendererChanged(const std::string &property) override
Function called when one of the properties of the renderer is changed.
Class to store the position or size of a widget.
Definition: Layout.hpp:260
Definition: Outline.hpp:39
Definition: Vector2f.hpp:39
std::shared_ptr< Widget > Ptr
Shared widget pointer.
Definition: Widget.hpp:77
virtual void setSize(const Layout2d &size)
Changes the size of the widget.
Namespace that contains all TGUI functions and classes.
Definition: AbsoluteOrRelativeValue.hpp:37