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=a22676c67bdaa397fd9113c9fc311eb5c7518636;hp=b0873d91742577eae6f111c2948ae5548effbc27;hb=5fa76665a97d14bf519ad0f41ad9f7bbacf81ec1;hpb=830f03638ec6ecd3b12ba3d9eb6419fdb3a3db09 diff --git a/dali-toolkit/internal/text/multi-language-support.h b/dali-toolkit/internal/text/multi-language-support.h index b0873d9..a22676c 100644 --- a/dali-toolkit/internal/text/multi-language-support.h +++ b/dali-toolkit/internal/text/multi-language-support.h @@ -18,9 +18,11 @@ * */ -// INTERNAL INCLUDES +// EXTERNAL INCLUDES #include #include + +// INTERNAL INCLUDES #include #include @@ -97,24 +99,6 @@ public: 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. @@ -134,28 +118,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