2c1df6d5c20bd5edabb5cfd3c7de542fd08459e2
[platform/core/uifw/dali-core.git] / dali / public-api / object / property-types.h
1 #ifndef __DALI_PROPERTY_TYPES_H__
2 #define __DALI_PROPERTY_TYPES_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 // INTERNAL INCLUDES
22 #include <dali/public-api/common/constants.h>
23 #include <dali/public-api/math/angle-axis.h>
24 #include <dali/public-api/math/degree.h>
25 #include <dali/public-api/math/quaternion.h>
26 #include <dali/public-api/math/vector2.h>
27 #include <dali/public-api/math/vector3.h>
28 #include <dali/public-api/math/vector4.h>
29 #include <dali/public-api/math/matrix3.h>
30 #include <dali/public-api/math/matrix.h>
31 #include <dali/public-api/math/rect.h>
32 #include <dali/public-api/object/property.h>
33
34 namespace Dali
35 {
36
37 /**
38  * @brief Template function instances for property getters.
39  */
40 namespace PropertyTypes
41 {
42
43 /**
44  * @brief Retrieve the name of a property type.
45  *
46  * @param [in] type The property type.
47  * @return The name of this type.
48  */
49 DALI_IMPORT_API const char* GetName(Property::Type type);
50
51 /**
52  * @brief Retrieve an enumerated property type.
53  *
54  * New versions of this templated function must be defined for future types.
55  * @return The property type.
56  */
57 template <typename T>
58 inline Property::Type Get()                   { return Property::NONE;  }
59 template <>
60 inline Property::Type Get<bool>()             { return Property::BOOLEAN;  }
61 template <>
62 inline Property::Type Get<float>()            { return Property::FLOAT;    }
63 template <>
64 inline Property::Type Get<int>()              { return Property::INTEGER;  }
65 template <>
66 inline Property::Type Get<unsigned int>()     { return Property::UNSIGNED_INTEGER;  }
67 template <>
68 inline Property::Type Get<Vector2>()          { return Property::VECTOR2;  }
69 template <>
70 inline Property::Type Get<Vector3>()          { return Property::VECTOR3;  }
71 template <>
72 inline Property::Type Get<Vector4>()          { return Property::VECTOR4;  }
73 template <>
74 inline Property::Type Get<Matrix3>()          { return Property::MATRIX3;  }
75 template <>
76 inline Property::Type Get<Matrix>()           { return Property::MATRIX;  }
77 template <>
78 inline Property::Type Get<AngleAxis>()        { return Property::ROTATION; } // Rotation has two representations
79 template <>
80 inline Property::Type Get<Quaternion>()       { return Property::ROTATION; } // Rotation has two representations
81 template <>
82 inline Property::Type Get<std::string>()      { return Property::STRING; }
83 template <>
84 inline Property::Type Get<Dali::Rect<int> >() { return Property::RECTANGLE; }
85 template <>
86 inline Property::Type Get<Property::Map>()    { return Property::MAP; }
87 template <>
88 inline Property::Type Get<Property::Array>()  { return Property::ARRAY; }
89
90
91 }; // namespace PropertyTypes
92
93 } // namespace Dali
94
95 #endif // __DALI_PROPERTY_TYPES_H__