X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Fpublic-api%2Fbuilder%2Fbuilder.h;h=209f3c29811901c13d9c7592791aa9bc1d864666;hp=8df26191117bc5eac6464721e3eb7a16adface60;hb=78304b72e0cd621ae2f51f93f746db341acde47e;hpb=e2eda444afbe82e9591fe198eef339227f90a616 diff --git a/dali-toolkit/public-api/builder/builder.h b/dali-toolkit/public-api/builder/builder.h index 8df2619..209f3c2 100644 --- a/dali-toolkit/public-api/builder/builder.h +++ b/dali-toolkit/public-api/builder/builder.h @@ -31,6 +31,8 @@ namespace Internal DALI_INTERNAL class Builder; } +typedef std::map PropertyValueMap; + /** * Builder * This class provides the ability to load an actor tree from a string representation. @@ -122,6 +124,57 @@ class Builder; void LoadFromString( const std::string& data, UIFormat format = JSON ); /** + * @brief Adds user defined constants to all future style template or animation expansions + * + * e.g. + * PropertyValueMap map; + * map["IMAGE_DIRECTORY"] = "/usr/share/images"; + * builder.AddConstants( map ); + * + * @pre The Builder has been initialized. + * @param map The user defined constants used in template expansions. + */ + void AddConstants( const PropertyValueMap& map ); + + /** + * @brief Adds or modifies a user defined constant to all future style template or animation expansions + * + * e.g. + * @code builder.AddConstant( "IMAGE_DIRECTORY", "/usr/share/images" ); + * + * @pre The Builder has been initialized. + * @param key The constant name to add or update + * @param value The new value for the constant. + */ + void AddConstant( const std::string& key, const Property::Value& value ); + + /** + * @brief Gets all currently defined constants. + * + * e.g. + * @code PropertyValueMap map = builder.GetConstants(); // get copy of current constants + * map["IMAGE_DIRECTORY"] = "/usr/share/images"; // make modification + * builder.AddConstants( map ); // write back changes + * + * @pre The Builder has been initialized. + * @return A reference to the currently defined constants. + */ + const PropertyValueMap& GetConstants() const; + + /** + * @brief Gets a currently defined constant, or returns Property::INVALID + * + * e.g. + * @code PropertyValueMap map = builder.GetConstants(); // get copy of current constants + * map["IMAGE_DIRECTORY"] = "/usr/share/images"; // make modification + * builder.AddConstants( map ); // write back changes + * + * @pre The Builder has been initialized. + * @param key The constant name to search for. + */ + const Property::Value& GetConstant( const std::string& key ) const; + + /** * Creates an animation from the set of known animations * e.g. * Animation a = builder.CreateAnimation( "wobble"); @@ -135,7 +188,26 @@ class Builder; Animation CreateAnimation( const std::string& animationName ); /** - * Creates an object (e.g. an actor) from the set of known styles + * @brief Creates an animation from the set of known animations with user defined constants + * + * e.g. + * PropertyValueMap map; + * map["ACTOR"] = actor.GetName(); // replaces '{ACTOR} in the template + * Animation a = builder.CreateAnimation( "wobble"); + * + * @pre The Builder has been initialized. + * @pre Preconditions have been met for creating dali objects ie Images, Actors etc + * @pre The animationName exists in the animations section of the data representation + * @pre The map contains all the constant expansions in the style template + * @param animationName The animation name to create + * @param map The user defined constants used in style template expansion. + * @returns The base handle of the created object + */ + Animation CreateAnimation( const std::string& animationName, const PropertyValueMap& map ); + + /** + * @brief Creates an object (e.g. an actor) from the set of known style templates + * * e.g. * mActor.Add( Actor::DownCast(builder.CreateFromStyle( "default-text")) ); * @@ -149,6 +221,25 @@ class Builder; BaseHandle CreateFromStyle( const std::string& styleName ); /** + * @brief Creates an object from the style templates with user defined constants + * + * e.g. + * PropertyValueMap map; + * map["IMAGE_DIR"] = "/usr/share/images"; // replaces '{IMAGE_DIR} in the template + * mActor.Add( Actor::DownCast(builder.CreateFromStyle( "default-image", map) ) ); + * + * @pre The Builder has been initialized. + * @pre Preconditions have been met for creating dali objects ie Images, Actors etc + * @pre The styleName has been loaded from the styles section of the data representation + * and contains 'type' property used to create the object. + * @pre The map contains all the constant expansions in the style template + * @param styleName The set of styles/properties to set on the handle object. + * @param map The user defined constants used in style template expansion. + * @returns The base handle of the created object + */ + BaseHandle CreateFromStyle( const std::string& styleName, const PropertyValueMap& map ); + + /** * Apply a style (a collection of properties) to an actor. * @pre The Builder has been initialized. * @pre Preconditions have been met for creating dali objects ie Images, Actors etc