2015-05-03 19:32:37 +00: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-01-06 09:32:02 +00: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/. */
|
|
|
|
|
2020-07-14 23:40:05 +00:00
|
|
|
#ifndef DOM_SVG_SVGANIMATEELEMENT_H_
|
|
|
|
#define DOM_SVG_SVGANIMATEELEMENT_H_
|
2013-01-06 09:32:02 +00:00
|
|
|
|
2013-05-29 20:43:41 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-01-06 09:32:02 +00:00
|
|
|
#include "mozilla/dom/SVGAnimationElement.h"
|
2018-12-31 11:54:22 +00:00
|
|
|
#include "mozilla/SMILAnimationFunction.h"
|
2013-01-06 09:32:02 +00:00
|
|
|
|
|
|
|
nsresult NS_NewSVGAnimateElement(
|
2014-06-20 02:01:40 +00:00
|
|
|
nsIContent** aResult, already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
2013-01-06 09:32:02 +00:00
|
|
|
|
2022-05-09 20:41:15 +00:00
|
|
|
namespace mozilla::dom {
|
2013-01-06 09:32:02 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
class SVGAnimateElement final : public SVGAnimationElement {
|
2013-01-06 09:32:02 +00:00
|
|
|
protected:
|
2018-09-21 20:45:49 +00:00
|
|
|
explicit SVGAnimateElement(
|
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
2013-01-06 09:32:02 +00:00
|
|
|
|
2018-12-31 11:54:22 +00:00
|
|
|
SMILAnimationFunction mAnimationFunction;
|
2013-01-06 09:32:02 +00:00
|
|
|
friend nsresult(::NS_NewSVGAnimateElement(
|
|
|
|
nsIContent** aResult,
|
2014-06-20 02:01:40 +00:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo));
|
2013-01-06 09:32:02 +00:00
|
|
|
|
2022-12-03 19:18:26 +00:00
|
|
|
JSObject* WrapNode(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) override;
|
2013-01-06 09:32:03 +00:00
|
|
|
|
2013-01-06 09:32:02 +00:00
|
|
|
public:
|
2018-05-30 02:58:49 +00:00
|
|
|
// nsINode
|
2022-12-03 19:18:26 +00:00
|
|
|
nsresult Clone(dom::NodeInfo*, nsINode** aResult) const override;
|
2013-01-06 09:32:02 +00:00
|
|
|
|
2013-03-19 03:18:45 +00:00
|
|
|
// SVGAnimationElement
|
2022-12-03 19:18:26 +00:00
|
|
|
SMILAnimationFunction& AnimationFunction() override;
|
2013-01-06 09:32:02 +00:00
|
|
|
};
|
|
|
|
|
2022-05-09 20:41:15 +00:00
|
|
|
} // namespace mozilla::dom
|
2013-01-06 09:32:02 +00:00
|
|
|
|
2020-07-14 23:40:05 +00:00
|
|
|
#endif // DOM_SVG_SVGANIMATEELEMENT_H_
|