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.
19 #ifndef __T_PMLPAR_H__
20 #define __T_PMLPAR_H__
28 #pragma warning ( disable : 4705 ) // turns off "statement has no effect" warning
30 const TInt KCharLength = 2;
32 // Clases defined in this file
36 const TChar KTabChar=TChar(9);
37 const TChar KLineFeed(10);
38 const TChar KComma=TChar(44);
39 const TInt KFileBufSize=128;
41 const TBuf<1> NEWLINE(_L("\n"));
43 class CFileApp : public CBase
44 { // Reads a text file into a segmented buffer
46 static CFileApp* NewL();
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;}
55 void ConstructApplicationL();
57 void OutputToScreen(const TDesC& aMessageBuffer);
60 void ReadChunkOfFileContents(RFile &aTextFile);
63 CConsoleBase* iConsole; // Pointer to the console window
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
72 class CParser : public CBase
73 { // Loads a segmented buffer full of text and parses it as PML, converting it into RichText
75 static CParser* NewL();
78 CRichText* ParseL(const TFileName &aFileName); // no GDI - Filename supplied
79 CRichText* ParseL(CConsoleBase* aConsole); // with E32 console interface
82 void ConstructApplicationL();
87 void ProcessTextL(TChar aChar);
88 void AddCharToParaL(TChar aChar);
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);//
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(); //
135 void SetFormatLayerL(); // RT doc methods
137 void EmptyBuffer(TDes &aBuf);
138 void OutputToScreen(const TDesC& aMessageBuffer);
139 void WriteNewLine() {OutputToScreen(NEWLINE);}
140 void EmitErrorMessage();
144 TBuf8<512> SquashBuf(TDes aBuffer);
146 enum { // Error types
154 enum { // Possible types of tag
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
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>
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;