25#ifndef TGUI_VERTICAL_LAYOUT_HPP
26#define TGUI_VERTICAL_LAYOUT_HPP
28#include <TGUI/Widgets/BoxLayoutRatios.hpp>
32TGUI_MODULE_EXPORT
namespace tgui
42 class TGUI_API VerticalLayout :
public BoxLayoutRatios
45 using Ptr = std::shared_ptr<VerticalLayout>;
46 using ConstPtr = std::shared_ptr<const VerticalLayout>;
57 VerticalLayout(
const char* typeName =
StaticWidgetType,
bool initRenderer =
true);
83 void updateWidgets()
override;
Class to store the position or size of a widget.
Definition Layout.hpp:323
std::shared_ptr< const VerticalLayout > ConstPtr
Shared constant widget pointer.
Definition VerticalLayout.hpp:46
static constexpr const char StaticWidgetType[]
Type name of the widget.
Definition VerticalLayout.hpp:48
Widget::Ptr clone() const override
Makes a copy of the widget if you don't know its exact type.
std::shared_ptr< VerticalLayout > Ptr
Shared widget pointer.
Definition VerticalLayout.hpp:45
static VerticalLayout::Ptr create(const Layout2d &size={"100%", "100%"})
Creates a new vertical layout widget.
static VerticalLayout::Ptr copy(const VerticalLayout::ConstPtr &layout)
Makes a copy of another layout.
Namespace that contains all TGUI functions and classes.
Definition AbsoluteOrRelativeValue.hpp:38