mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-06 00:10:25 +00:00
bff06425af
--HG-- rename : dom/svg/SVGBoolean.cpp => dom/svg/SVGAnimatedBoolean.cpp rename : dom/svg/SVGBoolean.h => dom/svg/SVGAnimatedBoolean.h rename : dom/svg/SVGClass.cpp => dom/svg/SVGAnimatedClass.cpp rename : dom/svg/SVGClass.h => dom/svg/SVGAnimatedClass.h rename : dom/svg/SVGEnum.cpp => dom/svg/SVGAnimatedEnumeration.cpp rename : dom/svg/SVGEnum.h => dom/svg/SVGAnimatedEnumeration.h rename : dom/svg/SVGInteger.cpp => dom/svg/SVGAnimatedInteger.cpp rename : dom/svg/SVGInteger.h => dom/svg/SVGAnimatedInteger.h rename : dom/svg/SVGIntegerPair.cpp => dom/svg/SVGAnimatedIntegerPair.cpp rename : dom/svg/SVGIntegerPair.h => dom/svg/SVGAnimatedIntegerPair.h rename : dom/svg/SVGNumberPair.cpp => dom/svg/SVGAnimatedNumberPair.cpp rename : dom/svg/SVGNumberPair.h => dom/svg/SVGAnimatedNumberPair.h rename : dom/svg/SVGOrient.cpp => dom/svg/SVGAnimatedOrient.cpp rename : dom/svg/SVGOrient.h => dom/svg/SVGAnimatedOrient.h rename : dom/svg/SVGString.cpp => dom/svg/SVGAnimatedString.cpp rename : dom/svg/SVGString.h => dom/svg/SVGAnimatedString.h rename : dom/svg/SVGViewBox.cpp => dom/svg/SVGAnimatedViewBox.cpp rename : dom/svg/SVGViewBox.h => dom/svg/SVGAnimatedViewBox.h
62 lines
2.0 KiB
C++
62 lines
2.0 KiB
C++
/* -*- 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 mozilla_dom_SVGFEFloodElement_h
|
|
#define mozilla_dom_SVGFEFloodElement_h
|
|
|
|
#include "SVGFilters.h"
|
|
|
|
nsresult NS_NewSVGFEFloodElement(
|
|
nsIContent** aResult, already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
|
|
typedef SVGFE SVGFEFloodElementBase;
|
|
|
|
class SVGFEFloodElement : public SVGFEFloodElementBase {
|
|
friend nsresult(::NS_NewSVGFEFloodElement(
|
|
nsIContent** aResult,
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo));
|
|
|
|
protected:
|
|
explicit SVGFEFloodElement(
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo)
|
|
: SVGFEFloodElementBase(std::move(aNodeInfo)) {}
|
|
virtual JSObject* WrapNode(JSContext* cx,
|
|
JS::Handle<JSObject*> aGivenProto) override;
|
|
|
|
public:
|
|
virtual bool SubregionIsUnionOfRegions() override { return false; }
|
|
|
|
virtual FilterPrimitiveDescription GetPrimitiveDescription(
|
|
nsSVGFilterInstance* aInstance, const IntRect& aFilterSubregion,
|
|
const nsTArray<bool>& aInputsAreTainted,
|
|
nsTArray<RefPtr<SourceSurface>>& aInputImages) override;
|
|
virtual SVGAnimatedString& GetResultImageName() override {
|
|
return mStringAttributes[RESULT];
|
|
}
|
|
|
|
// nsIContent interface
|
|
NS_IMETHOD_(bool) IsAttributeMapped(const nsAtom* aAttribute) const override;
|
|
|
|
virtual nsresult Clone(dom::NodeInfo*, nsINode** aResult) const override;
|
|
|
|
protected:
|
|
virtual bool ProducesSRGB() override { return true; }
|
|
|
|
virtual StringAttributesInfo GetStringInfo() override;
|
|
|
|
enum { RESULT };
|
|
SVGAnimatedString mStringAttributes[1];
|
|
static StringInfo sStringInfo[1];
|
|
};
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_dom_SVGFEFloodElement_h
|