forked from microsoft/microsoft-ui-xaml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAnimationManager.cpp
131 lines (112 loc) · 4.22 KB
/
AnimationManager.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
#include <pch.h>
#include <common.h>
#include "ItemsRepeater.common.h"
#include "AnimationManager.h"
#include "ItemsRepeater.h"
AnimationManager::AnimationManager(ItemsRepeater* owner) :
m_owner(owner),
m_animator(owner)
{
// ItemsRepeater is not fully constructed yet. Don't interact with it.
}
void AnimationManager::OnAnimatorChanged(const winrt::ElementAnimator& newAnimator)
{
// While an element is hiding, we have ownership of it. We need
// to know when its animation completes so that we give it back
// to the view generator.
if (m_animator)
{
MUX_ASSERT(m_hideAnimationCompleted.value);
m_animator.get().HideAnimationCompleted(m_hideAnimationCompleted);
}
m_animator.set(newAnimator);
if (newAnimator)
{
m_hideAnimationCompleted = newAnimator.HideAnimationCompleted({ this, &AnimationManager::OnHideAnimationCompleted });
}
}
void AnimationManager::OnLayoutChanging()
{
m_hasRecordedLayoutTransitions = true;
}
void AnimationManager::OnItemsSourceChanged(const winrt::IInspectable&, const winrt::NotifyCollectionChangedEventArgs& args)
{
switch (args.Action())
{
case winrt::NotifyCollectionChangedAction::Add:
m_hasRecordedAdds = true;
break;
case winrt::NotifyCollectionChangedAction::Remove:
m_hasRecordedRemoves = true;
break;
case winrt::NotifyCollectionChangedAction::Replace:
m_hasRecordedAdds = true;
m_hasRecordedRemoves = true;
break;
case winrt::NotifyCollectionChangedAction::Reset:
m_hasRecordedResets = true;
break;
}
}
void AnimationManager::OnElementPrepared(const winrt::UIElement& element)
{
if (m_animator)
{
auto context = winrt::AnimationContext::None;
if (m_hasRecordedAdds) context |= winrt::AnimationContext::CollectionChangeAdd;
if (m_hasRecordedResets) context |= winrt::AnimationContext::CollectionChangeReset;
if (m_hasRecordedLayoutTransitions) context |= winrt::AnimationContext::LayoutTransition;
if (context != winrt::AnimationContext::None)
{
m_animator.get().OnElementShown(element, context);
}
}
}
bool AnimationManager::ClearElement(const winrt::UIElement& element)
{
bool canClear = false;
if (m_animator)
{
auto context = winrt::AnimationContext::None;
if (m_hasRecordedRemoves) context |= winrt::AnimationContext::CollectionChangeRemove;
if (m_hasRecordedResets) context |= winrt::AnimationContext::CollectionChangeReset;
canClear =
context != winrt::AnimationContext::None &&
m_animator.get().HasHideAnimation(element, context);
if (canClear)
{
m_animator.get().OnElementHidden(element, context);
}
}
return canClear;
}
void AnimationManager::OnElementBoundsChanged(const winrt::UIElement& element, winrt::Rect oldBounds, winrt::Rect newBounds)
{
if (m_animator)
{
auto context = winrt::AnimationContext::None;
if (m_hasRecordedAdds) context |= winrt::AnimationContext::CollectionChangeAdd;
if (m_hasRecordedRemoves) context |= winrt::AnimationContext::CollectionChangeRemove;
if (m_hasRecordedResets) context |= winrt::AnimationContext::CollectionChangeReset;
if (m_hasRecordedLayoutTransitions) context |= winrt::AnimationContext::LayoutTransition;
m_animator.get().OnElementBoundsChanged(element, context, oldBounds, newBounds);
}
}
void AnimationManager::OnOwnerArranged()
{
m_hasRecordedAdds = false;
m_hasRecordedRemoves = false;
m_hasRecordedResets = false;
m_hasRecordedLayoutTransitions = false;
}
void AnimationManager::OnHideAnimationCompleted(const winrt::ElementAnimator& /*sender*/, const winrt::UIElement& element)
{
if (CachedVisualTreeHelpers::GetParent(element) == static_cast<winrt::DependencyObject>(*m_owner))
{
m_owner->ViewManager().ClearElementToElementFactory(element);
// Invalidate arrange so that repeater can arrange this element off-screen.
m_owner->InvalidateArrange();
}
}