2009-10-31 02:13:41 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
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/. */
|
2009-10-31 02:13:41 +03:00
|
|
|
|
|
|
|
#ifndef GFX_FT2FONTBASE_H
|
|
|
|
#define GFX_FT2FONTBASE_H
|
|
|
|
|
|
|
|
#include "cairo.h"
|
|
|
|
#include "gfxContext.h"
|
|
|
|
#include "gfxFont.h"
|
2012-05-17 02:30:10 +04:00
|
|
|
#include "mozilla/gfx/2D.h"
|
2017-04-07 00:41:02 +03:00
|
|
|
#include "mozilla/gfx/UnscaledFontFreeType.h"
|
2017-12-06 16:51:39 +03:00
|
|
|
#include "nsDataHashtable.h"
|
|
|
|
#include "nsHashKeys.h"
|
2009-10-31 02:13:41 +03:00
|
|
|
|
|
|
|
class gfxFT2FontBase : public gfxFont {
|
|
|
|
public:
|
2017-04-07 00:41:02 +03:00
|
|
|
gfxFT2FontBase(const RefPtr<mozilla::gfx::UnscaledFontFreeType>& aUnscaledFont,
|
|
|
|
cairo_scaled_font_t *aScaledFont,
|
2009-10-31 02:13:41 +03:00
|
|
|
gfxFontEntry *aFontEntry,
|
2017-12-06 16:51:39 +03:00
|
|
|
const gfxFontStyle *aFontStyle,
|
|
|
|
bool aEmbolden);
|
2009-10-31 02:13:41 +03:00
|
|
|
virtual ~gfxFT2FontBase();
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t GetGlyph(uint32_t aCharCode);
|
|
|
|
void GetGlyphExtents(uint32_t aGlyph,
|
2009-10-31 02:13:41 +03:00
|
|
|
cairo_text_extents_t* aExtents);
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual uint32_t GetSpaceGlyph() override;
|
|
|
|
virtual bool ProvidesGetGlyph() const override { return true; }
|
2014-11-17 12:59:50 +03:00
|
|
|
virtual uint32_t GetGlyph(uint32_t unicode,
|
2015-03-21 19:28:04 +03:00
|
|
|
uint32_t variation_selector) override;
|
|
|
|
virtual bool ProvidesGlyphWidths() const override { return true; }
|
2014-11-17 12:59:50 +03:00
|
|
|
virtual int32_t GetGlyphWidth(DrawTarget& aDrawTarget,
|
2015-03-21 19:28:04 +03:00
|
|
|
uint16_t aGID) override;
|
2009-10-31 02:13:41 +03:00
|
|
|
|
2015-12-16 00:56:40 +03:00
|
|
|
virtual bool SetupCairoFont(DrawTarget* aDrawTarget) override;
|
2009-10-31 02:13:41 +03:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual FontType GetType() const override { return FONT_TYPE_FT2; }
|
2012-05-17 02:30:10 +04:00
|
|
|
|
2017-12-07 16:22:49 +03:00
|
|
|
static void SetupVarCoords(FT_Face aFace,
|
|
|
|
const nsTArray<gfxFontVariation>& aVariations,
|
|
|
|
nsTArray<FT_Fixed>* aCoords);
|
|
|
|
|
2017-07-27 06:24:48 +03:00
|
|
|
private:
|
|
|
|
uint32_t GetCharExtents(char aChar, cairo_text_extents_t* aExtents);
|
|
|
|
void InitMetrics();
|
|
|
|
|
2009-10-31 02:13:41 +03:00
|
|
|
protected:
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual const Metrics& GetHorizontalMetrics() override;
|
2014-09-30 10:37:40 +04:00
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t mSpaceGlyph;
|
2009-10-31 02:13:41 +03:00
|
|
|
Metrics mMetrics;
|
2017-12-06 16:51:39 +03:00
|
|
|
bool mEmbolden;
|
|
|
|
|
2017-12-06 17:42:42 +03:00
|
|
|
// For variation/multiple-master fonts, this will be an array of the values
|
|
|
|
// for each axis, as specified by mStyle.variationSettings (or the font's
|
|
|
|
// default for axes not present in variationSettings). Values here are in
|
|
|
|
// freetype's 16.16 fixed-point format, and clamped to the valid min/max
|
|
|
|
// range reported by the face.
|
|
|
|
nsTArray<FT_Fixed> mCoords;
|
|
|
|
|
2017-12-06 16:51:39 +03:00
|
|
|
mozilla::UniquePtr<nsDataHashtable<nsUint32HashKey,int32_t>> mGlyphWidths;
|
2009-10-31 02:13:41 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* GFX_FT2FONTBASE_H */
|