2010-04-28 23:00:54 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +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/. */
|
2010-04-28 23:00:54 +00:00
|
|
|
|
2013-01-06 09:32:02 +00:00
|
|
|
#ifndef mozilla_dom_SVGAnimateMotionElement_h
|
|
|
|
#define mozilla_dom_SVGAnimateMotionElement_h
|
2010-04-28 23:00:54 +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"
|
2010-04-28 23:00:54 +00:00
|
|
|
#include "SVGMotionSMILAnimationFunction.h"
|
|
|
|
|
2013-01-06 09:32:02 +00:00
|
|
|
nsresult NS_NewSVGAnimateMotionElement(nsIContent **aResult,
|
2014-06-20 02:01:40 +00:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
2010-04-28 23:00:54 +00:00
|
|
|
|
2013-01-06 09:32:02 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2013-03-28 01:23:09 +00:00
|
|
|
class SVGAnimateMotionElement MOZ_FINAL : public SVGAnimationElement
|
2010-04-28 23:00:54 +00:00
|
|
|
{
|
|
|
|
protected:
|
2014-09-01 01:08:04 +00:00
|
|
|
explicit SVGAnimateMotionElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo);
|
2010-04-28 23:00:54 +00:00
|
|
|
|
2013-01-06 09:32:02 +00:00
|
|
|
SVGMotionSMILAnimationFunction mAnimationFunction;
|
|
|
|
friend nsresult
|
|
|
|
(::NS_NewSVGAnimateMotionElement(nsIContent **aResult,
|
2014-06-20 02:01:40 +00:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo));
|
2010-04-28 23:00:54 +00:00
|
|
|
|
2014-04-08 22:27:17 +00:00
|
|
|
virtual JSObject* WrapNode(JSContext *aCx) MOZ_OVERRIDE;
|
2013-01-06 09:32:03 +00:00
|
|
|
|
2010-04-28 23:00:54 +00:00
|
|
|
public:
|
|
|
|
// nsIDOMNode specializations
|
2014-06-20 02:01:40 +00:00
|
|
|
virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult) const MOZ_OVERRIDE;
|
2010-04-28 23:00:54 +00:00
|
|
|
|
2013-03-19 03:18:45 +00:00
|
|
|
// SVGAnimationElement
|
2015-01-02 06:13:59 +00:00
|
|
|
virtual nsSMILAnimationFunction& AnimationFunction() MOZ_OVERRIDE;
|
2012-08-22 15:56:38 +00:00
|
|
|
virtual bool GetTargetAttributeName(int32_t *aNamespaceID,
|
2015-01-02 06:13:59 +00:00
|
|
|
nsIAtom **aLocalName) const MOZ_OVERRIDE;
|
|
|
|
virtual nsSMILTargetAttrType GetTargetAttributeType() const MOZ_OVERRIDE;
|
2010-04-28 23:00:54 +00:00
|
|
|
|
2010-11-08 15:07:00 +00:00
|
|
|
// nsSVGElement
|
2013-05-29 20:43:41 +00:00
|
|
|
virtual nsIAtom* GetPathDataAttrName() const MOZ_OVERRIDE {
|
2010-11-08 15:07:00 +00:00
|
|
|
return nsGkAtoms::path;
|
|
|
|
}
|
|
|
|
|
2010-04-28 23:00:54 +00: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 09:32:02 +00:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_SVGAnimateMotionElement_h
|