2013-03-07 01:15:21 -08: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_SVGFEMergeElement_h
|
|
|
|
#define mozilla_dom_SVGFEMergeElement_h
|
|
|
|
|
|
|
|
#include "nsSVGFilters.h"
|
|
|
|
|
|
|
|
nsresult NS_NewSVGFEMergeElement(nsIContent **aResult,
|
2014-06-19 19:01:40 -07:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
2013-03-07 01:15:21 -08:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
typedef nsSVGFE SVGFEMergeElementBase;
|
|
|
|
|
2013-03-27 18:23:09 -07:00
|
|
|
class SVGFEMergeElement : public SVGFEMergeElementBase
|
2013-03-07 01:15:21 -08:00
|
|
|
{
|
|
|
|
friend nsresult (::NS_NewSVGFEMergeElement(nsIContent **aResult,
|
2014-06-19 19:01:40 -07:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo));
|
2013-03-07 01:15:21 -08:00
|
|
|
protected:
|
2014-08-31 18:08:04 -07:00
|
|
|
explicit SVGFEMergeElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo)
|
2013-03-07 01:15:21 -08:00
|
|
|
: SVGFEMergeElementBase(aNodeInfo)
|
|
|
|
{
|
|
|
|
}
|
2014-04-08 15:27:17 -07:00
|
|
|
virtual JSObject* WrapNode(JSContext *cx) MOZ_OVERRIDE;
|
2013-03-07 01:15:21 -08: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,
|
2013-11-28 06:38:43 -08:00
|
|
|
nsTArray<mozilla::RefPtr<SourceSurface>>& aInputImages) MOZ_OVERRIDE;
|
2013-05-07 22:11:24 -07:00
|
|
|
virtual nsSVGString& GetResultImageName() MOZ_OVERRIDE { return mStringAttributes[RESULT]; }
|
|
|
|
virtual void GetSourceImageNames(nsTArray<nsSVGStringInfo>& aSources) MOZ_OVERRIDE;
|
2013-03-07 01:15:21 -08:00
|
|
|
|
|
|
|
// nsIContent
|
2014-06-19 19:01:40 -07:00
|
|
|
virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult) const MOZ_OVERRIDE;
|
2013-03-07 01:15:21 -08:00
|
|
|
protected:
|
2013-05-07 22:11:24 -07:00
|
|
|
virtual StringAttributesInfo GetStringInfo() MOZ_OVERRIDE;
|
2013-03-07 01:15:21 -08:00
|
|
|
|
|
|
|
enum { RESULT };
|
|
|
|
nsSVGString mStringAttributes[1];
|
|
|
|
static StringInfo sStringInfo[1];
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_SVGFEMergeElement_h
|