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=9edf08c68b54464d78e722ab0c3a23e4c53ec791;hp=777729b0caccfb2781b39449a377b198ece7ac81;hb=6c02c5852ca329f720e4ae72d9cef2524629574c;hpb=09ae840a22681a4bbdc770f00674498ab75aec69 diff --git a/dali-toolkit/internal/visuals/text/text-visual.h b/dali-toolkit/internal/visuals/text/text-visual.h index 777729b..9edf08c 100644 --- a/dali-toolkit/internal/visuals/text/text-visual.h +++ b/dali-toolkit/internal/visuals/text/text-visual.h @@ -71,16 +71,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 ); + static TextVisualPtr New( VisualFactoryCache& factoryCache, const Property::Map& properties ); + + /** + * @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. + */ + static void ConvertStringKeysToIndexKeys( Property::Map& propertyMap ); public: // from Visual::Base /** * @copydoc Visual::Base::GetHeightForWidth() */ - virtual float GetHeightForWidth( float width ) const; + virtual float GetHeightForWidth( float width ); /** * @copydoc Visual::Base::GetNaturalSize() @@ -124,31 +131,30 @@ protected: virtual void DoSetOffStage( Actor& actor ); /** - *@copydoc Visual::Base::DoSetProperty - */ - virtual void DoSetProperty( Dali::Property::Index index, const Dali::Property::Value& propertyValue ); - - /** - * @copydoc Visual::Base::DoGetProperty - */ - virtual Dali::Property::Value DoGetProperty( Dali::Property::Index index ); - - /** * @copydoc Visual::Base::OnSetTransform */ virtual void OnSetTransform(); private: + /** + * @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. + */ + void DoSetProperty( Dali::Property::Index index, const Dali::Property::Value& propertyValue ); /** - * @brief Creates the text's renderer. + * @brief Updates the text's renderer. + * @param[in] initializeRendererAndTexture Set flag to true to initialize textures and add renderer to control. */ - void CreateRenderer(); + void UpdateRenderer( bool initializeRendererAndTexture ); /** - * @brief Destroys the text's renderer. + * @brief Removes the texture set from the renderer. */ - void DestroyRenderer(); + void RemoveTextureSet(); private: Text::ControllerPtr mController; ///< The text's controller.