os/textandloc/textrendering/texthandling/incp/T_RTPAR.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) 1997-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
*
sl@0
    16
*/
sl@0
    17
sl@0
    18
sl@0
    19
#ifndef __T_RTPAR_H__
sl@0
    20
#define	__T_RTPAR_H__
sl@0
    21
sl@0
    22
#include <E32TWIN.H>
sl@0
    23
#include <TXTRICH.H>
sl@0
    24
sl@0
    25
// classes defined in this header
sl@0
    26
class CRichTextReader;
sl@0
    27
class CPMLWriter;
sl@0
    28
//
sl@0
    29
sl@0
    30
enum TTagType {		   // Possible types of tag
sl@0
    31
	EGlobal, 
sl@0
    32
	EParagraph, 
sl@0
    33
	ECharacter , 
sl@0
    34
	EControl
sl@0
    35
	}; 
sl@0
    36
sl@0
    37
enum TTagStatus {	 
sl@0
    38
	ETagStart,		  // "<"
sl@0
    39
	ETagEnd			  // ">"
sl@0
    40
	};
sl@0
    41
sl@0
    42
sl@0
    43
class CRichTextReader : public CBase
sl@0
    44
	{
sl@0
    45
public:
sl@0
    46
	static CRichTextReader* NewL();
sl@0
    47
	void Destruct();
sl@0
    48
sl@0
    49
	// these functions convert a supplied RichText doc into PML 
sl@0
    50
	// which is contained in the returned buffer.
sl@0
    51
	CBufSeg* ConvertRichText(CRichText* aRichTextDoc, RConsole aConsole);
sl@0
    52
	CBufSeg* ConvertRichText(CRichText* aRichTextDoc);
sl@0
    53
protected:
sl@0
    54
	CRichTextReader();
sl@0
    55
	void ConstructL();
sl@0
    56
private:
sl@0
    57
	void SenseGlobalFormat();
sl@0
    58
	TInt TranslatePhrase(TInt aPos);	
sl@0
    59
	void CompareParaFormats();
sl@0
    60
	void CompareCharFormats();
sl@0
    61
	void CompareParaToFactory(CParaFormat* aSensed);  
sl@0
    62
	void CompareCharToFactory(TCharFormat aSensed);
sl@0
    63
	void CheckTabList(CParaFormat* aFormatOne, CParaFormat* aFormatTwo);
sl@0
    64
	TParaBorder* CopyBorderL(const TParaBorder* aFrom,TParaBorder* aTo);
sl@0
    65
	TBullet* CopyBulletL(const TBullet* aFrom,TBullet* aTo);
sl@0
    66
private:
sl@0
    67
	CRichText* iRichTextDoc;
sl@0
    68
	CParaFormat* iThisParaFormat;
sl@0
    69
	CParaFormat* iPrevParaFormat;
sl@0
    70
	TCharFormat iThisCharFormat;
sl@0
    71
	TCharFormat iPrevCharFormat;
sl@0
    72
	TParaBorder* iBorder;
sl@0
    73
				
sl@0
    74
	RConsole iConsole;
sl@0
    75
	TBool iConsoleExists;				
sl@0
    76
	CPMLWriter* iPMLWriter;
sl@0
    77
	TInt iParaStart;				// Start pos of current paragraph
sl@0
    78
	TInt iDocLength;				// length in chars of rich text doc
sl@0
    79
	};
sl@0
    80
sl@0
    81
sl@0
    82
class CPMLWriter : public CBase
sl@0
    83
	{
sl@0
    84
public:
sl@0
    85
	static CPMLWriter* NewL();
sl@0
    86
	void Destruct();
sl@0
    87
sl@0
    88
	void Insert(const TDesC& aBuf);	// inserts a string into PML doc
sl@0
    89
	void Delete(TUint aNumberOfCharsToDelete);	// deletes chars prior to current insert pos
sl@0
    90
	void Output(RConsole aConsole); // output PML doc to screen
sl@0
    91
	inline CBufSeg* ReturnPmlDoc() {return iTextBuf;}
sl@0
    92
	inline TUint WritePos() {return iInsertPos;}
sl@0
    93
	void SetTag(TTagType, TTagStatus);	// Prints tag delimiters & tag type
sl@0
    94
	void SetTab(TTabStop aTabStop);
sl@0
    95
	void SetFormat(TTextFormatAttribute aAttribute, TInt aValue);
sl@0
    96
	void SetFormat(TTextFormatAttribute aAttribute, TParaBorder* aParaBorder);
sl@0
    97
	void SetFormat(TTextFormatAttribute aAttribute, const TTypeface &aTypeface);
sl@0
    98
	void SetFormat(TTextFormatAttribute aAttribute, TBullet* aBullet);
sl@0
    99
	void SetFormat(TTextFormatAttribute aAttribute, TTabStop aTabStop);
sl@0
   100
protected:
sl@0
   101
	CPMLWriter();
sl@0
   102
	void ConstructL();
sl@0
   103
private:
sl@0
   104
	void ProcessAlignment(TInt aValue);
sl@0
   105
	void ProcessLineSpacingControl(TInt aValue);
sl@0
   106
	void ProcessFontPrintPos(TInt aValue);
sl@0
   107
	void ProcessBooleanAtt(TTextFormatAttribute aAttribute, TInt aValue);
sl@0
   108
	void ProcessBorder(TTextFormatAttribute aAttribute, TInt aValue);
sl@0
   109
	void SquashBuf(const TDesC& aBuffer, TDes8& aTarget); // squashes 16 bit buffers to 8 bit (for unicode)
sl@0
   110
	void ExpandBuf(const TDes8& aBuffer, TDes& aTarget);
sl@0
   111
private:
sl@0
   112
	CBufSeg* iTextBuf;					// Buffer for text file to be read into
sl@0
   113
	TUint iInsertPos;
sl@0
   114
	};
sl@0
   115
sl@0
   116
sl@0
   117
sl@0
   118
#endif