MCPcopy Create free account
hub / github.com/TankOs/SFGUI / Label

Method Label

src/SFGUI/Label.cpp:10–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8namespace sfg {
9
10Label::Label( const sf::String& text ) :
11 m_text( text ),
12 m_wrap( false )
13{
14 SetAlignment( sf::Vector2f( .5f, .5f ) );
15 Invalidate();
16}
17
18Label::Ptr Label::Create( const sf::String& text ) {
19 Ptr label( new Label( text ) );

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected