26#ifndef TGUI_TAB_CONTAINER_HPP
27#define TGUI_TAB_CONTAINER_HPP
30#include <TGUI/SubwidgetContainer.hpp>
31#include <TGUI/Widgets/Tabs.hpp>
32#include <TGUI/Widgets/Panel.hpp>
36TGUI_MODULE_EXPORT
namespace tgui
50 using Ptr = std::shared_ptr<TabContainer>;
51 using ConstPtr = std::shared_ptr<const TabContainer>;
53 static constexpr const char StaticWidgetType[] =
"TabContainer";
73 TabContainer(
const char* typeName = StaticWidgetType,
bool initRenderer =
true);
123 TGUI_NODISCARD
const TabsRenderer* getTabsSharedRenderer()
const;
139 using Container::setSize;
346 TGUI_NODISCARD std::unique_ptr<DataIO::Node>
save(SavingRenderersMap& renderers)
const override;
352 void load(
const std::unique_ptr<DataIO::Node>& node,
const LoadingRenderersMap& renderers)
override;
379 std::vector<Panel::Ptr> m_panels;
387 float m_tabFixedSize = 0.0f;
Container widget.
Definition Container.hpp:49
Class to store the position or size of a widget.
Definition Layout.hpp:289
Class to store the left, top, width or height of a widget.
Definition Layout.hpp:53
std::shared_ptr< Panel > Ptr
Shared widget pointer.
Definition Panel.hpp:44
Signal to which the user can subscribe to get callbacks from.
Definition Signal.hpp:375
Signal to which the user can subscribe to get callbacks from.
Definition Signal.hpp:62
Wrapper class to store strings.
Definition String.hpp:101
TabContainer widget.
Definition TabContainer.hpp:47
static TGUI_NODISCARD TabContainer::Ptr create(const Layout2d &size={ "100%", "100%" })
Creates a new tab container widget.
std::shared_ptr< TabContainer > Ptr
Shared widget pointer.
Definition TabContainer.hpp:50
TGUI_NODISCARD int getSelectedIndex() const
Returns index of the selected panel.
bool changeTabText(std::size_t index, const String &text)
Changes the text of one of the tabs.
TGUI_NODISCARD 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.
TabContainer(TabContainer &©) noexcept
Move constructor.
bool removeTab(std::size_t index)
Removes a tab and its corresponding panel with a given index.
TGUI_NODISCARD String getTabText(std::size_t index) const
Gets the text of one of the tabs.
TGUI_NODISCARD int getIndex(const Panel::Ptr &ptr)
Returns index of the specified panel.
TGUI_NODISCARD bool isMouseOnWidget(Vector2f pos) const override
Returns whether the mouse position (which is relative to the parent widget) lies on top of the 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.
TGUI_NODISCARD TabContainer::TabAlign getTabAlignment() const
Returns the alignment of the tabs.
TabContainer(const TabContainer ©)
Copy constructor.
TGUI_NODISCARD TabsRenderer * getTabsSharedRenderer()
Returns the renderer of tabs part of widget.
TGUI_NODISCARD Widget::Ptr clone() const override
Makes a copy of the widget.
void setTabFixedSize(float fixedSize)
Changes the tab fixed size for fixed size alignment.
TGUI_NODISCARD TabsRenderer * getTabsRenderer()
Returns the renderer of tabs part of widget.
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.
static TGUI_NODISCARD TabContainer::Ptr copy(const TabContainer::ConstPtr &tabContainer)
Makes a copy of another tab container.
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:51
TGUI_NODISCARD Signal & getSignal(String signalName) override
Retrieves a signal based on its name.
TGUI_NODISCARD Panel::Ptr getPanel(int index)
Returns the panel with given index.
void select(std::size_t index)
Sets selection to panel.
TGUI_NODISCARD Panel::Ptr getSelected()
Returns the selected panel or nullptr.
void setSize(const Layout2d &size) override
Changes the size of the tab container.
void setTabAlignment(TabContainer::TabAlign align)
Changes the alignment of the tabs.
TabAlign
Enumeration of the tab alignments for tabs.
Definition TabContainer.hpp:60
TGUI_NODISCARD float getTabFixedSize() const
Returns the tab fixed size for fixed size alignment, default is 0.0f.
TGUI_NODISCARD Tabs::Ptr getTabs()
Returns internal tabs widget.
TGUI_NODISCARD std::size_t getPanelCount() const
Returns the number of holded panels.
Definition TabsRenderer.hpp:37
std::shared_ptr< Tabs > Ptr
Shared widget pointer.
Definition Tabs.hpp:48
Namespace that contains all TGUI functions and classes.
Definition AbsoluteOrRelativeValue.hpp:39