/* -*- 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/SVGRectElement.h" #include "nsGkAtoms.h" #include "mozilla/dom/SVGRectElementBinding.h" #include "mozilla/gfx/2D.h" #include "mozilla/gfx/PathHelpers.h" #include NS_IMPL_NS_NEW_NAMESPACED_SVG_ELEMENT(Rect) using namespace mozilla::gfx; namespace mozilla { namespace dom { class SVGAnimatedLength; JSObject* SVGRectElement::WrapNode(JSContext *aCx) { return SVGRectElementBinding::Wrap(aCx, this); } nsSVGElement::LengthInfo SVGRectElement::sLengthInfo[6] = { { &nsGkAtoms::x, 0, nsIDOMSVGLength::SVG_LENGTHTYPE_NUMBER, SVGContentUtils::X }, { &nsGkAtoms::y, 0, nsIDOMSVGLength::SVG_LENGTHTYPE_NUMBER, SVGContentUtils::Y }, { &nsGkAtoms::width, 0, nsIDOMSVGLength::SVG_LENGTHTYPE_NUMBER, SVGContentUtils::X }, { &nsGkAtoms::height, 0, nsIDOMSVGLength::SVG_LENGTHTYPE_NUMBER, SVGContentUtils::Y }, { &nsGkAtoms::rx, 0, nsIDOMSVGLength::SVG_LENGTHTYPE_NUMBER, SVGContentUtils::X }, { &nsGkAtoms::ry, 0, nsIDOMSVGLength::SVG_LENGTHTYPE_NUMBER, SVGContentUtils::Y } }; //---------------------------------------------------------------------- // Implementation SVGRectElement::SVGRectElement(already_AddRefed& aNodeInfo) : SVGRectElementBase(aNodeInfo) { } //---------------------------------------------------------------------- // nsIDOMNode methods NS_IMPL_ELEMENT_CLONE_WITH_INIT(SVGRectElement) //---------------------------------------------------------------------- already_AddRefed SVGRectElement::X() { return mLengthAttributes[ATTR_X].ToDOMAnimatedLength(this); } already_AddRefed SVGRectElement::Y() { return mLengthAttributes[ATTR_Y].ToDOMAnimatedLength(this); } already_AddRefed SVGRectElement::Width() { return mLengthAttributes[ATTR_WIDTH].ToDOMAnimatedLength(this); } already_AddRefed SVGRectElement::Height() { return mLengthAttributes[ATTR_HEIGHT].ToDOMAnimatedLength(this); } already_AddRefed SVGRectElement::Rx() { return mLengthAttributes[ATTR_RX].ToDOMAnimatedLength(this); } already_AddRefed SVGRectElement::Ry() { return mLengthAttributes[ATTR_RY].ToDOMAnimatedLength(this); } //---------------------------------------------------------------------- // nsSVGElement methods /* virtual */ bool SVGRectElement::HasValidDimensions() const { return mLengthAttributes[ATTR_WIDTH].IsExplicitlySet() && mLengthAttributes[ATTR_WIDTH].GetAnimValInSpecifiedUnits() > 0 && mLengthAttributes[ATTR_HEIGHT].IsExplicitlySet() && mLengthAttributes[ATTR_HEIGHT].GetAnimValInSpecifiedUnits() > 0; } nsSVGElement::LengthAttributesInfo SVGRectElement::GetLengthInfo() { return LengthAttributesInfo(mLengthAttributes, sLengthInfo, ArrayLength(sLengthInfo)); } //---------------------------------------------------------------------- // nsSVGPathGeometryElement methods void SVGRectElement::GetAsSimplePath(SimplePath* aSimplePath) { float x, y, width, height, rx, ry; GetAnimatedLengthValues(&x, &y, &width, &height, &rx, &ry, nullptr); if (width <= 0 || height <= 0) { aSimplePath->Reset(); return; } rx = std::max(rx, 0.0f); ry = std::max(ry, 0.0f); if (rx != 0 || ry != 0) { aSimplePath->Reset(); return; } aSimplePath->SetRect(x, y, width, height); } TemporaryRef SVGRectElement::BuildPath(PathBuilder* aBuilder) { float x, y, width, height, rx, ry; GetAnimatedLengthValues(&x, &y, &width, &height, &rx, &ry, nullptr); if (width <= 0 || height <= 0) { return nullptr; } rx = std::max(rx, 0.0f); ry = std::max(ry, 0.0f); if (rx == 0 && ry == 0) { // Optimization for the no rounded corners case. Rect r(x, y, width, height); aBuilder->MoveTo(r.TopLeft()); aBuilder->LineTo(r.TopRight()); aBuilder->LineTo(r.BottomRight()); aBuilder->LineTo(r.BottomLeft()); aBuilder->Close(); } else { // If either the 'rx' or the 'ry' attribute isn't set, then we have to // set it to the value of the other: bool hasRx = mLengthAttributes[ATTR_RX].IsExplicitlySet(); bool hasRy = mLengthAttributes[ATTR_RY].IsExplicitlySet(); MOZ_ASSERT(hasRx || hasRy); if (hasRx && !hasRy) { ry = rx; } else if (hasRy && !hasRx) { rx = ry; } // Clamp rx and ry to half the rect's width and height respectively: rx = std::min(rx, width / 2); ry = std::min(ry, height / 2); Size cornerRadii(rx, ry); Size radii[] = { cornerRadii, cornerRadii, cornerRadii, cornerRadii }; AppendRoundedRectToPath(aBuilder, Rect(x, y, width, height), radii); } return aBuilder->Finish(); } } // namespace dom } // namespace mozilla