os/textandloc/textrendering/texthandling/inc/MParser.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/textandloc/textrendering/texthandling/inc/MParser.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,70 @@
     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 +*
    1.19 +*/
    1.20 +
    1.21 +
    1.22 +#ifndef __MPARSER_H__
    1.23 +#define __MPARSER_H__
    1.24 +
    1.25 +#include <e32base.h>
    1.26 +#include <e32std.h>
    1.27 +
    1.28 +class CRichText;
    1.29 +class TCharFormat;
    1.30 +
    1.31 +/**
    1.32 + * Implement ParseThisText() in order to parse text
    1.33 + * @publishedAll
    1.34 + * @released
    1.35 + */
    1.36 +class MParser
    1.37 +	{
    1.38 +public:
    1.39 +	virtual TBool ParseThisText(const CRichText& aTextObj,
    1.40 +								TBool aAllowBack,
    1.41 +								TInt aStartScan,
    1.42 +								TInt aScanLength,
    1.43 +								TInt& aStartTag,
    1.44 +								TInt& aTagLength) = 0;
    1.45 +
    1.46 +	virtual const TDesC& CreateDoItText(const CRichText& aTextObj,
    1.47 +										TInt aStartText,
    1.48 +										TInt aLength) = 0;
    1.49 +
    1.50 +	virtual void ActivateThisTextL(const CRichText& aTextObj,
    1.51 +								   TInt aStartText,
    1.52 +								   TInt aLength) = 0;
    1.53 +
    1.54 +	IMPORT_C virtual TBool ReformatOnRecognise() const;
    1.55 +
    1.56 +	IMPORT_C virtual TBool ReformatOnRollover() const;
    1.57 +
    1.58 +	IMPORT_C virtual void GetRecogniseFormat(TCharFormat& aFormat);
    1.59 +
    1.60 +	IMPORT_C virtual void GetRolloverFormat(TCharFormat& aFormat);
    1.61 +
    1.62 +	IMPORT_C virtual TBool ConfirmCursorOverTag(const CRichText& aTextObj,
    1.63 +												TInt aTagStart,
    1.64 +												TInt aTagLen,
    1.65 +												TInt aCurPos);
    1.66 +
    1.67 +	IMPORT_C virtual void MParser_Reserved_2();
    1.68 +
    1.69 +	//++ ADD COMMENT HERE (poss. provide default implement that panics)
    1.70 +	virtual void Release() = 0;
    1.71 +	};
    1.72 +
    1.73 +#endif