os/textandloc/textrendering/texthandling/stext/TXTGLOBL.CPP
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) 2003-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
#include <e32std.h>
sl@0
    20
#include <e32base.h>
sl@0
    21
#include <gdi.h>
sl@0
    22
sl@0
    23
#include "TXTFMLYR.H"
sl@0
    24
#include "TXTGLOBL.H"
sl@0
    25
sl@0
    26
#include "TXTSTD.H"
sl@0
    27
#include "OstTraceDefinitions.h"
sl@0
    28
#ifdef OST_TRACE_COMPILER_IN_USE
sl@0
    29
#include "TXTGLOBLTraces.h"
sl@0
    30
#endif
sl@0
    31
sl@0
    32
sl@0
    33
/**
sl@0
    34
@internalAll
sl@0
    35
*/
sl@0
    36
EXPORT_C void MLayDoc::MLayDoc_Reserved_1() {}
sl@0
    37
EXPORT_C void CGlobalText::__DbgTestInvariant()const
sl@0
    38
// Class Invariants.
sl@0
    39
//
sl@0
    40
	{
sl@0
    41
#ifdef _DEBUG
sl@0
    42
// ASSERT: The global format layers are never null.
sl@0
    43
	__ASSERT_DEBUG(iGlobalParaFormatLayer!=NULL,User::Invariant());
sl@0
    44
	__ASSERT_DEBUG(iGlobalCharFormatLayer!=NULL,User::Invariant());
sl@0
    45
#endif
sl@0
    46
	}
sl@0
    47
sl@0
    48
sl@0
    49
EXPORT_C CGlobalText* CGlobalText::NewL(const CParaFormatLayer* aGlobalParaLayer,const CCharFormatLayer* aGlobalCharLayer,
sl@0
    50
										TDocumentStorage aStorage,TInt aDefaultTextGranularity)
sl@0
    51
/** Allocates and constructs an empty global text object with a paragraph and a 
sl@0
    52
character format layer. A single end-of-document delimiter is inserted.
sl@0
    53
sl@0
    54
@param aGlobalParaLayer Pointer to the paragraph format layer referenced by 
sl@0
    55
the text object. Must not be NULL, or a panic occurs. 
sl@0
    56
@param aGlobalCharLayer Pointer to the character format layer referenced by 
sl@0
    57
the text object. Must not be NULL, or a panic occurs. 
sl@0
    58
@param aStorage The type of in-memory buffer to use. Defaults to 
sl@0
    59
ESegmentedStorage. 
sl@0
    60
@param aDefaultTextGranularity Specifies the granularity of the in-memory buffer. 
sl@0
    61
Default is EDefaultTextGranularity bytes (=256). 
sl@0
    62
@return Pointer to the global text object. */
sl@0
    63
	{
sl@0
    64
	if (aGlobalParaLayer==NULL)
sl@0
    65
	    {
sl@0
    66
	    OstTrace0( TRACE_FATAL, CGLOBALTEXT_NEWL, "ENullFormatLayerHandle" );
sl@0
    67
	    }
sl@0
    68
	__ASSERT_ALWAYS(aGlobalParaLayer!=NULL,Panic(ENullFormatLayerHandle));
sl@0
    69
	if (aGlobalCharLayer==NULL)
sl@0
    70
	    {
sl@0
    71
	    OstTrace0( TRACE_FATAL, DUP1_CGLOBALTEXT_NEWL, "ENullFormatLayerHandle" );
sl@0
    72
	    }
sl@0
    73
	__ASSERT_ALWAYS(aGlobalCharLayer!=NULL,Panic(ENullFormatLayerHandle));
sl@0
    74
sl@0
    75
	CGlobalText* self=new(ELeave) CGlobalText(aGlobalParaLayer,aGlobalCharLayer);
sl@0
    76
	CleanupStack::PushL(self);
sl@0
    77
	self->ConstructL(aStorage,aDefaultTextGranularity);
sl@0
    78
	CleanupStack::Pop();
sl@0
    79
	return self;
sl@0
    80
	}
sl@0
    81
sl@0
    82
