TGUI  0.8.9

Group of widgets that has a background color and optional borders. More...

#include <TGUI/Widgets/ScrollablePanel.hpp>

Inheritance diagram for tgui::ScrollablePanel:
tgui::Panel tgui::Group tgui::Container tgui::Widget tgui::SignalWidgetBase

Public Types

typedef std::shared_ptr< ScrollablePanelPtr
 Shared widget pointer.
 
typedef std::shared_ptr< const ScrollablePanelConstPtr
 Shared constant widget pointer.
 
using ScrollbarPolicy = Scrollbar::Policy
 Defines when the scrollbar shows up.
 
- Public Types inherited from tgui::Panel
typedef std::shared_ptr< PanelPtr
 Shared widget pointer.
 
typedef std::shared_ptr< const PanelConstPtr
 Shared constant widget pointer.
 
- Public Types inherited from tgui::Group
typedef std::shared_ptr< GroupPtr
 Shared widget pointer.
 
typedef std::shared_ptr< const GroupConstPtr
 Shared constant widget pointer.
 
- Public Types inherited from tgui::Container
typedef std::shared_ptr< ContainerPtr
 Shared widget pointer.
 
typedef std::shared_ptr< const ContainerConstPtr
 Shared constant widget pointer.
 
- Public Types inherited from tgui::Widget
typedef std::shared_ptr< WidgetPtr
 Shared widget pointer.
 
typedef std::shared_ptr< const WidgetConstPtr
 Shared constant widget pointer.
 

Public Member Functions

 ScrollablePanel (const Layout2d &size={"100%", "100%"}, Vector2f contentSize={0, 0})
 Default constructor. More...
 
 ScrollablePanel (const ScrollablePanel &copy)
 Copy constructor.
 
 ScrollablePanel (ScrollablePanel &&copy)
 Move constructor.
 
ScrollablePaneloperator= (const ScrollablePanel &other)
 Overload of assignment operator.
 
ScrollablePaneloperator= (ScrollablePanel &&other)
 Overload of move assignment operator.
 
ScrollablePanelRenderergetSharedRenderer ()
 Returns the renderer, which gives access to functions that determine how the widget is displayed. More...
 
ScrollablePanelRenderergetRenderer ()
 Returns the renderer, which gives access to functions that determine how the widget is displayed. More...
 
void setSize (const Layout2d &size) override
 Changes the size of the panel. More...
 
Vector2f getAbsolutePosition () const override
 
void add (const Widget::Ptr &widget, const sf::String &widgetName="") override
 Adds a widget at the end of the layout. More...
 
bool remove (const Widget::Ptr &widget) override
 Removes a single widget that was added to the container. More...
 
void removeAllWidgets () override
 Removes all widgets that were added to the container.
 
void setContentSize (Vector2f size)
 Channges the size available for child widgets. More...
 
Vector2f getContentSize () const
 Returns the size available for child widgets. More...
 
Vector2f getContentOffset () const
 Returns the amount of pixels the child widgets have been shifted to be displayed by the scrollable panel. More...
 
void setScrollbarWidth (float width)
 Changes the width of the scrollbars. More...
 
float getScrollbarWidth () const
 Returns the width of the scrollbars. More...
 
void setVerticalScrollbarPolicy (Scrollbar::Policy policy)
 Changes when the vertical scrollbar should be displayed. More...
 
Scrollbar::Policy getVerticalScrollbarPolicy () const
 Returns when the vertical scrollbar should be displayed. More...
 
void setHorizontalScrollbarPolicy (Scrollbar::Policy policy)
 Changes when the horizontal scrollbar should be displayed. More...
 
Scrollbar::Policy getHorizontalScrollbarPolicy () const
 Returns when the horizontal scrollbar should be displayed. More...
 
void setVerticalScrollAmount (unsigned int scrollAmount)
 Changes how much the value changes when scrolling or pressing one of the arrows of the vertical scrollbar. More...
 
unsigned int getVerticalScrollAmount () const
 Returns how much the value changes when scrolling or pressing one of the arrows of the vertical scrollbar. More...
 
void setHorizontalScrollAmount (unsigned int scrollAmount)
 Changes how much the value changes when scrolling or pressing one of the arrows of the horizontal scrollbar. More...
 
