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/. */
|
2009-01-15 07:38:07 +03:00
|
|
|
|
|
|
|
#ifndef NS_SMILNULLTYPE_H_
|
|
|
|
#define NS_SMILNULLTYPE_H_
|
|
|
|
|
2013-05-30 00:43:41 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2019-01-09 03:34:14 +03:00
|
|
|
#include "mozilla/SMILType.h"
|
2009-01-15 07:38:07 +03:00
|
|
|
|
2018-12-27 13:21:40 +03:00
|
|
|
namespace mozilla {
|
|
|
|
|
2018-12-28 13:34:35 +03:00
|
|
|
class SMILNullType : public SMILType {
|
2009-01-15 07:38:07 +03:00
|
|
|
public:
|
2019-01-23 16:48:08 +03:00
|
|
|
// Singleton for SMILValue objects to hold onto.
|
2018-12-27 13:21:40 +03:00
|
|
|
static SMILNullType* Singleton();
|
2010-02-02 05:46:13 +03:00
|
|
|
|
|
|
|
protected:
|
2018-12-28 13:34:35 +03:00
|
|
|
// SMILType Methods
|
2010-02-02 05:46:13 +03:00
|
|
|
// -------------------
|
2019-01-23 16:48:08 +03:00
|
|
|
virtual void Init(SMILValue& aValue) const override {}
|
|
|
|
virtual void Destroy(SMILValue& aValue) const override {}
|
|
|
|
virtual nsresult Assign(SMILValue& aDest,
|
|
|
|
const SMILValue& aSrc) const override;
|
2009-01-15 07:38:07 +03:00
|
|
|
|
|
|
|
// The remaining methods should never be called, so although they're very
|
|
|
|
// simple they don't need to be inline.
|
2019-01-23 16:48:08 +03:00
|
|
|
virtual bool IsEqual(const SMILValue& aLeft,
|
|
|
|
const SMILValue& aRight) const override;
|
|
|
|
virtual nsresult Add(SMILValue& aDest, const SMILValue& aValueToAdd,
|
2015-03-21 19:28:04 +03:00
|
|
|
uint32_t aCount) const override;
|
2019-01-23 16:48:08 +03:00
|
|
|
virtual nsresult ComputeDistance(const SMILValue& aFrom, const SMILValue& aTo,
|
2015-03-21 19:28:04 +03:00
|
|
|
double& aDistance) const override;
|
2019-01-23 16:48:08 +03:00
|
|
|
virtual nsresult Interpolate(const SMILValue& aStartVal,
|
|
|
|
const SMILValue& aEndVal, double aUnitDistance,
|
|
|
|
SMILValue& aResult) const override;
|
2009-01-15 07:38:07 +03:00
|
|
|
|
2010-02-02 05:46:13 +03:00
|
|
|
private:
|
2013-08-12 18:13:34 +04:00
|
|
|
// Private constructor: prevent instances beyond my singleton.
|
2018-12-27 13:21:40 +03:00
|
|
|
constexpr SMILNullType() {}
|
2009-01-15 07:38:07 +03:00
|
|
|
};
|
|
|
|
|
2018-12-27 13:21:40 +03:00
|
|
|
} // namespace mozilla
|
|
|
|
|
2009-01-15 07:38:07 +03:00
|
|
|
#endif // NS_SMILNULLTYPE_H_
|