EXPORT_C CGlobalText* CGlobalText::NewL(const CStreamStore& aStore,TStreamId aStreamId,
sl@0
    83
										const CParaFormatLayer* aGlobalParaLayer,const CCharFormatLayer* aGlobalCharLayer,
sl@0
    84
										MTextFieldFactory* aFactory,
sl@0
    85
										TDocumentStorage aStorage)
sl@0
    86
/** Returns a handle to a new instance of this class, whose textual content is 
sl@0
    87
restored from the specified read-stream.  The global text object *uses* (does 
sl@0
    88
not own) the supplied global format layers.*/
sl@0
    89
	{
sl@0
    90
	if (aGlobalParaLayer==NULL)
sl@0
    91
	    {
sl@0
    92
	    OstTrace0( TRACE_FATAL, DUP2_CGLOBALTEXT_NEWL, "ENullFormatLayerHandle" );
sl@0
    93
	    }
sl@0
    94
	__ASSERT_ALWAYS(aGlobalParaLayer!=NULL,Panic(ENullFormatLayerHandle));
sl@0
    95
	if (aGlobalCharLayer==NULL)
sl@0
    96
	    {
sl@0
    97
	    OstTrace0( TRACE_FATAL, DUP3_CGLOBALTEXT_NEWL, "ENullFormatLayerHandle" );
sl@0
    98
	    }
sl@0
    99
	__ASSERT_ALWAYS(aGlobalCharLayer!=NULL,Panic(ENullFormatLayerHandle));
sl@0
   100
sl@0
   101
	CGlobalText* self=new(ELeave) CGlobalText(aGlobalParaLayer,aGlobalCharLayer);
sl@0
   102
	CleanupStack::PushL(self);
sl@0
   103
	self->ConstructL(aStore,aStreamId,aFactory,aStorage);
sl@0
   104
	CleanupStack::Pop();
sl@0
   105
	return self;
sl@0
   106
	}
sl@0
   107
sl@0
   108
sl@0
   109
EXPORT_C CGlobalText::CGlobalText()
sl@0
   110
	{}
sl@0
   111
sl@0
   112
sl@0
   113
EXPORT_C CGlobalText::CGlobalText(const CParaFormatLayer* aGlobalParaLayer,const CCharFormatLayer* aGlobalCharLayer):
sl@0
   114
	iGlobalParaFormatLayer(aGlobalParaLayer),
sl@0
   115
	iGlobalCharFormatLayer(aGlobalCharLayer)
sl@0
   116
	{
sl@0
   117
	__TEST_INVARIANT;
sl@0
   118
	}
sl@0
   119
sl@0
   120
EXPORT_C CGlobalText::~CGlobalText()
sl@0
   121
/** The destructor is empty, and is present only to cause the virtual function 
sl@0
   122
table to be defined in a unique module. */
sl@0
   123
	{}
sl@0
   124
sl@0
   125
EXPORT_C void CGlobalText::SetGlobalParaFormat(const CParaFormatLayer* aParaFormatLayer)
sl@0
   126
/** Replaces the paragraph format layer referenced by the global text object.
sl@0
   127
sl@0
   128
@param aParaFormatLayer Pointer to the paragraph format layer to be referenced 
sl@0
   129
by the global text object. */
sl@0
   130
	{
sl@0
   131
	iGlobalParaFormatLayer=aParaFormatLayer;
sl@0
   132
	CEditableText::SetHasChanged(ETrue);
sl@0
   133
	
sl@0
   134
	__TEST_INVARIANT;
sl@0
   135
	}
sl@0
   136
sl@0
   137
EXPORT_C void CGlobalText::SetGlobalCharFormat(const CCharFormatLayer* aCharFormatLayer)
sl@0
   138
/** Replaces the character format layer referenced by the global text object.
sl@0
   139
sl@0
   140
@param aCharFormatLayer Pointer to the character format layer to be referenced 
sl@0
   141
by the global text object. */
sl@0
   142
	{
sl@0
   143
	iGlobalCharFormatLayer=aCharFormatLayer;
sl@0
   144
	CEditableText::SetHasChanged(ETrue);
sl@0
   145
	
sl@0
   146
	__TEST_INVARIANT;
sl@0
   147
	}
