1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/textandloc/textrendering/texthandling/ttext/T_parse.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,112 @@
1.4 +/*
1.5 +* Copyright (c) 1999-2009 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description:
1.18 +* An example parser
1.19 +*
1.20 +*/
1.21 +
1.22 +
1.23 +#ifndef __EXPARSER_H__
1.24 +#define __EXPARSER_H__
1.25 +
1.26 +#include <mparser.h>
1.27 +#include <medobsrv.h>
1.28 +
1.29 +
1.30 +class CTestParser : public CBase, public MParser
1.31 + {
1.32 +public:
1.33 + static CTestParser* NewL();
1.34 +
1.35 + ~CTestParser();
1.36 +
1.37 + // Overloads for MParser interface
1.38 + TBool ParseThisText(const CRichText& aTextObj, TBool aAllowBack,
1.39 + TInt aStartScan, TInt aScanLength,
1.40 + TInt& aStartTag, TInt& aTagLength);
1.41 +
1.42 + const TDesC& CreateDoItText(const CRichText& aTextObj,
1.43 + TInt aStartText, TInt aLength);
1.44 +
1.45 + void ActivateThisTextL(const CRichText& aTextObj,
1.46 + TInt aStartText, TInt aLength);
1.47 +
1.48 + TBool ReformatOnRecognise() const {return ETrue;}
1.49 +
1.50 + TBool ReformatOnRollover() const {return ETrue;}
1.51 +
1.52 + void GetRecogniseFormat(TCharFormat& aFormat);
1.53 +
1.54 + void GetRolloverFormat(TCharFormat& aFormat);
1.55 +
1.56 + void Release();
1.57 +
1.58 +private:
1.59 + CTestParser();
1.60 +
1.61 +private:
1.62 + HBufC* iDoItText;
1.63 + };
1.64 +
1.65 +//-----------------------------------------------
1.66 +
1.67 +class CTestParser2 : public CBase, public MParser
1.68 + {
1.69 +public:
1.70 + static CTestParser2* NewL();
1.71 +
1.72 + ~CTestParser2();
1.73 +
1.74 + // Overloads for MParser interface
1.75 + TBool ParseThisText(const CRichText& aTextObj, TBool aAllowBack,
1.76 + TInt aStartScan, TInt aScanLength,
1.77 + TInt& aStartTag, TInt& aTagLength);
1.78 +
1.79 + const TDesC& CreateDoItText(const CRichText& aTextObj,
1.80 + TInt aStartText, TInt aLength);
1.81 +
1.82 + void ActivateThisTextL(const CRichText& aTextObj,
1.83 + TInt aStartText, TInt aLength);
1.84 +
1.85 + TBool ReformatOnRecognise() const {return ETrue;}
1.86 +
1.87 + TBool ReformatOnRollover() const {return ETrue;}
1.88 +
1.89 + void GetRecogniseFormat(TCharFormat& aFormat);
1.90 +
1.91 + void GetRolloverFormat(TCharFormat& aFormat);
1.92 +
1.93 + void Release();
1.94 +
1.95 +private:
1.96 + CTestParser2();
1.97 +
1.98 +private:
1.99 + HBufC* iDoItText;
1.100 + };
1.101 +
1.102 +
1.103 +class CEditObserver : public CBase, public MEditObserver
1.104 + {
1.105 +public:
1.106 + CEditObserver();
1.107 + ~CEditObserver();
1.108 + void EditObserver(TInt aStart, TInt aExtent);
1.109 +
1.110 +public:
1.111 + TInt iStart;
1.112 + TInt iExtent;
1.113 + };
1.114 +
1.115 +#endif