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
|
|
|
|
|
|
|
#ifndef MOZILLA_GFX_SCALEDFONTWIN_H_
|
|
|
|
#define MOZILLA_GFX_SCALEDFONTWIN_H_
|
|
|
|
|
2012-01-09 18:54:44 +00:00
|
|
|
#include "ScaledFontBase.h"
|
2012-03-05 00:12:15 +00:00
|
|
|
#include <windows.h>
|
2011-11-18 04:00:37 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace gfx {
|
|
|
|
|
2012-01-09 18:54:44 +00:00
|
|
|
class ScaledFontWin : public ScaledFontBase
|
2011-11-18 04:00:37 +00:00
|
|
|
{
|
|
|
|
public:
|
2012-03-05 00:12:15 +00:00
|
|
|
ScaledFontWin(LOGFONT* aFont, Float aSize);
|
2011-11-18 04:00:37 +00:00
|
|
|
|
2014-01-10 19:06:16 +00:00
|
|
|
virtual FontType GetType() const { return FontType::GDI; }
|
2012-01-09 18:54:44 +00:00
|
|
|
#ifdef USE_SKIA
|
|
|
|
virtual SkTypeface* GetSkTypeface();
|
|
|
|
#endif
|
2011-11-18 04:00:37 +00:00
|
|
|
private:
|
2012-01-09 18:54:44 +00:00
|
|
|
#ifdef USE_SKIA
|
2011-11-18 04:00:37 +00:00
|
|
|
friend class DrawTargetSkia;
|
2012-01-09 18:54:44 +00:00
|
|
|
#endif
|
2012-03-05 00:12:15 +00:00
|
|
|
LOGFONT mLogFont;
|
2011-11-18 04:00:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* MOZILLA_GFX_SCALEDFONTWIN_H_ */
|