sl@0
   148
sl@0
   149
 
sl@0
   150
EXPORT_C void CGlobalText::ApplyParaFormatL(const CParaFormat* aFormat,const TParaFormatMask& aMask,
sl@0
   151
											TInt /*aPos*/,TInt /*aLength*/)
sl@0
   152
/** Changes the text object's paragraph formatting. The attributes which are 
sl@0
   153
set in the mask are read from aFormat into the text object's paragraph format 
sl@0
   154
layer. The attributes which are not set in the mask are not changed. Note 
sl@0
   155
that the position and length arguments are only used in the rich text 
sl@0
   156
implementation of this function.
sl@0
   157
sl@0
   158
@param aFormat Contains the paragraph format attribute values to apply. 
sl@0
   159
@param aMask Bitmask specifying the paragraph format attributes to change. 
sl@0
   160
@param aPos This argument is not used for global text. 
sl@0
   161
@param aLength This argument is not used for global text. */
sl@0
   162
	{
sl@0
   163
 
sl@0
   164
	__TEST_INVARIANT;
sl@0
   165
sl@0
   166
	TParaFormatMask applyMask=aMask;
sl@0
   167
	CParaFormat* pf=CParaFormat::NewL(*aFormat);
sl@0
   168
	CleanupStack::PushL(pf);
sl@0
   169
	iGlobalParaFormatLayer->SenseL(pf,applyMask);
sl@0
   170
	CONST_CAST(CParaFormatLayer*,iGlobalParaFormatLayer)->SetL(pf,applyMask);
sl@0
   171
	CleanupStack::PopAndDestroy();  // pf
sl@0
   172
	CEditableText::SetHasChanged(ETrue);
sl@0
   173
sl@0
   174
	__TEST_INVARIANT;
sl@0
   175
	}
sl@0
   176
sl@0
   177
EXPORT_C void CGlobalText::ApplyCharFormatL(const TCharFormat& aFormat,const TCharFormatMask& aMask,
sl@0
   178
											TInt /*aPos*/,TInt /*aLength*/)
sl@0
   179
/** Changes the text object's character formatting. The attributes which are 
sl@0
   180
set in the mask are read from aFormat into the text object's character format 
sl@0
   181
layer. The attributes which are not set in the mask are not changed. Note 
sl@0
   182
that the position and length arguments are only used in the rich text 
sl@0
   183
implementation of this function.
sl@0
   184
sl@0
   185
@param aFormat Contains the character format attribute values to apply. 
sl@0
   186
@param aMask Bitmask specifying the character format attributes to change. 
sl@0
   187
@param aPos This argument is not used for global text. 
sl@0
   188
@param aLength This argument is not used for global text. */
sl@0
   189
	{
sl@0
   190
sl@0
   191
	__TEST_INVARIANT;
sl@0
   192
sl@0
   193
	TCharFormatMask applyMask=aMask;
sl@0
   194
	TCharFormat cf(aFormat);
sl@0
   195
	iGlobalCharFormatLayer->Sense(cf,applyMask);
sl@0
   196
	(CONST_CAST(CCharFormatLayer*,iGlobalCharFormatLayer))->SetL(cf,applyMask);
sl@0
   197
	CEditableText::SetHasChanged(ETrue);
sl@0
   198
sl@0
   199
	__TEST_INVARIANT;
sl@0
   200
	}
sl@0
   201
sl@0
   202
EXPORT_C TInt CGlobalText::LdDocumentLength()const
sl@0
   203
/** Gets the the number of characters in the document.
sl@0
   204
sl@0
   205
Note: the count includes all non-printing characters but excludes the end 
sl@0
   206
of text paragraph delimiter, so that the smallest return value is always zero.
sl@0
   207
sl@0
   208
@return The number of characters contained in the document. */
sl@0
   209
   {
sl@0
   210
   __TEST_INVARIANT;
sl@0
   211
   
sl@0
   212
   return CPlainText::DocumentLength();
sl@0
   213
   }
sl@0
   214
sl@0
   215
EXPORT_C TInt CGlobalText::LdToParagraphStart(TInt& aCurrentPos)const
sl@0
   216
