Free type font face description. More...

#include <Urho3D/UI/FontFaceFreeType.h>

Inheritance diagram for Urho3D::FontFaceFreeType:
[legend]
Collaboration diagram for Urho3D::FontFaceFreeType:
[legend]

Public Member Functions

 FontFaceFreeType (Font *font)
 Construct.
 
 ~FontFaceFreeType () override
 Destruct.
 
bool Load (const unsigned char *fontData, unsigned fontDataSize, float pointSize) override
 Load font face.
 
const FontGlyphGetGlyph (unsigned c) override
 Return pointer to the glyph structure corresponding to a character. Return null if glyph not found.
 
bool HasMutableGlyphs () const override
 Return if font face uses mutable glyphs.
 
- Public Member Functions inherited from Urho3D::FontFace
 FontFace (Font *font)
 Construct.
 
 ~FontFace () override
 Destruct.
 
float GetKerning (unsigned c, unsigned d) const
 Return the kerning for a character and the next character.
 
bool IsDataLost () const
 Return true when one of the texture has a data loss.
 
float GetPointSize () const
 Return point size.
 
float GetRowHeight () const
 Return row height.
 
const Vector< SharedPtr< Texture2D > > & GetTextures () const
 Return textures.
 
- Public Member Functions inherited from Urho3D::RefCounted
 RefCounted ()
 Construct. Allocate the reference count structure and set an initial self weak reference.
 
virtual ~RefCounted ()
 Destruct. Mark as expired and also delete the reference count structure if no outside weak references exist.
 
 RefCounted (const RefCounted &rhs)=delete
 Prevent copy construction.
 
RefCountedoperator= (const RefCounted &rhs)=delete
 Prevent assignment.
 
void AddRef ()
 Increment reference count. Can also be called outside of a SharedPtr for traditional reference counting.
 
void ReleaseRef ()
 Decrement reference count and delete self if no more references. Can also be called outside of a SharedPtr for traditional reference counting.
 
int Refs () const
 
int WeakRefs () const
 
RefCountRefCountPtr ()
 Return pointer to the reference count structure.
 

Private Member Functions

bool SetupNextTexture (int textureWidth, int textureHeight)
 Setup next texture.
 
bool LoadCharGlyph (unsigned charCode, Image *image=nullptr)
 Load char glyph.
 
void BoxFilter (unsigned char *dest, size_t destSize, const unsigned char *src, size_t srcSize)
 Smooth one row of a horizontally oversampled glyph image.
 

Private Attributes

SharedPtr< FreeTypeLibrary > freeType_
 FreeType library.
 
void * face_ {}
 FreeType face. Non-null after creation only in dynamic mode.
 
int loadMode_ {}
 Load mode.
 
bool subpixel_ {}
 Use subpixel glyph positioning?
 
int oversampling_ {}
 Oversampling level.
 
float ascender_ {}
 Ascender.
 
bool hasMutableGlyph_ {}
 Has mutable glyph.
 
AreaAllocator allocator_
 Glyph area allocator.
 

Additional Inherited Members

- Protected Member Functions inherited from Urho3D::FontFace
SharedPtr< Texture2DCreateFaceTexture ()
 Create a texture for font rendering.
 
SharedPtr< Texture2DLoadFaceTexture (const SharedPtr< Image > &image)
 Load font face texture from image resource.
 
- Protected Attributes inherited from Urho3D::FontFace
Fontfont_ {}
 Parent font.
 
HashMap< unsigned, FontGlyphglyphMapping_
 Glyph mapping.
 
HashMap< unsigned, float > kerningMapping_
 Kerning mapping.
 
Vector< SharedPtr< Texture2D > > textures_
 Glyph texture pages.
 
float pointSize_ {}
 Point size.
 
float rowHeight_ {}
 Row height.
 

Detailed Description

Free type font face description.


The documentation for this class was generated from the following files:
  • Source/Urho3D/UI/FontFaceFreeType.h
  • Source/Urho3D/UI/FontFaceFreeType.cpp