X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Fmulti-language-support.h;h=d4fd1c76f382d671c60941e6aaa1fd2b8857dbb4;hp=a22676c67bdaa397fd9113c9fc311eb5c7518636;hb=32b0b5f6c65842c8bd1140b1eeb9691fdca0c866;hpb=a3353d4f3763da656966e8e9a1c223c7e9585a13 diff --git a/dali-toolkit/internal/text/multi-language-support.h b/dali-toolkit/internal/text/multi-language-support.h index a22676c..d4fd1c7 100644 --- a/dali-toolkit/internal/text/multi-language-support.h +++ b/dali-toolkit/internal/text/multi-language-support.h @@ -24,6 +24,7 @@ // INTERNAL INCLUDES #include +#include #include namespace Dali @@ -42,8 +43,6 @@ class MultilanguageSupport; } // Internal -class LogicalModel; - /** * @brief Sets the character's scripts to the model and validates the fonts set by the user or assigns default ones. */ @@ -91,18 +90,18 @@ public: * script of the first character of the paragraph with a defined script. * * @param[in] text Vector of UTF-32 characters. - * @param[in] lineBreakInfo Vector with the line break info. + * @param[in] startIndex The character from where the script info is set. + * @param[in] numberOfCharacters The number of characters to set the script. * @param[out] scripts Vector containing the script runs for the whole text. */ void SetScripts( const Vector& text, - const Vector& lineBreakInfo, + CharacterIndex startIndex, + Length numberOfCharacters, Vector& scripts ); /** * @brief Validates the character's font of the whole text. * - * It may update fonts set by application developers. - * * This method ensures all characters are going to be rendered using an appropriate font. Provided a valid font * exists in the platform. * @@ -113,10 +112,18 @@ public: * * @param[in] text Vector of UTF-32 characters. * @param[in] scripts Vector containing the script runs for the whole text. - * @param[in,out] fonts Initially contains the fonts set by the application developers. Returns the validated fonts. + * @param[in] fontDescriptions The fonts set by the application developers. + * @param[in] defaultFontId The default font's id. + * @param[in] startIndex The character from where the font info is set. + * @param[in] numberOfCharacters The number of characters to set the font. + * @param[out] fonts The validated fonts. */ void ValidateFonts( const Vector& text, const Vector& scripts, + const Vector& fontDescriptions, + FontId defaultFontId, + CharacterIndex startIndex, + Length numberOfCharacters, Vector& fonts ); };