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/. */
|
2007-09-26 13:22:08 +04:00
|
|
|
|
2020-07-15 02:40:05 +03:00
|
|
|
#ifndef DOM_SVG_SVGANIMATEDBOOLEAN_H_
|
|
|
|
#define DOM_SVG_SVGANIMATEDBOOLEAN_H_
|
2007-09-26 13:22:08 +04:00
|
|
|
|
2012-01-26 13:57:21 +04:00
|
|
|
#include "nsError.h"
|
2019-01-25 06:24:01 +03:00
|
|
|
#include "mozilla/SMILAttr.h"
|
2019-01-25 02:40:25 +03:00
|
|
|
#include "mozilla/AlreadyAddRefed.h"
|
2012-06-19 06:30:09 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2017-03-30 07:10:07 +03:00
|
|
|
#include "mozilla/UniquePtr.h"
|
2012-01-26 13:57:21 +04:00
|
|
|
|
2017-10-03 01:05:19 +03:00
|
|
|
class nsAtom;
|
2007-09-26 13:22:08 +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 {
|
2019-03-19 03:01:03 +03:00
|
|
|
class DOMSVGAnimatedBoolean;
|
2013-03-19 07:18:45 +04:00
|
|
|
class SVGAnimationElement;
|
2018-12-21 11:58:14 +03:00
|
|
|
class SVGElement;
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace dom
|
2013-03-19 07:18:45 +04:00
|
|
|
|
2019-04-04 20:40:56 +03:00
|
|
|
class SVGAnimatedBoolean {
|
2007-09-26 13:22:08 +04:00
|
|
|
public:
|
2020-08-03 12:32:36 +03:00
|
|
|
friend class AutoChangeBooleanNotifier;
|
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, bool aValue = false) {
|
2007-09-26 13:22:08 +04:00
|
|
|
mAnimVal = mBaseVal = aValue;
|
|
|
|
mAttrEnum = aAttrEnum;
|
2011-10-17 18:59:28 +04:00
|
|
|
mIsAnimated = false;
|
2007-09-26 13:22:08 +04:00
|
|
|
}
|
|
|
|
|
2018-12-21 11:58:14 +03:00
|
|
|
nsresult SetBaseValueAtom(const nsAtom* aValue, SVGElement* aSVGElement);
|
2017-10-03 01:05:19 +03:00
|
|
|
nsAtom* GetBaseValueAtom() const;
|
2007-09-26 13:22:08 +04:00
|
|
|
|
2018-12-21 11:58:14 +03:00
|
|
|
void SetBaseValue(bool aValue, SVGElement* aSVGElement);
|
2011-09-29 10:19:26 +04:00
|
|
|
bool GetBaseValue() const { return mBaseVal; }
|
2010-01-24 19:42:08 +03:00
|
|
|
|
2018-12-21 11:58:14 +03:00
|
|
|
void SetAnimValue(bool aValue, SVGElement* aSVGElement);
|
2011-09-29 10:19:26 +04:00
|
|
|
bool GetAnimValue() const { return mAnimVal; }
|
2007-09-26 13:22:08 +04:00
|
|
|
|
2020-07-15 13:37:55 +03:00
|
|
|
already_AddRefed<dom::DOMSVGAnimatedBoolean> ToDOMAnimatedBoolean(
|
2018-12-21 11:58:14 +03:00
|
|
|
SVGElement* aSVGElement);
|
2019-09-21 17:38:56 +03:00
|
|
|
UniquePtr<SMILAttr> ToSMILAttr(SVGElement* aSVGElement);
|
2007-09-26 13:22:08 +04:00
|
|
|
|
|
|
|
private:
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mAnimVal;
|
|
|
|
bool mBaseVal;
|
|
|
|
bool mIsAnimated;
|
2012-08-22 19:56:38 +04:00
|
|
|
uint8_t mAttrEnum; // element specified tracking for attribute
|
2007-09-26 13:22:08 +04:00
|
|
|
|
2010-01-12 16:08:43 +03:00
|
|
|
public:
|
2019-01-25 06:24:01 +03:00
|
|
|
struct SMILBool : public SMILAttr {
|
2010-01-24 19:42:08 +03:00
|
|
|
public:
|
2019-04-04 20:40:56 +03:00
|
|
|
SMILBool(SVGAnimatedBoolean* aVal, SVGElement* aSVGElement)
|
2010-01-24 19:42:08 +03:00
|
|
|
: mVal(aVal), mSVGElement(aSVGElement) {}
|
2012-12-23 08:54:22 +04:00
|
|
|
|
2019-01-25 06:24:01 +03:00
|
|
|
// These will stay alive because a SMILAttr only lives as long
|
2010-01-24 19:42:08 +03:00
|
|
|
// as the Compositing step, and DOM elements don't get a chance to
|
|
|
|
// die during that.
|
2019-04-04 20:40:56 +03:00
|
|
|
SVGAnimatedBoolean* mVal;
|
2018-12-21 11:58:14 +03:00
|
|
|
SVGElement* mSVGElement;
|
2012-12-23 08:54:22 +04:00
|
|
|
|
2019-01-25 06:24:01 +03:00
|
|
|
// SMILAttr methods
|
2010-01-24 19:42:08 +03:00
|
|
|
virtual nsresult ValueFromString(
|
2019-09-21 17:38:56 +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;
|
2010-01-24 19:42:08 +03:00
|
|
|
};
|
2007-09-26 13:22:08 +04:00
|
|
|
};
|
2019-01-07 22:23:13 +03:00
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2020-07-15 02:40:05 +03:00
|
|
|
#endif // DOM_SVG_SVGANIMATEDBOOLEAN_H_
|