/* * Copyright (C) Research In Motion Limited 2011. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public License * along with this library; see the file COPYING.LIB. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. */ #ifndef SVGAnimatedEnumerationPropertyTearOff_h #define SVGAnimatedEnumerationPropertyTearOff_h #include "SVGAnimatedStaticPropertyTearOff.h" #include "SVGException.h" #include "SVGPropertyTraits.h" namespace WebCore { template class SVGAnimatedEnumerationPropertyTearOff final : public SVGAnimatedStaticPropertyTearOff { public: virtual unsigned& baseVal() override { unsigned& baseVal = SVGAnimatedStaticPropertyTearOff::baseVal(); if (baseVal > SVGIDLEnumLimits::highestExposedEnumValue()) return m_outOfRangeEnumValue; return baseVal; } virtual unsigned& animVal() override { unsigned& animVal = SVGAnimatedStaticPropertyTearOff::animVal(); if (animVal > SVGIDLEnumLimits::highestExposedEnumValue()) return m_outOfRangeEnumValue; return animVal; } virtual void setBaseVal(const unsigned& property, ExceptionCode& ec) override { // All SVG enumeration values, that are allowed to be set via SVG DOM start with 1, 0 corresponds to unknown and is not settable through SVG DOM. if (!property || property > SVGIDLEnumLimits::highestExposedEnumValue()) { ec = SVGException::SVG_INVALID_VALUE_ERR; return; } SVGAnimatedStaticPropertyTearOff::setBaseVal(property, ec); } static Ref> create(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, EnumType& property) { ASSERT(contextElement); return adoptRef(*new SVGAnimatedEnumerationPropertyTearOff(contextElement, attributeName, animatedPropertyType, reinterpret_cast(property))); } EnumType& currentAnimatedValue() { unsigned& animatedValue = SVGAnimatedStaticPropertyTearOff::currentAnimatedValue(); ASSERT(animatedValue <= SVGPropertyTraits::highestEnumValue()); return reinterpret_cast(animatedValue); } private: SVGAnimatedEnumerationPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, unsigned& property) : SVGAnimatedStaticPropertyTearOff(contextElement, attributeName, animatedPropertyType, property) { } static unsigned m_outOfRangeEnumValue; }; // By convention, all enum values that represent UNKNOWN in SVG are equal to zero. template unsigned SVGAnimatedEnumerationPropertyTearOff::m_outOfRangeEnumValue = 0; } #endif // SVGAnimatedEnumerationPropertyTearOff_h