28#include <TGUI/Widgets/ClickableWidget.hpp>
29#include <TGUI/Renderers/LabelRenderer.hpp>
30#include <TGUI/Widgets/Scrollbar.hpp>
31#include <TGUI/Text.hpp>
35TGUI_MODULE_EXPORT
namespace tgui
44 using Ptr = std::shared_ptr<Label>;
184 TGUI_DEPRECATED(
"Use getScrollbar()->setValue(value) instead")
void setScrollbarValue(
unsigned int value);
191 TGUI_DEPRECATED(
"Use getScrollbar()->getValue() instead") TGUI_NODISCARD
unsigned int getScrollbarValue() const;
200 TGUI_DEPRECATED(
"Use getScrollbar()->getMaxValue() instead") TGUI_NODISCARD
unsigned int getScrollbarMaxValue() const;
265 void setParent(
Container* parent) override;
285 void leftMouseReleased(Vector2f pos) override;
288 void mouseMoved(Vector2f pos) override;
291 bool scrolled(
float delta, Vector2f pos,
bool touch) override;
294 void mouseNoLongerOnWidget() override;
297 void leftMouseButtonNoLongerDown() override;
331 TGUI_NODISCARD std::unique_ptr<DataIO::Node>
save(SavingRenderersMap& renderers) const override;
336 void load(const std::unique_ptr<DataIO::Node>& node, const LoadingRenderersMap& renderers) override;
346 bool updateTime(
Duration elapsedTime) override;
361 void updateTextPiecePositions(
float maxWidth);
377 std::vector<std::vector<Text>> m_lines;
383 bool m_autoSize =
true;
385 float m_maximumTextWidth = 0;
387 bool m_ignoringMouseEvents =
false;
390 bool m_possibleDoubleClick =
false;
392 Sprite m_spriteBackground;
395 Borders m_bordersCached;
396 Padding m_paddingCached;
398 Color m_textColorCached;
399 Color m_borderColorCached;
400 Color m_backgroundColorCached;
402 float m_textOutlineThicknessCached = 0;
Base class for render targets.
Definition BackendRenderTarget.hpp:46
Wrapper for colors.
Definition Color.hpp:73
static const Color Black
Black predefined color.
Definition Color.hpp:259
Container widget.
Definition Container.hpp:48
Wrapper for durations.
Definition Duration.hpp:55
Definition LabelRenderer.hpp:35
tgui::HorizontalAlignment HorizontalAlignment
The horizontal text alignment.
Definition Label.hpp:52
Signal & getSignal(String signalName) override
Retrieves a signal based on its name.
void updateTextSize() override
Called when the text size is changed (either by setTextSize or via the renderer)
bool canGainFocus() const override
Returns whether the widget can gain focus.
void setAutoSize(bool autoSize)
Changes whether the label is auto-sized or not.
void setMaximumTextWidth(float maximumWidth)
Changes the maximum width that the text will have when auto-sizing.
void setScrollbarPolicy(Scrollbar::Policy policy)
Changes when the vertical scrollbar should be displayed.
Widget::Ptr clone() const override
Makes a copy of the widget if you don't know its exact type.
void ignoreMouseEvents(bool ignore=true)
Sets whether the widget should completely ignore mouse events and let them pass to the widgets behind...
unsigned int getScrollbarValue() const
Returns the thumb position of the scrollbar.
void draw(BackendRenderTarget &target, RenderStates states) const override
Draw the widget to a render target.
void load(const std::unique_ptr< DataIO::Node > &node, const LoadingRenderersMap &renderers) override
Loads the widget from a tree of nodes.
virtual void rearrangeText()
Rearrange the text (recreates m_textPieces), making use of the given size of maximum text width.
bool scrolled(float delta, Vector2f pos, bool touch) override
Called by the parent on scroll event (either from mouse wheel of from two finger scrolling on a touch...
void scrollbarPolicyChanged() override
Called when the policy of the scrollbar has been changed via getScrollbar()->setPolicy(....
float getMaximumTextWidth() const
Returns the maximum width that the text will have.
static Label::Ptr create(const String &text="")
Creates a new label widget.
std::shared_ptr< const Label > ConstPtr
Shared constant widget pointer.
Definition Label.hpp:45
void setScrollbarValue(unsigned int value)
Changes the thumb position of the scrollbar.
static Label::Ptr copy(const Label::ConstPtr &label)
Makes a copy of another label.
bool isIgnoringMouseEvents() const
Returns whether the widget is ignoring mouse events and letting them pass to the widgets behind it.
LabelRenderer * getSharedRenderer() override
Returns the renderer, which gives access to functions that determine how the widget is displayed.
void setText(const String &text)
Changes the text.
bool getAutoSize() const
Returns whether the label is auto-sized or not.
static constexpr const char StaticWidgetType[]
Type name of the widget.
Definition Label.hpp:47
Scrollbar::Policy getScrollbarPolicy() const
Returns when the vertical scrollbar should be displayed.
void setHorizontalAlignment(tgui::HorizontalAlignment alignment)
Changes the horizontal text alignment.
SignalString onDoubleClick
The label was double clicked. Optional parameter: text of the label.
Definition Label.hpp:371
LabelRenderer * getRenderer() override
Returns the renderer, which gives access to functions that determine how the widget is displayed.
tgui::VerticalAlignment getVerticalAlignment() const
Gets the current vertical text alignment.
tgui::VerticalAlignment VerticalAlignment
The vertical text alignment.
Definition Label.hpp:57
bool leftMousePressed(Vector2f pos) override
Called by the parent when the left mouse button goes down on top of the widget.
void setSize(const Layout2d &size) override
Changes the area of the text that will be drawn.
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 rendererChanged(const String &property) override
Function called when one of the properties of the renderer is changed.
const String & getText() const
Returns the text.
bool isMouseOnWidget(Vector2f pos) const override
Returns whether the mouse position (which is relative to the parent widget) lies on top of the widget...
void setVerticalAlignment(tgui::VerticalAlignment alignment)
Changes the vertical text alignment.
tgui::HorizontalAlignment getHorizontalAlignment() const
Gets the current horizontal text alignment.
std::shared_ptr< Label > Ptr
Shared widget pointer.
Definition Label.hpp:44
unsigned int getScrollbarMaxValue() const
Returns the maximum thumb position of the scrollbar.
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:61
Wrapper class to store strings.
Definition String.hpp:96
Wrapper for text styles.
Definition TextStyle.hpp:55
Namespace that contains all TGUI functions and classes.
Definition AbsoluteOrRelativeValue.hpp:38
HorizontalAlignment
The horizontal alignment.
Definition Layout.hpp:62
@ Left
Align to the left side.
Definition Layout.hpp:63
SignalTyped< const String & > SignalString
Signal with one "String" as optional unbound parameter.
Definition Signal.hpp:428
VerticalAlignment
The vertical alignment.
Definition Layout.hpp:73
@ Top
Align to the top.
Definition Layout.hpp:74
States used for drawing.
Definition RenderStates.hpp:38