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=926128eb05bf86b0b7b59b4bae39bba406baf7b1;hp=c2dd4856e5212983e3729d02410365d4c836122d;hb=e3d6a0a27fd980a4ced6e7257abdc32bc192e871;hpb=cb1a9e02b309e48b8599fa7bb34ab7856fb823e7 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 c2dd485..926128e 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,13 +18,20 @@ * */ +// EXTERNAL INCLUDES +#include + // INTERNAL INCLUDES #include #include +#include #include #include #include #include +#include +#include + namespace Dali { @@ -67,64 +74,53 @@ public: */ static Property::Value GetProperty( BaseObject* object, Property::Index index ); + Text::ControllerPtr getController(); + 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 ; - /** - * @copydoc Control::OnStageConnection() - */ - virtual void OnStageConnection( int depth ); + // From ControlInterface /** * @copydoc Text::ControlInterface::RequestTextRelayout() */ - virtual void RequestTextRelayout(); - - /** - * @copydoc Text::ControlInterface::TextChanged() - */ - virtual void TextChanged(); - - /** - * @copydoc Text::ControlInterface::MaxLengthReached() - */ - virtual void MaxLengthReached(); + void RequestTextRelayout() override; private: // from TextScroller /** * @copydoc Text::ScrollerInterface::ScrollingFinished() */ - virtual void ScrollingFinished(); + void ScrollingFinished() override; private: // Implementation @@ -144,27 +140,54 @@ 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 + * @brief Set up Autoscrolling */ - void RenderText(); + void SetUpAutoScrolling(); /** - * @brief Set up Autoscrolling + * Creates a text-scroller if one has not been created. + * @return The text scroller. */ - void SetUpAutoScrolling(); + Text::TextScrollerPtr GetTextScroller() + { + if( !mTextScroller ) + { + mTextScroller = Text::TextScroller::New( *this ); + } + return mTextScroller; + } private: // Data Text::ControllerPtr mController; - Text::RendererPtr mRenderer; Text::TextScrollerPtr mTextScroller; - Actor mRenderableActor; + + Toolkit::Visual::Base mVisual; + int mRenderingBackend; - bool mHasBeenStaged:1; + bool mTextUpdateNeeded:1; + +protected: + struct AccessibleImpl : public Control::Impl::AccessibleImpl, + public virtual Dali::Accessibility::Text + { + using Control::Impl::AccessibleImpl::AccessibleImpl; + + std::string GetText( size_t startOffset, size_t endOffset ) override; + size_t GetCharacterCount() override; + size_t GetCaretOffset() override; + bool SetCaretOffset(size_t offset) override; + Dali::Accessibility::Range + GetTextAtOffset( size_t offset, + Dali::Accessibility::TextBoundary boundary ) override; + Dali::Accessibility::Range GetSelection( size_t selectionNum ) override; + bool RemoveSelection( size_t selectionNum ) override; + bool SetSelection( size_t selectionNum, size_t startOffset, + size_t endOffset ) override; + std::string GetNameRaw() override; + Property::Index GetNamePropertyIndex() override; + }; }; } // namespace Internal @@ -193,4 +216,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