use modern construct '= default' for special functions.
[platform/core/uifw/dali-core.git] / dali / internal / event / common / property-notification-manager.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/internal/event/common/property-notification-manager.h>
20
21 // INTERNAL INCLUDES
22 #include <dali/internal/event/common/property-notification-impl.h>
23 #include <dali/internal/common/message.h>
24
25 namespace Dali
26 {
27
28 namespace Internal
29 {
30
31 PropertyNotificationManager* PropertyNotificationManager::New()
32 {
33   return new PropertyNotificationManager;
34 }
35
36 PropertyNotificationManager::~PropertyNotificationManager() = default;
37
38 void PropertyNotificationManager::PropertyNotificationCreated( PropertyNotification& propertyNotification )
39 {
40   mPropertyNotifications.PushBack( &propertyNotification );
41 }
42
43 void PropertyNotificationManager::PropertyNotificationDestroyed( PropertyNotification& propertyNotification )
44 {
45   Dali::Vector< PropertyNotification* >::Iterator iter = std::find( mPropertyNotifications.Begin(), mPropertyNotifications.End(), &propertyNotification );
46   DALI_ASSERT_ALWAYS( iter != mPropertyNotifications.End() && "PropertyNotification not found" );
47
48   mPropertyNotifications.Remove( iter );
49 }
50
51 void PropertyNotificationManager::NotifyProperty( SceneGraph::PropertyNotification* propertyNotification, bool validity )
52 {
53   Dali::Vector< PropertyNotification* >::Iterator iter = mPropertyNotifications.Begin();
54   const Dali::Vector< PropertyNotification* >::Iterator endIter = mPropertyNotifications.End();
55
56   // walk the collection of PropertyNotifications
57   for( ; iter != endIter; ++iter )
58   {
59     // found one with the matching SceneGraph::PropertyNotification?
60     if( (*iter)->CompareSceneObject( propertyNotification ) )
61     {
62       // allow application to access the value that triggered this emit incase of NOTIFY_ON_CHANGED mode
63       (*iter)->SetNotifyResult(validity);
64       // yes..emit signal
65       (*iter)->EmitSignalNotify();
66       break;
67     }
68   }
69 }
70
71 PropertyNotificationManager::PropertyNotificationManager() = default;
72
73 } // namespace Internal
74
75 } // namespace Dali
76