Documentation
Public Member Functions |
Protected Member Functions |
Protected Attributes |
Friends |
List of all members
Urho3D::FontFace Class Referenceabstract
Font face description. More...
#include <FontFace.h>
Inheritance diagram for Urho3D::FontFace:
Collaboration diagram for Urho3D::FontFace:
Public Member Functions | |
FontFace (Font *font) | |
Construct. | |
~FontFace () | |
Destruct. | |
virtual bool | Load (const unsigned char *fontData, unsigned fontDataSize, int pointSize)=0 |
Load font face. | |
virtual const FontGlyph * | GetGlyph (unsigned c) |
Return pointer to the glyph structure corresponding to a character. Return null if glyph not found. | |
virtual bool | HasMutableGlyphs () const |
Return if font face uses mutable glyphs. | |
short | 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. | |
int | GetPointSize () const |
Return point size. | |
int | 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. | |
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 |
Return reference count. | |
int | WeakRefs () const |
Return weak reference count. | |
RefCount * | RefCountPtr () |
Return pointer to the reference count structure. | |
Protected Member Functions | |
SharedPtr< Texture2D > | CreateFaceTexture () |
Create a texture for font rendering. | |
SharedPtr< Texture2D > | LoadFaceTexture (SharedPtr< Image > image) |
Load font face texture from image resource. | |
Protected Attributes | |
Font * | font_ |
Parent font. | |
HashMap< unsigned, FontGlyph > | glyphMapping_ |
Glyph mapping. | |
HashMap< unsigned, short > | kerningMapping_ |
Kerning mapping. | |
Vector< SharedPtr< Texture2D > > | textures_ |
Glyph texture pages. | |
int | pointSize_ |
Point size. | |
int | rowHeight_ |
Row height. | |
Friends | |
class | Font |
class | FontFaceBitmap |
Detailed Description
Font face description.
The documentation for this class was generated from the following files:
- /home/travis/build/urho3d/Urho3D/Source/Urho3D/UI/FontFace.h
- /home/travis/build/urho3d/Urho3D/Source/Urho3D/UI/FontFace.cpp