os/graphics/graphicstools/bitmapfonttools/src/PDRRECRD.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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 PDRRECRD.CPP
sl@0
    16
*
sl@0
    17
*/
sl@0
    18
sl@0
    19
sl@0
    20
#include "PDRRECRD.H"
sl@0
    21
sl@0
    22
EXPORT_C PdrResource* PdrResource::New()
sl@0
    23
/** Creates a new instance of this class.
sl@0
    24
sl@0
    25
@return Reference to a new object. */
sl@0
    26
	{
sl@0
    27
	return new PdrResource();
sl@0
    28
	}
sl@0
    29
sl@0
    30
EXPORT_C void PdrResource::Delete()
sl@0
    31
/** Deletes the current object. */
sl@0
    32
	{
sl@0
    33
	delete this;
sl@0
    34
	}
sl@0
    35
sl@0
    36
void PdrResource::Externalize(ostream& out)
sl@0
    37
	{
sl@0
    38
	uint8 id = (uint8) iId;
sl@0
    39
	out.write((char*) &id, sizeof(id));
sl@0
    40
	iString.Externalize(out);
sl@0
    41
	}
sl@0
    42
sl@0
    43
EXPORT_C PdrResources* PdrResources::New()
sl@0
    44
/** Creates a new instance of this class.
sl@0
    45
sl@0
    46
@return Reference to a new object. */
sl@0
    47
	{
sl@0
    48
	return new PdrResources();
sl@0
    49
	}
sl@0
    50
sl@0
    51
EXPORT_C void PdrResources::Delete()
sl@0
    52
/** Deletes the current object. */
sl@0
    53
	{
sl@0
    54
	delete this;
sl@0
    55
	}
sl@0
    56
sl@0
    57
void PdrResources::Externalize(ostream& out)
sl@0
    58
	{
sl@0
    59
	iStreamId = out.tellp();
sl@0
    60
	iPdrResourceList.Externalize(out);
sl@0
    61
	}
sl@0
    62
sl@0
    63
EXPORT_C void PdrResources::AddResource(PdrResource* aResource)
sl@0
    64
/** Adds a printer resource to the object.
sl@0
    65
sl@0
    66
@param aResource Printer resource. */
sl@0
    67
	{
sl@0
    68
	iPdrResourceList.Add(aResource);
sl@0
    69
	}
sl@0
    70
sl@0
    71
PdrResources::~PdrResources()
sl@0
    72
/** Default destructor. */
sl@0
    73
	{
sl@0
    74
	iPdrResourceList.Destroy();
sl@0
    75
	}
sl@0
    76
sl@0
    77
EXPORT_C PdrTranslation* PdrTranslation::New()
sl@0
    78
/** Creates a new instance of this class.
sl@0
    79
sl@0
    80
@return Reference to a new object. */
sl@0
    81
	{
sl@0
    82
	return new PdrTranslation();
sl@0
    83
	}
sl@0
    84
sl@0
    85
EXPORT_C void PdrTranslation::Delete()
sl@0
    86
/** Deletes the current object. */
sl@0
    87
	{
sl@0
    88
	delete this;
sl@0
    89
	}
sl@0
    90
sl@0
    91
void PdrTranslation::Externalize(ostream& out)
sl@0
    92
	{
sl@0
    93
	out.write((char*) &iFrom, sizeof(iFrom));
sl@0
    94
	iTo.Externalize(out);
sl@0
    95
	}
sl@0
    96
sl@0
    97
EXPORT_C PdrTranslates* PdrTranslates::New()
sl@0
    98
/** Creates a new instance of this class.
sl@0
    99
sl@0
   100
@return Reference to a new object. */
sl@0
   101
	{
sl@0
   102
	return new PdrTranslates();
sl@0
   103
	}
sl@0
   104
sl@0
   105
EXPORT_C void PdrTranslates::Delete()
sl@0
   106
/** Deletes the current object. */
sl@0
   107
	{
sl@0
   108
	delete this;
sl@0
   109
	}
sl@0
   110
sl@0
   111
void PdrTranslates::Externalize(ostream& out)
sl@0
   112
	{
sl@0
   113
	iStreamId = out.tellp();
sl@0
   114
	iPdrTranslationList.Externalize(out);
sl@0
   115
	}
sl@0
   116
sl@0
   117
EXPORT_C void PdrTranslates::AddTranslation(PdrTranslation* aTranslation)
sl@0
   118
/** Adds a printer translation to the list.
sl@0
   119
sl@0
   120
@param aTranslation Reference to a translation. */
sl@0
   121
	{
sl@0
   122
	iPdrTranslationList.Add(aTranslation);
sl@0
   123
	}
sl@0
   124
sl@0
   125
PdrTranslates::~PdrTranslates()
sl@0
   126
