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_SVGFEDisplacementMapElement_h
8 : #define mozilla_dom_SVGFEDisplacementMapElement_h
9 :
10 : #include "nsSVGEnum.h"
11 : #include "nsSVGFilters.h"
12 :
13 : nsresult NS_NewSVGFEDisplacementMapElement(nsIContent **aResult,
14 : already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
15 :
16 : namespace mozilla {
17 : namespace dom {
18 :
19 : typedef nsSVGFE SVGFEDisplacementMapElementBase;
20 :
21 0 : class SVGFEDisplacementMapElement : public SVGFEDisplacementMapElementBase
22 : {
23 : protected:
24 : friend nsresult (::NS_NewSVGFEDisplacementMapElement(nsIContent **aResult,
25 : already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo));
26 0 : explicit SVGFEDisplacementMapElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo)
27 0 : : SVGFEDisplacementMapElementBase(aNodeInfo)
28 : {
29 0 : }
30 : virtual JSObject* WrapNode(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
31 :
32 : public:
33 : virtual FilterPrimitiveDescription
34 : GetPrimitiveDescription(nsSVGFilterInstance* aInstance,
35 : const IntRect& aFilterSubregion,
36 : const nsTArray<bool>& aInputsAreTainted,
37 : nsTArray<RefPtr<SourceSurface>>& aInputImages) override;
38 : virtual bool AttributeAffectsRendering(
39 : int32_t aNameSpaceID, nsIAtom* aAttribute) const override;
40 0 : virtual nsSVGString& GetResultImageName() override { return mStringAttributes[RESULT]; }
41 : virtual void GetSourceImageNames(nsTArray<nsSVGStringInfo>& aSources) override;
42 :
43 : virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult,
44 : bool aPreallocateChildren) const override;
45 :
46 : // WebIDL
47 : already_AddRefed<SVGAnimatedString> In1();
48 : already_AddRefed<SVGAnimatedString> In2();
49 : already_AddRefed<SVGAnimatedNumber> Scale();
50 : already_AddRefed<SVGAnimatedEnumeration> XChannelSelector();
51 : already_AddRefed<SVGAnimatedEnumeration> YChannelSelector();
52 :
53 : protected:
54 0 : virtual bool OperatesOnSRGB(int32_t aInputIndex,
55 : bool aInputIsAlreadySRGB) override {
56 0 : switch (aInputIndex) {
57 : case 0:
58 0 : return aInputIsAlreadySRGB;
59 : case 1:
60 0 : return SVGFEDisplacementMapElementBase::OperatesOnSRGB(aInputIndex, aInputIsAlreadySRGB);
61 : default:
62 0 : NS_ERROR("Will not give correct color model");
63 0 : return false;
64 : }
65 : }
66 :
67 : virtual NumberAttributesInfo GetNumberInfo() override;
68 : virtual EnumAttributesInfo GetEnumInfo() override;
69 : virtual StringAttributesInfo GetStringInfo() override;
70 :
71 : enum { SCALE };
72 : nsSVGNumber2 mNumberAttributes[1];
73 : static NumberInfo sNumberInfo[1];
74 :
75 : enum { CHANNEL_X, CHANNEL_Y };
76 : nsSVGEnum mEnumAttributes[2];
77 : static nsSVGEnumMapping sChannelMap[];
78 : static EnumInfo sEnumInfo[2];
79 :
80 : enum { RESULT, IN1, IN2 };
81 : nsSVGString mStringAttributes[3];
82 : static StringInfo sStringInfo[3];
83 : };
84 :
85 : } // namespace dom
86 : } // namespace mozilla
87 :
88 : #endif // mozilla_dom_SVGFEDisplacementMapElement_h
|