18e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project/* 28e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * Copyright (C) 2007 Apple Inc. All rights reserved. 38e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * 48e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * Redistribution and use in source and binary forms, with or without 58e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * modification, are permitted provided that the following conditions 68e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * are met: 78e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * 88e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * 1. Redistributions of source code must retain the above copyright 98e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * notice, this list of conditions and the following disclaimer. 108e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * 2. Redistributions in binary form must reproduce the above copyright 118e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * notice, this list of conditions and the following disclaimer in the 128e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * documentation and/or other materials provided with the distribution. 138e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of 148e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * its contributors may be used to endorse or promote products derived 158e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * from this software without specific prior written permission. 168e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * 178e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY 188e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 198e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 208e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY 218e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 228e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 238e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 248e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 258e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 268e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 278e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project */ 288e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project 298e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project#ifndef KeyframeAnimation_h 308e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project#define KeyframeAnimation_h 318e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project 328e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project#include "AnimationBase.h" 338e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project#include "Document.h" 348e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project#include "KeyframeList.h" 358e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project 368e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Projectnamespace WebCore { 378e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project 38643ca7872b450ea4efacab6188849e5aac2ba161Steve Blockclass RenderStyle; 39643ca7872b450ea4efacab6188849e5aac2ba161Steve Block 408e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project// A KeyframeAnimation tracks the state of an explicit animation 418e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project// for a single RenderObject. 428e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Projectclass KeyframeAnimation : public AnimationBase { 438e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Projectpublic: 448e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project static PassRefPtr<KeyframeAnimation> create(const Animation* animation, RenderObject* renderer, int index, CompositeAnimation* compositeAnimation, RenderStyle* unanimatedStyle) 458e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project { 468e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project return adoptRef(new KeyframeAnimation(animation, renderer, index, compositeAnimation, unanimatedStyle)); 478e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project }; 488f72e70a9fd78eec56623b3a62e68f16b7b27e28Feng Qian 498f72e70a9fd78eec56623b3a62e68f16b7b27e28Feng Qian virtual void animate(CompositeAnimation*, RenderObject*, const RenderStyle* currentStyle, RenderStyle* targetStyle, RefPtr<RenderStyle>& animatedStyle); 508f72e70a9fd78eec56623b3a62e68f16b7b27e28Feng Qian virtual void getAnimatedStyle(RefPtr<RenderStyle>& animatedStyle); 518e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project 528e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project const AtomicString& name() const { return m_keyframes.animationName(); } 538e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project int index() const { return m_index; } 548e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project void setIndex(int i) { m_index = i; } 558e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project 568e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project bool hasAnimationForProperty(int property) const; 578e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project 58635860845790a19bf50bbc51ba8fb66a96dde068The Android Open Source Project void setUnanimatedStyle(PassRefPtr<RenderStyle> style) { m_unanimatedStyle = style; } 598e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project RenderStyle* unanimatedStyle() const { return m_unanimatedStyle.get(); } 608e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project 615f1ab04193ad0130ca8204aadaceae083aca9881Feng Qian virtual double timeToNextService(); 628f72e70a9fd78eec56623b3a62e68f16b7b27e28Feng Qian 638e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Projectprotected: 648e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project virtual void onAnimationStart(double elapsedTime); 658e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project virtual void onAnimationIteration(double elapsedTime); 668e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project virtual void onAnimationEnd(double elapsedTime); 67d0825bca7fe65beaee391d30da42e937db621564Steve Block virtual bool startAnimation(double timeOffset); 68d0825bca7fe65beaee391d30da42e937db621564Steve Block virtual void pauseAnimation(double timeOffset); 69d0825bca7fe65beaee391d30da42e937db621564Steve Block virtual void endAnimation(); 708e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project 718e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project virtual void overrideAnimations(); 728e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project virtual void resumeOverriddenAnimations(); 738e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project 748f72e70a9fd78eec56623b3a62e68f16b7b27e28Feng Qian bool shouldSendEventForListener(Document::ListenerType inListenerType) const; 758e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project bool sendAnimationEvent(const AtomicString&, double elapsedTime); 768e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project 778e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project virtual bool affectsProperty(int) const; 788e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project 798e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project void validateTransformFunctionList(); 808e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project 818e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Projectprivate: 828e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project KeyframeAnimation(const Animation* animation, RenderObject*, int index, CompositeAnimation*, RenderStyle* unanimatedStyle); 838e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project virtual ~KeyframeAnimation(); 848e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project 858f72e70a9fd78eec56623b3a62e68f16b7b27e28Feng Qian // Get the styles surrounding the current animation time and the progress between them 868f72e70a9fd78eec56623b3a62e68f16b7b27e28Feng Qian void getKeyframeAnimationInterval(const RenderStyle*& fromStyle, const RenderStyle*& toStyle, double& progress) const; 878f72e70a9fd78eec56623b3a62e68f16b7b27e28Feng Qian 888e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project // The keyframes that we are blending. 898e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project KeyframeList m_keyframes; 908e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project 918e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project // The order in which this animation appears in the animation-name style. 928e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project int m_index; 938e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project 948e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project // The style just before we started animation 958e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project RefPtr<RenderStyle> m_unanimatedStyle; 968e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project}; 978e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project 988e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project} // namespace WebCore 998e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project 1008e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project#endif // KeyframeAnimation_h 101