X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fcontrols%2Ftext-controls%2Ftext-label-impl.h;h=c2dd4856e5212983e3729d02410365d4c836122d;hb=36ac338ff7e9c299ce45818d77aa8f71c63a45aa;hp=37e531cce693e12a42720c6cd3f3a9030fa0d8a0;hpb=c6032a09ae68156bcdaef2f09fbb4617245bc75f;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/controls/text-controls/text-label-impl.h b/dali-toolkit/internal/controls/text-controls/text-label-impl.h index 37e531c..c2dd485 100644 --- a/dali-toolkit/internal/controls/text-controls/text-label-impl.h +++ b/dali-toolkit/internal/controls/text-controls/text-label-impl.h @@ -22,7 +22,9 @@ #include #include #include +#include #include +#include namespace Dali { @@ -36,7 +38,7 @@ namespace Internal /** * @brief A control which renders a short text string. */ -class TextLabel : public Control, public Text::ControlInterface +class TextLabel : public Control, public Text::ControlInterface, public Text::ScrollerInterface { public: @@ -93,9 +95,14 @@ private: // From Control virtual float GetHeightForWidth( float width ); /** + * @copydoc Text::ControlInterface::AddDecoration() + */ + virtual void AddDecoration( Actor& actor, bool needsClipping ); + + /** * @copydoc Control::OnStageConnection() */ - virtual void OnStageConnection( unsigned int depth ); + virtual void OnStageConnection( int depth ); /** * @copydoc Text::ControlInterface::RequestTextRelayout() @@ -112,6 +119,13 @@ private: // From Control */ virtual void MaxLengthReached(); +private: // from TextScroller + + /** + * @copydoc Text::ScrollerInterface::ScrollingFinished() + */ + virtual void ScrollingFinished(); + private: // Implementation /** @@ -138,13 +152,18 @@ private: */ void RenderText(); + /** + * @brief Set up Autoscrolling + */ + void SetUpAutoScrolling(); + private: // Data Text::ControllerPtr mController; Text::RendererPtr mRenderer; + Text::TextScrollerPtr mTextScroller; Actor mRenderableActor; int mRenderingBackend; - unsigned int mDepth; bool mHasBeenStaged:1; };