2011-11-18 08:00:37 +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-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:
|
2014-02-24 17:23:37 +04:00
|
|
|
MOZ_DECLARE_REFCOUNTED_VIRTUAL_TYPENAME(ScaledFontWin)
|
2012-03-05 04:12:15 +04:00
|
|
|
ScaledFontWin(LOGFONT* aFont, Float aSize);
|
2011-11-18 08:00:37 +04:00
|
|
|
|
2014-01-10 23:06:16 +04:00
|
|
|
virtual FontType GetType() const { return FontType::GDI; }
|
2016-01-05 13:08:58 +03:00
|
|
|
|
|
|
|
bool GetFontFileData(FontFileDataOutput aDataCallback, void *aBaton) override;
|
|
|
|
|
2016-04-22 15:23:25 +03:00
|
|
|
virtual bool GetFontDescriptor(FontDescriptorOutput aCb, void* aBaton) override;
|
2017-01-04 22:01:12 +03:00
|
|
|
|
|
|
|
static already_AddRefed<ScaledFont>
|
|
|
|
CreateFromFontDescriptor(const uint8_t* aData, uint32_t aDataLength, Float aSize);
|
|
|
|
|
2016-09-03 01:00:29 +03:00
|
|
|
virtual AntialiasMode GetDefaultAAMode() override;
|
2016-04-22 15:23:25 +03:00
|
|
|
|
2012-01-09 22:54:44 +04:00
|
|
|
#ifdef USE_SKIA
|
|
|
|
virtual SkTypeface* GetSkTypeface();
|
|
|
|
#endif
|
2016-01-05 13:08:56 +03:00
|
|
|
|
|
|
|
protected:
|
|
|
|
#ifdef USE_CAIRO_SCALED_FONT
|
|
|
|
cairo_font_face_t* GetCairoFontFace() override;
|
|
|
|
#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
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* MOZILLA_GFX_SCALEDFONTWIN_H_ */
|