1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef MOZILLA_GFX_SCALEDFONTFONTCONFIG_H_
8 #define MOZILLA_GFX_SCALEDFONTFONTCONFIG_H_
10 #include "ScaledFontBase.h"
17 class NativeFontResourceFontconfig
;
18 class UnscaledFontFontconfig
;
20 class ScaledFontFontconfig
: public ScaledFontBase
{
22 MOZ_DECLARE_REFCOUNTED_VIRTUAL_TYPENAME(ScaledFontFontconfig
, override
)
23 ScaledFontFontconfig(RefPtr
<SharedFTFace
>&& aFace
, FcPattern
* aPattern
,
24 const RefPtr
<UnscaledFont
>& aUnscaledFont
, Float aSize
);
26 FontType
GetType() const override
{ return FontType::FONTCONFIG
; }
29 SkTypeface
* CreateSkTypeface() override
;
30 void SetupSkFontDrawOptions(SkFont
& aFont
) override
;
33 AntialiasMode
GetDefaultAAMode() override
;
35 bool UseSubpixelPosition() const;
37 bool CanSerialize() override
{ return true; }
39 bool GetFontInstanceData(FontInstanceDataOutput aCb
, void* aBaton
) override
;
41 bool GetWRFontInstanceOptions(
42 Maybe
<wr::FontInstanceOptions
>* aOutOptions
,
43 Maybe
<wr::FontInstancePlatformOptions
>* aOutPlatformOptions
,
44 std::vector
<FontVariation
>* aOutVariations
) override
;
46 bool HasVariationSettings() override
;
49 #ifdef USE_CAIRO_SCALED_FONT
50 cairo_font_face_t
* CreateCairoFontFace(
51 cairo_font_options_t
* aFontOptions
) override
;
55 friend class NativeFontResourceFontconfig
;
56 friend class UnscaledFontFontconfig
;
61 EMBEDDED_BITMAP
= 1 << 1,
63 HINT_METRICS
= 1 << 3,
64 LCD_VERTICAL
= 1 << 4,
65 SUBPIXEL_BGR
= 1 << 5,
68 explicit InstanceData(FcPattern
* aPattern
);
69 InstanceData(const wr::FontInstanceOptions
* aOptions
,
70 const wr::FontInstancePlatformOptions
* aPlatformOptions
);
72 void SetupFontOptions(cairo_font_options_t
* aFontOptions
,
74 unsigned int* aOutSynthFlags
) const;
77 AntialiasMode mAntialias
;
82 ScaledFontFontconfig(RefPtr
<SharedFTFace
>&& aFace
,
83 const InstanceData
& aInstanceData
,
84 const RefPtr
<UnscaledFont
>& aUnscaledFont
, Float aSize
);
86 RefPtr
<SharedFTFace
> mFace
;
87 InstanceData mInstanceData
;
91 } // namespace mozilla
93 #endif /* MOZILLA_GFX_SCALEDFONTFONTCONFIG_H_ */