os/textandloc/textrendering/texthandling/incp/T_PMLPAR.H
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     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".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description: 
    15 *
    16 */
    17 
    18 
    19 #ifndef __T_PMLPAR_H__
    20 #define __T_PMLPAR_H__
    21 
    22 #include <e32cons.h>
    23 #include <f32file.h>
    24 #include <txtrich.h>
    25 #include <txtfrmat.h>
    26 #include <txtfmlyr.h>
    27 
    28 #pragma warning ( disable : 4705 ) // turns off "statement has no effect" warning
    29 
    30 const TInt KCharLength = 2;
    31 
    32 // Clases defined in this file
    33 class CFileApp;
    34 class CParser;
    35 
    36 const TChar KTabChar=TChar(9);
    37 const TChar KLineFeed(10);
    38 const TChar KComma=TChar(44);
    39 const TInt	KFileBufSize=128;
    40 
    41 const TBuf<1> NEWLINE(_L("\n"));
    42 
    43 class CFileApp : public CBase
    44 	{ // Reads a text file into a segmented buffer
    45 public:
    46 	static CFileApp* NewL();
    47 	~CFileApp();
    48 
    49 	CBufSeg* LoadFileL(CConsoleBase* aConsole);
    50 	CBufSeg* LoadFileL(const TFileName &aFileName);
    51 	TInt SaveFile(CBufSeg* aTextBuf, TFileName aFileName);	  // returns error level
    52 	inline TFileName ReturnFileName() {return iFileName;}
    53 protected:
    54 	CFileApp();
    55 	void ConstructApplicationL();
    56 private:
    57 	void OutputToScreen(const TDesC& aMessageBuffer);
    58 	void FileHandlingL();
    59 	void GetFileName();
    60 	void ReadChunkOfFileContents(RFile &aTextFile);
    61 	void WriteNewLine();
    62 private:
    63     CConsoleBase* iConsole;				// Pointer to the console window
    64 	TBool iConsoleExists;
    65     TFileName iFileName;				// Hmmm...
    66 	TUint iFilePos;			   			// Current position within file
    67 	CBufSeg * iTextBuf;					// Buffer for text file to be read into
    68 	TBuf<KFileBufSize> iFileBuf;		// Buffer for reading file in
    69 	};
    70 
    71 
    72 class CParser : public CBase
    73 	{ // Loads a segmented buffer full of text and parses it as PML, converting it into RichText
    74 public:
    75 	static CParser* NewL();
    76 	~CParser();
    77 
    78 	CRichText* ParseL(const TFileName &aFileName);	// no GDI - Filename supplied
    79 	CRichText* ParseL(CConsoleBase* aConsole);	// with E32 console interface
    80 protected:
    81 	CParser();
    82 	void ConstructApplicationL();
    83 private:
    84 	void ParseTextBufL();
    85 	TBool Validate();					
    86 	TChar ReadChar();
    87 	void ProcessTextL(TChar aChar);
    88 	void AddCharToParaL(TChar aChar);
    89 
    90 	TChar ReadTagChar();					// Tag methods
    91 	void ProcessTagL();						//
    92 	void ClassifyTagL(TChar aTagChar);		//
    93 	void AppendToArgBuf(TChar aTagChar);	//
    94 	void ProcessArgBufL();					//
    95 	void ClassifyArgumentsL();				//
    96 	void TranslateTagArgL();					//
    97 	void TransGlobalArgL();					//
    98 	void TransParagraphArgL();			   	//
    99 	void TransCharArg();					//
   100 	void TransControlArgL();				//
   101 	TInt GetArgValue();						//
   102 	TInt GetArgValue(const TDes &aBuf);		//
   103 	TBool BufIsNumeric(const TDes &aBuffer);//
   104 
   105 	void TransParaDefault();				// Argument translators for paragraph
   106 	void TransParaArgAlignment();			// 
   107 	void TransParaArgLeftMargin();			//
   108 	void TransParaArgRightMargin();			//
   109 	void TransParaArgIndent();				//
   110 	void TransParaLineSpacing();			//
   111 	void TransParaArgLineSpacingControl();	//
   112 	void TransParaSpaceBefore();			//
   113 	void TransParaSpaceAfter();				//
   114 	void TransParaKeepTogether();			//
   115 	void TransParaKeepWithNext();			//
   116 	void TransParaStartNewPage();			//
   117 	void TransParaWidowOrphan();			//
   118 	void TransParaBorderMargin();			//
   119 	void TransParaBorderL();					//
   120 	void TransParaTabWidth();				//
   121 	void TransParaTabStopL();				// 
   122 	void TransParaBullet();					//
   123 	void TransCharDefault();				// ... and character
   124 	void TransCharPosture();				//
   125 	void TransCharStrokeWeight();			//
   126 	void TransCharUnderline();				//
   127 	void TransCharStrikethrough();			//
   128 	void TransCharFontHeight();				//
   129 	void TransCharPrintPos();				//
   130 	void TransCharTypefaceName();			//
   131 	void TransCharTypefaceFlags();			//
   132 	void TransCharColor();					//
   133 	void TransCharLanguage();				//
   134 
   135 	void SetFormatLayerL();					// RT doc methods
   136 
   137 	void EmptyBuffer(TDes &aBuf);
   138 	void OutputToScreen(const TDesC& aMessageBuffer);
   139 	void WriteNewLine() {OutputToScreen(NEWLINE);}
   140 	void EmitErrorMessage();
   141 public:
   142 	TFileName iFileName;	   
   143 private:
   144 	TBuf8<512> SquashBuf(TDes aBuffer);
   145 	//
   146 	enum {						// Error types
   147 		ENoError,
   148 		EUnparagraphedText,
   149 		EUnknownTagType,
   150 		EUnknownAttrib,
   151 		ENoAttribValue,
   152 		EIllegalAttribValue
   153 		};
   154 	enum { 						// Possible types of tag
   155 		EGlobal, 
   156 		EParagraph, 
   157 		ECharacter, 
   158 		EControl,
   159 		EComment, 
   160 		EError};
   161 	TUint iErrorLevel;
   162     CConsoleBase* iConsole;			// Pointer to the console window
   163 	TBool iConsoleExists;
   164 	CBufSeg * iTextBuf;					// Buffer for the text file to be parsed
   165 	TUint iReadPos;						// Current read position in iTextBuf
   166 	TUint iLineNo;						// Current line no. in iTextBuf (for error messages)
   167 	TBool iParagraphIsOpen;				// Self explanatory?
   168 	TBool iPhraseOpen;					// Character formatting is being applied
   169 	TBool iArgValueExpected;			// Set if a tag argument requires a value eg =120
   170 	TBool iArgStored;					// Set if there is an argument in temp storage
   171 	TBool iCancelArg;					// Set if the arg has been canceled - ie turns formatting off
   172 	TBool iBorderUsed;
   173 	TBool iBulletUsed;					
   174 	TInt iTagType;						// The type of tag: see enum above
   175 	TBuf<32> iArgType;					// Buffer for tag arguments. Whole arg if they have no value 
   176 	TBuf<32> iArgValue;					// Buffer for arg values... (32 bytes)  eg. <P ArgType=ArgValue>
   177 
   178 	// Rich Text document variables
   179 	CRichText* iRichTextDoc;			// The RT doc
   180 	TInt iDocInsertPos;					// Cursor position in RT doc
   181 	TUint iDocParaLength;				// Length of current paragraph
   182 	TUint iDocPhraseLength; 			// ...
   183 	CParaFormatLayer* iGlobalParaFormatLayer;
   184 	TParaFormatMask iGlobalParaFormatMask;
   185 	CParaFormat* iGlobalParaFormat;
   186 	CCharFormatLayer* iGlobalCharFormatLayer;
   187 	TCharFormatMask iGlobalCharFormatMask;
   188 	TCharFormat iGlobalCharFormat;
   189 	CParaFormatLayer* iParaFormatLayer;
   190 	TParaFormatMask iParaFormatMask;
   191 	CParaFormat* iParaFormat; 
   192 	CCharFormatLayer* iCharFormatLayer;
   193 	TCharFormatMask iCharFormatMask;
   194 	TCharFormat iCharFormat;
   195 	TParaBorder* iBorder;
   196 	TBullet* iBullet;
   197 	};
   198 
   199 #endif