sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 1999-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 __PARSELST_H__
|
sl@0
|
20 |
#define __PARSELST_H__
|
sl@0
|
21 |
|
sl@0
|
22 |
#include <e32std.h>
|
sl@0
|
23 |
#include <mparser.h>
|
sl@0
|
24 |
#include <txtrich.h>
|
sl@0
|
25 |
//++ sort out definitive hash includes
|
sl@0
|
26 |
|
sl@0
|
27 |
|
sl@0
|
28 |
NONSHARABLE_CLASS(CParserList) : public CBase
|
sl@0
|
29 |
/**
|
sl@0
|
30 |
@internalComponent
|
sl@0
|
31 |
*/
|
sl@0
|
32 |
{
|
sl@0
|
33 |
enum TParserTagValues
|
sl@0
|
34 |
{
|
sl@0
|
35 |
EReformatOnRecogniseFlag = (TInt)0x80000000,
|
sl@0
|
36 |
EReformatOnRolloverFlag = 0x40000000,
|
sl@0
|
37 |
EDefaultParserFlag = 0x20000000,
|
sl@0
|
38 |
EParserTagMask = 0x3FFFFFFF,
|
sl@0
|
39 |
EMaxParserIndex = 0x1FFFFFFF
|
sl@0
|
40 |
};
|
sl@0
|
41 |
|
sl@0
|
42 |
enum TParserListPanic
|
sl@0
|
43 |
{
|
sl@0
|
44 |
EParserNoneActive,
|
sl@0
|
45 |
EParserNullPtr,
|
sl@0
|
46 |
EParserInstanceNotActive,
|
sl@0
|
47 |
EParserNoSuchTag,
|
sl@0
|
48 |
EParserIgnoringAllowFlag,
|
sl@0
|
49 |
EParserIndexRollover
|
sl@0
|
50 |
};
|
sl@0
|
51 |
|
sl@0
|
52 |
private:
|
sl@0
|
53 |
class CParserItem : public CBase
|
sl@0
|
54 |
{
|
sl@0
|
55 |
public:
|
sl@0
|
56 |
CParserItem(MParser* aParser, const TUint aTagIndex);
|
sl@0
|
57 |
~CParserItem() {}
|
sl@0
|
58 |
|
sl@0
|
59 |
inline MParser* Parser() const {return iParser;}
|
sl@0
|
60 |
inline TUint TagIndex() const {return iTagIndex;}
|
sl@0
|
61 |
|
sl@0
|
62 |
private:
|
sl@0
|
63 |
MParser* iParser;
|
sl@0
|
64 |
TUint iTagIndex;
|
sl@0
|
65 |
};
|
sl@0
|
66 |
|
sl@0
|
67 |
public:
|
sl@0
|
68 |
CParserList();
|
sl@0
|
69 |
~CParserList();
|
sl@0
|
70 |
|
sl@0
|
71 |
void ActivateParserL(MParser* aParser);
|
sl@0
|
72 |
void DeactivateParser(MParser* aParser);
|
sl@0
|
73 |
void ActivateDefaultParserL(MParser* aParser);
|
sl@0
|
74 |
void DeactivateParserDefaults();
|
sl@0
|
75 |
TBool ParseThisText(CRichText& aTextObj,TInt aStartScan,TInt aScanLength,TInt& aStartOfTags,TInt& aLength);
|
sl@0
|
76 |
MParser* ParserWithThisTag(const TUint aTagIndex) const;
|
sl@0
|
77 |
TUint TagForThisParser(const MParser *const aParser) const;
|
sl@0
|
78 |
|
sl@0
|
79 |
static inline TBool ReformatOnRollover(const TUint aTagIndex) {return (aTagIndex & EReformatOnRolloverFlag);}
|
sl@0
|
80 |
|
sl@0
|
81 |
private:
|
sl@0
|
82 |
static inline TBool ReformatOnRecognise(const TUint aTagIndex) {return (aTagIndex & static_cast<TUint>( EReformatOnRecogniseFlag ) );}
|
sl@0
|
83 |
static inline TBool DefaultParser(const TUint aTagIndex) {return (aTagIndex & EDefaultParserFlag);}
|
sl@0
|
84 |
|
sl@0
|
85 |
static inline TUint MaskedTag(const TUint32 aTagIndex) {return (aTagIndex & EParserTagMask);}
|
sl@0
|
86 |
|
sl@0
|
87 |
void ActivateAParserL(MParser* aParser, const TBool aDefaultParser);
|
sl@0
|
88 |
TBool LoopOneParser(MParser* aParser, const TUint aTagIndex, CRichText& aTextObj,
|
sl@0
|
89 |
const TInt aStartScan, const TInt aScanLength,
|
sl@0
|
90 |
TInt& aStartOfTags, TInt& aLength);
|
sl@0
|
91 |
void Panic(TParserListPanic aPanic) const;
|
sl@0
|
92 |
|
sl@0
|
93 |
private:
|
sl@0
|
94 |
RPointerArray<CParserItem> iParserList; // List of active parsers (specific and default)
|
sl@0
|
95 |
TUint iHighestIndex;
|
sl@0
|
96 |
public:
|
sl@0
|
97 |
TInt iNumberInList;
|
sl@0
|
98 |
TInt iRefCount;
|
sl@0
|
99 |
};
|
sl@0
|
100 |
|
sl@0
|
101 |
NONSHARABLE_CLASS(CParserData) : public CBase
|
sl@0
|
102 |
/**
|
sl@0
|
103 |
@internalComponent
|
sl@0
|
104 |
*/
|
sl@0
|
105 |
{
|
sl@0
|
106 |
public:
|
sl@0
|
107 |
CParserData(TInt aEndParse);
|
sl@0
|
108 |
~CParserData();
|
sl@0
|
109 |
TBool HaveRange() const { return iStartParse != -1; }
|
sl@0
|
110 |
void MergeRange(TInt aStart,TInt aOldLength,TInt aNewLength);
|
sl@0
|
111 |
void KillRange() { iStartParse = -1; }
|
sl@0
|
112 |
TInt StartParse() const { return iStartParse; }
|
sl@0
|
113 |
TInt EndParse() const { return iEndParse; }
|
sl@0
|
114 |
|
sl@0
|
115 |
CParserList* iActiveParserList; // local copy because access to Dll::Tls is slow
|
sl@0
|
116 |
MEditObserver* iEditObserver;
|
sl@0
|
117 |
TInt iLastKnownCursor;
|
sl@0
|
118 |
|
sl@0
|
119 |
private:
|
sl@0
|
120 |
TInt iStartParse; // start of text to be parsed; -1 means none
|
sl@0
|
121 |
TInt iEndParse; // end of text to be parsed
|
sl@0
|
122 |
};
|
sl@0
|
123 |
|
sl@0
|
124 |
#endif
|