X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fvisuals%2Ftext%2Ftext-visual.h;h=b0bf8c371f46275d0337b0f3755ecc243ebd8061;hp=dd1abf6641f6e9928466b43e843449964e520c78;hb=0a98cc9159a2b5868987ec7f0b31b76f3dc10259;hpb=928f30d2caf2775c5bcbfd84ceb4bf37ca29f020 diff --git a/dali-toolkit/internal/visuals/text/text-visual.h b/dali-toolkit/internal/visuals/text/text-visual.h index dd1abf6..b0bf8c3 100644 --- a/dali-toolkit/internal/visuals/text/text-visual.h +++ b/dali-toolkit/internal/visuals/text/text-visual.h @@ -18,13 +18,9 @@ * */ -// EXTERNAL INCLUDES -#include -#include - // INTERNAL INCLUDES #include -#include +#include #include namespace Dali @@ -64,7 +60,6 @@ typedef IntrusivePtr< TextVisual > TextVisualPtr; * | underline | STRING | * | shadow | STRING | * | outline | STRING | - * | batchingEnabled | BOOLEAN | * */ class TextVisual : public Visual::Base @@ -75,21 +70,23 @@ public: * @brief Create a new text visual. * * @param[in] factoryCache A pointer pointing to the VisualFactoryCache object + * @param[in] properties A Property::Map containing settings for this visual * @return A smart-pointer to the newly allocated visual. */ - static TextVisualPtr New( VisualFactoryCache& factoryCache ); - -public: // from Visual::Base + static TextVisualPtr New( VisualFactoryCache& factoryCache, const Property::Map& properties ); /** - * @copydoc Visual::Base::GetHeightForWidth() + * @brief Converts all strings keys in property map to index keys. Property Map can then be merged correctly. + * @param[in,out] propertyMap containing string keys or a mix of strings and indexes. Will be changed to index keys. */ - float GetHeightForWidth( float width ) const; + static void ConvertStringKeysToIndexKeys( Property::Map& propertyMap ); + +public: // from Visual::Base /** - * @copydoc Visual::Base::GetNaturalSize() + * @copydoc Visual::Base::GetHeightForWidth() */ - virtual void SetSize( const Vector2& size ); + virtual float GetHeightForWidth( float width ); /** * @copydoc Visual::Base::GetNaturalSize() @@ -133,32 +130,35 @@ protected: virtual void DoSetOffStage( Actor& actor ); /** - *@copydoc Visual::Base::DoSetProperty + * @copydoc Visual::Base::OnSetTransform */ - virtual void DoSetProperty( Dali::Property::Index index, const Dali::Property::Value& propertyValue ); + virtual void OnSetTransform(); +private: /** - * @copydoc Visual::Base::DoGetProperty + * @brief Set the individual property to the given value. + * + * @param[in] index The index key used to reference this value within the initial property map. + * + * @param[in] propertyValue The value to set. */ - virtual Dali::Property::Value DoGetProperty( Dali::Property::Index index ); + void DoSetProperty( Dali::Property::Index index, const Dali::Property::Value& propertyValue ); -private: + /** + * @brief Updates the text's renderer. + * @param[in] initializeRendererAndTexture Set flag to true to initialize textures and add renderer to control. + */ + void UpdateRenderer( bool initializeRendererAndTexture ); /** - * @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. + * @brief Removes the texture set from the renderer. */ - void RenderText(); + void RemoveTextureSet(); private: - Text::ControllerPtr mController; ///< The text's controller. - WeakHandle mSelf; - - Text::RendererPtr mRenderer; - 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