fa4d89c648af4605f331b74bbdc13ce930b40e02
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / scrollable / scroll-view / scroll-view-effect-impl.cpp
1 /*
2  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 #include <dali-toolkit/internal/controls/scrollable/scroll-view/scroll-view-effect-impl.h>
19 #include <dali-toolkit/internal/controls/scrollable/scroll-view/scroll-view-impl.h>
20
21 using namespace Dali;
22
23 namespace Dali
24 {
25
26 namespace Toolkit
27 {
28
29 namespace Internal
30 {
31
32 ScrollViewEffect::ScrollViewEffect()
33 : mScrollViewImpl(NULL)
34 {
35 }
36
37 ScrollViewEffect::~ScrollViewEffect()
38 {
39 }
40
41 void ScrollViewEffect::Attach(Toolkit::ScrollView& scrollView)
42 {
43   DALI_ASSERT_ALWAYS( (!mScrollViewImpl) && "Already attached to a ScrollView" );
44
45   mScrollViewImpl = &GetImpl(scrollView);
46
47   OnAttach(scrollView);
48 }
49
50 void ScrollViewEffect::Detach(Toolkit::ScrollView& scrollView)
51 {
52   DALI_ASSERT_ALWAYS( (mScrollViewImpl) && "Already detached from ScrollView" );
53   DALI_ASSERT_ALWAYS( (&GetImpl(scrollView) == mScrollViewImpl) && "Effect attached to a different ScrollView");
54
55   OnDetach(scrollView);
56
57   mScrollViewImpl = NULL;
58 }
59
60 Toolkit::ScrollView ScrollViewEffect::GetScrollView()
61 {
62   DALI_ASSERT_ALWAYS(mScrollViewImpl);
63
64   return DownCast<Toolkit::ScrollView>( mScrollViewImpl->Self() );
65 }
66
67 } // namespace Internal
68
69 } // namespace Toolkit
70
71 } // namespace Dali