/** This function is internal, and is not intended for use. */
sl@0
   127
	{
sl@0
   128
	iPdrTranslationList.Destroy();
sl@0
   129
	}
sl@0
   130
sl@0
   131
EXPORT_C Width* Width::New()
sl@0
   132
/** Creates a new instance of this object.
sl@0
   133
sl@0
   134
@return Reference to a new object. */
sl@0
   135
	{
sl@0
   136
	return new Width();
sl@0
   137
	}
sl@0
   138
sl@0
   139
EXPORT_C void Width::Delete()
sl@0
   140
/** Deletes the current object. */
sl@0
   141
	{
sl@0
   142
	delete this;
sl@0
   143
	}
sl@0
   144
sl@0
   145
void Width::Externalize(ostream& out)
sl@0
   146
	{
sl@0
   147
	out.write ((char*) &iWidthInPixels, sizeof(iWidthInPixels));
sl@0
   148
	}
sl@0
   149
sl@0
   150
WidthsCodeSection::WidthsCodeSection()
sl@0
   151
 :	iWidthList()
sl@0
   152
/** This function is internal only, and is not intended for use. */
sl@0
   153
	{
sl@0
   154
	}
sl@0
   155
sl@0
   156
EXPORT_C WidthsCodeSection* WidthsCodeSection::New()
sl@0
   157
/** Creates a new instance of this class.
sl@0
   158
sl@0
   159
@return Reference to a new object. */
sl@0
   160
	{
sl@0
   161
	return new WidthsCodeSection();
sl@0
   162
	}
sl@0
   163
	
sl@0
   164
EXPORT_C void WidthsCodeSection::Delete()
sl@0
   165
/** Deletes the current object. */
sl@0
   166
	{
sl@0
   167
	delete this;
sl@0
   168
	}
sl@0
   169
sl@0
   170
void WidthsCodeSection::Externalize(ostream& out)
sl@0
   171
	{
sl@0
   172
	out.write((char*) &iStart, sizeof(iStart));
sl@0
   173
	out.write((char*) &iEnd, sizeof(iEnd));
sl@0
   174
	iWidthList.Externalize(out);
sl@0
   175
	}
sl@0
   176
	
sl@0
   177
EXPORT_C void WidthsCodeSection::AddWidth(Width* aWidth)
sl@0
   178
/** Adds a new font width to the list.
sl@0
   179
sl@0
   180
@param aWidth Font width. */
sl@0
   181
	{
sl@0
   182
	iWidthList.Add(aWidth);
sl@0
   183
	}
sl@0
   184
sl@0
   185
EXPORT_C Width* WidthsCodeSection::WidthList(int i)
sl@0
   186
/** Returns a font width from the list at the position specified.
sl@0
   187
sl@0
   188
@param i Position of font width in list.
sl@0
   189
@return Reference to a font width. */
sl@0
   190
	{
sl@0
   191
	return iWidthList[i];
sl@0
   192
	}
sl@0
   193
sl@0
   194
EXPORT_C int WidthsCodeSection::NumWidths()
sl@0
   195
/** Returns the number of font widths in the list.
sl@0
   196
sl@0
   197
@return Number of widths. */
sl@0
   198
	{
sl@0
   199
	return iWidthList.Size();
sl@0
   200
	}
sl@0
   201
sl@0
   202
WidthsCodeSection::~WidthsCodeSection()
sl@0
   203
/** Default destructor. */
sl@0
   204
	{
sl@0
   205
	iWidthList.Destroy();
sl@0
   206
	}
sl@0
   207
sl@0
   208
EXPORT_C FontInfo* FontInfo::New()
sl@0
   209
/** Creates a new instance of this class.
sl@0
   210
sl@0
   211
@return Reference to a new instance of this class. */
sl@0
   212
	{
sl@0
   213
	return new FontInfo();
sl@0
   214
	}
sl@0
   215
sl@0
   216
EXPORT_C void FontInfo::Delete()
sl@0
   217
/** Deletes the current FontInfo object. */
sl@0
   218
	{
sl@0
   219
	delete this;
sl@0
   220
	}
sl@0
   221
sl@0
   222
void FontInfo::Externalize(ostream& out)
sl@0
   223
	{
sl@0
   224
	iStreamId = out.tellp();
sl@0
   225
	out.write((char*) &iAscentInPixels, sizeof(iAscentInPixels));
sl@0
   226
	out.write((char*) &iMaxCharWidthInPixels, sizeof(iMaxCharWidthInPixels));
sl@0
   227
	out.write((char*) &iMaxNormalCharWidthInPixels, sizeof(iMaxNormalCharWidthInPixels));
sl@0
   228
	iCodeSectionList.Externalize(out);
sl@0
   229
	}
