X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Fmulti-language-support.h;h=d4fd1c76f382d671c60941e6aaa1fd2b8857dbb4;hb=c5651d9850075a3d2d96444883ee8e23844a5f3e;hp=bcbb1307ddce320d04e0c9d997f19c05fd92a460;hpb=c8f181e1ca529f7d92ba638ccedadd7dd51be7eb;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/text/multi-language-support.h b/dali-toolkit/internal/text/multi-language-support.h index bcbb130..d4fd1c7 100644 --- a/dali-toolkit/internal/text/multi-language-support.h +++ b/dali-toolkit/internal/text/multi-language-support.h @@ -90,9 +90,13 @@ public: * script of the first character of the paragraph with a defined script. * * @param[in] text Vector of UTF-32 characters. + * @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, + CharacterIndex startIndex, + Length numberOfCharacters, Vector& scripts ); /** @@ -110,12 +114,16 @@ public: * @param[in] scripts Vector containing the script runs for the whole text. * @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 ); };