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