Merge "Fix: The last line of the text overlaps with the text-editor's border/edge...
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / transition / transition.cpp
1 /*
2  * Copyright (c) 2021 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-toolkit/public-api/transition/transition.h>
20
21 // INTERNAL INCLUDES
22 #include <dali-toolkit/internal/transition/transition-impl.h>
23
24 namespace Dali
25 {
26 namespace Toolkit
27 {
28 Transition::Transition() = default;
29
30 Transition::Transition(Internal::Transition* transition)
31 : TransitionBase(transition)
32 {
33 }
34
35 Transition Transition::New(Dali::Toolkit::Control source, Dali::Toolkit::Control destination, bool useDestinationTarget, TimePeriod timePeriod)
36 {
37   Internal::TransitionPtr internal = Dali::Toolkit::Internal::Transition::New(source, destination, useDestinationTarget, timePeriod);
38
39   return Transition(internal.Get());
40 }
41
42 Transition Transition::DownCast(BaseHandle handle)
43 {
44   return Transition(dynamic_cast<Dali::Toolkit::Internal::Transition*>(handle.GetObjectPtr()));
45 }
46
47 Transition::~Transition() = default;
48
49 Transition::Transition(const Transition& handle) = default;
50
51 Transition& Transition::operator=(const Transition& rhs) = default;
52
53 Transition::Transition(Transition&& rhs) = default;
54
55 Transition& Transition::operator=(Transition&& rhs) = default;
56
57 } // namespace Toolkit
58
59 } // namespace Dali