Moved Text Controller & Markup Processor to sub-folders
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / markup-processor / markup-processor-font.h
1 #ifndef DALI_TOOLKIT_TEXT_MARKUP_PROCESSOR_FONT_H
2 #define DALI_TOOLKIT_TEXT_MARKUP_PROCESSOR_FONT_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 namespace Dali
22 {
23 namespace Toolkit
24 {
25 namespace Text
26 {
27 struct Tag;
28 struct Attribute;
29 struct FontDescriptionRun;
30
31 /**
32  * @brief Retrieves the font attributes from the tag and sets it to the font run.
33  *
34  * @param[in] tag The font tag and its attributes.
35  * @param[in,out] fontRun The font description run.
36  */
37 void ProcessFontTag(const Tag& tag, FontDescriptionRun& fontRun);
38
39 /**
40  * @brief Fill the font run with the font slant attribute value.
41  *
42  * @param[in] attribute the font slant attribute.
43  * @param[out] fontRun The font description run.
44  */
45 void ProcessFontSlant(const Attribute& attribute, FontDescriptionRun& fontRun);
46
47 /**
48  * @brief Fill the font run with the font width attribute value.
49  *
50  * @param[in] attribute the font width attribute.
51  * @param[out] fontRun The font description run.
52  */
53 void ProcessFontWidth(const Attribute& attribute, FontDescriptionRun& fontRun);
54
55 /**
56  * @brief Fill the font run with the font weight attribute value.
57  *
58  * @param[in] attribute the font weight attribute.
59  * @param[out] fontRun The font description run.
60  */
61 void ProcessFontWeight(const Attribute& attribute, FontDescriptionRun& fontRun);
62
63 /**
64  * @brief Fill the font run with the font size attribute value.
65  *
66  * @param[in] attribute the font size attribute.
67  * @param[out] fontRun The font description run.
68  */
69 void ProcessFontSize(const Attribute& attribute, FontDescriptionRun& fontRun);
70
71 /**
72  * @brief Fill the font run with the font family attribute value.
73  *
74  * @param[in] attribute the font family attribute.
75  * @param[out] fontRun The font description run.
76  */
77 void ProcessFontFamily(const Attribute& attribute, FontDescriptionRun& fontRun);
78
79 } // namespace Text
80
81 } // namespace Toolkit
82
83 } // namespace Dali
84
85 #endif // DALI_TOOLKIT_TEXT_MARKUP_PROCESSOR_FONT_H