Merge "(Partial Update) Refactorize PartialRenderingData check logic" into devel...
[platform/core/uifw/dali-core.git] / dali / internal / event / common / property-notification-manager.h
1 #ifndef DALI_INTERNAL_PROPERTY_NOTIFICATION_MANAGER_H
2 #define DALI_INTERNAL_PROPERTY_NOTIFICATION_MANAGER_H
3
4 /*
5  * Copyright (c) 2024 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // INTERNAL INCLUDES
22 #include <dali/integration-api/ordered-set.h>
23 #include <dali/internal/event/common/property-notifier.h>
24 #include <dali/internal/event/common/scene-graph-notifier-interface-mapper.h>
25 #include <dali/public-api/common/dali-vector.h>
26
27 namespace Dali
28 {
29 namespace Internal
30 {
31 class PropertyNotification;
32
33 /**
34  * PropertyNotificationManager issues notifications to applications
35  * a condition of a property being met.
36  * It also monitors the lifetime of PropertyNotification objects and will
37  * only emit signals for PropertyNotification objects which are still valid.
38  */
39 class PropertyNotificationManager : public PropertyNotifier, public SceneGraphNotifierInterfaceMapper<PropertyNotification>
40 {
41 public:
42   /**
43    * Create an PropertyNotificationManager.
44    * @return A newly allocated object.
45    */
46   static PropertyNotificationManager* New();
47
48   /**
49    * Virtual destructor.
50    */
51   ~PropertyNotificationManager() override;
52
53   /**
54    * Called when a PropertyNotification is constructed.
55    */
56   void PropertyNotificationCreated(PropertyNotification& propertyNotification);
57
58   /**
59    * Called when a PropertyNotification is destroyed.
60    */
61   void PropertyNotificationDestroyed(PropertyNotification& propertyNotification);
62
63 private: // private virtual overrides
64   /**
65    * @copydoc PropertyNotifier::NotifyProperty
66    */
67   void NotifyProperty(NotifierInterface::NotifyId notifyId, bool validity) override;
68
69 private:
70   /**
71    * Default constructor.
72    */
73   PropertyNotificationManager();
74
75   // Undefined
76   PropertyNotificationManager(const PropertyNotificationManager&);
77
78   // Undefined
79   PropertyNotificationManager& operator=(const PropertyNotificationManager& rhs);
80
81 private:
82   Integration::OrderedSet<PropertyNotification, false> mPropertyNotifications; ///< All existing PropertyNotifications (not owned)
83 };
84
85 } // namespace Internal
86
87 } // namespace Dali
88
89 #endif // DALI_INTERNAL_PROPERTY_NOTIFICATION_MANAGER_H