X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Fmulti-language-support.h;h=7e47fd2220bec0ed63d4206e5c3a6d50c94e4496;hb=36a4d207b64a34433a19d78dc0c9f768f6990773;hp=b70f6722e8d0c496e190fde3e25d6a0105dd5a90;hpb=cd7d41bc8e0a0816da28401207091344fbbe0b2c;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 b70f672..7e47fd2 100644 --- a/dali-toolkit/internal/text/multi-language-support.h +++ b/dali-toolkit/internal/text/multi-language-support.h @@ -42,8 +42,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,32 +89,12 @@ 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[out] scripts Vector containing the script runs for the whole text. */ void SetScripts( const Vector& text, - const Vector& lineBreakInfo, Vector& scripts ); /** - * Replaces the scrips of the given range of characters. - * - * @pre The @p model needs to have a text set. - * - * If the @p numberOfCharactersToRemove is zero, this operation is like an insert. - * If the @p numberOfCharactersToInsert is zero, this operation is like a remove. - * - * @param[in,out] model The text's logical model. - * @param[in] characterIndex Index to the first character. - * @param[in] numberOfCharactersToRemove The number of characters removed from the text. - * @param[in] numberOfCharactersToInsert The number of characters inserted in the text. - */ - void ReplaceScripts( LogicalModel& model, - CharacterIndex characterIndex, - Length numberOfCharactersToRemove, - Length numberOfCharactersToInsert ); - - /** * @brief Validates the character's font of the whole text. * * It may update fonts set by application developers. @@ -136,28 +114,6 @@ public: void ValidateFonts( const Vector& text, const Vector& scripts, Vector& fonts ); - - /** - * Validates the character's font of the given range of characters. - * - * It may update fonts set by the mark-up processor. - * It sets default fonts based on the script to those characters without a font set. - * - * @pre The @p model needs to have a text set. - * @pre The @p model needs to have the scripts set. - * - * If the @p numberOfCharactersToRemove is zero, this operation is like an insert. - * If the @p numberOfCharactersToInsert is zero, this operation is like a remove. - * - * @param[in,out] model The text's logical model. - * @param[in] characterIndex Index to the first character. - * @param[in] numberOfCharactersToRemove The number of characters removed from the text. - * @param[in] numberOfCharactersToInsert The number of characters inserted in the text. - */ - void ValidateFonts( LogicalModel& model, - CharacterIndex characterIndex, - Length numberOfCharactersToRemove, - Length numberOfCharactersToInsert ); }; } // namespace Text