[dali_2.3.19] Merge branch 'devel/master'
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / transition-effects / cube-transition-fold-effect-impl.h
1 #ifndef DALI_TOOLKIT_INTERNAL_CUBE_TRANSITION_FOLD_EFFECT_H
2 #define DALI_TOOLKIT_INTERNAL_CUBE_TRANSITION_FOLD_EFFECT_H
3
4 /*
5  * Copyright (c) 2021 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/devel-api/transition-effects/cube-transition-fold-effect.h>
25 #include <dali-toolkit/internal/transition-effects/cube-transition-effect-impl.h>
26
27 namespace Dali
28 {
29 namespace Toolkit
30 {
31 class CubeTransitionFoldEffect;
32
33 namespace Internal
34 {
35 class CubeTransitionEffect;
36
37 class CubeTransitionFoldEffect : public CubeTransitionEffect
38 {
39 public:
40   /**
41    * @copydoc Toolkit::CubeTransitionFoldEffect::New
42    */
43   static Toolkit::CubeTransitionFoldEffect New(unsigned int numRows, unsigned int numColumns);
44
45 protected:
46   /**
47     * @copydoc Toolkit::CubeTransitionEffect::OnInitialize
48     */
49   void OnInitialize() override;
50
51   /**
52     * @copydoc Toolkit::CubeTransitionEffect::OnStartTransition
53     */
54   void OnStartTransition(Vector2 panPosition, Vector2 panDisplacement) override;
55
56 private:
57   /**
58     * Construct a new CubeTransitionFoldEffect object
59     * @param[in] numRows How many rows of cubes
60     * @param[in] numColumns How many columns of cubes
61     */
62   CubeTransitionFoldEffect(unsigned int numRows, unsigned int numColumns);
63
64   /**
65     * Set up animation to an Actor
66     * @param[in] actorIndex The index of the cube in the cube array
67     * @param[in] angle The angle of the rotation animation
68     */
69   void SetupAnimation(unsigned int actorIndex, unsigned int x, float angle);
70
71 }; //class CubeTransitionFoldEffect
72
73 } // namespace Internal
74
75 // Helpers for public-api forwarding methods
76
77 inline Internal::CubeTransitionFoldEffect& GetImpl(Dali::Toolkit::CubeTransitionFoldEffect& obj)
78 {
79   DALI_ASSERT_ALWAYS(obj);
80
81   Dali::RefObject& handle = obj.GetImplementation();
82
83   return static_cast<Internal::CubeTransitionFoldEffect&>(handle);
84 }
85
86 inline const Internal::CubeTransitionFoldEffect& GetImpl(const Dali::Toolkit::CubeTransitionFoldEffect& obj)
87 {
88   DALI_ASSERT_ALWAYS(obj);
89
90   const Dali::RefObject& handle = obj.GetImplementation();
91
92   return static_cast<const Internal::CubeTransitionFoldEffect&>(handle);
93 }
94
95 } // namespace Toolkit
96
97 } // namespace Dali
98
99 #endif // DALI_TOOLKIT_INTERNAL_CUBE_TRANSITION_FOLD_EFFECT_H