TGUI  1.7
Loading...
Searching...
No Matches
GrowVerticalLayout.hpp
1
2//
3// TGUI - Texus' Graphical User Interface
4// Copyright (C) 2012-2024 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#ifndef TGUI_GROW_VERTICAL_LAYOUT_HPP
26#define TGUI_GROW_VERTICAL_LAYOUT_HPP
27
28#include <TGUI/Widgets/BoxLayoutRatios.hpp>
29
31
32TGUI_MODULE_EXPORT namespace tgui
33{
44 class TGUI_API GrowVerticalLayout : public BoxLayout
45 {
46 public:
47 using Ptr = std::shared_ptr<GrowVerticalLayout>;
48 using ConstPtr = std::shared_ptr<const GrowVerticalLayout>;
49
50 static constexpr const char StaticWidgetType[] = "GrowVerticalLayout";
51
59 GrowVerticalLayout(const char* typeName = StaticWidgetType, bool initRenderer = true);
60
65
70
75
79 GrowVerticalLayout& operator=(GrowVerticalLayout&&) noexcept;
80
84 ~GrowVerticalLayout() = default;
85
93 TGUI_NODISCARD static GrowVerticalLayout::Ptr create(const Layout& width = {RelativeValue(1)});
94
102 TGUI_NODISCARD static GrowVerticalLayout::Ptr copy(const GrowVerticalLayout::ConstPtr& layout);
103
111 TGUI_NODISCARD Vector2f getInnerSize() const override;
112
116 void removeAllWidgets() override;
117
119 protected:
120
122 // @brief Repositions and resize the widgets
124 void updateWidgets() override;
125
127 // @brief Makes a copy of the widget
129 TGUI_NODISCARD Widget::Ptr clone() const override;
130
132 protected:
133
134 std::vector<Layout> m_widgetLayouts;
135
137 };
138
140}
141
143
144#endif // TGUI_GROW_VERTICAL_LAYOUT_HPP
Abstract class for box layout containers.
Definition BoxLayout.hpp:40
Container that automatically positions children below each other.
Definition GrowVerticalLayout.hpp:45
Widget::Ptr clone() const override
Makes a copy of the widget if you don't know its exact type.
void removeAllWidgets() override
Removes all widgets that were added to the container.
static GrowVerticalLayout::Ptr copy(const GrowVerticalLayout::ConstPtr &layout)
Makes a copy of another layout.
Vector2f getInnerSize() const override
Returns the space available for widgets inside the container.
GrowVerticalLayout(const GrowVerticalLayout &)
Copy constructor.
GrowVerticalLayout(GrowVerticalLayout &&) noexcept
Move constructor.
std::shared_ptr< const GrowVerticalLayout > ConstPtr
Shared constant widget pointer.
Definition GrowVerticalLayout.hpp:48
std::shared_ptr< GrowVerticalLayout > Ptr
Shared widget pointer.
Definition GrowVerticalLayout.hpp:47
Class to store the left, top, width or height of a widget.
Definition Layout.hpp:102
std::shared_ptr< Widget > Ptr
Shared widget pointer.
Definition Widget.hpp:86
Namespace that contains all TGUI functions and classes.
Definition AbsoluteOrRelativeValue.hpp:38
Helper class to create an AbsoluteOrRelativeValue object containing a relative value without using a ...
Definition AbsoluteOrRelativeValue.hpp:166