9fa4dde943455bf9a48d0ba863822b05265435ae
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / layouts / layout-parameters.h
1 #ifndef __DALI_TOOLKIT_TEXT_LAYOUT_PARAMETERS_H__
2 #define __DALI_TOOLKIT_TEXT_LAYOUT_PARAMETERS_H__
3
4 /*
5  * Copyright (c) 2015 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // EXTERNAL INCLUDES
22 #include <dali/public-api/math/vector2.h>
23
24 // INTERNAL INCLUDES
25 #include <dali-toolkit/internal/text/text-definitions.h>
26
27 namespace Dali
28 {
29
30 namespace Toolkit
31 {
32
33 namespace Text
34 {
35
36 /**
37  * @brief Struct used to pass parameters.
38  */
39 struct LayoutParameters
40 {
41   /**
42    * Constructor with the needed parameters to layout the text.
43    *
44    * @param[in] boundingBox The size of the box containing the text.
45    * @param[in] lineBreakInfoBuffer The line break info.
46    * @param[in] wordBreakInfoBuffer The word break info.
47    * @param[in] totalNumberOfGlyphs The number of glyphs.
48    * @param[in] glyphsBuffer A vector with glyphs.
49    * @param[in] glyphsToCharactersBuffer Vector with indices pointing the first character of each glyph.
50    * @param[in] charactersPerGlyphBuffer Vector with the number of characters that forms each glyph.
51    */
52   LayoutParameters( const Vector2& boundingBox,
53                     const LineBreakInfo* const lineBreakInfoBuffer,
54                     const WordBreakInfo* const wordBreakInfoBuffer,
55                     Length totalNumberOfGlyphs,
56                     const GlyphInfo* const glyphsBuffer,
57                     const CharacterIndex* const glyphsToCharactersBuffer,
58                     const Length* const charactersPerGlyphBuffer )
59   : boundingBox( boundingBox ),
60     lineBreakInfoBuffer( lineBreakInfoBuffer ),
61     wordBreakInfoBuffer( wordBreakInfoBuffer ),
62     totalNumberOfGlyphs( totalNumberOfGlyphs ),
63     glyphsBuffer( glyphsBuffer ),
64     glyphsToCharactersBuffer( glyphsToCharactersBuffer ),
65     charactersPerGlyphBuffer( charactersPerGlyphBuffer )
66   {}
67
68   Vector2                     boundingBox;
69   const LineBreakInfo* const  lineBreakInfoBuffer;
70   const WordBreakInfo* const  wordBreakInfoBuffer;
71   Length                      totalNumberOfGlyphs;
72   const GlyphInfo* const      glyphsBuffer;
73   const CharacterIndex* const glyphsToCharactersBuffer;
74   const Length* const         charactersPerGlyphBuffer;
75 };
76
77 } // namespace Text
78
79 } // namespace Toolkit
80
81 } // namespace Dali
82
83 #endif // __DALI_TOOLKIT_TEXT_LAYOUT_PARAMETERS_H__