sl@0
   230
sl@0
   231
EXPORT_C void FontInfo::AddCodeSection(WidthsCodeSection* aCodeSection)
sl@0
   232
/** Adds a section of information about the font to an internally-stored array.
sl@0
   233
sl@0
   234
@param aCodeSection Font information. */
sl@0
   235
	{
sl@0
   236
	iCodeSectionList.Add(aCodeSection);
sl@0
   237
	}	
sl@0
   238
sl@0
   239
EXPORT_C WidthsCodeSection* FontInfo::CodeSectionList(int i)
sl@0
   240
/** Returns a section of font information from a specified position in the internally-stored 
sl@0
   241
array.
sl@0
   242
sl@0
   243
@param i Postion of information in the array.
sl@0
   244
@return Reference to section of font information. */
sl@0
   245
	{
sl@0
   246
	return iCodeSectionList[i];
sl@0
   247
	}
sl@0
   248
sl@0
   249
EXPORT_C int FontInfo::NumCodeSections()
sl@0
   250
/** Returns the number of sections of font information in the internally-stored 
sl@0
   251
array.
sl@0
   252
sl@0
   253
@return Current number of font information sections. */
sl@0
   254
	{
sl@0
   255
	return iCodeSectionList.Size();
sl@0
   256
	}
sl@0
   257
sl@0
   258
FontInfo::~FontInfo()
sl@0
   259
/** This function is internal, and not intended for use. */
sl@0
   260
	{
sl@0
   261
	iCodeSectionList.Destroy();
sl@0
   262
	}
sl@0
   263
sl@0
   264
EXPORT_C PdrStyle* PdrStyle::New()
sl@0
   265
/** Creates a new instance of this class
sl@0
   266
sl@0
   267
@return Reference to a new object. */
sl@0
   268
	{
sl@0
   269
	return new PdrStyle();
sl@0
   270
	}
sl@0
   271
sl@0
   272
EXPORT_C void PdrStyle::Delete()
sl@0
   273
/** Deletes the current object. */
sl@0
   274
	{
sl@0
   275
	delete this;
sl@0
   276
	}
sl@0
   277
sl@0
   278
void PdrStyle::Externalize(ostream& out)
sl@0
   279
	{
sl@0
   280
	out.write((char*) &iIsAvailable, sizeof(iIsAvailable));
sl@0
   281
	streamoff streamid = 0;
sl@0
   282
	if (iIsAvailable)
sl@0
   283
		streamid = iFontInfo->iStreamId;
sl@0
   284
	::ExternalizeStreamOff(out, streamid);
sl@0
   285
	}
sl@0
   286
sl@0
   287
PdrStyle::PdrStyle()
sl@0
   288
 :	iIsAvailable(efalse)
sl@0
   289
/** Default constructor. */
sl@0
   290
	{
sl@0
   291
	}
sl@0
   292
sl@0
   293
EXPORT_C PdrFontHeight* PdrFontHeight::New()
sl@0
   294
/** Returns a new instance of this class.
sl@0
   295
sl@0
   296
@return Reference to new object. */
sl@0
   297
	{
sl@0
   298
	return new PdrFontHeight();
sl@0
   299
	}
sl@0
   300
sl@0
   301
EXPORT_C void PdrFontHeight::Delete()
sl@0
   302
/** Deletes the current object. */
sl@0
   303
	{
sl@0
   304
	delete this;
sl@0
   305
	}
sl@0
   306
sl@0
   307
void PdrFontHeight::Externalize(ostream& out)
sl@0
   308
	{
sl@0
   309
	iCommandString.Externalize(out);
sl@0
   310
	out.write((char*) &iHeightInTwips, sizeof(iHeightInTwips));
sl@0
   311
	out.write((char*) &iWidthScale, sizeof(iWidthScale));
sl@0
   312
	for (int style = Normal;style <= BoldItalic; style++)
sl@0
   313
		iStyle[style].Externalize(out);
sl@0
   314
	}
sl@0
   315
sl@0
   316
PdrFontHeight::PdrFontHeight():
sl@0
   317
	iWidthScale(1)
sl@0
   318
/** Default constructor. */
sl@0
   319
	{
sl@0
   320
	}
sl@0
   321
sl@0
   322
PdrScalableFontHeight::PdrScalableFontHeight()
sl@0
   323
/** Default constructor. */
sl@0
   324
	{
sl@0
   325
	}
sl@0
   326
sl@0
   327
