1 #ifndef __DALI_OBJECT_REGISTRY_H__
2 #define __DALI_OBJECT_REGISTRY_H__
5 * Copyright (c) 2015 Samsung Electronics Co., Ltd.
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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.
22 #include <dali/public-api/object/handle.h>
23 #include <dali/public-api/signals/dali-signal.h>
28 namespace Internal DALI_INTERNAL
34 * @brief The ObjectRegistry notifies it's observers when an object is created.
36 * Handle to the created Object is passed in the call back function.
37 * The Handle is passed as Dali::Object handle, which can be DownCast
38 * to the appropriate type.
40 * Care should be taken to not store the handle in the Observer, as this will
41 * have adverse effect on the life time of the Internal Object. The Handle
42 * should only be used to connect to signals
45 * ObjectRegistry registry = Stage::GetObjectRegistry();
46 * registry.ObjectCreatedSignal().Connect( ObjectCreatedCallbackFunc );
49 * | %Signal Name | Method |
50 * |------------------|------------------------------|
51 * | object-created | @ref ObjectCreatedSignal() |
52 * | object-destroyed | @ref ObjectDestroyedSignal() |
54 class DALI_IMPORT_API ObjectRegistry : public BaseHandle
61 * @brief Object created signal
63 typedef Signal< void ( BaseHandle ) > ObjectCreatedSignalType;
66 * @brief Object destroyed signal
68 typedef Signal< void ( const Dali::RefObject* ) > ObjectDestroyedSignalType;
71 * @brief Allows the creation of an empty objectRegistry handle.
73 * To retrieve the current objectRegistry,
74 * this handle can be set using Stage::GetCurrent().GetObjectRegistry().
81 * This is non-virtual since derived Handle types must not contain data or virtual methods.
86 * @brief This copy constructor is required for (smart) pointer semantics.
88 * @param [in] handle A reference to the copied handle
90 ObjectRegistry(const ObjectRegistry& handle);
93 * @brief This assignment operator is required for (smart) pointer semantics.
95 * @param [in] rhs A reference to the copied handle
96 * @return A reference to this
98 ObjectRegistry& operator=(const ObjectRegistry& rhs);
103 * @brief This signal is emitted when an object is created.
105 * A callback of the following type may be connected:
107 * void YourCallbackName(BaseHandle object);
109 * @pre The Object has been initialized.
110 * @return The signal to connect to.
112 ObjectCreatedSignalType& ObjectCreatedSignal();
115 * @brief This signal is emitted when an object is destroyed.
117 * WARNING: Since this signal is emitted when the object is
118 * in the process of being destroyed, the RefObject pointer
119 * passed in the signal should not be modified in anyways.
120 * And should NOT be used to create an handle. which will
121 * affect the life time of this destroyed object and leads to
122 * undefined behaviour.
124 * The only intended use is for Toolkit controls which want to
125 * keep track of objects being created and destroyed for internal
128 * A callback of the following type may be connected:
130 * void YourCallbackName(const Dali::RefObject* objectPointer);
132 * @pre The Object has been initialized.
133 * @return The signal to connect to.
135 ObjectDestroyedSignalType& ObjectDestroyedSignal();
137 public: // Not intended for application developers
140 * @brief This constructor is used by Dali Get() method.
142 * @param [in] objectRegistry A pointer to a Dali resource
144 explicit DALI_INTERNAL ObjectRegistry(Internal::ObjectRegistry* objectRegistry);
149 #endif // __DALI_OBJECT_REGISTRY_H__