Update contrib.
2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
22 EXPORT_C PdrResource* PdrResource::New()
23 /** Creates a new instance of this class.
25 @return Reference to a new object. */
27 return new PdrResource();
30 EXPORT_C void PdrResource::Delete()
31 /** Deletes the current object. */
36 void PdrResource::Externalize(ostream& out)
38 uint8 id = (uint8) iId;
39 out.write((char*) &id, sizeof(id));
40 iString.Externalize(out);
43 EXPORT_C PdrResources* PdrResources::New()
44 /** Creates a new instance of this class.
46 @return Reference to a new object. */
48 return new PdrResources();
51 EXPORT_C void PdrResources::Delete()
52 /** Deletes the current object. */
57 void PdrResources::Externalize(ostream& out)
59 iStreamId = out.tellp();
60 iPdrResourceList.Externalize(out);
63 EXPORT_C void PdrResources::AddResource(PdrResource* aResource)
64 /** Adds a printer resource to the object.
66 @param aResource Printer resource. */
68 iPdrResourceList.Add(aResource);
71 PdrResources::~PdrResources()
72 /** Default destructor. */
74 iPdrResourceList.Destroy();
77 EXPORT_C PdrTranslation* PdrTranslation::New()
78 /** Creates a new instance of this class.
80 @return Reference to a new object. */
82 return new PdrTranslation();
85 EXPORT_C void PdrTranslation::Delete()
86 /** Deletes the current object. */
91 void PdrTranslation::Externalize(ostream& out)
93 out.write((char*) &iFrom, sizeof(iFrom));
97 EXPORT_C PdrTranslates* PdrTranslates::New()
98 /** Creates a new instance of this class.
100 @return Reference to a new object. */
102 return new PdrTranslates();
105 EXPORT_C void PdrTranslates::Delete()
106 /** Deletes the current object. */
111 void PdrTranslates::Externalize(ostream& out)
113 iStreamId = out.tellp();
114 iPdrTranslationList.Externalize(out);
117 EXPORT_C void PdrTranslates::AddTranslation(PdrTranslation* aTranslation)
118 /** Adds a printer translation to the list.
120 @param aTranslation Reference to a translation. */
122 iPdrTranslationList.Add(aTranslation);
125 PdrTranslates::~PdrTranslates()
126 /** This function is internal, and is not intended for use. */
128 iPdrTranslationList.Destroy();
131 EXPORT_C Width* Width::New()
132 /** Creates a new instance of this object.
134 @return Reference to a new object. */
139 EXPORT_C void Width::Delete()
140 /** Deletes the current object. */
145 void Width::Externalize(ostream& out)
147 out.write ((char*) &iWidthInPixels, sizeof(iWidthInPixels));
150 WidthsCodeSection::WidthsCodeSection()
152 /** This function is internal only, and is not intended for use. */
156 EXPORT_C WidthsCodeSection* WidthsCodeSection::New()
157 /** Creates a new instance of this class.
159 @return Reference to a new object. */
161 return new WidthsCodeSection();
164 EXPORT_C void WidthsCodeSection::Delete()
165 /** Deletes the current object. */
170 void WidthsCodeSection::Externalize(ostream& out)
172 out.write((char*) &iStart, sizeof(iStart));
173 out.write((char*) &iEnd, sizeof(iEnd));
174 iWidthList.Externalize(out);
177 EXPORT_C void WidthsCodeSection::AddWidth(Width* aWidth)
178 /** Adds a new font width to the list.
180 @param aWidth Font width. */
182 iWidthList.Add(aWidth);
185 EXPORT_C Width* WidthsCodeSection::WidthList(int i)
186 /** Returns a font width from the list at the position specified.
188 @param i Position of font width in list.
189 @return Reference to a font width. */
191 return iWidthList[i];
194 EXPORT_C int WidthsCodeSection::NumWidths()
195 /** Returns the number of font widths in the list.
197 @return Number of widths. */
199 return iWidthList.Size();
202 WidthsCodeSection::~WidthsCodeSection()
203 /** Default destructor. */
205 iWidthList.Destroy();
208 EXPORT_C FontInfo* FontInfo::New()
209 /** Creates a new instance of this class.
211 @return Reference to a new instance of this class. */
213 return new FontInfo();
216 EXPORT_C void FontInfo::Delete()
217 /** Deletes the current FontInfo object. */
222 void FontInfo::Externalize(ostream& out)
224 iStreamId = out.tellp();
225 out.write((char*) &iAscentInPixels, sizeof(iAscentInPixels));
226 out.write((char*) &iMaxCharWidthInPixels, sizeof(iMaxCharWidthInPixels));
227 out.write((char*) &iMaxNormalCharWidthInPixels, sizeof(iMaxNormalCharWidthInPixels));
228 iCodeSectionList.Externalize(out);
231 EXPORT_C void FontInfo::AddCodeSection(WidthsCodeSection* aCodeSection)
232 /** Adds a section of information about the font to an internally-stored array.
234 @param aCodeSection Font information. */
236 iCodeSectionList.Add(aCodeSection);
239 EXPORT_C WidthsCodeSection* FontInfo::CodeSectionList(int i)
240 /** Returns a section of font information from a specified position in the internally-stored
243 @param i Postion of information in the array.
244 @return Reference to section of font information. */
246 return iCodeSectionList[i];
249 EXPORT_C int FontInfo::NumCodeSections()
250 /** Returns the number of sections of font information in the internally-stored
253 @return Current number of font information sections. */
255 return iCodeSectionList.Size();
258 FontInfo::~FontInfo()
259 /** This function is internal, and not intended for use. */
261 iCodeSectionList.Destroy();
264 EXPORT_C PdrStyle* PdrStyle::New()
265 /** Creates a new instance of this class
267 @return Reference to a new object. */
269 return new PdrStyle();
272 EXPORT_C void PdrStyle::Delete()
273 /** Deletes the current object. */
278 void PdrStyle::Externalize(ostream& out)
280 out.write((char*) &iIsAvailable, sizeof(iIsAvailable));
281 streamoff streamid = 0;
283 streamid = iFontInfo->iStreamId;
284 ::ExternalizeStreamOff(out, streamid);
288 : iIsAvailable(efalse)
289 /** Default constructor. */
293 EXPORT_C PdrFontHeight* PdrFontHeight::New()
294 /** Returns a new instance of this class.
296 @return Reference to new object. */
298 return new PdrFontHeight();
301 EXPORT_C void PdrFontHeight::Delete()
302 /** Deletes the current object. */
307 void PdrFontHeight::Externalize(ostream& out)
309 iCommandString.Externalize(out);
310 out.write((char*) &iHeightInTwips, sizeof(iHeightInTwips));
311 out.write((char*) &iWidthScale, sizeof(iWidthScale));
312 for (int style = Normal;style <= BoldItalic; style++)
313 iStyle[style].Externalize(out);
316 PdrFontHeight::PdrFontHeight():
318 /** Default constructor. */
322 PdrScalableFontHeight::PdrScalableFontHeight()
323 /** Default constructor. */
327 void PdrScalableFontHeight::Externalize(ostream& out)
329 iCommandString.Externalize(out);
330 out.write((char*) &iHeightMinInTwips, sizeof(iHeightMinInTwips));
331 out.write((char*) &iHeightMaxInTwips, sizeof(iHeightMaxInTwips));
332 out.write((char*) &iHeightDeltaInTwips, sizeof(iHeightDeltaInTwips));
333 for (int style = Normal; style <= BoldItalic; style++)
334 iStyle[style].Externalize(out);
337 EXPORT_C TypefaceFonts* TypefaceFonts::New()
338 /** Creates a new instance of this class.
340 @return Reference to a new object. */
342 return new TypefaceFonts();
345 EXPORT_C void TypefaceFonts::Delete()
346 /** Deletes the current object. */
351 void TypefaceFonts::Externalize(ostream& out)
353 iStreamId = out.tellp();
354 iTypeface.Externalize(out);
355 out.write((char*) &iIsScalable, sizeof(iIsScalable));
357 iScalableFontHeight.Externalize(out);
359 iFontHeightList.Externalize(out);
360 ::ExternalizeStreamOff(out, iTranslates->iStreamId);
363 EXPORT_C void TypefaceFonts::AddFontHeight(PdrFontHeight* aFontHeight)
365 iFontHeightList.Add(aFontHeight);
368 EXPORT_C int TypefaceFonts::NumFontHeights()
369 /** Returns the number of font height descriptions currently held in the list.
371 @return Number of descriptions. */
373 return iFontHeightList.Size();
376 PdrFontHeight* TypefaceFonts::FontHeightList(int i)
377 /** Returns the font height description from the position specified in the list.
379 @param i Position of description.
380 @return Font height description. */
382 return iFontHeightList[i];
385 TypefaceFonts::TypefaceFonts():
387 /** This function is internal only, and is not intended for use. */
391 TypefaceFonts::~TypefaceFonts()
392 /** This function is internal only, and is not intended for use. */
394 iFontHeightList.Destroy();
397 EXPORT_C TypefaceFontsEntry* TypefaceFontsEntry::New(Record* aTypefaceFonts)
399 return new TypefaceFontsEntry(aTypefaceFonts);
402 EXPORT_C void TypefaceFontsEntry::Delete()
403 /** Deletes the current object. */
408 void TypefaceFontsEntry::Externalize(ostream& out)
410 ::ExternalizeStreamOff(out, iTypefaceFonts->iStreamId);
411 out.write((char*) &iNotInPortrait, sizeof(iNotInPortrait));
412 out.write((char*) &iNotInLandscape, sizeof(iNotInLandscape));
415 TypefaceFontsEntry::TypefaceFontsEntry(Record* aTypefaceFonts)
416 : iTypefaceFonts(aTypefaceFonts), iNotInPortrait(efalse), iNotInLandscape(efalse)
420 TypefaceFontsEntry::~TypefaceFontsEntry()
421 /** Default destructor. */
425 void Margins::Externalize(ostream& out)
427 out.write((char*) &iLeft, sizeof(iLeft));
428 out.write((char*) &iRight, sizeof(iRight));
429 out.write((char*) &iTop, sizeof(iTop));
430 out.write((char*) &iBottom, sizeof(iBottom));
434 PdrExtraInfo::~PdrExtraInfo()
439 void PdrExtraInfo::Externalize(ostream& out)
441 iInfo.Externalize(out);
445 void PdrModelInfo::Externalize(ostream& out)
447 iStreamId=out.tellp();
448 out.write((char*) &KPdrtranVersion, sizeof(KPdrtranVersion));
449 out.write((char*) &iFlags, sizeof(iFlags));
450 out.write((char*) &iKPixelWidthInTwips, sizeof(iKPixelWidthInTwips));
451 out.write((char*) &iKPixelHeightInTwips, sizeof(iKPixelHeightInTwips));
452 iPortraitOffsetInPixels.Externalize(out);
453 iLandscapeOffsetInPixels.Externalize(out);
454 iMinMarginsInPixels.Externalize(out);
455 out.write((char*) &iDisplayMode, sizeof(iDisplayMode));
456 iTypefaceFontsEntryList.Externalize(out);
457 ::ExternalizeStreamOff(out, iResources->iStreamId);
458 streamoff streamid = 0;
460 streamid = iSpareRecord->iStreamId;
461 ::ExternalizeStreamOff(out, streamid);
464 EXPORT_C void PdrModelInfo::AddTypefaceFontsEntry(TypefaceFontsEntry* aTypefaceFontsEntry)
465 /** Adds an entry containing information about typeface fonts to an internally-stored
468 @param aTypefaceFontsEntry Typeface font information. */
470 iTypefaceFontsEntryList.Add(aTypefaceFontsEntry);
473 int PdrModelInfo::NumTypefaceFontsEntries()
474 /** Returns the number of entries containing information about typeface fonts in
475 the internally-stored array.
477 @return Number of entries. */
479 return iTypefaceFontsEntryList.Size();
482 TypefaceFontsEntry* PdrModelInfo::TypefaceFontsEntryList(int i)
483 /** Returns the typeface font entry stored the internal array from the position
486 @param i Position in array.
487 @return Typeface font entry. */
489 return iTypefaceFontsEntryList[i];
492 PdrModelInfo::PdrModelInfo()
495 iKPixelWidthInTwips(0),
496 iKPixelHeightInTwips(0),
497 iPortraitOffsetInPixels(),
498 iLandscapeOffsetInPixels(),
499 iMinMarginsInPixels(),
501 iTypefaceFontsEntryList(),
503 iSpareRecord(NULL) // !! Not used yet
504 /** Default constructor. */
508 PdrModelInfo::~PdrModelInfo()
509 /** Default destructor. */
511 iTypefaceFontsEntryList.Destroy();
514 PrinterModelEntry::PrinterModelEntry()
515 : iName(), iRequiresPrinterPort(efalse), iUid(KNullUid)
516 /** Default constructor. */
520 void PrinterModelEntry::Externalize(ostream& out)
522 iName.Externalize(out);
523 out.write((char*) &iRequiresPrinterPort, sizeof(iRequiresPrinterPort));
524 out.write((char*) &iUid, sizeof(iUid));
527 EXPORT_C PrinterModelHeader* PrinterModelHeader::New()
528 /** Creates a new instance of this class.
530 @return Reference to a new object. */
532 return new PrinterModelHeader();
535 EXPORT_C void PrinterModelHeader::Delete()
536 /** Deletes the current object. */
541 void PrinterModelHeader::Externalize(ostream& out)
543 iEntry.Externalize(out);
544 ::ExternalizeStreamOff(out, iInfo.iStreamId);
547 void PrinterModelHeader::ExternalizeData(ostream& out)
549 iInfo.Externalize(out);
552 boolean PrinterModelHeader::IsPdrModel()
553 /** Determines whether printer information is available for this printer model.
555 @return ETrue: printer description is available. */
557 return iInfo.NumTypefaceFontsEntries() || iInfo.iResources;
560 EXPORT_C PdrStoreFile* PdrStoreFile::New()
561 /** Creates a new instance of this class.
563 @return Reference to a new object. */
565 return new PdrStoreFile();
568 EXPORT_C void PdrStoreFile::Delete()
569 /** Deletes the current object. */
574 EXPORT_C void PdrStoreFile::AddModel(PrinterModelHeader* aModel)
575 /** Adds a printer model.
577 @param aModel Printer model. */
579 iModelList.Add(aModel);
580 if (aModel->IsPdrModel())
582 for (int i = 0; i < aModel->iInfo.NumTypefaceFontsEntries(); i++)
583 AddTypefaceFonts((TypefaceFonts*) aModel->iInfo.TypefaceFontsEntryList(i)->iTypefaceFonts);
584 iResourcesList.Add(aModel->iInfo.iResources);
585 // if (aModel->iInfo.iSpareRecord)
586 // iExtraInfoList.Add(aModel->iInfo.iSpareRecord);
590 void PdrStoreFile::Externalize(ostream& out)
592 ExternalizeHeader(out);
593 ExternalizeComponents(out);
596 void PdrStoreFile::ExternalizeHeader(ostream& out)
598 out.write((char*) &KStoreWriteOnceLayoutUid, sizeof(KStoreWriteOnceLayoutUid));
599 out.write((char*) &KPdrStoreFileUid, sizeof(KPdrStoreFileUid));
600 out.write((char*) &KNullUid, sizeof(KNullUid));
601 out.write((char*) &KPdrStoreFileChecksum, sizeof(KPdrStoreFileChecksum));
602 ::ExternalizeStreamOff(out, iStreamId);
603 iStreamId = out.tellp();
604 iPDLName.Externalize(out);
605 out.write((char*) &iPDLUid, sizeof(iPDLUid));
606 iModelList.Externalize(out);
609 void PdrStoreFile::AddTypefaceFonts(TypefaceFonts* aTypefaceFonts)
611 iTypefaceFontsList.Add(aTypefaceFonts);
612 iTranslatesList.Add(aTypefaceFonts->iTranslates);
613 if (aTypefaceFonts->iIsScalable)
615 for (int style = Normal; style <= BoldItalic; style++)
617 if (aTypefaceFonts->iScalableFontHeight.iStyle[style].iIsAvailable)
618 iFontInfoList.Add(aTypefaceFonts->iScalableFontHeight.iStyle[style].iFontInfo);
623 for (int j = 0; j < aTypefaceFonts->NumFontHeights(); j++)
625 PdrFontHeight* fontheight = aTypefaceFonts->FontHeightList(j);
626 for (int style = Normal; style <= BoldItalic; style++)
628 if (fontheight->iStyle[style].iIsAvailable)
629 iFontInfoList.Add(fontheight->iStyle[style].iFontInfo);
635 void PdrStoreFile::ExternalizeComponents(ostream& out)
637 for (int i = 0; i < iModelList.Size(); i++)
639 PrinterModelHeader* model = (PrinterModelHeader*) iModelList[i];
640 if (model->IsPdrModel())
641 model->ExternalizeData(out);
643 iTypefaceFontsList.Externalize(out);
644 iFontInfoList.Externalize(out);
645 iResourcesList.Externalize(out);
646 iTranslatesList.Externalize(out);
647 // iExtraInfoList.Externalize(out);
650 PdrStoreFile::PdrStoreFile()
655 iTypefaceFontsList(),
659 /** This function is internal only, and is not intended for use. */
663 EXPORT_C boolean PdrModelStore::Store(const String& aFilename)
664 /** Externalizes printer information from the store to the specfied external file.
666 @param aFilename Filename.
667 @return ETrue: store successful. */
669 boolean state = efalse;
671 String string = aFilename;
672 fout.open(string.Text(), ios::binary);
675 iPdrStoreFile->Externalize(fout);
677 fout.open(string.Text(), ios::binary | ios::trunc);
678 iPdrStoreFile->Externalize(fout);
685 EXPORT_C void PdrModelStore::AddPdrStoreFile(PdrStoreFile* aPdrStoreFile)
687 iPdrStoreFile = aPdrStoreFile;
690 EXPORT_C void PdrModelStore::AddModel(PrinterModelHeader *aModel)
691 /** Adds a printer model to the store.
693 @param aModel Printer model. */
695 iModelList.Add(aModel);
698 EXPORT_C Record *PdrModelStore::FindModel(String& aLabel)
700 return iModelList.LabelToRecord(aLabel);
703 EXPORT_C void PdrModelStore::AddTypefaceFonts(TypefaceFonts *aTypefaceFonts)
704 /** Adds typeface information to the store.
706 @param aTypefaceFonts Typeface fonts. */
708 iTypefaceFontsList.Add(aTypefaceFonts);
711 EXPORT_C Record *PdrModelStore::FindTypefaceFonts(String& aLabel)
713 return iTypefaceFontsList.LabelToRecord(aLabel);
716 EXPORT_C void PdrModelStore::AddFontInfo(FontInfo *aFontInfo)
717 /** Adds font information to the store.
719 @param aFontInfo Font information. */
721 iFontInfoList.Add(aFontInfo);
724 EXPORT_C Record *PdrModelStore::FindFontInfo(String& aLabel)
726 return iFontInfoList.LabelToRecord(aLabel);
729 EXPORT_C void PdrModelStore::AddResources(PdrResources *aResources)
731 iResourcesList.Add(aResources);
734 EXPORT_C Record *PdrModelStore::FindResources(String& aLabel)
736 return iResourcesList.LabelToRecord(aLabel);
739 EXPORT_C void PdrModelStore::AddTranslates(PdrTranslates *aTranslates)
740 /** Adds printer translations to the store.
742 @param aTranslates Translation list. */
744 iTranslatesList.Add(aTranslates);
747 EXPORT_C Record *PdrModelStore::FindTranslates(String& aLabel)
749 return iTranslatesList.LabelToRecord(aLabel);
753 void PdrModelStore::AddExtraInfo(PdrExtraInfo *aInfo)
755 iExtraInfoList.Add(aInfo);
758 Record* PdrModelStore::FindExtraInfo(String& aLabel)
760 return iExtraInfoList.LabelToRecord(aLabel);
764 PdrModelStore::PdrModelStore()
765 : iPdrStoreFile(NULL),
767 iTypefaceFontsList(),
771 /** Default constructor. */
775 PdrModelStore::~PdrModelStore()
776 /** Default destructor. */
778 delete iPdrStoreFile;
779 iModelList.Destroy();
780 iTypefaceFontsList.Destroy();
781 iFontInfoList.Destroy();
782 iResourcesList.Destroy();
783 iTranslatesList.Destroy();
784 // iExtraInfoList.Destroy();