2015-05-03 15:32:37 -04: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 12:12:37 +01: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-12-03 16:40:23 +00:00
|
|
|
|
2020-07-14 23:40:05 +00:00
|
|
|
#ifndef DOM_SVG_SVGANIMATEDNUMBERLIST_H_
|
|
|
|
#define DOM_SVG_SVGANIMATEDNUMBERLIST_H_
|
2010-12-03 16:40:23 +00:00
|
|
|
|
2013-05-29 13:43:41 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2019-01-25 03:24:01 +00:00
|
|
|
#include "mozilla/SMILAttr.h"
|
2017-03-30 13:10:07 +09:00
|
|
|
#include "mozilla/UniquePtr.h"
|
2010-12-03 16:40:23 +00:00
|
|
|
#include "SVGNumberList.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
2019-01-23 13:48:08 +00:00
|
|
|
class SMILValue;
|
|
|
|
|
2013-03-18 23:18:45 -04:00
|
|
|
namespace dom {
|
|
|
|
class SVGAnimationElement;
|
2018-12-21 08:58:14 +00:00
|
|
|
class SVGElement;
|
2015-07-13 08:25:42 -07:00
|
|
|
} // namespace dom
|
2013-03-18 23:18:45 -04:00
|
|
|
|
2010-12-03 16:40:23 +00:00
|
|
|
/**
|
|
|
|
* Class SVGAnimatedNumberList
|
|
|
|
*
|
|
|
|
* This class is very different to the SVG DOM interface of the same name found
|
|
|
|
* in the SVG specification. This is a lightweight internal class - see
|
|
|
|
* DOMSVGAnimatedNumberList for the heavier DOM class that wraps instances of
|
|
|
|
* this class and implements the SVG specification's SVGAnimatedNumberList DOM
|
|
|
|
* interface.
|
|
|
|
*
|
|
|
|
* Except where noted otherwise, this class' methods take care of keeping the
|
|
|
|
* appropriate DOM wrappers in sync (see the comment in
|
|
|
|
* DOMSVGAnimatedNumberList::InternalBaseValListWillChangeTo) so that their
|
|
|
|
* consumers don't need to concern themselves with that.
|
|
|
|
*/
|
|
|
|
class SVGAnimatedNumberList {
|
|
|
|
// friends so that they can get write access to mBaseVal
|
2018-12-28 13:42:46 +00:00
|
|
|
friend class dom::DOMSVGNumber;
|
|
|
|
friend class dom::DOMSVGNumberList;
|
2010-12-03 16:40:23 +00:00
|
|
|
|
|
|
|
public:
|
2021-04-23 19:39:38 +00:00
|
|
|
SVGAnimatedNumberList() = default;
|
|
|
|
|
|
|
|
SVGAnimatedNumberList& operator=(const SVGAnimatedNumberList& aOther) {
|
|
|
|
mIsBaseSet = aOther.mIsBaseSet;
|
|
|
|
mBaseVal = aOther.mBaseVal;
|
|
|
|
if (aOther.mAnimVal) {
|
|
|
|
mAnimVal = MakeUnique<SVGNumberList>(*aOther.mAnimVal);
|
|
|
|
}
|
|
|
|
return *this;
|
|
|
|
}
|
2010-12-03 16:40:23 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Because it's so important that mBaseVal and its DOMSVGNumberList wrapper
|
|
|
|
* (if any) be kept in sync (see the comment in
|
|
|
|
* DOMSVGAnimatedNumberList::InternalBaseValListWillChangeTo), this method
|
|
|
|
* returns a const reference. Only our friend classes may get mutable
|
|
|
|
* references to mBaseVal.
|
|
|
|
*/
|
|
|
|
const SVGNumberList& GetBaseValue() const { return mBaseVal; }
|
|
|
|
|
|
|
|
nsresult SetBaseValueString(const nsAString& aValue);
|
|
|
|
|
2012-08-22 11:56:38 -04:00
|
|
|
void ClearBaseValue(uint32_t aAttrEnum);
|
2010-12-03 16:40:23 +00:00
|
|
|
|
|
|
|
const SVGNumberList& GetAnimValue() const {
|
|
|
|
return mAnimVal ? *mAnimVal : mBaseVal;
|
|
|
|
}
|
|
|
|
|
2019-04-27 08:57:50 +01:00
|
|
|
nsresult SetAnimValue(const SVGNumberList& aNewAnimValue,
|
|
|
|
dom::SVGElement* aElement, uint32_t aAttrEnum);
|
2010-12-03 16:40:23 +00:00
|
|
|
|
2018-12-21 08:58:14 +00:00
|
|
|
void ClearAnimValue(dom::SVGElement* aElement, uint32_t aAttrEnum);
|
2010-12-03 16:40:23 +00:00
|
|
|
|
2011-10-17 10:59:28 -04:00
|
|
|
// Returns true if the animated value of this list has been explicitly
|
2011-07-01 08:19:52 +01:00
|
|
|
// set (either by animation, or by taking on the base value which has been
|
2011-10-17 10: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 18:09:51 +00:00
|
|
|
// usable, and represents the default base value of the attribute.
|
2011-07-01 08:19:52 +01:00
|
|
|
bool IsExplicitlySet() const { return !!mAnimVal || mIsBaseSet; }
|
2017-07-06 14:00:35 +02:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool IsAnimating() const { return !!mAnimVal; }
|
2010-12-03 16:40:23 +00:00
|
|
|
|
2019-01-25 03:24:01 +00:00
|
|
|
UniquePtr<SMILAttr> ToSMILAttr(dom::SVGElement* aSVGElement,
|
|
|
|
uint8_t aAttrEnum);
|
2010-12-03 16:40:23 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
// mAnimVal is a pointer to allow us to determine if we're being animated or
|
|
|
|
// not. Making it a non-pointer member and using mAnimVal.IsEmpty() to check
|
|
|
|
// if we're animating is not an option, since that would break animation *to*
|
|
|
|
// the empty string (<set to="">).
|
|
|
|
|
|
|
|
SVGNumberList mBaseVal;
|
2020-02-25 20:03:26 +00:00
|
|
|
UniquePtr<SVGNumberList> mAnimVal;
|
2021-04-23 19:39:38 +00:00
|
|
|
bool mIsBaseSet = false;
|
2010-12-03 16:40:23 +00:00
|
|
|
|
2019-01-25 03:24:01 +00:00
|
|
|
struct SMILAnimatedNumberList : public SMILAttr {
|
2010-12-03 16:40:23 +00:00
|
|
|
public:
|
|
|
|
SMILAnimatedNumberList(SVGAnimatedNumberList* aVal,
|
2018-12-21 08:58:14 +00:00
|
|
|
dom::SVGElement* aSVGElement, uint8_t aAttrEnum)
|
2010-12-03 16:40:23 +00:00
|
|
|
: mVal(aVal), mElement(aSVGElement), mAttrEnum(aAttrEnum) {}
|
|
|
|
|
2019-01-25 03:24:01 +00:00
|
|
|
// These will stay alive because a SMILAttr only lives as long
|
2010-12-03 16:40:23 +00:00
|
|
|
// as the Compositing step, and DOM elements don't get a chance to
|
|
|
|
// die during that.
|
|
|
|
SVGAnimatedNumberList* mVal;
|
2018-12-21 08:58:14 +00:00
|
|
|
dom::SVGElement* mElement;
|
2012-08-22 11:56:38 -04:00
|
|
|
uint8_t mAttrEnum;
|
2010-12-03 16:40:23 +00:00
|
|
|
|
2019-01-25 03:24:01 +00:00
|
|
|
// SMILAttr methods
|
2022-12-03 19:18:26 +00:00
|
|
|
nsresult ValueFromString(const nsAString& aStr,
|
|
|
|
const dom::SVGAnimationElement* aSrcElement,
|
|
|
|
SMILValue& aValue,
|
|
|
|
bool& aPreventCachingOfSandwich) const override;
|
|
|
|
SMILValue GetBaseValue() const override;
|
|
|
|
void ClearAnimValue() override;
|
|
|
|
nsresult SetAnimValue(const SMILValue& aValue) override;
|
2010-12-03 16:40:23 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2020-07-14 23:40:05 +00:00
|
|
|
#endif // DOM_SVG_SVGANIMATEDNUMBERLIST_H_
|