2013-01-06 13:32:02 +04: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_SVGSetElement_h
|
|
|
|
#define mozilla_dom_SVGSetElement_h
|
|
|
|
|
2013-05-30 00:43:41 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-01-06 13:32:02 +04:00
|
|
|
#include "mozilla/dom/SVGAnimationElement.h"
|
|
|
|
#include "nsSMILSetAnimationFunction.h"
|
|
|
|
|
|
|
|
nsresult NS_NewSVGSetElement(nsIContent **aResult,
|
2014-06-20 06:01:40 +04:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
2013-01-06 13:32:02 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2013-03-28 05:23:09 +04:00
|
|
|
class SVGSetElement MOZ_FINAL : public SVGAnimationElement
|
2013-01-06 13:32:02 +04:00
|
|
|
{
|
|
|
|
protected:
|
2014-09-01 05:08:04 +04:00
|
|
|
explicit SVGSetElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo);
|
2013-01-06 13:32:02 +04:00
|
|
|
|
|
|
|
nsSMILSetAnimationFunction mAnimationFunction;
|
|
|
|
|
|
|
|
friend nsresult (::NS_NewSVGSetElement(nsIContent **aResult,
|
2014-06-20 06:01:40 +04:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo));
|
2013-01-06 13:32:02 +04:00
|
|
|
|
2014-04-09 02:27:17 +04:00
|
|
|
virtual JSObject* WrapNode(JSContext *aCx) MOZ_OVERRIDE;
|
2013-01-06 13:32:03 +04:00
|
|
|
|
2013-01-06 13:32:02 +04:00
|
|
|
public:
|
|
|
|
// nsIDOMNode
|
2014-06-20 06:01:40 +04:00
|
|
|
virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult) const MOZ_OVERRIDE;
|
2013-01-06 13:32:02 +04:00
|
|
|
|
2013-03-19 07:18:45 +04:00
|
|
|
// SVGAnimationElement
|
2015-01-02 09:13:59 +03:00
|
|
|
virtual nsSMILAnimationFunction& AnimationFunction() MOZ_OVERRIDE;
|
2013-01-06 13:32:02 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_SVGSetElement_h
|