Merge branch 'devel/master' into devel/graphics
[platform/core/uifw/dali-core.git] / dali / devel-api / object / csharp-type-info.h
1 #ifndef DALI_CSHARP_TYPE_INFO_H
2 #define DALI_CSHARP_TYPE_INFO_H
3
4 /*
5  * Copyright (c) 2020 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-object.h>
23 #include <dali/public-api/object/property-value.h>
24
25 namespace Dali
26 {
27 namespace CSharpTypeInfo
28 {
29 /**
30  * @brief Call back used to create an instance of the associated object type
31  *
32  * @param[in] typeName The type name of the object to be created.
33  * @return Pointer to a BaseHandle
34  */
35 using CreateFunction = BaseHandle* (*)(const char* const);
36
37 /**
38  * @brief Callback to set an event-thread only property.
39  *
40  * @param[in] object The object whose property should be set.
41  * @param[in] propertyName The name of the property required.
42  * @param[in] value The new value of the property for the object specified.
43  * @see PropertyRegistration.
44  */
45 using SetPropertyFunction = void (*)(BaseObject*, const char* const, Property::Value*);
46
47 /**
48  * @brief Callback to get the value of an event-thread only property.
49  *
50  * @param[in] object The object whose property value is required.
51  * @param[in] propertyName The name of the property required.
52  * @return The current value of the property for the object specified.
53  * @see PropertyRegistration.
54  */
55 using GetPropertyFunction = Property::Value* (*)(BaseObject*, const char* const);
56 } // namespace CSharpTypeInfo
57
58 } // namespace Dali
59
60 #endif // DALI_CSHARP_TYPE_INFO_H