FreeTypeFontEnginePlugin is the FreeType font engine plugin implementation. More...
#include <kanzi/plugins/freetype/freetype_plugin.hpp>
Public Member Functions | |
FreeTypeFontEnginePlugin ()=default | |
Constructor. More... | |
FontEngine | getEngineType () const override |
Returns the font engine type that is used by this font engine plugin. More... | |
FontLoaderPtr | getFontLoader (Domain *domain) const override |
Creates a FontLoader object. More... | |
TextShaperPtr | getShaper (const FontRuntime &font) const override |
Creates a TextShaper object. More... | |
void | initialize (const BackendProperties &properties) override |
Initializes the FreeType font backend with the given properties. More... | |
Public Member Functions inherited from kanzi::Module | |
virtual void | destroy () |
virtual MetaclassContainer | getMetaclassesOverride () |
Module () | |
virtual void | registerDebugRenderingFunctions (DebugRenderRegistry &) |
Register the module debug rendering functions. More... | |
virtual void | registerMetadataOverride (ObjectFactory &) |
Register the rest of module metadata, such as loaders for types in module. More... | |
void | setDomain (Domain *domain) |
Set the domain. More... | |
Static Public Member Functions | |
static void | registerModule (Domain *domain) |
Registers FreeType font engine available to font manager. More... | |
Additional Inherited Members | |
Public Types inherited from kanzi::FontEnginePlugin | |
enum | FontEngine { FontEngine::MockFontEngine, FontEngine::FreeTypeFontEngine, FontEngine::ITypeFontEngine } |
Enumeration for different types of font engine (rasterizer library). More... | |
Public Types inherited from kanzi::Module | |
typedef vector< const Metaclass * > | MetaclassContainer |
typedef MetaclassContainer::iterator | MetaclassIterator |
Static Public Attributes inherited from kanzi::FontEnginePlugin | |
static const string | s_FreeTypeFontEngineName |
Name of the FreeType font engine plugin. More... | |
static const string | s_iTypeFontEngineName |
Name of the iType font engine plugin. More... | |
Protected Member Functions inherited from kanzi::Module | |
virtual | ~Module ()=default |
Destructor. More... | |
Protected Attributes inherited from kanzi::Module | |
Domain * | m_domain |
The domain this module is registered to. More... | |
FreeTypeFontEnginePlugin is the FreeType font engine plugin implementation.
Font engine plugins contain both font loaders for creating FontFile objects and shapers. Kanzi uses the shapers to shape text that uses Fonts from the same plugin.
FreeTypeFontEnginePlugin uses FreeType for rasterizing fonts, Harfbuzz for shaping, ICU bidirectional algorithm and libunibreak for line breaking.
|
explicitdefault |
Constructor.
|
static |
Registers FreeType font engine available to font manager.
domain | The domain to which you want the FreeType font engine module to belong. |
|
overridevirtual |
Returns the font engine type that is used by this font engine plugin.
Implements kanzi::FontEnginePlugin.
|
overridevirtual |
Creates a FontLoader object.
domain | The domain to which you want the FreeType font loader to belong. |
Implements kanzi::FontEnginePlugin.
|
overridevirtual |
Creates a TextShaper object.
font | The Font that the shaper will use. |
Implements kanzi::FontEnginePlugin.
|
overridevirtual |
Initializes the FreeType font backend with the given properties.
properties | The properties with which to initialize the FreeType font backend. |
Implements kanzi::FontEnginePlugin.