Merge "Fix PropertyNotification issue" into devel/master
[platform/core/uifw/dali-core.git] / dali / public-api / animation / linear-constrainer.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/animation/linear-constrainer.h>
20
21 // INTERNAL INCLUDES
22 #include <dali/internal/event/animation/linear-constrainer-impl.h>
23
24
25 namespace Dali
26 {
27
28 LinearConstrainer LinearConstrainer::New()
29 {
30   Internal::LinearConstrainer* internal = Internal::LinearConstrainer::New();
31   return LinearConstrainer(internal);
32 }
33
34 LinearConstrainer LinearConstrainer::DownCast( BaseHandle handle )
35 {
36   return LinearConstrainer( dynamic_cast<Dali::Internal::LinearConstrainer*>(handle.GetObjectPtr()) );
37 }
38
39 LinearConstrainer::LinearConstrainer()
40 {
41 }
42
43 LinearConstrainer::~LinearConstrainer()
44 {
45 }
46
47 LinearConstrainer::LinearConstrainer(const LinearConstrainer& handle)
48 :Handle(handle)
49 {
50 }
51
52 LinearConstrainer::LinearConstrainer(Internal::LinearConstrainer* internal)
53 : Handle(internal)
54 {
55 }
56
57 LinearConstrainer& LinearConstrainer::operator=(const LinearConstrainer& rhs)
58 {
59   BaseHandle::operator=(rhs);
60   return *this;
61 }
62
63 LinearConstrainer::LinearConstrainer( LinearConstrainer&& rhs ) = default;
64
65 LinearConstrainer& LinearConstrainer::operator=( LinearConstrainer&& rhs ) = default;
66
67 void LinearConstrainer::Apply( Dali::Property target, Dali::Property source, const Vector2& range, const Vector2& wrap )
68 {
69   GetImplementation(*this).Apply( target, source, range, wrap );
70 }
71
72 void LinearConstrainer::Remove( Dali::Handle& target )
73 {
74   GetImplementation(*this).Remove( target );
75 }
76
77
78 } // Dali