b0c74c18835fd789f346062c53e9f0de746b8d20
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / scrollable / scroll-view / scroll-view-page-cube-effect-impl.h
1 #ifndef __DALI_TOOLKIT_INTERNAL_SCROLL_VIEW_PAGE_CUBE_EFFECT_H__
2 #define __DALI_TOOLKIT_INTERNAL_SCROLL_VIEW_PAGE_CUBE_EFFECT_H__
3
4 /*
5  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // EXTERNAL INCLUDES
22 #include <dali/public-api/animation/animation.h>
23 #include <dali/public-api/animation/alpha-functions.h>
24 #include <dali/public-api/animation/time-period.h>
25 #include <dali/public-api/object/ref-object.h>
26
27 // INTERNAL INCLUDES
28 #include <dali-toolkit/public-api/controls/scrollable/scroll-view/scroll-view.h>
29 #include <dali-toolkit/public-api/controls/scrollable/scroll-view/scroll-view-page-cube-effect.h>
30 #include <dali-toolkit/internal/controls/scrollable/scroll-view/scroll-view-effect-impl.h>
31
32 namespace Dali
33 {
34
35 class Animation;
36
37 namespace Toolkit
38 {
39
40 class ScrollGroup;
41 class ScrollView;
42
43 namespace Internal
44 {
45
46 /**
47  * @copydoc Toolkit::ScrollViewPageCubeEffect
48  */
49 class ScrollViewPageCubeEffect : public ScrollViewEffect
50 {
51
52 public:
53
54   /**
55    * Constructor
56    */
57   ScrollViewPageCubeEffect();
58
59 public:
60
61   /**
62    * @copydoc ScrollViewEffect::ApplyToActor
63    */
64   void ApplyToPage( Actor child,
65                    const Vector2& angleSwing );
66
67 public:
68
69   /**
70    * @copydoc ScrollViewEffect::OnAttach
71    */
72   virtual void OnAttach( Toolkit::ScrollView& scrollView );
73
74   /**
75    * @copydoc ScrollViewEffect::OnDetach
76    */
77   virtual void OnDetach( Toolkit::ScrollView& scrollView );
78
79 protected:
80
81   /**
82    * A reference counted object may only be deleted by calling Unreference()
83    */
84   virtual ~ScrollViewPageCubeEffect();
85
86 private:
87
88   Vector3 mPageSize; ///< The logical page size for the 3D effect.
89 };
90
91 } // namespace Internal
92
93 // Helpers for public-api forwarding methods
94
95 inline Internal::ScrollViewPageCubeEffect& GetImpl(Dali::Toolkit::ScrollViewPageCubeEffect& obj)
96 {
97   DALI_ASSERT_ALWAYS(obj);
98
99   Dali::RefObject& handle = obj.GetBaseObject();
100
101   return static_cast<Internal::ScrollViewPageCubeEffect&>(handle);
102 }
103
104 inline const Internal::ScrollViewPageCubeEffect& GetImpl(const Dali::Toolkit::ScrollViewPageCubeEffect& obj)
105 {
106   DALI_ASSERT_ALWAYS(obj);
107
108   const Dali::RefObject& handle = obj.GetBaseObject();
109
110   return static_cast<const Internal::ScrollViewPageCubeEffect&>(handle);
111 }
112
113 } // namespace Toolkit
114
115 } // namespace Dali
116
117 #endif // __DALI_TOOLKIT_INTERNAL_SCROLL_VIEW_PAGE_CUBE_EFFECT_H__