TGUI  1.2.0
Loading...
Searching...
No Matches
HorizontalLayout.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
26#ifndef TGUI_HORIZONTAL_LAYOUT_HPP
27#define TGUI_HORIZONTAL_LAYOUT_HPP
28
29#include <TGUI/Widgets/BoxLayoutRatios.hpp>
30
32
33TGUI_MODULE_EXPORT namespace tgui
34{
40 class TGUI_API HorizontalLayout : public BoxLayoutRatios
41 {
42 public:
43 using Ptr = std::shared_ptr<HorizontalLayout>;
44 using ConstPtr = std::shared_ptr<const HorizontalLayout>;
45
46 static constexpr const char StaticWidgetType[] = "HorizontalLayout";
47
48
56 HorizontalLayout(const char* typeName = StaticWidgetType, bool initRenderer = true);
57
58
66 TGUI_NODISCARD static HorizontalLayout::Ptr create(const Layout2d& size = {"100%", "100%"});
67
68
76 TGUI_NODISCARD static HorizontalLayout::Ptr copy(const HorizontalLayout::ConstPtr& layout);
77
78
80 protected:
81
83 // @brief Repositions and resize the widgets
85 void updateWidgets() override;
86
87
89 // @brief Makes a copy of the widget
91 TGUI_NODISCARD Widget::Ptr clone() const override;
92
93
95 };
96
97
99}
100
102
103#endif // TGUI_HORIZONTAL_LAYOUT_HPP
Abstract class for box layout containers.
Definition BoxLayoutRatios.hpp:40
Container that automatically resizes children to fit the entire available space between children.
Definition HorizontalLayout.hpp:41
std::shared_ptr< HorizontalLayout > Ptr
Shared widget pointer.
Definition HorizontalLayout.hpp:43
TGUI_NODISCARD Widget::Ptr clone() const override
Makes a copy of the widget if you don't know its exact type.
static TGUI_NODISCARD HorizontalLayout::Ptr copy(const HorizontalLayout::ConstPtr &layout)
Makes a copy of another layout.
std::shared_ptr< const HorizontalLayout > ConstPtr
Shared constant widget pointer.
Definition HorizontalLayout.hpp:44
static TGUI_NODISCARD HorizontalLayout::Ptr create(const Layout2d &size={"100%", "100%"})
Creates a new horizontal layout widget.
Class to store the position or size of a widget.
Definition Layout.hpp:305
std::shared_ptr< Widget > Ptr
Shared widget pointer.
Definition Widget.hpp:87
Namespace that contains all TGUI functions and classes.
Definition AbsoluteOrRelativeValue.hpp:39