2011-06-24 21:41:16 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
2012-05-21 15:12:37 +04: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-05-26 23:41:33 +04:00
|
|
|
|
2011-06-24 21:41:16 +04:00
|
|
|
#ifndef MOZILLA_GFX_SCALEDFONTDWRITE_H_
|
|
|
|
#define MOZILLA_GFX_SCALEDFONTDWRITE_H_
|
2011-05-26 23:41:33 +04:00
|
|
|
|
2011-06-24 21:41:16 +04:00
|
|
|
#include <dwrite.h>
|
2012-08-09 00:17:04 +04:00
|
|
|
#include "ScaledFontBase.h"
|
2011-05-26 23:41:33 +04:00
|
|
|
|
2012-03-29 22:53:44 +04:00
|
|
|
struct ID2D1GeometrySink;
|
|
|
|
|
2011-06-24 21:41:16 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace gfx {
|
2011-05-26 23:41:33 +04:00
|
|
|
|
2013-01-11 13:43:29 +04:00
|
|
|
class ScaledFontDWrite MOZ_FINAL : public ScaledFontBase
|
2011-06-24 21:41:16 +04:00
|
|
|
{
|
|
|
|
public:
|
2014-02-24 17:23:37 +04:00
|
|
|
MOZ_DECLARE_REFCOUNTED_VIRTUAL_TYPENAME(ScaledFontDwrite)
|
2011-06-24 21:41:16 +04:00
|
|
|
ScaledFontDWrite(IDWriteFontFace *aFont, Float aSize)
|
|
|
|
: mFontFace(aFont)
|
2012-08-09 00:17:04 +04:00
|
|
|
, ScaledFontBase(aSize)
|
2011-06-24 21:41:16 +04:00
|
|
|
{}
|
2012-09-24 19:02:49 +04:00
|
|
|
ScaledFontDWrite(uint8_t *aData, uint32_t aSize, uint32_t aIndex, Float aGlyphSize);
|
2011-05-26 23:41:33 +04:00
|
|
|
|
2014-01-10 23:06:16 +04:00
|
|
|
virtual FontType GetType() const { return FontType::DWRITE; }
|
2011-05-26 23:41:33 +04:00
|
|
|
|
2011-06-24 21:41:16 +04:00
|
|
|
virtual TemporaryRef<Path> GetPathForGlyphs(const GlyphBuffer &aBuffer, const DrawTarget *aTarget);
|
2013-12-13 02:37:00 +04:00
|
|
|
virtual void CopyGlyphsToBuilder(const GlyphBuffer &aBuffer, PathBuilder *aBuilder, BackendType aBackendType, const Matrix *aTransformHint);
|
2011-05-26 23:41:33 +04:00
|
|
|
|
2012-03-29 22:53:44 +04:00
|
|
|
void CopyGlyphsToSink(const GlyphBuffer &aBuffer, ID2D1GeometrySink *aSink);
|
|
|
|
|
2012-09-24 19:02:49 +04:00
|
|
|
virtual bool GetFontFileData(FontFileDataOutput aDataCallback, void *aBaton);
|
|
|
|
|
2012-11-23 05:53:12 +04:00
|
|
|
virtual AntialiasMode GetDefaultAAMode();
|
|
|
|
|
2012-08-09 00:17:04 +04:00
|
|
|
#ifdef USE_SKIA
|
|
|
|
virtual SkTypeface* GetSkTypeface()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(false, "Skia and DirectWrite do not mix");
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-06-24 21:41:16 +04:00
|
|
|
RefPtr<IDWriteFontFace> mFontFace;
|
2011-05-26 23:41:33 +04:00
|
|
|
};
|
|
|
|
|
2012-03-19 23:20:17 +04:00
|
|
|
class GlyphRenderingOptionsDWrite : public GlyphRenderingOptions
|
|
|
|
{
|
|
|
|
public:
|
2014-02-24 17:23:37 +04:00
|
|
|
MOZ_DECLARE_REFCOUNTED_VIRTUAL_TYPENAME(GlyphRenderingOptionsDWrite)
|
2012-03-19 23:20:17 +04:00
|
|
|
GlyphRenderingOptionsDWrite(IDWriteRenderingParams *aParams)
|
|
|
|
: mParams(aParams)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-01-10 23:06:16 +04:00
|
|
|
virtual FontType GetType() const { return FontType::DWRITE; }
|
2012-03-19 23:20:17 +04:00
|
|
|
|
|
|
|
private:
|
|
|
|
friend class DrawTargetD2D;
|
2013-07-17 16:12:22 +04:00
|
|
|
friend class DrawTargetD2D1;
|
2012-03-19 23:20:17 +04:00
|
|
|
|
|
|
|
RefPtr<IDWriteRenderingParams> mParams;
|
|
|
|
};
|
|
|
|
|
2011-06-24 21:41:16 +04:00
|
|
|
}
|
2011-05-26 23:41:33 +04:00
|
|
|
}
|
|
|
|
|
2011-06-24 21:41:16 +04:00
|
|
|
#endif /* MOZILLA_GFX_SCALEDFONTDWRITE_H_ */
|