[dali_1.9.17] Merge branch 'devel/master'
[platform/core/uifw/dali-core.git] / dali / public-api / actors / layer.cpp
1 /*
2  * Copyright (c) 2020 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // CLASS HEADER
19 #include <dali/public-api/actors/layer.h>
20
21 // INTERNAL INCLUDES
22 #include <dali/internal/event/actors/layer-impl.h>
23
24 namespace Dali
25 {
26
27 using Dali::Layer;
28
29 Layer::Layer()
30 {
31 }
32
33 Layer Layer::New()
34 {
35   Internal::LayerPtr internal = Internal::Layer::New();
36
37   return Layer(internal.Get());
38 }
39
40 Layer Layer::DownCast( BaseHandle handle )
41 {
42   return Layer( dynamic_cast<Dali::Internal::Layer*>(handle.GetObjectPtr()) );
43 }
44
45 Layer::~Layer()
46 {
47 }
48
49 Layer::Layer(const Layer& copy)
50 : Actor(copy)
51 {
52 }
53
54 Layer& Layer::operator=(const Layer& rhs)
55 {
56   BaseHandle::operator=(rhs);
57   return *this;
58 }
59
60 void Layer::Raise()
61 {
62   GetImplementation(*this).Raise();
63 }
64
65 void Layer::Lower()
66 {
67   GetImplementation(*this).Lower();
68 }
69
70 void Layer::RaiseAbove( Layer target )
71 {
72   GetImplementation(*this).RaiseAbove( GetImplementation( target ) );
73 }
74
75 void Layer::LowerBelow( Layer target )
76 {
77   GetImplementation(*this).LowerBelow( GetImplementation( target ) );
78 }
79
80 void Layer::RaiseToTop()
81 {
82   GetImplementation(*this).RaiseToTop();
83 }
84
85 void Layer::LowerToBottom()
86 {
87   GetImplementation(*this).LowerToBottom();
88 }
89
90 void Layer::MoveAbove( Layer target )
91 {
92   GetImplementation(*this).MoveAbove( GetImplementation( target ) );
93 }
94
95 void Layer::MoveBelow( Layer target )
96 {
97   GetImplementation(*this).MoveBelow( GetImplementation( target ) );
98 }
99
100 void Layer::SetSortFunction(SortFunctionType function)
101 {
102   GetImplementation(*this).SetSortFunction(function);
103 }
104
105 Layer::Layer(Internal::Layer* internal)
106 : Actor(internal)
107 {
108 }
109
110 } // namespace Dali