2015-05-03 22:32:37 +03: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: */
|
2012-05-21 15:12:37 +04: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/. */
|
2010-04-29 03:00:54 +04:00
|
|
|
|
2013-01-06 13:32:02 +04:00
|
|
|
#ifndef mozilla_dom_SVGAnimateMotionElement_h
|
|
|
|
#define mozilla_dom_SVGAnimateMotionElement_h
|
2010-04-29 03:00:54 +04:00
|
|
|
|
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"
|
2010-04-29 03:00:54 +04:00
|
|
|
#include "SVGMotionSMILAnimationFunction.h"
|
|
|
|
|
2013-01-06 13:32:02 +04:00
|
|
|
nsresult NS_NewSVGAnimateMotionElement(nsIContent **aResult,
|
2014-06-20 06:01:40 +04:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
2010-04-29 03:00:54 +04:00
|
|
|
|
2013-01-06 13:32:02 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class SVGAnimateMotionElement final : public SVGAnimationElement
|
2010-04-29 03:00:54 +04:00
|
|
|
{
|
|
|
|
protected:
|
2018-09-21 23:45:49 +03:00
|
|
|
explicit SVGAnimateMotionElement(already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
2010-04-29 03:00:54 +04:00
|
|
|
|
2013-01-06 13:32:02 +04:00
|
|
|
SVGMotionSMILAnimationFunction mAnimationFunction;
|
|
|
|
friend nsresult
|
|
|
|
(::NS_NewSVGAnimateMotionElement(nsIContent **aResult,
|
2014-06-20 06:01:40 +04:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo));
|
2010-04-29 03:00:54 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapNode(JSContext *aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2013-01-06 13:32:03 +04:00
|
|
|
|
2010-04-29 03:00:54 +04:00
|
|
|
public:
|
2018-05-30 05:58:49 +03:00
|
|
|
// nsINode specializations
|
2018-08-09 02:58:44 +03:00
|
|
|
virtual nsresult Clone(dom::NodeInfo*, nsINode** aResult) const override;
|
2010-04-29 03:00:54 +04:00
|
|
|
|
2013-03-19 07:18:45 +04:00
|
|
|
// SVGAnimationElement
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsSMILAnimationFunction& AnimationFunction() override;
|
2012-08-22 19:56:38 +04:00
|
|
|
virtual bool GetTargetAttributeName(int32_t *aNamespaceID,
|
2017-10-03 01:05:19 +03:00
|
|
|
nsAtom **aLocalName) const override;
|
2010-04-29 03:00:54 +04:00
|
|
|
|
2010-11-08 18:07:00 +03:00
|
|
|
// nsSVGElement
|
2017-10-03 01:05:19 +03:00
|
|
|
virtual nsAtom* GetPathDataAttrName() const override {
|
2010-11-08 18:07:00 +03:00
|
|
|
return nsGkAtoms::path;
|
|
|
|
}
|
|
|
|
|
2010-04-29 03:00:54 +04:00
|
|
|
// Utility method to let our <mpath> children tell us when they've changed,
|
|
|
|
// so we can make sure our mAnimationFunction is marked as having changed.
|
|
|
|
void MpathChanged() { mAnimationFunction.MpathChanged(); }
|
|
|
|
};
|
|
|
|
|
2013-01-06 13:32:02 +04:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_SVGAnimateMotionElement_h
|