2015-05-03 12:32:37 -07: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-07 01:15:22 -08: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_SVGFEMergeNodeElement_h
|
|
|
|
#define mozilla_dom_SVGFEMergeNodeElement_h
|
|
|
|
|
|
|
|
#include "nsSVGFilters.h"
|
|
|
|
|
|
|
|
nsresult NS_NewSVGFEMergeNodeElement(nsIContent** aResult,
|
2014-06-19 19:01:40 -07:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
2013-03-07 01:15:22 -08:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
typedef SVGFEUnstyledElement SVGFEMergeNodeElementBase;
|
|
|
|
|
2013-03-27 18:23:09 -07:00
|
|
|
class SVGFEMergeNodeElement : public SVGFEMergeNodeElementBase
|
2013-03-07 01:15:22 -08:00
|
|
|
{
|
|
|
|
friend nsresult (::NS_NewSVGFEMergeNodeElement(nsIContent **aResult,
|
2014-06-19 19:01:40 -07:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo));
|
2013-03-07 01:15:22 -08:00
|
|
|
protected:
|
2014-08-31 18:08:04 -07:00
|
|
|
explicit SVGFEMergeNodeElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo)
|
2013-03-07 01:15:22 -08:00
|
|
|
: SVGFEMergeNodeElementBase(aNodeInfo)
|
|
|
|
{
|
|
|
|
}
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual JSObject* WrapNode(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2013-03-07 01:15:22 -08:00
|
|
|
|
|
|
|
public:
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult) const override;
|
2013-03-07 01:15:22 -08:00
|
|
|
|
|
|
|
virtual bool AttributeAffectsRendering(
|
2015-03-21 09:28:04 -07:00
|
|
|
int32_t aNameSpaceID, nsIAtom* aAttribute) const override;
|
2013-03-07 01:15:22 -08:00
|
|
|
|
|
|
|
const nsSVGString* GetIn1() { return &mStringAttributes[IN1]; }
|
|
|
|
|
|
|
|
// WebIDL
|
2013-06-14 15:37:27 -07:00
|
|
|
already_AddRefed<SVGAnimatedString> In1();
|
2013-03-07 01:15:22 -08:00
|
|
|
|
|
|
|
protected:
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual StringAttributesInfo GetStringInfo() override;
|
2013-03-07 01:15:22 -08:00
|
|
|
|
|
|
|
enum { IN1 };
|
|
|
|
nsSVGString mStringAttributes[1];
|
|
|
|
static StringInfo sStringInfo[1];
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_SVGFEMergeNodeElement_h
|