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/. */
|
2006-07-28 22:10:48 +04:00
|
|
|
|
2020-07-15 02:40:05 +03:00
|
|
|
#ifndef DOM_SVG_SVGANIMATEDNUMBER_H_
|
|
|
|
#define DOM_SVG_SVGANIMATEDNUMBER_H_
|
2006-07-28 22:10:48 +04:00
|
|
|
|
2019-03-19 03:01:03 +03:00
|
|
|
#include "DOMSVGAnimatedNumber.h"
|
2012-01-26 13:57:21 +04:00
|
|
|
#include "nsCycleCollectionParticipant.h"
|
|
|
|
#include "nsError.h"
|
2011-08-11 17:29:50 +04:00
|
|
|
#include "nsMathUtils.h"
|
2012-06-19 06:30:09 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2014-10-01 13:26:00 +04:00
|
|
|
#include "mozilla/FloatingPoint.h"
|
2019-01-25 06:24:01 +03:00
|
|
|
#include "mozilla/SMILAttr.h"
|
2017-03-30 07:10:07 +03:00
|
|
|
#include "mozilla/UniquePtr.h"
|
2019-01-25 06:24:01 +03:00
|
|
|
#include "mozilla/dom/SVGElement.h"
|
2006-07-28 22:10:48 +04:00
|
|
|
|
2013-03-19 07:18:45 +04:00
|
|
|
namespace mozilla {
|
2019-01-23 16:48:08 +03:00
|
|
|
|
|
|
|
class SMILValue;
|
|
|
|
|
2013-03-19 07:18:45 +04:00
|
|
|
namespace dom {
|
|
|
|
class SVGAnimationElement;
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace dom
|
2013-03-19 07:18:45 +04:00
|
|
|
|
2019-04-09 23:04:33 +03:00
|
|
|
class SVGAnimatedNumber {
|
2006-07-28 22:10:48 +04:00
|
|
|
public:
|
2020-08-03 12:32:36 +03:00
|
|
|
friend class AutoChangeNumberNotifier;
|
2020-07-15 13:37:55 +03:00
|
|
|
using SVGElement = dom::SVGElement;
|
2018-12-21 11:58:14 +03:00
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
void Init(uint8_t aAttrEnum = 0xff, float aValue = 0) {
|
2006-07-28 22:10:48 +04:00
|
|
|
mAnimVal = mBaseVal = aValue;
|
|
|
|
mAttrEnum = aAttrEnum;
|
2011-10-17 18:59:28 +04:00
|
|
|
mIsAnimated = false;
|
|
|
|
mIsBaseSet = false;
|
2006-07-28 22:10:48 +04:00
|
|
|
}
|
|
|
|
|
2018-12-21 11:58:14 +03:00
|
|
|
nsresult SetBaseValueString(const nsAString& aValue, SVGElement* aSVGElement);
|
2006-07-28 22:10:48 +04:00
|
|
|
void GetBaseValueString(nsAString& aValue);
|
|
|
|
|
2018-12-21 11:58:14 +03:00
|
|
|
void SetBaseValue(float aValue, SVGElement* aSVGElement);
|
2007-09-26 13:22:08 +04:00
|
|
|
float GetBaseValue() const { return mBaseVal; }
|
2018-12-21 11:58:14 +03:00
|
|
|
void SetAnimValue(float aValue, SVGElement* aSVGElement);
|
2010-02-25 21:20:43 +03:00
|
|
|
float GetAnimValue() const { return mAnimVal; }
|
2006-07-28 22:10:48 +04:00
|
|
|
|
2011-10-17 18:59:28 +04:00
|
|
|
// Returns true if the animated value of this number has been explicitly
|
2011-05-01 22:26:20 +04:00
|
|
|
// set (either by animation, or by taking on the base value which has been
|
2011-10-17 18:59:28 +04:00
|
|
|
// explicitly set by markup or a DOM call), false otherwise.
|
|
|
|
// If this returns false, the animated value is still valid, that is,
|
2018-03-18 21:09:51 +03:00
|
|
|
// usable, and represents the default base value of the attribute.
|
2011-05-01 22:26:20 +04:00
|
|
|
bool IsExplicitlySet() const { return mIsAnimated || mIsBaseSet; }
|
|
|
|
|
2020-07-15 13:37:55 +03:00
|
|
|
already_AddRefed<dom::DOMSVGAnimatedNumber> ToDOMAnimatedNumber(
|
2018-12-21 11:58:14 +03:00
|
|
|
SVGElement* aSVGElement);
|
2020-07-15 13:37:55 +03:00
|
|
|
UniquePtr<SMILAttr> ToSMILAttr(SVGElement* aSVGElement);
|
2006-07-28 22:10:48 +04:00
|
|
|
|
|
|
|
private:
|
|
|
|
float mAnimVal;
|
|
|
|
float mBaseVal;
|
2012-08-22 19:56:38 +04:00
|
|
|
uint8_t mAttrEnum; // element specified tracking for attribute
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mIsAnimated;
|
|
|
|
bool mIsBaseSet;
|
2006-07-28 22:10:48 +04:00
|
|
|
|
2010-01-12 16:08:43 +03:00
|
|
|
public:
|
2019-03-19 03:01:03 +03:00
|
|
|
// DOM wrapper class for the (DOM)SVGAnimatedNumber interface where the
|
2019-04-09 23:04:33 +03:00
|
|
|
// wrapped class is SVGAnimatedNumber.
|
2020-07-15 13:37:55 +03:00
|
|
|
struct DOMAnimatedNumber final : public dom::DOMSVGAnimatedNumber {
|
2019-04-09 23:04:33 +03:00
|
|
|
DOMAnimatedNumber(SVGAnimatedNumber* aVal, SVGElement* aSVGElement)
|
2020-07-15 13:37:55 +03:00
|
|
|
: dom::DOMSVGAnimatedNumber(aSVGElement), mVal(aVal) {}
|
2012-12-21 13:18:58 +04:00
|
|
|
virtual ~DOMAnimatedNumber();
|
2006-07-28 22:10:48 +04:00
|
|
|
|
2019-04-09 23:04:33 +03:00
|
|
|
SVGAnimatedNumber* mVal; // kept alive because it belongs to content
|
2013-07-01 11:03:04 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual float BaseVal() override { return mVal->GetBaseValue(); }
|
|
|
|
virtual void SetBaseVal(float aValue) override {
|
2020-07-15 13:37:55 +03:00
|
|
|
MOZ_ASSERT(IsFinite(aValue));
|
2013-07-01 11:03:04 +04:00
|
|
|
mVal->SetBaseValue(aValue, mSVGElement);
|
|
|
|
}
|
2006-07-28 22:10:48 +04:00
|
|
|
|
2010-02-25 21:20:43 +03:00
|
|
|
// Script may have modified animation parameters or timeline -- DOM getters
|
|
|
|
// need to flush any resample requests to reflect these modifications.
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual float AnimVal() override {
|
2010-02-25 21:20:43 +03:00
|
|
|
mSVGElement->FlushAnimations();
|
2013-07-01 11:03:04 +04:00
|
|
|
return mVal->GetAnimValue();
|
2010-02-25 21:20:43 +03:00
|
|
|
}
|
2006-07-28 22:10:48 +04:00
|
|
|
};
|
|
|
|
|
2019-01-25 06:24:01 +03:00
|
|
|
struct SMILNumber : public SMILAttr {
|
2009-12-29 09:34:27 +03:00
|
|
|
public:
|
2019-04-09 23:04:33 +03:00
|
|
|
SMILNumber(SVGAnimatedNumber* aVal, SVGElement* aSVGElement)
|
2009-12-29 09:34:27 +03:00
|
|
|
: mVal(aVal), mSVGElement(aSVGElement) {}
|
|
|
|
|
2019-01-25 06:24:01 +03:00
|
|
|
// These will stay alive because a SMILAttr only lives as long
|
2009-12-29 09:34:27 +03:00
|
|
|
// as the Compositing step, and DOM elements don't get a chance to
|
|
|
|
// die during that.
|
2019-04-09 23:04:33 +03:00
|
|
|
SVGAnimatedNumber* mVal;
|
2018-12-21 11:58:14 +03:00
|
|
|
SVGElement* mSVGElement;
|
2009-12-29 09:34:27 +03:00
|
|
|
|
2019-01-25 06:24:01 +03:00
|
|
|
// SMILAttr methods
|
2009-12-29 09:34:27 +03:00
|
|
|
virtual nsresult ValueFromString(
|
2020-07-15 13:37:55 +03:00
|
|
|
const nsAString& aStr, const dom::SVGAnimationElement* aSrcElement,
|
|
|
|
SMILValue& aValue, bool& aPreventCachingOfSandwich) const override;
|
2019-01-23 16:48:08 +03:00
|
|
|
virtual SMILValue GetBaseValue() const override;
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void ClearAnimValue() override;
|
2019-01-23 16:48:08 +03:00
|
|
|
virtual nsresult SetAnimValue(const SMILValue& aValue) override;
|
2009-12-29 09:34:27 +03:00
|
|
|
};
|
2006-07-28 22:10:48 +04:00
|
|
|
};
|
2009-12-29 09:34:27 +03:00
|
|
|
|
2019-04-09 23:04:33 +03:00
|
|
|
} // namespace mozilla
|
|
|
|
|
2020-07-15 02:40:05 +03:00
|
|
|
#endif // DOM_SVG_SVGANIMATEDNUMBER_H_
|