unsigned int getHorizontalScrollAmount () const
 Returns how much the value changes when scrolling or pressing one of the arrows of the horizontal scrollbar. More...
 
void setVerticalScrollbarValue (unsigned int value)
 Changes the thumb position of the vertical scrollbar. More...
 
unsigned int getVerticalScrollbarValue () const
 Returns the thumb position of the vertical scrollbar. More...
 
void setHorizontalScrollbarValue (unsigned int value)
 Changes the thumb position of the horizontal scrollbar. More...
 
unsigned int getHorizontalScrollbarValue () const
 Returns the thumb position of the horizontal scrollbar. More...
 
void enableSkipDrawingWidgetsOutsideView (bool skipDrawing=true)
 Sets whether widgets that are located outside the visible view of the ScrollablePanel still get drawn. More...
 
Widget::Ptr getWidgetAtPosition (sf::Vector2f pos) const override
 Returns the leaf child widget that is located at the given position. More...
 
void draw (sf::RenderTarget &target, sf::RenderStates states) const override
 Draw the widget to a render target. More...
 
virtual void setSize (const Layout2d &size)
 Changes the size of the widget. More...
 
void setSize (Layout width, Layout height)
 Changes the size of the widget. More...
 
- Public Member Functions inherited from tgui::Panel
 Panel (const Layout2d &size={"100%", "100%"})
 Default constructor. More...
 
PanelRenderergetSharedRenderer ()
 Returns the renderer, which gives access to functions that determine how the widget is displayed. More...
 
PanelRenderergetRenderer ()
 Returns the renderer, which gives access to functions that determine how the widget is displayed. More...
 
Vector2f getInnerSize () const override
 Returns the space available for widgets inside the container. More...
 
Vector2f getChildWidgetsOffset () const override
 Returns the distance between the position of the container and a widget that would be drawn inside this container on relative position (0,0) More...
 
bool mouseOnWidget (Vector2f pos) const override
 Returns whether the mouse position (which is relative to the parent widget) lies on top of the widget. More...
 
void setSize (Layout width, Layout height)
 Changes the size of the widget. More...
 
- Public Member Functions inherited from tgui::Group
 Group (const Layout2d &size={"100%", "100%"})
 Default constructor. More...
 
GroupRenderergetSharedRenderer ()
 Returns the renderer, which gives access to functions that determine how the widget is displayed. More...
 
GroupRenderergetRenderer ()
 Returns the renderer, which gives access to functions that determine how the widget is displayed. More...
 
void setSize (Layout width, Layout height)
 Changes the size of the widget. More...
 
- Public Member Functions inherited from tgui::Container
 Container (const Container &copy)
 Copy constructor.
 
 Container (Container &&copy)
 Move constructor.
 
 ~Container ()
 Destructor.
 
Containeroperator= (const Container &right)
 Overload of copy assignment operator.
 
Containeroperator= (Container &&right)
 Overload of move assignment operator.
 
const std::vector< Widget::Ptr > & getWidgets () const
 Returns a list of all the widgets in this container. More...
 
template<typename Function >
void sortWidgets (Function &&function)
 Sorts a list of all the widgets in this container. More...
 
const std::vector< sf::String > getWidgetNames () const
 Returns a list of the names of all the widgets in this container. More...
 
Widget::Ptr get (const sf::String &widgetName) const
 Returns a pointer to a widget that was added earlier. More...
 
template<class T >
T::Ptr get (const sf::String &widgetName) const
 Returns a pointer to a widget that was added earlier. More...
 
bool setWidgetName (const Widget::Ptr &widget, const std::string &name)
 Changes the name of a widget. More...
 
std::string getWidgetName (const Widget::ConstPtr &widget) const
 Returns the name of a widget. More...
 
void uncheckRadioButtons ()
 Unchecks all the radio buttons.
 
void setTextSize (unsigned int size) override
 Changes the character size of all existing and future child widgets. More...
 
void loadWidgetsFromFile (const std::string &filename, bool replaceExisting=true)
 Loads the child widgets from a text file. More...
 
void saveWidgetsToFile (const std::string &filename)
 Saves the child widgets to a text file. More...
 
