[Tizen] Add codes for Dali Windows Backend
[platform/core/uifw/dali-core.git] / dali / public-api / object / property-types.h
index 0bfd2d7..29b52a0 100644 (file)
@@ -2,7 +2,7 @@
 #define __DALI_PROPERTY_TYPES_H__
 
 /*
- * Copyright (c) 2014 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2018 Samsung Electronics Co., Ltd.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -20,6 +20,7 @@
 
 // INTERNAL INCLUDES
 #include <dali/public-api/common/constants.h>
+#include <dali/public-api/common/extents.h>
 #include <dali/public-api/math/angle-axis.h>
 #include <dali/public-api/math/degree.h>
 #include <dali/public-api/math/quaternion.h>
 
 namespace Dali
 {
+/**
+ * @addtogroup dali_core_object
+ * @{
+ */
 
 /**
  * @brief Template function instances for property getters.
+ * @SINCE_1_0.0
  */
 namespace PropertyTypes
 {
 
 /**
- * @brief Retrieve the name of a property type.
+ * @brief Retrieves the name of a property type.
  *
- * @param [in] type The property type.
- * @return The name of this type.
+ * @SINCE_1_0.0
+ * @param[in] type The property type
+ * @return The name of this type
  */
-DALI_IMPORT_API const char* GetName(Property::Type type);
+DALI_CORE_API const char* GetName(Property::Type type);
 
 /**
- * @brief Retrieve an enumerated property type.
+ * @brief Retrieves an enumerated property type.
  *
  * New versions of this templated function must be defined for future types.
- * @return The property type.
+ * @SINCE_1_0.0
+ * @return The property type
  */
-template <typename T> Property::Type Get();
-template <>           Property::Type Get<bool>();
-template <>           Property::Type Get<float>();
-template <>           Property::Type Get<int>();
-template <>           Property::Type Get<unsigned int>();
-template <>           Property::Type Get<Vector2>();
-template <>           Property::Type Get<Vector3>();
-template <>           Property::Type Get<Vector4>();
-template <>           Property::Type Get<Matrix3>();
-template <>           Property::Type Get<Matrix>();
-template <>           Property::Type Get<AngleAxis>();
-template <>           Property::Type Get<Quaternion>();
-template <>           Property::Type Get<std::string>();
-template <>           Property::Type Get<Rect<int> >();
-template <>           Property::Type Get<Property::Map >();
-template <>           Property::Type Get<Property::Array >();
+template <typename T>
+inline Property::Type Get()                   { return Property::NONE;  }
+template <>
+inline Property::Type Get<bool>()             { return Property::BOOLEAN;  }
+template <>
+inline Property::Type Get<float>()            { return Property::FLOAT;    }
+template <>
+inline Property::Type Get<int>()              { return Property::INTEGER;  }
+template <>
+inline Property::Type Get<Vector2>()          { return Property::VECTOR2;  }
+template <>
+inline Property::Type Get<Vector3>()          { return Property::VECTOR3;  }
+template <>
+inline Property::Type Get<Vector4>()          { return Property::VECTOR4;  }
+template <>
+inline Property::Type Get<Matrix3>()          { return Property::MATRIX3;  }
+template <>
+inline Property::Type Get<Matrix>()           { return Property::MATRIX;  }
+template <>
+inline Property::Type Get<AngleAxis>()        { return Property::ROTATION; } // Rotation has two representations
+template <>
+inline Property::Type Get<Quaternion>()       { return Property::ROTATION; } // Rotation has two representations
+template <>
+inline Property::Type Get<std::string>()      { return Property::STRING; }
+template <>
+inline Property::Type Get<Dali::Rect<int> >() { return Property::RECTANGLE; }
+template <>
+inline Property::Type Get<Property::Map>()    { return Property::MAP; }
+template <>
+inline Property::Type Get<Property::Array>()  { return Property::ARRAY; }
+template <>
+inline Property::Type Get<Extents>()          { return Property::EXTENTS; }
+
 
 }; // namespace PropertyTypes
 
+/**
+ * @}
+ */
 } // namespace Dali
 
 #endif // __DALI_PROPERTY_TYPES_H__