Merge "Improve the underline markup" into devel/master
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / rendering / styles / underline-helper-functions.h
1 #ifndef DALI_TOOLKIT_TEXT_RENDERING_STYLES_UNDERLINE_HELPER_FUNCTIONS_H
2 #define DALI_TOOLKIT_TEXT_RENDERING_STYLES_UNDERLINE_HELPER_FUNCTIONS_H
3
4 /*
5  * Copyright (c) 2022 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/devel-api/text-abstraction/font-metrics.h>
23 #include <dali/public-api/common/dali-vector.h>
24
25 // INTERNAL INCLUDES
26 #include <dali-toolkit/internal/text/underlined-glyph-run.h>
27 #include <dali/devel-api/text-abstraction/text-abstraction-definitions.h>
28
29 namespace Dali
30 {
31 namespace Toolkit
32 {
33 namespace Text
34 {
35 /**
36  * @brief Whether the glyph at index is underlined or not. If true then return iterator to the run containes index.
37  *
38  * @param[in] index the index of glyph.
39  * @param[in] underlineRuns the underline runs.
40  * @param[out] currentUnderlinedGlyphRunIt the iterator of current underlined glyph run.
41  *
42  * @return true if glyph at index is underlined
43  */
44 bool IsGlyphUnderlined(GlyphIndex                                 index,
45                        const Vector<UnderlinedGlyphRun>&          underlineRuns,
46                        Vector<UnderlinedGlyphRun>::ConstIterator& currentUnderlinedGlyphRunIt);
47
48 /**
49  * @brief Check the current underlined glyph run iterator if not empty and isGlyphUnderlined is true then return its UnderlineProperties. Otherwise return the common underline properties.
50  *
51  * @param[in] index the index of glyph.
52  * @param[in] isGlyphUnderlined whether the glyph is underlined.
53  * @param[in] underlineRuns the underline runs.
54  * @param[in] currentUnderlinedGlyphRunIt the iterator of current underlined glyph run.
55  * @param[in] commonUnderlineProperties the common underline properties.
56  *
57  * @return the determined underline properties
58  */
59 UnderlineStyleProperties GetCurrentUnderlineProperties(GlyphIndex                                 index,
60                                                        const bool&                                isGlyphUnderlined,
61                                                        const Vector<UnderlinedGlyphRun>&          underlineRuns,
62                                                        Vector<UnderlinedGlyphRun>::ConstIterator& currentUnderlinedGlyphRunIt,
63                                                        const UnderlineStyleProperties&            commonUnderlineProperties);
64
65 /**
66  * @brief Fetch and calculate underline Position using font-metrics
67  *
68  * @param[in] fontMetrics the font metrics of glyph.
69  *
70  * @return the underline position
71  */
72 float FetchUnderlinePositionFromFontMetrics(const FontMetrics& fontMetrics);
73
74 /**
75  * @brief Calculate the current underline height using font-metrics and update maximum underline height
76  *
77  * @param[in] fontMetrics the font metrics of glyph.
78  * @param[inout] currentUnderlineHeight the current underline height.
79  * @param[inout] maxUnderlineHeight the maximum underline height.
80  *
81  */
82 void CalcualteUnderlineHeight(const FontMetrics& fontMetrics, float& currentUnderlineHeight, float& maxUnderlineHeight);
83
84 } // namespace Text
85
86 } // namespace Toolkit
87
88 } // namespace Dali
89
90 #endif // DALI_TOOLKIT_TEXT_RENDERING_STYLES_UNDERLINE_HELPER_FUNCTIONS_H