2018-11-30 22:52:05 +03: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/. */
|
2008-08-07 00:48:55 +04:00
|
|
|
|
2009-10-31 02:13:41 +03:00
|
|
|
#ifndef GFX_FT2FONTS_H
|
|
|
|
#define GFX_FT2FONTS_H
|
2008-08-07 00:48:55 +04:00
|
|
|
|
2013-06-23 16:03:39 +04:00
|
|
|
#include "mozilla/MemoryReporting.h"
|
2008-08-07 00:48:55 +04:00
|
|
|
#include "cairo.h"
|
|
|
|
#include "gfxTypes.h"
|
|
|
|
#include "gfxFont.h"
|
2009-10-31 02:13:41 +03:00
|
|
|
#include "gfxFT2FontBase.h"
|
2008-08-07 00:48:55 +04:00
|
|
|
#include "gfxContext.h"
|
|
|
|
#include "gfxFontUtils.h"
|
2009-01-23 09:24:29 +03:00
|
|
|
#include "gfxUserFontSet.h"
|
2008-08-07 00:48:55 +04:00
|
|
|
|
2011-09-23 15:16:13 +04:00
|
|
|
class FT2FontEntry;
|
2008-08-07 00:48:55 +04:00
|
|
|
|
2009-10-31 02:13:41 +03:00
|
|
|
class gfxFT2Font : public gfxFT2FontBase {
|
2008-08-07 00:48:55 +04:00
|
|
|
public: // new functions
|
2019-05-01 11:47:10 +03:00
|
|
|
gfxFT2Font(const RefPtr<mozilla::gfx::UnscaledFontFreeType>& aUnscaledFont,
|
2019-09-16 10:44:20 +03:00
|
|
|
cairo_scaled_font_t* aCairoFont, FT_Face aFTFace,
|
|
|
|
FT2FontEntry* aFontEntry, const gfxFontStyle* aFontStyle);
|
2008-08-07 00:48:55 +04:00
|
|
|
virtual ~gfxFT2Font();
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2019-05-01 11:47:10 +03:00
|
|
|
FT2FontEntry* GetFontEntry();
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2019-04-11 15:36:51 +03:00
|
|
|
already_AddRefed<mozilla::gfx::ScaledFont> GetScaledFont(
|
2019-05-01 11:47:10 +03:00
|
|
|
DrawTarget* aTarget) override;
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2019-04-11 15:36:51 +03:00
|
|
|
void AddSizeOfExcludingThis(mozilla::MallocSizeOf aMallocSizeOf,
|
2019-05-01 11:47:10 +03:00
|
|
|
FontCacheSizes* aSizes) const override;
|
2019-04-11 15:36:51 +03:00
|
|
|
void AddSizeOfIncludingThis(mozilla::MallocSizeOf aMallocSizeOf,
|
2019-05-01 11:47:10 +03:00
|
|
|
FontCacheSizes* aSizes) const override;
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2017-07-27 06:24:48 +03:00
|
|
|
protected:
|
2009-09-11 00:52:40 +04:00
|
|
|
struct CachedGlyphData {
|
|
|
|
CachedGlyphData() : glyphIndex(0xffffffffU) {}
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2018-03-27 17:51:32 +03:00
|
|
|
explicit CachedGlyphData(uint32_t gid) : glyphIndex(gid) {}
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t glyphIndex;
|
|
|
|
int32_t lsbDelta;
|
|
|
|
int32_t rsbDelta;
|
|
|
|
int32_t xAdvance;
|
2009-09-11 00:52:40 +04:00
|
|
|
};
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2019-05-01 11:47:10 +03:00
|
|
|
const CachedGlyphData* GetGlyphDataForChar(FT_Face aFace, uint32_t ch) {
|
|
|
|
CharGlyphMapEntryType* entry = mCharGlyphCache.PutEntry(ch);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2012-07-30 18:20:58 +04:00
|
|
|
if (!entry) return nullptr;
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2019-09-10 16:51:09 +03:00
|
|
|
if (entry->GetData().glyphIndex == 0xffffffffU) {
|
2009-09-11 00:52:40 +04:00
|
|
|
// this is a new entry, fill it
|
2019-09-10 16:51:09 +03:00
|
|
|
FillGlyphDataForChar(aFace, ch, entry->GetModifiableData());
|
2009-09-11 00:52:40 +04:00
|
|
|
}
|
|
|
|
|
2019-09-10 16:51:09 +03:00
|
|
|
return &entry->GetData();
|
2018-11-30 13:46:48 +03:00
|
|
|
}
|
|
|
|
|
2019-05-01 11:47:10 +03:00
|
|
|
bool ShapeText(DrawTarget* aDrawTarget, const char16_t* aText,
|
2017-04-03 19:49:17 +03:00
|
|
|
uint32_t aOffset, uint32_t aLength, Script aScript,
|
|
|
|
bool aVertical, RoundingFlags aRounding,
|
2019-05-01 11:47:10 +03:00
|
|
|
gfxShapedText* aShapedText) override;
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2019-05-01 11:47:10 +03:00
|
|
|
void FillGlyphDataForChar(FT_Face face, uint32_t ch, CachedGlyphData* gd);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2019-05-01 11:47:10 +03:00
|
|
|
void AddRange(const char16_t* aText, uint32_t aOffset, uint32_t aLength,
|
|
|
|
gfxShapedText* aShapedText);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2009-09-11 00:52:40 +04:00
|
|
|
typedef nsBaseHashtableET<nsUint32HashKey, CachedGlyphData>
|
|
|
|
CharGlyphMapEntryType;
|
|
|
|
typedef nsTHashtable<CharGlyphMapEntryType> CharGlyphMap;
|
|
|
|
CharGlyphMap mCharGlyphCache;
|
2019-09-16 10:44:20 +03:00
|
|
|
FT_Face mFTFace;
|
2008-08-07 00:48:55 +04:00
|
|
|
};
|
|
|
|
|
2009-10-31 02:13:41 +03:00
|
|
|
#endif /* GFX_FT2FONTS_H */
|