1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef DOM_SVG_SVGFESPOTLIGHTELEMENT_H_
8 #define DOM_SVG_SVGFESPOTLIGHTELEMENT_H_
10 #include "SVGAnimatedNumber.h"
11 #include "mozilla/dom/SVGFilters.h"
13 nsresult
NS_NewSVGFESpotLightElement(
14 nsIContent
** aResult
, already_AddRefed
<mozilla::dom::NodeInfo
>&& aNodeInfo
);
16 namespace mozilla::dom
{
18 using SVGFESpotLightElementBase
= SVGFELightElement
;
20 class SVGFESpotLightElement final
: public SVGFESpotLightElementBase
{
21 friend nsresult(::NS_NewSVGFESpotLightElement(
23 already_AddRefed
<mozilla::dom::NodeInfo
>&& aNodeInfo
));
24 friend class SVGFELightingElement
;
27 explicit SVGFESpotLightElement(
28 already_AddRefed
<mozilla::dom::NodeInfo
>&& aNodeInfo
)
29 : SVGFESpotLightElementBase(std::move(aNodeInfo
)) {}
30 JSObject
* WrapNode(JSContext
* aCx
,
31 JS::Handle
<JSObject
*> aGivenProto
) override
;
34 mozilla::gfx::LightType
ComputeLightAttributes(
35 SVGFilterInstance
* aInstance
, nsTArray
<float>& aFloatAttributes
) override
;
36 bool AttributeAffectsRendering(int32_t aNameSpaceID
,
37 nsAtom
* aAttribute
) const override
;
39 nsresult
Clone(dom::NodeInfo
*, nsINode
** aResult
) const override
;
42 already_AddRefed
<DOMSVGAnimatedNumber
> X();
43 already_AddRefed
<DOMSVGAnimatedNumber
> Y();
44 already_AddRefed
<DOMSVGAnimatedNumber
> Z();
45 already_AddRefed
<DOMSVGAnimatedNumber
> PointsAtX();
46 already_AddRefed
<DOMSVGAnimatedNumber
> PointsAtY();
47 already_AddRefed
<DOMSVGAnimatedNumber
> PointsAtZ();
48 already_AddRefed
<DOMSVGAnimatedNumber
> SpecularExponent();
49 already_AddRefed
<DOMSVGAnimatedNumber
> LimitingConeAngle();
52 NumberAttributesInfo
GetNumberInfo() override
;
64 SVGAnimatedNumber mNumberAttributes
[8];
65 static NumberInfo sNumberInfo
[8];
68 } // namespace mozilla::dom
70 #endif // DOM_SVG_SVGFESPOTLIGHTELEMENT_H_