2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2013-03-07 13:15:21 +04:00
|
|
|
/* 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/. */
|
|
|
|
|
2020-07-15 02:40:05 +03:00
|
|
|
#ifndef DOM_SVG_SVGFEMERGEELEMENT_H_
|
|
|
|
#define DOM_SVG_SVGFEMERGEELEMENT_H_
|
2013-03-07 13:15:21 +04:00
|
|
|
|
2020-08-15 13:38:17 +03:00
|
|
|
#include "mozilla/dom/SVGFilters.h"
|
2013-03-07 13:15:21 +04:00
|
|
|
|
|
|
|
nsresult NS_NewSVGFEMergeElement(
|
2014-06-20 06:01:40 +04:00
|
|
|
nsIContent** aResult, already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
2013-03-07 13:15:21 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2020-07-15 13:37:55 +03:00
|
|
|
using SVGFEMergeElementBase = SVGFE;
|
2013-03-07 13:15:21 +04:00
|
|
|
|
2013-03-28 05:23:09 +04:00
|
|
|
class SVGFEMergeElement : public SVGFEMergeElementBase {
|
2013-03-07 13:15:21 +04:00
|
|
|
friend nsresult(::NS_NewSVGFEMergeElement(
|
|
|
|
nsIContent** aResult,
|
2014-06-20 06:01:40 +04:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo));
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2013-03-07 13:15:21 +04:00
|
|
|
protected:
|
2018-09-21 23:45:49 +03:00
|
|
|
explicit SVGFEMergeElement(
|
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo)
|
|
|
|
: SVGFEMergeElementBase(std::move(aNodeInfo)) {}
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapNode(JSContext* cx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) override;
|
2018-11-30 13:46:48 +03:00
|
|
|
|
|
|
|
public:
|
2013-11-27 15:25:29 +04:00
|
|
|
virtual FilterPrimitiveDescription GetPrimitiveDescription(
|
2020-06-30 21:11:50 +03:00
|
|
|
SVGFilterInstance* aInstance, const IntRect& aFilterSubregion,
|
2014-01-08 13:30:03 +04:00
|
|
|
const nsTArray<bool>& aInputsAreTainted,
|
2015-10-18 08:24:48 +03:00
|
|
|
nsTArray<RefPtr<SourceSurface>>& aInputImages) override;
|
2019-04-04 20:40:56 +03:00
|
|
|
virtual SVGAnimatedString& GetResultImageName() override {
|
2015-03-21 19:28:04 +03:00
|
|
|
return mStringAttributes[RESULT];
|
2013-03-07 13:15:21 +04:00
|
|
|
}
|
2018-12-21 19:24:17 +03:00
|
|
|
virtual void GetSourceImageNames(nsTArray<SVGStringInfo>& aSources) override;
|
2013-03-07 13:15:21 +04:00
|
|
|
|
|
|
|
// nsIContent
|
2018-08-09 02:58:44 +03:00
|
|
|
virtual nsresult Clone(dom::NodeInfo*, nsINode** aResult) const override;
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2013-03-07 13:15:21 +04:00
|
|
|
protected:
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual StringAttributesInfo GetStringInfo() override;
|
2013-03-07 13:15:21 +04:00
|
|
|
|
|
|
|
enum { RESULT };
|
2019-04-04 20:40:56 +03:00
|
|
|
SVGAnimatedString mStringAttributes[1];
|
2013-03-07 13:15:21 +04:00
|
|
|
static StringInfo sStringInfo[1];
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2020-07-15 02:40:05 +03:00
|
|
|
#endif // DOM_SVG_SVGFEMERGEELEMENT_H_
|