6f9e26f5c323f88f85b44229aa4d061ef5646449
[platform/core/uifw/dali-core.git] / dali / public-api / object / property-notification.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/object/property-notification.h>
20
21 // INTERNAL INCLUDES
22 #include <dali/internal/event/common/property-notification-impl.h>
23 #include <dali/public-api/math/degree.h>
24 #include <dali/public-api/math/quaternion.h>
25 #include <dali/public-api/math/radian.h>
26 #include <dali/public-api/math/vector2.h>
27 #include <dali/public-api/object/handle.h>
28 #include <stdio.h>
29
30 namespace Dali
31 {
32 PropertyNotification::PropertyNotification() = default;
33
34 PropertyNotification::PropertyNotification(Internal::PropertyNotification* propertyNotification)
35 : BaseHandle(propertyNotification)
36 {
37 }
38
39 PropertyNotification PropertyNotification::DownCast(BaseHandle handle)
40 {
41   return PropertyNotification(dynamic_cast<Dali::Internal::PropertyNotification*>(handle.GetObjectPtr()));
42 }
43
44 PropertyNotification::~PropertyNotification() = default;
45
46 PropertyNotification::PropertyNotification(const PropertyNotification& copy) = default;
47
48 PropertyNotification& PropertyNotification::operator=(const PropertyNotification& rhs) = default;
49
50 PropertyNotification::PropertyNotification(PropertyNotification&& rhs) = default;
51
52 PropertyNotification& PropertyNotification::operator=(PropertyNotification&& rhs) = default;
53
54 PropertyCondition PropertyNotification::GetCondition()
55 {
56   return GetImplementation(*this).GetCondition();
57 }
58
59 const PropertyCondition& PropertyNotification::GetCondition() const
60 {
61   return GetImplementation(*this).GetCondition();
62 }
63
64 Dali::Handle PropertyNotification::GetTarget() const
65 {
66   return GetImplementation(*this).GetTarget();
67 }
68
69 Property::Index PropertyNotification::GetTargetProperty() const
70 {
71   return GetImplementation(*this).GetTargetProperty();
72 }
73
74 void PropertyNotification::SetNotifyMode(NotifyMode mode)
75 {
76   GetImplementation(*this).SetNotifyMode(mode);
77 }
78
79 PropertyNotification::NotifyMode PropertyNotification::GetNotifyMode()
80 {
81   return GetImplementation(*this).GetNotifyMode();
82 }
83
84 bool PropertyNotification::GetNotifyResult() const
85 {
86   return GetImplementation(*this).GetNotifyResult();
87 }
88
89 PropertyNotifySignalType& PropertyNotification::NotifySignal()
90 {
91   return GetImplementation(*this).NotifySignal();
92 }
93
94 } // namespace Dali