mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
01583602a9
The bulk of this commit was generated with a script, executed at the top level of a typical source code checkout. The only non-machine-generated part was modifying MFBT's moz.build to reflect the new naming. CLOSED TREE makes big refactorings like this a piece of cake. # The main substitution. find . -name '*.cpp' -o -name '*.cc' -o -name '*.h' -o -name '*.mm' -o -name '*.idl'| \ xargs perl -p -i -e ' s/nsRefPtr\.h/RefPtr\.h/g; # handle includes s/nsRefPtr ?</RefPtr</g; # handle declarations and variables ' # Handle a special friend declaration in gfx/layers/AtomicRefCountedWithFinalize.h. perl -p -i -e 's/::nsRefPtr;/::RefPtr;/' gfx/layers/AtomicRefCountedWithFinalize.h # Handle nsRefPtr.h itself, a couple places that define constructors # from nsRefPtr, and code generators specially. We do this here, rather # than indiscriminantly s/nsRefPtr/RefPtr/, because that would rename # things like nsRefPtrHashtable. perl -p -i -e 's/nsRefPtr/RefPtr/g' \ mfbt/nsRefPtr.h \ xpcom/glue/nsCOMPtr.h \ xpcom/base/OwningNonNull.h \ ipc/ipdl/ipdl/lower.py \ ipc/ipdl/ipdl/builtin.py \ dom/bindings/Codegen.py \ python/lldbutils/lldbutils/utils.py # In our indiscriminate substitution above, we renamed # nsRefPtrGetterAddRefs, the class behind getter_AddRefs. Fix that up. find . -name '*.cpp' -o -name '*.h' -o -name '*.idl' | \ xargs perl -p -i -e 's/nsRefPtrGetterAddRefs/RefPtrGetterAddRefs/g' if [ -d .git ]; then git mv mfbt/nsRefPtr.h mfbt/RefPtr.h else hg mv mfbt/nsRefPtr.h mfbt/RefPtr.h fi --HG-- rename : mfbt/nsRefPtr.h => mfbt/RefPtr.h
154 lines
3.9 KiB
C++
154 lines
3.9 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
/* 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/. */
|
|
|
|
#include "nsError.h"
|
|
#include "nsSVGAttrTearoffTable.h"
|
|
#include "nsSVGInteger.h"
|
|
#include "nsSMILValue.h"
|
|
#include "SMILIntegerType.h"
|
|
#include "SVGContentUtils.h"
|
|
|
|
using namespace mozilla;
|
|
using namespace mozilla::dom;
|
|
|
|
/* Implementation */
|
|
|
|
static nsSVGAttrTearoffTable<nsSVGInteger, nsSVGInteger::DOMAnimatedInteger>
|
|
sSVGAnimatedIntegerTearoffTable;
|
|
|
|
nsresult
|
|
nsSVGInteger::SetBaseValueString(const nsAString &aValueAsString,
|
|
nsSVGElement *aSVGElement)
|
|
{
|
|
int32_t value;
|
|
|
|
if (!SVGContentUtils::ParseInteger(aValueAsString, value)) {
|
|
return NS_ERROR_DOM_SYNTAX_ERR;
|
|
}
|
|
|
|
mIsBaseSet = true;
|
|
mBaseVal = value;
|
|
if (!mIsAnimated) {
|
|
mAnimVal = mBaseVal;
|
|
}
|
|
else {
|
|
aSVGElement->AnimationNeedsResample();
|
|
}
|
|
return NS_OK;
|
|
}
|
|
|
|
void
|
|
nsSVGInteger::GetBaseValueString(nsAString & aValueAsString)
|
|
{
|
|
aValueAsString.Truncate();
|
|
aValueAsString.AppendInt(mBaseVal);
|
|
}
|
|
|
|
void
|
|
nsSVGInteger::SetBaseValue(int aValue, nsSVGElement *aSVGElement)
|
|
{
|
|
// We can't just rely on SetParsedAttrValue (as called by DidChangeInteger)
|
|
// detecting redundant changes since it will compare false if the existing
|
|
// attribute value has an associated serialized version (a string value) even
|
|
// if the integers match due to the way integers are stored in nsAttrValue.
|
|
if (aValue == mBaseVal && mIsBaseSet) {
|
|
return;
|
|
}
|
|
|
|
mBaseVal = aValue;
|
|
mIsBaseSet = true;
|
|
if (!mIsAnimated) {
|
|
mAnimVal = mBaseVal;
|
|
}
|
|
else {
|
|
aSVGElement->AnimationNeedsResample();
|
|
}
|
|
aSVGElement->DidChangeInteger(mAttrEnum);
|
|
}
|
|
|
|
void
|
|
nsSVGInteger::SetAnimValue(int aValue, nsSVGElement *aSVGElement)
|
|
{
|
|
if (mIsAnimated && aValue == mAnimVal) {
|
|
return;
|
|
}
|
|
mAnimVal = aValue;
|
|
mIsAnimated = true;
|
|
aSVGElement->DidAnimateInteger(mAttrEnum);
|
|
}
|
|
|
|
already_AddRefed<SVGAnimatedInteger>
|
|
nsSVGInteger::ToDOMAnimatedInteger(nsSVGElement *aSVGElement)
|
|
{
|
|
RefPtr<DOMAnimatedInteger> domAnimatedInteger =
|
|
sSVGAnimatedIntegerTearoffTable.GetTearoff(this);
|
|
if (!domAnimatedInteger) {
|
|
domAnimatedInteger = new DOMAnimatedInteger(this, aSVGElement);
|
|
sSVGAnimatedIntegerTearoffTable.AddTearoff(this, domAnimatedInteger);
|
|
}
|
|
|
|
return domAnimatedInteger.forget();
|
|
}
|
|
|
|
nsSVGInteger::DOMAnimatedInteger::~DOMAnimatedInteger()
|
|
{
|
|
sSVGAnimatedIntegerTearoffTable.RemoveTearoff(mVal);
|
|
}
|
|
|
|
nsISMILAttr*
|
|
nsSVGInteger::ToSMILAttr(nsSVGElement *aSVGElement)
|
|
{
|
|
return new SMILInteger(this, aSVGElement);
|
|
}
|
|
|
|
nsresult
|
|
nsSVGInteger::SMILInteger::ValueFromString(const nsAString& aStr,
|
|
const dom::SVGAnimationElement* /*aSrcElement*/,
|
|
nsSMILValue& aValue,
|
|
bool& aPreventCachingOfSandwich) const
|
|
{
|
|
int32_t val;
|
|
|
|
if (!SVGContentUtils::ParseInteger(aStr, val)) {
|
|
return NS_ERROR_DOM_SYNTAX_ERR;
|
|
}
|
|
|
|
nsSMILValue smilVal(SMILIntegerType::Singleton());
|
|
smilVal.mU.mInt = val;
|
|
aValue = smilVal;
|
|
aPreventCachingOfSandwich = false;
|
|
return NS_OK;
|
|
}
|
|
|
|
nsSMILValue
|
|
nsSVGInteger::SMILInteger::GetBaseValue() const
|
|
{
|
|
nsSMILValue val(SMILIntegerType::Singleton());
|
|
val.mU.mInt = mVal->mBaseVal;
|
|
return val;
|
|
}
|
|
|
|
void
|
|
nsSVGInteger::SMILInteger::ClearAnimValue()
|
|
{
|
|
if (mVal->mIsAnimated) {
|
|
mVal->mIsAnimated = false;
|
|
mVal->mAnimVal = mVal->mBaseVal;
|
|
mSVGElement->DidAnimateInteger(mVal->mAttrEnum);
|
|
}
|
|
}
|
|
|
|
nsresult
|
|
nsSVGInteger::SMILInteger::SetAnimValue(const nsSMILValue& aValue)
|
|
{
|
|
NS_ASSERTION(aValue.mType == SMILIntegerType::Singleton(),
|
|
"Unexpected type to assign animated value");
|
|
if (aValue.mType == SMILIntegerType::Singleton()) {
|
|
mVal->SetAnimValue(int(aValue.mU.mInt), mSVGElement);
|
|
}
|
|
return NS_OK;
|
|
}
|