25#ifndef TGUI_SCROLLABLE_PANEL_HPP
26#define TGUI_SCROLLABLE_PANEL_HPP
28#include <TGUI/Widgets/Panel.hpp>
29#include <TGUI/Widgets/Scrollbar.hpp>
30#include <TGUI/Renderers/ScrollablePanelRenderer.hpp>
32#if !TGUI_EXPERIMENTAL_USE_STD_MODULE
38TGUI_MODULE_EXPORT
namespace tgui
47 using Ptr = std::shared_ptr<ScrollablePanel>;
48 using ConstPtr = std::shared_ptr<const ScrollablePanel>;
59 ScrollablePanel(
const char* typeName =
StaticWidgetType,
bool initRenderer =
true);
74 ScrollablePanel& operator= (
const ScrollablePanel& other);
79 ScrollablePanel& operator= (ScrollablePanel&& other)
noexcept;
194 TGUI_DEPRECATED(
"Use getVerticalScrollbar()->getWidth() or getHorizontalScrollbar()->getWidth() instead") TGUI_NODISCARD
float getScrollbarWidth() const;
225 TGUI_DEPRECATED(
"Use getVerticalScrollbar()->setScrollAmount(scrollAmount) instead")
void setVerticalScrollAmount(
unsigned int scrollAmount);
232 TGUI_DEPRECATED(
"Use getVerticalScrollbar()->getScrollAmount() instead") TGUI_NODISCARD
unsigned int getVerticalScrollAmount() const;
239 TGUI_DEPRECATED(
"Use getHorizontalScrollbar()->setScrollAmount(scrollAmount) instead")
void setHorizontalScrollAmount(
unsigned int scrollAmount);
246 TGUI_DEPRECATED(
"Use getHorizontalScrollbar()->getScrollAmount() instead") TGUI_NODISCARD
unsigned int getHorizontalScrollAmount() const;
330 void leftMouseReleased(Vector2f pos) override;
335 void mouseMoved(Vector2f pos) override;
340 bool scrolled(
float delta, Vector2f pos,
bool touch) override;
345 void mouseNoLongerOnWidget() override;
350 void leftMouseButtonNoLongerDown() override;
358 TGUI_NODISCARD
Widget::
Ptr askToolTip(Vector2f mousePos) override;
381 TGUI_NODISCARD std::unique_ptr<DataIO::Node>
save(SavingRenderersMap& renderers) const override;
386 void load(const std::unique_ptr<DataIO::Node>& node, const LoadingRenderersMap& renderers) override;
415 void updateScrollbars();
420 void recalculateMostBottomRightPosition();
425 void connectPositionAndSize(const
Widget::
Ptr& widget);
430 void disconnectAllChildWidgets();
435 Vector2f m_contentSize;
436 Vector2f m_mostBottomRightPosition;
438 std::chrono::steady_clock::time_point m_lastSuccessfulScrollTime;
439 Vector2f m_lastSuccessfulScrollPos;
441 unsigned int m_verticalScrollAmount = 0;
442 unsigned int m_horizontalScrollAmount = 0;
444 bool m_verticalScrollbarWasVisibleOnSizeUpdate = false;
445 bool m_horizontalScrollbarWasVisibleOnSizeUpdate = false;
446 bool m_recalculatingSizeDuringUpdateScrollbars = false;
447 bool m_stuckInUpdateScrollbars = false;
449 std::unordered_map<
Widget::
Ptr,
unsigned int> m_connectedPositionCallbacks;
450 std::unordered_map<
Widget::
Ptr,
unsigned int> m_connectedSizeCallbacks;
Base class for render targets.
Definition BackendRenderTarget.hpp:46
Class to store the position or size of a widget.
Definition Layout.hpp:323
Wrapper class to store strings.
Definition String.hpp:96
Namespace that contains all TGUI functions and classes.
Definition AbsoluteOrRelativeValue.hpp:38
Orientation
Orientation of the object.
Definition Layout.hpp:52
States used for drawing.
Definition RenderStates.hpp:38