os/textandloc/textrendering/texthandling/inc/TXTGLOBL.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 __TXTGLOBL_H__
sl@0
    20
#define __TXTGLOBL_H__
sl@0
    21
sl@0
    22
#include <e32std.h>
sl@0
    23
#include <e32base.h>
sl@0
    24
#include <txtlaydc.h>
sl@0
    25
#include <txtmfmtx.h>
sl@0
    26
#include <txtetext.h>
sl@0
    27
sl@0
    28
sl@0
    29
// forward declarations
sl@0
    30
class CParaFormatLayer;
sl@0
    31
class CCharFormatLayer;
sl@0
    32
class TCharFormatX;
sl@0
    33
class TCharFormatXMask;
sl@0
    34
sl@0
    35
sl@0
    36
// Globally formatted text.
sl@0
    37
// Uses one instance of each a paragraph format and character format class; Each presents
sl@0
    38
// the formatting applied to the total document contents.  Both of the format classes used
sl@0
    39
// may utilise layering of formats through 'based on' links to achieve full format specification.
sl@0
    40
// These global layers are *never* owned by global text, merely referenced.
sl@0
    41
sl@0
    42
/** 
sl@0
    43
Text with globally applied formatting. 
sl@0
    44
sl@0
    45
Global text uses a single set of paragraph format attributes to describe the 
sl@0
    46
appearance of every paragraph and a single set of character format attributes 
sl@0
    47
to describe the appearance of every character.
sl@0
    48
sl@0
    49
The paragraph formatting is stored in a CParaFormatLayer and the character 
sl@0
    50
formatting is stored in a CCharFormatLayer. A format layer is a set of character 
sl@0
    51
or paragraph format attributes, which may own a pointer to another format 
sl@0
    52
layer. This pointer is called a based-on link. The effective formatting of 
sl@0
    53
a global text object is the set of attributes specified in its two format 
sl@0
    54
layers, as well as any attributes inherited from the layers' chain of based-on 
sl@0
    55
links. To get the effective formatting, the links are read in turn, so that 
sl@0
    56
each attribute's value is taken from the first layer in the chain in which 
sl@0
    57
it has been set. Use GetCharFormat() and GetParaFormatL() to get the text 
sl@0
    58
object's effective formatting.
sl@0
    59
sl@0
    60
A global text object references the two format layers; it does not own them. 
sl@0
    61
This allows more than one global text object to use the same formatting. The 
sl@0
    62
format layers may be modified (see ApplyParaFormatL() and ApplyCharFormatL()) 
sl@0
    63
or replaced (see SetGlobalParaFormat() and SetGlobalCharFormat()) during the 
sl@0
    64
text object's lifetime. 
sl@0
    65
@publishedAll
sl@0
    66
@released
sl@0
    67
*/
sl@0
    68
class CGlobalText : public CPlainText,public MLayDoc,public MFormatText
sl@0
    69
	{
sl@0
    70
public:
sl@0
    71
//	Special member functions
sl@0
    72
	// Create new global text component whose sole content is an end-of-document character.	
sl@0
    73
	IMPORT_C static CGlobalText* NewL(const CParaFormatLayer* aGlobalParaLayer,const CCharFormatLayer* aGlobalCharLayer,
sl@0
    74
									 TDocumentStorage aStorage=ESegmentedStorage,TInt aDefaultTextGranularity=EDefaultTextGranularity);
sl@0
    75
	// Restore a new global text, that uses the specified global layers.
sl@0
    76
	IMPORT_C static CGlobalText* NewL(const CStreamStore& aStore,TStreamId aStreamId,
sl@0
    77
									  const CParaFormatLayer* aGlobalParaLayer,const CCharFormatLayer* aGlobalCharLayer,
sl@0
    78
									  MTextFieldFactory* aFieldFactory=NULL,
sl@0
    79
									  TDocumentStorage=ESegmentedStorage);
sl@0
    80
	IMPORT_C ~CGlobalText();
sl@0
    81
//	Global Format Layers
sl@0
    82
	IMPORT_C void SetGlobalParaFormat(const CParaFormatLayer* aParaFormatLayer);
sl@0
    83
	IMPORT_C void SetGlobalCharFormat(const CCharFormatLayer* aCharFormatLayer);
sl@0
    84
	inline const CParaFormatLayer* GlobalParaFormatLayer()const;
sl@0
    85
	inline const CCharFormatLayer* GlobalCharFormatLayer()const;
sl@0
    86
//	MLayDoc implementation
sl@0
    87
	IMPORT_C virtual TInt LdDocumentLength()const;
sl@0
    88
	IMPORT_C virtual TInt LdToParagraphStart(TInt& aCurrentPos)const;
sl@0
    89
	IMPORT_C virtual void GetParagraphFormatL(CParaFormat* aFormat,TInt aPos)const;
sl@0
    90
	IMPORT_C virtual void GetChars(TPtrC& aView,TCharFormat& aFormat,TInt aStartPos)const;
sl@0
    91
	IMPORT_C virtual TInt GetPictureSizeInTwips(TSize& aSize, TInt aPos)const;
sl@0
    92
	IMPORT_C virtual CPicture* PictureHandleL(TInt aPos,MLayDoc::TForcePictureLoad aForceLoad)const;
sl@0
    93
	IMPORT_C virtual TBool EnquirePageBreak(TInt aPos,TInt aLength=0)const;
sl@0
    94
	IMPORT_C virtual TBool SelectParagraphLabel(TInt aPos);
sl@0
    95
	IMPORT_C virtual void CancelSelectLabel();
sl@0
    96
//  MFormatText implementation	
sl@0
    97
	IMPORT_C virtual void GetParaFormatL(CParaFormat* aFormat,TParaFormatMask& aVaries,TInt aPos,TInt aLength,
sl@0
    98
										CParaFormat::TParaFormatGetMode aMode=CParaFormat::EAllAttributes)const;
sl@0
    99
	IMPORT_C virtual void ApplyParaFormatL(const CParaFormat* aFormat,const TParaFormatMask& aMask,TInt aPos,TInt aLength);
sl@0
   100
	IMPORT_C virtual void GetCharFormat(TCharFormat& aFormat,TCharFormatMask& aVaries,TInt aPos,TInt aLength)const;
sl@0
   101
	IMPORT_C virtual void ApplyCharFormatL(const TCharFormat& aFormat,const TCharFormatMask& aMask,TInt aPos,TInt aLength);
sl@0
   102
protected:
sl@0
   103
	IMPORT_C CGlobalText();
sl@0
   104
	IMPORT_C CGlobalText(const CParaFormatLayer* aGlobalParaLayer,
sl@0
   105
						 const CCharFormatLayer* aGlobalCharLayer);
sl@0
   106
private:
sl@0
   107
	CGlobalText(const CGlobalText& aGlobalText);
sl@0
   108
	CGlobalText& operator=(const CGlobalText& aGlobalText);
sl@0
   109
protected:
sl@0
   110
	const CParaFormatLayer* iGlobalParaFormatLayer;  // the global paragraph format layer; not owned
sl@0
   111
	const CCharFormatLayer* iGlobalCharFormatLayer;  // the global character format layer; not owned
sl@0
   112
	__DECLARE_TEST;
sl@0
   113
private:
sl@0
   114
	void* iReserved_2;
sl@0
   115
	};
sl@0
   116
sl@0
   117
sl@0
   118
#include <txtglobl.inl>
sl@0
   119
sl@0
   120
sl@0
   121
#endif