touchgfx::FontManager is only used within TouchGFX.
 
Symbols
loading...
Files
loading...

touchgfx::FontManager class

@class FontManager FontManager.hpp touchgfx/FontManager.hpp This class is the entry point for looking up a font based on a font id. This class is the entry point for looking up a font based on a font id. Must be initialized with the appropriate FontProvider by the application.

Syntax

class FontManager { public:     static void setFontProvider(FontProvider* fontProvider);     static Font* getFont(FontId fontId); private:     static FontProvider* provider; };

Fields

provider

No summary provided. Read more...

Methods

setFontProvider()

@fn static void FontManager::setFontProvider(FontProvider* fontProvider); Sets the font provider. Sets the font provider. Must be initialized with the appropriate FontProvider by the application. Read more...

getFont()

@fn static Font* FontManager::getFont(FontId fontId); Gets a font. Gets a font. Read more...

References

LocationText
FontManager.hpp:71
class FontManager