diff options
Diffstat (limited to 'Source/WebCore/svg/SVGAnimateElement.h')
-rw-r--r-- | Source/WebCore/svg/SVGAnimateElement.h | 93 |
1 files changed, 25 insertions, 68 deletions
diff --git a/Source/WebCore/svg/SVGAnimateElement.h b/Source/WebCore/svg/SVGAnimateElement.h index 0b43fb87a..3bf9d6698 100644 --- a/Source/WebCore/svg/SVGAnimateElement.h +++ b/Source/WebCore/svg/SVGAnimateElement.h @@ -1,85 +1,42 @@ /* - * Copyright (C) 2004, 2005 Nikolas Zimmermann <zimmermann@kde.org> - * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org> - * Copyright (C) 2008 Apple Inc. All rights reserved. - * Copyright (C) Research In Motion Limited 2011. All rights reserved. + * Copyright (C) 2014 Apple Inc. 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. + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. * - * 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. + * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS + * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF + * THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef SVGAnimateElement_h -#define SVGAnimateElement_h +#pragma once -#if ENABLE(SVG) -#include "SVGAnimatedType.h" -#include "SVGAnimatedTypeAnimator.h" -#include "SVGAnimationElement.h" -#include "SVGNames.h" +#include "SVGAnimateElementBase.h" namespace WebCore { class SVGAnimatedProperty; -class SVGAnimateElement : public SVGAnimationElement { +class SVGAnimateElement final : public SVGAnimateElementBase { public: - static PassRefPtr<SVGAnimateElement> create(const QualifiedName&, Document&); - virtual ~SVGAnimateElement(); - - AnimatedPropertyType determineAnimatedPropertyType(SVGElement*) const; - -protected: - SVGAnimateElement(const QualifiedName&, Document&); - - virtual void resetAnimatedType() override; - virtual void clearAnimatedType(SVGElement* targetElement) override; - - virtual bool calculateToAtEndOfDurationValue(const String& toAtEndOfDurationString) override; - virtual bool calculateFromAndToValues(const String& fromString, const String& toString) override; - virtual bool calculateFromAndByValues(const String& fromString, const String& byString) override; - virtual void calculateAnimatedValue(float percentage, unsigned repeatCount, SVGSMILElement* resultElement) override; - virtual void applyResultsToTarget() override; - virtual float calculateDistance(const String& fromString, const String& toString) override; - virtual bool isAdditive() const override; - - virtual void setTargetElement(SVGElement*) override; - virtual void setAttributeName(const QualifiedName&) override; - - AnimatedPropertyType m_animatedPropertyType; + static Ref<SVGAnimateElement> create(const QualifiedName&, Document&); private: - void resetAnimatedPropertyType(); - SVGAnimatedTypeAnimator* ensureAnimator(); - bool animatedPropertyTypeSupportsAddition() const; - - virtual bool hasValidAttributeType() override; - - std::unique_ptr<SVGAnimatedType> m_fromType; - std::unique_ptr<SVGAnimatedType> m_toType; - std::unique_ptr<SVGAnimatedType> m_toAtEndOfDurationType; - std::unique_ptr<SVGAnimatedType> m_animatedType; - - SVGElementAnimatedPropertyList m_animatedProperties; - std::unique_ptr<SVGAnimatedTypeAnimator> m_animator; + SVGAnimateElement(const QualifiedName&, Document&); }; -void isSVGAnimateElement(const SVGAnimateElement&); // Catch unnecessary runtime check of type known at compile time. -bool isSVGAnimateElement(const Node&); -NODE_TYPE_CASTS(SVGAnimateElement) - } // namespace WebCore - -#endif // ENABLE(SVG) -#endif // SVGAnimateElement_h |