X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Flayouts%2Flayout-parameters.h;h=7f3e16924731874e7596456622e1943a61d1bdef;hp=47aed0e106362b59055f25fc97e7d0c866e3a087;hb=6c456bd91c102985503b651e4734c5d82221c941;hpb=56f0e94bab1f9ecc097c4a5209716cdc1ede7715 diff --git a/dali-toolkit/internal/text/layouts/layout-parameters.h b/dali-toolkit/internal/text/layouts/layout-parameters.h index 47aed0e..7f3e169 100644 --- a/dali-toolkit/internal/text/layouts/layout-parameters.h +++ b/dali-toolkit/internal/text/layouts/layout-parameters.h @@ -73,7 +73,8 @@ struct Parameters const Length* const glyphsPerCharacterBuffer, Length totalNumberOfGlyphs, Text::HorizontalAlignment::Type horizontalAlignment, - Text::LineWrap::Mode lineWrapMode ) + Text::LineWrap::Mode lineWrapMode, + float outlineWidth ) : boundingBox( boundingBox ), textBuffer( textBuffer ), lineBreakInfoBuffer( lineBreakInfoBuffer ), @@ -93,7 +94,8 @@ struct Parameters startLineIndex( 0u ), estimatedNumberOfLines( 0u ), lineWrapMode( lineWrapMode ), - isLastNewParagraph( false ) + isLastNewParagraph( false ), + outlineWidth( outlineWidth ) {} Vector2 boundingBox; ///< The size of the box containing the text. @@ -116,6 +118,7 @@ struct Parameters Length estimatedNumberOfLines; ///< The estimated number of lines. Text::LineWrap::Mode lineWrapMode; ///< The line wrap mode for moving to next line. bool isLastNewParagraph; ///< Whether the last character is a new paragraph character. + float outlineWidth; ///< The outline width. }; } // namespace Layout