X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Fpublic-api%2Fenums.h;h=84b1176925972ac41ddd5f328a3b55d0bce2dd55;hp=5582ba357b2806ff699b9480eda60745fa962e55;hb=007d0a26178ff4d44d87030c14b8d50f7048da66;hpb=e4e5db1d2d7997e7bf803a531048d8dcb959083b diff --git a/dali-toolkit/public-api/enums.h b/dali-toolkit/public-api/enums.h index 5582ba3..84b1176 100644 --- a/dali-toolkit/public-api/enums.h +++ b/dali-toolkit/public-api/enums.h @@ -23,48 +23,58 @@ 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. + * @brief Enumeration for 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 /** - * @brief Query whether an orientation is vertical. + * @brief Queries whether an orientation is vertical. * - * @param[in] orientation The orientation. - * @return True if the orientation is vertical. + * @param[in] orientation The orientation + * @return true if the orientation is vertical */ DALI_IMPORT_API bool IsVertical(ControlOrientation::Type orientation); /** - * @brief Query whether an orientation is horizontal. + * @brief Queries whether an orientation is horizontal. * - * @param[in] orientation The orientation. - * @return True if the 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