[Tizen] Implement partial update
[platform/core/uifw/dali-core.git] / dali / devel-api / animation / path-constrainer.cpp
1 /*
2  * Copyright (c) 2015 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
28 PathConstrainer PathConstrainer::New()
29 {
30   Internal::PathConstrainer* internal = Internal::PathConstrainer::New();
31   return PathConstrainer(internal);
32 }
33
34 PathConstrainer PathConstrainer::DownCast( BaseHandle handle )
35 {
36   return PathConstrainer( dynamic_cast<Dali::Internal::PathConstrainer*>(handle.GetObjectPtr()) );
37 }
38
39 PathConstrainer::PathConstrainer()
40 {
41 }
42
43 PathConstrainer::~PathConstrainer()
44 {
45 }
46
47 PathConstrainer::PathConstrainer(const PathConstrainer& handle)
48 :Handle(handle)
49 {
50 }
51
52 PathConstrainer::PathConstrainer(Internal::PathConstrainer* internal)
53 : Handle(internal)
54 {
55 }
56
57 PathConstrainer& PathConstrainer::operator=(const PathConstrainer& rhs)
58 {
59   BaseHandle::operator=(rhs);
60   return *this;
61 }
62
63 void PathConstrainer::Apply( Dali::Property target, Dali::Property source, const Vector2& range, const Vector2& wrap )
64 {
65   GetImplementation(*this).Apply( target, source, range, wrap );
66 }
67
68 void PathConstrainer::Remove( Dali::Handle& target )
69 {
70   GetImplementation(*this).Remove( target );
71 }
72
73
74 } // Dali