os/textandloc/textrendering/texthandling/inc/TXTLAYDC.H
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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
#ifndef __TXTLAYDC_H__
sl@0
    20
#define __TXTLAYDC_H__
sl@0
    21
sl@0
    22
#include <e32std.h>
sl@0
    23
sl@0
    24
class CParaFormat;
sl@0
    25
class TCharFormat;
sl@0
    26
class CPicture;
sl@0
    27
sl@0
    28
sl@0
    29
class MLayDoc
sl@0
    30
/** 
sl@0
    31
Specifies the interface for providing the information needed by the text 
sl@0
    32
layout engine to lay out a text object. 
sl@0
    33
sl@0
    34
Examples of derived classes are CRichText and CGlobalText.
sl@0
    35
sl@0
    36
At the heart of the interface are two interrogation functions; one gives the 
sl@0
    37
paragraph formatting for a document position, and the other gives a pointer 
sl@0
    38
descriptor to a series of contiguous characters with identical character 
sl@0
    39
formatting, and their character formatting. This information is sufficient 
sl@0
    40
for the layout engine to find the formatting and content of an entire document.
sl@0
    41
sl@0
    42
The constructor for the layout engine (CTextLayout) is prototyped as:
sl@0
    43
static CTextLayout *NewL(MLayDoc *aDoc,TInt aWrapWidth);
sl@0
    44
By viewing the text object purely in terms of the MLayDoc interface, the layout 
sl@0
    45
engine is insulated from any editable text implementation issues.
sl@0
    46
@see static CTextLayout *NewL(MLayDoc *aDoc,TInt aWrapWidth)
sl@0
    47
@publishedAll
sl@0
    48
@released
sl@0
    49
*/
sl@0
    50
	{
sl@0
    51
	// Defines interface for extracting content & format information from text source.
sl@0
    52
	// Designed to be 'mixed-in' with other classes.
sl@0
    53
	//
sl@0
    54
public:
sl@0
    55
	
sl@0
    56
	/** Used as a parameter to the PictureHandleL() function to control whether 
sl@0
    57
	picture data should be loaded into memory or not. */
sl@0
    58
	enum TForcePictureLoad 
sl@0
    59
		{
sl@0
    60
		/** Do not load the picture data into memory. */
sl@0
    61
		EForceLoadFalse,
sl@0
    62
		/** Load the picture data into memory. */
sl@0
    63
		EForceLoadTrue
sl@0
    64
		};
sl@0
    65
public:
sl@0
    66
		
sl@0
    67
	/** Gets the the number of characters in the document.
sl@0
    68
	
sl@0
    69
	@return The number of characters contained in the document. */
sl@0
    70
	virtual TInt LdDocumentLength()const=0;  // Does not include final document terminator
sl@0
    71
sl@0
    72
	/** Gets the document position of the start of the paragraph containing a 
sl@0
    73
	specified position.
sl@0
    74
	
sl@0
    75
	@param aCurrentPos A valid document position. On return contains the 
sl@0
    76
	document position of the first character in the paragraph. 
sl@0
    77
	@return The number of characters skipped in scanning to the start of the 
sl@0
    78
	paragraph. */
sl@0
    79
	virtual TInt LdToParagraphStart(TInt& aCurrentPos)const=0;
sl@0
    80
		
sl@0
    81
	/** Gets the effective paragraph formatting which applies to the paragraph 
sl@0
    82
	which contains a specified document position. On return, aFormat is filled 
sl@0
    83
	with values for all paragraph format attributes.
sl@0
    84
	
sl@0
    85
	@param aFormat On return, filled with the paragraph's effective paragraph 
sl@0
    86
	formatting. 
sl@0
    87
	@param aPos Any document position within the paragraph of interest. */
sl@0
    88
	virtual void GetParagraphFormatL(CParaFormat* aFormat,TInt aPos)const=0;
sl@0
    89
	
sl@0
    90
	/** Gets a constant pointer descriptor to a portion of the text object with 
sl@0
    91
	constant character formatting. The view starts at the document position 
sl@0
    92
	specified, and ends at: 
sl@0
    93
	
sl@0
    94
	the last character which shares the same character formatting (rich text 
sl@0
    95
	only), or
sl@0
    96
	
sl@0
    97
	the end of the document, or
sl@0
    98
	
sl@0
    99
	the end of the segment, if segmented storage is being used
sl@0
   100
	
sl@0
   101
	whichever occurs first. 
sl@0
   102
	
sl@0
   103
	Also fills a character format object with the character formatting of the 
sl@0
   104
	range of characters.
sl@0
   105
	
sl@0
   106
	@param aView On return, a constant pointer to a portion of the text. 
sl@0
   107
	@param aFormat On return, contains the character formatting of the text. 
sl@0
   108
	@param aStartPos The start position for the view. Must be a valid document 
sl@0
   109
	position, or a panic occurs. */
sl@0
   110
	virtual void GetChars(TPtrC& aView,TCharFormat& aFormat,TInt aStartPos)const=0;	
sl@0
   111
sl@0
   112
	/** Gets the size of a picture located at a specified document position.
sl@0
   113
	
sl@0
   114
	Note: The global text implementation of this function always returns 
sl@0
   115
	KErrNotFound because global text does not support pictures.
sl@0
   116
	
sl@0
   117
	@param aSize On return, contains the size of the picture located at aPos.
sl@0
   118
	@param aPos Document position of the picture. 
sl@0
   119
	@return KErrNotFound if there is no picture at the specified document 
sl@0
   120
	position, KErrNone if there is. */
sl@0
   121
	virtual TInt GetPictureSizeInTwips(TSize& aSize, TInt aPos)const=0;
sl@0
   122
sl@0
   123
	/** Gets a pointer to the picture located at a specified document position, 
sl@0
   124
	if one exists. If the picture is not in memory, the function loads it (if 
sl@0
   125
	the second argument has a value of EForceLoadTrue).
sl@0
   126
	
sl@0
   127
	Note: The global text implementation of this function always returns NULL 
sl@0
   128
	because global text does not support pictures.
sl@0
   129
	
sl@0
   130
	@param aPos Document position of the picture character. 
sl@0
   131
	@param aForceLoad If the picture is not loaded into memory, EForceLoadTrue 
sl@0
   132
	loads it using the picture factory; EForceLoadFalse does not, and in this 
sl@0
   133
	case, the function returns NULL. 
sl@0
   134
	@return A pointer to the picture located at aPos. NULL if aPos does not 
sl@0
   135
	specify a picture character, or if there is a picture at aPos which is not 
sl@0
   136
	in memory, and the second argument is EForceLoadFalse. */
sl@0
   137
	virtual CPicture* PictureHandleL(TInt aPos,TForcePictureLoad aForceLoad=EForceLoadTrue)const=0;
sl@0
   138
sl@0
   139
	/** Tests whether a page break occurs within a range of characters. A page 
sl@0
   140
	table should have been set up first: see CPlainText::SetPageTable().
sl@0
   141
	
sl@0
   142
	@param aPos The document position from which to begin searching for a page 
sl@0
   143
	break.
sl@0
   144
	@param aLength The number of characters to search for a page break, 
sl@0
   145
	beginning at aPos. The default is zero. 
sl@0
   146
	@return ETrue if a page break occurs within the specified range, otherwise 
sl@0
   147
	EFalse. */
sl@0
   148
	virtual TBool EnquirePageBreak(TInt aPos,TInt aLength=0)const=0;
sl@0
   149
	
sl@0
   150
	/** This function should be implemented by text objects which support 
sl@0
   151
	paragraph labels. Each paragraph may have at most one label. By default, 
sl@0
   152
	the functions provided by MLayDoc apply to the main body of text. This 
sl@0
   153
	function is provided to change this so that the MLayDoc object is an 
sl@0
   154
	individual paragraph label, (each of which is treated as a separate 
sl@0
   155
	document). Paragraph labelling has not been implemented by global or rich 
sl@0
   156
	text.
sl@0
   157
	
sl@0
   158
	This function should select the paragraph label associated with the 
sl@0
   159
	paragraph containing document position aPos (aPos is a document position 
sl@0
   160
	in the main document).
sl@0
   161
	
sl@0
   162
	@param aPos A document position within a paragraph. This paragraph's label 
sl@0
   163
	should be set as the main MLayDoc document. 
sl@0
   164
	@return Should return EFalse if the paragraph has no label, in which case 
sl@0
   165
	the function has no effect, ETrue otherwise. */
sl@0
   166
	virtual TBool SelectParagraphLabel(TInt aPos)=0;
sl@0
   167
sl@0
   168
	/** Cancels a paragraph label selection made by a call to 
sl@0
   169
	SelectParagraphLabel() so that the main document reverts back to the main 
sl@0
   170
	body of text. */
sl@0
   171
	virtual void CancelSelectLabel()=0;
sl@0
   172
	
sl@0
   173
	/** This function is reserved for future purpose.
sl@0
   174
	It should not be used externally for now.
sl@0
   175
	@internalAll */
sl@0
   176
	IMPORT_C virtual void MLayDoc_Reserved_1();
sl@0
   177
	};
sl@0
   178
sl@0
   179
#endif
sl@0
   180