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: */
|
2014-02-08 20:49:46 +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/. */
|
|
|
|
|
|
|
|
#ifndef mozilla_dom_SVGFEDropShadowElement_h
|
|
|
|
#define mozilla_dom_SVGFEDropShadowElement_h
|
|
|
|
|
2019-04-09 23:04:33 +03:00
|
|
|
#include "SVGAnimatedNumber.h"
|
2019-04-04 20:40:56 +03:00
|
|
|
#include "SVGAnimatedNumberPair.h"
|
|
|
|
#include "SVGAnimatedString.h"
|
|
|
|
#include "SVGFilters.h"
|
2014-02-08 20:49:46 +04:00
|
|
|
|
|
|
|
nsresult NS_NewSVGFEDropShadowElement(
|
2014-06-20 06:01:40 +04:00
|
|
|
nsIContent** aResult, already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
2014-02-08 20:49:46 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2018-12-21 15:32:35 +03:00
|
|
|
typedef SVGFE SVGFEDropShadowElementBase;
|
2014-02-08 20:49:46 +04:00
|
|
|
|
|
|
|
class SVGFEDropShadowElement : public SVGFEDropShadowElementBase {
|
|
|
|
friend nsresult(::NS_NewSVGFEDropShadowElement(
|
|
|
|
nsIContent** aResult,
|
2014-06-20 06:01:40 +04:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo));
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2014-02-08 20:49:46 +04:00
|
|
|
protected:
|
2018-09-21 23:45:49 +03:00
|
|
|
explicit SVGFEDropShadowElement(
|
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo)
|
|
|
|
: SVGFEDropShadowElementBase(std::move(aNodeInfo)) {}
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapNode(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) override;
|
2018-11-30 13:46:48 +03:00
|
|
|
|
|
|
|
public:
|
2014-02-08 20:49:46 +04:00
|
|
|
virtual FilterPrimitiveDescription GetPrimitiveDescription(
|
|
|
|
nsSVGFilterInstance* aInstance, const IntRect& aFilterSubregion,
|
|
|
|
const nsTArray<bool>& aInputsAreTainted,
|
2015-10-18 08:24:48 +03:00
|
|
|
nsTArray<RefPtr<SourceSurface>>& aInputImages) override;
|
2014-02-08 20:49:46 +04:00
|
|
|
virtual bool AttributeAffectsRendering(int32_t aNameSpaceID,
|
2017-10-03 01:05:19 +03:00
|
|
|
nsAtom* aAttribute) const override;
|
2019-04-04 20:40:56 +03:00
|
|
|
virtual SVGAnimatedString& GetResultImageName() override {
|
2015-03-21 19:28:04 +03:00
|
|
|
return mStringAttributes[RESULT];
|
2014-02-08 20:49:46 +04:00
|
|
|
}
|
2018-12-21 19:24:17 +03:00
|
|
|
virtual void GetSourceImageNames(nsTArray<SVGStringInfo>& aSources) override;
|
2014-02-08 20:49:46 +04:00
|
|
|
|
|
|
|
// nsIContent interface
|
2017-10-03 01:05:19 +03:00
|
|
|
NS_IMETHOD_(bool) IsAttributeMapped(const nsAtom* aAttribute) const override;
|
2014-02-08 20:49:46 +04:00
|
|
|
|
2018-08-09 02:58:44 +03:00
|
|
|
virtual nsresult Clone(dom::NodeInfo*, nsINode** aResult) const override;
|
2014-02-08 20:49:46 +04:00
|
|
|
|
|
|
|
// WebIDL
|
2019-03-19 03:01:03 +03:00
|
|
|
already_AddRefed<DOMSVGAnimatedString> In1();
|
|
|
|
already_AddRefed<DOMSVGAnimatedNumber> Dx();
|
|
|
|
already_AddRefed<DOMSVGAnimatedNumber> Dy();
|
|
|
|
already_AddRefed<DOMSVGAnimatedNumber> StdDeviationX();
|
|
|
|
already_AddRefed<DOMSVGAnimatedNumber> StdDeviationY();
|
2014-02-08 20:49:46 +04:00
|
|
|
void SetStdDeviation(float stdDeviationX, float stdDeviationY);
|
|
|
|
|
|
|
|
protected:
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual NumberAttributesInfo GetNumberInfo() override;
|
|
|
|
virtual NumberPairAttributesInfo GetNumberPairInfo() override;
|
|
|
|
virtual StringAttributesInfo GetStringInfo() override;
|
2014-02-08 20:49:46 +04:00
|
|
|
|
|
|
|
enum { DX, DY };
|
2019-04-09 23:04:33 +03:00
|
|
|
SVGAnimatedNumber mNumberAttributes[2];
|
2014-02-08 20:49:46 +04:00
|
|
|
static NumberInfo sNumberInfo[2];
|
|
|
|
|
|
|
|
enum { STD_DEV };
|
2019-04-04 20:40:56 +03:00
|
|
|
SVGAnimatedNumberPair mNumberPairAttributes[1];
|
2014-02-08 20:49:46 +04:00
|
|
|
static NumberPairInfo sNumberPairInfo[1];
|
|
|
|
|
|
|
|
enum { RESULT, IN1 };
|
2019-04-04 20:40:56 +03:00
|
|
|
SVGAnimatedString mStringAttributes[2];
|
2014-02-08 20:49:46 +04:00
|
|
|
static StringInfo sStringInfo[2];
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_SVGFEDropShadowElement_h
|