Merge "Soft shadow support in text visual" 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 bool Model::IsTextElideEnabled() const
61 {
62   return mElideEnabled;
63 }
64
65 Length Model::GetNumberOfLines() const
66 {
67   return mVisualModel->mLines.Count();
68 }
69
70 const LineRun* const Model::GetLines() const
71 {
72   return mVisualModel->mLines.Begin();
73 }
74
75 Length Model::GetNumberOfScripts() const
76 {
77   return mLogicalModel->mScriptRuns.Count();
78 }
79
80 const ScriptRun* const Model::GetScriptRuns() const
81 {
82   return mLogicalModel->mScriptRuns.Begin();
83 }
84
85 Length Model::GetNumberOfGlyphs() const
86 {
87   return mVisualModel->mGlyphs.Count();
88 }
89
90 const GlyphInfo* const Model::GetGlyphs() const
91 {
92   return mVisualModel->mGlyphs.Begin();
93 }
94
95 const Vector2* const Model::GetLayout() const
96 {
97   return mVisualModel->mGlyphPositions.Begin();
98 }
99
100 const Vector4* const Model::GetColors() const
101 {
102   return mVisualModel->mColors.Begin();
103 }
104
105 const ColorIndex* const Model::GetColorIndices() const
106 {
107   return mVisualModel->mColorIndices.Begin();
108 }
109
110 const Vector4& Model::GetDefaultColor() const
111 {
112   return mVisualModel->mTextColor;
113 }
114
115 const Vector2& Model::GetShadowOffset() const
116 {
117   return mVisualModel->mShadowOffset;
118 }
119
120 const Vector4& Model::GetShadowColor() const
121 {
122   return mVisualModel->mShadowColor;
123 }
124
125 const float& Model::GetShadowBlurRadius() const
126 {
127   return mVisualModel->mShadowBlurRadius;
128 }
129
130 const Vector4& Model::GetUnderlineColor() const
131 {
132   return mVisualModel->GetUnderlineColor();
133 }
134
135 bool Model::IsUnderlineEnabled() const
136 {
137   return mVisualModel->IsUnderlineEnabled();
138 }
139
140 float Model::GetUnderlineHeight() const
141 {
142   return mVisualModel->GetUnderlineHeight();
143 }
144
145 Length Model::GetNumberOfUnderlineRuns() const
146 {
147   return mVisualModel->GetNumberOfUnderlineRuns();
148 }
149
150 void Model::GetUnderlineRuns( GlyphRun* underlineRuns, UnderlineRunIndex index, Length numberOfRuns ) const
151 {
152   mVisualModel->GetUnderlineRuns( underlineRuns, index, numberOfRuns );
153 }
154
155 const Vector4& Model::GetOutlineColor() const
156 {
157   return mVisualModel->GetOutlineColor();
158 }
159
160 float Model::GetOutlineWidth() const
161 {
162   return mVisualModel->GetOutlineWidth();
163 }
164
165 Model::Model()
166 : mLogicalModel(),
167   mVisualModel(),
168   mScrollPosition(),
169   mScrollPositionLast(),
170   mHorizontalAlignment( Text::HorizontalAlignment::BEGIN ),
171   mVerticalAlignment( Text::VerticalAlignment::TOP ),
172   mLineWrapMode( Text::LineWrap::WORD ),
173   mAlignmentOffset( 0.0f ),
174   mElideEnabled( false )
175 {
176   mLogicalModel = LogicalModel::New();
177   mVisualModel = VisualModel::New();
178 }
179
180 Model::~Model()
181 {
182 }
183
184 } // namespace Text
185
186 } // namespace Toolkit
187
188 } // namespace Dali