2011-11-18 04:00:37 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
2012-05-21 11:12:37 +00:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2011-11-18 04:00:37 +00:00
|
|
|
|
|
|
|
#include "ScaledFontWin.h"
|
2012-04-13 02:10:22 +00:00
|
|
|
#include "ScaledFontBase.h"
|
2012-01-09 18:54:44 +00:00
|
|
|
|
|
|
|
#ifdef USE_SKIA
|
2011-11-18 04:00:37 +00:00
|
|
|
#include "skia/SkTypeface_win.h"
|
2012-01-09 18:54:44 +00:00
|
|
|
#endif
|
2011-11-18 04:00:37 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace gfx {
|
|
|
|
|
2012-03-05 00:12:15 +00:00
|
|
|
ScaledFontWin::ScaledFontWin(LOGFONT* aFont, Float aSize)
|
2012-01-09 18:54:44 +00:00
|
|
|
: ScaledFontBase(aSize)
|
2012-03-05 00:12:15 +00:00
|
|
|
, mLogFont(*aFont)
|
2011-11-18 04:00:37 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-01-09 18:54:44 +00:00
|
|
|
#ifdef USE_SKIA
|
|
|
|
SkTypeface* ScaledFontWin::GetSkTypeface()
|
|
|
|
{
|
|
|
|
if (!mTypeface) {
|
2012-04-13 02:10:22 +00:00
|
|
|
mTypeface = SkCreateTypefaceFromLOGFONT(mLogFont);
|
2012-01-09 18:54:44 +00:00
|
|
|
}
|
|
|
|
return mTypeface;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2011-11-18 04:00:37 +00:00
|
|
|
}
|
|
|
|
}
|