os/textandloc/textrendering/textformatting/inc/FRMPAGE.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 __FRMPAGE_H__
sl@0
    20
#define __FRMPAGE_H__
sl@0
    21
sl@0
    22
#include <e32std.h>
sl@0
    23
#include <e32base.h>
sl@0
    24
#include <gdi.h>
sl@0
    25
sl@0
    26
class MLayDoc;
sl@0
    27
class CTextLayout;
sl@0
    28
class CParaFormat;
sl@0
    29
sl@0
    30
//
sl@0
    31
// The following two classes are for internal use only
sl@0
    32
//
sl@0
    33
sl@0
    34
/**
sl@0
    35
@internalComponent
sl@0
    36
*/
sl@0
    37
struct TPageLine
sl@0
    38
	{
sl@0
    39
	TInt iDocPos;
sl@0
    40
	TInt iLineHeight;
sl@0
    41
	TBool iKeepWithNext;
sl@0
    42
	TBool iStartNewPage;
sl@0
    43
	};
sl@0
    44
sl@0
    45
/**
sl@0
    46
@internalComponent
sl@0
    47
*/
sl@0
    48
class TLinePaginator
sl@0
    49
	{
sl@0
    50
public:
sl@0
    51
	TLinePaginator();
sl@0
    52
	TBool AppendLineL(TPageLine aLine);
sl@0
    53
 	void FlushL(TInt aEndDocPos);
sl@0
    54
	void SetPageHeight(TInt aPageHeight);
sl@0
    55
	void SetArray(CArrayFix<TInt>* aCharsPerPage);
sl@0
    56
	void Reset();
sl@0
    57
private:
sl@0
    58
	void ResetArray();
sl@0
    59
 	void InsertPageBreakL();
sl@0
    60
	void SetPotentialBreakPoint(TInt aDocPos);
sl@0
    61
	void CheckTallLineL(TPageLine& aLine);
sl@0
    62
private:
sl@0
    63
	CArrayFix<TInt>* iPageList;	 // This is created and destroyed by the application running the paginator.
sl@0
    64
	TInt iDocPos;
sl@0
    65
	TBool iKeepWithPrev;
sl@0
    66
	TInt iPageHeight;
sl@0
    67
	TInt iHeightRem;
sl@0
    68
	TBool iBreakOnPage;
sl@0
    69
	TInt iPrevPageBreak;
sl@0
    70
	TInt iHeightLines;
sl@0
    71
	TBool iFirstLine;  // Used to prevent page break being inserted at top of document.
sl@0
    72
	};
sl@0
    73
sl@0
    74
/** 
sl@0
    75
An abstract class which must be mixed with application calling the active object.
sl@0
    76
It specifies the protocol for a pagination observer. A
sl@0
    77
pagination observer may be used when paginating a document in the background
sl@0
    78
(using CTextPaginator::PaginateCompleteDocumentL()). It notifies the client
sl@0
    79
on page completion, document completion, and on errors.
sl@0
    80
sl@0
    81
The observer is set up using the function CTextPaginator::SetObserver().
sl@0
    82
@publishedAll
sl@0
    83
@released
sl@0
    84
*/
sl@0
    85
class MPaginateObserver
sl@0
    86
	{
sl@0
    87
public:
sl@0
    88
sl@0
    89
	/** Notifies the client on completion of document pagination. */
sl@0
    90
	virtual void NotifyCompletion()=0;
sl@0
    91
sl@0
    92
	/** Notifies the client when a leave is trapped or when the pagination is cancelled.
sl@0
    93
	Implements error handling.
sl@0
    94
	@param anErrorCode Error code - indicates the type of error. */
sl@0
    95
	virtual void NotifyError(TInt anErrorCode)=0;
sl@0
    96
sl@0
    97
	/** Called by the paginator when each page has been completed.
sl@0
    98
	@param aCurrentPageNum The number of the page. */
sl@0
    99
	virtual void NotifyPageCompletion(TInt aCurrentPageNum)=0;
sl@0
   100
	};
sl@0
   101
sl@0
   102
sl@0
   103
sl@0
   104
/** 
sl@0
   105
Paginates a document.
sl@0
   106
sl@0
   107
Sets the page dimensions, the printer device and the source document to paginate. 
sl@0
   108
Uses a page list, which is an array of characters-per-page values.
sl@0
   109
sl@0
   110
There are two ways of paginating a document; either in the background using 
sl@0
   111
an active object or by incrementally adding text to the document and repeatedly 
sl@0
   112
notifying the CTextPaginator object to paginate the added text. If an active 
sl@0
   113
object is used, the client may be notified on completion of pages, on trapped 
sl@0
   114
leaves and on completion of the pagination by an optional pagination observer. 
sl@0
   115
@publishedAll
sl@0
   116
@released
sl@0
   117
*/
sl@0
   118
