#ifndef SVGTextLayoutEngine_h
#define SVGTextLayoutEngine_h
#include "core/rendering/svg/SVGTextChunkBuilder.h"
#include "core/rendering/svg/SVGTextFragment.h"
#include "core/rendering/svg/SVGTextLayoutAttributes.h"
#include "core/rendering/svg/SVGTextMetrics.h"
#include "platform/graphics/Path.h"
#include "wtf/Vector.h"
namespace WebCore {
class RenderObject;
class RenderStyle;
class RenderSVGInlineText;
class SVGElement;
class SVGInlineTextBox;
class SVGRenderStyle;
class SVGTextLayoutEngine {
WTF_MAKE_NONCOPYABLE(SVGTextLayoutEngine);
public:
SVGTextLayoutEngine(Vector<SVGTextLayoutAttributes*>&);
Vector<SVGTextLayoutAttributes*>& layoutAttributes() { return m_layoutAttributes; }
void beginTextPathLayout(RenderObject*, SVGTextLayoutEngine& lineLayout);
void endTextPathLayout();
void layoutInlineTextBox(SVGInlineTextBox*);
void finishLayout();
private:
void updateCharacerPositionIfNeeded(float& x, float& y);
void updateCurrentTextPosition(float x, float y, float glyphAdvance);
void updateRelativePositionAdjustmentsIfNeeded(float dx, float dy);
void recordTextFragment(SVGInlineTextBox*, Vector<SVGTextMetrics>&);
bool parentDefinesTextLength(RenderObject*) const;
void layoutTextOnLineOrPath(SVGInlineTextBox*, RenderSVGInlineText*, const RenderStyle*);
void finalizeTransformMatrices(Vector<SVGInlineTextBox*>&);
bool currentLogicalCharacterAttributes(SVGTextLayoutAttributes*&);
bool currentLogicalCharacterMetrics(SVGTextLayoutAttributes*&, SVGTextMetrics&);
bool currentVisualCharacterMetrics(SVGInlineTextBox*, Vector<SVGTextMetrics>&, SVGTextMetrics&);
void advanceToNextLogicalCharacter(const SVGTextMetrics&);
void advanceToNextVisualCharacter(const SVGTextMetrics&);
private:
Vector<SVGTextLayoutAttributes*>& m_layoutAttributes;
Vector<SVGInlineTextBox*> m_lineLayoutBoxes;
Vector<SVGInlineTextBox*> m_pathLayoutBoxes;
SVGTextChunkBuilder m_chunkLayoutBuilder;
SVGTextFragment m_currentTextFragment;
unsigned m_layoutAttributesPosition;
unsigned m_logicalCharacterOffset;
unsigned m_logicalMetricsListOffset;
unsigned m_visualCharacterOffset;
unsigned m_visualMetricsListOffset;
float m_x;
float m_y;
float m_dx;
float m_dy;
bool m_isVerticalText;
bool m_inPathLayout;
Path::PositionCalculator* m_textPathCalculator;
float m_textPathLength;
float m_textPathStartOffset;
float m_textPathCurrentOffset;
float m_textPathSpacing;
float m_textPathScaling;
};
}
#endif