Purge underscored header file barriers
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / devel-api / transition-effects / cube-transition-cross-effect.h
1 #ifndef DALI_TOOLKIT_CUBE_TRANSITION_CROSS_EFFECT_H
2 #define DALI_TOOLKIT_CUBE_TRANSITION_CROSS_EFFECT_H
3
4 /*
5  * Copyright (c) 2019 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 // INTERNAL INCLUDES
21 #include <dali-toolkit/devel-api/transition-effects/cube-transition-effect.h>
22
23 namespace Dali
24 {
25
26 namespace Toolkit
27 {
28
29 namespace Internal DALI_INTERNAL
30 {
31   /**
32    * CubeTransitionCrossEffect implementation class
33    */
34   class CubeTransitionCrossEffect;
35
36 } // namespace Internal
37
38 /**
39  * SubClass of CubeTransitionEffect
40  * Rotate the neighboring cubes in perpendicular directions to transition from one image to another
41  */
42 class DALI_TOOLKIT_API CubeTransitionCrossEffect : public CubeTransitionEffect
43 {
44
45 public:
46
47   /**
48    * Create an initialized CubeTransitionCrossEffect
49    * @param[in] numRows How many rows of cubes
50    * @param[in] numColumns How many columns of cubes
51    * @return The initialized CubeTransitionCrossEffect object
52    */
53   static CubeTransitionCrossEffect New( unsigned int numRows, unsigned int numColumns );
54
55
56 public: // Not intended for developer use
57
58   /**
59    * Creates a handle using the Toolkit::Internal implementation.
60    * @param[in]  implementation  The Control implementation.
61    */
62   DALI_INTERNAL CubeTransitionCrossEffect( Internal::CubeTransitionCrossEffect& implementation );
63
64   /**
65    * Allows the creation of this Control from an Internal::CustomActor pointer.
66    * @param[in]  internal  A pointer to the internal CustomActor.
67    */
68   DALI_INTERNAL CubeTransitionCrossEffect( Dali::Internal::CustomActor* internal );
69
70 }; // class CubeTransitionCrossEffect
71
72 } // namespace Toolkit
73
74 } // namespace Dali
75
76 #endif // DALI_TOOLKIT_CUBE_TRANSITION_CROSS_EFFECT_H