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