sl@0: /* sl@0: * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * Header PDRREADR.H sl@0: * sl@0: */ sl@0: sl@0: sl@0: #ifndef __PDRREADR_H__ sl@0: #define __PDRREADR_H__ sl@0: sl@0: #include "LEXICAL.H" sl@0: #include "PDRRECRD.H" sl@0: #include "READER.H" sl@0: /** sl@0: Resource identifiers sl@0: @internalComponent sl@0: */ sl@0: const String IdentResources("Resources"); sl@0: const String IdentTranslates("Translates"); sl@0: const String IdentFontInfo("FontInfo"); sl@0: const String IdentTypefaceFonts("TypefaceFonts"); sl@0: const String IdentModel("Model"); sl@0: const String IdentPdrStoreFile("PdrStoreFile"); sl@0: //const String IdentExtraInfo("ExtraInfo"); sl@0: /** sl@0: Resources identifiers sl@0: @internalComponent sl@0: */ sl@0: const String IdentEndResources("EndResources"); sl@0: sl@0: /** sl@0: Translates identifiers sl@0: @internalComponent sl@0: */ sl@0: const String IdentEndTranslates("EndTranslates"); sl@0: /** sl@0: Codesection identifiers sl@0: @internalComponent sl@0: */ sl@0: const String IdentEndCodeSection("EndCodeSection"); sl@0: sl@0: /** sl@0: Fontinfo identifiers sl@0: @internalComponent sl@0: */ sl@0: const String IdentEndFontInfo("EndFontInfo"); sl@0: const String IdentAscent("Ascent"); sl@0: const String IdentMaxNormalCharWidth("MaxNormalCharWidth"); sl@0: const String IdentCodeSection("CodeSection"); sl@0: sl@0: /** sl@0: Fontheight identifiers sl@0: @internalComponent sl@0: */ sl@0: const String IdentEndFontHeight("EndFontHeight"); sl@0: const String IdentHeight("Height"); sl@0: const String IdentWidthScale("WidthScale"); sl@0: const String IdentNormal("Normal"); sl@0: const String IdentBold("Bold"); sl@0: const String IdentItalic("Italic"); sl@0: const String IdentBoldItalic("BoldItalic"); sl@0: const String IdentCommand("Command"); sl@0: sl@0: /** sl@0: Scalable fontheight identifiers sl@0: @internalComponent sl@0: */ sl@0: const String IdentEndScalableFontHeight("EndScalableFontHeight"); sl@0: const String IdentHeightMin("HeightMin"); sl@0: const String IdentHeightMax("HeightMax"); sl@0: const String IdentHeightDelta("HeightDelta"); sl@0: // uses FontHeight IdentNormal etc sl@0: /** sl@0: Typefacefonts identifiers sl@0: @internalComponent sl@0: */ sl@0: const String IdentEndTypefaceFonts("EndTypefaceFonts"); sl@0: const String IdentTypefaceTranslates("Translates"); sl@0: const String IdentTypefaceName("Name"); sl@0: const String IdentProportional("Proportional"); sl@0: const String IdentSerif("Serif"); sl@0: const String IdentSymbol("Symbol"); sl@0: const String IdentFontHeight("FontHeight"); sl@0: const String IdentScalableFontHeight("ScalableFontHeight"); sl@0: sl@0: // Extra info identifiers sl@0: //const String IdentEndExtraInfo("EndExtraInfo"); sl@0: /** sl@0: Model identifiers sl@0: @internalComponent sl@0: */ sl@0: const String IdentEndModel("EndModel"); sl@0: const String IdentModelName("Name"); sl@0: const String IdentRequiresPrinterPort("RequiresPrinterPort"); sl@0: const String IdentModelFlags("Flags"); sl@0: const String IdentModelUid("Uid"); sl@0: const String IdentModelResources("Resources"); sl@0: const String IdentKPixelWidth("KPixelWidth"); sl@0: const String IdentKPixelHeight("KPixelHeight"); sl@0: const String IdentPortraitOffset("PortraitOffset"); sl@0: const String IdentLandscapeOffset("LandscapeOffset"); sl@0: const String IdentMinMarginLeft("MinMarginLeft"); sl@0: const String IdentMinMarginRight("MinMarginRight"); sl@0: const String IdentMinMarginTop("MinMarginTop"); sl@0: const String IdentMinMarginBottom("MinMarginBottom"); sl@0: const String IdentDisplayMode("DisplayMode"); sl@0: const String IdentTypefaceFontss("TypefaceFontss"); sl@0: const String IdentSpareRecord("SpareRecord"); sl@0: sl@0: /** sl@0: Typefacefontsentry identifiers sl@0: @internalComponent sl@0: */ sl@0: const String IdentEndTypefaceFontss("EndTypefaceFontss"); sl@0: const String IdentNotInPortrait("NotInPortrait"); sl@0: const String IdentNotInLandscape("NotInLandscape"); sl@0: sl@0: /** sl@0: Pdrstorefile identifiers sl@0: @internalComponent sl@0: */ sl@0: const String IdentEndPdrStoreFile("EndPdrStoreFile"); sl@0: const String IdentPDLName("PDLName"); sl@0: const String IdentPDLUid("PDLUid"); sl@0: const String IdentModels("Models"); sl@0: const String IdentEndModels("EndModels"); sl@0: sl@0: class PdrReader : public Reader sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: { sl@0: public: sl@0: IMPORT_C PdrReader(); sl@0: IMPORT_C boolean Read(const String& aFilename); sl@0: IMPORT_C ~PdrReader(); sl@0: boolean ReadResources(); sl@0: boolean ReadTranslates(); sl@0: boolean ReadCodeSection(int aCode); sl@0: boolean ReadFontInfo(); sl@0: boolean ReadStyle(); sl@0: boolean ReadFontHeight(); sl@0: boolean ReadScalableFontHeight(); sl@0: boolean ReadTypefaceFonts(); sl@0: boolean ReadModel(); sl@0: boolean ReadPdrStoreFile(); sl@0: IMPORT_C boolean Store(const String& aFilename); sl@0: boolean Command(String& aCommand); sl@0: // boolean ReadExtraInfo(); sl@0: protected: sl@0: PdrModelStore iPdrModelStore; sl@0: PdrStoreFile* iPdrStoreFile; sl@0: PdrResources* iResources; sl@0: PdrTranslates* iTranslates; sl@0: WidthsCodeSection* iCodeSection; sl@0: FontInfo* iFontInfo; sl@0: StyleIndex iIndex; sl@0: PdrFontHeight* iFontHeight; sl@0: TypefaceFonts* iTypefaceFonts; sl@0: PrinterModelHeader* iModel; sl@0: }; sl@0: sl@0: #endif