Adding Devel Property Registration macro
[platform/core/uifw/dali-core.git] / dali / devel-api / object / property-helper-devel.h
1 #ifndef __DALI_PROPERTY_HELPER_DEVEL_H__
2 #define __DALI_PROPERTY_HELPER_DEVEL_H__
3
4 /*
5  * Copyright (c) 2016 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/type-registry-helper.h>
23
24 /**
25  * @brief These macros are used internally by the property macros.
26  * Use the the property macros in the section below this one (without the _INTERNAL postfix) when defining properties.
27  * These internal macros exist as to perform the compile-time check on the enumeration order, the __COUNTER__ macro is used twice.
28  * Using it twice within the same macro would result in two different values.
29  */
30 #define DALI_DEVEL_PROPERTY_REGISTRATION_INTERNAL( count, typeRegistrationObject, objectNamespace, objectType, develNamespace, text, valueType, enumIndex ) \
31   Dali::PropertyRegistration DALI_TOKEN_PASTE( property, count ) ( typeRegistrationObject, text, objectNamespace:: develNamespace ::Property::enumIndex, Dali::Property::valueType, &objectType::SetProperty, &objectType::GetProperty ); \
32   DALI_COMPILE_TIME_ASSERT( ( objectNamespace:: develNamespace ::Property::enumIndex - objectNamespace::objectType::PROPERTY_START_INDEX ) == count );
33
34 /**
35  * @brief These macros are used to define properties for implementations of CustomActor.
36  *
37  * These macros should be used when defining devel properties
38  * They provide the following benefits:
39  * - A standard and consistent way to define properties.
40  * - Concise definition promotes readability, especially with large numbers of properties.
41  * - Provides a built-in compile-time check. This checks the order of the properties within the enumeration match the order of the property macros. Note: This check is not performed for animatable properties.
42  * - Enforces how properties are enumerated in the object handles header file.
43  *
44  * Note: The compile-type check will produce the following message on failure:
45  *       error: invalid application of 'sizeof' to incomplete type 'Dali::CompileTimeAssertBool<false>'
46  *
47  * Macro usage example:
48  *
49  * Within the your object's implementation cpp:
50  * @code
51  * #include <dali/public-api/object/devel-property-helper.h>
52  * ...
53  * DALI_TYPE_REGISTRATION_BEGIN( MyApp::MyCustomActor, Dali::CustomActor, Create )
54  * DALI_DEVEL_PROPERTY_REGISTRATION( MyApp, MyCustomActor, "myProperty", INTEGER, MY_DEVEL_PROPERTY )
55  * DALI_TYPE_REGISTRATION_END()
56  * @endcode
57  *
58  * Within your handle's header:
59  *
60  * @code
61  * #include <dali/public-api/common/dali-common.h>
62  *
63  *
64  * ///< @brief The start and end property ranges for this control.
65  * enum PropertyRange
66  * {
67  *   PROPERTY_START_INDEX = Dali::PROPERTY_REGISTRATION_START_INDEX,
68  *   PROPERTY_END_INDEX =   PROPERTY_START_INDEX + 1000
69  * };
70  *
71  * ///< @brief An enumeration of properties belonging to the Button class.
72  * struct Property
73  * {
74  *   enum
75  *   {
76  *     MY_PROPERTY = PROPERTY_START_INDEX    ///< @brief name "myProperty", type Integer
77  *   };
78  * };
79  * @endcode
80  *
81  * Using these macros have certain prerequisites on how the property enumeration is defined.
82  * Please see the Programming Guide (within the generated Doxygen) for full details.
83  */
84 #define DALI_DEVEL_PROPERTY_REGISTRATION( objectNamespace, objectType, text, valueType, enumIndex ) \
85   DALI_DEVEL_PROPERTY_REGISTRATION_INTERNAL( __COUNTER__, typeRegistration, objectNamespace, objectType, DALI_TOKEN_PASTE( Devel, objectType ), text, valueType, enumIndex  )
86
87 #endif // __DALI_PROPERTY_HELPER_DEVEL_H__