void PdrScalableFontHeight::Externalize(ostream& out)
sl@0
   328
	{
sl@0
   329
	iCommandString.Externalize(out);
sl@0
   330
	out.write((char*) &iHeightMinInTwips, sizeof(iHeightMinInTwips));
sl@0
   331
	out.write((char*) &iHeightMaxInTwips, sizeof(iHeightMaxInTwips));
sl@0
   332
	out.write((char*) &iHeightDeltaInTwips, sizeof(iHeightDeltaInTwips));
sl@0
   333
	for (int style = Normal; style <= BoldItalic; style++)
sl@0
   334
		iStyle[style].Externalize(out);
sl@0
   335
	}
sl@0
   336
sl@0
   337
EXPORT_C TypefaceFonts* TypefaceFonts::New()
sl@0
   338
/** Creates a new instance of this class.
sl@0
   339
sl@0
   340
@return Reference to a new object. */
sl@0
   341
	{
sl@0
   342
	return new TypefaceFonts();
sl@0
   343
	}
sl@0
   344
sl@0
   345
EXPORT_C void TypefaceFonts::Delete()
sl@0
   346
/** Deletes the current object. */
sl@0
   347
	{
sl@0
   348
	delete this;
sl@0
   349
	}
sl@0
   350
sl@0
   351
void TypefaceFonts::Externalize(ostream& out)
sl@0
   352
	{
sl@0
   353
	iStreamId = out.tellp();
sl@0
   354
	iTypeface.Externalize(out);
sl@0
   355
	out.write((char*) &iIsScalable, sizeof(iIsScalable));
sl@0
   356
	if (iIsScalable)
sl@0
   357
		iScalableFontHeight.Externalize(out);
sl@0
   358
	else
sl@0
   359
		iFontHeightList.Externalize(out);
sl@0
   360
	::ExternalizeStreamOff(out, iTranslates->iStreamId);
sl@0
   361
	}
sl@0
   362
sl@0
   363
EXPORT_C void TypefaceFonts::AddFontHeight(PdrFontHeight* aFontHeight)
sl@0
   364
	{
sl@0
   365
	iFontHeightList.Add(aFontHeight);
sl@0
   366
	}
sl@0
   367
sl@0
   368
EXPORT_C int TypefaceFonts::NumFontHeights()
sl@0
   369
/** Returns the number of font height descriptions currently held in the list.
sl@0
   370
sl@0
   371
@return Number of descriptions. */
sl@0
   372
	{
sl@0
   373
	return iFontHeightList.Size();
sl@0
   374
	}
sl@0
   375
sl@0
   376
PdrFontHeight* TypefaceFonts::FontHeightList(int i)
sl@0
   377
/** Returns the font height description from the position specified in the list.
sl@0
   378
sl@0
   379
@param i Position of description.
sl@0
   380
@return Font height description. */
sl@0
   381
	{
sl@0
   382
	return iFontHeightList[i];
sl@0
   383
	}
sl@0
   384
sl@0
   385
TypefaceFonts::TypefaceFonts():
sl@0
   386
	iIsScalable(efalse)
sl@0
   387
/** This function is internal only, and is not intended for use. */
sl@0
   388
	{
sl@0
   389
	}
sl@0
   390
sl@0
   391
TypefaceFonts::~TypefaceFonts()
sl@0
   392
/** This function is internal only, and is not intended for use. */
sl@0
   393
	{
sl@0
   394
	iFontHeightList.Destroy();
sl@0
   395
	}
sl@0
   396
sl@0
   397
EXPORT_C TypefaceFontsEntry* TypefaceFontsEntry::New(Record* aTypefaceFonts)
sl@0
   398
	{
sl@0
   399
	return new TypefaceFontsEntry(aTypefaceFonts);
sl@0
   400
	}
sl@0
   401
sl@0
   402
EXPORT_C void TypefaceFontsEntry::Delete()
sl@0
   403
/** Deletes the current object. */
sl@0
   404
	{
sl@0
   405
	delete this;
sl@0
   406
	}
sl@0
   407
	
sl@0
   408
void TypefaceFontsEntry::Externalize(ostream& out)
sl@0
   409
	{
sl@0
   410
	::ExternalizeStreamOff(out, iTypefaceFonts->iStreamId);
sl@0
   411
	out.write((char*) &iNotInPortrait, sizeof(iNotInPortrait));
sl@0
   412
	out.write((char*) &iNotInLandscape, sizeof(iNotInLandscape));
sl@0
   413
	}
sl@0
   414
sl@0
   415
TypefaceFontsEntry::TypefaceFontsEntry(Record* aTypefaceFonts)
sl@0
   416
 :	iTypefaceFonts(aTypefaceFonts), iNotInPortrait(efalse), iNotInLandscape(efalse)
sl@0
   417
	{
sl@0
   418
	}
sl@0
   419
sl@0
   420
TypefaceFontsEntry::~TypefaceFontsEntry()
sl@0
   421
/** Default destructor. */
sl@0
   422
	{
sl@0
   423
	}
sl@0
   424
