2015-05-03 19:32:37 +00: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-21 17:38:28 +00: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-14 23:40:05 +00:00
|
|
|
#ifndef DOM_SVG_SVGFEOFFSETELEMENT_H_
|
|
|
|
#define DOM_SVG_SVGFEOFFSETELEMENT_H_
|
2013-03-21 17:38:28 +00:00
|
|
|
|
2019-04-09 20:04:33 +00:00
|
|
|
#include "SVGAnimatedNumber.h"
|
2019-04-04 17:40:56 +00:00
|
|
|
#include "SVGAnimatedString.h"
|
2020-08-15 10:38:17 +00:00
|
|
|
#include "mozilla/dom/SVGFilters.h"
|
2013-03-21 17:38:28 +00:00
|
|
|
|
|
|
|
nsresult NS_NewSVGFEOffsetElement(
|
2014-06-20 02:01:40 +00:00
|
|
|
nsIContent** aResult, already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
2013-03-21 17:38:28 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2020-07-15 10:37:55 +00:00
|
|
|
using SVGFEOffsetElementBase = SVGFE;
|
2013-03-21 17:38:28 +00:00
|
|
|
|
2013-03-28 01:23:09 +00:00
|
|
|
class SVGFEOffsetElement : public SVGFEOffsetElementBase {
|
2013-03-21 17:38:28 +00:00
|
|
|
friend nsresult(::NS_NewSVGFEOffsetElement(
|
|
|
|
nsIContent** aResult,
|
2014-06-20 02:01:40 +00:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo));
|
2018-11-30 10:46:48 +00:00
|
|
|
|
2013-03-21 17:38:28 +00:00
|
|
|
protected:
|
2018-09-21 20:45:49 +00:00
|
|
|
explicit SVGFEOffsetElement(
|
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo)
|
|
|
|
: SVGFEOffsetElementBase(std::move(aNodeInfo)) {}
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual JSObject* WrapNode(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) override;
|
2013-03-21 17:38:28 +00:00
|
|
|
|
|
|
|
public:
|
2013-11-27 11:25:29 +00:00
|
|
|
virtual FilterPrimitiveDescription GetPrimitiveDescription(
|
2020-06-30 18:11:50 +00:00
|
|
|
SVGFilterInstance* aInstance, const IntRect& aFilterSubregion,
|
2014-01-08 09:30:03 +00:00
|
|
|
const nsTArray<bool>& aInputsAreTainted,
|
2015-10-18 05:24:48 +00:00
|
|
|
nsTArray<RefPtr<SourceSurface>>& aInputImages) override;
|
2013-03-21 17:38:28 +00:00
|
|
|
virtual bool AttributeAffectsRendering(int32_t aNameSpaceID,
|
2017-10-02 22:05:19 +00:00
|
|
|
nsAtom* aAttribute) const override;
|
2019-04-04 17:40:56 +00:00
|
|
|
virtual SVGAnimatedString& GetResultImageName() override {
|
2015-03-21 16:28:04 +00:00
|
|
|
return mStringAttributes[RESULT];
|
|
|
|
}
|
2018-12-21 16:24:17 +00:00
|
|
|
virtual void GetSourceImageNames(nsTArray<SVGStringInfo>& aSources) override;
|
2013-03-21 17:38:28 +00:00
|
|
|
|
2018-08-08 23:58:44 +00:00
|
|
|
virtual nsresult Clone(dom::NodeInfo*, nsINode** aResult) const override;
|
2013-03-21 17:38:28 +00:00
|
|
|
|
2013-03-21 17:38:28 +00:00
|
|
|
// WebIDL
|
2019-03-19 00:01:03 +00:00
|
|
|
already_AddRefed<DOMSVGAnimatedString> In1();
|
|
|
|
already_AddRefed<DOMSVGAnimatedNumber> Dx();
|
|
|
|
already_AddRefed<DOMSVGAnimatedNumber> Dy();
|
2013-03-21 17:38:28 +00:00
|
|
|
|
2013-03-21 17:38:28 +00:00
|
|
|
protected:
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual NumberAttributesInfo GetNumberInfo() override;
|
|
|
|
virtual StringAttributesInfo GetStringInfo() override;
|
2013-03-21 17:38:28 +00:00
|
|
|
|
|
|
|
enum { DX, DY };
|
2019-04-09 20:04:33 +00:00
|
|
|
SVGAnimatedNumber mNumberAttributes[2];
|
2013-03-21 17:38:28 +00:00
|
|
|
static NumberInfo sNumberInfo[2];
|
|
|
|
|
|
|
|
enum { RESULT, IN1 };
|
2019-04-04 17:40:56 +00:00
|
|
|
SVGAnimatedString mStringAttributes[2];
|
2013-03-21 17:38:28 +00:00
|
|
|
static StringInfo sStringInfo[2];
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2020-07-14 23:40:05 +00:00
|
|
|
#endif // DOM_SVG_SVGFEOFFSETELEMENT_H_
|