25#ifndef TGUI_CHILD_WINDOW_HPP
26#define TGUI_CHILD_WINDOW_HPP
28#include <TGUI/CopiedSharedPtr.hpp>
29#include <TGUI/Container.hpp>
30#include <TGUI/Widgets/Button.hpp>
31#include <TGUI/Renderers/ChildWindowRenderer.hpp>
33#if !TGUI_EXPERIMENTAL_USE_STD_MODULE
39TGUI_MODULE_EXPORT
namespace tgui
44 class TGUI_API ChildWindow :
public Container
48 using Ptr = std::shared_ptr<ChildWindow>;
49 using ConstPtr = std::shared_ptr<const ChildWindow>;
81 ChildWindow(
const char* typeName = StaticWidgetType,
bool initRenderer =
true);
96 ChildWindow& operator= (const ChildWindow&);
101 ChildWindow& operator= (ChildWindow&&) noexcept;
117 TGUI_NODISCARD static ChildWindow::
Ptr copy(const ChildWindow::
ConstPtr& childWindow);
320 TGUI_DEPRECATED(
"Use parent->remove(childWindow) instead")
void destroy();
358#ifndef TGUI_REMOVE_DEPRECATED_CODE
365 TGUI_DEPRECATED(
"Use getKeepInParent instead") TGUI_NODISCARD
bool isKeptInParent() const;
391 void setParent(Container* parent)
override;
408 void leftMouseReleased(Vector2f pos)
override;
413 void rightMousePressed(Vector2f pos)
override;
418 void rightMouseReleased(Vector2f pos)
override;
423 void mouseMoved(Vector2f pos)
override;
444 void mouseNoLongerOnWidget()
override;
449 void leftMouseButtonNoLongerDown()
override;
465 void updateTitleBarHeight();
470 void updateResizeMouseCursor(Vector2f mousePos);
493 TGUI_NODISCARD std::unique_ptr<DataIO::Node>
save(SavingRenderersMap& renderers)
const override;
498 void load(
const std::unique_ptr<DataIO::Node>& node,
const LoadingRenderersMap& renderers)
override;
521 void connectTitleButtonCallbacks();
554 Vector2f m_draggingPosition;
555 Vector2f m_maximumSize = {std::numeric_limits<float>::infinity(), std::numeric_limits<float>::infinity()};
556 Vector2f m_minimumSize = {0, 0};
557 Layout* m_decorationLayoutX =
nullptr;
558 Layout* m_decorationLayoutY =
nullptr;
560 unsigned int m_titleButtons = TitleButton::Close;
561 unsigned int m_titleTextSize = 0;
562 Cursor::Type m_currentChildWindowMouseCursor = Cursor::Type::Arrow;
563 CloseBehavior m_closeBehavior = CloseBehavior::Remove;
565 CopiedSharedPtr<Button> m_closeButton;
566 CopiedSharedPtr<Button> m_minimizeButton;
567 CopiedSharedPtr<Button> m_maximizeButton;
569 bool m_mouseDownOnTitleBar =
false;
570 bool m_keepInParent =
false;
572 bool m_positionLocked =
false;
573 bool m_resizable =
false;
574 int m_resizeDirection = ResizeNone;
576 Sprite m_spriteTitleBar;
577 Sprite m_spriteBackground;
580 Borders m_bordersCached;
581 Color m_borderColorCached;
582 Color m_borderColorFocusedCached;
583 Color m_titleColorCached;
584 Color m_titleBarColorCached;
585 Color m_backgroundColorCached;
586 float m_titleBarHeightCached = 20;
587 float m_borderBelowTitleBarCached = 0;
588 float m_distanceToSideCached = 0;
589 float m_paddingBetweenButtonsCached = 0;
590 float m_minimumResizableBorderWidthCached = 10;
591 bool m_showTextOnTitleButtonsCached =
false;
Base class for render targets.
Definition BackendRenderTarget.hpp:46
Definition ChildWindowRenderer.hpp:35
Child window widget.
Definition ChildWindow.hpp:45
static ChildWindow::Ptr copy(const ChildWindow::ConstPtr &childWindow)
Makes a copy of another child window.
Signal onMousePress
The mouse went down on the widget.
Definition ChildWindow.hpp:526
void setTitleAlignment(HorizontalAlignment alignment)
Changes the title alignment.
CloseBehavior getCloseBehavior() const
Returns the behavior of closing the window.
void setPositionLocked(bool positionLocked=true)
Changes whether the child window can be moved by dragging its title bar or not.
ChildWindowRenderer * getSharedRenderer() override
Returns the renderer, which gives access to functions that determine how the widget is displayed.
ChildWindow(const ChildWindow &)
Copy constructor.
unsigned int getTitleTextSize() const
Returns the character size of the title.
std::unique_ptr< DataIO::Node > save(SavingRenderersMap &renderers) const override
Saves the widget as a tree node in order to save it to a file.
static ChildWindow::Ptr create(const String &title="", unsigned int titleButtons=TitleButton::Close)
Creates a new child window widget.
void setPosition(const Layout2d &position) override
Sets the position of the widget.
Vector2f getMaximumSize() const
Returns the maximum size of the child window.
void setTitleButtons(unsigned int buttons)
Changes the title buttons.
void setTitleTextSize(unsigned int size)
Changes the character size of the title.
CloseBehavior
Definition ChildWindow.hpp:68
@ Remove
parent->remove(childWindow) is called after the onClose callback is called
Definition ChildWindow.hpp:71
@ Hide
childWindow->setVisible(false) is called after the onClose callback is called
Definition ChildWindow.hpp:70
Vector2f getChildWidgetsOffset() const override
Returns the distance between the position of the container and a widget that would be drawn inside th...
SignalChildWindow onMaximize
The window was maximized. Optional parameter: pointer to the window.
Definition ChildWindow.hpp:529
bool isMouseOnWidget(Vector2f pos) const override
Returns whether the mouse position (which is relative to the parent widget) lies on top of the widget...
std::shared_ptr< ChildWindow > Ptr
Shared widget pointer.
Definition ChildWindow.hpp:48
bool isPositionLocked() const
Checks whether the child window can be moved by dragging its title bar or not.
Vector2f getClientSize() const
Returns the client size of the child window.
SignalTyped< bool * > onClosing
Definition ChildWindow.hpp:536
void setMinimumSize(Vector2f size)
Sets the minimum size of the child window.
void rendererChanged(const String &property) override
Function called when one of the properties of the renderer is changed.
bool getKeepInParent() const
Returns whether the child window is kept inside its parent.
void destroy()
Closes the window.
Vector2f getInnerSize() const override
Returns the space available for widgets inside the container.
void setMaximumSize(Vector2f size)
Sets the maximum size of the child window.
void setCloseBehavior(CloseBehavior behavior)
Changes the behavior of closing the window.
void draw(BackendRenderTarget &target, RenderStates states) const override
Draw the widget to a render target.
SignalChildWindow onMinimize
The window was minimized. Optional parameter: pointer to the window.
Definition ChildWindow.hpp:528
void mouseLeftWidget() override
This function is called when the mouse leaves the widget.
SignalChildWindow onClose
The window was closed. Optional parameter: pointer to the window.
Definition ChildWindow.hpp:527
TitleButton
Title buttons (use bitwise OR to combine)
Definition ChildWindow.hpp:58
@ None
No buttons.
Definition ChildWindow.hpp:59
@ Maximize
Include a maximize button.
Definition ChildWindow.hpp:61
@ Close
Include a close button.
Definition ChildWindow.hpp:60
@ Minimize
Include a minimize button.
Definition ChildWindow.hpp:62
bool canHandleKeyPress(const Event::KeyEvent &event) override
Called by the parent of the widget to check if keyPressed would process the event.
ChildWindow(ChildWindow &&) noexcept
Move constructor.
HorizontalAlignment TitleAlignment
Title alignments, possible options for the setTitleAlignment function.
Definition ChildWindow.hpp:54
ChildWindowRenderer * getRenderer() override
Returns the renderer, which gives access to functions that determine how the widget is displayed.
HorizontalAlignment getTitleAlignment() const
Returns the title alignment.
void load(const std::unique_ptr< DataIO::Node > &node, const LoadingRenderersMap &renderers) override
Loads the widget from a tree of nodes.
void setTitle(const String &title)
Changes the title that is displayed in the title bar of the child window.
SignalChildWindow onEscapeKeyPress
The escape key was pressed while the child window was focused. Optional parameter: pointer to the win...
Definition ChildWindow.hpp:530
void setKeepInParent(bool enabled=true)
Sets the child window to be kept inside its parent.
unsigned int getTitleButtons() const
Returns the title bar buttons.
bool leftMousePressed(Vector2f pos) override
Called by the parent when the left mouse button goes down on top of the widget.
const String & getTitle() const
Returns the title that is displayed in the title bar of the child window.
static constexpr const char StaticWidgetType[]
Type name of the widget.
Definition ChildWindow.hpp:51
void mouseEnteredWidget() override
This function is called when the mouse enters the widget.
virtual void setClientSize(const Layout2d &size)
Changes the client size of the child window.
bool isKeptInParent() const
Tells whether the child window is kept inside its parent.
Vector2f getMinimumSize() const
Returns the minimum size of the child window.
void close()
Try to close the window.
void setResizable(bool resizable=true)
Changes whether the child window can be resized by dragging its borders or not.
std::shared_ptr< const ChildWindow > ConstPtr
Shared constant widget pointer.
Definition ChildWindow.hpp:49
bool isResizable() const
Checks whether the child window can be resized by dragging its borders or not.
Widget::Ptr clone() const override
Makes a copy of the widget if you don't know its exact type.
void setSize(const Layout2d &size) override
Changes the size of the child window.
Signal & getSignal(String signalName) override
Retrieves a signal based on its name.
Class to store the position or size of a widget.
Definition Layout.hpp:323
Signal to which the user can subscribe to get callbacks from.
Definition Signal.hpp:440
Signal to which the user can subscribe to get callbacks from.
Definition Signal.hpp:271
Signal to which the user can subscribe to get callbacks from.
Definition Signal.hpp:61
Wrapper class to store strings.
Definition String.hpp:96
Namespace that contains all TGUI functions and classes.
Definition AbsoluteOrRelativeValue.hpp:38
HorizontalAlignment
The horizontal alignment.
Definition Layout.hpp:62
KeyPressed event parameters.
Definition Event.hpp:168
States used for drawing.
Definition RenderStates.hpp:38