Merge "Changed styles to use case-insensitive matching" into devel/master
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / enums.h
index 5582ba3..70bddb0 100644 (file)
 
 namespace Dali
 {
-
 /**
  * @brief DALi Toolkit namespace.
+ * @SINCE_1_0.0
  */
 namespace Toolkit
 {
+/**
+ * @addtogroup dali_toolkit_controls
+ * @{
+ */
 
 /**
  * @brief Control Orientation namespace.
+ * @SINCE_1_0.0
  */
 namespace ControlOrientation
 {
 
 /**
  * @brief The internal orientation of a control.
+ * @SINCE_1_0.0
  */
 enum Type
 {
-  Up,   ///< The contents of control are in a vertical layout, from top to bottom
-  Left, ///< The contents of control are in a horizontal layout, from left to right
-  Down, ///< The contents of control are in a vertical layout, from bottom to top
-  Right ///< The contents of control are in a horizontal layout, from right to left
+  Up,   ///< The contents of control are in a vertical layout, from top to bottom @SINCE_1_0.0
+  Left, ///< The contents of control are in a horizontal layout, from left to right @SINCE_1_0.0
+  Down, ///< The contents of control are in a vertical layout, from bottom to top @SINCE_1_0.0
+  Right ///< The contents of control are in a horizontal layout, from right to left @SINCE_1_0.0
 };
 
 } // namespace ControlOrientation
@@ -60,11 +66,15 @@ DALI_IMPORT_API bool IsVertical(ControlOrientation::Type orientation);
 /**
  * @brief Query whether an orientation is horizontal.
  *
+ * @SINCE_1_0.0
  * @param[in] orientation The orientation.
  * @return True if the orientation is horizontal.
  */
 DALI_IMPORT_API bool IsHorizontal(ControlOrientation::Type orientation);
 
+/**
+ * @}
+ */
 } // namespace Toolkit
 
 } // namespace Dali