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_SVGFETileElement_h
8 : #define mozilla_dom_SVGFETileElement_h
9 :
10 : #include "nsSVGFilters.h"
11 :
12 : nsresult NS_NewSVGFETileElement(nsIContent **aResult,
13 : already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
14 :
15 : namespace mozilla {
16 : namespace dom {
17 :
18 : typedef nsSVGFE SVGFETileElementBase;
19 :
20 0 : class SVGFETileElement : public SVGFETileElementBase
21 : {
22 : friend nsresult (::NS_NewSVGFETileElement(nsIContent **aResult,
23 : already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo));
24 : protected:
25 0 : explicit SVGFETileElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo)
26 0 : : SVGFETileElementBase(aNodeInfo)
27 : {
28 0 : }
29 : virtual JSObject* WrapNode(JSContext *cx, JS::Handle<JSObject*> aGivenProto) override;
30 :
31 : public:
32 0 : virtual bool SubregionIsUnionOfRegions() override { return false; }
33 :
34 : virtual FilterPrimitiveDescription
35 : GetPrimitiveDescription(nsSVGFilterInstance* aInstance,
36 : const IntRect& aFilterSubregion,
37 : const nsTArray<bool>& aInputsAreTainted,
38 : nsTArray<RefPtr<SourceSurface>>& aInputImages) override;
39 : virtual bool AttributeAffectsRendering(
40 : int32_t aNameSpaceID, nsIAtom* aAttribute) const override;
41 0 : virtual nsSVGString& GetResultImageName() override { return mStringAttributes[RESULT]; }
42 : virtual void GetSourceImageNames(nsTArray<nsSVGStringInfo>& aSources) override;
43 :
44 : virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult,
45 : bool aPreallocateChildren) const override;
46 :
47 : // WebIDL
48 : already_AddRefed<SVGAnimatedString> In1();
49 :
50 : protected:
51 : virtual StringAttributesInfo GetStringInfo() override;
52 :
53 : enum { RESULT, IN1 };
54 : nsSVGString mStringAttributes[2];
55 : static StringInfo sStringInfo[2];
56 : };
57 :
58 : } // namespace dom
59 : } // namespace mozilla
60 :
61 : #endif // mozilla_dom_SVGFETileElement_h
|