Added new properties to make ScrollView more scriptable
[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 // INTERNAL INCLUDES
19 #include <dali-toolkit/internal/controls/scrollable/scroll-view/scroll-view-effect-impl.h>
20 #include <dali-toolkit/internal/controls/scrollable/scroll-view/scroll-view-impl.h>
21
22 using namespace Dali;
23
24 namespace Dali
25 {
26
27 namespace Toolkit
28 {
29
30 namespace Internal
31 {
32
33 ScrollViewEffect::ScrollViewEffect()
34 : mScrollViewImpl(NULL)
35 {
36 }
37
38 ScrollViewEffect::~ScrollViewEffect()
39 {
40 }
41
42 void ScrollViewEffect::Attach(Toolkit::ScrollView& scrollView)
43 {
44   DALI_ASSERT_ALWAYS( (!mScrollViewImpl) && "Already attached to a ScrollView" );
45
46   mScrollViewImpl = &GetImpl(scrollView);
47
48   OnAttach(scrollView);
49 }
50
51 void ScrollViewEffect::Detach(Toolkit::ScrollView& scrollView)
52 {
53   DALI_ASSERT_ALWAYS( (mScrollViewImpl) && "Already detached from ScrollView" );
54   DALI_ASSERT_ALWAYS( (&GetImpl(scrollView) == mScrollViewImpl) && "Effect attached to a different ScrollView");
55
56   OnDetach(scrollView);
57
58   mScrollViewImpl = NULL;
59 }
60
61 Toolkit::ScrollView ScrollViewEffect::GetScrollView()
62 {
63   DALI_ASSERT_ALWAYS(mScrollViewImpl);
64
65   return DownCast<Toolkit::ScrollView>( mScrollViewImpl->Self() );
66 }
67
68 } // namespace Internal
69
70 } // namespace Toolkit
71
72 } // namespace Dali