Merge "[4.0] clear cache when locale is changed" into tizen_4.0
[platform/core/uifw/dali-adaptor.git] / text / dali / devel-api / text-abstraction / font-client.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/devel-api/text-abstraction/font-client.h>
20
21 // INTERNAL INCLUDES
22 #include <dali/internal/text-abstraction/font-client-impl.h>
23
24 namespace Dali
25 {
26
27 namespace TextAbstraction
28 {
29
30 const PointSize26Dot6 FontClient::DEFAULT_POINT_SIZE = 768u; // 12*64
31
32 FontClient::GlyphBufferData::GlyphBufferData()
33 : buffer( NULL ),
34   width( 0u ),
35   height( 0u ),
36   format( Pixel::A8 )
37 {
38 }
39
40 FontClient::GlyphBufferData::~GlyphBufferData()
41 {
42 }
43
44 FontClient FontClient::Get()
45 {
46   return Internal::FontClient::Get();
47 }
48
49 FontClient::FontClient()
50 {
51 }
52
53 FontClient::~FontClient()
54 {
55 }
56
57 FontClient::FontClient( const FontClient& handle )
58 : BaseHandle( handle )
59 {
60 }
61
62 FontClient& FontClient::operator=( const FontClient& handle )
63 {
64   BaseHandle::operator=( handle );
65   return *this;
66 }
67
68 void FontClient::ClearCache()
69 {
70   GetImplementation(*this).ClearCache();
71 }
72
73 void FontClient::SetDpi( unsigned int horizontalDpi, unsigned int verticalDpi  )
74 {
75   GetImplementation(*this).SetDpi( horizontalDpi, verticalDpi );
76 }
77
78 void FontClient::GetDpi( unsigned int& horizontalDpi, unsigned int& verticalDpi )
79 {
80   GetImplementation(*this).GetDpi( horizontalDpi, verticalDpi );
81 }
82
83 int FontClient::GetDefaultFontSize()
84 {
85   return GetImplementation(*this).GetDefaultFontSize();
86 }
87
88 void FontClient::ResetSystemDefaults()
89 {
90   GetImplementation(*this).ResetSystemDefaults();
91 }
92
93 void FontClient::GetDefaultFonts( FontList& defaultFonts )
94 {
95   GetImplementation(*this).GetDefaultFonts( defaultFonts );
96 }
97
98 void FontClient::GetDefaultPlatformFontDescription( FontDescription& fontDescription )
99 {
100   GetImplementation(*this).GetDefaultPlatformFontDescription( fontDescription );
101 }
102
103 void FontClient::GetSystemFonts( FontList& systemFonts )
104 {
105   GetImplementation(*this).GetSystemFonts( systemFonts );
106 }
107
108 void FontClient::GetDescription( FontId id, FontDescription& fontDescription )
109 {
110   GetImplementation(*this).GetDescription( id, fontDescription );
111 }
112
113 PointSize26Dot6 FontClient::GetPointSize( FontId id )
114 {
115   return GetImplementation(*this).GetPointSize( id );
116 }
117
118 bool FontClient::IsCharacterSupportedByFont( FontId fontId, Character character )
119 {
120   return GetImplementation(*this).IsCharacterSupportedByFont( fontId, character );
121 }
122
123 FontId FontClient::FindDefaultFont( Character charcode,
124                                     PointSize26Dot6 requestedPointSize,
125                                     bool preferColor )
126 {
127   return GetImplementation(*this).FindDefaultFont( charcode,
128                                                    requestedPointSize,
129                                                    preferColor );
130 }
131
132 FontId FontClient::FindFallbackFont( Character charcode,
133                                      const FontDescription& preferredFontDescription,
134                                      PointSize26Dot6 requestedPointSize,
135                                      bool preferColor )
136 {
137   return GetImplementation(*this).FindFallbackFont( charcode, preferredFontDescription, requestedPointSize, preferColor );
138 }
139
140 FontId FontClient::GetFontId( const FontPath& path, PointSize26Dot6 requestedPointSize, FaceIndex faceIndex )
141 {
142   return GetImplementation(*this).GetFontId( path, requestedPointSize, faceIndex );
143 }
144
145 FontId FontClient::GetFontId( const FontDescription& fontDescription,
146                               PointSize26Dot6 requestedPointSize,
147                               FaceIndex faceIndex )
148 {
149   return GetImplementation(*this).GetFontId( fontDescription,
150                                              requestedPointSize,
151                                              faceIndex );
152 }
153
154 bool FontClient::IsScalable( const FontPath& path )
155 {
156   return GetImplementation(*this).IsScalable( path );
157 }
158
159 bool FontClient::IsScalable( const FontDescription& fontDescription )
160 {
161   return GetImplementation(*this).IsScalable( fontDescription );
162 }
163
164 void FontClient::GetFixedSizes( const FontPath& path, Dali::Vector< PointSize26Dot6>& sizes )
165 {
166   GetImplementation(*this).GetFixedSizes( path, sizes );
167 }
168
169 void FontClient::GetFixedSizes( const FontDescription& fontDescription,
170                                 Dali::Vector< PointSize26Dot6 >& sizes )
171 {
172   GetImplementation(*this).GetFixedSizes( fontDescription, sizes );
173 }
174
175 void FontClient::GetFontMetrics( FontId fontId, FontMetrics& metrics )
176 {
177   GetImplementation(*this).GetFontMetrics( fontId, metrics );
178 }
179
180 GlyphIndex FontClient::GetGlyphIndex( FontId fontId, Character charcode )
181 {
182   return GetImplementation(*this).GetGlyphIndex( fontId, charcode );
183 }
184
185 bool FontClient::GetGlyphMetrics( GlyphInfo* array, uint32_t size, GlyphType type, bool horizontal )
186 {
187   return GetImplementation(*this).GetGlyphMetrics( array, size, type, horizontal );
188 }
189
190 void FontClient::CreateBitmap( FontId fontId, GlyphIndex glyphIndex, GlyphBufferData& data, int outlineWidth )
191 {
192   GetImplementation(*this).CreateBitmap( fontId, glyphIndex, data, outlineWidth );
193 }
194
195 PixelData FontClient::CreateBitmap( FontId fontId, GlyphIndex glyphIndex, int outlineWidth )
196 {
197   return GetImplementation(*this).CreateBitmap( fontId, glyphIndex, outlineWidth );
198 }
199
200 void FontClient::CreateVectorBlob( FontId fontId, GlyphIndex glyphIndex, VectorBlob*& blob, unsigned int& blobLength, unsigned int& nominalWidth, unsigned int& nominalHeight )
201 {
202   GetImplementation(*this).CreateVectorBlob( fontId, glyphIndex, blob, blobLength, nominalWidth, nominalHeight );
203 }
204
205 const GlyphInfo& FontClient::GetEllipsisGlyph( PointSize26Dot6 requestedPointSize )
206 {
207   return GetImplementation(*this).GetEllipsisGlyph( requestedPointSize );
208 }
209
210 bool FontClient::IsColorGlyph( FontId fontId, GlyphIndex glyphIndex )
211 {
212   return GetImplementation(*this).IsColorGlyph( fontId, glyphIndex );
213 }
214
215 bool FontClient::AddCustomFontDirectory( const FontPath& path )
216 {
217   return GetImplementation(*this).AddCustomFontDirectory( path );
218 }
219
220 FontClient::FontClient( Internal::FontClient* internal )
221 : BaseHandle( internal )
222 {
223 }
224
225 } // namespace TextAbstraction
226
227 } // namespace Dali