ItypeFontEnginePlugin is the IType font engine plugin implementation. More...
#include <kanzi/plugins/itype/itype_plugin.hpp>
Public Member Functions | |
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 iType font backend with the given properties. More... | |
ItypeFontEnginePlugin ()=default | |
Constructor. 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 iType 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... | |
ItypeFontEnginePlugin is the IType 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.
ItypeFontEnginePlugin uses IType for rasterizing fonts and WTShaper for shaping.
|
explicitdefault |
Constructor.
|
static |
Registers iType font engine available to font manager.
domain | The domain to which you want the iType 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 iType 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 iType font backend with the given properties.
properties | The properties with which to initialize the iType font backend. |
Implements kanzi::FontEnginePlugin.