X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fcontrols%2Ftext-controls%2Ftext-label-impl.h;h=c9287639481fa81674edbf42950b6fe65d6f6dca;hp=bdc587dc819fb0d60921e44c4400ce4c6914cec7;hb=406208364fe0ee31f31f475ba7ee7709e56d3e27;hpb=1ff26466c5458cda1de2997cd4e27b014ff0275a;ds=sidebyside 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 bdc587d..c928763 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,10 @@ #include #include #include -#include +#include +#include +#include +#include namespace Dali { @@ -36,7 +39,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: @@ -104,6 +107,13 @@ private: // From Control */ virtual void RequestTextRelayout(); +private: // from TextScroller + + /** + * @copydoc Text::ScrollerInterface::ScrollingFinished() + */ + virtual void ScrollingFinished(); + private: // Implementation /** @@ -122,9 +132,27 @@ private: TextLabel(const TextLabel&); TextLabel& operator=(const TextLabel& rhs); + // Connection needed to re-render text, when a Text Label returns to the stage + void OnStageConnect( Dali::Actor actor ); + + /** + * @brief Render view, create and attach actor(s) to this Text Label + */ + void RenderText(); + + /** + * @brief Set up Autoscrolling + */ + void SetUpAutoScrolling(); + private: // Data - Toolkit::Visual::Base mVisual; + Text::ControllerPtr mController; + Text::RendererPtr mRenderer; + Text::TextScrollerPtr mTextScroller; + Actor mRenderableActor; + int mRenderingBackend; + bool mHasBeenStaged:1; }; } // namespace Internal