2017-10-28 02:10:06 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
2012-05-21 15:12:37 +04:00
|
|
|
* 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 08:00:37 +04:00
|
|
|
|
|
|
|
#ifndef MOZILLA_GFX_SCALEDFONTWIN_H_
|
|
|
|
#define MOZILLA_GFX_SCALEDFONTWIN_H_
|
|
|
|
|
2012-01-09 22:54:44 +04:00
|
|
|
#include "ScaledFontBase.h"
|
2016-10-25 05:40:59 +03:00
|
|
|
#include <windows.h>
|
2016-01-05 13:08:56 +03:00
|
|
|
|
2011-11-18 08:00:37 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace gfx {
|
|
|
|
|
2012-01-09 22:54:44 +04:00
|
|
|
class ScaledFontWin : public ScaledFontBase {
|
2011-11-18 08:00:37 +04:00
|
|
|
public:
|
2017-04-14 21:11:00 +03:00
|
|
|
MOZ_DECLARE_REFCOUNTED_VIRTUAL_TYPENAME(ScaledFontWin, override)
|
2017-04-07 00:41:02 +03:00
|
|
|
ScaledFontWin(const LOGFONT* aFont, const RefPtr<UnscaledFont>& aUnscaledFont,
|
|
|
|
Float aSize);
|
2011-11-18 08:00:37 +04:00
|
|
|
|
2017-04-14 21:11:00 +03:00
|
|
|
FontType GetType() const override { return FontType::GDI; }
|
2016-01-05 13:08:58 +03:00
|
|
|
|
2017-03-30 01:22:06 +03:00
|
|
|
bool GetFontInstanceData(FontInstanceDataOutput aCb, void* aBaton) override;
|
|
|
|
|
2017-04-14 21:11:00 +03:00
|
|
|
AntialiasMode GetDefaultAAMode() override;
|
2016-04-22 15:23:25 +03:00
|
|
|
|
2012-01-09 22:54:44 +04:00
|
|
|
#ifdef USE_SKIA
|
2018-08-23 21:58:21 +03:00
|
|
|
SkTypeface* CreateSkTypeface() override;
|
2012-01-09 22:54:44 +04:00
|
|
|
#endif
|
2016-01-05 13:08:56 +03:00
|
|
|
|
|
|
|
protected:
|
|
|
|
#ifdef USE_CAIRO_SCALED_FONT
|
2019-10-02 00:56:30 +03:00
|
|
|
cairo_font_face_t* CreateCairoFontFace(
|
|
|
|
cairo_font_options_t* aFontOptions) override;
|
2016-01-05 13:08:56 +03:00
|
|
|
#endif
|
|
|
|
|
2011-11-18 08:00:37 +04:00
|
|
|
private:
|
2012-01-09 22:54:44 +04:00
|
|
|
#ifdef USE_SKIA
|
2011-11-18 08:00:37 +04:00
|
|
|
friend class DrawTargetSkia;
|
2012-01-09 22:54:44 +04:00
|
|
|
#endif
|
2012-03-05 04:12:15 +04:00
|
|
|
LOGFONT mLogFont;
|
2011-11-18 08:00:37 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace gfx
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif /* MOZILLA_GFX_SCALEDFONTWIN_H_ */
|