X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Fdevel-api%2Fvisuals%2Fvisual-properties-devel.h;h=ddb02d5f52c0f758bcf54e31a0d287b6d63a1f1c;hb=78c772dd32c14bd500d6d3378ffa3a6e87dc60fa;hp=6a5f51d75b99130c85de6bab20c467fc5c4a0476;hpb=369234030acec5230418f620e2c153618d2afe7e;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/devel-api/visuals/visual-properties-devel.h b/dali-toolkit/devel-api/visuals/visual-properties-devel.h index 6a5f51d..ddb02d5 100644 --- a/dali-toolkit/devel-api/visuals/visual-properties-devel.h +++ b/dali-toolkit/devel-api/visuals/visual-properties-devel.h @@ -73,8 +73,16 @@ enum Type /** * @brief The radius for the rounded corners of the visual - * @details Name "cornerRadius", type Property::FLOAT, animatable - * @note Optional. + * @details Name "cornerRadius", type Property::FLOAT or Prooperty::VECTOR4, animatable + * @note By default, it is Vector::ZERO. + * @note Only Property::Vector4 can be animated. + * @note Radius value are used in clockwise order from top-left-corner to bottom-left-corner. + * When radius is Vector4(x, y, z, w) + * x y + * +--+ + * | | + * +--+ + * w z */ CORNER_RADIUS = OPACITY + 2, @@ -86,6 +94,28 @@ enum Type * If it it RELATIVE, the corner radius value is relative to the smaller of the visual width and visual height. */ CORNER_RADIUS_POLICY = OPACITY + 3, + + /** + * @brief The width for the borderline of the visual + * @details Name "borderlineWidth", type Property::FLOAT, animatable + * @note Optional. Default value is 0.0f. + */ + BORDERLINE_WIDTH = OPACITY + 4, + + /** + * @brief The color for the borderline of the visual + * @details Name "borderlineColor", type Property::VECTOR4, animatable + * @note Default value is Color::BLACK + */ + BORDERLINE_COLOR = OPACITY + 5, + + /** + * @brief The offset from the visual borderline (recommend [-1.0f to 1.0f]). + * @details Name "borderlineOffset", type Property::FLOAT, animatable + * @note Default value is 0.0f. + * @note This value will be clipped by [-1.0f to 1.0f]. + */ + BORDERLINE_OFFSET = OPACITY + 6, }; } // namespace Property