sl@0
   425
void Margins::Externalize(ostream& out)
sl@0
   426
	{
sl@0
   427
	out.write((char*) &iLeft, sizeof(iLeft));
sl@0
   428
	out.write((char*) &iRight, sizeof(iRight));
sl@0
   429
	out.write((char*) &iTop, sizeof(iTop));
sl@0
   430
	out.write((char*) &iBottom, sizeof(iBottom));
sl@0
   431
	}
sl@0
   432
sl@0
   433
/*
sl@0
   434
PdrExtraInfo::~PdrExtraInfo()
sl@0
   435
	{
sl@0
   436
	iInfo.Destroy();
sl@0
   437
	}
sl@0
   438
sl@0
   439
void PdrExtraInfo::Externalize(ostream& out)
sl@0
   440
	{
sl@0
   441
	iInfo.Externalize(out);
sl@0
   442
	}
sl@0
   443
*/
sl@0
   444
sl@0
   445
void PdrModelInfo::Externalize(ostream& out)
sl@0
   446
	{
sl@0
   447
	iStreamId=out.tellp();
sl@0
   448
	out.write((char*) &KPdrtranVersion, sizeof(KPdrtranVersion));
sl@0
   449
	out.write((char*) &iFlags, sizeof(iFlags));
sl@0
   450
	out.write((char*) &iKPixelWidthInTwips, sizeof(iKPixelWidthInTwips));
sl@0
   451
	out.write((char*) &iKPixelHeightInTwips, sizeof(iKPixelHeightInTwips));
sl@0
   452
	iPortraitOffsetInPixels.Externalize(out);
sl@0
   453
	iLandscapeOffsetInPixels.Externalize(out);
sl@0
   454
	iMinMarginsInPixels.Externalize(out);
sl@0
   455
	out.write((char*) &iDisplayMode, sizeof(iDisplayMode));
sl@0
   456
	iTypefaceFontsEntryList.Externalize(out);
sl@0
   457
	::ExternalizeStreamOff(out, iResources->iStreamId);
sl@0
   458
	streamoff streamid = 0;
sl@0
   459
	if (iSpareRecord)
sl@0
   460
		streamid = iSpareRecord->iStreamId;
sl@0
   461
	::ExternalizeStreamOff(out, streamid);
sl@0
   462
	}
sl@0
   463
 
sl@0
   464
EXPORT_C void PdrModelInfo::AddTypefaceFontsEntry(TypefaceFontsEntry* aTypefaceFontsEntry)
sl@0
   465
/** Adds an entry containing information about typeface fonts to an internally-stored 
sl@0
   466
array.
sl@0
   467
sl@0
   468
@param aTypefaceFontsEntry Typeface font information. */
sl@0
   469
	{
sl@0
   470
	iTypefaceFontsEntryList.Add(aTypefaceFontsEntry);
sl@0
   471
	}
sl@0
   472
sl@0
   473
int PdrModelInfo::NumTypefaceFontsEntries()
sl@0
   474
/** Returns the number of entries containing information about typeface fonts in 
sl@0
   475
the internally-stored array.
sl@0
   476
sl@0
   477
@return Number of entries. */
sl@0
   478
	{
sl@0
   479
	return iTypefaceFontsEntryList.Size();
sl@0
   480
	}
sl@0
   481
sl@0
   482
TypefaceFontsEntry* PdrModelInfo::TypefaceFontsEntryList(int i)
sl@0
   483
/** Returns the typeface font entry stored the internal array from the position 
sl@0
   484
specified.
sl@0
   485
sl@0
   486
@param i Position in array.
sl@0
   487
@return Typeface font entry. */
sl@0
   488
	{
sl@0
   489
	return iTypefaceFontsEntryList[i];
sl@0
   490
	}
sl@0
   491
sl@0
   492
PdrModelInfo::PdrModelInfo()
sl@0
   493
 :	iStreamId(0),
sl@0
   494
	iFlags(0),
sl@0
   495
	iKPixelWidthInTwips(0),
sl@0
   496
	iKPixelHeightInTwips(0),
sl@0
   497
	iPortraitOffsetInPixels(),
sl@0
   498
	iLandscapeOffsetInPixels(),
sl@0
   499
	iMinMarginsInPixels(),
sl@0
   500
	iDisplayMode(0),
sl@0
   501
	iTypefaceFontsEntryList(),
sl@0
   502
	iResources(NULL),
sl@0
   503
	iSpareRecord(NULL)	// !! Not used yet
sl@0
   504
/** Default constructor. */
sl@0
   505
	{
sl@0
   506
	}
sl@0
   507
sl@0
   508
PdrModelInfo::~PdrModelInfo()
sl@0
   509
