X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;ds=sidebyside;f=dali-toolkit%2Finternal%2Ftext%2Fmulti-language-support.h;h=bcbb1307ddce320d04e0c9d997f19c05fd92a460;hb=4ff601968ee16e6d401977900d2aed328bdc6707;hp=5c8ea1d98953ac76feb8d9fbadec02340d59a27e;hpb=06e563f8a982e25a0efe2d91c794657dc8e4bc4a;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 5c8ea1d..bcbb130 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. */ @@ -99,8 +98,6 @@ public: /** * @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. * @@ -111,10 +108,14 @@ 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[out] fonts The validated fonts. */ void ValidateFonts( const Vector& text, const Vector& scripts, + const Vector& fontDescriptions, + FontId defaultFontId, Vector& fonts ); };