2005-11-08 20:06:16 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2012-05-21 12:12:37 +01: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/. */
|
2005-11-08 20:06:16 +00:00
|
|
|
|
|
|
|
#ifndef GFX_PANGOFONTS_H
|
|
|
|
#define GFX_PANGOFONTS_H
|
|
|
|
|
2007-01-27 01:48:33 +00:00
|
|
|
#include "cairo.h"
|
2005-11-08 20:06:16 +00:00
|
|
|
#include "gfxTypes.h"
|
2014-09-16 10:58:12 +01:00
|
|
|
#include "gfxTextRun.h"
|
2005-11-08 20:06:16 +00:00
|
|
|
|
2008-11-07 15:21:34 +13:00
|
|
|
#include "nsAutoRef.h"
|
2009-01-18 21:14:14 +01:00
|
|
|
#include "nsTArray.h"
|
2008-11-07 15:21:34 +13:00
|
|
|
|
2005-11-08 20:06:16 +00:00
|
|
|
#include <pango/pango.h>
|
|
|
|
|
2010-11-08 11:44:50 +13:00
|
|
|
class gfxFcFontSet;
|
|
|
|
class gfxFcFont;
|
2008-12-06 12:19:27 +13:00
|
|
|
typedef struct _FcPattern FcPattern;
|
|
|
|
typedef struct FT_FaceRec_* FT_Face;
|
2010-11-08 11:44:50 +13:00
|
|
|
typedef struct FT_LibraryRec_ *FT_Library;
|
2008-08-06 13:34:06 +09:00
|
|
|
|
2013-05-29 14:59:24 -07:00
|
|
|
class gfxPangoFontGroup : public gfxFontGroup {
|
2005-11-08 20:06:16 +00:00
|
|
|
public:
|
2014-06-06 15:09:23 +09:00
|
|
|
gfxPangoFontGroup(const mozilla::FontFamilyList& aFontFamilyList,
|
|
|
|
const gfxFontStyle *aStyle,
|
|
|
|
gfxUserFontSet *aUserFontSet);
|
|
|
|
virtual ~gfxPangoFontGroup();
|
2005-11-08 20:06:16 +00:00
|
|
|
|
2007-01-23 08:45:52 +00:00
|
|
|
virtual gfxFontGroup *Copy(const gfxFontStyle *aStyle);
|
|
|
|
|
2014-11-06 13:42:50 +09:00
|
|
|
virtual gfxFont* GetFirstValidFont(uint32_t aCh = 0x20);
|
2008-09-27 12:21:55 +12:00
|
|
|
|
2014-09-25 12:16:54 +09:00
|
|
|
virtual void UpdateUserFonts();
|
2008-12-06 12:19:27 +13:00
|
|
|
|
2010-11-08 11:44:51 +13:00
|
|
|
virtual already_AddRefed<gfxFont>
|
2014-09-30 07:27:55 +01:00
|
|
|
FindFontForChar(uint32_t aCh, uint32_t aPrevCh, uint32_t aNextCh,
|
|
|
|
int32_t aRunScript, gfxFont *aPrevMatchedFont,
|
2012-08-22 11:56:38 -04:00
|
|
|
uint8_t *aMatchType);
|
2010-11-08 11:44:51 +13:00
|
|
|
|
2008-09-27 12:21:55 +12:00
|
|
|
static void Shutdown();
|
2006-03-01 18:27:38 +00:00
|
|
|
|
2009-01-03 16:21:49 +13:00
|
|
|
// Used for @font-face { src: local(); }
|
2014-09-08 16:23:19 +09:00
|
|
|
static gfxFontEntry *NewFontEntry(const nsAString& aFontName,
|
|
|
|
uint16_t aWeight,
|
|
|
|
int16_t aStretch,
|
|
|
|
bool aItalic);
|
2008-12-06 12:19:27 +13:00
|
|
|
// Used for @font-face { src: url(); }
|
2014-09-08 16:23:19 +09:00
|
|
|
static gfxFontEntry *NewFontEntry(const nsAString& aFontName,
|
|
|
|
uint16_t aWeight,
|
|
|
|
int16_t aStretch,
|
|
|
|
bool aItalic,
|
|
|
|
const uint8_t* aFontData,
|
2012-08-22 11:56:38 -04:00
|
|
|
uint32_t aLength);
|
2008-12-06 12:19:27 +13:00
|
|
|
|
2010-11-11 11:25:59 +13:00
|
|
|
private:
|
2014-11-06 13:42:50 +09:00
|
|
|
|
|
|
|
virtual gfxFont *GetFontAt(int32_t i, uint32_t aCh = 0x20);
|
|
|
|
|
2008-11-07 15:21:34 +13:00
|
|
|
// @param aLang [in] language to use for pref fonts and system default font
|
2013-07-31 11:44:31 -04:00
|
|
|
// selection, or nullptr for the language guessed from the
|
|
|
|
// gfxFontStyle.
|
2008-11-07 15:21:34 +13:00
|
|
|
// The FontGroup holds a reference to this set.
|
2013-07-31 11:44:31 -04:00
|
|
|
gfxFcFontSet *GetFontSet(PangoLanguage *aLang = nullptr);
|
2008-11-07 15:21:34 +13:00
|
|
|
|
|
|
|
class FontSetByLangEntry {
|
|
|
|
public:
|
2010-11-08 11:44:50 +13:00
|
|
|
FontSetByLangEntry(PangoLanguage *aLang, gfxFcFontSet *aFontSet);
|
2008-11-07 15:21:34 +13:00
|
|
|
PangoLanguage *mLang;
|
2010-11-08 11:44:50 +13:00
|
|
|
nsRefPtr<gfxFcFontSet> mFontSet;
|
2008-11-07 15:21:34 +13:00
|
|
|
};
|
|
|
|
// There is only one of entry in this array unless characters from scripts
|
|
|
|
// of other languages are measured.
|
|
|
|
nsAutoTArray<FontSetByLangEntry,1> mFontSets;
|
|
|
|
|
|
|
|
gfxFloat mSizeAdjustFactor;
|
|
|
|
PangoLanguage *mPangoLanguage;
|
2008-09-27 12:21:55 +12:00
|
|
|
|
2008-11-07 15:21:34 +13:00
|
|
|
// @param aLang [in] language to use for pref fonts and system font
|
2013-07-31 11:44:31 -04:00
|
|
|
// resolution, or nullptr to guess a language from the gfxFontStyle.
|
|
|
|
// @param aMatchPattern [out] if non-nullptr, will return the pattern used.
|
2010-11-08 11:44:50 +13:00
|
|
|
already_AddRefed<gfxFcFontSet>
|
2008-11-07 15:21:34 +13:00
|
|
|
MakeFontSet(PangoLanguage *aLang, gfxFloat aSizeAdjustFactor,
|
2013-07-31 11:44:31 -04:00
|
|
|
nsAutoRef<FcPattern> *aMatchPattern = nullptr);
|
2008-01-27 02:27:08 -08:00
|
|
|
|
2010-11-08 11:44:50 +13:00
|
|
|
gfxFcFontSet *GetBaseFontSet();
|
|
|
|
gfxFcFont *GetBaseFont();
|
2008-01-27 02:27:08 -08:00
|
|
|
|
2008-11-07 15:21:34 +13:00
|
|
|
gfxFloat GetSizeAdjustFactor()
|
|
|
|
{
|
|
|
|
if (mFontSets.Length() == 0)
|
|
|
|
GetBaseFontSet();
|
|
|
|
return mSizeAdjustFactor;
|
2008-01-27 02:27:08 -08:00
|
|
|
}
|
2010-11-08 11:44:50 +13:00
|
|
|
|
2014-06-06 15:09:23 +09:00
|
|
|
virtual void FindPlatformFont(const nsAString& aName,
|
|
|
|
bool aUseFontSet,
|
|
|
|
void *aClosure);
|
|
|
|
|
2013-05-16 17:29:20 +01:00
|
|
|
friend class gfxSystemFcFontEntry;
|
2010-11-08 11:44:50 +13:00
|
|
|
static FT_Library GetFTLibrary();
|
2008-01-27 02:27:08 -08:00
|
|
|
};
|
|
|
|
|
2005-11-08 20:06:16 +00:00
|
|
|
#endif /* GFX_PANGOFONTS_H */
|