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=fa33087626b43d83338f022e9cd7532645a2a2b1;hb=6c456bd91c102985503b651e4734c5d82221c941;hpb=ab5c560f8956e7b795b7cc2072d06a61aef103b7;ds=sidebyside diff --git a/dali-toolkit/internal/text/layouts/layout-parameters.h b/dali-toolkit/internal/text/layouts/layout-parameters.h index fa33087..7f3e169 100644 --- a/dali-toolkit/internal/text/layouts/layout-parameters.h +++ b/dali-toolkit/internal/text/layouts/layout-parameters.h @@ -2,7 +2,7 @@ #define DALI_TOOLKIT_TEXT_LAYOUT_PARAMETERS_H /* - * Copyright (c) 2016 Samsung Electronics Co., Ltd. + * Copyright (c) 2017 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. @@ -22,8 +22,8 @@ #include // INTERNAL INCLUDES +#include #include -#include namespace Dali { @@ -72,8 +72,9 @@ struct Parameters const GlyphIndex* const charactersToGlyphsBuffer, const Length* const glyphsPerCharacterBuffer, Length totalNumberOfGlyphs, - HorizontalAlignment horizontalAlignment, - LineWrap::Mode lineWrapMode ) + Text::HorizontalAlignment::Type horizontalAlignment, + 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. @@ -111,11 +113,12 @@ struct Parameters GlyphIndex startGlyphIndex; ///< Index to the first glyph to layout. Length numberOfGlyphs; ///< The number of glyphs to layout. Length totalNumberOfGlyphs; ///< The number of glyphs. - HorizontalAlignment horizontalAlignment; ///< The horizontal alignment. + HorizontalAlignment::Type horizontalAlignment; ///< The horizontal alignment. LineIndex startLineIndex; ///< The line index where to insert the new lines. Length estimatedNumberOfLines; ///< The estimated number of lines. - LineWrap::Mode lineWrapMode; ///< The line wrap mode for moving to next line. + 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