Conversion to Apache 2.0 license
[platform/core/uifw/dali-core.git] / dali / public-api / object / type-info.h
1 #ifndef __DALI_TYPE_INFO_H__
2 #define __DALI_TYPE_INFO_H__
3
4 /*
5  * Copyright (c) 2014 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
22 // INTERNAL INCLUDES
23 #include <dali/public-api/object/base-handle.h>
24
25 namespace Dali DALI_IMPORT_API
26 {
27
28 class ConnectionTrackerInterface;
29 class FunctorDelegate;
30
31 namespace Internal DALI_INTERNAL
32 {
33   class TypeInfo;
34 };
35
36 /**
37  * @brief TypeInfo class for instantiation of registered types and introspection of
38  * their actions and signals.
39  *
40  * See TypeRegistry for methods of type registration and TypeInfo retrieval.
41  */
42 class TypeInfo : public BaseHandle
43 {
44 public:
45   typedef BaseHandle (*CreateFunction)(); ///< Function signature for creating an instance of the associated object type.
46
47   typedef bool (*ActionFunction)(BaseObject*, const std::string&, const std::vector<Property::Value>&); ///< Function signature for creating scriptable actions
48
49   /**
50    * @brief Connects a callback function with the object's signals.
51    *
52    * @param[in] object The object providing the signal.
53    * @param[in] tracker Used to disconnect the signal.
54    * @param[in] signalName The signal to connect to.
55    * @param[in] functor A newly allocated FunctorDelegate.
56    * @return True if the signal was connected.
57    * @post If a signal was connected, ownership of functor was passed to CallbackBase. Otherwise the caller is responsible for deleting the unused functor.
58    */
59   typedef bool (*SignalConnectorFunctionV2)(BaseObject* object, ConnectionTrackerInterface* tracker, const std::string& signalName, FunctorDelegate* functor);
60
61   /**
62    * @brief Callback to set an event-thread only property.
63    *
64    * @see PropertyRegistration.
65    * @param[in] object The object whose property should be set.
66    * @param[in] index The index of the property being set.
67    * @param[in] value The new value of the property for the object specified.
68    */
69   typedef void (*SetPropertyFunction)( BaseObject* object, Property::Index index, const Property::Value& value );
70
71   /**
72    * @brief Callback to get the value of an event-thread only property.
73    *
74    * @see PropertyRegistration.
75    * @param[in] object The object whose property value is required.
76    * @param[in] index The index of the property required.
77    * @return The current value of the property for the object specified.
78    */
79   typedef Property::Value (*GetPropertyFunction)( BaseObject* object, Property::Index index );
80
81   typedef std::vector<std::string> NameContainer; ///< Container of names for signals and actions
82
83   /**
84    * @brief Allows the creation of an empty TypeInfo handle.
85    */
86   TypeInfo();
87
88   /**
89    * @brief destructor.
90    */
91   virtual ~TypeInfo();
92
93   /**
94    * @copydoc Dali::BaseHandle::operator=
95    */
96   using BaseHandle::operator=;
97
98   /**
99    * @brief Retrieve the type name for this type.
100    *
101    * @return string name
102    */
103   const std::string& GetName();
104
105   /**
106    * @brief Retrieve the base type name for this type.
107    *
108    * @return string of base name
109    */
110   const std::string& GetBaseName();
111
112   /**
113    * @brief Create an object from this type.
114    *
115    * @return the BaseHandle for the newly created object
116    */
117   BaseHandle CreateInstance();
118
119   /**
120    * @brief Retrieve the creator function for this type.
121    *
122    * @return the creator function
123    */
124   CreateFunction GetCreator();
125
126   /**
127    * @brief Retrieve the actions for this type.
128    *
129    * @return Container of action names
130    */
131   NameContainer GetActions();
132
133   /**
134    * @brief Retrieve the signals for this type.
135    *
136    * @return Container of signal names
137    */
138   NameContainer GetSignals();
139
140   // Properties
141
142   /**
143    * @brief Retrieve all the property indices for this type.
144    *
145    * @param[out] indices Container of property indices
146    * @note The container will be cleared
147    */
148   void GetPropertyIndices( Property::IndexContainer& indices ) const;
149
150   /**
151    * @brief Given a property index, retrieve the property name associated with it.
152    *
153    * @param[in] index The property index.
154    * @return The name of the property at the given index.
155    */
156   const std::string& GetPropertyName( Property::Index index ) const;
157
158 public: // Not intended for application developers
159
160   /**
161    * @brief This constructor is used by Dali Get() method.
162    *
163    * @param [in] typeInfo A pointer to a Dali resource
164    */
165   explicit DALI_INTERNAL TypeInfo(Internal::TypeInfo* typeInfo);
166
167 };
168
169 } // namespace Dali
170
171 #endif // __DALI_TYPE_INFO_H__