X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Fshaper.h;h=549031b54d26e844cf128326adda714a508e6e64;hb=29a52105283ce8ced672ed92545daeacf882316a;hp=d423cc5f9453735597fe72bf2d0339e91f9f39d8;hpb=56d412791a44c2a79135d2293c13fddb135c9d54;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/text/shaper.h b/dali-toolkit/internal/text/shaper.h index d423cc5..549031b 100644 --- a/dali-toolkit/internal/text/shaper.h +++ b/dali-toolkit/internal/text/shaper.h @@ -1,8 +1,8 @@ -#ifndef __DALI_TOOLKIT_TEXT_SHAPER_H__ -#define __DALI_TOOLKIT_TEXT_SHAPER_H__ +#ifndef DALI_TOOLKIT_TEXT_SHAPER_H +#define DALI_TOOLKIT_TEXT_SHAPER_H /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2021 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -27,13 +27,10 @@ namespace Dali { - namespace Toolkit { - namespace Text { - class LogicalModel; class VisualModel; @@ -44,40 +41,25 @@ class VisualModel; * @param[in] lineBreakInfo The line break info. * @param[in] scripts Vector containing the script runs for the whole text. * @param[in] fonts Vector with validated fonts. + * @param[in] startCharacterIndex The character from where the text is shaped. + * @param[in] startGlyphIndex The glyph from where the text is shaped. + * @param[in] numberOfCharacters The number of characters to be shaped. * @param[out] glyphs Vector of glyphs in the visual order. * @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& glyphToCharacterMap, - 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 ); +void ShapeText(const Vector& text, + const Vector& lineBreakInfo, + const Vector& scripts, + const Vector& fonts, + CharacterIndex startCharacterIndex, + GlyphIndex startGlyphIndex, + Length numberOfCharacters, + Vector& glyphs, + Vector& glyphToCharacterMap, + Vector& charactersPerGlyph, + Vector& newParagraphGlyphs); } // namespace Text @@ -85,4 +67,4 @@ void ShapeText( const LogicalModel& logicalModel, } // namespace Dali -#endif // __DALI_TOOLKIT_TEXT_SHAPER_H__ +#endif // DALI_TOOLKIT_TEXT_SHAPER_H