OSDN Git Service

Merge WebKit at r71558: Initial merge by git.
[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 "CSSPropertyNames.h"
33 #include "PlatformString.h"
34 #include "Timer.h"
35 #include <wtf/HashMap.h>
36 #include <wtf/PassRefPtr.h>
37 #include <wtf/RefPtr.h>
38 #include <wtf/Vector.h>
39 #include <wtf/text/AtomicString.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();
71     void resumeAnimations();
72
73     void suspendAnimationsForDocument(Document*);
74     void resumeAnimationsForDocument(Document*);
75
76     bool isRunningAnimationOnRenderer(RenderObject*, CSSPropertyID, bool isRunningNow) const;
77     bool isRunningAcceleratedAnimationOnRenderer(RenderObject*, CSSPropertyID, bool isRunningNow) const;
78
79     bool pauseAnimationAtTime(RenderObject*, const String& name, double t);
80     bool pauseTransitionAtTime(RenderObject*, const String& property, double t);
81     unsigned numberOfActiveAnimations() const;
82
83     PassRefPtr<RenderStyle> getAnimatedStyleForRenderer(RenderObject* renderer);
84
85     double beginAnimationUpdateTime();
86     void setBeginAnimationUpdateTime(double t) { m_beginAnimationUpdateTime = t; }
87     void endAnimationUpdate();
88     void receivedStartTimeResponse(double);
89     
90     void addToStyleAvailableWaitList(AnimationBase*);
91     void removeFromStyleAvailableWaitList(AnimationBase*);    
92     
93     void addToStartTimeResponseWaitList(AnimationBase*, bool willGetResponse);
94     void removeFromStartTimeResponseWaitList(AnimationBase*);    
95     void startTimeResponse(double t);
96     
97 private:
98     void styleAvailable();
99     void fireEventsAndUpdateStyle();
100
101     typedef HashMap<RenderObject*, RefPtr<CompositeAnimation> > RenderObjectAnimationMap;
102
103     RenderObjectAnimationMap m_compositeAnimations;
104     Timer<AnimationControllerPrivate> m_animationTimer;
105     Timer<AnimationControllerPrivate> m_updateStyleIfNeededDispatcher;
106     Frame* m_frame;
107     
108     class EventToDispatch {
109     public:
110         RefPtr<Element> element;
111         AtomicString eventType;
112         String name;
113         double elapsedTime;
114     };
115     
116     Vector<EventToDispatch> m_eventsToDispatch;
117     Vector<RefPtr<Node> > m_nodeChangesToDispatch;
118     
119     double m_beginAnimationUpdateTime;
120     AnimationBase* m_styleAvailableWaiters;
121     AnimationBase* m_lastStyleAvailableWaiter;
122     
123     AnimationBase* m_responseWaiters;
124     AnimationBase* m_lastResponseWaiter;
125     bool m_waitingForResponse;
126 };
127
128 } // namespace WebCore
129
130 #endif // AnimationControllerPrivate_h