Merge "DALi Version 1.0.4" into tizen
[platform/core/uifw/dali-core.git] / dali / public-api / object / property-notification.cpp
1 /*
2  * Copyright (c) 2014 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/public-api/math/quaternion.h>
23 #include <dali/public-api/math/degree.h>
24 #include <dali/public-api/math/radian.h>
25 #include <dali/public-api/math/vector2.h>
26 #include <dali/public-api/object/handle.h>
27 #include <dali/internal/event/common/property-notification-impl.h>
28 #include <stdio.h>
29
30 namespace Dali
31 {
32
33 PropertyNotification::PropertyNotification()
34 {
35 }
36
37 PropertyNotification::PropertyNotification(Internal::PropertyNotification* propertyNotification)
38 : BaseHandle(propertyNotification)
39 {
40 }
41
42 PropertyNotification PropertyNotification::DownCast( BaseHandle handle )
43 {
44   return PropertyNotification( dynamic_cast<Dali::Internal::PropertyNotification*>(handle.GetObjectPtr()) );
45 }
46
47 PropertyNotification::~PropertyNotification()
48 {
49 }
50
51 PropertyNotification::PropertyNotification(const PropertyNotification& copy)
52 : BaseHandle(copy)
53 {
54 }
55
56 PropertyNotification& PropertyNotification::operator=(const PropertyNotification& rhs)
57 {
58   BaseHandle::operator=(rhs);
59   return *this;
60 }
61
62 PropertyNotification& PropertyNotification::operator=(BaseHandle::NullType* rhs)
63 {
64   DALI_ASSERT_ALWAYS( (rhs == NULL) && "Can only assign NULL pointer to handle");
65   Reset();
66   return *this;
67 }
68
69 PropertyCondition PropertyNotification::GetCondition()
70 {
71   return GetImplementation(*this).GetCondition();
72 }
73
74 const PropertyCondition& PropertyNotification::GetCondition() const
75 {
76   return GetImplementation(*this).GetCondition();
77 }
78
79 Dali::Handle PropertyNotification::GetTarget() const
80 {
81   return GetImplementation(*this).GetTarget();
82 }
83
84 Property::Index PropertyNotification::GetTargetProperty() const
85 {
86   return GetImplementation(*this).GetTargetProperty();
87 }
88
89 void PropertyNotification::SetNotifyMode( NotifyMode mode )
90 {
91   GetImplementation(*this).SetNotifyMode( mode );
92 }
93
94 PropertyNotification::NotifyMode PropertyNotification::GetNotifyMode()
95 {
96   return GetImplementation(*this).GetNotifyMode();
97 }
98
99 bool PropertyNotification::GetNotifyResult() const
100 {
101   return GetImplementation(*this).GetNotifyResult();
102 }
103
104 PropertyNotifySignalV2& PropertyNotification::NotifySignal()
105 {
106   return GetImplementation(*this).NotifySignal();
107 }
108
109 } // namespace Dali