(Build) Ensure default style is installed & remove autoconf file lists
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / font-description-run.h
1 #ifndef DALI_TOOLKIT_TEXT_FONT_DESCRIPTION_RUN_H
2 #define DALI_TOOLKIT_TEXT_FONT_DESCRIPTION_RUN_H
3
4 /*
5  * Copyright (c) 2019 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-list.h>
23
24 // INTERNAL INCLUDES
25 #include <dali-toolkit/internal/text/character-run.h>
26 #include <dali-toolkit/internal/text/text-definitions.h>
27
28 namespace Dali
29 {
30
31 namespace Toolkit
32 {
33
34 namespace Text
35 {
36
37 /**
38  * @brief Run of characters with the same font.
39  */
40 struct FontDescriptionRun
41 {
42   /**
43    * Default constructor to set the default values of bitfields
44    */
45   FontDescriptionRun()
46   : characterRun{},
47     familyName{ nullptr },
48     familyLength{ 0u },
49     weight{ FontWeight::NONE },
50     width{ FontWidth::NONE },
51     slant{ FontSlant::NONE },
52     size{ 0u },
53     familyDefined{ false },
54     weightDefined{ false },
55     widthDefined{ false },
56     slantDefined{ false },
57     sizeDefined{ false }
58   {}
59
60   FontDescriptionRun( const CharacterRun& characterRun,
61                       char* familyName,
62                       Length familyLength,
63                       FontWeight weight,
64                       FontWidth width,
65                       FontSlant slant,
66                       PointSize26Dot6 size,
67                       bool familyDefined,
68                       bool weightDefined,
69                       bool widthDefined,
70                       bool slantDefined,
71                       bool sizeDefined )
72   : characterRun{ characterRun },
73     familyName{ familyName },
74     familyLength{ familyLength },
75     weight{ weight },
76     width{ width },
77     slant{ slant },
78     size{ size },
79     familyDefined{ familyDefined },
80     weightDefined{ weightDefined },
81     widthDefined{ widthDefined },
82     slantDefined{ slantDefined },
83     sizeDefined{ sizeDefined }
84   {}
85
86   CharacterRun    characterRun; ///< The initial character index and the number of characters of the run.
87   char*           familyName;   ///< The font's family name.
88   Length          familyLength; ///< The length of the font's family name.
89   FontWeight      weight;       ///< The font's weight.
90   FontWidth       width;        ///< The font's width.
91   FontSlant       slant;        ///< The font's slant.
92   PointSize26Dot6 size;         ///< The font's size.
93
94   bool familyDefined : 1;       ///< Whether the font's family is defined.
95   bool weightDefined : 1;       ///< Whether the font's weight is defined.
96   bool widthDefined  : 1;       ///< Whether the font's width is defined.
97   bool slantDefined  : 1;       ///< Whether the font's slant is defined.
98   bool sizeDefined   : 1;       ///< Whether the font's size is defined.
99 };
100
101 } // namespace Text
102
103 } // namespace Toolkit
104
105 } // namespace Dali
106
107 #endif // DALI_TOOLKIT_TEXT_FONT_DESCRIPTION_RUN_H