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