os/textandloc/textrendering/textformatting/inc/FRMPRINT.H
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/textandloc/textrendering/textformatting/inc/FRMPRINT.H	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,78 @@
     1.4 +/*
     1.5 +* Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description: 
    1.18 +*
    1.19 +*/
    1.20 +
    1.21 +
    1.22 +#ifndef __FRMPRINT_H__
    1.23 +#define __FRMPRINT_H__
    1.24 +
    1.25 +#include <e32std.h>
    1.26 +#include <frmtlay.h>
    1.27 +
    1.28 +/**
    1.29 +@publishedAll
    1.30 +@released
    1.31 +*/ 
    1.32 +class CTextPageRegionPrinter : public CBase	, public MPageRegionPrinter
    1.33 +
    1.34 +	{
    1.35 +public:
    1.36 +	IMPORT_C static CTextPageRegionPrinter* NewL(MLayDoc* aLayDoc,CPrinterDevice* aPrinterDevice);
    1.37 +	IMPORT_C ~CTextPageRegionPrinter();
    1.38 +	IMPORT_C void SetPageList(const CArrayFix<TInt>* aPageList);
    1.39 +	IMPORT_C void SetPrinterDevice(CPrinterDevice* aPrinterDevice);
    1.40 +	IMPORT_C void SetDocument(MLayDoc *aDoc); // Used for replacing document
    1.41 +	IMPORT_C void SetPrintPreview(TBool aPrintPreview);
    1.42 +	IMPORT_C void SetPageSpecInTwips(const TPageSpec& aPageSpec);  // Physical size of page.
    1.43 +	IMPORT_C void SetPageMarginsInTwips(const TMargins& aPageMargins); // Default are all zero.
    1.44 +	IMPORT_C void SetTextMarginWidthsInTwips(TInt aLabelMarginWidth,TInt aGutterMarginWidth); // label margin &c (if any)
    1.45 +	IMPORT_C void SetFirstPageOfDoc(TInt aFirstPage);	// possible offset depending on document - Default is 1
    1.46 +	IMPORT_C void PrintBandL(CGraphicsDevice* aLayoutDevice,TInt aPageNo
    1.47 +															,const TBandAttributes& aBandInPixels);
    1.48 +	//deprecated 7.0 
    1.49 +	IMPORT_C void SetParagraphFillTextOnly(TBool aFillTextOnly);
    1.50 +private:
    1.51 +	CTextPageRegionPrinter();
    1.52 +	void ConstructL(MLayDoc* aLayDoc,CPrinterDevice* aPrinterDevice);
    1.53 +	void PrintBand2L(CGraphicsDevice* aLayoutDevice,TInt aPageNo,const TBandAttributes& aBandInPixels);
    1.54 +	void SetFormatAndImageDevices();
    1.55 +	void SetPageL(TInt aNextPage);
    1.56 +	TRect ViewRectInTwips() const;
    1.57 +	TInt LayoutWidthInTwips() const;
    1.58 +	TInt LabelMarginWidthInPixels() const;
    1.59 +	TInt TextStartXInPixels() const;
    1.60 +	void SetPageTextHeight();
    1.61 +	void LeaveL(TInt aErr);
    1.62 +private:
    1.63 +	CTextLayout* iLayout; // 'HAS' relationship
    1.64 +	CPrinterDevice* iPrinterDevice;
    1.65 +	CGraphicsDevice* iImageDevice;
    1.66 +	CGraphicsContext* iGc;
    1.67 +	CGraphicsContext* iPictureGc;
    1.68 +	TDrawTextLayoutContext iDrawTextLayoutContext;
    1.69 +	const CArrayFix<TInt>* iPageList;	// 'USES' relationship. Destroyed by application
    1.70 +	TSize iPageSizeInTwips; // In Twips
    1.71 +	TMargins iPageMarginsInTwips;	// In twips
    1.72 +	TInt iGutterMarginWidthInTwips;   // Gap between labels and text proper - in twips
    1.73 +	TInt iLabelMarginWidthInTwips;	   // In twips
    1.74 +	TInt iCurrentPage;
    1.75 +	TInt iFirstPage;
    1.76 +	TInt iTopPageDocPos;
    1.77 +	TInt iPageTextHeightInPixels; 
    1.78 +	TBool iPrintPreview;
    1.79 +	};
    1.80 +
    1.81 +#endif