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