os/graphics/graphicstools/bitmapfonttools/src/PDRRECRD.CPP
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/graphicstools/bitmapfonttools/src/PDRRECRD.CPP	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,785 @@
     1.4 +/*
     1.5 +* Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description: 
    1.18 +* Header PDRRECRD.CPP
    1.19 +*
    1.20 +*/
    1.21 +
    1.22 +
    1.23 +#include "PDRRECRD.H"
    1.24 +
    1.25 +EXPORT_C PdrResource* PdrResource::New()
    1.26 +/** Creates a new instance of this class.
    1.27 +
    1.28 +@return Reference to a new object. */
    1.29 +	{
    1.30 +	return new PdrResource();
    1.31 +	}
    1.32 +
    1.33 +EXPORT_C void PdrResource::Delete()
    1.34 +/** Deletes the current object. */
    1.35 +	{
    1.36 +	delete this;
    1.37 +	}
    1.38 +
    1.39 +void PdrResource::Externalize(ostream& out)
    1.40 +	{
    1.41 +	uint8 id = (uint8) iId;
    1.42 +	out.write((char*) &id, sizeof(id));
    1.43 +	iString.Externalize(out);
    1.44 +	}
    1.45 +
    1.46 +EXPORT_C PdrResources* PdrResources::New()
    1.47 +/** Creates a new instance of this class.
    1.48 +
    1.49 +@return Reference to a new object. */
    1.50 +	{
    1.51 +	return new PdrResources();
    1.52 +	}
    1.53 +
    1.54 +EXPORT_C void PdrResources::Delete()
    1.55 +/** Deletes the current object. */
    1.56 +	{
    1.57 +	delete this;
    1.58 +	}
    1.59 +
    1.60 +void PdrResources::Externalize(ostream& out)
    1.61 +	{
    1.62 +	iStreamId = out.tellp();
    1.63 +	iPdrResourceList.Externalize(out);
    1.64 +	}
    1.65 +
    1.66 +EXPORT_C void PdrResources::AddResource(PdrResource* aResource)
    1.67 +/** Adds a printer resource to the object.
    1.68 +
    1.69 +@param aResource Printer resource. */
    1.70 +	{
    1.71 +	iPdrResourceList.Add(aResource);
    1.72 +	}
    1.73 +
    1.74 +PdrResources::~PdrResources()
    1.75 +/** Default destructor. */
    1.76 +	{
    1.77 +	iPdrResourceList.Destroy();
    1.78 +	}
    1.79 +
    1.80 +EXPORT_C PdrTranslation* PdrTranslation::New()
    1.81 +/** Creates a new instance of this class.
    1.82 +
    1.83 +@return Reference to a new object. */
    1.84 +	{
    1.85 +	return new PdrTranslation();
    1.86 +	}
    1.87 +
    1.88 +EXPORT_C void PdrTranslation::Delete()
    1.89 +/** Deletes the current object. */
    1.90 +	{
    1.91 +	delete this;
    1.92 +	}
    1.93 +
    1.94 +void PdrTranslation::Externalize(ostream& out)
    1.95 +	{
    1.96 +	out.write((char*) &iFrom, sizeof(iFrom));
    1.97 +	iTo.Externalize(out);
    1.98 +	}
    1.99 +
   1.100 +EXPORT_C PdrTranslates* PdrTranslates::New()
   1.101 +/** Creates a new instance of this class.
   1.102 +
   1.103 +@return Reference to a new object. */
   1.104 +	{
   1.105 +	return new PdrTranslates();
   1.106 +	}
   1.107 +
   1.108 +EXPORT_C void PdrTranslates::Delete()
   1.109 +/** Deletes the current object. */
   1.110 +	{
   1.111 +	delete this;
   1.112 +	}
   1.113 +
   1.114 +void PdrTranslates::Externalize(ostream& out)
   1.115 +	{
   1.116 +	iStreamId = out.tellp();
   1.117 +	iPdrTranslationList.Externalize(out);
   1.118 +	}
   1.119 +
   1.120 +EXPORT_C void PdrTranslates::AddTranslation(PdrTranslation* aTranslation)
   1.121 +/** Adds a printer translation to the list.
   1.122 +
   1.123 +@param aTranslation Reference to a translation. */
   1.124 +	{
   1.125 +	iPdrTranslationList.Add(aTranslation);
   1.126 +	}
   1.127 +
   1.128 +PdrTranslates::~PdrTranslates()
   1.129 +/** This function is internal, and is not intended for use. */
   1.130 +	{
   1.131 +	iPdrTranslationList.Destroy();
   1.132 +	}
   1.133 +
   1.134 +EXPORT_C Width* Width::New()
   1.135 +/** Creates a new instance of this object.
   1.136 +
   1.137 +@return Reference to a new object. */
   1.138 +	{
   1.139 +	return new Width();
   1.140 +	}
   1.141 +
   1.142 +EXPORT_C void Width::Delete()
   1.143 +/** Deletes the current object. */
   1.144 +	{
   1.145 +	delete this;
   1.146 +	}
   1.147 +
   1.148 +void Width::Externalize(ostream& out)
   1.149 +	{
   1.150 +	out.write ((char*) &iWidthInPixels, sizeof(iWidthInPixels));
   1.151 +	}
   1.152 +
   1.153 +WidthsCodeSection::WidthsCodeSection()
   1.154 + :	iWidthList()
   1.155 +/** This function is internal only, and is not intended for use. */
   1.156 +	{
   1.157 +	}
   1.158 +
   1.159 +EXPORT_C WidthsCodeSection* WidthsCodeSection::New()
   1.160 +/** Creates a new instance of this class.
   1.161 +
   1.162 +@return Reference to a new object. */
   1.163 +	{
   1.164 +	return new WidthsCodeSection();
   1.165 +	}
   1.166 +	
   1.167 +EXPORT_C void WidthsCodeSection::Delete()
   1.168 +/** Deletes the current object. */
   1.169 +	{
   1.170 +	delete this;
   1.171 +	}
   1.172 +
   1.173 +void WidthsCodeSection::Externalize(ostream& out)
   1.174 +	{
   1.175 +	out.write((char*) &iStart, sizeof(iStart));
   1.176 +	out.write((char*) &iEnd, sizeof(iEnd));
   1.177 +	iWidthList.Externalize(out);
   1.178 +	}
   1.179 +	
   1.180 +EXPORT_C void WidthsCodeSection::AddWidth(Width* aWidth)
   1.181 +/** Adds a new font width to the list.
   1.182 +
   1.183 +@param aWidth Font width. */
   1.184 +	{
   1.185 +	iWidthList.Add(aWidth);
   1.186 +	}
   1.187 +
   1.188 +EXPORT_C Width* WidthsCodeSection::WidthList(int i)
   1.189 +/** Returns a font width from the list at the position specified.
   1.190 +
   1.191 +@param i Position of font width in list.
   1.192 +@return Reference to a font width. */
   1.193 +	{
   1.194 +	return iWidthList[i];
   1.195 +	}
   1.196 +
   1.197 +EXPORT_C int WidthsCodeSection::NumWidths()
   1.198 +/** Returns the number of font widths in the list.
   1.199 +
   1.200 +@return Number of widths. */
   1.201 +	{
   1.202 +	return iWidthList.Size();
   1.203 +	}
   1.204 +
   1.205 +WidthsCodeSection::~WidthsCodeSection()
   1.206 +/** Default destructor. */
   1.207 +	{
   1.208 +	iWidthList.Destroy();
   1.209 +	}
   1.210 +
   1.211 +EXPORT_C FontInfo* FontInfo::New()
   1.212 +/** Creates a new instance of this class.
   1.213 +
   1.214 +@return Reference to a new instance of this class. */
   1.215 +	{
   1.216 +	return new FontInfo();
   1.217 +	}
   1.218 +
   1.219 +EXPORT_C void FontInfo::Delete()
   1.220 +/** Deletes the current FontInfo object. */
   1.221 +	{
   1.222 +	delete this;
   1.223 +	}
   1.224 +
   1.225 +void FontInfo::Externalize(ostream& out)
   1.226 +	{
   1.227 +	iStreamId = out.tellp();
   1.228 +	out.write((char*) &iAscentInPixels, sizeof(iAscentInPixels));
   1.229 +	out.write((char*) &iMaxCharWidthInPixels, sizeof(iMaxCharWidthInPixels));
   1.230 +	out.write((char*) &iMaxNormalCharWidthInPixels, sizeof(iMaxNormalCharWidthInPixels));
   1.231 +	iCodeSectionList.Externalize(out);
   1.232 +	}
   1.233 +
   1.234 +EXPORT_C void FontInfo::AddCodeSection(WidthsCodeSection* aCodeSection)
   1.235 +/** Adds a section of information about the font to an internally-stored array.
   1.236 +
   1.237 +@param aCodeSection Font information. */
   1.238 +	{
   1.239 +	iCodeSectionList.Add(aCodeSection);
   1.240 +	}	
   1.241 +
   1.242 +EXPORT_C WidthsCodeSection* FontInfo::CodeSectionList(int i)
   1.243 +/** Returns a section of font information from a specified position in the internally-stored 
   1.244 +array.
   1.245 +
   1.246 +@param i Postion of information in the array.
   1.247 +@return Reference to section of font information. */
   1.248 +	{
   1.249 +	return iCodeSectionList[i];
   1.250 +	}
   1.251 +
   1.252 +EXPORT_C int FontInfo::NumCodeSections()
   1.253 +/** Returns the number of sections of font information in the internally-stored 
   1.254 +array.
   1.255 +
   1.256 +@return Current number of font information sections. */
   1.257 +	{
   1.258 +	return iCodeSectionList.Size();
   1.259 +	}
   1.260 +
   1.261 +FontInfo::~FontInfo()
   1.262 +/** This function is internal, and not intended for use. */
   1.263 +	{
   1.264 +	iCodeSectionList.Destroy();
   1.265 +	}
   1.266 +
   1.267 +EXPORT_C PdrStyle* PdrStyle::New()
   1.268 +/** Creates a new instance of this class
   1.269 +
   1.270 +@return Reference to a new object. */
   1.271 +	{
   1.272 +	return new PdrStyle();
   1.273 +	}
   1.274 +
   1.275 +EXPORT_C void PdrStyle::Delete()
   1.276 +/** Deletes the current object. */
   1.277 +	{
   1.278 +	delete this;
   1.279 +	}
   1.280 +
   1.281 +void PdrStyle::Externalize(ostream& out)
   1.282 +	{
   1.283 +	out.write((char*) &iIsAvailable, sizeof(iIsAvailable));
   1.284 +	streamoff streamid = 0;
   1.285 +	if (iIsAvailable)
   1.286 +		streamid = iFontInfo->iStreamId;
   1.287 +	::ExternalizeStreamOff(out, streamid);
   1.288 +	}
   1.289 +
   1.290 +PdrStyle::PdrStyle()
   1.291 + :	iIsAvailable(efalse)
   1.292 +/** Default constructor. */
   1.293 +	{
   1.294 +	}
   1.295 +
   1.296 +EXPORT_C PdrFontHeight* PdrFontHeight::New()
   1.297 +/** Returns a new instance of this class.
   1.298 +
   1.299 +@return Reference to new object. */
   1.300 +	{
   1.301 +	return new PdrFontHeight();
   1.302 +	}
   1.303 +
   1.304 +EXPORT_C void PdrFontHeight::Delete()
   1.305 +/** Deletes the current object. */
   1.306 +	{
   1.307 +	delete this;
   1.308 +	}
   1.309 +
   1.310 +void PdrFontHeight::Externalize(ostream& out)
   1.311 +	{
   1.312 +	iCommandString.Externalize(out);
   1.313 +	out.write((char*) &iHeightInTwips, sizeof(iHeightInTwips));
   1.314 +	out.write((char*) &iWidthScale, sizeof(iWidthScale));
   1.315 +	for (int style = Normal;style <= BoldItalic; style++)
   1.316 +		iStyle[style].Externalize(out);
   1.317 +	}
   1.318 +
   1.319 +PdrFontHeight::PdrFontHeight():
   1.320 +	iWidthScale(1)
   1.321 +/** Default constructor. */
   1.322 +	{
   1.323 +	}
   1.324 +
   1.325 +PdrScalableFontHeight::PdrScalableFontHeight()
   1.326 +/** Default constructor. */
   1.327 +	{
   1.328 +	}
   1.329 +
   1.330 +void PdrScalableFontHeight::Externalize(ostream& out)
   1.331 +	{
   1.332 +	iCommandString.Externalize(out);
   1.333 +	out.write((char*) &iHeightMinInTwips, sizeof(iHeightMinInTwips));
   1.334 +	out.write((char*) &iHeightMaxInTwips, sizeof(iHeightMaxInTwips));
   1.335 +	out.write((char*) &iHeightDeltaInTwips, sizeof(iHeightDeltaInTwips));
   1.336 +	for (int style = Normal; style <= BoldItalic; style++)
   1.337 +		iStyle[style].Externalize(out);
   1.338 +	}
   1.339 +
   1.340 +EXPORT_C TypefaceFonts* TypefaceFonts::New()
   1.341 +/** Creates a new instance of this class.
   1.342 +
   1.343 +@return Reference to a new object. */
   1.344 +	{
   1.345 +	return new TypefaceFonts();
   1.346 +	}
   1.347 +
   1.348 +EXPORT_C void TypefaceFonts::Delete()
   1.349 +/** Deletes the current object. */
   1.350 +	{
   1.351 +	delete this;
   1.352 +	}
   1.353 +
   1.354 +void TypefaceFonts::Externalize(ostream& out)
   1.355 +	{
   1.356 +	iStreamId = out.tellp();
   1.357 +	iTypeface.Externalize(out);
   1.358 +	out.write((char*) &iIsScalable, sizeof(iIsScalable));
   1.359 +	if (iIsScalable)
   1.360 +		iScalableFontHeight.Externalize(out);
   1.361 +	else
   1.362 +		iFontHeightList.Externalize(out);
   1.363 +	::ExternalizeStreamOff(out, iTranslates->iStreamId);
   1.364 +	}
   1.365 +
   1.366 +EXPORT_C void TypefaceFonts::AddFontHeight(PdrFontHeight* aFontHeight)
   1.367 +	{
   1.368 +	iFontHeightList.Add(aFontHeight);
   1.369 +	}
   1.370 +
   1.371 +EXPORT_C int TypefaceFonts::NumFontHeights()
   1.372 +/** Returns the number of font height descriptions currently held in the list.
   1.373 +
   1.374 +@return Number of descriptions. */
   1.375 +	{
   1.376 +	return iFontHeightList.Size();
   1.377 +	}
   1.378 +
   1.379 +PdrFontHeight* TypefaceFonts::FontHeightList(int i)
   1.380 +/** Returns the font height description from the position specified in the list.
   1.381 +
   1.382 +@param i Position of description.
   1.383 +@return Font height description. */
   1.384 +	{
   1.385 +	return iFontHeightList[i];
   1.386 +	}
   1.387 +
   1.388 +TypefaceFonts::TypefaceFonts():
   1.389 +	iIsScalable(efalse)
   1.390 +/** This function is internal only, and is not intended for use. */
   1.391 +	{
   1.392 +	}
   1.393 +
   1.394 +TypefaceFonts::~TypefaceFonts()
   1.395 +/** This function is internal only, and is not intended for use. */
   1.396 +	{
   1.397 +	iFontHeightList.Destroy();
   1.398 +	}
   1.399 +
   1.400 +EXPORT_C TypefaceFontsEntry* TypefaceFontsEntry::New(Record* aTypefaceFonts)
   1.401 +	{
   1.402 +	return new TypefaceFontsEntry(aTypefaceFonts);
   1.403 +	}
   1.404 +
   1.405 +EXPORT_C void TypefaceFontsEntry::Delete()
   1.406 +/** Deletes the current object. */
   1.407 +	{
   1.408 +	delete this;
   1.409 +	}
   1.410 +	
   1.411 +void TypefaceFontsEntry::Externalize(ostream& out)
   1.412 +	{
   1.413 +	::ExternalizeStreamOff(out, iTypefaceFonts->iStreamId);
   1.414 +	out.write((char*) &iNotInPortrait, sizeof(iNotInPortrait));
   1.415 +	out.write((char*) &iNotInLandscape, sizeof(iNotInLandscape));
   1.416 +	}
   1.417 +
   1.418 +TypefaceFontsEntry::TypefaceFontsEntry(Record* aTypefaceFonts)
   1.419 + :	iTypefaceFonts(aTypefaceFonts), iNotInPortrait(efalse), iNotInLandscape(efalse)
   1.420 +	{
   1.421 +	}
   1.422 +
   1.423 +TypefaceFontsEntry::~TypefaceFontsEntry()
   1.424 +/** Default destructor. */
   1.425 +	{
   1.426 +	}
   1.427 +
   1.428 +void Margins::Externalize(ostream& out)
   1.429 +	{
   1.430 +	out.write((char*) &iLeft, sizeof(iLeft));
   1.431 +	out.write((char*) &iRight, sizeof(iRight));
   1.432 +	out.write((char*) &iTop, sizeof(iTop));
   1.433 +	out.write((char*) &iBottom, sizeof(iBottom));
   1.434 +	}
   1.435 +
   1.436 +/*
   1.437 +PdrExtraInfo::~PdrExtraInfo()
   1.438 +	{
   1.439 +	iInfo.Destroy();
   1.440 +	}
   1.441 +
   1.442 +void PdrExtraInfo::Externalize(ostream& out)
   1.443 +	{
   1.444 +	iInfo.Externalize(out);
   1.445 +	}
   1.446 +*/
   1.447 +
   1.448 +void PdrModelInfo::Externalize(ostream& out)
   1.449 +	{
   1.450 +	iStreamId=out.tellp();
   1.451 +	out.write((char*) &KPdrtranVersion, sizeof(KPdrtranVersion));
   1.452 +	out.write((char*) &iFlags, sizeof(iFlags));
   1.453 +	out.write((char*) &iKPixelWidthInTwips, sizeof(iKPixelWidthInTwips));
   1.454 +	out.write((char*) &iKPixelHeightInTwips, sizeof(iKPixelHeightInTwips));
   1.455 +	iPortraitOffsetInPixels.Externalize(out);
   1.456 +	iLandscapeOffsetInPixels.Externalize(out);
   1.457 +	iMinMarginsInPixels.Externalize(out);
   1.458 +	out.write((char*) &iDisplayMode, sizeof(iDisplayMode));
   1.459 +	iTypefaceFontsEntryList.Externalize(out);
   1.460 +	::ExternalizeStreamOff(out, iResources->iStreamId);
   1.461 +	streamoff streamid = 0;
   1.462 +	if (iSpareRecord)
   1.463 +		streamid = iSpareRecord->iStreamId;
   1.464 +	::ExternalizeStreamOff(out, streamid);
   1.465 +	}
   1.466 + 
   1.467 +EXPORT_C void PdrModelInfo::AddTypefaceFontsEntry(TypefaceFontsEntry* aTypefaceFontsEntry)
   1.468 +/** Adds an entry containing information about typeface fonts to an internally-stored 
   1.469 +array.
   1.470 +
   1.471 +@param aTypefaceFontsEntry Typeface font information. */
   1.472 +	{
   1.473 +	iTypefaceFontsEntryList.Add(aTypefaceFontsEntry);
   1.474 +	}
   1.475 +
   1.476 +int PdrModelInfo::NumTypefaceFontsEntries()
   1.477 +/** Returns the number of entries containing information about typeface fonts in 
   1.478 +the internally-stored array.
   1.479 +
   1.480 +@return Number of entries. */
   1.481 +	{
   1.482 +	return iTypefaceFontsEntryList.Size();
   1.483 +	}
   1.484 +
   1.485 +TypefaceFontsEntry* PdrModelInfo::TypefaceFontsEntryList(int i)
   1.486 +/** Returns the typeface font entry stored the internal array from the position 
   1.487 +specified.
   1.488 +
   1.489 +@param i Position in array.
   1.490 +@return Typeface font entry. */
   1.491 +	{
   1.492 +	return iTypefaceFontsEntryList[i];
   1.493 +	}
   1.494 +
   1.495 +PdrModelInfo::PdrModelInfo()
   1.496 + :	iStreamId(0),
   1.497 +	iFlags(0),
   1.498 +	iKPixelWidthInTwips(0),
   1.499 +	iKPixelHeightInTwips(0),
   1.500 +	iPortraitOffsetInPixels(),
   1.501 +	iLandscapeOffsetInPixels(),
   1.502 +	iMinMarginsInPixels(),
   1.503 +	iDisplayMode(0),
   1.504 +	iTypefaceFontsEntryList(),
   1.505 +	iResources(NULL),
   1.506 +	iSpareRecord(NULL)	// !! Not used yet
   1.507 +/** Default constructor. */
   1.508 +	{
   1.509 +	}
   1.510 +
   1.511 +PdrModelInfo::~PdrModelInfo()
   1.512 +/** Default destructor. */
   1.513 +	{
   1.514 +	iTypefaceFontsEntryList.Destroy();
   1.515 +	}
   1.516 +
   1.517 +PrinterModelEntry::PrinterModelEntry()
   1.518 + :	iName(), iRequiresPrinterPort(efalse), iUid(KNullUid)
   1.519 +/** Default constructor. */
   1.520 +	{
   1.521 +	}
   1.522 +
   1.523 +void PrinterModelEntry::Externalize(ostream& out)
   1.524 +	{
   1.525 +	iName.Externalize(out);
   1.526 +	out.write((char*) &iRequiresPrinterPort, sizeof(iRequiresPrinterPort));
   1.527 +	out.write((char*) &iUid, sizeof(iUid));
   1.528 +	}
   1.529 +
   1.530 +EXPORT_C PrinterModelHeader* PrinterModelHeader::New()
   1.531 +/** Creates a new instance of this class.
   1.532 +
   1.533 +@return Reference to a new object. */
   1.534 +	{
   1.535 +	return new PrinterModelHeader();
   1.536 +	}
   1.537 +
   1.538 +EXPORT_C void PrinterModelHeader::Delete()
   1.539 +/** Deletes the current object. */
   1.540 +	{
   1.541 +	delete this;
   1.542 +	}
   1.543 +
   1.544 +void PrinterModelHeader::Externalize(ostream& out)
   1.545 +	{
   1.546 +	iEntry.Externalize(out);
   1.547 +	::ExternalizeStreamOff(out, iInfo.iStreamId);
   1.548 +	}
   1.549 +
   1.550 +void PrinterModelHeader::ExternalizeData(ostream& out)
   1.551 +	{
   1.552 +	iInfo.Externalize(out);
   1.553 +	}
   1.554 +
   1.555 +boolean PrinterModelHeader::IsPdrModel()
   1.556 +/** Determines whether printer information is available for this printer model.
   1.557 +
   1.558 +@return ETrue: printer description is available. */
   1.559 +	{
   1.560 +	return iInfo.NumTypefaceFontsEntries() || iInfo.iResources;
   1.561 +	}
   1.562 +
   1.563 +EXPORT_C PdrStoreFile* PdrStoreFile::New()
   1.564 +/** Creates a new instance of this class.
   1.565 +
   1.566 +@return Reference to a new object. */
   1.567 +	{
   1.568 +	return new PdrStoreFile();
   1.569 +	}
   1.570 +
   1.571 +EXPORT_C void PdrStoreFile::Delete()
   1.572 +/** Deletes the current object. */
   1.573 +	{
   1.574 +	delete this;
   1.575 +	}
   1.576 +
   1.577 +EXPORT_C void PdrStoreFile::AddModel(PrinterModelHeader* aModel)
   1.578 +/** Adds a printer model.
   1.579 +
   1.580 +@param aModel Printer model. */
   1.581 +	{
   1.582 +	iModelList.Add(aModel);
   1.583 +	if (aModel->IsPdrModel())
   1.584 +		{
   1.585 +		for (int i = 0; i < aModel->iInfo.NumTypefaceFontsEntries(); i++)
   1.586 +			AddTypefaceFonts((TypefaceFonts*) aModel->iInfo.TypefaceFontsEntryList(i)->iTypefaceFonts);
   1.587 +		iResourcesList.Add(aModel->iInfo.iResources);
   1.588 +//		if (aModel->iInfo.iSpareRecord)
   1.589 +//			iExtraInfoList.Add(aModel->iInfo.iSpareRecord);
   1.590 +		}
   1.591 +	}
   1.592 +
   1.593 +void PdrStoreFile::Externalize(ostream& out)
   1.594 +	{
   1.595 +	ExternalizeHeader(out);
   1.596 +	ExternalizeComponents(out);
   1.597 +	}
   1.598 +
   1.599 +void PdrStoreFile::ExternalizeHeader(ostream& out)
   1.600 +	{
   1.601 +	out.write((char*) &KStoreWriteOnceLayoutUid, sizeof(KStoreWriteOnceLayoutUid));
   1.602 +	out.write((char*) &KPdrStoreFileUid, sizeof(KPdrStoreFileUid));
   1.603 +	out.write((char*) &KNullUid, sizeof(KNullUid));
   1.604 +	out.write((char*) &KPdrStoreFileChecksum, sizeof(KPdrStoreFileChecksum));
   1.605 +	::ExternalizeStreamOff(out, iStreamId);
   1.606 +	iStreamId = out.tellp();
   1.607 +	iPDLName.Externalize(out);
   1.608 +	out.write((char*) &iPDLUid, sizeof(iPDLUid));
   1.609 +	iModelList.Externalize(out);
   1.610 +	}
   1.611 +
   1.612 +void PdrStoreFile::AddTypefaceFonts(TypefaceFonts* aTypefaceFonts)
   1.613 +	{
   1.614 +	iTypefaceFontsList.Add(aTypefaceFonts);
   1.615 +	iTranslatesList.Add(aTypefaceFonts->iTranslates);
   1.616 +	if (aTypefaceFonts->iIsScalable)
   1.617 +		{
   1.618 +		for (int style = Normal; style <= BoldItalic; style++)
   1.619 +			{
   1.620 +			if (aTypefaceFonts->iScalableFontHeight.iStyle[style].iIsAvailable)
   1.621 +				iFontInfoList.Add(aTypefaceFonts->iScalableFontHeight.iStyle[style].iFontInfo);
   1.622 +			}
   1.623 +		}
   1.624 +	else
   1.625 +		{
   1.626 +		for (int j = 0; j < aTypefaceFonts->NumFontHeights(); j++)
   1.627 +			{
   1.628 +			PdrFontHeight* fontheight = aTypefaceFonts->FontHeightList(j);
   1.629 +			for (int style = Normal; style <= BoldItalic; style++)
   1.630 +				{
   1.631 +				if (fontheight->iStyle[style].iIsAvailable)
   1.632 +					iFontInfoList.Add(fontheight->iStyle[style].iFontInfo);
   1.633 +				}
   1.634 +			}
   1.635 +		}
   1.636 +	}
   1.637 +
   1.638 +void PdrStoreFile::ExternalizeComponents(ostream& out)
   1.639 +	{
   1.640 +	for (int i = 0; i < iModelList.Size(); i++)
   1.641 +		{
   1.642 +		PrinterModelHeader* model = (PrinterModelHeader*) iModelList[i];
   1.643 +		if (model->IsPdrModel())
   1.644 +			model->ExternalizeData(out);
   1.645 +		}
   1.646 +	iTypefaceFontsList.Externalize(out);
   1.647 +	iFontInfoList.Externalize(out);
   1.648 +	iResourcesList.Externalize(out);
   1.649 +	iTranslatesList.Externalize(out);
   1.650 +//	iExtraInfoList.Externalize(out);
   1.651 +	}
   1.652 +
   1.653 +PdrStoreFile::PdrStoreFile()
   1.654 + :	Record(),
   1.655 +	iPDLName(),
   1.656 +	iPDLUid(KNullUid),
   1.657 +	iModelList(),
   1.658 +	iTypefaceFontsList(),
   1.659 +	iFontInfoList(),
   1.660 +	iResourcesList(),
   1.661 +	iTranslatesList()
   1.662 +/** This function is internal only, and is not intended for use. */
   1.663 +	{
   1.664 +	}
   1.665 +
   1.666 +EXPORT_C boolean PdrModelStore::Store(const String& aFilename)
   1.667 +/** Externalizes printer information from the store to the specfied external file.
   1.668 +
   1.669 +@param aFilename Filename.
   1.670 +@return ETrue: store successful. */
   1.671 +	{
   1.672 +	boolean state = efalse;
   1.673 +	ofstream fout;
   1.674 +	String string = aFilename;
   1.675 +	fout.open(string.Text(), ios::binary);
   1.676 +	if (!fout.fail())
   1.677 +		{
   1.678 +		iPdrStoreFile->Externalize(fout);
   1.679 +		fout.close();
   1.680 +		fout.open(string.Text(), ios::binary | ios::trunc);
   1.681 +		iPdrStoreFile->Externalize(fout);
   1.682 +		fout.close();
   1.683 +		state = etrue;
   1.684 +		}
   1.685 +	return state;
   1.686 +	}
   1.687 +
   1.688 +EXPORT_C void PdrModelStore::AddPdrStoreFile(PdrStoreFile* aPdrStoreFile)
   1.689 +	{
   1.690 +	iPdrStoreFile = aPdrStoreFile;
   1.691 +	}
   1.692 +
   1.693 +EXPORT_C void PdrModelStore::AddModel(PrinterModelHeader *aModel)
   1.694 +/** Adds a printer model to the store.
   1.695 +
   1.696 +@param aModel Printer model. */
   1.697 +	{
   1.698 +	iModelList.Add(aModel);
   1.699 +	}
   1.700 +
   1.701 +EXPORT_C Record *PdrModelStore::FindModel(String& aLabel)
   1.702 +	{
   1.703 +	return iModelList.LabelToRecord(aLabel);
   1.704 +	}
   1.705 +
   1.706 +EXPORT_C void PdrModelStore::AddTypefaceFonts(TypefaceFonts *aTypefaceFonts)
   1.707 +/** Adds typeface information to the store.
   1.708 +
   1.709 +@param aTypefaceFonts Typeface fonts. */
   1.710 +	{
   1.711 +	iTypefaceFontsList.Add(aTypefaceFonts);
   1.712 +	}
   1.713 +
   1.714 +EXPORT_C Record *PdrModelStore::FindTypefaceFonts(String& aLabel)
   1.715 +	{
   1.716 +	return iTypefaceFontsList.LabelToRecord(aLabel);
   1.717 +	}
   1.718 +
   1.719 +EXPORT_C void PdrModelStore::AddFontInfo(FontInfo *aFontInfo)
   1.720 +/** Adds font information to the store.
   1.721 +
   1.722 +@param aFontInfo Font information. */
   1.723 +	{
   1.724 +	iFontInfoList.Add(aFontInfo);
   1.725 +	}
   1.726 +
   1.727 +EXPORT_C Record *PdrModelStore::FindFontInfo(String& aLabel)
   1.728 +	{
   1.729 +	return iFontInfoList.LabelToRecord(aLabel);
   1.730 +	}
   1.731 +
   1.732 +EXPORT_C void PdrModelStore::AddResources(PdrResources *aResources)
   1.733 +	{
   1.734 +	iResourcesList.Add(aResources);
   1.735 +	}
   1.736 +
   1.737 +EXPORT_C Record *PdrModelStore::FindResources(String& aLabel)
   1.738 +	{
   1.739 +	return iResourcesList.LabelToRecord(aLabel);
   1.740 +	}
   1.741 +
   1.742 +EXPORT_C void PdrModelStore::AddTranslates(PdrTranslates *aTranslates)
   1.743 +/** Adds printer translations to the store.
   1.744 +
   1.745 +@param aTranslates Translation list. */
   1.746 +	{
   1.747 +	iTranslatesList.Add(aTranslates);
   1.748 +	}
   1.749 +
   1.750 +EXPORT_C Record *PdrModelStore::FindTranslates(String& aLabel)
   1.751 +	{
   1.752 +	return iTranslatesList.LabelToRecord(aLabel); 
   1.753 +	}
   1.754 +
   1.755 +	/*
   1.756 +void PdrModelStore::AddExtraInfo(PdrExtraInfo *aInfo)
   1.757 +	{
   1.758 +	iExtraInfoList.Add(aInfo);
   1.759 +	}
   1.760 +
   1.761 +Record* PdrModelStore::FindExtraInfo(String& aLabel)
   1.762 +	{
   1.763 +	return iExtraInfoList.LabelToRecord(aLabel);
   1.764 +	}
   1.765 +*/
   1.766 +
   1.767 +PdrModelStore::PdrModelStore()
   1.768 + :	iPdrStoreFile(NULL),
   1.769 +	iModelList(),
   1.770 +	iTypefaceFontsList(),
   1.771 +	iFontInfoList(),
   1.772 +	iResourcesList()//,
   1.773 +//	iExtraInfoList()
   1.774 +/** Default constructor. */
   1.775 +	{
   1.776 +	}
   1.777 +
   1.778 +PdrModelStore::~PdrModelStore()
   1.779 +/** Default destructor. */
   1.780 +	{
   1.781 +	delete iPdrStoreFile;
   1.782 +	iModelList.Destroy();
   1.783 +	iTypefaceFontsList.Destroy();
   1.784 +	iFontInfoList.Destroy();
   1.785 +	iResourcesList.Destroy();
   1.786 +	iTranslatesList.Destroy();
   1.787 +//	iExtraInfoList.Destroy();
   1.788 +	}