X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Flayouts%2Flayout-parameters.h;h=e877e642ff5670193b5f30937117a2bef93786e5;hb=ac55712de2be195a393deebc6ea29d51560b9e75;hp=ecd1f6b8dc6a3a9784b694bf370378adedf3a5b8;hpb=85c7065a159374bac65ff799a0a977f930b8e694;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/text/layouts/layout-parameters.h b/dali-toolkit/internal/text/layouts/layout-parameters.h index ecd1f6b..e877e64 100755 --- a/dali-toolkit/internal/text/layouts/layout-parameters.h +++ b/dali-toolkit/internal/text/layouts/layout-parameters.h @@ -100,9 +100,10 @@ struct Parameters estimatedNumberOfLines( 0u ), lineWrapMode( lineWrapMode ), outlineWidth( outlineWidth ), - isLastNewParagraph( false ), ignoreSpaceAfterText( ignoreSpaceAfterText ), - matchSystemLanguageDirection ( matchSystemLanguageDirection ) + matchSystemLanguageDirection ( matchSystemLanguageDirection ), + interGlyphExtraAdvance( 0.f ), + isLastNewParagraph( false ) {} Vector2 boundingBox; ///< The size of the box containing the text. @@ -125,9 +126,10 @@ struct Parameters Length estimatedNumberOfLines; ///< The estimated number of lines. Text::LineWrap::Mode lineWrapMode; ///< The line wrap mode for moving to next line. float outlineWidth; ///< The outline width. - bool isLastNewParagraph:1; ///< Whether the last character is a new paragraph character. bool ignoreSpaceAfterText:1; ///< Whether ignoring spaces after text or not. Default is true. bool matchSystemLanguageDirection:1; ///< Whether match align for system language direction or not. Default is false. + float interGlyphExtraAdvance; ///< Extra advance added to each glyph. + bool isLastNewParagraph:1; ///< Whether the last character is a new paragraph character. }; } // namespace Layout