os/textandloc/textrendering/texthandling/ttext/T_parse.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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
* An example parser
sl@0
    16
*
sl@0
    17
*/
sl@0
    18
sl@0
    19
sl@0
    20
#ifndef __EXPARSER_H__
sl@0
    21
#define __EXPARSER_H__
sl@0
    22
sl@0
    23
#include <mparser.h>
sl@0
    24
#include <medobsrv.h>
sl@0
    25
sl@0
    26
sl@0
    27
class CTestParser : public CBase, public MParser
sl@0
    28
	{
sl@0
    29
public:
sl@0
    30
	static CTestParser* NewL();
sl@0
    31
sl@0
    32
	~CTestParser();
sl@0
    33
sl@0
    34
	// Overloads for MParser interface
sl@0
    35
	TBool ParseThisText(const CRichText& aTextObj, TBool aAllowBack,
sl@0
    36
						TInt aStartScan, TInt aScanLength,
sl@0
    37
						TInt& aStartTag, TInt& aTagLength);
sl@0
    38
sl@0
    39
	const TDesC& CreateDoItText(const CRichText& aTextObj,
sl@0
    40
								TInt aStartText, TInt aLength);
sl@0
    41
sl@0
    42
	void ActivateThisTextL(const CRichText& aTextObj,
sl@0
    43
						   TInt aStartText, TInt aLength);
sl@0
    44
sl@0
    45
	TBool ReformatOnRecognise() const {return ETrue;}
sl@0
    46
sl@0
    47
	TBool ReformatOnRollover() const {return ETrue;}
sl@0
    48
sl@0
    49
	void GetRecogniseFormat(TCharFormat& aFormat);
sl@0
    50
sl@0
    51
	void GetRolloverFormat(TCharFormat& aFormat);
sl@0
    52
sl@0
    53
	void Release();
sl@0
    54
sl@0
    55
private:
sl@0
    56
	CTestParser();
sl@0
    57
sl@0
    58
private:
sl@0
    59
	HBufC* iDoItText;
sl@0
    60
	};
sl@0
    61
sl@0
    62
//-----------------------------------------------
sl@0
    63
sl@0
    64
class CTestParser2 : public CBase, public MParser
sl@0
    65
	{
sl@0
    66
public:
sl@0
    67
	static CTestParser2* NewL();
sl@0
    68
sl@0
    69
	~CTestParser2();
sl@0
    70
sl@0
    71
	// Overloads for MParser interface
sl@0
    72
	TBool ParseThisText(const CRichText& aTextObj, TBool aAllowBack,
sl@0
    73
						TInt aStartScan, TInt aScanLength,
sl@0
    74
						TInt& aStartTag, TInt& aTagLength);
sl@0
    75
sl@0
    76
	const TDesC& CreateDoItText(const CRichText& aTextObj,
sl@0
    77
								TInt aStartText, TInt aLength);
sl@0
    78
sl@0
    79
	void ActivateThisTextL(const CRichText& aTextObj,
sl@0
    80
						   TInt aStartText, TInt aLength);
sl@0
    81
sl@0
    82
	TBool ReformatOnRecognise() const {return ETrue;}
sl@0
    83
sl@0
    84
	TBool ReformatOnRollover() const {return ETrue;}
sl@0
    85
sl@0
    86
	void GetRecogniseFormat(TCharFormat& aFormat);
sl@0
    87
sl@0
    88
	void GetRolloverFormat(TCharFormat& aFormat);
sl@0
    89
sl@0
    90
	void Release();
sl@0
    91
sl@0
    92
private:
sl@0
    93
	CTestParser2();
sl@0
    94
sl@0
    95
private:
sl@0
    96
	HBufC* iDoItText;
sl@0
    97
	};
sl@0
    98
sl@0
    99
sl@0
   100
class CEditObserver : public CBase, public MEditObserver
sl@0
   101
	{
sl@0
   102
public:
sl@0
   103
	CEditObserver();
sl@0
   104
	~CEditObserver();
sl@0
   105
	void EditObserver(TInt aStart, TInt aExtent);
sl@0
   106
sl@0
   107
public:
sl@0
   108
	TInt iStart;
sl@0
   109
	TInt iExtent;
sl@0
   110
	};
sl@0
   111
sl@0
   112
#endif