os/textandloc/textrendering/textformatting/inc/FRMPRINT.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 __FRMPRINT_H__
sl@0
    20
#define __FRMPRINT_H__
sl@0
    21
sl@0
    22
#include <e32std.h>
sl@0
    23
#include <frmtlay.h>
sl@0
    24
sl@0
    25
/**
sl@0
    26
@publishedAll
sl@0
    27
@released
sl@0
    28
*/ 
sl@0
    29
class CTextPageRegionPrinter : public CBase	, public MPageRegionPrinter
sl@0
    30
sl@0
    31
	{
sl@0
    32
public:
sl@0
    33
	IMPORT_C static CTextPageRegionPrinter* NewL(MLayDoc* aLayDoc,CPrinterDevice* aPrinterDevice);
sl@0
    34
	IMPORT_C ~CTextPageRegionPrinter();
sl@0
    35
	IMPORT_C void SetPageList(const CArrayFix<TInt>* aPageList);
sl@0
    36
	IMPORT_C void SetPrinterDevice(CPrinterDevice* aPrinterDevice);
sl@0
    37
	IMPORT_C void SetDocument(MLayDoc *aDoc); // Used for replacing document
sl@0
    38
	IMPORT_C void SetPrintPreview(TBool aPrintPreview);
sl@0
    39
	IMPORT_C void SetPageSpecInTwips(const TPageSpec& aPageSpec);  // Physical size of page.
sl@0
    40
	IMPORT_C void SetPageMarginsInTwips(const TMargins& aPageMargins); // Default are all zero.
sl@0
    41
	IMPORT_C void SetTextMarginWidthsInTwips(TInt aLabelMarginWidth,TInt aGutterMarginWidth); // label margin &c (if any)
sl@0
    42
	IMPORT_C void SetFirstPageOfDoc(TInt aFirstPage);	// possible offset depending on document - Default is 1
sl@0
    43
	IMPORT_C void PrintBandL(CGraphicsDevice* aLayoutDevice,TInt aPageNo
sl@0
    44
															,const TBandAttributes& aBandInPixels);
sl@0
    45
	//deprecated 7.0 
sl@0
    46
	IMPORT_C void SetParagraphFillTextOnly(TBool aFillTextOnly);
sl@0
    47
private:
sl@0
    48
	CTextPageRegionPrinter();
sl@0
    49
	void ConstructL(MLayDoc* aLayDoc,CPrinterDevice* aPrinterDevice);
sl@0
    50
	void PrintBand2L(CGraphicsDevice* aLayoutDevice,TInt aPageNo,const TBandAttributes& aBandInPixels);
sl@0
    51
	void SetFormatAndImageDevices();
sl@0
    52
	void SetPageL(TInt aNextPage);
sl@0
    53
	TRect ViewRectInTwips() const;
sl@0
    54
	TInt LayoutWidthInTwips() const;
sl@0
    55
	TInt LabelMarginWidthInPixels() const;
sl@0
    56
	TInt TextStartXInPixels() const;
sl@0
    57
	void SetPageTextHeight();
sl@0
    58
	void LeaveL(TInt aErr);
sl@0
    59
private:
sl@0
    60
	CTextLayout* iLayout; // 'HAS' relationship
sl@0
    61
	CPrinterDevice* iPrinterDevice;
sl@0
    62
	CGraphicsDevice* iImageDevice;
sl@0
    63
	CGraphicsContext* iGc;
sl@0
    64
	CGraphicsContext* iPictureGc;
sl@0
    65
	TDrawTextLayoutContext iDrawTextLayoutContext;
sl@0
    66
	const CArrayFix<TInt>* iPageList;	// 'USES' relationship. Destroyed by application
sl@0
    67
	TSize iPageSizeInTwips; // In Twips
sl@0
    68
	TMargins iPageMarginsInTwips;	// In twips
sl@0
    69
	TInt iGutterMarginWidthInTwips;   // Gap between labels and text proper - in twips
sl@0
    70
	TInt iLabelMarginWidthInTwips;	   // In twips
sl@0
    71
	TInt iCurrentPage;
sl@0
    72
	TInt iFirstPage;
sl@0
    73
	TInt iTopPageDocPos;
sl@0
    74
	TInt iPageTextHeightInPixels; 
sl@0
    75
	TBool iPrintPreview;
sl@0
    76
	};
sl@0
    77
sl@0
    78
#endif