/** Gets the document position of the start of the paragraph containing a 
sl@0
   217
specified document position.
sl@0
   218
sl@0
   219
@param aCurrentPos Specifies a document position: must be valid or a panic 
sl@0
   220
occurs. On return, specifies the document position of the first character 
sl@0
   221
in the paragraph in which it is located. 
sl@0
   222
@return The number of characters skipped in scanning to the start of the 
sl@0
   223
paragraph. */
sl@0
   224
	{
sl@0
   225
	__TEST_INVARIANT;
sl@0
   226
sl@0
   227
	return CPlainText::ToParagraphStart(aCurrentPos);
sl@0
   228
	}
sl@0
   229
sl@0
   230
EXPORT_C TBool CGlobalText::EnquirePageBreak(TInt aPos,TInt aLength)const
sl@0
   231
/** Tests whether a page break occurs within a range of characters. Returns 
sl@0
   232
false if no page table has been set up: see CPlainText::SetPageTable(). The 
sl@0
   233
start and end of the range must be valid document positions, or a panic occurs.
sl@0
   234
sl@0
   235
@param aPos The document position from which to begin searching for a page 
sl@0
   236
break. 
sl@0
   237
@param aLength The number of characters to search for a page break, beginning 
sl@0
   238
at aPos. The default is zero. 
sl@0
   239
@return ETrue if a page break occurs within the specified range, otherwise 
sl@0
   240
EFalse. */
sl@0
   241
	{
sl@0
   242
	__TEST_INVARIANT;
sl@0
   243
sl@0
   244
	return PageContainingPos(aPos+aLength)>PageContainingPos(aPos);
sl@0
   245
	}
sl@0
   246
sl@0
   247
EXPORT_C void CGlobalText::GetChars(TPtrC& aView,TCharFormat& aFormat,TInt aStartPos)const
sl@0
   248
/** Gets a constant pointer descriptor to a portion of the text object. The 
sl@0
   249
portion starts at document position aStartPos, and ends at the end of the 
sl@0
   250
document, or the end of the segment, if segmented storage is being used. Also 
sl@0
   251
fills a character format object with the text object's effective character 
sl@0
   252
formatting. The start position must be valid, or a panic occurs.
sl@0
   253
sl@0
   254
@param aView On return, a constant pointer to a portion of the text. 
sl@0
   255
@param aFormat On return, contains the text object's effective character 
sl@0
   256
formatting. 
sl@0
   257
@param aStartPos The start position for the view. */
sl@0
   258
	{
sl@0
   259
	if (aStartPos<0 || aStartPos>DocumentLength())
sl@0
   260
	    {
sl@0
   261
	    OstTrace0( TRACE_FATAL, CGLOBALTEXT_GETCHARS, "ECharPosBeyondDocument" );
sl@0
   262
	    }
sl@0
   263
	__ASSERT_ALWAYS(aStartPos>=0 && aStartPos<=DocumentLength(),Panic(ECharPosBeyondDocument));
sl@0
   264
sl@0
   265
	aView.Set(Read(aStartPos));
sl@0
   266
	iGlobalCharFormatLayer->SenseEffective(aFormat);
sl@0
   267
	OverrideFormatOfInlineTextIfApplicable(aView,aFormat,aStartPos);
sl@0
   268
	}
sl@0
   269
sl@0
   270
EXPORT_C void CGlobalText::GetParagraphFormatL(CParaFormat* aFormat,TInt /*aPos*/) const
sl@0
   271
/** Gets the text object's effective paragraph formatting. The aPos value is 
sl@0
   272
only used in the rich text implementation of this function.
sl@0
   273
sl@0
   274
@param aFormat On return, filled with the text object's effective paragraph 
sl@0
   275
formatting. 
sl@0
   276
@param aPos This argument is not used for global text. */
sl@0
   277
	{
sl@0
   278
	// Get the paragraph format. Global text has a single unvarying character format so aPos is ignored.
sl@0
   279
	iGlobalParaFormatLayer->SenseEffectiveL(aFormat);
sl@0
   280
	}
sl@0
   281
sl@0
   282
 
sl@0
   283