void loadWidgetsFromStream (std::stringstream &stream, bool replaceExisting=true)
 Loads the child widgets from a string stream. More...
 
void loadWidgetsFromStream (std::stringstream &&stream, bool replaceExisting=true)
 Loads the child widgets from a string stream. More...
 
void saveWidgetsToStream (std::stringstream &stream) const
 Saves the child widgets to a text file. More...
 
void moveWidgetToFront (const Widget::Ptr &widget)
 Places a widget before all other widgets, to the front of the z-order. More...
 
void moveWidgetToBack (const Widget::Ptr &widget)
 Places a widget behind all other widgets, to the back of the z-order. More...
 
std::size_t moveWidgetForward (const Widget::Ptr &widget)
 Places a widget one step forward in the z-order. More...
 
std::size_t moveWidgetBackward (const Widget::Ptr &widget)
 Places a widget one step backward in the z-order. More...
 
Widget::Ptr getFocusedChild () const
 Returns the child widget that is focused inside this container. More...
 
Widget::Ptr getFocusedLeaf () const
 Returns the leaf child widget that is focused inside this container. More...
 
bool focusNextWidget (bool recursive=true)
 Focuses the next widget in this container. More...
 
bool focusPreviousWidget (bool recursive=true)
 Focuses the previous widget in this container. More...
 
void setFocused (bool focused) override
 Focus or unfocus the widget. More...
 
void setSize (Layout width, Layout height)
 Changes the size of the widget. More...
 
void setWidgetName (const sf::String &name)
 Changes the name of a widget. More...
 
- Public Member Functions inherited from tgui::Widget
 Widget ()
 Default constructor.
 
 Widget (const Widget &)
 Copy constructor.
 
 Widget (Widget &&)
 Move constructor.
 
 ~Widget ()
 Destructor.
 
Widgetoperator= (const Widget &)
 Overload of copy assignment operator.
 
Widgetoperator= (Widget &&)
 Move assignment.
 
void setRenderer (std::shared_ptr< RendererData > rendererData)
 Sets a new renderer for the widget. The renderer determines how the widget looks. More...
 
WidgetRenderergetSharedRenderer ()
 Returns the renderer, which gives access to functions that determine how the widget is displayed. More...
 
WidgetRenderergetRenderer ()
 Returns the renderer, which gives access to functions that determine how the widget is displayed. More...
 
virtual void setPosition (const Layout2d &position)
 sets the position of the widget More...
 
void setPosition (Layout x, Layout y)
 Sets the position of the widget. More...
 
Vector2f getPosition () const
 Gets the position of the widget. More...
 
void setSize (Layout width, Layout height)
 Changes the size of the widget. More...
 
Vector2f getSize () const
 Returns the size of the widget. More...
 
virtual Vector2f getFullSize () const
 Returns the entire size that the widget is using. More...
 
virtual Vector2f getWidgetOffset () const
 Returns the distance between the position where the widget is drawn and where the widget is placed. More...
 
virtual void showWithEffect (ShowAnimationType type, sf::Time duration)
 Shows the widget by introducing it with an animation. More...
 
virtual void hideWithEffect (ShowAnimationType type, sf::Time duration)
 Hides the widget by making it leave with an animation. More...
 
virtual void setVisible (bool visible)
 Shows or hides a widget. More...
 
bool isVisible () const
 Returns true when the widget is visible. More...
 
virtual void setEnabled (bool enabled)
 Enables or disables the widget. More...
 
bool isEnabled () const
 Returns true when the widget is enabled. More...
 
bool isFocused () const
 Returns true when the widget is focused and false otherwise. More...
 
const std::string & getWidgetType () const
 Returns the type of the widget. More...
 
ContainergetParent () const
 Returns a pointer to the parent widget. More...
 
bool isAnimationPlaying () const
 Returns whether there is an active animation (started with showWithEffect or hideWithEffect) More...
 
virtual void moveToFront ()
 Places the widget before all other widgets. More...
 
virtual void moveToBack ()
 Places the widget behind all other widgets. More...
 
void setUserData (std::any userData)
 Stores some data into the widget. More...
 
template<typename T >
getUserData () const
 Returns data stored in the widget. More...
 
