diff options
Diffstat (limited to 'guilib/GUIFontManager.h')
-rw-r--r-- | guilib/GUIFontManager.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guilib/GUIFontManager.h b/guilib/GUIFontManager.h index 170f89f199..e0469a9813 100644 --- a/guilib/GUIFontManager.h +++ b/guilib/GUIFontManager.h @@ -46,6 +46,7 @@ struct OrigFontInfo CStdString fileName; RESOLUTION sourceRes; bool preserveAspect; + bool border; }; /*! @@ -62,7 +63,7 @@ public: void Unload(const CStdString& strFontName); void LoadFonts(const CStdString& strFontSet); - CGUIFont* LoadTTF(const CStdString& strFontName, const CStdString& strFilename, color_t textColor, color_t shadowColor, const int iSize, const int iStyle, float lineSpacing = 1.0f, float aspect = 1.0f, RESOLUTION res = RES_INVALID, bool preserveAspect = false); + CGUIFont* LoadTTF(const CStdString& strFontName, const CStdString& strFilename, color_t textColor, color_t shadowColor, const int iSize, const int iStyle, bool border = false, float lineSpacing = 1.0f, float aspect = 1.0f, RESOLUTION res = RES_INVALID, bool preserveAspect = false); CGUIFont* GetFont(const CStdString& strFontName, bool fallback = true); void Clear(); void FreeFontFile(CGUIFontTTFBase *pFont); |