Support Underline to Markup using underlined-character-run
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / rendering / view-model.cpp
1 /*
2  * Copyright (c) 2021 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // CLASS HEADER
19 #include <dali-toolkit/internal/text/rendering/view-model.h>
20
21 // EXTERNAL INCLUDES
22 #include <dali/devel-api/text-abstraction/font-client.h>
23 #include <memory.h>
24
25 // INTERNAL INCLUDES
26 #include <dali-toolkit/internal/text/line-run.h>
27
28 namespace Dali
29 {
30 namespace Toolkit
31 {
32 namespace Text
33 {
34 ViewModel::ViewModel(const ModelInterface* const model)
35 : mModel(model),
36   mElidedGlyphs(),
37   mElidedLayout(),
38   mIsTextElided(false)
39 {
40 }
41
42 ViewModel::~ViewModel()
43 {
44 }
45
46 const Size& ViewModel::GetControlSize() const
47 {
48   return mModel->GetControlSize();
49 }
50
51 const Size& ViewModel::GetLayoutSize() const
52 {
53   return mModel->GetLayoutSize();
54 }
55
56 const Vector2& ViewModel::GetScrollPosition() const
57 {
58   return mModel->GetScrollPosition();
59 }
60
61 HorizontalAlignment::Type ViewModel::GetHorizontalAlignment() const
62 {
63   return mModel->GetHorizontalAlignment();
64 }
65
66 VerticalAlignment::Type ViewModel::GetVerticalAlignment() const
67 {
68   return mModel->GetVerticalAlignment();
69 }
70
71 DevelText::VerticalLineAlignment::Type ViewModel::GetVerticalLineAlignment() const
72 {
73   return mModel->GetVerticalLineAlignment();
74 }
75
76 bool ViewModel::IsTextElideEnabled() const
77 {
78   return mModel->IsTextElideEnabled();
79 }
80
81 Length ViewModel::GetNumberOfLines() const
82 {
83   return mModel->GetNumberOfLines();
84 }
85
86 const LineRun* const ViewModel::GetLines() const
87 {
88   return mModel->GetLines();
89 }
90
91 Length ViewModel::GetNumberOfScripts() const
92 {
93   return mModel->GetNumberOfScripts();
94 }
95
96 const ScriptRun* const ViewModel::GetScriptRuns() const
97 {
98   return mModel->GetScriptRuns();
99 }
100
101 Length ViewModel::GetNumberOfGlyphs() const
102 {
103   if(mIsTextElided && mModel->IsTextElideEnabled())
104   {
105     return mElidedGlyphs.Count();
106   }
107   else
108   {
109     return mModel->GetNumberOfGlyphs();
110   }
111
112   return 0u;
113 }
114
115 const GlyphInfo* const ViewModel::GetGlyphs() const
116 {
117   if(mIsTextElided && mModel->IsTextElideEnabled())
118   {
119     return mElidedGlyphs.Begin();
120   }
121   else
122   {
123     return mModel->GetGlyphs();
124   }
125
126   return NULL;
127 }
128
129 const Vector2* const ViewModel::GetLayout() const
130 {
131   if(mIsTextElided && mModel->IsTextElideEnabled())
132   {
133     return mElidedLayout.Begin();
134   }
135   else
136   {
137     return mModel->GetLayout();
138   }
139
140   return NULL;
141 }
142
143 const Vector4* const ViewModel::GetColors() const
144 {
145   return mModel->GetColors();
146 }
147
148 const ColorIndex* const ViewModel::GetColorIndices() const
149 {
150   return mModel->GetColorIndices();
151 }
152
153 const Vector4* const ViewModel::GetBackgroundColors() const
154 {
155   return mModel->GetBackgroundColors();
156 }
157
158 const ColorIndex* const ViewModel::GetBackgroundColorIndices() const
159 {
160   return mModel->GetBackgroundColorIndices();
161 }
162
163 const Vector4& ViewModel::GetDefaultColor() const
164 {
165   return mModel->GetDefaultColor();
166 }
167
168 const Vector2& ViewModel::GetShadowOffset() const
169 {
170   return mModel->GetShadowOffset();
171 }
172
173 const Vector4& ViewModel::GetShadowColor() const
174 {
175   return mModel->GetShadowColor();
176 }
177
178 const float& ViewModel::GetShadowBlurRadius() const
179 {
180   return mModel->GetShadowBlurRadius();
181 }
182
183 const Vector4& ViewModel::GetUnderlineColor() const
184 {
185   return mModel->GetUnderlineColor();
186 }
187
188 bool ViewModel::IsUnderlineEnabled() const
189 {
190   return mModel->IsUnderlineEnabled();
191 }
192
193 float ViewModel::GetUnderlineHeight() const
194 {
195   return mModel->GetUnderlineHeight();
196 }
197
198 Length ViewModel::GetNumberOfUnderlineRuns() const
199 {
200   return mModel->GetNumberOfUnderlineRuns();
201 }
202
203 void ViewModel::GetUnderlineRuns(GlyphRun* underlineRuns, UnderlineRunIndex index, Length numberOfRuns) const
204 {
205   mModel->GetUnderlineRuns(underlineRuns, index, numberOfRuns);
206 }
207
208 const Vector4& ViewModel::GetOutlineColor() const
209 {
210   return mModel->GetOutlineColor();
211 }
212
213 uint16_t ViewModel::GetOutlineWidth() const
214 {
215   return mModel->GetOutlineWidth();
216 }
217
218 const Vector4& ViewModel::GetBackgroundColor() const
219 {
220   return mModel->GetBackgroundColor();
221 }
222
223 bool ViewModel::IsBackgroundEnabled() const
224 {
225   return mModel->IsBackgroundEnabled();
226 }
227
228 bool ViewModel::IsMarkupProcessorEnabled() const
229 {
230   return mModel->IsMarkupProcessorEnabled();
231 }
232
233 void ViewModel::ElideGlyphs()
234 {
235   mIsTextElided = false;
236
237   if(mModel->IsTextElideEnabled())
238   {
239     const Length numberOfLines = mModel->GetNumberOfLines();
240     if(0u != numberOfLines)
241     {
242       const LineRun* const lines = mModel->GetLines();
243
244       const LineRun& lastLine              = *(lines + (numberOfLines - 1u));
245       const Length   numberOfLaidOutGlyphs = lastLine.glyphRun.glyphIndex + lastLine.glyphRun.numberOfGlyphs;
246
247       if(lastLine.ellipsis && (0u != numberOfLaidOutGlyphs))
248       {
249         mIsTextElided                          = true;
250         TextAbstraction::FontClient fontClient = TextAbstraction::FontClient::Get();
251
252         const GlyphInfo* const glyphs    = mModel->GetGlyphs();
253         const Vector2* const   positions = mModel->GetLayout();
254
255         // Copy the glyphs to be elided.
256         mElidedGlyphs.Resize(numberOfLaidOutGlyphs);
257         mElidedLayout.Resize(numberOfLaidOutGlyphs);
258
259         GlyphInfo* elidedGlyphsBuffer    = mElidedGlyphs.Begin();
260         Vector2*   elidedPositionsBuffer = mElidedLayout.Begin();
261
262         memcpy(elidedGlyphsBuffer, glyphs, numberOfLaidOutGlyphs * sizeof(GlyphInfo));
263         memcpy(elidedPositionsBuffer, positions, numberOfLaidOutGlyphs * sizeof(Vector2));
264
265         const Size& controlSize = mModel->GetControlSize();
266
267         if((1u == numberOfLines) &&
268            (lastLine.ascender - lastLine.descender > controlSize.height))
269         {
270           // Get the first glyph which is going to be replaced and the ellipsis glyph.
271           GlyphInfo&       glyphToRemove = *elidedGlyphsBuffer;
272           const GlyphInfo& ellipsisGlyph = fontClient.GetEllipsisGlyph(fontClient.GetPointSize(glyphToRemove.fontId));
273
274           // Change the 'x' and 'y' position of the ellipsis glyph.
275           Vector2& position = *elidedPositionsBuffer;
276
277           position.x = ellipsisGlyph.xBearing;
278           position.y = -lastLine.ascender + controlSize.height - ellipsisGlyph.yBearing;
279
280           // Replace the glyph by the ellipsis glyph and resize the buffers.
281           glyphToRemove = ellipsisGlyph;
282
283           mElidedGlyphs.Resize(1u);
284           mElidedLayout.Resize(1u);
285
286           return;
287         }
288
289         // firstPenX, penY and firstPenSet are used to position the ellipsis glyph if needed.
290         float firstPenX   = 0.f; // Used if rtl text is elided.
291         float penY        = 0.f;
292         bool  firstPenSet = false;
293
294         // Add the ellipsis glyph.
295         bool       inserted              = false;
296         float      removedGlypsWidth     = 0.f;
297         Length     numberOfRemovedGlyphs = 0u;
298         GlyphIndex index                 = numberOfLaidOutGlyphs - 1u;
299
300         // The ellipsis glyph has to fit in the place where the last glyph(s) is(are) removed.
301         while(!inserted)
302         {
303           const GlyphInfo& glyphToRemove = *(elidedGlyphsBuffer + index);
304
305           if(0u != glyphToRemove.fontId)
306           {
307             // i.e. The font id of the glyph shaped from the '\n' character is zero.
308
309             // Need to reshape the glyph as the font may be different in size.
310             const GlyphInfo& ellipsisGlyph = fontClient.GetEllipsisGlyph(fontClient.GetPointSize(glyphToRemove.fontId));
311
312             if(!firstPenSet || EqualsZero(glyphToRemove.advance))
313             {
314               const Vector2& position = *(elidedPositionsBuffer + index);
315
316               // Calculates the penY of the current line. It will be used to position the ellipsis glyph.
317               penY = position.y + glyphToRemove.yBearing;
318
319               // Calculates the first penX which will be used if rtl text is elided.
320               firstPenX = position.x - glyphToRemove.xBearing;
321               if(firstPenX < -ellipsisGlyph.xBearing)
322               {
323                 // Avoids to exceed the bounding box when rtl text is elided.
324                 firstPenX = -ellipsisGlyph.xBearing;
325               }
326
327               removedGlypsWidth = -ellipsisGlyph.xBearing;
328
329               if(!EqualsZero(firstPenX))
330               {
331                 firstPenSet = true;
332               }
333             }
334
335             removedGlypsWidth += std::min(glyphToRemove.advance, (glyphToRemove.xBearing + glyphToRemove.width));
336
337             // Calculate the width of the ellipsis glyph and check if it fits.
338             const float ellipsisGlyphWidth = ellipsisGlyph.width + ellipsisGlyph.xBearing;
339
340             // If it is the last glyph to remove, add the ellipsis glyph without checking its width.
341             if((ellipsisGlyphWidth < removedGlypsWidth) || (index == 0u))
342             {
343               GlyphInfo& glyphInfo = *(elidedGlyphsBuffer + index);
344               Vector2&   position  = *(elidedPositionsBuffer + index);
345               position.x -= (0.f > glyphInfo.xBearing) ? glyphInfo.xBearing : 0.f;
346
347               // Replace the glyph by the ellipsis glyph.
348               glyphInfo = ellipsisGlyph;
349
350               // Change the 'x' and 'y' position of the ellipsis glyph.
351               if(position.x > firstPenX)
352               {
353                 position.x = firstPenX;
354                 if(ellipsisGlyphWidth < removedGlypsWidth)
355                 {
356                   position.x += removedGlypsWidth - ellipsisGlyphWidth;
357                 }
358               }
359
360               position.x += ellipsisGlyph.xBearing;
361               position.y = penY - ellipsisGlyph.yBearing;
362
363               inserted = true;
364             }
365           }
366
367           if(!inserted)
368           {
369             if(index > 0u)
370             {
371               --index;
372             }
373             else
374             {
375               // No space for the ellipsis.
376               inserted = true;
377             }
378             ++numberOfRemovedGlyphs;
379           }
380         } // while( !inserted )
381
382         // 'Removes' all the glyphs after the ellipsis glyph.
383         const Length numberOfGlyphs = numberOfLaidOutGlyphs - numberOfRemovedGlyphs;
384         mElidedGlyphs.Resize(numberOfGlyphs);
385         mElidedLayout.Resize(numberOfGlyphs);
386       }
387     }
388   }
389 }
390
391 } // namespace Text
392
393 } // namespace Toolkit
394
395 } // namespace Dali