void setInheritedFont (const Font &font)
 Sets the font of the widget that is used when no font is set in the renderer. More...
 
const FontgetInheritedFont () const
 Returns the font of the widget that is used when no font is set in the renderer. More...
 
void setInheritedOpacity (float opacity)
 Sets the opacity of the widget that will be multiplied with the opacity set in the renderer. More...
 
float getInheritedOpacity () const
 Returns the opacity of the widget that is multiplied with the opacity set in the renderer. More...
 
virtual unsigned int getTextSize () const
 Returns the character size of text in this widget. More...
 
void setToolTip (Widget::Ptr toolTip)
 Sets the tool tip that should be displayed when hovering over the widget. More...
 
Widget::Ptr getToolTip () const
 Returns the tool tip that is displayed when hovering over the widget. More...
 
void setWidgetName (const sf::String &name)
 Changes the name of a widget. More...
 
sf::String getWidgetName () const
 Returns the name of a widget. More...
 
void setFocusable (bool focusable)
 Changes whether a widget could be focused. More...
 
bool isFocusable () const
 Returns whether a widget could be focused. More...
 
virtual bool canGainFocus () const
 Returns whether the widget can currently gain focus. More...
 
bool isContainer () const
 Returns whether the widget is a container widget or not. More...
 
template<typename WidgetType >
std::shared_ptr< const WidgetType > cast () const
 Downcast const widget.
 
template<typename WidgetType >
std::shared_ptr< WidgetType > cast ()
 Downcast widget.
 
- Public Member Functions inherited from tgui::SignalWidgetBase
template<typename Func , typename... Args, typename std::enable_if< std::is_convertible< Func, std::function< void(const Args &...)> >::value >::type * = nullptr>
unsigned int connect (std::string signalName, Func &&handler, const Args &... args)
 Connects a signal handler that will be called when this signal is emitted. More...
 
template<typename Func , typename... BoundArgs, typename std::enable_if<!std::is_convertible< Func, std::function< void(const BoundArgs &...)> >::value &&std::is_convertible< Func, std::function< void(const BoundArgs &..., std::shared_ptr< Widget >, const std::string &)> >::value , ::type * = nullptr>
unsigned int connect (std::string signalName, Func &&handler, BoundArgs &&... args)
 Connects a signal handler that will be called when this signal is emitted. More...
 
template<typename Func , typename... BoundArgs, typename std::enable_if<!std::is_convertible< Func, std::function< void(const BoundArgs &...)> >::value &&!std::is_convertible< Func, std::function< void(const BoundArgs &..., std::shared_ptr< Widget >, const std::string &)> >::value , ::type * = nullptr>
unsigned int connect (std::string signalName, Func &&handler, BoundArgs &&... args)
 Connects a signal handler that will be called when this signal is emitted. More...
 
template<typename Func , typename... BoundArgs>
unsigned int connect (std::initializer_list< std::string > signalNames, Func &&handler, BoundArgs &&... args)
 Connect a signal handler to multiple signals. More...
 
bool disconnect (unsigned int id)
 Disconnects a signal handler. More...
 
void disconnectAll (std::string signalName)
 Disconnects all signal handler from a certain signal. More...
 
void disconnectAll ()
 Disconnects all signal handlers from signals.
 

Static Public Member Functions

static ScrollablePanel::Ptr create (Layout2d size={"100%", "100%"}, Vector2f contentSize={0, 0})
 Creates a new scrollable panel widget. More...
 
static ScrollablePanel::Ptr copy (ScrollablePanel::ConstPtr panel)
 Makes a copy of another scrollbable panel. More...
 
- Static Public Member Functions inherited from tgui::Panel
static Panel::Ptr create (Layout2d size={"100%", "100%"})
 Creates a new panel widget. More...
 
static Panel::Ptr copy (Panel::ConstPtr panel)
 Makes a copy of another panel. More...
 
- Static Public Member Functions inherited from tgui::Group
static Group::Ptr create (const Layout2d &size={"100%", "100%"})
 Creates a new group. More...
 
static Group::Ptr copy (Group::ConstPtr group)
 Makes a copy of another group. More...
 

Protected Member Functions

void rendererChanged (const std::string &property) override
 Function called when one of the properties of the renderer is changed. More...
 
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.
 
