License conversion from Flora to Apache 2.0
[platform/core/uifw/dali-toolkit.git] / optional / dali-toolkit / internal / transition-effects / cube-transition-cross-effect-impl.h
1 #ifndef __DALI_TOOLKIT_INTERNAL_CUBE_TRANSITION_CROSS_EFFECT_H__
2 #define __DALI_TOOLKIT_INTERNAL_CUBE_TRANSITION_CROSS_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
23 // INTERNAL INCLUDES
24 #include <dali-toolkit/public-api/transition-effects/cube-transition-cross-effect.h>
25 #include <dali-toolkit/internal/transition-effects/cube-transition-effect-impl.h>
26
27 namespace Dali
28 {
29
30 namespace Toolkit
31 {
32
33 class CubeTransitionCrossEffect;
34
35 namespace Internal
36 {
37
38 class CubeTransitionEffect;
39
40 class CubeTransitionCrossEffect : public CubeTransitionEffect
41 {
42
43 public:
44
45   /**
46    * @copydoc Toolkit::CubeTransitionCrossEffect::New
47    */
48   static Toolkit::CubeTransitionCrossEffect New(unsigned int numRows, unsigned int numColumns, Size viewAreaSize);
49
50 protected:
51
52    /**
53     * @copydoc Toolkit::Internal::CubeTransitionEffect::OnInitialize
54     */
55    virtual void OnInitialize();
56
57    /**
58     * @copydoc Toolkit::Internal::CubeTransitionEffect::OnStartTransition
59     */
60    virtual void OnStartTransition( Vector2 panPosition, Vector2 panDisplacement );
61
62    /**
63     * @copydoc Toolkit::Internal::CubeTransitionEffect::OnStopTransition
64     */
65    virtual void OnStopTransition();
66
67 private:
68
69    /**
70     * Construct a new CubeTransitionCrossEffect object
71     * @param[in] numRows How many rows of cubes
72     * @param[in] numColumns How many columns of cubes
73     * @param[in] viewAreaSize The size of view area for this transition effect
74     */
75    CubeTransitionCrossEffect( unsigned int numRows, unsigned int numColumns, Size viewAreaSize );
76
77    /**
78     * Set up animation to an Actor
79     * @param[in] actorIndex The index of the cube in the cube array
80     * @param[in] angle The angle of the rotation animation
81     * @param[in] axis The axis of the rotation animation
82     * @param[in] resetTranslation The translation used to reset the actor position before animation
83     */
84
85    void SetupAnimation( unsigned int actorIndex, float angle, const Vector3 axis, Vector3 resetTranslation );
86
87 private:
88
89    float  mDisplacementRatio;
90
91 }; //class CubeTransitionCrossEffect
92
93 } // namespace Internal
94
95 // Helpers for public-api forwarding methods
96
97 inline Internal::CubeTransitionCrossEffect& GetImpl(Dali::Toolkit::CubeTransitionCrossEffect& obj)
98 {
99   DALI_ASSERT_ALWAYS(obj);
100
101   Dali::BaseObject& handle = obj.GetBaseObject();
102
103   return static_cast<Internal::CubeTransitionCrossEffect&>(handle);
104 }
105
106 inline const Internal::CubeTransitionCrossEffect& GetImpl(const Dali::Toolkit::CubeTransitionCrossEffect& obj)
107 {
108   DALI_ASSERT_ALWAYS(obj);
109
110   const Dali::BaseObject& handle = obj.GetBaseObject();
111
112   return static_cast<const Internal::CubeTransitionCrossEffect&>(handle);
113 }
114
115 } // namespace Toolkit
116
117 } // namespace Dali
118
119 #endif /* __DALI_TOOLKIT_INTERNAL_CUBE_TRANSITION_CROSS_EFFECT_H_ */