Split dali-toolkit into Base & Optional
[platform/core/uifw/dali-toolkit.git] / base / dali-toolkit / public-api / controls / scrollable / scroll-view / scroll-view-carousel-effect.cpp
1 //
2 // Copyright (c) 2014 Samsung Electronics Co., Ltd.
3 //
4 // Licensed under the Flora License, Version 1.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://floralicense.org/license/
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 #include <dali-toolkit/public-api/controls/scrollable/scroll-view/scroll-view-effect.h>
18 #include <dali-toolkit/public-api/controls/scrollable/scroll-view/scroll-view-carousel-effect.h>
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-carousel-effect-impl.h>
21
22 using namespace Dali;
23
24 namespace Dali
25 {
26
27 namespace Toolkit
28 {
29
30 const std::string ScrollViewCarouselEffect::EFFECT_ACTIVATE( "ScrollViewCarouselEffect::EFFECT_ACTIVATE" );
31
32 ScrollViewCarouselEffect ScrollViewCarouselEffect::New()
33 {
34   return ScrollViewCarouselEffect(new Internal::ScrollViewCarouselEffect());
35 }
36
37 ScrollViewCarouselEffect::ScrollViewCarouselEffect()
38 {
39
40 }
41
42 ScrollViewCarouselEffect::ScrollViewCarouselEffect(Internal::ScrollViewCarouselEffect *impl)
43 : ScrollViewEffect(impl)
44 {
45 }
46
47 ScrollViewCarouselEffect ScrollViewCarouselEffect::DownCast( BaseHandle handle )
48 {
49   return ScrollViewCarouselEffect( dynamic_cast<Internal::ScrollViewCarouselEffect*>(handle.GetObjectPtr()) );
50 }
51
52 void ScrollViewCarouselEffect::ApplyToActor(Actor child, const Vector2& angleSwing)
53 {
54   GetImpl(*this).ApplyToActor( child, angleSwing );
55 }
56
57 } // namespace Toolkit
58
59 } // namespace Dali