diff options
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/font.hxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/vcl/font.hxx b/include/vcl/font.hxx index 04052ad3f47a..c8a2c2df9037 100644 --- a/include/vcl/font.hxx +++ b/include/vcl/font.hxx @@ -78,6 +78,7 @@ public: long GetWidth() const; void SetFamily( FontFamily ); + FontFamily GetFamily(); FontFamily GetFamily() const; void SetCharSet( rtl_TextEncoding ); rtl_TextEncoding GetCharSet() const; @@ -94,6 +95,7 @@ public: void SetCJKContextLanguage( LanguageType ); LanguageType GetCJKContextLanguage() const; void SetPitch( FontPitch ePitch ); + FontPitch GetPitch(); FontPitch GetPitch() const; void SetOrientation( short nLineOrientation ); @@ -105,10 +107,13 @@ public: bool IsKerning() const; void SetWeight( FontWeight ); + FontWeight GetWeight(); FontWeight GetWeight() const; void SetWidthType( FontWidth ); + FontWidth GetWidthType(); FontWidth GetWidthType() const; void SetItalic( FontItalic ); + FontItalic GetItalic(); FontItalic GetItalic() const; void SetOutline( bool bOutline ); bool IsOutline() const; |