Line data Source code
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/. */
6 :
7 : #ifndef mozilla_dom_SVGFEDistantLightElement_h
8 : #define mozilla_dom_SVGFEDistantLightElement_h
9 :
10 : #include "nsSVGFilters.h"
11 : #include "nsSVGNumber2.h"
12 :
13 : nsresult NS_NewSVGFEDistantLightElement(nsIContent **aResult,
14 : already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
15 :
16 : namespace mozilla {
17 : namespace dom {
18 :
19 : typedef SVGFELightElement SVGFEDistantLightElementBase;
20 :
21 0 : class SVGFEDistantLightElement : public SVGFEDistantLightElementBase
22 : {
23 : friend nsresult (::NS_NewSVGFEDistantLightElement(nsIContent **aResult,
24 : already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo));
25 : protected:
26 0 : explicit SVGFEDistantLightElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo)
27 0 : : SVGFEDistantLightElementBase(aNodeInfo)
28 : {
29 0 : }
30 : virtual JSObject* WrapNode(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
31 :
32 : public:
33 : virtual AttributeMap ComputeLightAttributes(nsSVGFilterInstance* aInstance) override;
34 : virtual bool AttributeAffectsRendering(
35 : int32_t aNameSpaceID, nsIAtom* aAttribute) const override;
36 :
37 : virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult,
38 : bool aPreallocateChildren) const override;
39 :
40 : // WebIDL
41 : already_AddRefed<SVGAnimatedNumber> Azimuth();
42 : already_AddRefed<SVGAnimatedNumber> Elevation();
43 :
44 : protected:
45 : virtual NumberAttributesInfo GetNumberInfo() override;
46 :
47 : enum { AZIMUTH, ELEVATION };
48 : nsSVGNumber2 mNumberAttributes[2];
49 : static NumberInfo sNumberInfo[2];
50 : };
51 :
52 : } // namespace dom
53 : } // namespace mozilla
54 :
55 : #endif // mozilla_dom_SVGFEDistantLightElement_h
|