sl@0: /* sl@0: * Copyright (c) 1999-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: sl@0: #ifndef __MPARSER_H__ sl@0: #define __MPARSER_H__ sl@0: sl@0: #include sl@0: #include sl@0: sl@0: class CRichText; sl@0: class TCharFormat; sl@0: sl@0: /** sl@0: * Implement ParseThisText() in order to parse text sl@0: * @publishedAll sl@0: * @released sl@0: */ sl@0: class MParser sl@0: { sl@0: public: sl@0: virtual TBool ParseThisText(const CRichText& aTextObj, sl@0: TBool aAllowBack, sl@0: TInt aStartScan, sl@0: TInt aScanLength, sl@0: TInt& aStartTag, sl@0: TInt& aTagLength) = 0; sl@0: sl@0: virtual const TDesC& CreateDoItText(const CRichText& aTextObj, sl@0: TInt aStartText, sl@0: TInt aLength) = 0; sl@0: sl@0: virtual void ActivateThisTextL(const CRichText& aTextObj, sl@0: TInt aStartText, sl@0: TInt aLength) = 0; sl@0: sl@0: IMPORT_C virtual TBool ReformatOnRecognise() const; sl@0: sl@0: IMPORT_C virtual TBool ReformatOnRollover() const; sl@0: sl@0: IMPORT_C virtual void GetRecogniseFormat(TCharFormat& aFormat); sl@0: sl@0: IMPORT_C virtual void GetRolloverFormat(TCharFormat& aFormat); sl@0: sl@0: IMPORT_C virtual TBool ConfirmCursorOverTag(const CRichText& aTextObj, sl@0: TInt aTagStart, sl@0: TInt aTagLen, sl@0: TInt aCurPos); sl@0: sl@0: IMPORT_C virtual void MParser_Reserved_2(); sl@0: sl@0: //++ ADD COMMENT HERE (poss. provide default implement that panics) sl@0: virtual void Release() = 0; sl@0: }; sl@0: sl@0: #endif