sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
* Header FNTRECRD.CPP
|
sl@0
|
16 |
*
|
sl@0
|
17 |
*/
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
#include "FNTRECRD.H"
|
sl@0
|
21 |
|
sl@0
|
22 |
const int KNumberOfPopularIndices = 128;
|
sl@0
|
23 |
const int KNumberOfBitsInByte = 8;
|
sl@0
|
24 |
const int KNumberOfBitsInTwoBytes = 16;
|
sl@0
|
25 |
|
sl@0
|
26 |
BitmapOffset::BitmapOffset(uint16 aBitmapOffset)
|
sl@0
|
27 |
: iBitmapOffset(aBitmapOffset)
|
sl@0
|
28 |
{}
|
sl@0
|
29 |
|
sl@0
|
30 |
void BitmapOffset::Externalize(ostream& out)
|
sl@0
|
31 |
{
|
sl@0
|
32 |
out.write((char*) &iBitmapOffset,sizeof(iBitmapOffset));
|
sl@0
|
33 |
}
|
sl@0
|
34 |
|
sl@0
|
35 |
CharacterMetrics::CharacterMetrics()
|
sl@0
|
36 |
: iAscentInPixels(0),
|
sl@0
|
37 |
iHeightInPixels(0),
|
sl@0
|
38 |
iLeftAdjustInPixels(0),
|
sl@0
|
39 |
iMoveInPixels(0),
|
sl@0
|
40 |
iRightAdjustInPixels(0)
|
sl@0
|
41 |
{
|
sl@0
|
42 |
}
|
sl@0
|
43 |
|
sl@0
|
44 |
|
sl@0
|
45 |
void CharacterMetrics::Externalize(ostream& out)
|
sl@0
|
46 |
{
|
sl@0
|
47 |
out.write((char*) &iAscentInPixels, sizeof(iAscentInPixels));
|
sl@0
|
48 |
out.write((char*) &iHeightInPixels, sizeof(iHeightInPixels));
|
sl@0
|
49 |
out.write((char*) &iLeftAdjustInPixels, sizeof(iLeftAdjustInPixels));
|
sl@0
|
50 |
out.write((char*) &iMoveInPixels, sizeof(iMoveInPixels));
|
sl@0
|
51 |
out.write((char*) &iRightAdjustInPixels, sizeof(iRightAdjustInPixels));
|
sl@0
|
52 |
}
|
sl@0
|
53 |
|
sl@0
|
54 |
MetricDistributionMember::~MetricDistributionMember()
|
sl@0
|
55 |
{
|
sl@0
|
56 |
delete iMetric;
|
sl@0
|
57 |
}
|
sl@0
|
58 |
|
sl@0
|
59 |
MetricDistributionMember::MetricDistributionMember()
|
sl@0
|
60 |
: iFrequency(0), iMetric(0)
|
sl@0
|
61 |
{}
|
sl@0
|
62 |
|
sl@0
|
63 |
CharacterMetrics* MetricDistributionMember::Metric() const
|
sl@0
|
64 |
{
|
sl@0
|
65 |
return iMetric;
|
sl@0
|
66 |
}
|
sl@0
|
67 |
|
sl@0
|
68 |
int MetricDistributionMember::Frequency() const
|
sl@0
|
69 |
{
|
sl@0
|
70 |
return iFrequency;
|
sl@0
|
71 |
}
|
sl@0
|
72 |
|
sl@0
|
73 |
void MetricDistributionMember::SetFrequency(int aFrequency)
|
sl@0
|
74 |
{
|
sl@0
|
75 |
iFrequency = aFrequency;
|
sl@0
|
76 |
}
|
sl@0
|
77 |
|
sl@0
|
78 |
void MetricDistributionMember::IncrementFrequency(int aIncrementBy)
|
sl@0
|
79 |
{
|
sl@0
|
80 |
iFrequency += aIncrementBy;
|
sl@0
|
81 |
}
|
sl@0
|
82 |
|
sl@0
|
83 |
void MetricDistributionMember::SetMetric(CharacterMetrics* aMetric)
|
sl@0
|
84 |
{
|
sl@0
|
85 |
iMetric = aMetric;
|
sl@0
|
86 |
}
|
sl@0
|
87 |
|
sl@0
|
88 |
void MetricDistributionMember::Externalize(ostream& out)
|
sl@0
|
89 |
{
|
sl@0
|
90 |
iMetric->Externalize(out);
|
sl@0
|
91 |
}
|
sl@0
|
92 |
|
sl@0
|
93 |
MetricDistribution::~MetricDistribution()
|
sl@0
|
94 |
{
|
sl@0
|
95 |
iCharacterMetricsList.Destroy();
|
sl@0
|
96 |
}
|
sl@0
|
97 |
|
sl@0
|
98 |
MetricDistribution* MetricDistribution::New()
|
sl@0
|
99 |
{
|
sl@0
|
100 |
return new MetricDistribution;
|
sl@0
|
101 |
}
|
sl@0
|
102 |
|
sl@0
|
103 |
MetricDistribution::MetricDistribution()
|
sl@0
|
104 |
{}
|
sl@0
|
105 |
|
sl@0
|
106 |
void MetricDistribution::SortMetricsByFrequency()
|
sl@0
|
107 |
{ // Only need sort the most popular 128, since after this 2 bytes will always be used
|
sl@0
|
108 |
int maxIndex = iCharacterMetricsList.Size();
|
sl@0
|
109 |
if (maxIndex > KNumberOfPopularIndices)
|
sl@0
|
110 |
{
|
sl@0
|
111 |
maxIndex = KNumberOfPopularIndices;
|
sl@0
|
112 |
}
|
sl@0
|
113 |
for(int indexToSet = 0; indexToSet < maxIndex; indexToSet++)
|
sl@0
|
114 |
{
|
sl@0
|
115 |
const CharacterMetrics& mostPopularRemaining = MostPopular(indexToSet);
|
sl@0
|
116 |
SetIndex(mostPopularRemaining, indexToSet);
|
sl@0
|
117 |
}
|
sl@0
|
118 |
}
|
sl@0
|
119 |
|
sl@0
|
120 |
void MetricDistribution::SetIndex(const CharacterMetrics& aMetrics, int aIndexToSet)
|
sl@0
|
121 |
{
|
sl@0
|
122 |
int currentPos = Index(aMetrics);
|
sl@0
|
123 |
if (currentPos != aIndexToSet)
|
sl@0
|
124 |
{
|
sl@0
|
125 |
MetricDistributionMember* match = iCharacterMetricsList[currentPos];
|
sl@0
|
126 |
MetricDistributionMember* swapPos = iCharacterMetricsList[aIndexToSet];
|
sl@0
|
127 |
|
sl@0
|
128 |
CharacterMetrics* tempMet = match->Metric();
|
sl@0
|
129 |
const int tempFreq = match->Frequency();
|
sl@0
|
130 |
|
sl@0
|
131 |
match->SetMetric(swapPos->Metric());
|
sl@0
|
132 |
match->SetFrequency(swapPos->Frequency());
|
sl@0
|
133 |
swapPos->SetMetric(tempMet);
|
sl@0
|
134 |
swapPos->SetFrequency(tempFreq);
|
sl@0
|
135 |
}
|
sl@0
|
136 |
}
|
sl@0
|
137 |
|
sl@0
|
138 |
void MetricDistribution::AddOrIncrementMetric(const CharacterMetrics& aMetrics, int aFrequency)
|
sl@0
|
139 |
{
|
sl@0
|
140 |
boolean match = false;
|
sl@0
|
141 |
const CharacterMetrics* trial = NULL;
|
sl@0
|
142 |
MetricDistributionMember* link = NULL;
|
sl@0
|
143 |
int index;
|
sl@0
|
144 |
int maxIndex = iCharacterMetricsList.Size();
|
sl@0
|
145 |
|
sl@0
|
146 |
for(index = 0; index < maxIndex && !match; index++)
|
sl@0
|
147 |
{
|
sl@0
|
148 |
link = iCharacterMetricsList[index];
|
sl@0
|
149 |
if (link)
|
sl@0
|
150 |
trial = link->Metric();
|
sl@0
|
151 |
if (trial && (trial->iAscentInPixels == aMetrics.iAscentInPixels)
|
sl@0
|
152 |
&& (trial->iHeightInPixels == aMetrics.iHeightInPixels)
|
sl@0
|
153 |
&& (trial->iLeftAdjustInPixels == aMetrics.iLeftAdjustInPixels)
|
sl@0
|
154 |
&& (trial->iMoveInPixels == aMetrics.iMoveInPixels)
|
sl@0
|
155 |
&& (trial->iRightAdjustInPixels == aMetrics.iRightAdjustInPixels))
|
sl@0
|
156 |
{
|
sl@0
|
157 |
match = true;
|
sl@0
|
158 |
}
|
sl@0
|
159 |
}
|
sl@0
|
160 |
if (match)
|
sl@0
|
161 |
{
|
sl@0
|
162 |
link->IncrementFrequency(aFrequency);
|
sl@0
|
163 |
}
|
sl@0
|
164 |
else
|
sl@0
|
165 |
{
|
sl@0
|
166 |
MetricDistributionMember* newLink = new MetricDistributionMember;
|
sl@0
|
167 |
newLink->IncrementFrequency(aFrequency);
|
sl@0
|
168 |
CharacterMetrics* newMetric = new CharacterMetrics(aMetrics);
|
sl@0
|
169 |
newLink->SetMetric(newMetric);
|
sl@0
|
170 |
iCharacterMetricsList.Add(newLink);
|
sl@0
|
171 |
}
|
sl@0
|
172 |
}
|
sl@0
|
173 |
|
sl@0
|
174 |
const CharacterMetrics& MetricDistribution::MostPopular(int aStartIndex)
|
sl@0
|
175 |
{
|
sl@0
|
176 |
// finds the most popular metric above index aStartIndex. Allows for a fairly quick sort of the metircs to be done.
|
sl@0
|
177 |
MetricDistributionMember* link = NULL;
|
sl@0
|
178 |
const CharacterMetrics* mostPopular = NULL;
|
sl@0
|
179 |
int frequencyOfMostPopular = 0;
|
sl@0
|
180 |
int frequency = 0;
|
sl@0
|
181 |
int count;
|
sl@0
|
182 |
int total = 0; // for debugging
|
sl@0
|
183 |
const int size = iCharacterMetricsList.Size();
|
sl@0
|
184 |
for (count = aStartIndex; count < size; count++)
|
sl@0
|
185 |
{
|
sl@0
|
186 |
link = iCharacterMetricsList[count];
|
sl@0
|
187 |
frequency = link->Frequency();
|
sl@0
|
188 |
if (frequency>frequencyOfMostPopular)
|
sl@0
|
189 |
{
|
sl@0
|
190 |
mostPopular = link->Metric();
|
sl@0
|
191 |
frequencyOfMostPopular = frequency;
|
sl@0
|
192 |
}
|
sl@0
|
193 |
total += frequency;
|
sl@0
|
194 |
}
|
sl@0
|
195 |
return *mostPopular;
|
sl@0
|
196 |
}
|
sl@0
|
197 |
|
sl@0
|
198 |
int MetricDistribution::Index(const CharacterMetrics& aMetrics)
|
sl@0
|
199 |
{
|
sl@0
|
200 |
boolean same = false;
|
sl@0
|
201 |
CharacterMetrics* match = NULL;
|
sl@0
|
202 |
int i;
|
sl@0
|
203 |
int size = iCharacterMetricsList.Size();
|
sl@0
|
204 |
// see if we have this one already
|
sl@0
|
205 |
for (i = 0; i < size; i++)
|
sl@0
|
206 |
{
|
sl@0
|
207 |
if (iCharacterMetricsList[i])
|
sl@0
|
208 |
{
|
sl@0
|
209 |
match = iCharacterMetricsList[i]->Metric();
|
sl@0
|
210 |
}
|
sl@0
|
211 |
if ((match->iAscentInPixels == aMetrics.iAscentInPixels)
|
sl@0
|
212 |
&& (match->iHeightInPixels == aMetrics.iHeightInPixels)
|
sl@0
|
213 |
&& (match->iLeftAdjustInPixels == aMetrics.iLeftAdjustInPixels)
|
sl@0
|
214 |
&& (match->iMoveInPixels == aMetrics.iMoveInPixels)
|
sl@0
|
215 |
&& (match->iRightAdjustInPixels == aMetrics.iRightAdjustInPixels))
|
sl@0
|
216 |
{
|
sl@0
|
217 |
same = true;
|
sl@0
|
218 |
break;
|
sl@0
|
219 |
}
|
sl@0
|
220 |
}
|
sl@0
|
221 |
if (!same)
|
sl@0
|
222 |
{
|
sl@0
|
223 |
i = -1; // not found
|
sl@0
|
224 |
}
|
sl@0
|
225 |
return i;
|
sl@0
|
226 |
}
|
sl@0
|
227 |
|
sl@0
|
228 |
void MetricDistribution::Externalize(ostream& out)
|
sl@0
|
229 |
{
|
sl@0
|
230 |
streamoff idOffset = iStreamId;
|
sl@0
|
231 |
out.write(reinterpret_cast<char*>(&idOffset), sizeof(idOffset));
|
sl@0
|
232 |
int32 numMetrics = iCharacterMetricsList.Size();
|
sl@0
|
233 |
out.write(reinterpret_cast<char*>(&numMetrics), sizeof(numMetrics));
|
sl@0
|
234 |
}
|
sl@0
|
235 |
|
sl@0
|
236 |
void MetricDistribution::ExternalizeComponents(ostream& out)
|
sl@0
|
237 |
{
|
sl@0
|
238 |
iStreamId = out.tellp();
|
sl@0
|
239 |
iCharacterMetricsList.Externalize(out);
|
sl@0
|
240 |
}
|
sl@0
|
241 |
|
sl@0
|
242 |
void Characters::Externalize(ostream& out)
|
sl@0
|
243 |
{
|
sl@0
|
244 |
iStreamId = out.tellp();
|
sl@0
|
245 |
iBitmapOffsetList.Externalize(out);
|
sl@0
|
246 |
}
|
sl@0
|
247 |
|
sl@0
|
248 |
Characters::~Characters()
|
sl@0
|
249 |
{
|
sl@0
|
250 |
iBitmapOffsetList.Destroy();
|
sl@0
|
251 |
}
|
sl@0
|
252 |
|
sl@0
|
253 |
ByteList::ByteList()
|
sl@0
|
254 |
: iString(), iOffset(0)
|
sl@0
|
255 |
{
|
sl@0
|
256 |
}
|
sl@0
|
257 |
|
sl@0
|
258 |
void ByteList::AddBit(char aBit)
|
sl@0
|
259 |
{
|
sl@0
|
260 |
if (iOffset > 7)
|
sl@0
|
261 |
NewByte();
|
sl@0
|
262 |
const char mask = 1;
|
sl@0
|
263 |
aBit = char(aBit & mask);
|
sl@0
|
264 |
char byte = char(aBit << iOffset);
|
sl@0
|
265 |
int index = iString.Length() - 1;
|
sl@0
|
266 |
iString[index] = char(iString[index] | byte);
|
sl@0
|
267 |
iOffset++;
|
sl@0
|
268 |
}
|
sl@0
|
269 |
|
sl@0
|
270 |
void ByteList::NewByte()
|
sl@0
|
271 |
{
|
sl@0
|
272 |
char byte = 0;
|
sl@0
|
273 |
iString += byte;
|
sl@0
|
274 |
iOffset = 0;
|
sl@0
|
275 |
}
|
sl@0
|
276 |
|
sl@0
|
277 |
int ByteList::Length() const
|
sl@0
|
278 |
{
|
sl@0
|
279 |
return iString.Length();
|
sl@0
|
280 |
}
|
sl@0
|
281 |
|
sl@0
|
282 |
void ByteList::Externalize(ostream& out)
|
sl@0
|
283 |
{
|
sl@0
|
284 |
int32 length = iString.Length();
|
sl@0
|
285 |
out.write((char*) &length, sizeof(length));
|
sl@0
|
286 |
out.write(iString.Text(), length);
|
sl@0
|
287 |
}
|
sl@0
|
288 |
|
sl@0
|
289 |
void CharactersBitmap::Externalize(ostream& out)
|
sl@0
|
290 |
{
|
sl@0
|
291 |
iStreamId = out.tellp();
|
sl@0
|
292 |
iByteList.Externalize(out);
|
sl@0
|
293 |
}
|
sl@0
|
294 |
|
sl@0
|
295 |
void CharactersBitmap::AddIndex(int aIndex)
|
sl@0
|
296 |
{// Add index to metrics into the bitmap code section
|
sl@0
|
297 |
// Use 1 byte for most popular indices, 2 bytes otherwise
|
sl@0
|
298 |
int power;
|
sl@0
|
299 |
if (aIndex < KNumberOfPopularIndices)
|
sl@0
|
300 |
{
|
sl@0
|
301 |
iByteList.AddBit(0);
|
sl@0
|
302 |
power = KNumberOfBitsInByte - 1;
|
sl@0
|
303 |
}
|
sl@0
|
304 |
else
|
sl@0
|
305 |
{
|
sl@0
|
306 |
iByteList.AddBit(1);
|
sl@0
|
307 |
power = KNumberOfBitsInTwoBytes - 1;
|
sl@0
|
308 |
}
|
sl@0
|
309 |
|
sl@0
|
310 |
char sigBit = 0;
|
sl@0
|
311 |
// Add significant bits of index.
|
sl@0
|
312 |
for(int bitToAdd = 0; bitToAdd < power; bitToAdd++)
|
sl@0
|
313 |
{
|
sl@0
|
314 |
sigBit = char(aIndex >> bitToAdd);
|
sl@0
|
315 |
iByteList.AddBit(sigBit);
|
sl@0
|
316 |
}
|
sl@0
|
317 |
}
|
sl@0
|
318 |
|
sl@0
|
319 |
void BitmapCodeSection::Externalize(ostream& out)
|
sl@0
|
320 |
{
|
sl@0
|
321 |
out.write((char*) &iStart, sizeof(iStart));
|
sl@0
|
322 |
out.write((char*) &iEnd, sizeof(iEnd));
|
sl@0
|
323 |
streamoff idOffset = iCharacters.iStreamId;
|
sl@0
|
324 |
out.write(reinterpret_cast<char*>(&idOffset), sizeof(idOffset));
|
sl@0
|
325 |
idOffset = iCharactersBitmap.iStreamId;
|
sl@0
|
326 |
out.write(reinterpret_cast<char*>(&idOffset), sizeof(idOffset));
|
sl@0
|
327 |
}
|
sl@0
|
328 |
|
sl@0
|
329 |
void BitmapCodeSection::ExternalizeComponents(ostream& out)
|
sl@0
|
330 |
{
|
sl@0
|
331 |
iCharacters.Externalize(out);
|
sl@0
|
332 |
iCharactersBitmap.Externalize(out);
|
sl@0
|
333 |
}
|
sl@0
|
334 |
|
sl@0
|
335 |
FontBitmap::FontBitmap()
|
sl@0
|
336 |
: iPosture(PostureUpright),
|
sl@0
|
337 |
iStrokeWeight(StrokeWeightNormal),
|
sl@0
|
338 |
iIsProportional(efalse),
|
sl@0
|
339 |
iCellHeightInPixels(0),
|
sl@0
|
340 |
iAscentInPixels(0),
|
sl@0
|
341 |
iMaxCharWidthInPixels(0),
|
sl@0
|
342 |
iMaxNormalCharWidthInPixels(0),
|
sl@0
|
343 |
iBitmapEncoding(0)
|
sl@0
|
344 |
{
|
sl@0
|
345 |
iCharacterMetrics = MetricDistribution::New();
|
sl@0
|
346 |
}
|
sl@0
|
347 |
|
sl@0
|
348 |
void FontBitmap::Externalize(ostream& out)
|
sl@0
|
349 |
{
|
sl@0
|
350 |
iStreamId = out.tellp();
|
sl@0
|
351 |
out.write((char*) &iUid, sizeof(iUid));
|
sl@0
|
352 |
out.put((char) iPosture);
|
sl@0
|
353 |
out.put((char) iStrokeWeight);
|
sl@0
|
354 |
out.put((char) iIsProportional);
|
sl@0
|
355 |
out.write((char*) &iCellHeightInPixels, sizeof(iCellHeightInPixels));
|
sl@0
|
356 |
out.write((char*) &iAscentInPixels, sizeof(iAscentInPixels));
|
sl@0
|
357 |
out.write((char*) &iMaxCharWidthInPixels, sizeof(iMaxCharWidthInPixels));
|
sl@0
|
358 |
out.write((char*) &iMaxNormalCharWidthInPixels, sizeof(iMaxNormalCharWidthInPixels));
|
sl@0
|
359 |
out.write((char*) &iBitmapEncoding, sizeof(iBitmapEncoding));
|
sl@0
|
360 |
iCharacterMetrics->Externalize(out);
|
sl@0
|
361 |
iCodeSectionList.Externalize(out);
|
sl@0
|
362 |
}
|
sl@0
|
363 |
|
sl@0
|
364 |
void FontBitmap::ExternalizeComponents(ostream& out)
|
sl@0
|
365 |
{
|
sl@0
|
366 |
// write out characters and chactersbitmap records
|
sl@0
|
367 |
iCharacterMetrics->ExternalizeComponents(out);
|
sl@0
|
368 |
int size = iCodeSectionList.Size();
|
sl@0
|
369 |
for (int i = 0; i < size; i++)
|
sl@0
|
370 |
{
|
sl@0
|
371 |
iCodeSectionList[i]->ExternalizeComponents(out);
|
sl@0
|
372 |
}
|
sl@0
|
373 |
}
|
sl@0
|
374 |
|
sl@0
|
375 |
FontBitmap::~FontBitmap()
|
sl@0
|
376 |
{
|
sl@0
|
377 |
iCodeSectionList.Destroy();
|
sl@0
|
378 |
delete iCharacterMetrics;
|
sl@0
|
379 |
}
|
sl@0
|
380 |
|
sl@0
|
381 |
TypefaceFontBitmap::TypefaceFontBitmap(FontBitmap* aFontBitmap)
|
sl@0
|
382 |
: iFontBitmap(aFontBitmap),
|
sl@0
|
383 |
iFontBitmapUid(KNullUid),
|
sl@0
|
384 |
iWidthFactor(1),
|
sl@0
|
385 |
iHeightFactor(1)
|
sl@0
|
386 |
{
|
sl@0
|
387 |
}
|
sl@0
|
388 |
|
sl@0
|
389 |
TypefaceFontBitmap::TypefaceFontBitmap(uid aFontBitmapUid)
|
sl@0
|
390 |
: iFontBitmap(NULL),
|
sl@0
|
391 |
iFontBitmapUid(aFontBitmapUid),
|
sl@0
|
392 |
iWidthFactor(1),
|
sl@0
|
393 |
iHeightFactor(1)
|
sl@0
|
394 |
{
|
sl@0
|
395 |
}
|
sl@0
|
396 |
|
sl@0
|
397 |
void TypefaceFontBitmap::Externalize(ostream& out)
|
sl@0
|
398 |
{
|
sl@0
|
399 |
if (iFontBitmap)
|
sl@0
|
400 |
out.write((char*) &iFontBitmap->iUid, sizeof(iFontBitmap->iUid));
|
sl@0
|
401 |
else
|
sl@0
|
402 |
out.write((char*) &iFontBitmapUid, sizeof(iFontBitmapUid));
|
sl@0
|
403 |
out.write((char*) &iWidthFactor, sizeof(iWidthFactor));
|
sl@0
|
404 |
out.write((char*) &iHeightFactor, sizeof(iHeightFactor));
|
sl@0
|
405 |
}
|
sl@0
|
406 |
|
sl@0
|
407 |
void FntTypeface::Externalize(ostream& out)
|
sl@0
|
408 |
{
|
sl@0
|
409 |
iStreamId = out.tellp();
|
sl@0
|
410 |
Typeface::Externalize(out);
|
sl@0
|
411 |
iTypefaceFontBitmapList.Externalize(out);
|
sl@0
|
412 |
}
|
sl@0
|
413 |
|
sl@0
|
414 |
FontStoreFile::FontStoreFile()
|
sl@0
|
415 |
: iCollectionUid(KNullUid),
|
sl@0
|
416 |
iKPixelAspectRatio(1000),
|
sl@0
|
417 |
iCopyrightInfo(),
|
sl@0
|
418 |
iDataStreamId(0)
|
sl@0
|
419 |
{
|
sl@0
|
420 |
}
|
sl@0
|
421 |
|
sl@0
|
422 |
void FontStoreFile::AddTypeface(FntTypeface *aTypeface)
|
sl@0
|
423 |
{
|
sl@0
|
424 |
iTypefaceList.Add(aTypeface);
|
sl@0
|
425 |
for (int i = 0; i < aTypeface->iTypefaceFontBitmapList.Size(); i++)
|
sl@0
|
426 |
{
|
sl@0
|
427 |
if (aTypeface->iTypefaceFontBitmapList[i]->iFontBitmap)
|
sl@0
|
428 |
iFontBitmapList.Add(aTypeface->iTypefaceFontBitmapList[i]->iFontBitmap);
|
sl@0
|
429 |
}
|
sl@0
|
430 |
}
|
sl@0
|
431 |
|
sl@0
|
432 |
void FontStoreFile::AddFontBitmap(FontBitmap* aFontBitmap)
|
sl@0
|
433 |
{
|
sl@0
|
434 |
iFontBitmapList.Add(aFontBitmap);
|
sl@0
|
435 |
}
|
sl@0
|
436 |
|
sl@0
|
437 |
void FontStoreFile::Externalize(ostream& out)
|
sl@0
|
438 |
{
|
sl@0
|
439 |
ExternalizeHeader(out);
|
sl@0
|
440 |
ExternalizeComponents(out);
|
sl@0
|
441 |
}
|
sl@0
|
442 |
|
sl@0
|
443 |
void FontStoreFile::ExternalizeHeader(ostream& out)
|
sl@0
|
444 |
{
|
sl@0
|
445 |
out.write((char*) &KStoreWriteOnceLayoutUid, sizeof(KStoreWriteOnceLayoutUid));
|
sl@0
|
446 |
out.write((char*) &KFontStoreFileUid, sizeof(KFontStoreFileUid));
|
sl@0
|
447 |
out.write((char*) &KNullUid, sizeof(KNullUid));
|
sl@0
|
448 |
out.write((char*) &KFontStoreFileChecksum, sizeof(KFontStoreFileChecksum));
|
sl@0
|
449 |
streamoff idOffset = iStreamId;
|
sl@0
|
450 |
out.write(reinterpret_cast<char*>(&idOffset), sizeof(idOffset));
|
sl@0
|
451 |
iStreamId = out.tellp();
|
sl@0
|
452 |
out.write((char*) &KFnttranVersion, sizeof(KFnttranVersion));
|
sl@0
|
453 |
out.write((char*) &iCollectionUid, sizeof(iCollectionUid));
|
sl@0
|
454 |
out.write((char*) &iKPixelAspectRatio, sizeof(iKPixelAspectRatio));
|
sl@0
|
455 |
idOffset = iDataStreamId;
|
sl@0
|
456 |
out.write(reinterpret_cast<char*>(&idOffset), sizeof(idOffset));
|
sl@0
|
457 |
iCopyrightInfo.Externalize(out);
|
sl@0
|
458 |
}
|
sl@0
|
459 |
|
sl@0
|
460 |
void FontStoreFile::ExternalizeComponents(ostream& out)
|
sl@0
|
461 |
{
|
sl@0
|
462 |
iDataStreamId = out.tellp();
|
sl@0
|
463 |
iFontBitmapList.Externalize(out);
|
sl@0
|
464 |
iTypefaceList.Externalize(out);
|
sl@0
|
465 |
iFontBitmapList.ExternalizeComponents(out);
|
sl@0
|
466 |
}
|
sl@0
|
467 |
|
sl@0
|
468 |
boolean FontStore::Store(const String& aFilename)
|
sl@0
|
469 |
{
|
sl@0
|
470 |
boolean state = efalse;
|
sl@0
|
471 |
ofstream fout;
|
sl@0
|
472 |
String string = aFilename;
|
sl@0
|
473 |
fout.open(string.Text(), ios::binary);
|
sl@0
|
474 |
if (!fout.fail())
|
sl@0
|
475 |
{
|
sl@0
|
476 |
iFontStoreFile->Externalize(fout);
|
sl@0
|
477 |
fout.close();
|
sl@0
|
478 |
fout.open(string.Text(), ios::binary | ios::trunc);
|
sl@0
|
479 |
iFontStoreFile->Externalize(fout);
|
sl@0
|
480 |
fout.close();
|
sl@0
|
481 |
state = etrue;
|
sl@0
|
482 |
}
|
sl@0
|
483 |
return state;
|
sl@0
|
484 |
}
|
sl@0
|
485 |
|
sl@0
|
486 |
void FontStore::AddFontStoreFile(FontStoreFile* aFontStoreFile)
|
sl@0
|
487 |
{
|
sl@0
|
488 |
iFontStoreFile = aFontStoreFile;
|
sl@0
|
489 |
}
|
sl@0
|
490 |
|
sl@0
|
491 |
void FontStore::AddFontBitmap(FontBitmap *aFontBitmap)
|
sl@0
|
492 |
{
|
sl@0
|
493 |
iFontBitmapList.Add(aFontBitmap);
|
sl@0
|
494 |
}
|
sl@0
|
495 |
|
sl@0
|
496 |
Record* FontStore::FindFontBitmap(String& aLabel)
|
sl@0
|
497 |
{
|
sl@0
|
498 |
return iFontBitmapList.LabelToRecord(aLabel);
|
sl@0
|
499 |
}
|
sl@0
|
500 |
|
sl@0
|
501 |
void FontStore::AddTypeface(FntTypeface *aTypeface)
|
sl@0
|
502 |
{
|
sl@0
|
503 |
iTypefaceList.Add(aTypeface);
|
sl@0
|
504 |
}
|
sl@0
|
505 |
|
sl@0
|
506 |
Record* FontStore::FindTypeface(String& aLabel)
|
sl@0
|
507 |
{
|
sl@0
|
508 |
return iTypefaceList.LabelToRecord(aLabel);
|
sl@0
|
509 |
}
|
sl@0
|
510 |
|
sl@0
|
511 |
FontStore::FontStore()
|
sl@0
|
512 |
: iFontStoreFile(NULL),
|
sl@0
|
513 |
iFontBitmapList(),
|
sl@0
|
514 |
iTypefaceList()
|
sl@0
|
515 |
{
|
sl@0
|
516 |
}
|
sl@0
|
517 |
|
sl@0
|
518 |
FontStore::~FontStore()
|
sl@0
|
519 |
{
|
sl@0
|
520 |
delete iFontStoreFile;
|
sl@0
|
521 |
iFontBitmapList.Destroy();
|
sl@0
|
522 |
iTypefaceList.Destroy();
|
sl@0
|
523 |
}
|