#ifndef SVGFontElement_h
#define SVGFontElement_h
#if ENABLE(SVG_FONTS)
#include "SVGNames.h"
#include "core/svg/SVGAnimatedBoolean.h"
#include "core/svg/SVGElement.h"
#include "core/svg/SVGGlyphMap.h"
#include "core/svg/SVGParserUtilities.h"
namespace WebCore {
struct SVGKerningPair {
    float kerning;
    UnicodeRanges unicodeRange1;
    UnicodeRanges unicodeRange2;
    HashSet<String> unicodeName1;
    HashSet<String> unicodeName2;
    HashSet<String> glyphName1;
    HashSet<String> glyphName2;
    SVGKerningPair()
        : kerning(0)
    {
    }
};
typedef unsigned KerningPairKey;
typedef Vector<SVGKerningPair> KerningPairVector;
typedef HashMap<KerningPairKey, float> KerningTable;
class SVGMissingGlyphElement;
class SVGFontElement FINAL : public SVGElement {
public:
    static PassRefPtr<SVGFontElement> create(Document&);
    void invalidateGlyphCache();
    void collectGlyphsForString(const String&, Vector<SVGGlyph>&);
    void collectGlyphsForAltGlyphReference(const String&, Vector<SVGGlyph>&);
    float horizontalKerningForPairOfGlyphs(Glyph, Glyph) const;
    float verticalKerningForPairOfGlyphs(Glyph, Glyph) const;
    
    SVGGlyph svgGlyphForGlyph(Glyph);
    Glyph missingGlyph();
    SVGMissingGlyphElement* firstMissingGlyphElement() const;
private:
    explicit SVGFontElement(Document&);
    virtual bool rendererIsNeeded(const RenderStyle&) OVERRIDE { return false; }
    void ensureGlyphCache();
    void registerLigaturesInGlyphCache(Vector<String>&);
    Vector<SVGGlyph> buildGlyphList(const UnicodeRanges&, const HashSet<String>& unicodeNames, const HashSet<String>& glyphNames) const;
    void addPairsToKerningTable(const SVGKerningPair&, KerningTable&);
    void buildKerningTable(const KerningPairVector&, KerningTable&);
    KerningTable m_horizontalKerningTable;
    KerningTable m_verticalKerningTable;
    SVGGlyphMap m_glyphMap;
    Glyph m_missingGlyph;
    bool m_isGlyphCacheValid;
};
} 
#endif 
#endif