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-01-23 21:59:03 +03:00
|
|
|
|
|
|
|
#ifndef MOZILLA_SMILENUMTYPE_H_
|
|
|
|
#define MOZILLA_SMILENUMTYPE_H_
|
|
|
|
|
2013-05-30 00:43:41 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2010-01-23 21:59:03 +03:00
|
|
|
#include "nsISMILType.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
class SMILEnumType : public nsISMILType
|
|
|
|
{
|
|
|
|
public:
|
2010-02-02 05:46:13 +03:00
|
|
|
// Singleton for nsSMILValue objects to hold onto.
|
2013-05-31 02:34:53 +04:00
|
|
|
static SMILEnumType*
|
|
|
|
Singleton()
|
|
|
|
{
|
|
|
|
static SMILEnumType sSingleton;
|
|
|
|
return &sSingleton;
|
|
|
|
}
|
2010-02-02 05:46:13 +03:00
|
|
|
|
|
|
|
protected:
|
|
|
|
// nsISMILType Methods
|
|
|
|
// -------------------
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void Init(nsSMILValue& aValue) const override;
|
|
|
|
virtual void Destroy(nsSMILValue& aValue) const override;
|
|
|
|
virtual nsresult Assign(nsSMILValue& aDest, const nsSMILValue& aSrc) const override;
|
2015-01-07 07:51:25 +03:00
|
|
|
virtual bool IsEqual(const nsSMILValue& aLeft,
|
2015-03-21 19:28:04 +03:00
|
|
|
const nsSMILValue& aRight) const override;
|
2010-01-23 21:59:03 +03:00
|
|
|
virtual nsresult Add(nsSMILValue& aDest, const nsSMILValue& aValueToAdd,
|
2015-03-21 19:28:04 +03:00
|
|
|
uint32_t aCount) const override;
|
2010-01-23 21:59:03 +03:00
|
|
|
virtual nsresult ComputeDistance(const nsSMILValue& aFrom,
|
|
|
|
const nsSMILValue& aTo,
|
2015-03-21 19:28:04 +03:00
|
|
|
double& aDistance) const override;
|
2010-01-23 21:59:03 +03:00
|
|
|
virtual nsresult Interpolate(const nsSMILValue& aStartVal,
|
|
|
|
const nsSMILValue& aEndVal,
|
|
|
|
double aUnitDistance,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsSMILValue& aResult) const override;
|
2010-01-23 21:59:03 +03:00
|
|
|
|
|
|
|
private:
|
2013-08-12 18:13:34 +04:00
|
|
|
// Private constructor: prevent instances beyond my singleton.
|
|
|
|
MOZ_CONSTEXPR SMILEnumType() {}
|
2010-01-23 21:59:03 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // MOZILLA_SMILENUMTYPE_H_
|