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=a863c9cccbdaa07863a079fe13a5ac8b34d43922;hp=e45797af30273007da1f9dd0fd0f9e73b2467ebc;hb=583538010c34b92f80989021201484fdf9e590a9;hpb=14179d13fb9fa5e3d91eafcc6227228f12078dfc 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 e45797a..a863c9c 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) 2020 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. @@ -18,11 +18,19 @@ * */ +// EXTERNAL INCLUDES +#include + // INTERNAL INCLUDES #include #include +#include #include +#include #include +#include +#include + namespace Dali { @@ -36,7 +44,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: @@ -70,47 +78,46 @@ private: // From Control /** * @copydoc Control::OnInitialize() */ - virtual void OnInitialize(); + void OnInitialize() override; /** * @copydoc Control::OnStyleChange() */ - virtual void OnStyleChange( Toolkit::StyleManager styleManager, StyleChange::Type change ); + void OnStyleChange( Toolkit::StyleManager styleManager, StyleChange::Type change ) override; /** * @copydoc Control::OnRelayout() */ - virtual void OnRelayout( const Vector2& size, RelayoutContainer& container ); + void OnRelayout( const Vector2& size, RelayoutContainer& container ) override; /** * @copydoc Control::GetNaturalSize() */ - virtual Vector3 GetNaturalSize(); + Vector3 GetNaturalSize() override; /** * @copydoc Control::GetHeightForWidth() */ - virtual float GetHeightForWidth( float width ); + float GetHeightForWidth( float width ) override; /** - * @copydoc Text::ControlInterface::AddDecoration() + * @copydoc Control::OnPropertySet() */ - virtual void AddDecoration( Actor& actor, bool needsClipping ); + void OnPropertySet( Property::Index index, const Property::Value& propertyValue ) override ; + + // From ControlInterface /** * @copydoc Text::ControlInterface::RequestTextRelayout() */ - virtual void RequestTextRelayout(); + void RequestTextRelayout() override; - /** - * @copydoc Text::ControlInterface::TextChanged() - */ - virtual void TextChanged(); +private: // from TextScroller /** - * @copydoc Text::ControlInterface::MaxLengthReached() + * @copydoc Text::ScrollerInterface::ScrollingFinished() */ - virtual void MaxLengthReached(); + void ScrollingFinished() override; private: // Implementation @@ -130,13 +137,33 @@ private: TextLabel(const TextLabel&); TextLabel& operator=(const TextLabel& rhs); + /** + * @brief Set up Autoscrolling + */ + void SetUpAutoScrolling(); + + /** + * Creates a text-scroller if one has not been created. + * @return The text scroller. + */ + Text::TextScrollerPtr GetTextScroller() + { + if( !mTextScroller ) + { + mTextScroller = Text::TextScroller::New( *this ); + } + return mTextScroller; + } + private: // Data Text::ControllerPtr mController; - Text::RendererPtr mRenderer; - RenderableActor mRenderableActor; + Text::TextScrollerPtr mTextScroller; + + Toolkit::Visual::Base mVisual; int mRenderingBackend; + bool mTextUpdateNeeded:1; }; } // namespace Internal @@ -165,4 +192,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