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