X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Fdevel-api%2Fvisuals%2Fimage-visual-properties-devel.h;h=2ae272628d02940b903ece6da2649d9d06d6a025;hp=eb39aa6ad3e570f157b3ec3cf45f85d302bbf1fd;hb=1b032e3f72c144d2da593a1c20d15041a3de00a3;hpb=3ca7994488b0b5e21bbb0d262c5fa2e4c731308b diff --git a/dali-toolkit/devel-api/visuals/image-visual-properties-devel.h b/dali-toolkit/devel-api/visuals/image-visual-properties-devel.h index eb39aa6..2ae2726 100644 --- a/dali-toolkit/devel-api/visuals/image-visual-properties-devel.h +++ b/dali-toolkit/devel-api/visuals/image-visual-properties-devel.h @@ -92,12 +92,29 @@ enum Type * @details Name "playRange", Type Property::VECTOR2, between 0 and 1 * @note Default 0 and 1 */ - PLAY_RANGE = ORIENTATION_CORRECTION + 4 + PLAY_RANGE = ORIENTATION_CORRECTION + 4, + + /** + * @brief The playing state the AnimatedVectorImageVisual will use. + * @details Name "playState", type PlayState (Property::INTEGER) + * @note This property is read-only. + */ + PLAY_STATE = ORIENTATION_CORRECTION + 5 }; } //namespace Property +/** + * @brief Enumeration for what state the animation is in. + */ +enum class PlayState +{ + STOPPED, ///< Animation has stopped + PLAYING, ///< The animation is playing + PAUSED ///< The animation is paused +}; + } // namespace DevelImageVisual } // namespace Toolkit