25#ifndef TGUI_TAB_CONTAINER_HPP
26#define TGUI_TAB_CONTAINER_HPP
28#include <TGUI/SubwidgetContainer.hpp>
29#include <TGUI/Widgets/Tabs.hpp>
30#include <TGUI/Widgets/Panel.hpp>
34TGUI_MODULE_EXPORT
namespace tgui
44 class TGUI_API TabContainer :
public Container
48 using Ptr = std::shared_ptr<TabContainer>;
49 using ConstPtr = std::shared_ptr<const TabContainer>;
69 TabContainer(
const char* typeName = StaticWidgetType,
bool initRenderer =
true);
84 TabContainer& operator= (
const TabContainer& right);
89 TabContainer& operator= (TabContainer&& right)
noexcept;
313 TGUI_NODISCARD std::unique_ptr<DataIO::Node>
save(SavingRenderersMap& renderers)
const override;
318 void load(
const std::unique_ptr<DataIO::Node>& node,
const LoadingRenderersMap& renderers)
override;
342 std::vector<Panel::Ptr> m_panels;
348 TabAlign m_tabAlign = TabAlign::Top;
350 float m_tabFixedSize = 0.0f;
void setSize(const Layout2d &size) override
Changes the size of the container.
Class to store the position or size of a widget.
Definition Layout.hpp:323
Class to store the left, top, width or height of a widget.
Definition Layout.hpp:102
std::shared_ptr< Panel > Ptr
Shared widget pointer.
Definition Panel.hpp:42
Signal to which the user can subscribe to get callbacks from.
Definition Signal.hpp:350
Signal to which the user can subscribe to get callbacks from.
Definition Signal.hpp:61
Wrapper class to store strings.
Definition String.hpp:96
TabContainer widget.
Definition TabContainer.hpp:45
SignalTyped2< int, bool * > onSelectionChanging
Definition TabContainer.hpp:337
std::shared_ptr< TabContainer > Ptr
Shared widget pointer.
Definition TabContainer.hpp:48
Panel::Ptr getSelected() const
Returns the selected panel or nullptr.
bool isMouseOnWidget(Vector2f pos) const override
Returns whether the mouse position (which is relative to the parent widget) lies on top of the widget...
bool changeTabText(std::size_t index, const String &text)
Changes the text of one of the tabs.
int getSelectedIndex() const
Returns index of the selected panel.
Signal & getSignal(String signalName) override
Retrieves a signal based on its name.
TabContainer(TabContainer &©) noexcept
Move constructor.
TabsRenderer * getTabsRenderer()
Returns the renderer of tabs part of widget.
bool removeTab(std::size_t index)
Removes a tab and its corresponding panel with a given index.
std::size_t getPanelCount() const
Returns the number of holded panels.
String getTabText(std::size_t index) const
Gets the text of one of the tabs.
static TabContainer::Ptr create(const Layout2d &size={ "100%", "100%" })
Creates a new tab container widget.
TabsRenderer * getTabsSharedRenderer()
Returns the renderer of tabs part of widget.
Panel::Ptr addTab(const String &name, bool select=true)
Adds a new tab and corresponding panel.
void setTabsHeight(const Layout &height)
Changes the height of tabs part of the widget.
TabContainer(const TabContainer ©)
Copy constructor.
void setTabAlignment(TabAlign align)
Changes the alignment of the tabs.
std::unique_ptr< DataIO::Node > save(SavingRenderersMap &renderers) const override
Saves the widget as a tree of nodes in order to save it to a file.
static TabContainer::Ptr copy(const TabContainer::ConstPtr &tabContainer)
Makes a copy of another tab container.
float getTabFixedSize() const
Returns the tab fixed size for fixed size alignment, default is 0.0f.
Widget::Ptr clone() const override
Makes a copy of the widget.
void setTabFixedSize(float fixedSize)
Changes the tab fixed size for fixed size alignment.
int getIndex(const Panel::Ptr &panel)
Returns index of the specified panel.
static constexpr const char StaticWidgetType[]
Type name of the widget.
Definition TabContainer.hpp:51
bool removeTab(const String &text)
Removes a tab and its corresponding panel, given the text of the tab.
void load(const std::unique_ptr< DataIO::Node > &node, const LoadingRenderersMap &renderers) override
Loads the widget from a tree of nodes.
SignalInt onSelectionChange
Selection of the tab container changed. Optional parameter: index of panel with selection.
Definition TabContainer.hpp:333
Panel::Ptr insertTab(std::size_t index, const String &name, bool select=true)
Inserts a new tab and panel somewhere between the existing ones.
std::shared_ptr< const TabContainer > ConstPtr
Shared constant widget pointer.
Definition TabContainer.hpp:49
Panel::Ptr getPanel(int index) const
Returns the panel with given index.
void select(std::size_t index)
Sets selection to panel.
void setSize(const Layout2d &size) override
Changes the size of the tab container.
TabAlign
Enumeration of the tab alignments for tabs.
Definition TabContainer.hpp:57
@ Bottom
Tabs are below panels.
Definition TabContainer.hpp:59
@ Top
Tabs are above panels.
Definition TabContainer.hpp:58
Tabs::Ptr getTabs() const
Returns internal tabs widget.
TabAlign getTabAlignment() const
Returns the alignment of the tabs.
Definition TabsRenderer.hpp:35
static Tabs::Ptr create()
Creates a new tabs widget.
std::shared_ptr< Tabs > Ptr
Shared widget pointer.
Definition Tabs.hpp:46
Namespace that contains all TGUI functions and classes.
Definition AbsoluteOrRelativeValue.hpp:38
SignalTyped< int > SignalInt
Signal with one "int" as optional unbound parameter.
Definition Signal.hpp:423