[3.0] Exclude internal tag module in Public API reference
[platform/core/uifw/dali-core.git] / dali / public-api / object / property-notification.h
1 #ifndef __DALI_PROPERTY_NOTIFICATION_H__
2 #define __DALI_PROPERTY_NOTIFICATION_H__
3
4 /*
5  * Copyright (c) 2015 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/public-api/object/base-handle.h>
23 #include <dali/public-api/object/property-notification-declarations.h>
24 #include <dali/public-api/object/property-conditions.h>
25 #include <dali/public-api/object/property.h>
26
27 namespace Dali
28 {
29 /**
30  * @addtogroup dali_core_object
31  * @{
32  */
33
34 namespace Internal DALI_INTERNAL
35 {
36 class PropertyNotification;
37 }
38
39 /**
40  * @brief This is used to issue a notification upon a condition of the property being met.
41  *
42  * For example checking if Actor::POSITION_X > 100.0.
43  * @SINCE_1_0.0
44  * @see Dali::PropertyCondition
45  */
46 class DALI_IMPORT_API PropertyNotification : public BaseHandle
47 {
48 public:
49   /**
50    * @brief Enumeration to describe how to check condition
51    * @SINCE_1_0.0
52    */
53   enum NotifyMode
54   {
55     Disabled,                             ///< Don't notify, regardless of result of Condition @SINCE_1_0.0
56     NotifyOnTrue,                         ///< Notify whenever condition changes from false to true. @SINCE_1_0.0
57     NotifyOnFalse,                        ///< Notify whenever condition changes from true to false. @SINCE_1_0.0
58     NotifyOnChanged                       ///< Notify whenever condition changes (false to true, and true to false) @SINCE_1_0.0
59   };
60
61 public:
62
63   /**
64    * @brief Create an uninitialized PropertyNotification; this can be initialized with PropertyNotification::New().
65    *
66    * Calling member functions with an uninitialized Dali::Object is not allowed.
67    * @SINCE_1_0.0
68    */
69   PropertyNotification();
70
71   /**
72    * @brief Downcast a handle to PropertyNotification handle.
73    *
74    * If handle points to an PropertyNotification object the downcast
75    * produces valid handle. If not the returned handle is left
76    * uninitialized.
77    *
78    * @SINCE_1_0.0
79    * @param[in] handle to An object
80    * @return handle to a PropertyNotification object or an uninitialized handle
81    */
82   static PropertyNotification DownCast( BaseHandle handle );
83
84   /**
85    * @brief Destructor
86    *
87    * This is non-virtual since derived Handle types must not contain data or virtual methods.
88    * @SINCE_1_0.0
89    */
90   ~PropertyNotification();
91
92   /**
93    * @brief This copy constructor is required for (smart) pointer semantics.
94    *
95    * @SINCE_1_0.0
96    * @param [in] handle A reference to the copied handle
97    */
98   PropertyNotification(const PropertyNotification& handle);
99
100   /**
101    * @brief This assignment operator is required for (smart) pointer semantics.
102    *
103    * @SINCE_1_0.0
104    * @param [in] rhs  A reference to the copied handle
105    * @return A reference to this
106    */
107   PropertyNotification& operator=(const PropertyNotification& rhs);
108
109   /**
110    * @brief Get the condition of this notification
111    *
112    * @SINCE_1_0.0
113    * @return The condition is returned
114    */
115   PropertyCondition GetCondition();
116
117   /**
118    * @brief Get the condition of this notification
119    *
120    * @SINCE_1_0.0
121    * @return The condition is returned
122    */
123   const PropertyCondition& GetCondition() const;
124
125   /**
126    * @brief Get the target handle that this notification is observing.
127    * @SINCE_1_0.0
128    */
129   Dali::Handle GetTarget() const;
130
131   /**
132    * @brief Get the target handle's property index that this notification
133    * is observing.
134    *
135    * @SINCE_1_0.0
136    * @return The target property.
137    */
138   Property::Index GetTargetProperty() const;
139
140   /**
141    * @brief Sets the Notification mode.
142    *
143    * This determines how the property
144    * notification should respond to the result of a condition.
145    *
146    * @SINCE_1_0.0
147    * @param[in] mode Notification mode (Default is PropertyNotification::NotifyOnTrue)
148    */
149   void SetNotifyMode( NotifyMode mode );
150
151   /**
152    * @brief Retrieves the current Notification mode.
153    *
154    * @SINCE_1_0.0
155    * @return Notification mode.
156    */
157   NotifyMode GetNotifyMode();
158
159   /**
160    * @brief Gets the result of the last condition check that caused a signal emit,
161    * useful when using NotifyOnChanged mode and need to know what it changed to.
162    *
163    * @SINCE_1_0.0
164    * @return whether condition result that triggered last emit was true or false
165    */
166   bool GetNotifyResult() const;
167
168   /**
169    * @brief Connect to this signal to be notified when the notification has occurred.
170    *
171    * @SINCE_1_0.0
172    * @return A signal object to Connect() with.
173    */
174   PropertyNotifySignalType& NotifySignal();
175
176 public: // Not intended for use by Application developers
177
178   /**
179    * @internal
180    * @brief This constructor is used by Dali New() methods.
181    *
182    * @SINCE_1_0.0
183    * @param [in] propertyNotification A pointer to a newly allocated Dali resource
184    */
185   explicit DALI_INTERNAL PropertyNotification(Internal::PropertyNotification* propertyNotification);
186 };
187
188 /**
189  * @}
190  */
191 } // namespace Dali
192
193 #endif // __DALI_PROPERTY_NOTIFICATION_H__