2012-12-22 20:54:23 -08:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* 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 "SVGAngle.h"
|
|
|
|
#include "nsSVGAngle.h"
|
|
|
|
#include "mozilla/dom/SVGAngleBinding.h"
|
|
|
|
|
|
|
|
using namespace mozilla;
|
|
|
|
using namespace mozilla::dom;
|
|
|
|
|
|
|
|
NS_SVG_VAL_IMPL_CYCLE_COLLECTION_WRAPPERCACHED(SVGAngle, mSVGElement)
|
|
|
|
|
2013-07-05 11:57:35 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_ROOT_NATIVE(SVGAngle, AddRef)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNROOT_NATIVE(SVGAngle, Release)
|
2012-12-22 20:54:23 -08:00
|
|
|
|
|
|
|
JSObject*
|
2014-04-08 15:27:18 -07:00
|
|
|
SVGAngle::WrapObject(JSContext* aCx)
|
2012-12-22 20:54:23 -08:00
|
|
|
{
|
Bug 991742 part 6. Remove the "aScope" argument of binding Wrap() methods. r=bholley
This patch was mostly generated with this command:
find . -name "*.h" -o -name "*.cpp" | xargs sed -e 's/Binding::Wrap(aCx, aScope, this/Binding::Wrap(aCx, this/' -e 's/Binding_workers::Wrap(aCx, aScope, this/Binding_workers::Wrap(aCx, this/' -e 's/Binding::Wrap(cx, scope, this/Binding::Wrap(cx, this/' -i ""
plus a few manual fixes to dom/bindings/Codegen.py, js/xpconnect/src/event_impl_gen.py, and a few C++ files that were not caught in the search-and-replace above.
2014-04-08 15:27:17 -07:00
|
|
|
return SVGAngleBinding::Wrap(aCx, this);
|
2012-12-22 20:54:23 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
uint16_t
|
|
|
|
SVGAngle::UnitType() const
|
|
|
|
{
|
|
|
|
if (mType == AnimValue) {
|
|
|
|
return mVal->mAnimValUnit;
|
|
|
|
}
|
|
|
|
return mVal->mBaseValUnit;
|
|
|
|
}
|
|
|
|
|
|
|
|
float
|
|
|
|
SVGAngle::Value() const
|
|
|
|
{
|
|
|
|
if (mType == AnimValue) {
|
|
|
|
return mVal->GetAnimValue();
|
|
|
|
}
|
|
|
|
return mVal->GetBaseValue();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SVGAngle::SetValue(float aValue, ErrorResult& rv)
|
|
|
|
{
|
|
|
|
if (mType == AnimValue) {
|
|
|
|
rv.Throw(NS_ERROR_DOM_NO_MODIFICATION_ALLOWED_ERR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
bool isBaseVal = mType == BaseValue;
|
|
|
|
mVal->SetBaseValue(aValue, isBaseVal ? mSVGElement : nullptr, isBaseVal);
|
|
|
|
}
|
|
|
|
|
|
|
|
float
|
|
|
|
SVGAngle::ValueInSpecifiedUnits() const
|
|
|
|
{
|
|
|
|
if (mType == AnimValue) {
|
|
|
|
return mVal->mAnimVal;
|
|
|
|
}
|
|
|
|
return mVal->mBaseVal;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SVGAngle::SetValueInSpecifiedUnits(float aValue, ErrorResult& rv)
|
|
|
|
{
|
|
|
|
if (mType == AnimValue) {
|
|
|
|
rv.Throw(NS_ERROR_DOM_NO_MODIFICATION_ALLOWED_ERR);
|
|
|
|
return;
|
|
|
|
} else if (mType == BaseValue) {
|
|
|
|
mVal->SetBaseValueInSpecifiedUnits(aValue, mSVGElement);
|
|
|
|
} else {
|
|
|
|
mVal->mBaseVal = aValue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SVGAngle::NewValueSpecifiedUnits(uint16_t unitType,
|
|
|
|
float valueInSpecifiedUnits,
|
|
|
|
ErrorResult& rv)
|
|
|
|
{
|
|
|
|
if (mType == AnimValue) {
|
|
|
|
rv.Throw(NS_ERROR_DOM_NO_MODIFICATION_ALLOWED_ERR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
rv = mVal->NewValueSpecifiedUnits(unitType, valueInSpecifiedUnits,
|
|
|
|
mType == BaseValue ? mSVGElement : nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SVGAngle::ConvertToSpecifiedUnits(uint16_t unitType, ErrorResult& rv)
|
|
|
|
{
|
|
|
|
if (mType == AnimValue) {
|
|
|
|
rv.Throw(NS_ERROR_DOM_NO_MODIFICATION_ALLOWED_ERR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
rv = mVal->ConvertToSpecifiedUnits(unitType, mType == BaseValue ? mSVGElement : nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SVGAngle::SetValueAsString(const nsAString& aValue, ErrorResult& rv)
|
|
|
|
{
|
|
|
|
if (mType == AnimValue) {
|
|
|
|
rv.Throw(NS_ERROR_DOM_NO_MODIFICATION_ALLOWED_ERR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
bool isBaseVal = mType == BaseValue;
|
|
|
|
rv = mVal->SetBaseValueString(aValue, isBaseVal ? mSVGElement : nullptr, isBaseVal);
|
|
|
|
}
|
|
|
|
|
2012-12-22 20:54:23 -08:00
|
|
|
void
|
2012-12-22 20:54:23 -08:00
|
|
|
SVGAngle::GetValueAsString(nsAString& aValue)
|
|
|
|
{
|
|
|
|
if (mType == AnimValue) {
|
|
|
|
mVal->GetAnimValueString(aValue);
|
|
|
|
} else {
|
|
|
|
mVal->GetBaseValueString(aValue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|