2001-12-12 07:59:31 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
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/. */
|
2001-12-12 07:59:31 +00:00
|
|
|
|
2013-08-02 07:04:22 +00:00
|
|
|
#include "mozilla/dom/SVGPathElement.h"
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
|
2010-11-08 15:07:00 +00:00
|
|
|
#include "DOMSVGPathSeg.h"
|
|
|
|
#include "DOMSVGPathSegList.h"
|
2010-12-08 12:15:53 +00:00
|
|
|
#include "DOMSVGPoint.h"
|
2013-11-18 01:29:06 +00:00
|
|
|
#include "gfx2DGlue.h"
|
2014-07-05 20:53:04 +00:00
|
|
|
#include "gfxPlatform.h"
|
2013-01-16 20:50:59 +00:00
|
|
|
#include "mozilla/dom/SVGPathElementBinding.h"
|
2013-11-18 01:29:06 +00:00
|
|
|
#include "mozilla/gfx/2D.h"
|
2014-07-05 20:53:04 +00:00
|
|
|
#include "mozilla/RefPtr.h"
|
2013-08-02 07:04:22 +00:00
|
|
|
#include "nsCOMPtr.h"
|
2013-11-02 11:10:38 +00:00
|
|
|
#include "nsComputedDOMStyle.h"
|
2013-08-02 07:04:22 +00:00
|
|
|
#include "nsGkAtoms.h"
|
2013-11-02 11:10:38 +00:00
|
|
|
#include "nsStyleConsts.h"
|
|
|
|
#include "nsStyleStruct.h"
|
|
|
|
#include "SVGContentUtils.h"
|
2001-12-12 07:59:31 +00:00
|
|
|
|
2013-01-12 22:22:31 +00:00
|
|
|
NS_IMPL_NS_NEW_NAMESPACED_SVG_ELEMENT(Path)
|
|
|
|
|
2013-11-02 11:10:38 +00:00
|
|
|
using namespace mozilla::gfx;
|
|
|
|
|
2013-01-12 22:22:31 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
2006-07-28 18:10:48 +00:00
|
|
|
|
2013-01-16 20:50:59 +00:00
|
|
|
JSObject*
|
2014-04-08 22:27:17 +00:00
|
|
|
SVGPathElement::WrapNode(JSContext *aCx)
|
2013-01-16 20:50:59 +00:00
|
|
|
{
|
Bug 991742 part 6. Remove the "aScope" argument of binding Wrap() methods. r=bholley
This patch was mostly generated with this command:
find . -name "*.h" -o -name "*.cpp" | xargs sed -e 's/Binding::Wrap(aCx, aScope, this/Binding::Wrap(aCx, this/' -e 's/Binding_workers::Wrap(aCx, aScope, this/Binding_workers::Wrap(aCx, this/' -e 's/Binding::Wrap(cx, scope, this/Binding::Wrap(cx, this/' -i ""
plus a few manual fixes to dom/bindings/Codegen.py, js/xpconnect/src/event_impl_gen.py, and a few C++ files that were not caught in the search-and-replace above.
2014-04-08 22:27:17 +00:00
|
|
|
return SVGPathElementBinding::Wrap(aCx, this);
|
2013-01-16 20:50:59 +00:00
|
|
|
}
|
|
|
|
|
2013-01-12 22:22:31 +00:00
|
|
|
nsSVGElement::NumberInfo SVGPathElement::sNumberInfo =
|
|
|
|
{ &nsGkAtoms::pathLength, 0, false };
|
2001-12-12 07:59:31 +00:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Implementation
|
|
|
|
|
2014-06-20 02:01:40 +00:00
|
|
|
SVGPathElement::SVGPathElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo)
|
2013-01-12 22:22:31 +00:00
|
|
|
: SVGPathElementBase(aNodeInfo)
|
2001-12-12 07:59:31 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-05-26 15:21:23 +00:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// memory reporting methods
|
|
|
|
|
|
|
|
size_t
|
|
|
|
SVGPathElement::SizeOfExcludingThis(mozilla::MallocSizeOf aMallocSizeOf) const
|
|
|
|
{
|
|
|
|
return SVGPathElementBase::SizeOfExcludingThis(aMallocSizeOf) +
|
|
|
|
mD.SizeOfExcludingThis(aMallocSizeOf);
|
|
|
|
}
|
|
|
|
|
2001-12-12 07:59:31 +00:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// nsIDOMNode methods
|
|
|
|
|
2013-01-12 22:22:31 +00:00
|
|
|
NS_IMPL_ELEMENT_CLONE_WITH_INIT(SVGPathElement)
|
2001-12-12 07:59:31 +00:00
|
|
|
|
2013-07-01 07:03:04 +00:00
|
|
|
already_AddRefed<SVGAnimatedNumber>
|
2013-01-16 20:50:59 +00:00
|
|
|
SVGPathElement::PathLength()
|
|
|
|
{
|
2013-07-01 07:03:04 +00:00
|
|
|
return mPathLength.ToDOMAnimatedNumber(this);
|
2001-12-12 07:59:31 +00:00
|
|
|
}
|
|
|
|
|
2013-01-16 20:50:59 +00:00
|
|
|
float
|
2014-07-03 18:50:42 +00:00
|
|
|
SVGPathElement::GetTotalLength()
|
2013-01-16 20:50:59 +00:00
|
|
|
{
|
2014-10-04 11:13:30 +00:00
|
|
|
RefPtr<Path> flat = GetOrBuildPathForMeasuring();
|
2014-07-03 18:50:42 +00:00
|
|
|
return flat ? flat->ComputeLength() : 0.f;
|
2001-12-12 07:59:31 +00:00
|
|
|
}
|
|
|
|
|
2013-01-16 20:50:59 +00:00
|
|
|
already_AddRefed<nsISVGPoint>
|
|
|
|
SVGPathElement::GetPointAtLength(float distance, ErrorResult& rv)
|
|
|
|
{
|
2014-10-04 11:13:30 +00:00
|
|
|
RefPtr<Path> path = GetOrBuildPathForMeasuring();
|
2013-11-18 01:29:06 +00:00
|
|
|
if (!path) {
|
2013-01-16 20:50:59 +00:00
|
|
|
rv.Throw(NS_ERROR_FAILURE);
|
|
|
|
return nullptr;
|
|
|
|
}
|
2006-07-18 16:16:09 +00:00
|
|
|
|
2013-11-18 01:29:06 +00:00
|
|
|
float totalLength = path->ComputeLength();
|
2011-05-01 18:26:20 +00:00
|
|
|
if (mPathLength.IsExplicitlySet()) {
|
2010-02-25 18:20:43 +00:00
|
|
|
float pathLength = mPathLength.GetAnimValue();
|
2011-05-01 18:26:20 +00:00
|
|
|
if (pathLength <= 0) {
|
2013-01-16 20:50:59 +00:00
|
|
|
rv.Throw(NS_ERROR_FAILURE);
|
|
|
|
return nullptr;
|
2011-05-01 18:26:20 +00:00
|
|
|
}
|
2006-07-18 16:16:09 +00:00
|
|
|
distance *= totalLength / pathLength;
|
|
|
|
}
|
2013-01-15 12:22:03 +00:00
|
|
|
distance = std::max(0.f, distance);
|
|
|
|
distance = std::min(totalLength, distance);
|
2006-07-28 18:10:48 +00:00
|
|
|
|
2013-11-18 01:29:06 +00:00
|
|
|
nsCOMPtr<nsISVGPoint> point =
|
|
|
|
new DOMSVGPoint(path->ComputePointAtLength(distance));
|
2013-01-16 20:50:59 +00:00
|
|
|
return point.forget();
|
2001-12-12 07:59:31 +00:00
|
|
|
}
|
|
|
|
|
2013-01-16 20:50:59 +00:00
|
|
|
uint32_t
|
|
|
|
SVGPathElement::GetPathSegAtLength(float distance)
|
|
|
|
{
|
|
|
|
return mD.GetAnimValue().GetPathSegAtLength(distance);
|
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<DOMSVGPathSegClosePath>
|
|
|
|
SVGPathElement::CreateSVGPathSegClosePath()
|
|
|
|
{
|
|
|
|
nsRefPtr<DOMSVGPathSegClosePath> pathSeg = new DOMSVGPathSegClosePath();
|
|
|
|
return pathSeg.forget();
|
2001-12-12 07:59:31 +00:00
|
|
|
}
|
|
|
|
|
2013-01-16 20:50:59 +00:00
|
|
|
already_AddRefed<DOMSVGPathSegMovetoAbs>
|
|
|
|
SVGPathElement::CreateSVGPathSegMovetoAbs(float x, float y)
|
|
|
|
{
|
|
|
|
nsRefPtr<DOMSVGPathSegMovetoAbs> pathSeg = new DOMSVGPathSegMovetoAbs(x, y);
|
|
|
|
return pathSeg.forget();
|
2001-12-12 07:59:31 +00:00
|
|
|
}
|
|
|
|
|
2013-01-16 20:50:59 +00:00
|
|
|
already_AddRefed<DOMSVGPathSegMovetoRel>
|
|
|
|
SVGPathElement::CreateSVGPathSegMovetoRel(float x, float y)
|
|
|
|
{
|
|
|
|
nsRefPtr<DOMSVGPathSegMovetoRel> pathSeg = new DOMSVGPathSegMovetoRel(x, y);
|
|
|
|
return pathSeg.forget();
|
2001-12-12 07:59:31 +00:00
|
|
|
}
|
|
|
|
|
2013-01-16 20:50:59 +00:00
|
|
|
already_AddRefed<DOMSVGPathSegLinetoAbs>
|
|
|
|
SVGPathElement::CreateSVGPathSegLinetoAbs(float x, float y)
|
|
|
|
{
|
|
|
|
nsRefPtr<DOMSVGPathSegLinetoAbs> pathSeg = new DOMSVGPathSegLinetoAbs(x, y);
|
|
|
|
return pathSeg.forget();
|
2001-12-12 07:59:31 +00:00
|
|
|
}
|
|
|
|
|
2013-01-16 20:50:59 +00:00
|
|
|
already_AddRefed<DOMSVGPathSegLinetoRel>
|
|
|
|
SVGPathElement::CreateSVGPathSegLinetoRel(float x, float y)
|
|
|
|
{
|
|
|
|
nsRefPtr<DOMSVGPathSegLinetoRel> pathSeg = new DOMSVGPathSegLinetoRel(x, y);
|
|
|
|
return pathSeg.forget();
|
2001-12-12 07:59:31 +00:00
|
|
|
}
|
|
|
|
|
2013-01-16 20:50:59 +00:00
|
|
|
already_AddRefed<DOMSVGPathSegCurvetoCubicAbs>
|
|
|
|
SVGPathElement::CreateSVGPathSegCurvetoCubicAbs(float x, float y, float x1, float y1, float x2, float y2)
|
|
|
|
{
|
|
|
|
// Note that we swap from DOM API argument order to the argument order used
|
|
|
|
// in the <path> element's 'd' attribute (i.e. we put the arguments for the
|
|
|
|
// end point of the segment last instead of first).
|
|
|
|
nsRefPtr<DOMSVGPathSegCurvetoCubicAbs> pathSeg =
|
|
|
|
new DOMSVGPathSegCurvetoCubicAbs(x1, y1, x2, y2, x, y);
|
|
|
|
return pathSeg.forget();
|
2001-12-12 07:59:31 +00:00
|
|
|
}
|
|
|
|
|
2013-01-16 20:50:59 +00:00
|
|
|
already_AddRefed<DOMSVGPathSegCurvetoCubicRel>
|
|
|
|
SVGPathElement::CreateSVGPathSegCurvetoCubicRel(float x, float y, float x1, float y1, float x2, float y2)
|
|
|
|
{
|
|
|
|
// See comment in CreateSVGPathSegCurvetoCubicAbs
|
|
|
|
nsRefPtr<DOMSVGPathSegCurvetoCubicRel> pathSeg =
|
|
|
|
new DOMSVGPathSegCurvetoCubicRel(x1, y1, x2, y2, x, y);
|
|
|
|
return pathSeg.forget();
|
2001-12-12 07:59:31 +00:00
|
|
|
}
|
|
|
|
|
2013-01-16 20:50:59 +00:00
|
|
|
already_AddRefed<DOMSVGPathSegCurvetoQuadraticAbs>
|
|
|
|
SVGPathElement::CreateSVGPathSegCurvetoQuadraticAbs(float x, float y, float x1, float y1)
|
|
|
|
{
|
|
|
|
// See comment in CreateSVGPathSegCurvetoCubicAbs
|
|
|
|
nsRefPtr<DOMSVGPathSegCurvetoQuadraticAbs> pathSeg =
|
|
|
|
new DOMSVGPathSegCurvetoQuadraticAbs(x1, y1, x, y);
|
|
|
|
return pathSeg.forget();
|
2001-12-12 07:59:31 +00:00
|
|
|
}
|
|
|
|
|
2013-01-16 20:50:59 +00:00
|
|
|
already_AddRefed<DOMSVGPathSegCurvetoQuadraticRel>
|
|
|
|
SVGPathElement::CreateSVGPathSegCurvetoQuadraticRel(float x, float y, float x1, float y1)
|
|
|
|
{
|
|
|
|
// See comment in CreateSVGPathSegCurvetoCubicAbs
|
|
|
|
nsRefPtr<DOMSVGPathSegCurvetoQuadraticRel> pathSeg =
|
|
|
|
new DOMSVGPathSegCurvetoQuadraticRel(x1, y1, x, y);
|
|
|
|
return pathSeg.forget();
|
2001-12-12 07:59:31 +00:00
|
|
|
}
|
|
|
|
|
2013-01-16 20:50:59 +00:00
|
|
|
already_AddRefed<DOMSVGPathSegArcAbs>
|
|
|
|
SVGPathElement::CreateSVGPathSegArcAbs(float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag)
|
|
|
|
{
|
|
|
|
// See comment in CreateSVGPathSegCurvetoCubicAbs
|
|
|
|
nsRefPtr<DOMSVGPathSegArcAbs> pathSeg =
|
|
|
|
new DOMSVGPathSegArcAbs(r1, r2, angle, largeArcFlag, sweepFlag, x, y);
|
|
|
|
return pathSeg.forget();
|
2001-12-12 07:59:31 +00:00
|
|
|
}
|
|
|
|
|
2013-01-16 20:50:59 +00:00
|
|
|
already_AddRefed<DOMSVGPathSegArcRel>
|
|
|
|
SVGPathElement::CreateSVGPathSegArcRel(float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag)
|
|
|
|
{
|
|
|
|
// See comment in CreateSVGPathSegCurvetoCubicAbs
|
|
|
|
nsRefPtr<DOMSVGPathSegArcRel> pathSeg =
|
|
|
|
new DOMSVGPathSegArcRel(r1, r2, angle, largeArcFlag, sweepFlag, x, y);
|
|
|
|
return pathSeg.forget();
|
2001-12-12 07:59:31 +00:00
|
|
|
}
|
|
|
|
|
2013-01-16 20:50:59 +00:00
|
|
|
already_AddRefed<DOMSVGPathSegLinetoHorizontalAbs>
|
|
|
|
SVGPathElement::CreateSVGPathSegLinetoHorizontalAbs(float x)
|
|
|
|
{
|
|
|
|
nsRefPtr<DOMSVGPathSegLinetoHorizontalAbs> pathSeg =
|
|
|
|
new DOMSVGPathSegLinetoHorizontalAbs(x);
|
|
|
|
return pathSeg.forget();
|
2001-12-12 07:59:31 +00:00
|
|
|
}
|
|
|
|
|
2013-01-16 20:50:59 +00:00
|
|
|
already_AddRefed<DOMSVGPathSegLinetoHorizontalRel>
|
|
|
|
SVGPathElement::CreateSVGPathSegLinetoHorizontalRel(float x)
|
|
|
|
{
|
|
|
|
nsRefPtr<DOMSVGPathSegLinetoHorizontalRel> pathSeg =
|
|
|
|
new DOMSVGPathSegLinetoHorizontalRel(x);
|
|
|
|
return pathSeg.forget();
|
2001-12-12 07:59:31 +00:00
|
|
|
}
|
|
|
|
|
2013-01-16 20:50:59 +00:00
|
|
|
already_AddRefed<DOMSVGPathSegLinetoVerticalAbs>
|
|
|
|
SVGPathElement::CreateSVGPathSegLinetoVerticalAbs(float y)
|
|
|
|
{
|
|
|
|
nsRefPtr<DOMSVGPathSegLinetoVerticalAbs> pathSeg =
|
|
|
|
new DOMSVGPathSegLinetoVerticalAbs(y);
|
|
|
|
return pathSeg.forget();
|
2001-12-12 07:59:31 +00:00
|
|
|
}
|
|
|
|
|
2013-01-16 20:50:59 +00:00
|
|
|
already_AddRefed<DOMSVGPathSegLinetoVerticalRel>
|
|
|
|
SVGPathElement::CreateSVGPathSegLinetoVerticalRel(float y)
|
|
|
|
{
|
|
|
|
nsRefPtr<DOMSVGPathSegLinetoVerticalRel> pathSeg =
|
|
|
|
new DOMSVGPathSegLinetoVerticalRel(y);
|
|
|
|
return pathSeg.forget();
|
2001-12-12 07:59:31 +00:00
|
|
|
}
|
|
|
|
|
2013-01-16 20:50:59 +00:00
|
|
|
already_AddRefed<DOMSVGPathSegCurvetoCubicSmoothAbs>
|
|
|
|
SVGPathElement::CreateSVGPathSegCurvetoCubicSmoothAbs(float x, float y, float x2, float y2)
|
|
|
|
{
|
|
|
|
// See comment in CreateSVGPathSegCurvetoCubicAbs
|
|
|
|
nsRefPtr<DOMSVGPathSegCurvetoCubicSmoothAbs> pathSeg =
|
|
|
|
new DOMSVGPathSegCurvetoCubicSmoothAbs(x2, y2, x, y);
|
|
|
|
return pathSeg.forget();
|
2001-12-12 07:59:31 +00:00
|
|
|
}
|
|
|
|
|
2013-01-16 20:50:59 +00:00
|
|
|
already_AddRefed<DOMSVGPathSegCurvetoCubicSmoothRel>
|
|
|
|
SVGPathElement::CreateSVGPathSegCurvetoCubicSmoothRel(float x, float y, float x2, float y2)
|
|
|
|
{
|
|
|
|
// See comment in CreateSVGPathSegCurvetoCubicAbs
|
|
|
|
nsRefPtr<DOMSVGPathSegCurvetoCubicSmoothRel> pathSeg =
|
|
|
|
new DOMSVGPathSegCurvetoCubicSmoothRel(x2, y2, x, y);
|
|
|
|
return pathSeg.forget();
|
2001-12-12 07:59:31 +00:00
|
|
|
}
|
|
|
|
|
2013-01-16 20:50:59 +00:00
|
|
|
already_AddRefed<DOMSVGPathSegCurvetoQuadraticSmoothAbs>
|
|
|
|
SVGPathElement::CreateSVGPathSegCurvetoQuadraticSmoothAbs(float x, float y)
|
|
|
|
{
|
|
|
|
nsRefPtr<DOMSVGPathSegCurvetoQuadraticSmoothAbs> pathSeg =
|
|
|
|
new DOMSVGPathSegCurvetoQuadraticSmoothAbs(x, y);
|
|
|
|
return pathSeg.forget();
|
2001-12-12 07:59:31 +00:00
|
|
|
}
|
|
|
|
|
2013-01-16 20:50:59 +00:00
|
|
|
already_AddRefed<DOMSVGPathSegCurvetoQuadraticSmoothRel>
|
|
|
|
SVGPathElement::CreateSVGPathSegCurvetoQuadraticSmoothRel(float x, float y)
|
|
|
|
{
|
|
|
|
nsRefPtr<DOMSVGPathSegCurvetoQuadraticSmoothRel> pathSeg =
|
|
|
|
new DOMSVGPathSegCurvetoQuadraticSmoothRel(x, y);
|
|
|
|
return pathSeg.forget();
|
|
|
|
}
|
2006-07-28 18:10:48 +00:00
|
|
|
|
2013-01-16 20:50:59 +00:00
|
|
|
already_AddRefed<DOMSVGPathSegList>
|
|
|
|
SVGPathElement::PathSegList()
|
2012-03-03 09:21:09 +00:00
|
|
|
{
|
2013-01-16 20:50:59 +00:00
|
|
|
return DOMSVGPathSegList::GetDOMWrapper(mD.GetBaseValKey(), this, false);
|
2012-03-03 09:21:09 +00:00
|
|
|
}
|
|
|
|
|
2013-01-16 20:50:59 +00:00
|
|
|
already_AddRefed<DOMSVGPathSegList>
|
|
|
|
SVGPathElement::AnimatedPathSegList()
|
2006-07-28 18:10:48 +00:00
|
|
|
{
|
2013-01-16 20:50:59 +00:00
|
|
|
return DOMSVGPathSegList::GetDOMWrapper(mD.GetAnimValKey(), this, true);
|
2006-07-28 18:10:48 +00:00
|
|
|
}
|
|
|
|
|
2001-12-12 07:59:31 +00:00
|
|
|
//----------------------------------------------------------------------
|
2013-01-16 20:50:59 +00:00
|
|
|
// nsSVGElement methods
|
2001-12-12 07:59:31 +00:00
|
|
|
|
2013-01-16 20:50:59 +00:00
|
|
|
/* virtual */ bool
|
|
|
|
SVGPathElement::HasValidDimensions() const
|
2001-12-12 07:59:31 +00:00
|
|
|
{
|
2013-01-16 20:50:59 +00:00
|
|
|
return !mD.GetAnimValue().IsEmpty();
|
2001-12-12 07:59:31 +00:00
|
|
|
}
|
|
|
|
|
2013-01-16 20:50:59 +00:00
|
|
|
nsSVGElement::NumberAttributesInfo
|
|
|
|
SVGPathElement::GetNumberInfo()
|
2001-12-12 07:59:31 +00:00
|
|
|
{
|
2013-01-16 20:50:59 +00:00
|
|
|
return NumberAttributesInfo(&mPathLength, &sNumberInfo, 1);
|
2001-12-12 07:59:31 +00:00
|
|
|
}
|
|
|
|
|
2004-12-09 03:16:15 +00:00
|
|
|
//----------------------------------------------------------------------
|
2005-11-02 00:41:51 +00:00
|
|
|
// nsIContent methods
|
2004-12-09 03:16:15 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
NS_IMETHODIMP_(bool)
|
2013-01-12 22:22:31 +00:00
|
|
|
SVGPathElement::IsAttributeMapped(const nsIAtom* name) const
|
2004-12-09 03:16:15 +00:00
|
|
|
{
|
|
|
|
static const MappedAttributeEntry* const map[] = {
|
2007-03-20 10:43:33 +00:00
|
|
|
sMarkersMap
|
2004-12-09 03:16:15 +00:00
|
|
|
};
|
2006-08-10 22:17:14 +00:00
|
|
|
|
2011-12-18 10:09:27 +00:00
|
|
|
return FindAttributeDependence(name, map) ||
|
2013-01-12 22:22:31 +00:00
|
|
|
SVGPathElementBase::IsAttributeMapped(name);
|
2004-12-09 03:16:15 +00:00
|
|
|
}
|
2005-08-26 02:49:52 +00:00
|
|
|
|
2013-11-18 01:29:06 +00:00
|
|
|
TemporaryRef<Path>
|
2014-10-04 11:13:30 +00:00
|
|
|
SVGPathElement::GetOrBuildPathForMeasuring()
|
2005-08-26 02:49:52 +00:00
|
|
|
{
|
2014-10-04 11:13:30 +00:00
|
|
|
return mD.GetAnimValue().BuildPathForMeasuring();
|
2005-08-26 02:49:52 +00:00
|
|
|
}
|
2006-05-03 17:01:28 +00:00
|
|
|
|
2006-06-21 15:42:28 +00:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// nsSVGPathGeometryElement methods
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2013-01-12 22:22:31 +00:00
|
|
|
SVGPathElement::AttributeDefinesGeometry(const nsIAtom *aName)
|
2006-06-21 15:42:28 +00:00
|
|
|
{
|
2011-05-01 18:26:20 +00:00
|
|
|
return aName == nsGkAtoms::d ||
|
|
|
|
aName == nsGkAtoms::pathLength;
|
2006-06-21 15:42:28 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2013-01-12 22:22:31 +00:00
|
|
|
SVGPathElement::IsMarkable()
|
2006-06-21 15:42:28 +00:00
|
|
|
{
|
2011-10-17 14:59:28 +00:00
|
|
|
return true;
|
2006-06-21 15:42:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-01-12 22:22:31 +00:00
|
|
|
SVGPathElement::GetMarkPoints(nsTArray<nsSVGMark> *aMarks)
|
2007-07-02 09:54:11 +00:00
|
|
|
{
|
2010-11-08 15:07:00 +00:00
|
|
|
mD.GetAnimValue().GetMarkerPositioningData(aMarks);
|
2006-06-21 15:42:28 +00:00
|
|
|
}
|
|
|
|
|
2014-03-19 01:13:19 +00:00
|
|
|
float
|
2013-01-12 22:22:31 +00:00
|
|
|
SVGPathElement::GetPathLengthScale(PathLengthScaleForType aFor)
|
2011-05-01 18:26:20 +00:00
|
|
|
{
|
2011-11-21 21:22:19 +00:00
|
|
|
NS_ABORT_IF_FALSE(aFor == eForTextPath || aFor == eForStroking,
|
|
|
|
"Unknown enum");
|
2011-05-01 18:26:20 +00:00
|
|
|
if (mPathLength.IsExplicitlySet()) {
|
2011-11-21 21:22:19 +00:00
|
|
|
float authorsPathLengthEstimate = mPathLength.GetAnimValue();
|
|
|
|
if (authorsPathLengthEstimate > 0) {
|
2014-10-04 11:13:30 +00:00
|
|
|
RefPtr<Path> path = GetOrBuildPathForMeasuring();
|
2014-07-03 18:50:42 +00:00
|
|
|
if (!path) {
|
|
|
|
// The path is empty or invalid so its length must be zero and
|
|
|
|
// we know that 0 / authorsPathLengthEstimate = 0.
|
|
|
|
return 0.0;
|
|
|
|
}
|
2011-11-21 21:22:19 +00:00
|
|
|
if (aFor == eForTextPath) {
|
|
|
|
// For textPath, a transform on the referenced path affects the
|
|
|
|
// textPath layout, so when calculating the actual path length
|
|
|
|
// we need to take that into account.
|
2013-12-26 20:13:57 +00:00
|
|
|
gfxMatrix matrix = PrependLocalTransformsTo(gfxMatrix());
|
2013-11-18 01:29:06 +00:00
|
|
|
if (!matrix.IsIdentity()) {
|
2013-12-26 20:13:57 +00:00
|
|
|
RefPtr<PathBuilder> builder =
|
|
|
|
path->TransformedCopyToBuilder(ToMatrix(matrix));
|
2013-11-18 01:29:06 +00:00
|
|
|
path = builder->Finish();
|
|
|
|
}
|
2011-11-21 21:22:19 +00:00
|
|
|
}
|
2014-07-03 18:50:42 +00:00
|
|
|
return path->ComputeLength() / authorsPathLengthEstimate;
|
2011-05-01 18:26:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return 1.0;
|
|
|
|
}
|
2013-01-12 22:22:31 +00:00
|
|
|
|
2013-11-02 11:10:38 +00:00
|
|
|
TemporaryRef<Path>
|
2014-07-05 20:53:04 +00:00
|
|
|
SVGPathElement::BuildPath(PathBuilder* aBuilder)
|
2013-11-02 11:10:38 +00:00
|
|
|
{
|
|
|
|
// The Moz2D PathBuilder that our SVGPathData will be using only cares about
|
|
|
|
// the fill rule. However, in order to fulfill the requirements of the SVG
|
|
|
|
// spec regarding zero length sub-paths when square line caps are in use,
|
|
|
|
// SVGPathData needs to know our stroke-linecap style and, if "square", then
|
|
|
|
// also our stroke width. See the comment for
|
|
|
|
// ApproximateZeroLengthSubpathSquareCaps for more info.
|
|
|
|
|
|
|
|
uint8_t strokeLineCap = NS_STYLE_STROKE_LINECAP_BUTT;
|
|
|
|
Float strokeWidth = 0;
|
|
|
|
|
|
|
|
nsRefPtr<nsStyleContext> styleContext =
|
|
|
|
nsComputedDOMStyle::GetStyleContextForElementNoFlush(this, nullptr, nullptr);
|
|
|
|
if (styleContext) {
|
|
|
|
const nsStyleSVG* style = styleContext->StyleSVG();
|
|
|
|
// Note: the path that we return may be used for hit-testing, and SVG
|
|
|
|
// exposes hit-testing of strokes that are not actually painted. For that
|
|
|
|
// reason we do not check for eStyleSVGPaintType_None or check the stroke
|
|
|
|
// opacity here.
|
2014-10-03 08:50:42 +00:00
|
|
|
if (style->mStrokeLinecap != NS_STYLE_STROKE_LINECAP_BUTT) {
|
2013-11-02 11:10:38 +00:00
|
|
|
strokeLineCap = style->mStrokeLinecap;
|
2014-07-05 20:53:04 +00:00
|
|
|
strokeWidth = SVGContentUtils::GetStrokeWidth(this, styleContext, nullptr);
|
2013-11-02 11:10:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-04 11:13:30 +00:00
|
|
|
return mD.GetAnimValue().BuildPath(aBuilder, strokeLineCap, strokeWidth);
|
2013-11-02 11:10:38 +00:00
|
|
|
}
|
|
|
|
|
2013-01-12 22:22:31 +00:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|