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-19 17:43:31 +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/. */
|
|
|
|
|
|
|
|
#ifndef mozilla_dom_SVGFEGaussianBlurElement_h
|
|
|
|
#define mozilla_dom_SVGFEGaussianBlurElement_h
|
|
|
|
|
|
|
|
#include "nsSVGFilters.h"
|
2013-03-19 17:43:31 +00:00
|
|
|
#include "nsSVGNumberPair.h"
|
|
|
|
#include "nsSVGString.h"
|
|
|
|
|
|
|
|
nsresult NS_NewSVGFEGaussianBlurElement(nsIContent **aResult,
|
2014-06-20 02:01:40 +00:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
2013-03-19 17:43:31 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2013-03-19 17:43:31 +00:00
|
|
|
typedef nsSVGFE SVGFEGaussianBlurElementBase;
|
2013-03-19 17:43:31 +00:00
|
|
|
|
2013-03-28 01:23:09 +00:00
|
|
|
class SVGFEGaussianBlurElement : public SVGFEGaussianBlurElementBase
|
2013-03-19 17:43:31 +00:00
|
|
|
{
|
2013-03-19 17:43:31 +00:00
|
|
|
friend nsresult (::NS_NewSVGFEGaussianBlurElement(nsIContent **aResult,
|
2014-06-20 02:01:40 +00:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo));
|
2013-03-19 17:43:31 +00:00
|
|
|
protected:
|
2014-09-01 01:08:04 +00:00
|
|
|
explicit SVGFEGaussianBlurElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo)
|
2013-03-19 17:43:31 +00:00
|
|
|
: SVGFEGaussianBlurElementBase(aNodeInfo)
|
|
|
|
{
|
|
|
|
}
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual JSObject* WrapNode(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2013-03-19 17:43:31 +00:00
|
|
|
|
|
|
|
public:
|
2013-11-27 11:25:29 +00:00
|
|
|
virtual FilterPrimitiveDescription
|
|
|
|
GetPrimitiveDescription(nsSVGFilterInstance* 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-19 17:43:31 +00:00
|
|
|
virtual bool AttributeAffectsRendering(
|
2015-03-21 16:28:04 +00:00
|
|
|
int32_t aNameSpaceID, nsIAtom* aAttribute) const override;
|
|
|
|
virtual nsSVGString& GetResultImageName() override { return mStringAttributes[RESULT]; }
|
|
|
|
virtual void GetSourceImageNames(nsTArray<nsSVGStringInfo >& aSources) override;
|
2013-03-19 17:43:31 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult) const override;
|
2013-03-19 17:43:31 +00:00
|
|
|
|
|
|
|
// WebIDL
|
2013-06-14 22:37:27 +00:00
|
|
|
already_AddRefed<SVGAnimatedString> In1();
|
2013-07-01 07:03:04 +00:00
|
|
|
already_AddRefed<SVGAnimatedNumber> StdDeviationX();
|
|
|
|
already_AddRefed<SVGAnimatedNumber> StdDeviationY();
|
2013-03-19 17:43:31 +00:00
|
|
|
void SetStdDeviation(float stdDeviationX, float stdDeviationY);
|
|
|
|
|
2013-03-19 17:43:31 +00:00
|
|
|
protected:
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual NumberPairAttributesInfo GetNumberPairInfo() override;
|
|
|
|
virtual StringAttributesInfo GetStringInfo() override;
|
2013-03-19 17:43:31 +00:00
|
|
|
|
|
|
|
enum { STD_DEV };
|
|
|
|
nsSVGNumberPair mNumberPairAttributes[1];
|
|
|
|
static NumberPairInfo sNumberPairInfo[1];
|
|
|
|
|
|
|
|
enum { RESULT, IN1 };
|
|
|
|
nsSVGString mStringAttributes[2];
|
|
|
|
static StringInfo sStringInfo[2];
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_SVGFEGaussianBlurElement_h
|