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