void load (const std::unique_ptr< DataIO::Node > &node, const LoadingRenderersMap &renderers) override
 Loads the widget from a tree of nodes.
 
Widget::Ptr clone () const override
 Makes a copy of the widget if you don't know its exact type. More...
 
- Protected Member Functions inherited from tgui::Panel
SignalgetSignal (std::string signalName) override
 Retrieves a signal based on its name. More...
 
- Protected Member Functions inherited from tgui::Widget
virtual void mouseEnteredWidget ()
 This function is called when the mouse enters the widget.
 
virtual void mouseLeftWidget ()
 This function is called when the mouse leaves the widget.
 

Additional Inherited Members

- Public Attributes inherited from tgui::Panel
SignalVector2f onMousePress = {"MousePressed"}
 The mouse went down on the panel. Optional parameter: mouse position relative to panel.
 
SignalVector2f onMouseRelease = {"MouseReleased"}
 The mouse was released on top of the panel. Optional parameter: mouse position relative to panel.
 
SignalVector2f onClick = {"Clicked"}
 The panel was clicked. Optional parameter: mouse position relative to panel.
 
SignalVector2f onRightMousePress = {"RightMousePressed"}
 The right mouse button went down on the panel. Optional parameter: mouse position relative to panel.
 
SignalVector2f onRightMouseRelease = {"RightMouseReleased"}
 The right mouse button was released on top of the panel. Optional parameter: mouse position relative to panel.
 
SignalVector2f onRightClick = {"RightClicked"}
 The panel was right clicked. Optional parameter: mouse position relative to panel.
 
- Public Attributes inherited from tgui::Widget
SignalVector2f onPositionChange = {"PositionChanged"}
 The position of the widget changed. Optional parameter: new position.
 
SignalVector2f onSizeChange = {"SizeChanged"}
 The size of the widget changed. Optional parameter: new size.
 
Signal onFocus = {"Focused"}
 The widget was focused.
 
Signal onUnfocus = {"Unfocused"}
 The widget was unfocused.
 
Signal onMouseEnter = {"MouseEntered"}
 The mouse entered the widget.
 
Signal onMouseLeave = {"MouseLeft"}
 The mouse left the widget.
 
SignalAnimation onAnimationFinished = {"AnimationFinished"}
 A show or hide animation finished. Optional parameters: animation type, new widget visibility or both.
 

Detailed Description

Group of widgets that has a background color and optional borders.

Constructor & Destructor Documentation

◆ ScrollablePanel()

tgui::ScrollablePanel::ScrollablePanel ( const Layout2d size = {"100%", "100%"},
Vector2f  contentSize = {0, 0} 
)

Default constructor.

Parameters
sizeSize of the panel
contentSizeSize of the content area for which the scrollbars will appear if larger than the size

When contentSize is set to (0,0), the content size is determined by the child widgets of the panel.

Member Function Documentation

◆ add()

void tgui::ScrollablePanel::add ( const Widget::Ptr widget,
const sf::String &  widgetName = "" 
)
overridevirtual

Adds a widget at the end of the layout.

Parameters
widgetPointer to the widget you would like to add
widgetNameAn identifier to access to the widget later

Reimplemented from tgui::Container.

◆ clone()

Widget::Ptr tgui::ScrollablePanel::clone ( ) const
inlineoverrideprotectedvirtual

Makes a copy of the widget if you don't know its exact type.

This function should only be used when you don't know the type of the widget. If you know what kind of widget you are copying, you should use the copy function.

Returns
Copy of the widget

Reimplemented from tgui::Panel.

◆ copy()

static ScrollablePanel::Ptr tgui::ScrollablePanel::copy ( ScrollablePanel::ConstPtr  panel)
static

Makes a copy of another scrollbable panel.

Parameters
panelThe other scrollbable panel
Returns
The new scrollbable panel

◆ create()

static ScrollablePanel::Ptr tgui::ScrollablePanel::create ( Layout2d  size = {"100%", "100%"},
Vector2f  contentSize = {0, 0} 
)
static

Creates a new scrollable panel widget.

Parameters
sizeSize of the panel
contentSizeSize of the content area for which the scrollbars will appear if larger than the size

