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=bc2459fd7d19a41d7f7b5ed696764817a0907707;hp=c099bdf0203e9b4bd35f230545444a085886855a;hb=cd2db445fc95fed65cb9d966e672cb6976a10d0d;hpb=610da2945e1b56e09b12466b1c23b90aa348abdd 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 c099bdf..bc2459f 100644 --- a/dali-toolkit/internal/controls/text-controls/text-label-impl.h +++ b/dali-toolkit/internal/controls/text-controls/text-label-impl.h @@ -1,8 +1,8 @@ -#ifndef __DALI_TOOLKIT_INTERNAL_TEXT_LABEL_H__ -#define __DALI_TOOLKIT_INTERNAL_TEXT_LABEL_H__ +#ifndef DALI_TOOLKIT_INTERNAL_TEXT_LABEL_H +#define DALI_TOOLKIT_INTERNAL_TEXT_LABEL_H /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2017 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -21,8 +21,11 @@ // INTERNAL INCLUDES #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: @@ -92,30 +95,19 @@ 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( int depth ); +// From ControlInterface /** * @copydoc Text::ControlInterface::RequestTextRelayout() */ virtual void RequestTextRelayout(); - /** - * @copydoc Text::ControlInterface::TextChanged() - */ - virtual void TextChanged(); +private: // from TextScroller /** - * @copydoc Text::ControlInterface::MaxLengthReached() + * @copydoc Text::ScrollerInterface::ScrollingFinished() */ - virtual void MaxLengthReached(); + virtual void ScrollingFinished(); private: // Implementation @@ -143,13 +135,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; }; @@ -179,4 +176,4 @@ inline const Toolkit::Internal::TextLabel& GetImpl( const Toolkit::TextLabel& te } // namespace Dali -#endif // __DALI_TOOLKIT_INTERNAL_TEXT_LABEL_H__ +#endif // DALI_TOOLKIT_INTERNAL_TEXT_LABEL_H