Support for ASTC compressed textures wrapped in KTX files
[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) 2015 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  * @addtogroup dali_core_object
38  * @{
39  */
40
41 /**
42  * @brief Template function instances for property getters.
43  */
44 namespace PropertyTypes
45 {
46
47 /**
48  * @brief Retrieve the name of a property type.
49  *
50  * @param [in] type The property type.
51  * @return The name of this type.
52  */
53 DALI_IMPORT_API const char* GetName(Property::Type type);
54
55 /**
56  * @brief Retrieve an enumerated property type.
57  *
58  * New versions of this templated function must be defined for future types.
59  * @return The property type.
60  */
61 template <typename T>
62 inline Property::Type Get()                   { return Property::NONE;  }
63 template <>
64 inline Property::Type Get<bool>()             { return Property::BOOLEAN;  }
65 template <>
66 inline Property::Type Get<float>()            { return Property::FLOAT;    }
67 template <>
68 inline Property::Type Get<int>()              { return Property::INTEGER;  }
69 template <>
70 inline Property::Type Get<Vector2>()          { return Property::VECTOR2;  }
71 template <>
72 inline Property::Type Get<Vector3>()          { return Property::VECTOR3;  }
73 template <>
74 inline Property::Type Get<Vector4>()          { return Property::VECTOR4;  }
75 template <>
76 inline Property::Type Get<Matrix3>()          { return Property::MATRIX3;  }
77 template <>
78 inline Property::Type Get<Matrix>()           { return Property::MATRIX;  }
79 template <>
80 inline Property::Type Get<AngleAxis>()        { return Property::ROTATION; } // Rotation has two representations
81 template <>
82 inline Property::Type Get<Quaternion>()       { return Property::ROTATION; } // Rotation has two representations
83 template <>
84 inline Property::Type Get<std::string>()      { return Property::STRING; }
85 template <>
86 inline Property::Type Get<Dali::Rect<int> >() { return Property::RECTANGLE; }
87 template <>
88 inline Property::Type Get<Property::Map>()    { return Property::MAP; }
89 template <>
90 inline Property::Type Get<Property::Array>()  { return Property::ARRAY; }
91
92
93 }; // namespace PropertyTypes
94
95 /**
96  * @}
97  */
98 } // namespace Dali
99
100 #endif // __DALI_PROPERTY_TYPES_H__