2 * Copyright (c) 2014 Samsung Electronics Co., Ltd.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
19 #include <dali/public-api/object/property-notification.h>
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>
33 PropertyNotification::PropertyNotification()
37 PropertyNotification::PropertyNotification(Internal::PropertyNotification* propertyNotification)
38 : BaseHandle(propertyNotification)
42 PropertyNotification PropertyNotification::DownCast( BaseHandle handle )
44 return PropertyNotification( dynamic_cast<Dali::Internal::PropertyNotification*>(handle.GetObjectPtr()) );
47 PropertyNotification::~PropertyNotification()
51 PropertyNotification::PropertyNotification(const PropertyNotification& copy)
56 PropertyNotification& PropertyNotification::operator=(const PropertyNotification& rhs)
58 BaseHandle::operator=(rhs);
62 PropertyNotification& PropertyNotification::operator=(BaseHandle::NullType* rhs)
64 DALI_ASSERT_ALWAYS( (rhs == NULL) && "Can only assign NULL pointer to handle");
69 PropertyCondition PropertyNotification::GetCondition()
71 return GetImplementation(*this).GetCondition();
74 const PropertyCondition& PropertyNotification::GetCondition() const
76 return GetImplementation(*this).GetCondition();
79 Dali::Handle PropertyNotification::GetTarget() const
81 return GetImplementation(*this).GetTarget();
84 Property::Index PropertyNotification::GetTargetProperty() const
86 return GetImplementation(*this).GetTargetProperty();
89 void PropertyNotification::SetNotifyMode( NotifyMode mode )
91 GetImplementation(*this).SetNotifyMode( mode );
94 PropertyNotification::NotifyMode PropertyNotification::GetNotifyMode()
96 return GetImplementation(*this).GetNotifyMode();
99 bool PropertyNotification::GetNotifyResult() const
101 return GetImplementation(*this).GetNotifyResult();
104 PropertyNotifySignalV2& PropertyNotification::NotifySignal()
106 return GetImplementation(*this).NotifySignal();