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/. */
|
2010-02-19 00:51:00 +03:00
|
|
|
|
2020-07-15 02:40:05 +03:00
|
|
|
#ifndef DOM_SVG_SVGVIEWBOXSMILTYPE_H_
|
|
|
|
#define DOM_SVG_SVGVIEWBOXSMILTYPE_H_
|
2010-02-19 00:51:00 +03:00
|
|
|
|
2013-05-30 00:43:41 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2019-01-09 03:34:14 +03:00
|
|
|
#include "mozilla/SMILType.h"
|
2010-02-19 00:51:00 +03:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
2019-01-23 16:48:08 +03:00
|
|
|
class SMILValue;
|
|
|
|
|
2018-12-28 13:34:35 +03:00
|
|
|
class SVGViewBoxSMILType : public SMILType {
|
2010-02-19 00:51:00 +03:00
|
|
|
public:
|
2019-01-23 16:48:08 +03:00
|
|
|
// Singleton for SMILValue objects to hold onto.
|
2010-02-19 00:51:00 +03:00
|
|
|
static SVGViewBoxSMILType sSingleton;
|
|
|
|
|
|
|
|
protected:
|
2018-12-28 13:34:35 +03:00
|
|
|
// SMILType Methods
|
2010-02-19 00:51:00 +03:00
|
|
|
// -------------------
|
2022-12-03 22:18:26 +03:00
|
|
|
void Init(SMILValue& aValue) const override;
|
|
|
|
void Destroy(SMILValue&) const override;
|
|
|
|
nsresult Assign(SMILValue& aDest, const SMILValue& aSrc) const override;
|
|
|
|
bool IsEqual(const SMILValue& aLeft, const SMILValue& aRight) const override;
|
|
|
|
nsresult Add(SMILValue& aDest, const SMILValue& aValueToAdd,
|
|
|
|
uint32_t aCount) const override;
|
|
|
|
nsresult ComputeDistance(const SMILValue& aFrom, const SMILValue& aTo,
|
|
|
|
double& aDistance) const override;
|
|
|
|
nsresult Interpolate(const SMILValue& aStartVal, const SMILValue& aEndVal,
|
|
|
|
double aUnitDistance, SMILValue& aResult) const override;
|
2010-02-19 00:51:00 +03:00
|
|
|
|
|
|
|
private:
|
2013-08-12 18:13:34 +04:00
|
|
|
// Private constructor: prevent instances beyond my singleton.
|
2019-04-10 07:34:35 +03:00
|
|
|
constexpr SVGViewBoxSMILType() = default;
|
2010-02-19 00:51:00 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2020-07-15 02:40:05 +03:00
|
|
|
#endif // DOM_SVG_SVGVIEWBOXSMILTYPE_H_
|