2013-01-06 09:32:02 +00:00
|
|
|
/* -*- 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/. */
|
|
|
|
|
|
|
|
#include "mozilla/dom/SVGCircleElement.h"
|
2013-11-02 11:10:38 +00:00
|
|
|
#include "mozilla/gfx/2D.h"
|
2013-01-06 09:32:02 +00:00
|
|
|
#include "nsGkAtoms.h"
|
|
|
|
#include "mozilla/dom/SVGCircleElementBinding.h"
|
|
|
|
|
|
|
|
NS_IMPL_NS_NEW_NAMESPACED_SVG_ELEMENT(Circle)
|
|
|
|
|
2013-11-02 11:10:38 +00:00
|
|
|
using namespace mozilla::gfx;
|
|
|
|
|
2013-01-06 09:32:02 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
JSObject*
|
2014-04-08 22:27:17 +00:00
|
|
|
SVGCircleElement::WrapNode(JSContext *aCx)
|
2013-01-06 09:32:02 +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 SVGCircleElementBinding::Wrap(aCx, this);
|
2013-01-06 09:32:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsSVGElement::LengthInfo SVGCircleElement::sLengthInfo[3] =
|
|
|
|
{
|
|
|
|
{ &nsGkAtoms::cx, 0, nsIDOMSVGLength::SVG_LENGTHTYPE_NUMBER, SVGContentUtils::X },
|
|
|
|
{ &nsGkAtoms::cy, 0, nsIDOMSVGLength::SVG_LENGTHTYPE_NUMBER, SVGContentUtils::Y },
|
|
|
|
{ &nsGkAtoms::r, 0, nsIDOMSVGLength::SVG_LENGTHTYPE_NUMBER, SVGContentUtils::XY }
|
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Implementation
|
|
|
|
|
2014-06-20 02:01:40 +00:00
|
|
|
SVGCircleElement::SVGCircleElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo)
|
2013-01-06 09:32:02 +00:00
|
|
|
: SVGCircleElementBase(aNodeInfo)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// nsIDOMNode methods
|
|
|
|
|
|
|
|
NS_IMPL_ELEMENT_CLONE_WITH_INIT(SVGCircleElement)
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
2013-01-19 20:56:00 +00:00
|
|
|
already_AddRefed<SVGAnimatedLength>
|
2013-01-06 09:32:02 +00:00
|
|
|
SVGCircleElement::Cx()
|
|
|
|
{
|
2013-01-06 09:32:02 +00:00
|
|
|
return mLengthAttributes[ATTR_CX].ToDOMAnimatedLength(this);
|
2013-01-06 09:32:02 +00:00
|
|
|
}
|
|
|
|
|
2013-01-19 20:56:00 +00:00
|
|
|
already_AddRefed<SVGAnimatedLength>
|
2013-01-06 09:32:02 +00:00
|
|
|
SVGCircleElement::Cy()
|
|
|
|
{
|
2013-01-06 09:32:02 +00:00
|
|
|
return mLengthAttributes[ATTR_CY].ToDOMAnimatedLength(this);
|
2013-01-06 09:32:02 +00:00
|
|
|
}
|
|
|
|
|
2013-01-19 20:56:00 +00:00
|
|
|
already_AddRefed<SVGAnimatedLength>
|
2013-01-06 09:32:02 +00:00
|
|
|
SVGCircleElement::R()
|
|
|
|
{
|
2013-01-06 09:32:02 +00:00
|
|
|
return mLengthAttributes[ATTR_R].ToDOMAnimatedLength(this);
|
2013-01-06 09:32:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// nsSVGElement methods
|
|
|
|
|
|
|
|
/* virtual */ bool
|
|
|
|
SVGCircleElement::HasValidDimensions() const
|
|
|
|
{
|
|
|
|
return mLengthAttributes[ATTR_R].IsExplicitlySet() &&
|
|
|
|
mLengthAttributes[ATTR_R].GetAnimValInSpecifiedUnits() > 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsSVGElement::LengthAttributesInfo
|
|
|
|
SVGCircleElement::GetLengthInfo()
|
|
|
|
{
|
|
|
|
return LengthAttributesInfo(mLengthAttributes, sLengthInfo,
|
|
|
|
ArrayLength(sLengthInfo));
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// nsSVGPathGeometryElement methods
|
|
|
|
|
2014-10-29 01:59:36 +00:00
|
|
|
bool
|
2015-02-03 18:36:32 +00:00
|
|
|
SVGCircleElement::GetGeometryBounds(
|
|
|
|
Rect* aBounds, const StrokeOptions& aStrokeOptions, const Matrix& aTransform)
|
2014-10-29 01:59:36 +00:00
|
|
|
{
|
|
|
|
float x, y, r;
|
|
|
|
GetAnimatedLengthValues(&x, &y, &r, nullptr);
|
|
|
|
|
|
|
|
if (r <= 0.f) {
|
|
|
|
// Rendering of the element is disabled
|
2015-01-21 13:09:45 +00:00
|
|
|
*aBounds = Rect(aTransform * Point(x, y), Size());
|
2014-10-29 01:59:36 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aTransform.IsRectilinear()) {
|
|
|
|
// Optimize the case where we can treat the circle as a rectangle and
|
|
|
|
// still get tight bounds.
|
2015-02-03 18:36:32 +00:00
|
|
|
if (aStrokeOptions.mLineWidth > 0.f) {
|
|
|
|
r += aStrokeOptions.mLineWidth / 2.f;
|
2014-10-29 01:59:36 +00:00
|
|
|
}
|
|
|
|
Rect rect(x - r, y - r, 2 * r, 2 * r);
|
|
|
|
*aBounds = aTransform.TransformBounds(rect);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-11-02 11:10:38 +00:00
|
|
|
TemporaryRef<Path>
|
2014-07-05 20:53:04 +00:00
|
|
|
SVGCircleElement::BuildPath(PathBuilder* aBuilder)
|
2013-11-02 11:10:38 +00:00
|
|
|
{
|
|
|
|
float x, y, r;
|
|
|
|
GetAnimatedLengthValues(&x, &y, &r, nullptr);
|
|
|
|
|
2013-11-06 10:05:18 +00:00
|
|
|
if (r <= 0.0f) {
|
|
|
|
return nullptr;
|
2013-11-02 11:10:38 +00:00
|
|
|
}
|
|
|
|
|
2014-10-04 11:13:30 +00:00
|
|
|
aBuilder->Arc(Point(x, y), r, 0, Float(2*M_PI));
|
2013-11-06 10:05:18 +00:00
|
|
|
|
2014-10-04 11:13:30 +00:00
|
|
|
return aBuilder->Finish();
|
2013-11-02 11:10:38 +00:00
|
|
|
}
|
|
|
|
|
2013-01-06 09:32:02 +00:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|