OSDN Git Service

3ae15a5b6995816a05be6e6b94881280783ca405
[android-x86/external-webkit.git] / WebCore / page / animation / AnimationControllerPrivate.h
1 /*
2  * Copyright (C) 2009 Apple Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  *
8  * 1.  Redistributions of source code must retain the above copyright
9  *     notice, this list of conditions and the following disclaimer. 
10  * 2.  Redistributions in binary form must reproduce the above copyright
11  *     notice, this list of conditions and the following disclaimer in the
12  *     documentation and/or other materials provided with the distribution. 
13  * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
14  *     its contributors may be used to endorse or promote products derived
15  *     from this software without specific prior written permission. 
16  *
17  * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
18  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20  * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
21  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28
29 #ifndef AnimationControllerPrivate_h
30 #define AnimationControllerPrivate_h
31
32 #include "AtomicString.h"
33 #include "CSSPropertyNames.h"
34 #include "PlatformString.h"
35 #include "Timer.h"
36 #include <wtf/HashMap.h>
37 #include <wtf/PassRefPtr.h>
38 #include <wtf/RefPtr.h>
39 #include <wtf/Vector.h>
40
41 namespace WebCore {
42
43 class AnimationBase;
44 class CompositeAnimation;
45 class Document;
46 class Element;
47 class Frame;
48 class Node;
49 class RenderObject;
50 class RenderStyle;
51
52 class AnimationControllerPrivate : public Noncopyable {
53 public:
54     AnimationControllerPrivate(Frame*);
55     ~AnimationControllerPrivate();
56
57     PassRefPtr<CompositeAnimation> accessCompositeAnimation(RenderObject*);
58     bool clear(RenderObject*);
59
60     void animationTimerFired(Timer<AnimationControllerPrivate>*);
61     void updateAnimationTimer(bool callSetChanged = false);
62
63     void updateStyleIfNeededDispatcherFired(Timer<AnimationControllerPrivate>*);
64     void startUpdateStyleIfNeededDispatcher();
65     void addEventToDispatch(PassRefPtr<Element> element, const AtomicString& eventType, const String& name, double elapsedTime);
66     void addNodeChangeToDispatch(PassRefPtr<Node>);
67
68     bool hasAnimations() const { return !m_compositeAnimations.isEmpty(); }
69
70     void suspendAnimations(Document*);
71     void resumeAnimations(Document*);
72
73     bool isRunningAnimationOnRenderer(RenderObject*, CSSPropertyID, bool isRunningNow) const;
74     bool isRunningAcceleratedAnimationOnRenderer(RenderObject*, CSSPropertyID, bool isRunningNow) const;
75
76     bool pauseAnimationAtTime(RenderObject*, const String& name, double t);
77     bool pauseTransitionAtTime(RenderObject*, const String& property, double t);
78     unsigned numberOfActiveAnimations() const;
79
80     PassRefPtr<RenderStyle> getAnimatedStyleForRenderer(RenderObject* renderer);
81
82     double beginAnimationUpdateTime();
83     void setBeginAnimationUpdateTime(double t) { m_beginAnimationUpdateTime = t; }
84     void endAnimationUpdate();
85     void receivedStartTimeResponse(double);
86     
87     void addToStyleAvailableWaitList(AnimationBase*);
88     void removeFromStyleAvailableWaitList(AnimationBase*);    
89     
90     void addToStartTimeResponseWaitList(AnimationBase*, bool willGetResponse);
91     void removeFromStartTimeResponseWaitList(AnimationBase*);    
92     void startTimeResponse(double t);
93     
94 private:
95     void styleAvailable();
96     void fireEventsAndUpdateStyle();
97
98     typedef HashMap<RenderObject*, RefPtr<CompositeAnimation> > RenderObjectAnimationMap;
99
100     RenderObjectAnimationMap m_compositeAnimations;
101     Timer<AnimationControllerPrivate> m_animationTimer;
102     Timer<AnimationControllerPrivate> m_updateStyleIfNeededDispatcher;
103     Frame* m_frame;
104     
105     class EventToDispatch {
106     public:
107         RefPtr<Element> element;
108         AtomicString eventType;
109         String name;
110         double elapsedTime;
111     };
112     
113     Vector<EventToDispatch> m_eventsToDispatch;
114     Vector<RefPtr<Node> > m_nodeChangesToDispatch;
115     
116     double m_beginAnimationUpdateTime;
117     AnimationBase* m_styleAvailableWaiters;
118     AnimationBase* m_lastStyleAvailableWaiter;
119     
120     AnimationBase* m_responseWaiters;
121     AnimationBase* m_lastResponseWaiter;
122     bool m_waitingForResponse;
123 };
124
125 } // namespace WebCore
126
127 #endif // AnimationControllerPrivate_h