EXPORT_C void CGlobalText::GetParaFormatL(CParaFormat* aFormat,TParaFormatMask& aVaries,TInt /*aPos*/,TInt /*aLength*/,
sl@0
   284
										  CParaFormat::TParaFormatGetMode aMode) const
sl@0
   285
/** Gets the the global text object's effective paragraph formatting. Note that 
sl@0
   286
the position and length arguments are only used in the rich text implementation 
sl@0
   287
of this function.
sl@0
   288
sl@0
   289
@param aFormat Must not be NULL or a panic occurs. On return, contains the 
sl@0
   290
effective paragraph formatting for the global text object. 
sl@0
   291
@param aVaries On return, a bitmask indicating which paragraph format attributes 
sl@0
   292
vary over the range of characters selected. This is only relevant for rich 
sl@0
   293
text, so for global text returns a value of zero for all attributes. 
sl@0
   294
@param aPos This argument is not used for global text. 
sl@0
   295
@param aLength This argument is not used for global text. 
sl@0
   296
@param aMode The default, EAllAttributes indicates that values for all paragraph 
sl@0
   297
format attributes are written to aFormat. EFixedAttributes indicates that 
sl@0
   298
tabs, bullets and borders are not written to aFormat. */
sl@0
   299
	{
sl@0
   300
	iGlobalParaFormatLayer->SenseEffectiveL(aFormat,aMode);
sl@0
   301
	aVaries.ClearAll();
sl@0
   302
	}
sl@0
   303
sl@0
   304
sl@0
   305
sl@0
   306
EXPORT_C void CGlobalText::GetCharFormat(TCharFormat& aFormat,TCharFormatMask& aVaries,
sl@0
   307
										 TInt /*aPos*/,TInt /*aLength*/) const
sl@0
   308
/** Gets the global text object's effective character formatting. Note that the 
sl@0
   309
last three arguments are not relevant to the global text implementation of 
sl@0
   310
this function.
sl@0
   311
sl@0
   312
@param aFormat On return, contains the effective character formatting for 
sl@0
   313
the global text object. 
sl@0
   314
@param aVaries On return, a bitmask indicating which character format attributes 
sl@0
   315
vary over the range of characters selected. This is only relevant for rich 
sl@0
   316
text, so for global text returns a value of zero for all attributes. 
sl@0
   317
@param aPos This argument is not used for global text. 
sl@0
   318
@param aLength This argument is not used for global text. */
sl@0
   319
	{
sl@0
   320
	iGlobalCharFormatLayer->SenseEffective(aFormat);
sl@0
   321
	aVaries.ClearAll();
sl@0
   322
	}
sl@0
   323
sl@0
   324
EXPORT_C CPicture* CGlobalText::PictureHandleL(TInt /*aPos*/,MLayDoc::TForcePictureLoad /*aForceLoad*/) const
sl@0
   325
/**  Global text provides no support for pictures, so this implementation
sl@0
   326
of the function returns NULL. */
sl@0
   327
	{
sl@0
   328
	// Global text provides no support for pictures.
sl@0
   329
	return NULL;
sl@0
   330
	}
sl@0
   331
sl@0
   332
EXPORT_C TInt CGlobalText::GetPictureSizeInTwips(TSize& /*aSize*/, TInt /*aPos*/) const
sl@0
   333
/** Global text provides no support for pictures, so this implementation
sl@0
   334
of the function returns KErrNotFound. */	
sl@0
   335
	{
sl@0
   336
	// Global text provides no support for pictures.
sl@0
   337
	return KErrNotFound;
sl@0
   338
	}
sl@0
   339
sl@0
   340
EXPORT_C TBool CGlobalText::SelectParagraphLabel(TInt /*aPos*/)
sl@0
   341
/** Global text does not support paragraph labels, so this function
sl@0
   342
returns EFalse. */	
sl@0
   343
    {
sl@0
   344
	return EFalse;
sl@0
   345
	}
sl@0
   346
sl@0
   347
EXPORT_C void CGlobalText::CancelSelectLabel()
sl@0
   348
/** Not supported. */
sl@0
   349
	{
sl@0
   350
	}