When contentSize is set to (0,0), the content size is determined by the child widgets of the panel.

Returns
The new scrollable panel

◆ draw()

void tgui::ScrollablePanel::draw ( sf::RenderTarget &  target,
sf::RenderStates  states 
) const
overridevirtual

Draw the widget to a render target.

Parameters
targetRender target to draw to
statesCurrent render states

Reimplemented from tgui::Panel.

◆ enableSkipDrawingWidgetsOutsideView()

void tgui::ScrollablePanel::enableSkipDrawingWidgetsOutsideView ( bool  skipDrawing = true)

Sets whether widgets that are located outside the visible view of the ScrollablePanel still get drawn.

skipDrawing Should the Widget::draw() call be skipped when it lies outside the view?

This is disabled by default for backwards compatibility. Call this function with 'true' as parameter to enable the optimalization.

◆ getAbsolutePosition()

Vector2f tgui::ScrollablePanel::getAbsolutePosition ( ) const
overridevirtual
Warning
This function does not return the absolute position of the ScrollablePanel. It is implemented in a way that allows calling getAbsolutePosition() on a child widget of the ScrollablePanel to work.

Reimplemented from tgui::Widget.

◆ getContentOffset()

Vector2f tgui::ScrollablePanel::getContentOffset ( ) const

Returns the amount of pixels the child widgets have been shifted to be displayed by the scrollable panel.

Returns
Value of the scrollbars

◆ getContentSize()

Vector2f tgui::ScrollablePanel::getContentSize ( ) const

Returns the size available for child widgets.

Returns
Inner size of the container

If the content size is larger than the size of the panel then scrollbars will be displayed

◆ getHorizontalScrollAmount()

unsigned int tgui::ScrollablePanel::getHorizontalScrollAmount ( ) const

Returns how much the value changes when scrolling or pressing one of the arrows of the horizontal scrollbar.

Returns
How far should the horizontal scrollbar scroll when an arrow is clicked?

◆ getHorizontalScrollbarPolicy()

Scrollbar::Policy tgui::ScrollablePanel::getHorizontalScrollbarPolicy ( ) const

Returns when the horizontal scrollbar should be displayed.

Returns
The policy for displaying the horizontal scrollbar

◆ getHorizontalScrollbarValue()

unsigned int tgui::ScrollablePanel::getHorizontalScrollbarValue ( ) const

Returns the thumb position of the horizontal scrollbar.

Returns
Value of the horizontal scrollbar

◆ getRenderer()

ScrollablePanelRenderer * tgui::ScrollablePanel::getRenderer ( )

Returns the renderer, which gives access to functions that determine how the widget is displayed.

Returns
Temporary pointer to the renderer
Warning
After calling this function, the widget has its own copy of the renderer and it will no longer be shared.

◆ getScrollbarWidth()

float tgui::ScrollablePanel::getScrollbarWidth ( ) const

Returns the width of the scrollbars.

Returns
Scrollbar width

◆ getSharedRenderer()

ScrollablePanelRenderer * tgui::ScrollablePanel::getSharedRenderer ( )

Returns the renderer, which gives access to functions that determine how the widget is displayed.

Returns
Temporary pointer to the renderer that may be shared with other widgets using the same renderer

◆ getVerticalScrollAmount()

unsigned int tgui::ScrollablePanel::getVerticalScrollAmount ( ) const

Returns how much the value changes when scrolling or pressing one of the arrows of the vertical scrollbar.

Returns
How far should the vertical scrollbar scroll when an arrow is clicked?

◆ getVerticalScrollbarPolicy()

Scrollbar::Policy tgui::ScrollablePanel::getVerticalScrollbarPolicy ( ) const

Returns when the vertical scrollbar should be displayed.

Returns
The policy for displaying the vertical scrollbar

◆ getVerticalScrollbarValue()

unsigned int tgui::ScrollablePanel::getVerticalScrollbarValue ( ) const

Returns the thumb position of the vertical scrollbar.

Returns
Value of the vertical scrollbar

◆ getWidgetAtPosition()

Widget::Ptr tgui::ScrollablePanel::getWidgetAtPosition ( sf::Vector2f  pos) const
overridevirtual

