Change copy constructor and copy assignment in common classes to use the default...
[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) = default;
50
51 Layer& Layer::operator=(const Layer& rhs) = default;
52
53 Layer::Layer( Layer&& rhs ) = default;
54
55 Layer& Layer::operator=( Layer&& rhs ) = default;
56
57 void Layer::Raise()
58 {
59   GetImplementation(*this).Raise();
60 }
61
62 void Layer::Lower()
63 {
64   GetImplementation(*this).Lower();
65 }
66
67 void Layer::RaiseAbove( Layer target )
68 {
69   GetImplementation(*this).RaiseAbove( GetImplementation( target ) );
70 }
71
72 void Layer::LowerBelow( Layer target )
73 {
74   GetImplementation(*this).LowerBelow( GetImplementation( target ) );
75 }
76
77 void Layer::RaiseToTop()
78 {
79   GetImplementation(*this).RaiseToTop();
80 }
81
82 void Layer::LowerToBottom()
83 {
84   GetImplementation(*this).LowerToBottom();
85 }
86
87 void Layer::MoveAbove( Layer target )
88 {
89   GetImplementation(*this).MoveAbove( GetImplementation( target ) );
90 }
91
92 void Layer::MoveBelow( Layer target )
93 {
94   GetImplementation(*this).MoveBelow( GetImplementation( target ) );
95 }
96
97 void Layer::SetSortFunction(SortFunctionType function)
98 {
99   GetImplementation(*this).SetSortFunction(function);
100 }
101
102 Layer::Layer(Internal::Layer* internal)
103 : Actor(internal)
104 {
105 }
106
107 } // namespace Dali