Merge remote-tracking branch 'origin/tizen' into new_text
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / layouts / layout-engine.h
1 #ifndef __DALI_TOOLKIT_TEXT_LAYOUT_ENGINE_H__
2 #define __DALI_TOOLKIT_TEXT_LAYOUT_ENGINE_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 INCLUDE
22 #include <dali/public-api/common/dali-vector.h>
23 #include <dali/public-api/math/vector2.h>
24
25 // INTERNAL INCLUDE
26 #include <dali-toolkit/internal/text/line-run.h>
27
28 namespace Dali
29 {
30
31 struct Vector2;
32
33 namespace Toolkit
34 {
35
36 namespace Text
37 {
38
39 struct LayoutParameters;
40
41 /**
42  * @brief LayoutEngine is responsible for calculating the visual position of glyphs in layout.
43  */
44 class LayoutEngine
45 {
46 public:
47
48   enum Layout
49   {
50     SINGLE_LINE_BOX,
51     MULTI_LINE_BOX
52   };
53
54   enum Alignment
55   {
56     ALIGN_BEGIN,
57     ALIGN_CENTER,
58     ALIGN_END
59   };
60
61   /**
62    * @brief Create a new instance of a LayoutEngine.
63    */
64   LayoutEngine();
65
66   /**
67    * @brief Virtual destructor.
68    */
69   ~LayoutEngine();
70
71   /**
72    * @brief Choose the required layout.
73    *
74    * @param[in] layout The required layout.
75    */
76   void SetLayout( Layout layout );
77
78   /**
79    * @brief Query the required layout.
80    *
81    * @return The required layout.
82    */
83   unsigned int GetLayout() const;
84
85   /**
86    * @brief Choose the required line alignment.
87    *
88    * @param[in] alignment The required alignment.
89    */
90   void SetAlignment( Alignment alignment );
91
92   /**
93    * @brief Query the required line alignment.
94    *
95    * @return The required alignment.
96    */
97   Alignment GetAlignment() const;
98
99   /**
100    * @brief Store the visual position of glyphs in the VisualModel.
101    *
102    * @param[in] layoutParameters The parameters needed to layout the text.
103    * @param[out] glyphPositions The positions of all the glyphs.
104    * @param[out] lines The laid-out lines.
105    * @param[out] actualSize The size of the text after it has been laid-out.
106    *
107    * @return \e true if the text has been re-laid-out. \e false means the given width is too small to layout even a single character.
108    */
109   bool LayoutText( const LayoutParameters& layoutParameters,
110                    Vector<Vector2>& glyphPositions,
111                    Vector<LineRun>& lines,
112                    Size& actualSize );
113
114   /**
115    * @brief Re-lays out those lines with right to left characters.
116    *
117    * It doesn't change the phisical position of the glyphs in the model but sets their new position.
118    *
119    * @param[in] layoutParameters The parameters needed to layout the text.
120    * @param[in,out] glyphPositions The positions of all the glyphs.
121    */
122   void ReLayoutRightToLeftLines( const LayoutParameters& layoutParameters,
123                                  Vector<Vector2>& glyphPositions );
124
125   /**
126    * @brief Aligns the laid out lines.
127    *
128    * @param[in] layoutParameters The parameters needed to layout the text.
129    * @param[in] lines The laid-out lines.
130    * @param[in,out] glyphPositions The positions of all the glyphs.
131    */
132   void Align( const LayoutParameters& layoutParameters,
133               const Vector<LineRun>& lines,
134               Vector<Vector2>& glyphPositions );
135
136 private:
137
138   // Undefined
139   LayoutEngine( const LayoutEngine& handle );
140
141   // Undefined
142   LayoutEngine& operator=( const LayoutEngine& handle );
143
144 private:
145
146   struct Impl;
147   Impl* mImpl;
148 };
149 } // namespace Text
150
151 } // namespace Toolkit
152
153 } // namespace Dali
154
155 #endif // __DALI_TOOLKIT_TEXT_LAYOUT_ENGINE_H__