From 5f8de423f190bbb79a62f804151bc24824fa32d8 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Fri, 2 Feb 2018 04:16:08 -0500 Subject: Add m-esr52 at 52.6.0 --- dom/svg/SVGGradientElement.h | 154 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 154 insertions(+) create mode 100644 dom/svg/SVGGradientElement.h (limited to 'dom/svg/SVGGradientElement.h') diff --git a/dom/svg/SVGGradientElement.h b/dom/svg/SVGGradientElement.h new file mode 100644 index 000000000..7b2c6b220 --- /dev/null +++ b/dom/svg/SVGGradientElement.h @@ -0,0 +1,154 @@ +/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* vim: set ts=8 sts=2 et sw=2 tw=80: */ +/* 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/. */ + +#ifndef __NS_SVGGRADIENTELEMENT_H__ +#define __NS_SVGGRADIENTELEMENT_H__ + +#include "nsAutoPtr.h" +#include "nsSVGAnimatedTransformList.h" +#include "nsSVGElement.h" +#include "nsSVGLength2.h" +#include "nsSVGEnum.h" +#include "nsSVGString.h" + +static const unsigned short SVG_SPREADMETHOD_UNKNOWN = 0; +static const unsigned short SVG_SPREADMETHOD_PAD = 1; +static const unsigned short SVG_SPREADMETHOD_REFLECT = 2; +static const unsigned short SVG_SPREADMETHOD_REPEAT = 3; + +class nsSVGGradientFrame; +class nsSVGLinearGradientFrame; +class nsSVGRadialGradientFrame; + +nsresult +NS_NewSVGLinearGradientElement(nsIContent** aResult, + already_AddRefed&& aNodeInfo); +nsresult +NS_NewSVGRadialGradientElement(nsIContent** aResult, + already_AddRefed&& aNodeInfo); + +namespace mozilla { +namespace dom { + +class SVGAnimatedTransformList; + +//--------------------- Gradients------------------------ + +typedef nsSVGElement SVGGradientElementBase; + +class SVGGradientElement : public SVGGradientElementBase +{ + friend class ::nsSVGGradientFrame; + +protected: + explicit SVGGradientElement(already_AddRefed& aNodeInfo); + virtual JSObject* WrapNode(JSContext* aCx, JS::Handle aGivenProto) override = 0; + +public: + virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult) const override = 0; + + // nsIContent + NS_IMETHOD_(bool) IsAttributeMapped(const nsIAtom* aAttribute) const override; + + virtual nsSVGAnimatedTransformList* + GetAnimatedTransformList(uint32_t aFlags = 0) override; + virtual nsIAtom* GetTransformListAttrName() const override { + return nsGkAtoms::gradientTransform; + } + + // WebIDL + already_AddRefed GradientUnits(); + already_AddRefed GradientTransform(); + already_AddRefed SpreadMethod(); + already_AddRefed Href(); + +protected: + virtual EnumAttributesInfo GetEnumInfo() override; + virtual StringAttributesInfo GetStringInfo() override; + + enum { GRADIENTUNITS, SPREADMETHOD }; + nsSVGEnum mEnumAttributes[2]; + static nsSVGEnumMapping sSpreadMethodMap[]; + static EnumInfo sEnumInfo[2]; + + enum { HREF, XLINK_HREF }; + nsSVGString mStringAttributes[2]; + static StringInfo sStringInfo[2]; + + // SVGGradientElement values + nsAutoPtr mGradientTransform; +}; + +//---------------------Linear Gradients------------------------ + +typedef SVGGradientElement SVGLinearGradientElementBase; + +class SVGLinearGradientElement : public SVGLinearGradientElementBase +{ + friend class ::nsSVGLinearGradientFrame; + friend nsresult + (::NS_NewSVGLinearGradientElement(nsIContent** aResult, + already_AddRefed&& aNodeInfo)); + +protected: + explicit SVGLinearGradientElement(already_AddRefed& aNodeInfo); + virtual JSObject* WrapNode(JSContext* aCx, JS::Handle aGivenProto) override; + +public: + virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult) const override; + + // WebIDL + already_AddRefed X1(); + already_AddRefed Y1(); + already_AddRefed X2(); + already_AddRefed Y2(); + +protected: + + virtual LengthAttributesInfo GetLengthInfo() override; + + enum { ATTR_X1, ATTR_Y1, ATTR_X2, ATTR_Y2 }; + nsSVGLength2 mLengthAttributes[4]; + static LengthInfo sLengthInfo[4]; +}; + +//-------------------------- Radial Gradients ---------------------------- + +typedef SVGGradientElement SVGRadialGradientElementBase; + +class SVGRadialGradientElement : public SVGRadialGradientElementBase +{ + friend class ::nsSVGRadialGradientFrame; + friend nsresult + (::NS_NewSVGRadialGradientElement(nsIContent** aResult, + already_AddRefed&& aNodeInfo)); + +protected: + explicit SVGRadialGradientElement(already_AddRefed& aNodeInfo); + virtual JSObject* WrapNode(JSContext* aCx, JS::Handle aGivenProto) override; + +public: + virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult) const override; + + // WebIDL + already_AddRefed Cx(); + already_AddRefed Cy(); + already_AddRefed R(); + already_AddRefed Fx(); + already_AddRefed Fy(); +protected: + + virtual LengthAttributesInfo GetLengthInfo() override; + + enum { ATTR_CX, ATTR_CY, ATTR_R, ATTR_FX, ATTR_FY }; + nsSVGLength2 mLengthAttributes[5]; + static LengthInfo sLengthInfo[5]; +}; + +} // namespace dom +} // namespace mozilla + +#endif -- cgit v1.2.3