Merge "Support animation of ArcVisual properties" into devel/master
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / devel-api / visuals / arc-visual-properties-devel.h
index a10df8a..8be5a94 100644 (file)
 
 namespace Dali
 {
-
 namespace Toolkit
 {
-
 namespace DevelArcVisual
 {
-
 /**
  * @brief ArcVisual Properties.
  */
 namespace Property
 {
-
 /**
  * @brief Enumeration for the instance of properties belonging to the ArcVisual.
  */
@@ -43,21 +39,21 @@ enum
 {
   /**
    * @brief The thickness of the arc.
-   * @details Name "thickness", type Property::FLOAT.
+   * @details Name "thickness", type Property::FLOAT, animatable.
    * @note Mandatory.
    */
   THICKNESS = VISUAL_PROPERTY_START_INDEX,
 
   /**
    * @brief The start angle where the arc begins in degrees.
-   * @details Name "startAngle", type Property::FLOAT.
+   * @details Name "startAngle", type Property::FLOAT, animatable.
    * @note Optional. If not specified, the default is 0.
    */
   START_ANGLE,
 
   /**
    * @brief The sweep angle of the arc in degrees.
-   * @details Name "sweepAngle", type Property::FLOAT.
+   * @details Name "sweepAngle", type Property::FLOAT, animatable.
    * The arc starts at a specified start angle and sweeps clockwise, drawing slices of pie.
    * @note Optional. If not specified, the default is 360.
    */
@@ -79,11 +75,10 @@ enum
  */
 namespace Cap
 {
-
 enum Type
 {
-  BUTT,      ///< The arc does not extend beyond its two endpoints.
-  ROUND      ///< The arc will be extended by a half circle with the center at the end.
+  BUTT, ///< The arc does not extend beyond its two endpoints.
+  ROUND ///< The arc will be extended by a half circle with the center at the end.
 };
 
 } // namespace Cap