class CTextPaginator : public CActive
sl@0
   119
	{
sl@0
   120
public:
sl@0
   121
// 2 phase ctor: automatically adds self to active scheduler 
sl@0
   122
	IMPORT_C static CTextPaginator* NewL(CPrinterDevice* aPrinterDevice,CArrayFix<TInt>* aCharsPerPage,TInt aPriority);	
sl@0
   123
	IMPORT_C ~CTextPaginator();
sl@0
   124
	IMPORT_C void SetDocumentL(MLayDoc* aLayDoc); // Must call before anything else
sl@0
   125
	IMPORT_C void SetPrinterDevice(CPrinterDevice* aPrinterDevice);
sl@0
   126
	IMPORT_C void SetPageSpecInTwips(const TPageSpec& aPageSpec);  // Physical size of page.
sl@0
   127
	IMPORT_C void SetPageMarginsInTwips(const TMargins& aPageMargins); // Default are all zero.
sl@0
   128
	IMPORT_C void SetTextMarginWidthsInTwips(TInt aLabelMarginWidth,TInt aGutterMarginWidth); // label margins (if any)
sl@0
   129
// Called to initiate paginating a document using active object
sl@0
   130
	IMPORT_C void SetObserver(MPaginateObserver* aObserver);
sl@0
   131
	IMPORT_C void PaginateCompleteDocumentL();
sl@0
   132
// Called to paginate incrementally, without active object
sl@0
   133
	IMPORT_C TInt AppendTextL(TInt& aCumulativeDocPos);	// returns number of page breaks so far
sl@0
   134
	IMPORT_C TInt PaginationCompletedL();	// called at end of incremental pagination	- returns total number of page breaks
sl@0
   135
private:
sl@0
   136
	enum TPaginateMode
sl@0
   137
		{
sl@0
   138
		EFPaginateCompleteDocument,
sl@0
   139
		EFPaginateIncrementally
sl@0
   140
		};
sl@0
   141
	enum 
sl@0
   142
		{
sl@0
   143
		EPageLineArrayGranularity=10,
sl@0
   144
		EPageListArrayGranularity=5
sl@0
   145
		};
sl@0
   146
	enum
sl@0
   147
		{
sl@0
   148
		EFMaximumNumberLinesInBlock=20
sl@0
   149
		};
sl@0
   150
private:
sl@0
   151
	CTextPaginator(TInt aPriority);
sl@0
   152
	void RunL(); // Active scheduler is friend - can access 
sl@0
   153
	void DoCancel();  // Called by CActive::Cancel()
sl@0
   154
	void ConstructL(CPrinterDevice* aPrinterDevice,CArrayFix<TInt>* aCharsPerPage);
sl@0
   155
	void SetLayoutDimensions();
sl@0
   156
	void SetOrReplaceDocumentL(MLayDoc* aLayDoc);
sl@0
   157
	TRect TextRectInTwips() const;
sl@0
   158
	TSize TextSizeInPixels() const;
sl@0
   159
	void TrapPaginateParagraphL();
sl@0
   160
	void PaginateParagraphL();
sl@0
   161
	void PageCompleted();
sl@0
   162
	void Reque();
sl@0
   163
	void ResetPaginator();
sl@0
   164
	void CopyTempPageListL();  // Copies temporary page list to real one.
sl@0
   165
	void LeaveL(TInt aErr);
sl@0
   166
private:
sl@0
   167
	MLayDoc* iLayDoc;
sl@0
   168
	MPaginateObserver* iObserver;
sl@0
   169
	CPrinterDevice* iPrinterDevice;
sl@0
   170
	TLinePaginator iPaginator;
sl@0
   171
	CTextLayout* iLayout;
sl@0
   172
	CArrayFix<TInt>* iPageList;
sl@0
   173
	CArrayFixFlat<TInt>* iTempPageList;
sl@0
   174
	CArrayFixFlat<TPageLine>* iPageLineArray;
sl@0
   175
	TSize iPageSizeInTwips;
sl@0
   176
	TMargins iPageMarginsInTwips;
sl@0
   177
	TInt iGutterMarginWidthInTwips;   // Gap between labels and text proper - in twips
sl@0
   178
	TInt iLabelMarginWidthInTwips;
sl@0
   179
	TInt iDocPos;				// Within the laydoc
sl@0
   180
	TBool iPageBreakChar;
sl@0
   181
	TPaginateMode iMode;
sl@0
   182
	};
sl@0
   183
sl@0
   184
#endif
sl@0
   185