2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2012-05-21 04:12:37 -07: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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifndef GFX_PANGOFONTS_H
|
|
|
|
#define GFX_PANGOFONTS_H
|
|
|
|
|
|
|
|
#include "cairo.h"
|
|
|
|
#include "gfxTypes.h"
|
|
|
|
#include "gfxFont.h"
|
|
|
|
|
2008-11-06 18:21:34 -08:00
|
|
|
#include "nsAutoRef.h"
|
2009-01-18 12:14:14 -08:00
|
|
|
#include "nsTArray.h"
|
2008-11-06 18:21:34 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
#include <pango/pango.h>
|
|
|
|
|
2010-11-07 14:44:50 -08:00
|
|
|
class gfxFcFontSet;
|
|
|
|
class gfxFcFont;
|
2008-12-05 15:19:27 -08:00
|
|
|
class gfxProxyFontEntry;
|
|
|
|
typedef struct _FcPattern FcPattern;
|
|
|
|
typedef struct FT_FaceRec_* FT_Face;
|
2010-11-07 14:44:50 -08:00
|
|
|
typedef struct FT_LibraryRec_ *FT_Library;
|
2008-08-05 21:34:06 -07:00
|
|
|
|
2013-05-29 14:59:24 -07:00
|
|
|
class gfxPangoFontGroup : public gfxFontGroup {
|
2007-03-22 10:30:00 -07:00
|
|
|
public:
|
|
|
|
gfxPangoFontGroup (const nsAString& families,
|
2008-09-30 20:01:53 -07:00
|
|
|
const gfxFontStyle *aStyle,
|
|
|
|
gfxUserFontSet *aUserFontSet);
|
2007-03-22 10:30:00 -07:00
|
|
|
virtual ~gfxPangoFontGroup ();
|
|
|
|
|
|
|
|
virtual gfxFontGroup *Copy(const gfxFontStyle *aStyle);
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
virtual gfxFont *GetFontAt(int32_t i);
|
2008-09-26 17:21:55 -07:00
|
|
|
|
2008-12-05 15:19:27 -08:00
|
|
|
virtual void UpdateFontList();
|
|
|
|
|
2010-11-07 14:44:51 -08:00
|
|
|
virtual already_AddRefed<gfxFont>
|
2012-08-22 08:56:38 -07:00
|
|
|
FindFontForChar(uint32_t aCh, uint32_t aPrevCh, int32_t aRunScript,
|
2011-06-15 23:31:37 -07:00
|
|
|
gfxFont *aPrevMatchedFont,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint8_t *aMatchType);
|
2010-11-07 14:44:51 -08:00
|
|
|
|
2008-09-26 17:21:55 -07:00
|
|
|
static void Shutdown();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-01-02 19:21:49 -08:00
|
|
|
// Used for @font-face { src: local(); }
|
|
|
|
static gfxFontEntry *NewFontEntry(const gfxProxyFontEntry &aProxyEntry,
|
|
|
|
const nsAString &aFullname);
|
2008-12-05 15:19:27 -08:00
|
|
|
// Used for @font-face { src: url(); }
|
|
|
|
static gfxFontEntry *NewFontEntry(const gfxProxyFontEntry &aProxyEntry,
|
2012-08-22 08:56:38 -07:00
|
|
|
const uint8_t *aFontData,
|
|
|
|
uint32_t aLength);
|
2008-12-05 15:19:27 -08:00
|
|
|
|
2010-11-10 14:25:59 -08:00
|
|
|
private:
|
2008-11-06 18:21:34 -08:00
|
|
|
// @param aLang [in] language to use for pref fonts and system default font
|
2013-07-31 08:44:31 -07:00
|
|
|
// selection, or nullptr for the language guessed from the
|
|
|
|
// gfxFontStyle.
|
2008-11-06 18:21:34 -08:00
|
|
|
// The FontGroup holds a reference to this set.
|
2013-07-31 08:44:31 -07:00
|
|
|
gfxFcFontSet *GetFontSet(PangoLanguage *aLang = nullptr);
|
2008-11-06 18:21:34 -08:00
|
|
|
|
|
|
|
class FontSetByLangEntry {
|
|
|
|
public:
|
2010-11-07 14:44:50 -08:00
|
|
|
FontSetByLangEntry(PangoLanguage *aLang, gfxFcFontSet *aFontSet);
|
2008-11-06 18:21:34 -08:00
|
|
|
PangoLanguage *mLang;
|
2010-11-07 14:44:50 -08:00
|
|
|
nsRefPtr<gfxFcFontSet> mFontSet;
|
2008-11-06 18:21:34 -08: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-26 17:21:55 -07:00
|
|
|
|
2008-12-05 15:19:27 -08:00
|
|
|
void GetFcFamilies(nsTArray<nsString> *aFcFamilyList,
|
2010-02-24 09:57:57 -08:00
|
|
|
nsIAtom *aLanguage);
|
2007-05-08 08:33:52 -07:00
|
|
|
|
2008-11-06 18:21:34 -08:00
|
|
|
// @param aLang [in] language to use for pref fonts and system font
|
2013-07-31 08:44:31 -07:00
|
|
|
// resolution, or nullptr to guess a language from the gfxFontStyle.
|
|
|
|
// @param aMatchPattern [out] if non-nullptr, will return the pattern used.
|
2010-11-07 14:44:50 -08:00
|
|
|
already_AddRefed<gfxFcFontSet>
|
2008-11-06 18:21:34 -08:00
|
|
|
MakeFontSet(PangoLanguage *aLang, gfxFloat aSizeAdjustFactor,
|
2013-07-31 08:44:31 -07:00
|
|
|
nsAutoRef<FcPattern> *aMatchPattern = nullptr);
|
2008-01-27 02:27:08 -08:00
|
|
|
|
2010-11-07 14:44:50 -08:00
|
|
|
gfxFcFontSet *GetBaseFontSet();
|
|
|
|
gfxFcFont *GetBaseFont();
|
2008-01-27 02:27:08 -08:00
|
|
|
|
2008-11-06 18:21:34 -08:00
|
|
|
gfxFloat GetSizeAdjustFactor()
|
|
|
|
{
|
|
|
|
if (mFontSets.Length() == 0)
|
|
|
|
GetBaseFontSet();
|
|
|
|
return mSizeAdjustFactor;
|
2008-01-27 02:27:08 -08:00
|
|
|
}
|
2010-11-07 14:44:50 -08:00
|
|
|
|
2013-05-16 09:29:20 -07:00
|
|
|
friend class gfxSystemFcFontEntry;
|
2010-11-07 14:44:50 -08:00
|
|
|
static FT_Library GetFTLibrary();
|
2008-01-27 02:27:08 -08:00
|
|
|
};
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif /* GFX_PANGOFONTS_H */
|