Kaydet (Commit) bcfa2ea2 authored tarafından Chris Sherlock's avatar Chris Sherlock

vcl: tab cleanup of vcl/inc/impfont.hxx

Change-Id: I54f669cd4ba472744f013f157baa035519d052bf
üst f33002aa
...@@ -139,22 +139,15 @@ public: ...@@ -139,22 +139,15 @@ public:
meAntiAlias(ANTIALIAS_DONTKNOW), meAntiAlias(ANTIALIAS_DONTKNOW),
meAutoHint(AUTOHINT_DONTKNOW), meAutoHint(AUTOHINT_DONTKNOW),
meHinting(HINTING_DONTKNOW), meHinting(HINTING_DONTKNOW),
meHintStyle(HINT_SLIGHT) meHintStyle(HINT_SLIGHT) {}
{} virtual ~ImplFontOptions() {}
virtual ~ImplFontOptions()
{} FontAutoHint GetUseAutoHint() const { return meAutoHint; }
FontAutoHint GetUseAutoHint() const FontHintStyle GetHintStyle() const { return meHintStyle; }
{ return meAutoHint; } bool DontUseEmbeddedBitmaps() const { return meEmbeddedBitmap == EMBEDDEDBITMAP_FALSE; }
FontHintStyle GetHintStyle() const bool DontUseAntiAlias() const { return meAntiAlias == ANTIALIAS_FALSE; }
{ return meHintStyle; } bool DontUseHinting() const { return (meHinting == HINTING_FALSE) || (GetHintStyle() == HINT_NONE); }
bool DontUseEmbeddedBitmaps() const virtual void* GetPattern(void * /*pFace*/, bool /*bEmbolden*/, bool /*bVerticalMetrics*/) const { return NULL; }
{ return meEmbeddedBitmap == EMBEDDEDBITMAP_FALSE; }
bool DontUseAntiAlias() const
{ return meAntiAlias == ANTIALIAS_FALSE; }
bool DontUseHinting() const
{ return (meHinting == HINTING_FALSE) || (GetHintStyle() == HINT_NONE); }
virtual void *GetPattern(void * /*pFace*/, bool /*bEmbolden*/, bool /*bVerticalMetrics*/) const
{ return NULL; }
}; };
// - ImplFontCharMap - // - ImplFontCharMap -
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment