Merge "Stop caching fonts for unknown text script" into devel/master
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / text-model.cpp
1 /*
2  * Copyright (c) 2017 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/text-model.h>
20
21 namespace Dali
22 {
23
24 namespace Toolkit
25 {
26
27 namespace Text
28 {
29
30 ModelPtr Model::New()
31 {
32   return ModelPtr( new Model() );
33 }
34
35 const Size& Model::GetControlSize() const
36 {
37   return mVisualModel->mControlSize;
38 }
39
40 const Size& Model::GetLayoutSize() const
41 {
42   return mVisualModel->GetLayoutSize();
43 }
44
45 const Vector2& Model::GetScrollPosition() const
46 {
47   return mScrollPosition;
48 }
49
50 HorizontalAlignment::Type Model::GetHorizontalAlignment() const
51 {
52   return mHorizontalAlignment;
53 }
54
55 VerticalAlignment::Type Model::GetVerticalAlignment() const
56 {
57   return mVerticalAlignment;
58 }
59
60 DevelText::VerticalLineAlignment::Type Model::GetVerticalLineAlignment() const
61 {
62   return mVerticalLineAlignment;
63 }
64
65 bool Model::IsTextElideEnabled() const
66 {
67   return mElideEnabled;
68 }
69
70 Length Model::GetNumberOfLines() const
71 {
72   return mVisualModel->mLines.Count();
73 }
74
75 const LineRun* const Model::GetLines() const
76 {
77   return mVisualModel->mLines.Begin();
78 }
79
80 Length Model::GetNumberOfScripts() const
81 {
82   return mLogicalModel->mScriptRuns.Count();
83 }
84
85 const ScriptRun* const Model::GetScriptRuns() const
86 {
87   return mLogicalModel->mScriptRuns.Begin();
88 }
89
90 Length Model::GetNumberOfGlyphs() const
91 {
92   return mVisualModel->mGlyphs.Count();
93 }
94
95 const GlyphInfo* const Model::GetGlyphs() const
96 {
97   return mVisualModel->mGlyphs.Begin();
98 }
99
100 const Vector2* const Model::GetLayout() const
101 {
102   return mVisualModel->mGlyphPositions.Begin();
103 }
104
105 const Vector4* const Model::GetColors() const
106 {
107   return mVisualModel->mColors.Begin();
108 }
109
110 const ColorIndex* const Model::GetColorIndices() const
111 {
112   return mVisualModel->mColorIndices.Begin();
113 }
114
115 const Vector4& Model::GetDefaultColor() const
116 {
117   return mVisualModel->mTextColor;
118 }
119
120 const Vector2& Model::GetShadowOffset() const
121 {
122   return mVisualModel->mShadowOffset;
123 }
124
125 const Vector4& Model::GetShadowColor() const
126 {
127   return mVisualModel->mShadowColor;
128 }
129
130 const float& Model::GetShadowBlurRadius() const
131 {
132   return mVisualModel->mShadowBlurRadius;
133 }
134
135 const Vector4& Model::GetUnderlineColor() const
136 {
137   return mVisualModel->GetUnderlineColor();
138 }
139
140 bool Model::IsUnderlineEnabled() const
141 {
142   return mVisualModel->IsUnderlineEnabled();
143 }
144
145 float Model::GetUnderlineHeight() const
146 {
147   return mVisualModel->GetUnderlineHeight();
148 }
149
150 Length Model::GetNumberOfUnderlineRuns() const
151 {
152   return mVisualModel->GetNumberOfUnderlineRuns();
153 }
154
155 void Model::GetUnderlineRuns( GlyphRun* underlineRuns, UnderlineRunIndex index, Length numberOfRuns ) const
156 {
157   mVisualModel->GetUnderlineRuns( underlineRuns, index, numberOfRuns );
158 }
159
160 const Vector4& Model::GetOutlineColor() const
161 {
162   return mVisualModel->GetOutlineColor();
163 }
164
165 float Model::GetOutlineWidth() const
166 {
167   return mVisualModel->GetOutlineWidth();
168 }
169
170 Model::Model()
171 : mLogicalModel(),
172   mVisualModel(),
173   mScrollPosition(),
174   mScrollPositionLast(),
175   mHorizontalAlignment( Text::HorizontalAlignment::BEGIN ),
176   mVerticalAlignment( Text::VerticalAlignment::TOP ),
177   mVerticalLineAlignment( DevelText::VerticalLineAlignment::TOP ),
178   mLineWrapMode( Text::LineWrap::WORD ),
179   mAlignmentOffset( 0.0f ),
180   mElideEnabled( false )
181 {
182   mLogicalModel = LogicalModel::New();
183   mVisualModel = VisualModel::New();
184 }
185
186 Model::~Model()
187 {
188 }
189
190 } // namespace Text
191
192 } // namespace Toolkit
193
194 } // namespace Dali