CTurtle
Loading...
Searching...
No Matches
Public Member Functions | Public Attributes | List of all members
cturtle::Text Class Reference

The Text class represents a basic string that is drawn on the screen. More...

#include <CTurtle.hpp>

Inheritance diagram for cturtle::Text:
Inheritance graph
[legend]
Collaboration diagram for cturtle::Text:
Collaboration graph
[legend]

Public Member Functions

 Text (std::string text, const BitmapFont &font, const Color &color, float scale=1.0f, TextAlign alignment=TEXT_ALIGN_LEFT)
 
 Text (const Text &copy)=default
 
AbstractDrawableObjectcopy () const override
 Returns a pointer to a copy of this drawable object, allocated with NEW. Result must be deleted at the responsibility of the invoker.
 
void draw (const Transform &t, Image &imgRef) const override
 This function is intended to draw all applicable geometry in this object to the specified image, with the specified transform, with the specified color. This function is intended to be overloaded by child classes to draw applicable geometry to an image, acting as a canvas.
 
- Public Member Functions inherited from cturtle::AbstractDrawableObject
virtual ~AbstractDrawableObject ()=default
 Empty– virtual– default de-constructor.
 

Public Attributes

const std::string text
 
const BitmapFontfont
 
TextAlign alignment
 
float scale
 
- Public Attributes inherited from cturtle::AbstractDrawableObject
Color fillColor
 
Color outlineColor
 
int outlineWidth = 0
 

Additional Inherited Members

- Protected Member Functions inherited from cturtle::AbstractDrawableObject
 AbstractDrawableObject ()=default
 Empty default constructor.
 

Detailed Description

The Text class represents a basic string that is drawn on the screen.

Member Function Documentation

◆ copy()

AbstractDrawableObject * cturtle::Text::copy ( ) const
inlineoverridevirtual

Returns a pointer to a copy of this drawable object, allocated with NEW. Result must be deleted at the responsibility of the invoker.

Implements cturtle::AbstractDrawableObject.

◆ draw()

void cturtle::Text::draw ( const Transform & t,
Image & imgRef ) const
inlineoverridevirtual

This function is intended to draw all applicable geometry in this object to the specified image, with the specified transform, with the specified color. This function is intended to be overloaded by child classes to draw applicable geometry to an image, acting as a canvas.

Parameters
tThe transform at which to draw the geometry.
imgRefThe canvas on which to draw.
cThe color with to draw the geometry.

Implements cturtle::AbstractDrawableObject.

Member Data Documentation

◆ text

const std::string cturtle::Text::text

The text to draw.


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