X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fvisuals%2Ftext%2Ftext-visual.h;h=777729b0caccfb2781b39449a377b198ece7ac81;hb=ee431c9e2b342243f9e0e2b6bafca7505d321457;hp=9151ec7002f19c08d621b3b620753e087b5dedda;hpb=63f9b5207c2794cdc460d587723be89585872a51;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/visuals/text/text-visual.h b/dali-toolkit/internal/visuals/text/text-visual.h index 9151ec7..777729b 100644 --- a/dali-toolkit/internal/visuals/text/text-visual.h +++ b/dali-toolkit/internal/visuals/text/text-visual.h @@ -20,9 +20,8 @@ // INTERNAL INCLUDES #include -#include +#include #include -#include namespace Dali { @@ -69,49 +68,50 @@ class TextVisual : public Visual::Base public: /** - * @brief Constructor. - * - * @param[in] factoryCache The VisualFactoryCache object - */ - TextVisual( VisualFactoryCache& factoryCache ); - - /** - * @brief A reference counted object may only be deleted by calling Unreference(). - */ - ~TextVisual(); - - /** + * @brief Create a new text visual. * + * @param[in] factoryCache A pointer pointing to the VisualFactoryCache object + * @return A smart-pointer to the newly allocated visual. */ - void SetTextControlInterface( Text::ControlInterface* controlInterface ); + static TextVisualPtr New( VisualFactoryCache& factoryCache ); public: // from Visual::Base /** * @copydoc Visual::Base::GetHeightForWidth() */ - float GetHeightForWidth( float width ) const; + virtual float GetHeightForWidth( float width ) const; /** * @copydoc Visual::Base::GetNaturalSize() */ - virtual void SetSize( const Vector2& size ); + virtual void GetNaturalSize( Vector2& naturalSize ); /** - * @copydoc Visual::Base::GetNaturalSize() + * @copydoc Visual::Base::CreatePropertyMap() */ - virtual void GetNaturalSize( Vector2& naturalSize ) const; + virtual void DoCreatePropertyMap( Property::Map& map ) const; + +protected: /** - * @copydoc Visual::Base::CreatePropertyMap() + * @brief Constructor. + * + * @param[in] factoryCache The VisualFactoryCache object */ - virtual void DoCreatePropertyMap( Property::Map& map ) const; + TextVisual( VisualFactoryCache& factoryCache ); + + /** + * @brief A reference counted object may only be deleted by calling Unreference(). + */ + virtual ~TextVisual(); + + // from Visual::Base -protected: // from Visual::Base /** - * @copydoc Visual::Base::DoInitialize() + * @copydoc Visual::Base::DoSetProperties() */ - virtual void DoInitialize( Actor& actor, const Property::Map& propertyMap ); + virtual void DoSetProperties( const Property::Map& propertyMap ); /** * @copydoc Visual::Base::DoSetOnStage() @@ -133,34 +133,27 @@ protected: // from Visual::Base */ virtual Dali::Property::Value DoGetProperty( Dali::Property::Index index ); -private: - /** - * @brief Render view, create and attach actor(s) to this TextView. - * @todo In a next patch a new text render back-end won't add extra actors. + * @copydoc Visual::Base::OnSetTransform */ - void RenderText(); + virtual void OnSetTransform(); + +private: /** - * @brief Stops the text auto scroll. + * @brief Creates the text's renderer. */ - void StopTextAutoScrolling(); + void CreateRenderer(); /** - * @brief Set up Autoscrolling. + * @brief Destroys the text's renderer. */ - void SetUpAutoScrolling(); + void DestroyRenderer(); private: - Text::ControllerPtr mController; ///< The text's controller. - Actor mSelf; - - Text::RendererPtr mRenderer; - Text::TextScrollerPtr mTextScroller; - Actor mRenderableActor; - - int mRenderingBackend; - bool mHasBeenStaged : 1; + Text::ControllerPtr mController; ///< The text's controller. + Text::TypesetterPtr mTypesetter; ///< The text's typesetter. + WeakHandle mControl; ///< The control where the renderer is added. }; } // namespace Internal