X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Fshaper.h;h=70e2e58c73ee8d4b6ea7b7f66b128cc12f4b87e6;hb=36a4d207b64a34433a19d78dc0c9f768f6990773;hp=441465c003173ab87a304a57e80f0507bbc10093;hpb=830f03638ec6ecd3b12ba3d9eb6419fdb3a3db09;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/text/shaper.h b/dali-toolkit/internal/text/shaper.h index 441465c..70e2e58 100644 --- a/dali-toolkit/internal/text/shaper.h +++ b/dali-toolkit/internal/text/shaper.h @@ -18,8 +18,10 @@ * */ -// INTERNAL INCLUDES +// EXTERNAL INCLUDES #include + +// INTERNAL INCLUDES #include #include @@ -43,39 +45,18 @@ class VisualModel; * @param[in] scripts Vector containing the script runs for the whole text. * @param[in] fonts Vector with validated fonts. * @param[out] glyphs Vector of glyphs in the visual order. - * @param[out] characterIndices Vector containing the first character in the logical model that each glyph relates to. + * @param[out] glyphToCharacterMap Vector containing the first character in the logical model that each glyph relates to. * @param[out] charactersPerGlyph Vector containing the number of characters per glyph. + * @param[out] newParagraphGlyphs Vector containing the indices to the new paragraph glyphs. */ void ShapeText( const Vector& text, const Vector& lineBreakInfo, const Vector& scripts, const Vector& fonts, Vector& glyphs, - Vector& characterIndices, - Vector& charactersPerGlyph ); - -/** - * Replaces the shape info of the given range of characters. - * - * @pre The @p model needs to have a text set. - * @pre The @p model needs to have the scripts set. - * @pre The @p model needs to have the fonts set. - * @pre The @p model needs to have the bidirectional info 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] logicalModel The text's logical model. - * @param[in,out] visualModel 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 ShapeText( const LogicalModel& logicalModel, - VisualModel& visualModel, - CharacterIndex characterIndex, - Length numberOfCharactersToRemove, - Length numberOfCharactersToInsert ); + Vector& glyphToCharacterMap, + Vector& charactersPerGlyph, + Vector& newParagraphGlyphs ); } // namespace Text