25#ifndef TGUI_BACKEND_FONT_SFML_HPP
26#define TGUI_BACKEND_FONT_SFML_HPP
28#include <TGUI/Backend/Font/BackendFont.hpp>
30#include <SFML/Graphics/Font.hpp>
34#include <unordered_set>
54 [[nodiscard]]
bool loadFromMemory(std::unique_ptr<std::uint8_t[]> data, std::size_t sizeInBytes)
override;
64 [[nodiscard]]
bool hasGlyph(
char32_t codePoint)
const override;
79 [[nodiscard]]
FontGlyph getGlyph(
char32_t codePoint,
unsigned int characterSize,
bool bold,
float outlineThickness = 0)
override;
95 [[nodiscard]]
float getKerning(
char32_t first,
char32_t second,
unsigned int characterSize,
bool bold)
override;
124 [[nodiscard]]
float getAscent(
unsigned int characterSize)
override;
133 [[nodiscard]]
float getDescent(
unsigned int characterSize)
override;
165 [[nodiscard]] std::shared_ptr<BackendTexture>
getTexture(
unsigned int characterSize,
unsigned int& textureVersion)
override;
194 void setFontScale(
float scale)
override;
201 [[nodiscard]] sf::Font* getInternalFont();
206 std::unique_ptr<sf::Font> m_font;
207 std::unique_ptr<std::uint8_t[]> m_fileContents;
209 std::unordered_set<std::uint64_t> m_loadedGlyphKeys;
213 std::map<unsigned int, std::shared_ptr<BackendTexture>> m_textures;
214 std::map<unsigned int, unsigned int> m_textureVersions;
218 unsigned int m_lastTextureVersion = 0;
Font implementation that makes use of SFML.
Definition BackendFontSFML.hpp:44
float getFontHeight(unsigned int characterSize) override
Returns the height required to render a line of text.
float getUnderlinePosition(unsigned int characterSize) override
Get the position of the underline.
bool hasGlyph(char32_t codePoint) const override
Returns whether a font contains a certain glyph.
FontGlyph getGlyph(char32_t codePoint, unsigned int characterSize, bool bold, float outlineThickness=0) override
Retrieve a glyph of the font.
float getUnderlineThickness(unsigned int characterSize) override
Get the thickness of the underline.
bool loadFromMemory(std::unique_ptr< std::uint8_t[]> data, std::size_t sizeInBytes) override
Loads a font from memory.
void setSmooth(bool smooth) override
Enable or disable the smooth filter.
float getLineSpacing(unsigned int characterSize) override
Returns the line spacing.
float getKerning(char32_t first, char32_t second, unsigned int characterSize, bool bold) override
Returns the kerning offset of two glyphs.
std::shared_ptr< BackendTexture > getTexture(unsigned int characterSize, unsigned int &textureVersion) override
Returns the texture that is used to store glyphs of the given character size.
Vector2u getTextureSize(unsigned int characterSize) override
Returns the size of the texture that is used to store glyphs of the given character size.
float getDescent(unsigned int characterSize) override
Returns the maximum height of a glyph below the baseline as a negative value.
float getAscent(unsigned int characterSize) override
Returns the maximum height of a glyph above the baseline.
virtual bool loadFromMemory(std::unique_ptr< std::uint8_t[]> data, std::size_t sizeInBytes)=0
Loads a font from memory.
BackendFont()
Default constructor.
Namespace that contains all TGUI functions and classes.
Definition AbsoluteOrRelativeValue.hpp:37
Information about a glyph in the font.
Definition Font.hpp:44