/** Default destructor. */
sl@0
   510
	{
sl@0
   511
	iTypefaceFontsEntryList.Destroy();
sl@0
   512
	}
sl@0
   513
sl@0
   514
PrinterModelEntry::PrinterModelEntry()
sl@0
   515
 :	iName(), iRequiresPrinterPort(efalse), iUid(KNullUid)
sl@0
   516
/** Default constructor. */
sl@0
   517
	{
sl@0
   518
	}
sl@0
   519
sl@0
   520
void PrinterModelEntry::Externalize(ostream& out)
sl@0
   521
	{
sl@0
   522
	iName.Externalize(out);
sl@0
   523
	out.write((char*) &iRequiresPrinterPort, sizeof(iRequiresPrinterPort));
sl@0
   524
	out.write((char*) &iUid, sizeof(iUid));
sl@0
   525
	}
sl@0
   526
sl@0
   527
EXPORT_C PrinterModelHeader* PrinterModelHeader::New()
sl@0
   528
/** Creates a new instance of this class.
sl@0
   529
sl@0
   530
@return Reference to a new object. */
sl@0
   531
	{
sl@0
   532
	return new PrinterModelHeader();
sl@0
   533
	}
sl@0
   534
sl@0
   535
EXPORT_C void PrinterModelHeader::Delete()
sl@0
   536
/** Deletes the current object. */
sl@0
   537
	{
sl@0
   538
	delete this;
sl@0
   539
	}
sl@0
   540
sl@0
   541
void PrinterModelHeader::Externalize(ostream& out)
sl@0
   542
	{
sl@0
   543
	iEntry.Externalize(out);
sl@0
   544
	::ExternalizeStreamOff(out, iInfo.iStreamId);
sl@0
   545
	}
sl@0
   546
sl@0
   547
void PrinterModelHeader::ExternalizeData(ostream& out)
sl@0
   548
	{
sl@0
   549
	iInfo.Externalize(out);
sl@0
   550
	}
sl@0
   551
sl@0
   552
boolean PrinterModelHeader::IsPdrModel()
sl@0
   553
/** Determines whether printer information is available for this printer model.
sl@0
   554
sl@0
   555
@return ETrue: printer description is available. */
sl@0
   556
	{
sl@0
   557
	return iInfo.NumTypefaceFontsEntries() || iInfo.iResources;
sl@0
   558
	}
sl@0
   559
sl@0
   560
EXPORT_C PdrStoreFile* PdrStoreFile::New()
sl@0
   561
/** Creates a new instance of this class.
sl@0
   562
sl@0
   563
@return Reference to a new object. */
sl@0
   564
	{
sl@0
   565
	return new PdrStoreFile();
sl@0
   566
	}
sl@0
   567
sl@0
   568
EXPORT_C void PdrStoreFile::Delete()
sl@0
   569
/** Deletes the current object. */
sl@0
   570
	{
sl@0
   571
	delete this;
sl@0
   572
	}
sl@0
   573
sl@0
   574
EXPORT_C void PdrStoreFile::AddModel(PrinterModelHeader* aModel)
sl@0
   575
/** Adds a printer model.
sl@0
   576
sl@0
   577
@param aModel Printer model. */
sl@0
   578
	{
sl@0
   579
	iModelList.Add(aModel);
sl@0
   580
	if (aModel->IsPdrModel())
sl@0
   581
		{
sl@0
   582
		for (int i = 0; i < aModel->iInfo.NumTypefaceFontsEntries(); i++)
sl@0
   583
			AddTypefaceFonts((TypefaceFonts*) aModel->iInfo.TypefaceFontsEntryList(i)->iTypefaceFonts);
sl@0
   584
		iResourcesList.Add(aModel->iInfo.iResources);
sl@0
   585
//		if (aModel->iInfo.iSpareRecord)
sl@0
   586
//			iExtraInfoList.Add(aModel->iInfo.iSpareRecord);
sl@0
   587
		}
sl@0
   588
	}
sl@0
   589
sl@0
   590
void PdrStoreFile::Externalize(ostream& out)
sl@0
   591
	{
sl@0
   592
	ExternalizeHeader(out);
sl@0
   593
	ExternalizeComponents(out);
sl@0
   594
	}
sl@0
   595
sl@0
   596
void PdrStoreFile::ExternalizeHeader(ostream& out)
sl@0
   597
	{
sl@0
   598
	out.write((char*) &KStoreWriteOnceLayoutUid, sizeof(KStoreWriteOnceLayoutUid));
sl@0
   599
	out.write((char*) &KPdrStoreFileUid, sizeof(KPdrStoreFileUid));
sl@0
   600
	out.write((char*) &KNullUid, sizeof(KNullUid));
sl@0
   601
	out.write((char*) &KPdrStoreFileChecksum, sizeof(KPdrStoreFileChecksum));
sl@0
   602
	::ExternalizeStreamOff(out, iStreamId);
sl@0
   603
	iStreamId = out.tellp();
sl@0
   604
	iPDLName.Externalize(out);
sl@0
   605
	out.write((char*) &iPDLUid, sizeof(iPDLUid));
sl@0
   606
	iModelList.Externalize(out);
sl@0
   607
	}
