1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "ui/views/animation/bounds_animator.h"
7 #include "base/memory/scoped_ptr.h"
8 #include "ui/gfx/animation/animation_container.h"
9 #include "ui/gfx/animation/slide_animation.h"
10 #include "ui/views/animation/bounds_animator_observer.h"
11 #include "ui/views/view.h"
13 // Duration in milliseconds for animations.
14 static const int kDefaultAnimationDuration
= 200;
17 using gfx::AnimationContainer
;
18 using gfx::SlideAnimation
;
23 BoundsAnimator::BoundsAnimator(View
* parent
)
25 container_(new AnimationContainer()),
26 animation_duration_ms_(kDefaultAnimationDuration
),
27 tween_type_(Tween::EASE_OUT
) {
28 container_
->set_observer(this);
31 BoundsAnimator::~BoundsAnimator() {
32 // Reset the delegate so that we don't attempt to notify our observer from
34 container_
->set_observer(NULL
);
36 // Delete all the animations, but don't remove any child views. We assume the
37 // view owns us and is going to be deleted anyway.
38 for (ViewToDataMap::iterator i
= data_
.begin(); i
!= data_
.end(); ++i
)
39 CleanupData(false, &(i
->second
), i
->first
);
42 void BoundsAnimator::AnimateViewTo(View
* view
, const gfx::Rect
& target
) {
44 DCHECK_EQ(view
->parent(), parent_
);
48 if (IsAnimating(view
)) {
49 // Don't immediatly delete the animation, that might trigger a callback from
50 // the animationcontainer.
51 existing_data
= data_
[view
];
56 // NOTE: we don't check if the view is already at the target location. Doing
57 // so leads to odd cases where no animations may be present after invoking
58 // AnimateViewTo. AnimationProgressed does nothing when the bounds of the
61 Data
& data
= data_
[view
];
62 data
.start_bounds
= view
->bounds();
63 data
.target_bounds
= target
;
64 data
.animation
= CreateAnimation();
66 animation_to_view_
[data
.animation
] = view
;
68 data
.animation
->Show();
70 CleanupData(true, &existing_data
, NULL
);
73 void BoundsAnimator::SetTargetBounds(View
* view
, const gfx::Rect
& target
) {
74 if (!IsAnimating(view
)) {
75 AnimateViewTo(view
, target
);
79 data_
[view
].target_bounds
= target
;
82 gfx::Rect
BoundsAnimator::GetTargetBounds(View
* view
) {
83 if (!IsAnimating(view
))
84 return view
->bounds();
85 return data_
[view
].target_bounds
;
88 void BoundsAnimator::SetAnimationForView(View
* view
,
89 SlideAnimation
* animation
) {
92 scoped_ptr
<SlideAnimation
> animation_wrapper(animation
);
94 if (!IsAnimating(view
))
97 // We delay deleting the animation until the end so that we don't prematurely
98 // send out notification that we're done.
99 scoped_ptr
<Animation
> old_animation(ResetAnimationForView(view
));
101 data_
[view
].animation
= animation_wrapper
.release();
102 animation_to_view_
[animation
] = view
;
104 animation
->set_delegate(this);
105 animation
->SetContainer(container_
.get());
109 const SlideAnimation
* BoundsAnimator::GetAnimationForView(View
* view
) {
110 return !IsAnimating(view
) ? NULL
: data_
[view
].animation
;
113 void BoundsAnimator::SetAnimationDelegate(View
* view
,
114 AnimationDelegate
* delegate
,
115 bool delete_when_done
) {
116 DCHECK(IsAnimating(view
));
118 data_
[view
].delegate
= delegate
;
119 data_
[view
].delete_delegate_when_done
= delete_when_done
;
122 void BoundsAnimator::StopAnimatingView(View
* view
) {
123 if (!IsAnimating(view
))
126 data_
[view
].animation
->Stop();
129 bool BoundsAnimator::IsAnimating(View
* view
) const {
130 return data_
.find(view
) != data_
.end();
133 bool BoundsAnimator::IsAnimating() const {
134 return !data_
.empty();
137 void BoundsAnimator::Cancel() {
141 while (!data_
.empty())
142 data_
.begin()->second
.animation
->Stop();
144 // Invoke AnimationContainerProgressed to force a repaint and notify delegate.
145 AnimationContainerProgressed(container_
.get());
148 void BoundsAnimator::SetAnimationDuration(int duration_ms
) {
149 animation_duration_ms_
= duration_ms
;
152 void BoundsAnimator::AddObserver(BoundsAnimatorObserver
* observer
) {
153 observers_
.AddObserver(observer
);
156 void BoundsAnimator::RemoveObserver(BoundsAnimatorObserver
* observer
) {
157 observers_
.RemoveObserver(observer
);
160 SlideAnimation
* BoundsAnimator::CreateAnimation() {
161 SlideAnimation
* animation
= new SlideAnimation(this);
162 animation
->SetContainer(container_
.get());
163 animation
->SetSlideDuration(animation_duration_ms_
);
164 animation
->SetTweenType(tween_type_
);
168 void BoundsAnimator::RemoveFromMaps(View
* view
) {
169 DCHECK(data_
.count(view
) > 0);
170 DCHECK(animation_to_view_
.count(data_
[view
].animation
) > 0);
172 animation_to_view_
.erase(data_
[view
].animation
);
176 void BoundsAnimator::CleanupData(bool send_cancel
, Data
* data
, View
* view
) {
177 if (send_cancel
&& data
->delegate
)
178 data
->delegate
->AnimationCanceled(data
->animation
);
180 if (data
->delete_delegate_when_done
) {
181 delete static_cast<OwnedAnimationDelegate
*>(data
->delegate
);
182 data
->delegate
= NULL
;
185 if (data
->animation
) {
186 data
->animation
->set_delegate(NULL
);
187 delete data
->animation
;
188 data
->animation
= NULL
;
192 Animation
* BoundsAnimator::ResetAnimationForView(View
* view
) {
193 if (!IsAnimating(view
))
196 Animation
* old_animation
= data_
[view
].animation
;
197 animation_to_view_
.erase(old_animation
);
198 data_
[view
].animation
= NULL
;
199 // Reset the delegate so that we don't attempt any processing when the
200 // animation calls us back.
201 old_animation
->set_delegate(NULL
);
202 return old_animation
;
205 void BoundsAnimator::AnimationEndedOrCanceled(const Animation
* animation
,
206 AnimationEndType type
) {
207 DCHECK(animation_to_view_
.find(animation
) != animation_to_view_
.end());
209 View
* view
= animation_to_view_
[animation
];
212 // Make a copy of the data as Remove empties out the maps.
213 Data data
= data_
[view
];
215 RemoveFromMaps(view
);
218 if (type
== ANIMATION_ENDED
) {
219 data
.delegate
->AnimationEnded(animation
);
221 DCHECK_EQ(ANIMATION_CANCELED
, type
);
222 data
.delegate
->AnimationCanceled(animation
);
226 CleanupData(false, &data
, view
);
229 void BoundsAnimator::AnimationProgressed(const Animation
* animation
) {
230 DCHECK(animation_to_view_
.find(animation
) != animation_to_view_
.end());
232 View
* view
= animation_to_view_
[animation
];
234 const Data
& data
= data_
[view
];
235 gfx::Rect new_bounds
=
236 animation
->CurrentValueBetween(data
.start_bounds
, data
.target_bounds
);
237 if (new_bounds
!= view
->bounds()) {
238 gfx::Rect total_bounds
= gfx::UnionRects(new_bounds
, view
->bounds());
240 // Build up the region to repaint in repaint_bounds_. We'll do the repaint
241 // when all animations complete (in AnimationContainerProgressed).
242 repaint_bounds_
.Union(total_bounds
);
244 view
->SetBoundsRect(new_bounds
);
248 data
.delegate
->AnimationProgressed(animation
);
251 void BoundsAnimator::AnimationEnded(const Animation
* animation
) {
252 AnimationEndedOrCanceled(animation
, ANIMATION_ENDED
);
255 void BoundsAnimator::AnimationCanceled(const Animation
* animation
) {
256 AnimationEndedOrCanceled(animation
, ANIMATION_CANCELED
);
259 void BoundsAnimator::AnimationContainerProgressed(
260 AnimationContainer
* container
) {
261 if (!repaint_bounds_
.IsEmpty()) {
263 repaint_bounds_
.set_x(parent_
->GetMirroredXWithWidthInView(
264 repaint_bounds_
.x(), repaint_bounds_
.width()));
265 parent_
->SchedulePaintInRect(repaint_bounds_
);
266 repaint_bounds_
.SetRect(0, 0, 0, 0);
269 FOR_EACH_OBSERVER(BoundsAnimatorObserver
,
271 OnBoundsAnimatorProgressed(this));
273 if (!IsAnimating()) {
274 // Notify here rather than from AnimationXXX to avoid deleting the animation
275 // while the animation is calling us.
276 FOR_EACH_OBSERVER(BoundsAnimatorObserver
,
278 OnBoundsAnimatorDone(this));
282 void BoundsAnimator::AnimationContainerEmpty(AnimationContainer
* container
) {