Merge "Clean up the code to build successfully on macOS" into 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 using Dali::Layer;
27
28 Layer::Layer() = default;
29
30 Layer Layer::New()
31 {
32   Internal::LayerPtr internal = Internal::Layer::New();
33
34   return Layer(internal.Get());
35 }
36
37 Layer Layer::DownCast(BaseHandle handle)
38 {
39   return Layer(dynamic_cast<Dali::Internal::Layer*>(handle.GetObjectPtr()));
40 }
41
42 Layer::~Layer() = default;
43
44 Layer::Layer(const Layer& copy) = default;
45
46 Layer& Layer::operator=(const Layer& rhs) = default;
47
48 Layer::Layer(Layer&& rhs) = default;
49
50 Layer& Layer::operator=(Layer&& rhs) = default;
51
52 void Layer::Raise()
53 {
54   GetImplementation(*this).Raise();
55 }
56
57 void Layer::Lower()
58 {
59   GetImplementation(*this).Lower();
60 }
61
62 void Layer::RaiseAbove(Layer target)
63 {
64   GetImplementation(*this).RaiseAbove(GetImplementation(target));
65 }
66
67 void Layer::LowerBelow(Layer target)
68 {
69   GetImplementation(*this).LowerBelow(GetImplementation(target));
70 }
71
72 void Layer::RaiseToTop()
73 {
74   GetImplementation(*this).RaiseToTop();
75 }
76
77 void Layer::LowerToBottom()
78 {
79   GetImplementation(*this).LowerToBottom();
80 }
81
82 void Layer::MoveAbove(Layer target)
83 {
84   GetImplementation(*this).MoveAbove(GetImplementation(target));
85 }
86
87 void Layer::MoveBelow(Layer target)
88 {
89   GetImplementation(*this).MoveBelow(GetImplementation(target));
90 }
91
92 void Layer::SetSortFunction(SortFunctionType function)
93 {
94   GetImplementation(*this).SetSortFunction(function);
95 }
96
97 Layer::Layer(Internal::Layer* internal)
98 : Actor(internal)
99 {
100 }
101
102 } // namespace Dali