2013-03-07 07:17:00 +00:00
|
|
|
/* -*- 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_SVGFEBlendElement_h
|
|
|
|
#define mozilla_dom_SVGFEBlendElement_h
|
|
|
|
|
|
|
|
#include "nsSVGFilters.h"
|
|
|
|
#include "nsSVGEnum.h"
|
|
|
|
|
|
|
|
nsresult NS_NewSVGFEBlendElement(nsIContent **aResult,
|
2014-06-20 02:01:40 +00:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
2013-03-07 07:17:00 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
typedef nsSVGFE SVGFEBlendElementBase;
|
|
|
|
|
2013-03-28 01:23:09 +00:00
|
|
|
class SVGFEBlendElement : public SVGFEBlendElementBase
|
2013-03-07 07:17:00 +00:00
|
|
|
{
|
|
|
|
friend nsresult (::NS_NewSVGFEBlendElement(nsIContent **aResult,
|
2014-06-20 02:01:40 +00:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo));
|
2013-03-07 07:17:00 +00:00
|
|
|
protected:
|
2014-09-01 01:08:04 +00:00
|
|
|
explicit SVGFEBlendElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo)
|
2013-03-07 07:17:00 +00:00
|
|
|
: SVGFEBlendElementBase(aNodeInfo)
|
|
|
|
{
|
|
|
|
}
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual JSObject* WrapNode(JSContext *cx, JS::Handle<JSObject*> aGivenProto) override;
|
2013-03-07 07:17:00 +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-03-21 16:28:04 +00:00
|
|
|
nsTArray<mozilla::RefPtr<SourceSurface>>& aInputImages) override;
|
2013-03-07 07:17:00 +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-07 07:17:00 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult) const override;
|
2013-03-07 07:17:00 +00:00
|
|
|
|
|
|
|
// WebIDL
|
2013-06-14 22:37:27 +00:00
|
|
|
already_AddRefed<SVGAnimatedString> In1();
|
|
|
|
already_AddRefed<SVGAnimatedString> In2();
|
2013-07-01 07:02:46 +00:00
|
|
|
already_AddRefed<SVGAnimatedEnumeration> Mode();
|
2013-03-07 07:17:00 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual EnumAttributesInfo GetEnumInfo() override;
|
|
|
|
virtual StringAttributesInfo GetStringInfo() override;
|
2013-03-07 07:17:00 +00:00
|
|
|
|
|
|
|
enum { MODE };
|
|
|
|
nsSVGEnum mEnumAttributes[1];
|
|
|
|
static nsSVGEnumMapping sModeMap[];
|
|
|
|
static EnumInfo sEnumInfo[1];
|
|
|
|
|
|
|
|
enum { RESULT, IN1, IN2 };
|
|
|
|
nsSVGString mStringAttributes[3];
|
|
|
|
static StringInfo sStringInfo[3];
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_SVGFEBlendElement_h
|