/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* 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/. */ // Main header first: #include "nsSVGTextPathFrame.h" // Keep others in (case-insensitive) order: #include "nsContentUtils.h" #include "nsIDOMSVGTextPathElement.h" #include "nsSVGEffects.h" #include "nsSVGLength2.h" #include "nsSVGPathElement.h" #include "nsSVGTextPathElement.h" #include "SVGLengthList.h" using namespace mozilla; //---------------------------------------------------------------------- // Implementation nsIFrame* NS_NewSVGTextPathFrame(nsIPresShell* aPresShell, nsStyleContext* aContext) { return new (aPresShell) nsSVGTextPathFrame(aContext); } NS_IMPL_FRAMEARENA_HELPERS(nsSVGTextPathFrame) #ifdef DEBUG NS_IMETHODIMP nsSVGTextPathFrame::Init(nsIContent* aContent, nsIFrame* aParent, nsIFrame* aPrevInFlow) { NS_ASSERTION(aParent, "null parent"); nsIFrame* ancestorFrame = nsSVGUtils::GetFirstNonAAncestorFrame(aParent); NS_ASSERTION(ancestorFrame, "Must have ancestor"); NS_ASSERTION(ancestorFrame->GetType() == nsGkAtoms::svgTextFrame, "trying to construct an SVGTextPathFrame for an invalid " "container"); nsCOMPtr textPath = do_QueryInterface(aContent); NS_ASSERTION(textPath, "Content is not an SVG textPath"); return nsSVGTextPathFrameBase::Init(aContent, aParent, aPrevInFlow); } #endif /* DEBUG */ nsIAtom * nsSVGTextPathFrame::GetType() const { return nsGkAtoms::svgTextPathFrame; } void nsSVGTextPathFrame::GetXY(SVGUserUnitList *aX, SVGUserUnitList *aY) { // 'x' and 'y' don't apply to 'textPath' aX->Clear(); aY->Clear(); } void nsSVGTextPathFrame::GetDxDy(SVGUserUnitList *aDx, SVGUserUnitList *aDy) { // 'dx' and 'dy' don't apply to 'textPath' aDx->Clear(); aDy->Clear(); } const SVGNumberList* nsSVGTextPathFrame::GetRotate() { return nsnull; } //---------------------------------------------------------------------- // nsSVGTextPathFrame methods: nsIFrame * nsSVGTextPathFrame::GetPathFrame() { nsSVGTextPathProperty *property = static_cast (Properties().Get(nsSVGEffects::HrefProperty())); if (!property) { nsSVGTextPathElement *tp = static_cast(mContent); nsAutoString href; tp->mStringAttributes[nsSVGTextPathElement::HREF].GetAnimValue(href, tp); if (href.IsEmpty()) { return nsnull; // no URL } nsCOMPtr targetURI; nsCOMPtr base = mContent->GetBaseURI(); nsContentUtils::NewURIWithDocumentCharset(getter_AddRefs(targetURI), href, mContent->GetCurrentDoc(), base); property = nsSVGEffects::GetTextPathProperty(targetURI, this, nsSVGEffects::HrefProperty()); if (!property) return nsnull; } return property->GetReferencedFrame(nsGkAtoms::svgPathGeometryFrame, nsnull); } already_AddRefed nsSVGTextPathFrame::GetFlattenedPath() { nsIFrame *path = GetPathFrame(); if (path) { nsSVGPathGeometryElement *element = static_cast(path->GetContent()); return element->GetFlattenedPath(element->PrependLocalTransformsTo(gfxMatrix())); } return nsnull; } gfxFloat nsSVGTextPathFrame::GetStartOffset() { nsSVGTextPathElement *tp = static_cast(mContent); nsSVGLength2 *length = &tp->mLengthAttributes[nsSVGTextPathElement::STARTOFFSET]; float val = length->GetAnimValInSpecifiedUnits(); if (val == 0.0f) return 0.0; if (length->IsPercentage()) { nsRefPtr data = GetFlattenedPath(); return data ? (val * data->GetLength() / 100.0) : 0.0; } return val * GetOffsetScale(); } gfxFloat nsSVGTextPathFrame::GetOffsetScale() { nsIFrame *pathFrame = GetPathFrame(); if (!pathFrame) return 1.0; return static_cast(pathFrame->GetContent())-> GetPathLengthScale(nsSVGPathElement::eForTextPath); } //---------------------------------------------------------------------- // nsIFrame methods NS_IMETHODIMP nsSVGTextPathFrame::AttributeChanged(PRInt32 aNameSpaceID, nsIAtom* aAttribute, PRInt32 aModType) { if (aNameSpaceID == kNameSpaceID_None && aAttribute == nsGkAtoms::startOffset) { NotifyGlyphMetricsChange(); } else if (aNameSpaceID == kNameSpaceID_XLink && aAttribute == nsGkAtoms::href) { // Blow away our reference, if any Properties().Delete(nsSVGEffects::HrefProperty()); NotifyGlyphMetricsChange(); } return NS_OK; }