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