2009-10-07 14:13:40 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2012-05-21 11:12:37 +00: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-07 14:13:40 +00:00
|
|
|
|
|
|
|
#ifndef GFX_FT2FONTLIST_H
|
|
|
|
#define GFX_FT2FONTLIST_H
|
|
|
|
|
2013-06-23 12:03:39 +00:00
|
|
|
#include "mozilla/MemoryReporting.h"
|
|
|
|
|
2010-07-16 06:03:45 +00:00
|
|
|
#ifdef XP_WIN
|
2009-10-07 14:13:40 +00:00
|
|
|
#include "gfxWindowsPlatform.h"
|
2010-07-16 06:03:45 +00:00
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
2009-10-07 14:13:40 +00:00
|
|
|
#include "gfxPlatformFontList.h"
|
|
|
|
|
2011-09-23 11:15:36 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
class FontListEntry;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
using mozilla::dom::FontListEntry;
|
|
|
|
|
|
|
|
class FontNameCache;
|
2011-09-23 11:16:13 +00:00
|
|
|
typedef struct FT_FaceRec_* FT_Face;
|
2013-06-25 08:14:03 +00:00
|
|
|
class nsZipArchive;
|
2011-09-23 11:16:13 +00:00
|
|
|
|
|
|
|
class FT2FontEntry : public gfxFontEntry
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
FT2FontEntry(const nsAString& aFaceName) :
|
2013-06-25 08:14:03 +00:00
|
|
|
gfxFontEntry(aFaceName),
|
|
|
|
mFTFace(nullptr),
|
|
|
|
mFontFace(nullptr),
|
|
|
|
mFTFontIndex(0)
|
2011-09-23 11:16:13 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
~FT2FontEntry();
|
|
|
|
|
|
|
|
const nsString& GetName() const {
|
|
|
|
return Name();
|
|
|
|
}
|
|
|
|
|
|
|
|
// create a font entry for a downloaded font
|
|
|
|
static FT2FontEntry*
|
|
|
|
CreateFontEntry(const gfxProxyFontEntry &aProxyEntry,
|
2012-08-22 15:56:38 +00:00
|
|
|
const uint8_t *aFontData, uint32_t aLength);
|
2011-09-23 11:16:13 +00:00
|
|
|
|
|
|
|
// create a font entry representing an installed font, identified by
|
|
|
|
// a FontListEntry; the freetype and cairo faces will not be instantiated
|
|
|
|
// until actually needed
|
|
|
|
static FT2FontEntry*
|
|
|
|
CreateFontEntry(const FontListEntry& aFLE);
|
|
|
|
|
2012-05-24 08:15:54 +00:00
|
|
|
// Create a font entry for a given freetype face; if it is an installed font,
|
2013-06-25 08:14:03 +00:00
|
|
|
// also record the filename and index.
|
2013-07-31 15:44:31 +00:00
|
|
|
// aFontData (if non-nullptr) is NS_Malloc'ed data that aFace depends on,
|
2012-05-24 08:15:54 +00:00
|
|
|
// to be freed after the face is destroyed
|
2011-09-23 11:16:13 +00:00
|
|
|
static FT2FontEntry*
|
2013-06-25 08:14:03 +00:00
|
|
|
CreateFontEntry(FT_Face aFace,
|
|
|
|
const char *aFilename, uint8_t aIndex,
|
2012-05-24 08:15:54 +00:00
|
|
|
const nsAString& aName,
|
2012-08-22 15:56:38 +00:00
|
|
|
const uint8_t *aFontData = nullptr);
|
2011-09-23 11:16:13 +00:00
|
|
|
|
|
|
|
virtual gfxFont *CreateFontInstance(const gfxFontStyle *aFontStyle,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aNeedsBold);
|
2011-09-23 11:16:13 +00:00
|
|
|
|
2013-06-25 08:14:03 +00:00
|
|
|
// Create (if necessary) and return the cairo_font_face for this font.
|
|
|
|
// This may fail and return null, so caller must be prepared to handle this.
|
2011-09-23 11:16:13 +00:00
|
|
|
cairo_font_face_t *CairoFontFace();
|
2013-06-25 08:14:03 +00:00
|
|
|
|
|
|
|
// Create a cairo_scaled_font for this face, with the given style.
|
|
|
|
// This may fail and return null, so caller must be prepared to handle this.
|
2011-09-23 11:16:13 +00:00
|
|
|
cairo_scaled_font_t *CreateScaledFont(const gfxFontStyle *aStyle);
|
|
|
|
|
2014-01-29 07:39:01 +00:00
|
|
|
nsresult ReadCMAP(FontInfoData *aFontInfoData = nullptr);
|
2013-05-16 16:29:20 +00:00
|
|
|
|
2013-06-25 08:14:03 +00:00
|
|
|
virtual hb_blob_t* GetFontTable(uint32_t aTableTag) MOZ_OVERRIDE;
|
|
|
|
|
2013-05-16 16:29:20 +00:00
|
|
|
virtual nsresult CopyFontTable(uint32_t aTableTag,
|
|
|
|
FallibleTArray<uint8_t>& aBuffer) MOZ_OVERRIDE;
|
2011-09-23 11:16:13 +00:00
|
|
|
|
2012-05-25 14:03:42 +00:00
|
|
|
// Check for various kinds of brokenness, and set flags on the entry
|
|
|
|
// accordingly so that we avoid using bad font tables
|
2012-12-19 09:42:25 +00:00
|
|
|
void CheckForBrokenFont(gfxFontFamily *aFamily);
|
2012-05-25 14:03:42 +00:00
|
|
|
|
2013-10-15 02:19:47 +00:00
|
|
|
virtual void AddSizeOfExcludingThis(mozilla::MallocSizeOf aMallocSizeOf,
|
|
|
|
FontListSizes* aSizes) const;
|
|
|
|
virtual void AddSizeOfIncludingThis(mozilla::MallocSizeOf aMallocSizeOf,
|
|
|
|
FontListSizes* aSizes) const;
|
2012-03-27 21:38:39 +00:00
|
|
|
|
2011-09-23 11:16:13 +00:00
|
|
|
FT_Face mFTFace;
|
|
|
|
cairo_font_face_t *mFontFace;
|
|
|
|
|
|
|
|
nsCString mFilename;
|
2013-06-25 08:14:03 +00:00
|
|
|
uint8_t mFTFontIndex;
|
2011-09-23 11:16:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class FT2FontFamily : public gfxFontFamily
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
FT2FontFamily(const nsAString& aName) :
|
|
|
|
gfxFontFamily(aName) { }
|
|
|
|
|
|
|
|
// Append this family's faces to the IPC fontlist
|
|
|
|
void AddFacesToFontList(InfallibleTArray<FontListEntry>* aFontList);
|
|
|
|
};
|
2009-10-07 14:13:40 +00:00
|
|
|
|
|
|
|
class gfxFT2FontList : public gfxPlatformFontList
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
gfxFT2FontList();
|
|
|
|
|
2012-12-19 09:42:25 +00:00
|
|
|
virtual gfxFontFamily* GetDefaultFont(const gfxFontStyle* aStyle);
|
2009-10-07 14:13:40 +00:00
|
|
|
|
|
|
|
virtual gfxFontEntry* LookupLocalFont(const gfxProxyFontEntry *aProxyEntry,
|
|
|
|
const nsAString& aFontName);
|
|
|
|
|
|
|
|
virtual gfxFontEntry* MakePlatformFont(const gfxProxyFontEntry *aProxyEntry,
|
2012-08-22 15:56:38 +00:00
|
|
|
const uint8_t *aFontData,
|
|
|
|
uint32_t aLength);
|
2009-10-07 14:13:40 +00:00
|
|
|
|
2011-09-23 11:15:36 +00:00
|
|
|
void GetFontList(InfallibleTArray<FontListEntry>* retValue);
|
|
|
|
|
|
|
|
static gfxFT2FontList* PlatformFontList() {
|
|
|
|
return static_cast<gfxFT2FontList*>(gfxPlatformFontList::PlatformFontList());
|
|
|
|
}
|
|
|
|
|
2009-10-07 14:13:40 +00:00
|
|
|
protected:
|
2010-11-08 11:02:27 +00:00
|
|
|
virtual nsresult InitFontList();
|
2009-10-07 14:13:40 +00:00
|
|
|
|
2011-09-23 11:15:36 +00:00
|
|
|
void AppendFaceFromFontListEntry(const FontListEntry& aFLE,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool isStdFile);
|
2011-09-23 11:15:36 +00:00
|
|
|
|
2013-06-25 08:14:03 +00:00
|
|
|
void AppendFacesFromFontFile(const nsCString& aFileName,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool isStdFile = false,
|
2012-07-30 14:20:58 +00:00
|
|
|
FontNameCache *aCache = nullptr);
|
2011-09-23 11:15:36 +00:00
|
|
|
|
2013-06-25 08:14:03 +00:00
|
|
|
void AppendFacesFromOmnijarEntry(nsZipArchive *aReader,
|
|
|
|
const nsCString& aEntryName,
|
|
|
|
FontNameCache *aCache,
|
|
|
|
bool aJarChanged);
|
|
|
|
|
|
|
|
void AppendFacesFromCachedFaceList(const nsCString& aFileName,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool isStdFile,
|
2013-06-25 08:14:03 +00:00
|
|
|
const nsCString& aFaceList);
|
|
|
|
|
|
|
|
void AddFaceToList(const nsCString& aEntryName, uint32_t aIndex,
|
|
|
|
bool aStdFile, FT_Face aFace, nsCString& aFaceList);
|
2011-09-23 11:15:36 +00:00
|
|
|
|
2009-10-07 14:13:40 +00:00
|
|
|
void FindFonts();
|
2012-10-03 19:27:25 +00:00
|
|
|
|
2013-06-25 08:14:03 +00:00
|
|
|
void FindFontsInOmnijar(FontNameCache *aCache);
|
|
|
|
|
2012-10-03 19:27:25 +00:00
|
|
|
#ifdef ANDROID
|
|
|
|
void FindFontsInDir(const nsCString& aDir, FontNameCache* aFNC);
|
|
|
|
#endif
|
2009-10-07 14:13:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* GFX_FT2FONTLIST_H */
|