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: */
|
2012-05-21 04:12:37 -07: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-28 16:00:54 -07:00
|
|
|
|
2013-01-06 01:32:02 -08:00
|
|
|
#ifndef mozilla_dom_SVGAnimateMotionElement_h
|
|
|
|
#define mozilla_dom_SVGAnimateMotionElement_h
|
2010-04-28 16:00:54 -07:00
|
|
|
|
2013-05-29 13:43:41 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-01-06 01:32:02 -08:00
|
|
|
#include "mozilla/dom/SVGAnimationElement.h"
|
2010-04-28 16:00:54 -07:00
|
|
|
#include "SVGMotionSMILAnimationFunction.h"
|
|
|
|
|
2013-01-06 01:32:02 -08:00
|
|
|
nsresult NS_NewSVGAnimateMotionElement(nsIContent **aResult,
|
2014-06-19 19:01:40 -07:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
2010-04-28 16:00:54 -07:00
|
|
|
|
2013-01-06 01:32:02 -08:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
class SVGAnimateMotionElement final : public SVGAnimationElement
|
2010-04-28 16:00:54 -07:00
|
|
|
{
|
|
|
|
protected:
|
2014-08-31 18:08:04 -07:00
|
|
|
explicit SVGAnimateMotionElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo);
|
2010-04-28 16:00:54 -07:00
|
|
|
|
2013-01-06 01:32:02 -08:00
|
|
|
SVGMotionSMILAnimationFunction mAnimationFunction;
|
|
|
|
friend nsresult
|
|
|
|
(::NS_NewSVGAnimateMotionElement(nsIContent **aResult,
|
2014-06-19 19:01:40 -07:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo));
|
2010-04-28 16:00:54 -07:00
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual JSObject* WrapNode(JSContext *aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2013-01-06 01:32:03 -08:00
|
|
|
|
2010-04-28 16:00:54 -07:00
|
|
|
public:
|
|
|
|
// nsIDOMNode specializations
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult) const override;
|
2010-04-28 16:00:54 -07:00
|
|
|
|
2013-03-18 20:18:45 -07:00
|
|
|
// SVGAnimationElement
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual nsSMILAnimationFunction& AnimationFunction() override;
|
2012-08-22 08:56:38 -07:00
|
|
|
virtual bool GetTargetAttributeName(int32_t *aNamespaceID,
|
2015-03-21 09:28:04 -07:00
|
|
|
nsIAtom **aLocalName) const override;
|
|
|
|
virtual nsSMILTargetAttrType GetTargetAttributeType() const override;
|
2010-04-28 16:00:54 -07:00
|
|
|
|
2010-11-08 07:07:00 -08:00
|
|
|
// nsSVGElement
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual nsIAtom* GetPathDataAttrName() const override {
|
2010-11-08 07:07:00 -08:00
|
|
|
return nsGkAtoms::path;
|
|
|
|
}
|
|
|
|
|
2010-04-28 16:00:54 -07: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 01:32:02 -08:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_SVGAnimateMotionElement_h
|