Returns the leaf child widget that is located at the given position.

Parameters
posThe location where the widget will be searched, relative to the container
Returns
Widget at the queried position, or nullptr when there is no widget at that location

Reimplemented from tgui::Container.

◆ remove()

bool tgui::ScrollablePanel::remove ( const Widget::Ptr widget)
overridevirtual

Removes a single widget that was added to the container.

Parameters
widgetPointer to the widget to remove
Returns
True when widget is removed, false when widget was not found

Reimplemented from tgui::Container.

◆ rendererChanged()

void tgui::ScrollablePanel::rendererChanged ( const std::string &  property)
overrideprotectedvirtual

Function called when one of the properties of the renderer is changed.

Parameters
propertyLowercase name of the property that was changed

Reimplemented from tgui::Panel.

◆ setContentSize()

void tgui::ScrollablePanel::setContentSize ( Vector2f  size)

Channges the size available for child widgets.

Parameters
sizeInner size of the container

If the content size is larger than the size of the panel then scrollbars will be displayed.

When the content size is (0,0), which is the default, then the content size is determined by the child widgets.

◆ setHorizontalScrollAmount()

void tgui::ScrollablePanel::setHorizontalScrollAmount ( unsigned int  scrollAmount)

Changes how much the value changes when scrolling or pressing one of the arrows of the horizontal scrollbar.

Parameters
scrollAmountHow far should the horizontal scrollbar scroll when an arrow is clicked?

◆ setHorizontalScrollbarPolicy()

void tgui::ScrollablePanel::setHorizontalScrollbarPolicy ( Scrollbar::Policy  policy)

Changes when the horizontal scrollbar should be displayed.

Parameters
policyThe policy for displaying the horizontal scrollbar

◆ setHorizontalScrollbarValue()

void tgui::ScrollablePanel::setHorizontalScrollbarValue ( unsigned int  value)

Changes the thumb position of the horizontal scrollbar.

Parameters
valueNew value of the horizontal scrollbar

◆ setScrollbarWidth()

void tgui::ScrollablePanel::setScrollbarWidth ( float  width)

Changes the width of the scrollbars.

Parameters
widthScrollbar width

◆ setSize() [1/3]

virtual void tgui::Widget::setSize ( const Layout2d size)
virtual

Changes the size of the widget.

Parameters
sizeSize of the widget

Usage examples:

// Give the widget an exact size
widget->setSize({40, 30});
// Give the widget a size relative to the size of its parent
widget->setSize({"20%", "5%"});
// Make the widget 50 pixels higher than some other widget and automatically resize it when the other widget resizes
widget->setSize({200, tgui::bindHeight(otherWidget) + 50});
TGUI_API Layout bindHeight(std::shared_ptr< Widget > widget)
Bind to the height of the widget.

Reimplemented from tgui::Panel.

◆ setSize() [2/3]

void tgui::ScrollablePanel::setSize ( const Layout2d size)
overridevirtual

Changes the size of the panel.

Parameters
sizeThe new size of the panel

Reimplemented from tgui::Panel.

◆ setSize() [3/3]

void tgui::Widget::setSize ( Layout  width,
Layout  height 
)
inline

Changes the size of the widget.

Parameters
widthWidth of the widget
heightHeight of the widget
Warning
This setSize overload must never be used from internal TGUI code or by custom widget implementations

◆ setVerticalScrollAmount()

void tgui::ScrollablePanel::setVerticalScrollAmount ( unsigned int  scrollAmount)

Changes how much the value changes when scrolling or pressing one of the arrows of the vertical scrollbar.

Parameters
scrollAmountHow far should the vertical scrollbar scroll when an arrow is clicked?

◆ setVerticalScrollbarPolicy()

void tgui::ScrollablePanel::setVerticalScrollbarPolicy ( Scrollbar::Policy  policy)

Changes when the vertical scrollbar should be displayed.

Parameters
policyThe policy for displaying the vertical scrollbar

◆ setVerticalScrollbarValue()

void tgui::ScrollablePanel::setVerticalScrollbarValue ( unsigned int  value)

Changes the thumb position of the vertical scrollbar.

Parameters
valueNew value of the vertical scrollbar

The documentation for this class was generated from the following file: