NasNas
An intuitive and beginner friendly 2D game framework for C++
Public Member Functions | List of all members
ns::BitmapText Class Reference

A BitmapText is a Drawable that uses a BitmapFont to display text. More...

#include <BitmapText.hpp>

Inheritance diagram for ns::BitmapText:

Public Member Functions

 BitmapText (const sf::String &string, const ns::BitmapFont &font)
 Creates a BitmapText. More...
 
void setString (const sf::String &string)
 Set the text's string. More...
 
auto getString () -> const sf::String &
 
void setFont (const BitmapFont &font)
 Set the text's BitmapFont. More...
 
auto getFont () const -> const BitmapFont *
 
void setColor (const sf::Color &color)
 Set the font color. More...
 
auto getColor () const -> const sf::Color &
 
void setLetterSpacing (float factor)
 
auto getLetterSpacing () const -> float
 
void setLineSpacing (float factor)
 
auto getLineSpacing () const -> float
 
auto getCharacterIndexAt (float position) const -> std::size_t
 
auto getPosition () const -> sf::Vector2f
 Get BitmapText position. More...
 
auto getLocalBounds () const -> ns::FloatRect
 Get BitmapText local bounds. More...
 
auto getGlobalBounds () const -> ns::FloatRect
 Get BitmapText global bounds. More...
 

Detailed Description

A BitmapText is a Drawable that uses a BitmapFont to display text.

Definition at line 28 of file BitmapText.hpp.

Constructor & Destructor Documentation

◆ BitmapText()

ns::BitmapText::BitmapText ( const sf::String &  string,
const ns::BitmapFont font 
)

Creates a BitmapText.

Parameters
stringString to display
fontFont used to draw the string

Member Function Documentation

◆ getGlobalBounds()

auto ns::BitmapText::getGlobalBounds ( ) const -> ns::FloatRect

Get BitmapText global bounds.

Returns
Global bounds rectangle

◆ getLocalBounds()

auto ns::BitmapText::getLocalBounds ( ) const -> ns::FloatRect

Get BitmapText local bounds.

Returns
Local bounds rectangle

◆ getPosition()

auto ns::BitmapText::getPosition ( ) const -> sf::Vector2f

Get BitmapText position.

Returns
Position

◆ setColor()

void ns::BitmapText::setColor ( const sf::Color &  color)

Set the font color.

Parameters
colorThe color

◆ setFont()

void ns::BitmapText::setFont ( const BitmapFont font)

Set the text's BitmapFont.

Parameters
fontNew bitmapfont

◆ setString()

void ns::BitmapText::setString ( const sf::String &  string)

Set the text's string.

Parameters
stringNew string

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