sl@0
   608
sl@0
   609
void PdrStoreFile::AddTypefaceFonts(TypefaceFonts* aTypefaceFonts)
sl@0
   610
	{
sl@0
   611
	iTypefaceFontsList.Add(aTypefaceFonts);
sl@0
   612
	iTranslatesList.Add(aTypefaceFonts->iTranslates);
sl@0
   613
	if (aTypefaceFonts->iIsScalable)
sl@0
   614
		{
sl@0
   615
		for (int style = Normal; style <= BoldItalic; style++)
sl@0
   616
			{
sl@0
   617
			if (aTypefaceFonts->iScalableFontHeight.iStyle[style].iIsAvailable)
sl@0
   618
				iFontInfoList.Add(aTypefaceFonts->iScalableFontHeight.iStyle[style].iFontInfo);
sl@0
   619
			}
sl@0
   620
		}
sl@0
   621
	else
sl@0
   622
		{
sl@0
   623
		for (int j = 0; j < aTypefaceFonts->NumFontHeights(); j++)
sl@0
   624
			{
sl@0
   625
			PdrFontHeight* fontheight = aTypefaceFonts->FontHeightList(j);
sl@0
   626
			for (int style = Normal; style <= BoldItalic; style++)
sl@0
   627
				{
sl@0
   628
				if (fontheight->iStyle[style].iIsAvailable)
sl@0
   629
					iFontInfoList.Add(fontheight->iStyle[style].iFontInfo);
sl@0
   630
				}
sl@0
   631
			}
sl@0
   632
		}
sl@0
   633
	}
sl@0
   634
sl@0
   635
void PdrStoreFile::ExternalizeComponents(ostream& out)
sl@0
   636
	{
sl@0
   637
	for (int i = 0; i < iModelList.Size(); i++)
sl@0
   638
		{
sl@0
   639
		PrinterModelHeader* model = (PrinterModelHeader*) iModelList[i];
sl@0
   640
		if (model->IsPdrModel())
sl@0
   641
			model->ExternalizeData(out);
sl@0
   642
		}
sl@0
   643
	iTypefaceFontsList.Externalize(out);
sl@0
   644
	iFontInfoList.Externalize(out);
sl@0
   645
	iResourcesList.Externalize(out);
sl@0
   646
	iTranslatesList.Externalize(out);
sl@0
   647
//	iExtraInfoList.Externalize(out);
sl@0
   648
	}
sl@0
   649
sl@0
   650
PdrStoreFile::PdrStoreFile()
sl@0
   651
 :	Record(),
sl@0
   652
	iPDLName(),
sl@0
   653
	iPDLUid(KNullUid),
sl@0
   654
	iModelList(),
sl@0
   655
	iTypefaceFontsList(),
sl@0
   656
	iFontInfoList(),
sl@0
   657
	iResourcesList(),
sl@0
   658
	iTranslatesList()
sl@0
   659
/** This function is internal only, and is not intended for use. */
sl@0
   660
	{
sl@0
   661
	}
sl@0
   662
sl@0
   663
EXPORT_C boolean PdrModelStore::Store(const String& aFilename)
sl@0
   664
/** Externalizes printer information from the store to the specfied external file.
sl@0
   665
sl@0
   666
@param aFilename Filename.
sl@0
   667
@return ETrue: store successful. */
sl@0
   668
	{
sl@0
   669
	boolean state = efalse;
sl@0
   670
	ofstream fout;
sl@0
   671
	String string = aFilename;
sl@0
   672
	fout.open(string.Text(), ios::binary);
sl@0
   673
	if (!fout.fail())
sl@0
   674
		{
sl@0
   675
		iPdrStoreFile->Externalize(fout);
sl@0
   676
		fout.close();
sl@0
   677
		fout.open(string.Text(), ios::binary | ios::trunc);
sl@0
   678
		iPdrStoreFile->Externalize(fout);
sl@0
   679
		fout.close();
sl@0
   680
		state = etrue;
sl@0
   681
		}
sl@0
   682
	return state;
sl@0
   683
	}
sl@0
   684
sl@0
   685
EXPORT_C void PdrModelStore::AddPdrStoreFile(PdrStoreFile* aPdrStoreFile)
sl@0
   686
	{
sl@0
   687
	iPdrStoreFile = aPdrStoreFile;
sl@0
   688
	}
sl@0
   689
