Update contrib.
2 * Copyright (c) 1999-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.
20 #ifndef __EXPARSER_H__
21 #define __EXPARSER_H__
27 class CTestParser : public CBase, public MParser
30 static CTestParser* NewL();
34 // Overloads for MParser interface
35 TBool ParseThisText(const CRichText& aTextObj, TBool aAllowBack,
36 TInt aStartScan, TInt aScanLength,
37 TInt& aStartTag, TInt& aTagLength);
39 const TDesC& CreateDoItText(const CRichText& aTextObj,
40 TInt aStartText, TInt aLength);
42 void ActivateThisTextL(const CRichText& aTextObj,
43 TInt aStartText, TInt aLength);
45 TBool ReformatOnRecognise() const {return ETrue;}
47 TBool ReformatOnRollover() const {return ETrue;}
49 void GetRecogniseFormat(TCharFormat& aFormat);
51 void GetRolloverFormat(TCharFormat& aFormat);
62 //-----------------------------------------------
64 class CTestParser2 : public CBase, public MParser
67 static CTestParser2* NewL();
71 // Overloads for MParser interface
72 TBool ParseThisText(const CRichText& aTextObj, TBool aAllowBack,
73 TInt aStartScan, TInt aScanLength,
74 TInt& aStartTag, TInt& aTagLength);
76 const TDesC& CreateDoItText(const CRichText& aTextObj,
77 TInt aStartText, TInt aLength);
79 void ActivateThisTextL(const CRichText& aTextObj,
80 TInt aStartText, TInt aLength);
82 TBool ReformatOnRecognise() const {return ETrue;}
84 TBool ReformatOnRollover() const {return ETrue;}
86 void GetRecogniseFormat(TCharFormat& aFormat);
88 void GetRolloverFormat(TCharFormat& aFormat);
100 class CEditObserver : public CBase, public MEditObserver
105 void EditObserver(TInt aStart, TInt aExtent);