fb11e5c503a237da83e26989a10930ffc71a2482
[platform/core/uifw/dali-adaptor.git] / 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/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::SetDpi( unsigned int horizontalDpi, unsigned int verticalDpi  )
69 {
70   GetImplementation(*this).SetDpi( horizontalDpi, verticalDpi );
71 }
72
73 void FontClient::GetDpi( unsigned int& horizontalDpi, unsigned int& verticalDpi )
74 {
75   GetImplementation(*this).GetDpi( horizontalDpi, verticalDpi );
76 }
77
78 int FontClient::GetDefaultFontSize()
79 {
80   return GetImplementation(*this).GetDefaultFontSize();
81 }
82
83 void FontClient::ResetSystemDefaults()
84 {
85   GetImplementation(*this).ResetSystemDefaults();
86 }
87
88 void FontClient::GetDefaultFonts( FontList& defaultFonts )
89 {
90   GetImplementation(*this).GetDefaultFonts( defaultFonts );
91 }
92
93 void FontClient::GetDefaultPlatformFontDescription( FontDescription& fontDescription )
94 {
95   GetImplementation(*this).GetDefaultPlatformFontDescription( fontDescription );
96 }
97
98 void FontClient::GetSystemFonts( FontList& systemFonts )
99 {
100   GetImplementation(*this).GetSystemFonts( systemFonts );
101 }
102
103 void FontClient::GetDescription( FontId id, FontDescription& fontDescription )
104 {
105   GetImplementation(*this).GetDescription( id, fontDescription );
106 }
107
108 PointSize26Dot6 FontClient::GetPointSize( FontId id )
109 {
110   return GetImplementation(*this).GetPointSize( id );
111 }
112
113 bool FontClient::IsCharacterSupportedByFont( FontId fontId, Character character )
114 {
115   return GetImplementation(*this).IsCharacterSupportedByFont( fontId, character );
116 }
117
118 FontId FontClient::FindDefaultFont( Character charcode,
119                                     PointSize26Dot6 requestedPointSize,
120                                     bool preferColor )
121 {
122   return GetImplementation(*this).FindDefaultFont( charcode,
123                                                    requestedPointSize,
124                                                    preferColor );
125 }
126
127 FontId FontClient::FindFallbackFont( Character charcode,
128                                      const FontDescription& preferredFontDescription,
129                                      PointSize26Dot6 requestedPointSize,
130                                      bool preferColor )
131 {
132   return GetImplementation(*this).FindFallbackFont( charcode, preferredFontDescription, requestedPointSize, preferColor );
133 }
134
135 FontId FontClient::GetFontId( const FontPath& path, PointSize26Dot6 requestedPointSize, FaceIndex faceIndex )
136 {
137   return GetImplementation(*this).GetFontId( path, requestedPointSize, faceIndex );
138 }
139
140 FontId FontClient::GetFontId( const FontDescription& fontDescription,
141                               PointSize26Dot6 requestedPointSize,
142                               FaceIndex faceIndex )
143 {
144   return GetImplementation(*this).GetFontId( fontDescription,
145                                              requestedPointSize,
146                                              faceIndex );
147 }
148
149 bool FontClient::IsScalable( const FontPath& path )
150 {
151   return GetImplementation(*this).IsScalable( path );
152 }
153
154 bool FontClient::IsScalable( const FontDescription& fontDescription )
155 {
156   return GetImplementation(*this).IsScalable( fontDescription );
157 }
158
159 void FontClient::GetFixedSizes( const FontPath& path, Dali::Vector< PointSize26Dot6>& sizes )
160 {
161   GetImplementation(*this).GetFixedSizes( path, sizes );
162 }
163
164 void FontClient::GetFixedSizes( const FontDescription& fontDescription,
165                                 Dali::Vector< PointSize26Dot6 >& sizes )
166 {
167   GetImplementation(*this).GetFixedSizes( fontDescription, sizes );
168 }
169
170 void FontClient::GetFontMetrics( FontId fontId, FontMetrics& metrics )
171 {
172   GetImplementation(*this).GetFontMetrics( fontId, metrics );
173 }
174
175 GlyphIndex FontClient::GetGlyphIndex( FontId fontId, Character charcode )
176 {
177   return GetImplementation(*this).GetGlyphIndex( fontId, charcode );
178 }
179
180 bool FontClient::GetGlyphMetrics( GlyphInfo* array, uint32_t size, GlyphType type, bool horizontal )
181 {
182   return GetImplementation(*this).GetGlyphMetrics( array, size, type, horizontal );
183 }
184
185 void FontClient::CreateBitmap( FontId fontId, GlyphIndex glyphIndex, GlyphBufferData& data, int outlineWidth )
186 {
187   GetImplementation(*this).CreateBitmap( fontId, glyphIndex, data, outlineWidth );
188 }
189
190 PixelData FontClient::CreateBitmap( FontId fontId, GlyphIndex glyphIndex, int outlineWidth )
191 {
192   return GetImplementation(*this).CreateBitmap( fontId, glyphIndex, outlineWidth );
193 }
194
195 void FontClient::CreateVectorBlob( FontId fontId, GlyphIndex glyphIndex, VectorBlob*& blob, unsigned int& blobLength, unsigned int& nominalWidth, unsigned int& nominalHeight )
196 {
197   GetImplementation(*this).CreateVectorBlob( fontId, glyphIndex, blob, blobLength, nominalWidth, nominalHeight );
198 }
199
200 const GlyphInfo& FontClient::GetEllipsisGlyph( PointSize26Dot6 requestedPointSize )
201 {
202   return GetImplementation(*this).GetEllipsisGlyph( requestedPointSize );
203 }
204
205 bool FontClient::IsColorGlyph( FontId fontId, GlyphIndex glyphIndex )
206 {
207   return GetImplementation(*this).IsColorGlyph( fontId, glyphIndex );
208 }
209
210 bool FontClient::AddCustomFontDirectory( const FontPath& path )
211 {
212   return GetImplementation(*this).AddCustomFontDirectory( path );
213 }
214
215 FontClient::FontClient( Internal::FontClient* internal )
216 : BaseHandle( internal )
217 {
218 }
219
220 } // namespace TextAbstraction
221
222 } // namespace Dali