Merge "Added PropertyValue Array as a class" into tizen
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / scrollable / scroll-view / scroll-view-cube-effect-impl.h
1 #ifndef __DALI_TOOLKIT_INTERNAL_SCROLL_VIEW_CUBE_EFFECT_H__
2 #define __DALI_TOOLKIT_INTERNAL_SCROLL_VIEW_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-function.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-effect.h>
30 #include <dali-toolkit/public-api/controls/scrollable/scroll-view/scroll-view-cube-effect.h>
31
32 namespace Dali
33 {
34
35 class Animation;
36
37 namespace Toolkit
38 {
39
40 class ScrollView;
41
42 namespace Internal
43 {
44
45 class ScrollViewEffect;
46
47 /**
48  * @copydoc Toolkit::ScrollViewCubeEffect
49  */
50 class ScrollViewCubeEffect : public ScrollViewEffect
51 {
52
53 public:
54
55   /**
56    * Constructor
57    */
58   ScrollViewCubeEffect();
59
60 public:
61
62   /**
63    * @copydoc ScrollViewEffect::ApplyToActor
64    */
65   void ApplyToActor(Actor child,
66                     const Vector3& anchor,
67                     const Vector2& angleSwing,
68                     const Vector2& positionSwing);
69
70   /**
71    * @copydoc ScrollViewEffect::ApplyToActor
72    */
73   void ApplyToActor(Actor child,
74                     Actor parentPage,
75                     const Vector3& anchor,
76                     const Vector2& angleSwing,
77                     const Vector2& positionSwing);
78
79 public:
80
81   /**
82    * @copydoc ScrollViewEffect::OnAttach
83    */
84   virtual void OnAttach(Toolkit::ScrollView& scrollView);
85
86   /**
87    * @copydoc ScrollViewEffect::OnDetach
88    */
89   virtual void OnDetach(Toolkit::ScrollView& scrollView);
90
91 protected:
92
93   /**
94    * A reference counted object may only be deleted by calling Unreference()
95    */
96   virtual ~ScrollViewCubeEffect();
97
98 private:
99
100   Vector3 mPageSize;                  ///< The logical page size for the 3D effect.
101
102 };
103
104 } // namespace Internal
105
106 // Helpers for public-api forwarding methods
107
108 inline Internal::ScrollViewCubeEffect& GetImpl(Dali::Toolkit::ScrollViewCubeEffect& obj)
109 {
110   DALI_ASSERT_ALWAYS(obj);
111
112   Dali::RefObject& handle = obj.GetBaseObject();
113
114   return static_cast<Internal::ScrollViewCubeEffect&>(handle);
115 }
116
117 inline const Internal::ScrollViewCubeEffect& GetImpl(const Dali::Toolkit::ScrollViewCubeEffect& obj)
118 {
119   DALI_ASSERT_ALWAYS(obj);
120
121   const Dali::RefObject& handle = obj.GetBaseObject();
122
123   return static_cast<const Internal::ScrollViewCubeEffect&>(handle);
124 }
125
126 } // namespace Toolkit
127
128 } // namespace Dali
129
130 #endif // __DALI_TOOLKIT_INTERNAL_SCROLL_VIEW_CUBE_EFFECT_H__