sl@0
   690
EXPORT_C void PdrModelStore::AddModel(PrinterModelHeader *aModel)
sl@0
   691
/** Adds a printer model to the store.
sl@0
   692
sl@0
   693
@param aModel Printer model. */
sl@0
   694
	{
sl@0
   695
	iModelList.Add(aModel);
sl@0
   696
	}
sl@0
   697
sl@0
   698
EXPORT_C Record *PdrModelStore::FindModel(String& aLabel)
sl@0
   699
	{
sl@0
   700
	return iModelList.LabelToRecord(aLabel);
sl@0
   701
	}
sl@0
   702
sl@0
   703
EXPORT_C void PdrModelStore::AddTypefaceFonts(TypefaceFonts *aTypefaceFonts)
sl@0
   704
/** Adds typeface information to the store.
sl@0
   705
sl@0
   706
@param aTypefaceFonts Typeface fonts. */
sl@0
   707
	{
sl@0
   708
	iTypefaceFontsList.Add(aTypefaceFonts);
sl@0
   709
	}
sl@0
   710
sl@0
   711
EXPORT_C Record *PdrModelStore::FindTypefaceFonts(String& aLabel)
sl@0
   712
	{
sl@0
   713
	return iTypefaceFontsList.LabelToRecord(aLabel);
sl@0
   714
	}
sl@0
   715
sl@0
   716
EXPORT_C void PdrModelStore::AddFontInfo(FontInfo *aFontInfo)
sl@0
   717
/** Adds font information to the store.
sl@0
   718
sl@0
   719
@param aFontInfo Font information. */
sl@0
   720
	{
sl@0
   721
	iFontInfoList.Add(aFontInfo);
sl@0
   722
	}
sl@0
   723
sl@0
   724
EXPORT_C Record *PdrModelStore::FindFontInfo(String& aLabel)
sl@0
   725
	{
sl@0
   726
	return iFontInfoList.LabelToRecord(aLabel);
sl@0
   727
	}
sl@0
   728
sl@0
   729
EXPORT_C void PdrModelStore::AddResources(PdrResources *aResources)
sl@0
   730
	{
sl@0
   731
	iResourcesList.Add(aResources);
sl@0
   732
	}
sl@0
   733
sl@0
   734
EXPORT_C Record *PdrModelStore::FindResources(String& aLabel)
sl@0
   735
	{
sl@0
   736
	return iResourcesList.LabelToRecord(aLabel);
sl@0
   737
	}
sl@0
   738
sl@0
   739
EXPORT_C void PdrModelStore::AddTranslates(PdrTranslates *aTranslates)
sl@0
   740
/** Adds printer translations to the store.
sl@0
   741
sl@0
   742
@param aTranslates Translation list. */
sl@0
   743
	{
sl@0
   744
	iTranslatesList.Add(aTranslates);
sl@0
   745
	}
sl@0
   746
sl@0
   747
EXPORT_C Record *PdrModelStore::FindTranslates(String& aLabel)
sl@0
   748
	{
sl@0
   749
	return iTranslatesList.LabelToRecord(aLabel); 
sl@0
   750
	}
sl@0
   751
sl@0
   752
	/*
sl@0
   753
void PdrModelStore::AddExtraInfo(PdrExtraInfo *aInfo)
sl@0
   754
	{
sl@0
   755
	iExtraInfoList.Add(aInfo);
sl@0
   756
	}
sl@0
   757
sl@0
   758
Record* PdrModelStore::FindExtraInfo(String& aLabel)
sl@0
   759
	{
sl@0
   760
	return iExtraInfoList.LabelToRecord(aLabel);
sl@0
   761
	}
sl@0
   762
*/
sl@0
   763
sl@0
   764
PdrModelStore::PdrModelStore()
sl@0
   765
 :	iPdrStoreFile(NULL),
sl@0
   766
	iModelList(),
sl@0
   767
	iTypefaceFontsList(),
sl@0
   768
	iFontInfoList(),
sl@0
   769
	iResourcesList()//,
sl@0
   770
//	iExtraInfoList()
sl@0
   771
/** Default constructor. */
sl@0
   772
	{
sl@0
   773
	}
sl@0
   774
sl@0
   775
PdrModelStore::~PdrModelStore()
sl@0
   776
/** Default destructor. */
sl@0
   777
	{
sl@0
   778
	delete iPdrStoreFile;
sl@0
   779
	iModelList.Destroy();
sl@0
   780
	iTypefaceFontsList.Destroy();
sl@0
   781
	iFontInfoList.Destroy();
sl@0
   782
	iResourcesList.Destroy();
sl@0
   783
	iTranslatesList.Destroy();
sl@0
   784
//	iExtraInfoList.Destroy();
sl@0
   785
	}