2013-03-26 16:43:32 -07:00
|
|
|
/* a*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* 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_SVGFEMorphologyElement_h
|
|
|
|
#define mozilla_dom_SVGFEMorphologyElement_h
|
|
|
|
|
2013-03-26 16:43:33 -07:00
|
|
|
#include "nsSVGEnum.h"
|
2013-03-26 16:43:32 -07:00
|
|
|
#include "nsSVGFilters.h"
|
2013-03-26 16:43:33 -07:00
|
|
|
#include "nsSVGNumberPair.h"
|
|
|
|
#include "nsSVGString.h"
|
|
|
|
|
|
|
|
nsresult NS_NewSVGFEMorphologyElement(nsIContent **aResult,
|
2014-06-19 19:01:40 -07:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
2013-03-26 16:43:32 -07:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2013-03-26 16:43:33 -07:00
|
|
|
typedef nsSVGFE SVGFEMorphologyElementBase;
|
2013-03-26 16:43:32 -07:00
|
|
|
|
2013-03-27 18:23:09 -07:00
|
|
|
class SVGFEMorphologyElement : public SVGFEMorphologyElementBase
|
2013-03-26 16:43:32 -07:00
|
|
|
{
|
2013-03-26 16:43:33 -07:00
|
|
|
friend nsresult (::NS_NewSVGFEMorphologyElement(nsIContent **aResult,
|
2014-06-19 19:01:40 -07:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo));
|
2013-03-26 16:43:32 -07:00
|
|
|
protected:
|
2014-08-31 18:08:04 -07:00
|
|
|
explicit SVGFEMorphologyElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo)
|
2013-03-26 16:43:33 -07:00
|
|
|
: SVGFEMorphologyElementBase(aNodeInfo)
|
|
|
|
{
|
|
|
|
}
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual JSObject* WrapNode(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2013-03-26 16:43:32 -07:00
|
|
|
|
|
|
|
public:
|
2013-11-27 03:25:29 -08:00
|
|
|
virtual FilterPrimitiveDescription
|
|
|
|
GetPrimitiveDescription(nsSVGFilterInstance* aInstance,
|
|
|
|
const IntRect& aFilterSubregion,
|
2014-01-08 01:30:03 -08:00
|
|
|
const nsTArray<bool>& aInputsAreTainted,
|
2015-03-21 09:28:04 -07:00
|
|
|
nsTArray<mozilla::RefPtr<SourceSurface>>& aInputImages) override;
|
2013-03-26 16:43:32 -07:00
|
|
|
virtual bool AttributeAffectsRendering(
|
2015-03-21 09:28:04 -07:00
|
|
|
int32_t aNameSpaceID, nsIAtom* aAttribute) const override;
|
|
|
|
virtual nsSVGString& GetResultImageName() override { return mStringAttributes[RESULT]; }
|
|
|
|
virtual void GetSourceImageNames(nsTArray<nsSVGStringInfo>& aSources) override;
|
2013-03-26 16:43:32 -07:00
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult) const override;
|
2013-03-26 16:43:32 -07:00
|
|
|
|
2013-03-26 16:43:33 -07:00
|
|
|
// WebIDL
|
2013-06-14 15:37:27 -07:00
|
|
|
already_AddRefed<SVGAnimatedString> In1();
|
2013-07-01 00:02:46 -07:00
|
|
|
already_AddRefed<SVGAnimatedEnumeration> Operator();
|
2013-07-01 00:03:04 -07:00
|
|
|
already_AddRefed<SVGAnimatedNumber> RadiusX();
|
|
|
|
already_AddRefed<SVGAnimatedNumber> RadiusY();
|
2013-03-26 16:43:33 -07:00
|
|
|
void SetRadius(float rx, float ry);
|
|
|
|
|
2013-03-26 16:43:32 -07:00
|
|
|
protected:
|
|
|
|
void GetRXY(int32_t *aRX, int32_t *aRY, const nsSVGFilterInstance& aInstance);
|
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual NumberPairAttributesInfo GetNumberPairInfo() override;
|
|
|
|
virtual EnumAttributesInfo GetEnumInfo() override;
|
|
|
|
virtual StringAttributesInfo GetStringInfo() override;
|
2013-03-26 16:43:32 -07:00
|
|
|
|
|
|
|
enum { RADIUS };
|
|
|
|
nsSVGNumberPair mNumberPairAttributes[1];
|
|
|
|
static NumberPairInfo sNumberPairInfo[1];
|
|
|
|
|
|
|
|
enum { OPERATOR };
|
|
|
|
nsSVGEnum mEnumAttributes[1];
|
|
|
|
static nsSVGEnumMapping sOperatorMap[];
|
|
|
|
static EnumInfo sEnumInfo[1];
|
|
|
|
|
|
|
|
enum { RESULT, IN1 };
|
|
|
|
nsSVGString mStringAttributes[2];
|
|
|
|
static StringInfo sStringInfo[2];
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_SVGFEMorphologyElement_h
|