X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Fdevel-api%2Fcontrols%2Ftext-controls%2Ftext-label-devel.h;h=40c6c70a5e2d97f06093923ec0619f95ceb94c53;hp=f4698f620026a70e67671b6e9ab43f5a2e7cd398;hb=6efee146b4c4e40df991b9e3425f97c66150df10;hpb=3d0003ca2eba6287c2ea16eef196a74b097f4190 diff --git a/dali-toolkit/devel-api/controls/text-controls/text-label-devel.h b/dali-toolkit/devel-api/controls/text-controls/text-label-devel.h index f4698f6..40c6c70 100644 --- a/dali-toolkit/devel-api/controls/text-controls/text-label-devel.h +++ b/dali-toolkit/devel-api/controls/text-controls/text-label-devel.h @@ -76,9 +76,31 @@ namespace Property * @details name "autoScrollLoopDelay", type float. */ AUTO_SCROLL_LOOP_DELAY = OUTLINE + 3, + + /** + * @brief Auto scrolling stop behaviour. + * @details name "autoScrollStopMode", type [Type](@ref Dali::Toolkit::DevelTextLabel::AutoScrollStopMode::Type) (Property::INTEGER) or Property::STRING. + * values FINISH_LOOP, IMMEDIATE, defualt FINISH_LOOP + */ + AUTO_SCROLL_STOP_MODE = OUTLINE + 4, }; } // namespace Property +/** +* @brief The type for TextLabel::Property::AUTO_SCROLL_STOP_MODE +*/ +namespace AutoScrollStopMode +{ +/** +* @ref Dali::Toolkit::DevelTextLabel::AutoScrollStopMode +*/ +enum Type +{ + FINISH_LOOP = 0, ///< stop animation after current loop finished. + IMMEDIATE ///< stop animation immediatly and reset position. +}; +} // namespace AutoScrollStopMode + } // namespace DevelText } // namespace Toolkit